]> git.ozlabs.org Git - ppp.git/blob - pppd/lcp.c
kill warning
[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 const char rcsid[] = "$Id: lcp.c,v 1.43 1999/08/12 04:25:21 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     { "nomagic", 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                 status = EXIT_LOOPBACK;
1060             }
1061         } else
1062             try.numloops = 0;
1063         *go = try;
1064     }
1065
1066     return 1;
1067
1068 bad:
1069     LCPDEBUG(("lcp_nakci: received bad Nak!"));
1070     return 0;
1071 }
1072
1073
1074 /*
1075  * lcp_rejci - Peer has Rejected some of our CIs.
1076  * This should not modify any state if the Reject is bad
1077  * or if LCP is in the OPENED state.
1078  *
1079  * Returns:
1080  *      0 - Reject was bad.
1081  *      1 - Reject was good.
1082  */
1083 static int
1084 lcp_rejci(f, p, len)
1085     fsm *f;
1086     u_char *p;
1087     int len;
1088 {
1089     lcp_options *go = &lcp_gotoptions[f->unit];
1090     u_char cichar;
1091     u_short cishort;
1092     u_int32_t cilong;
1093     lcp_options try;            /* options to request next time */
1094
1095     try = *go;
1096
1097     /*
1098      * Any Rejected CIs must be in exactly the same order that we sent.
1099      * Check packet length and CI length at each step.
1100      * If we find any deviations, then this packet is bad.
1101      */
1102 #define REJCIVOID(opt, neg) \
1103     if (go->neg && \
1104         len >= CILEN_VOID && \
1105         p[1] == CILEN_VOID && \
1106         p[0] == opt) { \
1107         len -= CILEN_VOID; \
1108         INCPTR(CILEN_VOID, p); \
1109         try.neg = 0; \
1110     }
1111 #define REJCISHORT(opt, neg, val) \
1112     if (go->neg && \
1113         len >= CILEN_SHORT && \
1114         p[1] == CILEN_SHORT && \
1115         p[0] == opt) { \
1116         len -= CILEN_SHORT; \
1117         INCPTR(2, p); \
1118         GETSHORT(cishort, p); \
1119         /* Check rejected value. */ \
1120         if (cishort != val) \
1121             goto bad; \
1122         try.neg = 0; \
1123     }
1124 #define REJCICHAP(opt, neg, val, digest) \
1125     if (go->neg && \
1126         len >= CILEN_CHAP && \
1127         p[1] == CILEN_CHAP && \
1128         p[0] == opt) { \
1129         len -= CILEN_CHAP; \
1130         INCPTR(2, p); \
1131         GETSHORT(cishort, p); \
1132         GETCHAR(cichar, p); \
1133         /* Check rejected value. */ \
1134         if (cishort != val || cichar != digest) \
1135             goto bad; \
1136         try.neg = 0; \
1137         try.neg_upap = 0; \
1138     }
1139 #define REJCILONG(opt, neg, val) \
1140     if (go->neg && \
1141         len >= CILEN_LONG && \
1142         p[1] == CILEN_LONG && \
1143         p[0] == opt) { \
1144         len -= CILEN_LONG; \
1145         INCPTR(2, p); \
1146         GETLONG(cilong, p); \
1147         /* Check rejected value. */ \
1148         if (cilong != val) \
1149             goto bad; \
1150         try.neg = 0; \
1151     }
1152 #define REJCILQR(opt, neg, val) \
1153     if (go->neg && \
1154         len >= CILEN_LQR && \
1155         p[1] == CILEN_LQR && \
1156         p[0] == opt) { \
1157         len -= CILEN_LQR; \
1158         INCPTR(2, p); \
1159         GETSHORT(cishort, p); \
1160         GETLONG(cilong, p); \
1161         /* Check rejected value. */ \
1162         if (cishort != PPP_LQR || cilong != val) \
1163             goto bad; \
1164         try.neg = 0; \
1165     }
1166 #define REJCICBCP(opt, neg, val) \
1167     if (go->neg && \
1168         len >= CILEN_CBCP && \
1169         p[1] == CILEN_CBCP && \
1170         p[0] == opt) { \
1171         len -= CILEN_CBCP; \
1172         INCPTR(2, p); \
1173         GETCHAR(cichar, p); \
1174         /* Check rejected value. */ \
1175         if (cichar != val) \
1176             goto bad; \
1177         try.neg = 0; \
1178     }
1179
1180     REJCISHORT(CI_MRU, neg_mru, go->mru);
1181     REJCILONG(CI_ASYNCMAP, neg_asyncmap, go->asyncmap);
1182     REJCICHAP(CI_AUTHTYPE, neg_chap, PPP_CHAP, go->chap_mdtype);
1183     if (!go->neg_chap) {
1184         REJCISHORT(CI_AUTHTYPE, neg_upap, PPP_PAP);
1185     }
1186     REJCILQR(CI_QUALITY, neg_lqr, go->lqr_period);
1187     REJCICBCP(CI_CALLBACK, neg_cbcp, CBCP_OPT);
1188     REJCILONG(CI_MAGICNUMBER, neg_magicnumber, go->magicnumber);
1189     REJCIVOID(CI_PCOMPRESSION, neg_pcompression);
1190     REJCIVOID(CI_ACCOMPRESSION, neg_accompression);
1191
1192     /*
1193      * If there are any remaining CIs, then this packet is bad.
1194      */
1195     if (len != 0)
1196         goto bad;
1197     /*
1198      * Now we can update state.
1199      */
1200     if (f->state != OPENED)
1201         *go = try;
1202     return 1;
1203
1204 bad:
1205     LCPDEBUG(("lcp_rejci: received bad Reject!"));
1206     return 0;
1207 }
1208
1209
1210 /*
1211  * lcp_reqci - Check the peer's requested CIs and send appropriate response.
1212  *
1213  * Returns: CONFACK, CONFNAK or CONFREJ and input packet modified
1214  * appropriately.  If reject_if_disagree is non-zero, doesn't return
1215  * CONFNAK; returns CONFREJ if it can't return CONFACK.
1216  */
1217 static int
1218 lcp_reqci(f, inp, lenp, reject_if_disagree)
1219     fsm *f;
1220     u_char *inp;                /* Requested CIs */
1221     int *lenp;                  /* Length of requested CIs */
1222     int reject_if_disagree;
1223 {
1224     lcp_options *go = &lcp_gotoptions[f->unit];
1225     lcp_options *ho = &lcp_hisoptions[f->unit];
1226     lcp_options *ao = &lcp_allowoptions[f->unit];
1227     u_char *cip, *next;         /* Pointer to current and next CIs */
1228     int cilen, citype, cichar;  /* Parsed len, type, char value */
1229     u_short cishort;            /* Parsed short value */
1230     u_int32_t cilong;           /* Parse long value */
1231     int rc = CONFACK;           /* Final packet return code */
1232     int orc;                    /* Individual option return code */
1233     u_char *p;                  /* Pointer to next char to parse */
1234     u_char *rejp;               /* Pointer to next char in reject frame */
1235     u_char *nakp;               /* Pointer to next char in Nak frame */
1236     int l = *lenp;              /* Length left */
1237
1238     /*
1239      * Reset all his options.
1240      */
1241     BZERO(ho, sizeof(*ho));
1242
1243     /*
1244      * Process all his options.
1245      */
1246     next = inp;
1247     nakp = nak_buffer;
1248     rejp = inp;
1249     while (l) {
1250         orc = CONFACK;                  /* Assume success */
1251         cip = p = next;                 /* Remember begining of CI */
1252         if (l < 2 ||                    /* Not enough data for CI header or */
1253             p[1] < 2 ||                 /*  CI length too small or */
1254             p[1] > l) {                 /*  CI length too big? */
1255             LCPDEBUG(("lcp_reqci: bad CI length!"));
1256             orc = CONFREJ;              /* Reject bad CI */
1257             cilen = l;                  /* Reject till end of packet */
1258             l = 0;                      /* Don't loop again */
1259             citype = 0;
1260             goto endswitch;
1261         }
1262         GETCHAR(citype, p);             /* Parse CI type */
1263         GETCHAR(cilen, p);              /* Parse CI length */
1264         l -= cilen;                     /* Adjust remaining length */
1265         next += cilen;                  /* Step to next CI */
1266
1267         switch (citype) {               /* Check CI type */
1268         case CI_MRU:
1269             if (!ao->neg_mru ||         /* Allow option? */
1270                 cilen != CILEN_SHORT) { /* Check CI length */
1271                 orc = CONFREJ;          /* Reject CI */
1272                 break;
1273             }
1274             GETSHORT(cishort, p);       /* Parse MRU */
1275
1276             /*
1277              * He must be able to receive at least our minimum.
1278              * No need to check a maximum.  If he sends a large number,
1279              * we'll just ignore it.
1280              */
1281             if (cishort < MINMRU) {
1282                 orc = CONFNAK;          /* Nak CI */
1283                 PUTCHAR(CI_MRU, nakp);
1284                 PUTCHAR(CILEN_SHORT, nakp);
1285                 PUTSHORT(MINMRU, nakp); /* Give him a hint */
1286                 break;
1287             }
1288             ho->neg_mru = 1;            /* Remember he sent MRU */
1289             ho->mru = cishort;          /* And remember value */
1290             break;
1291
1292         case CI_ASYNCMAP:
1293             if (!ao->neg_asyncmap ||
1294                 cilen != CILEN_LONG) {
1295                 orc = CONFREJ;
1296                 break;
1297             }
1298             GETLONG(cilong, p);
1299
1300             /*
1301              * Asyncmap must have set at least the bits
1302              * which are set in lcp_allowoptions[unit].asyncmap.
1303              */
1304             if ((ao->asyncmap & ~cilong) != 0) {
1305                 orc = CONFNAK;
1306                 PUTCHAR(CI_ASYNCMAP, nakp);
1307                 PUTCHAR(CILEN_LONG, nakp);
1308                 PUTLONG(ao->asyncmap | cilong, nakp);
1309                 break;
1310             }
1311             ho->neg_asyncmap = 1;
1312             ho->asyncmap = cilong;
1313             break;
1314
1315         case CI_AUTHTYPE:
1316             if (cilen < CILEN_SHORT ||
1317                 !(ao->neg_upap || ao->neg_chap)) {
1318                 /*
1319                  * Reject the option if we're not willing to authenticate.
1320                  */
1321                 orc = CONFREJ;
1322                 break;
1323             }
1324             GETSHORT(cishort, p);
1325
1326             /*
1327              * Authtype must be UPAP or CHAP.
1328              *
1329              * Note: if both ao->neg_upap and ao->neg_chap are set,
1330              * and the peer sends a Configure-Request with two
1331              * authenticate-protocol requests, one for CHAP and one
1332              * for UPAP, then we will reject the second request.
1333              * Whether we end up doing CHAP or UPAP depends then on
1334              * the ordering of the CIs in the peer's Configure-Request.
1335              */
1336
1337             if (cishort == PPP_PAP) {
1338                 if (ho->neg_chap ||     /* we've already accepted CHAP */
1339                     cilen != CILEN_SHORT) {
1340                     LCPDEBUG(("lcp_reqci: rcvd AUTHTYPE PAP, rejecting..."));
1341                     orc = CONFREJ;
1342                     break;
1343                 }
1344                 if (!ao->neg_upap) {    /* we don't want to do PAP */
1345                     orc = CONFNAK;      /* NAK it and suggest CHAP */
1346                     PUTCHAR(CI_AUTHTYPE, nakp);
1347                     PUTCHAR(CILEN_CHAP, nakp);
1348                     PUTSHORT(PPP_CHAP, nakp);
1349                     PUTCHAR(ao->chap_mdtype, nakp);
1350                     break;
1351                 }
1352                 ho->neg_upap = 1;
1353                 break;
1354             }
1355             if (cishort == PPP_CHAP) {
1356                 if (ho->neg_upap ||     /* we've already accepted PAP */
1357                     cilen != CILEN_CHAP) {
1358                     LCPDEBUG(("lcp_reqci: rcvd AUTHTYPE CHAP, rejecting..."));
1359                     orc = CONFREJ;
1360                     break;
1361                 }
1362                 if (!ao->neg_chap) {    /* we don't want to do CHAP */
1363                     orc = CONFNAK;      /* NAK it and suggest PAP */
1364                     PUTCHAR(CI_AUTHTYPE, nakp);
1365                     PUTCHAR(CILEN_SHORT, nakp);
1366                     PUTSHORT(PPP_PAP, nakp);
1367                     break;
1368                 }
1369                 GETCHAR(cichar, p);     /* get digest type*/
1370                 if (cichar != CHAP_DIGEST_MD5
1371 #ifdef CHAPMS
1372                     && cichar != CHAP_MICROSOFT
1373 #endif
1374                     ) {
1375                     orc = CONFNAK;
1376                     PUTCHAR(CI_AUTHTYPE, nakp);
1377                     PUTCHAR(CILEN_CHAP, nakp);
1378                     PUTSHORT(PPP_CHAP, nakp);
1379                     PUTCHAR(ao->chap_mdtype, nakp);
1380                     break;
1381                 }
1382                 ho->chap_mdtype = cichar; /* save md type */
1383                 ho->neg_chap = 1;
1384                 break;
1385             }
1386
1387             /*
1388              * We don't recognize the protocol they're asking for.
1389              * Nak it with something we're willing to do.
1390              * (At this point we know ao->neg_upap || ao->neg_chap.)
1391              */
1392             orc = CONFNAK;
1393             PUTCHAR(CI_AUTHTYPE, nakp);
1394             if (ao->neg_chap) {
1395                 PUTCHAR(CILEN_CHAP, nakp);
1396                 PUTSHORT(PPP_CHAP, nakp);
1397                 PUTCHAR(ao->chap_mdtype, nakp);
1398             } else {
1399                 PUTCHAR(CILEN_SHORT, nakp);
1400                 PUTSHORT(PPP_PAP, nakp);
1401             }
1402             break;
1403
1404         case CI_QUALITY:
1405             if (!ao->neg_lqr ||
1406                 cilen != CILEN_LQR) {
1407                 orc = CONFREJ;
1408                 break;
1409             }
1410
1411             GETSHORT(cishort, p);
1412             GETLONG(cilong, p);
1413
1414             /*
1415              * Check the protocol and the reporting period.
1416              * XXX When should we Nak this, and what with?
1417              */
1418             if (cishort != PPP_LQR) {
1419                 orc = CONFNAK;
1420                 PUTCHAR(CI_QUALITY, nakp);
1421                 PUTCHAR(CILEN_LQR, nakp);
1422                 PUTSHORT(PPP_LQR, nakp);
1423                 PUTLONG(ao->lqr_period, nakp);
1424                 break;
1425             }
1426             break;
1427
1428         case CI_MAGICNUMBER:
1429             if (!(ao->neg_magicnumber || go->neg_magicnumber) ||
1430                 cilen != CILEN_LONG) {
1431                 orc = CONFREJ;
1432                 break;
1433             }
1434             GETLONG(cilong, p);
1435
1436             /*
1437              * He must have a different magic number.
1438              */
1439             if (go->neg_magicnumber &&
1440                 cilong == go->magicnumber) {
1441                 cilong = magic();       /* Don't put magic() inside macro! */
1442                 orc = CONFNAK;
1443                 PUTCHAR(CI_MAGICNUMBER, nakp);
1444                 PUTCHAR(CILEN_LONG, nakp);
1445                 PUTLONG(cilong, nakp);
1446                 break;
1447             }
1448             ho->neg_magicnumber = 1;
1449             ho->magicnumber = cilong;
1450             break;
1451
1452
1453         case CI_PCOMPRESSION:
1454             if (!ao->neg_pcompression ||
1455                 cilen != CILEN_VOID) {
1456                 orc = CONFREJ;
1457                 break;
1458             }
1459             ho->neg_pcompression = 1;
1460             break;
1461
1462         case CI_ACCOMPRESSION:
1463             if (!ao->neg_accompression ||
1464                 cilen != CILEN_VOID) {
1465                 orc = CONFREJ;
1466                 break;
1467             }
1468             ho->neg_accompression = 1;
1469             break;
1470
1471         default:
1472             LCPDEBUG(("lcp_reqci: rcvd unknown option %d", citype));
1473             orc = CONFREJ;
1474             break;
1475         }
1476
1477 endswitch:
1478         if (orc == CONFACK &&           /* Good CI */
1479             rc != CONFACK)              /*  but prior CI wasnt? */
1480             continue;                   /* Don't send this one */
1481
1482         if (orc == CONFNAK) {           /* Nak this CI? */
1483             if (reject_if_disagree      /* Getting fed up with sending NAKs? */
1484                 && citype != CI_MAGICNUMBER) {
1485                 orc = CONFREJ;          /* Get tough if so */
1486             } else {
1487                 if (rc == CONFREJ)      /* Rejecting prior CI? */
1488                     continue;           /* Don't send this one */
1489                 rc = CONFNAK;
1490             }
1491         }
1492         if (orc == CONFREJ) {           /* Reject this CI */
1493             rc = CONFREJ;
1494             if (cip != rejp)            /* Need to move rejected CI? */
1495                 BCOPY(cip, rejp, cilen); /* Move it */
1496             INCPTR(cilen, rejp);        /* Update output pointer */
1497         }
1498     }
1499
1500     /*
1501      * If we wanted to send additional NAKs (for unsent CIs), the
1502      * code would go here.  The extra NAKs would go at *nakp.
1503      * At present there are no cases where we want to ask the
1504      * peer to negotiate an option.
1505      */
1506
1507     switch (rc) {
1508     case CONFACK:
1509         *lenp = next - inp;
1510         break;
1511     case CONFNAK:
1512         /*
1513          * Copy the Nak'd options from the nak_buffer to the caller's buffer.
1514          */
1515         *lenp = nakp - nak_buffer;
1516         BCOPY(nak_buffer, inp, *lenp);
1517         break;
1518     case CONFREJ:
1519         *lenp = rejp - inp;
1520         break;
1521     }
1522
1523     LCPDEBUG(("lcp_reqci: returning CONF%s.", CODENAME(rc)));
1524     return (rc);                        /* Return final code */
1525 }
1526
1527
1528 /*
1529  * lcp_up - LCP has come UP.
1530  */
1531 static void
1532 lcp_up(f)
1533     fsm *f;
1534 {
1535     lcp_options *wo = &lcp_wantoptions[f->unit];
1536     lcp_options *ho = &lcp_hisoptions[f->unit];
1537     lcp_options *go = &lcp_gotoptions[f->unit];
1538     lcp_options *ao = &lcp_allowoptions[f->unit];
1539
1540     if (!go->neg_magicnumber)
1541         go->magicnumber = 0;
1542     if (!ho->neg_magicnumber)
1543         ho->magicnumber = 0;
1544
1545     /*
1546      * Set our MTU to the smaller of the MTU we wanted and
1547      * the MRU our peer wanted.  If we negotiated an MRU,
1548      * set our MRU to the larger of value we wanted and
1549      * the value we got in the negotiation.
1550      */
1551     ppp_send_config(f->unit, MIN(ao->mru, (ho->neg_mru? ho->mru: PPP_MRU)),
1552                     (ho->neg_asyncmap? ho->asyncmap: 0xffffffff),
1553                     ho->neg_pcompression, ho->neg_accompression);
1554     ppp_recv_config(f->unit, (go->neg_mru? MAX(wo->mru, go->mru): PPP_MRU),
1555                     (lax_recv? 0: go->neg_asyncmap? go->asyncmap: 0xffffffff),
1556                     go->neg_pcompression, go->neg_accompression);
1557
1558     if (ho->neg_mru)
1559         peer_mru[f->unit] = ho->mru;
1560
1561     lcp_echo_lowerup(f->unit);  /* Enable echo messages */
1562
1563     link_established(f->unit);
1564 }
1565
1566
1567 /*
1568  * lcp_down - LCP has gone DOWN.
1569  *
1570  * Alert other protocols.
1571  */
1572 static void
1573 lcp_down(f)
1574     fsm *f;
1575 {
1576     lcp_options *go = &lcp_gotoptions[f->unit];
1577
1578     lcp_echo_lowerdown(f->unit);
1579
1580     link_down(f->unit);
1581
1582     ppp_send_config(f->unit, PPP_MRU, 0xffffffff, 0, 0);
1583     ppp_recv_config(f->unit, PPP_MRU,
1584                     (go->neg_asyncmap? go->asyncmap: 0xffffffff),
1585                     go->neg_pcompression, go->neg_accompression);
1586     peer_mru[f->unit] = PPP_MRU;
1587 }
1588
1589
1590 /*
1591  * lcp_starting - LCP needs the lower layer up.
1592  */
1593 static void
1594 lcp_starting(f)
1595     fsm *f;
1596 {
1597     link_required(f->unit);
1598 }
1599
1600
1601 /*
1602  * lcp_finished - LCP has finished with the lower layer.
1603  */
1604 static void
1605 lcp_finished(f)
1606     fsm *f;
1607 {
1608     link_terminated(f->unit);
1609 }
1610
1611
1612 /*
1613  * lcp_printpkt - print the contents of an LCP packet.
1614  */
1615 static char *lcp_codenames[] = {
1616     "ConfReq", "ConfAck", "ConfNak", "ConfRej",
1617     "TermReq", "TermAck", "CodeRej", "ProtRej",
1618     "EchoReq", "EchoRep", "DiscReq"
1619 };
1620
1621 static int
1622 lcp_printpkt(p, plen, printer, arg)
1623     u_char *p;
1624     int plen;
1625     void (*printer) __P((void *, char *, ...));
1626     void *arg;
1627 {
1628     int code, id, len, olen;
1629     u_char *pstart, *optend;
1630     u_short cishort;
1631     u_int32_t cilong;
1632
1633     if (plen < HEADERLEN)
1634         return 0;
1635     pstart = p;
1636     GETCHAR(code, p);
1637     GETCHAR(id, p);
1638     GETSHORT(len, p);
1639     if (len < HEADERLEN || len > plen)
1640         return 0;
1641
1642     if (code >= 1 && code <= sizeof(lcp_codenames) / sizeof(char *))
1643         printer(arg, " %s", lcp_codenames[code-1]);
1644     else
1645         printer(arg, " code=0x%x", code);
1646     printer(arg, " id=0x%x", id);
1647     len -= HEADERLEN;
1648     switch (code) {
1649     case CONFREQ:
1650     case CONFACK:
1651     case CONFNAK:
1652     case CONFREJ:
1653         /* print option list */
1654         while (len >= 2) {
1655             GETCHAR(code, p);
1656             GETCHAR(olen, p);
1657             p -= 2;
1658             if (olen < 2 || olen > len) {
1659                 break;
1660             }
1661             printer(arg, " <");
1662             len -= olen;
1663             optend = p + olen;
1664             switch (code) {
1665             case CI_MRU:
1666                 if (olen == CILEN_SHORT) {
1667                     p += 2;
1668                     GETSHORT(cishort, p);
1669                     printer(arg, "mru %d", cishort);
1670                 }
1671                 break;
1672             case CI_ASYNCMAP:
1673                 if (olen == CILEN_LONG) {
1674                     p += 2;
1675                     GETLONG(cilong, p);
1676                     printer(arg, "asyncmap 0x%x", cilong);
1677                 }
1678                 break;
1679             case CI_AUTHTYPE:
1680                 if (olen >= CILEN_SHORT) {
1681                     p += 2;
1682                     printer(arg, "auth ");
1683                     GETSHORT(cishort, p);
1684                     switch (cishort) {
1685                     case PPP_PAP:
1686                         printer(arg, "pap");
1687                         break;
1688                     case PPP_CHAP:
1689                         printer(arg, "chap");
1690                         if (p < optend) {
1691                             switch (*p) {
1692                             case CHAP_DIGEST_MD5:
1693                                 printer(arg, " MD5");
1694                                 ++p;
1695                                 break;
1696 #ifdef CHAPMS
1697                             case CHAP_MICROSOFT:
1698                                 printer(arg, " m$oft");
1699                                 ++p;
1700                                 break;
1701 #endif
1702                             }
1703                         }
1704                         break;
1705                     default:
1706                         printer(arg, "0x%x", cishort);
1707                     }
1708                 }
1709                 break;
1710             case CI_QUALITY:
1711                 if (olen >= CILEN_SHORT) {
1712                     p += 2;
1713                     printer(arg, "quality ");
1714                     GETSHORT(cishort, p);
1715                     switch (cishort) {
1716                     case PPP_LQR:
1717                         printer(arg, "lqr");
1718                         break;
1719                     default:
1720                         printer(arg, "0x%x", cishort);
1721                     }
1722                 }
1723                 break;
1724             case CI_CALLBACK:
1725                 if (olen >= CILEN_CHAR) {
1726                     p += 2;
1727                     printer(arg, "callback ");
1728                     GETCHAR(cishort, p);
1729                     switch (cishort) {
1730                     case CBCP_OPT:
1731                         printer(arg, "CBCP");
1732                         break;
1733                     default:
1734                         printer(arg, "0x%x", cishort);
1735                     }
1736                 }
1737                 break;
1738             case CI_MAGICNUMBER:
1739                 if (olen == CILEN_LONG) {
1740                     p += 2;
1741                     GETLONG(cilong, p);
1742                     printer(arg, "magic 0x%x", cilong);
1743                 }
1744                 break;
1745             case CI_PCOMPRESSION:
1746                 if (olen == CILEN_VOID) {
1747                     p += 2;
1748                     printer(arg, "pcomp");
1749                 }
1750                 break;
1751             case CI_ACCOMPRESSION:
1752                 if (olen == CILEN_VOID) {
1753                     p += 2;
1754                     printer(arg, "accomp");
1755                 }
1756                 break;
1757             }
1758             while (p < optend) {
1759                 GETCHAR(code, p);
1760                 printer(arg, " %.2x", code);
1761             }
1762             printer(arg, ">");
1763         }
1764         break;
1765
1766     case TERMACK:
1767     case TERMREQ:
1768         if (len > 0 && *p >= ' ' && *p < 0x7f) {
1769             printer(arg, " ");
1770             print_string(p, len, printer, arg);
1771             p += len;
1772             len = 0;
1773         }
1774         break;
1775
1776     case ECHOREQ:
1777     case ECHOREP:
1778     case DISCREQ:
1779         if (len >= 4) {
1780             GETLONG(cilong, p);
1781             printer(arg, " magic=0x%x", cilong);
1782             p += 4;
1783             len -= 4;
1784         }
1785         break;
1786     }
1787
1788     /* print the rest of the bytes in the packet */
1789     for (; len > 0; --len) {
1790         GETCHAR(code, p);
1791         printer(arg, " %.2x", code);
1792     }
1793
1794     return p - pstart;
1795 }
1796
1797 /*
1798  * Time to shut down the link because there is nothing out there.
1799  */
1800
1801 static
1802 void LcpLinkFailure (f)
1803     fsm *f;
1804 {
1805     if (f->state == OPENED) {
1806         info("No response to %d echo-requests", lcp_echos_pending);
1807         notice("Serial link appears to be disconnected.");
1808         lcp_close(f->unit, "Peer not responding");
1809         status = EXIT_PEER_DEAD;
1810     }
1811 }
1812
1813 /*
1814  * Timer expired for the LCP echo requests from this process.
1815  */
1816
1817 static void
1818 LcpEchoCheck (f)
1819     fsm *f;
1820 {
1821     LcpSendEchoRequest (f);
1822     if (f->state != OPENED)
1823         return;
1824
1825     /*
1826      * Start the timer for the next interval.
1827      */
1828     if (lcp_echo_timer_running)
1829         warn("assertion lcp_echo_timer_running==0 failed");
1830     TIMEOUT (LcpEchoTimeout, f, lcp_echo_interval);
1831     lcp_echo_timer_running = 1;
1832 }
1833
1834 /*
1835  * LcpEchoTimeout - Timer expired on the LCP echo
1836  */
1837
1838 static void
1839 LcpEchoTimeout (arg)
1840     void *arg;
1841 {
1842     if (lcp_echo_timer_running != 0) {
1843         lcp_echo_timer_running = 0;
1844         LcpEchoCheck ((fsm *) arg);
1845     }
1846 }
1847
1848 /*
1849  * LcpEchoReply - LCP has received a reply to the echo
1850  */
1851
1852 static void
1853 lcp_received_echo_reply (f, id, inp, len)
1854     fsm *f;
1855     int id; u_char *inp; int len;
1856 {
1857     u_int32_t magic;
1858
1859     /* Check the magic number - don't count replies from ourselves. */
1860     if (len < 4) {
1861         dbglog("lcp: received short Echo-Reply, length %d", len);
1862         return;
1863     }
1864     GETLONG(magic, inp);
1865     if (lcp_gotoptions[f->unit].neg_magicnumber
1866         && magic == lcp_gotoptions[f->unit].magicnumber) {
1867         warn("appear to have received our own echo-reply!");
1868         return;
1869     }
1870
1871     /* Reset the number of outstanding echo frames */
1872     lcp_echos_pending = 0;
1873 }
1874
1875 /*
1876  * LcpSendEchoRequest - Send an echo request frame to the peer
1877  */
1878
1879 static void
1880 LcpSendEchoRequest (f)
1881     fsm *f;
1882 {
1883     u_int32_t lcp_magic;
1884     u_char pkt[4], *pktp;
1885
1886     /*
1887      * Detect the failure of the peer at this point.
1888      */
1889     if (lcp_echo_fails != 0) {
1890         if (lcp_echos_pending >= lcp_echo_fails) {
1891             LcpLinkFailure(f);
1892             lcp_echos_pending = 0;
1893         }
1894     }
1895
1896     /*
1897      * Make and send the echo request frame.
1898      */
1899     if (f->state == OPENED) {
1900         lcp_magic = lcp_gotoptions[f->unit].magicnumber;
1901         pktp = pkt;
1902         PUTLONG(lcp_magic, pktp);
1903         fsm_sdata(f, ECHOREQ, lcp_echo_number++ & 0xFF, pkt, pktp - pkt);
1904         ++lcp_echos_pending;
1905     }
1906 }
1907
1908 /*
1909  * lcp_echo_lowerup - Start the timer for the LCP frame
1910  */
1911
1912 static void
1913 lcp_echo_lowerup (unit)
1914     int unit;
1915 {
1916     fsm *f = &lcp_fsm[unit];
1917
1918     /* Clear the parameters for generating echo frames */
1919     lcp_echos_pending      = 0;
1920     lcp_echo_number        = 0;
1921     lcp_echo_timer_running = 0;
1922   
1923     /* If a timeout interval is specified then start the timer */
1924     if (lcp_echo_interval != 0)
1925         LcpEchoCheck (f);
1926 }
1927
1928 /*
1929  * lcp_echo_lowerdown - Stop the timer for the LCP frame
1930  */
1931
1932 static void
1933 lcp_echo_lowerdown (unit)
1934     int unit;
1935 {
1936     fsm *f = &lcp_fsm[unit];
1937
1938     if (lcp_echo_timer_running != 0) {
1939         UNTIMEOUT (LcpEchoTimeout, f);
1940         lcp_echo_timer_running = 0;
1941     }
1942 }