]> git.ozlabs.org Git - ppp.git/blob - pppd/pppd.h
add PPP_IPV6 case
[ppp.git] / pppd / 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.43 1999/08/12 04:22:53 paulus 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
36 #if __STDC__
37 #include <stdarg.h>
38 #define __V(x)  x
39 #else
40 #include <varargs.h>
41 #define __V(x)  (va_alist) va_dcl
42 #define const
43 #define volatile
44 #endif
45
46 /*
47  * Limits.
48  */
49
50 #define NUM_PPP         1       /* One PPP interface supported (per process) */
51 #define MAXWORDLEN      1024    /* max length of word in file (incl null) */
52 #define MAXARGS         1       /* max # args to a command */
53 #define MAXNAMELEN      256     /* max length of hostname or name for auth */
54 #define MAXSECRETLEN    256     /* max length of password or secret */
55
56 /*
57  * Option descriptor structure.
58  */
59
60 typedef unsigned char   bool;
61
62 enum opt_type {
63         o_special_noarg = 0,
64         o_special = 1,
65         o_bool,
66         o_int,
67         o_uint32,
68         o_string,
69 };
70
71 typedef struct {
72         char    *name;          /* name of the option */
73         enum opt_type type;
74         void    *addr;
75         char    *description;
76         int     flags;
77         void    *addr2;
78         int     upper_limit;
79         int     lower_limit;
80 } option_t;
81
82 /* Values for flags */
83 #define OPT_VALUE       0xff    /* mask for presupplied value */
84 #define OPT_HEX         0x100   /* int option is in hex */
85 #define OPT_NOARG       0x200   /* option doesn't take argument */
86 #define OPT_OR          0x400   /* OR in argument to value */
87 #define OPT_INC         0x800   /* increment value */
88 #define OPT_PRIV        0x1000  /* privileged option */
89 #define OPT_STATIC      0x2000  /* string option goes into static array */
90 #define OPT_LLIMIT      0x4000  /* check value against lower limit */
91 #define OPT_ULIMIT      0x8000  /* check value against upper limit */
92 #define OPT_LIMITS      (OPT_LLIMIT|OPT_ULIMIT)
93 #define OPT_ZEROOK      0x10000 /* 0 value is OK even if not within limits */
94 #define OPT_NOINCR      0x20000 /* value mustn't be increased */
95 #define OPT_ZEROINF     0x40000 /* with OPT_NOINCR, 0 == infinity */
96 #define OPT_A2INFO      0x100000 /* addr2 -> option_info to update */
97 #define OPT_A2COPY      0x200000 /* addr2 -> second location to rcv value */
98 #define OPT_ENABLE      0x400000 /* use *addr2 as enable for option */
99 #define OPT_PRIVFIX     0x800000 /* can't be overridden if noauth */
100 #define OPT_PREPASS     0x1000000 /* do this opt in pre-pass to find device */
101 #define OPT_INITONLY    0x2000000 /* option can only be set in init phase */
102 #define OPT_DEVEQUIV    0x4000000 /* equiv to device name */
103 #define OPT_DEVNAM      (OPT_PREPASS | OPT_INITONLY | OPT_DEVEQUIV)
104
105 #define OPT_VAL(x)      ((x) & OPT_VALUE)
106
107 #ifndef GIDSET_TYPE
108 #define GIDSET_TYPE     gid_t
109 #endif
110
111 /* Structure representing a list of permitted IP addresses. */
112 struct permitted_ip {
113     int         permit;         /* 1 = permit, 0 = forbid */
114     u_int32_t   base;           /* match if (addr & mask) == base */
115     u_int32_t   mask;           /* base and mask are in network byte order */
116 };
117
118 /*
119  * Unfortunately, the linux kernel driver uses a different structure
120  * for statistics from the rest of the ports.
121  * This structure serves as a common representation for the bits
122  * pppd needs.
123  */
124 struct pppd_stats {
125     unsigned int        bytes_in;
126     unsigned int        bytes_out;
127 };
128
129 /* Used for storing a sequence of words.  Usually malloced. */
130 struct wordlist {
131     struct wordlist     *next;
132     char                *word;
133 };
134
135 /*
136  * Global variables.
137  */
138
139 extern int      hungup;         /* Physical layer has disconnected */
140 extern int      ifunit;         /* Interface unit number */
141 extern char     ifname[];       /* Interface name */
142 extern int      ttyfd;          /* Serial device file descriptor */
143 extern char     hostname[];     /* Our hostname */
144 extern u_char   outpacket_buf[]; /* Buffer for outgoing packets */
145 extern int      phase;          /* Current state of link - see values below */
146 extern int      baud_rate;      /* Current link speed in bits/sec */
147 extern char     *progname;      /* Name of this program */
148 extern int      redirect_stderr;/* Connector's stderr should go to file */
149 extern char     peer_authname[];/* Authenticated name of peer */
150 extern int      privileged;     /* We were run by real-uid root */
151 extern int      need_holdoff;   /* Need holdoff period after link terminates */
152 extern char     **script_env;   /* Environment variables for scripts */
153 extern int      detached;       /* Have detached from controlling tty */
154 extern GIDSET_TYPE groups[NGROUPS_MAX]; /* groups the user is in */
155 extern int      ngroups;        /* How many groups valid in groups */
156 extern struct pppd_stats link_stats; /* byte/packet counts etc. for link */
157 extern int      link_stats_valid; /* set if link_stats is valid */
158 extern int      using_pty;      /* using pty as device (notty or pty opt.) */
159 extern int      log_to_fd;      /* logging to this fd as well as syslog */
160 extern char     *no_ppp_msg;    /* message to print if ppp not in kernel */
161 extern volatile int status;     /* exit status for pppd */
162 extern int      devnam_fixed;   /* can no longer change devnam */
163 extern int      unsuccess;      /* # unsuccessful connection attempts */
164
165 /*
166  * Variables set by command-line options.
167  */
168
169 extern int      debug;          /* Debug flag */
170 extern int      kdebugflag;     /* Tell kernel to print debug messages */
171 extern int      default_device; /* Using /dev/tty or equivalent */
172 extern char     devnam[MAXPATHLEN];     /* Device name */
173 extern int      crtscts;        /* Use hardware flow control */
174 extern bool     modem;          /* Use modem control lines */
175 extern int      inspeed;        /* Input/Output speed requested */
176 extern u_int32_t netmask;       /* IP netmask to set on interface */
177 extern bool     lockflag;       /* Create lock file to lock the serial dev */
178 extern bool     nodetach;       /* Don't detach from controlling tty */
179 extern bool     updetach;       /* Detach from controlling tty when link up */
180 extern char     *initializer;   /* Script to initialize physical link */
181 extern char     *connector;     /* Script to establish physical link */
182 extern char     *disconnector;  /* Script to disestablish physical link */
183 extern char     *welcomer;      /* Script to welcome client after connection */
184 extern char     *ptycommand;    /* Command to run on other side of pty */
185 extern int      maxconnect;     /* Maximum connect time (seconds) */
186 extern char     user[MAXNAMELEN];/* Our name for authenticating ourselves */
187 extern char     passwd[MAXSECRETLEN];   /* Password for PAP or CHAP */
188 extern bool     auth_required;  /* Peer is required to authenticate */
189 extern bool     persist;        /* Reopen link after it goes down */
190 extern bool     uselogin;       /* Use /etc/passwd for checking PAP */
191 extern char     our_name[MAXNAMELEN];/* Our name for authentication purposes */
192 extern char     remote_name[MAXNAMELEN]; /* Peer's name for authentication */
193 extern bool     explicit_remote;/* remote_name specified with remotename opt */
194 extern bool     demand;         /* Do dial-on-demand */
195 extern char     *ipparam;       /* Extra parameter for ip up/down scripts */
196 extern bool     cryptpap;       /* Others' PAP passwords are encrypted */
197 extern int      idle_time_limit;/* Shut down link if idle for this long */
198 extern int      holdoff;        /* Dead time before restarting */
199 extern bool     notty;          /* Stdin/out is not a tty */
200 extern char     *record_file;   /* File to record chars sent/received */
201 extern bool     sync_serial;    /* Device is synchronous serial device */
202 extern int      maxfail;        /* Max # of unsuccessful connection attempts */
203
204 #ifdef PPP_FILTER
205 extern struct   bpf_program pass_filter;   /* Filter for pkts to pass */
206 extern struct   bpf_program active_filter; /* Filter for link-active pkts */
207 #endif
208
209 #ifdef MSLANMAN
210 extern bool     ms_lanman;      /* Use LanMan password instead of NT */
211                                 /* Has meaning only with MS-CHAP challenges */
212 #endif
213
214 extern char *current_option;    /* the name of the option being parsed */
215 extern int  privileged_option;  /* set iff the current option came from root */
216 extern char *option_source;     /* string saying where the option came from */
217
218 /*
219  * Values for phase.
220  */
221 #define PHASE_DEAD              0
222 #define PHASE_INITIALIZE        1
223 #define PHASE_SERIALCONN        2
224 #define PHASE_DORMANT           3
225 #define PHASE_ESTABLISH         4
226 #define PHASE_AUTHENTICATE      5
227 #define PHASE_CALLBACK          6
228 #define PHASE_NETWORK           7
229 #define PHASE_TERMINATE         8
230 #define PHASE_HOLDOFF           9
231
232 /*
233  * The following struct gives the addresses of procedures to call
234  * for a particular protocol.
235  */
236 struct protent {
237     u_short protocol;           /* PPP protocol number */
238     /* Initialization procedure */
239     void (*init) __P((int unit));
240     /* Process a received packet */
241     void (*input) __P((int unit, u_char *pkt, int len));
242     /* Process a received protocol-reject */
243     void (*protrej) __P((int unit));
244     /* Lower layer has come up */
245     void (*lowerup) __P((int unit));
246     /* Lower layer has gone down */
247     void (*lowerdown) __P((int unit));
248     /* Open the protocol */
249     void (*open) __P((int unit));
250     /* Close the protocol */
251     void (*close) __P((int unit, char *reason));
252     /* Print a packet in readable form */
253     int  (*printpkt) __P((u_char *pkt, int len,
254                           void (*printer) __P((void *, char *, ...)),
255                           void *arg));
256     /* Process a received data packet */
257     void (*datainput) __P((int unit, u_char *pkt, int len));
258     bool enabled_flag;          /* 0 iff protocol is disabled */
259     char *name;                 /* Text name of protocol */
260     char *data_name;            /* Text name of corresponding data protocol */
261     option_t *options;          /* List of command-line options */
262     /* Check requested options, assign defaults */
263     void (*check_options) __P((void));
264     /* Configure interface for demand-dial */
265     int  (*demand_conf) __P((int unit));
266     /* Say whether to bring up link for this pkt */
267     int  (*active_pkt) __P((u_char *pkt, int len));
268 };
269
270 /* Table of pointers to supported protocols */
271 extern struct protent *protocols[];
272
273 /*
274  * Prototypes.
275  */
276
277 /* Procedures exported from main.c. */
278 void detach __P((void));        /* Detach from controlling tty */
279 void die __P((int));            /* Cleanup and exit */
280 void quit __P((void));          /* like die(1) */
281 void novm __P((char *));        /* Say we ran out of memory, and die */
282 void timeout __P((void (*func)(void *), void *arg, int t));
283                                 /* Call func(arg) after t seconds */
284 void untimeout __P((void (*func)(void *), void *arg));
285                                 /* Cancel call to func(arg) */
286 pid_t run_program __P((char *prog, char **args, int must_exist,
287                        void (*done)(void *), void *arg));
288                                 /* Run program prog with args in child */
289 void reopen_log __P((void));    /* (re)open the connection to syslog */
290 void update_link_stats __P((int)); /* Get stats at link termination */
291 void script_setenv __P((char *, char *));       /* set script env var */
292 void script_unsetenv __P((char *));             /* unset script env var */
293
294 /* Procedures exported from utils.c. */
295 void log_packet __P((u_char *, int, char *, int));
296                                 /* Format a packet and log it with syslog */
297 void print_string __P((char *, int,  void (*) (void *, char *, ...),
298                 void *));       /* Format a string for output */
299 int slprintf __P((char *, int, char *, ...));           /* sprintf++ */
300 int vslprintf __P((char *, int, char *, va_list));      /* vsprintf++ */
301 size_t strlcpy __P((char *, const char *, size_t));     /* safe strcpy */
302 size_t strlcat __P((char *, const char *, size_t));     /* safe strncpy */
303 void dbglog __P((char *, ...)); /* log a debug message */
304 void info __P((char *, ...));   /* log an informational message */
305 void notice __P((char *, ...)); /* log a notice-level message */
306 void warn __P((char *, ...));   /* log a warning message */
307 void error __P((char *, ...));  /* log an error message */
308 void fatal __P((char *, ...));  /* log an error message and die(1) */
309
310 /* Procedures exported from auth.c */
311 void link_required __P((int));    /* we are starting to use the link */
312 void link_terminated __P((int));  /* we are finished with the link */
313 void link_down __P((int));        /* the LCP layer has left the Opened state */
314 void link_established __P((int)); /* the link is up; authenticate now */
315 void start_networks __P((void));  /* start all the network control protos */
316 void np_up __P((int, int));       /* a network protocol has come up */
317 void np_down __P((int, int));     /* a network protocol has gone down */
318 void np_finished __P((int, int)); /* a network protocol no longer needs link */
319 void auth_peer_fail __P((int, int));
320                                 /* peer failed to authenticate itself */
321 void auth_peer_success __P((int, int, char *, int));
322                                 /* peer successfully authenticated itself */
323 void auth_withpeer_fail __P((int, int));
324                                 /* we failed to authenticate ourselves */
325 void auth_withpeer_success __P((int, int));
326                                 /* we successfully authenticated ourselves */
327 void auth_check_options __P((void));
328                                 /* check authentication options supplied */
329 void auth_reset __P((int));     /* check what secrets we have */
330 int  check_passwd __P((int, char *, int, char *, int, char **, int *));
331                                 /* Check peer-supplied username/password */
332 int  get_secret __P((int, char *, char *, char *, int *, int));
333                                 /* get "secret" for chap */
334 int  auth_ip_addr __P((int, u_int32_t));
335                                 /* check if IP address is authorized */
336 int  bad_ip_adrs __P((u_int32_t));
337                                 /* check if IP address is unreasonable */
338
339 /* Procedures exported from demand.c */
340 void demand_conf __P((void));   /* config interface(s) for demand-dial */
341 void demand_block __P((void));  /* set all NPs to queue up packets */
342 void demand_unblock __P((void)); /* set all NPs to pass packets */
343 void demand_discard __P((void)); /* set all NPs to discard packets */
344 void demand_rexmit __P((int));  /* retransmit saved frames for an NP */
345 int  loop_chars __P((unsigned char *, int)); /* process chars from loopback */
346 int  loop_frame __P((unsigned char *, int)); /* should we bring link up? */
347
348 /* Procedures exported from sys-*.c */
349 void sys_init __P((void));      /* Do system-dependent initialization */
350 void sys_cleanup __P((void));   /* Restore system state before exiting */
351 int  sys_check_options __P((void)); /* Check options specified */
352 void sys_close __P((void));     /* Clean up in a child before execing */
353 int  ppp_available __P((void)); /* Test whether ppp kernel support exists */
354 int  get_pty __P((int *, int *, char *, int));  /* Get pty master/slave */
355 int  open_ppp_loopback __P((void)); /* Open loopback for demand-dialling */
356 int  establish_ppp __P((int));  /* Turn serial port into a ppp interface */
357 void restore_loop __P((void));  /* Transfer ppp unit back to loopback */
358 void disestablish_ppp __P((int)); /* Restore port to normal operation */
359 void clean_check __P((void));   /* Check if line was 8-bit clean */
360 void set_up_tty __P((int, int)); /* Set up port's speed, parameters, etc. */
361 void restore_tty __P((int));    /* Restore port's original parameters */
362 void setdtr __P((int, int));    /* Raise or lower port's DTR line */
363 void output __P((int, u_char *, int)); /* Output a PPP packet */
364 void wait_input __P((struct timeval *));
365                                 /* Wait for input, with timeout */
366 void add_fd __P((int));         /* Add fd to set to wait for */
367 void remove_fd __P((int));      /* Remove fd from set to wait for */
368 int  read_packet __P((u_char *)); /* Read PPP packet */
369 int  get_loop_output __P((void)); /* Read pkts from loopback */
370 void ppp_send_config __P((int, int, u_int32_t, int, int));
371                                 /* Configure i/f transmit parameters */
372 void ppp_set_xaccm __P((int, ext_accm));
373                                 /* Set extended transmit ACCM */
374 void ppp_recv_config __P((int, int, u_int32_t, int, int));
375                                 /* Configure i/f receive parameters */
376 int  ccp_test __P((int, u_char *, int, int));
377                                 /* Test support for compression scheme */
378 void ccp_flags_set __P((int, int, int));
379                                 /* Set kernel CCP state */
380 int  ccp_fatal_error __P((int)); /* Test for fatal decomp error in kernel */
381 int  get_idle_time __P((int, struct ppp_idle *));
382                                 /* Find out how long link has been idle */
383 int  get_ppp_stats __P((int, struct pppd_stats *));
384                                 /* Return link statistics */
385 int  sifvjcomp __P((int, int, int, int));
386                                 /* Configure VJ TCP header compression */
387 int  sifup __P((int));          /* Configure i/f up (for IP) */
388 int  sifnpmode __P((int u, int proto, enum NPmode mode));
389                                 /* Set mode for handling packets for proto */
390 int  sifdown __P((int));        /* Configure i/f down (for IP) */
391 int  sifaddr __P((int, u_int32_t, u_int32_t, u_int32_t));
392                                 /* Configure IP addresses for i/f */
393 int  cifaddr __P((int, u_int32_t, u_int32_t));
394                                 /* Reset i/f IP addresses */
395 int  sifdefaultroute __P((int, u_int32_t, u_int32_t));
396                                 /* Create default route through i/f */
397 int  cifdefaultroute __P((int, u_int32_t, u_int32_t));
398                                 /* Delete default route through i/f */
399 int  sifproxyarp __P((int, u_int32_t));
400                                 /* Add proxy ARP entry for peer */
401 int  cifproxyarp __P((int, u_int32_t));
402                                 /* Delete proxy ARP entry for peer */
403 u_int32_t GetMask __P((u_int32_t)); /* Get appropriate netmask for address */
404 int  lock __P((char *));        /* Create lock file for device */
405 int  relock __P((int));         /* Rewrite lock file with new pid */
406 void unlock __P((void));        /* Delete previously-created lock file */
407 void logwtmp __P((const char *, const char *, const char *));
408                                 /* Write entry to wtmp file */
409 int  get_host_seed __P((void)); /* Get host-dependent random number seed */
410 int  have_route_to __P((u_int32_t)); /* Check if route to addr exists */
411 #ifdef PPP_FILTER
412 int  set_filters __P((struct bpf_program *pass, struct bpf_program *active));
413                                 /* Set filter programs in kernel */
414 #endif
415 #ifdef IPX_CHANGE
416 int  sipxfaddr __P((int, unsigned long, unsigned char *));
417 int  cipxfaddr __P((int));
418 #endif
419
420 /* Procedures exported from options.c */
421 int  parse_args __P((int argc, char **argv));
422                                 /* Parse options from arguments given */
423 int  options_from_file __P((char *filename, int must_exist, int check_prot,
424                             int privileged));
425                                 /* Parse options from an options file */
426 int  options_from_user __P((void)); /* Parse options from user's .ppprc */
427 int  options_for_tty __P((void)); /* Parse options from /etc/ppp/options.tty */
428 int  options_from_list __P((struct wordlist *, int privileged));
429                                 /* Parse options from a wordlist */
430 int  getword __P((FILE *f, char *word, int *newlinep, char *filename));
431                                 /* Read a word from a file */
432 void option_error __P((char *fmt, ...));
433                                 /* Print an error message about an option */
434 int int_option __P((char *, int *));
435                                 /* Simplified number_option for decimal ints */
436
437 /*
438  * This structure is used to store information about certain
439  * options, such as where the option value came from (/etc/ppp/options,
440  * command line, etc.) and whether it came from a privileged source.
441  */
442
443 struct option_info {
444     int     priv;               /* was value set by sysadmin? */
445     char    *source;            /* where option came from */
446 };
447
448 extern struct option_info devnam_info;
449 extern struct option_info initializer_info;
450 extern struct option_info connector_info;
451 extern struct option_info disconnector_info;
452 extern struct option_info welcomer_info;
453 extern struct option_info ptycommand_info;
454
455 /*
456  * Inline versions of get/put char/short/long.
457  * Pointer is advanced; we assume that both arguments
458  * are lvalues and will already be in registers.
459  * cp MUST be u_char *.
460  */
461 #define GETCHAR(c, cp) { \
462         (c) = *(cp)++; \
463 }
464 #define PUTCHAR(c, cp) { \
465         *(cp)++ = (u_char) (c); \
466 }
467
468
469 #define GETSHORT(s, cp) { \
470         (s) = *(cp)++ << 8; \
471         (s) |= *(cp)++; \
472 }
473 #define PUTSHORT(s, cp) { \
474         *(cp)++ = (u_char) ((s) >> 8); \
475         *(cp)++ = (u_char) (s); \
476 }
477
478 #define GETLONG(l, cp) { \
479         (l) = *(cp)++ << 8; \
480         (l) |= *(cp)++; (l) <<= 8; \
481         (l) |= *(cp)++; (l) <<= 8; \
482         (l) |= *(cp)++; \
483 }
484 #define PUTLONG(l, cp) { \
485         *(cp)++ = (u_char) ((l) >> 24); \
486         *(cp)++ = (u_char) ((l) >> 16); \
487         *(cp)++ = (u_char) ((l) >> 8); \
488         *(cp)++ = (u_char) (l); \
489 }
490
491 #define INCPTR(n, cp)   ((cp) += (n))
492 #define DECPTR(n, cp)   ((cp) -= (n))
493
494 /*
495  * System dependent definitions for user-level 4.3BSD UNIX implementation.
496  */
497
498 #define TIMEOUT(r, f, t)        timeout((r), (f), (t))
499 #define UNTIMEOUT(r, f)         untimeout((r), (f))
500
501 #define BCOPY(s, d, l)          memcpy(d, s, l)
502 #define BZERO(s, n)             memset(s, 0, n)
503
504 #define PRINTMSG(m, l)          { info("Remote message: %0.*v", l, m); }
505
506 /*
507  * MAKEHEADER - Add Header fields to a packet.
508  */
509 #define MAKEHEADER(p, t) { \
510     PUTCHAR(PPP_ALLSTATIONS, p); \
511     PUTCHAR(PPP_UI, p); \
512     PUTSHORT(t, p); }
513
514 /*
515  * Exit status values.
516  */
517 #define EXIT_OK                 0
518 #define EXIT_FATAL_ERROR        1
519 #define EXIT_OPTION_ERROR       2
520 #define EXIT_NOT_ROOT           3
521 #define EXIT_NO_KERNEL_SUPPORT  4
522 #define EXIT_USER_REQUEST       5
523 #define EXIT_LOCK_FAILED        6
524 #define EXIT_OPEN_FAILED        7
525 #define EXIT_CONNECT_FAILED     8
526 #define EXIT_PTYCMD_FAILED      9
527 #define EXIT_NEGOTIATION_FAILED 10
528 #define EXIT_PEER_AUTH_FAILED   11
529 #define EXIT_IDLE_TIMEOUT       12
530 #define EXIT_CONNECT_TIME       13
531 #define EXIT_CALLBACK           14
532 #define EXIT_PEER_DEAD          15
533 #define EXIT_HANGUP             16
534 #define EXIT_LOOPBACK           17
535 #define EXIT_INIT_FAILED        18
536 #define EXIT_AUTH_TOPEER_FAILED 19
537
538 /*
539  * Debug macros.  Slightly useful for finding bugs in pppd, not particularly
540  * useful for finding out why your connection isn't being established.
541  */
542 #ifdef DEBUGALL
543 #define DEBUGMAIN       1
544 #define DEBUGFSM        1
545 #define DEBUGLCP        1
546 #define DEBUGIPCP       1
547 #define DEBUGUPAP       1
548 #define DEBUGCHAP       1
549 #endif
550
551 #ifndef LOG_PPP                 /* we use LOG_LOCAL2 for syslog by default */
552 #if defined(DEBUGMAIN) || defined(DEBUGFSM) || defined(DEBUGSYS) \
553   || defined(DEBUGLCP) || defined(DEBUGIPCP) || defined(DEBUGUPAP) \
554   || defined(DEBUGCHAP) || defined(DEBUG)
555 #define LOG_PPP LOG_LOCAL2
556 #else
557 #define LOG_PPP LOG_DAEMON
558 #endif
559 #endif /* LOG_PPP */
560
561 #ifdef DEBUGMAIN
562 #define MAINDEBUG(x)    if (debug) dbglog x
563 #else
564 #define MAINDEBUG(x)
565 #endif
566
567 #ifdef DEBUGSYS
568 #define SYSDEBUG(x)     if (debug) dbglog x
569 #else
570 #define SYSDEBUG(x)
571 #endif
572
573 #ifdef DEBUGFSM
574 #define FSMDEBUG(x)     if (debug) dbglog x
575 #else
576 #define FSMDEBUG(x)
577 #endif
578
579 #ifdef DEBUGLCP
580 #define LCPDEBUG(x)     if (debug) dbglog x
581 #else
582 #define LCPDEBUG(x)
583 #endif
584
585 #ifdef DEBUGIPCP
586 #define IPCPDEBUG(x)    if (debug) dbglog x
587 #else
588 #define IPCPDEBUG(x)
589 #endif
590
591 #ifdef DEBUGUPAP
592 #define UPAPDEBUG(x)    if (debug) dbglog x
593 #else
594 #define UPAPDEBUG(x)
595 #endif
596
597 #ifdef DEBUGCHAP
598 #define CHAPDEBUG(x)    if (debug) dbglog x
599 #else
600 #define CHAPDEBUG(x)
601 #endif
602
603 #ifdef DEBUGIPXCP
604 #define IPXCPDEBUG(x)   if (debug) dbglog x
605 #else
606 #define IPXCPDEBUG(x)
607 #endif
608
609 #ifndef SIGTYPE
610 #if defined(sun) || defined(SYSV) || defined(POSIX_SOURCE)
611 #define SIGTYPE void
612 #else
613 #define SIGTYPE int
614 #endif /* defined(sun) || defined(SYSV) || defined(POSIX_SOURCE) */
615 #endif /* SIGTYPE */
616
617 #ifndef MIN
618 #define MIN(a, b)       ((a) < (b)? (a): (b))
619 #endif
620 #ifndef MAX
621 #define MAX(a, b)       ((a) > (b)? (a): (b))
622 #endif
623
624 #endif /* __PPP_H__ */