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-10-26 01:04:02 +00:00
|
|
|
* $Id: pap.c,v 1.17 1997/10/16 23:55:19 brian Exp $
|
1995-05-30 03:57:47 +00:00
|
|
|
*
|
1995-01-31 06:29:58 +00:00
|
|
|
* TODO:
|
|
|
|
*/
|
1997-10-26 01:04:02 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
1997-09-22 23:59:16 +00:00
|
|
|
#include <time.h>
|
1997-10-26 01:04:02 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __OpenBSD__
|
|
|
|
#include <util.h>
|
|
|
|
#else
|
|
|
|
#include <libutil.h>
|
|
|
|
#endif
|
1997-09-22 23:59:16 +00:00
|
|
|
#include <utmp.h>
|
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 "lcp.h"
|
|
|
|
#include "pap.h"
|
1997-05-26 00:44:10 +00:00
|
|
|
#include "loadalias.h"
|
1997-10-26 01:04:02 +00:00
|
|
|
#include "command.h"
|
1995-01-31 06:29:58 +00:00
|
|
|
#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
|
|
|
|
|
|
|
static char *papcodes[] = {
|
|
|
|
"???", "REQUEST", "ACK", "NAK"
|
|
|
|
};
|
|
|
|
|
1997-10-26 01:04:02 +00:00
|
|
|
static void
|
1997-08-25 00:29:32 +00:00
|
|
|
SendPapChallenge(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;
|
1997-06-09 03:27:43 +00:00
|
|
|
LogPrintf(LogDEBUG, "SendPapChallenge: namelen = %d, keylen = %d\n",
|
|
|
|
namelen, keylen);
|
1997-10-16 23:55:19 +00:00
|
|
|
if (LogIsKept(LogDEBUG))
|
|
|
|
LogPrintf(LogPHASE, "PAP: %s (%s)\n", VarAuthName, VarAuthKey);
|
|
|
|
else
|
|
|
|
LogPrintf(LogPHASE, "PAP: %s\n", VarAuthName);
|
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);
|
1997-10-26 01:04:02 +00:00
|
|
|
memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader));
|
1995-01-31 06:29:58 +00:00
|
|
|
cp = MBUF_CTOP(bp) + sizeof(struct fsmheader);
|
|
|
|
*cp++ = namelen;
|
1997-10-26 01:04:02 +00:00
|
|
|
memcpy(cp, VarAuthName, namelen);
|
1995-01-31 06:29:58 +00:00
|
|
|
cp += namelen;
|
|
|
|
*cp++ = keylen;
|
1997-10-26 01:04:02 +00:00
|
|
|
memcpy(cp, VarAuthKey, 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
|
|
|
}
|
|
|
|
|
1997-10-26 01:04:02 +00:00
|
|
|
struct authinfo AuthPapInfo = {
|
|
|
|
SendPapChallenge,
|
|
|
|
};
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
static void
|
1997-08-25 00:29:32 +00:00
|
|
|
SendPapCode(int id, int code, char *message)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
|
|
|
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);
|
1997-10-26 01:04:02 +00:00
|
|
|
memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader));
|
1995-01-31 06:29:58 +00:00
|
|
|
cp = MBUF_CTOP(bp) + sizeof(struct fsmheader);
|
|
|
|
*cp++ = mlen;
|
1997-10-26 01:04:02 +00:00
|
|
|
memcpy(cp, message, mlen);
|
1997-06-09 03:27:43 +00:00
|
|
|
LogPrintf(LogPHASE, "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
|
1997-08-25 00:29:32 +00:00
|
|
|
PapValidate(u_char * name, u_char * key)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
|
|
|
int nlen, klen;
|
|
|
|
|
|
|
|
nlen = *name++;
|
|
|
|
klen = *key;
|
|
|
|
*key++ = 0;
|
|
|
|
key[klen] = 0;
|
1997-06-09 03:27:43 +00:00
|
|
|
LogPrintf(LogDEBUG, "PapValidate: name %s (%d), key %s (%d)\n",
|
|
|
|
name, nlen, key, klen);
|
1996-10-06 13:32:37 +00:00
|
|
|
|
1997-06-09 03:27:43 +00:00
|
|
|
#ifndef NOPASSWDAUTH
|
1997-08-25 00:29:32 +00:00
|
|
|
if (Enabled(ConfPasswdAuth)) {
|
1997-09-27 19:11:43 +00:00
|
|
|
struct passwd *pwd;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
LogPrintf(LogLCP, "Using PasswdAuth\n");
|
|
|
|
result = (pwd = getpwnam(name)) &&
|
|
|
|
!strcmp(crypt(key, pwd->pw_passwd), pwd->pw_passwd);
|
|
|
|
endpwent();
|
|
|
|
return result;
|
1996-10-06 13:32:37 +00:00
|
|
|
}
|
1997-06-09 03:27:43 +00:00
|
|
|
#endif
|
1996-10-06 13:32:37 +00:00
|
|
|
|
1997-08-25 00:29:32 +00:00
|
|
|
return (AuthValidate(SECRETFILE, name, key));
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1997-08-25 00:29:32 +00:00
|
|
|
PapInput(struct mbuf * bp)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
|
|
|
int len = plength(bp);
|
|
|
|
struct fsmheader *php;
|
|
|
|
struct lcpstate *lcp = &LcpInfo;
|
|
|
|
u_char *cp;
|
|
|
|
|
|
|
|
if (len >= sizeof(struct fsmheader)) {
|
1997-08-25 00:29:32 +00:00
|
|
|
php = (struct fsmheader *) MBUF_CTOP(bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
if (len >= ntohs(php->length)) {
|
|
|
|
if (php->code < PAP_REQUEST || php->code > PAP_NAK)
|
|
|
|
php->code = 0;
|
1997-06-09 03:27:43 +00:00
|
|
|
LogPrintf(LogPHASE, "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;
|
1997-09-22 23:59:16 +00:00
|
|
|
if (lcp->auth_iwait == 0) {
|
|
|
|
if ((mode & MODE_DIRECT) && isatty(modem) && Enabled(ConfUtmp))
|
|
|
|
if (Utmp)
|
|
|
|
LogPrintf(LogERROR, "Oops, already logged in on %s\n",
|
|
|
|
VarBaseDevice);
|
|
|
|
else {
|
|
|
|
struct utmp ut;
|
|
|
|
memset(&ut, 0, sizeof(ut));
|
|
|
|
time(&ut.ut_time);
|
|
|
|
strncpy(ut.ut_name, cp+1, sizeof(ut.ut_name)-1);
|
|
|
|
strncpy(ut.ut_line, VarBaseDevice, sizeof(ut.ut_line)-1);
|
|
|
|
if (logout(ut.ut_line))
|
|
|
|
logwtmp(ut.ut_line, "", "");
|
|
|
|
login(&ut);
|
|
|
|
Utmp = 1;
|
|
|
|
}
|
1995-01-31 06:29:58 +00:00
|
|
|
NewPhase(PHASE_NETWORK);
|
1997-09-22 23:59:16 +00:00
|
|
|
}
|
1995-01-31 06:29:58 +00:00
|
|
|
} else {
|
|
|
|
SendPapCode(php->id, PAP_NAK, "Login incorrect");
|
1997-08-25 00:29:32 +00:00
|
|
|
reconnect(RECON_FALSE);
|
1995-01-31 06:29:58 +00:00
|
|
|
LcpClose();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PAP_ACK:
|
1995-02-26 12:18:08 +00:00
|
|
|
StopAuthTimer(&AuthPapInfo);
|
1997-08-25 00:29:32 +00:00
|
|
|
cp = (u_char *) (php + 1);
|
1995-01-31 06:29:58 +00:00
|
|
|
len = *cp++;
|
|
|
|
cp[len] = 0;
|
1997-06-09 03:27:43 +00:00
|
|
|
LogPrintf(LogPHASE, "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);
|
1997-08-25 00:29:32 +00:00
|
|
|
cp = (u_char *) (php + 1);
|
1995-01-31 06:29:58 +00:00
|
|
|
len = *cp++;
|
|
|
|
cp[len] = 0;
|
1997-06-09 03:27:43 +00:00
|
|
|
LogPrintf(LogPHASE, "Received PAP_NAK (%s)\n", cp);
|
1997-08-25 00:29:32 +00:00
|
|
|
reconnect(RECON_FALSE);
|
1995-01-31 06:29:58 +00:00
|
|
|
LcpClose();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pfree(bp);
|
|
|
|
}
|