NetBSD/usr.sbin/altq/altqd/altqd.c

356 lines
8.6 KiB
C

/* $NetBSD: altqd.c,v 1.6 2001/08/22 08:52:35 itojun Exp $ */
/* $KAME: altqd.c,v 1.6 2001/08/20 08:25:23 kjc Exp $ */
/*
* Copyright (c) 2001 Theo de Raadt
* All rights reserved.
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
*
* Copyright (C) 1997-2000
* Sony Computer Science Laboratories, Inc. All rights reserved.
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY SONY CSL 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 SONY CSL 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.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <signal.h>
#include <fcntl.h>
#include <syslog.h>
#include <err.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/stat.h>
#include <net/if.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <altq/altq.h>
#include "altq_qop.h"
#include "quip_server.h"
#define ALTQD_PID_FILE "/var/run/altqd.pid"
#define MAX_CLIENT 10
int altqd_socket = -1;
FILE * client[MAX_CLIENT];
int T; /* Current Thread number */
FILE *infp; /* Input file pointer */
char *infile = NULL; /* command input file. stdin if NULL. */
fd_set fds, t_fds;
#define DEFAULT_DEBUG_MASK 0
#define DEFAULT_LOGGING_LEVEL LOG_INFO
void usage(void);
void sig_pipe(int);
void sig_hup(int);
void sig_int(int);
void sig_term(int);
void
usage(void)
{
fprintf(stderr, "usage: altqd [-vd] [-f config]\n");
exit(1);
}
void
sig_pipe(int sig)
{
/*
* we have lost an API connection.
* a subsequent output operation will catch EPIPE.
*/
}
int gotsig_hup, gotsig_int, gotsig_term;
void
sig_hup(int sig)
{
gotsig_hup = 1;
}
void
sig_int(int sig)
{
gotsig_int = 1;
}
void
sig_term(int sig)
{
gotsig_term = 1;
}
int
main(int argc, char **argv)
{
int c;
int i, maxfd;
extern char *optarg;
m_debug = DEFAULT_DEBUG_MASK;
l_debug = DEFAULT_LOGGING_LEVEL;
while ((c = getopt(argc, argv, "f:vDdl:")) != -1) {
switch (c) {
case 'f':
altqconfigfile = optarg;
break;
case 'D': /* -D => dummy mode */
Debug_mode = 1;
printf("Debug mode set.\n");
break;
case 'v':
l_debug = LOG_DEBUG;
m_debug |= DEBUG_ALTQ;
daemonize = 0;
break;
case 'd':
daemonize = 0;
break;
case 'l':
l_debug = atoi(optarg);
break;
default:
usage();
}
}
signal(SIGINT, sig_int);
signal(SIGTERM, sig_term);
signal(SIGHUP, sig_hup);
signal(SIGPIPE, sig_pipe);
if (daemonize)
openlog("altqd", LOG_PID, LOG_DAEMON);
if (qcmd_init() != 0) {
if (daemonize)
closelog();
exit(1);
}
/*
* open a unix domain socket for altqd clients
*/
if ((altqd_socket = socket(AF_LOCAL, SOCK_STREAM, 0)) < 0)
LOG(LOG_ERR, errno, "can't open unix domain socket");
else {
struct sockaddr_un addr;
bzero(&addr, sizeof(addr));
addr.sun_family = AF_LOCAL;
strlcpy(addr.sun_path, QUIP_PATH, sizeof(addr.sun_path));
unlink(QUIP_PATH);
if (bind(altqd_socket, (struct sockaddr *)&addr,
sizeof(addr)) < 0) {
LOG(LOG_ERR, errno, "can't bind to %s", QUIP_PATH);
close(altqd_socket);
altqd_socket = -1;
}
chmod(QUIP_PATH, 0666);
if (listen(altqd_socket, SOMAXCONN) < 0) {
LOG(LOG_ERR, errno, "can't listen to %s", QUIP_PATH);
close(altqd_socket);
altqd_socket = -1;
}
}
if (daemonize) {
FILE *fp;
daemon(0, 0);
/* save pid to the pid file (/var/tmp/altqd.pid) */
if ((fp = fopen(ALTQD_PID_FILE, "w")) != NULL) {
fprintf(fp, "%d\n", getpid());
fclose(fp);
} else
warn("can't open pid file: %s: %s",
ALTQD_PID_FILE, strerror(errno));
} else {
/* interactive mode */
if (infile) {
if ((infp = fopen(infile, "r")) == NULL) {
perror("Cannot open input file");
exit(1);
}
} else {
infp = stdin;
printf("\nEnter ? or command:\n");
printf("altqd %s> ", cur_ifname());
}
fflush(stdout);
}
/*
* go into the command mode.
* the code below is taken from rtap of rsvpd.
*/
FD_ZERO(&fds);
maxfd = 0;
if (infp != NULL) {
FD_SET(fileno(infp), &fds);
maxfd = MAX(maxfd, fileno(infp) + 1);
}
if (altqd_socket >= 0) {
FD_SET(altqd_socket, &fds);
maxfd = MAX(maxfd, altqd_socket + 1);
}
while (1) {
int rc;
if (gotsig_hup) {
qcmd_destroyall();
gotsig_hup = 0;
printf("reinitializing altqd...\n");
qcmd_init();
}
if (gotsig_term) {
fprintf(stderr, "Exiting on signal %d\n", SIGTERM);
qcmd_destroyall();
/* if we have a pid file, remove it */
if (daemonize) {
unlink(ALTQD_PID_FILE);
closelog();
}
exit(0);
}
if (gotsig_int) {
fprintf(stderr, "Exiting on signal %d\n", SIGINT);
qcmd_destroyall();
/* if we have a pid file, remove it */
if (daemonize) {
unlink(ALTQD_PID_FILE);
closelog();
}
exit(0);
}
FD_COPY(&fds, &t_fds);
rc = select(maxfd, &t_fds, NULL, NULL, NULL);
if (rc < 0) {
if (errno != EINTR) {
perror("select");
exit(1);
}
continue;
}
/*
* If there is control input, read the input line,
* parse it, and execute.
*/
if (infp && FD_ISSET(fileno(infp), &t_fds)) {
rc = DoCommand(infile, infp);
if (rc == 0) {
/*
* EOF on input. If reading from file,
* go to stdin; else exit.
*/
if (infile) {
infp = stdin;
infile = NULL;
printf("\nEnter ? or command:\n");
FD_SET(fileno(infp), &fds);
} else {
LOG(LOG_INFO, 0, "Exiting.");
(void) qcmd_destroyall();
exit(0);
}
} else if (infp == stdin)
printf("altqd %s> ", cur_ifname());
fflush(stdout);
} else if (altqd_socket >= 0 && FD_ISSET(altqd_socket, &t_fds)) {
/*
* quip connection request from client via unix
* domain socket; get a new socket for this
* connection and add it to the select list.
*/
int newsock = accept(altqd_socket, NULL, NULL);
if (newsock == -1) {
LOG(LOG_ERR, errno, "accept");
continue;
}
FD_SET(newsock, &fds);
for (i = 0; i < MAX_CLIENT; i++)
if (client[i] == NULL) {
client[i] = fdopen(newsock, "r+");
break;
}
maxfd = MAX(maxfd, newsock + 1);
} else {
/*
* check input from a client via unix domain socket
*/
for (i = 0; i < MAX_CLIENT; i++) {
int fd;
if (client[i] == NULL)
continue;
fd = fileno(client[i]);
if (FD_ISSET(fd, &t_fds)) {
if (quip_input(client[i]) != 0 ||
fflush(client[i]) != 0) {
/* connection closed */
fclose(client[i]);
client[i] = NULL;
FD_CLR(fd, &fds);
}
}
}
}
}
}