minix/servers/inet/inet_config.c
Jorrit Herder c281867f46 Fixed bug relating to FS and MEMORY during startup;
Relocated some syslib functions to utils library;
Changed location of 'Multiuser startup ..." echo in /etc/rc
2005-06-06 09:30:44 +00:00

305 lines
6.5 KiB
C

/*
inet/inet_config.c
Created: Nov 11, 1992 by Philip Homburg
Modified: Apr 07, 2001 by Kees J. Bot
Read the configuration file and fill in the xx_conf[] arrays.
Copyright 1995 Philip Homburg
*/
#define _MINIX 1
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <minix/config.h>
#include <minix/type.h>
#include <minix/syslib.h>
#include <minix/utils.h>
#include <unistd.h>
#include "inet_config.h"
#define CRAMPED (_EM_WSIZE==2) /* 64K code and data is quite cramped. */
#if CRAMPED
#endif
struct eth_conf eth_conf[IP_PORT_MAX];
struct psip_conf psip_conf[IP_PORT_MAX];
struct ip_conf ip_conf[IP_PORT_MAX];
dev_t ip_dev;
int eth_conf_nr;
#if ENABLE_PSIP
int psip_conf_nr;
#endif
int ip_conf_nr;
static u8_t iftype[IP_PORT_MAX]; /* Interface in use as? */
static int ifdefault= -1; /* Default network interface. */
static void fatal(char *label)
{
printf("init: %s: Error %d\n", label, errno);
exit(1);
}
static void check_rm(char *device)
/* Check if a device is not among the living. */
{
if (unlink(device) < 0) {
if (errno == ENOENT) return;
fatal(device);
}
printf("rm %s\n", device);
}
static void check_mknod(char *device, mode_t mode, int minor)
/* Check if a device exists with the proper device number. */
{
struct stat st;
dev_t dev;
dev= (ip_dev & 0xFF00) | minor;
if (stat(device, &st) < 0) {
if (errno != ENOENT) fatal(device);
} else {
if (S_ISCHR(st.st_mode) && st.st_rdev == dev) return;
if (unlink(device) < 0) fatal(device);
}
if (mknod(device, S_IFCHR | mode, dev) < 0) fatal(device);
printf("mknod %s c %d %d\n", device, (ip_dev >> 8), minor);
}
static void check_ln(char *old, char *new)
/* Check if 'old' and 'new' are still properly linked. */
{
struct stat st_old, st_new;
if (stat(old, &st_old) < 0) fatal(old);
if (stat(new, &st_new) < 0) {
if (errno != ENOENT) fatal(new);
} else {
if (st_new.st_dev == st_old.st_dev
&& st_new.st_ino == st_old.st_ino) {
return;
}
if (unlink(new) < 0) fatal(new);
}
if (link(old, new) < 0) fatal(new);
printf("ln %s %s\n", old, new);
}
static void check_dev(int type, int ifno)
/* Check if the device group with interface number 'ifno' exists and has the
* proper device numbers. If 'type' is -1 then the device group must be
* removed.
*/
{
static struct devlist {
char *defname;
mode_t mode;
u8_t minor_off;
} devlist[] = {
{ "/dev/eth", 0600, ETH_DEV_OFF },
{ "/dev/psip", 0600, PSIP_DEV_OFF },
{ "/dev/ip", 0600, IP_DEV_OFF },
{ "/dev/tcp", 0666, TCP_DEV_OFF },
{ "/dev/udp", 0666, UDP_DEV_OFF },
};
struct devlist *dvp;
int i;
char device[sizeof("/dev/psip99")];
char *dp;
for (i= 0; i < sizeof(devlist) / sizeof(devlist[0]); i++) {
dvp= &devlist[i];
strcpy(device, dvp->defname);
dp= device + strlen(device);
if (ifno >= 10) *dp++ = '0' + (ifno / 10);
*dp++ = '0' + (ifno % 10);
*dp = 0;
if (type == 0
|| (i == 0 && type != NETTYPE_ETH)
|| (i == 1 && type != NETTYPE_PSIP)
) {
check_rm(device);
if (ifno == ifdefault) check_rm(dvp->defname);
} else {
check_mknod(device, dvp->mode,
if2minor(ifno, dvp->minor_off));
if (ifno == ifdefault) check_ln(device, dvp->defname);
}
}
}
static int cfg_fd;
static char word[16];
static unsigned line;
static void error(void)
{
printf("inet: error on line %u\n", line);
exit(1);
}
static void token(int need)
{
/* Read a word from the configuration file. Return a null string on
* EOF. Return a punctiation as a one character word. If 'need' is
* true then an actual word is expected at this point, so err out if
* not.
*/
unsigned char *wp;
static unsigned char c= '\n';
wp= (unsigned char *) word;
*wp = 0;
while (c <= ' ') {
if (c == '\n') line++;
if (read(cfg_fd, &c, 1) != 1) {
if (need) error();
return;
}
}
do {
if (wp < (unsigned char *) word + sizeof(word)-1) *wp++ = c;
if (read(cfg_fd, &c, 1) != 1) c= ' ';
if (word[0] == ';' || word[0] == '{' || word[0] == '}') {
if (need) error();
break;
}
} while (c > ' ' && c != ';' && c != '{' && c != '}');
*wp = 0;
}
static unsigned number(char *str, unsigned max)
{
/* Interpret a string as an unsigned decimal number, no bigger than
* 'max'. Return this number.
*/
char *s;
unsigned n, d;
s= str;
n= 0;
while ((d= (*s - '0')) < 10 && n <= max) {
n= n * 10 + d;
s++;
}
if (*s != 0 || n > max) {
printf("inet: '%s' is not a number <= %u\n", str, max);
error();
}
return n;
}
void read_conf(void)
{
int i, j, ifno, type, port;
struct eth_conf *ecp;
struct psip_conf *pcp;
struct ip_conf *icp;
struct stat st;
/* Open the configuration file. */
if ((cfg_fd= open(PATH_INET_CONF, O_RDONLY)) == -1)
fatal(PATH_INET_CONF);
ecp= eth_conf;
pcp= psip_conf;
icp= ip_conf;
while (token(0), word[0] != 0) {
if (strncmp(word, "eth", 3) == 0) {
ecp->ec_ifno= ifno= number(word+3, IP_PORT_MAX-1);
type= NETTYPE_ETH;
port= eth_conf_nr;
token(1);
ecp->ec_task= alloc(strlen(word)+1);
strcpy(ecp->ec_task, word);
token(1);
ecp->ec_port= number(word, IP_PORT_MAX-1);
ecp++;
eth_conf_nr++;
#if ENABLE_PSIP
} else
if (strncmp(word, "psip", 4) == 0) {
pcp->pc_ifno= ifno= number(word+4, IP_PORT_MAX-1);
type= NETTYPE_PSIP;
port= psip_conf_nr;
pcp++;
psip_conf_nr++;
#endif
} else {
printf("inet: Unknown device '%s'\n", word);
error();
}
iftype[ifno]= type;
icp->ic_ifno= ifno;
icp->ic_devtype= type;
icp->ic_port= port;
token(0);
if (word[0] == '{') {
token(0);
if (strcmp(word, "default") == 0) {
if (ifdefault != -1) {
printf(
"inet: ip%d and ip%d can't both be default\n",
ifdefault, ifno);
error();
}
ifdefault= ifno;
token(0);
}
if (word[0] == ';') token(0);
if (word[0] != '}') error();
token(0);
}
if (word[0] != ';' && word[0] != 0) error();
icp++;
ip_conf_nr++;
}
if (ifdefault == -1) {
printf("inet: No networks or no default network defined\n");
exit(1);
}
/* Set umask 0 so we can creat mode 666 devices. */
(void) umask(0);
/* See what the device number of /dev/ip is. That's what we
* used last time for the network devices, so we keep doing so.
*/
if (stat("/dev/ip", &st) < 0) fatal("/dev/ip");
ip_dev= st.st_rdev;
for (i= 0; i < IP_PORT_MAX; i++) {
/* Create network devices. */
check_dev(iftype[i], i);
}
}
void *alloc(size_t size)
{
/* Allocate memory on the heap with sbrk(). */
return sbrk((size + (sizeof(char *) - 1)) & ~(sizeof(char *) - 1));
}
/*
* $PchId: inet_config.c,v 1.6 1998/10/23 20:15:27 philip Exp $
*/