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