1 /*** WARNING - THIS HAS NEVER BEEN FINISHED ***/
2 /*****************************************************************************
3 * chap.c - Network Challenge Handshake Authentication Protocol program file.
5 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
6 * portions Copyright (c) 1997 by Global Election Systems Inc.
8 * The authors hereby grant permission to use, copy, modify, distribute,
9 * and license this software and its documentation for any purpose, provided
10 * that existing copyright notices are retained in all copies and that this
11 * notice and the following disclaimer are included verbatim in any
12 * distributions. No written agreement, license, or royalty fee is required
13 * for any of the authorized uses.
15 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 ******************************************************************************
29 * 03-01-01 Marc Boucher <marc@mbsi.ca>
31 * 97-12-04 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.
32 * Original based on BSD chap.c.
33 *****************************************************************************/
35 * chap.c - Challenge Handshake Authentication Protocol.
37 * Copyright (c) 1993 The Australian National University.
38 * All rights reserved.
40 * Redistribution and use in source and binary forms are permitted
41 * provided that the above copyright notice and this paragraph are
42 * duplicated in all such forms and that any documentation,
43 * advertising materials, and other materials related to such
44 * distribution and use acknowledge that the software was developed
45 * by the Australian National University. The name of the University
46 * may not be used to endorse or promote products derived from this
47 * software without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
49 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
50 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
52 * Copyright (c) 1991 Gregory M. Christy.
53 * All rights reserved.
55 * Redistribution and use in source and binary forms are permitted
56 * provided that the above copyright notice and this paragraph are
57 * duplicated in all such forms and that any documentation,
58 * advertising materials, and other materials related to such
59 * distribution and use acknowledge that the software was developed
60 * by Gregory M. Christy. The name of the author may not be used to
61 * endorse or promote products derived from this software without
62 * specific prior written permission.
64 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
65 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
66 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
71 #if PPP_SUPPORT /* don't build if not configured for use in lwipopts.h */
73 #if CHAP_SUPPORT /* don't build if not configured for use in lwipopts.h */
89 * Command-line options.
91 static option_t chap_option_list
[] = {
92 { "chap-restart", o_int
, &chap
[0].timeouttime
,
93 "Set timeout for CHAP" },
94 { "chap-max-challenge", o_int
, &chap
[0].max_transmits
,
95 "Set max #xmits for challenge" },
96 { "chap-interval", o_int
, &chap
[0].chal_interval
,
97 "Set interval for rechallenge" },
99 { "ms-lanman", o_bool
, &ms_lanman
,
100 "Use LanMan passwd when using MS-CHAP", 1 },
107 * Protocol entry points.
109 static void ChapInit (int);
110 static void ChapLowerUp (int);
111 static void ChapLowerDown (int);
112 static void ChapInput (int, u_char
*, int);
113 static void ChapProtocolReject (int);
114 #if PPP_ADDITIONAL_CALLBACKS
115 static int ChapPrintPkt (u_char
*, int, void (*) (void *, char *, ...), void *);
118 struct protent chap_protent
= {
127 #if PPP_ADDITIONAL_CALLBACKS
130 #endif /* PPP_ADDITIONAL_CALLBACKS */
133 #if PPP_ADDITIONAL_CALLBACKS
137 #endif /* PPP_ADDITIONAL_CALLBACKS */
140 chap_state chap
[NUM_PPP
]; /* CHAP state; one for each unit */
142 static void ChapChallengeTimeout (void *);
143 static void ChapResponseTimeout (void *);
144 static void ChapReceiveChallenge (chap_state
*, u_char
*, u_char
, int);
145 static void ChapRechallenge (void *);
146 static void ChapReceiveResponse (chap_state
*, u_char
*, int, int);
147 static void ChapReceiveSuccess(chap_state
*cstate
, u_char
*inp
, u_char id
, int len
);
148 static void ChapReceiveFailure(chap_state
*cstate
, u_char
*inp
, u_char id
, int len
);
149 static void ChapSendStatus (chap_state
*, int);
150 static void ChapSendChallenge (chap_state
*);
151 static void ChapSendResponse (chap_state
*);
152 static void ChapGenChallenge (chap_state
*);
155 * ChapInit - Initialize a CHAP unit.
160 chap_state
*cstate
= &chap
[unit
];
162 BZERO(cstate
, sizeof(*cstate
));
164 cstate
->clientstate
= CHAPCS_INITIAL
;
165 cstate
->serverstate
= CHAPSS_INITIAL
;
166 cstate
->timeouttime
= CHAP_DEFTIMEOUT
;
167 cstate
->max_transmits
= CHAP_DEFTRANSMITS
;
168 /* random number generator is initialized in magic_init */
173 * ChapAuthWithPeer - Authenticate us with our peer (start client).
177 ChapAuthWithPeer(int unit
, char *our_name
, u_char digest
)
179 chap_state
*cstate
= &chap
[unit
];
181 cstate
->resp_name
= our_name
;
182 cstate
->resp_type
= digest
;
184 if (cstate
->clientstate
== CHAPCS_INITIAL
||
185 cstate
->clientstate
== CHAPCS_PENDING
) {
186 /* lower layer isn't up - wait until later */
187 cstate
->clientstate
= CHAPCS_PENDING
;
192 * We get here as a result of LCP coming up.
193 * So even if CHAP was open before, we will
194 * have to re-authenticate ourselves.
196 cstate
->clientstate
= CHAPCS_LISTEN
;
201 * ChapAuthPeer - Authenticate our peer (start server).
204 ChapAuthPeer(int unit
, char *our_name
, u_char digest
)
206 chap_state
*cstate
= &chap
[unit
];
208 cstate
->chal_name
= our_name
;
209 cstate
->chal_type
= digest
;
211 if (cstate
->serverstate
== CHAPSS_INITIAL
||
212 cstate
->serverstate
== CHAPSS_PENDING
) {
213 /* lower layer isn't up - wait until later */
214 cstate
->serverstate
= CHAPSS_PENDING
;
218 ChapGenChallenge(cstate
);
219 ChapSendChallenge(cstate
); /* crank it up dude! */
220 cstate
->serverstate
= CHAPSS_INITIAL_CHAL
;
225 * ChapChallengeTimeout - Timeout expired on sending challenge.
228 ChapChallengeTimeout(void *arg
)
230 chap_state
*cstate
= (chap_state
*) arg
;
232 /* if we aren't sending challenges, don't worry. then again we */
233 /* probably shouldn't be here either */
234 if (cstate
->serverstate
!= CHAPSS_INITIAL_CHAL
&&
235 cstate
->serverstate
!= CHAPSS_RECHALLENGE
) {
239 if (cstate
->chal_transmits
>= cstate
->max_transmits
) {
240 /* give up on peer */
241 CHAPDEBUG(LOG_ERR
, ("Peer failed to respond to CHAP challenge\n"));
242 cstate
->serverstate
= CHAPSS_BADAUTH
;
243 auth_peer_fail(cstate
->unit
, PPP_CHAP
);
247 ChapSendChallenge(cstate
); /* Re-send challenge */
252 * ChapResponseTimeout - Timeout expired on sending response.
255 ChapResponseTimeout(void *arg
)
257 chap_state
*cstate
= (chap_state
*) arg
;
259 /* if we aren't sending a response, don't worry. */
260 if (cstate
->clientstate
!= CHAPCS_RESPONSE
) {
264 ChapSendResponse(cstate
); /* re-send response */
269 * ChapRechallenge - Time to challenge the peer again.
272 ChapRechallenge(void *arg
)
274 chap_state
*cstate
= (chap_state
*) arg
;
276 /* if we aren't sending a response, don't worry. */
277 if (cstate
->serverstate
!= CHAPSS_OPEN
) {
281 ChapGenChallenge(cstate
);
282 ChapSendChallenge(cstate
);
283 cstate
->serverstate
= CHAPSS_RECHALLENGE
;
288 * ChapLowerUp - The lower layer is up.
290 * Start up if we have pending requests.
293 ChapLowerUp(int unit
)
295 chap_state
*cstate
= &chap
[unit
];
297 if (cstate
->clientstate
== CHAPCS_INITIAL
) {
298 cstate
->clientstate
= CHAPCS_CLOSED
;
299 } else if (cstate
->clientstate
== CHAPCS_PENDING
) {
300 cstate
->clientstate
= CHAPCS_LISTEN
;
303 if (cstate
->serverstate
== CHAPSS_INITIAL
) {
304 cstate
->serverstate
= CHAPSS_CLOSED
;
305 } else if (cstate
->serverstate
== CHAPSS_PENDING
) {
306 ChapGenChallenge(cstate
);
307 ChapSendChallenge(cstate
);
308 cstate
->serverstate
= CHAPSS_INITIAL_CHAL
;
314 * ChapLowerDown - The lower layer is down.
316 * Cancel all timeouts.
319 ChapLowerDown(int unit
)
321 chap_state
*cstate
= &chap
[unit
];
323 /* Timeout(s) pending? Cancel if so. */
324 if (cstate
->serverstate
== CHAPSS_INITIAL_CHAL
||
325 cstate
->serverstate
== CHAPSS_RECHALLENGE
) {
326 UNTIMEOUT(ChapChallengeTimeout
, cstate
);
327 } else if (cstate
->serverstate
== CHAPSS_OPEN
328 && cstate
->chal_interval
!= 0) {
329 UNTIMEOUT(ChapRechallenge
, cstate
);
331 if (cstate
->clientstate
== CHAPCS_RESPONSE
) {
332 UNTIMEOUT(ChapResponseTimeout
, cstate
);
334 cstate
->clientstate
= CHAPCS_INITIAL
;
335 cstate
->serverstate
= CHAPSS_INITIAL
;
340 * ChapProtocolReject - Peer doesn't grok CHAP.
343 ChapProtocolReject(int unit
)
345 chap_state
*cstate
= &chap
[unit
];
347 if (cstate
->serverstate
!= CHAPSS_INITIAL
&&
348 cstate
->serverstate
!= CHAPSS_CLOSED
) {
349 auth_peer_fail(unit
, PPP_CHAP
);
351 if (cstate
->clientstate
!= CHAPCS_INITIAL
&&
352 cstate
->clientstate
!= CHAPCS_CLOSED
) {
353 auth_withpeer_fail(unit
, PPP_CHAP
); /* lwip: just sets the PPP error code on this unit to PPPERR_AUTHFAIL */
355 ChapLowerDown(unit
); /* shutdown chap */
360 * ChapInput - Input CHAP packet.
363 ChapInput(int unit
, u_char
*inpacket
, int packet_len
)
365 chap_state
*cstate
= &chap
[unit
];
371 * Parse header (code, id and length).
372 * If packet too short, drop it.
375 if (packet_len
< CHAP_HEADERLEN
) {
376 CHAPDEBUG(LOG_INFO
, ("ChapInput: rcvd short header.\n"));
382 if (len
< CHAP_HEADERLEN
) {
383 CHAPDEBUG(LOG_INFO
, ("ChapInput: rcvd illegal length.\n"));
386 if (len
> packet_len
) {
387 CHAPDEBUG(LOG_INFO
, ("ChapInput: rcvd short packet.\n"));
390 len
-= CHAP_HEADERLEN
;
393 * Action depends on code (as in fact it usually does :-).
397 ChapReceiveChallenge(cstate
, inp
, id
, len
);
401 ChapReceiveResponse(cstate
, inp
, id
, len
);
405 ChapReceiveFailure(cstate
, inp
, id
, len
);
409 ChapReceiveSuccess(cstate
, inp
, id
, len
);
412 default: /* Need code reject? */
413 CHAPDEBUG(LOG_WARNING
, ("Unknown CHAP code (%d) received.\n", code
));
420 * ChapReceiveChallenge - Receive Challenge and send Response.
423 ChapReceiveChallenge(chap_state
*cstate
, u_char
*inp
, u_char id
, int len
)
428 char secret
[MAXSECRETLEN
];
431 u_char hash
[MD5_SIGNATURE_SIZE
];
433 CHAPDEBUG(LOG_INFO
, ("ChapReceiveChallenge: Rcvd id %d.\n", id
));
434 if (cstate
->clientstate
== CHAPCS_CLOSED
||
435 cstate
->clientstate
== CHAPCS_PENDING
) {
436 CHAPDEBUG(LOG_INFO
, ("ChapReceiveChallenge: in state %d\n",
437 cstate
->clientstate
));
442 CHAPDEBUG(LOG_INFO
, ("ChapReceiveChallenge: rcvd short packet.\n"));
446 GETCHAR(rchallenge_len
, inp
);
447 len
-= sizeof (u_char
) + rchallenge_len
; /* now name field length */
449 CHAPDEBUG(LOG_INFO
, ("ChapReceiveChallenge: rcvd short packet.\n"));
453 INCPTR(rchallenge_len
, inp
);
455 if (len
>= (int)sizeof(rhostname
)) {
456 len
= sizeof(rhostname
) - 1;
458 BCOPY(inp
, rhostname
, len
);
459 rhostname
[len
] = '\000';
461 CHAPDEBUG(LOG_INFO
, ("ChapReceiveChallenge: received name field '%s'\n",
464 /* Microsoft doesn't send their name back in the PPP packet */
465 if (ppp_settings
.remote_name
[0] != 0 && (ppp_settings
.explicit_remote
|| rhostname
[0] == 0)) {
466 strncpy(rhostname
, ppp_settings
.remote_name
, sizeof(rhostname
));
467 rhostname
[sizeof(rhostname
) - 1] = 0;
468 CHAPDEBUG(LOG_INFO
, ("ChapReceiveChallenge: using '%s' as remote name\n",
472 /* get secret for authenticating ourselves with the specified host */
473 if (!get_secret(cstate
->unit
, cstate
->resp_name
, rhostname
,
474 secret
, &secret_len
, 0)) {
475 secret_len
= 0; /* assume null secret if can't find one */
476 CHAPDEBUG(LOG_WARNING
, ("No CHAP secret found for authenticating us to %s\n",
480 /* cancel response send timeout if necessary */
481 if (cstate
->clientstate
== CHAPCS_RESPONSE
) {
482 UNTIMEOUT(ChapResponseTimeout
, cstate
);
485 cstate
->resp_id
= id
;
486 cstate
->resp_transmits
= 0;
488 /* generate MD based on negotiated type */
489 switch (cstate
->resp_type
) {
491 case CHAP_DIGEST_MD5
:
493 MD5Update(&mdContext
, &cstate
->resp_id
, 1);
494 MD5Update(&mdContext
, (u_char
*)secret
, secret_len
);
495 MD5Update(&mdContext
, rchallenge
, rchallenge_len
);
496 MD5Final(hash
, &mdContext
);
497 BCOPY(hash
, cstate
->response
, MD5_SIGNATURE_SIZE
);
498 cstate
->resp_length
= MD5_SIGNATURE_SIZE
;
503 ChapMS(cstate
, rchallenge
, rchallenge_len
, secret
, secret_len
);
508 CHAPDEBUG(LOG_INFO
, ("unknown digest type %d\n", cstate
->resp_type
));
512 BZERO(secret
, sizeof(secret
));
513 ChapSendResponse(cstate
);
518 * ChapReceiveResponse - Receive and process response.
521 ChapReceiveResponse(chap_state
*cstate
, u_char
*inp
, int id
, int len
)
523 u_char
*remmd
, remmd_len
;
524 int secret_len
, old_state
;
528 char secret
[MAXSECRETLEN
];
529 u_char hash
[MD5_SIGNATURE_SIZE
];
531 CHAPDEBUG(LOG_INFO
, ("ChapReceiveResponse: Rcvd id %d.\n", id
));
533 if (cstate
->serverstate
== CHAPSS_CLOSED
||
534 cstate
->serverstate
== CHAPSS_PENDING
) {
535 CHAPDEBUG(LOG_INFO
, ("ChapReceiveResponse: in state %d\n",
536 cstate
->serverstate
));
540 if (id
!= cstate
->chal_id
) {
541 return; /* doesn't match ID of last challenge */
545 * If we have received a duplicate or bogus Response,
546 * we have to send the same answer (Success/Failure)
547 * as we did for the first Response we saw.
549 if (cstate
->serverstate
== CHAPSS_OPEN
) {
550 ChapSendStatus(cstate
, CHAP_SUCCESS
);
553 if (cstate
->serverstate
== CHAPSS_BADAUTH
) {
554 ChapSendStatus(cstate
, CHAP_FAILURE
);
559 CHAPDEBUG(LOG_INFO
, ("ChapReceiveResponse: rcvd short packet.\n"));
562 GETCHAR(remmd_len
, inp
); /* get length of MD */
563 remmd
= inp
; /* get pointer to MD */
564 INCPTR(remmd_len
, inp
);
566 len
-= sizeof (u_char
) + remmd_len
;
568 CHAPDEBUG(LOG_INFO
, ("ChapReceiveResponse: rcvd short packet.\n"));
572 UNTIMEOUT(ChapChallengeTimeout
, cstate
);
574 if (len
>= (int)sizeof(rhostname
)) {
575 len
= sizeof(rhostname
) - 1;
577 BCOPY(inp
, rhostname
, len
);
578 rhostname
[len
] = '\000';
580 CHAPDEBUG(LOG_INFO
, ("ChapReceiveResponse: received name field: %s\n",
584 * Get secret for authenticating them with us,
585 * do the hash ourselves, and compare the result.
588 if (!get_secret(cstate
->unit
, rhostname
, cstate
->chal_name
,
589 secret
, &secret_len
, 1)) {
590 CHAPDEBUG(LOG_WARNING
, ("No CHAP secret found for authenticating %s\n",
593 /* generate MD based on negotiated type */
594 switch (cstate
->chal_type
) {
596 case CHAP_DIGEST_MD5
: /* only MD5 is defined for now */
597 if (remmd_len
!= MD5_SIGNATURE_SIZE
) {
598 break; /* it's not even the right length */
601 MD5Update(&mdContext
, &cstate
->chal_id
, 1);
602 MD5Update(&mdContext
, (u_char
*)secret
, secret_len
);
603 MD5Update(&mdContext
, cstate
->challenge
, cstate
->chal_len
);
604 MD5Final(hash
, &mdContext
);
606 /* compare local and remote MDs and send the appropriate status */
607 if (memcmp (hash
, remmd
, MD5_SIGNATURE_SIZE
) == 0) {
608 code
= CHAP_SUCCESS
; /* they are the same! */
613 CHAPDEBUG(LOG_INFO
, ("unknown digest type %d\n", cstate
->chal_type
));
617 BZERO(secret
, sizeof(secret
));
618 ChapSendStatus(cstate
, code
);
620 if (code
== CHAP_SUCCESS
) {
621 old_state
= cstate
->serverstate
;
622 cstate
->serverstate
= CHAPSS_OPEN
;
623 if (old_state
== CHAPSS_INITIAL_CHAL
) {
624 auth_peer_success(cstate
->unit
, PPP_CHAP
, rhostname
, len
);
626 if (cstate
->chal_interval
!= 0) {
627 TIMEOUT(ChapRechallenge
, cstate
, cstate
->chal_interval
);
630 CHAPDEBUG(LOG_ERR
, ("CHAP peer authentication failed\n"));
631 cstate
->serverstate
= CHAPSS_BADAUTH
;
632 auth_peer_fail(cstate
->unit
, PPP_CHAP
);
637 * ChapReceiveSuccess - Receive Success
640 ChapReceiveSuccess(chap_state
*cstate
, u_char
*inp
, u_char id
, int len
)
643 LWIP_UNUSED_ARG(inp
);
645 CHAPDEBUG(LOG_INFO
, ("ChapReceiveSuccess: Rcvd id %d.\n", id
));
647 if (cstate
->clientstate
== CHAPCS_OPEN
) {
648 /* presumably an answer to a duplicate response */
652 if (cstate
->clientstate
!= CHAPCS_RESPONSE
) {
653 /* don't know what this is */
654 CHAPDEBUG(LOG_INFO
, ("ChapReceiveSuccess: in state %d\n",
655 cstate
->clientstate
));
659 UNTIMEOUT(ChapResponseTimeout
, cstate
);
668 cstate
->clientstate
= CHAPCS_OPEN
;
670 auth_withpeer_success(cstate
->unit
, PPP_CHAP
);
675 * ChapReceiveFailure - Receive failure.
678 ChapReceiveFailure(chap_state
*cstate
, u_char
*inp
, u_char id
, int len
)
681 LWIP_UNUSED_ARG(inp
);
683 CHAPDEBUG(LOG_INFO
, ("ChapReceiveFailure: Rcvd id %d.\n", id
));
685 if (cstate
->clientstate
!= CHAPCS_RESPONSE
) {
686 /* don't know what this is */
687 CHAPDEBUG(LOG_INFO
, ("ChapReceiveFailure: in state %d\n",
688 cstate
->clientstate
));
692 UNTIMEOUT(ChapResponseTimeout
, cstate
);
701 CHAPDEBUG(LOG_ERR
, ("CHAP authentication failed\n"));
702 auth_withpeer_fail(cstate
->unit
, PPP_CHAP
); /* lwip: just sets the PPP error code on this unit to PPPERR_AUTHFAIL */
707 * ChapSendChallenge - Send an Authenticate challenge.
710 ChapSendChallenge(chap_state
*cstate
)
713 int chal_len
, name_len
;
716 chal_len
= cstate
->chal_len
;
717 name_len
= (int)strlen(cstate
->chal_name
);
718 outlen
= CHAP_HEADERLEN
+ sizeof (u_char
) + chal_len
+ name_len
;
719 outp
= outpacket_buf
[cstate
->unit
];
721 MAKEHEADER(outp
, PPP_CHAP
); /* paste in a CHAP header */
723 PUTCHAR(CHAP_CHALLENGE
, outp
);
724 PUTCHAR(cstate
->chal_id
, outp
);
725 PUTSHORT(outlen
, outp
);
727 PUTCHAR(chal_len
, outp
); /* put length of challenge */
728 BCOPY(cstate
->challenge
, outp
, chal_len
);
729 INCPTR(chal_len
, outp
);
731 BCOPY(cstate
->chal_name
, outp
, name_len
); /* append hostname */
733 pppWrite(cstate
->unit
, outpacket_buf
[cstate
->unit
], outlen
+ PPP_HDRLEN
);
735 CHAPDEBUG(LOG_INFO
, ("ChapSendChallenge: Sent id %d.\n", cstate
->chal_id
));
737 TIMEOUT(ChapChallengeTimeout
, cstate
, cstate
->timeouttime
);
738 ++cstate
->chal_transmits
;
743 * ChapSendStatus - Send a status response (ack or nak).
746 ChapSendStatus(chap_state
*cstate
, int code
)
750 char msg
[256]; /* @todo: this can be a char*, no strcpy needed */
752 if (code
== CHAP_SUCCESS
) {
753 strcpy(msg
, "Welcome!");
755 strcpy(msg
, "I don't like you. Go 'way.");
757 msglen
= (int)strlen(msg
);
759 outlen
= CHAP_HEADERLEN
+ msglen
;
760 outp
= outpacket_buf
[cstate
->unit
];
762 MAKEHEADER(outp
, PPP_CHAP
); /* paste in a header */
765 PUTCHAR(cstate
->chal_id
, outp
);
766 PUTSHORT(outlen
, outp
);
767 BCOPY(msg
, outp
, msglen
);
768 pppWrite(cstate
->unit
, outpacket_buf
[cstate
->unit
], outlen
+ PPP_HDRLEN
);
770 CHAPDEBUG(LOG_INFO
, ("ChapSendStatus: Sent code %d, id %d.\n", code
,
775 * ChapGenChallenge is used to generate a pseudo-random challenge string of
776 * a pseudo-random length between min_len and max_len. The challenge
777 * string and its length are stored in *cstate, and various other fields of
778 * *cstate are initialized.
782 ChapGenChallenge(chap_state
*cstate
)
785 u_char
*ptr
= cstate
->challenge
;
788 /* pick a random challenge length between MIN_CHALLENGE_LENGTH and
789 MAX_CHALLENGE_LENGTH */
790 chal_len
= (unsigned)
792 (MAX_CHALLENGE_LENGTH
- MIN_CHALLENGE_LENGTH
)) >> 16)
793 + MIN_CHALLENGE_LENGTH
);
794 LWIP_ASSERT("chal_len <= 0xff", chal_len
<= 0xffff);
795 cstate
->chal_len
= (u_char
)chal_len
;
796 cstate
->chal_id
= ++cstate
->id
;
797 cstate
->chal_transmits
= 0;
799 /* generate a random string */
800 for (i
= 0; i
< chal_len
; i
++ ) {
801 *ptr
++ = (char) (magic() & 0xff);
806 * ChapSendResponse - send a response packet with values as specified
811 ChapSendResponse(chap_state
*cstate
)
814 int outlen
, md_len
, name_len
;
816 md_len
= cstate
->resp_length
;
817 name_len
= (int)strlen(cstate
->resp_name
);
818 outlen
= CHAP_HEADERLEN
+ sizeof (u_char
) + md_len
+ name_len
;
819 outp
= outpacket_buf
[cstate
->unit
];
821 MAKEHEADER(outp
, PPP_CHAP
);
823 PUTCHAR(CHAP_RESPONSE
, outp
); /* we are a response */
824 PUTCHAR(cstate
->resp_id
, outp
); /* copy id from challenge packet */
825 PUTSHORT(outlen
, outp
); /* packet length */
827 PUTCHAR(md_len
, outp
); /* length of MD */
828 BCOPY(cstate
->response
, outp
, md_len
); /* copy MD to buffer */
829 INCPTR(md_len
, outp
);
831 BCOPY(cstate
->resp_name
, outp
, name_len
); /* append our name */
833 /* send the packet */
834 pppWrite(cstate
->unit
, outpacket_buf
[cstate
->unit
], outlen
+ PPP_HDRLEN
);
836 cstate
->clientstate
= CHAPCS_RESPONSE
;
837 TIMEOUT(ChapResponseTimeout
, cstate
, cstate
->timeouttime
);
838 ++cstate
->resp_transmits
;
841 #if PPP_ADDITIONAL_CALLBACKS
842 static char *ChapCodenames
[] = {
843 "Challenge", "Response", "Success", "Failure"
846 * ChapPrintPkt - print the contents of a CHAP packet.
849 ChapPrintPkt( u_char
*p
, int plen
, void (*printer
) (void *, char *, ...), void *arg
)
855 if (plen
< CHAP_HEADERLEN
) {
861 if (len
< CHAP_HEADERLEN
|| len
> plen
) {
865 if (code
>= 1 && code
<= sizeof(ChapCodenames
) / sizeof(char *)) {
866 printer(arg
, " %s", ChapCodenames
[code
-1]);
868 printer(arg
, " code=0x%x", code
);
870 printer(arg
, " id=0x%x", id
);
871 len
-= CHAP_HEADERLEN
;
879 if (len
< clen
+ 1) {
883 nlen
= len
- clen
- 1;
885 for (; clen
> 0; --clen
) {
887 printer(arg
, "%.2x", x
);
889 printer(arg
, ">, name = %.*Z", nlen
, p
);
893 printer(arg
, " %.*Z", len
, p
);
896 for (clen
= len
; clen
> 0; --clen
) {
898 printer(arg
, " %.2x", x
);
902 return len
+ CHAP_HEADERLEN
;
904 #endif /* PPP_ADDITIONAL_CALLBACKS */
906 #endif /* CHAP_SUPPORT */
908 #endif /* PPP_SUPPORT */