]> git.ozlabs.org Git - ppp.git/blob - pppd/ipcp.c
stuff moved here from main.c; use uint32 for IP addresses
[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.10 1994/09/01 00:22:38 paulus Exp $";
22 #endif
23
24 /*
25  * TODO:
26  */
27
28 #include <stdio.h>
29 #include <string.h>
30 #include <syslog.h>
31 #include <sys/types.h>
32 #include <sys/socket.h>
33
34 #include "pppd.h"
35 #include "ppp.h"
36 #include "fsm.h"
37 #include "ipcp.h"
38 #include "pathnames.h"
39
40 /* global vars */
41 ipcp_options ipcp_wantoptions[NPPP];    /* Options that we want to request */
42 ipcp_options ipcp_gotoptions[NPPP];     /* Options that peer ack'd */
43 ipcp_options ipcp_allowoptions[NPPP];   /* Options we allow peer to request */
44 ipcp_options ipcp_hisoptions[NPPP];     /* Options that we ack'd */
45
46 /* local vars */
47 static int cis_received[NPPP];          /* # Conf-Reqs received */
48
49 /*
50  * Callbacks for fsm code.  (CI = Configuration Information)
51  */
52 static void ipcp_resetci __ARGS((fsm *));       /* Reset our CI */
53 static int  ipcp_cilen __ARGS((fsm *));         /* Return length of our CI */
54 static void ipcp_addci __ARGS((fsm *, u_char *, int *)); /* Add our CI */
55 static int  ipcp_ackci __ARGS((fsm *, u_char *, int));  /* Peer ack'd our CI */
56 static int  ipcp_nakci __ARGS((fsm *, u_char *, int));  /* Peer nak'd our CI */
57 static int  ipcp_rejci __ARGS((fsm *, u_char *, int));  /* Peer rej'd our CI */
58 static int  ipcp_reqci __ARGS((fsm *, u_char *, int *, int)); /* Rcv CI */
59 static void ipcp_up __ARGS((fsm *));            /* We're UP */
60 static void ipcp_down __ARGS((fsm *));          /* We're DOWN */
61 static void ipcp_script __ARGS((fsm *, char *)); /* Run an up/down script */
62
63 fsm ipcp_fsm[NPPP];             /* IPCP fsm structure */
64
65 static fsm_callbacks ipcp_callbacks = { /* IPCP callback routines */
66     ipcp_resetci,               /* Reset our Configuration Information */
67     ipcp_cilen,                 /* Length of our Configuration Information */
68     ipcp_addci,                 /* Add our Configuration Information */
69     ipcp_ackci,                 /* ACK our Configuration Information */
70     ipcp_nakci,                 /* NAK our Configuration Information */
71     ipcp_rejci,                 /* Reject our Configuration Information */
72     ipcp_reqci,                 /* Request peer's Configuration Information */
73     ipcp_up,                    /* Called when fsm reaches OPENED state */
74     ipcp_down,                  /* Called when fsm leaves OPENED state */
75     NULL,                       /* Called when we want the lower layer up */
76     NULL,                       /* Called when we want the lower layer down */
77     NULL,                       /* Called when Protocol-Reject received */
78     NULL,                       /* Retransmission is necessary */
79     NULL,                       /* Called to handle protocol-specific codes */
80     "IPCP"                      /* String name of protocol */
81 };
82
83 /*
84  * Lengths of configuration options.
85  */
86 #define CILEN_VOID      2
87 #define CILEN_COMPRESS  4       /* min length for compression protocol opt. */
88 #define CILEN_VJ        6       /* length for RFC1332 Van-Jacobson opt. */
89 #define CILEN_ADDR      6       /* new-style single address option */
90 #define CILEN_ADDRS     10      /* old-style dual address option */
91
92
93 #define CODENAME(x)     ((x) == CONFACK ? "ACK" : \
94                          (x) == CONFNAK ? "NAK" : "REJ")
95
96
97 /*
98  * Make a string representation of a network IP address.
99  */
100 char *
101 ip_ntoa(ipaddr)
102 uint32 ipaddr;
103 {
104     static char b[64];
105
106     ipaddr = ntohl(ipaddr);
107
108     sprintf(b, "%d.%d.%d.%d",
109             (u_char)(ipaddr >> 24),
110             (u_char)(ipaddr >> 16),
111             (u_char)(ipaddr >> 8),
112             (u_char)(ipaddr));
113     return b;
114 }
115
116
117 /*
118  * ipcp_init - Initialize IPCP.
119  */
120 void
121 ipcp_init(unit)
122     int unit;
123 {
124     fsm *f = &ipcp_fsm[unit];
125     ipcp_options *wo = &ipcp_wantoptions[unit];
126     ipcp_options *ao = &ipcp_allowoptions[unit];
127
128     f->unit = unit;
129     f->protocol = IPCP;
130     f->callbacks = &ipcp_callbacks;
131     fsm_init(&ipcp_fsm[unit]);
132
133     wo->neg_addr = 1;
134     wo->old_addrs = 0;
135     wo->ouraddr = 0;
136     wo->hisaddr = 0;
137
138     wo->neg_vj = 1;
139     wo->old_vj = 0;
140     wo->vj_protocol = IPCP_VJ_COMP;
141     wo->maxslotindex = MAX_STATES - 1; /* really max index */
142     wo->cflag = 1;
143
144     /* max slots and slot-id compression are currently hardwired in */
145     /* ppp_if.c to 16 and 1, this needs to be changed (among other */
146     /* things) gmc */
147
148     ao->neg_addr = 1;
149     ao->neg_vj = 1;
150     ao->maxslotindex = MAX_STATES - 1;
151     ao->cflag = 1;
152 }
153
154
155 /*
156  * ipcp_open - IPCP is allowed to come up.
157  */
158 void
159 ipcp_open(unit)
160     int unit;
161 {
162     fsm_open(&ipcp_fsm[unit]);
163 }
164
165
166 /*
167  * ipcp_close - Take IPCP down.
168  */
169 void
170 ipcp_close(unit)
171     int unit;
172 {
173     fsm_close(&ipcp_fsm[unit]);
174 }
175
176
177 /*
178  * ipcp_lowerup - The lower layer is up.
179  */
180 void
181 ipcp_lowerup(unit)
182     int unit;
183 {
184     fsm_lowerup(&ipcp_fsm[unit]);
185 }
186
187
188 /*
189  * ipcp_lowerdown - The lower layer is down.
190  */
191 void
192 ipcp_lowerdown(unit)
193     int unit;
194 {
195     fsm_lowerdown(&ipcp_fsm[unit]);
196 }
197
198
199 /*
200  * ipcp_input - Input IPCP packet.
201  */
202 void
203 ipcp_input(unit, p, len)
204     int unit;
205     u_char *p;
206     int len;
207 {
208     fsm_input(&ipcp_fsm[unit], p, len);
209 }
210
211
212 /*
213  * ipcp_protrej - A Protocol-Reject was received for IPCP.
214  *
215  * Pretend the lower layer went down, so we shut up.
216  */
217 void
218 ipcp_protrej(unit)
219     int unit;
220 {
221     fsm_lowerdown(&ipcp_fsm[unit]);
222 }
223
224
225 /*
226  * ipcp_resetci - Reset our CI.
227  */
228 static void
229 ipcp_resetci(f)
230     fsm *f;
231 {
232     ipcp_options *wo = &ipcp_wantoptions[f->unit];
233
234     wo->req_addr = wo->neg_addr && ipcp_allowoptions[f->unit].neg_addr;
235     if (wo->ouraddr == 0)
236         wo->accept_local = 1;
237     if (wo->hisaddr == 0)
238         wo->accept_remote = 1;
239     ipcp_gotoptions[f->unit] = *wo;
240     cis_received[f->unit] = 0;
241 }
242
243
244 /*
245  * ipcp_cilen - Return length of our CI.
246  */
247 static int
248 ipcp_cilen(f)
249     fsm *f;
250 {
251     ipcp_options *go = &ipcp_gotoptions[f->unit];
252
253 #define LENCIVJ(neg, old)       (neg ? (old? CILEN_COMPRESS : CILEN_VJ) : 0)
254 #define LENCIADDR(neg, old)     (neg ? (old? CILEN_ADDRS : CILEN_ADDR) : 0)
255
256     return (LENCIADDR(go->neg_addr, go->old_addrs) +
257             LENCIVJ(go->neg_vj, go->old_vj));
258 }
259
260
261 /*
262  * ipcp_addci - Add our desired CIs to a packet.
263  */
264 static void
265 ipcp_addci(f, ucp, lenp)
266     fsm *f;
267     u_char *ucp;
268     int *lenp;
269 {
270     ipcp_options *wo = &ipcp_wantoptions[f->unit];
271     ipcp_options *go = &ipcp_gotoptions[f->unit];
272     ipcp_options *ho = &ipcp_hisoptions[f->unit];
273     int len = *lenp;
274
275 #define ADDCIVJ(opt, neg, val, old, maxslotindex, cflag) \
276     if (neg) { \
277         int vjlen = old? CILEN_COMPRESS : CILEN_VJ; \
278         if (len >= vjlen) { \
279             PUTCHAR(opt, ucp); \
280             PUTCHAR(vjlen, ucp); \
281             PUTSHORT(val, ucp); \
282             if (!old) { \
283                 PUTCHAR(maxslotindex, ucp); \
284                 PUTCHAR(cflag, ucp); \
285             } \
286             len -= vjlen; \
287         } else \
288             neg = 0; \
289     }
290
291 #define ADDCIADDR(opt, neg, old, val1, val2) \
292     if (neg) { \
293         int addrlen = (old? CILEN_ADDRS: CILEN_ADDR); \
294         if (len >= addrlen) { \
295             uint32 l; \
296             PUTCHAR(opt, ucp); \
297             PUTCHAR(addrlen, ucp); \
298             l = ntohl(val1); \
299             PUTLONG(l, ucp); \
300             if (old) { \
301                 l = ntohl(val2); \
302                 PUTLONG(l, ucp); \
303             } \
304             len -= addrlen; \
305         } else \
306             neg = 0; \
307     }
308
309     /*
310      * First see if we want to change our options to the old
311      * forms because we have received old forms from the peer.
312      */
313     if (wo->neg_addr && !go->neg_addr && !go->old_addrs) {
314         /* use the old style of address negotiation */
315         go->neg_addr = 1;
316         go->old_addrs = 1;
317     }
318     if (wo->neg_vj && !go->neg_vj && !go->old_vj) {
319         /* try an older style of VJ negotiation */
320         if (cis_received[f->unit] == 0) {
321             /* keep trying the new style until we see some CI from the peer */
322             go->neg_vj = 1;
323         } else {
324             /* use the old style only if the peer did */
325             if (ho->neg_vj && ho->old_vj) {
326                 go->neg_vj = 1;
327                 go->old_vj = 1;
328                 go->vj_protocol = ho->vj_protocol;
329             }
330         }
331     }
332
333     ADDCIADDR((go->old_addrs? CI_ADDRS: CI_ADDR), go->neg_addr,
334               go->old_addrs, go->ouraddr, go->hisaddr);
335
336     ADDCIVJ(CI_COMPRESSTYPE, go->neg_vj, go->vj_protocol, go->old_vj,
337             go->maxslotindex, go->cflag);
338
339     *lenp -= len;
340 }
341
342
343 /*
344  * ipcp_ackci - Ack our CIs.
345  *
346  * Returns:
347  *      0 - Ack was bad.
348  *      1 - Ack was good.
349  */
350 static int
351 ipcp_ackci(f, p, len)
352     fsm *f;
353     u_char *p;
354     int len;
355 {
356     ipcp_options *go = &ipcp_gotoptions[f->unit];
357     u_short cilen, citype, cishort;
358     uint32 cilong;
359     u_char cimaxslotindex, cicflag;
360
361     /*
362      * CIs must be in exactly the same order that we sent...
363      * Check packet length and CI length at each step.
364      * If we find any deviations, then this packet is bad.
365      */
366
367 #define ACKCIVJ(opt, neg, val, old, maxslotindex, cflag) \
368     if (neg) { \
369         int vjlen = old? CILEN_COMPRESS : CILEN_VJ; \
370         if ((len -= vjlen) < 0) \
371             goto bad; \
372         GETCHAR(citype, p); \
373         GETCHAR(cilen, p); \
374         if (cilen != vjlen || \
375             citype != opt)  \
376             goto bad; \
377         GETSHORT(cishort, p); \
378         if (cishort != val) \
379             goto bad; \
380         if (!old) { \
381             GETCHAR(cimaxslotindex, p); \
382             if (cimaxslotindex != maxslotindex) \
383                 goto bad; \
384             GETCHAR(cicflag, p); \
385             if (cicflag != cflag) \
386                 goto bad; \
387         } \
388     }
389
390 #define ACKCIADDR(opt, neg, old, val1, val2) \
391     if (neg) { \
392         int addrlen = (old? CILEN_ADDRS: CILEN_ADDR); \
393         uint32 l; \
394         if ((len -= addrlen) < 0) \
395             goto bad; \
396         GETCHAR(citype, p); \
397         GETCHAR(cilen, p); \
398         if (cilen != addrlen || \
399             citype != opt) \
400             goto bad; \
401         GETLONG(l, p); \
402         cilong = htonl(l); \
403         if (val1 != cilong) \
404             goto bad; \
405         if (old) { \
406             GETLONG(l, p); \
407             cilong = htonl(l); \
408             if (val2 != cilong) \
409                 goto bad; \
410         } \
411     }
412
413     ACKCIADDR((go->old_addrs? CI_ADDRS: CI_ADDR), go->neg_addr,
414               go->old_addrs, go->ouraddr, go->hisaddr);
415
416     ACKCIVJ(CI_COMPRESSTYPE, go->neg_vj, go->vj_protocol, go->old_vj,
417             go->maxslotindex, go->cflag);
418
419     /*
420      * If there are any remaining CIs, then this packet is bad.
421      */
422     if (len != 0)
423         goto bad;
424     return (1);
425
426 bad:
427     IPCPDEBUG((LOG_INFO, "ipcp_ackci: received bad Ack!"));
428     return (0);
429 }
430
431 /*
432  * ipcp_nakci - Peer has sent a NAK for some of our CIs.
433  * This should not modify any state if the Nak is bad
434  * or if IPCP is in the OPENED state.
435  *
436  * Returns:
437  *      0 - Nak was bad.
438  *      1 - Nak was good.
439  */
440 static int
441 ipcp_nakci(f, p, len)
442     fsm *f;
443     u_char *p;
444     int len;
445 {
446     ipcp_options *go = &ipcp_gotoptions[f->unit];
447     u_char cimaxslotindex, cicflag;
448     u_char citype, cilen, *next;
449     u_short cishort;
450     uint32 ciaddr1, ciaddr2, l;
451     ipcp_options no;            /* options we've seen Naks for */
452     ipcp_options try;           /* options to request next time */
453
454     BZERO(&no, sizeof(no));
455     try = *go;
456
457     /*
458      * Any Nak'd CIs must be in exactly the same order that we sent.
459      * Check packet length and CI length at each step.
460      * If we find any deviations, then this packet is bad.
461      */
462 #define NAKCIADDR(opt, neg, old, code) \
463     if (go->neg && \
464         len >= (cilen = (old? CILEN_ADDRS: CILEN_ADDR)) && \
465         p[1] == cilen && \
466         p[0] == opt) { \
467         len -= cilen; \
468         INCPTR(2, p); \
469         GETLONG(l, p); \
470         ciaddr1 = htonl(l); \
471         if (old) { \
472             GETLONG(l, p); \
473             ciaddr2 = htonl(l); \
474             no.old_addrs = 1; \
475         } else \
476             ciaddr2 = 0; \
477         no.neg = 1; \
478         code \
479     }
480
481 #define NAKCIVJ(opt, neg, code) \
482     if (go->neg && \
483         ((cilen = p[1]) == CILEN_COMPRESS || cilen == CILEN_VJ) && \
484         len >= cilen && \
485         p[0] == opt) { \
486         len -= cilen; \
487         INCPTR(2, p); \
488         GETSHORT(cishort, p); \
489         no.neg = 1; \
490         code \
491     }
492
493     /*
494      * Accept the peer's idea of {our,his} address, if different
495      * from our idea, only if the accept_{local,remote} flag is set.
496      */
497     NAKCIADDR(CI_ADDR, neg_addr, go->old_addrs,
498               if (go->accept_local && ciaddr1) { /* Do we know our address? */
499                   try.ouraddr = ciaddr1;
500                   IPCPDEBUG((LOG_INFO, "local IP address %s",
501                              ip_ntoa(ciaddr1)));
502               }
503               if (go->accept_remote && ciaddr2) { /* Does he know his? */
504                   try.hisaddr = ciaddr2;
505                   IPCPDEBUG((LOG_INFO, "remote IP address %s",
506                              ip_ntoa(ciaddr2)));
507               }
508               );
509
510     /*
511      * Accept the peer's value of maxslotindex provided that it
512      * is less than what we asked for.  Turn off slot-ID compression
513      * if the peer wants.  Send old-style compress-type option if
514      * the peer wants.
515      */
516     NAKCIVJ(CI_COMPRESSTYPE, neg_vj,
517             if (cilen == CILEN_VJ) {
518                 GETCHAR(cimaxslotindex, p);
519                 GETCHAR(cicflag, p);
520                 if (cishort == IPCP_VJ_COMP) {
521                     try.old_vj = 0;
522                     if (cimaxslotindex < go->maxslotindex)
523                         try.maxslotindex = cimaxslotindex;
524                     if (!cicflag)
525                         try.cflag = 0;
526                 } else {
527                     try.neg_vj = 0;
528                 }
529             } else {
530                 if (cishort == IPCP_VJ_COMP || cishort == IPCP_VJ_COMP_OLD) {
531                     try.old_vj = 1;
532                     try.vj_protocol = cishort;
533                 } else {
534                     try.neg_vj = 0;
535                 }
536             }
537             );
538
539     /*
540      * There may be remaining CIs, if the peer is requesting negotiation
541      * on an option that we didn't include in our request packet.
542      * If they want to negotiate about IP addresses, we comply.
543      * If they want us to ask for compression, we refuse.
544      */
545     while (len > CILEN_VOID) {
546         GETCHAR(citype, p);
547         GETCHAR(cilen, p);
548         if( (len -= cilen) < 0 )
549             goto bad;
550         next = p + cilen - 2;
551
552         switch (citype) {
553         case CI_COMPRESSTYPE:
554             if (go->neg_vj || no.neg_vj ||
555                 (cilen != CILEN_VJ && cilen != CILEN_COMPRESS))
556                 goto bad;
557             no.neg_vj = 1;
558             break;
559         case CI_ADDRS:
560             if (go->neg_addr && go->old_addrs || no.old_addrs
561                 || cilen != CILEN_ADDRS)
562                 goto bad;
563             try.neg_addr = 1;
564             try.old_addrs = 1;
565             GETLONG(l, p);
566             ciaddr1 = htonl(l);
567             if (ciaddr1 && go->accept_local)
568                 try.ouraddr = ciaddr1;
569             GETLONG(l, p);
570             ciaddr2 = htonl(l);
571             if (ciaddr2 && go->accept_remote)
572                 try.hisaddr = ciaddr2;
573             no.old_addrs = 1;
574             break;
575         case CI_ADDR:
576             if (go->neg_addr || no.neg_addr || cilen != CILEN_ADDR)
577                 goto bad;
578             try.neg_addr = 1;
579             try.old_addrs = 0;
580             GETLONG(l, p);
581             ciaddr1 = htonl(l);
582             if (ciaddr1 && go->accept_local)
583                 try.ouraddr = ciaddr1;
584             no.neg_addr = 1;
585             break;
586         default:
587             goto bad;
588         }
589         p = next;
590     }
591
592     /* If there is still anything left, this packet is bad. */
593     if (len != 0)
594         goto bad;
595
596     /*
597      * OK, the Nak is good.  Now we can update state.
598      */
599     if (f->state != OPENED)
600         *go = try;
601
602     return 1;
603
604 bad:
605     IPCPDEBUG((LOG_INFO, "ipcp_nakci: received bad Nak!"));
606     return 0;
607 }
608
609
610 /*
611  * ipcp_rejci - Reject some of our CIs.
612  */
613 static int
614 ipcp_rejci(f, p, len)
615     fsm *f;
616     u_char *p;
617     int len;
618 {
619     ipcp_options *go = &ipcp_gotoptions[f->unit];
620     u_char cimaxslotindex, ciflag, cilen;
621     u_short cishort;
622     uint32 cilong;
623     ipcp_options try;           /* options to request next time */
624
625     try = *go;
626     /*
627      * Any Rejected CIs must be in exactly the same order that we sent.
628      * Check packet length and CI length at each step.
629      * If we find any deviations, then this packet is bad.
630      */
631 #define REJCIADDR(opt, neg, old, val1, val2) \
632     if (go->neg && \
633         len >= (cilen = old? CILEN_ADDRS: CILEN_ADDR) && \
634         p[1] == cilen && \
635         p[0] == opt) { \
636         uint32 l; \
637         len -= cilen; \
638         INCPTR(2, p); \
639         GETLONG(l, p); \
640         cilong = htonl(l); \
641         /* Check rejected value. */ \
642         if (cilong != val1) \
643             goto bad; \
644         if (old) { \
645             GETLONG(l, p); \
646             cilong = htonl(l); \
647             /* Check rejected value. */ \
648             if (cilong != val2) \
649                 goto bad; \
650         } \
651         try.neg = 0; \
652     }
653
654 #define REJCIVJ(opt, neg, val, old, maxslot, cflag) \
655     if (go->neg && \
656         p[1] == (old? CILEN_COMPRESS : CILEN_VJ) && \
657         len >= p[1] && \
658         p[0] == opt) { \
659         len -= p[1]; \
660         INCPTR(2, p); \
661         GETSHORT(cishort, p); \
662         /* Check rejected value. */  \
663         if (cishort != val) \
664             goto bad; \
665         if (!old) { \
666            GETCHAR(cimaxslotindex, p); \
667            if (cimaxslotindex != maxslot) \
668              goto bad; \
669            GETCHAR(ciflag, p); \
670            if (ciflag != cflag) \
671              goto bad; \
672         } \
673         try.neg = 0; \
674      }
675
676     REJCIADDR((go->old_addrs? CI_ADDRS: CI_ADDR), neg_addr,
677               go->old_addrs, go->ouraddr, go->hisaddr);
678
679     REJCIVJ(CI_COMPRESSTYPE, neg_vj, go->vj_protocol, go->old_vj,
680             go->maxslotindex, go->cflag);
681
682     /*
683      * If there are any remaining CIs, then this packet is bad.
684      */
685     if (len != 0)
686         goto bad;
687     /*
688      * Now we can update state.
689      */
690     if (f->state != OPENED)
691         *go = try;
692     return 1;
693
694 bad:
695     IPCPDEBUG((LOG_INFO, "ipcp_rejci: received bad Reject!"));
696     return 0;
697 }
698
699
700 /*
701  * ipcp_reqci - Check the peer's requested CIs and send appropriate response.
702  *
703  * Returns: CONFACK, CONFNAK or CONFREJ and input packet modified
704  * appropriately.  If reject_if_disagree is non-zero, doesn't return
705  * CONFNAK; returns CONFREJ if it can't return CONFACK.
706  */
707 static int
708 ipcp_reqci(f, inp, len, reject_if_disagree)
709     fsm *f;
710     u_char *inp;                /* Requested CIs */
711     int *len;                   /* Length of requested CIs */
712     int reject_if_disagree;
713 {
714     ipcp_options *wo = &ipcp_wantoptions[f->unit];
715     ipcp_options *ho = &ipcp_hisoptions[f->unit];
716     ipcp_options *ao = &ipcp_allowoptions[f->unit];
717     ipcp_options *go = &ipcp_gotoptions[f->unit];
718     u_char *cip, *next;         /* Pointer to current and next CIs */
719     u_short cilen, citype;      /* Parsed len, type */
720     u_short cishort;            /* Parsed short value */
721     uint32 tl, ciaddr1, ciaddr2;/* Parsed address values */
722     int rc = CONFACK;           /* Final packet return code */
723     int orc;                    /* Individual option return code */
724     u_char *p;                  /* Pointer to next char to parse */
725     u_char *ucp = inp;          /* Pointer to current output char */
726     int l = *len;               /* Length left */
727     u_char maxslotindex, cflag;
728
729     /*
730      * Reset all his options.
731      */
732     BZERO(ho, sizeof(*ho));
733     
734     /*
735      * Process all his options.
736      */
737     next = inp;
738     while (l) {
739         orc = CONFACK;                  /* Assume success */
740         cip = p = next;                 /* Remember begining of CI */
741         if (l < 2 ||                    /* Not enough data for CI header or */
742             p[1] < 2 ||                 /*  CI length too small or */
743             p[1] > l) {                 /*  CI length too big? */
744             IPCPDEBUG((LOG_INFO, "ipcp_reqci: bad CI length!"));
745             orc = CONFREJ;              /* Reject bad CI */
746             cilen = l;                  /* Reject till end of packet */
747             l = 0;                      /* Don't loop again */
748             goto endswitch;
749         }
750         GETCHAR(citype, p);             /* Parse CI type */
751         GETCHAR(cilen, p);              /* Parse CI length */
752         l -= cilen;                     /* Adjust remaining length */
753         next += cilen;                  /* Step to next CI */
754
755         switch (citype) {               /* Check CI type */
756         case CI_ADDRS:
757             IPCPDEBUG((LOG_INFO, "ipcp: received ADDRS "));
758             if (!ao->neg_addr ||
759                 cilen != CILEN_ADDRS) { /* Check CI length */
760                 orc = CONFREJ;          /* Reject CI */
761                 break;
762             }
763
764             /*
765              * If he has no address, or if we both have his address but
766              * disagree about it, then NAK it with our idea.
767              * In particular, if we don't know his address, but he does,
768              * then accept it.
769              */
770             GETLONG(tl, p);             /* Parse source address (his) */
771             ciaddr1 = htonl(tl);
772             IPCPDEBUG((LOG_INFO, "(%s:", ip_ntoa(ciaddr1)));
773             if (ciaddr1 != wo->hisaddr
774                 && (ciaddr1 == 0 || !wo->accept_remote)) {
775                 orc = CONFNAK;
776                 if (!reject_if_disagree) {
777                     DECPTR(sizeof (long), p);
778                     tl = ntohl(wo->hisaddr);
779                     PUTLONG(tl, p);
780                 }
781             }
782
783             /*
784              * If he doesn't know our address, or if we both have our address
785              * but disagree about it, then NAK it with our idea.
786              */
787             GETLONG(tl, p);             /* Parse desination address (ours) */
788             ciaddr2 = htonl(tl);
789             IPCPDEBUG((LOG_INFO, "%s)", ip_ntoa(ciaddr2)));
790             if (ciaddr2 != wo->ouraddr) {
791                 if (ciaddr2 == 0 || !wo->accept_local) {
792                     orc = CONFNAK;
793                     if (!reject_if_disagree) {
794                         DECPTR(sizeof (long), p);
795                         tl = ntohl(wo->ouraddr);
796                         PUTLONG(tl, p);
797                     }
798                 } else {
799                     go->ouraddr = ciaddr2;      /* accept peer's idea */
800                 }
801             }
802
803             ho->neg_addr = 1;
804             ho->old_addrs = 1;
805             ho->hisaddr = ciaddr1;
806             ho->ouraddr = ciaddr2;
807             break;
808
809         case CI_ADDR:
810             IPCPDEBUG((LOG_INFO, "ipcp: received ADDR "));
811
812             if (!ao->neg_addr ||
813                 cilen != CILEN_ADDR) {  /* Check CI length */
814                 orc = CONFREJ;          /* Reject CI */
815                 break;
816             }
817
818             /*
819              * If he has no address, or if we both have his address but
820              * disagree about it, then NAK it with our idea.
821              * In particular, if we don't know his address, but he does,
822              * then accept it.
823              */
824             GETLONG(tl, p);     /* Parse source address (his) */
825             ciaddr1 = htonl(tl);
826             IPCPDEBUG((LOG_INFO, "(%s)", ip_ntoa(ciaddr1)));
827             if (ciaddr1 != wo->hisaddr
828                 && (ciaddr1 == 0 || !wo->accept_remote)) {
829                 orc = CONFNAK;
830                 if (!reject_if_disagree) {
831                     DECPTR(sizeof (long), p);
832                     tl = ntohl(wo->hisaddr);
833                     PUTLONG(tl, p);
834                 }
835             }
836         
837             ho->neg_addr = 1;
838             ho->hisaddr = ciaddr1;
839             break;
840         
841         case CI_COMPRESSTYPE:
842             IPCPDEBUG((LOG_INFO, "ipcp: received COMPRESSTYPE "));
843             if (!ao->neg_vj ||
844                 (cilen != CILEN_VJ && cilen != CILEN_COMPRESS)) {
845                 orc = CONFREJ;
846                 break;
847             }
848             GETSHORT(cishort, p);
849             IPCPDEBUG((LOG_INFO, "(%d)", cishort));
850
851             if (!(cishort == IPCP_VJ_COMP ||
852                   (cishort == IPCP_VJ_COMP_OLD && cilen == CILEN_COMPRESS))) {
853                 orc = CONFREJ;
854                 break;
855             }
856
857             ho->neg_vj = 1;
858             ho->vj_protocol = cishort;
859             if (cilen == CILEN_VJ) {
860                 GETCHAR(maxslotindex, p);
861                 if (maxslotindex > ao->maxslotindex) { 
862                     orc = CONFNAK;
863                     if (!reject_if_disagree){
864                         DECPTR(1, p);
865                         PUTCHAR(ao->maxslotindex, p);
866                     }
867                 }
868                 GETCHAR(cflag, p);
869                 if (cflag && !ao->cflag) {
870                     orc = CONFNAK;
871                     if (!reject_if_disagree){
872                         DECPTR(1, p);
873                         PUTCHAR(wo->cflag, p);
874                     }
875                 }
876                 ho->maxslotindex = maxslotindex;
877                 ho->cflag = wo->cflag;
878             } else {
879                 ho->old_vj = 1;
880                 ho->maxslotindex = MAX_STATES - 1;
881                 ho->cflag = 1;
882             }
883             break;
884
885         default:
886             orc = CONFREJ;
887             break;
888         }
889
890 endswitch:
891         IPCPDEBUG((LOG_INFO, " (%s)\n", CODENAME(orc)));
892
893         if (orc == CONFACK &&           /* Good CI */
894             rc != CONFACK)              /*  but prior CI wasnt? */
895             continue;                   /* Don't send this one */
896
897         if (orc == CONFNAK) {           /* Nak this CI? */
898             if (reject_if_disagree)     /* Getting fed up with sending NAKs? */
899                 orc = CONFREJ;          /* Get tough if so */
900             else {
901                 if (rc == CONFREJ)      /* Rejecting prior CI? */
902                     continue;           /* Don't send this one */
903                 if (rc == CONFACK) {    /* Ack'd all prior CIs? */
904                     rc = CONFNAK;       /* Not anymore... */
905                     ucp = inp;          /* Backup */
906                 }
907             }
908         }
909
910         if (orc == CONFREJ &&           /* Reject this CI */
911             rc != CONFREJ) {            /*  but no prior ones? */
912             rc = CONFREJ;
913             ucp = inp;                  /* Backup */
914         }
915
916         /* Need to move CI? */
917         if (ucp != cip)
918             BCOPY(cip, ucp, cilen);     /* Move it */
919
920         /* Update output pointer */
921         INCPTR(cilen, ucp);
922     }
923
924     /*
925      * If we aren't rejecting this packet, and we want to negotiate
926      * their address, and they didn't send their address, then we
927      * send a NAK with a CI_ADDR option appended.  We assume the
928      * input buffer is long enough that we can append the extra
929      * option safely.
930      */
931     if (rc != CONFREJ && !ho->neg_addr &&
932         wo->req_addr && !reject_if_disagree) {
933         if (rc == CONFACK) {
934             rc = CONFNAK;
935             ucp = inp;                  /* reset pointer */
936             wo->req_addr = 0;           /* don't ask again */
937         }
938         PUTCHAR(CI_ADDR, ucp);
939         PUTCHAR(CILEN_ADDR, ucp);
940         tl = ntohl(wo->hisaddr);
941         PUTLONG(tl, ucp);
942     }
943
944     *len = ucp - inp;                   /* Compute output length */
945     IPCPDEBUG((LOG_INFO, "ipcp: returning Configure-%s", CODENAME(rc)));
946     return (rc);                        /* Return final code */
947 }
948
949
950 /*
951  * ipcp_up - IPCP has come UP.
952  *
953  * Configure the IP network interface appropriately and bring it up.
954  */
955 static void
956 ipcp_up(f)
957     fsm *f;
958 {
959     uint32 mask;
960     ipcp_options *ho = &ipcp_hisoptions[f->unit];
961     ipcp_options *go = &ipcp_gotoptions[f->unit];
962
963     IPCPDEBUG((LOG_INFO, "ipcp: up"));
964     go->default_route = 0;
965     go->proxy_arp = 0;
966
967     /*
968      * We must have a non-zero IP address for both ends of the link.
969      */
970     if (!ho->neg_addr)
971         ho->hisaddr = ipcp_wantoptions[f->unit].hisaddr;
972
973     if (ho->hisaddr == 0) {
974         syslog(LOG_ERR, "Could not determine remote IP address");
975         ipcp_close(f->unit);
976         return;
977     }
978     if (go->ouraddr == 0) {
979         syslog(LOG_ERR, "Could not determine local IP address");
980         ipcp_close(f->unit);
981         return;
982     }
983
984     /*
985      * Check that the peer is allowed to use the IP address it wants.
986      */
987     if (!auth_ip_addr(f->unit, ho->hisaddr)) {
988         syslog(LOG_ERR, "Peer is not authorized to use remote address %s",
989                ip_ntoa(ho->hisaddr));
990         ipcp_close(f->unit);
991         return;
992     }
993
994     syslog(LOG_NOTICE, "local  IP address %s", ip_ntoa(go->ouraddr));
995     syslog(LOG_NOTICE, "remote IP address %s", ip_ntoa(ho->hisaddr));
996
997     /*
998      * Set IP addresses and (if specified) netmask.
999      */
1000     mask = GetMask(go->ouraddr);
1001     if (!sifaddr(f->unit, go->ouraddr, ho->hisaddr, mask)) {
1002         IPCPDEBUG((LOG_WARNING, "sifaddr failed"));
1003         ipcp_close(f->unit);
1004         return;
1005     }
1006
1007     /* set tcp compression */
1008     sifvjcomp(f->unit, ho->neg_vj, ho->cflag, ho->maxslotindex);
1009
1010     /* bring the interface up for IP */
1011     if (!sifup(f->unit)) {
1012         IPCPDEBUG((LOG_WARNING, "sifup failed"));
1013         ipcp_close(f->unit);
1014         return;
1015     }
1016
1017     /* assign a default route through the interface if required */
1018     if (ipcp_wantoptions[f->unit].default_route) 
1019         if (sifdefaultroute(f->unit, ho->hisaddr))
1020             go->default_route = 1;
1021
1022     /* Make a proxy ARP entry if requested. */
1023     if (ipcp_wantoptions[f->unit].proxy_arp)
1024         if (sifproxyarp(f->unit, ho->hisaddr))
1025             go->proxy_arp = 1;
1026
1027     /*
1028      * Execute the ip-up script, like this:
1029      *  /etc/ppp/ip-up interface tty speed local-IP remote-IP
1030      */
1031     ipcp_script(f, _PATH_IPUP);
1032
1033 }
1034
1035
1036 /*
1037  * ipcp_down - IPCP has gone DOWN.
1038  *
1039  * Take the IP network interface down, clear its addresses
1040  * and delete routes through it.
1041  */
1042 static void
1043 ipcp_down(f)
1044     fsm *f;
1045 {
1046     uint32 ouraddr, hisaddr;
1047
1048     IPCPDEBUG((LOG_INFO, "ipcp: down"));
1049
1050     ouraddr = ipcp_gotoptions[f->unit].ouraddr;
1051     hisaddr = ipcp_hisoptions[f->unit].hisaddr;
1052     if (ipcp_gotoptions[f->unit].proxy_arp)
1053         cifproxyarp(f->unit, hisaddr);
1054     if (ipcp_gotoptions[f->unit].default_route) 
1055         cifdefaultroute(f->unit, hisaddr);
1056     sifdown(f->unit);
1057     cifaddr(f->unit, ouraddr, hisaddr);
1058
1059     /* Execute the ip-down script */
1060     ipcp_script(f, _PATH_IPDOWN);
1061 }
1062
1063
1064 /*
1065  * ipcp_script - Execute a script with arguments
1066  * interface-name tty-name speed local-IP remote-IP.
1067  */
1068 static void
1069 ipcp_script(f, script)
1070     fsm *f;
1071     char *script;
1072 {
1073     char strspeed[32], strlocal[32], strremote[32];
1074     char *argv[8];
1075
1076     sprintf(strspeed, "%d", baud_rate);
1077     strcpy(strlocal, ip_ntoa(ipcp_gotoptions[f->unit].ouraddr));
1078     strcpy(strremote, ip_ntoa(ipcp_hisoptions[f->unit].hisaddr));
1079
1080     argv[0] = script;
1081     argv[1] = ifname;
1082     argv[2] = devnam;
1083     argv[3] = strspeed;
1084     argv[4] = strlocal;
1085     argv[5] = strremote;
1086     argv[6] = NULL;
1087     run_program(script, argv, 0);
1088 }
1089
1090 /*
1091  * ipcp_printpkt - print the contents of an IPCP packet.
1092  */
1093 char *ipcp_codenames[] = {
1094     "ConfReq", "ConfAck", "ConfNak", "ConfRej",
1095     "TermReq", "TermAck", "CodeRej"
1096 };
1097
1098 int
1099 ipcp_printpkt(p, plen, printer, arg)
1100     u_char *p;
1101     int plen;
1102     void (*printer)();
1103     void *arg;
1104 {
1105     int code, id, len, olen;
1106     u_char *pstart, *optend;
1107     u_short cishort;
1108     uint32 cilong;
1109
1110     if (plen < HEADERLEN)
1111         return 0;
1112     pstart = p;
1113     GETCHAR(code, p);
1114     GETCHAR(id, p);
1115     GETSHORT(len, p);
1116     if (len < HEADERLEN || len > plen)
1117         return 0;
1118
1119     if (code >= 1 && code <= sizeof(ipcp_codenames) / sizeof(char *))
1120         printer(arg, " %s", ipcp_codenames[code-1]);
1121     else
1122         printer(arg, " code=0x%x", code);
1123     printer(arg, " id=0x%x", id);
1124     len -= HEADERLEN;
1125     switch (code) {
1126     case CONFREQ:
1127     case CONFACK:
1128     case CONFNAK:
1129     case CONFREJ:
1130         /* print option list */
1131         while (len >= 2) {
1132             GETCHAR(code, p);
1133             GETCHAR(olen, p);
1134             p -= 2;
1135             if (olen < 2 || olen > len) {
1136                 break;
1137             }
1138             printer(arg, " <");
1139             len -= olen;
1140             optend = p + olen;
1141             switch (code) {
1142             case CI_ADDRS:
1143                 if (olen == CILEN_ADDRS) {
1144                     p += 2;
1145                     GETLONG(cilong, p);
1146                     printer(arg, "addrs %s", ip_ntoa(htonl(cilong)));
1147                     GETLONG(cilong, p);
1148                     printer(arg, " %s", ip_ntoa(htonl(cilong)));
1149                 }
1150                 break;
1151             case CI_COMPRESSTYPE:
1152                 if (olen >= CILEN_COMPRESS) {
1153                     p += 2;
1154                     GETSHORT(cishort, p);
1155                     printer(arg, "compress ");
1156                     switch (cishort) {
1157                     case IPCP_VJ_COMP:
1158                         printer(arg, "VJ");
1159                         break;
1160                     case IPCP_VJ_COMP_OLD:
1161                         printer(arg, "old-VJ");
1162                         break;
1163                     default:
1164                         printer(arg, "0x%x", cishort);
1165                     }
1166                 }
1167                 break;
1168             case CI_ADDR:
1169                 if (olen == CILEN_ADDR) {
1170                     p += 2;
1171                     GETLONG(cilong, p);
1172                     printer(arg, "addr %s", ip_ntoa(htonl(cilong)));
1173                 }
1174                 break;
1175             }
1176             while (p < optend) {
1177                 GETCHAR(code, p);
1178                 printer(arg, " %.2x", code);
1179             }
1180             printer(arg, ">");
1181         }
1182         break;
1183     }
1184
1185     /* print the rest of the bytes in the packet */
1186     for (; len > 0; --len) {
1187         GETCHAR(code, p);
1188         printer(arg, " %.2x", code);
1189     }
1190
1191     return p - pstart;
1192 }