]> git.ozlabs.org Git - ppp.git/blob - pppd/ipcp.c
Fix an infinite negotiation loop where we would respond to a
[ppp.git] / pppd / ipcp.c
1 /*
2  * ipcp.c - PPP IP Control Protocol.
3  *
4  * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  *
18  * 3. The name "Carnegie Mellon University" must not be used to
19  *    endorse or promote products derived from this software without
20  *    prior written permission. For permission or any legal
21  *    details, please contact
22  *      Office of Technology Transfer
23  *      Carnegie Mellon University
24  *      5000 Forbes Avenue
25  *      Pittsburgh, PA  15213-3890
26  *      (412) 268-4387, fax: (412) 268-7395
27  *      tech-transfer@andrew.cmu.edu
28  *
29  * 4. Redistributions of any form whatsoever must retain the following
30  *    acknowledgment:
31  *    "This product includes software developed by Computing Services
32  *     at Carnegie Mellon University (http://www.cmu.edu/computing/)."
33  *
34  * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
35  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
36  * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
37  * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
38  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
39  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
40  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
41  */
42
43 #define RCSID   "$Id: ipcp.c,v 1.67 2004/11/08 11:45:59 paulus Exp $"
44
45 /*
46  * TODO:
47  */
48
49 #include <stdio.h>
50 #include <string.h>
51 #include <stdlib.h>
52 #include <netdb.h>
53 #include <sys/param.h>
54 #include <sys/types.h>
55 #include <sys/socket.h>
56 #include <netinet/in.h>
57 #include <arpa/inet.h>
58
59 #include "pppd.h"
60 #include "fsm.h"
61 #include "ipcp.h"
62 #include "pathnames.h"
63
64 static const char rcsid[] = RCSID;
65
66 /* global vars */
67 ipcp_options ipcp_wantoptions[NUM_PPP]; /* Options that we want to request */
68 ipcp_options ipcp_gotoptions[NUM_PPP];  /* Options that peer ack'd */
69 ipcp_options ipcp_allowoptions[NUM_PPP]; /* Options we allow peer to request */
70 ipcp_options ipcp_hisoptions[NUM_PPP];  /* Options that we ack'd */
71
72 u_int32_t netmask = 0;          /* IP netmask to set on interface */
73
74 bool    disable_defaultip = 0;  /* Don't use hostname for default IP adrs */
75
76 /* Hook for a plugin to know when IP protocol has come up */
77 void (*ip_up_hook) __P((void)) = NULL;
78
79 /* Hook for a plugin to know when IP protocol has come down */
80 void (*ip_down_hook) __P((void)) = NULL;
81
82 /* Hook for a plugin to choose the remote IP address */
83 void (*ip_choose_hook) __P((u_int32_t *)) = NULL;
84
85 /* Notifiers for when IPCP goes up and down */
86 struct notifier *ip_up_notifier = NULL;
87 struct notifier *ip_down_notifier = NULL;
88
89 /* local vars */
90 static int default_route_set[NUM_PPP];  /* Have set up a default route */
91 static int proxy_arp_set[NUM_PPP];      /* Have created proxy arp entry */
92 static bool usepeerdns;                 /* Ask peer for DNS addrs */
93 static int ipcp_is_up;                  /* have called np_up() */
94 static int ipcp_is_open;                /* haven't called np_finished() */
95 static bool ask_for_local;              /* request our address from peer */
96 static char vj_value[8];                /* string form of vj option value */
97 static char netmask_str[20];            /* string form of netmask value */
98
99 /*
100  * Callbacks for fsm code.  (CI = Configuration Information)
101  */
102 static void ipcp_resetci __P((fsm *));  /* Reset our CI */
103 static int  ipcp_cilen __P((fsm *));            /* Return length of our CI */
104 static void ipcp_addci __P((fsm *, u_char *, int *)); /* Add our CI */
105 static int  ipcp_ackci __P((fsm *, u_char *, int));     /* Peer ack'd our CI */
106 static int  ipcp_nakci __P((fsm *, u_char *, int));     /* Peer nak'd our CI */
107 static int  ipcp_rejci __P((fsm *, u_char *, int));     /* Peer rej'd our CI */
108 static int  ipcp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv CI */
109 static void ipcp_up __P((fsm *));               /* We're UP */
110 static void ipcp_down __P((fsm *));             /* We're DOWN */
111 static void ipcp_finished __P((fsm *)); /* Don't need lower layer */
112
113 fsm ipcp_fsm[NUM_PPP];          /* IPCP fsm structure */
114
115 static fsm_callbacks ipcp_callbacks = { /* IPCP callback routines */
116     ipcp_resetci,               /* Reset our Configuration Information */
117     ipcp_cilen,                 /* Length of our Configuration Information */
118     ipcp_addci,                 /* Add our Configuration Information */
119     ipcp_ackci,                 /* ACK our Configuration Information */
120     ipcp_nakci,                 /* NAK our Configuration Information */
121     ipcp_rejci,                 /* Reject our Configuration Information */
122     ipcp_reqci,                 /* Request peer's Configuration Information */
123     ipcp_up,                    /* Called when fsm reaches OPENED state */
124     ipcp_down,                  /* Called when fsm leaves OPENED state */
125     NULL,                       /* Called when we want the lower layer up */
126     ipcp_finished,              /* Called when we want the lower layer down */
127     NULL,                       /* Called when Protocol-Reject received */
128     NULL,                       /* Retransmission is necessary */
129     NULL,                       /* Called to handle protocol-specific codes */
130     "IPCP"                      /* String name of protocol */
131 };
132
133 /*
134  * Command-line options.
135  */
136 static int setvjslots __P((char **));
137 static int setdnsaddr __P((char **));
138 static int setwinsaddr __P((char **));
139 static int setnetmask __P((char **));
140 int setipaddr __P((char *, char **, int));
141 static void printipaddr __P((option_t *, void (*)(void *, char *,...),void *));
142
143 static option_t ipcp_option_list[] = {
144     { "noip", o_bool, &ipcp_protent.enabled_flag,
145       "Disable IP and IPCP" },
146     { "-ip", o_bool, &ipcp_protent.enabled_flag,
147       "Disable IP and IPCP", OPT_ALIAS },
148
149     { "novj", o_bool, &ipcp_wantoptions[0].neg_vj,
150       "Disable VJ compression", OPT_A2CLR, &ipcp_allowoptions[0].neg_vj },
151     { "-vj", o_bool, &ipcp_wantoptions[0].neg_vj,
152       "Disable VJ compression", OPT_ALIAS | OPT_A2CLR,
153       &ipcp_allowoptions[0].neg_vj },
154
155     { "novjccomp", o_bool, &ipcp_wantoptions[0].cflag,
156       "Disable VJ connection-ID compression", OPT_A2CLR,
157       &ipcp_allowoptions[0].cflag },
158     { "-vjccomp", o_bool, &ipcp_wantoptions[0].cflag,
159       "Disable VJ connection-ID compression", OPT_ALIAS | OPT_A2CLR,
160       &ipcp_allowoptions[0].cflag },
161
162     { "vj-max-slots", o_special, (void *)setvjslots,
163       "Set maximum VJ header slots",
164       OPT_PRIO | OPT_A2STRVAL | OPT_STATIC, vj_value },
165
166     { "ipcp-accept-local", o_bool, &ipcp_wantoptions[0].accept_local,
167       "Accept peer's address for us", 1 },
168     { "ipcp-accept-remote", o_bool, &ipcp_wantoptions[0].accept_remote,
169       "Accept peer's address for it", 1 },
170
171     { "ipparam", o_string, &ipparam,
172       "Set ip script parameter", OPT_PRIO },
173
174     { "noipdefault", o_bool, &disable_defaultip,
175       "Don't use name for default IP adrs", 1 },
176
177     { "ms-dns", 1, (void *)setdnsaddr,
178       "DNS address for the peer's use" },
179     { "ms-wins", 1, (void *)setwinsaddr,
180       "Nameserver for SMB over TCP/IP for peer" },
181
182     { "ipcp-restart", o_int, &ipcp_fsm[0].timeouttime,
183       "Set timeout for IPCP", OPT_PRIO },
184     { "ipcp-max-terminate", o_int, &ipcp_fsm[0].maxtermtransmits,
185       "Set max #xmits for term-reqs", OPT_PRIO },
186     { "ipcp-max-configure", o_int, &ipcp_fsm[0].maxconfreqtransmits,
187       "Set max #xmits for conf-reqs", OPT_PRIO },
188     { "ipcp-max-failure", o_int, &ipcp_fsm[0].maxnakloops,
189       "Set max #conf-naks for IPCP", OPT_PRIO },
190
191     { "defaultroute", o_bool, &ipcp_wantoptions[0].default_route,
192       "Add default route", OPT_ENABLE|1, &ipcp_allowoptions[0].default_route },
193     { "nodefaultroute", o_bool, &ipcp_allowoptions[0].default_route,
194       "disable defaultroute option", OPT_A2CLR,
195       &ipcp_wantoptions[0].default_route },
196     { "-defaultroute", o_bool, &ipcp_allowoptions[0].default_route,
197       "disable defaultroute option", OPT_ALIAS | OPT_A2CLR,
198       &ipcp_wantoptions[0].default_route },
199
200     { "proxyarp", o_bool, &ipcp_wantoptions[0].proxy_arp,
201       "Add proxy ARP entry", OPT_ENABLE|1, &ipcp_allowoptions[0].proxy_arp },
202     { "noproxyarp", o_bool, &ipcp_allowoptions[0].proxy_arp,
203       "disable proxyarp option", OPT_A2CLR,
204       &ipcp_wantoptions[0].proxy_arp },
205     { "-proxyarp", o_bool, &ipcp_allowoptions[0].proxy_arp,
206       "disable proxyarp option", OPT_ALIAS | OPT_A2CLR,
207       &ipcp_wantoptions[0].proxy_arp },
208
209     { "usepeerdns", o_bool, &usepeerdns,
210       "Ask peer for DNS address(es)", 1 },
211
212     { "netmask", o_special, (void *)setnetmask,
213       "set netmask", OPT_PRIO | OPT_A2STRVAL | OPT_STATIC, netmask_str },
214
215     { "ipcp-no-addresses", o_bool, &ipcp_wantoptions[0].old_addrs,
216       "Disable old-style IP-Addresses usage", OPT_A2CLR,
217       &ipcp_allowoptions[0].old_addrs },
218     { "ipcp-no-address", o_bool, &ipcp_wantoptions[0].neg_addr,
219       "Disable IP-Address usage", OPT_A2CLR,
220       &ipcp_allowoptions[0].neg_addr },
221
222     { "IP addresses", o_wild, (void *) &setipaddr,
223       "set local and remote IP addresses",
224       OPT_NOARG | OPT_A2PRINTER, (void *) &printipaddr },
225
226     { NULL }
227 };
228
229 /*
230  * Protocol entry points from main code.
231  */
232 static void ipcp_init __P((int));
233 static void ipcp_open __P((int));
234 static void ipcp_close __P((int, char *));
235 static void ipcp_lowerup __P((int));
236 static void ipcp_lowerdown __P((int));
237 static void ipcp_input __P((int, u_char *, int));
238 static void ipcp_protrej __P((int));
239 static int  ipcp_printpkt __P((u_char *, int,
240                                void (*) __P((void *, char *, ...)), void *));
241 static void ip_check_options __P((void));
242 static int  ip_demand_conf __P((int));
243 static int  ip_active_pkt __P((u_char *, int));
244 static void create_resolv __P((u_int32_t, u_int32_t));
245
246 struct protent ipcp_protent = {
247     PPP_IPCP,
248     ipcp_init,
249     ipcp_input,
250     ipcp_protrej,
251     ipcp_lowerup,
252     ipcp_lowerdown,
253     ipcp_open,
254     ipcp_close,
255     ipcp_printpkt,
256     NULL,
257     1,
258     "IPCP",
259     "IP",
260     ipcp_option_list,
261     ip_check_options,
262     ip_demand_conf,
263     ip_active_pkt
264 };
265
266 static void ipcp_clear_addrs __P((int, u_int32_t, u_int32_t));
267 static void ipcp_script __P((char *));          /* Run an up/down script */
268 static void ipcp_script_done __P((void *));
269
270 /*
271  * Lengths of configuration options.
272  */
273 #define CILEN_VOID      2
274 #define CILEN_COMPRESS  4       /* min length for compression protocol opt. */
275 #define CILEN_VJ        6       /* length for RFC1332 Van-Jacobson opt. */
276 #define CILEN_ADDR      6       /* new-style single address option */
277 #define CILEN_ADDRS     10      /* old-style dual address option */
278
279
280 #define CODENAME(x)     ((x) == CONFACK ? "ACK" : \
281                          (x) == CONFNAK ? "NAK" : "REJ")
282
283 /*
284  * This state variable is used to ensure that we don't
285  * run an ipcp-up/down script while one is already running.
286  */
287 static enum script_state {
288     s_down,
289     s_up,
290 } ipcp_script_state;
291 static pid_t ipcp_script_pid;
292
293 /*
294  * Make a string representation of a network IP address.
295  */
296 char *
297 ip_ntoa(ipaddr)
298 u_int32_t ipaddr;
299 {
300     static char b[64];
301
302     slprintf(b, sizeof(b), "%I", ipaddr);
303     return b;
304 }
305
306 /*
307  * Option parsing.
308  */
309
310 /*
311  * setvjslots - set maximum number of connection slots for VJ compression
312  */
313 static int
314 setvjslots(argv)
315     char **argv;
316 {
317     int value;
318
319     if (!int_option(*argv, &value))
320         return 0;
321     if (value < 2 || value > 16) {
322         option_error("vj-max-slots value must be between 2 and 16");
323         return 0;
324     }
325     ipcp_wantoptions [0].maxslotindex =
326         ipcp_allowoptions[0].maxslotindex = value - 1;
327     slprintf(vj_value, sizeof(vj_value), "%d", value);
328     return 1;
329 }
330
331 /*
332  * setdnsaddr - set the dns address(es)
333  */
334 static int
335 setdnsaddr(argv)
336     char **argv;
337 {
338     u_int32_t dns;
339     struct hostent *hp;
340
341     dns = inet_addr(*argv);
342     if (dns == (u_int32_t) -1) {
343         if ((hp = gethostbyname(*argv)) == NULL) {
344             option_error("invalid address parameter '%s' for ms-dns option",
345                          *argv);
346             return 0;
347         }
348         dns = *(u_int32_t *)hp->h_addr;
349     }
350
351     /* We take the last 2 values given, the 2nd-last as the primary
352        and the last as the secondary.  If only one is given it
353        becomes both primary and secondary. */
354     if (ipcp_allowoptions[0].dnsaddr[1] == 0)
355         ipcp_allowoptions[0].dnsaddr[0] = dns;
356     else
357         ipcp_allowoptions[0].dnsaddr[0] = ipcp_allowoptions[0].dnsaddr[1];
358
359     /* always set the secondary address value. */
360     ipcp_allowoptions[0].dnsaddr[1] = dns;
361
362     return (1);
363 }
364
365 /*
366  * setwinsaddr - set the wins address(es)
367  * This is primrarly used with the Samba package under UNIX or for pointing
368  * the caller to the existing WINS server on a Windows NT platform.
369  */
370 static int
371 setwinsaddr(argv)
372     char **argv;
373 {
374     u_int32_t wins;
375     struct hostent *hp;
376
377     wins = inet_addr(*argv);
378     if (wins == (u_int32_t) -1) {
379         if ((hp = gethostbyname(*argv)) == NULL) {
380             option_error("invalid address parameter '%s' for ms-wins option",
381                          *argv);
382             return 0;
383         }
384         wins = *(u_int32_t *)hp->h_addr;
385     }
386
387     /* We take the last 2 values given, the 2nd-last as the primary
388        and the last as the secondary.  If only one is given it
389        becomes both primary and secondary. */
390     if (ipcp_allowoptions[0].winsaddr[1] == 0)
391         ipcp_allowoptions[0].winsaddr[0] = wins;
392     else
393         ipcp_allowoptions[0].winsaddr[0] = ipcp_allowoptions[0].winsaddr[1];
394
395     /* always set the secondary address value. */
396     ipcp_allowoptions[0].winsaddr[1] = wins;
397
398     return (1);
399 }
400
401 /*
402  * setipaddr - Set the IP address
403  * If doit is 0, the call is to check whether this option is
404  * potentially an IP address specification.
405  * Not static so that plugins can call it to set the addresses
406  */
407 int
408 setipaddr(arg, argv, doit)
409     char *arg;
410     char **argv;
411     int doit;
412 {
413     struct hostent *hp;
414     char *colon;
415     u_int32_t local, remote;
416     ipcp_options *wo = &ipcp_wantoptions[0];
417     static int prio_local = 0, prio_remote = 0;
418
419     /*
420      * IP address pair separated by ":".
421      */
422     if ((colon = strchr(arg, ':')) == NULL)
423         return 0;
424     if (!doit)
425         return 1;
426   
427     /*
428      * If colon first character, then no local addr.
429      */
430     if (colon != arg && option_priority >= prio_local) {
431         *colon = '\0';
432         if ((local = inet_addr(arg)) == (u_int32_t) -1) {
433             if ((hp = gethostbyname(arg)) == NULL) {
434                 option_error("unknown host: %s", arg);
435                 return 0;
436             }
437             local = *(u_int32_t *)hp->h_addr;
438         }
439         if (bad_ip_adrs(local)) {
440             option_error("bad local IP address %s", ip_ntoa(local));
441             return 0;
442         }
443         if (local != 0)
444             wo->ouraddr = local;
445         *colon = ':';
446         prio_local = option_priority;
447     }
448   
449     /*
450      * If colon last character, then no remote addr.
451      */
452     if (*++colon != '\0' && option_priority >= prio_remote) {
453         if ((remote = inet_addr(colon)) == (u_int32_t) -1) {
454             if ((hp = gethostbyname(colon)) == NULL) {
455                 option_error("unknown host: %s", colon);
456                 return 0;
457             }
458             remote = *(u_int32_t *)hp->h_addr;
459             if (remote_name[0] == 0)
460                 strlcpy(remote_name, colon, sizeof(remote_name));
461         }
462         if (bad_ip_adrs(remote)) {
463             option_error("bad remote IP address %s", ip_ntoa(remote));
464             return 0;
465         }
466         if (remote != 0)
467             wo->hisaddr = remote;
468         prio_remote = option_priority;
469     }
470
471     return 1;
472 }
473
474 static void
475 printipaddr(opt, printer, arg)
476     option_t *opt;
477     void (*printer) __P((void *, char *, ...));
478     void *arg;
479 {
480         ipcp_options *wo = &ipcp_wantoptions[0];
481
482         if (wo->ouraddr != 0)
483                 printer(arg, "%I", wo->ouraddr);
484         printer(arg, ":");
485         if (wo->hisaddr != 0)
486                 printer(arg, "%I", wo->hisaddr);
487 }
488
489 /*
490  * setnetmask - set the netmask to be used on the interface.
491  */
492 static int
493 setnetmask(argv)
494     char **argv;
495 {
496     u_int32_t mask;
497     int n;
498     char *p;
499
500     /*
501      * Unfortunately, if we use inet_addr, we can't tell whether
502      * a result of all 1s is an error or a valid 255.255.255.255.
503      */
504     p = *argv;
505     n = parse_dotted_ip(p, &mask);
506
507     mask = htonl(mask);
508
509     if (n == 0 || p[n] != 0 || (netmask & ~mask) != 0) {
510         option_error("invalid netmask value '%s'", *argv);
511         return 0;
512     }
513
514     netmask = mask;
515     slprintf(netmask_str, sizeof(netmask_str), "%I", mask);
516
517     return (1);
518 }
519
520 int
521 parse_dotted_ip(p, vp)
522     char *p;
523     u_int32_t *vp;
524 {
525     int n;
526     u_int32_t v, b;
527     char *endp, *p0 = p;
528
529     v = 0;
530     for (n = 3;; --n) {
531         b = strtoul(p, &endp, 0);
532         if (endp == p)
533             return 0;
534         if (b > 255) {
535             if (n < 3)
536                 return 0;
537             /* accept e.g. 0xffffff00 */
538             *vp = b;
539             return endp - p0;
540         }
541         v |= b << (n * 8);
542         p = endp;
543         if (n == 0)
544             break;
545         if (*p != '.')
546             return 0;
547         ++p;
548     }
549     *vp = v;
550     return p - p0;
551 }
552
553
554 /*
555  * ipcp_init - Initialize IPCP.
556  */
557 static void
558 ipcp_init(unit)
559     int unit;
560 {
561     fsm *f = &ipcp_fsm[unit];
562     ipcp_options *wo = &ipcp_wantoptions[unit];
563     ipcp_options *ao = &ipcp_allowoptions[unit];
564
565     f->unit = unit;
566     f->protocol = PPP_IPCP;
567     f->callbacks = &ipcp_callbacks;
568     fsm_init(&ipcp_fsm[unit]);
569
570     memset(wo, 0, sizeof(*wo));
571     memset(ao, 0, sizeof(*ao));
572
573     wo->neg_addr = wo->old_addrs = 1;
574     wo->neg_vj = 1;
575     wo->vj_protocol = IPCP_VJ_COMP;
576     wo->maxslotindex = MAX_STATES - 1; /* really max index */
577     wo->cflag = 1;
578
579
580     /* max slots and slot-id compression are currently hardwired in */
581     /* ppp_if.c to 16 and 1, this needs to be changed (among other */
582     /* things) gmc */
583
584     ao->neg_addr = ao->old_addrs = 1;
585     ao->neg_vj = 1;
586     ao->maxslotindex = MAX_STATES - 1;
587     ao->cflag = 1;
588
589     /*
590      * XXX These control whether the user may use the proxyarp
591      * and defaultroute options.
592      */
593     ao->proxy_arp = 1;
594     ao->default_route = 1;
595 }
596
597
598 /*
599  * ipcp_open - IPCP is allowed to come up.
600  */
601 static void
602 ipcp_open(unit)
603     int unit;
604 {
605     fsm_open(&ipcp_fsm[unit]);
606     ipcp_is_open = 1;
607 }
608
609
610 /*
611  * ipcp_close - Take IPCP down.
612  */
613 static void
614 ipcp_close(unit, reason)
615     int unit;
616     char *reason;
617 {
618     fsm_close(&ipcp_fsm[unit], reason);
619 }
620
621
622 /*
623  * ipcp_lowerup - The lower layer is up.
624  */
625 static void
626 ipcp_lowerup(unit)
627     int unit;
628 {
629     fsm_lowerup(&ipcp_fsm[unit]);
630 }
631
632
633 /*
634  * ipcp_lowerdown - The lower layer is down.
635  */
636 static void
637 ipcp_lowerdown(unit)
638     int unit;
639 {
640     fsm_lowerdown(&ipcp_fsm[unit]);
641 }
642
643
644 /*
645  * ipcp_input - Input IPCP packet.
646  */
647 static void
648 ipcp_input(unit, p, len)
649     int unit;
650     u_char *p;
651     int len;
652 {
653     fsm_input(&ipcp_fsm[unit], p, len);
654 }
655
656
657 /*
658  * ipcp_protrej - A Protocol-Reject was received for IPCP.
659  *
660  * Pretend the lower layer went down, so we shut up.
661  */
662 static void
663 ipcp_protrej(unit)
664     int unit;
665 {
666     fsm_lowerdown(&ipcp_fsm[unit]);
667 }
668
669
670 /*
671  * ipcp_resetci - Reset our CI.
672  * Called by fsm_sconfreq, Send Configure Request.
673  */
674 static void
675 ipcp_resetci(f)
676     fsm *f;
677 {
678     ipcp_options *wo = &ipcp_wantoptions[f->unit];
679     ipcp_options *go = &ipcp_gotoptions[f->unit];
680     ipcp_options *ao = &ipcp_allowoptions[f->unit];
681
682     wo->req_addr = (wo->neg_addr || wo->old_addrs) &&
683         (ao->neg_addr || ao->old_addrs);
684     if (wo->ouraddr == 0)
685         wo->accept_local = 1;
686     if (wo->hisaddr == 0)
687         wo->accept_remote = 1;
688     wo->req_dns1 = usepeerdns;  /* Request DNS addresses from the peer */
689     wo->req_dns2 = usepeerdns;
690     *go = *wo;
691     if (!ask_for_local)
692         go->ouraddr = 0;
693     if (ip_choose_hook) {
694         ip_choose_hook(&wo->hisaddr);
695         if (wo->hisaddr) {
696             wo->accept_remote = 0;
697         }
698     }
699     BZERO(&ipcp_hisoptions[f->unit], sizeof(ipcp_options));
700 }
701
702
703 /*
704  * ipcp_cilen - Return length of our CI.
705  * Called by fsm_sconfreq, Send Configure Request.
706  */
707 static int
708 ipcp_cilen(f)
709     fsm *f;
710 {
711     ipcp_options *go = &ipcp_gotoptions[f->unit];
712     ipcp_options *wo = &ipcp_wantoptions[f->unit];
713     ipcp_options *ho = &ipcp_hisoptions[f->unit];
714
715 #define LENCIADDRS(neg)         (neg ? CILEN_ADDRS : 0)
716 #define LENCIVJ(neg, old)       (neg ? (old? CILEN_COMPRESS : CILEN_VJ) : 0)
717 #define LENCIADDR(neg)          (neg ? CILEN_ADDR : 0)
718 #define LENCIDNS(neg)           (neg ? (CILEN_ADDR) : 0)
719
720     /*
721      * First see if we want to change our options to the old
722      * forms because we have received old forms from the peer.
723      */
724     if (go->neg_addr && go->old_addrs && !ho->neg_addr && ho->old_addrs)
725         go->neg_addr = 0;
726     if (wo->neg_vj && !go->neg_vj && !go->old_vj) {
727         /* try an older style of VJ negotiation */
728         /* use the old style only if the peer did */
729         if (ho->neg_vj && ho->old_vj) {
730             go->neg_vj = 1;
731             go->old_vj = 1;
732             go->vj_protocol = ho->vj_protocol;
733         }
734     }
735
736     return (LENCIADDRS(!go->neg_addr && go->old_addrs) +
737             LENCIVJ(go->neg_vj, go->old_vj) +
738             LENCIADDR(go->neg_addr) +
739             LENCIDNS(go->req_dns1) +
740             LENCIDNS(go->req_dns2)) ;
741 }
742
743
744 /*
745  * ipcp_addci - Add our desired CIs to a packet.
746  * Called by fsm_sconfreq, Send Configure Request.
747  */
748 static void
749 ipcp_addci(f, ucp, lenp)
750     fsm *f;
751     u_char *ucp;
752     int *lenp;
753 {
754     ipcp_options *go = &ipcp_gotoptions[f->unit];
755     int len = *lenp;
756
757 #define ADDCIADDRS(opt, neg, val1, val2) \
758     if (neg) { \
759         if (len >= CILEN_ADDRS) { \
760             u_int32_t l; \
761             PUTCHAR(opt, ucp); \
762             PUTCHAR(CILEN_ADDRS, ucp); \
763             l = ntohl(val1); \
764             PUTLONG(l, ucp); \
765             l = ntohl(val2); \
766             PUTLONG(l, ucp); \
767             len -= CILEN_ADDRS; \
768         } else \
769             go->old_addrs = 0; \
770     }
771
772 #define ADDCIVJ(opt, neg, val, old, maxslotindex, cflag) \
773     if (neg) { \
774         int vjlen = old? CILEN_COMPRESS : CILEN_VJ; \
775         if (len >= vjlen) { \
776             PUTCHAR(opt, ucp); \
777             PUTCHAR(vjlen, ucp); \
778             PUTSHORT(val, ucp); \
779             if (!old) { \
780                 PUTCHAR(maxslotindex, ucp); \
781                 PUTCHAR(cflag, ucp); \
782             } \
783             len -= vjlen; \
784         } else \
785             neg = 0; \
786     }
787
788 #define ADDCIADDR(opt, neg, val) \
789     if (neg) { \
790         if (len >= CILEN_ADDR) { \
791             u_int32_t l; \
792             PUTCHAR(opt, ucp); \
793             PUTCHAR(CILEN_ADDR, ucp); \
794             l = ntohl(val); \
795             PUTLONG(l, ucp); \
796             len -= CILEN_ADDR; \
797         } else \
798             neg = 0; \
799     }
800
801 #define ADDCIDNS(opt, neg, addr) \
802     if (neg) { \
803         if (len >= CILEN_ADDR) { \
804             u_int32_t l; \
805             PUTCHAR(opt, ucp); \
806             PUTCHAR(CILEN_ADDR, ucp); \
807             l = ntohl(addr); \
808             PUTLONG(l, ucp); \
809             len -= CILEN_ADDR; \
810         } else \
811             neg = 0; \
812     }
813
814     ADDCIADDRS(CI_ADDRS, !go->neg_addr && go->old_addrs, go->ouraddr,
815                go->hisaddr);
816
817     ADDCIVJ(CI_COMPRESSTYPE, go->neg_vj, go->vj_protocol, go->old_vj,
818             go->maxslotindex, go->cflag);
819
820     ADDCIADDR(CI_ADDR, go->neg_addr, go->ouraddr);
821
822     ADDCIDNS(CI_MS_DNS1, go->req_dns1, go->dnsaddr[0]);
823
824     ADDCIDNS(CI_MS_DNS2, go->req_dns2, go->dnsaddr[1]);
825
826     *lenp -= len;
827 }
828
829
830 /*
831  * ipcp_ackci - Ack our CIs.
832  * Called by fsm_rconfack, Receive Configure ACK.
833  *
834  * Returns:
835  *      0 - Ack was bad.
836  *      1 - Ack was good.
837  */
838 static int
839 ipcp_ackci(f, p, len)
840     fsm *f;
841     u_char *p;
842     int len;
843 {
844     ipcp_options *go = &ipcp_gotoptions[f->unit];
845     u_short cilen, citype, cishort;
846     u_int32_t cilong;
847     u_char cimaxslotindex, cicflag;
848
849     /*
850      * CIs must be in exactly the same order that we sent...
851      * Check packet length and CI length at each step.
852      * If we find any deviations, then this packet is bad.
853      */
854
855 #define ACKCIADDRS(opt, neg, val1, val2) \
856     if (neg) { \
857         u_int32_t l; \
858         if ((len -= CILEN_ADDRS) < 0) \
859             goto bad; \
860         GETCHAR(citype, p); \
861         GETCHAR(cilen, p); \
862         if (cilen != CILEN_ADDRS || \
863             citype != opt) \
864             goto bad; \
865         GETLONG(l, p); \
866         cilong = htonl(l); \
867         if (val1 != cilong) \
868             goto bad; \
869         GETLONG(l, p); \
870         cilong = htonl(l); \
871         if (val2 != cilong) \
872             goto bad; \
873     }
874
875 #define ACKCIVJ(opt, neg, val, old, maxslotindex, cflag) \
876     if (neg) { \
877         int vjlen = old? CILEN_COMPRESS : CILEN_VJ; \
878         if ((len -= vjlen) < 0) \
879             goto bad; \
880         GETCHAR(citype, p); \
881         GETCHAR(cilen, p); \
882         if (cilen != vjlen || \
883             citype != opt)  \
884             goto bad; \
885         GETSHORT(cishort, p); \
886         if (cishort != val) \
887             goto bad; \
888         if (!old) { \
889             GETCHAR(cimaxslotindex, p); \
890             if (cimaxslotindex != maxslotindex) \
891                 goto bad; \
892             GETCHAR(cicflag, p); \
893             if (cicflag != cflag) \
894                 goto bad; \
895         } \
896     }
897
898 #define ACKCIADDR(opt, neg, val) \
899     if (neg) { \
900         u_int32_t l; \
901         if ((len -= CILEN_ADDR) < 0) \
902             goto bad; \
903         GETCHAR(citype, p); \
904         GETCHAR(cilen, p); \
905         if (cilen != CILEN_ADDR || \
906             citype != opt) \
907             goto bad; \
908         GETLONG(l, p); \
909         cilong = htonl(l); \
910         if (val != cilong) \
911             goto bad; \
912     }
913
914 #define ACKCIDNS(opt, neg, addr) \
915     if (neg) { \
916         u_int32_t l; \
917         if ((len -= CILEN_ADDR) < 0) \
918             goto bad; \
919         GETCHAR(citype, p); \
920         GETCHAR(cilen, p); \
921         if (cilen != CILEN_ADDR || citype != opt) \
922             goto bad; \
923         GETLONG(l, p); \
924         cilong = htonl(l); \
925         if (addr != cilong) \
926             goto bad; \
927     }
928
929     ACKCIADDRS(CI_ADDRS, !go->neg_addr && go->old_addrs, go->ouraddr,
930                go->hisaddr);
931
932     ACKCIVJ(CI_COMPRESSTYPE, go->neg_vj, go->vj_protocol, go->old_vj,
933             go->maxslotindex, go->cflag);
934
935     ACKCIADDR(CI_ADDR, go->neg_addr, go->ouraddr);
936
937     ACKCIDNS(CI_MS_DNS1, go->req_dns1, go->dnsaddr[0]);
938
939     ACKCIDNS(CI_MS_DNS2, go->req_dns2, go->dnsaddr[1]);
940
941     /*
942      * If there are any remaining CIs, then this packet is bad.
943      */
944     if (len != 0)
945         goto bad;
946     return (1);
947
948 bad:
949     IPCPDEBUG(("ipcp_ackci: received bad Ack!"));
950     return (0);
951 }
952
953 /*
954  * ipcp_nakci - Peer has sent a NAK for some of our CIs.
955  * This should not modify any state if the Nak is bad
956  * or if IPCP is in the OPENED state.
957  * Calback from fsm_rconfnakrej - Receive Configure-Nak or Configure-Reject.
958  *
959  * Returns:
960  *      0 - Nak was bad.
961  *      1 - Nak was good.
962  */
963 static int
964 ipcp_nakci(f, p, len)
965     fsm *f;
966     u_char *p;
967     int len;
968 {
969     ipcp_options *go = &ipcp_gotoptions[f->unit];
970     u_char cimaxslotindex, cicflag;
971     u_char citype, cilen, *next;
972     u_short cishort;
973     u_int32_t ciaddr1, ciaddr2, l, cidnsaddr;
974     ipcp_options no;            /* options we've seen Naks for */
975     ipcp_options try;           /* options to request next time */
976
977     BZERO(&no, sizeof(no));
978     try = *go;
979
980     /*
981      * Any Nak'd CIs must be in exactly the same order that we sent.
982      * Check packet length and CI length at each step.
983      * If we find any deviations, then this packet is bad.
984      */
985 #define NAKCIADDRS(opt, neg, code) \
986     if ((neg) && \
987         (cilen = p[1]) == CILEN_ADDRS && \
988         len >= cilen && \
989         p[0] == opt) { \
990         len -= cilen; \
991         INCPTR(2, p); \
992         GETLONG(l, p); \
993         ciaddr1 = htonl(l); \
994         GETLONG(l, p); \
995         ciaddr2 = htonl(l); \
996         no.old_addrs = 1; \
997         code \
998     }
999
1000 #define NAKCIVJ(opt, neg, code) \
1001     if (go->neg && \
1002         ((cilen = p[1]) == CILEN_COMPRESS || cilen == CILEN_VJ) && \
1003         len >= cilen && \
1004         p[0] == opt) { \
1005         len -= cilen; \
1006         INCPTR(2, p); \
1007         GETSHORT(cishort, p); \
1008         no.neg = 1; \
1009         code \
1010     }
1011
1012 #define NAKCIADDR(opt, neg, code) \
1013     if (go->neg && \
1014         (cilen = p[1]) == CILEN_ADDR && \
1015         len >= cilen && \
1016         p[0] == opt) { \
1017         len -= cilen; \
1018         INCPTR(2, p); \
1019         GETLONG(l, p); \
1020         ciaddr1 = htonl(l); \
1021         no.neg = 1; \
1022         code \
1023     }
1024
1025 #define NAKCIDNS(opt, neg, code) \
1026     if (go->neg && \
1027         ((cilen = p[1]) == CILEN_ADDR) && \
1028         len >= cilen && \
1029         p[0] == opt) { \
1030         len -= cilen; \
1031         INCPTR(2, p); \
1032         GETLONG(l, p); \
1033         cidnsaddr = htonl(l); \
1034         no.neg = 1; \
1035         code \
1036     }
1037
1038     /*
1039      * Accept the peer's idea of {our,his} address, if different
1040      * from our idea, only if the accept_{local,remote} flag is set.
1041      */
1042     NAKCIADDRS(CI_ADDRS, !go->neg_addr && go->old_addrs,
1043                if (go->accept_local && ciaddr1) { /* Do we know our address? */
1044                    try.ouraddr = ciaddr1;
1045                }
1046                if (go->accept_remote && ciaddr2) { /* Does he know his? */
1047                    try.hisaddr = ciaddr2;
1048                }
1049         );
1050
1051     /*
1052      * Accept the peer's value of maxslotindex provided that it
1053      * is less than what we asked for.  Turn off slot-ID compression
1054      * if the peer wants.  Send old-style compress-type option if
1055      * the peer wants.
1056      */
1057     NAKCIVJ(CI_COMPRESSTYPE, neg_vj,
1058             if (cilen == CILEN_VJ) {
1059                 GETCHAR(cimaxslotindex, p);
1060                 GETCHAR(cicflag, p);
1061                 if (cishort == IPCP_VJ_COMP) {
1062                     try.old_vj = 0;
1063                     if (cimaxslotindex < go->maxslotindex)
1064                         try.maxslotindex = cimaxslotindex;
1065                     if (!cicflag)
1066                         try.cflag = 0;
1067                 } else {
1068                     try.neg_vj = 0;
1069                 }
1070             } else {
1071                 if (cishort == IPCP_VJ_COMP || cishort == IPCP_VJ_COMP_OLD) {
1072                     try.old_vj = 1;
1073                     try.vj_protocol = cishort;
1074                 } else {
1075                     try.neg_vj = 0;
1076                 }
1077             }
1078             );
1079
1080     NAKCIADDR(CI_ADDR, neg_addr,
1081               if (go->accept_local && ciaddr1) { /* Do we know our address? */
1082                   try.ouraddr = ciaddr1;
1083               }
1084               );
1085
1086     NAKCIDNS(CI_MS_DNS1, req_dns1,
1087             try.dnsaddr[0] = cidnsaddr;
1088             );
1089
1090     NAKCIDNS(CI_MS_DNS2, req_dns2,
1091             try.dnsaddr[1] = cidnsaddr;
1092             );
1093
1094     /*
1095      * There may be remaining CIs, if the peer is requesting negotiation
1096      * on an option that we didn't include in our request packet.
1097      * If they want to negotiate about IP addresses, we comply.
1098      * If they want us to ask for compression, we refuse.
1099      */
1100     while (len >= CILEN_VOID) {
1101         GETCHAR(citype, p);
1102         GETCHAR(cilen, p);
1103         if ( cilen < CILEN_VOID || (len -= cilen) < 0 )
1104             goto bad;
1105         next = p + cilen - 2;
1106
1107         switch (citype) {
1108         case CI_COMPRESSTYPE:
1109             if (go->neg_vj || no.neg_vj ||
1110                 (cilen != CILEN_VJ && cilen != CILEN_COMPRESS))
1111                 goto bad;
1112             no.neg_vj = 1;
1113             break;
1114         case CI_ADDRS:
1115             if ((!go->neg_addr && go->old_addrs) || no.old_addrs
1116                 || cilen != CILEN_ADDRS)
1117                 goto bad;
1118             try.neg_addr = 0;
1119             GETLONG(l, p);
1120             ciaddr1 = htonl(l);
1121             if (ciaddr1 && go->accept_local)
1122                 try.ouraddr = ciaddr1;
1123             GETLONG(l, p);
1124             ciaddr2 = htonl(l);
1125             if (ciaddr2 && go->accept_remote)
1126                 try.hisaddr = ciaddr2;
1127             no.old_addrs = 1;
1128             break;
1129         case CI_ADDR:
1130             if (go->neg_addr || no.neg_addr || cilen != CILEN_ADDR)
1131                 goto bad;
1132             try.old_addrs = 0;
1133             GETLONG(l, p);
1134             ciaddr1 = htonl(l);
1135             if (ciaddr1 && go->accept_local)
1136                 try.ouraddr = ciaddr1;
1137             if (try.ouraddr != 0)
1138                 try.neg_addr = 1;
1139             no.neg_addr = 1;
1140             break;
1141         }
1142         p = next;
1143     }
1144
1145     /*
1146      * OK, the Nak is good.  Now we can update state.
1147      * If there are any remaining options, we ignore them.
1148      */
1149     if (f->state != OPENED)
1150         *go = try;
1151
1152     return 1;
1153
1154 bad:
1155     IPCPDEBUG(("ipcp_nakci: received bad Nak!"));
1156     return 0;
1157 }
1158
1159
1160 /*
1161  * ipcp_rejci - Reject some of our CIs.
1162  * Callback from fsm_rconfnakrej.
1163  */
1164 static int
1165 ipcp_rejci(f, p, len)
1166     fsm *f;
1167     u_char *p;
1168     int len;
1169 {
1170     ipcp_options *go = &ipcp_gotoptions[f->unit];
1171     u_char cimaxslotindex, ciflag, cilen;
1172     u_short cishort;
1173     u_int32_t cilong;
1174     ipcp_options try;           /* options to request next time */
1175
1176     try = *go;
1177     /*
1178      * Any Rejected CIs must be in exactly the same order that we sent.
1179      * Check packet length and CI length at each step.
1180      * If we find any deviations, then this packet is bad.
1181      */
1182 #define REJCIADDRS(opt, neg, val1, val2) \
1183     if ((neg) && \
1184         (cilen = p[1]) == CILEN_ADDRS && \
1185         len >= cilen && \
1186         p[0] == opt) { \
1187         u_int32_t l; \
1188         len -= cilen; \
1189         INCPTR(2, p); \
1190         GETLONG(l, p); \
1191         cilong = htonl(l); \
1192         /* Check rejected value. */ \
1193         if (cilong != val1) \
1194             goto bad; \
1195         GETLONG(l, p); \
1196         cilong = htonl(l); \
1197         /* Check rejected value. */ \
1198         if (cilong != val2) \
1199             goto bad; \
1200         try.old_addrs = 0; \
1201     }
1202
1203 #define REJCIVJ(opt, neg, val, old, maxslot, cflag) \
1204     if (go->neg && \
1205         p[1] == (old? CILEN_COMPRESS : CILEN_VJ) && \
1206         len >= p[1] && \
1207         p[0] == opt) { \
1208         len -= p[1]; \
1209         INCPTR(2, p); \
1210         GETSHORT(cishort, p); \
1211         /* Check rejected value. */  \
1212         if (cishort != val) \
1213             goto bad; \
1214         if (!old) { \
1215            GETCHAR(cimaxslotindex, p); \
1216            if (cimaxslotindex != maxslot) \
1217              goto bad; \
1218            GETCHAR(ciflag, p); \
1219            if (ciflag != cflag) \
1220              goto bad; \
1221         } \
1222         try.neg = 0; \
1223      }
1224
1225 #define REJCIADDR(opt, neg, val) \
1226     if (go->neg && \
1227         (cilen = p[1]) == CILEN_ADDR && \
1228         len >= cilen && \
1229         p[0] == opt) { \
1230         u_int32_t l; \
1231         len -= cilen; \
1232         INCPTR(2, p); \
1233         GETLONG(l, p); \
1234         cilong = htonl(l); \
1235         /* Check rejected value. */ \
1236         if (cilong != val) \
1237             goto bad; \
1238         try.neg = 0; \
1239     }
1240
1241 #define REJCIDNS(opt, neg, dnsaddr) \
1242     if (go->neg && \
1243         ((cilen = p[1]) == CILEN_ADDR) && \
1244         len >= cilen && \
1245         p[0] == opt) { \
1246         u_int32_t l; \
1247         len -= cilen; \
1248         INCPTR(2, p); \
1249         GETLONG(l, p); \
1250         cilong = htonl(l); \
1251         /* Check rejected value. */ \
1252         if (cilong != dnsaddr) \
1253             goto bad; \
1254         try.neg = 0; \
1255     }
1256
1257
1258     REJCIADDRS(CI_ADDRS, !go->neg_addr && go->old_addrs,
1259                go->ouraddr, go->hisaddr);
1260
1261     REJCIVJ(CI_COMPRESSTYPE, neg_vj, go->vj_protocol, go->old_vj,
1262             go->maxslotindex, go->cflag);
1263
1264     REJCIADDR(CI_ADDR, neg_addr, go->ouraddr);
1265
1266     REJCIDNS(CI_MS_DNS1, req_dns1, go->dnsaddr[0]);
1267
1268     REJCIDNS(CI_MS_DNS2, req_dns2, go->dnsaddr[1]);
1269
1270     /*
1271      * If there are any remaining CIs, then this packet is bad.
1272      */
1273     if (len != 0)
1274         goto bad;
1275     /*
1276      * Now we can update state.
1277      */
1278     if (f->state != OPENED)
1279         *go = try;
1280     return 1;
1281
1282 bad:
1283     IPCPDEBUG(("ipcp_rejci: received bad Reject!"));
1284     return 0;
1285 }
1286
1287
1288 /*
1289  * ipcp_reqci - Check the peer's requested CIs and send appropriate response.
1290  * Callback from fsm_rconfreq, Receive Configure Request
1291  *
1292  * Returns: CONFACK, CONFNAK or CONFREJ and input packet modified
1293  * appropriately.  If reject_if_disagree is non-zero, doesn't return
1294  * CONFNAK; returns CONFREJ if it can't return CONFACK.
1295  */
1296 static int
1297 ipcp_reqci(f, inp, len, reject_if_disagree)
1298     fsm *f;
1299     u_char *inp;                /* Requested CIs */
1300     int *len;                   /* Length of requested CIs */
1301     int reject_if_disagree;
1302 {
1303     ipcp_options *wo = &ipcp_wantoptions[f->unit];
1304     ipcp_options *ho = &ipcp_hisoptions[f->unit];
1305     ipcp_options *ao = &ipcp_allowoptions[f->unit];
1306     u_char *cip, *next;         /* Pointer to current and next CIs */
1307     u_short cilen, citype;      /* Parsed len, type */
1308     u_short cishort;            /* Parsed short value */
1309     u_int32_t tl, ciaddr1, ciaddr2;/* Parsed address values */
1310     int rc = CONFACK;           /* Final packet return code */
1311     int orc;                    /* Individual option return code */
1312     u_char *p;                  /* Pointer to next char to parse */
1313     u_char *ucp = inp;          /* Pointer to current output char */
1314     int l = *len;               /* Length left */
1315     u_char maxslotindex, cflag;
1316     int d;
1317
1318     /*
1319      * Reset all his options.
1320      */
1321     BZERO(ho, sizeof(*ho));
1322     
1323     /*
1324      * Process all his options.
1325      */
1326     next = inp;
1327     while (l) {
1328         orc = CONFACK;                  /* Assume success */
1329         cip = p = next;                 /* Remember begining of CI */
1330         if (l < 2 ||                    /* Not enough data for CI header or */
1331             p[1] < 2 ||                 /*  CI length too small or */
1332             p[1] > l) {                 /*  CI length too big? */
1333             IPCPDEBUG(("ipcp_reqci: bad CI length!"));
1334             orc = CONFREJ;              /* Reject bad CI */
1335             cilen = l;                  /* Reject till end of packet */
1336             l = 0;                      /* Don't loop again */
1337             goto endswitch;
1338         }
1339         GETCHAR(citype, p);             /* Parse CI type */
1340         GETCHAR(cilen, p);              /* Parse CI length */
1341         l -= cilen;                     /* Adjust remaining length */
1342         next += cilen;                  /* Step to next CI */
1343
1344         switch (citype) {               /* Check CI type */
1345         case CI_ADDRS:
1346             if (!ao->old_addrs || ho->neg_addr ||
1347                 cilen != CILEN_ADDRS) { /* Check CI length */
1348                 orc = CONFREJ;          /* Reject CI */
1349                 break;
1350             }
1351
1352             /*
1353              * If he has no address, or if we both have his address but
1354              * disagree about it, then NAK it with our idea.
1355              * In particular, if we don't know his address, but he does,
1356              * then accept it.
1357              */
1358             GETLONG(tl, p);             /* Parse source address (his) */
1359             ciaddr1 = htonl(tl);
1360             if (ciaddr1 != wo->hisaddr
1361                 && (ciaddr1 == 0 || !wo->accept_remote)) {
1362                 orc = CONFNAK;
1363                 if (!reject_if_disagree) {
1364                     DECPTR(sizeof(u_int32_t), p);
1365                     tl = ntohl(wo->hisaddr);
1366                     PUTLONG(tl, p);
1367                 }
1368             } else if (ciaddr1 == 0 && wo->hisaddr == 0) {
1369                 /*
1370                  * If neither we nor he knows his address, reject the option.
1371                  */
1372                 orc = CONFREJ;
1373                 wo->req_addr = 0;       /* don't NAK with 0.0.0.0 later */
1374                 break;
1375             }
1376
1377             /*
1378              * If he doesn't know our address, or if we both have our address
1379              * but disagree about it, then NAK it with our idea.
1380              */
1381             GETLONG(tl, p);             /* Parse desination address (ours) */
1382             ciaddr2 = htonl(tl);
1383             if (ciaddr2 != wo->ouraddr) {
1384                 if (ciaddr2 == 0 || !wo->accept_local) {
1385                     orc = CONFNAK;
1386                     if (!reject_if_disagree) {
1387                         DECPTR(sizeof(u_int32_t), p);
1388                         tl = ntohl(wo->ouraddr);
1389                         PUTLONG(tl, p);
1390                     }
1391                 } else {
1392                     wo->ouraddr = ciaddr2;      /* accept peer's idea */
1393                 }
1394             }
1395
1396             ho->old_addrs = 1;
1397             ho->hisaddr = ciaddr1;
1398             ho->ouraddr = ciaddr2;
1399             break;
1400
1401         case CI_ADDR:
1402             if (!ao->neg_addr || ho->old_addrs ||
1403                 cilen != CILEN_ADDR) {  /* Check CI length */
1404                 orc = CONFREJ;          /* Reject CI */
1405                 break;
1406             }
1407
1408             /*
1409              * If he has no address, or if we both have his address but
1410              * disagree about it, then NAK it with our idea.
1411              * In particular, if we don't know his address, but he does,
1412              * then accept it.
1413              */
1414             GETLONG(tl, p);     /* Parse source address (his) */
1415             ciaddr1 = htonl(tl);
1416             if (ciaddr1 != wo->hisaddr
1417                 && (ciaddr1 == 0 || !wo->accept_remote)) {
1418                 orc = CONFNAK;
1419                 if (!reject_if_disagree) {
1420                     DECPTR(sizeof(u_int32_t), p);
1421                     tl = ntohl(wo->hisaddr);
1422                     PUTLONG(tl, p);
1423                 }
1424             } else if (ciaddr1 == 0 && wo->hisaddr == 0) {
1425                 /*
1426                  * Don't ACK an address of 0.0.0.0 - reject it instead.
1427                  */
1428                 orc = CONFREJ;
1429                 wo->req_addr = 0;       /* don't NAK with 0.0.0.0 later */
1430                 break;
1431             }
1432         
1433             ho->neg_addr = 1;
1434             ho->hisaddr = ciaddr1;
1435             break;
1436
1437         case CI_MS_DNS1:
1438         case CI_MS_DNS2:
1439             /* Microsoft primary or secondary DNS request */
1440             d = citype == CI_MS_DNS2;
1441
1442             /* If we do not have a DNS address then we cannot send it */
1443             if (ao->dnsaddr[d] == 0 ||
1444                 cilen != CILEN_ADDR) {  /* Check CI length */
1445                 orc = CONFREJ;          /* Reject CI */
1446                 break;
1447             }
1448             GETLONG(tl, p);
1449             if (htonl(tl) != ao->dnsaddr[d]) {
1450                 DECPTR(sizeof(u_int32_t), p);
1451                 tl = ntohl(ao->dnsaddr[d]);
1452                 PUTLONG(tl, p);
1453                 orc = CONFNAK;
1454             }
1455             break;
1456
1457         case CI_MS_WINS1:
1458         case CI_MS_WINS2:
1459             /* Microsoft primary or secondary WINS request */
1460             d = citype == CI_MS_WINS2;
1461
1462             /* If we do not have a DNS address then we cannot send it */
1463             if (ao->winsaddr[d] == 0 ||
1464                 cilen != CILEN_ADDR) {  /* Check CI length */
1465                 orc = CONFREJ;          /* Reject CI */
1466                 break;
1467             }
1468             GETLONG(tl, p);
1469             if (htonl(tl) != ao->winsaddr[d]) {
1470                 DECPTR(sizeof(u_int32_t), p);
1471                 tl = ntohl(ao->winsaddr[d]);
1472                 PUTLONG(tl, p);
1473                 orc = CONFNAK;
1474             }
1475             break;
1476         
1477         case CI_COMPRESSTYPE:
1478             if (!ao->neg_vj ||
1479                 (cilen != CILEN_VJ && cilen != CILEN_COMPRESS)) {
1480                 orc = CONFREJ;
1481                 break;
1482             }
1483             GETSHORT(cishort, p);
1484
1485             if (!(cishort == IPCP_VJ_COMP ||
1486                   (cishort == IPCP_VJ_COMP_OLD && cilen == CILEN_COMPRESS))) {
1487                 orc = CONFREJ;
1488                 break;
1489             }
1490
1491             ho->neg_vj = 1;
1492             ho->vj_protocol = cishort;
1493             if (cilen == CILEN_VJ) {
1494                 GETCHAR(maxslotindex, p);
1495                 if (maxslotindex > ao->maxslotindex) { 
1496                     orc = CONFNAK;
1497                     if (!reject_if_disagree){
1498                         DECPTR(1, p);
1499                         PUTCHAR(ao->maxslotindex, p);
1500                     }
1501                 }
1502                 GETCHAR(cflag, p);
1503                 if (cflag && !ao->cflag) {
1504                     orc = CONFNAK;
1505                     if (!reject_if_disagree){
1506                         DECPTR(1, p);
1507                         PUTCHAR(wo->cflag, p);
1508                     }
1509                 }
1510                 ho->maxslotindex = maxslotindex;
1511                 ho->cflag = cflag;
1512             } else {
1513                 ho->old_vj = 1;
1514                 ho->maxslotindex = MAX_STATES - 1;
1515                 ho->cflag = 1;
1516             }
1517             break;
1518
1519         default:
1520             orc = CONFREJ;
1521             break;
1522         }
1523 endswitch:
1524         if (orc == CONFACK &&           /* Good CI */
1525             rc != CONFACK)              /*  but prior CI wasnt? */
1526             continue;                   /* Don't send this one */
1527
1528         if (orc == CONFNAK) {           /* Nak this CI? */
1529             if (reject_if_disagree)     /* Getting fed up with sending NAKs? */
1530                 orc = CONFREJ;          /* Get tough if so */
1531             else {
1532                 if (rc == CONFREJ)      /* Rejecting prior CI? */
1533                     continue;           /* Don't send this one */
1534                 if (rc == CONFACK) {    /* Ack'd all prior CIs? */
1535                     rc = CONFNAK;       /* Not anymore... */
1536                     ucp = inp;          /* Backup */
1537                 }
1538             }
1539         }
1540
1541         if (orc == CONFREJ &&           /* Reject this CI */
1542             rc != CONFREJ) {            /*  but no prior ones? */
1543             rc = CONFREJ;
1544             ucp = inp;                  /* Backup */
1545         }
1546
1547         /* Need to move CI? */
1548         if (ucp != cip)
1549             BCOPY(cip, ucp, cilen);     /* Move it */
1550
1551         /* Update output pointer */
1552         INCPTR(cilen, ucp);
1553     }
1554
1555     /*
1556      * If we aren't rejecting this packet, and we want to negotiate
1557      * their address, and they didn't send their address, then we
1558      * send a NAK with a CI_ADDR option appended.  We assume the
1559      * input buffer is long enough that we can append the extra
1560      * option safely.
1561      */
1562     if (rc != CONFREJ && !ho->neg_addr && !ho->old_addrs &&
1563         wo->req_addr && !reject_if_disagree) {
1564         if (rc == CONFACK) {
1565             rc = CONFNAK;
1566             ucp = inp;                  /* reset pointer */
1567             wo->req_addr = 0;           /* don't ask again */
1568         }
1569         PUTCHAR(CI_ADDR, ucp);
1570         PUTCHAR(CILEN_ADDR, ucp);
1571         tl = ntohl(wo->hisaddr);
1572         PUTLONG(tl, ucp);
1573     }
1574
1575     *len = ucp - inp;                   /* Compute output length */
1576     IPCPDEBUG(("ipcp: returning Configure-%s", CODENAME(rc)));
1577     return (rc);                        /* Return final code */
1578 }
1579
1580
1581 /*
1582  * ip_check_options - check that any IP-related options are OK,
1583  * and assign appropriate defaults.
1584  */
1585 static void
1586 ip_check_options()
1587 {
1588     struct hostent *hp;
1589     u_int32_t local;
1590     ipcp_options *wo = &ipcp_wantoptions[0];
1591
1592     /*
1593      * Default our local IP address based on our hostname.
1594      * If local IP address already given, don't bother.
1595      */
1596     if (wo->ouraddr == 0 && !disable_defaultip) {
1597         /*
1598          * Look up our hostname (possibly with domain name appended)
1599          * and take the first IP address as our local IP address.
1600          * If there isn't an IP address for our hostname, too bad.
1601          */
1602         wo->accept_local = 1;   /* don't insist on this default value */
1603         if ((hp = gethostbyname(hostname)) != NULL) {
1604             local = *(u_int32_t *)hp->h_addr;
1605             if (local != 0 && !bad_ip_adrs(local))
1606                 wo->ouraddr = local;
1607         }
1608     }
1609     ask_for_local = wo->ouraddr != 0 || !disable_defaultip;
1610 }
1611
1612
1613 /*
1614  * ip_demand_conf - configure the interface as though
1615  * IPCP were up, for use with dial-on-demand.
1616  */
1617 static int
1618 ip_demand_conf(u)
1619     int u;
1620 {
1621     ipcp_options *wo = &ipcp_wantoptions[u];
1622
1623     if (wo->hisaddr == 0) {
1624         /* make up an arbitrary address for the peer */
1625         wo->hisaddr = htonl(0x0a707070 + ifunit);
1626         wo->accept_remote = 1;
1627     }
1628     if (wo->ouraddr == 0) {
1629         /* make up an arbitrary address for us */
1630         wo->ouraddr = htonl(0x0a404040 + ifunit);
1631         wo->accept_local = 1;
1632         ask_for_local = 0;      /* don't tell the peer this address */
1633     }
1634     if (!sifaddr(u, wo->ouraddr, wo->hisaddr, GetMask(wo->ouraddr)))
1635         return 0;
1636     if (!sifup(u))
1637         return 0;
1638     if (!sifnpmode(u, PPP_IP, NPMODE_QUEUE))
1639         return 0;
1640     if (wo->default_route)
1641         if (sifdefaultroute(u, wo->ouraddr, wo->hisaddr))
1642             default_route_set[u] = 1;
1643     if (wo->proxy_arp)
1644         if (sifproxyarp(u, wo->hisaddr))
1645             proxy_arp_set[u] = 1;
1646
1647     notice("local  IP address %I", wo->ouraddr);
1648     notice("remote IP address %I", wo->hisaddr);
1649
1650     return 1;
1651 }
1652
1653
1654 /*
1655  * ipcp_up - IPCP has come UP.
1656  *
1657  * Configure the IP network interface appropriately and bring it up.
1658  */
1659 static void
1660 ipcp_up(f)
1661     fsm *f;
1662 {
1663     u_int32_t mask;
1664     ipcp_options *ho = &ipcp_hisoptions[f->unit];
1665     ipcp_options *go = &ipcp_gotoptions[f->unit];
1666     ipcp_options *wo = &ipcp_wantoptions[f->unit];
1667
1668     IPCPDEBUG(("ipcp: up"));
1669
1670     /*
1671      * We must have a non-zero IP address for both ends of the link.
1672      */
1673     if (!ho->neg_addr && !ho->old_addrs)
1674         ho->hisaddr = wo->hisaddr;
1675
1676     if (go->ouraddr == 0) {
1677         error("Could not determine local IP address");
1678         ipcp_close(f->unit, "Could not determine local IP address");
1679         return;
1680     }
1681     if (ho->hisaddr == 0) {
1682         ho->hisaddr = htonl(0x0a404040 + ifunit);
1683         warn("Could not determine remote IP address: defaulting to %I",
1684              ho->hisaddr);
1685     }
1686     script_setenv("IPLOCAL", ip_ntoa(go->ouraddr), 0);
1687     script_setenv("IPREMOTE", ip_ntoa(ho->hisaddr), 1);
1688
1689     if (go->dnsaddr[0])
1690         script_setenv("DNS1", ip_ntoa(go->dnsaddr[0]), 0);
1691     if (go->dnsaddr[1])
1692         script_setenv("DNS2", ip_ntoa(go->dnsaddr[1]), 0);
1693     if (usepeerdns && (go->dnsaddr[0] || go->dnsaddr[1])) {
1694         script_setenv("USEPEERDNS", "1", 0);
1695         create_resolv(go->dnsaddr[0], go->dnsaddr[1]);
1696     }
1697
1698     /*
1699      * Check that the peer is allowed to use the IP address it wants.
1700      */
1701     if (!auth_ip_addr(f->unit, ho->hisaddr)) {
1702         error("Peer is not authorized to use remote address %I", ho->hisaddr);
1703         ipcp_close(f->unit, "Unauthorized remote IP address");
1704         return;
1705     }
1706
1707     /* set tcp compression */
1708     sifvjcomp(f->unit, ho->neg_vj, ho->cflag, ho->maxslotindex);
1709
1710     /*
1711      * If we are doing dial-on-demand, the interface is already
1712      * configured, so we put out any saved-up packets, then set the
1713      * interface to pass IP packets.
1714      */
1715     if (demand) {
1716         if (go->ouraddr != wo->ouraddr || ho->hisaddr != wo->hisaddr) {
1717             ipcp_clear_addrs(f->unit, wo->ouraddr, wo->hisaddr);
1718             if (go->ouraddr != wo->ouraddr) {
1719                 warn("Local IP address changed to %I", go->ouraddr);
1720                 script_setenv("OLDIPLOCAL", ip_ntoa(wo->ouraddr), 0);
1721                 wo->ouraddr = go->ouraddr;
1722             } else
1723                 script_unsetenv("OLDIPLOCAL");
1724             if (ho->hisaddr != wo->hisaddr) {
1725                 warn("Remote IP address changed to %I", ho->hisaddr);
1726                 script_setenv("OLDIPREMOTE", ip_ntoa(wo->hisaddr), 0);
1727                 wo->hisaddr = ho->hisaddr;
1728             } else
1729                 script_unsetenv("OLDIPREMOTE");
1730
1731             /* Set the interface to the new addresses */
1732             mask = GetMask(go->ouraddr);
1733             if (!sifaddr(f->unit, go->ouraddr, ho->hisaddr, mask)) {
1734                 if (debug)
1735                     warn("Interface configuration failed");
1736                 ipcp_close(f->unit, "Interface configuration failed");
1737                 return;
1738             }
1739
1740             /* assign a default route through the interface if required */
1741             if (ipcp_wantoptions[f->unit].default_route) 
1742                 if (sifdefaultroute(f->unit, go->ouraddr, ho->hisaddr))
1743                     default_route_set[f->unit] = 1;
1744
1745             /* Make a proxy ARP entry if requested. */
1746             if (ipcp_wantoptions[f->unit].proxy_arp)
1747                 if (sifproxyarp(f->unit, ho->hisaddr))
1748                     proxy_arp_set[f->unit] = 1;
1749
1750         }
1751         demand_rexmit(PPP_IP);
1752         sifnpmode(f->unit, PPP_IP, NPMODE_PASS);
1753
1754     } else {
1755         /*
1756          * Set IP addresses and (if specified) netmask.
1757          */
1758         mask = GetMask(go->ouraddr);
1759
1760 #if !(defined(SVR4) && (defined(SNI) || defined(__USLC__)))
1761         if (!sifaddr(f->unit, go->ouraddr, ho->hisaddr, mask)) {
1762             if (debug)
1763                 warn("Interface configuration failed");
1764             ipcp_close(f->unit, "Interface configuration failed");
1765             return;
1766         }
1767 #endif
1768
1769         /* bring the interface up for IP */
1770         if (!sifup(f->unit)) {
1771             if (debug)
1772                 warn("Interface failed to come up");
1773             ipcp_close(f->unit, "Interface configuration failed");
1774             return;
1775         }
1776
1777 #if (defined(SVR4) && (defined(SNI) || defined(__USLC__)))
1778         if (!sifaddr(f->unit, go->ouraddr, ho->hisaddr, mask)) {
1779             if (debug)
1780                 warn("Interface configuration failed");
1781             ipcp_close(f->unit, "Interface configuration failed");
1782             return;
1783         }
1784 #endif
1785         sifnpmode(f->unit, PPP_IP, NPMODE_PASS);
1786
1787         /* assign a default route through the interface if required */
1788         if (ipcp_wantoptions[f->unit].default_route) 
1789             if (sifdefaultroute(f->unit, go->ouraddr, ho->hisaddr))
1790                 default_route_set[f->unit] = 1;
1791
1792         /* Make a proxy ARP entry if requested. */
1793         if (ipcp_wantoptions[f->unit].proxy_arp)
1794             if (sifproxyarp(f->unit, ho->hisaddr))
1795                 proxy_arp_set[f->unit] = 1;
1796
1797         ipcp_wantoptions[0].ouraddr = go->ouraddr;
1798
1799         notice("local  IP address %I", go->ouraddr);
1800         notice("remote IP address %I", ho->hisaddr);
1801         if (go->dnsaddr[0])
1802             notice("primary   DNS address %I", go->dnsaddr[0]);
1803         if (go->dnsaddr[1])
1804             notice("secondary DNS address %I", go->dnsaddr[1]);
1805     }
1806
1807     reset_link_stats(f->unit);
1808
1809     np_up(f->unit, PPP_IP);
1810     ipcp_is_up = 1;
1811
1812     notify(ip_up_notifier, 0);
1813     if (ip_up_hook)
1814         ip_up_hook();
1815
1816     /*
1817      * Execute the ip-up script, like this:
1818      *  /etc/ppp/ip-up interface tty speed local-IP remote-IP
1819      */
1820     if (ipcp_script_state == s_down && ipcp_script_pid == 0) {
1821         ipcp_script_state = s_up;
1822         ipcp_script(_PATH_IPUP);
1823     }
1824 }
1825
1826
1827 /*
1828  * ipcp_down - IPCP has gone DOWN.
1829  *
1830  * Take the IP network interface down, clear its addresses
1831  * and delete routes through it.
1832  */
1833 static void
1834 ipcp_down(f)
1835     fsm *f;
1836 {
1837     IPCPDEBUG(("ipcp: down"));
1838     /* XXX a bit IPv4-centric here, we only need to get the stats
1839      * before the interface is marked down. */
1840     /* XXX more correct: we must get the stats before running the notifiers,
1841      * at least for the radius plugin */
1842     update_link_stats(f->unit);
1843     notify(ip_down_notifier, 0);
1844     if (ip_down_hook)
1845         ip_down_hook();
1846     if (ipcp_is_up) {
1847         ipcp_is_up = 0;
1848         np_down(f->unit, PPP_IP);
1849     }
1850     sifvjcomp(f->unit, 0, 0, 0);
1851
1852     print_link_stats(); /* _after_ running the notifiers and ip_down_hook(),
1853                          * because print_link_stats() sets link_stats_valid
1854                          * to 0 (zero) */
1855
1856     /*
1857      * If we are doing dial-on-demand, set the interface
1858      * to queue up outgoing packets (for now).
1859      */
1860     if (demand) {
1861         sifnpmode(f->unit, PPP_IP, NPMODE_QUEUE);
1862     } else {
1863         sifnpmode(f->unit, PPP_IP, NPMODE_DROP);
1864         sifdown(f->unit);
1865         ipcp_clear_addrs(f->unit, ipcp_gotoptions[f->unit].ouraddr,
1866                          ipcp_hisoptions[f->unit].hisaddr);
1867     }
1868
1869     /* Execute the ip-down script */
1870     if (ipcp_script_state == s_up && ipcp_script_pid == 0) {
1871         ipcp_script_state = s_down;
1872         ipcp_script(_PATH_IPDOWN);
1873     }
1874 }
1875
1876
1877 /*
1878  * ipcp_clear_addrs() - clear the interface addresses, routes,
1879  * proxy arp entries, etc.
1880  */
1881 static void
1882 ipcp_clear_addrs(unit, ouraddr, hisaddr)
1883     int unit;
1884     u_int32_t ouraddr;  /* local address */
1885     u_int32_t hisaddr;  /* remote address */
1886 {
1887     if (proxy_arp_set[unit]) {
1888         cifproxyarp(unit, hisaddr);
1889         proxy_arp_set[unit] = 0;
1890     }
1891     if (default_route_set[unit]) {
1892         cifdefaultroute(unit, ouraddr, hisaddr);
1893         default_route_set[unit] = 0;
1894     }
1895     cifaddr(unit, ouraddr, hisaddr);
1896 }
1897
1898
1899 /*
1900  * ipcp_finished - possibly shut down the lower layers.
1901  */
1902 static void
1903 ipcp_finished(f)
1904     fsm *f;
1905 {
1906         if (ipcp_is_open) {
1907                 ipcp_is_open = 0;
1908                 np_finished(f->unit, PPP_IP);
1909         }
1910 }
1911
1912
1913 /*
1914  * ipcp_script_done - called when the ip-up or ip-down script
1915  * has finished.
1916  */
1917 static void
1918 ipcp_script_done(arg)
1919     void *arg;
1920 {
1921     ipcp_script_pid = 0;
1922     switch (ipcp_script_state) {
1923     case s_up:
1924         if (ipcp_fsm[0].state != OPENED) {
1925             ipcp_script_state = s_down;
1926             ipcp_script(_PATH_IPDOWN);
1927         }
1928         break;
1929     case s_down:
1930         if (ipcp_fsm[0].state == OPENED) {
1931             ipcp_script_state = s_up;
1932             ipcp_script(_PATH_IPUP);
1933         }
1934         break;
1935     }
1936 }
1937
1938
1939 /*
1940  * ipcp_script - Execute a script with arguments
1941  * interface-name tty-name speed local-IP remote-IP.
1942  */
1943 static void
1944 ipcp_script(script)
1945     char *script;
1946 {
1947     char strspeed[32], strlocal[32], strremote[32];
1948     char *argv[8];
1949
1950     slprintf(strspeed, sizeof(strspeed), "%d", baud_rate);
1951     slprintf(strlocal, sizeof(strlocal), "%I", ipcp_gotoptions[0].ouraddr);
1952     slprintf(strremote, sizeof(strremote), "%I", ipcp_hisoptions[0].hisaddr);
1953
1954     argv[0] = script;
1955     argv[1] = ifname;
1956     argv[2] = devnam;
1957     argv[3] = strspeed;
1958     argv[4] = strlocal;
1959     argv[5] = strremote;
1960     argv[6] = ipparam;
1961     argv[7] = NULL;
1962     ipcp_script_pid = run_program(script, argv, 0, ipcp_script_done, NULL);
1963 }
1964
1965 /*
1966  * create_resolv - create the replacement resolv.conf file
1967  */
1968 static void
1969 create_resolv(peerdns1, peerdns2)
1970     u_int32_t peerdns1, peerdns2;
1971 {
1972     FILE *f;
1973
1974     f = fopen(_PATH_RESOLV, "w");
1975     if (f == NULL) {
1976         error("Failed to create %s: %m", _PATH_RESOLV);
1977         return;
1978     }
1979
1980     if (peerdns1)
1981         fprintf(f, "nameserver %s\n", ip_ntoa(peerdns1));
1982
1983     if (peerdns2)
1984         fprintf(f, "nameserver %s\n", ip_ntoa(peerdns2));
1985
1986     if (ferror(f))
1987         error("Write failed to %s: %m", _PATH_RESOLV);
1988
1989     fclose(f);
1990 }
1991
1992 /*
1993  * ipcp_printpkt - print the contents of an IPCP packet.
1994  */
1995 static char *ipcp_codenames[] = {
1996     "ConfReq", "ConfAck", "ConfNak", "ConfRej",
1997     "TermReq", "TermAck", "CodeRej"
1998 };
1999
2000 static int
2001 ipcp_printpkt(p, plen, printer, arg)
2002     u_char *p;
2003     int plen;
2004     void (*printer) __P((void *, char *, ...));
2005     void *arg;
2006 {
2007     int code, id, len, olen;
2008     u_char *pstart, *optend;
2009     u_short cishort;
2010     u_int32_t cilong;
2011
2012     if (plen < HEADERLEN)
2013         return 0;
2014     pstart = p;
2015     GETCHAR(code, p);
2016     GETCHAR(id, p);
2017     GETSHORT(len, p);
2018     if (len < HEADERLEN || len > plen)
2019         return 0;
2020
2021     if (code >= 1 && code <= sizeof(ipcp_codenames) / sizeof(char *))
2022         printer(arg, " %s", ipcp_codenames[code-1]);
2023     else
2024         printer(arg, " code=0x%x", code);
2025     printer(arg, " id=0x%x", id);
2026     len -= HEADERLEN;
2027     switch (code) {
2028     case CONFREQ:
2029     case CONFACK:
2030     case CONFNAK:
2031     case CONFREJ:
2032         /* print option list */
2033         while (len >= 2) {
2034             GETCHAR(code, p);
2035             GETCHAR(olen, p);
2036             p -= 2;
2037             if (olen < 2 || olen > len) {
2038                 break;
2039             }
2040             printer(arg, " <");
2041             len -= olen;
2042             optend = p + olen;
2043             switch (code) {
2044             case CI_ADDRS:
2045                 if (olen == CILEN_ADDRS) {
2046                     p += 2;
2047                     GETLONG(cilong, p);
2048                     printer(arg, "addrs %I", htonl(cilong));
2049                     GETLONG(cilong, p);
2050                     printer(arg, " %I", htonl(cilong));
2051                 }
2052                 break;
2053             case CI_COMPRESSTYPE:
2054                 if (olen >= CILEN_COMPRESS) {
2055                     p += 2;
2056                     GETSHORT(cishort, p);
2057                     printer(arg, "compress ");
2058                     switch (cishort) {
2059                     case IPCP_VJ_COMP:
2060                         printer(arg, "VJ");
2061                         break;
2062                     case IPCP_VJ_COMP_OLD:
2063                         printer(arg, "old-VJ");
2064                         break;
2065                     default:
2066                         printer(arg, "0x%x", cishort);
2067                     }
2068                 }
2069                 break;
2070             case CI_ADDR:
2071                 if (olen == CILEN_ADDR) {
2072                     p += 2;
2073                     GETLONG(cilong, p);
2074                     printer(arg, "addr %I", htonl(cilong));
2075                 }
2076                 break;
2077             case CI_MS_DNS1:
2078             case CI_MS_DNS2:
2079                 p += 2;
2080                 GETLONG(cilong, p);
2081                 printer(arg, "ms-dns%d %I", code - CI_MS_DNS1 + 1,
2082                         htonl(cilong));
2083                 break;
2084             case CI_MS_WINS1:
2085             case CI_MS_WINS2:
2086                 p += 2;
2087                 GETLONG(cilong, p);
2088                 printer(arg, "ms-wins %I", htonl(cilong));
2089                 break;
2090             }
2091             while (p < optend) {
2092                 GETCHAR(code, p);
2093                 printer(arg, " %.2x", code);
2094             }
2095             printer(arg, ">");
2096         }
2097         break;
2098
2099     case TERMACK:
2100     case TERMREQ:
2101         if (len > 0 && *p >= ' ' && *p < 0x7f) {
2102             printer(arg, " ");
2103             print_string((char *)p, len, printer, arg);
2104             p += len;
2105             len = 0;
2106         }
2107         break;
2108     }
2109
2110     /* print the rest of the bytes in the packet */
2111     for (; len > 0; --len) {
2112         GETCHAR(code, p);
2113         printer(arg, " %.2x", code);
2114     }
2115
2116     return p - pstart;
2117 }
2118
2119 /*
2120  * ip_active_pkt - see if this IP packet is worth bringing the link up for.
2121  * We don't bring the link up for IP fragments or for TCP FIN packets
2122  * with no data.
2123  */
2124 #define IP_HDRLEN       20      /* bytes */
2125 #define IP_OFFMASK      0x1fff
2126 #ifndef IPPROTO_TCP
2127 #define IPPROTO_TCP     6
2128 #endif
2129 #define TCP_HDRLEN      20
2130 #define TH_FIN          0x01
2131
2132 /*
2133  * We use these macros because the IP header may be at an odd address,
2134  * and some compilers might use word loads to get th_off or ip_hl.
2135  */
2136
2137 #define net_short(x)    (((x)[0] << 8) + (x)[1])
2138 #define get_iphl(x)     (((unsigned char *)(x))[0] & 0xF)
2139 #define get_ipoff(x)    net_short((unsigned char *)(x) + 6)
2140 #define get_ipproto(x)  (((unsigned char *)(x))[9])
2141 #define get_tcpoff(x)   (((unsigned char *)(x))[12] >> 4)
2142 #define get_tcpflags(x) (((unsigned char *)(x))[13])
2143
2144 static int
2145 ip_active_pkt(pkt, len)
2146     u_char *pkt;
2147     int len;
2148 {
2149     u_char *tcp;
2150     int hlen;
2151
2152     len -= PPP_HDRLEN;
2153     pkt += PPP_HDRLEN;
2154     if (len < IP_HDRLEN)
2155         return 0;
2156     if ((get_ipoff(pkt) & IP_OFFMASK) != 0)
2157         return 0;
2158     if (get_ipproto(pkt) != IPPROTO_TCP)
2159         return 1;
2160     hlen = get_iphl(pkt) * 4;
2161     if (len < hlen + TCP_HDRLEN)
2162         return 0;
2163     tcp = pkt + hlen;
2164     if ((get_tcpflags(tcp) & TH_FIN) != 0 && len == hlen + get_tcpoff(tcp) * 4)
2165         return 0;
2166     return 1;
2167 }