]> git.ozlabs.org Git - ppp.git/blob - pppd/lcp.c
exit with an appropriate value to indicate what happened
[ppp.git] / pppd / lcp.c
1 /*
2  * lcp.c - PPP Link 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: lcp.c,v 1.39 1999/05/12 06:19:47 paulus Exp $";
22 #endif
23
24 /*
25  * TODO:
26  */
27
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdlib.h>
31
32 #include "pppd.h"
33 #include "fsm.h"
34 #include "lcp.h"
35 #include "chap.h"
36 #include "magic.h"
37
38 /*
39  * LCP-related command-line options.
40  */
41 int     lcp_echo_interval = 0;  /* Interval between LCP echo-requests */
42 int     lcp_echo_fails = 0;     /* Tolerance to unanswered echo-requests */
43 bool    lax_recv = 0;           /* accept control chars in asyncmap */
44
45 static int setescape __P((char **));
46
47 static option_t lcp_option_list[] = {
48     /* LCP options */
49     { "noaccomp", o_bool, &lcp_wantoptions[0].neg_accompression,
50       "Disable address/control compression",
51       OPT_A2COPY, &lcp_allowoptions[0].neg_accompression },
52     { "-ac", o_bool, &lcp_wantoptions[0].neg_accompression,
53       "Disable address/control compression",
54       OPT_A2COPY, &lcp_allowoptions[0].neg_accompression },
55     { "default-asyncmap", o_bool, &lcp_wantoptions[0].neg_asyncmap,
56       "Disable asyncmap negotiation",
57       OPT_A2COPY, &lcp_allowoptions[0].neg_asyncmap },
58     { "-am", o_bool, &lcp_wantoptions[0].neg_asyncmap,
59       "Disable asyncmap negotiation",
60       OPT_A2COPY, &lcp_allowoptions[0].neg_asyncmap },
61     { "asyncmap", o_uint32, &lcp_wantoptions[0].asyncmap,
62       "Set asyncmap (for received packets)",
63       OPT_OR, &lcp_wantoptions[0].neg_asyncmap },
64     { "-as", o_uint32, &lcp_wantoptions[0].asyncmap,
65       "Set asyncmap (for received packets)",
66       OPT_OR, &lcp_wantoptions[0].neg_asyncmap },
67     { "nomagicnumber", o_bool, &lcp_wantoptions[0].neg_magicnumber,
68       "Disable magic number negotiation (looped-back line detection)",
69       OPT_A2COPY, &lcp_allowoptions[0].neg_magicnumber },
70     { "-mn", o_bool, &lcp_wantoptions[0].neg_magicnumber,
71       "Disable magic number negotiation (looped-back line detection)",
72       OPT_A2COPY, &lcp_allowoptions[0].neg_magicnumber },
73     { "default-mru", o_bool, &lcp_wantoptions[0].neg_mru,
74       "Disable MRU negotiation (use default 1500)",
75       OPT_A2COPY, &lcp_allowoptions[0].neg_mru },
76     { "-mru", o_bool, &lcp_wantoptions[0].neg_mru,
77       "Disable MRU negotiation (use default 1500)",
78       OPT_A2COPY, &lcp_allowoptions[0].neg_mru },
79     { "mru", o_int, &lcp_wantoptions[0].mru,
80       "Set MRU (maximum received packet size) for negotiation",
81       0, &lcp_wantoptions[0].neg_mru },
82     { "nopcomp", o_bool, &lcp_wantoptions[0].neg_pcompression,
83       "Disable protocol field compression",
84       OPT_A2COPY, &lcp_allowoptions[0].neg_pcompression },
85     { "-pc", o_bool, &lcp_wantoptions[0].neg_pcompression,
86       "Disable protocol field compression",
87       OPT_A2COPY, &lcp_allowoptions[0].neg_pcompression },
88     { "-p", o_bool, &lcp_wantoptions[0].passive,
89       "Set passive mode", 1 },
90     { "passive", o_bool, &lcp_wantoptions[0].passive,
91       "Set passive mode", 1 },
92     { "silent", o_bool, &lcp_wantoptions[0].silent,
93       "Set silent mode", 1 },
94     { "escape", o_special, setescape,
95       "List of character codes to escape on transmission" },
96     { "lcp-echo-failure", o_int, &lcp_echo_fails,
97       "Set number of consecutive echo failures to indicate link failure" },
98     { "lcp-echo-interval", o_int, &lcp_echo_interval,
99       "Set time in seconds between LCP echo requests" },
100     { "lcp-restart", o_int, &lcp_fsm[0].timeouttime,
101       "Set time in seconds between LCP retransmissions" },
102     { "lcp-max-terminate", o_int, &lcp_fsm[0].maxtermtransmits,
103       "Set maximum number of LCP terminate-request transmissions" },
104     { "lcp-max-configure", o_int, &lcp_fsm[0].maxconfreqtransmits,
105       "Set maximum number of LCP configure-request transmissions" },
106     { "lcp-max-failure", o_int, &lcp_fsm[0].maxnakloops,
107       "Set limit on number of LCP configure-naks" },
108     { "receive-all", o_bool, &lax_recv,
109       "Accept all received control characters", 1 },
110     {NULL}
111 };
112
113 /* global vars */
114 fsm lcp_fsm[NUM_PPP];                   /* LCP fsm structure (global)*/
115 lcp_options lcp_wantoptions[NUM_PPP];   /* Options that we want to request */
116 lcp_options lcp_gotoptions[NUM_PPP];    /* Options that peer ack'd */
117 lcp_options lcp_allowoptions[NUM_PPP];  /* Options we allow peer to request */
118 lcp_options lcp_hisoptions[NUM_PPP];    /* Options that we ack'd */
119 u_int32_t xmit_accm[NUM_PPP][8];                /* extended transmit ACCM */
120
121 static u_int32_t lcp_echos_pending = 0; /* Number of outstanding echo msgs */
122 static u_int32_t lcp_echo_number   = 0; /* ID number of next echo frame */
123 static u_int32_t lcp_echo_timer_running = 0;  /* set if a timer is running */
124
125 static u_char nak_buffer[PPP_MRU];      /* where we construct a nak packet */
126
127 /*
128  * Callbacks for fsm code.  (CI = Configuration Information)
129  */
130 static void lcp_resetci __P((fsm *));   /* Reset our CI */
131 static int  lcp_cilen __P((fsm *));             /* Return length of our CI */
132 static void lcp_addci __P((fsm *, u_char *, int *)); /* Add our CI to pkt */
133 static int  lcp_ackci __P((fsm *, u_char *, int)); /* Peer ack'd our CI */
134 static int  lcp_nakci __P((fsm *, u_char *, int)); /* Peer nak'd our CI */
135 static int  lcp_rejci __P((fsm *, u_char *, int)); /* Peer rej'd our CI */
136 static int  lcp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv peer CI */
137 static void lcp_up __P((fsm *));                /* We're UP */
138 static void lcp_down __P((fsm *));              /* We're DOWN */
139 static void lcp_starting __P((fsm *));  /* We need lower layer up */
140 static void lcp_finished __P((fsm *));  /* We need lower layer down */
141 static int  lcp_extcode __P((fsm *, int, int, u_char *, int));
142 static void lcp_rprotrej __P((fsm *, u_char *, int));
143
144 /*
145  * routines to send LCP echos to peer
146  */
147
148 static void lcp_echo_lowerup __P((int));
149 static void lcp_echo_lowerdown __P((int));
150 static void LcpEchoTimeout __P((void *));
151 static void lcp_received_echo_reply __P((fsm *, int, u_char *, int));
152 static void LcpSendEchoRequest __P((fsm *));
153 static void LcpLinkFailure __P((fsm *));
154 static void LcpEchoCheck __P((fsm *));
155
156 static fsm_callbacks lcp_callbacks = {  /* LCP callback routines */
157     lcp_resetci,                /* Reset our Configuration Information */
158     lcp_cilen,                  /* Length of our Configuration Information */
159     lcp_addci,                  /* Add our Configuration Information */
160     lcp_ackci,                  /* ACK our Configuration Information */
161     lcp_nakci,                  /* NAK our Configuration Information */
162     lcp_rejci,                  /* Reject our Configuration Information */
163     lcp_reqci,                  /* Request peer's Configuration Information */
164     lcp_up,                     /* Called when fsm reaches OPENED state */
165     lcp_down,                   /* Called when fsm leaves OPENED state */
166     lcp_starting,               /* Called when we want the lower layer up */
167     lcp_finished,               /* Called when we want the lower layer down */
168     NULL,                       /* Called when Protocol-Reject received */
169     NULL,                       /* Retransmission is necessary */
170     lcp_extcode,                /* Called to handle LCP-specific codes */
171     "LCP"                       /* String name of protocol */
172 };
173
174 /*
175  * Protocol entry points.
176  * Some of these are called directly.
177  */
178
179 static void lcp_init __P((int));
180 static void lcp_input __P((int, u_char *, int));
181 static void lcp_protrej __P((int));
182 static int  lcp_printpkt __P((u_char *, int,
183                               void (*) __P((void *, char *, ...)), void *));
184
185 struct protent lcp_protent = {
186     PPP_LCP,
187     lcp_init,
188     lcp_input,
189     lcp_protrej,
190     lcp_lowerup,
191     lcp_lowerdown,
192     lcp_open,
193     lcp_close,
194     lcp_printpkt,
195     NULL,
196     1,
197     "LCP",
198     NULL,
199     lcp_option_list,
200     NULL,
201     NULL,
202     NULL
203 };
204
205 int lcp_loopbackfail = DEFLOOPBACKFAIL;
206
207 /*
208  * Length of each type of configuration option (in octets)
209  */
210 #define CILEN_VOID      2
211 #define CILEN_CHAR      3
212 #define CILEN_SHORT     4       /* CILEN_VOID + sizeof(short) */
213 #define CILEN_CHAP      5       /* CILEN_VOID + sizeof(short) + 1 */
214 #define CILEN_LONG      6       /* CILEN_VOID + sizeof(long) */
215 #define CILEN_LQR       8       /* CILEN_VOID + sizeof(short) + sizeof(long) */
216 #define CILEN_CBCP      3
217
218 #define CODENAME(x)     ((x) == CONFACK ? "ACK" : \
219                          (x) == CONFNAK ? "NAK" : "REJ")
220
221
222 /*
223  * setescape - add chars to the set we escape on transmission.
224  */
225 static int
226 setescape(argv)
227     char **argv;
228 {
229     int n, ret;
230     char *p, *endp;
231
232     p = *argv;
233     ret = 1;
234     while (*p) {
235         n = strtol(p, &endp, 16);
236         if (p == endp) {
237             option_error("escape parameter contains invalid hex number '%s'",
238                          p);
239             return 0;
240         }
241         p = endp;
242         if (n < 0 || n == 0x5E || n > 0xFF) {
243             option_error("can't escape character 0x%x", n);
244             ret = 0;
245         } else
246             xmit_accm[0][n >> 5] |= 1 << (n & 0x1F);
247         while (*p == ',' || *p == ' ')
248             ++p;
249     }
250     return ret;
251 }
252
253 /*
254  * lcp_init - Initialize LCP.
255  */
256 static void
257 lcp_init(unit)
258     int unit;
259 {
260     fsm *f = &lcp_fsm[unit];
261     lcp_options *wo = &lcp_wantoptions[unit];
262     lcp_options *ao = &lcp_allowoptions[unit];
263
264     f->unit = unit;
265     f->protocol = PPP_LCP;
266     f->callbacks = &lcp_callbacks;
267
268     fsm_init(f);
269
270     wo->passive = 0;
271     wo->silent = 0;
272     wo->restart = 0;                    /* Set to 1 in kernels or multi-line
273                                            implementations */
274     wo->neg_mru = 1;
275     wo->mru = DEFMRU;
276     wo->neg_asyncmap = 1;
277     wo->asyncmap = 0;
278     wo->neg_chap = 0;                   /* Set to 1 on server */
279     wo->neg_upap = 0;                   /* Set to 1 on server */
280     wo->chap_mdtype = CHAP_DIGEST_MD5;
281     wo->neg_magicnumber = 1;
282     wo->neg_pcompression = 1;
283     wo->neg_accompression = 1;
284     wo->neg_lqr = 0;                    /* no LQR implementation yet */
285     wo->neg_cbcp = 0;
286
287     ao->neg_mru = 1;
288     ao->mru = MAXMRU;
289     ao->neg_asyncmap = 1;
290     ao->asyncmap = 0;
291     ao->neg_chap = 1;
292     ao->chap_mdtype = CHAP_DIGEST_MD5;
293     ao->neg_upap = 1;
294     ao->neg_magicnumber = 1;
295     ao->neg_pcompression = 1;
296     ao->neg_accompression = 1;
297     ao->neg_lqr = 0;                    /* no LQR implementation yet */
298 #ifdef CBCP_SUPPORT
299     ao->neg_cbcp = 1;
300 #else
301     ao->neg_cbcp = 0;
302 #endif
303
304     memset(xmit_accm[unit], 0, sizeof(xmit_accm[0]));
305     xmit_accm[unit][3] = 0x60000000;
306 }
307
308
309 /*
310  * lcp_open - LCP is allowed to come up.
311  */
312 void
313 lcp_open(unit)
314     int unit;
315 {
316     fsm *f = &lcp_fsm[unit];
317     lcp_options *wo = &lcp_wantoptions[unit];
318
319     f->flags = 0;
320     if (wo->passive)
321         f->flags |= OPT_PASSIVE;
322     if (wo->silent)
323         f->flags |= OPT_SILENT;
324     fsm_open(f);
325 }
326
327
328 /*
329  * lcp_close - Take LCP down.
330  */
331 void
332 lcp_close(unit, reason)
333     int unit;
334     char *reason;
335 {
336     fsm *f = &lcp_fsm[unit];
337
338     if (phase != PHASE_DEAD)
339         phase = PHASE_TERMINATE;
340     if (f->state == STOPPED && f->flags & (OPT_PASSIVE|OPT_SILENT)) {
341         /*
342          * This action is not strictly according to the FSM in RFC1548,
343          * but it does mean that the program terminates if you do a
344          * lcp_close() in passive/silent mode when a connection hasn't
345          * been established.
346          */
347         f->state = CLOSED;
348         lcp_finished(f);
349
350     } else
351         fsm_close(&lcp_fsm[unit], reason);
352 }
353
354
355 /*
356  * lcp_lowerup - The lower layer is up.
357  */
358 void
359 lcp_lowerup(unit)
360     int unit;
361 {
362     lcp_options *wo = &lcp_wantoptions[unit];
363
364     /*
365      * Don't use A/C or protocol compression on transmission,
366      * but accept A/C and protocol compressed packets
367      * if we are going to ask for A/C and protocol compression.
368      */
369     ppp_set_xaccm(unit, xmit_accm[unit]);
370     ppp_send_config(unit, PPP_MRU, 0xffffffff, 0, 0);
371     ppp_recv_config(unit, PPP_MRU, (lax_recv? 0: 0xffffffff),
372                     wo->neg_pcompression, wo->neg_accompression);
373     peer_mru[unit] = PPP_MRU;
374     lcp_allowoptions[unit].asyncmap = xmit_accm[unit][0];
375
376     fsm_lowerup(&lcp_fsm[unit]);
377 }
378
379
380 /*
381  * lcp_lowerdown - The lower layer is down.
382  */
383 void
384 lcp_lowerdown(unit)
385     int unit;
386 {
387     fsm_lowerdown(&lcp_fsm[unit]);
388 }
389
390
391 /*
392  * lcp_input - Input LCP packet.
393  */
394 static void
395 lcp_input(unit, p, len)
396     int unit;
397     u_char *p;
398     int len;
399 {
400     fsm *f = &lcp_fsm[unit];
401
402     fsm_input(f, p, len);
403 }
404
405
406 /*
407  * lcp_extcode - Handle a LCP-specific code.
408  */
409 static int
410 lcp_extcode(f, code, id, inp, len)
411     fsm *f;
412     int code, id;
413     u_char *inp;
414     int len;
415 {
416     u_char *magp;
417
418     switch( code ){
419     case PROTREJ:
420         lcp_rprotrej(f, inp, len);
421         break;
422     
423     case ECHOREQ:
424         if (f->state != OPENED)
425             break;
426         magp = inp;
427         PUTLONG(lcp_gotoptions[f->unit].magicnumber, magp);
428         fsm_sdata(f, ECHOREP, id, inp, len);
429         break;
430     
431     case ECHOREP:
432         lcp_received_echo_reply(f, id, inp, len);
433         break;
434
435     case DISCREQ:
436         break;
437
438     default:
439         return 0;
440     }
441     return 1;
442 }
443
444     
445 /*
446  * lcp_rprotrej - Receive an Protocol-Reject.
447  *
448  * Figure out which protocol is rejected and inform it.
449  */
450 static void
451 lcp_rprotrej(f, inp, len)
452     fsm *f;
453     u_char *inp;
454     int len;
455 {
456     int i;
457     struct protent *protp;
458     u_short prot;
459
460     if (len < sizeof (u_short)) {
461         LCPDEBUG(("lcp_rprotrej: Rcvd short Protocol-Reject packet!"));
462         return;
463     }
464
465     GETSHORT(prot, inp);
466
467     /*
468      * Protocol-Reject packets received in any state other than the LCP
469      * OPENED state SHOULD be silently discarded.
470      */
471     if( f->state != OPENED ){
472         LCPDEBUG(("Protocol-Reject discarded: LCP in state %d", f->state));
473         return;
474     }
475
476     /*
477      * Upcall the proper Protocol-Reject routine.
478      */
479     for (i = 0; (protp = protocols[i]) != NULL; ++i)
480         if (protp->protocol == prot && protp->enabled_flag) {
481             (*protp->protrej)(f->unit);
482             return;
483         }
484
485     warn("Protocol-Reject for unsupported protocol 0x%x", prot);
486 }
487
488
489 /*
490  * lcp_protrej - A Protocol-Reject was received.
491  */
492 /*ARGSUSED*/
493 static void
494 lcp_protrej(unit)
495     int unit;
496 {
497     /*
498      * Can't reject LCP!
499      */
500     error("Received Protocol-Reject for LCP!");
501     fsm_protreject(&lcp_fsm[unit]);
502 }
503
504
505 /*
506  * lcp_sprotrej - Send a Protocol-Reject for some protocol.
507  */
508 void
509 lcp_sprotrej(unit, p, len)
510     int unit;
511     u_char *p;
512     int len;
513 {
514     /*
515      * Send back the protocol and the information field of the
516      * rejected packet.  We only get here if LCP is in the OPENED state.
517      */
518     p += 2;
519     len -= 2;
520
521     fsm_sdata(&lcp_fsm[unit], PROTREJ, ++lcp_fsm[unit].id,
522               p, len);
523 }
524
525
526 /*
527  * lcp_resetci - Reset our CI.
528  */
529 static void
530 lcp_resetci(f)
531     fsm *f;
532 {
533     lcp_wantoptions[f->unit].magicnumber = magic();
534     lcp_wantoptions[f->unit].numloops = 0;
535     lcp_gotoptions[f->unit] = lcp_wantoptions[f->unit];
536     peer_mru[f->unit] = PPP_MRU;
537     auth_reset(f->unit);
538 }
539
540
541 /*
542  * lcp_cilen - Return length of our CI.
543  */
544 static int
545 lcp_cilen(f)
546     fsm *f;
547 {
548     lcp_options *go = &lcp_gotoptions[f->unit];
549
550 #define LENCIVOID(neg)  ((neg) ? CILEN_VOID : 0)
551 #define LENCICHAP(neg)  ((neg) ? CILEN_CHAP : 0)
552 #define LENCISHORT(neg) ((neg) ? CILEN_SHORT : 0)
553 #define LENCILONG(neg)  ((neg) ? CILEN_LONG : 0)
554 #define LENCILQR(neg)   ((neg) ? CILEN_LQR: 0)
555 #define LENCICBCP(neg)  ((neg) ? CILEN_CBCP: 0)
556     /*
557      * NB: we only ask for one of CHAP and UPAP, even if we will
558      * accept either.
559      */
560     return (LENCISHORT(go->neg_mru && go->mru != DEFMRU) +
561             LENCILONG(go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF) +
562             LENCICHAP(go->neg_chap) +
563             LENCISHORT(!go->neg_chap && go->neg_upap) +
564             LENCILQR(go->neg_lqr) +
565             LENCICBCP(go->neg_cbcp) +
566             LENCILONG(go->neg_magicnumber) +
567             LENCIVOID(go->neg_pcompression) +
568             LENCIVOID(go->neg_accompression));
569 }
570
571
572 /*
573  * lcp_addci - Add our desired CIs to a packet.
574  */
575 static void
576 lcp_addci(f, ucp, lenp)
577     fsm *f;
578     u_char *ucp;
579     int *lenp;
580 {
581     lcp_options *go = &lcp_gotoptions[f->unit];
582     u_char *start_ucp = ucp;
583
584 #define ADDCIVOID(opt, neg) \
585     if (neg) { \
586         PUTCHAR(opt, ucp); \
587         PUTCHAR(CILEN_VOID, ucp); \
588     }
589 #define ADDCISHORT(opt, neg, val) \
590     if (neg) { \
591         PUTCHAR(opt, ucp); \
592         PUTCHAR(CILEN_SHORT, ucp); \
593         PUTSHORT(val, ucp); \
594     }
595 #define ADDCICHAP(opt, neg, val, digest) \
596     if (neg) { \
597         PUTCHAR(opt, ucp); \
598         PUTCHAR(CILEN_CHAP, ucp); \
599         PUTSHORT(val, ucp); \
600         PUTCHAR(digest, ucp); \
601     }
602 #define ADDCILONG(opt, neg, val) \
603     if (neg) { \
604         PUTCHAR(opt, ucp); \
605         PUTCHAR(CILEN_LONG, ucp); \
606         PUTLONG(val, ucp); \
607     }
608 #define ADDCILQR(opt, neg, val) \
609     if (neg) { \
610         PUTCHAR(opt, ucp); \
611         PUTCHAR(CILEN_LQR, ucp); \
612         PUTSHORT(PPP_LQR, ucp); \
613         PUTLONG(val, ucp); \
614     }
615 #define ADDCICHAR(opt, neg, val) \
616     if (neg) { \
617         PUTCHAR(opt, ucp); \
618         PUTCHAR(CILEN_CHAR, ucp); \
619         PUTCHAR(val, ucp); \
620     }
621
622     ADDCISHORT(CI_MRU, go->neg_mru && go->mru != DEFMRU, go->mru);
623     ADDCILONG(CI_ASYNCMAP, go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF,
624               go->asyncmap);
625     ADDCICHAP(CI_AUTHTYPE, go->neg_chap, PPP_CHAP, go->chap_mdtype);
626     ADDCISHORT(CI_AUTHTYPE, !go->neg_chap && go->neg_upap, PPP_PAP);
627     ADDCILQR(CI_QUALITY, go->neg_lqr, go->lqr_period);
628     ADDCICHAR(CI_CALLBACK, go->neg_cbcp, CBCP_OPT);
629     ADDCILONG(CI_MAGICNUMBER, go->neg_magicnumber, go->magicnumber);
630     ADDCIVOID(CI_PCOMPRESSION, go->neg_pcompression);
631     ADDCIVOID(CI_ACCOMPRESSION, go->neg_accompression);
632
633     if (ucp - start_ucp != *lenp) {
634         /* this should never happen, because peer_mtu should be 1500 */
635         error("Bug in lcp_addci: wrong length");
636     }
637 }
638
639
640 /*
641  * lcp_ackci - Ack our CIs.
642  * This should not modify any state if the Ack is bad.
643  *
644  * Returns:
645  *      0 - Ack was bad.
646  *      1 - Ack was good.
647  */
648 static int
649 lcp_ackci(f, p, len)
650     fsm *f;
651     u_char *p;
652     int len;
653 {
654     lcp_options *go = &lcp_gotoptions[f->unit];
655     u_char cilen, citype, cichar;
656     u_short cishort;
657     u_int32_t cilong;
658
659     /*
660      * CIs must be in exactly the same order that we sent.
661      * Check packet length and CI length at each step.
662      * If we find any deviations, then this packet is bad.
663      */
664 #define ACKCIVOID(opt, neg) \
665     if (neg) { \
666         if ((len -= CILEN_VOID) < 0) \
667             goto bad; \
668         GETCHAR(citype, p); \
669         GETCHAR(cilen, p); \
670         if (cilen != CILEN_VOID || \
671             citype != opt) \
672             goto bad; \
673     }
674 #define ACKCISHORT(opt, neg, val) \
675     if (neg) { \
676         if ((len -= CILEN_SHORT) < 0) \
677             goto bad; \
678         GETCHAR(citype, p); \
679         GETCHAR(cilen, p); \
680         if (cilen != CILEN_SHORT || \
681             citype != opt) \
682             goto bad; \
683         GETSHORT(cishort, p); \
684         if (cishort != val) \
685             goto bad; \
686     }
687 #define ACKCICHAR(opt, neg, val) \
688     if (neg) { \
689         if ((len -= CILEN_CHAR) < 0) \
690             goto bad; \
691         GETCHAR(citype, p); \
692         GETCHAR(cilen, p); \
693         if (cilen != CILEN_CHAR || \
694             citype != opt) \
695             goto bad; \
696         GETCHAR(cichar, p); \
697         if (cichar != val) \
698             goto bad; \
699     }
700 #define ACKCICHAP(opt, neg, val, digest) \
701     if (neg) { \
702         if ((len -= CILEN_CHAP) < 0) \
703             goto bad; \
704         GETCHAR(citype, p); \
705         GETCHAR(cilen, p); \
706         if (cilen != CILEN_CHAP || \
707             citype != opt) \
708             goto bad; \
709         GETSHORT(cishort, p); \
710         if (cishort != val) \
711             goto bad; \
712         GETCHAR(cichar, p); \
713         if (cichar != digest) \
714           goto bad; \
715     }
716 #define ACKCILONG(opt, neg, val) \
717     if (neg) { \
718         if ((len -= CILEN_LONG) < 0) \
719             goto bad; \
720         GETCHAR(citype, p); \
721         GETCHAR(cilen, p); \
722         if (cilen != CILEN_LONG || \
723             citype != opt) \
724             goto bad; \
725         GETLONG(cilong, p); \
726         if (cilong != val) \
727             goto bad; \
728     }
729 #define ACKCILQR(opt, neg, val) \
730     if (neg) { \
731         if ((len -= CILEN_LQR) < 0) \
732             goto bad; \
733         GETCHAR(citype, p); \
734         GETCHAR(cilen, p); \
735         if (cilen != CILEN_LQR || \
736             citype != opt) \
737             goto bad; \
738         GETSHORT(cishort, p); \
739         if (cishort != PPP_LQR) \
740             goto bad; \
741         GETLONG(cilong, p); \
742         if (cilong != val) \
743           goto bad; \
744     }
745
746     ACKCISHORT(CI_MRU, go->neg_mru && go->mru != DEFMRU, go->mru);
747     ACKCILONG(CI_ASYNCMAP, go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF,
748               go->asyncmap);
749     ACKCICHAP(CI_AUTHTYPE, go->neg_chap, PPP_CHAP, go->chap_mdtype);
750     ACKCISHORT(CI_AUTHTYPE, !go->neg_chap && go->neg_upap, PPP_PAP);
751     ACKCILQR(CI_QUALITY, go->neg_lqr, go->lqr_period);
752     ACKCICHAR(CI_CALLBACK, go->neg_cbcp, CBCP_OPT);
753     ACKCILONG(CI_MAGICNUMBER, go->neg_magicnumber, go->magicnumber);
754     ACKCIVOID(CI_PCOMPRESSION, go->neg_pcompression);
755     ACKCIVOID(CI_ACCOMPRESSION, go->neg_accompression);
756
757     /*
758      * If there are any remaining CIs, then this packet is bad.
759      */
760     if (len != 0)
761         goto bad;
762     return (1);
763 bad:
764     LCPDEBUG(("lcp_acki: received bad Ack!"));
765     return (0);
766 }
767
768
769 /*
770  * lcp_nakci - Peer has sent a NAK for some of our CIs.
771  * This should not modify any state if the Nak is bad
772  * or if LCP is in the OPENED state.
773  *
774  * Returns:
775  *      0 - Nak was bad.
776  *      1 - Nak was good.
777  */
778 static int
779 lcp_nakci(f, p, len)
780     fsm *f;
781     u_char *p;
782     int len;
783 {
784     lcp_options *go = &lcp_gotoptions[f->unit];
785     lcp_options *wo = &lcp_wantoptions[f->unit];
786     u_char citype, cichar, *next;
787     u_short cishort;
788     u_int32_t cilong;
789     lcp_options no;             /* options we've seen Naks for */
790     lcp_options try;            /* options to request next time */
791     int looped_back = 0;
792     int cilen;
793
794     BZERO(&no, sizeof(no));
795     try = *go;
796
797     /*
798      * Any Nak'd CIs must be in exactly the same order that we sent.
799      * Check packet length and CI length at each step.
800      * If we find any deviations, then this packet is bad.
801      */
802 #define NAKCIVOID(opt, neg, code) \
803     if (go->neg && \
804         len >= CILEN_VOID && \
805         p[1] == CILEN_VOID && \
806         p[0] == opt) { \
807         len -= CILEN_VOID; \
808         INCPTR(CILEN_VOID, p); \
809         no.neg = 1; \
810         code \
811     }
812 #define NAKCICHAP(opt, neg, code) \
813     if (go->neg && \
814         len >= CILEN_CHAP && \
815         p[1] == CILEN_CHAP && \
816         p[0] == opt) { \
817         len -= CILEN_CHAP; \
818         INCPTR(2, p); \
819         GETSHORT(cishort, p); \
820         GETCHAR(cichar, p); \
821         no.neg = 1; \
822         code \
823     }
824 #define NAKCICHAR(opt, neg, code) \
825     if (go->neg && \
826         len >= CILEN_CHAR && \
827         p[1] == CILEN_CHAR && \
828         p[0] == opt) { \
829         len -= CILEN_CHAR; \
830         INCPTR(2, p); \
831         GETCHAR(cichar, p); \
832         no.neg = 1; \
833         code \
834     }
835 #define NAKCISHORT(opt, neg, code) \
836     if (go->neg && \
837         len >= CILEN_SHORT && \
838         p[1] == CILEN_SHORT && \
839         p[0] == opt) { \
840         len -= CILEN_SHORT; \
841         INCPTR(2, p); \
842         GETSHORT(cishort, p); \
843         no.neg = 1; \
844         code \
845     }
846 #define NAKCILONG(opt, neg, code) \
847     if (go->neg && \
848         len >= CILEN_LONG && \
849         p[1] == CILEN_LONG && \
850         p[0] == opt) { \
851         len -= CILEN_LONG; \
852         INCPTR(2, p); \
853         GETLONG(cilong, p); \
854         no.neg = 1; \
855         code \
856     }
857 #define NAKCILQR(opt, neg, code) \
858     if (go->neg && \
859         len >= CILEN_LQR && \
860         p[1] == CILEN_LQR && \
861         p[0] == opt) { \
862         len -= CILEN_LQR; \
863         INCPTR(2, p); \
864         GETSHORT(cishort, p); \
865         GETLONG(cilong, p); \
866         no.neg = 1; \
867         code \
868     }
869
870     /*
871      * We don't care if they want to send us smaller packets than
872      * we want.  Therefore, accept any MRU less than what we asked for,
873      * but then ignore the new value when setting the MRU in the kernel.
874      * If they send us a bigger MRU than what we asked, accept it, up to
875      * the limit of the default MRU we'd get if we didn't negotiate.
876      */
877     if (go->neg_mru && go->mru != DEFMRU) {
878         NAKCISHORT(CI_MRU, neg_mru,
879                    if (cishort <= wo->mru || cishort <= DEFMRU)
880                        try.mru = cishort;
881                    );
882     }
883
884     /*
885      * Add any characters they want to our (receive-side) asyncmap.
886      */
887     if (go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF) {
888         NAKCILONG(CI_ASYNCMAP, neg_asyncmap,
889                   try.asyncmap = go->asyncmap | cilong;
890                   );
891     }
892
893     /*
894      * If they've nak'd our authentication-protocol, check whether
895      * they are proposing a different protocol, or a different
896      * hash algorithm for CHAP.
897      */
898     if ((go->neg_chap || go->neg_upap)
899         && len >= CILEN_SHORT
900         && p[0] == CI_AUTHTYPE && p[1] >= CILEN_SHORT && p[1] <= len) {
901         cilen = p[1];
902         len -= cilen;
903         no.neg_chap = go->neg_chap;
904         no.neg_upap = go->neg_upap;
905         INCPTR(2, p);
906         GETSHORT(cishort, p);
907         if (cishort == PPP_PAP && cilen == CILEN_SHORT) {
908             /*
909              * If we were asking for CHAP, they obviously don't want to do it.
910              * If we weren't asking for CHAP, then we were asking for PAP,
911              * in which case this Nak is bad.
912              */
913             if (!go->neg_chap)
914                 goto bad;
915             try.neg_chap = 0;
916
917         } else if (cishort == PPP_CHAP && cilen == CILEN_CHAP) {
918             GETCHAR(cichar, p);
919             if (go->neg_chap) {
920                 /*
921                  * We were asking for CHAP/MD5; they must want a different
922                  * algorithm.  If they can't do MD5, we'll have to stop
923                  * asking for CHAP.
924                  */
925                 if (cichar != go->chap_mdtype)
926                     try.neg_chap = 0;
927             } else {
928                 /*
929                  * Stop asking for PAP if we were asking for it.
930                  */
931                 try.neg_upap = 0;
932             }
933
934         } else {
935             /*
936              * We don't recognize what they're suggesting.
937              * Stop asking for what we were asking for.
938              */
939             if (go->neg_chap)
940                 try.neg_chap = 0;
941             else
942                 try.neg_upap = 0;
943             p += cilen - CILEN_SHORT;
944         }
945     }
946
947     /*
948      * If they can't cope with our link quality protocol, we'll have
949      * to stop asking for LQR.  We haven't got any other protocol.
950      * If they Nak the reporting period, take their value XXX ?
951      */
952     NAKCILQR(CI_QUALITY, neg_lqr,
953              if (cishort != PPP_LQR)
954                  try.neg_lqr = 0;
955              else
956                  try.lqr_period = cilong;
957              );
958
959     /*
960      * Only implementing CBCP...not the rest of the callback options
961      */
962     NAKCICHAR(CI_CALLBACK, neg_cbcp,
963               try.neg_cbcp = 0;
964               );
965
966     /*
967      * Check for a looped-back line.
968      */
969     NAKCILONG(CI_MAGICNUMBER, neg_magicnumber,
970               try.magicnumber = magic();
971               looped_back = 1;
972               );
973
974     /*
975      * Peer shouldn't send Nak for protocol compression or
976      * address/control compression requests; they should send
977      * a Reject instead.  If they send a Nak, treat it as a Reject.
978      */
979     NAKCIVOID(CI_PCOMPRESSION, neg_pcompression,
980               try.neg_pcompression = 0;
981               );
982     NAKCIVOID(CI_ACCOMPRESSION, neg_accompression,
983               try.neg_accompression = 0;
984               );
985
986     /*
987      * There may be remaining CIs, if the peer is requesting negotiation
988      * on an option that we didn't include in our request packet.
989      * If we see an option that we requested, or one we've already seen
990      * in this packet, then this packet is bad.
991      * If we wanted to respond by starting to negotiate on the requested
992      * option(s), we could, but we don't, because except for the
993      * authentication type and quality protocol, if we are not negotiating
994      * an option, it is because we were told not to.
995      * For the authentication type, the Nak from the peer means
996      * `let me authenticate myself with you' which is a bit pointless.
997      * For the quality protocol, the Nak means `ask me to send you quality
998      * reports', but if we didn't ask for them, we don't want them.
999      * An option we don't recognize represents the peer asking to
1000      * negotiate some option we don't support, so ignore it.
1001      */
1002     while (len > CILEN_VOID) {
1003         GETCHAR(citype, p);
1004         GETCHAR(cilen, p);
1005         if (cilen < CILEN_VOID || (len -= cilen) < 0)
1006             goto bad;
1007         next = p + cilen - 2;
1008
1009         switch (citype) {
1010         case CI_MRU:
1011             if ((go->neg_mru && go->mru != DEFMRU)
1012                 || no.neg_mru || cilen != CILEN_SHORT)
1013                 goto bad;
1014             GETSHORT(cishort, p);
1015             if (cishort < DEFMRU)
1016                 try.mru = cishort;
1017             break;
1018         case CI_ASYNCMAP:
1019             if ((go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF)
1020                 || no.neg_asyncmap || cilen != CILEN_LONG)
1021                 goto bad;
1022             break;
1023         case CI_AUTHTYPE:
1024             if (go->neg_chap || no.neg_chap || go->neg_upap || no.neg_upap)
1025                 goto bad;
1026             break;
1027         case CI_MAGICNUMBER:
1028             if (go->neg_magicnumber || no.neg_magicnumber ||
1029                 cilen != CILEN_LONG)
1030                 goto bad;
1031             break;
1032         case CI_PCOMPRESSION:
1033             if (go->neg_pcompression || no.neg_pcompression
1034                 || cilen != CILEN_VOID)
1035                 goto bad;
1036             break;
1037         case CI_ACCOMPRESSION:
1038             if (go->neg_accompression || no.neg_accompression
1039                 || cilen != CILEN_VOID)
1040                 goto bad;
1041             break;
1042         case CI_QUALITY:
1043             if (go->neg_lqr || no.neg_lqr || cilen != CILEN_LQR)
1044                 goto bad;
1045             break;
1046         }
1047         p = next;
1048     }
1049
1050     /*
1051      * OK, the Nak is good.  Now we can update state.
1052      * If there are any options left we ignore them.
1053      */
1054     if (f->state != OPENED) {
1055         if (looped_back) {
1056             if (++try.numloops >= lcp_loopbackfail) {
1057                 notice("Serial line is looped back.");
1058                 lcp_close(f->unit, "Loopback detected");
1059             }
1060         } else
1061             try.numloops = 0;
1062         *go = try;
1063     }
1064
1065     return 1;
1066
1067 bad:
1068     LCPDEBUG(("lcp_nakci: received bad Nak!"));
1069     return 0;
1070 }
1071
1072
1073 /*
1074  * lcp_rejci - Peer has Rejected some of our CIs.
1075  * This should not modify any state if the Reject is bad
1076  * or if LCP is in the OPENED state.
1077  *
1078  * Returns:
1079  *      0 - Reject was bad.
1080  *      1 - Reject was good.
1081  */
1082 static int
1083 lcp_rejci(f, p, len)
1084     fsm *f;
1085     u_char *p;
1086     int len;
1087 {
1088     lcp_options *go = &lcp_gotoptions[f->unit];
1089     u_char cichar;
1090     u_short cishort;
1091     u_int32_t cilong;
1092     lcp_options try;            /* options to request next time */
1093
1094     try = *go;
1095
1096     /*
1097      * Any Rejected CIs must be in exactly the same order that we sent.
1098      * Check packet length and CI length at each step.
1099      * If we find any deviations, then this packet is bad.
1100      */
1101 #define REJCIVOID(opt, neg) \
1102     if (go->neg && \
1103         len >= CILEN_VOID && \
1104         p[1] == CILEN_VOID && \
1105         p[0] == opt) { \
1106         len -= CILEN_VOID; \
1107         INCPTR(CILEN_VOID, p); \
1108         try.neg = 0; \
1109     }
1110 #define REJCISHORT(opt, neg, val) \
1111     if (go->neg && \
1112         len >= CILEN_SHORT && \
1113         p[1] == CILEN_SHORT && \
1114         p[0] == opt) { \
1115         len -= CILEN_SHORT; \
1116         INCPTR(2, p); \
1117         GETSHORT(cishort, p); \
1118         /* Check rejected value. */ \
1119         if (cishort != val) \
1120             goto bad; \
1121         try.neg = 0; \
1122     }
1123 #define REJCICHAP(opt, neg, val, digest) \
1124     if (go->neg && \
1125         len >= CILEN_CHAP && \
1126         p[1] == CILEN_CHAP && \
1127         p[0] == opt) { \
1128         len -= CILEN_CHAP; \
1129         INCPTR(2, p); \
1130         GETSHORT(cishort, p); \
1131         GETCHAR(cichar, p); \
1132         /* Check rejected value. */ \
1133         if (cishort != val || cichar != digest) \
1134             goto bad; \
1135         try.neg = 0; \
1136         try.neg_upap = 0; \
1137     }
1138 #define REJCILONG(opt, neg, val) \
1139     if (go->neg && \
1140         len >= CILEN_LONG && \
1141         p[1] == CILEN_LONG && \
1142         p[0] == opt) { \
1143         len -= CILEN_LONG; \
1144         INCPTR(2, p); \
1145         GETLONG(cilong, p); \
1146         /* Check rejected value. */ \
1147         if (cilong != val) \
1148             goto bad; \
1149         try.neg = 0; \
1150     }
1151 #define REJCILQR(opt, neg, val) \
1152     if (go->neg && \
1153         len >= CILEN_LQR && \
1154         p[1] == CILEN_LQR && \
1155         p[0] == opt) { \
1156         len -= CILEN_LQR; \
1157         INCPTR(2, p); \
1158         GETSHORT(cishort, p); \
1159         GETLONG(cilong, p); \
1160         /* Check rejected value. */ \
1161         if (cishort != PPP_LQR || cilong != val) \
1162             goto bad; \
1163         try.neg = 0; \
1164     }
1165 #define REJCICBCP(opt, neg, val) \
1166     if (go->neg && \
1167         len >= CILEN_CBCP && \
1168         p[1] == CILEN_CBCP && \
1169         p[0] == opt) { \
1170         len -= CILEN_CBCP; \
1171         INCPTR(2, p); \
1172         GETCHAR(cichar, p); \
1173         /* Check rejected value. */ \
1174         if (cichar != val) \
1175             goto bad; \
1176         try.neg = 0; \
1177     }
1178
1179     REJCISHORT(CI_MRU, neg_mru, go->mru);
1180     REJCILONG(CI_ASYNCMAP, neg_asyncmap, go->asyncmap);
1181     REJCICHAP(CI_AUTHTYPE, neg_chap, PPP_CHAP, go->chap_mdtype);
1182     if (!go->neg_chap) {
1183         REJCISHORT(CI_AUTHTYPE, neg_upap, PPP_PAP);
1184     }
1185     REJCILQR(CI_QUALITY, neg_lqr, go->lqr_period);
1186     REJCICBCP(CI_CALLBACK, neg_cbcp, CBCP_OPT);
1187     REJCILONG(CI_MAGICNUMBER, neg_magicnumber, go->magicnumber);
1188     REJCIVOID(CI_PCOMPRESSION, neg_pcompression);
1189     REJCIVOID(CI_ACCOMPRESSION, neg_accompression);
1190
1191     /*
1192      * If there are any remaining CIs, then this packet is bad.
1193      */
1194     if (len != 0)
1195         goto bad;
1196     /*
1197      * Now we can update state.
1198      */
1199     if (f->state != OPENED)
1200         *go = try;
1201     return 1;
1202
1203 bad:
1204     LCPDEBUG(("lcp_rejci: received bad Reject!"));
1205     return 0;
1206 }
1207
1208
1209 /*
1210  * lcp_reqci - Check the peer's requested CIs and send appropriate response.
1211  *
1212  * Returns: CONFACK, CONFNAK or CONFREJ and input packet modified
1213  * appropriately.  If reject_if_disagree is non-zero, doesn't return
1214  * CONFNAK; returns CONFREJ if it can't return CONFACK.
1215  */
1216 static int
1217 lcp_reqci(f, inp, lenp, reject_if_disagree)
1218     fsm *f;
1219     u_char *inp;                /* Requested CIs */
1220     int *lenp;                  /* Length of requested CIs */
1221     int reject_if_disagree;
1222 {
1223     lcp_options *go = &lcp_gotoptions[f->unit];
1224     lcp_options *ho = &lcp_hisoptions[f->unit];
1225     lcp_options *ao = &lcp_allowoptions[f->unit];
1226     u_char *cip, *next;         /* Pointer to current and next CIs */
1227     int cilen, citype, cichar;  /* Parsed len, type, char value */
1228     u_short cishort;            /* Parsed short value */
1229     u_int32_t cilong;           /* Parse long value */
1230     int rc = CONFACK;           /* Final packet return code */
1231     int orc;                    /* Individual option return code */
1232     u_char *p;                  /* Pointer to next char to parse */
1233     u_char *rejp;               /* Pointer to next char in reject frame */
1234     u_char *nakp;               /* Pointer to next char in Nak frame */
1235     int l = *lenp;              /* Length left */
1236
1237     /*
1238      * Reset all his options.
1239      */
1240     BZERO(ho, sizeof(*ho));
1241
1242     /*
1243      * Process all his options.
1244      */
1245     next = inp;
1246     nakp = nak_buffer;
1247     rejp = inp;
1248     while (l) {
1249         orc = CONFACK;                  /* Assume success */
1250         cip = p = next;                 /* Remember begining of CI */
1251         if (l < 2 ||                    /* Not enough data for CI header or */
1252             p[1] < 2 ||                 /*  CI length too small or */
1253             p[1] > l) {                 /*  CI length too big? */
1254             LCPDEBUG(("lcp_reqci: bad CI length!"));
1255             orc = CONFREJ;              /* Reject bad CI */
1256             cilen = l;                  /* Reject till end of packet */
1257             l = 0;                      /* Don't loop again */
1258             citype = 0;
1259             goto endswitch;
1260         }
1261         GETCHAR(citype, p);             /* Parse CI type */
1262         GETCHAR(cilen, p);              /* Parse CI length */
1263         l -= cilen;                     /* Adjust remaining length */
1264         next += cilen;                  /* Step to next CI */
1265
1266         switch (citype) {               /* Check CI type */
1267         case CI_MRU:
1268             if (!ao->neg_mru ||         /* Allow option? */
1269                 cilen != CILEN_SHORT) { /* Check CI length */
1270                 orc = CONFREJ;          /* Reject CI */
1271                 break;
1272             }
1273             GETSHORT(cishort, p);       /* Parse MRU */
1274
1275             /*
1276              * He must be able to receive at least our minimum.
1277              * No need to check a maximum.  If he sends a large number,
1278              * we'll just ignore it.
1279              */
1280             if (cishort < MINMRU) {
1281                 orc = CONFNAK;          /* Nak CI */
1282                 PUTCHAR(CI_MRU, nakp);
1283                 PUTCHAR(CILEN_SHORT, nakp);
1284                 PUTSHORT(MINMRU, nakp); /* Give him a hint */
1285                 break;
1286             }
1287             ho->neg_mru = 1;            /* Remember he sent MRU */
1288             ho->mru = cishort;          /* And remember value */
1289             break;
1290
1291         case CI_ASYNCMAP:
1292             if (!ao->neg_asyncmap ||
1293                 cilen != CILEN_LONG) {
1294                 orc = CONFREJ;
1295                 break;
1296             }
1297             GETLONG(cilong, p);
1298
1299             /*
1300              * Asyncmap must have set at least the bits
1301              * which are set in lcp_allowoptions[unit].asyncmap.
1302              */
1303             if ((ao->asyncmap & ~cilong) != 0) {
1304                 orc = CONFNAK;
1305                 PUTCHAR(CI_ASYNCMAP, nakp);
1306                 PUTCHAR(CILEN_LONG, nakp);
1307                 PUTLONG(ao->asyncmap | cilong, nakp);
1308                 break;
1309             }
1310             ho->neg_asyncmap = 1;
1311             ho->asyncmap = cilong;
1312             break;
1313
1314         case CI_AUTHTYPE:
1315             if (cilen < CILEN_SHORT ||
1316                 !(ao->neg_upap || ao->neg_chap)) {
1317                 /*
1318                  * Reject the option if we're not willing to authenticate.
1319                  */
1320                 orc = CONFREJ;
1321                 break;
1322             }
1323             GETSHORT(cishort, p);
1324
1325             /*
1326              * Authtype must be UPAP or CHAP.
1327              *
1328              * Note: if both ao->neg_upap and ao->neg_chap are set,
1329              * and the peer sends a Configure-Request with two
1330              * authenticate-protocol requests, one for CHAP and one
1331              * for UPAP, then we will reject the second request.
1332              * Whether we end up doing CHAP or UPAP depends then on
1333              * the ordering of the CIs in the peer's Configure-Request.
1334              */
1335
1336             if (cishort == PPP_PAP) {
1337                 if (ho->neg_chap ||     /* we've already accepted CHAP */
1338                     cilen != CILEN_SHORT) {
1339                     LCPDEBUG(("lcp_reqci: rcvd AUTHTYPE PAP, rejecting..."));
1340                     orc = CONFREJ;
1341                     break;
1342                 }
1343                 if (!ao->neg_upap) {    /* we don't want to do PAP */
1344                     orc = CONFNAK;      /* NAK it and suggest CHAP */
1345                     PUTCHAR(CI_AUTHTYPE, nakp);
1346                     PUTCHAR(CILEN_CHAP, nakp);
1347                     PUTSHORT(PPP_CHAP, nakp);
1348                     PUTCHAR(ao->chap_mdtype, nakp);
1349                     break;
1350                 }
1351                 ho->neg_upap = 1;
1352                 break;
1353             }
1354             if (cishort == PPP_CHAP) {
1355                 if (ho->neg_upap ||     /* we've already accepted PAP */
1356                     cilen != CILEN_CHAP) {
1357                     LCPDEBUG(("lcp_reqci: rcvd AUTHTYPE CHAP, rejecting..."));
1358                     orc = CONFREJ;
1359                     break;
1360                 }
1361                 if (!ao->neg_chap) {    /* we don't want to do CHAP */
1362                     orc = CONFNAK;      /* NAK it and suggest PAP */
1363                     PUTCHAR(CI_AUTHTYPE, nakp);
1364                     PUTCHAR(CILEN_SHORT, nakp);
1365                     PUTSHORT(PPP_PAP, nakp);
1366                     break;
1367                 }
1368                 GETCHAR(cichar, p);     /* get digest type*/
1369                 if (cichar != CHAP_DIGEST_MD5
1370 #ifdef CHAPMS
1371                     && cichar != CHAP_MICROSOFT
1372 #endif
1373                     ) {
1374                     orc = CONFNAK;
1375                     PUTCHAR(CI_AUTHTYPE, nakp);
1376                     PUTCHAR(CILEN_CHAP, nakp);
1377                     PUTSHORT(PPP_CHAP, nakp);
1378                     PUTCHAR(ao->chap_mdtype, nakp);
1379                     break;
1380                 }
1381                 ho->chap_mdtype = cichar; /* save md type */
1382                 ho->neg_chap = 1;
1383                 break;
1384             }
1385
1386             /*
1387              * We don't recognize the protocol they're asking for.
1388              * Nak it with something we're willing to do.
1389              * (At this point we know ao->neg_upap || ao->neg_chap.)
1390              */
1391             orc = CONFNAK;
1392             PUTCHAR(CI_AUTHTYPE, nakp);
1393             if (ao->neg_chap) {
1394                 PUTCHAR(CILEN_CHAP, nakp);
1395                 PUTSHORT(PPP_CHAP, nakp);
1396                 PUTCHAR(ao->chap_mdtype, nakp);
1397             } else {
1398                 PUTCHAR(CILEN_SHORT, nakp);
1399                 PUTSHORT(PPP_PAP, nakp);
1400             }
1401             break;
1402
1403         case CI_QUALITY:
1404             if (!ao->neg_lqr ||
1405                 cilen != CILEN_LQR) {
1406                 orc = CONFREJ;
1407                 break;
1408             }
1409
1410             GETSHORT(cishort, p);
1411             GETLONG(cilong, p);
1412
1413             /*
1414              * Check the protocol and the reporting period.
1415              * XXX When should we Nak this, and what with?
1416              */
1417             if (cishort != PPP_LQR) {
1418                 orc = CONFNAK;
1419                 PUTCHAR(CI_QUALITY, nakp);
1420                 PUTCHAR(CILEN_LQR, nakp);
1421                 PUTSHORT(PPP_LQR, nakp);
1422                 PUTLONG(ao->lqr_period, nakp);
1423                 break;
1424             }
1425             break;
1426
1427         case CI_MAGICNUMBER:
1428             if (!(ao->neg_magicnumber || go->neg_magicnumber) ||
1429                 cilen != CILEN_LONG) {
1430                 orc = CONFREJ;
1431                 break;
1432             }
1433             GETLONG(cilong, p);
1434
1435             /*
1436              * He must have a different magic number.
1437              */
1438             if (go->neg_magicnumber &&
1439                 cilong == go->magicnumber) {
1440                 cilong = magic();       /* Don't put magic() inside macro! */
1441                 orc = CONFNAK;
1442                 PUTCHAR(CI_MAGICNUMBER, nakp);
1443                 PUTCHAR(CILEN_LONG, nakp);
1444                 PUTLONG(cilong, nakp);
1445                 break;
1446             }
1447             ho->neg_magicnumber = 1;
1448             ho->magicnumber = cilong;
1449             break;
1450
1451
1452         case CI_PCOMPRESSION:
1453             if (!ao->neg_pcompression ||
1454                 cilen != CILEN_VOID) {
1455                 orc = CONFREJ;
1456                 break;
1457             }
1458             ho->neg_pcompression = 1;
1459             break;
1460
1461         case CI_ACCOMPRESSION:
1462             if (!ao->neg_accompression ||
1463                 cilen != CILEN_VOID) {
1464                 orc = CONFREJ;
1465                 break;
1466             }
1467             ho->neg_accompression = 1;
1468             break;
1469
1470         default:
1471             LCPDEBUG(("lcp_reqci: rcvd unknown option %d", citype));
1472             orc = CONFREJ;
1473             break;
1474         }
1475
1476 endswitch:
1477         if (orc == CONFACK &&           /* Good CI */
1478             rc != CONFACK)              /*  but prior CI wasnt? */
1479             continue;                   /* Don't send this one */
1480
1481         if (orc == CONFNAK) {           /* Nak this CI? */
1482             if (reject_if_disagree      /* Getting fed up with sending NAKs? */
1483                 && citype != CI_MAGICNUMBER) {
1484                 orc = CONFREJ;          /* Get tough if so */
1485             } else {
1486                 if (rc == CONFREJ)      /* Rejecting prior CI? */
1487                     continue;           /* Don't send this one */
1488                 rc = CONFNAK;
1489             }
1490         }
1491         if (orc == CONFREJ) {           /* Reject this CI */
1492             rc = CONFREJ;
1493             if (cip != rejp)            /* Need to move rejected CI? */
1494                 BCOPY(cip, rejp, cilen); /* Move it */
1495             INCPTR(cilen, rejp);        /* Update output pointer */
1496         }
1497     }
1498
1499     /*
1500      * If we wanted to send additional NAKs (for unsent CIs), the
1501      * code would go here.  The extra NAKs would go at *nakp.
1502      * At present there are no cases where we want to ask the
1503      * peer to negotiate an option.
1504      */
1505
1506     switch (rc) {
1507     case CONFACK:
1508         *lenp = next - inp;
1509         break;
1510     case CONFNAK:
1511         /*
1512          * Copy the Nak'd options from the nak_buffer to the caller's buffer.
1513          */
1514         *lenp = nakp - nak_buffer;
1515         BCOPY(nak_buffer, inp, *lenp);
1516         break;
1517     case CONFREJ:
1518         *lenp = rejp - inp;
1519         break;
1520     }
1521
1522     LCPDEBUG(("lcp_reqci: returning CONF%s.", CODENAME(rc)));
1523     return (rc);                        /* Return final code */
1524 }
1525
1526
1527 /*
1528  * lcp_up - LCP has come UP.
1529  */
1530 static void
1531 lcp_up(f)
1532     fsm *f;
1533 {
1534     lcp_options *wo = &lcp_wantoptions[f->unit];
1535     lcp_options *ho = &lcp_hisoptions[f->unit];
1536     lcp_options *go = &lcp_gotoptions[f->unit];
1537     lcp_options *ao = &lcp_allowoptions[f->unit];
1538
1539     if (!go->neg_magicnumber)
1540         go->magicnumber = 0;
1541     if (!ho->neg_magicnumber)
1542         ho->magicnumber = 0;
1543
1544     /*
1545      * Set our MTU to the smaller of the MTU we wanted and
1546      * the MRU our peer wanted.  If we negotiated an MRU,
1547      * set our MRU to the larger of value we wanted and
1548      * the value we got in the negotiation.
1549      */
1550     ppp_send_config(f->unit, MIN(ao->mru, (ho->neg_mru? ho->mru: PPP_MRU)),
1551                     (ho->neg_asyncmap? ho->asyncmap: 0xffffffff),
1552                     ho->neg_pcompression, ho->neg_accompression);
1553     ppp_recv_config(f->unit, (go->neg_mru? MAX(wo->mru, go->mru): PPP_MRU),
1554                     (lax_recv? 0: go->neg_asyncmap? go->asyncmap: 0xffffffff),
1555                     go->neg_pcompression, go->neg_accompression);
1556
1557     if (ho->neg_mru)
1558         peer_mru[f->unit] = ho->mru;
1559
1560     lcp_echo_lowerup(f->unit);  /* Enable echo messages */
1561
1562     link_established(f->unit);
1563 }
1564
1565
1566 /*
1567  * lcp_down - LCP has gone DOWN.
1568  *
1569  * Alert other protocols.
1570  */
1571 static void
1572 lcp_down(f)
1573     fsm *f;
1574 {
1575     lcp_options *go = &lcp_gotoptions[f->unit];
1576
1577     lcp_echo_lowerdown(f->unit);
1578
1579     link_down(f->unit);
1580
1581     ppp_send_config(f->unit, PPP_MRU, 0xffffffff, 0, 0);
1582     ppp_recv_config(f->unit, PPP_MRU,
1583                     (go->neg_asyncmap? go->asyncmap: 0xffffffff),
1584                     go->neg_pcompression, go->neg_accompression);
1585     peer_mru[f->unit] = PPP_MRU;
1586 }
1587
1588
1589 /*
1590  * lcp_starting - LCP needs the lower layer up.
1591  */
1592 static void
1593 lcp_starting(f)
1594     fsm *f;
1595 {
1596     link_required(f->unit);
1597 }
1598
1599
1600 /*
1601  * lcp_finished - LCP has finished with the lower layer.
1602  */
1603 static void
1604 lcp_finished(f)
1605     fsm *f;
1606 {
1607     link_terminated(f->unit);
1608 }
1609
1610
1611 /*
1612  * lcp_printpkt - print the contents of an LCP packet.
1613  */
1614 static char *lcp_codenames[] = {
1615     "ConfReq", "ConfAck", "ConfNak", "ConfRej",
1616     "TermReq", "TermAck", "CodeRej", "ProtRej",
1617     "EchoReq", "EchoRep", "DiscReq"
1618 };
1619
1620 static int
1621 lcp_printpkt(p, plen, printer, arg)
1622     u_char *p;
1623     int plen;
1624     void (*printer) __P((void *, char *, ...));
1625     void *arg;
1626 {
1627     int code, id, len, olen;
1628     u_char *pstart, *optend;
1629     u_short cishort;
1630     u_int32_t cilong;
1631
1632     if (plen < HEADERLEN)
1633         return 0;
1634     pstart = p;
1635     GETCHAR(code, p);
1636     GETCHAR(id, p);
1637     GETSHORT(len, p);
1638     if (len < HEADERLEN || len > plen)
1639         return 0;
1640
1641     if (code >= 1 && code <= sizeof(lcp_codenames) / sizeof(char *))
1642         printer(arg, " %s", lcp_codenames[code-1]);
1643     else
1644         printer(arg, " code=0x%x", code);
1645     printer(arg, " id=0x%x", id);
1646     len -= HEADERLEN;
1647     switch (code) {
1648     case CONFREQ:
1649     case CONFACK:
1650     case CONFNAK:
1651     case CONFREJ:
1652         /* print option list */
1653         while (len >= 2) {
1654             GETCHAR(code, p);
1655             GETCHAR(olen, p);
1656             p -= 2;
1657             if (olen < 2 || olen > len) {
1658                 break;
1659             }
1660             printer(arg, " <");
1661             len -= olen;
1662             optend = p + olen;
1663             switch (code) {
1664             case CI_MRU:
1665                 if (olen == CILEN_SHORT) {
1666                     p += 2;
1667                     GETSHORT(cishort, p);
1668                     printer(arg, "mru %d", cishort);
1669                 }
1670                 break;
1671             case CI_ASYNCMAP:
1672                 if (olen == CILEN_LONG) {
1673                     p += 2;
1674                     GETLONG(cilong, p);
1675                     printer(arg, "asyncmap 0x%x", cilong);
1676                 }
1677                 break;
1678             case CI_AUTHTYPE:
1679                 if (olen >= CILEN_SHORT) {
1680                     p += 2;
1681                     printer(arg, "auth ");
1682                     GETSHORT(cishort, p);
1683                     switch (cishort) {
1684                     case PPP_PAP:
1685                         printer(arg, "pap");
1686                         break;
1687                     case PPP_CHAP:
1688                         printer(arg, "chap");
1689                         if (p < optend) {
1690                             switch (*p) {
1691                             case CHAP_DIGEST_MD5:
1692                                 printer(arg, " MD5");
1693                                 ++p;
1694                                 break;
1695 #ifdef CHAPMS
1696                             case CHAP_MICROSOFT:
1697                                 printer(arg, " m$oft");
1698                                 ++p;
1699                                 break;
1700 #endif
1701                             }
1702                         }
1703                         break;
1704                     default:
1705                         printer(arg, "0x%x", cishort);
1706                     }
1707                 }
1708                 break;
1709             case CI_QUALITY:
1710                 if (olen >= CILEN_SHORT) {
1711                     p += 2;
1712                     printer(arg, "quality ");
1713                     GETSHORT(cishort, p);
1714                     switch (cishort) {
1715                     case PPP_LQR:
1716                         printer(arg, "lqr");
1717                         break;
1718                     default:
1719                         printer(arg, "0x%x", cishort);
1720                     }
1721                 }
1722                 break;
1723             case CI_CALLBACK:
1724                 if (olen >= CILEN_CHAR) {
1725                     p += 2;
1726                     printer(arg, "callback ");
1727                     GETCHAR(cishort, p);
1728                     switch (cishort) {
1729                     case CBCP_OPT:
1730                         printer(arg, "CBCP");
1731                         break;
1732                     default:
1733                         printer(arg, "0x%x", cishort);
1734                     }
1735                 }
1736                 break;
1737             case CI_MAGICNUMBER:
1738                 if (olen == CILEN_LONG) {
1739                     p += 2;
1740                     GETLONG(cilong, p);
1741                     printer(arg, "magic 0x%x", cilong);
1742                 }
1743                 break;
1744             case CI_PCOMPRESSION:
1745                 if (olen == CILEN_VOID) {
1746                     p += 2;
1747                     printer(arg, "pcomp");
1748                 }
1749                 break;
1750             case CI_ACCOMPRESSION:
1751                 if (olen == CILEN_VOID) {
1752                     p += 2;
1753                     printer(arg, "accomp");
1754                 }
1755                 break;
1756             }
1757             while (p < optend) {
1758                 GETCHAR(code, p);
1759                 printer(arg, " %.2x", code);
1760             }
1761             printer(arg, ">");
1762         }
1763         break;
1764
1765     case TERMACK:
1766     case TERMREQ:
1767         if (len > 0 && *p >= ' ' && *p < 0x7f) {
1768             printer(arg, " ");
1769             print_string(p, len, printer, arg);
1770             p += len;
1771             len = 0;
1772         }
1773         break;
1774
1775     case ECHOREQ:
1776     case ECHOREP:
1777     case DISCREQ:
1778         if (len >= 4) {
1779             GETLONG(cilong, p);
1780             printer(arg, " magic=0x%x", cilong);
1781             p += 4;
1782             len -= 4;
1783         }
1784         break;
1785     }
1786
1787     /* print the rest of the bytes in the packet */
1788     for (; len > 0; --len) {
1789         GETCHAR(code, p);
1790         printer(arg, " %.2x", code);
1791     }
1792
1793     return p - pstart;
1794 }
1795
1796 /*
1797  * Time to shut down the link because there is nothing out there.
1798  */
1799
1800 static
1801 void LcpLinkFailure (f)
1802     fsm *f;
1803 {
1804     if (f->state == OPENED) {
1805         info("No response to %d echo-requests", lcp_echos_pending);
1806         notice("Serial link appears to be disconnected.");
1807         lcp_close(f->unit, "Peer not responding");
1808         status = EXIT_PEER_DEAD;
1809     }
1810 }
1811
1812 /*
1813  * Timer expired for the LCP echo requests from this process.
1814  */
1815
1816 static void
1817 LcpEchoCheck (f)
1818     fsm *f;
1819 {
1820     LcpSendEchoRequest (f);
1821
1822     /*
1823      * Start the timer for the next interval.
1824      */
1825     if (lcp_echo_timer_running)
1826         warn("assertion lcp_echo_timer_running==0 failed");
1827     TIMEOUT (LcpEchoTimeout, f, lcp_echo_interval);
1828     lcp_echo_timer_running = 1;
1829 }
1830
1831 /*
1832  * LcpEchoTimeout - Timer expired on the LCP echo
1833  */
1834
1835 static void
1836 LcpEchoTimeout (arg)
1837     void *arg;
1838 {
1839     if (lcp_echo_timer_running != 0) {
1840         lcp_echo_timer_running = 0;
1841         LcpEchoCheck ((fsm *) arg);
1842     }
1843 }
1844
1845 /*
1846  * LcpEchoReply - LCP has received a reply to the echo
1847  */
1848
1849 static void
1850 lcp_received_echo_reply (f, id, inp, len)
1851     fsm *f;
1852     int id; u_char *inp; int len;
1853 {
1854     u_int32_t magic;
1855
1856     /* Check the magic number - don't count replies from ourselves. */
1857     if (len < 4) {
1858         dbglog("lcp: received short Echo-Reply, length %d", len);
1859         return;
1860     }
1861     GETLONG(magic, inp);
1862     if (lcp_gotoptions[f->unit].neg_magicnumber
1863         && magic == lcp_gotoptions[f->unit].magicnumber) {
1864         warn("appear to have received our own echo-reply!");
1865         return;
1866     }
1867
1868     /* Reset the number of outstanding echo frames */
1869     lcp_echos_pending = 0;
1870 }
1871
1872 /*
1873  * LcpSendEchoRequest - Send an echo request frame to the peer
1874  */
1875
1876 static void
1877 LcpSendEchoRequest (f)
1878     fsm *f;
1879 {
1880     u_int32_t lcp_magic;
1881     u_char pkt[4], *pktp;
1882
1883     /*
1884      * Detect the failure of the peer at this point.
1885      */
1886     if (lcp_echo_fails != 0) {
1887         if (lcp_echos_pending >= lcp_echo_fails) {
1888             LcpLinkFailure(f);
1889             lcp_echos_pending = 0;
1890         }
1891     }
1892
1893     /*
1894      * Make and send the echo request frame.
1895      */
1896     if (f->state == OPENED) {
1897         lcp_magic = lcp_gotoptions[f->unit].magicnumber;
1898         pktp = pkt;
1899         PUTLONG(lcp_magic, pktp);
1900         fsm_sdata(f, ECHOREQ, lcp_echo_number++ & 0xFF, pkt, pktp - pkt);
1901         ++lcp_echos_pending;
1902     }
1903 }
1904
1905 /*
1906  * lcp_echo_lowerup - Start the timer for the LCP frame
1907  */
1908
1909 static void
1910 lcp_echo_lowerup (unit)
1911     int unit;
1912 {
1913     fsm *f = &lcp_fsm[unit];
1914
1915     /* Clear the parameters for generating echo frames */
1916     lcp_echos_pending      = 0;
1917     lcp_echo_number        = 0;
1918     lcp_echo_timer_running = 0;
1919   
1920     /* If a timeout interval is specified then start the timer */
1921     if (lcp_echo_interval != 0)
1922         LcpEchoCheck (f);
1923 }
1924
1925 /*
1926  * lcp_echo_lowerdown - Stop the timer for the LCP frame
1927  */
1928
1929 static void
1930 lcp_echo_lowerdown (unit)
1931     int unit;
1932 {
1933     fsm *f = &lcp_fsm[unit];
1934
1935     if (lcp_echo_timer_running != 0) {
1936         UNTIMEOUT (LcpEchoTimeout, f);
1937         lcp_echo_timer_running = 0;
1938     }
1939 }