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