freebsd-nq/usr.sbin/ppp/systems.c

160 lines
3.6 KiB
C
Raw Normal View History

1995-01-31 06:29:58 +00:00
/*
* System configuration routines
*
* 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.
*
* $Id: systems.c,v 1.20 1997/11/09 13:18:18 brian Exp $
1995-05-30 03:57:47 +00:00
*
1995-01-31 06:29:58 +00:00
* TODO:
*/
#include <sys/param.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "mbuf.h"
#include "log.h"
#include "id.h"
#include "defs.h"
#include "timer.h"
1995-01-31 06:29:58 +00:00
#include "fsm.h"
#include "loadalias.h"
#include "command.h"
1995-01-31 06:29:58 +00:00
#include "ipcp.h"
#include "pathnames.h"
#include "vars.h"
#include "server.h"
#include "systems.h"
1995-01-31 06:29:58 +00:00
FILE *
OpenSecret(char *file)
1995-01-31 06:29:58 +00:00
{
FILE *fp;
char line[100];
snprintf(line, sizeof line, "%s/%s", _PATH_PPP, file);
fp = ID0fopen(line, "r");
if (fp == NULL)
LogPrintf(LogWARN, "OpenSecret: Can't open %s.\n", line);
return (fp);
1995-01-31 06:29:58 +00:00
}
void
CloseSecret(FILE * fp)
1995-01-31 06:29:58 +00:00
{
fclose(fp);
}
int
SelectSystem(char *name, char *file)
1995-01-31 06:29:58 +00:00
{
FILE *fp;
char *cp, *wp;
int n, len;
u_char olauth;
char line[LINE_LEN];
char filename[200];
int linenum;
1995-01-31 06:29:58 +00:00
snprintf(filename, sizeof filename, "%s/%s", _PATH_PPP, file);
fp = ID0fopen(filename, "r");
1995-01-31 06:29:58 +00:00
if (fp == NULL) {
LogPrintf(LogDEBUG, "SelectSystem: Can't open %s.\n", filename);
return (-1);
1995-01-31 06:29:58 +00:00
}
LogPrintf(LogDEBUG, "SelectSystem: Checking %s (%s).\n", name, filename);
linenum = 0;
1995-01-31 06:29:58 +00:00
while (fgets(line, sizeof(line), fp)) {
linenum++;
1995-01-31 06:29:58 +00:00
cp = line;
switch (*cp) {
case '#': /* comment */
1995-01-31 06:29:58 +00:00
break;
case ' ':
case '\t':
break;
default:
wp = strpbrk(cp, ":\n");
if (wp == NULL) {
LogPrintf(LogWARN, "Bad rule in %s (line %d) - missing colon.\n",
filename, linenum);
ServerClose();
exit(1);
}
1995-01-31 06:29:58 +00:00
*wp = '\0';
if (strcmp(cp, name) == 0) {
while (fgets(line, sizeof(line), fp)) {
cp = line;
if (*cp == ' ' || *cp == '\t') {
n = strspn(cp, " \t");
cp += n;
len = strlen(cp);
if (!len)
continue;
if (cp[len-1] == '\n')
cp[--len] = '\0';
if (!len)
continue;
LogPrintf(LogCOMMAND, "%s: %s\n", name, cp);
olauth = VarLocalAuth;
if (VarLocalAuth == LOCAL_NO_AUTH)
VarLocalAuth = LOCAL_AUTH;
DecodeCommand(cp, len, 0);
VarLocalAuth = olauth;
1995-01-31 06:29:58 +00:00
} else if (*cp == '#') {
continue;
} else
break;
}
fclose(fp);
return (0);
1995-01-31 06:29:58 +00:00
}
break;
}
}
fclose(fp);
return -1;
1995-01-31 06:29:58 +00:00
}
int
LoadCommand(struct cmdtab const * list, int argc, char **argv)
1995-01-31 06:29:58 +00:00
{
char *name;
if (argc > 0)
name = *argv;
else
name = "default";
if (SelectSystem(name, CONFFILE) < 0) {
LogPrintf(LogWARN, "%s: not found.\n", name);
return -1;
1995-01-31 06:29:58 +00:00
}
return 0;
1995-01-31 06:29:58 +00:00
}
int
SaveCommand(struct cmdtab const *list, int argc, char **argv)
1995-01-31 06:29:58 +00:00
{
LogPrintf(LogWARN, "save command is not implemented (yet).\n");
return 1;
1995-01-31 06:29:58 +00:00
}