2 * Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org>
3 * based on work by Toshiharu OHNO <tony-o@iij.ad.jp>
4 * Internet Initiative Japan, Inc (IIJ)
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * $FreeBSD: src/usr.sbin/ppp/lcp.c,v 1.81.2.13 2002/09/01 02:12:28 brian Exp $
31 #include <sys/param.h>
32 #include <netinet/in.h>
33 #include <netinet/in_systm.h>
34 #include <netinet/ip.h>
35 #include <sys/socket.h>
55 #include "throughput.h"
57 #include "descriptor.h"
66 #include "slcompress.h"
83 /* for received LQRs */
85 struct fsm_opt_hdr hdr
;
86 u_short proto
; /* Quality protocol */
87 u_int32_t period
; /* Reporting interval */
90 static int LcpLayerUp(struct fsm
*);
91 static void LcpLayerDown(struct fsm
*);
92 static void LcpLayerStart(struct fsm
*);
93 static void LcpLayerFinish(struct fsm
*);
94 static void LcpInitRestartCounter(struct fsm
*, int);
95 static void LcpSendConfigReq(struct fsm
*);
96 static void LcpSentTerminateReq(struct fsm
*);
97 static void LcpSendTerminateAck(struct fsm
*, u_char
);
98 static void LcpDecodeConfig(struct fsm
*, u_char
*, u_char
*, int,
101 static struct fsm_callbacks lcp_Callbacks
= {
106 LcpInitRestartCounter
,
111 fsm_NullRecvResetReq
,
115 static const char * const lcp_TimerNames
[] =
116 {"LCP restart", "LCP openmode", "LCP stopped"};
119 protoname(unsigned proto
)
121 static const char * const cftypes
[] = {
122 /* Check out the latest ``Assigned numbers'' rfc (1700) */
124 "MRU", /* 1: Maximum-Receive-Unit */
125 "ACCMAP", /* 2: Async-Control-Character-Map */
126 "AUTHPROTO", /* 3: Authentication-Protocol */
127 "QUALPROTO", /* 4: Quality-Protocol */
128 "MAGICNUM", /* 5: Magic-Number */
129 "RESERVED", /* 6: RESERVED */
130 "PROTOCOMP", /* 7: Protocol-Field-Compression */
131 "ACFCOMP", /* 8: Address-and-Control-Field-Compression */
132 "FCSALT", /* 9: FCS-Alternatives */
133 "SDP", /* 10: Self-Describing-Pad */
134 "NUMMODE", /* 11: Numbered-Mode */
135 "MULTIPROC", /* 12: Multi-Link-Procedure */
136 "CALLBACK", /* 13: Callback */
137 "CONTIME", /* 14: Connect-Time */
138 "COMPFRAME", /* 15: Compound-Frames */
139 "NDE", /* 16: Nominal-Data-Encapsulation */
140 "MRRU", /* 17: Multilink-MRRU */
141 "SHORTSEQ", /* 18: Multilink-Short-Sequence-Number-Header */
142 "ENDDISC", /* 19: Multilink-Endpoint-Discriminator */
143 "PROPRIETRY", /* 20: Proprietary */
144 "DCEID", /* 21: DCE-Identifier */
145 "MULTIPP", /* 22: Multi-Link-Plus-Procedure */
146 "LDBACP", /* 23: Link Discriminator for BACP */
149 if (proto
> NELEM(cftypes
) || cftypes
[proto
] == NULL
)
150 return HexStr(proto
, NULL
, 0);
152 return cftypes
[proto
];
156 lcp_ReportStatus(struct cmdargs
const *arg
)
161 l
= command_ChooseLink(arg
);
164 prompt_Printf(arg
->prompt
, "%s: %s [%s]\n", l
->name
, lcp
->fsm
.name
,
165 State2Nam(lcp
->fsm
.state
));
166 prompt_Printf(arg
->prompt
,
167 " his side: MRU %d, ACCMAP %08lx, PROTOCOMP %s, ACFCOMP %s,\n"
168 " MAGIC %08lx, MRRU %u, SHORTSEQ %s, REJECT %04x\n",
169 lcp
->his_mru
, (u_long
)lcp
->his_accmap
,
170 lcp
->his_protocomp
? "on" : "off",
171 lcp
->his_acfcomp
? "on" : "off",
172 (u_long
)lcp
->his_magic
, lcp
->his_mrru
,
173 lcp
->his_shortseq
? "on" : "off", lcp
->his_reject
);
174 prompt_Printf(arg
->prompt
,
175 " my side: MRU %d, ACCMAP %08lx, PROTOCOMP %s, ACFCOMP %s,\n"
176 " MAGIC %08lx, MRRU %u, SHORTSEQ %s, REJECT %04x\n",
177 lcp
->want_mru
, (u_long
)lcp
->want_accmap
,
178 lcp
->want_protocomp
? "on" : "off",
179 lcp
->want_acfcomp
? "on" : "off",
180 (u_long
)lcp
->want_magic
, lcp
->want_mrru
,
181 lcp
->want_shortseq
? "on" : "off", lcp
->my_reject
);
184 prompt_Printf(arg
->prompt
, "\n Defaults: MRU = %d (max %d), ",
185 lcp
->cfg
.mru
, lcp
->cfg
.max_mru
);
187 prompt_Printf(arg
->prompt
, "\n Defaults: MRU = any (max %d), ",
190 prompt_Printf(arg
->prompt
, "MTU = %d (max %d), ",
191 lcp
->cfg
.mtu
, lcp
->cfg
.max_mtu
);
193 prompt_Printf(arg
->prompt
, "MTU = any (max %d), ", lcp
->cfg
.max_mtu
);
194 prompt_Printf(arg
->prompt
, "ACCMAP = %08lx\n", (u_long
)lcp
->cfg
.accmap
);
195 prompt_Printf(arg
->prompt
, " LQR period = %us, ",
197 prompt_Printf(arg
->prompt
, "Open Mode = %s",
198 lcp
->cfg
.openmode
== OPEN_PASSIVE
? "passive" : "active");
199 if (lcp
->cfg
.openmode
> 0)
200 prompt_Printf(arg
->prompt
, " (delay %ds)", lcp
->cfg
.openmode
);
201 prompt_Printf(arg
->prompt
, "\n FSM retry = %us, max %u Config"
202 " REQ%s, %u Term REQ%s\n", lcp
->cfg
.fsm
.timeout
,
203 lcp
->cfg
.fsm
.maxreq
, lcp
->cfg
.fsm
.maxreq
== 1 ? "" : "s",
204 lcp
->cfg
.fsm
.maxtrm
, lcp
->cfg
.fsm
.maxtrm
== 1 ? "" : "s");
205 prompt_Printf(arg
->prompt
, " Ident: %s\n", lcp
->cfg
.ident
);
206 prompt_Printf(arg
->prompt
, "\n Negotiation:\n");
207 prompt_Printf(arg
->prompt
, " ACFCOMP = %s\n",
208 command_ShowNegval(lcp
->cfg
.acfcomp
));
209 prompt_Printf(arg
->prompt
, " CHAP = %s\n",
210 command_ShowNegval(lcp
->cfg
.chap05
));
212 prompt_Printf(arg
->prompt
, " CHAP80 = %s\n",
213 command_ShowNegval(lcp
->cfg
.chap80nt
));
214 prompt_Printf(arg
->prompt
, " LANMan = %s\n",
215 command_ShowNegval(lcp
->cfg
.chap80lm
));
216 prompt_Printf(arg
->prompt
, " CHAP81 = %s\n",
217 command_ShowNegval(lcp
->cfg
.chap81
));
219 prompt_Printf(arg
->prompt
, " LQR = %s\n",
220 command_ShowNegval(lcp
->cfg
.lqr
));
221 prompt_Printf(arg
->prompt
, " PAP = %s\n",
222 command_ShowNegval(lcp
->cfg
.pap
));
223 prompt_Printf(arg
->prompt
, " PROTOCOMP = %s\n",
224 command_ShowNegval(lcp
->cfg
.protocomp
));
232 /* Generate random number which will be used as magic number */
238 lcp_SetupCallbacks(struct lcp
*lcp
)
240 lcp
->fsm
.fn
= &lcp_Callbacks
;
241 lcp
->fsm
.FsmTimer
.name
= lcp_TimerNames
[0];
242 lcp
->fsm
.OpenTimer
.name
= lcp_TimerNames
[1];
243 lcp
->fsm
.StoppedTimer
.name
= lcp_TimerNames
[2];
247 lcp_Init(struct lcp
*lcp
, struct bundle
*bundle
, struct link
*l
,
248 const struct fsm_parent
*parent
)
250 /* Initialise ourselves */
251 int mincode
= parent
? 1 : LCP_MINMPCODE
;
253 fsm_Init(&lcp
->fsm
, "LCP", PROTO_LCP
, mincode
, LCP_MAXCODE
, LogLCP
,
254 bundle
, l
, parent
, &lcp_Callbacks
, lcp_TimerNames
);
257 lcp
->cfg
.max_mru
= MAX_MRU
;
259 lcp
->cfg
.max_mtu
= MAX_MTU
;
261 lcp
->cfg
.openmode
= 1;
262 lcp
->cfg
.lqrperiod
= DEF_LQRPERIOD
;
263 lcp
->cfg
.fsm
.timeout
= DEF_FSMRETRY
;
264 lcp
->cfg
.fsm
.maxreq
= DEF_FSMTRIES
;
265 lcp
->cfg
.fsm
.maxtrm
= DEF_FSMTRIES
;
267 lcp
->cfg
.acfcomp
= NEG_ENABLED
|NEG_ACCEPTED
;
268 lcp
->cfg
.chap05
= NEG_ACCEPTED
;
270 lcp
->cfg
.chap80nt
= NEG_ACCEPTED
;
271 lcp
->cfg
.chap80lm
= 0;
272 lcp
->cfg
.chap81
= NEG_ACCEPTED
;
274 lcp
->cfg
.lqr
= NEG_ACCEPTED
;
275 lcp
->cfg
.pap
= NEG_ACCEPTED
;
276 lcp
->cfg
.protocomp
= NEG_ENABLED
|NEG_ACCEPTED
;
277 *lcp
->cfg
.ident
= '\0';
279 lcp_Setup(lcp
, lcp
->cfg
.openmode
);
283 lcp_Setup(struct lcp
*lcp
, int openmode
)
285 struct physical
*p
= link2physical(lcp
->fsm
.link
);
287 lcp
->fsm
.open_mode
= openmode
;
289 lcp
->his_mru
= DEF_MRU
;
292 lcp
->his_lqrperiod
= 0;
293 lcp
->his_acfcomp
= 0;
295 lcp
->his_authtype
= 0;
296 lcp
->his_callback
.opmask
= 0;
297 lcp
->his_shortseq
= 0;
300 if ((lcp
->want_mru
= lcp
->cfg
.mru
) == 0)
301 lcp
->want_mru
= DEF_MRU
;
302 lcp
->want_mrru
= lcp
->fsm
.bundle
->ncp
.mp
.cfg
.mrru
;
303 lcp
->want_shortseq
= IsEnabled(lcp
->fsm
.bundle
->ncp
.mp
.cfg
.shortseq
) ? 1 : 0;
304 lcp
->want_acfcomp
= IsEnabled(lcp
->cfg
.acfcomp
) ? 1 : 0;
306 if (lcp
->fsm
.parent
) {
307 lcp
->his_accmap
= 0xffffffff;
308 lcp
->want_accmap
= lcp
->cfg
.accmap
;
309 lcp
->his_protocomp
= 0;
310 lcp
->want_protocomp
= IsEnabled(lcp
->cfg
.protocomp
) ? 1 : 0;
311 lcp
->want_magic
= GenerateMagic();
313 if (IsEnabled(lcp
->cfg
.chap05
)) {
314 lcp
->want_auth
= PROTO_CHAP
;
315 lcp
->want_authtype
= 0x05;
317 } else if (IsEnabled(lcp
->cfg
.chap80nt
) ||
318 IsEnabled(lcp
->cfg
.chap80lm
)) {
319 lcp
->want_auth
= PROTO_CHAP
;
320 lcp
->want_authtype
= 0x80;
321 } else if (IsEnabled(lcp
->cfg
.chap81
)) {
322 lcp
->want_auth
= PROTO_CHAP
;
323 lcp
->want_authtype
= 0x81;
325 } else if (IsEnabled(lcp
->cfg
.pap
)) {
326 lcp
->want_auth
= PROTO_PAP
;
327 lcp
->want_authtype
= 0;
330 lcp
->want_authtype
= 0;
333 if (p
->type
!= PHYS_DIRECT
)
334 memcpy(&lcp
->want_callback
, &p
->dl
->cfg
.callback
,
335 sizeof(struct callback
));
337 lcp
->want_callback
.opmask
= 0;
338 lcp
->want_lqrperiod
= IsEnabled(lcp
->cfg
.lqr
) ?
339 lcp
->cfg
.lqrperiod
* 100 : 0;
341 lcp
->his_accmap
= lcp
->want_accmap
= 0;
342 lcp
->his_protocomp
= lcp
->want_protocomp
= 1;
345 lcp
->want_authtype
= 0;
346 lcp
->want_callback
.opmask
= 0;
347 lcp
->want_lqrperiod
= 0;
350 lcp
->his_reject
= lcp
->my_reject
= 0;
351 lcp
->auth_iwait
= lcp
->auth_ineed
= 0;
352 lcp
->LcpFailedMagic
= 0;
356 LcpInitRestartCounter(struct fsm
*fp
, int what
)
358 /* Set fsm timer load */
359 struct lcp
*lcp
= fsm2lcp(fp
);
361 fp
->FsmTimer
.load
= lcp
->cfg
.fsm
.timeout
* SECTICKS
;
364 fp
->restart
= lcp
->cfg
.fsm
.maxreq
;
367 fp
->restart
= lcp
->cfg
.fsm
.maxtrm
;
376 LcpSendConfigReq(struct fsm
*fp
)
378 /* Send config REQ please */
379 struct physical
*p
= link2physical(fp
->link
);
380 struct lcp
*lcp
= fsm2lcp(fp
);
388 log_Printf(LogERROR
, "%s: LcpSendConfigReq: Not a physical link !\n",
393 o
= (struct fsm_opt
*)buff
;
394 if (!physical_IsSync(p
)) {
395 if (lcp
->want_acfcomp
&& !REJECTED(lcp
, TY_ACFCOMP
))
396 INC_FSM_OPT(TY_ACFCOMP
, 2, o
);
398 if (lcp
->want_protocomp
&& !REJECTED(lcp
, TY_PROTOCOMP
))
399 INC_FSM_OPT(TY_PROTOCOMP
, 2, o
);
401 if (!REJECTED(lcp
, TY_ACCMAP
)) {
402 ua_htonl(&lcp
->want_accmap
, o
->data
);
403 INC_FSM_OPT(TY_ACCMAP
, 6, o
);
407 maxmru
= p
? physical_DeviceMTU(p
) : 0;
408 if (lcp
->cfg
.max_mru
&& (!maxmru
|| maxmru
> lcp
->cfg
.max_mru
))
409 maxmru
= lcp
->cfg
.max_mru
;
410 if (maxmru
&& lcp
->want_mru
> maxmru
) {
411 log_Printf(LogWARN
, "%s: Reducing configured MRU from %u to %u\n",
412 fp
->link
->name
, lcp
->want_mru
, maxmru
);
413 lcp
->want_mru
= maxmru
;
415 if (!REJECTED(lcp
, TY_MRU
)) {
416 ua_htons(&lcp
->want_mru
, o
->data
);
417 INC_FSM_OPT(TY_MRU
, 4, o
);
420 if (lcp
->want_magic
&& !REJECTED(lcp
, TY_MAGICNUM
)) {
421 ua_htonl(&lcp
->want_magic
, o
->data
);
422 INC_FSM_OPT(TY_MAGICNUM
, 6, o
);
425 if (lcp
->want_lqrperiod
&& !REJECTED(lcp
, TY_QUALPROTO
)) {
427 ua_htons(&proto
, o
->data
);
428 ua_htonl(&lcp
->want_lqrperiod
, o
->data
+ 2);
429 INC_FSM_OPT(TY_QUALPROTO
, 8, o
);
432 switch (lcp
->want_auth
) {
435 ua_htons(&proto
, o
->data
);
436 INC_FSM_OPT(TY_AUTHPROTO
, 4, o
);
441 ua_htons(&proto
, o
->data
);
442 o
->data
[2] = lcp
->want_authtype
;
443 INC_FSM_OPT(TY_AUTHPROTO
, 5, o
);
447 if (!REJECTED(lcp
, TY_CALLBACK
)) {
448 if (lcp
->want_callback
.opmask
& CALLBACK_BIT(CALLBACK_AUTH
)) {
449 *o
->data
= CALLBACK_AUTH
;
450 INC_FSM_OPT(TY_CALLBACK
, 3, o
);
451 } else if (lcp
->want_callback
.opmask
& CALLBACK_BIT(CALLBACK_CBCP
)) {
452 *o
->data
= CALLBACK_CBCP
;
453 INC_FSM_OPT(TY_CALLBACK
, 3, o
);
454 } else if (lcp
->want_callback
.opmask
& CALLBACK_BIT(CALLBACK_E164
)) {
455 size_t sz
= strlen(lcp
->want_callback
.msg
);
457 if (sz
> sizeof o
->data
- 1) {
458 sz
= sizeof o
->data
- 1;
459 log_Printf(LogWARN
, "Truncating E164 data to %zu octets (oops!)\n", sz
);
461 *o
->data
= CALLBACK_E164
;
462 memcpy(o
->data
+ 1, lcp
->want_callback
.msg
, sz
);
463 INC_FSM_OPT(TY_CALLBACK
, sz
+ 3, o
);
467 if (lcp
->want_mrru
&& !REJECTED(lcp
, TY_MRRU
)) {
468 ua_htons(&lcp
->want_mrru
, o
->data
);
469 INC_FSM_OPT(TY_MRRU
, 4, o
);
471 if (lcp
->want_shortseq
&& !REJECTED(lcp
, TY_SHORTSEQ
))
472 INC_FSM_OPT(TY_SHORTSEQ
, 2, o
);
475 mp
= &lcp
->fsm
.bundle
->ncp
.mp
;
476 if (mp
->cfg
.enddisc
.class != 0 && IsEnabled(mp
->cfg
.negenddisc
) &&
477 !REJECTED(lcp
, TY_ENDDISC
)) {
478 *o
->data
= mp
->cfg
.enddisc
.class;
479 memcpy(o
->data
+1, mp
->cfg
.enddisc
.address
, mp
->cfg
.enddisc
.len
);
480 INC_FSM_OPT(TY_ENDDISC
, mp
->cfg
.enddisc
.len
+ 3, o
);
483 fsm_Output(fp
, CODE_CONFIGREQ
, fp
->reqid
, buff
, (u_char
*)o
- buff
,
488 lcp_SendProtoRej(struct lcp
*lcp
, u_char
*option
, int count
)
490 /* Don't understand `option' */
491 fsm_Output(&lcp
->fsm
, CODE_PROTOREJ
, lcp
->fsm
.reqid
, option
, count
,
496 lcp_SendIdentification(struct lcp
*lcp
)
498 static u_char id
; /* Use a private id */
499 u_char msg
[DEF_MRU
- 3];
503 if (*lcp
->cfg
.ident
== '\0')
506 argv
[0] = lcp
->cfg
.ident
;
509 command_Expand(exp
, 1, argv
, lcp
->fsm
.bundle
, 1, getpid());
511 ua_htonl(&lcp
->want_magic
, msg
);
512 strncpy(msg
+ 4, exp
[0], sizeof msg
- 5);
513 msg
[sizeof msg
- 1] = '\0';
515 fsm_Output(&lcp
->fsm
, CODE_IDENT
, id
++, msg
, 4 + strlen(msg
+ 4), MB_LCPOUT
);
516 log_Printf(LogLCP
, " MAGICNUM %08x\n", lcp
->want_magic
);
517 log_Printf(LogLCP
, " TEXT %s\n", msg
+ 4);
519 command_Free(1, exp
);
524 lcp_RecvIdentification(struct lcp
*lcp
, char *data
)
526 log_Printf(LogLCP
, " MAGICNUM %08x\n", lcp
->his_magic
);
527 log_Printf(LogLCP
, " TEXT %s\n", data
);
531 LcpSentTerminateReq(struct fsm
*fp __unused
)
533 /* Term REQ just sent by FSM */
537 LcpSendTerminateAck(struct fsm
*fp
, u_char id
)
539 /* Send Term ACK please */
540 struct physical
*p
= link2physical(fp
->link
);
542 if (p
&& p
->dl
->state
== DATALINK_CBCP
)
543 cbcp_ReceiveTerminateReq(p
);
545 fsm_Output(fp
, CODE_TERMACK
, id
, NULL
, 0, MB_LCPOUT
);
549 LcpLayerStart(struct fsm
*fp
)
551 /* We're about to start up ! */
552 struct lcp
*lcp
= fsm2lcp(fp
);
554 log_Printf(LogLCP
, "%s: LayerStart\n", fp
->link
->name
);
555 lcp
->LcpFailedMagic
= 0;
556 fp
->more
.reqs
= fp
->more
.naks
= fp
->more
.rejs
= lcp
->cfg
.fsm
.maxreq
* 3;
561 LcpLayerFinish(struct fsm
*fp
)
564 log_Printf(LogLCP
, "%s: LayerFinish\n", fp
->link
->name
);
568 LcpLayerUp(struct fsm
*fp
)
571 struct physical
*p
= link2physical(fp
->link
);
572 struct lcp
*lcp
= fsm2lcp(fp
);
574 log_Printf(LogLCP
, "%s: LayerUp\n", fp
->link
->name
);
575 physical_SetAsyncParams(p
, lcp
->want_accmap
, lcp
->his_accmap
);
577 hdlc_StartTimer(&p
->hdlc
);
578 fp
->more
.reqs
= fp
->more
.naks
= fp
->more
.rejs
= lcp
->cfg
.fsm
.maxreq
* 3;
580 lcp_SendIdentification(lcp
);
586 LcpLayerDown(struct fsm
*fp
)
588 /* About to come down */
589 struct physical
*p
= link2physical(fp
->link
);
591 log_Printf(LogLCP
, "%s: LayerDown\n", fp
->link
->name
);
592 hdlc_StopTimer(&p
->hdlc
);
594 lcp_Setup(fsm2lcp(fp
), 0);
598 E164ok(struct callback
*cb
, char *req
, int sz
)
600 char list
[sizeof cb
->msg
], *next
;
603 if (!strcmp(cb
->msg
, "*"))
606 strncpy(list
, cb
->msg
, sizeof list
- 1);
607 list
[sizeof list
- 1] = '\0';
608 for (next
= strtok(list
, ","); next
; next
= strtok(NULL
, ",")) {
610 if (sz
== len
&& !memcmp(list
, req
, sz
))
617 lcp_auth_nak(struct lcp
*lcp
, struct fsm_decode
*dec
)
621 nak
.hdr
.id
= TY_AUTHPROTO
;
623 if (IsAccepted(lcp
->cfg
.pap
)) {
625 nak
.data
[0] = (unsigned char)(PROTO_PAP
>> 8);
626 nak
.data
[1] = (unsigned char)PROTO_PAP
;
632 nak
.data
[0] = (unsigned char)(PROTO_CHAP
>> 8);
633 nak
.data
[1] = (unsigned char)PROTO_CHAP
;
635 if (IsAccepted(lcp
->cfg
.chap05
)) {
639 } else if (IsAccepted(lcp
->cfg
.chap80nt
) ||
640 IsAccepted(lcp
->cfg
.chap80lm
)) {
643 } else if (IsAccepted(lcp
->cfg
.chap81
)) {
655 LcpDecodeConfig(struct fsm
*fp
, u_char
*cp
, u_char
*end
, int mode_type
,
656 struct fsm_decode
*dec
)
658 /* Deal with incoming PROTO_LCP */
659 struct lcp
*lcp
= fsm2lcp(fp
);
660 int pos
, op
, callback_req
, chap_type
;
662 u_int32_t magic
, accmap
;
663 u_short mru
, phmtu
, maxmtu
, maxmru
, wantmtu
, wantmru
, proto
;
665 char request
[20], desc
[22];
667 struct physical
*p
= link2physical(fp
->link
);
668 struct fsm_opt
*opt
, nak
;
671 op
= callback_req
= 0;
673 while (end
- cp
>= (int)sizeof(opt
->hdr
)) {
674 if ((opt
= fsm_readopt(&cp
)) == NULL
)
677 snprintf(request
, sizeof request
, " %s[%d]", protoname(opt
->hdr
.id
),
680 switch (opt
->hdr
.id
) {
682 mp
= &lcp
->fsm
.bundle
->ncp
.mp
;
683 ua_ntohs(opt
->data
, &mru
);
684 log_Printf(LogLCP
, "%s %u\n", request
, mru
);
689 if (REJECTED(lcp
, TY_MRRU
))
690 /* Ignore his previous reject so that we REQ next time */
691 lcp
->his_reject
&= ~(1 << opt
->hdr
.id
);
694 /* Push him down to MAX_MRU */
695 lcp
->his_mrru
= MAX_MRU
;
696 nak
.hdr
.id
= TY_MRRU
;
698 ua_htons(&lcp
->his_mrru
, nak
.data
);
700 } else if (mru
< MIN_MRU
) {
701 /* Push him up to MIN_MRU */
702 lcp
->his_mrru
= MIN_MRU
;
703 nak
.hdr
.id
= TY_MRRU
;
705 ua_htons(&lcp
->his_mrru
, nak
.data
);
714 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
719 if (REJECTED(lcp
, TY_MRRU
))
720 /* Must have changed his mind ! */
721 lcp
->his_reject
&= ~(1 << opt
->hdr
.id
);
724 lcp
->want_mrru
= MAX_MRU
;
725 else if (mru
< MIN_MRU
)
726 lcp
->want_mrru
= MIN_MRU
;
728 lcp
->want_mrru
= mru
;
730 /* else we honour our config and don't send the suggested REQ */
733 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
734 lcp
->want_mrru
= 0; /* Ah well, no multilink :-( */
741 ua_ntohs(opt
->data
, &mru
);
742 log_Printf(LogLCP
, "%s %d\n", request
, mru
);
746 maxmtu
= p
? physical_DeviceMTU(p
) : 0;
747 if (lcp
->cfg
.max_mtu
&& (!maxmtu
|| maxmtu
> lcp
->cfg
.max_mtu
))
748 maxmtu
= lcp
->cfg
.max_mtu
;
749 wantmtu
= lcp
->cfg
.mtu
;
750 if (maxmtu
&& wantmtu
> maxmtu
) {
751 log_Printf(LogWARN
, "%s: Reducing configured MTU from %u to %u\n",
752 fp
->link
->name
, wantmtu
, maxmtu
);
756 if (maxmtu
&& mru
> maxmtu
) {
757 lcp
->his_mru
= maxmtu
;
760 ua_htons(&lcp
->his_mru
, nak
.data
);
762 } else if (wantmtu
&& mru
< wantmtu
) {
763 /* Push him up to MTU or MIN_MRU */
764 lcp
->his_mru
= wantmtu
;
767 ua_htons(&lcp
->his_mru
, nak
.data
);
775 maxmru
= p
? physical_DeviceMTU(p
) : 0;
776 if (lcp
->cfg
.max_mru
&& (!maxmru
|| maxmru
> lcp
->cfg
.max_mru
))
777 maxmru
= lcp
->cfg
.max_mru
;
778 wantmru
= lcp
->cfg
.mru
> maxmru
? maxmru
: lcp
->cfg
.mru
;
780 if (wantmru
&& mru
> wantmru
)
781 lcp
->want_mru
= wantmru
;
782 else if (mru
> maxmru
)
783 lcp
->want_mru
= maxmru
;
784 else if (mru
< MIN_MRU
)
785 lcp
->want_mru
= MIN_MRU
;
790 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
796 ua_ntohl(opt
->data
, &accmap
);
797 log_Printf(LogLCP
, "%s 0x%08lx\n", request
, (u_long
)accmap
);
801 lcp
->his_accmap
= accmap
;
805 lcp
->want_accmap
= accmap
;
808 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
814 ua_ntohs(opt
->data
, &proto
);
815 chap_type
= opt
->hdr
.len
== 5 ? opt
->data
[2] : 0;
817 log_Printf(LogLCP
, "%s 0x%04x (%s)\n", request
, proto
,
818 Auth2Nam(proto
, chap_type
));
824 if (opt
->hdr
.len
== 4 && IsAccepted(lcp
->cfg
.pap
)) {
825 lcp
->his_auth
= proto
;
826 lcp
->his_authtype
= 0;
828 } else if (!lcp_auth_nak(lcp
, dec
)) {
829 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
835 if ((chap_type
== 0x05 && IsAccepted(lcp
->cfg
.chap05
))
837 || (chap_type
== 0x80 && (IsAccepted(lcp
->cfg
.chap80nt
) ||
838 (IsAccepted(lcp
->cfg
.chap80lm
))))
839 || (chap_type
== 0x81 && IsAccepted(lcp
->cfg
.chap81
))
842 lcp
->his_auth
= proto
;
843 lcp
->his_authtype
= chap_type
;
847 if (chap_type
== 0x80) {
848 log_Printf(LogWARN
, "CHAP 0x80 not available without DES\n");
849 } else if (chap_type
== 0x81) {
850 log_Printf(LogWARN
, "CHAP 0x81 not available without DES\n");
853 if (chap_type
!= 0x05)
854 log_Printf(LogWARN
, "%s not supported\n",
855 Auth2Nam(PROTO_CHAP
, chap_type
));
857 if (!lcp_auth_nak(lcp
, dec
)) {
858 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
865 log_Printf(LogLCP
, "%s 0x%04x - not recognised\n",
867 if (!lcp_auth_nak(lcp
, dec
)) {
868 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
878 if (IsEnabled(lcp
->cfg
.pap
)) {
879 lcp
->want_auth
= PROTO_PAP
;
880 lcp
->want_authtype
= 0;
882 log_Printf(LogLCP
, "Peer will only send PAP (not enabled)\n");
883 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
887 if (chap_type
== 0x05 && IsEnabled(lcp
->cfg
.chap05
)) {
888 lcp
->want_auth
= PROTO_CHAP
;
889 lcp
->want_authtype
= 0x05;
891 } else if (chap_type
== 0x80 && (IsEnabled(lcp
->cfg
.chap80nt
) ||
892 IsEnabled(lcp
->cfg
.chap80lm
))) {
893 lcp
->want_auth
= PROTO_CHAP
;
894 lcp
->want_authtype
= 0x80;
895 } else if (chap_type
== 0x81 && IsEnabled(lcp
->cfg
.chap81
)) {
896 lcp
->want_auth
= PROTO_CHAP
;
897 lcp
->want_authtype
= 0x81;
901 if (chap_type
== 0x80) {
902 log_Printf(LogLCP
, "Peer will only send MSCHAP (not available"
904 } else if (chap_type
== 0x81) {
905 log_Printf(LogLCP
, "Peer will only send MSCHAPV2 (not available"
909 log_Printf(LogLCP
, "Peer will only send %s (not %s)\n",
910 Auth2Nam(PROTO_CHAP
, chap_type
),
912 (chap_type
== 0x80 || chap_type
== 0x81) ? "configured" :
915 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
919 /* We've been NAK'd with something we don't understand :-( */
920 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
926 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
932 req
= (struct lqrreq
*)opt
;
933 log_Printf(LogLCP
, "%s proto %x, interval %lums\n",
934 request
, ntohs(req
->proto
), (u_long
)ntohl(req
->period
) * 10);
937 if (ntohs(req
->proto
) != PROTO_LQR
|| !IsAccepted(lcp
->cfg
.lqr
)) {
939 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
941 lcp
->his_lqrperiod
= ntohl(req
->period
);
942 if (lcp
->his_lqrperiod
< MIN_LQRPERIOD
* 100)
943 lcp
->his_lqrperiod
= MIN_LQRPERIOD
* 100;
944 req
->period
= htonl(lcp
->his_lqrperiod
);
949 lcp
->want_lqrperiod
= ntohl(req
->period
);
952 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
958 ua_ntohl(opt
->data
, &magic
);
959 log_Printf(LogLCP
, "%s 0x%08lx\n", request
, (u_long
)magic
);
963 if (lcp
->want_magic
) {
964 /* Validate magic number */
965 if (magic
== lcp
->want_magic
) {
968 log_Printf(LogLCP
, "Magic is same (%08lx) - %d times\n",
969 (u_long
)magic
, ++lcp
->LcpFailedMagic
);
970 lcp
->want_magic
= GenerateMagic();
972 ualarm(TICKUNIT
* (4 + 4 * lcp
->LcpFailedMagic
), 0);
973 sigemptyset(&emptyset
);
974 sigsuspend(&emptyset
);
976 lcp
->his_magic
= magic
;
977 lcp
->LcpFailedMagic
= 0;
981 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
986 log_Printf(LogLCP
, " Magic 0x%08lx is NAKed!\n", (u_long
)magic
);
987 lcp
->want_magic
= GenerateMagic();
990 log_Printf(LogLCP
, " Magic 0x%08x is REJected!\n", magic
);
992 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
998 log_Printf(LogLCP
, "%s\n", request
);
1000 switch (mode_type
) {
1002 if (IsAccepted(lcp
->cfg
.protocomp
)) {
1003 lcp
->his_protocomp
= 1;
1007 /* MorningStar before v1.3 needs NAK */
1011 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1017 lcp
->want_protocomp
= 0;
1018 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
1024 log_Printf(LogLCP
, "%s\n", request
);
1025 switch (mode_type
) {
1027 if (IsAccepted(lcp
->cfg
.acfcomp
)) {
1028 lcp
->his_acfcomp
= 1;
1032 /* MorningStar before v1.3 needs NAK */
1036 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1042 lcp
->want_acfcomp
= 0;
1043 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
1049 log_Printf(LogLCP
, "%s\n", request
);
1050 switch (mode_type
) {
1059 if (opt
->hdr
.len
== 2) {
1063 op
= (int)opt
->data
[0];
1064 sz
= opt
->hdr
.len
- 3;
1068 log_Printf(LogLCP
, "%s Auth\n", request
);
1070 case CALLBACK_DIALSTRING
:
1071 log_Printf(LogLCP
, "%s Dialstring %.*s\n", request
, (int)sz
,
1074 case CALLBACK_LOCATION
:
1075 log_Printf(LogLCP
, "%s Location %.*s\n", request
, (int)sz
, opt
->data
+ 1);
1078 log_Printf(LogLCP
, "%s E.164 (%.*s)\n", request
, (int)sz
, opt
->data
+ 1);
1081 log_Printf(LogLCP
, "%s Name %.*s\n", request
, (int)sz
, opt
->data
+ 1);
1084 log_Printf(LogLCP
, "%s CBCP\n", request
);
1087 log_Printf(LogLCP
, "%s ???\n", request
);
1091 switch (mode_type
) {
1094 if (p
->type
!= PHYS_DIRECT
) {
1096 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1098 nak
.hdr
.id
= opt
->hdr
.id
;
1100 if ((p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(op
)) &&
1101 (op
!= CALLBACK_AUTH
|| p
->link
.lcp
.want_auth
) &&
1102 (op
!= CALLBACK_E164
||
1103 E164ok(&p
->dl
->cfg
.callback
, opt
->data
+ 1, sz
))) {
1104 lcp
->his_callback
.opmask
= CALLBACK_BIT(op
);
1105 if (sz
> sizeof lcp
->his_callback
.msg
- 1) {
1106 sz
= sizeof lcp
->his_callback
.msg
- 1;
1107 log_Printf(LogWARN
, "Truncating option arg to %zu octets\n", sz
);
1109 memcpy(lcp
->his_callback
.msg
, opt
->data
+ 1, sz
);
1110 lcp
->his_callback
.msg
[sz
] = '\0';
1112 } else if ((p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(CALLBACK_AUTH
)) &&
1113 p
->link
.lcp
.auth_ineed
) {
1114 nak
.data
[0] = CALLBACK_AUTH
;
1116 } else if (p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(CALLBACK_CBCP
)) {
1117 nak
.data
[0] = CALLBACK_CBCP
;
1119 } else if (p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(CALLBACK_E164
)) {
1120 nak
.data
[0] = CALLBACK_E164
;
1122 } else if (p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(CALLBACK_AUTH
)) {
1123 log_Printf(LogWARN
, "Cannot insist on auth callback without"
1124 " PAP or CHAP enabled !\n");
1128 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1133 /* We don't do what he NAKs with, we do things in our preferred order */
1134 if (lcp
->want_callback
.opmask
& CALLBACK_BIT(CALLBACK_AUTH
))
1135 lcp
->want_callback
.opmask
&= ~CALLBACK_BIT(CALLBACK_AUTH
);
1136 else if (lcp
->want_callback
.opmask
& CALLBACK_BIT(CALLBACK_CBCP
))
1137 lcp
->want_callback
.opmask
&= ~CALLBACK_BIT(CALLBACK_CBCP
);
1138 else if (lcp
->want_callback
.opmask
& CALLBACK_BIT(CALLBACK_E164
))
1139 lcp
->want_callback
.opmask
&= ~CALLBACK_BIT(CALLBACK_E164
);
1140 if (lcp
->want_callback
.opmask
== CALLBACK_BIT(CALLBACK_NONE
)) {
1141 log_Printf(LogPHASE
, "Peer NAKd all callbacks, trying none\n");
1142 lcp
->want_callback
.opmask
= 0;
1143 } else if (!lcp
->want_callback
.opmask
) {
1144 log_Printf(LogPHASE
, "Peer NAKd last configured callback\n");
1145 fsm_Close(&lcp
->fsm
);
1149 if (lcp
->want_callback
.opmask
& CALLBACK_BIT(CALLBACK_NONE
)) {
1150 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
1151 lcp
->want_callback
.opmask
= 0;
1153 log_Printf(LogPHASE
, "Peer rejected *required* callback\n");
1154 fsm_Close(&lcp
->fsm
);
1161 mp
= &lcp
->fsm
.bundle
->ncp
.mp
;
1162 log_Printf(LogLCP
, "%s\n", request
);
1164 switch (mode_type
) {
1166 if (lcp
->want_mrru
&& IsAccepted(mp
->cfg
.shortseq
)) {
1167 lcp
->his_shortseq
= 1;
1171 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1176 * He's trying to get us to ask for short sequence numbers.
1177 * We ignore the NAK and honour our configuration file instead.
1181 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
1182 lcp
->want_shortseq
= 0; /* For when we hit MP */
1188 mp
= &lcp
->fsm
.bundle
->ncp
.mp
;
1189 log_Printf(LogLCP
, "%s %s\n", request
,
1190 mp_Enddisc(opt
->data
[0], opt
->data
+ 1, opt
->hdr
.len
- 3));
1191 switch (mode_type
) {
1194 log_Printf(LogLCP
, " ENDDISC rejected - not a physical link\n");
1196 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1197 } else if (!IsAccepted(mp
->cfg
.negenddisc
)) {
1198 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1200 } else if (opt
->hdr
.len
< sizeof p
->dl
->peer
.enddisc
.address
+ 3 &&
1201 opt
->data
[0] <= MAX_ENDDISC_CLASS
) {
1202 p
->dl
->peer
.enddisc
.class = opt
->data
[0];
1203 p
->dl
->peer
.enddisc
.len
= opt
->hdr
.len
- 3;
1204 memcpy(p
->dl
->peer
.enddisc
.address
, opt
->data
+ 1, opt
->hdr
.len
- 3);
1205 p
->dl
->peer
.enddisc
.address
[opt
->hdr
.len
- 3] = '\0';
1206 /* XXX: If mp->active, compare and NAK with mp->peer ? */
1209 if (opt
->data
[0] > MAX_ENDDISC_CLASS
)
1210 log_Printf(LogLCP
, " ENDDISC rejected - unrecognised class %d\n",
1213 log_Printf(LogLCP
, " ENDDISC rejected - local max length is %ld\n",
1214 (long)(sizeof p
->dl
->peer
.enddisc
.address
- 1));
1216 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1220 case MODE_NAK
: /* Treat this as a REJ, we don't vary our disc (yet) */
1222 lcp
->his_reject
|= (1 << opt
->hdr
.id
);
1228 sz
= (sizeof desc
- 2) / 2;
1229 if (sz
+ 2 > opt
->hdr
.len
)
1230 sz
= opt
->hdr
.len
- 2;
1232 desc
[0] = sz
? ' ' : '\0';
1233 for (pos
= 0; sz
--; pos
++)
1234 sprintf(desc
+(pos
<<1)+1, "%02x", opt
->data
[pos
]);
1236 log_Printf(LogLCP
, "%s%s\n", request
, desc
);
1238 if (mode_type
== MODE_REQ
) {
1240 lcp
->my_reject
|= (1 << opt
->hdr
.id
);
1246 if (mode_type
!= MODE_NOP
) {
1247 if (mode_type
== MODE_REQ
&& p
&& p
->type
== PHYS_DIRECT
&&
1248 p
->dl
->cfg
.callback
.opmask
&& !callback_req
&&
1249 !(p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(CALLBACK_NONE
))) {
1250 /* We *REQUIRE* that the peer requests callback */
1251 nak
.hdr
.id
= TY_CALLBACK
;
1253 if ((p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(CALLBACK_AUTH
)) &&
1254 p
->link
.lcp
.want_auth
)
1255 nak
.data
[0] = CALLBACK_AUTH
;
1256 else if (p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(CALLBACK_CBCP
))
1257 nak
.data
[0] = CALLBACK_CBCP
;
1258 else if (p
->dl
->cfg
.callback
.opmask
& CALLBACK_BIT(CALLBACK_E164
))
1259 nak
.data
[0] = CALLBACK_E164
;
1261 log_Printf(LogWARN
, "Cannot insist on auth callback without"
1262 " PAP or CHAP enabled !\n");
1263 nak
.hdr
.len
= 2; /* XXX: Silly ! */
1267 if (mode_type
== MODE_REQ
&& !lcp
->mru_req
) {
1269 phmtu
= p
? physical_DeviceMTU(p
) : 0;
1270 if (phmtu
&& mru
> phmtu
)
1272 if (mru
> lcp
->cfg
.max_mtu
)
1273 mru
= lcp
->cfg
.max_mtu
;
1274 if (mru
< DEF_MRU
) {
1275 /* Don't let the peer use the default MRU */
1276 lcp
->his_mru
= lcp
->cfg
.mtu
&& lcp
->cfg
.mtu
< mru
? lcp
->cfg
.mtu
: mru
;
1277 nak
.hdr
.id
= TY_MRU
;
1279 ua_htons(&lcp
->his_mru
, nak
.data
);
1281 lcp
->mru_req
= 1; /* Don't keep NAK'ing this */
1284 fsm_opt_normalise(dec
);
1288 extern struct mbuf
*
1289 lcp_Input(struct bundle
*bundle __unused
, struct link
*l
, struct mbuf
*bp
)
1291 /* Got PROTO_LCP from link */
1292 m_settype(bp
, MB_LCPIN
);
1293 fsm_Input(&l
->lcp
.fsm
, bp
);