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