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