X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Foptions.c;h=cc7002352b330a7db1dee2a76b11b625aee43c74;hb=19c50963be5aee5883814a042a60973617dc2768;hp=b2c7b58574f0944cb090fd6e0123ee508d6476b0;hpb=49464ac3690f1a89de335d99b64c7e846ca6fcd1;p=ppp.git diff --git a/pppd/options.c b/pppd/options.c index b2c7b58..cc70023 100644 --- a/pppd/options.c +++ b/pppd/options.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: options.c,v 1.46 1999/02/26 11:03:34 paulus Exp $"; +static char rcsid[] = "$Id: options.c,v 1.49 1999/03/08 01:47:24 paulus Exp $"; #endif #include @@ -222,7 +222,7 @@ option_t general_options[] = { #endif static char *usage_string = "\ -pppd version %s patch level %d%s\n\ +pppd version %s.%d%s\n\ Usage: %s [ options ], where options are:\n\ Communicate over the named device\n\ Set the baud rate to \n\ @@ -342,17 +342,24 @@ options_from_file(filename, must_exist, check_prot, priv) char args[MAXARGS][MAXWORDLEN]; char cmd[MAXWORDLEN]; - if ((f = fopen(filename, "r")) == NULL) { + if (check_prot) + seteuid(getuid()); + f = fopen(filename, "r"); + if (check_prot) + seteuid(0); + if (f == NULL) { if (!must_exist && errno == ENOENT) return 1; option_error("Can't open options file %s: %m", filename); return 0; } +#if 0 /* check done by setting effective UID above */ if (check_prot && !readable(fileno(f))) { option_error("Can't open options file %s: access denied", filename); fclose(f); return 0; } +#endif oldpriv = privileged_option; privileged_option = priv; @@ -649,7 +656,7 @@ showversion(argv) char **argv; { if (phase == PHASE_INITIALIZE) { - fprintf(stderr, "pppd version %s patch level %d%s\n", + fprintf(stderr, "pppd version %s.%d%s\n", VERSION, PATCHLEVEL, IMPLEMENTATION); exit(0); } @@ -1183,15 +1190,11 @@ setdevname(cp, quiet) return -1; } - if (!privileged_option) { - if (!quiet) - option_error("setting the device name requires root privilege"); - return -1; - } - (void) strncpy(devnam, cp, MAXPATHLEN); devnam[MAXPATHLEN-1] = 0; default_device = FALSE; + devnam_info.priv = privileged_option; + devnam_info.source = option_source; return 1; }