1993-11-11 11:56:47 +08:00
|
|
|
/*
|
|
|
|
* options.c - handles option processing for PPP.
|
|
|
|
*
|
|
|
|
* Copyright (c) 1989 Carnegie Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
* by Carnegie Mellon University. The name of the
|
|
|
|
* University may not be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1999-05-12 14:19:49 +08:00
|
|
|
static char rcsid[] = "$Id: options.c,v 1.58 1999/05/12 06:19:48 paulus Exp $";
|
1993-11-11 11:56:47 +08:00
|
|
|
#endif
|
|
|
|
|
1996-04-04 12:00:24 +08:00
|
|
|
#include <ctype.h>
|
1993-11-11 11:56:47 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <netdb.h>
|
1994-05-18 14:34:15 +08:00
|
|
|
#include <pwd.h>
|
1993-11-11 11:56:47 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
1994-05-18 14:34:15 +08:00
|
|
|
#include <netinet/in.h>
|
1996-04-04 12:00:24 +08:00
|
|
|
#include <arpa/inet.h>
|
1997-04-30 13:55:54 +08:00
|
|
|
#ifdef PPP_FILTER
|
|
|
|
#include <pcap.h>
|
|
|
|
#include <pcap-int.h> /* XXX: To get struct pcap */
|
|
|
|
#endif
|
1993-11-11 11:56:47 +08:00
|
|
|
|
|
|
|
#include "pppd.h"
|
|
|
|
#include "pathnames.h"
|
|
|
|
#include "patchlevel.h"
|
|
|
|
#include "fsm.h"
|
|
|
|
#include "lcp.h"
|
|
|
|
#include "ipcp.h"
|
|
|
|
#include "upap.h"
|
|
|
|
#include "chap.h"
|
1994-08-09 14:29:14 +08:00
|
|
|
#include "ccp.h"
|
1995-12-18 11:49:06 +08:00
|
|
|
|
1995-04-24 13:54:44 +08:00
|
|
|
#include <net/ppp-comp.h>
|
|
|
|
|
|
|
|
#if defined(ultrix) || defined(NeXT)
|
1994-09-21 14:47:37 +08:00
|
|
|
char *strdup __P((char *));
|
1994-04-18 12:07:48 +08:00
|
|
|
#endif
|
1993-11-11 11:56:47 +08:00
|
|
|
|
1994-09-01 08:13:16 +08:00
|
|
|
/*
|
|
|
|
* Option variables and default values.
|
|
|
|
*/
|
1997-04-30 13:55:54 +08:00
|
|
|
#ifdef PPP_FILTER
|
|
|
|
int dflag = 0; /* Tell libpcap we want debugging */
|
|
|
|
#endif
|
1994-09-01 08:13:16 +08:00
|
|
|
int debug = 0; /* Debug flag */
|
|
|
|
int kdebugflag = 0; /* Tell kernel to print debug messages */
|
|
|
|
int default_device = 1; /* Using /dev/tty or equivalent */
|
1999-03-22 13:55:40 +08:00
|
|
|
char devnam[MAXPATHLEN]; /* Device name */
|
1994-09-01 08:13:16 +08:00
|
|
|
int crtscts = 0; /* Use hardware flow control */
|
1998-11-07 14:59:32 +08:00
|
|
|
bool modem = 1; /* Use modem control lines */
|
1994-09-01 08:13:16 +08:00
|
|
|
int inspeed = 0; /* Input/Output speed requested */
|
1994-09-21 14:47:37 +08:00
|
|
|
u_int32_t netmask = 0; /* IP netmask to set on interface */
|
1998-11-07 14:59:32 +08:00
|
|
|
bool lockflag = 0; /* Create lock file to lock the serial dev */
|
|
|
|
bool nodetach = 0; /* Don't detach from controlling tty */
|
|
|
|
bool updetach = 0; /* Detach once link is up */
|
1994-09-01 08:13:16 +08:00
|
|
|
char *connector = NULL; /* Script to establish physical link */
|
|
|
|
char *disconnector = NULL; /* Script to disestablish physical link */
|
1996-01-02 07:00:42 +08:00
|
|
|
char *welcomer = NULL; /* Script to run after phys link estab. */
|
1999-03-22 13:55:40 +08:00
|
|
|
char *ptycommand = NULL; /* Command to run on other side of pty */
|
1995-12-18 11:49:06 +08:00
|
|
|
int maxconnect = 0; /* Maximum connect time */
|
1994-09-01 08:13:16 +08:00
|
|
|
char user[MAXNAMELEN]; /* Username for PAP */
|
|
|
|
char passwd[MAXSECRETLEN]; /* Password for PAP */
|
1998-11-07 14:59:32 +08:00
|
|
|
bool persist = 0; /* Reopen link after it goes down */
|
1994-09-01 08:13:16 +08:00
|
|
|
char our_name[MAXNAMELEN]; /* Our name for authentication purposes */
|
1998-11-07 14:59:32 +08:00
|
|
|
bool demand = 0; /* do dial-on-demand */
|
1995-04-24 13:54:44 +08:00
|
|
|
char *ipparam = NULL; /* Extra parameter for ip up/down scripts */
|
1996-01-02 07:00:42 +08:00
|
|
|
int idle_time_limit = 0; /* Disconnect if idle for this many seconds */
|
|
|
|
int holdoff = 30; /* # seconds to pause before reconnecting */
|
1999-03-22 13:55:40 +08:00
|
|
|
bool notty = 0; /* Stdin/out is not a tty */
|
|
|
|
char *record_file = NULL; /* File to record chars sent/received */
|
1999-03-24 13:05:25 +08:00
|
|
|
int using_pty = 0;
|
1999-03-30 14:33:10 +08:00
|
|
|
bool sync_serial = 0; /* Device is synchronous serial device */
|
1999-05-12 14:19:49 +08:00
|
|
|
int log_to_fd = 1; /* send log messages to this fd too */
|
1994-09-01 08:13:16 +08:00
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
extern option_t auth_options[];
|
1999-05-12 14:19:49 +08:00
|
|
|
extern struct stat devstat;
|
|
|
|
extern int prepass; /* Doing pre-pass to find device name */
|
1997-04-30 13:55:54 +08:00
|
|
|
|
1996-08-28 14:41:35 +08:00
|
|
|
struct option_info connector_info;
|
|
|
|
struct option_info disconnector_info;
|
|
|
|
struct option_info welcomer_info;
|
|
|
|
struct option_info devnam_info;
|
1999-03-22 13:55:40 +08:00
|
|
|
struct option_info ptycommand_info;
|
1998-11-07 14:59:32 +08:00
|
|
|
|
1997-04-30 13:55:54 +08:00
|
|
|
#ifdef PPP_FILTER
|
|
|
|
struct bpf_program pass_filter;/* Filter program for packets to pass */
|
|
|
|
struct bpf_program active_filter; /* Filter program for link-active pkts */
|
|
|
|
pcap_t pc; /* Fake struct pcap so we can compile expr */
|
|
|
|
#endif
|
1996-08-28 14:41:35 +08:00
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
/*
|
|
|
|
* Prototypes
|
|
|
|
*/
|
1999-05-12 14:19:49 +08:00
|
|
|
static int setdevname __P((char *));
|
1996-04-04 12:00:24 +08:00
|
|
|
static int setipaddr __P((char *));
|
1997-04-30 13:55:54 +08:00
|
|
|
static int setspeed __P((char *));
|
|
|
|
static int noopt __P((char **));
|
1994-09-21 14:47:37 +08:00
|
|
|
static int setdomain __P((char **));
|
|
|
|
static int setnetmask __P((char **));
|
1997-04-30 13:55:54 +08:00
|
|
|
static int setxonxoff __P((char **));
|
1994-09-21 14:47:37 +08:00
|
|
|
static int readfile __P((char **));
|
1996-08-28 14:41:35 +08:00
|
|
|
static int callfile __P((char **));
|
1997-04-30 13:55:54 +08:00
|
|
|
static int showversion __P((char **));
|
|
|
|
static int showhelp __P((char **));
|
1999-03-19 09:27:43 +08:00
|
|
|
static void usage __P((void));
|
1997-04-30 13:55:54 +08:00
|
|
|
|
|
|
|
#ifdef PPP_FILTER
|
|
|
|
static int setpassfilter __P((char **));
|
|
|
|
static int setactivefilter __P((char **));
|
|
|
|
#endif
|
1994-09-21 14:47:37 +08:00
|
|
|
|
1997-04-30 13:55:54 +08:00
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
static option_t *find_option __P((char *name));
|
|
|
|
static int process_option __P((option_t *, char **));
|
|
|
|
static int n_arguments __P((option_t *));
|
1999-03-19 09:27:43 +08:00
|
|
|
static int number_option __P((char *, u_int32_t *, int));
|
1995-04-24 13:54:44 +08:00
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
/*
|
|
|
|
* Valid arguments.
|
|
|
|
*/
|
1998-11-07 14:59:32 +08:00
|
|
|
option_t general_options[] = {
|
|
|
|
{ "debug", o_int, &debug,
|
|
|
|
"Increase debugging level", OPT_INC|OPT_NOARG|1 },
|
|
|
|
{ "-d", o_int, &debug,
|
|
|
|
"Increase debugging level", OPT_INC|OPT_NOARG|1 },
|
|
|
|
{ "kdebug", o_int, &kdebugflag,
|
|
|
|
"Set kernel driver debug level" },
|
|
|
|
{ "nodetach", o_bool, &nodetach,
|
|
|
|
"Don't detach from controlling tty", 1 },
|
|
|
|
{ "-detach", o_bool, &nodetach,
|
|
|
|
"Don't detach from controlling tty", 1 },
|
|
|
|
{ "updetach", o_bool, &updetach,
|
|
|
|
"Detach from controlling tty once link is up", 1 },
|
|
|
|
{ "holdoff", o_int, &holdoff,
|
|
|
|
"Set time in seconds before retrying connection" },
|
|
|
|
{ "idle", o_int, &idle_time_limit,
|
|
|
|
"Set time in seconds before disconnecting idle link" },
|
|
|
|
{ "lock", o_bool, &lockflag,
|
|
|
|
"Lock serial device with UUCP-style lock file", 1 },
|
|
|
|
{ "-all", o_special_noarg, noopt,
|
|
|
|
"Don't request/allow any LCP or IPCP options (useless)" },
|
|
|
|
{ "connect", o_string, &connector,
|
1999-03-12 14:07:24 +08:00
|
|
|
"A program to set up a connection",
|
|
|
|
OPT_A2INFO | OPT_PRIVFIX, &connector_info },
|
1998-11-07 14:59:32 +08:00
|
|
|
{ "disconnect", o_string, &disconnector,
|
1999-03-12 14:07:24 +08:00
|
|
|
"Program to disconnect serial device",
|
|
|
|
OPT_A2INFO | OPT_PRIVFIX, &disconnector_info },
|
1998-11-07 14:59:32 +08:00
|
|
|
{ "welcome", o_string, &welcomer,
|
1999-03-12 14:07:24 +08:00
|
|
|
"Script to welcome client",
|
|
|
|
OPT_A2INFO | OPT_PRIVFIX, &welcomer_info },
|
1999-03-22 13:55:40 +08:00
|
|
|
{ "pty", o_string, &ptycommand,
|
|
|
|
"Script to run on pseudo-tty master side",
|
1999-05-12 14:19:49 +08:00
|
|
|
OPT_A2INFO | OPT_PRIVFIX | OPT_PREPASS, &ptycommand_info },
|
1999-03-22 13:55:40 +08:00
|
|
|
{ "notty", o_bool, ¬ty,
|
1999-05-12 14:19:49 +08:00
|
|
|
"Input/output is not a tty", OPT_PREPASS | 1 },
|
1999-03-22 13:55:40 +08:00
|
|
|
{ "record", o_string, &record_file,
|
|
|
|
"Record characters sent/received to file" },
|
1998-11-07 14:59:32 +08:00
|
|
|
{ "maxconnect", o_int, &maxconnect,
|
|
|
|
"Set connection time limit", OPT_LLIMIT|OPT_NOINCR|OPT_ZEROINF },
|
|
|
|
{ "crtscts", o_int, &crtscts,
|
|
|
|
"Set hardware (RTS/CTS) flow control", OPT_NOARG|OPT_VAL(1) },
|
|
|
|
{ "nocrtscts", o_int, &crtscts,
|
|
|
|
"Disable hardware flow control", OPT_NOARG|OPT_VAL(-1) },
|
|
|
|
{ "-crtscts", o_int, &crtscts,
|
|
|
|
"Disable hardware flow control", OPT_NOARG|OPT_VAL(-1) },
|
|
|
|
{ "cdtrcts", o_int, &crtscts,
|
|
|
|
"Set alternate hardware (DTR/CTS) flow control", OPT_NOARG|OPT_VAL(2) },
|
|
|
|
{ "nocdtrcts", o_int, &crtscts,
|
|
|
|
"Disable hardware flow control", OPT_NOARG|OPT_VAL(-1) },
|
|
|
|
{ "xonxoff", o_special_noarg, setxonxoff,
|
|
|
|
"Set software (XON/XOFF) flow control" },
|
|
|
|
{ "domain", o_special, setdomain,
|
|
|
|
"Add given domain name to hostname" },
|
|
|
|
{ "mtu", o_int, &lcp_allowoptions[0].mru,
|
|
|
|
"Set our MTU", OPT_LIMITS, NULL, MAXMRU, MINMRU },
|
|
|
|
{ "netmask", o_special, setnetmask,
|
|
|
|
"set netmask" },
|
|
|
|
{ "modem", o_bool, &modem,
|
|
|
|
"Use modem control lines", 1 },
|
|
|
|
{ "local", o_bool, &modem,
|
|
|
|
"Don't use modem control lines" },
|
|
|
|
{ "file", o_special, readfile,
|
1999-05-12 14:19:49 +08:00
|
|
|
"Take options from a file", OPT_PREPASS },
|
1998-11-07 14:59:32 +08:00
|
|
|
{ "call", o_special, callfile,
|
1999-05-12 14:19:49 +08:00
|
|
|
"Take options from a privileged file", OPT_PREPASS },
|
1998-11-07 14:59:32 +08:00
|
|
|
{ "persist", o_bool, &persist,
|
|
|
|
"Keep on reopening connection after close", 1 },
|
|
|
|
{ "nopersist", o_bool, &persist,
|
|
|
|
"Turn off persist option" },
|
|
|
|
{ "demand", o_bool, &demand,
|
|
|
|
"Dial on demand", 1, &persist },
|
|
|
|
{ "--version", o_special_noarg, showversion,
|
|
|
|
"Show version number" },
|
|
|
|
{ "--help", o_special_noarg, showhelp,
|
|
|
|
"Show brief listing of options" },
|
|
|
|
{ "-h", o_special_noarg, showhelp,
|
|
|
|
"Show brief listing of options" },
|
1999-03-30 14:33:10 +08:00
|
|
|
{ "sync", o_bool, &sync_serial,
|
|
|
|
"Use synchronous HDLC serial encoding", 1 },
|
1999-05-12 14:19:49 +08:00
|
|
|
{ "logfd", o_int, &log_to_fd,
|
|
|
|
"Send log messages to this file descriptor" },
|
|
|
|
{ "nologfd", o_int, &log_to_fd,
|
|
|
|
"Don't send log messages to any file descriptor",
|
|
|
|
OPT_NOARG | OPT_VAL(-1) },
|
1995-12-18 11:49:06 +08:00
|
|
|
|
1997-04-30 13:55:54 +08:00
|
|
|
#ifdef PPP_FILTER
|
1998-11-07 14:59:32 +08:00
|
|
|
{ "pdebug", o_int, &dflag,
|
|
|
|
"libpcap debugging" },
|
|
|
|
{ "pass-filter", 1, setpassfilter,
|
|
|
|
"set filter for packets to pass" },
|
|
|
|
{ "active-filter", 1, setactivefilter,
|
|
|
|
"set filter for active pkts" },
|
1997-04-30 13:55:54 +08:00
|
|
|
#endif
|
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
{ NULL }
|
1993-11-11 11:56:47 +08:00
|
|
|
};
|
|
|
|
|
1994-05-24 19:24:32 +08:00
|
|
|
#ifndef IMPLEMENTATION
|
|
|
|
#define IMPLEMENTATION ""
|
|
|
|
#endif
|
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
static char *usage_string = "\
|
1999-03-08 09:47:24 +08:00
|
|
|
pppd version %s.%d%s\n\
|
1996-05-27 08:04:47 +08:00
|
|
|
Usage: %s [ options ], where options are:\n\
|
1993-11-11 11:56:47 +08:00
|
|
|
<device> Communicate over the named device\n\
|
|
|
|
<speed> Set the baud rate to <speed>\n\
|
|
|
|
<loc>:<rem> Set the local and/or remote interface IP\n\
|
|
|
|
addresses. Either one may be omitted.\n\
|
|
|
|
asyncmap <n> Set the desired async map to hex <n>\n\
|
|
|
|
auth Require authentication from peer\n\
|
|
|
|
connect <p> Invoke shell command <p> to set up the serial line\n\
|
|
|
|
crtscts Use hardware RTS/CTS flow control\n\
|
|
|
|
defaultroute Add default route through interface\n\
|
|
|
|
file <f> Take options from file <f>\n\
|
|
|
|
modem Use modem control lines\n\
|
|
|
|
mru <n> Set MRU value to <n> for negotiation\n\
|
|
|
|
See pppd(8) for more options.\n\
|
|
|
|
";
|
|
|
|
|
|
|
|
/*
|
1996-08-28 14:41:35 +08:00
|
|
|
* parse_args - parse a string of arguments from the command line.
|
1999-05-12 14:19:49 +08:00
|
|
|
* If prepass is true, we are scanning for the device name and only
|
|
|
|
* processing a few options, so error messages are suppressed.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
parse_args(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
1996-04-04 12:00:24 +08:00
|
|
|
char *arg;
|
1998-11-07 14:59:32 +08:00
|
|
|
option_t *opt;
|
1994-05-18 14:34:15 +08:00
|
|
|
int ret;
|
1993-11-11 11:56:47 +08:00
|
|
|
|
1996-08-28 14:41:35 +08:00
|
|
|
privileged_option = privileged;
|
|
|
|
option_source = "command line";
|
1993-11-11 11:56:47 +08:00
|
|
|
while (argc > 0) {
|
|
|
|
arg = *argv++;
|
|
|
|
--argc;
|
|
|
|
|
|
|
|
/*
|
1998-11-07 14:59:32 +08:00
|
|
|
* First see if it's an option in the new option list.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
1998-11-07 14:59:32 +08:00
|
|
|
opt = find_option(arg);
|
|
|
|
if (opt != NULL) {
|
|
|
|
int n = n_arguments(opt);
|
|
|
|
if (argc < n) {
|
1996-05-27 08:04:47 +08:00
|
|
|
option_error("too few parameters for option %s", arg);
|
1993-11-11 11:56:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
1996-05-27 08:04:47 +08:00
|
|
|
current_option = arg;
|
1998-11-07 14:59:32 +08:00
|
|
|
if (!process_option(opt, argv))
|
1993-11-11 11:56:47 +08:00
|
|
|
return 0;
|
1998-11-07 14:59:32 +08:00
|
|
|
argc -= n;
|
|
|
|
argv += n;
|
|
|
|
continue;
|
|
|
|
}
|
1993-11-11 11:56:47 +08:00
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
/*
|
|
|
|
* Maybe a tty name, speed or IP address?
|
|
|
|
*/
|
1999-05-12 14:19:49 +08:00
|
|
|
if ((ret = setdevname(arg)) == 0
|
1998-11-07 14:59:32 +08:00
|
|
|
&& (ret = setspeed(arg)) == 0
|
|
|
|
&& (ret = setipaddr(arg)) == 0) {
|
|
|
|
option_error("unrecognized option '%s'", arg);
|
|
|
|
usage();
|
|
|
|
return 0;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
if (ret < 0) /* error */
|
|
|
|
return 0;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1999-05-12 14:19:49 +08:00
|
|
|
#if 0
|
1996-07-01 09:18:23 +08:00
|
|
|
/*
|
|
|
|
* scan_args - scan the command line arguments to get the tty name,
|
1999-03-24 13:05:25 +08:00
|
|
|
* if specified. Also checks whether the notty or pty option was given.
|
1996-07-01 09:18:23 +08:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
scan_args(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
char *arg;
|
1998-11-07 14:59:32 +08:00
|
|
|
option_t *opt;
|
1996-07-01 09:18:23 +08:00
|
|
|
|
1999-01-20 08:00:35 +08:00
|
|
|
privileged_option = privileged;
|
1996-07-01 09:18:23 +08:00
|
|
|
while (argc > 0) {
|
|
|
|
arg = *argv++;
|
|
|
|
--argc;
|
|
|
|
|
1999-03-24 13:05:25 +08:00
|
|
|
if (strcmp(arg, "notty") == 0 || strcmp(arg, "pty") == 0)
|
|
|
|
using_pty = 1;
|
|
|
|
|
1996-07-01 09:18:23 +08:00
|
|
|
/* Skip options and their arguments */
|
1998-11-07 14:59:32 +08:00
|
|
|
opt = find_option(arg);
|
|
|
|
if (opt != NULL) {
|
|
|
|
int n = n_arguments(opt);
|
|
|
|
argc -= n;
|
|
|
|
argv += n;
|
1996-07-01 09:18:23 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if it's a tty name and copy it if so */
|
|
|
|
(void) setdevname(arg, 1);
|
|
|
|
}
|
|
|
|
}
|
1999-05-12 14:19:49 +08:00
|
|
|
#endif
|
1996-07-01 09:18:23 +08:00
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
/*
|
|
|
|
* options_from_file - Read a string of options from a file,
|
|
|
|
* and interpret them.
|
|
|
|
*/
|
|
|
|
int
|
1996-08-28 14:41:35 +08:00
|
|
|
options_from_file(filename, must_exist, check_prot, priv)
|
1993-11-11 11:56:47 +08:00
|
|
|
char *filename;
|
1993-11-24 07:40:54 +08:00
|
|
|
int must_exist;
|
1994-05-18 14:34:15 +08:00
|
|
|
int check_prot;
|
1996-08-28 14:41:35 +08:00
|
|
|
int priv;
|
1993-11-11 11:56:47 +08:00
|
|
|
{
|
|
|
|
FILE *f;
|
1999-04-12 14:24:53 +08:00
|
|
|
int i, newline, ret, err;
|
1998-11-07 14:59:32 +08:00
|
|
|
option_t *opt;
|
1996-08-28 14:41:35 +08:00
|
|
|
int oldpriv;
|
1998-11-07 14:59:32 +08:00
|
|
|
char *oldsource;
|
1993-11-11 11:56:47 +08:00
|
|
|
char *argv[MAXARGS];
|
|
|
|
char args[MAXARGS][MAXWORDLEN];
|
|
|
|
char cmd[MAXWORDLEN];
|
|
|
|
|
1999-03-06 19:28:11 +08:00
|
|
|
if (check_prot)
|
|
|
|
seteuid(getuid());
|
|
|
|
f = fopen(filename, "r");
|
1999-04-12 14:24:53 +08:00
|
|
|
err = errno;
|
1999-03-06 19:28:11 +08:00
|
|
|
if (check_prot)
|
|
|
|
seteuid(0);
|
|
|
|
if (f == NULL) {
|
1999-04-12 14:24:53 +08:00
|
|
|
if (!must_exist && err == ENOENT)
|
1993-11-11 11:56:47 +08:00
|
|
|
return 1;
|
1999-04-12 14:24:53 +08:00
|
|
|
errno = err;
|
1996-05-27 08:04:47 +08:00
|
|
|
option_error("Can't open options file %s: %m", filename);
|
1994-05-01 19:45:53 +08:00
|
|
|
return 0;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
1994-05-18 14:34:15 +08:00
|
|
|
|
1996-08-28 14:41:35 +08:00
|
|
|
oldpriv = privileged_option;
|
|
|
|
privileged_option = priv;
|
1998-11-07 14:59:32 +08:00
|
|
|
oldsource = option_source;
|
|
|
|
option_source = strdup(filename);
|
|
|
|
if (option_source == NULL)
|
|
|
|
option_source = "file";
|
1996-08-28 14:41:35 +08:00
|
|
|
ret = 0;
|
1993-11-11 11:56:47 +08:00
|
|
|
while (getword(f, cmd, &newline, filename)) {
|
|
|
|
/*
|
|
|
|
* First see if it's a command.
|
|
|
|
*/
|
1998-11-07 14:59:32 +08:00
|
|
|
opt = find_option(cmd);
|
|
|
|
if (opt != NULL) {
|
|
|
|
int n = n_arguments(opt);
|
|
|
|
for (i = 0; i < n; ++i) {
|
1993-11-11 11:56:47 +08:00
|
|
|
if (!getword(f, args[i], &newline, filename)) {
|
1996-05-27 08:04:47 +08:00
|
|
|
option_error(
|
|
|
|
"In file %s: too few parameters for option '%s'",
|
|
|
|
filename, cmd);
|
1996-08-28 14:41:35 +08:00
|
|
|
goto err;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
argv[i] = args[i];
|
|
|
|
}
|
1996-05-27 08:04:47 +08:00
|
|
|
current_option = cmd;
|
1998-11-07 14:59:32 +08:00
|
|
|
if (!process_option(opt, argv))
|
1996-08-28 14:41:35 +08:00
|
|
|
goto err;
|
1998-11-07 14:59:32 +08:00
|
|
|
continue;
|
|
|
|
}
|
1993-11-11 11:56:47 +08:00
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
/*
|
|
|
|
* Maybe a tty name, speed or IP address?
|
|
|
|
*/
|
1999-05-12 14:19:49 +08:00
|
|
|
if ((i = setdevname(cmd)) == 0
|
1998-11-07 14:59:32 +08:00
|
|
|
&& (i = setspeed(cmd)) == 0
|
|
|
|
&& (i = setipaddr(cmd)) == 0) {
|
|
|
|
option_error("In file %s: unrecognized option '%s'",
|
|
|
|
filename, cmd);
|
|
|
|
goto err;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
if (i < 0) /* error */
|
|
|
|
goto err;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
1996-08-28 14:41:35 +08:00
|
|
|
ret = 1;
|
|
|
|
|
|
|
|
err:
|
|
|
|
fclose(f);
|
|
|
|
privileged_option = oldpriv;
|
1998-11-07 14:59:32 +08:00
|
|
|
option_source = oldsource;
|
1996-08-28 14:41:35 +08:00
|
|
|
return ret;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* options_from_user - See if the use has a ~/.ppprc file,
|
|
|
|
* and if so, interpret options from it.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
options_from_user()
|
|
|
|
{
|
|
|
|
char *user, *path, *file;
|
|
|
|
int ret;
|
1994-05-18 14:34:15 +08:00
|
|
|
struct passwd *pw;
|
1999-03-12 14:07:24 +08:00
|
|
|
size_t pl;
|
1993-11-11 11:56:47 +08:00
|
|
|
|
1999-03-06 19:28:11 +08:00
|
|
|
pw = getpwuid(getuid());
|
1994-05-18 14:34:15 +08:00
|
|
|
if (pw == NULL || (user = pw->pw_dir) == NULL || user[0] == 0)
|
1994-05-24 19:24:32 +08:00
|
|
|
return 1;
|
1994-05-18 14:34:15 +08:00
|
|
|
file = _PATH_USEROPT;
|
1999-03-12 14:07:24 +08:00
|
|
|
pl = strlen(user) + strlen(file) + 2;
|
|
|
|
path = malloc(pl);
|
1993-11-11 11:56:47 +08:00
|
|
|
if (path == NULL)
|
|
|
|
novm("init file name");
|
1999-03-12 14:07:24 +08:00
|
|
|
slprintf(path, pl, "%s/%s", user, file);
|
1996-08-28 14:41:35 +08:00
|
|
|
ret = options_from_file(path, 0, 1, privileged);
|
1993-11-11 11:56:47 +08:00
|
|
|
free(path);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1994-05-18 14:34:15 +08:00
|
|
|
/*
|
|
|
|
* options_for_tty - See if an options file exists for the serial
|
|
|
|
* device, and if so, interpret options from it.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
options_for_tty()
|
|
|
|
{
|
1996-01-18 11:35:38 +08:00
|
|
|
char *dev, *path, *p;
|
1994-05-18 14:34:15 +08:00
|
|
|
int ret;
|
1999-03-12 14:07:24 +08:00
|
|
|
size_t pl;
|
1994-05-18 14:34:15 +08:00
|
|
|
|
1996-01-18 11:35:38 +08:00
|
|
|
dev = devnam;
|
|
|
|
if (strncmp(dev, "/dev/", 5) == 0)
|
|
|
|
dev += 5;
|
1999-03-22 13:55:40 +08:00
|
|
|
if (dev[0] == 0 || strcmp(dev, "tty") == 0)
|
1994-05-18 14:34:15 +08:00
|
|
|
return 1; /* don't look for /etc/ppp/options.tty */
|
1999-03-12 14:07:24 +08:00
|
|
|
pl = strlen(_PATH_TTYOPT) + strlen(dev) + 1;
|
|
|
|
path = malloc(pl);
|
1994-05-18 14:34:15 +08:00
|
|
|
if (path == NULL)
|
|
|
|
novm("tty init file name");
|
1999-03-12 14:07:24 +08:00
|
|
|
slprintf(path, pl, "%s%s", _PATH_TTYOPT, dev);
|
1996-01-18 11:35:38 +08:00
|
|
|
/* Turn slashes into dots, for Solaris case (e.g. /dev/term/a) */
|
1999-03-12 14:07:24 +08:00
|
|
|
for (p = path + strlen(_PATH_TTYOPT); *p != 0; ++p)
|
|
|
|
if (*p == '/')
|
|
|
|
*p = '.';
|
1996-08-28 14:41:35 +08:00
|
|
|
ret = options_from_file(path, 0, 0, 1);
|
1994-05-18 14:34:15 +08:00
|
|
|
free(path);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
/*
|
|
|
|
* find_option - scan the option lists for the various protocols
|
|
|
|
* looking for an entry with the given name.
|
|
|
|
* This could be optimized by using a hash table.
|
|
|
|
*/
|
|
|
|
static option_t *
|
1999-03-08 13:34:46 +08:00
|
|
|
find_option(name)
|
|
|
|
char *name;
|
1998-11-07 14:59:32 +08:00
|
|
|
{
|
|
|
|
option_t *opt;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (opt = general_options; opt->name != NULL; ++opt)
|
|
|
|
if (strcmp(name, opt->name) == 0)
|
|
|
|
return opt;
|
|
|
|
for (opt = auth_options; opt->name != NULL; ++opt)
|
|
|
|
if (strcmp(name, opt->name) == 0)
|
|
|
|
return opt;
|
|
|
|
for (i = 0; protocols[i] != NULL; ++i)
|
|
|
|
if ((opt = protocols[i]->options) != NULL)
|
|
|
|
for (; opt->name != NULL; ++opt)
|
|
|
|
if (strcmp(name, opt->name) == 0)
|
|
|
|
return opt;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* process_option - process one new-style option.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
process_option(opt, argv)
|
|
|
|
option_t *opt;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
u_int32_t v;
|
|
|
|
int iv, a;
|
|
|
|
char *sv;
|
|
|
|
int (*parser) __P((char **));
|
|
|
|
|
1999-05-12 14:19:49 +08:00
|
|
|
if (prepass && (opt->flags & OPT_PREPASS) == 0)
|
|
|
|
return 1;
|
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
if ((opt->flags & OPT_PRIV) && !privileged_option) {
|
|
|
|
option_error("using the %s option requires root privilege", opt->name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if ((opt->flags & OPT_ENABLE) && *(bool *)(opt->addr2) == 0) {
|
|
|
|
option_error("%s option is disabled", opt->name);
|
|
|
|
return 0;
|
|
|
|
}
|
1999-03-12 14:07:24 +08:00
|
|
|
if ((opt->flags & OPT_PRIVFIX) && !privileged_option) {
|
|
|
|
struct option_info *ip = (struct option_info *) opt->addr2;
|
|
|
|
if (ip && ip->priv) {
|
|
|
|
option_error("%s option cannot be overridden", opt->name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
|
|
|
|
switch (opt->type) {
|
|
|
|
case o_bool:
|
|
|
|
v = opt->flags & OPT_VALUE;
|
|
|
|
*(bool *)(opt->addr) = v;
|
|
|
|
if (opt->addr2 && (opt->flags & OPT_A2COPY))
|
|
|
|
*(bool *)(opt->addr2) = v;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case o_int:
|
|
|
|
iv = 0;
|
|
|
|
if ((opt->flags & OPT_NOARG) == 0) {
|
|
|
|
if (!int_option(*argv, &iv))
|
|
|
|
return 0;
|
|
|
|
if ((((opt->flags & OPT_LLIMIT) && iv < opt->lower_limit)
|
|
|
|
|| ((opt->flags & OPT_ULIMIT) && iv > opt->upper_limit))
|
|
|
|
&& !((opt->flags & OPT_ZEROOK && iv == 0))) {
|
|
|
|
char *zok = (opt->flags & OPT_ZEROOK)? " zero or": "";
|
|
|
|
switch (opt->flags & OPT_LIMITS) {
|
|
|
|
case OPT_LLIMIT:
|
|
|
|
option_error("%s value must be%s >= %d",
|
|
|
|
opt->name, zok, opt->lower_limit);
|
|
|
|
break;
|
|
|
|
case OPT_ULIMIT:
|
|
|
|
option_error("%s value must be%s <= %d",
|
|
|
|
opt->name, zok, opt->upper_limit);
|
|
|
|
break;
|
|
|
|
case OPT_LIMITS:
|
|
|
|
option_error("%s value must be%s between %d and %d",
|
|
|
|
opt->name, opt->lower_limit, opt->upper_limit);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a = opt->flags & OPT_VALUE;
|
|
|
|
if (a >= 128)
|
|
|
|
a -= 256; /* sign extend */
|
|
|
|
iv += a;
|
|
|
|
if (opt->flags & OPT_INC)
|
|
|
|
iv += *(int *)(opt->addr);
|
|
|
|
if ((opt->flags & OPT_NOINCR) && !privileged_option) {
|
|
|
|
int oldv = *(int *)(opt->addr);
|
|
|
|
if ((opt->flags & OPT_ZEROINF) ?
|
|
|
|
(oldv != 0 && (iv == 0 || iv > oldv)) : (iv > oldv)) {
|
|
|
|
option_error("%s value cannot be increased", opt->name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*(int *)(opt->addr) = iv;
|
|
|
|
if (opt->addr2 && (opt->flags & OPT_A2COPY))
|
|
|
|
*(int *)(opt->addr2) = iv;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case o_uint32:
|
|
|
|
if (opt->flags & OPT_NOARG) {
|
|
|
|
v = opt->flags & OPT_VALUE;
|
|
|
|
} else if (!number_option(*argv, &v, 16))
|
|
|
|
return 0;
|
|
|
|
if (opt->flags & OPT_OR)
|
|
|
|
v |= *(u_int32_t *)(opt->addr);
|
|
|
|
*(u_int32_t *)(opt->addr) = v;
|
|
|
|
if (opt->addr2 && (opt->flags & OPT_A2COPY))
|
|
|
|
*(u_int32_t *)(opt->addr2) = v;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case o_string:
|
|
|
|
if (opt->flags & OPT_STATIC) {
|
1999-03-19 09:27:43 +08:00
|
|
|
strlcpy((char *)(opt->addr), *argv, opt->upper_limit);
|
1998-11-07 14:59:32 +08:00
|
|
|
} else {
|
|
|
|
sv = strdup(*argv);
|
|
|
|
if (sv == NULL)
|
|
|
|
novm("option argument");
|
|
|
|
*(char **)(opt->addr) = sv;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case o_special_noarg:
|
|
|
|
case o_special:
|
|
|
|
parser = (int (*) __P((char **))) opt->addr;
|
|
|
|
if (!(*parser)(argv))
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt->addr2) {
|
|
|
|
if (opt->flags & OPT_A2INFO) {
|
|
|
|
struct option_info *ip = (struct option_info *) opt->addr2;
|
|
|
|
ip->priv = privileged_option;
|
|
|
|
ip->source = option_source;
|
|
|
|
} else if ((opt->flags & (OPT_A2COPY|OPT_ENABLE)) == 0)
|
|
|
|
*(bool *)(opt->addr2) = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* n_arguments - tell how many arguments an option takes
|
|
|
|
*/
|
|
|
|
static int
|
1999-03-08 13:34:46 +08:00
|
|
|
n_arguments(opt)
|
|
|
|
option_t *opt;
|
1998-11-07 14:59:32 +08:00
|
|
|
{
|
|
|
|
return (opt->type == o_bool || opt->type == o_special_noarg
|
|
|
|
|| (opt->flags & OPT_NOARG))? 0: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* usage - print out a message telling how to use the program.
|
|
|
|
*/
|
1999-03-19 09:27:43 +08:00
|
|
|
static void
|
1998-11-07 14:59:32 +08:00
|
|
|
usage()
|
|
|
|
{
|
|
|
|
if (phase == PHASE_INITIALIZE)
|
|
|
|
fprintf(stderr, usage_string, VERSION, PATCHLEVEL, IMPLEMENTATION,
|
|
|
|
progname);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* showhelp - print out usage message and exit.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
showhelp(argv)
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
if (phase == PHASE_INITIALIZE) {
|
|
|
|
usage();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* showversion - print out the version number and exit.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
showversion(argv)
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
if (phase == PHASE_INITIALIZE) {
|
1999-03-08 09:47:24 +08:00
|
|
|
fprintf(stderr, "pppd version %s.%d%s\n",
|
1998-11-07 14:59:32 +08:00
|
|
|
VERSION, PATCHLEVEL, IMPLEMENTATION);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1996-05-27 08:04:47 +08:00
|
|
|
/*
|
|
|
|
* option_error - print a message about an error in an option.
|
|
|
|
* The message is logged, and also sent to
|
|
|
|
* stderr if phase == PHASE_INITIALIZE.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
option_error __V((char *fmt, ...))
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buf[256];
|
|
|
|
|
|
|
|
#if __STDC__
|
|
|
|
va_start(args, fmt);
|
|
|
|
#else
|
|
|
|
char *fmt;
|
|
|
|
va_start(args);
|
|
|
|
fmt = va_arg(args, char *);
|
|
|
|
#endif
|
1999-05-12 14:19:49 +08:00
|
|
|
if (prepass) {
|
|
|
|
va_end(args);
|
|
|
|
return;
|
|
|
|
}
|
1999-03-12 14:07:24 +08:00
|
|
|
vslprintf(buf, sizeof(buf), fmt, args);
|
1996-05-27 08:04:47 +08:00
|
|
|
va_end(args);
|
|
|
|
if (phase == PHASE_INITIALIZE)
|
|
|
|
fprintf(stderr, "%s: %s\n", progname, buf);
|
|
|
|
syslog(LOG_ERR, "%s", buf);
|
|
|
|
}
|
|
|
|
|
1999-03-19 09:27:43 +08:00
|
|
|
#if 0
|
1994-05-18 14:34:15 +08:00
|
|
|
/*
|
|
|
|
* readable - check if a file is readable by the real user.
|
|
|
|
*/
|
1999-02-26 19:03:34 +08:00
|
|
|
int
|
1994-05-18 14:34:15 +08:00
|
|
|
readable(fd)
|
|
|
|
int fd;
|
|
|
|
{
|
1999-03-06 19:28:11 +08:00
|
|
|
uid_t uid;
|
1999-03-12 14:07:24 +08:00
|
|
|
int i;
|
1994-05-18 14:34:15 +08:00
|
|
|
struct stat sbuf;
|
|
|
|
|
1999-03-06 19:28:11 +08:00
|
|
|
uid = getuid();
|
1994-05-18 14:34:15 +08:00
|
|
|
if (uid == 0)
|
|
|
|
return 1;
|
|
|
|
if (fstat(fd, &sbuf) != 0)
|
|
|
|
return 0;
|
|
|
|
if (sbuf.st_uid == uid)
|
|
|
|
return sbuf.st_mode & S_IRUSR;
|
|
|
|
if (sbuf.st_gid == getgid())
|
|
|
|
return sbuf.st_mode & S_IRGRP;
|
|
|
|
for (i = 0; i < ngroups; ++i)
|
|
|
|
if (sbuf.st_gid == groups[i])
|
|
|
|
return sbuf.st_mode & S_IRGRP;
|
|
|
|
return sbuf.st_mode & S_IROTH;
|
|
|
|
}
|
1999-03-19 09:27:43 +08:00
|
|
|
#endif
|
1994-05-18 14:34:15 +08:00
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
/*
|
|
|
|
* Read a word from a file.
|
1995-06-12 20:02:25 +08:00
|
|
|
* Words are delimited by white-space or by quotes (" or ').
|
1993-11-11 11:56:47 +08:00
|
|
|
* Quotes, white-space and \ may be escaped with \.
|
|
|
|
* \<newline> is ignored.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
getword(f, word, newlinep, filename)
|
|
|
|
FILE *f;
|
|
|
|
char *word;
|
|
|
|
int *newlinep;
|
|
|
|
char *filename;
|
|
|
|
{
|
|
|
|
int c, len, escape;
|
1995-06-12 19:22:55 +08:00
|
|
|
int quoted, comment;
|
|
|
|
int value, digit, got, n;
|
|
|
|
|
|
|
|
#define isoctal(c) ((c) >= '0' && (c) < '8')
|
1993-11-11 11:56:47 +08:00
|
|
|
|
|
|
|
*newlinep = 0;
|
|
|
|
len = 0;
|
|
|
|
escape = 0;
|
1995-06-12 19:22:55 +08:00
|
|
|
comment = 0;
|
1993-11-11 11:56:47 +08:00
|
|
|
|
|
|
|
/*
|
1995-06-12 19:22:55 +08:00
|
|
|
* First skip white-space and comments.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
1995-06-12 19:22:55 +08:00
|
|
|
for (;;) {
|
|
|
|
c = getc(f);
|
|
|
|
if (c == EOF)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A newline means the end of a comment; backslash-newline
|
|
|
|
* is ignored. Note that we cannot have escape && comment.
|
|
|
|
*/
|
|
|
|
if (c == '\n') {
|
|
|
|
if (!escape) {
|
|
|
|
*newlinep = 1;
|
|
|
|
comment = 0;
|
|
|
|
} else
|
|
|
|
escape = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ignore characters other than newline in a comment.
|
|
|
|
*/
|
|
|
|
if (comment)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this character is escaped, we have a word start.
|
|
|
|
*/
|
|
|
|
if (escape)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this is the escape character, look at the next character.
|
|
|
|
*/
|
1993-11-11 11:56:47 +08:00
|
|
|
if (c == '\\') {
|
1995-06-12 19:22:55 +08:00
|
|
|
escape = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this is the start of a comment, ignore the rest of the line.
|
|
|
|
*/
|
|
|
|
if (c == '#') {
|
|
|
|
comment = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A non-whitespace character is the start of a word.
|
|
|
|
*/
|
|
|
|
if (!isspace(c))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Save the delimiter for quoted strings.
|
|
|
|
*/
|
|
|
|
if (!escape && (c == '"' || c == '\'')) {
|
|
|
|
quoted = c;
|
|
|
|
c = getc(f);
|
|
|
|
} else
|
|
|
|
quoted = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process characters until the end of the word.
|
|
|
|
*/
|
|
|
|
while (c != EOF) {
|
|
|
|
if (escape) {
|
1993-11-11 11:56:47 +08:00
|
|
|
/*
|
1995-06-12 19:22:55 +08:00
|
|
|
* This character is escaped: backslash-newline is ignored,
|
|
|
|
* various other characters indicate particular values
|
|
|
|
* as for C backslash-escapes.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
1995-06-12 19:22:55 +08:00
|
|
|
escape = 0;
|
|
|
|
if (c == '\n') {
|
|
|
|
c = getc(f);
|
1993-11-11 11:56:47 +08:00
|
|
|
continue;
|
1995-06-12 19:22:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
got = 0;
|
|
|
|
switch (c) {
|
|
|
|
case 'a':
|
|
|
|
value = '\a';
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
value = '\b';
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
value = '\f';
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
value = '\n';
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
value = '\r';
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
value = ' ';
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
value = '\t';
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (isoctal(c)) {
|
|
|
|
/*
|
|
|
|
* \ddd octal sequence
|
|
|
|
*/
|
|
|
|
value = 0;
|
|
|
|
for (n = 0; n < 3 && isoctal(c); ++n) {
|
|
|
|
value = (value << 3) + (c & 07);
|
|
|
|
c = getc(f);
|
|
|
|
}
|
|
|
|
got = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == 'x') {
|
|
|
|
/*
|
|
|
|
* \x<hex_string> sequence
|
|
|
|
*/
|
|
|
|
value = 0;
|
|
|
|
c = getc(f);
|
|
|
|
for (n = 0; n < 2 && isxdigit(c); ++n) {
|
|
|
|
digit = toupper(c) - '0';
|
|
|
|
if (digit > 10)
|
|
|
|
digit += '0' + 10 - 'A';
|
|
|
|
value = (value << 4) + digit;
|
|
|
|
c = getc (f);
|
|
|
|
}
|
|
|
|
got = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise the character stands for itself.
|
|
|
|
*/
|
|
|
|
value = c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Store the resulting character for the escape sequence.
|
|
|
|
*/
|
|
|
|
if (len < MAXWORDLEN-1)
|
|
|
|
word[len] = value;
|
|
|
|
++len;
|
|
|
|
|
|
|
|
if (!got)
|
|
|
|
c = getc(f);
|
|
|
|
continue;
|
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
1995-06-12 19:22:55 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Not escaped: see if we've reached the end of the word.
|
|
|
|
*/
|
|
|
|
if (quoted) {
|
|
|
|
if (c == quoted)
|
1993-11-11 11:56:47 +08:00
|
|
|
break;
|
1995-06-12 19:22:55 +08:00
|
|
|
} else {
|
|
|
|
if (isspace(c) || c == '#') {
|
|
|
|
ungetc (c, f);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Backslash starts an escape sequence.
|
|
|
|
*/
|
|
|
|
if (c == '\\') {
|
|
|
|
escape = 1;
|
|
|
|
c = getc(f);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An ordinary character: store it in the word and get another.
|
|
|
|
*/
|
|
|
|
if (len < MAXWORDLEN-1)
|
|
|
|
word[len] = c;
|
|
|
|
++len;
|
|
|
|
|
|
|
|
c = getc(f);
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1995-06-12 19:22:55 +08:00
|
|
|
* End of the word: check for errors.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
|
|
|
if (c == EOF) {
|
|
|
|
if (ferror(f)) {
|
1995-06-12 19:22:55 +08:00
|
|
|
if (errno == 0)
|
|
|
|
errno = EIO;
|
1996-05-27 08:04:47 +08:00
|
|
|
option_error("Error reading %s: %m", filename);
|
1993-11-11 11:56:47 +08:00
|
|
|
die(1);
|
|
|
|
}
|
|
|
|
/*
|
1995-06-12 19:22:55 +08:00
|
|
|
* If len is zero, then we didn't find a word before the
|
|
|
|
* end of the file.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
1995-06-12 19:22:55 +08:00
|
|
|
if (len == 0)
|
|
|
|
return 0;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
|
1995-06-12 19:22:55 +08:00
|
|
|
/*
|
|
|
|
* Warn if the word was too long, and append a terminating null.
|
|
|
|
*/
|
1993-11-11 11:56:47 +08:00
|
|
|
if (len >= MAXWORDLEN) {
|
1996-05-27 08:04:47 +08:00
|
|
|
option_error("warning: word in file %s too long (%.20s...)",
|
|
|
|
filename, word);
|
1995-06-12 19:22:55 +08:00
|
|
|
len = MAXWORDLEN - 1;
|
|
|
|
}
|
|
|
|
word[len] = 0;
|
1993-11-11 11:56:47 +08:00
|
|
|
|
|
|
|
return 1;
|
1995-06-12 19:22:55 +08:00
|
|
|
|
|
|
|
#undef isoctal
|
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1995-06-12 20:02:25 +08:00
|
|
|
* number_option - parse an unsigned numeric parameter for an option.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
1999-03-19 09:27:43 +08:00
|
|
|
static int
|
1993-11-11 11:56:47 +08:00
|
|
|
number_option(str, valp, base)
|
|
|
|
char *str;
|
1995-06-12 20:02:25 +08:00
|
|
|
u_int32_t *valp;
|
1993-11-11 11:56:47 +08:00
|
|
|
int base;
|
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
|
1995-06-12 20:02:25 +08:00
|
|
|
*valp = strtoul(str, &ptr, base);
|
1993-11-11 11:56:47 +08:00
|
|
|
if (ptr == str) {
|
1996-05-27 08:04:47 +08:00
|
|
|
option_error("invalid numeric parameter '%s' for %s option",
|
|
|
|
str, current_option);
|
1993-11-11 11:56:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* int_option - like number_option, but valp is int *,
|
|
|
|
* the base is assumed to be 0, and *valp is not changed
|
|
|
|
* if there is an error.
|
|
|
|
*/
|
1998-11-07 14:59:32 +08:00
|
|
|
int
|
1993-11-11 11:56:47 +08:00
|
|
|
int_option(str, valp)
|
|
|
|
char *str;
|
|
|
|
int *valp;
|
|
|
|
{
|
1995-06-12 20:02:25 +08:00
|
|
|
u_int32_t v;
|
1993-11-11 11:56:47 +08:00
|
|
|
|
|
|
|
if (!number_option(str, &v, 0))
|
|
|
|
return 0;
|
|
|
|
*valp = (int) v;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1996-05-27 08:04:47 +08:00
|
|
|
* The following procedures parse options.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* readfile - take commands from a file.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
readfile(argv)
|
|
|
|
char **argv;
|
|
|
|
{
|
1996-08-28 14:41:35 +08:00
|
|
|
return options_from_file(*argv, 1, 1, privileged_option);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* callfile - take commands from /etc/ppp/peers/<name>.
|
|
|
|
* Name may not contain /../, start with / or ../, or end in /..
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
callfile(argv)
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
char *fname, *arg, *p;
|
|
|
|
int l, ok;
|
|
|
|
|
|
|
|
arg = *argv;
|
|
|
|
ok = 1;
|
|
|
|
if (arg[0] == '/' || arg[0] == 0)
|
|
|
|
ok = 0;
|
|
|
|
else {
|
|
|
|
for (p = arg; *p != 0; ) {
|
|
|
|
if (p[0] == '.' && p[1] == '.' && (p[2] == '/' || p[2] == 0)) {
|
|
|
|
ok = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while (*p != '/' && *p != 0)
|
|
|
|
++p;
|
|
|
|
if (*p == '/')
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ok) {
|
|
|
|
option_error("call option value may not contain .. or start with /");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
l = strlen(arg) + strlen(_PATH_PEERFILES) + 1;
|
|
|
|
if ((fname = (char *) malloc(l)) == NULL)
|
|
|
|
novm("call file name");
|
1999-03-12 14:07:24 +08:00
|
|
|
slprintf(fname, l, "%s%s", _PATH_PEERFILES, arg);
|
1996-08-28 14:41:35 +08:00
|
|
|
|
|
|
|
ok = options_from_file(fname, 1, 1, 1);
|
|
|
|
|
|
|
|
free(fname);
|
|
|
|
return ok;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
|
1997-04-30 13:55:54 +08:00
|
|
|
#ifdef PPP_FILTER
|
|
|
|
/*
|
|
|
|
* setpdebug - Set libpcap debugging level.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
setpdebug(argv)
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
return int_option(*argv, &dflag);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* setpassfilter - Set the pass filter for packets
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
setpassfilter(argv)
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
pc.linktype = DLT_PPP;
|
|
|
|
pc.snapshot = PPP_HDRLEN;
|
|
|
|
|
|
|
|
if (pcap_compile(&pc, &pass_filter, *argv, 1, netmask) == 0)
|
|
|
|
return 1;
|
|
|
|
option_error("error in pass-filter expression: %s\n", pcap_geterr(&pc));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* setactivefilter - Set the active filter for packets
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
setactivefilter(argv)
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
pc.linktype = DLT_PPP;
|
|
|
|
pc.snapshot = PPP_HDRLEN;
|
|
|
|
|
|
|
|
if (pcap_compile(&pc, &active_filter, *argv, 1, netmask) == 0)
|
|
|
|
return 1;
|
|
|
|
option_error("error in active-filter expression: %s\n", pcap_geterr(&pc));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
/*
|
|
|
|
* noopt - Disable all options.
|
|
|
|
*/
|
|
|
|
static int
|
1997-04-30 13:55:54 +08:00
|
|
|
noopt(argv)
|
|
|
|
char **argv;
|
1993-11-11 11:56:47 +08:00
|
|
|
{
|
|
|
|
BZERO((char *) &lcp_wantoptions[0], sizeof (struct lcp_options));
|
|
|
|
BZERO((char *) &lcp_allowoptions[0], sizeof (struct lcp_options));
|
|
|
|
BZERO((char *) &ipcp_wantoptions[0], sizeof (struct ipcp_options));
|
|
|
|
BZERO((char *) &ipcp_allowoptions[0], sizeof (struct ipcp_options));
|
1995-12-18 11:49:06 +08:00
|
|
|
|
1993-11-11 11:56:47 +08:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1998-11-07 14:59:32 +08:00
|
|
|
* setdomain - Set domain name to append to hostname
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
|
|
|
static int
|
1998-11-07 14:59:32 +08:00
|
|
|
setdomain(argv)
|
1997-04-30 13:55:54 +08:00
|
|
|
char **argv;
|
1993-11-11 11:56:47 +08:00
|
|
|
{
|
1998-11-07 14:59:32 +08:00
|
|
|
if (!privileged_option) {
|
|
|
|
option_error("using the domain option requires root privilege");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
gethostname(hostname, MAXNAMELEN);
|
|
|
|
if (**argv != 0) {
|
|
|
|
if (**argv != '.')
|
|
|
|
strncat(hostname, ".", MAXNAMELEN - strlen(hostname));
|
|
|
|
strncat(hostname, *argv, MAXNAMELEN - strlen(hostname));
|
|
|
|
}
|
|
|
|
hostname[MAXNAMELEN-1] = 0;
|
1993-11-11 11:56:47 +08:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1998-11-07 14:59:32 +08:00
|
|
|
* setspeed - Set the speed.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
|
|
|
static int
|
1998-11-07 14:59:32 +08:00
|
|
|
setspeed(arg)
|
|
|
|
char *arg;
|
1993-11-11 11:56:47 +08:00
|
|
|
{
|
1998-11-07 14:59:32 +08:00
|
|
|
char *ptr;
|
|
|
|
int spd;
|
|
|
|
|
|
|
|
spd = strtol(arg, &ptr, 0);
|
|
|
|
if (ptr == arg || *ptr != 0 || spd == 0)
|
|
|
|
return 0;
|
|
|
|
inspeed = spd;
|
|
|
|
return 1;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1998-11-07 14:59:32 +08:00
|
|
|
* setdevname - Set the device name.
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
|
|
|
static int
|
1999-05-12 14:19:49 +08:00
|
|
|
setdevname(cp)
|
1998-11-07 14:59:32 +08:00
|
|
|
char *cp;
|
1993-11-11 11:56:47 +08:00
|
|
|
{
|
1998-11-07 14:59:32 +08:00
|
|
|
struct stat statbuf;
|
|
|
|
char dev[MAXPATHLEN];
|
|
|
|
|
|
|
|
if (*cp == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (strncmp("/dev/", cp, 5) != 0) {
|
1999-03-19 09:27:43 +08:00
|
|
|
strlcpy(dev, "/dev/", sizeof(dev));
|
|
|
|
strlcat(dev, cp, sizeof(dev));
|
1998-11-07 14:59:32 +08:00
|
|
|
cp = dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1999-05-12 14:19:49 +08:00
|
|
|
* Check if there is a character device by this name.
|
1998-11-07 14:59:32 +08:00
|
|
|
*/
|
|
|
|
if (stat(cp, &statbuf) < 0) {
|
1999-05-12 14:19:49 +08:00
|
|
|
if (errno == ENOENT)
|
1998-11-07 14:59:32 +08:00
|
|
|
return 0;
|
|
|
|
option_error("Couldn't stat %s: %m", cp);
|
|
|
|
return -1;
|
|
|
|
}
|
1999-05-12 14:19:49 +08:00
|
|
|
if (!S_ISCHR(statbuf.st_mode)) {
|
|
|
|
option_error("%s is not a character device", cp);
|
|
|
|
return -1;
|
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
|
1999-03-12 14:07:24 +08:00
|
|
|
if (devnam_info.priv && !privileged_option) {
|
1999-05-12 14:19:49 +08:00
|
|
|
option_error("device name cannot be overridden");
|
1999-03-12 14:07:24 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1999-03-19 09:27:43 +08:00
|
|
|
strlcpy(devnam, cp, sizeof(devnam));
|
1999-05-12 14:19:49 +08:00
|
|
|
devstat = statbuf;
|
1999-03-19 09:27:43 +08:00
|
|
|
default_device = 0;
|
1999-03-02 13:59:22 +08:00
|
|
|
devnam_info.priv = privileged_option;
|
|
|
|
devnam_info.source = option_source;
|
1998-11-07 14:59:32 +08:00
|
|
|
|
|
|
|
return 1;
|
1993-11-11 11:56:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1998-11-07 14:59:32 +08:00
|
|
|
* setipaddr - Set the IP address
|
1993-11-11 11:56:47 +08:00
|
|
|
*/
|
|
|
|
static int
|
1998-11-07 14:59:32 +08:00
|
|
|
setipaddr(arg)
|
|
|
|
char *arg;
|
1996-09-26 14:22:22 +08:00
|
|
|
{
|
|
|
|
struct hostent *hp;
|
1998-11-07 14:59:32 +08:00
|
|
|
char *colon;
|
|
|
|
u_int32_t local, remote;
|
|
|
|
ipcp_options *wo = &ipcp_wantoptions[0];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IP address pair separated by ":".
|
|
|
|
*/
|
|
|
|
if ((colon = strchr(arg, ':')) == NULL)
|
|
|
|
return 0;
|
1999-05-12 14:19:49 +08:00
|
|
|
if (prepass)
|
|
|
|
return 1;
|
1998-11-07 14:59:32 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If colon first character, then no local addr.
|
|
|
|
*/
|
|
|
|
if (colon != arg) {
|
|
|
|
*colon = '\0';
|
|
|
|
if ((local = inet_addr(arg)) == -1) {
|
|
|
|
if ((hp = gethostbyname(arg)) == NULL) {
|
|
|
|
option_error("unknown host: %s", arg);
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
local = *(u_int32_t *)hp->h_addr;
|
|
|
|
}
|
1996-09-26 14:22:22 +08:00
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
if (bad_ip_adrs(local)) {
|
|
|
|
option_error("bad local IP address %s", ip_ntoa(local));
|
|
|
|
return -1;
|
1997-03-04 11:41:58 +08:00
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
if (local != 0)
|
|
|
|
wo->ouraddr = local;
|
|
|
|
*colon = ':';
|
1997-03-04 11:41:58 +08:00
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If colon last character, then no remote addr.
|
|
|
|
*/
|
|
|
|
if (*++colon != '\0') {
|
|
|
|
if ((remote = inet_addr(colon)) == -1) {
|
|
|
|
if ((hp = gethostbyname(colon)) == NULL) {
|
|
|
|
option_error("unknown host: %s", colon);
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
remote = *(u_int32_t *)hp->h_addr;
|
1999-03-12 14:07:24 +08:00
|
|
|
if (remote_name[0] == 0)
|
1999-03-19 09:27:43 +08:00
|
|
|
strlcpy(remote_name, colon, sizeof(remote_name));
|
1998-11-07 14:59:32 +08:00
|
|
|
}
|
1995-12-18 11:49:06 +08:00
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
if (bad_ip_adrs(remote)) {
|
|
|
|
option_error("bad remote IP address %s", ip_ntoa(remote));
|
|
|
|
return -1;
|
1995-12-18 11:49:06 +08:00
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
if (remote != 0)
|
|
|
|
wo->hisaddr = remote;
|
1995-12-18 11:49:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
/*
|
|
|
|
* setnetmask - set the netmask to be used on the interface.
|
|
|
|
*/
|
1995-12-18 11:49:06 +08:00
|
|
|
static int
|
1998-11-07 14:59:32 +08:00
|
|
|
setnetmask(argv)
|
1997-04-30 13:55:54 +08:00
|
|
|
char **argv;
|
1995-12-18 11:49:06 +08:00
|
|
|
{
|
1998-11-07 14:59:32 +08:00
|
|
|
u_int32_t mask, b;
|
|
|
|
int n, ok;
|
|
|
|
char *p, *endp;
|
1995-12-18 11:49:06 +08:00
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
/*
|
|
|
|
* Unfortunately, if we use inet_addr, we can't tell whether
|
|
|
|
* a result of all 1s is an error or a valid 255.255.255.255.
|
|
|
|
*/
|
|
|
|
p = *argv;
|
|
|
|
ok = 0;
|
|
|
|
mask = 0;
|
|
|
|
for (n = 3;; --n) {
|
|
|
|
b = strtoul(p, &endp, 0);
|
|
|
|
if (endp == p)
|
|
|
|
break;
|
|
|
|
if (b < 0 || b > 255) {
|
|
|
|
if (n == 3) {
|
|
|
|
/* accept e.g. 0xffffff00 */
|
|
|
|
p = endp;
|
|
|
|
mask = b;
|
|
|
|
}
|
1995-12-18 11:49:06 +08:00
|
|
|
break;
|
|
|
|
}
|
1998-11-07 14:59:32 +08:00
|
|
|
mask |= b << (n * 8);
|
|
|
|
p = endp;
|
|
|
|
if (*p != '.' || n == 0)
|
|
|
|
break;
|
|
|
|
++p;
|
1995-12-18 11:49:06 +08:00
|
|
|
}
|
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
mask = htonl(mask);
|
1995-12-18 11:49:06 +08:00
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
if (*p != 0 || (netmask & ~mask) != 0) {
|
|
|
|
option_error("invalid netmask value '%s'", *argv);
|
|
|
|
return 0;
|
1995-12-18 11:49:06 +08:00
|
|
|
}
|
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
netmask = mask;
|
|
|
|
return (1);
|
1995-12-18 11:49:06 +08:00
|
|
|
}
|
1996-10-08 12:35:04 +08:00
|
|
|
|
|
|
|
static int
|
1998-11-07 14:59:32 +08:00
|
|
|
setxonxoff(argv)
|
1997-04-30 13:55:54 +08:00
|
|
|
char **argv;
|
1996-10-08 12:35:04 +08:00
|
|
|
{
|
1998-11-07 14:59:32 +08:00
|
|
|
lcp_wantoptions[0].asyncmap |= 0x000A0000; /* escape ^S and ^Q */
|
|
|
|
lcp_wantoptions[0].neg_asyncmap = 1;
|
1997-04-30 13:55:54 +08:00
|
|
|
|
1998-11-07 14:59:32 +08:00
|
|
|
crtscts = -2;
|
1997-04-30 13:55:54 +08:00
|
|
|
return (1);
|
|
|
|
}
|