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