1995-01-31 06:29:58 +00:00
|
|
|
/*
|
|
|
|
* PPP CHAP Module
|
|
|
|
*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* 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 the Internet Initiative Japan, Inc. The name of the
|
|
|
|
* IIJ 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.
|
1995-05-30 03:57:47 +00:00
|
|
|
*
|
1999-02-07 13:56:29 +00:00
|
|
|
* $Id: chap.c,v 1.41 1999/02/07 13:48:38 brian Exp $
|
1995-05-30 03:57:47 +00:00
|
|
|
*
|
1995-01-31 06:29:58 +00:00
|
|
|
* TODO:
|
|
|
|
*/
|
1999-01-28 01:56:34 +00:00
|
|
|
#include <sys/param.h>
|
1997-10-26 01:04:02 +00:00
|
|
|
#include <netinet/in.h>
|
1998-03-16 22:54:35 +00:00
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
1998-04-28 01:25:46 +00:00
|
|
|
#include <sys/un.h>
|
1997-10-26 01:04:02 +00:00
|
|
|
|
1998-06-27 14:18:15 +00:00
|
|
|
#ifdef HAVE_DES
|
1998-05-21 22:55:08 +00:00
|
|
|
#include <md4.h>
|
1999-02-06 02:54:47 +00:00
|
|
|
#include <string.h>
|
1998-06-27 14:18:15 +00:00
|
|
|
#endif
|
1997-10-26 01:04:02 +00:00
|
|
|
#include <md5.h>
|
|
|
|
#include <stdlib.h>
|
1998-02-02 19:33:40 +00:00
|
|
|
#include <termios.h>
|
1997-09-25 00:52:37 +00:00
|
|
|
|
1997-10-26 01:04:02 +00:00
|
|
|
#include "mbuf.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "defs.h"
|
|
|
|
#include "timer.h"
|
1995-01-31 06:29:58 +00:00
|
|
|
#include "fsm.h"
|
|
|
|
#include "lcpproto.h"
|
|
|
|
#include "lcp.h"
|
1998-03-13 00:44:26 +00:00
|
|
|
#include "lqr.h"
|
1995-01-31 06:29:58 +00:00
|
|
|
#include "hdlc.h"
|
1995-02-26 12:18:08 +00:00
|
|
|
#include "auth.h"
|
1998-03-01 01:07:49 +00:00
|
|
|
#include "chap.h"
|
1998-02-02 19:33:40 +00:00
|
|
|
#include "async.h"
|
|
|
|
#include "throughput.h"
|
1998-02-09 19:21:11 +00:00
|
|
|
#include "descriptor.h"
|
1998-03-13 21:07:46 +00:00
|
|
|
#include "iplist.h"
|
1998-03-16 22:54:35 +00:00
|
|
|
#include "slcompress.h"
|
1998-03-13 21:07:46 +00:00
|
|
|
#include "ipcp.h"
|
1998-03-16 22:52:54 +00:00
|
|
|
#include "filter.h"
|
1998-03-01 01:07:49 +00:00
|
|
|
#include "ccp.h"
|
1998-04-03 19:21:56 +00:00
|
|
|
#include "link.h"
|
|
|
|
#include "physical.h"
|
|
|
|
#include "mp.h"
|
1999-01-28 01:56:34 +00:00
|
|
|
#ifndef NORADIUS
|
|
|
|
#include "radius.h"
|
|
|
|
#endif
|
1998-04-03 19:21:56 +00:00
|
|
|
#include "bundle.h"
|
1998-03-01 01:07:49 +00:00
|
|
|
#include "chat.h"
|
1998-08-07 18:42:51 +00:00
|
|
|
#include "cbcp.h"
|
1998-03-01 01:07:49 +00:00
|
|
|
#include "datalink.h"
|
1998-06-27 14:18:15 +00:00
|
|
|
#ifdef HAVE_DES
|
1998-05-21 22:55:08 +00:00
|
|
|
#include "chap_ms.h"
|
1998-06-27 14:18:15 +00:00
|
|
|
#endif
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1997-11-22 03:37:54 +00:00
|
|
|
static const char *chapcodes[] = {
|
1996-11-19 11:08:27 +00:00
|
|
|
"???", "CHALLENGE", "RESPONSE", "SUCCESS", "FAILURE"
|
1995-01-31 06:29:58 +00:00
|
|
|
};
|
1999-02-06 02:54:47 +00:00
|
|
|
#define MAXCHAPCODE (sizeof chapcodes / sizeof chapcodes[0] - 1)
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1997-10-26 01:04:02 +00:00
|
|
|
static void
|
1998-01-29 00:49:32 +00:00
|
|
|
ChapOutput(struct physical *physical, u_int code, u_int id,
|
1999-02-06 02:54:47 +00:00
|
|
|
const u_char *ptr, int count, const char *text)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
|
|
|
int plen;
|
|
|
|
struct fsmheader lh;
|
|
|
|
struct mbuf *bp;
|
|
|
|
|
1997-08-25 00:29:32 +00:00
|
|
|
plen = sizeof(struct fsmheader) + count;
|
1995-01-31 06:29:58 +00:00
|
|
|
lh.code = code;
|
|
|
|
lh.id = id;
|
|
|
|
lh.length = htons(plen);
|
1998-05-01 19:26:12 +00:00
|
|
|
bp = mbuf_Alloc(plen, MB_FSM);
|
1997-10-26 01:04:02 +00:00
|
|
|
memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader));
|
1995-01-31 06:29:58 +00:00
|
|
|
if (count)
|
1997-10-26 01:04:02 +00:00
|
|
|
memcpy(MBUF_CTOP(bp) + sizeof(struct fsmheader), ptr, count);
|
1998-05-01 19:26:12 +00:00
|
|
|
log_DumpBp(LogDEBUG, "ChapOutput", bp);
|
1998-07-28 21:54:30 +00:00
|
|
|
if (text == NULL)
|
|
|
|
log_Printf(LogPHASE, "Chap Output: %s\n", chapcodes[code]);
|
|
|
|
else
|
|
|
|
log_Printf(LogPHASE, "Chap Output: %s (%s)\n", chapcodes[code], text);
|
1998-05-01 19:26:12 +00:00
|
|
|
hdlc_Output(&physical->link, PRI_LINK, PROTO_CHAP, bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
1999-02-06 02:54:47 +00:00
|
|
|
static char *
|
|
|
|
chap_BuildAnswer(char *name, char *key, u_char id, char *challenge, int MSChap)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
1999-02-06 02:54:47 +00:00
|
|
|
char *result, *digest;
|
|
|
|
size_t nlen, klen;
|
|
|
|
|
|
|
|
nlen = strlen(name);
|
|
|
|
klen = strlen(key);
|
|
|
|
|
|
|
|
#ifdef HAVE_DES
|
|
|
|
if (MSChap) {
|
|
|
|
char expkey[AUTHLEN << 2];
|
|
|
|
MD4_CTX MD4context;
|
|
|
|
int f;
|
|
|
|
|
|
|
|
if ((result = malloc(1 + nlen + MS_CHAP_RESPONSE_LEN)) == NULL)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
digest = result; /* this is the response */
|
|
|
|
*digest++ = MS_CHAP_RESPONSE_LEN; /* 49 */
|
|
|
|
memset(digest, '\0', 24);
|
|
|
|
digest += 24;
|
|
|
|
|
|
|
|
for (f = klen; f; f--) {
|
|
|
|
expkey[2*f-2] = key[f-1];
|
|
|
|
expkey[2*f-1] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* -----------
|
|
|
|
* answer = | k\0e\0y\0 |
|
|
|
|
* -----------
|
|
|
|
*/
|
|
|
|
MD4Init(&MD4context);
|
|
|
|
MD4Update(&MD4context, expkey, klen << 1);
|
|
|
|
MD4Final(digest, &MD4context);
|
|
|
|
memcpy(digest + 25, name, nlen);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ``result'' is:
|
|
|
|
* ---- --------- -------------------- ------
|
|
|
|
* result = | 49 | 24 * \0 | digest (pad to 25) | name |
|
|
|
|
* ---- --------- -------------------- ------
|
|
|
|
*/
|
|
|
|
chap_MS(digest, challenge + 1, *challenge);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ---- --------- ---------------- --- ----------
|
|
|
|
* result = | 49 | 24 * \0 | 24 byte digest | 1 | authname |
|
|
|
|
* ---- --------- ---------------- --- ----------
|
|
|
|
*/
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
if ((result = malloc(nlen + 17)) != NULL) {
|
|
|
|
/* Normal MD5 stuff */
|
|
|
|
MD5_CTX MD5context;
|
|
|
|
|
|
|
|
digest = result;
|
|
|
|
*digest++ = 16; /* value size */
|
|
|
|
|
|
|
|
MD5Init(&MD5context);
|
|
|
|
MD5Update(&MD5context, &id, 1);
|
|
|
|
MD5Update(&MD5context, key, klen);
|
|
|
|
MD5Update(&MD5context, challenge + 1, *challenge);
|
|
|
|
MD5Final(digest, &MD5context);
|
|
|
|
|
|
|
|
memcpy(digest + 16, name, nlen);
|
|
|
|
/*
|
|
|
|
* ---- -------- ------
|
|
|
|
* result = | 16 | digest | name |
|
|
|
|
* ---- -------- ------
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
chap_Challenge(struct authinfo *authp)
|
|
|
|
{
|
|
|
|
struct chap *chap = auth2chap(authp);
|
1996-01-10 21:28:04 +00:00
|
|
|
int len, i;
|
1995-01-31 06:29:58 +00:00
|
|
|
char *cp;
|
|
|
|
|
1997-10-26 01:04:02 +00:00
|
|
|
randinit();
|
1999-02-06 02:54:47 +00:00
|
|
|
cp = chap->challenge;
|
1999-01-29 22:46:31 +00:00
|
|
|
|
1999-01-28 01:56:34 +00:00
|
|
|
#ifndef NORADIUS
|
1999-02-06 02:54:47 +00:00
|
|
|
if (*authp->physical->dl->bundle->radius.cfg.file) {
|
1999-01-28 01:56:34 +00:00
|
|
|
/* For radius, our challenge is 16 readable NUL terminated bytes :*/
|
1999-02-06 02:54:47 +00:00
|
|
|
*cp++ = 16;
|
|
|
|
for (i = 0; i < 16; i++)
|
1999-01-29 22:46:31 +00:00
|
|
|
*cp++ = (random() % 10) + '0';
|
|
|
|
} else
|
1999-01-28 01:56:34 +00:00
|
|
|
#endif
|
1999-01-29 22:46:31 +00:00
|
|
|
{
|
1999-02-06 02:54:47 +00:00
|
|
|
*cp++ = random() % (CHAPCHALLENGELEN-16) + 16;
|
|
|
|
for (i = 0; i < *chap->challenge; i++)
|
1999-01-28 01:56:34 +00:00
|
|
|
*cp++ = random() & 0xff;
|
|
|
|
}
|
1999-01-29 22:46:31 +00:00
|
|
|
|
1999-02-06 02:54:47 +00:00
|
|
|
len = strlen(authp->physical->dl->bundle->cfg.auth.name);
|
|
|
|
memcpy(cp, authp->physical->dl->bundle->cfg.auth.name, len);
|
1999-01-29 22:46:31 +00:00
|
|
|
cp += len;
|
1999-02-06 02:54:47 +00:00
|
|
|
ChapOutput(authp->physical, CHAP_CHALLENGE, authp->id, chap->challenge,
|
|
|
|
cp - chap->challenge, NULL);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
1997-10-26 01:04:02 +00:00
|
|
|
static void
|
1999-02-06 02:54:47 +00:00
|
|
|
chap_Success(struct authinfo *authp)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
1999-02-06 02:54:47 +00:00
|
|
|
datalink_GotAuthname(authp->physical->dl, authp->in.name);
|
|
|
|
ChapOutput(authp->physical, CHAP_SUCCESS, authp->id, "Welcome!!", 10, NULL);
|
|
|
|
authp->physical->link.lcp.auth_ineed = 0;
|
|
|
|
if (Enabled(authp->physical->dl->bundle, OPT_UTMP))
|
|
|
|
physical_Login(authp->physical, authp->in.name);
|
1997-09-25 00:52:37 +00:00
|
|
|
|
1999-02-06 02:54:47 +00:00
|
|
|
if (authp->physical->link.lcp.auth_iwait == 0)
|
1997-11-09 03:55:27 +00:00
|
|
|
/*
|
1999-02-06 02:54:47 +00:00
|
|
|
* Either I didn't need to authenticate, or I've already been
|
|
|
|
* told that I got the answer right.
|
1997-11-09 03:55:27 +00:00
|
|
|
*/
|
1999-02-06 02:54:47 +00:00
|
|
|
datalink_AuthOk(authp->physical->dl);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
1997-10-26 01:04:02 +00:00
|
|
|
static void
|
1999-02-06 02:54:47 +00:00
|
|
|
chap_Failure(struct authinfo *authp)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
1999-02-06 02:54:47 +00:00
|
|
|
ChapOutput(authp->physical, CHAP_FAILURE, authp->id, "Invalid!!", 9, NULL);
|
|
|
|
datalink_AuthNotOk(authp->physical->dl);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-02-06 02:54:47 +00:00
|
|
|
chap_Init(struct chap *chap, struct physical *p)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
1999-02-06 02:54:47 +00:00
|
|
|
auth_Init(&chap->auth, p, chap_Challenge, chap_Success, chap_Failure);
|
|
|
|
*chap->challenge = 0;
|
|
|
|
chap->using_MSChap = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chap_Input(struct physical *p, struct mbuf *bp)
|
|
|
|
{
|
|
|
|
struct chap *chap = &p->dl->chap;
|
|
|
|
char *name, *key, *ans, *myans;
|
|
|
|
int len, nlen;
|
|
|
|
u_char alen;
|
|
|
|
|
|
|
|
if ((bp = auth_ReadHeader(&chap->auth, bp)) == NULL)
|
|
|
|
log_Printf(LogERROR, "Chap Input: Truncated header !\n");
|
|
|
|
else if (chap->auth.in.hdr.code == 0 || chap->auth.in.hdr.code > MAXCHAPCODE)
|
|
|
|
log_Printf(LogPHASE, "Chap Input: %d: Bad CHAP code !\n",
|
|
|
|
chap->auth.in.hdr.code);
|
|
|
|
else {
|
|
|
|
len = mbuf_Length(bp);
|
|
|
|
ans = NULL;
|
|
|
|
|
|
|
|
if (chap->auth.in.hdr.code != CHAP_CHALLENGE &&
|
|
|
|
chap->auth.id != chap->auth.in.hdr.id &&
|
|
|
|
Enabled(p->dl->bundle, OPT_IDCHECK)) {
|
|
|
|
/* Wrong conversation dude ! */
|
|
|
|
log_Printf(LogPHASE, "Chap Input: %s dropped (got id %d, not %d)\n",
|
|
|
|
chapcodes[chap->auth.in.hdr.code], chap->auth.in.hdr.id,
|
|
|
|
chap->auth.id);
|
|
|
|
mbuf_Free(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
chap->auth.id = chap->auth.in.hdr.id; /* We respond with this id */
|
|
|
|
|
|
|
|
switch (chap->auth.in.hdr.code) {
|
|
|
|
case CHAP_CHALLENGE:
|
|
|
|
bp = mbuf_Read(bp, chap->challenge, 1);
|
|
|
|
len -= *chap->challenge + 1;
|
|
|
|
if (len < 0) {
|
|
|
|
log_Printf(LogERROR, "Chap Input: Truncated challenge !\n");
|
|
|
|
mbuf_Free(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bp = mbuf_Read(bp, chap->challenge + 1, *chap->challenge);
|
|
|
|
bp = auth_ReadName(&chap->auth, bp, len);
|
|
|
|
break;
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
case CHAP_RESPONSE:
|
1999-02-06 02:54:47 +00:00
|
|
|
auth_StopTimer(&chap->auth);
|
|
|
|
bp = mbuf_Read(bp, &alen, 1);
|
|
|
|
len -= alen + 1;
|
|
|
|
if (len < 0) {
|
|
|
|
log_Printf(LogERROR, "Chap Input: Truncated response !\n");
|
|
|
|
mbuf_Free(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((ans = malloc(alen + 2)) == NULL) {
|
|
|
|
log_Printf(LogERROR, "Chap Input: Out of memory !\n");
|
|
|
|
mbuf_Free(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
*ans = chap->auth.id;
|
|
|
|
bp = mbuf_Read(bp, ans + 1, alen);
|
|
|
|
ans[alen+1] = '\0';
|
|
|
|
bp = auth_ReadName(&chap->auth, bp, len);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CHAP_SUCCESS:
|
|
|
|
case CHAP_FAILURE:
|
|
|
|
/* chap->auth.in.name is already set up at CHALLENGE time */
|
|
|
|
if ((ans = malloc(len + 1)) == NULL) {
|
|
|
|
log_Printf(LogERROR, "Chap Input: Out of memory !\n");
|
|
|
|
mbuf_Free(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bp = mbuf_Read(bp, ans, len);
|
|
|
|
ans[len] = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (chap->auth.in.hdr.code) {
|
1995-02-26 12:18:08 +00:00
|
|
|
case CHAP_CHALLENGE:
|
1999-02-06 02:54:47 +00:00
|
|
|
case CHAP_RESPONSE:
|
|
|
|
if (*chap->auth.in.name)
|
|
|
|
log_Printf(LogPHASE, "Chap Input: %s (from %s)\n",
|
|
|
|
chapcodes[chap->auth.in.hdr.code], chap->auth.in.name);
|
|
|
|
else
|
|
|
|
log_Printf(LogPHASE, "Chap Input: %s\n",
|
|
|
|
chapcodes[chap->auth.in.hdr.code]);
|
|
|
|
break;
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
case CHAP_SUCCESS:
|
|
|
|
case CHAP_FAILURE:
|
1999-02-06 02:54:47 +00:00
|
|
|
if (*ans)
|
|
|
|
log_Printf(LogPHASE, "Chap Input: %s (%s)\n",
|
|
|
|
chapcodes[chap->auth.in.hdr.code], ans);
|
|
|
|
else
|
|
|
|
log_Printf(LogPHASE, "Chap Input: %s\n",
|
|
|
|
chapcodes[chap->auth.in.hdr.code]);
|
|
|
|
break;
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
1999-02-06 02:54:47 +00:00
|
|
|
|
|
|
|
switch (chap->auth.in.hdr.code) {
|
|
|
|
case CHAP_CHALLENGE:
|
|
|
|
name = p->dl->bundle->cfg.auth.name;
|
|
|
|
nlen = strlen(name);
|
|
|
|
key = p->dl->bundle->cfg.auth.key;
|
|
|
|
myans = chap_BuildAnswer(name, key, chap->auth.id, chap->challenge, 0);
|
|
|
|
if (myans) {
|
|
|
|
ChapOutput(p, CHAP_RESPONSE, chap->auth.id, myans,
|
|
|
|
*myans + 1 + nlen, name);
|
|
|
|
free(myans);
|
|
|
|
} else
|
|
|
|
ChapOutput(p, CHAP_FAILURE, chap->auth.id, "Out of memory!",
|
|
|
|
14, NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CHAP_RESPONSE:
|
|
|
|
name = chap->auth.in.name;
|
|
|
|
nlen = strlen(name);
|
|
|
|
#ifndef NORADIUS
|
|
|
|
if (*p->dl->bundle->radius.cfg.file) {
|
|
|
|
chap->challenge[*chap->challenge+1] = '\0';
|
|
|
|
radius_Authenticate(&p->dl->bundle->radius, &chap->auth,
|
|
|
|
chap->auth.in.name, ans, chap->challenge + 1);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
key = auth_GetSecret(p->dl->bundle, name, nlen, p);
|
|
|
|
if (key) {
|
|
|
|
myans = chap_BuildAnswer(name, key, chap->auth.id, chap->challenge,
|
|
|
|
chap->using_MSChap);
|
|
|
|
if (myans == NULL)
|
|
|
|
key = NULL;
|
|
|
|
else {
|
1999-02-07 13:56:29 +00:00
|
|
|
if (*myans != alen || memcmp(myans + 1, ans + 1, *myans))
|
1999-02-06 02:54:47 +00:00
|
|
|
key = NULL;
|
|
|
|
free(myans);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key)
|
|
|
|
chap_Success(&chap->auth);
|
|
|
|
else
|
|
|
|
chap_Failure(&chap->auth);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CHAP_SUCCESS:
|
|
|
|
if (p->link.lcp.auth_iwait == PROTO_CHAP) {
|
|
|
|
p->link.lcp.auth_iwait = 0;
|
|
|
|
if (p->link.lcp.auth_ineed == 0)
|
|
|
|
/*
|
|
|
|
* We've succeeded in our ``login''
|
|
|
|
* If we're not expecting the peer to authenticate (or he already
|
|
|
|
* has), proceed to network phase.
|
|
|
|
*/
|
|
|
|
datalink_AuthOk(p->dl);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CHAP_FAILURE:
|
|
|
|
datalink_AuthNotOk(p->dl);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(ans);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
1999-02-06 02:54:47 +00:00
|
|
|
|
1998-05-01 19:26:12 +00:00
|
|
|
mbuf_Free(bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|