chap.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:21k
- /* chap.c - Crytographic Handshake Authentication Protocol */
- /* Copyright 1995 Wind River Systems, Inc. */
- #include "copyright_wrs.h"
- /*
- * Copyright (c) 1991 Gregory M. Christy.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms are permitted
- * provided that the above copyright notice and this paragraph are
- * duplicated in all such forms and that any documentation,
- * advertising materials, and other materials related to such
- * distribution and use acknowledge that the software was developed
- * by Gregory M. Christy. The name of the author may not be used to
- * endorse or promote products derived from this software without
- * specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
- * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
- * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- */
- /*
- modification history
- --------------------
- 01e,30jun95,dzb removed floating point operation (srand48() and drand48()).
- 01d,16jun95,dzb header file consolidation.
- changed [UN]TIMEOUT macros to PPP_[UN]TIMEOUT.
- 01c,08jun95,dzb changed CHAP response messages to be more informative.
- 01b,16jan95,dzb changed to use PPP specific md5 routines.
- 01a,21dec94,dab VxWorks port - first WRS version.
- +dzb added: path for ppp header files, WRS copyright, NO_DRAND48.
- */
- #include "vxWorks.h"
- #include "stdio.h"
- #include "string.h"
- #include "sys/types.h"
- #include "sys/times.h"
- #include "pppLib.h"
- static void ChapChallengeTimeout __ARGS((caddr_t));
- static void ChapResponseTimeout __ARGS((caddr_t));
- static void ChapReceiveChallenge __ARGS((chap_state *, u_char *, int, int));
- static void ChapReceiveResponse __ARGS((chap_state *, u_char *, int, int));
- static void ChapReceiveSuccess __ARGS((chap_state *, u_char *, int, int));
- static void ChapReceiveFailure __ARGS((chap_state *, u_char *, int, int));
- static void ChapSendStatus __ARGS((chap_state *, int));
- static void ChapSendChallenge __ARGS((chap_state *));
- static void ChapSendResponse __ARGS((chap_state *));
- static void ChapGenChallenge __ARGS((chap_state *));
- /*
- * ChapInit - Initialize a CHAP unit.
- */
- void
- ChapInit(unit)
- int unit;
- {
- chap_state *cstate = &ppp_if[unit]->chap;
- BZERO((char *)cstate, sizeof(*cstate));
- cstate->unit = unit;
- cstate->clientstate = CHAPCS_INITIAL;
- cstate->serverstate = CHAPSS_INITIAL;
- cstate->timeouttime = CHAP_DEFTIMEOUT;
- cstate->max_transmits = CHAP_DEFTRANSMITS;
- srandom((long) time(NULL)); /* joggle random number generator */
- }
- /*
- * ChapAuthWithPeer - Authenticate us with our peer (start client).
- *
- */
- void
- ChapAuthWithPeer(unit, our_name, digest)
- int unit;
- char *our_name;
- int digest;
- {
- chap_state *cstate = &ppp_if[unit]->chap;
- cstate->resp_name = our_name;
- cstate->resp_type = digest;
- if (cstate->clientstate == CHAPCS_INITIAL ||
- cstate->clientstate == CHAPCS_PENDING) {
- /* lower layer isn't up - wait until later */
- cstate->clientstate = CHAPCS_PENDING;
- return;
- }
- /*
- * We get here as a result of LCP coming up.
- * So even if CHAP was open before, we will
- * have to re-authenticate ourselves.
- */
- cstate->clientstate = CHAPCS_LISTEN;
- }
- /*
- * ChapAuthPeer - Authenticate our peer (start server).
- */
- void
- ChapAuthPeer(unit, our_name, digest)
- int unit;
- char *our_name;
- int digest;
- {
- chap_state *cstate = &ppp_if[unit]->chap;
-
- cstate->chal_name = our_name;
- cstate->chal_type = digest;
- if (cstate->serverstate == CHAPSS_INITIAL ||
- cstate->serverstate == CHAPSS_PENDING) {
- /* lower layer isn't up - wait until later */
- cstate->serverstate = CHAPSS_PENDING;
- return;
- }
- ChapGenChallenge(cstate);
- ChapSendChallenge(cstate); /* crank it up dude! */
- cstate->serverstate = CHAPSS_INITIAL_CHAL;
- }
- /*
- * ChapChallengeTimeout - Timeout expired on sending challenge.
- */
- static void
- ChapChallengeTimeout(arg)
- caddr_t arg;
- {
- chap_state *cstate = (chap_state *) arg;
-
- /* if we aren't sending challenges, don't worry. then again we */
- /* probably shouldn't be here either */
- if (cstate->serverstate != CHAPSS_INITIAL_CHAL &&
- cstate->serverstate != CHAPSS_RECHALLENGE)
- return;
- if (cstate->chal_transmits >= cstate->max_transmits) {
- /* give up on peer */
- syslog(LOG_ERR, "Peer failed to respond to CHAP challenge");
- cstate->serverstate = CHAPSS_BADAUTH;
- auth_peer_fail(cstate->unit, CHAP);
- return;
- }
- ChapSendChallenge(cstate); /* Re-send challenge */
- }
- /*
- * ChapResponseTimeout - Timeout expired on sending response.
- */
- static void
- ChapResponseTimeout(arg)
- caddr_t arg;
- {
- chap_state *cstate = (chap_state *) arg;
- /* if we aren't sending a response, don't worry. */
- if (cstate->clientstate != CHAPCS_RESPONSE)
- return;
- ChapSendResponse(cstate); /* re-send response */
- }
- /*
- * ChapRechallenge - Time to challenge the peer again.
- */
- static void
- ChapRechallenge(arg)
- caddr_t arg;
- {
- chap_state *cstate = (chap_state *) arg;
- /* if we aren't sending a response, don't worry. */
- if (cstate->serverstate != CHAPSS_OPEN)
- return;
- ChapGenChallenge(cstate);
- ChapSendChallenge(cstate);
- cstate->serverstate = CHAPSS_RECHALLENGE;
- if (cstate->chal_interval != 0)
- PPP_TIMEOUT(ChapRechallenge, (caddr_t) cstate, cstate->chal_interval);
- }
- /*
- * ChapLowerUp - The lower layer is up.
- *
- * Start up if we have pending requests.
- */
- void
- ChapLowerUp(unit)
- int unit;
- {
- chap_state *cstate = &ppp_if[unit]->chap;
-
- if (cstate->clientstate == CHAPCS_INITIAL)
- cstate->clientstate = CHAPCS_CLOSED;
- else if (cstate->clientstate == CHAPCS_PENDING)
- cstate->clientstate = CHAPCS_LISTEN;
- if (cstate->serverstate == CHAPSS_INITIAL)
- cstate->serverstate = CHAPSS_CLOSED;
- else if (cstate->serverstate == CHAPSS_PENDING) {
- ChapGenChallenge(cstate);
- ChapSendChallenge(cstate);
- cstate->serverstate = CHAPSS_INITIAL_CHAL;
- }
- }
- /*
- * ChapLowerDown - The lower layer is down.
- *
- * Cancel all timeouts.
- */
- void
- ChapLowerDown(unit)
- int unit;
- {
- chap_state *cstate = &ppp_if[unit]->chap;
-
- /* Timeout(s) pending? Cancel if so. */
- if (cstate->serverstate == CHAPSS_INITIAL_CHAL ||
- cstate->serverstate == CHAPSS_RECHALLENGE)
- PPP_UNTIMEOUT(ChapChallengeTimeout, (caddr_t) cstate);
- else if (cstate->serverstate == CHAPSS_OPEN
- && cstate->chal_interval != 0)
- PPP_UNTIMEOUT(ChapRechallenge, (caddr_t) cstate);
- if (cstate->clientstate == CHAPCS_RESPONSE)
- PPP_UNTIMEOUT(ChapResponseTimeout, (caddr_t) cstate);
- cstate->clientstate = CHAPCS_INITIAL;
- cstate->serverstate = CHAPSS_INITIAL;
- }
- /*
- * ChapProtocolReject - Peer doesn't grok CHAP.
- */
- void
- ChapProtocolReject(unit)
- int unit;
- {
- chap_state *cstate = &ppp_if[unit]->chap;
- if (cstate->serverstate != CHAPSS_INITIAL &&
- cstate->serverstate != CHAPSS_CLOSED)
- auth_peer_fail(unit, CHAP);
- if (cstate->clientstate != CHAPCS_INITIAL &&
- cstate->clientstate != CHAPCS_CLOSED)
- auth_withpeer_fail(unit, CHAP);
- ChapLowerDown(unit); /* shutdown chap */
- }
- /*
- * ChapInput - Input CHAP packet.
- */
- void
- ChapInput(unit, inpacket, packet_len)
- int unit;
- u_char *inpacket;
- int packet_len;
- {
- chap_state *cstate = &ppp_if[unit]->chap;
- u_char *inp;
- u_char code, id;
- int len;
-
- /*
- * Parse header (code, id and length).
- * If packet too short, drop it.
- */
- inp = inpacket;
- if (packet_len < CHAP_HEADERLEN) {
- CHAPDEBUG((LOG_INFO, "ChapInput: rcvd short header."));
- return;
- }
- GETCHAR(code, inp);
- GETCHAR(id, inp);
- GETSHORT(len, inp);
- if (len < CHAP_HEADERLEN) {
- CHAPDEBUG((LOG_INFO, "ChapInput: rcvd illegal length."));
- return;
- }
- if (len > packet_len) {
- CHAPDEBUG((LOG_INFO, "ChapInput: rcvd short packet."));
- return;
- }
- len -= CHAP_HEADERLEN;
-
- /*
- * Action depends on code (as in fact it usually does :-).
- */
- switch (code) {
- case CHAP_CHALLENGE:
- ChapReceiveChallenge(cstate, inp, id, len);
- break;
-
- case CHAP_RESPONSE:
- ChapReceiveResponse(cstate, inp, id, len);
- break;
-
- case CHAP_FAILURE:
- ChapReceiveFailure(cstate, inp, id, len);
- break;
- case CHAP_SUCCESS:
- ChapReceiveSuccess(cstate, inp, id, len);
- break;
- default: /* Need code reject? */
- syslog(LOG_WARNING, "Unknown CHAP code (%d) received.", code);
- break;
- }
- }
- /*
- * ChapReceiveChallenge - Receive Challenge and send Response.
- */
- static void
- ChapReceiveChallenge(cstate, inp, id, len)
- chap_state *cstate;
- u_char *inp;
- int id;
- int len;
- {
- int rchallenge_len;
- u_char *rchallenge;
- int secret_len;
- char secret[MAXSECRETLEN];
- char rhostname[256];
- MD5_CTX mdContext;
-
- CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: Rcvd id %d.", id));
- if (cstate->clientstate == CHAPCS_CLOSED ||
- cstate->clientstate == CHAPCS_PENDING) {
- CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: in state %d",
- cstate->clientstate));
- return;
- }
- if (len < 2) {
- CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: rcvd short packet."));
- return;
- }
- GETCHAR(rchallenge_len, inp);
- len -= sizeof (u_char) + rchallenge_len; /* now name field length */
- if (len < 0) {
- CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: rcvd short packet."));
- return;
- }
- rchallenge = inp;
- INCPTR(rchallenge_len, inp);
- if (len >= sizeof(rhostname))
- len = sizeof(rhostname) - 1;
- BCOPY((char *)inp, rhostname, len);
- rhostname[len] = ' 00';
- CHAPDEBUG((LOG_INFO, "ChapReceiveChallenge: received name field: %s",
- rhostname));
- /* get secret for authenticating ourselves with the specified host */
- if (!get_secret(cstate->unit, cstate->resp_name, rhostname,
- secret, &secret_len, 0)) {
- secret_len = 0; /* assume null secret if can't find one */
- syslog(LOG_WARNING, "No CHAP secret found for authenticating us to %s",
- rhostname);
- }
- /* cancel response send timeout if necessary */
- if (cstate->clientstate == CHAPCS_RESPONSE)
- PPP_UNTIMEOUT(ChapResponseTimeout, (caddr_t) cstate);
- cstate->resp_id = id;
- cstate->resp_transmits = 0;
- /* generate MD based on negotiated type */
- switch (cstate->resp_type) {
- case CHAP_DIGEST_MD5: /* only MD5 is defined for now */
- ppp_MD5Init(&mdContext);
- ppp_MD5Update(&mdContext, &cstate->resp_id, 1);
- ppp_MD5Update(&mdContext, (u_char *) secret, secret_len);
- ppp_MD5Update(&mdContext, rchallenge, rchallenge_len);
- ppp_MD5Final(&mdContext);
- BCOPY((char *)mdContext.digest, (char *)cstate->response,
- MD5_SIGNATURE_SIZE);
- cstate->resp_length = MD5_SIGNATURE_SIZE;
- break;
- default:
- CHAPDEBUG((LOG_INFO, "unknown digest type %d", cstate->resp_type));
- return;
- }
- ChapSendResponse(cstate);
- }
- /*
- * ChapReceiveResponse - Receive and process response.
- */
- static void
- ChapReceiveResponse(cstate, inp, id, len)
- chap_state *cstate;
- u_char *inp;
- int id;
- int len;
- {
- u_char *remmd, remmd_len;
- int secret_len, old_state;
- int code;
- char rhostname[256];
- MD5_CTX mdContext;
- char secret[MAXSECRETLEN];
- CHAPDEBUG((LOG_INFO, "ChapReceiveResponse: Rcvd id %d.", id));
- if (cstate->serverstate == CHAPSS_CLOSED ||
- cstate->serverstate == CHAPSS_PENDING) {
- CHAPDEBUG((LOG_INFO, "ChapReceiveResponse: in state %d",
- cstate->serverstate));
- return;
- }
- if (id != cstate->chal_id)
- return; /* doesn't match ID of last challenge */
- /*
- * If we have received a duplicate or bogus Response,
- * we have to send the same answer (Success/Failure)
- * as we did for the first Response we saw.
- */
- if (cstate->serverstate == CHAPSS_OPEN) {
- ChapSendStatus(cstate, CHAP_SUCCESS);
- return;
- }
- if (cstate->serverstate == CHAPSS_BADAUTH) {
- ChapSendStatus(cstate, CHAP_FAILURE);
- return;
- }
- if (len < 2) {
- CHAPDEBUG((LOG_INFO, "ChapReceiveResponse: rcvd short packet."));
- return;
- }
- GETCHAR(remmd_len, inp); /* get length of MD */
- remmd = inp; /* get pointer to MD */
- INCPTR(remmd_len, inp);
- len -= sizeof (u_char) + remmd_len;
- if (len < 0) {
- CHAPDEBUG((LOG_INFO, "ChapReceiveResponse: rcvd short packet."));
- return;
- }
- PPP_UNTIMEOUT(ChapChallengeTimeout, (caddr_t) cstate);
- if (len >= sizeof(rhostname))
- len = sizeof(rhostname) - 1;
- BCOPY((char *)inp, rhostname, len);
- rhostname[len] = ' 00';
- CHAPDEBUG((LOG_INFO, "ChapReceiveResponse: received name field: %s",
- rhostname));
- /*
- * Get secret for authenticating them with us,
- * do the hash ourselves, and compare the result.
- */
- code = CHAP_FAILURE;
- if (!get_secret(cstate->unit, rhostname, cstate->chal_name,
- secret, &secret_len, 1)) {
- syslog(LOG_WARNING, "No CHAP secret found for authenticating %s",
- rhostname);
- } else {
- /* generate MD based on negotiated type */
- switch (cstate->chal_type) {
- case CHAP_DIGEST_MD5: /* only MD5 is defined for now */
- if (remmd_len != MD5_SIGNATURE_SIZE)
- break; /* it's not even the right length */
- ppp_MD5Init(&mdContext);
- ppp_MD5Update(&mdContext, &cstate->chal_id, 1);
- ppp_MD5Update(&mdContext, (u_char *) secret, secret_len);
- ppp_MD5Update(&mdContext, cstate->challenge, cstate->chal_len);
- ppp_MD5Final(&mdContext);
- /* compare local and remote MDs and send the appropriate status */
- if (bcmp ((char *)mdContext.digest, (char *)remmd,
- MD5_SIGNATURE_SIZE) == 0)
- code = CHAP_SUCCESS; /* they are the same! */
- break;
- default:
- CHAPDEBUG((LOG_INFO, "unknown digest type %d", cstate->chal_type));
- }
- }
- ChapSendStatus(cstate, code);
- if (code == CHAP_SUCCESS) {
- old_state = cstate->serverstate;
- cstate->serverstate = CHAPSS_OPEN;
- if (old_state == CHAPSS_INITIAL_CHAL) {
- auth_peer_success(cstate->unit, CHAP);
- }
- if (cstate->chal_interval != 0)
- PPP_TIMEOUT(ChapRechallenge, (caddr_t) cstate,
- cstate->chal_interval);
- } else {
- syslog(LOG_ERR, "CHAP peer authentication failed");
- cstate->serverstate = CHAPSS_BADAUTH;
- auth_peer_fail(cstate->unit, CHAP);
- }
- }
- /*
- * ChapReceiveSuccess - Receive Success
- */
- static void
- ChapReceiveSuccess(cstate, inp, id, len)
- chap_state *cstate;
- u_char *inp;
- u_char id;
- int len;
- {
- CHAPDEBUG((LOG_INFO, "ChapReceiveSuccess: Rcvd id %d.", id));
- if (cstate->clientstate == CHAPCS_OPEN)
- /* presumably an answer to a duplicate response */
- return;
- if (cstate->clientstate != CHAPCS_RESPONSE) {
- /* don't know what this is */
- CHAPDEBUG((LOG_INFO, "ChapReceiveSuccess: in state %d",
- cstate->clientstate));
- return;
- }
- PPP_UNTIMEOUT(ChapResponseTimeout, (caddr_t) cstate);
- /*
- * Print message.
- */
- if (len > 0)
- PRINTMSG(inp, len);
- cstate->clientstate = CHAPCS_OPEN;
- auth_withpeer_success(cstate->unit, CHAP);
- }
- /*
- * ChapReceiveFailure - Receive failure.
- */
- static void
- ChapReceiveFailure(cstate, inp, id, len)
- chap_state *cstate;
- u_char *inp;
- u_char id;
- int len;
- {
- CHAPDEBUG((LOG_INFO, "ChapReceiveFailure: Rcvd id %d.", id));
- if (cstate->clientstate != CHAPCS_RESPONSE) {
- /* don't know what this is */
- CHAPDEBUG((LOG_INFO, "ChapReceiveFailure: in state %d",
- cstate->clientstate));
- return;
- }
- PPP_UNTIMEOUT(ChapResponseTimeout, (caddr_t) cstate);
- /*
- * Print message.
- */
- if (len > 0)
- PRINTMSG(inp, len);
- syslog(LOG_ERR, "CHAP authentication failed");
- auth_withpeer_fail(cstate->unit, CHAP);
- }
- /*
- * ChapSendChallenge - Send an Authenticate challenge.
- */
- static void
- ChapSendChallenge(cstate)
- chap_state *cstate;
- {
- u_char *outp;
- int chal_len, name_len;
- int outlen;
- chal_len = cstate->chal_len;
- name_len = strlen(cstate->chal_name);
- outlen = CHAP_HEADERLEN + sizeof (u_char) + chal_len + name_len;
- outp = ppp_if[cstate->unit]->outpacket_buf;
- MAKEHEADER(outp, CHAP); /* paste in a CHAP header */
- PUTCHAR(CHAP_CHALLENGE, outp);
- PUTCHAR(cstate->chal_id, outp);
- PUTSHORT(outlen, outp);
- PUTCHAR(chal_len, outp); /* put length of challenge */
- BCOPY((char *)cstate->challenge, (char *)outp, chal_len);
- INCPTR(chal_len, outp);
- BCOPY(cstate->chal_name, (char *)outp, name_len); /* append hostname */
- output(cstate->unit, ppp_if[cstate->unit]->outpacket_buf, outlen + DLLHEADERLEN);
-
- CHAPDEBUG((LOG_INFO, "ChapSendChallenge: Sent id %d.", cstate->chal_id));
- PPP_TIMEOUT(ChapChallengeTimeout, (caddr_t) cstate, cstate->timeouttime);
- ++cstate->chal_transmits;
- }
- /*
- * ChapSendStatus - Send a status response (ack or nak).
- */
- static void
- ChapSendStatus(cstate, code)
- chap_state *cstate;
- int code;
- {
- u_char *outp;
- int outlen, msglen;
- char msg[256];
- if (code == CHAP_SUCCESS)
- sprintf(msg, "CHAP authentication success, unit %d", cstate->unit);
- else
- sprintf(msg, "CHAP authentication failure, unit %d", cstate->unit);
- msglen = strlen(msg);
- outlen = CHAP_HEADERLEN + msglen;
- outp = ppp_if[cstate->unit]->outpacket_buf;
- MAKEHEADER(outp, CHAP); /* paste in a header */
-
- PUTCHAR(code, outp);
- PUTCHAR(cstate->chal_id, outp);
- PUTSHORT(outlen, outp);
- BCOPY(msg, (char *)outp, msglen);
- output(cstate->unit, ppp_if[cstate->unit]->outpacket_buf, outlen + DLLHEADERLEN);
-
- CHAPDEBUG((LOG_INFO, "ChapSendStatus: Sent code %d, id %d.", code,
- cstate->chal_id));
- }
- /*
- * ChapGenChallenge is used to generate a pseudo-random challenge string of
- * a pseudo-random length between min_len and max_len. The challenge
- * string and its length are stored in *cstate, and various other fields of
- * *cstate are initialized.
- */
- static void
- ChapGenChallenge(cstate)
- chap_state *cstate;
- {
- int chal_len;
- u_char *ptr = cstate->challenge;
- unsigned int i;
- /* pick a random challenge length between MIN_CHALLENGE_LENGTH and
- MAX_CHALLENGE_LENGTH */
- chal_len = (unsigned) ((random() %
- (MAX_CHALLENGE_LENGTH - MIN_CHALLENGE_LENGTH)) +
- MIN_CHALLENGE_LENGTH);
- cstate->chal_len = chal_len;
- cstate->chal_id = ++cstate->id;
- cstate->chal_transmits = 0;
- /* generate a random string */
- for (i = 0; i < chal_len; i++ )
- *ptr++ = (char) (random() % 0xff);
- }
- /*
- * ChapSendResponse - send a response packet with values as specified
- * in *cstate.
- */
- /* ARGSUSED */
- static void
- ChapSendResponse(cstate)
- chap_state *cstate;
- {
- u_char *outp;
- int outlen, md_len, name_len;
- md_len = cstate->resp_length;
- name_len = strlen(cstate->resp_name);
- outlen = CHAP_HEADERLEN + sizeof (u_char) + md_len + name_len;
- outp = ppp_if[cstate->unit]->outpacket_buf;
- MAKEHEADER(outp, CHAP);
- PUTCHAR(CHAP_RESPONSE, outp); /* we are a response */
- PUTCHAR(cstate->resp_id, outp); /* copy id from challenge packet */
- PUTSHORT(outlen, outp); /* packet length */
- PUTCHAR(md_len, outp); /* length of MD */
- BCOPY((char *)cstate->response, (char *)outp, md_len); /* copy MD to buffer */
- INCPTR(md_len, outp);
- BCOPY(cstate->resp_name, (char *)outp, name_len); /* append our name */
- /* send the packet */
- output(cstate->unit, ppp_if[cstate->unit]->outpacket_buf, outlen + DLLHEADERLEN);
- cstate->clientstate = CHAPCS_RESPONSE;
- PPP_TIMEOUT(ChapResponseTimeout, (caddr_t) cstate, cstate->timeouttime);
- ++cstate->resp_transmits;
- }
- /*
- * ChapPrintPkt - print the contents of a CHAP packet.
- */
- char *ChapCodenames[] = {
- "Challenge", "Response", "Success", "Failure"
- };
- int
- ChapPrintPkt(p, plen, printer, arg)
- u_char *p;
- int plen;
- void (*printer) __ARGS((void *, char *, ...));
- void *arg;
- {
- int code, id, len;
- int clen, nlen;
- u_char x;
- if (plen < CHAP_HEADERLEN)
- return 0;
- GETCHAR(code, p);
- GETCHAR(id, p);
- GETSHORT(len, p);
- if (len < CHAP_HEADERLEN || len > plen)
- return 0;
- if (code >= 1 && code <= sizeof(ChapCodenames) / sizeof(char *))
- printer(arg, " %s", ChapCodenames[code-1]);
- else
- printer(arg, " code=0x%x", code);
- printer(arg, " id=0x%x", id);
- len -= CHAP_HEADERLEN;
- switch (code) {
- case CHAP_CHALLENGE:
- case CHAP_RESPONSE:
- if (len < 1)
- break;
- clen = p[0];
- if (len < clen + 1)
- break;
- ++p;
- nlen = len - clen - 1;
- printer(arg, " <");
- for (; clen > 0; --clen) {
- GETCHAR(x, p);
- printer(arg, "%.2x", x);
- }
- printer(arg, ">, name = ");
- print_string((char *)p, nlen, printer, arg);
- break;
- case CHAP_FAILURE:
- case CHAP_SUCCESS:
- printer(arg, " ");
- print_string((char *)p, len, printer, arg);
- break;
- default:
- for (clen = len; clen > 0; --clen) {
- GETCHAR(x, p);
- printer(arg, " %.2x", x);
- }
- }
- return len + CHAP_HEADERLEN;
- }