1995-01-31 06:29:58 +00:00
|
|
|
/*
|
|
|
|
* PPP PAP Module
|
|
|
|
*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993-94, 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.
|
|
|
|
*
|
1997-02-22 16:15:28 +00:00
|
|
|
* $Id$
|
1995-05-30 03:57:47 +00:00
|
|
|
*
|
1995-01-31 06:29:58 +00:00
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
#include "fsm.h"
|
|
|
|
#include "lcp.h"
|
|
|
|
#include "pap.h"
|
|
|
|
#include "vars.h"
|
|
|
|
#include "hdlc.h"
|
|
|
|
#include "lcpproto.h"
|
|
|
|
#include "phase.h"
|
1995-02-26 12:18:08 +00:00
|
|
|
#include "auth.h"
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1996-10-07 04:21:09 +00:00
|
|
|
#ifdef PASSWDAUTH
|
|
|
|
# include "passwdauth.h"
|
|
|
|
#endif
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
static char *papcodes[] = {
|
|
|
|
"???", "REQUEST", "ACK", "NAK"
|
|
|
|
};
|
|
|
|
|
1995-02-26 12:18:08 +00:00
|
|
|
struct authinfo AuthPapInfo = {
|
|
|
|
SendPapChallenge,
|
|
|
|
};
|
1995-01-31 06:29:58 +00:00
|
|
|
|
|
|
|
void
|
1995-02-26 12:18:08 +00:00
|
|
|
SendPapChallenge(papid)
|
|
|
|
int papid;
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
|
|
|
struct fsmheader lh;
|
|
|
|
struct mbuf *bp;
|
|
|
|
u_char *cp;
|
|
|
|
int namelen, keylen, plen;
|
|
|
|
|
|
|
|
namelen = strlen(VarAuthName);
|
|
|
|
keylen = strlen(VarAuthKey);
|
|
|
|
plen = namelen + keylen + 2;
|
|
|
|
#ifdef DEBUG
|
|
|
|
logprintf("namelen = %d, keylen = %d\n", namelen, keylen);
|
|
|
|
#endif
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_PHASE_BIT, "PAP: %s (%s)\n", VarAuthName, VarAuthKey);
|
1995-01-31 06:29:58 +00:00
|
|
|
lh.code = PAP_REQUEST;
|
1995-02-26 12:18:08 +00:00
|
|
|
lh.id = papid;
|
1995-01-31 06:29:58 +00:00
|
|
|
lh.length = htons(plen + sizeof(struct fsmheader));
|
|
|
|
bp = mballoc(plen + sizeof(struct fsmheader), MB_FSM);
|
|
|
|
bcopy(&lh, MBUF_CTOP(bp), sizeof(struct fsmheader));
|
|
|
|
cp = MBUF_CTOP(bp) + sizeof(struct fsmheader);
|
|
|
|
*cp++ = namelen;
|
|
|
|
bcopy(VarAuthName, cp, namelen);
|
|
|
|
cp += namelen;
|
|
|
|
*cp++ = keylen;
|
|
|
|
bcopy(VarAuthKey, cp, keylen);
|
1995-05-30 03:57:47 +00:00
|
|
|
|
1996-01-30 11:08:50 +00:00
|
|
|
HdlcOutput(PRI_LINK, PROTO_PAP, bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
SendPapCode(id, code, message)
|
|
|
|
int id;
|
|
|
|
char *message;
|
|
|
|
int code;
|
|
|
|
{
|
|
|
|
struct fsmheader lh;
|
|
|
|
struct mbuf *bp;
|
|
|
|
u_char *cp;
|
|
|
|
int plen, mlen;
|
|
|
|
|
|
|
|
lh.code = code;
|
|
|
|
lh.id = id;
|
|
|
|
mlen = strlen(message);
|
|
|
|
plen = mlen + 1;
|
|
|
|
lh.length = htons(plen + sizeof(struct fsmheader));
|
|
|
|
bp = mballoc(plen + sizeof(struct fsmheader), MB_FSM);
|
|
|
|
bcopy(&lh, MBUF_CTOP(bp), sizeof(struct fsmheader));
|
|
|
|
cp = MBUF_CTOP(bp) + sizeof(struct fsmheader);
|
|
|
|
*cp++ = mlen;
|
|
|
|
bcopy(message, cp, mlen);
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_PHASE_BIT, "PapOutput: %s\n", papcodes[code]);
|
1996-01-30 11:08:50 +00:00
|
|
|
HdlcOutput(PRI_LINK, PROTO_PAP, bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Validate given username and passwrd against with secret table
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
PapValidate(name, key)
|
|
|
|
u_char *name, *key;
|
|
|
|
{
|
|
|
|
int nlen, klen;
|
|
|
|
|
|
|
|
nlen = *name++;
|
|
|
|
klen = *key;
|
|
|
|
*key++ = 0;
|
|
|
|
key[klen] = 0;
|
1995-02-26 12:18:08 +00:00
|
|
|
#ifdef DEBUG
|
1995-01-31 06:29:58 +00:00
|
|
|
logprintf("name: %s (%d), key: %s (%d)\n", name, nlen, key, klen);
|
1995-02-26 12:18:08 +00:00
|
|
|
#endif
|
1996-10-06 13:32:37 +00:00
|
|
|
|
|
|
|
#ifdef PASSWDAUTH
|
|
|
|
if( Enabled( ConfPasswdAuth ) )
|
|
|
|
{
|
|
|
|
LogPrintf( LOG_LCP, "PasswdAuth enabled - calling\n" );
|
|
|
|
return PasswdAuth( name, key );
|
|
|
|
}
|
|
|
|
#endif /* PASSWDAUTH */
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
return(AuthValidate(SECRETFILE, name, key));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PapInput(bp)
|
|
|
|
struct mbuf *bp;
|
|
|
|
{
|
|
|
|
int len = plength(bp);
|
|
|
|
struct fsmheader *php;
|
|
|
|
struct lcpstate *lcp = &LcpInfo;
|
|
|
|
u_char *cp;
|
|
|
|
|
|
|
|
if (len >= sizeof(struct fsmheader)) {
|
|
|
|
php = (struct fsmheader *)MBUF_CTOP(bp);
|
|
|
|
if (len >= ntohs(php->length)) {
|
|
|
|
if (php->code < PAP_REQUEST || php->code > PAP_NAK)
|
|
|
|
php->code = 0;
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_PHASE_BIT, "PapInput: %s\n", papcodes[php->code]);
|
1995-01-31 06:29:58 +00:00
|
|
|
|
|
|
|
switch (php->code) {
|
|
|
|
case PAP_REQUEST:
|
|
|
|
cp = (u_char *) (php + 1);
|
|
|
|
if (PapValidate(cp, cp + *cp + 1)) {
|
|
|
|
SendPapCode(php->id, PAP_ACK, "Greetings!!");
|
|
|
|
lcp->auth_ineed = 0;
|
|
|
|
if (lcp->auth_iwait == 0)
|
|
|
|
NewPhase(PHASE_NETWORK);
|
|
|
|
} else {
|
|
|
|
SendPapCode(php->id, PAP_NAK, "Login incorrect");
|
|
|
|
LcpClose();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PAP_ACK:
|
1995-02-26 12:18:08 +00:00
|
|
|
StopAuthTimer(&AuthPapInfo);
|
1995-01-31 06:29:58 +00:00
|
|
|
cp = (u_char *)(php + 1);
|
|
|
|
len = *cp++;
|
|
|
|
cp[len] = 0;
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_PHASE_BIT, "Received PAP_ACK (%s)\n", cp);
|
1995-01-31 06:29:58 +00:00
|
|
|
if (lcp->auth_iwait == PROTO_PAP) {
|
|
|
|
lcp->auth_iwait = 0;
|
|
|
|
if (lcp->auth_ineed == 0)
|
|
|
|
NewPhase(PHASE_NETWORK);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PAP_NAK:
|
1995-02-26 12:18:08 +00:00
|
|
|
StopAuthTimer(&AuthPapInfo);
|
1995-01-31 06:29:58 +00:00
|
|
|
cp = (u_char *)(php + 1);
|
|
|
|
len = *cp++;
|
|
|
|
cp[len] = 0;
|
1996-05-11 20:48:42 +00:00
|
|
|
LogPrintf(LOG_PHASE_BIT, "Received PAP_NAK (%s)\n", cp);
|
1995-01-31 06:29:58 +00:00
|
|
|
LcpClose();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pfree(bp);
|
|
|
|
}
|