]> git.ozlabs.org Git - ppp.git/blob - pppd/ipcp.c
fix stats stuff
[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.19 1995/06/01 01:30: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 #include <netinet/in.h>
34
35 #include "pppd.h"
36 #include "fsm.h"
37 #include "ipcp.h"
38 #include "pathnames.h"
39
40 /* global vars */
41 ipcp_options ipcp_wantoptions[NUM_PPP]; /* Options that we want to request */
42 ipcp_options ipcp_gotoptions[NUM_PPP];  /* Options that peer ack'd */
43 ipcp_options ipcp_allowoptions[NUM_PPP];        /* Options we allow peer to request */
44 ipcp_options ipcp_hisoptions[NUM_PPP];  /* Options that we ack'd */
45
46 /* local vars */
47 static int cis_received[NUM_PPP];               /* # Conf-Reqs received */
48
49 /*
50  * Callbacks for fsm code.  (CI = Configuration Information)
51  */
52 static void ipcp_resetci __P((fsm *));  /* Reset our CI */
53 static int  ipcp_cilen __P((fsm *));            /* Return length of our CI */
54 static void ipcp_addci __P((fsm *, u_char *, int *)); /* Add our CI */
55 static int  ipcp_ackci __P((fsm *, u_char *, int));     /* Peer ack'd our CI */
56 static int  ipcp_nakci __P((fsm *, u_char *, int));     /* Peer nak'd our CI */
57 static int  ipcp_rejci __P((fsm *, u_char *, int));     /* Peer rej'd our CI */
58 static int  ipcp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv CI */
59 static void ipcp_up __P((fsm *));               /* We're UP */
60 static void ipcp_down __P((fsm *));             /* We're DOWN */
61 static void ipcp_script __P((fsm *, char *)); /* Run an up/down script */
62
63 fsm ipcp_fsm[NUM_PPP];          /* 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 u_int32_t 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 = PPP_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             u_int32_t 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     u_int32_t 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         u_int32_t 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     u_int32_t 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((go->old_addrs? CI_ADDRS: 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.old_addrs = 0;
579             GETLONG(l, p);
580             ciaddr1 = htonl(l);
581             if (ciaddr1 && go->accept_local)
582                 try.ouraddr = ciaddr1;
583             if (try.ouraddr != 0)
584                 try.neg_addr = 1;
585             no.neg_addr = 1;
586             break;
587         default:
588             goto bad;
589         }
590         p = next;
591     }
592
593     /* If there is still anything left, this packet is bad. */
594     if (len != 0)
595         goto bad;
596
597     /*
598      * OK, the Nak is good.  Now we can update state.
599      */
600     if (f->state != OPENED)
601         *go = try;
602
603     return 1;
604
605 bad:
606     IPCPDEBUG((LOG_INFO, "ipcp_nakci: received bad Nak!"));
607     return 0;
608 }
609
610
611 /*
612  * ipcp_rejci - Reject some of our CIs.
613  */
614 static int
615 ipcp_rejci(f, p, len)
616     fsm *f;
617     u_char *p;
618     int len;
619 {
620     ipcp_options *go = &ipcp_gotoptions[f->unit];
621     u_char cimaxslotindex, ciflag, cilen;
622     u_short cishort;
623     u_int32_t cilong;
624     ipcp_options try;           /* options to request next time */
625
626     try = *go;
627     /*
628      * Any Rejected CIs must be in exactly the same order that we sent.
629      * Check packet length and CI length at each step.
630      * If we find any deviations, then this packet is bad.
631      */
632 #define REJCIADDR(opt, neg, old, val1, val2) \
633     if (go->neg && \
634         len >= (cilen = old? CILEN_ADDRS: CILEN_ADDR) && \
635         p[1] == cilen && \
636         p[0] == opt) { \
637         u_int32_t l; \
638         len -= cilen; \
639         INCPTR(2, p); \
640         GETLONG(l, p); \
641         cilong = htonl(l); \
642         /* Check rejected value. */ \
643         if (cilong != val1) \
644             goto bad; \
645         if (old) { \
646             GETLONG(l, p); \
647             cilong = htonl(l); \
648             /* Check rejected value. */ \
649             if (cilong != val2) \
650                 goto bad; \
651         } \
652         try.neg = 0; \
653     }
654
655 #define REJCIVJ(opt, neg, val, old, maxslot, cflag) \
656     if (go->neg && \
657         p[1] == (old? CILEN_COMPRESS : CILEN_VJ) && \
658         len >= p[1] && \
659         p[0] == opt) { \
660         len -= p[1]; \
661         INCPTR(2, p); \
662         GETSHORT(cishort, p); \
663         /* Check rejected value. */  \
664         if (cishort != val) \
665             goto bad; \
666         if (!old) { \
667            GETCHAR(cimaxslotindex, p); \
668            if (cimaxslotindex != maxslot) \
669              goto bad; \
670            GETCHAR(ciflag, p); \
671            if (ciflag != cflag) \
672              goto bad; \
673         } \
674         try.neg = 0; \
675      }
676
677     REJCIADDR((go->old_addrs? CI_ADDRS: CI_ADDR), neg_addr,
678               go->old_addrs, go->ouraddr, go->hisaddr);
679
680     REJCIVJ(CI_COMPRESSTYPE, neg_vj, go->vj_protocol, go->old_vj,
681             go->maxslotindex, go->cflag);
682
683     /*
684      * If there are any remaining CIs, then this packet is bad.
685      */
686     if (len != 0)
687         goto bad;
688     /*
689      * Now we can update state.
690      */
691     if (f->state != OPENED)
692         *go = try;
693     return 1;
694
695 bad:
696     IPCPDEBUG((LOG_INFO, "ipcp_rejci: received bad Reject!"));
697     return 0;
698 }
699
700
701 /*
702  * ipcp_reqci - Check the peer's requested CIs and send appropriate response.
703  *
704  * Returns: CONFACK, CONFNAK or CONFREJ and input packet modified
705  * appropriately.  If reject_if_disagree is non-zero, doesn't return
706  * CONFNAK; returns CONFREJ if it can't return CONFACK.
707  */
708 static int
709 ipcp_reqci(f, inp, len, reject_if_disagree)
710     fsm *f;
711     u_char *inp;                /* Requested CIs */
712     int *len;                   /* Length of requested CIs */
713     int reject_if_disagree;
714 {
715     ipcp_options *wo = &ipcp_wantoptions[f->unit];
716     ipcp_options *ho = &ipcp_hisoptions[f->unit];
717     ipcp_options *ao = &ipcp_allowoptions[f->unit];
718     ipcp_options *go = &ipcp_gotoptions[f->unit];
719     u_char *cip, *next;         /* Pointer to current and next CIs */
720     u_short cilen, citype;      /* Parsed len, type */
721     u_short cishort;            /* Parsed short value */
722     u_int32_t tl, ciaddr1, ciaddr2;/* Parsed address values */
723     int rc = CONFACK;           /* Final packet return code */
724     int orc;                    /* Individual option return code */
725     u_char *p;                  /* Pointer to next char to parse */
726     u_char *ucp = inp;          /* Pointer to current output char */
727     int l = *len;               /* Length left */
728     u_char maxslotindex, cflag;
729
730     /*
731      * Reset all his options.
732      */
733     BZERO(ho, sizeof(*ho));
734     
735     /*
736      * Process all his options.
737      */
738     next = inp;
739     while (l) {
740         orc = CONFACK;                  /* Assume success */
741         cip = p = next;                 /* Remember begining of CI */
742         if (l < 2 ||                    /* Not enough data for CI header or */
743             p[1] < 2 ||                 /*  CI length too small or */
744             p[1] > l) {                 /*  CI length too big? */
745             IPCPDEBUG((LOG_INFO, "ipcp_reqci: bad CI length!"));
746             orc = CONFREJ;              /* Reject bad CI */
747             cilen = l;                  /* Reject till end of packet */
748             l = 0;                      /* Don't loop again */
749             goto endswitch;
750         }
751         GETCHAR(citype, p);             /* Parse CI type */
752         GETCHAR(cilen, p);              /* Parse CI length */
753         l -= cilen;                     /* Adjust remaining length */
754         next += cilen;                  /* Step to next CI */
755
756         switch (citype) {               /* Check CI type */
757         case CI_ADDRS:
758             IPCPDEBUG((LOG_INFO, "ipcp: received ADDRS "));
759             if (!ao->neg_addr ||
760                 cilen != CILEN_ADDRS) { /* Check CI length */
761                 orc = CONFREJ;          /* Reject CI */
762                 break;
763             }
764
765             /*
766              * If he has no address, or if we both have his address but
767              * disagree about it, then NAK it with our idea.
768              * In particular, if we don't know his address, but he does,
769              * then accept it.
770              */
771             GETLONG(tl, p);             /* Parse source address (his) */
772             ciaddr1 = htonl(tl);
773             IPCPDEBUG((LOG_INFO, "(%s:", ip_ntoa(ciaddr1)));
774             if (ciaddr1 != wo->hisaddr
775                 && (ciaddr1 == 0 || !wo->accept_remote)) {
776                 orc = CONFNAK;
777                 if (!reject_if_disagree) {
778                     DECPTR(sizeof(u_int32_t), p);
779                     tl = ntohl(wo->hisaddr);
780                     PUTLONG(tl, p);
781                 }
782             } else if (ciaddr1 == 0 && wo->hisaddr == 0) {
783                 /*
784                  * If neither we nor he knows his address, reject the option.
785                  */
786                 orc = CONFREJ;
787                 wo->req_addr = 0;       /* don't NAK with 0.0.0.0 later */
788                 break;
789             }
790
791             /*
792              * If he doesn't know our address, or if we both have our address
793              * but disagree about it, then NAK it with our idea.
794              */
795             GETLONG(tl, p);             /* Parse desination address (ours) */
796             ciaddr2 = htonl(tl);
797             IPCPDEBUG((LOG_INFO, "%s)", ip_ntoa(ciaddr2)));
798             if (ciaddr2 != wo->ouraddr) {
799                 if (ciaddr2 == 0 || !wo->accept_local) {
800                     orc = CONFNAK;
801                     if (!reject_if_disagree) {
802                         DECPTR(sizeof(u_int32_t), p);
803                         tl = ntohl(wo->ouraddr);
804                         PUTLONG(tl, p);
805                     }
806                 } else {
807                     go->ouraddr = ciaddr2;      /* accept peer's idea */
808                 }
809             }
810
811             ho->neg_addr = 1;
812             ho->old_addrs = 1;
813             ho->hisaddr = ciaddr1;
814             ho->ouraddr = ciaddr2;
815             break;
816
817         case CI_ADDR:
818             IPCPDEBUG((LOG_INFO, "ipcp: received ADDR "));
819
820             if (!ao->neg_addr ||
821                 cilen != CILEN_ADDR) {  /* Check CI length */
822                 orc = CONFREJ;          /* Reject CI */
823                 break;
824             }
825
826             /*
827              * If he has no address, or if we both have his address but
828              * disagree about it, then NAK it with our idea.
829              * In particular, if we don't know his address, but he does,
830              * then accept it.
831              */
832             GETLONG(tl, p);     /* Parse source address (his) */
833             ciaddr1 = htonl(tl);
834             IPCPDEBUG((LOG_INFO, "(%s)", ip_ntoa(ciaddr1)));
835             if (ciaddr1 != wo->hisaddr
836                 && (ciaddr1 == 0 || !wo->accept_remote)) {
837                 orc = CONFNAK;
838                 if (!reject_if_disagree) {
839                     DECPTR(sizeof(u_int32_t), p);
840                     tl = ntohl(wo->hisaddr);
841                     PUTLONG(tl, p);
842                 }
843             } else if (ciaddr1 == 0 && wo->hisaddr == 0) {
844                 /*
845                  * Don't ACK an address of 0.0.0.0 - reject it instead.
846                  */
847                 orc = CONFREJ;
848                 wo->req_addr = 0;       /* don't NAK with 0.0.0.0 later */
849                 break;
850             }
851         
852             ho->neg_addr = 1;
853             ho->hisaddr = ciaddr1;
854             break;
855         
856         case CI_COMPRESSTYPE:
857             IPCPDEBUG((LOG_INFO, "ipcp: received COMPRESSTYPE "));
858             if (!ao->neg_vj ||
859                 (cilen != CILEN_VJ && cilen != CILEN_COMPRESS)) {
860                 orc = CONFREJ;
861                 break;
862             }
863             GETSHORT(cishort, p);
864             IPCPDEBUG((LOG_INFO, "(%d)", cishort));
865
866             if (!(cishort == IPCP_VJ_COMP ||
867                   (cishort == IPCP_VJ_COMP_OLD && cilen == CILEN_COMPRESS))) {
868                 orc = CONFREJ;
869                 break;
870             }
871
872             ho->neg_vj = 1;
873             ho->vj_protocol = cishort;
874             if (cilen == CILEN_VJ) {
875                 GETCHAR(maxslotindex, p);
876                 if (maxslotindex > ao->maxslotindex) { 
877                     orc = CONFNAK;
878                     if (!reject_if_disagree){
879                         DECPTR(1, p);
880                         PUTCHAR(ao->maxslotindex, p);
881                     }
882                 }
883                 GETCHAR(cflag, p);
884                 if (cflag && !ao->cflag) {
885                     orc = CONFNAK;
886                     if (!reject_if_disagree){
887                         DECPTR(1, p);
888                         PUTCHAR(wo->cflag, p);
889                     }
890                 }
891                 ho->maxslotindex = maxslotindex;
892                 ho->cflag = cflag;
893             } else {
894                 ho->old_vj = 1;
895                 ho->maxslotindex = MAX_STATES - 1;
896                 ho->cflag = 1;
897             }
898             break;
899
900         default:
901             orc = CONFREJ;
902             break;
903         }
904
905 endswitch:
906         IPCPDEBUG((LOG_INFO, " (%s)\n", CODENAME(orc)));
907
908         if (orc == CONFACK &&           /* Good CI */
909             rc != CONFACK)              /*  but prior CI wasnt? */
910             continue;                   /* Don't send this one */
911
912         if (orc == CONFNAK) {           /* Nak this CI? */
913             if (reject_if_disagree)     /* Getting fed up with sending NAKs? */
914                 orc = CONFREJ;          /* Get tough if so */
915             else {
916                 if (rc == CONFREJ)      /* Rejecting prior CI? */
917                     continue;           /* Don't send this one */
918                 if (rc == CONFACK) {    /* Ack'd all prior CIs? */
919                     rc = CONFNAK;       /* Not anymore... */
920                     ucp = inp;          /* Backup */
921                 }
922             }
923         }
924
925         if (orc == CONFREJ &&           /* Reject this CI */
926             rc != CONFREJ) {            /*  but no prior ones? */
927             rc = CONFREJ;
928             ucp = inp;                  /* Backup */
929         }
930
931         /* Need to move CI? */
932         if (ucp != cip)
933             BCOPY(cip, ucp, cilen);     /* Move it */
934
935         /* Update output pointer */
936         INCPTR(cilen, ucp);
937     }
938
939     /*
940      * If we aren't rejecting this packet, and we want to negotiate
941      * their address, and they didn't send their address, then we
942      * send a NAK with a CI_ADDR option appended.  We assume the
943      * input buffer is long enough that we can append the extra
944      * option safely.
945      */
946     if (rc != CONFREJ && !ho->neg_addr &&
947         wo->req_addr && !reject_if_disagree) {
948         if (rc == CONFACK) {
949             rc = CONFNAK;
950             ucp = inp;                  /* reset pointer */
951             wo->req_addr = 0;           /* don't ask again */
952         }
953         PUTCHAR(CI_ADDR, ucp);
954         PUTCHAR(CILEN_ADDR, ucp);
955         tl = ntohl(wo->hisaddr);
956         PUTLONG(tl, ucp);
957     }
958
959     *len = ucp - inp;                   /* Compute output length */
960     IPCPDEBUG((LOG_INFO, "ipcp: returning Configure-%s", CODENAME(rc)));
961     return (rc);                        /* Return final code */
962 }
963
964
965 /*
966  * ipcp_up - IPCP has come UP.
967  *
968  * Configure the IP network interface appropriately and bring it up.
969  */
970 static void
971 ipcp_up(f)
972     fsm *f;
973 {
974     u_int32_t mask;
975     ipcp_options *ho = &ipcp_hisoptions[f->unit];
976     ipcp_options *go = &ipcp_gotoptions[f->unit];
977
978     IPCPDEBUG((LOG_INFO, "ipcp: up"));
979     go->default_route = 0;
980     go->proxy_arp = 0;
981
982     /*
983      * We must have a non-zero IP address for both ends of the link.
984      */
985     if (!ho->neg_addr)
986         ho->hisaddr = ipcp_wantoptions[f->unit].hisaddr;
987
988     if (ho->hisaddr == 0) {
989         syslog(LOG_ERR, "Could not determine remote IP address");
990         ipcp_close(f->unit);
991         return;
992     }
993     if (go->ouraddr == 0) {
994         syslog(LOG_ERR, "Could not determine local IP address");
995         ipcp_close(f->unit);
996         return;
997     }
998
999     /*
1000      * Check that the peer is allowed to use the IP address it wants.
1001      */
1002     if (!auth_ip_addr(f->unit, ho->hisaddr)) {
1003         syslog(LOG_ERR, "Peer is not authorized to use remote address %s",
1004                ip_ntoa(ho->hisaddr));
1005         ipcp_close(f->unit);
1006         return;
1007     }
1008
1009     syslog(LOG_NOTICE, "local  IP address %s", ip_ntoa(go->ouraddr));
1010     syslog(LOG_NOTICE, "remote IP address %s", ip_ntoa(ho->hisaddr));
1011
1012     /*
1013      * Set IP addresses and (if specified) netmask.
1014      */
1015     mask = GetMask(go->ouraddr);
1016     if (!sifaddr(f->unit, go->ouraddr, ho->hisaddr, mask)) {
1017         IPCPDEBUG((LOG_WARNING, "sifaddr failed"));
1018         ipcp_close(f->unit);
1019         return;
1020     }
1021
1022     /* set tcp compression */
1023     sifvjcomp(f->unit, ho->neg_vj, ho->cflag, ho->maxslotindex);
1024
1025     /* bring the interface up for IP */
1026     if (!sifup(f->unit)) {
1027         IPCPDEBUG((LOG_WARNING, "sifup failed"));
1028         ipcp_close(f->unit);
1029         return;
1030     }
1031
1032     /* assign a default route through the interface if required */
1033     if (ipcp_wantoptions[f->unit].default_route) 
1034         if (sifdefaultroute(f->unit, ho->hisaddr))
1035             go->default_route = 1;
1036
1037     /* Make a proxy ARP entry if requested. */
1038     if (ipcp_wantoptions[f->unit].proxy_arp)
1039         if (sifproxyarp(f->unit, ho->hisaddr))
1040             go->proxy_arp = 1;
1041
1042     /*
1043      * Execute the ip-up script, like this:
1044      *  /etc/ppp/ip-up interface tty speed local-IP remote-IP
1045      */
1046     ipcp_script(f, _PATH_IPUP);
1047
1048 }
1049
1050
1051 /*
1052  * ipcp_down - IPCP has gone DOWN.
1053  *
1054  * Take the IP network interface down, clear its addresses
1055  * and delete routes through it.
1056  */
1057 static void
1058 ipcp_down(f)
1059     fsm *f;
1060 {
1061     u_int32_t ouraddr, hisaddr;
1062
1063     IPCPDEBUG((LOG_INFO, "ipcp: down"));
1064
1065     ouraddr = ipcp_gotoptions[f->unit].ouraddr;
1066     hisaddr = ipcp_hisoptions[f->unit].hisaddr;
1067     if (ipcp_gotoptions[f->unit].proxy_arp)
1068         cifproxyarp(f->unit, hisaddr);
1069     if (ipcp_gotoptions[f->unit].default_route) 
1070         cifdefaultroute(f->unit, hisaddr);
1071     sifdown(f->unit);
1072     cifaddr(f->unit, ouraddr, hisaddr);
1073
1074     /* Execute the ip-down script */
1075     ipcp_script(f, _PATH_IPDOWN);
1076 }
1077
1078
1079 /*
1080  * ipcp_script - Execute a script with arguments
1081  * interface-name tty-name speed local-IP remote-IP.
1082  */
1083 static void
1084 ipcp_script(f, script)
1085     fsm *f;
1086     char *script;
1087 {
1088     char strspeed[32], strlocal[32], strremote[32];
1089     char *argv[8];
1090
1091     sprintf(strspeed, "%d", baud_rate);
1092     strcpy(strlocal, ip_ntoa(ipcp_gotoptions[f->unit].ouraddr));
1093     strcpy(strremote, ip_ntoa(ipcp_hisoptions[f->unit].hisaddr));
1094
1095     argv[0] = script;
1096     argv[1] = ifname;
1097     argv[2] = devnam;
1098     argv[3] = strspeed;
1099     argv[4] = strlocal;
1100     argv[5] = strremote;
1101     argv[6] = ipparam;
1102     argv[7] = NULL;
1103     run_program(script, argv, 0);
1104 }
1105
1106 /*
1107  * ipcp_printpkt - print the contents of an IPCP packet.
1108  */
1109 char *ipcp_codenames[] = {
1110     "ConfReq", "ConfAck", "ConfNak", "ConfRej",
1111     "TermReq", "TermAck", "CodeRej"
1112 };
1113
1114 int
1115 ipcp_printpkt(p, plen, printer, arg)
1116     u_char *p;
1117     int plen;
1118     void (*printer)();
1119     void *arg;
1120 {
1121     int code, id, len, olen;
1122     u_char *pstart, *optend;
1123     u_short cishort;
1124     u_int32_t cilong;
1125
1126     if (plen < HEADERLEN)
1127         return 0;
1128     pstart = p;
1129     GETCHAR(code, p);
1130     GETCHAR(id, p);
1131     GETSHORT(len, p);
1132     if (len < HEADERLEN || len > plen)
1133         return 0;
1134
1135     if (code >= 1 && code <= sizeof(ipcp_codenames) / sizeof(char *))
1136         printer(arg, " %s", ipcp_codenames[code-1]);
1137     else
1138         printer(arg, " code=0x%x", code);
1139     printer(arg, " id=0x%x", id);
1140     len -= HEADERLEN;
1141     switch (code) {
1142     case CONFREQ:
1143     case CONFACK:
1144     case CONFNAK:
1145     case CONFREJ:
1146         /* print option list */
1147         while (len >= 2) {
1148             GETCHAR(code, p);
1149             GETCHAR(olen, p);
1150             p -= 2;
1151             if (olen < 2 || olen > len) {
1152                 break;
1153             }
1154             printer(arg, " <");
1155             len -= olen;
1156             optend = p + olen;
1157             switch (code) {
1158             case CI_ADDRS:
1159                 if (olen == CILEN_ADDRS) {
1160                     p += 2;
1161                     GETLONG(cilong, p);
1162                     printer(arg, "addrs %s", ip_ntoa(htonl(cilong)));
1163                     GETLONG(cilong, p);
1164                     printer(arg, " %s", ip_ntoa(htonl(cilong)));
1165                 }
1166                 break;
1167             case CI_COMPRESSTYPE:
1168                 if (olen >= CILEN_COMPRESS) {
1169                     p += 2;
1170                     GETSHORT(cishort, p);
1171                     printer(arg, "compress ");
1172                     switch (cishort) {
1173                     case IPCP_VJ_COMP:
1174                         printer(arg, "VJ");
1175                         break;
1176                     case IPCP_VJ_COMP_OLD:
1177                         printer(arg, "old-VJ");
1178                         break;
1179                     default:
1180                         printer(arg, "0x%x", cishort);
1181                     }
1182                 }
1183                 break;
1184             case CI_ADDR:
1185                 if (olen == CILEN_ADDR) {
1186                     p += 2;
1187                     GETLONG(cilong, p);
1188                     printer(arg, "addr %s", ip_ntoa(htonl(cilong)));
1189                 }
1190                 break;
1191             }
1192             while (p < optend) {
1193                 GETCHAR(code, p);
1194                 printer(arg, " %.2x", code);
1195             }
1196             printer(arg, ">");
1197         }
1198         break;
1199     }
1200
1201     /* print the rest of the bytes in the packet */
1202     for (; len > 0; --len) {
1203         GETCHAR(code, p);
1204         printer(arg, " %.2x", code);
1205     }
1206
1207     return p - pstart;
1208 }