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