1998-01-29 00:44:16 +00:00
|
|
|
/*
|
|
|
|
* PPP Secret Key Module
|
|
|
|
*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1994, 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.
|
|
|
|
*
|
1998-05-01 19:26:12 +00:00
|
|
|
* $Id: auth.c,v 1.27.2.25 1998/04/28 01:25:03 brian Exp $
|
1998-01-29 00:44:16 +00:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
* o Implement check against with registered IP addresses.
|
|
|
|
*/
|
1998-04-07 00:54:26 +00:00
|
|
|
#include <sys/types.h>
|
1998-01-29 00:44:16 +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>
|
1998-01-29 00:44:16 +00:00
|
|
|
|
1998-03-09 19:25:35 +00:00
|
|
|
#include <pwd.h>
|
1998-01-29 00:44:16 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "mbuf.h"
|
|
|
|
#include "defs.h"
|
|
|
|
#include "timer.h"
|
|
|
|
#include "fsm.h"
|
1998-01-29 23:11:44 +00:00
|
|
|
#include "iplist.h"
|
|
|
|
#include "throughput.h"
|
1998-03-16 22:54:35 +00:00
|
|
|
#include "slcompress.h"
|
1998-01-29 00:44:16 +00:00
|
|
|
#include "ipcp.h"
|
|
|
|
#include "auth.h"
|
|
|
|
#include "systems.h"
|
1998-02-02 19:33:40 +00:00
|
|
|
#include "lcp.h"
|
1998-03-13 00:44:26 +00:00
|
|
|
#include "lqr.h"
|
1998-02-02 19:33:40 +00:00
|
|
|
#include "hdlc.h"
|
1998-04-03 19:21:56 +00:00
|
|
|
#include "ccp.h"
|
1998-02-02 19:33:40 +00:00
|
|
|
#include "link.h"
|
1998-02-09 19:21:11 +00:00
|
|
|
#include "descriptor.h"
|
1998-02-13 05:10:26 +00:00
|
|
|
#include "chat.h"
|
1998-02-07 20:50:08 +00:00
|
|
|
#include "lcpproto.h"
|
1998-03-16 22:52:54 +00:00
|
|
|
#include "filter.h"
|
1998-04-03 19:21:56 +00:00
|
|
|
#include "mp.h"
|
1998-03-13 21:07:46 +00:00
|
|
|
#include "bundle.h"
|
1998-02-07 20:50:08 +00:00
|
|
|
|
|
|
|
const char *
|
|
|
|
Auth2Nam(u_short auth)
|
|
|
|
{
|
|
|
|
switch (auth) {
|
|
|
|
case PROTO_PAP:
|
|
|
|
return "PAP";
|
|
|
|
case PROTO_CHAP:
|
|
|
|
return "CHAP";
|
|
|
|
case 0:
|
|
|
|
return "none";
|
|
|
|
}
|
|
|
|
return "unknown";
|
|
|
|
}
|
1998-01-29 00:44:16 +00:00
|
|
|
|
1998-03-09 19:25:35 +00:00
|
|
|
static int
|
|
|
|
auth_CheckPasswd(const char *name, const char *data, const char *key)
|
|
|
|
{
|
|
|
|
if (!strcmp(data, "*")) {
|
|
|
|
/* Then look up the real password database */
|
|
|
|
struct passwd *pw;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
result = (pw = getpwnam(name)) &&
|
|
|
|
!strcmp(crypt(key, pw->pw_passwd), pw->pw_passwd);
|
|
|
|
endpwent();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return !strcmp(data, key);
|
|
|
|
}
|
|
|
|
|
1998-01-29 00:44:16 +00:00
|
|
|
int
|
1998-05-01 19:26:12 +00:00
|
|
|
auth_Select(struct bundle *bundle, const char *name, struct physical *physical)
|
1998-04-24 19:16:15 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
int n;
|
|
|
|
char *vector[5];
|
|
|
|
char buff[LINE_LEN];
|
|
|
|
|
|
|
|
if (*name == '\0') {
|
|
|
|
ipcp_Setup(&bundle->ncp.ipcp);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fp = OpenSecret(SECRETFILE);
|
|
|
|
if (fp != NULL) {
|
|
|
|
while (fgets(buff, sizeof buff, fp)) {
|
|
|
|
if (buff[0] == '#')
|
|
|
|
continue;
|
|
|
|
buff[strlen(buff) - 1] = 0;
|
|
|
|
memset(vector, '\0', sizeof vector);
|
|
|
|
n = MakeArgs(buff, vector, VECSIZE(vector));
|
|
|
|
if (n < 2)
|
|
|
|
continue;
|
|
|
|
if (strcmp(vector[0], name) == 0)
|
|
|
|
CloseSecret(fp);
|
|
|
|
/*
|
|
|
|
memset(&bundle->ncp.ipcp.cfg.peer_range, '\0',
|
|
|
|
sizeof bundle->ncp.ipcp.cfg.peer_range);
|
|
|
|
*/
|
1998-05-01 19:26:12 +00:00
|
|
|
if (n > 2 && !ipcp_UseHisaddr(bundle, vector[2], 1))
|
1998-04-24 19:16:15 +00:00
|
|
|
return 0;
|
|
|
|
ipcp_Setup(&bundle->ncp.ipcp);
|
|
|
|
if (n > 3)
|
|
|
|
bundle_SetLabel(bundle, vector[3]);
|
|
|
|
return 1; /* Valid */
|
|
|
|
}
|
|
|
|
CloseSecret(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NOPASSWDAUTH
|
|
|
|
/* Let 'em in anyway - they must have been in the passwd file */
|
|
|
|
ipcp_Setup(&bundle->ncp.ipcp);
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
/* Disappeared from ppp.secret ? */
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1998-05-01 19:26:12 +00:00
|
|
|
auth_Validate(struct bundle *bundle, const char *system,
|
1998-02-02 19:32:16 +00:00
|
|
|
const char *key, struct physical *physical)
|
1998-01-29 00:44:16 +00:00
|
|
|
{
|
1998-03-09 19:25:35 +00:00
|
|
|
/* Used by PAP routines */
|
|
|
|
|
1998-01-29 00:44:16 +00:00
|
|
|
FILE *fp;
|
|
|
|
int n;
|
|
|
|
char *vector[5];
|
|
|
|
char buff[LINE_LEN];
|
|
|
|
|
1998-04-24 19:16:15 +00:00
|
|
|
fp = OpenSecret(SECRETFILE);
|
1998-03-09 19:25:35 +00:00
|
|
|
if (fp != NULL) {
|
|
|
|
while (fgets(buff, sizeof buff, fp)) {
|
|
|
|
if (buff[0] == '#')
|
|
|
|
continue;
|
|
|
|
buff[strlen(buff) - 1] = 0;
|
|
|
|
memset(vector, '\0', sizeof vector);
|
|
|
|
n = MakeArgs(buff, vector, VECSIZE(vector));
|
|
|
|
if (n < 2)
|
|
|
|
continue;
|
1998-04-24 19:16:15 +00:00
|
|
|
if (strcmp(vector[0], system) == 0) {
|
|
|
|
CloseSecret(fp);
|
|
|
|
return auth_CheckPasswd(vector[0], vector[1], key);
|
|
|
|
}
|
1998-01-29 00:44:16 +00:00
|
|
|
}
|
1998-03-09 19:25:35 +00:00
|
|
|
CloseSecret(fp);
|
1998-01-29 00:44:16 +00:00
|
|
|
}
|
1998-03-09 19:25:35 +00:00
|
|
|
|
|
|
|
#ifndef NOPASSWDAUTH
|
1998-04-16 00:26:21 +00:00
|
|
|
if (Enabled(bundle, OPT_PASSWDAUTH))
|
1998-03-09 19:25:35 +00:00
|
|
|
return auth_CheckPasswd(system, "*", key);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0; /* Invalid */
|
1998-01-29 00:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
1998-05-01 19:26:12 +00:00
|
|
|
auth_GetSecret(struct bundle *bundle, const char *system, int len,
|
1998-04-24 19:16:15 +00:00
|
|
|
struct physical *physical)
|
1998-01-29 00:44:16 +00:00
|
|
|
{
|
1998-03-09 19:25:35 +00:00
|
|
|
/* Used by CHAP routines */
|
|
|
|
|
1998-01-29 00:44:16 +00:00
|
|
|
FILE *fp;
|
|
|
|
int n;
|
|
|
|
char *vector[5];
|
1998-03-09 19:25:35 +00:00
|
|
|
static char buff[LINE_LEN];
|
1998-01-29 00:44:16 +00:00
|
|
|
|
1998-04-24 19:16:15 +00:00
|
|
|
fp = OpenSecret(SECRETFILE);
|
1998-01-29 00:44:16 +00:00
|
|
|
if (fp == NULL)
|
|
|
|
return (NULL);
|
1998-03-09 19:25:35 +00:00
|
|
|
|
1998-01-29 00:44:16 +00:00
|
|
|
while (fgets(buff, sizeof buff, fp)) {
|
|
|
|
if (buff[0] == '#')
|
|
|
|
continue;
|
|
|
|
buff[strlen(buff) - 1] = 0;
|
|
|
|
memset(vector, '\0', sizeof vector);
|
|
|
|
n = MakeArgs(buff, vector, VECSIZE(vector));
|
|
|
|
if (n < 2)
|
|
|
|
continue;
|
|
|
|
if (strlen(vector[0]) == len && strncmp(vector[0], system, len) == 0) {
|
1998-04-24 19:16:15 +00:00
|
|
|
CloseSecret(fp);
|
1998-03-09 19:25:35 +00:00
|
|
|
return vector[1];
|
1998-01-29 00:44:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
CloseSecret(fp);
|
|
|
|
return (NULL); /* Invalid */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
AuthTimeout(void *vauthp)
|
|
|
|
{
|
|
|
|
struct authinfo *authp = (struct authinfo *)vauthp;
|
|
|
|
|
1998-05-01 19:26:12 +00:00
|
|
|
timer_Stop(&authp->authtimer);
|
1998-01-29 00:44:16 +00:00
|
|
|
if (--authp->retry > 0) {
|
1998-05-01 19:26:12 +00:00
|
|
|
timer_Start(&authp->authtimer);
|
1998-03-01 01:07:49 +00:00
|
|
|
(*authp->ChallengeFunc)(authp, ++authp->id, authp->physical);
|
1998-01-29 00:44:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-05-01 19:26:12 +00:00
|
|
|
auth_Init(struct authinfo *authinfo)
|
1998-01-29 00:44:16 +00:00
|
|
|
{
|
1998-03-01 01:07:49 +00:00
|
|
|
memset(authinfo, '\0', sizeof(struct authinfo));
|
1998-04-03 19:24:07 +00:00
|
|
|
authinfo->cfg.fsmretry = DEF_FSMRETRY;
|
1998-03-01 01:07:49 +00:00
|
|
|
}
|
1998-01-29 00:49:32 +00:00
|
|
|
|
1998-03-01 01:07:49 +00:00
|
|
|
void
|
1998-05-01 19:26:12 +00:00
|
|
|
auth_StartChallenge(struct authinfo *authp, struct physical *physical,
|
1998-03-01 01:07:49 +00:00
|
|
|
void (*fn)(struct authinfo *, int, struct physical *))
|
|
|
|
{
|
|
|
|
authp->ChallengeFunc = fn;
|
1998-01-29 00:49:32 +00:00
|
|
|
authp->physical = physical;
|
1998-05-01 19:26:12 +00:00
|
|
|
timer_Stop(&authp->authtimer);
|
1998-03-01 01:07:49 +00:00
|
|
|
authp->authtimer.func = AuthTimeout;
|
1998-04-03 19:21:56 +00:00
|
|
|
authp->authtimer.name = "auth";
|
1998-04-03 19:24:07 +00:00
|
|
|
authp->authtimer.load = authp->cfg.fsmretry * SECTICKS;
|
1998-03-01 01:07:49 +00:00
|
|
|
authp->authtimer.arg = (void *) authp;
|
1998-01-29 00:44:16 +00:00
|
|
|
authp->retry = 3;
|
|
|
|
authp->id = 1;
|
1998-03-01 01:07:49 +00:00
|
|
|
(*authp->ChallengeFunc)(authp, authp->id, physical);
|
1998-05-01 19:26:12 +00:00
|
|
|
timer_Start(&authp->authtimer);
|
1998-01-29 00:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-05-01 19:26:12 +00:00
|
|
|
auth_StopTimer(struct authinfo *authp)
|
1998-01-29 00:44:16 +00:00
|
|
|
{
|
1998-05-01 19:26:12 +00:00
|
|
|
timer_Stop(&authp->authtimer);
|
1998-01-29 00:49:32 +00:00
|
|
|
authp->physical = NULL;
|
1998-01-29 00:44:16 +00:00
|
|
|
}
|