http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / userapps / opensource / ppp / pppoe / pppd.h
1 /*
2  * pppd.h - PPP daemon global declarations.
3  *
4  * Copyright (c) 1989 Carnegie Mellon University.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted
8  * provided that the above copyright notice and this paragraph are
9  * duplicated in all such forms and that any documentation,
10  * advertising materials, and other materials related to such
11  * distribution and use acknowledge that the software was developed
12  * by Carnegie Mellon University.  The name of the
13  * University may not be used to endorse or promote products derived
14  * from this software without specific prior written permission.
15  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18  *
19  * $Id: pppd.h,v 1.5 2006/12/14 05:58:40 andylin Exp $
20  */
21
22 /*
23  * TODO:
24  */
25
26 #ifndef __PPPD_H__
27 #define __PPPD_H__
28
29 #include <stdio.h>              /* for FILE */
30 #include <limits.h>             /* for NGROUPS_MAX */
31 #include <sys/param.h>          /* for MAXPATHLEN and BSD4_4, if defined */
32 #include <sys/types.h>          /* for u_int32_t, if defined */
33 #include <sys/time.h>           /* for struct timeval */
34 #include <net/ppp_defs.h>
35 #include "patchlevel.h"
36
37 #if defined(__STDC__)
38 #include <stdarg.h>
39 #define __V(x)  x
40 #else
41 #include <varargs.h>
42 #define __V(x)  (va_alist) va_dcl
43 #define const
44 #define volatile
45 #endif
46
47 #ifdef INET6
48 #include "eui64.h"
49 #endif
50
51 /*
52  * Limits.
53  */
54
55 // brcm
56 #ifdef MAXPATHLEN
57 #undef MAXPATHLEN
58 #endif
59 #define MAXPATHLEN      64
60
61 #define NUM_PPP         1       /* One PPP interface supported (per process) */
62 #define MAXWORDLEN      1024    /* max length of word in file (incl null) */
63 #define MAXARGS         1       /* max # args to a command */
64 #define MAXNAMELEN      256     /* max length of hostname or name for auth */
65 #define MAXSECRETLEN    256     /* max length of password or secret */
66 #define MAXSRVNAMELEN   256
67 #define PPPOE   0
68 #define PPPOA   1
69
70 /*
71  * Option descriptor structure.
72  */
73
74 typedef unsigned char   bool;
75
76 enum opt_type {
77         o_special_noarg = 0,
78         o_special = 1,
79         o_bool,
80         o_int,
81         o_uint32,
82         o_string,
83         o_wild,
84 };
85
86 typedef struct {
87         char    *name;          /* name of the option */
88         enum opt_type type;
89         void    *addr;
90         char    *description;
91         int     flags;
92         void    *addr2;
93         int     upper_limit;
94         int     lower_limit;
95         const char *source;
96         short int priority;
97         short int winner;
98 } option_t;
99
100 /* Values for flags */
101 #define OPT_VALUE       0xff    /* mask for presupplied value */
102 #define OPT_HEX         0x100   /* int option is in hex */
103 #define OPT_NOARG       0x200   /* option doesn't take argument */
104 #define OPT_OR          0x400   /* OR in argument to value */
105 #define OPT_INC         0x800   /* increment value */
106 #define OPT_PRIV        0x1000  /* privileged option */
107 #define OPT_STATIC      0x2000  /* string option goes into static array */
108 #define OPT_LLIMIT      0x4000  /* check value against lower limit */
109 #define OPT_ULIMIT      0x8000  /* check value against upper limit */
110 #define OPT_LIMITS      (OPT_LLIMIT|OPT_ULIMIT)
111 #define OPT_ZEROOK      0x10000 /* 0 value is OK even if not within limits */
112 #define OPT_HIDE        0x10000 /* for o_string, print value as ?????? */
113 #define OPT_A2LIST      0x10000 /* for o_special, keep list of values */
114 #define OPT_NOINCR      0x20000 /* value mustn't be increased */
115 #define OPT_ZEROINF     0x40000 /* with OPT_NOINCR, 0 == infinity */
116 #define OPT_PRIO        0x80000 /* process option priorities for this option */
117 #define OPT_PRIOSUB     0x100000 /* subsidiary member of priority group */
118 #define OPT_ALIAS       0x200000 /* option is alias for previous option */
119 #define OPT_A2COPY      0x400000 /* addr2 -> second location to rcv value */
120 #define OPT_ENABLE      0x800000 /* use *addr2 as enable for option */
121 #define OPT_A2CLR       0x1000000 /* clear *(bool *)addr2 */
122 #define OPT_PRIVFIX     0x2000000 /* user can't override if set by root */
123 #define OPT_INITONLY    0x4000000 /* option can only be set in init phase */
124 #define OPT_DEVEQUIV    0x8000000 /* equiv to device name */
125 #define OPT_DEVNAM      (OPT_INITONLY | OPT_DEVEQUIV)
126 #define OPT_A2PRINTER   0x10000000 /* *addr2 is a fn for printing option */
127 #define OPT_A2STRVAL    0x20000000 /* *addr2 points to current string value */
128 #define OPT_NOPRINT     0x40000000 /* don't print this option at all */
129
130 #define OPT_VAL(x)      ((x) & OPT_VALUE)
131
132 /* Values for priority */
133 #define OPRIO_DEFAULT   0       /* a default value */
134 #define OPRIO_CFGFILE   1       /* value from a configuration file */
135 #define OPRIO_CMDLINE   2       /* value from the command line */
136 #define OPRIO_SECFILE   3       /* value from options in a secrets file */
137 #define OPRIO_ROOT      100     /* added to priority if OPT_PRIVFIX && root */
138
139 #ifndef GIDSET_TYPE
140 #define GIDSET_TYPE     gid_t
141 #endif
142
143 /* Structure representing a list of permitted IP addresses. */
144 struct permitted_ip {
145     int         permit;         /* 1 = permit, 0 = forbid */
146     u_int32_t   base;           /* match if (addr & mask) == base */
147     u_int32_t   mask;           /* base and mask are in network byte order */
148 };
149
150 /*
151  * Unfortunately, the linux kernel driver uses a different structure
152  * for statistics from the rest of the ports.
153  * This structure serves as a common representation for the bits
154  * pppd needs.
155  */
156 struct pppd_stats {
157     unsigned int        bytes_in;
158     unsigned int        bytes_out;
159 };
160
161 /* Used for storing a sequence of words.  Usually malloced. */
162 struct wordlist {
163     struct wordlist     *next;
164     char                *word;
165 };
166
167 /* An endpoint discriminator, used with multilink. */
168 #define MAX_ENDP_LEN    20      /* maximum length of discriminator value */
169 struct epdisc {
170     unsigned char       class;
171     unsigned char       length;
172     unsigned char       value[MAX_ENDP_LEN];
173 };
174
175 /* values for epdisc.class */
176 #define EPD_NULL        0       /* null discriminator, no data */
177 #define EPD_LOCAL       1
178 #define EPD_IP          2
179 #define EPD_MAC         3
180 #define EPD_MAGIC       4
181 #define EPD_PHONENUM    5
182
183 typedef void (*notify_func) __P((void *, int));
184
185 struct notifier {
186     struct notifier *next;
187     notify_func     func;
188     void            *arg;
189 };
190
191 /*
192  * Global variables.
193  */
194
195 //ODM Charles 06/25/2003, for manual ppp up/down, defined in main.c
196 extern int ppp_manual;  /* Manual operation has been enabled */
197 extern int ppp_status;          /* PPP (ipcp) connection status (0=down, 1=up) */
198 extern int ppp_addgw;   /*ppp add default gateway 1:add, 0:no */
199 extern int      hungup;         /* Physical layer has disconnected */
200 extern int      ifunit;         /* Interface unit number */
201 extern char     ifname[];       /* Interface name */
202 extern char     hostname[];     /* Our hostname */
203 extern u_char   outpacket_buf[]; /* Buffer for outgoing packets */
204 extern int      phase;          /* Current state of link - see values below */
205 extern int      baud_rate;      /* Current link speed in bits/sec */
206 extern char     *progname;      /* Name of this program */
207 extern int      redirect_stderr;/* Connector's stderr should go to file */
208 extern char     peer_authname[];/* Authenticated name of peer */
209 extern int      privileged;     /* We were run by real-uid root */
210 extern int      need_holdoff;   /* Need holdoff period after link terminates */
211 extern char     **script_env;   /* Environment variables for scripts */
212 extern int      detached;       /* Have detached from controlling tty */
213 extern GIDSET_TYPE groups[NGROUPS_MAX]; /* groups the user is in */
214 extern int      ngroups;        /* How many groups valid in groups */
215 extern struct pppd_stats link_stats; /* byte/packet counts etc. for link */
216 extern int      link_stats_valid; /* set if link_stats is valid */
217 extern int      link_connect_time; /* time the link was up for */
218 extern int      using_pty;      /* using pty as device (notty or pty opt.) */
219 extern int      log_to_fd;      /* logging to this fd as well as syslog */
220 extern bool     log_default;    /* log_to_fd is default (stdout) */
221 extern char     *no_ppp_msg;    /* message to print if ppp not in kernel */
222 extern volatile int status;     /* exit status for pppd */
223 extern bool     devnam_fixed;   /* can no longer change devnam */
224 extern int      unsuccess;      /* # unsuccessful connection attempts */
225 extern int      do_callback;    /* set if we want to do callback next */
226 extern int      doing_callback; /* set if this is a callback */
227 extern char     ppp_devnam[MAXPATHLEN];
228 extern struct notifier *pidchange;   /* for notifications of pid changing */
229 extern struct notifier *phasechange; /* for notifications of phase changes */
230 extern struct notifier *exitnotify;  /* for notification that we're exiting */
231 extern struct notifier *sigreceived; /* notification of received signal */
232 extern int      listen_time;    /* time to listen first (ms) */
233 #if defined(SUPPORT_PPPDBG_SYSLOG)
234 extern int logstatus;
235 #endif
236
237 /* Values for do_callback and doing_callback */
238 #define CALLBACK_DIALIN         1       /* we are expecting the call back */
239 #define CALLBACK_DIALOUT        2       /* we are dialling out to call back */
240
241 #define OFFSET1 10
242 #define OFFSET2 100000
243
244 /*
245  * Variables set by command-line options.
246  */
247
248 /* Debug flags */
249 extern int      DEB_DISC,DEB_DISC2;
250 extern int      debug;          /* Debug flag */
251 extern int      kdebugflag;     /* Tell kernel to print debug messages */
252 extern int      default_device; /* Using /dev/tty or equivalent */
253 extern char     devnam[MAXPATHLEN];     /* Device name */
254 extern int      crtscts;        /* Use hardware flow control */
255 extern bool     modem;          /* Use modem control lines */
256 extern int      inspeed;        /* Input/Output speed requested */
257 extern u_int32_t netmask;       /* IP netmask to set on interface */
258 extern bool     lockflag;       /* Create lock file to lock the serial dev */
259 extern bool     nodetach;       /* Don't detach from controlling tty */
260 extern bool     updetach;       /* Detach from controlling tty when link up */
261 extern char     *initializer;   /* Script to initialize physical link */
262 extern char     *connect_script; /* Script to establish physical link */
263 extern char     *disconnect_script; /* Script to disestablish physical link */
264 extern char     *welcomer;      /* Script to welcome client after connection */
265 extern char     *ptycommand;    /* Command to run on other side of pty */
266 extern int      maxconnect;     /* Maximum connect time (seconds) */
267 extern char     user[MAXNAMELEN];/* Our name for authenticating ourselves */
268 extern char     passwd[MAXSECRETLEN];   /* Password for PAP or CHAP */
269 extern bool     auth_required;  /* Peer is required to authenticate */
270 extern bool     persist;        /* Reopen link after it goes down */
271 extern bool     uselogin;       /* Use /etc/passwd for checking PAP */
272 extern char     our_name[MAXNAMELEN];/* Our name for authentication purposes */
273 extern char     remote_name[MAXNAMELEN]; /* Peer's name for authentication */
274 extern bool     explicit_remote;/* remote_name specified with remotename opt */
275 extern bool     demand;         /* Do dial-on-demand */
276 extern char     *ipparam;       /* Extra parameter for ip up/down scripts */
277 extern bool     cryptpap;       /* Others' PAP passwords are encrypted */
278 extern int      idle_time_limit;/* Shut down link if idle for this long */
279 extern int      holdoff;        /* Dead time before restarting */
280 extern bool     holdoff_specified; /* true if user gave a holdoff value */
281 extern bool     notty;          /* Stdin/out is not a tty */
282 extern char     *pty_socket;    /* Socket to connect to pty */
283 extern char     *record_file;   /* File to record chars sent/received */
284 extern bool     sync_serial;    /* Device is synchronous serial device */
285 extern int      maxfail;        /* Max # of unsuccessful connection attempts */
286 extern char     linkname[MAXPATHLEN]; /* logical name for link */
287 extern bool     tune_kernel;    /* May alter kernel settings as necessary */
288 extern int      connect_delay;  /* Time to delay after connect script */
289 extern int      max_data_rate;  /* max bytes/sec through charshunt */
290 extern int      req_unit;       /* interface unit number to use */
291 extern char     req_name[MAXPATHLEN]; /* logical name for link */
292 extern bool     multilink;      /* enable multilink operation */
293 extern bool     noendpoint;     /* don't send or accept endpt. discrim. */
294 extern char     *bundle_name;   /* bundle name for multilink */
295 extern bool     dump_options;   /* print out option values */
296 extern bool     dryrun;         /* check everything, print options, exit */
297
298 #ifdef PPP_FILTER
299 extern struct   bpf_program pass_filter;   /* Filter for pkts to pass */
300 extern struct   bpf_program active_filter; /* Filter for link-active pkts */
301 #endif
302
303 #ifdef MSLANMAN
304 extern bool     ms_lanman;      /* Use LanMan password instead of NT */
305                                 /* Has meaning only with MS-CHAP challenges */
306 #endif
307
308 /*wilson add for MS-CHAPv2, 05/26/2005*/
309 #ifdef CHAPMS
310 extern bool    chapms_strip_domain;
311 #endif
312 /*wilson add end*/
313
314 extern char *current_option;    /* the name of the option being parsed */
315 extern int  privileged_option;  /* set iff the current option came from root */
316 extern char *option_source;     /* string saying where the option came from */
317 extern int  option_priority;    /* priority of current options */
318
319 /*
320  * Values for phase.
321  */
322 #define PHASE_DEAD              0
323 #define PHASE_INITIALIZE        1
324 #define PHASE_SERIALCONN        2
325 #define PHASE_DORMANT           3
326 #define PHASE_ESTABLISH         4
327 #define PHASE_AUTHENTICATE      5
328 #define PHASE_CALLBACK          6
329 #define PHASE_NETWORK           7
330 #define PHASE_RUNNING           8
331 #define PHASE_TERMINATE         9
332 #define PHASE_DISCONNECT        10
333 #define PHASE_HOLDOFF           11
334
335 /*
336  * The following struct gives the addresses of procedures to call
337  * for a particular protocol.
338  */
339 struct protent {
340     u_short protocol;           /* PPP protocol number */
341     /* Initialization procedure */
342     void (*init) __P((int unit));
343     /* Process a received packet */
344     void (*input) __P((int unit, u_char *pkt, int len));
345     /* Process a received protocol-reject */
346     void (*protrej) __P((int unit));
347     /* Lower layer has come up */
348     void (*lowerup) __P((int unit));
349     /* Lower layer has gone down */
350     void (*lowerdown) __P((int unit));
351     /* Open the protocol */
352     void (*open) __P((int unit));
353     /* Close the protocol */
354     void (*close) __P((int unit, char *reason));
355     /* Print a packet in readable form */
356     int  (*printpkt) __P((u_char *pkt, int len,
357                           void (*printer) __P((void *, char *, ...)),
358                           void *arg));
359     /* Process a received data packet */
360     void (*datainput) __P((int unit, u_char *pkt, int len));
361     bool enabled_flag;          /* 0 iff protocol is disabled */
362     char *name;                 /* Text name of protocol */
363     char *data_name;            /* Text name of corresponding data protocol */
364     option_t *options;          /* List of command-line options */
365     /* Check requested options, assign defaults */
366     void (*check_options) __P((void));
367     /* Configure interface for demand-dial */
368     int  (*demand_conf) __P((int unit));
369     /* Say whether to bring up link for this pkt */
370     int  (*active_pkt) __P((u_char *pkt, int len));
371 };
372
373 /* Table of pointers to supported protocols */
374 extern struct protent *protocols[];
375
376 /*
377  * This struct contains pointers to a set of procedures for
378  * doing operations on a "channel".  A channel provides a way
379  * to send and receive PPP packets - the canonical example is
380  * a serial port device in PPP line discipline (or equivalently
381  * with PPP STREAMS modules pushed onto it).
382  */
383 struct channel {
384         /* set of options for this channel */
385         option_t *options;
386         /* find and process a per-channel options file */
387         void (*process_extra_options) __P((void));
388         /* check all the options that have been given */
389         void (*check_options) __P((void));
390         /* get the channel ready to do PPP, return a file descriptor */
391         int  (*connect) __P((void));
392         /* we're finished with the channel */
393         void (*disconnect) __P((void));
394         /* put the channel into PPP `mode' */
395         int  (*establish_ppp) __P((int));
396         /* take the channel out of PPP `mode', restore loopback if demand */
397         void (*disestablish_ppp) __P((int));
398         /* set the transmit-side PPP parameters of the channel */
399         void (*send_config) __P((int, u_int32_t, int, int));
400         /* set the receive-side PPP parameters of the channel */
401         void (*recv_config) __P((int, u_int32_t, int, int));
402         /* cleanup on error or normal exit */
403         void (*cleanup) __P((void));
404         /* close the device, called in children after fork */
405         void (*close) __P((void));
406 };
407
408 extern struct channel *the_channel;
409
410 #define ppp_send_config(unit, mtu, accm, pc, acc)                        \
411 do {                                                                     \
412         if (the_channel->send_config)                                    \
413                 (*the_channel->send_config)((mtu), (accm), (pc), (acc)); \
414 } while (0)
415
416 #define ppp_recv_config(unit, mtu, accm, pc, acc)                        \
417 do {                                                                     \
418         if (the_channel->send_config)                                    \
419                 (*the_channel->recv_config)((mtu), (accm), (pc), (acc)); \
420 } while (0)
421
422 /*
423  * Prototypes.
424  */
425
426 /* Procedures exported from main.c. */
427 void set_ifunit __P((int));     /* set stuff that depends on ifunit */
428 void detach __P((void));        /* Detach from controlling tty */
429 void die __P((int));            /* Cleanup and exit */
430 void quit __P((void));          /* like die(1) */
431 void novm __P((char *));        /* Say we ran out of memory, and die */
432 void timeout __P((void (*func)(void *), void *arg, int s, int us));
433                                 /* Call func(arg) after s.us seconds */
434 void untimeout __P((void (*func)(void *), void *arg));
435                                 /* Cancel call to func(arg) */
436 void record_child __P((int, char *, void (*) (void *), void *));
437 int  device_script __P((char *cmd, int in, int out, int dont_wait));
438                                 /* Run `cmd' with given stdin and stdout */
439 pid_t run_program __P((char *prog, char **args, int must_exist,
440                        void (*done)(void *), void *arg));
441                                 /* Run program prog with args in child */
442 void reopen_log __P((void));    /* (re)open the connection to syslog */
443 void update_link_stats __P((int)); /* Get stats at link termination */
444 void script_setenv __P((char *, char *, int));  /* set script env var */
445 void script_unsetenv __P((char *));             /* unset script env var */
446 void new_phase __P((int));      /* signal start of new phase */
447 void add_notifier __P((struct notifier **, notify_func, void *));
448 void remove_notifier __P((struct notifier **, notify_func, void *));
449 void notify __P((struct notifier *, int));
450
451 /* Procedures exported from tty.c. */
452 void tty_init __P((void));
453
454 /* Procedures exported from utils.c. */
455 void log_packet __P((u_char *, int, char *, int));
456                                 /* Format a packet and log it with syslog */
457 void print_string __P((char *, int,  void (*) (void *, char *, ...),
458                 void *));       /* Format a string for output */
459 int slprintf __P((char *, int, char *, ...));           /* sprintf++ */
460 int vslprintf __P((char *, int, char *, va_list));      /* vsprintf++ */
461 size_t strlcpy __P((char *, const char *, size_t));     /* safe strcpy */
462 size_t strlcat __P((char *, const char *, size_t));     /* safe strncpy */
463 void dbglog __P((char *, ...)); /* log a debug message */
464 #if defined(SUPPORT_PPPDBG_SYSLOG)
465 void andydbglog __P((char *, ...));
466 #endif
467 void info __P((char *, ...));   /* log an informational message */
468 void notice __P((char *, ...)); /* log a notice-level message */
469 void warn __P((char *, ...));   /* log a warning message */
470 void error __P((char *, ...));  /* log an error message */
471 void fatal __P((char *, ...));  /* log an error message and die(1) */
472 void init_pr_log __P((char *, int));    /* initialize for using pr_log */
473 void pr_log __P((void *, char *, ...)); /* printer fn, output to syslog */
474 void end_pr_log __P((void));    /* finish up after using pr_log */
475
476 /* Procedures exported from auth.c */
477 void link_required __P((int));    /* we are starting to use the link */
478 void link_terminated __P((int));  /* we are finished with the link */
479 void link_down __P((int));        /* the LCP layer has left the Opened state */
480 void link_established __P((int)); /* the link is up; authenticate now */
481 void start_networks __P((void));  /* start all the network control protos */
482 void np_up __P((int, int));       /* a network protocol has come up */
483 void np_down __P((int, int));     /* a network protocol has gone down */
484 void np_finished __P((int, int)); /* a network protocol no longer needs link */
485 void auth_peer_fail __P((int, int));
486                                 /* peer failed to authenticate itself */
487 void auth_peer_success __P((int, int, char *, int));
488                                 /* peer successfully authenticated itself */
489 void auth_withpeer_fail __P((int, int));
490                                 /* we failed to authenticate ourselves */
491 void auth_withpeer_success __P((int, int));
492                                 /* we successfully authenticated ourselves */
493 void auth_check_options __P((void));
494                                 /* check authentication options supplied */
495 void auth_reset __P((int));     /* check what secrets we have */
496 int  check_passwd __P((int, char *, int, char *, int, char **));
497                                 /* Check peer-supplied username/password */
498 int  get_secret __P((int, char *, char *, char *, int *, int));
499                                 /* get "secret" for chap */
500 int  auth_ip_addr __P((int, u_int32_t));
501                                 /* check if IP address is authorized */
502 int  bad_ip_adrs __P((u_int32_t));
503                                 /* check if IP address is unreasonable */
504
505 /* Procedures exported from demand.c */
506 void demand_conf __P((void));   /* config interface(s) for demand-dial */
507 void demand_block __P((void));  /* set all NPs to queue up packets */
508 void demand_unblock __P((void)); /* set all NPs to pass packets */
509 void demand_discard __P((void)); /* set all NPs to discard packets */
510 void demand_rexmit __P((int));  /* retransmit saved frames for an NP */
511 int  loop_chars __P((unsigned char *, int)); /* process chars from loopback */
512 int  loop_frame __P((unsigned char *, int)); /* should we bring link up? */
513
514 /* Procedures exported from multilink.c */
515 void mp_check_options __P((void)); /* Check multilink-related options */
516 int  mp_join_bundle __P((void));  /* join our link to an appropriate bundle */
517 char *epdisc_to_str __P((struct epdisc *)); /* string from endpoint discrim. */
518 int  str_to_epdisc __P((struct epdisc *, char *)); /* endpt disc. from str */
519
520 /* Procedures exported from sys-*.c */
521 void sys_init __P((void));      /* Do system-dependent initialization */
522 void sys_cleanup __P((void));   /* Restore system state before exiting */
523 int  sys_check_options __P((void)); /* Check options specified */
524 void sys_close __P((void));     /* Clean up in a child before execing */
525 int  ppp_available __P((void)); /* Test whether ppp kernel support exists */
526 int  get_pty __P((int *, int *, char *, int));  /* Get pty master/slave */
527 int  open_ppp_loopback __P((void)); /* Open loopback for demand-dialling */
528 int  tty_establish_ppp __P((int));  /* Turn serial port into a ppp interface */
529 void tty_disestablish_ppp __P((int)); /* Restore port to normal operation */
530 void generic_disestablish_ppp __P((int dev_fd)); /* Restore device setting */
531 int  generic_establish_ppp __P((int dev_fd)); /* Make a ppp interface */
532 void make_new_bundle __P((int, int, int, int)); /* Create new bundle */
533 int  bundle_attach __P((int));  /* Attach link to existing bundle */
534 void cfg_bundle __P((int, int, int, int)); /* Configure existing bundle */
535 void clean_check __P((void));   /* Check if line was 8-bit clean */
536 void set_up_tty __P((int, int)); /* Set up port's speed, parameters, etc. */
537 void restore_tty __P((int));    /* Restore port's original parameters */
538 void setdtr __P((int, int));    /* Raise or lower port's DTR line */
539 void output __P((int, u_char *, int)); /* Output a PPP packet */
540 void wait_input __P((struct timeval *));
541                                 /* Wait for input, with timeout */
542 void add_fd __P((int));         /* Add fd to set to wait for */
543 void remove_fd __P((int));      /* Remove fd from set to wait for */
544 int  read_packet __P((u_char *)); /* Read PPP packet */
545 int  get_loop_output __P((void)); /* Read pkts from loopback */
546 void tty_send_config __P((int, u_int32_t, int, int));
547                                 /* Configure i/f transmit parameters */
548 void tty_set_xaccm __P((ext_accm));
549                                 /* Set extended transmit ACCM */
550 void tty_recv_config __P((int, u_int32_t, int, int));
551                                 /* Configure i/f receive parameters */
552 int  ccp_test __P((int, u_char *, int, int));
553                                 /* Test support for compression scheme */
554 void ccp_flags_set __P((int, int, int));
555                                 /* Set kernel CCP state */
556 int  ccp_fatal_error __P((int)); /* Test for fatal decomp error in kernel */
557 int  get_idle_time __P((int, struct ppp_idle *));
558                                 /* Find out how long link has been idle */
559 int  get_ppp_stats __P((int, struct pppd_stats *));
560                                 /* Return link statistics */
561 void netif_set_mtu __P((int, int)); /* Set PPP interface MTU */
562 int  sifvjcomp __P((int, int, int, int));
563                                 /* Configure VJ TCP header compression */
564 int  sifup __P((int));          /* Configure i/f up for one protocol */
565 int  sifnpmode __P((int u, int proto, enum NPmode mode));
566                                 /* Set mode for handling packets for proto */
567 int  sifdown __P((int));        /* Configure i/f down for one protocol */
568 int  sifaddr __P((int, u_int32_t, u_int32_t, u_int32_t));
569                                 /* Configure IPv4 addresses for i/f */
570 int  cifaddr __P((int, u_int32_t, u_int32_t));
571                                 /* Reset i/f IP addresses */
572 #ifdef INET6
573 int  sif6addr __P((int, eui64_t, eui64_t));
574                                 /* Configure IPv6 addresses for i/f */
575 int  cif6addr __P((int, eui64_t, eui64_t));
576                                 /* Remove an IPv6 address from i/f */
577 #endif
578 int  sifdefaultroute __P((int, u_int32_t, u_int32_t));
579                                 /* Create default route through i/f */
580 int  cifdefaultroute __P((int, u_int32_t, u_int32_t));
581                                 /* Delete default route through i/f */
582 int  sifproxyarp __P((int, u_int32_t));
583                                 /* Add proxy ARP entry for peer */
584 int  cifproxyarp __P((int, u_int32_t));
585                                 /* Delete proxy ARP entry for peer */
586 u_int32_t GetMask __P((u_int32_t)); /* Get appropriate netmask for address */
587 int  lock __P((char *));        /* Create lock file for device */
588 int  relock __P((int));         /* Rewrite lock file with new pid */
589 void unlock __P((void));        /* Delete previously-created lock file */
590 void logwtmp __P((const char *, const char *, const char *));
591                                 /* Write entry to wtmp file */
592 int  get_host_seed __P((void)); /* Get host-dependent random number seed */
593 int  have_route_to __P((u_int32_t)); /* Check if route to addr exists */
594 #ifdef PPP_FILTER
595 int  set_filters __P((struct bpf_program *pass, struct bpf_program *active));
596                                 /* Set filter programs in kernel */
597 #endif
598 #ifdef IPX_CHANGE
599 int  sipxfaddr __P((int, unsigned long, unsigned char *));
600 int  cipxfaddr __P((int));
601 #endif
602 int  get_if_hwaddr __P((u_char *addr, char *name));
603 char *get_first_ethernet __P((void));
604
605 /* Procedures exported from options.c */
606 int  parse_args __P((int argc, char **argv));
607                                 /* Parse options from arguments given */
608 int  options_from_file __P((char *filename, int must_exist, int check_prot,
609                             int privileged));
610                                 /* Parse options from an options file */
611 int  options_from_user __P((void)); /* Parse options from user's .ppprc */
612 int  options_for_tty __P((void)); /* Parse options from /etc/ppp/options.tty */
613 int  options_from_list __P((struct wordlist *, int privileged));
614                                 /* Parse options from a wordlist */
615 int  getword __P((FILE *f, char *word, int *newlinep, char *filename));
616                                 /* Read a word from a file */
617 void option_error __P((char *fmt, ...));
618                                 /* Print an error message about an option */
619 int int_option __P((char *, int *));
620                                 /* Simplified number_option for decimal ints */
621 void add_options __P((option_t *)); /* Add extra options */
622 void check_options __P((void)); /* check values after all options parsed */
623 int remove_option __P((char *)); /* Disable the specified option */
624 int  override_value __P((const char *, int, const char *));
625                                 /* override value if permitted by priority */
626 void print_options __P((void (*) __P((void *, char *, ...)), void *));
627                                 /* print out values of all options */
628
629 int parse_dotted_ip __P((char *, u_int32_t *));
630
631 /*
632  * Hooks to enable plugins to change various things.
633  */
634 extern int (*new_phase_hook) __P((int));
635 extern int (*idle_time_hook) __P((struct ppp_idle *));
636 extern int (*holdoff_hook) __P((void));
637 extern int (*pap_check_hook) __P((void));
638 extern int (*pap_auth_hook) __P((char *user, char *passwd, char **msgp,
639                                  struct wordlist **paddrs,
640                                  struct wordlist **popts));
641 extern void (*pap_logout_hook) __P((void));
642 extern int (*pap_passwd_hook) __P((char *user, char *passwd));
643 extern void (*ip_up_hook) __P((void));
644 extern void (*ip_down_hook) __P((void));
645 extern void (*ip_choose_hook) __P((u_int32_t *));
646
647 // brcm
648 extern void create_msg(int lognumber);
649 extern int ipext;
650 extern int opflag;
651 extern bool refuse_pap; 
652 extern bool refuse_chap;
653 extern int autoscan;
654 extern int autoscanP2;
655 extern int ses_retries;
656 extern bool llc_encaps;
657 extern bool vc_encaps;
658 extern char session_path[];
659 extern int redisconn;
660 extern void save_session_info(unsigned char *remote_addr, int sid);
661 extern int get_sock_intf(const char *devnam);
662 extern char oldsession[MAXPATHLEN];  /* Mac address and session ID of the previous session */
663 extern char pppoe_srv_name[MAXPATHLEN];
664 extern char pppoe_ac_name[MAXPATHLEN];
665 extern int srvdisc;
666
667
668 // brcm
669
670 /*
671  * Inline versions of get/put char/short/long.
672  * Pointer is advanced; we assume that both arguments
673  * are lvalues and will already be in registers.
674  * cp MUST be u_char *.
675  */
676 #define GETCHAR(c, cp) { \
677         (c) = *(cp)++; \
678 }
679 #define PUTCHAR(c, cp) { \
680         *(cp)++ = (u_char) (c); \
681 }
682
683
684 #define GETSHORT(s, cp) { \
685         (s) = *(cp)++ << 8; \
686         (s) |= *(cp)++; \
687 }
688 #define PUTSHORT(s, cp) { \
689         *(cp)++ = (u_char) ((s) >> 8); \
690         *(cp)++ = (u_char) (s); \
691 }
692
693 #define GETLONG(l, cp) { \
694         (l) = *(cp)++ << 8; \
695         (l) |= *(cp)++; (l) <<= 8; \
696         (l) |= *(cp)++; (l) <<= 8; \
697         (l) |= *(cp)++; \
698 }
699 #define PUTLONG(l, cp) { \
700         *(cp)++ = (u_char) ((l) >> 24); \
701         *(cp)++ = (u_char) ((l) >> 16); \
702         *(cp)++ = (u_char) ((l) >> 8); \
703         *(cp)++ = (u_char) (l); \
704 }
705
706 #define INCPTR(n, cp)   ((cp) += (n))
707 #define DECPTR(n, cp)   ((cp) -= (n))
708
709 /*
710  * System dependent definitions for user-level 4.3BSD UNIX implementation.
711  */
712
713 #define TIMEOUT(r, f, t)        timeout((r), (f), (t), 0)
714 #define UNTIMEOUT(r, f)         untimeout((r), (f))
715
716 #define BCOPY(s, d, l)          memcpy(d, s, l)
717 #define BZERO(s, n)             memset(s, 0, n)
718
719 #define PRINTMSG(m, l)          { info("Remote message: %0.*v", l, m); }
720
721 /*
722  * MAKEHEADER - Add Header fields to a packet.
723  */
724 #define MAKEHEADER(p, t) { \
725     PUTCHAR(PPP_ALLSTATIONS, p); \
726     PUTCHAR(PPP_UI, p); \
727     PUTSHORT(t, p); }
728
729 /*
730  * Exit status values.
731  */
732 #define EXIT_OK                 0
733 #define EXIT_FATAL_ERROR        1
734 #define EXIT_OPTION_ERROR       2
735 #define EXIT_NOT_ROOT           3
736 #define EXIT_NO_KERNEL_SUPPORT  4
737 #define EXIT_USER_REQUEST       5
738 #define EXIT_LOCK_FAILED        6
739 #define EXIT_OPEN_FAILED        7
740 #define EXIT_CONNECT_FAILED     8
741 #define EXIT_PTYCMD_FAILED      9
742 #define EXIT_NEGOTIATION_FAILED 10
743 #define EXIT_PEER_AUTH_FAILED   11
744 #define EXIT_IDLE_TIMEOUT       12
745 #define EXIT_CONNECT_TIME       13
746 #define EXIT_CALLBACK           14
747 #define EXIT_PEER_DEAD          15
748 #define EXIT_HANGUP             16
749 #define EXIT_LOOPBACK           17
750 #define EXIT_INIT_FAILED        18
751 #define EXIT_AUTH_TOPEER_FAILED 19
752
753 /*
754  * Debug macros.  Slightly useful for finding bugs in pppd, not particularly
755  * useful for finding out why your connection isn't being established.
756  */
757 #ifdef DEBUGALL
758 #define DEBUGMAIN       1
759 #define DEBUGFSM        1
760 #define DEBUGLCP        1
761 #define DEBUGIPCP       1
762 #define DEBUGIPV6CP     1
763 #define DEBUGUPAP       1
764 #define DEBUGCHAP       1
765 #endif
766
767 #ifndef LOG_PPP                 /* we use LOG_LOCAL2 for syslog by default */
768 #if defined(DEBUGMAIN) || defined(DEBUGFSM) || defined(DEBUGSYS) \
769   || defined(DEBUGLCP) || defined(DEBUGIPCP) || defined(DEBUGUPAP) \
770   || defined(DEBUGCHAP) || defined(DEBUG) || defined(DEBUGIPV6CP)
771 #define LOG_PPP LOG_LOCAL2
772 #else
773 #define LOG_PPP LOG_DAEMON
774 #endif
775 #endif /* LOG_PPP */
776
777 #ifdef DEBUGMAIN
778 #define MAINDEBUG(x)    if (debug) dbglog x
779 #else
780 #define MAINDEBUG(x)
781 #endif
782
783 #ifdef DEBUGSYS
784 #define SYSDEBUG(x)     if (debug) dbglog x
785 #else
786 #define SYSDEBUG(x)
787 #endif
788
789 #ifdef DEBUGFSM
790 #define FSMDEBUG(x)     if (debug) dbglog x
791 #else
792 #define FSMDEBUG(x)
793 #endif
794
795 #ifdef DEBUGLCP
796 #define LCPDEBUG(x)     if (debug) dbglog x
797 #else
798 #define LCPDEBUG(x)
799 #endif
800
801 #ifdef DEBUGIPCP
802 #define IPCPDEBUG(x)    if (debug) dbglog x
803 #else
804 #define IPCPDEBUG(x)
805 #endif
806
807 #ifdef DEBUGIPV6CP
808 #define IPV6CPDEBUG(x)  if (debug) dbglog x
809 #else
810 #define IPV6CPDEBUG(x)
811 #endif
812
813 #ifdef DEBUGUPAP
814 #define UPAPDEBUG(x)    if (debug) dbglog x
815 #else
816 #define UPAPDEBUG(x)
817 #endif
818
819 #ifdef DEBUGCHAP
820 #define CHAPDEBUG(x)    if (debug) dbglog x
821 #else
822 #define CHAPDEBUG(x)
823 #endif
824
825 #ifdef DEBUGIPXCP
826 #define IPXCPDEBUG(x)   if (debug) dbglog x
827 #else
828 #define IPXCPDEBUG(x)
829 #endif
830
831 #ifndef SIGTYPE
832 #if defined(sun) || defined(SYSV) || defined(POSIX_SOURCE)
833 #define SIGTYPE void
834 #else
835 #define SIGTYPE int
836 #endif /* defined(sun) || defined(SYSV) || defined(POSIX_SOURCE) */
837 #endif /* SIGTYPE */
838
839 #ifndef MIN
840 #define MIN(a, b)       ((a) < (b)? (a): (b))
841 #endif
842 #ifndef MAX
843 #define MAX(a, b)       ((a) > (b)? (a): (b))
844 #endif
845
846 #endif /* __PPP_H__ */