Add winbind plugin from Andrew Bartlet.
[mpls-ppp.git] / pppd / lcp.c
blobdde1381abae4c95ca89d662f36da3b002950f913
1 /*
2 * lcp.c - PPP Link Control Protocol.
4 * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
18 * 3. The name "Carnegie Mellon University" must not be used to
19 * endorse or promote products derived from this software without
20 * prior written permission. For permission or any legal
21 * details, please contact
22 * Office of Technology Transfer
23 * Carnegie Mellon University
24 * 5000 Forbes Avenue
25 * Pittsburgh, PA 15213-3890
26 * (412) 268-4387, fax: (412) 268-7395
27 * tech-transfer@andrew.cmu.edu
29 * 4. Redistributions of any form whatsoever must retain the following
30 * acknowledgment:
31 * "This product includes software developed by Computing Services
32 * at Carnegie Mellon University (http://www.cmu.edu/computing/)."
34 * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
35 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
36 * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
37 * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
38 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
39 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
40 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
43 #define RCSID "$Id: lcp.c,v 1.71 2004/10/31 22:23:18 paulus Exp $"
46 * TODO:
49 #include <stdio.h>
50 #include <string.h>
51 #include <stdlib.h>
53 #include "pppd.h"
54 #include "fsm.h"
55 #include "lcp.h"
56 #include "chap-new.h"
57 #include "magic.h"
59 static const char rcsid[] = RCSID;
62 * When the link comes up we want to be able to wait for a short while,
63 * or until seeing some input from the peer, before starting to send
64 * configure-requests. We do this by delaying the fsm_lowerup call.
66 /* steal a bit in fsm flags word */
67 #define DELAYED_UP 0x100
69 static void lcp_delayed_up __P((void *));
72 * LCP-related command-line options.
74 int lcp_echo_interval = 0; /* Interval between LCP echo-requests */
75 int lcp_echo_fails = 0; /* Tolerance to unanswered echo-requests */
76 bool lax_recv = 0; /* accept control chars in asyncmap */
77 bool noendpoint = 0; /* don't send/accept endpoint discriminator */
79 static int noopt __P((char **));
81 #ifdef HAVE_MULTILINK
82 static int setendpoint __P((char **));
83 static void printendpoint __P((option_t *, void (*)(void *, char *, ...),
84 void *));
85 #endif /* HAVE_MULTILINK */
87 static option_t lcp_option_list[] = {
88 /* LCP options */
89 { "-all", o_special_noarg, (void *)noopt,
90 "Don't request/allow any LCP options" },
92 { "noaccomp", o_bool, &lcp_wantoptions[0].neg_accompression,
93 "Disable address/control compression",
94 OPT_A2CLR, &lcp_allowoptions[0].neg_accompression },
95 { "-ac", o_bool, &lcp_wantoptions[0].neg_accompression,
96 "Disable address/control compression",
97 OPT_ALIAS | OPT_A2CLR, &lcp_allowoptions[0].neg_accompression },
99 { "asyncmap", o_uint32, &lcp_wantoptions[0].asyncmap,
100 "Set asyncmap (for received packets)",
101 OPT_OR, &lcp_wantoptions[0].neg_asyncmap },
102 { "-as", o_uint32, &lcp_wantoptions[0].asyncmap,
103 "Set asyncmap (for received packets)",
104 OPT_ALIAS | OPT_OR, &lcp_wantoptions[0].neg_asyncmap },
105 { "default-asyncmap", o_uint32, &lcp_wantoptions[0].asyncmap,
106 "Disable asyncmap negotiation",
107 OPT_OR | OPT_NOARG | OPT_VAL(~0U) | OPT_A2CLR,
108 &lcp_allowoptions[0].neg_asyncmap },
109 { "-am", o_uint32, &lcp_wantoptions[0].asyncmap,
110 "Disable asyncmap negotiation",
111 OPT_ALIAS | OPT_OR | OPT_NOARG | OPT_VAL(~0U) | OPT_A2CLR,
112 &lcp_allowoptions[0].neg_asyncmap },
114 { "nomagic", o_bool, &lcp_wantoptions[0].neg_magicnumber,
115 "Disable magic number negotiation (looped-back line detection)",
116 OPT_A2CLR, &lcp_allowoptions[0].neg_magicnumber },
117 { "-mn", o_bool, &lcp_wantoptions[0].neg_magicnumber,
118 "Disable magic number negotiation (looped-back line detection)",
119 OPT_ALIAS | OPT_A2CLR, &lcp_allowoptions[0].neg_magicnumber },
121 { "mru", o_int, &lcp_wantoptions[0].mru,
122 "Set MRU (maximum received packet size) for negotiation",
123 OPT_PRIO, &lcp_wantoptions[0].neg_mru },
124 { "default-mru", o_bool, &lcp_wantoptions[0].neg_mru,
125 "Disable MRU negotiation (use default 1500)",
126 OPT_PRIOSUB | OPT_A2CLR, &lcp_allowoptions[0].neg_mru },
127 { "-mru", o_bool, &lcp_wantoptions[0].neg_mru,
128 "Disable MRU negotiation (use default 1500)",
129 OPT_ALIAS | OPT_PRIOSUB | OPT_A2CLR, &lcp_allowoptions[0].neg_mru },
131 { "mtu", o_int, &lcp_allowoptions[0].mru,
132 "Set our MTU", OPT_LIMITS, NULL, MAXMRU, MINMRU },
134 { "nopcomp", o_bool, &lcp_wantoptions[0].neg_pcompression,
135 "Disable protocol field compression",
136 OPT_A2CLR, &lcp_allowoptions[0].neg_pcompression },
137 { "-pc", o_bool, &lcp_wantoptions[0].neg_pcompression,
138 "Disable protocol field compression",
139 OPT_ALIAS | OPT_A2CLR, &lcp_allowoptions[0].neg_pcompression },
141 { "passive", o_bool, &lcp_wantoptions[0].passive,
142 "Set passive mode", 1 },
143 { "-p", o_bool, &lcp_wantoptions[0].passive,
144 "Set passive mode", OPT_ALIAS | 1 },
146 { "silent", o_bool, &lcp_wantoptions[0].silent,
147 "Set silent mode", 1 },
149 { "lcp-echo-failure", o_int, &lcp_echo_fails,
150 "Set number of consecutive echo failures to indicate link failure",
151 OPT_PRIO },
152 { "lcp-echo-interval", o_int, &lcp_echo_interval,
153 "Set time in seconds between LCP echo requests", OPT_PRIO },
154 { "lcp-restart", o_int, &lcp_fsm[0].timeouttime,
155 "Set time in seconds between LCP retransmissions", OPT_PRIO },
156 { "lcp-max-terminate", o_int, &lcp_fsm[0].maxtermtransmits,
157 "Set maximum number of LCP terminate-request transmissions", OPT_PRIO },
158 { "lcp-max-configure", o_int, &lcp_fsm[0].maxconfreqtransmits,
159 "Set maximum number of LCP configure-request transmissions", OPT_PRIO },
160 { "lcp-max-failure", o_int, &lcp_fsm[0].maxnakloops,
161 "Set limit on number of LCP configure-naks", OPT_PRIO },
163 { "receive-all", o_bool, &lax_recv,
164 "Accept all received control characters", 1 },
166 #ifdef HAVE_MULTILINK
167 { "mrru", o_int, &lcp_wantoptions[0].mrru,
168 "Maximum received packet size for multilink bundle",
169 OPT_PRIO, &lcp_wantoptions[0].neg_mrru },
171 { "mpshortseq", o_bool, &lcp_wantoptions[0].neg_ssnhf,
172 "Use short sequence numbers in multilink headers",
173 OPT_PRIO | 1, &lcp_allowoptions[0].neg_ssnhf },
174 { "nompshortseq", o_bool, &lcp_wantoptions[0].neg_ssnhf,
175 "Don't use short sequence numbers in multilink headers",
176 OPT_PRIOSUB | OPT_A2CLR, &lcp_allowoptions[0].neg_ssnhf },
178 { "endpoint", o_special, (void *) setendpoint,
179 "Endpoint discriminator for multilink",
180 OPT_PRIO | OPT_A2PRINTER, (void *) printendpoint },
181 #endif /* HAVE_MULTILINK */
183 { "noendpoint", o_bool, &noendpoint,
184 "Don't send or accept multilink endpoint discriminator", 1 },
186 {NULL}
189 /* global vars */
190 fsm lcp_fsm[NUM_PPP]; /* LCP fsm structure (global)*/
191 lcp_options lcp_wantoptions[NUM_PPP]; /* Options that we want to request */
192 lcp_options lcp_gotoptions[NUM_PPP]; /* Options that peer ack'd */
193 lcp_options lcp_allowoptions[NUM_PPP]; /* Options we allow peer to request */
194 lcp_options lcp_hisoptions[NUM_PPP]; /* Options that we ack'd */
196 static int lcp_echos_pending = 0; /* Number of outstanding echo msgs */
197 static int lcp_echo_number = 0; /* ID number of next echo frame */
198 static int lcp_echo_timer_running = 0; /* set if a timer is running */
200 static u_char nak_buffer[PPP_MRU]; /* where we construct a nak packet */
203 * Callbacks for fsm code. (CI = Configuration Information)
205 static void lcp_resetci __P((fsm *)); /* Reset our CI */
206 static int lcp_cilen __P((fsm *)); /* Return length of our CI */
207 static void lcp_addci __P((fsm *, u_char *, int *)); /* Add our CI to pkt */
208 static int lcp_ackci __P((fsm *, u_char *, int)); /* Peer ack'd our CI */
209 static int lcp_nakci __P((fsm *, u_char *, int)); /* Peer nak'd our CI */
210 static int lcp_rejci __P((fsm *, u_char *, int)); /* Peer rej'd our CI */
211 static int lcp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv peer CI */
212 static void lcp_up __P((fsm *)); /* We're UP */
213 static void lcp_down __P((fsm *)); /* We're DOWN */
214 static void lcp_starting __P((fsm *)); /* We need lower layer up */
215 static void lcp_finished __P((fsm *)); /* We need lower layer down */
216 static int lcp_extcode __P((fsm *, int, int, u_char *, int));
217 static void lcp_rprotrej __P((fsm *, u_char *, int));
220 * routines to send LCP echos to peer
223 static void lcp_echo_lowerup __P((int));
224 static void lcp_echo_lowerdown __P((int));
225 static void LcpEchoTimeout __P((void *));
226 static void lcp_received_echo_reply __P((fsm *, int, u_char *, int));
227 static void LcpSendEchoRequest __P((fsm *));
228 static void LcpLinkFailure __P((fsm *));
229 static void LcpEchoCheck __P((fsm *));
231 static fsm_callbacks lcp_callbacks = { /* LCP callback routines */
232 lcp_resetci, /* Reset our Configuration Information */
233 lcp_cilen, /* Length of our Configuration Information */
234 lcp_addci, /* Add our Configuration Information */
235 lcp_ackci, /* ACK our Configuration Information */
236 lcp_nakci, /* NAK our Configuration Information */
237 lcp_rejci, /* Reject our Configuration Information */
238 lcp_reqci, /* Request peer's Configuration Information */
239 lcp_up, /* Called when fsm reaches OPENED state */
240 lcp_down, /* Called when fsm leaves OPENED state */
241 lcp_starting, /* Called when we want the lower layer up */
242 lcp_finished, /* Called when we want the lower layer down */
243 NULL, /* Called when Protocol-Reject received */
244 NULL, /* Retransmission is necessary */
245 lcp_extcode, /* Called to handle LCP-specific codes */
246 "LCP" /* String name of protocol */
250 * Protocol entry points.
251 * Some of these are called directly.
254 static void lcp_init __P((int));
255 static void lcp_input __P((int, u_char *, int));
256 static void lcp_protrej __P((int));
257 static int lcp_printpkt __P((u_char *, int,
258 void (*) __P((void *, char *, ...)), void *));
260 struct protent lcp_protent = {
261 PPP_LCP,
262 lcp_init,
263 lcp_input,
264 lcp_protrej,
265 lcp_lowerup,
266 lcp_lowerdown,
267 lcp_open,
268 lcp_close,
269 lcp_printpkt,
270 NULL,
272 "LCP",
273 NULL,
274 lcp_option_list,
275 NULL,
276 NULL,
277 NULL
280 int lcp_loopbackfail = DEFLOOPBACKFAIL;
283 * Length of each type of configuration option (in octets)
285 #define CILEN_VOID 2
286 #define CILEN_CHAR 3
287 #define CILEN_SHORT 4 /* CILEN_VOID + 2 */
288 #define CILEN_CHAP 5 /* CILEN_VOID + 2 + 1 */
289 #define CILEN_LONG 6 /* CILEN_VOID + 4 */
290 #define CILEN_LQR 8 /* CILEN_VOID + 2 + 4 */
291 #define CILEN_CBCP 3
293 #define CODENAME(x) ((x) == CONFACK ? "ACK" : \
294 (x) == CONFNAK ? "NAK" : "REJ")
297 * noopt - Disable all options (why?).
299 static int
300 noopt(argv)
301 char **argv;
303 BZERO((char *) &lcp_wantoptions[0], sizeof (struct lcp_options));
304 BZERO((char *) &lcp_allowoptions[0], sizeof (struct lcp_options));
306 return (1);
309 #ifdef HAVE_MULTILINK
310 static int
311 setendpoint(argv)
312 char **argv;
314 if (str_to_epdisc(&lcp_wantoptions[0].endpoint, *argv)) {
315 lcp_wantoptions[0].neg_endpoint = 1;
316 return 1;
318 option_error("Can't parse '%s' as an endpoint discriminator", *argv);
319 return 0;
322 static void
323 printendpoint(opt, printer, arg)
324 option_t *opt;
325 void (*printer) __P((void *, char *, ...));
326 void *arg;
328 printer(arg, "%s", epdisc_to_str(&lcp_wantoptions[0].endpoint));
330 #endif /* HAVE_MULTILINK */
333 * lcp_init - Initialize LCP.
335 static void
336 lcp_init(unit)
337 int unit;
339 fsm *f = &lcp_fsm[unit];
340 lcp_options *wo = &lcp_wantoptions[unit];
341 lcp_options *ao = &lcp_allowoptions[unit];
343 f->unit = unit;
344 f->protocol = PPP_LCP;
345 f->callbacks = &lcp_callbacks;
347 fsm_init(f);
349 BZERO(wo, sizeof(*wo));
350 wo->neg_mru = 1;
351 wo->mru = DEFMRU;
352 wo->neg_asyncmap = 1;
353 wo->neg_magicnumber = 1;
354 wo->neg_pcompression = 1;
355 wo->neg_accompression = 1;
357 BZERO(ao, sizeof(*ao));
358 ao->neg_mru = 1;
359 ao->mru = MAXMRU;
360 ao->neg_asyncmap = 1;
361 ao->neg_chap = 1;
362 ao->chap_mdtype = chap_mdtype_all;
363 ao->neg_upap = 1;
364 ao->neg_eap = 1;
365 ao->neg_magicnumber = 1;
366 ao->neg_pcompression = 1;
367 ao->neg_accompression = 1;
368 #ifdef CBCP_SUPPORT
369 ao->neg_cbcp = 1;
370 #endif
371 ao->neg_endpoint = 1;
376 * lcp_open - LCP is allowed to come up.
378 void
379 lcp_open(unit)
380 int unit;
382 fsm *f = &lcp_fsm[unit];
383 lcp_options *wo = &lcp_wantoptions[unit];
385 f->flags &= ~(OPT_PASSIVE | OPT_SILENT);
386 if (wo->passive)
387 f->flags |= OPT_PASSIVE;
388 if (wo->silent)
389 f->flags |= OPT_SILENT;
390 fsm_open(f);
395 * lcp_close - Take LCP down.
397 void
398 lcp_close(unit, reason)
399 int unit;
400 char *reason;
402 fsm *f = &lcp_fsm[unit];
404 if (phase != PHASE_DEAD)
405 new_phase(PHASE_TERMINATE);
406 if (f->state == STOPPED && f->flags & (OPT_PASSIVE|OPT_SILENT)) {
408 * This action is not strictly according to the FSM in RFC1548,
409 * but it does mean that the program terminates if you do a
410 * lcp_close() in passive/silent mode when a connection hasn't
411 * been established.
413 f->state = CLOSED;
414 lcp_finished(f);
416 } else
417 fsm_close(f, reason);
422 * lcp_lowerup - The lower layer is up.
424 void
425 lcp_lowerup(unit)
426 int unit;
428 lcp_options *wo = &lcp_wantoptions[unit];
429 fsm *f = &lcp_fsm[unit];
432 * Don't use A/C or protocol compression on transmission,
433 * but accept A/C and protocol compressed packets
434 * if we are going to ask for A/C and protocol compression.
436 if (ppp_send_config(unit, PPP_MRU, 0xffffffff, 0, 0) < 0
437 || ppp_recv_config(unit, PPP_MRU, (lax_recv? 0: 0xffffffff),
438 wo->neg_pcompression, wo->neg_accompression) < 0)
439 return;
440 peer_mru[unit] = PPP_MRU;
442 if (listen_time != 0) {
443 f->flags |= DELAYED_UP;
444 timeout(lcp_delayed_up, f, 0, listen_time * 1000);
445 } else
446 fsm_lowerup(f);
451 * lcp_lowerdown - The lower layer is down.
453 void
454 lcp_lowerdown(unit)
455 int unit;
457 fsm *f = &lcp_fsm[unit];
459 if (f->flags & DELAYED_UP)
460 f->flags &= ~DELAYED_UP;
461 else
462 fsm_lowerdown(&lcp_fsm[unit]);
467 * lcp_delayed_up - Bring the lower layer up now.
469 static void
470 lcp_delayed_up(arg)
471 void *arg;
473 fsm *f = arg;
475 if (f->flags & DELAYED_UP) {
476 f->flags &= ~DELAYED_UP;
477 fsm_lowerup(f);
483 * lcp_input - Input LCP packet.
485 static void
486 lcp_input(unit, p, len)
487 int unit;
488 u_char *p;
489 int len;
491 fsm *f = &lcp_fsm[unit];
493 if (f->flags & DELAYED_UP) {
494 f->flags &= ~DELAYED_UP;
495 fsm_lowerup(f);
497 fsm_input(f, p, len);
502 * lcp_extcode - Handle a LCP-specific code.
504 static int
505 lcp_extcode(f, code, id, inp, len)
506 fsm *f;
507 int code, id;
508 u_char *inp;
509 int len;
511 u_char *magp;
513 switch( code ){
514 case PROTREJ:
515 lcp_rprotrej(f, inp, len);
516 break;
518 case ECHOREQ:
519 if (f->state != OPENED)
520 break;
521 magp = inp;
522 PUTLONG(lcp_gotoptions[f->unit].magicnumber, magp);
523 fsm_sdata(f, ECHOREP, id, inp, len);
524 break;
526 case ECHOREP:
527 lcp_received_echo_reply(f, id, inp, len);
528 break;
530 case DISCREQ:
531 break;
533 default:
534 return 0;
536 return 1;
541 * lcp_rprotrej - Receive an Protocol-Reject.
543 * Figure out which protocol is rejected and inform it.
545 static void
546 lcp_rprotrej(f, inp, len)
547 fsm *f;
548 u_char *inp;
549 int len;
551 int i;
552 struct protent *protp;
553 u_short prot;
555 if (len < 2) {
556 LCPDEBUG(("lcp_rprotrej: Rcvd short Protocol-Reject packet!"));
557 return;
560 GETSHORT(prot, inp);
563 * Protocol-Reject packets received in any state other than the LCP
564 * OPENED state SHOULD be silently discarded.
566 if( f->state != OPENED ){
567 LCPDEBUG(("Protocol-Reject discarded: LCP in state %d", f->state));
568 return;
572 * Upcall the proper Protocol-Reject routine.
574 for (i = 0; (protp = protocols[i]) != NULL; ++i)
575 if (protp->protocol == prot && protp->enabled_flag) {
576 (*protp->protrej)(f->unit);
577 return;
580 warn("Protocol-Reject for unsupported protocol 0x%x", prot);
585 * lcp_protrej - A Protocol-Reject was received.
587 /*ARGSUSED*/
588 static void
589 lcp_protrej(unit)
590 int unit;
593 * Can't reject LCP!
595 error("Received Protocol-Reject for LCP!");
596 fsm_protreject(&lcp_fsm[unit]);
601 * lcp_sprotrej - Send a Protocol-Reject for some protocol.
603 void
604 lcp_sprotrej(unit, p, len)
605 int unit;
606 u_char *p;
607 int len;
610 * Send back the protocol and the information field of the
611 * rejected packet. We only get here if LCP is in the OPENED state.
613 p += 2;
614 len -= 2;
616 fsm_sdata(&lcp_fsm[unit], PROTREJ, ++lcp_fsm[unit].id,
617 p, len);
622 * lcp_resetci - Reset our CI.
624 static void
625 lcp_resetci(f)
626 fsm *f;
628 lcp_options *wo = &lcp_wantoptions[f->unit];
629 lcp_options *go = &lcp_gotoptions[f->unit];
630 lcp_options *ao = &lcp_allowoptions[f->unit];
632 wo->magicnumber = magic();
633 wo->numloops = 0;
634 *go = *wo;
635 if (!multilink) {
636 go->neg_mrru = 0;
637 go->neg_ssnhf = 0;
638 go->neg_endpoint = 0;
640 if (noendpoint)
641 ao->neg_endpoint = 0;
642 peer_mru[f->unit] = PPP_MRU;
643 auth_reset(f->unit);
648 * lcp_cilen - Return length of our CI.
650 static int
651 lcp_cilen(f)
652 fsm *f;
654 lcp_options *go = &lcp_gotoptions[f->unit];
656 #define LENCIVOID(neg) ((neg) ? CILEN_VOID : 0)
657 #define LENCICHAP(neg) ((neg) ? CILEN_CHAP : 0)
658 #define LENCISHORT(neg) ((neg) ? CILEN_SHORT : 0)
659 #define LENCILONG(neg) ((neg) ? CILEN_LONG : 0)
660 #define LENCILQR(neg) ((neg) ? CILEN_LQR: 0)
661 #define LENCICBCP(neg) ((neg) ? CILEN_CBCP: 0)
663 * NB: we only ask for one of CHAP, UPAP, or EAP, even if we will
664 * accept more than one. We prefer EAP first, then CHAP, then
665 * PAP.
667 return (LENCISHORT(go->neg_mru && go->mru != DEFMRU) +
668 LENCILONG(go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF) +
669 LENCISHORT(go->neg_eap) +
670 LENCICHAP(!go->neg_eap && go->neg_chap) +
671 LENCISHORT(!go->neg_eap && !go->neg_chap && go->neg_upap) +
672 LENCILQR(go->neg_lqr) +
673 LENCICBCP(go->neg_cbcp) +
674 LENCILONG(go->neg_magicnumber) +
675 LENCIVOID(go->neg_pcompression) +
676 LENCIVOID(go->neg_accompression) +
677 LENCISHORT(go->neg_mrru) +
678 LENCIVOID(go->neg_ssnhf) +
679 (go->neg_endpoint? CILEN_CHAR + go->endpoint.length: 0));
684 * lcp_addci - Add our desired CIs to a packet.
686 static void
687 lcp_addci(f, ucp, lenp)
688 fsm *f;
689 u_char *ucp;
690 int *lenp;
692 lcp_options *go = &lcp_gotoptions[f->unit];
693 u_char *start_ucp = ucp;
695 #define ADDCIVOID(opt, neg) \
696 if (neg) { \
697 PUTCHAR(opt, ucp); \
698 PUTCHAR(CILEN_VOID, ucp); \
700 #define ADDCISHORT(opt, neg, val) \
701 if (neg) { \
702 PUTCHAR(opt, ucp); \
703 PUTCHAR(CILEN_SHORT, ucp); \
704 PUTSHORT(val, ucp); \
706 #define ADDCICHAP(opt, neg, val) \
707 if (neg) { \
708 PUTCHAR((opt), ucp); \
709 PUTCHAR(CILEN_CHAP, ucp); \
710 PUTSHORT(PPP_CHAP, ucp); \
711 PUTCHAR((CHAP_DIGEST(val)), ucp); \
713 #define ADDCILONG(opt, neg, val) \
714 if (neg) { \
715 PUTCHAR(opt, ucp); \
716 PUTCHAR(CILEN_LONG, ucp); \
717 PUTLONG(val, ucp); \
719 #define ADDCILQR(opt, neg, val) \
720 if (neg) { \
721 PUTCHAR(opt, ucp); \
722 PUTCHAR(CILEN_LQR, ucp); \
723 PUTSHORT(PPP_LQR, ucp); \
724 PUTLONG(val, ucp); \
726 #define ADDCICHAR(opt, neg, val) \
727 if (neg) { \
728 PUTCHAR(opt, ucp); \
729 PUTCHAR(CILEN_CHAR, ucp); \
730 PUTCHAR(val, ucp); \
732 #define ADDCIENDP(opt, neg, class, val, len) \
733 if (neg) { \
734 int i; \
735 PUTCHAR(opt, ucp); \
736 PUTCHAR(CILEN_CHAR + len, ucp); \
737 PUTCHAR(class, ucp); \
738 for (i = 0; i < len; ++i) \
739 PUTCHAR(val[i], ucp); \
742 ADDCISHORT(CI_MRU, go->neg_mru && go->mru != DEFMRU, go->mru);
743 ADDCILONG(CI_ASYNCMAP, go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF,
744 go->asyncmap);
745 ADDCISHORT(CI_AUTHTYPE, go->neg_eap, PPP_EAP);
746 ADDCICHAP(CI_AUTHTYPE, !go->neg_eap && go->neg_chap, go->chap_mdtype);
747 ADDCISHORT(CI_AUTHTYPE, !go->neg_eap && !go->neg_chap && go->neg_upap,
748 PPP_PAP);
749 ADDCILQR(CI_QUALITY, go->neg_lqr, go->lqr_period);
750 ADDCICHAR(CI_CALLBACK, go->neg_cbcp, CBCP_OPT);
751 ADDCILONG(CI_MAGICNUMBER, go->neg_magicnumber, go->magicnumber);
752 ADDCIVOID(CI_PCOMPRESSION, go->neg_pcompression);
753 ADDCIVOID(CI_ACCOMPRESSION, go->neg_accompression);
754 ADDCISHORT(CI_MRRU, go->neg_mrru, go->mrru);
755 ADDCIVOID(CI_SSNHF, go->neg_ssnhf);
756 ADDCIENDP(CI_EPDISC, go->neg_endpoint, go->endpoint.class,
757 go->endpoint.value, go->endpoint.length);
759 if (ucp - start_ucp != *lenp) {
760 /* this should never happen, because peer_mtu should be 1500 */
761 error("Bug in lcp_addci: wrong length");
767 * lcp_ackci - Ack our CIs.
768 * This should not modify any state if the Ack is bad.
770 * Returns:
771 * 0 - Ack was bad.
772 * 1 - Ack was good.
774 static int
775 lcp_ackci(f, p, len)
776 fsm *f;
777 u_char *p;
778 int len;
780 lcp_options *go = &lcp_gotoptions[f->unit];
781 u_char cilen, citype, cichar;
782 u_short cishort;
783 u_int32_t cilong;
786 * CIs must be in exactly the same order that we sent.
787 * Check packet length and CI length at each step.
788 * If we find any deviations, then this packet is bad.
790 #define ACKCIVOID(opt, neg) \
791 if (neg) { \
792 if ((len -= CILEN_VOID) < 0) \
793 goto bad; \
794 GETCHAR(citype, p); \
795 GETCHAR(cilen, p); \
796 if (cilen != CILEN_VOID || \
797 citype != opt) \
798 goto bad; \
800 #define ACKCISHORT(opt, neg, val) \
801 if (neg) { \
802 if ((len -= CILEN_SHORT) < 0) \
803 goto bad; \
804 GETCHAR(citype, p); \
805 GETCHAR(cilen, p); \
806 if (cilen != CILEN_SHORT || \
807 citype != opt) \
808 goto bad; \
809 GETSHORT(cishort, p); \
810 if (cishort != val) \
811 goto bad; \
813 #define ACKCICHAR(opt, neg, val) \
814 if (neg) { \
815 if ((len -= CILEN_CHAR) < 0) \
816 goto bad; \
817 GETCHAR(citype, p); \
818 GETCHAR(cilen, p); \
819 if (cilen != CILEN_CHAR || \
820 citype != opt) \
821 goto bad; \
822 GETCHAR(cichar, p); \
823 if (cichar != val) \
824 goto bad; \
826 #define ACKCICHAP(opt, neg, val) \
827 if (neg) { \
828 if ((len -= CILEN_CHAP) < 0) \
829 goto bad; \
830 GETCHAR(citype, p); \
831 GETCHAR(cilen, p); \
832 if (cilen != CILEN_CHAP || \
833 citype != (opt)) \
834 goto bad; \
835 GETSHORT(cishort, p); \
836 if (cishort != PPP_CHAP) \
837 goto bad; \
838 GETCHAR(cichar, p); \
839 if (cichar != (CHAP_DIGEST(val))) \
840 goto bad; \
842 #define ACKCILONG(opt, neg, val) \
843 if (neg) { \
844 if ((len -= CILEN_LONG) < 0) \
845 goto bad; \
846 GETCHAR(citype, p); \
847 GETCHAR(cilen, p); \
848 if (cilen != CILEN_LONG || \
849 citype != opt) \
850 goto bad; \
851 GETLONG(cilong, p); \
852 if (cilong != val) \
853 goto bad; \
855 #define ACKCILQR(opt, neg, val) \
856 if (neg) { \
857 if ((len -= CILEN_LQR) < 0) \
858 goto bad; \
859 GETCHAR(citype, p); \
860 GETCHAR(cilen, p); \
861 if (cilen != CILEN_LQR || \
862 citype != opt) \
863 goto bad; \
864 GETSHORT(cishort, p); \
865 if (cishort != PPP_LQR) \
866 goto bad; \
867 GETLONG(cilong, p); \
868 if (cilong != val) \
869 goto bad; \
871 #define ACKCIENDP(opt, neg, class, val, vlen) \
872 if (neg) { \
873 int i; \
874 if ((len -= CILEN_CHAR + vlen) < 0) \
875 goto bad; \
876 GETCHAR(citype, p); \
877 GETCHAR(cilen, p); \
878 if (cilen != CILEN_CHAR + vlen || \
879 citype != opt) \
880 goto bad; \
881 GETCHAR(cichar, p); \
882 if (cichar != class) \
883 goto bad; \
884 for (i = 0; i < vlen; ++i) { \
885 GETCHAR(cichar, p); \
886 if (cichar != val[i]) \
887 goto bad; \
891 ACKCISHORT(CI_MRU, go->neg_mru && go->mru != DEFMRU, go->mru);
892 ACKCILONG(CI_ASYNCMAP, go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF,
893 go->asyncmap);
894 ACKCISHORT(CI_AUTHTYPE, go->neg_eap, PPP_EAP);
895 ACKCICHAP(CI_AUTHTYPE, !go->neg_eap && go->neg_chap, go->chap_mdtype);
896 ACKCISHORT(CI_AUTHTYPE, !go->neg_eap && !go->neg_chap && go->neg_upap,
897 PPP_PAP);
898 ACKCILQR(CI_QUALITY, go->neg_lqr, go->lqr_period);
899 ACKCICHAR(CI_CALLBACK, go->neg_cbcp, CBCP_OPT);
900 ACKCILONG(CI_MAGICNUMBER, go->neg_magicnumber, go->magicnumber);
901 ACKCIVOID(CI_PCOMPRESSION, go->neg_pcompression);
902 ACKCIVOID(CI_ACCOMPRESSION, go->neg_accompression);
903 ACKCISHORT(CI_MRRU, go->neg_mrru, go->mrru);
904 ACKCIVOID(CI_SSNHF, go->neg_ssnhf);
905 ACKCIENDP(CI_EPDISC, go->neg_endpoint, go->endpoint.class,
906 go->endpoint.value, go->endpoint.length);
909 * If there are any remaining CIs, then this packet is bad.
911 if (len != 0)
912 goto bad;
913 return (1);
914 bad:
915 LCPDEBUG(("lcp_acki: received bad Ack!"));
916 return (0);
921 * lcp_nakci - Peer has sent a NAK for some of our CIs.
922 * This should not modify any state if the Nak is bad
923 * or if LCP is in the OPENED state.
925 * Returns:
926 * 0 - Nak was bad.
927 * 1 - Nak was good.
929 static int
930 lcp_nakci(f, p, len)
931 fsm *f;
932 u_char *p;
933 int len;
935 lcp_options *go = &lcp_gotoptions[f->unit];
936 lcp_options *wo = &lcp_wantoptions[f->unit];
937 u_char citype, cichar, *next;
938 u_short cishort;
939 u_int32_t cilong;
940 lcp_options no; /* options we've seen Naks for */
941 lcp_options try; /* options to request next time */
942 int looped_back = 0;
943 int cilen;
945 BZERO(&no, sizeof(no));
946 try = *go;
949 * Any Nak'd CIs must be in exactly the same order that we sent.
950 * Check packet length and CI length at each step.
951 * If we find any deviations, then this packet is bad.
953 #define NAKCIVOID(opt, neg) \
954 if (go->neg && \
955 len >= CILEN_VOID && \
956 p[1] == CILEN_VOID && \
957 p[0] == opt) { \
958 len -= CILEN_VOID; \
959 INCPTR(CILEN_VOID, p); \
960 no.neg = 1; \
961 try.neg = 0; \
963 #define NAKCICHAP(opt, neg, code) \
964 if (go->neg && \
965 len >= CILEN_CHAP && \
966 p[1] == CILEN_CHAP && \
967 p[0] == opt) { \
968 len -= CILEN_CHAP; \
969 INCPTR(2, p); \
970 GETSHORT(cishort, p); \
971 GETCHAR(cichar, p); \
972 no.neg = 1; \
973 code \
975 #define NAKCICHAR(opt, neg, code) \
976 if (go->neg && \
977 len >= CILEN_CHAR && \
978 p[1] == CILEN_CHAR && \
979 p[0] == opt) { \
980 len -= CILEN_CHAR; \
981 INCPTR(2, p); \
982 GETCHAR(cichar, p); \
983 no.neg = 1; \
984 code \
986 #define NAKCISHORT(opt, neg, code) \
987 if (go->neg && \
988 len >= CILEN_SHORT && \
989 p[1] == CILEN_SHORT && \
990 p[0] == opt) { \
991 len -= CILEN_SHORT; \
992 INCPTR(2, p); \
993 GETSHORT(cishort, p); \
994 no.neg = 1; \
995 code \
997 #define NAKCILONG(opt, neg, code) \
998 if (go->neg && \
999 len >= CILEN_LONG && \
1000 p[1] == CILEN_LONG && \
1001 p[0] == opt) { \
1002 len -= CILEN_LONG; \
1003 INCPTR(2, p); \
1004 GETLONG(cilong, p); \
1005 no.neg = 1; \
1006 code \
1008 #define NAKCILQR(opt, neg, code) \
1009 if (go->neg && \
1010 len >= CILEN_LQR && \
1011 p[1] == CILEN_LQR && \
1012 p[0] == opt) { \
1013 len -= CILEN_LQR; \
1014 INCPTR(2, p); \
1015 GETSHORT(cishort, p); \
1016 GETLONG(cilong, p); \
1017 no.neg = 1; \
1018 code \
1020 #define NAKCIENDP(opt, neg) \
1021 if (go->neg && \
1022 len >= CILEN_CHAR && \
1023 p[0] == opt && \
1024 p[1] >= CILEN_CHAR && \
1025 p[1] <= len) { \
1026 len -= p[1]; \
1027 INCPTR(p[1], p); \
1028 no.neg = 1; \
1029 try.neg = 0; \
1033 * NOTE! There must be no assignments to individual fields of *go in
1034 * the code below. Any such assignment is a BUG!
1037 * We don't care if they want to send us smaller packets than
1038 * we want. Therefore, accept any MRU less than what we asked for,
1039 * but then ignore the new value when setting the MRU in the kernel.
1040 * If they send us a bigger MRU than what we asked, accept it, up to
1041 * the limit of the default MRU we'd get if we didn't negotiate.
1043 if (go->neg_mru && go->mru != DEFMRU) {
1044 NAKCISHORT(CI_MRU, neg_mru,
1045 if (cishort <= wo->mru || cishort <= DEFMRU)
1046 try.mru = cishort;
1051 * Add any characters they want to our (receive-side) asyncmap.
1053 if (go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF) {
1054 NAKCILONG(CI_ASYNCMAP, neg_asyncmap,
1055 try.asyncmap = go->asyncmap | cilong;
1060 * If they've nak'd our authentication-protocol, check whether
1061 * they are proposing a different protocol, or a different
1062 * hash algorithm for CHAP.
1064 if ((go->neg_chap || go->neg_upap || go->neg_eap)
1065 && len >= CILEN_SHORT
1066 && p[0] == CI_AUTHTYPE && p[1] >= CILEN_SHORT && p[1] <= len) {
1067 cilen = p[1];
1068 len -= cilen;
1069 no.neg_chap = go->neg_chap;
1070 no.neg_upap = go->neg_upap;
1071 no.neg_eap = go->neg_eap;
1072 INCPTR(2, p);
1073 GETSHORT(cishort, p);
1074 if (cishort == PPP_PAP && cilen == CILEN_SHORT) {
1075 /* If we were asking for EAP, then we need to stop that. */
1076 if (go->neg_eap)
1077 try.neg_eap = 0;
1079 /* If we were asking for CHAP, then we need to stop that. */
1080 else if (go->neg_chap)
1081 try.neg_chap = 0;
1083 * If we weren't asking for CHAP or EAP, then we were asking for
1084 * PAP, in which case this Nak is bad.
1086 else
1087 goto bad;
1089 } else if (cishort == PPP_CHAP && cilen == CILEN_CHAP) {
1090 GETCHAR(cichar, p);
1091 /* Stop asking for EAP, if we were. */
1092 if (go->neg_eap) {
1093 try.neg_eap = 0;
1094 /* Try to set up to use their suggestion, if possible */
1095 if (CHAP_CANDIGEST(go->chap_mdtype, cichar))
1096 try.chap_mdtype = CHAP_MDTYPE_D(cichar);
1097 } else if (go->neg_chap) {
1099 * We were asking for our preferred algorithm, they must
1100 * want something different.
1102 if (cichar != CHAP_DIGEST(go->chap_mdtype)) {
1103 if (CHAP_CANDIGEST(go->chap_mdtype, cichar)) {
1104 /* Use their suggestion if we support it ... */
1105 try.chap_mdtype = CHAP_MDTYPE_D(cichar);
1106 } else {
1107 /* ... otherwise, try our next-preferred algorithm. */
1108 try.chap_mdtype &= ~(CHAP_MDTYPE(try.chap_mdtype));
1109 if (try.chap_mdtype == MDTYPE_NONE) /* out of algos */
1110 try.neg_chap = 0;
1112 } else {
1114 * Whoops, they Nak'd our algorithm of choice
1115 * but then suggested it back to us.
1117 goto bad;
1119 } else {
1121 * Stop asking for PAP if we were asking for it.
1123 try.neg_upap = 0;
1126 } else {
1129 * If we were asking for EAP, and they're Conf-Naking EAP,
1130 * well, that's just strange. Nobody should do that.
1132 if (cishort == PPP_EAP && cilen == CILEN_SHORT && go->neg_eap)
1133 dbglog("Unexpected Conf-Nak for EAP");
1136 * We don't recognize what they're suggesting.
1137 * Stop asking for what we were asking for.
1139 if (go->neg_eap)
1140 try.neg_eap = 0;
1141 else if (go->neg_chap)
1142 try.neg_chap = 0;
1143 else
1144 try.neg_upap = 0;
1145 p += cilen - CILEN_SHORT;
1150 * If they can't cope with our link quality protocol, we'll have
1151 * to stop asking for LQR. We haven't got any other protocol.
1152 * If they Nak the reporting period, take their value XXX ?
1154 NAKCILQR(CI_QUALITY, neg_lqr,
1155 if (cishort != PPP_LQR)
1156 try.neg_lqr = 0;
1157 else
1158 try.lqr_period = cilong;
1162 * Only implementing CBCP...not the rest of the callback options
1164 NAKCICHAR(CI_CALLBACK, neg_cbcp,
1165 try.neg_cbcp = 0;
1169 * Check for a looped-back line.
1171 NAKCILONG(CI_MAGICNUMBER, neg_magicnumber,
1172 try.magicnumber = magic();
1173 looped_back = 1;
1177 * Peer shouldn't send Nak for protocol compression or
1178 * address/control compression requests; they should send
1179 * a Reject instead. If they send a Nak, treat it as a Reject.
1181 NAKCIVOID(CI_PCOMPRESSION, neg_pcompression);
1182 NAKCIVOID(CI_ACCOMPRESSION, neg_accompression);
1185 * Nak for MRRU option - accept their value if it is smaller
1186 * than the one we want.
1188 if (go->neg_mrru) {
1189 NAKCISHORT(CI_MRRU, neg_mrru,
1190 if (cishort <= wo->mrru)
1191 try.mrru = cishort;
1196 * Nak for short sequence numbers shouldn't be sent, treat it
1197 * like a reject.
1199 NAKCIVOID(CI_SSNHF, neg_ssnhf);
1202 * Nak of the endpoint discriminator option is not permitted,
1203 * treat it like a reject.
1205 NAKCIENDP(CI_EPDISC, neg_endpoint);
1208 * There may be remaining CIs, if the peer is requesting negotiation
1209 * on an option that we didn't include in our request packet.
1210 * If we see an option that we requested, or one we've already seen
1211 * in this packet, then this packet is bad.
1212 * If we wanted to respond by starting to negotiate on the requested
1213 * option(s), we could, but we don't, because except for the
1214 * authentication type and quality protocol, if we are not negotiating
1215 * an option, it is because we were told not to.
1216 * For the authentication type, the Nak from the peer means
1217 * `let me authenticate myself with you' which is a bit pointless.
1218 * For the quality protocol, the Nak means `ask me to send you quality
1219 * reports', but if we didn't ask for them, we don't want them.
1220 * An option we don't recognize represents the peer asking to
1221 * negotiate some option we don't support, so ignore it.
1223 while (len >= CILEN_VOID) {
1224 GETCHAR(citype, p);
1225 GETCHAR(cilen, p);
1226 if (cilen < CILEN_VOID || (len -= cilen) < 0)
1227 goto bad;
1228 next = p + cilen - 2;
1230 switch (citype) {
1231 case CI_MRU:
1232 if ((go->neg_mru && go->mru != DEFMRU)
1233 || no.neg_mru || cilen != CILEN_SHORT)
1234 goto bad;
1235 GETSHORT(cishort, p);
1236 if (cishort < DEFMRU) {
1237 try.neg_mru = 1;
1238 try.mru = cishort;
1240 break;
1241 case CI_ASYNCMAP:
1242 if ((go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF)
1243 || no.neg_asyncmap || cilen != CILEN_LONG)
1244 goto bad;
1245 break;
1246 case CI_AUTHTYPE:
1247 if (go->neg_chap || no.neg_chap || go->neg_upap || no.neg_upap ||
1248 go->neg_eap || no.neg_eap)
1249 goto bad;
1250 break;
1251 case CI_MAGICNUMBER:
1252 if (go->neg_magicnumber || no.neg_magicnumber ||
1253 cilen != CILEN_LONG)
1254 goto bad;
1255 break;
1256 case CI_PCOMPRESSION:
1257 if (go->neg_pcompression || no.neg_pcompression
1258 || cilen != CILEN_VOID)
1259 goto bad;
1260 break;
1261 case CI_ACCOMPRESSION:
1262 if (go->neg_accompression || no.neg_accompression
1263 || cilen != CILEN_VOID)
1264 goto bad;
1265 break;
1266 case CI_QUALITY:
1267 if (go->neg_lqr || no.neg_lqr || cilen != CILEN_LQR)
1268 goto bad;
1269 break;
1270 case CI_MRRU:
1271 if (go->neg_mrru || no.neg_mrru || cilen != CILEN_SHORT)
1272 goto bad;
1273 break;
1274 case CI_SSNHF:
1275 if (go->neg_ssnhf || no.neg_ssnhf || cilen != CILEN_VOID)
1276 goto bad;
1277 try.neg_ssnhf = 1;
1278 break;
1279 case CI_EPDISC:
1280 if (go->neg_endpoint || no.neg_endpoint || cilen < CILEN_CHAR)
1281 goto bad;
1282 break;
1284 p = next;
1288 * OK, the Nak is good. Now we can update state.
1289 * If there are any options left we ignore them.
1291 if (f->state != OPENED) {
1292 if (looped_back) {
1293 if (++try.numloops >= lcp_loopbackfail) {
1294 notice("Serial line is looped back.");
1295 lcp_close(f->unit, "Loopback detected");
1296 status = EXIT_LOOPBACK;
1298 } else
1299 try.numloops = 0;
1300 *go = try;
1303 return 1;
1305 bad:
1306 LCPDEBUG(("lcp_nakci: received bad Nak!"));
1307 return 0;
1312 * lcp_rejci - Peer has Rejected some of our CIs.
1313 * This should not modify any state if the Reject is bad
1314 * or if LCP is in the OPENED state.
1316 * Returns:
1317 * 0 - Reject was bad.
1318 * 1 - Reject was good.
1320 static int
1321 lcp_rejci(f, p, len)
1322 fsm *f;
1323 u_char *p;
1324 int len;
1326 lcp_options *go = &lcp_gotoptions[f->unit];
1327 u_char cichar;
1328 u_short cishort;
1329 u_int32_t cilong;
1330 lcp_options try; /* options to request next time */
1332 try = *go;
1335 * Any Rejected CIs must be in exactly the same order that we sent.
1336 * Check packet length and CI length at each step.
1337 * If we find any deviations, then this packet is bad.
1339 #define REJCIVOID(opt, neg) \
1340 if (go->neg && \
1341 len >= CILEN_VOID && \
1342 p[1] == CILEN_VOID && \
1343 p[0] == opt) { \
1344 len -= CILEN_VOID; \
1345 INCPTR(CILEN_VOID, p); \
1346 try.neg = 0; \
1348 #define REJCISHORT(opt, neg, val) \
1349 if (go->neg && \
1350 len >= CILEN_SHORT && \
1351 p[1] == CILEN_SHORT && \
1352 p[0] == opt) { \
1353 len -= CILEN_SHORT; \
1354 INCPTR(2, p); \
1355 GETSHORT(cishort, p); \
1356 /* Check rejected value. */ \
1357 if (cishort != val) \
1358 goto bad; \
1359 try.neg = 0; \
1361 #define REJCICHAP(opt, neg, val) \
1362 if (go->neg && \
1363 len >= CILEN_CHAP && \
1364 p[1] == CILEN_CHAP && \
1365 p[0] == opt) { \
1366 len -= CILEN_CHAP; \
1367 INCPTR(2, p); \
1368 GETSHORT(cishort, p); \
1369 GETCHAR(cichar, p); \
1370 /* Check rejected value. */ \
1371 if ((cishort != PPP_CHAP) || (cichar != (CHAP_DIGEST(val)))) \
1372 goto bad; \
1373 try.neg = 0; \
1374 try.neg_eap = try.neg_upap = 0; \
1376 #define REJCILONG(opt, neg, val) \
1377 if (go->neg && \
1378 len >= CILEN_LONG && \
1379 p[1] == CILEN_LONG && \
1380 p[0] == opt) { \
1381 len -= CILEN_LONG; \
1382 INCPTR(2, p); \
1383 GETLONG(cilong, p); \
1384 /* Check rejected value. */ \
1385 if (cilong != val) \
1386 goto bad; \
1387 try.neg = 0; \
1389 #define REJCILQR(opt, neg, val) \
1390 if (go->neg && \
1391 len >= CILEN_LQR && \
1392 p[1] == CILEN_LQR && \
1393 p[0] == opt) { \
1394 len -= CILEN_LQR; \
1395 INCPTR(2, p); \
1396 GETSHORT(cishort, p); \
1397 GETLONG(cilong, p); \
1398 /* Check rejected value. */ \
1399 if (cishort != PPP_LQR || cilong != val) \
1400 goto bad; \
1401 try.neg = 0; \
1403 #define REJCICBCP(opt, neg, val) \
1404 if (go->neg && \
1405 len >= CILEN_CBCP && \
1406 p[1] == CILEN_CBCP && \
1407 p[0] == opt) { \
1408 len -= CILEN_CBCP; \
1409 INCPTR(2, p); \
1410 GETCHAR(cichar, p); \
1411 /* Check rejected value. */ \
1412 if (cichar != val) \
1413 goto bad; \
1414 try.neg = 0; \
1416 #define REJCIENDP(opt, neg, class, val, vlen) \
1417 if (go->neg && \
1418 len >= CILEN_CHAR + vlen && \
1419 p[0] == opt && \
1420 p[1] == CILEN_CHAR + vlen) { \
1421 int i; \
1422 len -= CILEN_CHAR + vlen; \
1423 INCPTR(2, p); \
1424 GETCHAR(cichar, p); \
1425 if (cichar != class) \
1426 goto bad; \
1427 for (i = 0; i < vlen; ++i) { \
1428 GETCHAR(cichar, p); \
1429 if (cichar != val[i]) \
1430 goto bad; \
1432 try.neg = 0; \
1435 REJCISHORT(CI_MRU, neg_mru, go->mru);
1436 REJCILONG(CI_ASYNCMAP, neg_asyncmap, go->asyncmap);
1437 REJCISHORT(CI_AUTHTYPE, neg_eap, PPP_EAP);
1438 if (!go->neg_eap) {
1439 REJCICHAP(CI_AUTHTYPE, neg_chap, go->chap_mdtype);
1440 if (!go->neg_chap) {
1441 REJCISHORT(CI_AUTHTYPE, neg_upap, PPP_PAP);
1444 REJCILQR(CI_QUALITY, neg_lqr, go->lqr_period);
1445 REJCICBCP(CI_CALLBACK, neg_cbcp, CBCP_OPT);
1446 REJCILONG(CI_MAGICNUMBER, neg_magicnumber, go->magicnumber);
1447 REJCIVOID(CI_PCOMPRESSION, neg_pcompression);
1448 REJCIVOID(CI_ACCOMPRESSION, neg_accompression);
1449 REJCISHORT(CI_MRRU, neg_mrru, go->mrru);
1450 REJCIVOID(CI_SSNHF, neg_ssnhf);
1451 REJCIENDP(CI_EPDISC, neg_endpoint, go->endpoint.class,
1452 go->endpoint.value, go->endpoint.length);
1455 * If there are any remaining CIs, then this packet is bad.
1457 if (len != 0)
1458 goto bad;
1460 * Now we can update state.
1462 if (f->state != OPENED)
1463 *go = try;
1464 return 1;
1466 bad:
1467 LCPDEBUG(("lcp_rejci: received bad Reject!"));
1468 return 0;
1473 * lcp_reqci - Check the peer's requested CIs and send appropriate response.
1475 * Returns: CONFACK, CONFNAK or CONFREJ and input packet modified
1476 * appropriately. If reject_if_disagree is non-zero, doesn't return
1477 * CONFNAK; returns CONFREJ if it can't return CONFACK.
1479 static int
1480 lcp_reqci(f, inp, lenp, reject_if_disagree)
1481 fsm *f;
1482 u_char *inp; /* Requested CIs */
1483 int *lenp; /* Length of requested CIs */
1484 int reject_if_disagree;
1486 lcp_options *go = &lcp_gotoptions[f->unit];
1487 lcp_options *ho = &lcp_hisoptions[f->unit];
1488 lcp_options *ao = &lcp_allowoptions[f->unit];
1489 u_char *cip, *next; /* Pointer to current and next CIs */
1490 int cilen, citype, cichar; /* Parsed len, type, char value */
1491 u_short cishort; /* Parsed short value */
1492 u_int32_t cilong; /* Parse long value */
1493 int rc = CONFACK; /* Final packet return code */
1494 int orc; /* Individual option return code */
1495 u_char *p; /* Pointer to next char to parse */
1496 u_char *rejp; /* Pointer to next char in reject frame */
1497 u_char *nakp; /* Pointer to next char in Nak frame */
1498 int l = *lenp; /* Length left */
1501 * Reset all his options.
1503 BZERO(ho, sizeof(*ho));
1506 * Process all his options.
1508 next = inp;
1509 nakp = nak_buffer;
1510 rejp = inp;
1511 while (l) {
1512 orc = CONFACK; /* Assume success */
1513 cip = p = next; /* Remember begining of CI */
1514 if (l < 2 || /* Not enough data for CI header or */
1515 p[1] < 2 || /* CI length too small or */
1516 p[1] > l) { /* CI length too big? */
1517 LCPDEBUG(("lcp_reqci: bad CI length!"));
1518 orc = CONFREJ; /* Reject bad CI */
1519 cilen = l; /* Reject till end of packet */
1520 l = 0; /* Don't loop again */
1521 citype = 0;
1522 goto endswitch;
1524 GETCHAR(citype, p); /* Parse CI type */
1525 GETCHAR(cilen, p); /* Parse CI length */
1526 l -= cilen; /* Adjust remaining length */
1527 next += cilen; /* Step to next CI */
1529 switch (citype) { /* Check CI type */
1530 case CI_MRU:
1531 if (!ao->neg_mru || /* Allow option? */
1532 cilen != CILEN_SHORT) { /* Check CI length */
1533 orc = CONFREJ; /* Reject CI */
1534 break;
1536 GETSHORT(cishort, p); /* Parse MRU */
1539 * He must be able to receive at least our minimum.
1540 * No need to check a maximum. If he sends a large number,
1541 * we'll just ignore it.
1543 if (cishort < MINMRU) {
1544 orc = CONFNAK; /* Nak CI */
1545 PUTCHAR(CI_MRU, nakp);
1546 PUTCHAR(CILEN_SHORT, nakp);
1547 PUTSHORT(MINMRU, nakp); /* Give him a hint */
1548 break;
1550 ho->neg_mru = 1; /* Remember he sent MRU */
1551 ho->mru = cishort; /* And remember value */
1552 break;
1554 case CI_ASYNCMAP:
1555 if (!ao->neg_asyncmap ||
1556 cilen != CILEN_LONG) {
1557 orc = CONFREJ;
1558 break;
1560 GETLONG(cilong, p);
1563 * Asyncmap must have set at least the bits
1564 * which are set in lcp_allowoptions[unit].asyncmap.
1566 if ((ao->asyncmap & ~cilong) != 0) {
1567 orc = CONFNAK;
1568 PUTCHAR(CI_ASYNCMAP, nakp);
1569 PUTCHAR(CILEN_LONG, nakp);
1570 PUTLONG(ao->asyncmap | cilong, nakp);
1571 break;
1573 ho->neg_asyncmap = 1;
1574 ho->asyncmap = cilong;
1575 break;
1577 case CI_AUTHTYPE:
1578 if (cilen < CILEN_SHORT ||
1579 !(ao->neg_upap || ao->neg_chap || ao->neg_eap)) {
1581 * Reject the option if we're not willing to authenticate.
1583 dbglog("No auth is possible");
1584 orc = CONFREJ;
1585 break;
1587 GETSHORT(cishort, p);
1590 * Authtype must be PAP, CHAP, or EAP.
1592 * Note: if more than one of ao->neg_upap, ao->neg_chap, and
1593 * ao->neg_eap are set, and the peer sends a Configure-Request
1594 * with two or more authenticate-protocol requests, then we will
1595 * reject the second request.
1596 * Whether we end up doing CHAP, UPAP, or EAP depends then on
1597 * the ordering of the CIs in the peer's Configure-Request.
1600 if (cishort == PPP_PAP) {
1601 /* we've already accepted CHAP or EAP */
1602 if (ho->neg_chap || ho->neg_eap ||
1603 cilen != CILEN_SHORT) {
1604 LCPDEBUG(("lcp_reqci: rcvd AUTHTYPE PAP, rejecting..."));
1605 orc = CONFREJ;
1606 break;
1608 if (!ao->neg_upap) { /* we don't want to do PAP */
1609 orc = CONFNAK; /* NAK it and suggest CHAP or EAP */
1610 PUTCHAR(CI_AUTHTYPE, nakp);
1611 if (ao->neg_eap) {
1612 PUTCHAR(CILEN_SHORT, nakp);
1613 PUTSHORT(PPP_EAP, nakp);
1614 } else {
1615 PUTCHAR(CILEN_CHAP, nakp);
1616 PUTSHORT(PPP_CHAP, nakp);
1617 PUTCHAR(CHAP_DIGEST(ao->chap_mdtype), nakp);
1619 break;
1621 ho->neg_upap = 1;
1622 break;
1624 if (cishort == PPP_CHAP) {
1625 /* we've already accepted PAP or EAP */
1626 if (ho->neg_upap || ho->neg_eap ||
1627 cilen != CILEN_CHAP) {
1628 LCPDEBUG(("lcp_reqci: rcvd AUTHTYPE CHAP, rejecting..."));
1629 orc = CONFREJ;
1630 break;
1632 if (!ao->neg_chap) { /* we don't want to do CHAP */
1633 orc = CONFNAK; /* NAK it and suggest EAP or PAP */
1634 PUTCHAR(CI_AUTHTYPE, nakp);
1635 PUTCHAR(CILEN_SHORT, nakp);
1636 if (ao->neg_eap) {
1637 PUTSHORT(PPP_EAP, nakp);
1638 } else {
1639 PUTSHORT(PPP_PAP, nakp);
1641 break;
1643 GETCHAR(cichar, p); /* get digest type */
1644 if (!(CHAP_CANDIGEST(ao->chap_mdtype, cichar))) {
1646 * We can't/won't do the requested type,
1647 * suggest something else.
1649 orc = CONFNAK;
1650 PUTCHAR(CI_AUTHTYPE, nakp);
1651 PUTCHAR(CILEN_CHAP, nakp);
1652 PUTSHORT(PPP_CHAP, nakp);
1653 PUTCHAR(CHAP_DIGEST(ao->chap_mdtype), nakp);
1654 break;
1656 ho->chap_mdtype = CHAP_MDTYPE_D(cichar); /* save md type */
1657 ho->neg_chap = 1;
1658 break;
1660 if (cishort == PPP_EAP) {
1661 /* we've already accepted CHAP or PAP */
1662 if (ho->neg_chap || ho->neg_upap || cilen != CILEN_SHORT) {
1663 LCPDEBUG(("lcp_reqci: rcvd AUTHTYPE EAP, rejecting..."));
1664 orc = CONFREJ;
1665 break;
1667 if (!ao->neg_eap) { /* we don't want to do EAP */
1668 orc = CONFNAK; /* NAK it and suggest CHAP or PAP */
1669 PUTCHAR(CI_AUTHTYPE, nakp);
1670 if (ao->neg_chap) {
1671 PUTCHAR(CILEN_CHAP, nakp);
1672 PUTSHORT(PPP_CHAP, nakp);
1673 PUTCHAR(CHAP_DIGEST(ao->chap_mdtype), nakp);
1674 } else {
1675 PUTCHAR(CILEN_SHORT, nakp);
1676 PUTSHORT(PPP_PAP, nakp);
1678 break;
1680 ho->neg_eap = 1;
1681 break;
1685 * We don't recognize the protocol they're asking for.
1686 * Nak it with something we're willing to do.
1687 * (At this point we know ao->neg_upap || ao->neg_chap ||
1688 * ao->neg_eap.)
1690 orc = CONFNAK;
1691 PUTCHAR(CI_AUTHTYPE, nakp);
1692 if (ao->neg_eap) {
1693 PUTCHAR(CILEN_SHORT, nakp);
1694 PUTSHORT(PPP_EAP, nakp);
1695 } else if (ao->neg_chap) {
1696 PUTCHAR(CILEN_CHAP, nakp);
1697 PUTSHORT(PPP_CHAP, nakp);
1698 PUTCHAR(CHAP_DIGEST(ao->chap_mdtype), nakp);
1699 } else {
1700 PUTCHAR(CILEN_SHORT, nakp);
1701 PUTSHORT(PPP_PAP, nakp);
1703 break;
1705 case CI_QUALITY:
1706 if (!ao->neg_lqr ||
1707 cilen != CILEN_LQR) {
1708 orc = CONFREJ;
1709 break;
1712 GETSHORT(cishort, p);
1713 GETLONG(cilong, p);
1716 * Check the protocol and the reporting period.
1717 * XXX When should we Nak this, and what with?
1719 if (cishort != PPP_LQR) {
1720 orc = CONFNAK;
1721 PUTCHAR(CI_QUALITY, nakp);
1722 PUTCHAR(CILEN_LQR, nakp);
1723 PUTSHORT(PPP_LQR, nakp);
1724 PUTLONG(ao->lqr_period, nakp);
1725 break;
1727 break;
1729 case CI_MAGICNUMBER:
1730 if (!(ao->neg_magicnumber || go->neg_magicnumber) ||
1731 cilen != CILEN_LONG) {
1732 orc = CONFREJ;
1733 break;
1735 GETLONG(cilong, p);
1738 * He must have a different magic number.
1740 if (go->neg_magicnumber &&
1741 cilong == go->magicnumber) {
1742 cilong = magic(); /* Don't put magic() inside macro! */
1743 orc = CONFNAK;
1744 PUTCHAR(CI_MAGICNUMBER, nakp);
1745 PUTCHAR(CILEN_LONG, nakp);
1746 PUTLONG(cilong, nakp);
1747 break;
1749 ho->neg_magicnumber = 1;
1750 ho->magicnumber = cilong;
1751 break;
1754 case CI_PCOMPRESSION:
1755 if (!ao->neg_pcompression ||
1756 cilen != CILEN_VOID) {
1757 orc = CONFREJ;
1758 break;
1760 ho->neg_pcompression = 1;
1761 break;
1763 case CI_ACCOMPRESSION:
1764 if (!ao->neg_accompression ||
1765 cilen != CILEN_VOID) {
1766 orc = CONFREJ;
1767 break;
1769 ho->neg_accompression = 1;
1770 break;
1772 case CI_MRRU:
1773 if (!ao->neg_mrru || !multilink ||
1774 cilen != CILEN_SHORT) {
1775 orc = CONFREJ;
1776 break;
1779 GETSHORT(cishort, p);
1780 /* possibly should insist on a minimum/maximum MRRU here */
1781 ho->neg_mrru = 1;
1782 ho->mrru = cishort;
1783 break;
1785 case CI_SSNHF:
1786 if (!ao->neg_ssnhf || !multilink ||
1787 cilen != CILEN_VOID) {
1788 orc = CONFREJ;
1789 break;
1791 ho->neg_ssnhf = 1;
1792 break;
1794 case CI_EPDISC:
1795 if (!ao->neg_endpoint ||
1796 cilen < CILEN_CHAR ||
1797 cilen > CILEN_CHAR + MAX_ENDP_LEN) {
1798 orc = CONFREJ;
1799 break;
1801 GETCHAR(cichar, p);
1802 cilen -= CILEN_CHAR;
1803 ho->neg_endpoint = 1;
1804 ho->endpoint.class = cichar;
1805 ho->endpoint.length = cilen;
1806 BCOPY(p, ho->endpoint.value, cilen);
1807 INCPTR(cilen, p);
1808 break;
1810 default:
1811 LCPDEBUG(("lcp_reqci: rcvd unknown option %d", citype));
1812 orc = CONFREJ;
1813 break;
1816 endswitch:
1817 if (orc == CONFACK && /* Good CI */
1818 rc != CONFACK) /* but prior CI wasnt? */
1819 continue; /* Don't send this one */
1821 if (orc == CONFNAK) { /* Nak this CI? */
1822 if (reject_if_disagree /* Getting fed up with sending NAKs? */
1823 && citype != CI_MAGICNUMBER) {
1824 orc = CONFREJ; /* Get tough if so */
1825 } else {
1826 if (rc == CONFREJ) /* Rejecting prior CI? */
1827 continue; /* Don't send this one */
1828 rc = CONFNAK;
1831 if (orc == CONFREJ) { /* Reject this CI */
1832 rc = CONFREJ;
1833 if (cip != rejp) /* Need to move rejected CI? */
1834 BCOPY(cip, rejp, cilen); /* Move it */
1835 INCPTR(cilen, rejp); /* Update output pointer */
1840 * If we wanted to send additional NAKs (for unsent CIs), the
1841 * code would go here. The extra NAKs would go at *nakp.
1842 * At present there are no cases where we want to ask the
1843 * peer to negotiate an option.
1846 switch (rc) {
1847 case CONFACK:
1848 *lenp = next - inp;
1849 break;
1850 case CONFNAK:
1852 * Copy the Nak'd options from the nak_buffer to the caller's buffer.
1854 *lenp = nakp - nak_buffer;
1855 BCOPY(nak_buffer, inp, *lenp);
1856 break;
1857 case CONFREJ:
1858 *lenp = rejp - inp;
1859 break;
1862 LCPDEBUG(("lcp_reqci: returning CONF%s.", CODENAME(rc)));
1863 return (rc); /* Return final code */
1868 * lcp_up - LCP has come UP.
1870 static void
1871 lcp_up(f)
1872 fsm *f;
1874 lcp_options *wo = &lcp_wantoptions[f->unit];
1875 lcp_options *ho = &lcp_hisoptions[f->unit];
1876 lcp_options *go = &lcp_gotoptions[f->unit];
1877 lcp_options *ao = &lcp_allowoptions[f->unit];
1878 int mtu, mru;
1880 if (!go->neg_magicnumber)
1881 go->magicnumber = 0;
1882 if (!ho->neg_magicnumber)
1883 ho->magicnumber = 0;
1886 * Set our MTU to the smaller of the MTU we wanted and
1887 * the MRU our peer wanted. If we negotiated an MRU,
1888 * set our MRU to the larger of value we wanted and
1889 * the value we got in the negotiation.
1890 * Note on the MTU: the link MTU can be the MRU the peer wanted,
1891 * the interface MTU is set to the lowest of that, the
1892 * MTU we want to use, and our link MRU.
1894 mtu = ho->neg_mru? ho->mru: PPP_MRU;
1895 mru = go->neg_mru? MAX(wo->mru, go->mru): PPP_MRU;
1896 #ifdef HAVE_MULTILINK
1897 if (!(multilink && go->neg_mrru && ho->neg_mrru))
1898 #endif /* HAVE_MULTILINK */
1899 netif_set_mtu(f->unit, MIN(MIN(mtu, mru), ao->mru));
1900 ppp_send_config(f->unit, mtu,
1901 (ho->neg_asyncmap? ho->asyncmap: 0xffffffff),
1902 ho->neg_pcompression, ho->neg_accompression);
1903 ppp_recv_config(f->unit, mru,
1904 (lax_recv? 0: go->neg_asyncmap? go->asyncmap: 0xffffffff),
1905 go->neg_pcompression, go->neg_accompression);
1907 if (ho->neg_mru)
1908 peer_mru[f->unit] = ho->mru;
1910 lcp_echo_lowerup(f->unit); /* Enable echo messages */
1912 link_established(f->unit);
1917 * lcp_down - LCP has gone DOWN.
1919 * Alert other protocols.
1921 static void
1922 lcp_down(f)
1923 fsm *f;
1925 lcp_options *go = &lcp_gotoptions[f->unit];
1927 lcp_echo_lowerdown(f->unit);
1929 link_down(f->unit);
1931 ppp_send_config(f->unit, PPP_MRU, 0xffffffff, 0, 0);
1932 ppp_recv_config(f->unit, PPP_MRU,
1933 (go->neg_asyncmap? go->asyncmap: 0xffffffff),
1934 go->neg_pcompression, go->neg_accompression);
1935 peer_mru[f->unit] = PPP_MRU;
1940 * lcp_starting - LCP needs the lower layer up.
1942 static void
1943 lcp_starting(f)
1944 fsm *f;
1946 link_required(f->unit);
1951 * lcp_finished - LCP has finished with the lower layer.
1953 static void
1954 lcp_finished(f)
1955 fsm *f;
1957 link_terminated(f->unit);
1962 * lcp_printpkt - print the contents of an LCP packet.
1964 static char *lcp_codenames[] = {
1965 "ConfReq", "ConfAck", "ConfNak", "ConfRej",
1966 "TermReq", "TermAck", "CodeRej", "ProtRej",
1967 "EchoReq", "EchoRep", "DiscReq"
1970 static int
1971 lcp_printpkt(p, plen, printer, arg)
1972 u_char *p;
1973 int plen;
1974 void (*printer) __P((void *, char *, ...));
1975 void *arg;
1977 int code, id, len, olen, i;
1978 u_char *pstart, *optend;
1979 u_short cishort;
1980 u_int32_t cilong;
1982 if (plen < HEADERLEN)
1983 return 0;
1984 pstart = p;
1985 GETCHAR(code, p);
1986 GETCHAR(id, p);
1987 GETSHORT(len, p);
1988 if (len < HEADERLEN || len > plen)
1989 return 0;
1991 if (code >= 1 && code <= sizeof(lcp_codenames) / sizeof(char *))
1992 printer(arg, " %s", lcp_codenames[code-1]);
1993 else
1994 printer(arg, " code=0x%x", code);
1995 printer(arg, " id=0x%x", id);
1996 len -= HEADERLEN;
1997 switch (code) {
1998 case CONFREQ:
1999 case CONFACK:
2000 case CONFNAK:
2001 case CONFREJ:
2002 /* print option list */
2003 while (len >= 2) {
2004 GETCHAR(code, p);
2005 GETCHAR(olen, p);
2006 p -= 2;
2007 if (olen < 2 || olen > len) {
2008 break;
2010 printer(arg, " <");
2011 len -= olen;
2012 optend = p + olen;
2013 switch (code) {
2014 case CI_MRU:
2015 if (olen == CILEN_SHORT) {
2016 p += 2;
2017 GETSHORT(cishort, p);
2018 printer(arg, "mru %d", cishort);
2020 break;
2021 case CI_ASYNCMAP:
2022 if (olen == CILEN_LONG) {
2023 p += 2;
2024 GETLONG(cilong, p);
2025 printer(arg, "asyncmap 0x%x", cilong);
2027 break;
2028 case CI_AUTHTYPE:
2029 if (olen >= CILEN_SHORT) {
2030 p += 2;
2031 printer(arg, "auth ");
2032 GETSHORT(cishort, p);
2033 switch (cishort) {
2034 case PPP_PAP:
2035 printer(arg, "pap");
2036 break;
2037 case PPP_CHAP:
2038 printer(arg, "chap");
2039 if (p < optend) {
2040 switch (*p) {
2041 case CHAP_MD5:
2042 printer(arg, " MD5");
2043 ++p;
2044 break;
2045 #ifdef CHAPMS
2046 case CHAP_MICROSOFT:
2047 printer(arg, " MS");
2048 ++p;
2049 break;
2051 case CHAP_MICROSOFT_V2:
2052 printer(arg, " MS-v2");
2053 ++p;
2054 break;
2055 #endif
2058 break;
2059 case PPP_EAP:
2060 printer(arg, "eap");
2061 break;
2062 default:
2063 printer(arg, "0x%x", cishort);
2066 break;
2067 case CI_QUALITY:
2068 if (olen >= CILEN_SHORT) {
2069 p += 2;
2070 printer(arg, "quality ");
2071 GETSHORT(cishort, p);
2072 switch (cishort) {
2073 case PPP_LQR:
2074 printer(arg, "lqr");
2075 break;
2076 default:
2077 printer(arg, "0x%x", cishort);
2080 break;
2081 case CI_CALLBACK:
2082 if (olen >= CILEN_CHAR) {
2083 p += 2;
2084 printer(arg, "callback ");
2085 GETCHAR(cishort, p);
2086 switch (cishort) {
2087 case CBCP_OPT:
2088 printer(arg, "CBCP");
2089 break;
2090 default:
2091 printer(arg, "0x%x", cishort);
2094 break;
2095 case CI_MAGICNUMBER:
2096 if (olen == CILEN_LONG) {
2097 p += 2;
2098 GETLONG(cilong, p);
2099 printer(arg, "magic 0x%x", cilong);
2101 break;
2102 case CI_PCOMPRESSION:
2103 if (olen == CILEN_VOID) {
2104 p += 2;
2105 printer(arg, "pcomp");
2107 break;
2108 case CI_ACCOMPRESSION:
2109 if (olen == CILEN_VOID) {
2110 p += 2;
2111 printer(arg, "accomp");
2113 break;
2114 case CI_MRRU:
2115 if (olen == CILEN_SHORT) {
2116 p += 2;
2117 GETSHORT(cishort, p);
2118 printer(arg, "mrru %d", cishort);
2120 break;
2121 case CI_SSNHF:
2122 if (olen == CILEN_VOID) {
2123 p += 2;
2124 printer(arg, "ssnhf");
2126 break;
2127 case CI_EPDISC:
2128 #ifdef HAVE_MULTILINK
2129 if (olen >= CILEN_CHAR) {
2130 struct epdisc epd;
2131 p += 2;
2132 GETCHAR(epd.class, p);
2133 epd.length = olen - CILEN_CHAR;
2134 if (epd.length > MAX_ENDP_LEN)
2135 epd.length = MAX_ENDP_LEN;
2136 if (epd.length > 0) {
2137 BCOPY(p, epd.value, epd.length);
2138 p += epd.length;
2140 printer(arg, "endpoint [%s]", epdisc_to_str(&epd));
2142 #else
2143 printer(arg, "endpoint");
2144 #endif
2145 break;
2147 while (p < optend) {
2148 GETCHAR(code, p);
2149 printer(arg, " %.2x", code);
2151 printer(arg, ">");
2153 break;
2155 case TERMACK:
2156 case TERMREQ:
2157 if (len > 0 && *p >= ' ' && *p < 0x7f) {
2158 printer(arg, " ");
2159 print_string((char *)p, len, printer, arg);
2160 p += len;
2161 len = 0;
2163 break;
2165 case ECHOREQ:
2166 case ECHOREP:
2167 case DISCREQ:
2168 if (len >= 4) {
2169 GETLONG(cilong, p);
2170 printer(arg, " magic=0x%x", cilong);
2171 p += 4;
2172 len -= 4;
2174 break;
2177 /* print the rest of the bytes in the packet */
2178 for (i = 0; i < len && i < 32; ++i) {
2179 GETCHAR(code, p);
2180 printer(arg, " %.2x", code);
2182 if (i < len) {
2183 printer(arg, " ...");
2184 p += len - i;
2187 return p - pstart;
2191 * Time to shut down the link because there is nothing out there.
2194 static
2195 void LcpLinkFailure (f)
2196 fsm *f;
2198 if (f->state == OPENED) {
2199 info("No response to %d echo-requests", lcp_echos_pending);
2200 notice("Serial link appears to be disconnected.");
2201 lcp_close(f->unit, "Peer not responding");
2202 status = EXIT_PEER_DEAD;
2207 * Timer expired for the LCP echo requests from this process.
2210 static void
2211 LcpEchoCheck (f)
2212 fsm *f;
2214 LcpSendEchoRequest (f);
2215 if (f->state != OPENED)
2216 return;
2219 * Start the timer for the next interval.
2221 if (lcp_echo_timer_running)
2222 warn("assertion lcp_echo_timer_running==0 failed");
2223 TIMEOUT (LcpEchoTimeout, f, lcp_echo_interval);
2224 lcp_echo_timer_running = 1;
2228 * LcpEchoTimeout - Timer expired on the LCP echo
2231 static void
2232 LcpEchoTimeout (arg)
2233 void *arg;
2235 if (lcp_echo_timer_running != 0) {
2236 lcp_echo_timer_running = 0;
2237 LcpEchoCheck ((fsm *) arg);
2242 * LcpEchoReply - LCP has received a reply to the echo
2245 static void
2246 lcp_received_echo_reply (f, id, inp, len)
2247 fsm *f;
2248 int id;
2249 u_char *inp;
2250 int len;
2252 u_int32_t magic;
2254 /* Check the magic number - don't count replies from ourselves. */
2255 if (len < 4) {
2256 dbglog("lcp: received short Echo-Reply, length %d", len);
2257 return;
2259 GETLONG(magic, inp);
2260 if (lcp_gotoptions[f->unit].neg_magicnumber
2261 && magic == lcp_gotoptions[f->unit].magicnumber) {
2262 warn("appear to have received our own echo-reply!");
2263 return;
2266 /* Reset the number of outstanding echo frames */
2267 lcp_echos_pending = 0;
2271 * LcpSendEchoRequest - Send an echo request frame to the peer
2274 static void
2275 LcpSendEchoRequest (f)
2276 fsm *f;
2278 u_int32_t lcp_magic;
2279 u_char pkt[4], *pktp;
2282 * Detect the failure of the peer at this point.
2284 if (lcp_echo_fails != 0) {
2285 if (lcp_echos_pending >= lcp_echo_fails) {
2286 LcpLinkFailure(f);
2287 lcp_echos_pending = 0;
2292 * Make and send the echo request frame.
2294 if (f->state == OPENED) {
2295 lcp_magic = lcp_gotoptions[f->unit].magicnumber;
2296 pktp = pkt;
2297 PUTLONG(lcp_magic, pktp);
2298 fsm_sdata(f, ECHOREQ, lcp_echo_number++ & 0xFF, pkt, pktp - pkt);
2299 ++lcp_echos_pending;
2304 * lcp_echo_lowerup - Start the timer for the LCP frame
2307 static void
2308 lcp_echo_lowerup (unit)
2309 int unit;
2311 fsm *f = &lcp_fsm[unit];
2313 /* Clear the parameters for generating echo frames */
2314 lcp_echos_pending = 0;
2315 lcp_echo_number = 0;
2316 lcp_echo_timer_running = 0;
2318 /* If a timeout interval is specified then start the timer */
2319 if (lcp_echo_interval != 0)
2320 LcpEchoCheck (f);
2324 * lcp_echo_lowerdown - Stop the timer for the LCP frame
2327 static void
2328 lcp_echo_lowerdown (unit)
2329 int unit;
2331 fsm *f = &lcp_fsm[unit];
2333 if (lcp_echo_timer_running != 0) {
2334 UNTIMEOUT (LcpEchoTimeout, f);
2335 lcp_echo_timer_running = 0;