inetd.c revision 330897
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1983, 1991, 1993, 1994
5 *	The Regents of the University of California.  All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 4. Neither the name of the University nor the names of its contributors
16 *    may be used to endorse or promote products derived from this software
17 *    without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#ifndef lint
33static const char copyright[] =
34"@(#) Copyright (c) 1983, 1991, 1993, 1994\n\
35	The Regents of the University of California.  All rights reserved.\n";
36#endif /* not lint */
37
38#ifndef lint
39#if 0
40static char sccsid[] = "@(#)from: inetd.c	8.4 (Berkeley) 4/13/94";
41#endif
42#endif /* not lint */
43
44#include <sys/cdefs.h>
45__FBSDID("$FreeBSD: stable/11/usr.sbin/inetd/inetd.c 330897 2018-03-14 03:19:51Z eadler $");
46
47/*
48 * Inetd - Internet super-server
49 *
50 * This program invokes all internet services as needed.  Connection-oriented
51 * services are invoked each time a connection is made, by creating a process.
52 * This process is passed the connection as file descriptor 0 and is expected
53 * to do a getpeername to find out the source host and port.
54 *
55 * Datagram oriented services are invoked when a datagram
56 * arrives; a process is created and passed a pending message
57 * on file descriptor 0.  Datagram servers may either connect
58 * to their peer, freeing up the original socket for inetd
59 * to receive further messages on, or ``take over the socket'',
60 * processing all arriving datagrams and, eventually, timing
61 * out.	 The first type of server is said to be ``multi-threaded'';
62 * the second type of server ``single-threaded''.
63 *
64 * Inetd uses a configuration file which is read at startup
65 * and, possibly, at some later time in response to a hangup signal.
66 * The configuration file is ``free format'' with fields given in the
67 * order shown below.  Continuation lines for an entry must begin with
68 * a space or tab.  All fields must be present in each entry.
69 *
70 *	service name			must be in /etc/services
71 *					or name a tcpmux service
72 *					or specify a unix domain socket
73 *	socket type			stream/dgram/raw/rdm/seqpacket
74 *	protocol			tcp[4][6], udp[4][6], unix
75 *	wait/nowait			single-threaded/multi-threaded
76 *	user[:group][/login-class]	user/group/login-class to run daemon as
77 *	server program			full path name
78 *	server program arguments	maximum of MAXARGS (20)
79 *
80 * TCP services without official port numbers are handled with the
81 * RFC1078-based tcpmux internal service. Tcpmux listens on port 1 for
82 * requests. When a connection is made from a foreign host, the service
83 * requested is passed to tcpmux, which looks it up in the servtab list
84 * and returns the proper entry for the service. Tcpmux returns a
85 * negative reply if the service doesn't exist, otherwise the invoked
86 * server is expected to return the positive reply if the service type in
87 * inetd.conf file has the prefix "tcpmux/". If the service type has the
88 * prefix "tcpmux/+", tcpmux will return the positive reply for the
89 * process; this is for compatibility with older server code, and also
90 * allows you to invoke programs that use stdin/stdout without putting any
91 * special server code in them. Services that use tcpmux are "nowait"
92 * because they do not have a well-known port and hence cannot listen
93 * for new requests.
94 *
95 * For RPC services
96 *	service name/version		must be in /etc/rpc
97 *	socket type			stream/dgram/raw/rdm/seqpacket
98 *	protocol			rpc/tcp[4][6], rpc/udp[4][6]
99 *	wait/nowait			single-threaded/multi-threaded
100 *	user[:group][/login-class]	user/group/login-class to run daemon as
101 *	server program			full path name
102 *	server program arguments	maximum of MAXARGS
103 *
104 * Comment lines are indicated by a `#' in column 1.
105 *
106 * #ifdef IPSEC
107 * Comment lines that start with "#@" denote IPsec policy string, as described
108 * in ipsec_set_policy(3).  This will affect all the following items in
109 * inetd.conf(8).  To reset the policy, just use "#@" line.  By default,
110 * there's no IPsec policy.
111 * #endif
112 */
113#include <sys/param.h>
114#include <sys/ioctl.h>
115#include <sys/mman.h>
116#include <sys/wait.h>
117#include <sys/time.h>
118#include <sys/resource.h>
119#include <sys/stat.h>
120#include <sys/un.h>
121
122#include <netinet/in.h>
123#include <netinet/tcp.h>
124#include <arpa/inet.h>
125#include <rpc/rpc.h>
126#include <rpc/pmap_clnt.h>
127
128#include <ctype.h>
129#include <errno.h>
130#include <err.h>
131#include <fcntl.h>
132#include <grp.h>
133#include <libutil.h>
134#include <limits.h>
135#include <netdb.h>
136#include <pwd.h>
137#include <signal.h>
138#include <stdio.h>
139#include <stdlib.h>
140#include <string.h>
141#include <sysexits.h>
142#include <syslog.h>
143#ifdef LIBWRAP
144#include <tcpd.h>
145#endif
146#include <unistd.h>
147
148#include "inetd.h"
149#include "pathnames.h"
150
151#ifdef IPSEC
152#include <netipsec/ipsec.h>
153#ifndef IPSEC_POLICY_IPSEC	/* no ipsec support on old ipsec */
154#undef IPSEC
155#endif
156#endif
157
158#ifndef LIBWRAP_ALLOW_FACILITY
159# define LIBWRAP_ALLOW_FACILITY LOG_AUTH
160#endif
161#ifndef LIBWRAP_ALLOW_SEVERITY
162# define LIBWRAP_ALLOW_SEVERITY LOG_INFO
163#endif
164#ifndef LIBWRAP_DENY_FACILITY
165# define LIBWRAP_DENY_FACILITY LOG_AUTH
166#endif
167#ifndef LIBWRAP_DENY_SEVERITY
168# define LIBWRAP_DENY_SEVERITY LOG_WARNING
169#endif
170
171#define ISWRAP(sep)	\
172	   ( ((wrap_ex && !(sep)->se_bi) || (wrap_bi && (sep)->se_bi)) \
173	&& (sep->se_family == AF_INET || sep->se_family == AF_INET6) \
174	&& ( ((sep)->se_accept && (sep)->se_socktype == SOCK_STREAM) \
175	    || (sep)->se_socktype == SOCK_DGRAM))
176
177#ifdef LOGIN_CAP
178#include <login_cap.h>
179
180/* see init.c */
181#define RESOURCE_RC "daemon"
182
183#endif
184
185#ifndef	MAXCHILD
186#define	MAXCHILD	-1		/* maximum number of this service
187					   < 0 = no limit */
188#endif
189
190#ifndef	MAXCPM
191#define	MAXCPM		-1		/* rate limit invocations from a
192					   single remote address,
193					   < 0 = no limit */
194#endif
195
196#ifndef	MAXPERIP
197#define	MAXPERIP	-1		/* maximum number of this service
198					   from a single remote address,
199					   < 0 = no limit */
200#endif
201
202#ifndef TOOMANY
203#define	TOOMANY		256		/* don't start more than TOOMANY */
204#endif
205#define	CNT_INTVL	60		/* servers in CNT_INTVL sec. */
206#define	RETRYTIME	(60*10)		/* retry after bind or server fail */
207#define MAX_MAXCHLD	32767		/* max allowable max children */
208
209#define	SIGBLOCK	(sigmask(SIGCHLD)|sigmask(SIGHUP)|sigmask(SIGALRM))
210
211void		close_sep(struct servtab *);
212void		flag_signal(int);
213void		flag_config(int);
214void		config(void);
215int		cpmip(const struct servtab *, int);
216void		endconfig(void);
217struct servtab *enter(struct servtab *);
218void		freeconfig(struct servtab *);
219struct servtab *getconfigent(void);
220int		matchservent(const char *, const char *, const char *);
221char	       *nextline(FILE *);
222void		addchild(struct servtab *, int);
223void		flag_reapchild(int);
224void		reapchild(void);
225void		enable(struct servtab *);
226void		disable(struct servtab *);
227void		flag_retry(int);
228void		retry(void);
229int		setconfig(void);
230void		setup(struct servtab *);
231#ifdef IPSEC
232void		ipsecsetup(struct servtab *);
233#endif
234void		unregisterrpc(register struct servtab *sep);
235static struct conninfo *search_conn(struct servtab *sep, int ctrl);
236static int	room_conn(struct servtab *sep, struct conninfo *conn);
237static void	addchild_conn(struct conninfo *conn, pid_t pid);
238static void	reapchild_conn(pid_t pid);
239static void	free_conn(struct conninfo *conn);
240static void	resize_conn(struct servtab *sep, int maxperip);
241static void	free_connlist(struct servtab *sep);
242static void	free_proc(struct procinfo *);
243static struct procinfo *search_proc(pid_t pid, int add);
244static int	hashval(char *p, int len);
245
246int	allow_severity;
247int	deny_severity;
248int	wrap_ex = 0;
249int	wrap_bi = 0;
250int	debug = 0;
251int	dolog = 0;
252int	maxsock;			/* highest-numbered descriptor */
253fd_set	allsock;
254int	options;
255int	timingout;
256int	toomany = TOOMANY;
257int	maxchild = MAXCHILD;
258int	maxcpm = MAXCPM;
259int	maxperip = MAXPERIP;
260struct	servent *sp;
261struct	rpcent *rpc;
262char	*hostname = NULL;
263struct	sockaddr_in *bind_sa4;
264int	v4bind_ok = 0;
265#ifdef INET6
266struct	sockaddr_in6 *bind_sa6;
267int	v6bind_ok = 0;
268#endif
269int	signalpipe[2];
270#ifdef SANITY_CHECK
271int	nsock;
272#endif
273uid_t	euid;
274gid_t	egid;
275mode_t	mask;
276
277struct	servtab *servtab;
278
279extern struct biltin biltins[];
280
281const char	*CONFIG = _PATH_INETDCONF;
282const char	*pid_file = _PATH_INETDPID;
283struct pidfh	*pfh = NULL;
284
285struct netconfig *udpconf, *tcpconf, *udp6conf, *tcp6conf;
286
287static LIST_HEAD(, procinfo) proctable[PERIPSIZE];
288
289int
290getvalue(const char *arg, int *value, const char *whine)
291{
292	int  tmp;
293	char *p;
294
295	tmp = strtol(arg, &p, 0);
296	if (tmp < 0 || *p) {
297		syslog(LOG_ERR, whine, arg);
298		return 1;			/* failure */
299	}
300	*value = tmp;
301	return 0;				/* success */
302}
303
304#ifdef LIBWRAP
305static sa_family_t
306whichaf(struct request_info *req)
307{
308	struct sockaddr *sa;
309
310	sa = (struct sockaddr *)req->client->sin;
311	if (sa == NULL)
312		return AF_UNSPEC;
313	if (sa->sa_family == AF_INET6 &&
314	    IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)sa)->sin6_addr))
315		return AF_INET;
316	return sa->sa_family;
317}
318#endif
319
320int
321main(int argc, char **argv)
322{
323	struct servtab *sep;
324	struct passwd *pwd;
325	struct group *grp;
326	struct sigaction sa, saalrm, sachld, sahup, sapipe;
327	int ch, dofork;
328	pid_t pid;
329	char buf[50];
330#ifdef LOGIN_CAP
331	login_cap_t *lc = NULL;
332#endif
333#ifdef LIBWRAP
334	struct request_info req;
335	int denied;
336	char *service = NULL;
337#endif
338	struct sockaddr_storage peer;
339	int i;
340	struct addrinfo hints, *res;
341	const char *servname;
342	int error;
343	struct conninfo *conn;
344
345	openlog("inetd", LOG_PID | LOG_NOWAIT | LOG_PERROR, LOG_DAEMON);
346
347	while ((ch = getopt(argc, argv, "dlwWR:a:c:C:p:s:")) != -1)
348		switch(ch) {
349		case 'd':
350			debug = 1;
351			options |= SO_DEBUG;
352			break;
353		case 'l':
354			dolog = 1;
355			break;
356		case 'R':
357			getvalue(optarg, &toomany,
358				"-R %s: bad value for service invocation rate");
359			break;
360		case 'c':
361			getvalue(optarg, &maxchild,
362				"-c %s: bad value for maximum children");
363			break;
364		case 'C':
365			getvalue(optarg, &maxcpm,
366				"-C %s: bad value for maximum children/minute");
367			break;
368		case 'a':
369			hostname = optarg;
370			break;
371		case 'p':
372			pid_file = optarg;
373			break;
374		case 's':
375			getvalue(optarg, &maxperip,
376				"-s %s: bad value for maximum children per source address");
377			break;
378		case 'w':
379			wrap_ex++;
380			break;
381		case 'W':
382			wrap_bi++;
383			break;
384		case '?':
385		default:
386			syslog(LOG_ERR,
387				"usage: inetd [-dlwW] [-a address] [-R rate]"
388				" [-c maximum] [-C rate]"
389				" [-p pidfile] [conf-file]");
390			exit(EX_USAGE);
391		}
392	/*
393	 * Initialize Bind Addrs.
394	 *   When hostname is NULL, wild card bind addrs are obtained from
395	 *   getaddrinfo(). But getaddrinfo() requires at least one of
396	 *   hostname or servname is non NULL.
397	 *   So when hostname is NULL, set dummy value to servname.
398	 *   Since getaddrinfo() doesn't accept numeric servname, and
399	 *   we doesn't use ai_socktype of struct addrinfo returned
400	 *   from getaddrinfo(), we set dummy value to ai_socktype.
401	 */
402	servname = (hostname == NULL) ? "0" /* dummy */ : NULL;
403
404	bzero(&hints, sizeof(struct addrinfo));
405	hints.ai_flags = AI_PASSIVE;
406	hints.ai_family = AF_UNSPEC;
407	hints.ai_socktype = SOCK_STREAM;	/* dummy */
408	error = getaddrinfo(hostname, servname, &hints, &res);
409	if (error != 0) {
410		syslog(LOG_ERR, "-a %s: %s", hostname, gai_strerror(error));
411		if (error == EAI_SYSTEM)
412			syslog(LOG_ERR, "%s", strerror(errno));
413		exit(EX_USAGE);
414	}
415	do {
416		if (res->ai_addr == NULL) {
417			syslog(LOG_ERR, "-a %s: getaddrinfo failed", hostname);
418			exit(EX_USAGE);
419		}
420		switch (res->ai_addr->sa_family) {
421		case AF_INET:
422			if (v4bind_ok)
423				continue;
424			bind_sa4 = (struct sockaddr_in *)res->ai_addr;
425			/* init port num in case servname is dummy */
426			bind_sa4->sin_port = 0;
427			v4bind_ok = 1;
428			continue;
429#ifdef INET6
430		case AF_INET6:
431			if (v6bind_ok)
432				continue;
433			bind_sa6 = (struct sockaddr_in6 *)res->ai_addr;
434			/* init port num in case servname is dummy */
435			bind_sa6->sin6_port = 0;
436			v6bind_ok = 1;
437			continue;
438#endif
439		}
440		if (v4bind_ok
441#ifdef INET6
442		    && v6bind_ok
443#endif
444		    )
445			break;
446	} while ((res = res->ai_next) != NULL);
447	if (!v4bind_ok
448#ifdef INET6
449	    && !v6bind_ok
450#endif
451	    ) {
452		syslog(LOG_ERR, "-a %s: unknown address family", hostname);
453		exit(EX_USAGE);
454	}
455
456	euid = geteuid();
457	egid = getegid();
458	umask(mask = umask(0777));
459
460	argc -= optind;
461	argv += optind;
462
463	if (argc > 0)
464		CONFIG = argv[0];
465	if (access(CONFIG, R_OK) < 0)
466		syslog(LOG_ERR, "Accessing %s: %m, continuing anyway.", CONFIG);
467	if (debug == 0) {
468		pid_t otherpid;
469
470		pfh = pidfile_open(pid_file, 0600, &otherpid);
471		if (pfh == NULL) {
472			if (errno == EEXIST) {
473				syslog(LOG_ERR, "%s already running, pid: %d",
474				    getprogname(), otherpid);
475				exit(EX_OSERR);
476			}
477			syslog(LOG_WARNING, "pidfile_open() failed: %m");
478		}
479
480		if (daemon(0, 0) < 0) {
481			syslog(LOG_WARNING, "daemon(0,0) failed: %m");
482		}
483		/* From now on we don't want syslog messages going to stderr. */
484		closelog();
485		openlog("inetd", LOG_PID | LOG_NOWAIT, LOG_DAEMON);
486		/*
487		 * In case somebody has started inetd manually, we need to
488		 * clear the logname, so that old servers run as root do not
489		 * get the user's logname..
490		 */
491		if (setlogin("") < 0) {
492			syslog(LOG_WARNING, "cannot clear logname: %m");
493			/* no big deal if it fails.. */
494		}
495		if (pfh != NULL && pidfile_write(pfh) == -1) {
496			syslog(LOG_WARNING, "pidfile_write(): %m");
497		}
498	}
499
500	if (madvise(NULL, 0, MADV_PROTECT) != 0)
501		syslog(LOG_WARNING, "madvise() failed: %s", strerror(errno));
502
503	for (i = 0; i < PERIPSIZE; ++i)
504		LIST_INIT(&proctable[i]);
505
506	if (v4bind_ok) {
507		udpconf = getnetconfigent("udp");
508		tcpconf = getnetconfigent("tcp");
509		if (udpconf == NULL || tcpconf == NULL) {
510			syslog(LOG_ERR, "unknown rpc/udp or rpc/tcp");
511			exit(EX_USAGE);
512		}
513	}
514#ifdef INET6
515	if (v6bind_ok) {
516		udp6conf = getnetconfigent("udp6");
517		tcp6conf = getnetconfigent("tcp6");
518		if (udp6conf == NULL || tcp6conf == NULL) {
519			syslog(LOG_ERR, "unknown rpc/udp6 or rpc/tcp6");
520			exit(EX_USAGE);
521		}
522	}
523#endif
524
525	sa.sa_flags = 0;
526	sigemptyset(&sa.sa_mask);
527	sigaddset(&sa.sa_mask, SIGALRM);
528	sigaddset(&sa.sa_mask, SIGCHLD);
529	sigaddset(&sa.sa_mask, SIGHUP);
530	sa.sa_handler = flag_retry;
531	sigaction(SIGALRM, &sa, &saalrm);
532	config();
533	sa.sa_handler = flag_config;
534	sigaction(SIGHUP, &sa, &sahup);
535	sa.sa_handler = flag_reapchild;
536	sigaction(SIGCHLD, &sa, &sachld);
537	sa.sa_handler = SIG_IGN;
538	sigaction(SIGPIPE, &sa, &sapipe);
539
540	{
541		/* space for daemons to overwrite environment for ps */
542#define	DUMMYSIZE	100
543		char dummy[DUMMYSIZE];
544
545		(void)memset(dummy, 'x', DUMMYSIZE - 1);
546		dummy[DUMMYSIZE - 1] = '\0';
547		(void)setenv("inetd_dummy", dummy, 1);
548	}
549
550	if (pipe2(signalpipe, O_CLOEXEC) != 0) {
551		syslog(LOG_ERR, "pipe: %m");
552		exit(EX_OSERR);
553	}
554	FD_SET(signalpipe[0], &allsock);
555#ifdef SANITY_CHECK
556	nsock++;
557#endif
558	if (signalpipe[0] > maxsock)
559	    maxsock = signalpipe[0];
560	if (signalpipe[1] > maxsock)
561	    maxsock = signalpipe[1];
562
563	for (;;) {
564	    int n, ctrl;
565	    fd_set readable;
566
567#ifdef SANITY_CHECK
568	    if (nsock == 0) {
569		syslog(LOG_ERR, "%s: nsock=0", __func__);
570		exit(EX_SOFTWARE);
571	    }
572#endif
573	    readable = allsock;
574	    if ((n = select(maxsock + 1, &readable, (fd_set *)0,
575		(fd_set *)0, (struct timeval *)0)) <= 0) {
576		    if (n < 0 && errno != EINTR) {
577			syslog(LOG_WARNING, "select: %m");
578			sleep(1);
579		    }
580		    continue;
581	    }
582	    /* handle any queued signal flags */
583	    if (FD_ISSET(signalpipe[0], &readable)) {
584		int nsig;
585		if (ioctl(signalpipe[0], FIONREAD, &nsig) != 0) {
586		    syslog(LOG_ERR, "ioctl: %m");
587		    exit(EX_OSERR);
588		}
589		while (--nsig >= 0) {
590		    char c;
591		    if (read(signalpipe[0], &c, 1) != 1) {
592			syslog(LOG_ERR, "read: %m");
593			exit(EX_OSERR);
594		    }
595		    if (debug)
596			warnx("handling signal flag %c", c);
597		    switch(c) {
598		    case 'A': /* sigalrm */
599			retry();
600			break;
601		    case 'C': /* sigchld */
602			reapchild();
603			break;
604		    case 'H': /* sighup */
605			config();
606			break;
607		    }
608		}
609	    }
610	    for (sep = servtab; n && sep; sep = sep->se_next)
611	        if (sep->se_fd != -1 && FD_ISSET(sep->se_fd, &readable)) {
612		    n--;
613		    if (debug)
614			    warnx("someone wants %s", sep->se_service);
615		    dofork = !sep->se_bi || sep->se_bi->bi_fork || ISWRAP(sep);
616		    conn = NULL;
617		    if (sep->se_accept && sep->se_socktype == SOCK_STREAM) {
618			    i = 1;
619			    if (ioctl(sep->se_fd, FIONBIO, &i) < 0)
620				    syslog(LOG_ERR, "ioctl (FIONBIO, 1): %m");
621			    ctrl = accept(sep->se_fd, (struct sockaddr *)0,
622				(socklen_t *)0);
623			    if (debug)
624				    warnx("accept, ctrl %d", ctrl);
625			    if (ctrl < 0) {
626				    if (errno != EINTR)
627					    syslog(LOG_WARNING,
628						"accept (for %s): %m",
629						sep->se_service);
630                                      if (sep->se_accept &&
631                                          sep->se_socktype == SOCK_STREAM)
632                                              close(ctrl);
633				    continue;
634			    }
635			    i = 0;
636			    if (ioctl(sep->se_fd, FIONBIO, &i) < 0)
637				    syslog(LOG_ERR, "ioctl1(FIONBIO, 0): %m");
638			    if (ioctl(ctrl, FIONBIO, &i) < 0)
639				    syslog(LOG_ERR, "ioctl2(FIONBIO, 0): %m");
640			    if (cpmip(sep, ctrl) < 0) {
641				close(ctrl);
642				continue;
643			    }
644			    if (dofork &&
645				(conn = search_conn(sep, ctrl)) != NULL &&
646				!room_conn(sep, conn)) {
647				close(ctrl);
648				continue;
649			    }
650		    } else
651			    ctrl = sep->se_fd;
652		    if (dolog && !ISWRAP(sep)) {
653			    char pname[NI_MAXHOST] = "unknown";
654			    socklen_t sl;
655			    sl = sizeof(peer);
656			    if (getpeername(ctrl, (struct sockaddr *)
657					    &peer, &sl)) {
658				    sl = sizeof(peer);
659				    if (recvfrom(ctrl, buf, sizeof(buf),
660					MSG_PEEK,
661					(struct sockaddr *)&peer,
662					&sl) >= 0) {
663				      getnameinfo((struct sockaddr *)&peer,
664						  peer.ss_len,
665						  pname, sizeof(pname),
666						  NULL, 0, NI_NUMERICHOST);
667				    }
668			    } else {
669			            getnameinfo((struct sockaddr *)&peer,
670						peer.ss_len,
671						pname, sizeof(pname),
672						NULL, 0, NI_NUMERICHOST);
673			    }
674			    syslog(LOG_INFO,"%s from %s", sep->se_service, pname);
675		    }
676		    (void) sigblock(SIGBLOCK);
677		    pid = 0;
678		    /*
679		     * Fork for all external services, builtins which need to
680		     * fork and anything we're wrapping (as wrapping might
681		     * block or use hosts_options(5) twist).
682		     */
683		    if (dofork) {
684			    if (sep->se_count++ == 0)
685				(void)clock_gettime(CLOCK_MONOTONIC_FAST, &sep->se_time);
686			    else if (toomany > 0 && sep->se_count >= toomany) {
687				struct timespec now;
688
689				(void)clock_gettime(CLOCK_MONOTONIC_FAST, &now);
690				if (now.tv_sec - sep->se_time.tv_sec >
691				    CNT_INTVL) {
692					sep->se_time = now;
693					sep->se_count = 1;
694				} else {
695					syslog(LOG_ERR,
696			"%s/%s server failing (looping), service terminated",
697					    sep->se_service, sep->se_proto);
698					if (sep->se_accept &&
699					    sep->se_socktype == SOCK_STREAM)
700						close(ctrl);
701					close_sep(sep);
702					free_conn(conn);
703					sigsetmask(0L);
704					if (!timingout) {
705						timingout = 1;
706						alarm(RETRYTIME);
707					}
708					continue;
709				}
710			    }
711			    pid = fork();
712		    }
713		    if (pid < 0) {
714			    syslog(LOG_ERR, "fork: %m");
715			    if (sep->se_accept &&
716				sep->se_socktype == SOCK_STREAM)
717				    close(ctrl);
718			    free_conn(conn);
719			    sigsetmask(0L);
720			    sleep(1);
721			    continue;
722		    }
723		    if (pid) {
724			addchild_conn(conn, pid);
725			addchild(sep, pid);
726		    }
727		    sigsetmask(0L);
728		    if (pid == 0) {
729			    pidfile_close(pfh);
730			    if (dofork) {
731				sigaction(SIGALRM, &saalrm, (struct sigaction *)0);
732				sigaction(SIGCHLD, &sachld, (struct sigaction *)0);
733				sigaction(SIGHUP, &sahup, (struct sigaction *)0);
734				/* SIGPIPE reset before exec */
735			    }
736			    /*
737			     * Call tcpmux to find the real service to exec.
738			     */
739			    if (sep->se_bi &&
740				sep->se_bi->bi_fn == (bi_fn_t *) tcpmux) {
741				    sep = tcpmux(ctrl);
742				    if (sep == NULL) {
743					    close(ctrl);
744					    _exit(0);
745				    }
746			    }
747#ifdef LIBWRAP
748			    if (ISWRAP(sep)) {
749				inetd_setproctitle("wrapping", ctrl);
750				service = sep->se_server_name ?
751				    sep->se_server_name : sep->se_service;
752				request_init(&req, RQ_DAEMON, service, RQ_FILE, ctrl, 0);
753				fromhost(&req);
754				deny_severity = LIBWRAP_DENY_FACILITY|LIBWRAP_DENY_SEVERITY;
755				allow_severity = LIBWRAP_ALLOW_FACILITY|LIBWRAP_ALLOW_SEVERITY;
756				denied = !hosts_access(&req);
757				if (denied) {
758				    syslog(deny_severity,
759				        "refused connection from %.500s, service %s (%s%s)",
760				        eval_client(&req), service, sep->se_proto,
761					(whichaf(&req) == AF_INET6) ? "6" : "");
762				    if (sep->se_socktype != SOCK_STREAM)
763					recv(ctrl, buf, sizeof (buf), 0);
764				    if (dofork) {
765					sleep(1);
766					_exit(0);
767				    }
768				}
769				if (dolog) {
770				    syslog(allow_severity,
771				        "connection from %.500s, service %s (%s%s)",
772					eval_client(&req), service, sep->se_proto,
773					(whichaf(&req) == AF_INET6) ? "6" : "");
774				}
775			    }
776#endif
777			    if (sep->se_bi) {
778				(*sep->se_bi->bi_fn)(ctrl, sep);
779			    } else {
780				if (debug)
781					warnx("%d execl %s",
782						getpid(), sep->se_server);
783				/* Clear close-on-exec. */
784				if (fcntl(ctrl, F_SETFD, 0) < 0) {
785					syslog(LOG_ERR,
786					    "%s/%s: fcntl (F_SETFD, 0): %m",
787						sep->se_service, sep->se_proto);
788					_exit(EX_OSERR);
789				}
790				if (ctrl != 0) {
791					dup2(ctrl, 0);
792					close(ctrl);
793				}
794				dup2(0, 1);
795				dup2(0, 2);
796				if ((pwd = getpwnam(sep->se_user)) == NULL) {
797					syslog(LOG_ERR,
798					    "%s/%s: %s: no such user",
799						sep->se_service, sep->se_proto,
800						sep->se_user);
801					if (sep->se_socktype != SOCK_STREAM)
802						recv(0, buf, sizeof (buf), 0);
803					_exit(EX_NOUSER);
804				}
805				grp = NULL;
806				if (   sep->se_group != NULL
807				    && (grp = getgrnam(sep->se_group)) == NULL
808				   ) {
809					syslog(LOG_ERR,
810					    "%s/%s: %s: no such group",
811						sep->se_service, sep->se_proto,
812						sep->se_group);
813					if (sep->se_socktype != SOCK_STREAM)
814						recv(0, buf, sizeof (buf), 0);
815					_exit(EX_NOUSER);
816				}
817				if (grp != NULL)
818					pwd->pw_gid = grp->gr_gid;
819#ifdef LOGIN_CAP
820				if ((lc = login_getclass(sep->se_class)) == NULL) {
821					/* error syslogged by getclass */
822					syslog(LOG_ERR,
823					    "%s/%s: %s: login class error",
824						sep->se_service, sep->se_proto,
825						sep->se_class);
826					if (sep->se_socktype != SOCK_STREAM)
827						recv(0, buf, sizeof (buf), 0);
828					_exit(EX_NOUSER);
829				}
830#endif
831				if (setsid() < 0) {
832					syslog(LOG_ERR,
833						"%s: can't setsid(): %m",
834						 sep->se_service);
835					/* _exit(EX_OSERR); not fatal yet */
836				}
837#ifdef LOGIN_CAP
838				if (setusercontext(lc, pwd, pwd->pw_uid,
839				    LOGIN_SETALL & ~LOGIN_SETMAC)
840				    != 0) {
841					syslog(LOG_ERR,
842					 "%s: can't setusercontext(..%s..): %m",
843					 sep->se_service, sep->se_user);
844					_exit(EX_OSERR);
845				}
846				login_close(lc);
847#else
848				if (pwd->pw_uid) {
849					if (setlogin(sep->se_user) < 0) {
850						syslog(LOG_ERR,
851						 "%s: can't setlogin(%s): %m",
852						 sep->se_service, sep->se_user);
853						/* _exit(EX_OSERR); not yet */
854					}
855					if (setgid(pwd->pw_gid) < 0) {
856						syslog(LOG_ERR,
857						  "%s: can't set gid %d: %m",
858						  sep->se_service, pwd->pw_gid);
859						_exit(EX_OSERR);
860					}
861					(void) initgroups(pwd->pw_name,
862							pwd->pw_gid);
863					if (setuid(pwd->pw_uid) < 0) {
864						syslog(LOG_ERR,
865						  "%s: can't set uid %d: %m",
866						  sep->se_service, pwd->pw_uid);
867						_exit(EX_OSERR);
868					}
869				}
870#endif
871				sigaction(SIGPIPE, &sapipe,
872				    (struct sigaction *)0);
873				execv(sep->se_server, sep->se_argv);
874				syslog(LOG_ERR,
875				    "cannot execute %s: %m", sep->se_server);
876				if (sep->se_socktype != SOCK_STREAM)
877					recv(0, buf, sizeof (buf), 0);
878			    }
879			    if (dofork)
880				_exit(0);
881		    }
882		    if (sep->se_accept && sep->se_socktype == SOCK_STREAM)
883			    close(ctrl);
884		}
885	}
886}
887
888/*
889 * Add a signal flag to the signal flag queue for later handling
890 */
891
892void
893flag_signal(int c)
894{
895	char ch = c;
896
897	if (write(signalpipe[1], &ch, 1) != 1) {
898		syslog(LOG_ERR, "write: %m");
899		_exit(EX_OSERR);
900	}
901}
902
903/*
904 * Record a new child pid for this service. If we've reached the
905 * limit on children, then stop accepting incoming requests.
906 */
907
908void
909addchild(struct servtab *sep, pid_t pid)
910{
911	if (sep->se_maxchild <= 0)
912		return;
913#ifdef SANITY_CHECK
914	if (sep->se_numchild >= sep->se_maxchild) {
915		syslog(LOG_ERR, "%s: %d >= %d",
916		    __func__, sep->se_numchild, sep->se_maxchild);
917		exit(EX_SOFTWARE);
918	}
919#endif
920	sep->se_pids[sep->se_numchild++] = pid;
921	if (sep->se_numchild == sep->se_maxchild)
922		disable(sep);
923}
924
925/*
926 * Some child process has exited. See if it's on somebody's list.
927 */
928
929void
930flag_reapchild(int signo __unused)
931{
932	flag_signal('C');
933}
934
935void
936reapchild(void)
937{
938	int k, status;
939	pid_t pid;
940	struct servtab *sep;
941
942	for (;;) {
943		pid = wait3(&status, WNOHANG, (struct rusage *)0);
944		if (pid <= 0)
945			break;
946		if (debug)
947			warnx("%d reaped, %s %u", pid,
948			    WIFEXITED(status) ? "status" : "signal",
949			    WIFEXITED(status) ? WEXITSTATUS(status)
950				: WTERMSIG(status));
951		for (sep = servtab; sep; sep = sep->se_next) {
952			for (k = 0; k < sep->se_numchild; k++)
953				if (sep->se_pids[k] == pid)
954					break;
955			if (k == sep->se_numchild)
956				continue;
957			if (sep->se_numchild == sep->se_maxchild)
958				enable(sep);
959			sep->se_pids[k] = sep->se_pids[--sep->se_numchild];
960			if (WIFSIGNALED(status) || WEXITSTATUS(status))
961				syslog(LOG_WARNING,
962				    "%s[%d]: exited, %s %u",
963				    sep->se_server, pid,
964				    WIFEXITED(status) ? "status" : "signal",
965				    WIFEXITED(status) ? WEXITSTATUS(status)
966					: WTERMSIG(status));
967			break;
968		}
969		reapchild_conn(pid);
970	}
971}
972
973void
974flag_config(int signo __unused)
975{
976	flag_signal('H');
977}
978
979void
980config(void)
981{
982	struct servtab *sep, *new, **sepp;
983	long omask;
984	int new_nomapped;
985#ifdef LOGIN_CAP
986	login_cap_t *lc = NULL;
987#endif
988
989	if (!setconfig()) {
990		syslog(LOG_ERR, "%s: %m", CONFIG);
991		return;
992	}
993	for (sep = servtab; sep; sep = sep->se_next)
994		sep->se_checked = 0;
995	while ((new = getconfigent())) {
996		if (getpwnam(new->se_user) == NULL) {
997			syslog(LOG_ERR,
998				"%s/%s: no such user '%s', service ignored",
999				new->se_service, new->se_proto, new->se_user);
1000			continue;
1001		}
1002		if (new->se_group && getgrnam(new->se_group) == NULL) {
1003			syslog(LOG_ERR,
1004				"%s/%s: no such group '%s', service ignored",
1005				new->se_service, new->se_proto, new->se_group);
1006			continue;
1007		}
1008#ifdef LOGIN_CAP
1009		if ((lc = login_getclass(new->se_class)) == NULL) {
1010			/* error syslogged by getclass */
1011			syslog(LOG_ERR,
1012				"%s/%s: %s: login class error, service ignored",
1013				new->se_service, new->se_proto, new->se_class);
1014			continue;
1015		}
1016		login_close(lc);
1017#endif
1018		new_nomapped = new->se_nomapped;
1019		for (sep = servtab; sep; sep = sep->se_next)
1020			if (strcmp(sep->se_service, new->se_service) == 0 &&
1021			    strcmp(sep->se_proto, new->se_proto) == 0 &&
1022			    sep->se_rpc == new->se_rpc &&
1023			    sep->se_socktype == new->se_socktype &&
1024			    sep->se_family == new->se_family)
1025				break;
1026		if (sep != 0) {
1027			int i;
1028
1029#define SWAP(t,a, b) { t c = a; a = b; b = c; }
1030			omask = sigblock(SIGBLOCK);
1031			if (sep->se_nomapped != new->se_nomapped) {
1032				/* for rpc keep old nommaped till unregister */
1033				if (!sep->se_rpc)
1034					sep->se_nomapped = new->se_nomapped;
1035				sep->se_reset = 1;
1036			}
1037			/* copy over outstanding child pids */
1038			if (sep->se_maxchild > 0 && new->se_maxchild > 0) {
1039				new->se_numchild = sep->se_numchild;
1040				if (new->se_numchild > new->se_maxchild)
1041					new->se_numchild = new->se_maxchild;
1042				memcpy(new->se_pids, sep->se_pids,
1043				    new->se_numchild * sizeof(*new->se_pids));
1044			}
1045			SWAP(pid_t *, sep->se_pids, new->se_pids);
1046			sep->se_maxchild = new->se_maxchild;
1047			sep->se_numchild = new->se_numchild;
1048			sep->se_maxcpm = new->se_maxcpm;
1049			resize_conn(sep, new->se_maxperip);
1050			sep->se_maxperip = new->se_maxperip;
1051			sep->se_bi = new->se_bi;
1052			/* might need to turn on or off service now */
1053			if (sep->se_fd >= 0) {
1054			      if (sep->se_maxchild > 0
1055				  && sep->se_numchild == sep->se_maxchild) {
1056				      if (FD_ISSET(sep->se_fd, &allsock))
1057					  disable(sep);
1058			      } else {
1059				      if (!FD_ISSET(sep->se_fd, &allsock))
1060					  enable(sep);
1061			      }
1062			}
1063			sep->se_accept = new->se_accept;
1064			SWAP(char *, sep->se_user, new->se_user);
1065			SWAP(char *, sep->se_group, new->se_group);
1066#ifdef LOGIN_CAP
1067			SWAP(char *, sep->se_class, new->se_class);
1068#endif
1069			SWAP(char *, sep->se_server, new->se_server);
1070			SWAP(char *, sep->se_server_name, new->se_server_name);
1071			for (i = 0; i < MAXARGV; i++)
1072				SWAP(char *, sep->se_argv[i], new->se_argv[i]);
1073#ifdef IPSEC
1074			SWAP(char *, sep->se_policy, new->se_policy);
1075			ipsecsetup(sep);
1076#endif
1077			sigsetmask(omask);
1078			freeconfig(new);
1079			if (debug)
1080				print_service("REDO", sep);
1081		} else {
1082			sep = enter(new);
1083			if (debug)
1084				print_service("ADD ", sep);
1085		}
1086		sep->se_checked = 1;
1087		if (ISMUX(sep)) {
1088			sep->se_fd = -1;
1089			continue;
1090		}
1091		switch (sep->se_family) {
1092		case AF_INET:
1093			if (!v4bind_ok) {
1094				sep->se_fd = -1;
1095				continue;
1096			}
1097			break;
1098#ifdef INET6
1099		case AF_INET6:
1100			if (!v6bind_ok) {
1101				sep->se_fd = -1;
1102				continue;
1103			}
1104			break;
1105#endif
1106		}
1107		if (!sep->se_rpc) {
1108			if (sep->se_family != AF_UNIX) {
1109				sp = getservbyname(sep->se_service, sep->se_proto);
1110				if (sp == 0) {
1111					syslog(LOG_ERR, "%s/%s: unknown service",
1112					sep->se_service, sep->se_proto);
1113					sep->se_checked = 0;
1114					continue;
1115				}
1116			}
1117			switch (sep->se_family) {
1118			case AF_INET:
1119				if (sp->s_port != sep->se_ctrladdr4.sin_port) {
1120					sep->se_ctrladdr4.sin_port =
1121						sp->s_port;
1122					sep->se_reset = 1;
1123				}
1124				break;
1125#ifdef INET6
1126			case AF_INET6:
1127				if (sp->s_port !=
1128				    sep->se_ctrladdr6.sin6_port) {
1129					sep->se_ctrladdr6.sin6_port =
1130						sp->s_port;
1131					sep->se_reset = 1;
1132				}
1133				break;
1134#endif
1135			}
1136			if (sep->se_reset != 0 && sep->se_fd >= 0)
1137				close_sep(sep);
1138		} else {
1139			rpc = getrpcbyname(sep->se_service);
1140			if (rpc == 0) {
1141				syslog(LOG_ERR, "%s/%s unknown RPC service",
1142					sep->se_service, sep->se_proto);
1143				if (sep->se_fd != -1)
1144					(void) close(sep->se_fd);
1145				sep->se_fd = -1;
1146					continue;
1147			}
1148			if (sep->se_reset != 0 ||
1149			    rpc->r_number != sep->se_rpc_prog) {
1150				if (sep->se_rpc_prog)
1151					unregisterrpc(sep);
1152				sep->se_rpc_prog = rpc->r_number;
1153				if (sep->se_fd != -1)
1154					(void) close(sep->se_fd);
1155				sep->se_fd = -1;
1156			}
1157			sep->se_nomapped = new_nomapped;
1158		}
1159		sep->se_reset = 0;
1160		if (sep->se_fd == -1)
1161			setup(sep);
1162	}
1163	endconfig();
1164	/*
1165	 * Purge anything not looked at above.
1166	 */
1167	omask = sigblock(SIGBLOCK);
1168	sepp = &servtab;
1169	while ((sep = *sepp)) {
1170		if (sep->se_checked) {
1171			sepp = &sep->se_next;
1172			continue;
1173		}
1174		*sepp = sep->se_next;
1175		if (sep->se_fd >= 0)
1176			close_sep(sep);
1177		if (debug)
1178			print_service("FREE", sep);
1179		if (sep->se_rpc && sep->se_rpc_prog > 0)
1180			unregisterrpc(sep);
1181		freeconfig(sep);
1182		free(sep);
1183	}
1184	(void) sigsetmask(omask);
1185}
1186
1187void
1188unregisterrpc(struct servtab *sep)
1189{
1190        u_int i;
1191        struct servtab *sepp;
1192	long omask;
1193	struct netconfig *netid4, *netid6;
1194
1195	omask = sigblock(SIGBLOCK);
1196	netid4 = sep->se_socktype == SOCK_DGRAM ? udpconf : tcpconf;
1197	netid6 = sep->se_socktype == SOCK_DGRAM ? udp6conf : tcp6conf;
1198	if (sep->se_family == AF_INET)
1199		netid6 = NULL;
1200	else if (sep->se_nomapped)
1201		netid4 = NULL;
1202	/*
1203	 * Conflict if same prog and protocol - In that case one should look
1204	 * to versions, but it is not interesting: having separate servers for
1205	 * different versions does not work well.
1206	 * Therefore one do not unregister if there is a conflict.
1207	 * There is also transport conflict if destroying INET when INET46
1208	 * exists, or destroying INET46 when INET exists
1209	 */
1210        for (sepp = servtab; sepp; sepp = sepp->se_next) {
1211                if (sepp == sep)
1212                        continue;
1213		if (sepp->se_checked == 0 ||
1214                    !sepp->se_rpc ||
1215		    strcmp(sep->se_proto, sepp->se_proto) != 0 ||
1216                    sep->se_rpc_prog != sepp->se_rpc_prog)
1217			continue;
1218		if (sepp->se_family == AF_INET)
1219			netid4 = NULL;
1220		if (sepp->se_family == AF_INET6) {
1221			netid6 = NULL;
1222			if (!sep->se_nomapped)
1223				netid4 = NULL;
1224		}
1225		if (netid4 == NULL && netid6 == NULL)
1226			return;
1227        }
1228        if (debug)
1229                print_service("UNREG", sep);
1230        for (i = sep->se_rpc_lowvers; i <= sep->se_rpc_highvers; i++) {
1231		if (netid4)
1232			rpcb_unset(sep->se_rpc_prog, i, netid4);
1233		if (netid6)
1234			rpcb_unset(sep->se_rpc_prog, i, netid6);
1235	}
1236        if (sep->se_fd != -1)
1237                (void) close(sep->se_fd);
1238        sep->se_fd = -1;
1239	(void) sigsetmask(omask);
1240}
1241
1242void
1243flag_retry(int signo __unused)
1244{
1245	flag_signal('A');
1246}
1247
1248void
1249retry(void)
1250{
1251	struct servtab *sep;
1252
1253	timingout = 0;
1254	for (sep = servtab; sep; sep = sep->se_next)
1255		if (sep->se_fd == -1 && !ISMUX(sep))
1256			setup(sep);
1257}
1258
1259void
1260setup(struct servtab *sep)
1261{
1262	int on = 1;
1263
1264	/* Set all listening sockets to close-on-exec. */
1265	if ((sep->se_fd = socket(sep->se_family,
1266	    sep->se_socktype | SOCK_CLOEXEC, 0)) < 0) {
1267		if (debug)
1268			warn("socket failed on %s/%s",
1269				sep->se_service, sep->se_proto);
1270		syslog(LOG_ERR, "%s/%s: socket: %m",
1271		    sep->se_service, sep->se_proto);
1272		return;
1273	}
1274#define	turnon(fd, opt) \
1275setsockopt(fd, SOL_SOCKET, opt, (char *)&on, sizeof (on))
1276	if (strcmp(sep->se_proto, "tcp") == 0 && (options & SO_DEBUG) &&
1277	    turnon(sep->se_fd, SO_DEBUG) < 0)
1278		syslog(LOG_ERR, "setsockopt (SO_DEBUG): %m");
1279	if (turnon(sep->se_fd, SO_REUSEADDR) < 0)
1280		syslog(LOG_ERR, "setsockopt (SO_REUSEADDR): %m");
1281#ifdef SO_PRIVSTATE
1282	if (turnon(sep->se_fd, SO_PRIVSTATE) < 0)
1283		syslog(LOG_ERR, "setsockopt (SO_PRIVSTATE): %m");
1284#endif
1285	/* tftpd opens a new connection then needs more infos */
1286	if ((sep->se_family == AF_INET6) &&
1287	    (strcmp(sep->se_proto, "udp") == 0) &&
1288	    (sep->se_accept == 0) &&
1289	    (setsockopt(sep->se_fd, IPPROTO_IPV6, IPV6_RECVPKTINFO,
1290			(char *)&on, sizeof (on)) < 0))
1291		syslog(LOG_ERR, "setsockopt (IPV6_RECVPKTINFO): %m");
1292	if (sep->se_family == AF_INET6) {
1293		int flag = sep->se_nomapped ? 1 : 0;
1294		if (setsockopt(sep->se_fd, IPPROTO_IPV6, IPV6_V6ONLY,
1295			       (char *)&flag, sizeof (flag)) < 0)
1296			syslog(LOG_ERR, "setsockopt (IPV6_V6ONLY): %m");
1297	}
1298#undef turnon
1299#ifdef IPSEC
1300	ipsecsetup(sep);
1301#endif
1302	if (sep->se_family == AF_UNIX) {
1303		(void) unlink(sep->se_ctrladdr_un.sun_path);
1304		umask(0777); /* Make socket with conservative permissions */
1305	}
1306	if (bind(sep->se_fd, (struct sockaddr *)&sep->se_ctrladdr,
1307	    sep->se_ctrladdr_size) < 0) {
1308		if (debug)
1309			warn("bind failed on %s/%s",
1310				sep->se_service, sep->se_proto);
1311		syslog(LOG_ERR, "%s/%s: bind: %m",
1312		    sep->se_service, sep->se_proto);
1313		(void) close(sep->se_fd);
1314		sep->se_fd = -1;
1315		if (!timingout) {
1316			timingout = 1;
1317			alarm(RETRYTIME);
1318		}
1319		if (sep->se_family == AF_UNIX)
1320			umask(mask);
1321		return;
1322	}
1323	if (sep->se_family == AF_UNIX) {
1324		/* Ick - fch{own,mod} don't work on Unix domain sockets */
1325		if (chown(sep->se_service, sep->se_sockuid, sep->se_sockgid) < 0)
1326			syslog(LOG_ERR, "chown socket: %m");
1327		if (chmod(sep->se_service, sep->se_sockmode) < 0)
1328			syslog(LOG_ERR, "chmod socket: %m");
1329		umask(mask);
1330	}
1331        if (sep->se_rpc) {
1332		u_int i;
1333		socklen_t len = sep->se_ctrladdr_size;
1334		struct netconfig *netid, *netid2 = NULL;
1335		struct sockaddr_in sock;
1336		struct netbuf nbuf, nbuf2;
1337
1338                if (getsockname(sep->se_fd,
1339				(struct sockaddr*)&sep->se_ctrladdr, &len) < 0){
1340                        syslog(LOG_ERR, "%s/%s: getsockname: %m",
1341                               sep->se_service, sep->se_proto);
1342                        (void) close(sep->se_fd);
1343                        sep->se_fd = -1;
1344                        return;
1345                }
1346		nbuf.buf = &sep->se_ctrladdr;
1347		nbuf.len = sep->se_ctrladdr.sa_len;
1348		if (sep->se_family == AF_INET)
1349			netid = sep->se_socktype==SOCK_DGRAM? udpconf:tcpconf;
1350		else  {
1351			netid = sep->se_socktype==SOCK_DGRAM? udp6conf:tcp6conf;
1352			if (!sep->se_nomapped) { /* INET and INET6 */
1353				netid2 = netid==udp6conf? udpconf:tcpconf;
1354				memset(&sock, 0, sizeof sock);	/* ADDR_ANY */
1355				nbuf2.buf = &sock;
1356				nbuf2.len = sock.sin_len = sizeof sock;
1357				sock.sin_family = AF_INET;
1358				sock.sin_port = sep->se_ctrladdr6.sin6_port;
1359			}
1360		}
1361                if (debug)
1362                        print_service("REG ", sep);
1363                for (i = sep->se_rpc_lowvers; i <= sep->se_rpc_highvers; i++) {
1364			rpcb_unset(sep->se_rpc_prog, i, netid);
1365			rpcb_set(sep->se_rpc_prog, i, netid, &nbuf);
1366			if (netid2) {
1367				rpcb_unset(sep->se_rpc_prog, i, netid2);
1368				rpcb_set(sep->se_rpc_prog, i, netid2, &nbuf2);
1369			}
1370                }
1371        }
1372	if (sep->se_socktype == SOCK_STREAM)
1373		listen(sep->se_fd, -1);
1374	enable(sep);
1375	if (debug) {
1376		warnx("registered %s on %d",
1377			sep->se_server, sep->se_fd);
1378	}
1379}
1380
1381#ifdef IPSEC
1382void
1383ipsecsetup(struct servtab *sep)
1384{
1385	char *buf;
1386	char *policy_in = NULL;
1387	char *policy_out = NULL;
1388	int level;
1389	int opt;
1390
1391	switch (sep->se_family) {
1392	case AF_INET:
1393		level = IPPROTO_IP;
1394		opt = IP_IPSEC_POLICY;
1395		break;
1396#ifdef INET6
1397	case AF_INET6:
1398		level = IPPROTO_IPV6;
1399		opt = IPV6_IPSEC_POLICY;
1400		break;
1401#endif
1402	default:
1403		return;
1404	}
1405
1406	if (!sep->se_policy || sep->se_policy[0] == '\0') {
1407		static char def_in[] = "in entrust", def_out[] = "out entrust";
1408		policy_in = def_in;
1409		policy_out = def_out;
1410	} else {
1411		if (!strncmp("in", sep->se_policy, 2))
1412			policy_in = sep->se_policy;
1413		else if (!strncmp("out", sep->se_policy, 3))
1414			policy_out = sep->se_policy;
1415		else {
1416			syslog(LOG_ERR, "invalid security policy \"%s\"",
1417				sep->se_policy);
1418			return;
1419		}
1420	}
1421
1422	if (policy_in != NULL) {
1423		buf = ipsec_set_policy(policy_in, strlen(policy_in));
1424		if (buf != NULL) {
1425			if (setsockopt(sep->se_fd, level, opt,
1426					buf, ipsec_get_policylen(buf)) < 0 &&
1427			    debug != 0)
1428				warnx("%s/%s: ipsec initialization failed; %s",
1429				      sep->se_service, sep->se_proto,
1430				      policy_in);
1431			free(buf);
1432		} else
1433			syslog(LOG_ERR, "invalid security policy \"%s\"",
1434				policy_in);
1435	}
1436	if (policy_out != NULL) {
1437		buf = ipsec_set_policy(policy_out, strlen(policy_out));
1438		if (buf != NULL) {
1439			if (setsockopt(sep->se_fd, level, opt,
1440					buf, ipsec_get_policylen(buf)) < 0 &&
1441			    debug != 0)
1442				warnx("%s/%s: ipsec initialization failed; %s",
1443				      sep->se_service, sep->se_proto,
1444				      policy_out);
1445			free(buf);
1446		} else
1447			syslog(LOG_ERR, "invalid security policy \"%s\"",
1448				policy_out);
1449	}
1450}
1451#endif
1452
1453/*
1454 * Finish with a service and its socket.
1455 */
1456void
1457close_sep(struct servtab *sep)
1458{
1459	if (sep->se_fd >= 0) {
1460		if (FD_ISSET(sep->se_fd, &allsock))
1461			disable(sep);
1462		(void) close(sep->se_fd);
1463		sep->se_fd = -1;
1464	}
1465	sep->se_count = 0;
1466	sep->se_numchild = 0;	/* forget about any existing children */
1467}
1468
1469int
1470matchservent(const char *name1, const char *name2, const char *proto)
1471{
1472	char **alias, *p;
1473	struct servent *se;
1474
1475	if (strcmp(proto, "unix") == 0) {
1476		if ((p = strrchr(name1, '/')) != NULL)
1477			name1 = p + 1;
1478		if ((p = strrchr(name2, '/')) != NULL)
1479			name2 = p + 1;
1480	}
1481	if (strcmp(name1, name2) == 0)
1482		return(1);
1483	if ((se = getservbyname(name1, proto)) != NULL) {
1484		if (strcmp(name2, se->s_name) == 0)
1485			return(1);
1486		for (alias = se->s_aliases; *alias; alias++)
1487			if (strcmp(name2, *alias) == 0)
1488				return(1);
1489	}
1490	return(0);
1491}
1492
1493struct servtab *
1494enter(struct servtab *cp)
1495{
1496	struct servtab *sep;
1497	long omask;
1498
1499	sep = (struct servtab *)malloc(sizeof (*sep));
1500	if (sep == (struct servtab *)0) {
1501		syslog(LOG_ERR, "malloc: %m");
1502		exit(EX_OSERR);
1503	}
1504	*sep = *cp;
1505	sep->se_fd = -1;
1506	omask = sigblock(SIGBLOCK);
1507	sep->se_next = servtab;
1508	servtab = sep;
1509	sigsetmask(omask);
1510	return (sep);
1511}
1512
1513void
1514enable(struct servtab *sep)
1515{
1516	if (debug)
1517		warnx(
1518		    "enabling %s, fd %d", sep->se_service, sep->se_fd);
1519#ifdef SANITY_CHECK
1520	if (sep->se_fd < 0) {
1521		syslog(LOG_ERR,
1522		    "%s: %s: bad fd", __func__, sep->se_service);
1523		exit(EX_SOFTWARE);
1524	}
1525	if (ISMUX(sep)) {
1526		syslog(LOG_ERR,
1527		    "%s: %s: is mux", __func__, sep->se_service);
1528		exit(EX_SOFTWARE);
1529	}
1530	if (FD_ISSET(sep->se_fd, &allsock)) {
1531		syslog(LOG_ERR,
1532		    "%s: %s: not off", __func__, sep->se_service);
1533		exit(EX_SOFTWARE);
1534	}
1535	nsock++;
1536#endif
1537	FD_SET(sep->se_fd, &allsock);
1538	if (sep->se_fd > maxsock)
1539		maxsock = sep->se_fd;
1540}
1541
1542void
1543disable(struct servtab *sep)
1544{
1545	if (debug)
1546		warnx(
1547		    "disabling %s, fd %d", sep->se_service, sep->se_fd);
1548#ifdef SANITY_CHECK
1549	if (sep->se_fd < 0) {
1550		syslog(LOG_ERR,
1551		    "%s: %s: bad fd", __func__, sep->se_service);
1552		exit(EX_SOFTWARE);
1553	}
1554	if (ISMUX(sep)) {
1555		syslog(LOG_ERR,
1556		    "%s: %s: is mux", __func__, sep->se_service);
1557		exit(EX_SOFTWARE);
1558	}
1559	if (!FD_ISSET(sep->se_fd, &allsock)) {
1560		syslog(LOG_ERR,
1561		    "%s: %s: not on", __func__, sep->se_service);
1562		exit(EX_SOFTWARE);
1563	}
1564	if (nsock == 0) {
1565		syslog(LOG_ERR, "%s: nsock=0", __func__);
1566		exit(EX_SOFTWARE);
1567	}
1568	nsock--;
1569#endif
1570	FD_CLR(sep->se_fd, &allsock);
1571	if (sep->se_fd == maxsock)
1572		maxsock--;
1573}
1574
1575FILE	*fconfig = NULL;
1576struct	servtab serv;
1577char	line[LINE_MAX];
1578
1579int
1580setconfig(void)
1581{
1582
1583	if (fconfig != NULL) {
1584		fseek(fconfig, 0L, SEEK_SET);
1585		return (1);
1586	}
1587	fconfig = fopen(CONFIG, "r");
1588	return (fconfig != NULL);
1589}
1590
1591void
1592endconfig(void)
1593{
1594	if (fconfig) {
1595		(void) fclose(fconfig);
1596		fconfig = NULL;
1597	}
1598}
1599
1600struct servtab *
1601getconfigent(void)
1602{
1603	struct servtab *sep = &serv;
1604	int argc;
1605	char *cp, *arg, *s;
1606	char *versp;
1607	static char TCPMUX_TOKEN[] = "tcpmux/";
1608#define MUX_LEN		(sizeof(TCPMUX_TOKEN)-1)
1609#ifdef IPSEC
1610	char *policy;
1611#endif
1612	int v4bind;
1613#ifdef INET6
1614	int v6bind;
1615#endif
1616	int i;
1617
1618#ifdef IPSEC
1619	policy = NULL;
1620#endif
1621more:
1622	v4bind = 0;
1623#ifdef INET6
1624	v6bind = 0;
1625#endif
1626	while ((cp = nextline(fconfig)) != NULL) {
1627#ifdef IPSEC
1628		/* lines starting with #@ is not a comment, but the policy */
1629		if (cp[0] == '#' && cp[1] == '@') {
1630			char *p;
1631			for (p = cp + 2; p && *p && isspace(*p); p++)
1632				;
1633			if (*p == '\0') {
1634				if (policy)
1635					free(policy);
1636				policy = NULL;
1637			} else if (ipsec_get_policylen(p) >= 0) {
1638				if (policy)
1639					free(policy);
1640				policy = newstr(p);
1641			} else {
1642				syslog(LOG_ERR,
1643					"%s: invalid ipsec policy \"%s\"",
1644					CONFIG, p);
1645				exit(EX_CONFIG);
1646			}
1647		}
1648#endif
1649		if (*cp == '#' || *cp == '\0')
1650			continue;
1651		break;
1652	}
1653	if (cp == NULL)
1654		return ((struct servtab *)0);
1655	/*
1656	 * clear the static buffer, since some fields (se_ctrladdr,
1657	 * for example) don't get initialized here.
1658	 */
1659	memset(sep, 0, sizeof *sep);
1660	arg = skip(&cp);
1661	if (cp == NULL) {
1662		/* got an empty line containing just blanks/tabs. */
1663		goto more;
1664	}
1665	if (arg[0] == ':') { /* :user:group:perm: */
1666		char *user, *group, *perm;
1667		struct passwd *pw;
1668		struct group *gr;
1669		user = arg+1;
1670		if ((group = strchr(user, ':')) == NULL) {
1671			syslog(LOG_ERR, "no group after user '%s'", user);
1672			goto more;
1673		}
1674		*group++ = '\0';
1675		if ((perm = strchr(group, ':')) == NULL) {
1676			syslog(LOG_ERR, "no mode after group '%s'", group);
1677			goto more;
1678		}
1679		*perm++ = '\0';
1680		if ((pw = getpwnam(user)) == NULL) {
1681			syslog(LOG_ERR, "no such user '%s'", user);
1682			goto more;
1683		}
1684		sep->se_sockuid = pw->pw_uid;
1685		if ((gr = getgrnam(group)) == NULL) {
1686			syslog(LOG_ERR, "no such user '%s'", group);
1687			goto more;
1688		}
1689		sep->se_sockgid = gr->gr_gid;
1690		sep->se_sockmode = strtol(perm, &arg, 8);
1691		if (*arg != ':') {
1692			syslog(LOG_ERR, "bad mode '%s'", perm);
1693			goto more;
1694		}
1695		*arg++ = '\0';
1696	} else {
1697		sep->se_sockuid = euid;
1698		sep->se_sockgid = egid;
1699		sep->se_sockmode = 0200;
1700	}
1701	if (strncmp(arg, TCPMUX_TOKEN, MUX_LEN) == 0) {
1702		char *c = arg + MUX_LEN;
1703		if (*c == '+') {
1704			sep->se_type = MUXPLUS_TYPE;
1705			c++;
1706		} else
1707			sep->se_type = MUX_TYPE;
1708		sep->se_service = newstr(c);
1709	} else {
1710		sep->se_service = newstr(arg);
1711		sep->se_type = NORM_TYPE;
1712	}
1713	arg = sskip(&cp);
1714	if (strcmp(arg, "stream") == 0)
1715		sep->se_socktype = SOCK_STREAM;
1716	else if (strcmp(arg, "dgram") == 0)
1717		sep->se_socktype = SOCK_DGRAM;
1718	else if (strcmp(arg, "rdm") == 0)
1719		sep->se_socktype = SOCK_RDM;
1720	else if (strcmp(arg, "seqpacket") == 0)
1721		sep->se_socktype = SOCK_SEQPACKET;
1722	else if (strcmp(arg, "raw") == 0)
1723		sep->se_socktype = SOCK_RAW;
1724	else
1725		sep->se_socktype = -1;
1726
1727	arg = sskip(&cp);
1728	if (strncmp(arg, "tcp", 3) == 0) {
1729		sep->se_proto = newstr(strsep(&arg, "/"));
1730		if (arg != NULL && (strcmp(arg, "faith") == 0)) {
1731			syslog(LOG_ERR, "faith has been deprecated");
1732			goto more;
1733		}
1734	} else {
1735		if (sep->se_type == NORM_TYPE &&
1736		    strncmp(arg, "faith/", 6) == 0) {
1737			syslog(LOG_ERR, "faith has been deprecated");
1738			goto more;
1739		}
1740		sep->se_proto = newstr(arg);
1741	}
1742        if (strncmp(sep->se_proto, "rpc/", 4) == 0) {
1743                memmove(sep->se_proto, sep->se_proto + 4,
1744                    strlen(sep->se_proto) + 1 - 4);
1745                sep->se_rpc = 1;
1746                sep->se_rpc_prog = sep->se_rpc_lowvers =
1747			sep->se_rpc_highvers = 0;
1748                if ((versp = strrchr(sep->se_service, '/'))) {
1749                        *versp++ = '\0';
1750                        switch (sscanf(versp, "%u-%u",
1751                                       &sep->se_rpc_lowvers,
1752                                       &sep->se_rpc_highvers)) {
1753                        case 2:
1754                                break;
1755                        case 1:
1756                                sep->se_rpc_highvers =
1757                                        sep->se_rpc_lowvers;
1758                                break;
1759                        default:
1760                                syslog(LOG_ERR,
1761					"bad RPC version specifier; %s",
1762					sep->se_service);
1763                                freeconfig(sep);
1764                                goto more;
1765                        }
1766                }
1767                else {
1768                        sep->se_rpc_lowvers =
1769                                sep->se_rpc_highvers = 1;
1770                }
1771        }
1772	sep->se_nomapped = 0;
1773	if (strcmp(sep->se_proto, "unix") == 0) {
1774	        sep->se_family = AF_UNIX;
1775	} else {
1776		while (isdigit(sep->se_proto[strlen(sep->se_proto) - 1])) {
1777#ifdef INET6
1778			if (sep->se_proto[strlen(sep->se_proto) - 1] == '6') {
1779				sep->se_proto[strlen(sep->se_proto) - 1] = '\0';
1780				v6bind = 1;
1781				continue;
1782			}
1783#endif
1784			if (sep->se_proto[strlen(sep->se_proto) - 1] == '4') {
1785				sep->se_proto[strlen(sep->se_proto) - 1] = '\0';
1786				v4bind = 1;
1787				continue;
1788			}
1789			/* illegal version num */
1790			syslog(LOG_ERR,	"bad IP version for %s", sep->se_proto);
1791			freeconfig(sep);
1792			goto more;
1793		}
1794#ifdef INET6
1795		if (v6bind && !v6bind_ok) {
1796			syslog(LOG_INFO, "IPv6 bind is ignored for %s",
1797			       sep->se_service);
1798			if (v4bind && v4bind_ok)
1799				v6bind = 0;
1800			else {
1801				freeconfig(sep);
1802				goto more;
1803			}
1804		}
1805		if (v6bind) {
1806			sep->se_family = AF_INET6;
1807			if (!v4bind || !v4bind_ok)
1808				sep->se_nomapped = 1;
1809		} else
1810#endif
1811		{ /* default to v4 bind if not v6 bind */
1812			if (!v4bind_ok) {
1813				syslog(LOG_NOTICE, "IPv4 bind is ignored for %s",
1814				       sep->se_service);
1815				freeconfig(sep);
1816				goto more;
1817			}
1818			sep->se_family = AF_INET;
1819		}
1820	}
1821	/* init ctladdr */
1822	switch(sep->se_family) {
1823	case AF_INET:
1824		memcpy(&sep->se_ctrladdr4, bind_sa4,
1825		       sizeof(sep->se_ctrladdr4));
1826		sep->se_ctrladdr_size =	sizeof(sep->se_ctrladdr4);
1827		break;
1828#ifdef INET6
1829	case AF_INET6:
1830		memcpy(&sep->se_ctrladdr6, bind_sa6,
1831		       sizeof(sep->se_ctrladdr6));
1832		sep->se_ctrladdr_size =	sizeof(sep->se_ctrladdr6);
1833		break;
1834#endif
1835	case AF_UNIX:
1836		if (strlen(sep->se_service) >= sizeof(sep->se_ctrladdr_un.sun_path)) {
1837			syslog(LOG_ERR,
1838			    "domain socket pathname too long for service %s",
1839			    sep->se_service);
1840			goto more;
1841		}
1842		memset(&sep->se_ctrladdr, 0, sizeof(sep->se_ctrladdr));
1843		sep->se_ctrladdr_un.sun_family = sep->se_family;
1844		sep->se_ctrladdr_un.sun_len = strlen(sep->se_service);
1845		strcpy(sep->se_ctrladdr_un.sun_path, sep->se_service);
1846		sep->se_ctrladdr_size = SUN_LEN(&sep->se_ctrladdr_un);
1847	}
1848	arg = sskip(&cp);
1849	if (!strncmp(arg, "wait", 4))
1850		sep->se_accept = 0;
1851	else if (!strncmp(arg, "nowait", 6))
1852		sep->se_accept = 1;
1853	else {
1854		syslog(LOG_ERR,
1855			"%s: bad wait/nowait for service %s",
1856			CONFIG, sep->se_service);
1857		goto more;
1858	}
1859	sep->se_maxchild = -1;
1860	sep->se_maxcpm = -1;
1861	sep->se_maxperip = -1;
1862	if ((s = strchr(arg, '/')) != NULL) {
1863		char *eptr;
1864		u_long val;
1865
1866		val = strtoul(s + 1, &eptr, 10);
1867		if (eptr == s + 1 || val > MAX_MAXCHLD) {
1868			syslog(LOG_ERR,
1869				"%s: bad max-child for service %s",
1870				CONFIG, sep->se_service);
1871			goto more;
1872		}
1873		if (debug)
1874			if (!sep->se_accept && val != 1)
1875				warnx("maxchild=%lu for wait service %s"
1876				    " not recommended", val, sep->se_service);
1877		sep->se_maxchild = val;
1878		if (*eptr == '/')
1879			sep->se_maxcpm = strtol(eptr + 1, &eptr, 10);
1880		if (*eptr == '/')
1881			sep->se_maxperip = strtol(eptr + 1, &eptr, 10);
1882		/*
1883		 * explicitly do not check for \0 for future expansion /
1884		 * backwards compatibility
1885		 */
1886	}
1887	if (ISMUX(sep)) {
1888		/*
1889		 * Silently enforce "nowait" mode for TCPMUX services
1890		 * since they don't have an assigned port to listen on.
1891		 */
1892		sep->se_accept = 1;
1893		if (strcmp(sep->se_proto, "tcp")) {
1894			syslog(LOG_ERR,
1895				"%s: bad protocol for tcpmux service %s",
1896				CONFIG, sep->se_service);
1897			goto more;
1898		}
1899		if (sep->se_socktype != SOCK_STREAM) {
1900			syslog(LOG_ERR,
1901				"%s: bad socket type for tcpmux service %s",
1902				CONFIG, sep->se_service);
1903			goto more;
1904		}
1905	}
1906	sep->se_user = newstr(sskip(&cp));
1907#ifdef LOGIN_CAP
1908	if ((s = strrchr(sep->se_user, '/')) != NULL) {
1909		*s = '\0';
1910		sep->se_class = newstr(s + 1);
1911	} else
1912		sep->se_class = newstr(RESOURCE_RC);
1913#endif
1914	if ((s = strrchr(sep->se_user, ':')) != NULL) {
1915		*s = '\0';
1916		sep->se_group = newstr(s + 1);
1917	} else
1918		sep->se_group = NULL;
1919	sep->se_server = newstr(sskip(&cp));
1920	if ((sep->se_server_name = strrchr(sep->se_server, '/')))
1921		sep->se_server_name++;
1922	if (strcmp(sep->se_server, "internal") == 0) {
1923		struct biltin *bi;
1924
1925		for (bi = biltins; bi->bi_service; bi++)
1926			if (bi->bi_socktype == sep->se_socktype &&
1927			    matchservent(bi->bi_service, sep->se_service,
1928			    sep->se_proto))
1929				break;
1930		if (bi->bi_service == 0) {
1931			syslog(LOG_ERR, "internal service %s unknown",
1932				sep->se_service);
1933			goto more;
1934		}
1935		sep->se_accept = 1;	/* force accept mode for built-ins */
1936		sep->se_bi = bi;
1937	} else
1938		sep->se_bi = NULL;
1939	if (sep->se_maxperip < 0)
1940		sep->se_maxperip = maxperip;
1941	if (sep->se_maxcpm < 0)
1942		sep->se_maxcpm = maxcpm;
1943	if (sep->se_maxchild < 0) {	/* apply default max-children */
1944		if (sep->se_bi && sep->se_bi->bi_maxchild >= 0)
1945			sep->se_maxchild = sep->se_bi->bi_maxchild;
1946		else if (sep->se_accept)
1947			sep->se_maxchild = MAX(maxchild, 0);
1948		else
1949			sep->se_maxchild = 1;
1950	}
1951	if (sep->se_maxchild > 0) {
1952		sep->se_pids = malloc(sep->se_maxchild * sizeof(*sep->se_pids));
1953		if (sep->se_pids == NULL) {
1954			syslog(LOG_ERR, "malloc: %m");
1955			exit(EX_OSERR);
1956		}
1957	}
1958	argc = 0;
1959	for (arg = skip(&cp); cp; arg = skip(&cp))
1960		if (argc < MAXARGV) {
1961			sep->se_argv[argc++] = newstr(arg);
1962		} else {
1963			syslog(LOG_ERR,
1964				"%s: too many arguments for service %s",
1965				CONFIG, sep->se_service);
1966			goto more;
1967		}
1968	while (argc <= MAXARGV)
1969		sep->se_argv[argc++] = NULL;
1970	for (i = 0; i < PERIPSIZE; ++i)
1971		LIST_INIT(&sep->se_conn[i]);
1972#ifdef IPSEC
1973	sep->se_policy = policy ? newstr(policy) : NULL;
1974#endif
1975	return (sep);
1976}
1977
1978void
1979freeconfig(struct servtab *cp)
1980{
1981	int i;
1982
1983	if (cp->se_service)
1984		free(cp->se_service);
1985	if (cp->se_proto)
1986		free(cp->se_proto);
1987	if (cp->se_user)
1988		free(cp->se_user);
1989	if (cp->se_group)
1990		free(cp->se_group);
1991#ifdef LOGIN_CAP
1992	if (cp->se_class)
1993		free(cp->se_class);
1994#endif
1995	if (cp->se_server)
1996		free(cp->se_server);
1997	if (cp->se_pids)
1998		free(cp->se_pids);
1999	for (i = 0; i < MAXARGV; i++)
2000		if (cp->se_argv[i])
2001			free(cp->se_argv[i]);
2002	free_connlist(cp);
2003#ifdef IPSEC
2004	if (cp->se_policy)
2005		free(cp->se_policy);
2006#endif
2007}
2008
2009
2010/*
2011 * Safe skip - if skip returns null, log a syntax error in the
2012 * configuration file and exit.
2013 */
2014char *
2015sskip(char **cpp)
2016{
2017	char *cp;
2018
2019	cp = skip(cpp);
2020	if (cp == NULL) {
2021		syslog(LOG_ERR, "%s: syntax error", CONFIG);
2022		exit(EX_DATAERR);
2023	}
2024	return (cp);
2025}
2026
2027char *
2028skip(char **cpp)
2029{
2030	char *cp = *cpp;
2031	char *start;
2032	char quote = '\0';
2033
2034again:
2035	while (*cp == ' ' || *cp == '\t')
2036		cp++;
2037	if (*cp == '\0') {
2038		int c;
2039
2040		c = getc(fconfig);
2041		(void) ungetc(c, fconfig);
2042		if (c == ' ' || c == '\t')
2043			if ((cp = nextline(fconfig)))
2044				goto again;
2045		*cpp = (char *)0;
2046		return ((char *)0);
2047	}
2048	if (*cp == '"' || *cp == '\'')
2049		quote = *cp++;
2050	start = cp;
2051	if (quote)
2052		while (*cp && *cp != quote)
2053			cp++;
2054	else
2055		while (*cp && *cp != ' ' && *cp != '\t')
2056			cp++;
2057	if (*cp != '\0')
2058		*cp++ = '\0';
2059	*cpp = cp;
2060	return (start);
2061}
2062
2063char *
2064nextline(FILE *fd)
2065{
2066	char *cp;
2067
2068	if (fgets(line, sizeof (line), fd) == NULL)
2069		return ((char *)0);
2070	cp = strchr(line, '\n');
2071	if (cp)
2072		*cp = '\0';
2073	return (line);
2074}
2075
2076char *
2077newstr(const char *cp)
2078{
2079	char *cr;
2080
2081	if ((cr = strdup(cp != NULL ? cp : "")))
2082		return (cr);
2083	syslog(LOG_ERR, "strdup: %m");
2084	exit(EX_OSERR);
2085}
2086
2087void
2088inetd_setproctitle(const char *a, int s)
2089{
2090	socklen_t size;
2091	struct sockaddr_storage ss;
2092	char buf[80], pbuf[NI_MAXHOST];
2093
2094	size = sizeof(ss);
2095	if (getpeername(s, (struct sockaddr *)&ss, &size) == 0) {
2096		getnameinfo((struct sockaddr *)&ss, size, pbuf, sizeof(pbuf),
2097			    NULL, 0, NI_NUMERICHOST);
2098		(void) sprintf(buf, "%s [%s]", a, pbuf);
2099	} else
2100		(void) sprintf(buf, "%s", a);
2101	setproctitle("%s", buf);
2102}
2103
2104int
2105check_loop(const struct sockaddr *sa, const struct servtab *sep)
2106{
2107	struct servtab *se2;
2108	char pname[NI_MAXHOST];
2109
2110	for (se2 = servtab; se2; se2 = se2->se_next) {
2111		if (!se2->se_bi || se2->se_socktype != SOCK_DGRAM)
2112			continue;
2113
2114		switch (se2->se_family) {
2115		case AF_INET:
2116			if (((const struct sockaddr_in *)sa)->sin_port ==
2117			    se2->se_ctrladdr4.sin_port)
2118				goto isloop;
2119			continue;
2120#ifdef INET6
2121		case AF_INET6:
2122			if (((const struct sockaddr_in6 *)sa)->sin6_port ==
2123			    se2->se_ctrladdr6.sin6_port)
2124				goto isloop;
2125			continue;
2126#endif
2127		default:
2128			continue;
2129		}
2130	isloop:
2131		getnameinfo(sa, sa->sa_len, pname, sizeof(pname), NULL, 0,
2132			    NI_NUMERICHOST);
2133		syslog(LOG_WARNING, "%s/%s:%s/%s loop request REFUSED from %s",
2134		       sep->se_service, sep->se_proto,
2135		       se2->se_service, se2->se_proto,
2136		       pname);
2137		return 1;
2138	}
2139	return 0;
2140}
2141
2142/*
2143 * print_service:
2144 *	Dump relevant information to stderr
2145 */
2146void
2147print_service(const char *action, const struct servtab *sep)
2148{
2149	fprintf(stderr,
2150	    "%s: %s proto=%s accept=%d max=%d user=%s group=%s"
2151#ifdef LOGIN_CAP
2152	    "class=%s"
2153#endif
2154	    " builtin=%p server=%s"
2155#ifdef IPSEC
2156	    " policy=\"%s\""
2157#endif
2158	    "\n",
2159	    action, sep->se_service, sep->se_proto,
2160	    sep->se_accept, sep->se_maxchild, sep->se_user, sep->se_group,
2161#ifdef LOGIN_CAP
2162	    sep->se_class,
2163#endif
2164	    (void *) sep->se_bi, sep->se_server
2165#ifdef IPSEC
2166	    , (sep->se_policy ? sep->se_policy : "")
2167#endif
2168	    );
2169}
2170
2171#define CPMHSIZE	256
2172#define CPMHMASK	(CPMHSIZE-1)
2173#define CHTGRAN		10
2174#define CHTSIZE		6
2175
2176typedef struct CTime {
2177	unsigned long 	ct_Ticks;
2178	int		ct_Count;
2179} CTime;
2180
2181typedef struct CHash {
2182	union {
2183		struct in_addr	c4_Addr;
2184		struct in6_addr	c6_Addr;
2185	} cu_Addr;
2186#define	ch_Addr4	cu_Addr.c4_Addr
2187#define	ch_Addr6	cu_Addr.c6_Addr
2188	int		ch_Family;
2189	time_t		ch_LTime;
2190	char		*ch_Service;
2191	CTime		ch_Times[CHTSIZE];
2192} CHash;
2193
2194CHash	CHashAry[CPMHSIZE];
2195
2196int
2197cpmip(const struct servtab *sep, int ctrl)
2198{
2199	struct sockaddr_storage rss;
2200	socklen_t rssLen = sizeof(rss);
2201	int r = 0;
2202
2203	/*
2204	 * If getpeername() fails, just let it through (if logging is
2205	 * enabled the condition is caught elsewhere)
2206	 */
2207
2208	if (sep->se_maxcpm > 0 &&
2209	   (sep->se_family == AF_INET || sep->se_family == AF_INET6) &&
2210	    getpeername(ctrl, (struct sockaddr *)&rss, &rssLen) == 0 ) {
2211		time_t t = time(NULL);
2212		int hv = 0xABC3D20F;
2213		int i;
2214		int cnt = 0;
2215		CHash *chBest = NULL;
2216		unsigned int ticks = t / CHTGRAN;
2217		struct sockaddr_in *sin4;
2218#ifdef INET6
2219		struct sockaddr_in6 *sin6;
2220#endif
2221
2222		sin4 = (struct sockaddr_in *)&rss;
2223#ifdef INET6
2224		sin6 = (struct sockaddr_in6 *)&rss;
2225#endif
2226		{
2227			char *p;
2228			int addrlen;
2229
2230			switch (rss.ss_family) {
2231			case AF_INET:
2232				p = (char *)&sin4->sin_addr;
2233				addrlen = sizeof(struct in_addr);
2234				break;
2235#ifdef INET6
2236			case AF_INET6:
2237				p = (char *)&sin6->sin6_addr;
2238				addrlen = sizeof(struct in6_addr);
2239				break;
2240#endif
2241			default:
2242				/* should not happen */
2243				return -1;
2244			}
2245
2246			for (i = 0; i < addrlen; ++i, ++p) {
2247				hv = (hv << 5) ^ (hv >> 23) ^ *p;
2248			}
2249			hv = (hv ^ (hv >> 16));
2250		}
2251		for (i = 0; i < 5; ++i) {
2252			CHash *ch = &CHashAry[(hv + i) & CPMHMASK];
2253
2254			if (rss.ss_family == AF_INET &&
2255			    ch->ch_Family == AF_INET &&
2256			    sin4->sin_addr.s_addr == ch->ch_Addr4.s_addr &&
2257			    ch->ch_Service && strcmp(sep->se_service,
2258			    ch->ch_Service) == 0) {
2259				chBest = ch;
2260				break;
2261			}
2262#ifdef INET6
2263			if (rss.ss_family == AF_INET6 &&
2264			    ch->ch_Family == AF_INET6 &&
2265			    IN6_ARE_ADDR_EQUAL(&sin6->sin6_addr,
2266					       &ch->ch_Addr6) != 0 &&
2267			    ch->ch_Service && strcmp(sep->se_service,
2268			    ch->ch_Service) == 0) {
2269				chBest = ch;
2270				break;
2271			}
2272#endif
2273			if (chBest == NULL || ch->ch_LTime == 0 ||
2274			    ch->ch_LTime < chBest->ch_LTime) {
2275				chBest = ch;
2276			}
2277		}
2278		if ((rss.ss_family == AF_INET &&
2279		     (chBest->ch_Family != AF_INET ||
2280		      sin4->sin_addr.s_addr != chBest->ch_Addr4.s_addr)) ||
2281		    chBest->ch_Service == NULL ||
2282		    strcmp(sep->se_service, chBest->ch_Service) != 0) {
2283			chBest->ch_Family = sin4->sin_family;
2284			chBest->ch_Addr4 = sin4->sin_addr;
2285			if (chBest->ch_Service)
2286				free(chBest->ch_Service);
2287			chBest->ch_Service = strdup(sep->se_service);
2288			bzero(chBest->ch_Times, sizeof(chBest->ch_Times));
2289		}
2290#ifdef INET6
2291		if ((rss.ss_family == AF_INET6 &&
2292		     (chBest->ch_Family != AF_INET6 ||
2293		      IN6_ARE_ADDR_EQUAL(&sin6->sin6_addr,
2294					 &chBest->ch_Addr6) == 0)) ||
2295		    chBest->ch_Service == NULL ||
2296		    strcmp(sep->se_service, chBest->ch_Service) != 0) {
2297			chBest->ch_Family = sin6->sin6_family;
2298			chBest->ch_Addr6 = sin6->sin6_addr;
2299			if (chBest->ch_Service)
2300				free(chBest->ch_Service);
2301			chBest->ch_Service = strdup(sep->se_service);
2302			bzero(chBest->ch_Times, sizeof(chBest->ch_Times));
2303		}
2304#endif
2305		chBest->ch_LTime = t;
2306		{
2307			CTime *ct = &chBest->ch_Times[ticks % CHTSIZE];
2308			if (ct->ct_Ticks != ticks) {
2309				ct->ct_Ticks = ticks;
2310				ct->ct_Count = 0;
2311			}
2312			++ct->ct_Count;
2313		}
2314		for (i = 0; i < CHTSIZE; ++i) {
2315			CTime *ct = &chBest->ch_Times[i];
2316			if (ct->ct_Ticks <= ticks &&
2317			    ct->ct_Ticks >= ticks - CHTSIZE) {
2318				cnt += ct->ct_Count;
2319			}
2320		}
2321		if ((cnt * 60) / (CHTSIZE * CHTGRAN) > sep->se_maxcpm) {
2322			char pname[NI_MAXHOST];
2323
2324			getnameinfo((struct sockaddr *)&rss,
2325				    ((struct sockaddr *)&rss)->sa_len,
2326				    pname, sizeof(pname), NULL, 0,
2327				    NI_NUMERICHOST);
2328			r = -1;
2329			syslog(LOG_ERR,
2330			    "%s from %s exceeded counts/min (limit %d/min)",
2331			    sep->se_service, pname,
2332			    sep->se_maxcpm);
2333		}
2334	}
2335	return(r);
2336}
2337
2338static struct conninfo *
2339search_conn(struct servtab *sep, int ctrl)
2340{
2341	struct sockaddr_storage ss;
2342	socklen_t sslen = sizeof(ss);
2343	struct conninfo *conn;
2344	int hv;
2345	char pname[NI_MAXHOST],  pname2[NI_MAXHOST];
2346
2347	if (sep->se_maxperip <= 0)
2348		return NULL;
2349
2350	/*
2351	 * If getpeername() fails, just let it through (if logging is
2352	 * enabled the condition is caught elsewhere)
2353	 */
2354	if (getpeername(ctrl, (struct sockaddr *)&ss, &sslen) != 0)
2355		return NULL;
2356
2357	switch (ss.ss_family) {
2358	case AF_INET:
2359		hv = hashval((char *)&((struct sockaddr_in *)&ss)->sin_addr,
2360		    sizeof(struct in_addr));
2361		break;
2362#ifdef INET6
2363	case AF_INET6:
2364		hv = hashval((char *)&((struct sockaddr_in6 *)&ss)->sin6_addr,
2365		    sizeof(struct in6_addr));
2366		break;
2367#endif
2368	default:
2369		/*
2370		 * Since we only support AF_INET and AF_INET6, just
2371		 * let other than AF_INET and AF_INET6 through.
2372		 */
2373		return NULL;
2374	}
2375
2376	if (getnameinfo((struct sockaddr *)&ss, sslen, pname, sizeof(pname),
2377	    NULL, 0, NI_NUMERICHOST) != 0)
2378		return NULL;
2379
2380	LIST_FOREACH(conn, &sep->se_conn[hv], co_link) {
2381		if (getnameinfo((struct sockaddr *)&conn->co_addr,
2382		    conn->co_addr.ss_len, pname2, sizeof(pname2), NULL, 0,
2383		    NI_NUMERICHOST) == 0 &&
2384		    strcmp(pname, pname2) == 0)
2385			break;
2386	}
2387
2388	if (conn == NULL) {
2389		if ((conn = malloc(sizeof(struct conninfo))) == NULL) {
2390			syslog(LOG_ERR, "malloc: %m");
2391			exit(EX_OSERR);
2392		}
2393		conn->co_proc = malloc(sep->se_maxperip * sizeof(*conn->co_proc));
2394		if (conn->co_proc == NULL) {
2395			syslog(LOG_ERR, "malloc: %m");
2396			exit(EX_OSERR);
2397		}
2398		memcpy(&conn->co_addr, (struct sockaddr *)&ss, sslen);
2399		conn->co_numchild = 0;
2400		LIST_INSERT_HEAD(&sep->se_conn[hv], conn, co_link);
2401	}
2402
2403	/*
2404	 * Since a child process is not invoked yet, we cannot
2405	 * determine a pid of a child.  So, co_proc and co_numchild
2406	 * should be filled leter.
2407	 */
2408
2409	return conn;
2410}
2411
2412static int
2413room_conn(struct servtab *sep, struct conninfo *conn)
2414{
2415	char pname[NI_MAXHOST];
2416
2417	if (conn->co_numchild >= sep->se_maxperip) {
2418		getnameinfo((struct sockaddr *)&conn->co_addr,
2419		    conn->co_addr.ss_len, pname, sizeof(pname), NULL, 0,
2420		    NI_NUMERICHOST);
2421		syslog(LOG_ERR, "%s from %s exceeded counts (limit %d)",
2422		    sep->se_service, pname, sep->se_maxperip);
2423		return 0;
2424	}
2425	return 1;
2426}
2427
2428static void
2429addchild_conn(struct conninfo *conn, pid_t pid)
2430{
2431	struct procinfo *proc;
2432
2433	if (conn == NULL)
2434		return;
2435
2436	if ((proc = search_proc(pid, 1)) != NULL) {
2437		if (proc->pr_conn != NULL) {
2438			syslog(LOG_ERR,
2439			    "addchild_conn: child already on process list");
2440			exit(EX_OSERR);
2441		}
2442		proc->pr_conn = conn;
2443	}
2444
2445	conn->co_proc[conn->co_numchild++] = proc;
2446}
2447
2448static void
2449reapchild_conn(pid_t pid)
2450{
2451	struct procinfo *proc;
2452	struct conninfo *conn;
2453	int i;
2454
2455	if ((proc = search_proc(pid, 0)) == NULL)
2456		return;
2457	if ((conn = proc->pr_conn) == NULL)
2458		return;
2459	for (i = 0; i < conn->co_numchild; ++i)
2460		if (conn->co_proc[i] == proc) {
2461			conn->co_proc[i] = conn->co_proc[--conn->co_numchild];
2462			break;
2463		}
2464	free_proc(proc);
2465	free_conn(conn);
2466}
2467
2468static void
2469resize_conn(struct servtab *sep, int maxpip)
2470{
2471	struct conninfo *conn;
2472	int i, j;
2473
2474	if (sep->se_maxperip <= 0)
2475		return;
2476	if (maxpip <= 0) {
2477		free_connlist(sep);
2478		return;
2479	}
2480	for (i = 0; i < PERIPSIZE; ++i) {
2481		LIST_FOREACH(conn, &sep->se_conn[i], co_link) {
2482			for (j = maxpip; j < conn->co_numchild; ++j)
2483				free_proc(conn->co_proc[j]);
2484			conn->co_proc = realloc(conn->co_proc,
2485			    maxpip * sizeof(*conn->co_proc));
2486			if (conn->co_proc == NULL) {
2487				syslog(LOG_ERR, "realloc: %m");
2488				exit(EX_OSERR);
2489			}
2490			if (conn->co_numchild > maxpip)
2491				conn->co_numchild = maxpip;
2492		}
2493	}
2494}
2495
2496static void
2497free_connlist(struct servtab *sep)
2498{
2499	struct conninfo *conn;
2500	int i, j;
2501
2502	for (i = 0; i < PERIPSIZE; ++i) {
2503		while ((conn = LIST_FIRST(&sep->se_conn[i])) != NULL) {
2504			for (j = 0; j < conn->co_numchild; ++j)
2505				free_proc(conn->co_proc[j]);
2506			conn->co_numchild = 0;
2507			free_conn(conn);
2508		}
2509	}
2510}
2511
2512static void
2513free_conn(struct conninfo *conn)
2514{
2515	if (conn == NULL)
2516		return;
2517	if (conn->co_numchild <= 0) {
2518		LIST_REMOVE(conn, co_link);
2519		free(conn->co_proc);
2520		free(conn);
2521	}
2522}
2523
2524static struct procinfo *
2525search_proc(pid_t pid, int add)
2526{
2527	struct procinfo *proc;
2528	int hv;
2529
2530	hv = hashval((char *)&pid, sizeof(pid));
2531	LIST_FOREACH(proc, &proctable[hv], pr_link) {
2532		if (proc->pr_pid == pid)
2533			break;
2534	}
2535	if (proc == NULL && add) {
2536		if ((proc = malloc(sizeof(struct procinfo))) == NULL) {
2537			syslog(LOG_ERR, "malloc: %m");
2538			exit(EX_OSERR);
2539		}
2540		proc->pr_pid = pid;
2541		proc->pr_conn = NULL;
2542		LIST_INSERT_HEAD(&proctable[hv], proc, pr_link);
2543	}
2544	return proc;
2545}
2546
2547static void
2548free_proc(struct procinfo *proc)
2549{
2550	if (proc == NULL)
2551		return;
2552	LIST_REMOVE(proc, pr_link);
2553	free(proc);
2554}
2555
2556static int
2557hashval(char *p, int len)
2558{
2559	int i, hv = 0xABC3D20F;
2560
2561	for (i = 0; i < len; ++i, ++p)
2562		hv = (hv << 5) ^ (hv >> 23) ^ *p;
2563	hv = (hv ^ (hv >> 16)) & (PERIPSIZE - 1);
2564	return hv;
2565}
2566