1994-05-27 12:39:25 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1988, 1992 The University of Utah and the Center
|
|
|
|
* for Software Science (CSS).
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* the Center for Software Science of the University of Utah Computer
|
|
|
|
* Science Department. CSS requests users of this software to return
|
|
|
|
* to css-dist@cs.utah.edu any improvements that they make and grant
|
|
|
|
* CSS redistribution rights.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1997-06-29 19:00:29 +00:00
|
|
|
* from: @(#)rbootd.c 8.1 (Berkeley) 6/4/93
|
1994-05-27 12:39:25 +00:00
|
|
|
*
|
1997-06-29 19:00:29 +00:00
|
|
|
* From: Utah Hdr: rbootd.c 3.1 92/07/06
|
1994-05-27 12:39:25 +00:00
|
|
|
* Author: Jeff Forys, University of Utah CSS
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1997-06-29 19:00:29 +00:00
|
|
|
static const char copyright[] =
|
1994-05-27 12:39:25 +00:00
|
|
|
"@(#) Copyright (c) 1992, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1997-11-24 07:33:42 +00:00
|
|
|
#if 0
|
1997-06-29 19:00:29 +00:00
|
|
|
static const char sccsid[] = "@(#)rbootd.c 8.1 (Berkeley) 6/4/93";
|
1997-11-24 07:33:42 +00:00
|
|
|
#endif
|
1994-05-27 12:39:25 +00:00
|
|
|
#endif /* not lint */
|
2010-12-20 08:37:26 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <ctype.h>
|
1997-06-29 19:00:29 +00:00
|
|
|
#include <err.h>
|
1994-05-27 12:39:25 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "defs.h"
|
|
|
|
|
2002-02-07 23:57:01 +00:00
|
|
|
static void usage(void);
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
int
|
2002-02-07 23:57:01 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-27 12:39:25 +00:00
|
|
|
{
|
|
|
|
int c, fd, omask, maxfds;
|
|
|
|
fd_set rset;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Close any open file descriptors.
|
|
|
|
* Temporarily leave stdin & stdout open for `-d',
|
|
|
|
* and stderr open for any pre-syslog error messages.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
int i, nfds = getdtablesize();
|
|
|
|
|
|
|
|
for (i = 0; i < nfds; i++)
|
|
|
|
if (i != fileno(stdin) && i != fileno(stdout) &&
|
|
|
|
i != fileno(stderr))
|
|
|
|
(void) close(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse any arguments.
|
|
|
|
*/
|
1997-03-28 15:48:21 +00:00
|
|
|
while ((c = getopt(argc, argv, "adi:")) != -1)
|
1994-05-27 12:39:25 +00:00
|
|
|
switch(c) {
|
|
|
|
case 'a':
|
|
|
|
BootAny++;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
DebugFlg++;
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
IntfName = optarg;
|
|
|
|
break;
|
1997-11-24 07:33:42 +00:00
|
|
|
default:
|
|
|
|
usage();
|
1994-05-27 12:39:25 +00:00
|
|
|
}
|
|
|
|
for (; optind < argc; optind++) {
|
|
|
|
if (ConfigFile == NULL)
|
|
|
|
ConfigFile = argv[optind];
|
|
|
|
else {
|
1997-11-24 07:33:42 +00:00
|
|
|
warnx("too many config files (`%s' ignored)",
|
1997-06-29 19:00:29 +00:00
|
|
|
argv[optind]);
|
1994-05-27 12:39:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ConfigFile == NULL) /* use default config file */
|
|
|
|
ConfigFile = DfltConfig;
|
|
|
|
|
|
|
|
if (DebugFlg) {
|
|
|
|
DbgFp = stdout; /* output to stdout */
|
|
|
|
|
|
|
|
(void) signal(SIGUSR1, SIG_IGN); /* dont muck w/DbgFp */
|
|
|
|
(void) signal(SIGUSR2, SIG_IGN);
|
1997-06-29 19:00:29 +00:00
|
|
|
(void) fclose(stderr); /* finished with it */
|
1994-05-27 12:39:25 +00:00
|
|
|
} else {
|
1997-06-29 19:00:29 +00:00
|
|
|
if (daemon(0, 0))
|
|
|
|
err(1, "can't detach from terminal");
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
(void) signal(SIGUSR1, DebugOn);
|
|
|
|
(void) signal(SIGUSR2, DebugOff);
|
|
|
|
}
|
|
|
|
|
1997-11-24 07:33:42 +00:00
|
|
|
openlog("rbootd", LOG_PID, LOG_DAEMON);
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If no interface was specified, get one now.
|
|
|
|
*
|
|
|
|
* This is convoluted because we want to get the default interface
|
|
|
|
* name for the syslog("restarted") message. If BpfGetIntfName()
|
|
|
|
* runs into an error, it will return a syslog-able error message
|
|
|
|
* (in `errmsg') which will be displayed here.
|
|
|
|
*/
|
|
|
|
if (IntfName == NULL) {
|
|
|
|
char *errmsg;
|
|
|
|
|
|
|
|
if ((IntfName = BpfGetIntfName(&errmsg)) == NULL) {
|
2004-08-21 07:23:41 +00:00
|
|
|
/* Backslash to avoid trigraph '??)'. */
|
|
|
|
syslog(LOG_NOTICE, "restarted (?\?)");
|
2000-11-19 10:52:10 +00:00
|
|
|
/* BpfGetIntfName() returns safe names, using %m */
|
|
|
|
syslog(LOG_ERR, "%s", errmsg);
|
1994-05-27 12:39:25 +00:00
|
|
|
Exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
syslog(LOG_NOTICE, "restarted (%s)", IntfName);
|
|
|
|
|
|
|
|
(void) signal(SIGHUP, ReConfig);
|
|
|
|
(void) signal(SIGINT, Exit);
|
|
|
|
(void) signal(SIGTERM, Exit);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Grab our host name and pid.
|
|
|
|
*/
|
1999-04-07 08:27:45 +00:00
|
|
|
if (gethostname(MyHost, MAXHOSTNAMELEN - 1) < 0) {
|
1994-05-27 12:39:25 +00:00
|
|
|
syslog(LOG_ERR, "gethostname: %m");
|
|
|
|
Exit(0);
|
|
|
|
}
|
1999-04-07 08:27:45 +00:00
|
|
|
MyHost[MAXHOSTNAMELEN - 1] = '\0';
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
MyPid = getpid();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write proc's pid to a file.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
if ((fp = fopen(PidFile, "w")) != NULL) {
|
1997-06-29 19:00:29 +00:00
|
|
|
(void) fprintf(fp, "%d\n", (int) MyPid);
|
1994-05-27 12:39:25 +00:00
|
|
|
(void) fclose(fp);
|
|
|
|
} else {
|
|
|
|
syslog(LOG_WARNING, "fopen: failed (%s)", PidFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All boot files are relative to the boot directory, we might
|
|
|
|
* as well chdir() there to make life easier.
|
|
|
|
*/
|
|
|
|
if (chdir(BootDir) < 0) {
|
|
|
|
syslog(LOG_ERR, "chdir: %m (%s)", BootDir);
|
|
|
|
Exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initial configuration.
|
|
|
|
*/
|
|
|
|
omask = sigblock(sigmask(SIGHUP)); /* prevent reconfig's */
|
|
|
|
if (GetBootFiles() == 0) /* get list of boot files */
|
|
|
|
Exit(0);
|
|
|
|
if (ParseConfig() == 0) /* parse config file */
|
|
|
|
Exit(0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open and initialize a BPF device for the appropriate interface.
|
|
|
|
* If an error is encountered, a message is displayed and Exit()
|
|
|
|
* is called.
|
|
|
|
*/
|
|
|
|
fd = BpfOpen();
|
|
|
|
|
|
|
|
(void) sigsetmask(omask); /* allow reconfig's */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main loop: receive a packet, determine where it came from,
|
|
|
|
* and if we service this host, call routine to handle request.
|
|
|
|
*/
|
|
|
|
maxfds = fd + 1;
|
|
|
|
FD_ZERO(&rset);
|
|
|
|
FD_SET(fd, &rset);
|
|
|
|
for (;;) {
|
|
|
|
struct timeval timeout;
|
|
|
|
fd_set r;
|
|
|
|
int nsel;
|
|
|
|
|
|
|
|
r = rset;
|
|
|
|
|
2012-01-07 16:09:54 +00:00
|
|
|
if (RmpConns == NULL) { /* timeout isn't necessary */
|
1997-06-29 19:00:29 +00:00
|
|
|
nsel = select(maxfds, &r, NULL, NULL, NULL);
|
1994-05-27 12:39:25 +00:00
|
|
|
} else {
|
|
|
|
timeout.tv_sec = RMP_TIMEOUT;
|
|
|
|
timeout.tv_usec = 0;
|
1997-06-29 19:00:29 +00:00
|
|
|
nsel = select(maxfds, &r, NULL, NULL, &timeout);
|
1994-05-27 12:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nsel < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
syslog(LOG_ERR, "select: %m");
|
|
|
|
Exit(0);
|
|
|
|
} else if (nsel == 0) { /* timeout */
|
|
|
|
DoTimeout(); /* clear stale conns */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FD_ISSET(fd, &r)) {
|
|
|
|
RMPCONN rconn;
|
|
|
|
CLIENT *client, *FindClient();
|
|
|
|
int doread = 1;
|
|
|
|
|
|
|
|
while (BpfRead(&rconn, doread)) {
|
|
|
|
doread = 0;
|
|
|
|
|
|
|
|
if (DbgFp != NULL) /* display packet */
|
|
|
|
DispPkt(&rconn,DIR_RCVD);
|
|
|
|
|
|
|
|
omask = sigblock(sigmask(SIGHUP));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we do not restrict service, set the
|
|
|
|
* client to NULL (ProcessPacket() handles
|
|
|
|
* this). Otherwise, check that we can
|
|
|
|
* service this host; if not, log a message
|
|
|
|
* and ignore the packet.
|
|
|
|
*/
|
|
|
|
if (BootAny) {
|
|
|
|
client = NULL;
|
|
|
|
} else if ((client=FindClient(&rconn))==NULL) {
|
|
|
|
syslog(LOG_INFO,
|
|
|
|
"%s: boot packet ignored",
|
|
|
|
EnetStr(&rconn));
|
|
|
|
(void) sigsetmask(omask);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcessPacket(&rconn,client);
|
|
|
|
|
|
|
|
(void) sigsetmask(omask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-11-24 07:33:42 +00:00
|
|
|
static void
|
2002-02-07 23:57:01 +00:00
|
|
|
usage(void)
|
1997-11-24 07:33:42 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "usage: rbootd [-ad] [-i interface] [config_file]\n");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:39:25 +00:00
|
|
|
/*
|
|
|
|
** DoTimeout -- Free any connections that have timed out.
|
|
|
|
**
|
|
|
|
** Parameters:
|
|
|
|
** None.
|
|
|
|
**
|
|
|
|
** Returns:
|
|
|
|
** Nothing.
|
|
|
|
**
|
|
|
|
** Side Effects:
|
|
|
|
** - Timed out connections in `RmpConns' will be freed.
|
|
|
|
*/
|
|
|
|
void
|
2002-02-07 23:57:01 +00:00
|
|
|
DoTimeout(void)
|
1994-05-27 12:39:25 +00:00
|
|
|
{
|
1997-06-29 19:50:26 +00:00
|
|
|
RMPCONN *rtmp;
|
1994-05-27 12:39:25 +00:00
|
|
|
struct timeval now;
|
|
|
|
|
|
|
|
(void) gettimeofday(&now, (struct timezone *)0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For each active connection, if RMP_TIMEOUT seconds have passed
|
|
|
|
* since the last packet was sent, delete the connection.
|
|
|
|
*/
|
|
|
|
for (rtmp = RmpConns; rtmp != NULL; rtmp = rtmp->next)
|
|
|
|
if ((rtmp->tstamp.tv_sec + RMP_TIMEOUT) < now.tv_sec) {
|
|
|
|
syslog(LOG_WARNING, "%s: connection timed out (%u)",
|
|
|
|
EnetStr(rtmp), rtmp->rmp.r_type);
|
|
|
|
RemoveConn(rtmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** FindClient -- Find client associated with a packet.
|
|
|
|
**
|
|
|
|
** Parameters:
|
1995-05-30 05:51:47 +00:00
|
|
|
** rconn - the new packet.
|
1994-05-27 12:39:25 +00:00
|
|
|
**
|
|
|
|
** Returns:
|
|
|
|
** Pointer to client info if found, NULL otherwise.
|
|
|
|
**
|
|
|
|
** Side Effects:
|
|
|
|
** None.
|
|
|
|
**
|
|
|
|
** Warnings:
|
|
|
|
** - This routine must be called with SIGHUP blocked since
|
|
|
|
** a reconfigure can invalidate the information returned.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CLIENT *
|
2002-02-07 23:57:01 +00:00
|
|
|
FindClient(RMPCONN *rconn)
|
1994-05-27 12:39:25 +00:00
|
|
|
{
|
1997-06-29 19:50:26 +00:00
|
|
|
CLIENT *ctmp;
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
for (ctmp = Clients; ctmp != NULL; ctmp = ctmp->next)
|
|
|
|
if (bcmp((char *)&rconn->rmp.hp_hdr.saddr[0],
|
|
|
|
(char *)&ctmp->addr[0], RMP_ADDRLEN) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
return(ctmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Exit -- Log an error message and exit.
|
|
|
|
**
|
|
|
|
** Parameters:
|
|
|
|
** sig - caught signal (or zero if not dying on a signal).
|
|
|
|
**
|
|
|
|
** Returns:
|
|
|
|
** Does not return.
|
|
|
|
**
|
|
|
|
** Side Effects:
|
|
|
|
** - This process ceases to exist.
|
|
|
|
*/
|
|
|
|
void
|
2002-02-07 23:57:01 +00:00
|
|
|
Exit(int sig)
|
1994-05-27 12:39:25 +00:00
|
|
|
{
|
|
|
|
if (sig > 0)
|
|
|
|
syslog(LOG_ERR, "going down on signal %d", sig);
|
|
|
|
else
|
|
|
|
syslog(LOG_ERR, "going down with fatal error");
|
|
|
|
BpfClose();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** ReConfig -- Get new list of boot files and reread config files.
|
|
|
|
**
|
|
|
|
** Parameters:
|
|
|
|
** None.
|
|
|
|
**
|
|
|
|
** Returns:
|
|
|
|
** Nothing.
|
|
|
|
**
|
|
|
|
** Side Effects:
|
|
|
|
** - All active connections are dropped.
|
|
|
|
** - List of boot-able files is changed.
|
|
|
|
** - List of clients is changed.
|
|
|
|
**
|
|
|
|
** Warnings:
|
|
|
|
** - This routine must be called with SIGHUP blocked.
|
|
|
|
*/
|
|
|
|
void
|
2010-12-20 08:37:26 +00:00
|
|
|
ReConfig(int signo __unused)
|
1994-05-27 12:39:25 +00:00
|
|
|
{
|
|
|
|
syslog(LOG_NOTICE, "reconfiguring boot server");
|
|
|
|
|
|
|
|
FreeConns();
|
|
|
|
|
|
|
|
if (GetBootFiles() == 0)
|
|
|
|
Exit(0);
|
|
|
|
|
|
|
|
if (ParseConfig() == 0)
|
|
|
|
Exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** DebugOff -- Turn off debugging.
|
|
|
|
**
|
|
|
|
** Parameters:
|
|
|
|
** None.
|
|
|
|
**
|
|
|
|
** Returns:
|
|
|
|
** Nothing.
|
|
|
|
**
|
|
|
|
** Side Effects:
|
|
|
|
** - Debug file is closed.
|
|
|
|
*/
|
|
|
|
void
|
2010-12-20 08:37:26 +00:00
|
|
|
DebugOff(int signo __unused)
|
1994-05-27 12:39:25 +00:00
|
|
|
{
|
|
|
|
if (DbgFp != NULL)
|
|
|
|
(void) fclose(DbgFp);
|
|
|
|
|
|
|
|
DbgFp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** DebugOn -- Turn on debugging.
|
|
|
|
**
|
|
|
|
** Parameters:
|
|
|
|
** None.
|
|
|
|
**
|
|
|
|
** Returns:
|
|
|
|
** Nothing.
|
|
|
|
**
|
|
|
|
** Side Effects:
|
|
|
|
** - Debug file is opened/truncated if not already opened,
|
|
|
|
** otherwise do nothing.
|
|
|
|
*/
|
|
|
|
void
|
2010-12-20 08:37:26 +00:00
|
|
|
DebugOn(int signo __unused)
|
1994-05-27 12:39:25 +00:00
|
|
|
{
|
|
|
|
if (DbgFp == NULL) {
|
|
|
|
if ((DbgFp = fopen(DbgFile, "w")) == NULL)
|
|
|
|
syslog(LOG_ERR, "can't open debug file (%s)", DbgFile);
|
|
|
|
}
|
|
|
|
}
|