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 */
86 /*************************/
87 /*** LOCAL DEFINITIONS ***/
88 /*************************/
91 /************************/
92 /*** LOCAL DATA TYPES ***/
93 /************************/
96 /***********************************/
97 /*** LOCAL FUNCTION DECLARATIONS ***/
98 /***********************************/
100 * Protocol entry points.
102 static void ChapInit (int);
103 static void ChapLowerUp (int);
104 static void ChapLowerDown (int);
105 static void ChapInput (int, u_char *, int);
106 static void ChapProtocolReject (int);
108 static int ChapPrintPkt (u_char *, int, void (*) (void *, char *, ...), void *);
111 static void ChapChallengeTimeout (void *);
112 static void ChapResponseTimeout (void *);
113 static void ChapReceiveChallenge (chap_state *, u_char *, int, int);
114 static void ChapRechallenge (void *);
115 static void ChapReceiveResponse (chap_state *, u_char *, int, int);
116 static void ChapReceiveSuccess(chap_state *cstate, u_char *inp, u_char id, int len);
117 static void ChapReceiveFailure(chap_state *cstate, u_char *inp, u_char id, int len);
118 static void ChapSendStatus (chap_state *, int);
119 static void ChapSendChallenge (chap_state *);
120 static void ChapSendResponse (chap_state *);
121 static void ChapGenChallenge (chap_state *);
124 /******************************/
125 /*** PUBLIC DATA STRUCTURES ***/
126 /******************************/
127 chap_state chap[NUM_PPP]; /* CHAP state; one for each unit */
129 struct protent chap_protent = {
152 /***********************************/
153 /*** PUBLIC FUNCTION DEFINITIONS ***/
154 /***********************************/
156 * ChapAuthWithPeer - Authenticate us with our peer (start client).
160 ChapAuthWithPeer(int unit, char *our_name, int digest)
162 chap_state *cstate = &chap[unit];
164 cstate->resp_name = our_name;
165 cstate->resp_type = digest;
167 if (cstate->clientstate == CHAPCS_INITIAL ||
168 cstate->clientstate == CHAPCS_PENDING) {
169 /* lower layer isn't up - wait until later */
170 cstate->clientstate = CHAPCS_PENDING;
175 * We get here as a result of LCP coming up.
176 * So even if CHAP was open before, we will
177 * have to re-authenticate ourselves.
179 cstate->clientstate = CHAPCS_LISTEN;
184 * ChapAuthPeer - Authenticate our peer (start server).
187 ChapAuthPeer(int unit, char *our_name, int digest)
189 chap_state *cstate = &chap[unit];
191 cstate->chal_name = our_name;
192 cstate->chal_type = digest;
194 if (cstate->serverstate == CHAPSS_INITIAL ||
195 cstate->serverstate == CHAPSS_PENDING) {
196 /* lower layer isn't up - wait until later */
197 cstate->serverstate = CHAPSS_PENDING;
201 ChapGenChallenge(cstate);
202 ChapSendChallenge(cstate); /* crank it up dude! */
203 cstate->serverstate = CHAPSS_INITIAL_CHAL;
207 /**********************************/
208 /*** LOCAL FUNCTION DEFINITIONS ***/
209 /**********************************/
211 * ChapInit - Initialize a CHAP unit.
216 chap_state *cstate = &chap[unit];
218 BZERO(cstate, sizeof(*cstate));
220 cstate->clientstate = CHAPCS_INITIAL;
221 cstate->serverstate = CHAPSS_INITIAL;
222 cstate->timeouttime = CHAP_DEFTIMEOUT;
223 cstate->max_transmits = CHAP_DEFTRANSMITS;
224 /* random number generator is initialized in magic_init */
229 * ChapChallengeTimeout - Timeout expired on sending challenge.
232 ChapChallengeTimeout(void *arg)
234 chap_state *cstate = (chap_state *) arg;
236 /* if we aren't sending challenges, don't worry. then again we */
237 /* probably shouldn't be here either */
238 if (cstate->serverstate != CHAPSS_INITIAL_CHAL &&
239 cstate->serverstate != CHAPSS_RECHALLENGE) {
243 if (cstate->chal_transmits >= cstate->max_transmits) {
244 /* give up on peer */
245 CHAPDEBUG((LOG_ERR, "Peer failed to respond to CHAP challenge\n"));
246 cstate->serverstate = CHAPSS_BADAUTH;
247 auth_peer_fail(cstate->unit, PPP_CHAP);
251 ChapSendChallenge(cstate); /* Re-send challenge */
256 * ChapResponseTimeout - Timeout expired on sending response.
259 ChapResponseTimeout(void *arg)
261 chap_state *cstate = (chap_state *) arg;
263 /* if we aren't sending a response, don't worry. */
264 if (cstate->clientstate != CHAPCS_RESPONSE) {
268 ChapSendResponse(cstate); /* re-send response */
273 * ChapRechallenge - Time to challenge the peer again.
276 ChapRechallenge(void *arg)
278 chap_state *cstate = (chap_state *) arg;
280 /* if we aren't sending a response, don't worry. */
281 if (cstate->serverstate != CHAPSS_OPEN) {
285 ChapGenChallenge(cstate);
286 ChapSendChallenge(cstate);
287 cstate->serverstate = CHAPSS_RECHALLENGE;
292 * ChapLowerUp - The lower layer is up.
294 * Start up if we have pending requests.
297 ChapLowerUp(int unit)
299 chap_state *cstate = &chap[unit];
301 if (cstate->clientstate == CHAPCS_INITIAL) {
302 cstate->clientstate = CHAPCS_CLOSED;
303 } else if (cstate->clientstate == CHAPCS_PENDING) {
304 cstate->clientstate = CHAPCS_LISTEN;
307 if (cstate->serverstate == CHAPSS_INITIAL) {
308 cstate->serverstate = CHAPSS_CLOSED;
309 } else if (cstate->serverstate == CHAPSS_PENDING) {
310 ChapGenChallenge(cstate);
311 ChapSendChallenge(cstate);
312 cstate->serverstate = CHAPSS_INITIAL_CHAL;
318 * ChapLowerDown - The lower layer is down.
320 * Cancel all timeouts.
323 ChapLowerDown(int unit)
325 chap_state *cstate = &chap[unit];
327 /* Timeout(s) pending? Cancel if so. */
328 if (cstate->serverstate == CHAPSS_INITIAL_CHAL ||
329 cstate->serverstate == CHAPSS_RECHALLENGE) {
330 UNTIMEOUT(ChapChallengeTimeout, cstate);
331 } else if (cstate->serverstate == CHAPSS_OPEN
332 && cstate->chal_interval != 0) {
333 UNTIMEOUT(ChapRechallenge, cstate);
335 if (cstate->clientstate == CHAPCS_RESPONSE) {
336 UNTIMEOUT(ChapResponseTimeout, cstate);
338 cstate->clientstate = CHAPCS_INITIAL;
339 cstate->serverstate = CHAPSS_INITIAL;
344 * ChapProtocolReject - Peer doesn't grok CHAP.
347 ChapProtocolReject(int unit)
349 chap_state *cstate = &chap[unit];
351 if (cstate->serverstate != CHAPSS_INITIAL &&
352 cstate->serverstate != CHAPSS_CLOSED) {
353 auth_peer_fail(unit, PPP_CHAP);
355 if (cstate->clientstate != CHAPCS_INITIAL &&
356 cstate->clientstate != CHAPCS_CLOSED) {
357 auth_withpeer_fail(unit, PPP_CHAP);
359 ChapLowerDown(unit); /* shutdown chap */
364 * ChapInput - Input CHAP packet.
367 ChapInput(int unit, u_char *inpacket, int packet_len)
369 chap_state *cstate = &chap[unit];
375 * Parse header (code, id and length).
376 * If packet too short, drop it.
379 if (packet_len < CHAP_HEADERLEN) {
380 CHAPDEBUG((LOG_INFO, "ChapInput: rcvd short header.\n"));
386 if (len < CHAP_HEADERLEN) {
387 CHAPDEBUG((LOG_INFO, "ChapInput: rcvd illegal length.\n"));
390 if (len > packet_len) {
391 CHAPDEBUG((LOG_INFO, "ChapInput: rcvd short packet.\n"));
394 len -= CHAP_HEADERLEN;
397 * Action depends on code (as in fact it usually does :-).
401 ChapReceiveChallenge(cstate, inp, id, len);
405 ChapReceiveResponse(cstate, inp, id, len);
409 ChapReceiveFailure(cstate, inp, id, len);
413 ChapReceiveSuccess(cstate, inp, id, len);
416 default: /* Need code reject? */
417 CHAPDEBUG((LOG_WARNING, "Unknown CHAP code (%d) received.\n", code));
424 * ChapReceiveChallenge - Receive Challenge and send Response.
427 ChapReceiveChallenge(chap_state *cstate, u_char *inp, int id, int len)
432 char secret[MAXSECRETLEN];
435 u_char hash[MD5_SIGNATURE_SIZE];
437 CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: Rcvd id %d.\n", id));
438 if (cstate->clientstate == CHAPCS_CLOSED ||
439 cstate->clientstate == CHAPCS_PENDING) {
440 CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: in state %d\n",
441 cstate->clientstate));
446 CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: rcvd short packet.\n"));
450 GETCHAR(rchallenge_len, inp);
451 len -= sizeof (u_char) + rchallenge_len; /* now name field length */
453 CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: rcvd short packet.\n"));
457 INCPTR(rchallenge_len, inp);
459 if (len >= sizeof(rhostname)) {
460 len = sizeof(rhostname) - 1;
462 BCOPY(inp, rhostname, len);
463 rhostname[len] = '\000';
465 CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: received name field '%s'\n", rhostname));
467 /* Microsoft doesn't send their name back in the PPP packet */
468 if (ppp_settings.remote_name[0] != 0 && (ppp_settings.explicit_remote || rhostname[0] == 0)) {
469 strncpy(rhostname, ppp_settings.remote_name, sizeof(rhostname));
470 rhostname[sizeof(rhostname) - 1] = 0;
471 CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: using '%s' as remote name\n", rhostname));
474 /* get secret for authenticating ourselves with the specified host */
475 if (!get_secret(cstate->unit, cstate->resp_name, rhostname, secret, &secret_len, 0)) {
476 secret_len = 0; /* assume null secret if can't find one */
477 CHAPDEBUG((LOG_WARNING, "No CHAP secret found for authenticating us to %s\n", rhostname));
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 >= 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", rhostname));
583 * Get secret for authenticating them with us,
584 * do the hash ourselves, and compare the result.
587 if (!get_secret(cstate->unit, rhostname, cstate->chal_name, secret, &secret_len, 1)) {
588 /* CHAPDEBUG((LOG_WARNING, TL_CHAP, "No CHAP secret found for authenticating %s\n", rhostname)); */
589 CHAPDEBUG((LOG_WARNING, "No CHAP secret found for authenticating %s\n",
592 /* generate MD based on negotiated type */
593 switch (cstate->chal_type) {
595 case CHAP_DIGEST_MD5: /* only MD5 is defined for now */
596 if (remmd_len != MD5_SIGNATURE_SIZE) {
597 break; /* it's not even the right length */
600 MD5Update(&mdContext, &cstate->chal_id, 1);
601 MD5Update(&mdContext, (u_char*)secret, secret_len);
602 MD5Update(&mdContext, cstate->challenge, cstate->chal_len);
603 MD5Final(hash, &mdContext);
605 /* compare local and remote MDs and send the appropriate status */
606 if (memcmp (hash, remmd, MD5_SIGNATURE_SIZE) == 0) {
607 code = CHAP_SUCCESS; /* they are the same! */
612 CHAPDEBUG((LOG_INFO, "unknown digest type %d\n", cstate->chal_type));
616 BZERO(secret, sizeof(secret));
617 ChapSendStatus(cstate, code);
619 if (code == CHAP_SUCCESS) {
620 old_state = cstate->serverstate;
621 cstate->serverstate = CHAPSS_OPEN;
622 if (old_state == CHAPSS_INITIAL_CHAL) {
623 auth_peer_success(cstate->unit, PPP_CHAP, rhostname, len);
625 if (cstate->chal_interval != 0) {
626 TIMEOUT(ChapRechallenge, cstate, cstate->chal_interval);
629 CHAPDEBUG((LOG_ERR, "CHAP peer authentication failed\n"));
630 cstate->serverstate = CHAPSS_BADAUTH;
631 auth_peer_fail(cstate->unit, PPP_CHAP);
636 * ChapReceiveSuccess - Receive Success
639 ChapReceiveSuccess(chap_state *cstate, u_char *inp, u_char id, int len)
642 LWIP_UNUSED_ARG(inp);
644 CHAPDEBUG((LOG_INFO, "ChapReceiveSuccess: Rcvd id %d.\n", id));
646 if (cstate->clientstate == CHAPCS_OPEN) {
647 /* presumably an answer to a duplicate response */
651 if (cstate->clientstate != CHAPCS_RESPONSE) {
652 /* don't know what this is */
653 CHAPDEBUG((LOG_INFO, "ChapReceiveSuccess: in state %d\n", cstate->clientstate));
657 UNTIMEOUT(ChapResponseTimeout, cstate);
666 cstate->clientstate = CHAPCS_OPEN;
668 auth_withpeer_success(cstate->unit, PPP_CHAP);
673 * ChapReceiveFailure - Receive failure.
676 ChapReceiveFailure(chap_state *cstate, u_char *inp, u_char id, int len)
679 LWIP_UNUSED_ARG(inp);
681 CHAPDEBUG((LOG_INFO, "ChapReceiveFailure: Rcvd id %d.\n", id));
683 if (cstate->clientstate != CHAPCS_RESPONSE) {
684 /* don't know what this is */
685 CHAPDEBUG((LOG_INFO, "ChapReceiveFailure: in state %d\n", cstate->clientstate));
689 UNTIMEOUT(ChapResponseTimeout, cstate);
698 CHAPDEBUG((LOG_ERR, "CHAP authentication failed\n"));
699 auth_withpeer_fail(cstate->unit, PPP_CHAP);
704 * ChapSendChallenge - Send an Authenticate challenge.
707 ChapSendChallenge(chap_state *cstate)
710 int chal_len, name_len;
713 chal_len = cstate->chal_len;
714 name_len = strlen(cstate->chal_name);
715 outlen = CHAP_HEADERLEN + sizeof (u_char) + chal_len + name_len;
716 outp = outpacket_buf[cstate->unit];
718 MAKEHEADER(outp, PPP_CHAP); /* paste in a CHAP header */
720 PUTCHAR(CHAP_CHALLENGE, outp);
721 PUTCHAR(cstate->chal_id, outp);
722 PUTSHORT(outlen, outp);
724 PUTCHAR(chal_len, outp); /* put length of challenge */
725 BCOPY(cstate->challenge, outp, chal_len);
726 INCPTR(chal_len, outp);
728 BCOPY(cstate->chal_name, outp, name_len); /* append hostname */
730 pppWrite(cstate->unit, outpacket_buf[cstate->unit], outlen + PPP_HDRLEN);
732 CHAPDEBUG((LOG_INFO, "ChapSendChallenge: Sent id %d.\n", cstate->chal_id));
734 TIMEOUT(ChapChallengeTimeout, cstate, cstate->timeouttime);
735 ++cstate->chal_transmits;
740 * ChapSendStatus - Send a status response (ack or nak).
743 ChapSendStatus(chap_state *cstate, int code)
749 if (code == CHAP_SUCCESS) {
750 strcpy(msg, "Welcome!");
752 strcpy(msg, "I don't like you. Go 'way.");
754 msglen = strlen(msg);
756 outlen = CHAP_HEADERLEN + msglen;
757 outp = outpacket_buf[cstate->unit];
759 MAKEHEADER(outp, PPP_CHAP); /* paste in a header */
762 PUTCHAR(cstate->chal_id, outp);
763 PUTSHORT(outlen, outp);
764 BCOPY(msg, outp, msglen);
765 pppWrite(cstate->unit, outpacket_buf[cstate->unit], outlen + PPP_HDRLEN);
767 CHAPDEBUG((LOG_INFO, "ChapSendStatus: Sent code %d, id %d.\n", code, cstate->chal_id));
771 * ChapGenChallenge is used to generate a pseudo-random challenge string of
772 * a pseudo-random length between min_len and max_len. The challenge
773 * string and its length are stored in *cstate, and various other fields of
774 * *cstate are initialized.
778 ChapGenChallenge(chap_state *cstate)
781 u_char *ptr = cstate->challenge;
784 /* pick a random challenge length between MIN_CHALLENGE_LENGTH and
785 MAX_CHALLENGE_LENGTH */
786 chal_len = (unsigned)
788 (MAX_CHALLENGE_LENGTH - MIN_CHALLENGE_LENGTH)) >> 16)
789 + MIN_CHALLENGE_LENGTH);
790 cstate->chal_len = chal_len;
791 cstate->chal_id = ++cstate->id;
792 cstate->chal_transmits = 0;
794 /* generate a random string */
795 for (i = 0; i < chal_len; i++ ) {
796 *ptr++ = (char) (magic() & 0xff);
801 * ChapSendResponse - send a response packet with values as specified
806 ChapSendResponse(chap_state *cstate)
809 int outlen, md_len, name_len;
811 md_len = cstate->resp_length;
812 name_len = strlen(cstate->resp_name);
813 outlen = CHAP_HEADERLEN + sizeof (u_char) + md_len + name_len;
814 outp = outpacket_buf[cstate->unit];
816 MAKEHEADER(outp, PPP_CHAP);
818 PUTCHAR(CHAP_RESPONSE, outp); /* we are a response */
819 PUTCHAR(cstate->resp_id, outp); /* copy id from challenge packet */
820 PUTSHORT(outlen, outp); /* packet length */
822 PUTCHAR(md_len, outp); /* length of MD */
823 BCOPY(cstate->response, outp, md_len); /* copy MD to buffer */
824 INCPTR(md_len, outp);
826 BCOPY(cstate->resp_name, outp, name_len); /* append our name */
828 /* send the packet */
829 pppWrite(cstate->unit, outpacket_buf[cstate->unit], outlen + PPP_HDRLEN);
831 cstate->clientstate = CHAPCS_RESPONSE;
832 TIMEOUT(ChapResponseTimeout, cstate, cstate->timeouttime);
833 ++cstate->resp_transmits;
837 static char *ChapCodenames[] = {
838 "Challenge", "Response", "Success", "Failure"
841 * ChapPrintPkt - print the contents of a CHAP packet.
844 ChapPrintPkt( u_char *p, int plen, void (*printer) (void *, char *, ...), void *arg)
850 if (plen < CHAP_HEADERLEN) {
856 if (len < CHAP_HEADERLEN || len > plen) {
859 if (code >= 1 && code <= sizeof(ChapCodenames) / sizeof(char *)) {
860 printer(arg, " %s", ChapCodenames[code-1]);
862 printer(arg, " code=0x%x", code);
864 printer(arg, " id=0x%x", id);
865 len -= CHAP_HEADERLEN;
873 if (len < clen + 1) {
877 nlen = len - clen - 1;
879 for (; clen > 0; --clen) {
881 printer(arg, "%.2x", x);
883 printer(arg, ">, name = %.*Z", nlen, p);
887 printer(arg, " %.*Z", len, p);
890 for (clen = len; clen > 0; --clen) {
892 printer(arg, " %.2x", x);
896 return len + CHAP_HEADERLEN;
900 #endif /* CHAP_SUPPORT */
902 #endif /* PPP_SUPPORT */