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