xref: /freebsd/usr.sbin/syslogd/syslogd.c (revision 724b4bfdf1306e4f2c451b6d146fe0fe0353b2c8)
1 /*
2  * Copyright (c) 1983, 1988, 1993, 1994
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29 
30 #ifndef lint
31 static const char copyright[] =
32 "@(#) Copyright (c) 1983, 1988, 1993, 1994\n\
33 	The Regents of the University of California.  All rights reserved.\n";
34 #endif /* not lint */
35 
36 #ifndef lint
37 #if 0
38 static char sccsid[] = "@(#)syslogd.c	8.3 (Berkeley) 4/4/94";
39 #endif
40 #endif /* not lint */
41 
42 #include <sys/cdefs.h>
43 __FBSDID("$FreeBSD$");
44 
45 /*
46  *  syslogd -- log system messages
47  *
48  * This program implements a system log. It takes a series of lines.
49  * Each line may have a priority, signified as "<n>" as
50  * the first characters of the line.  If this is
51  * not present, a default priority is used.
52  *
53  * To kill syslogd, send a signal 15 (terminate).  A signal 1 (hup) will
54  * cause it to reread its configuration file.
55  *
56  * Defined Constants:
57  *
58  * MAXLINE -- the maximum line length that can be handled.
59  * DEFUPRI -- the default priority for user messages
60  * DEFSPRI -- the default priority for kernel messages
61  *
62  * Author: Eric Allman
63  * extensive changes by Ralph Campbell
64  * more extensive changes by Eric Allman (again)
65  * Extension to log by program name as well as facility and priority
66  *   by Peter da Silva.
67  * -u and -v by Harlan Stenn.
68  * Priority comparison code by Harlan Stenn.
69  */
70 
71 #define	MAXLINE		1024		/* maximum line length */
72 #define	MAXSVLINE	120		/* maximum saved line length */
73 #define	DEFUPRI		(LOG_USER|LOG_NOTICE)
74 #define	DEFSPRI		(LOG_KERN|LOG_CRIT)
75 #define	TIMERINTVL	30		/* interval for checking flush, mark */
76 #define	TTYMSGTIME	1		/* timeout passed to ttymsg */
77 
78 #include <sys/param.h>
79 #include <sys/ioctl.h>
80 #include <sys/mman.h>
81 #include <sys/stat.h>
82 #include <sys/wait.h>
83 #include <sys/socket.h>
84 #include <sys/queue.h>
85 #include <sys/uio.h>
86 #include <sys/un.h>
87 #include <sys/time.h>
88 #include <sys/resource.h>
89 #include <sys/syslimits.h>
90 #include <sys/types.h>
91 
92 #include <netinet/in.h>
93 #include <netdb.h>
94 #include <arpa/inet.h>
95 
96 #include <ctype.h>
97 #include <err.h>
98 #include <errno.h>
99 #include <fcntl.h>
100 #include <libutil.h>
101 #include <limits.h>
102 #include <paths.h>
103 #include <signal.h>
104 #include <stdio.h>
105 #include <stdlib.h>
106 #include <string.h>
107 #include <sysexits.h>
108 #include <unistd.h>
109 #include <utmpx.h>
110 
111 #include "pathnames.h"
112 #include "ttymsg.h"
113 
114 #define SYSLOG_NAMES
115 #include <sys/syslog.h>
116 
117 const char	*ConfFile = _PATH_LOGCONF;
118 const char	*PidFile = _PATH_LOGPID;
119 const char	ctty[] = _PATH_CONSOLE;
120 
121 #define	dprintf		if (Debug) printf
122 
123 #define	MAXUNAMES	20	/* maximum number of user names */
124 
125 /*
126  * Unix sockets.
127  * We have two default sockets, one with 666 permissions,
128  * and one for privileged programs.
129  */
130 struct funix {
131 	int			s;
132 	const char		*name;
133 	mode_t			mode;
134 	STAILQ_ENTRY(funix)	next;
135 };
136 struct funix funix_secure =	{ -1, _PATH_LOG_PRIV, S_IRUSR | S_IWUSR,
137 				{ NULL } };
138 struct funix funix_default =	{ -1, _PATH_LOG, DEFFILEMODE,
139 				{ &funix_secure } };
140 
141 STAILQ_HEAD(, funix) funixes =	{ &funix_default,
142 				&(funix_secure.next.stqe_next) };
143 
144 /*
145  * Flags to logmsg().
146  */
147 
148 #define	IGN_CONS	0x001	/* don't print on console */
149 #define	SYNC_FILE	0x002	/* do fsync on file after printing */
150 #define	ADDDATE		0x004	/* add a date to the message */
151 #define	MARK		0x008	/* this message is a mark */
152 #define	ISKERNEL	0x010	/* kernel generated message */
153 
154 /*
155  * This structure represents the files that will have log
156  * copies printed.
157  * We require f_file to be valid if f_type is F_FILE, F_CONSOLE, F_TTY
158  * or if f_type if F_PIPE and f_pid > 0.
159  */
160 
161 struct filed {
162 	struct	filed *f_next;		/* next in linked list */
163 	short	f_type;			/* entry type, see below */
164 	short	f_file;			/* file descriptor */
165 	time_t	f_time;			/* time this was last written */
166 	char	*f_host;		/* host from which to recd. */
167 	u_char	f_pmask[LOG_NFACILITIES+1];	/* priority mask */
168 	u_char	f_pcmp[LOG_NFACILITIES+1];	/* compare priority */
169 #define PRI_LT	0x1
170 #define PRI_EQ	0x2
171 #define PRI_GT	0x4
172 	char	*f_program;		/* program this applies to */
173 	union {
174 		char	f_uname[MAXUNAMES][MAXLOGNAME];
175 		struct {
176 			char	f_hname[MAXHOSTNAMELEN];
177 			struct addrinfo *f_addr;
178 
179 		} f_forw;		/* forwarding address */
180 		char	f_fname[MAXPATHLEN];
181 		struct {
182 			char	f_pname[MAXPATHLEN];
183 			pid_t	f_pid;
184 		} f_pipe;
185 	} f_un;
186 	char	f_prevline[MAXSVLINE];		/* last message logged */
187 	char	f_lasttime[16];			/* time of last occurrence */
188 	char	f_prevhost[MAXHOSTNAMELEN];	/* host from which recd. */
189 	int	f_prevpri;			/* pri of f_prevline */
190 	int	f_prevlen;			/* length of f_prevline */
191 	int	f_prevcount;			/* repetition cnt of prevline */
192 	u_int	f_repeatcount;			/* number of "repeated" msgs */
193 	int	f_flags;			/* file-specific flags */
194 #define	FFLAG_SYNC 0x01
195 #define	FFLAG_NEEDSYNC	0x02
196 };
197 
198 /*
199  * Queue of about-to-be dead processes we should watch out for.
200  */
201 
202 TAILQ_HEAD(stailhead, deadq_entry) deadq_head;
203 struct stailhead *deadq_headp;
204 
205 struct deadq_entry {
206 	pid_t				dq_pid;
207 	int				dq_timeout;
208 	TAILQ_ENTRY(deadq_entry)	dq_entries;
209 };
210 
211 /*
212  * The timeout to apply to processes waiting on the dead queue.  Unit
213  * of measure is `mark intervals', i.e. 20 minutes by default.
214  * Processes on the dead queue will be terminated after that time.
215  */
216 
217 #define	 DQ_TIMO_INIT	2
218 
219 typedef struct deadq_entry *dq_t;
220 
221 
222 /*
223  * Struct to hold records of network addresses that are allowed to log
224  * to us.
225  */
226 struct allowedpeer {
227 	int isnumeric;
228 	u_short port;
229 	union {
230 		struct {
231 			struct sockaddr_storage addr;
232 			struct sockaddr_storage mask;
233 		} numeric;
234 		char *name;
235 	} u;
236 #define a_addr u.numeric.addr
237 #define a_mask u.numeric.mask
238 #define a_name u.name
239 };
240 
241 
242 /*
243  * Intervals at which we flush out "message repeated" messages,
244  * in seconds after previous message is logged.  After each flush,
245  * we move to the next interval until we reach the largest.
246  */
247 int	repeatinterval[] = { 30, 120, 600 };	/* # of secs before flush */
248 #define	MAXREPEAT ((sizeof(repeatinterval) / sizeof(repeatinterval[0])) - 1)
249 #define	REPEATTIME(f)	((f)->f_time + repeatinterval[(f)->f_repeatcount])
250 #define	BACKOFF(f)	{ if (++(f)->f_repeatcount > MAXREPEAT) \
251 				 (f)->f_repeatcount = MAXREPEAT; \
252 			}
253 
254 /* values for f_type */
255 #define F_UNUSED	0		/* unused entry */
256 #define F_FILE		1		/* regular file */
257 #define F_TTY		2		/* terminal */
258 #define F_CONSOLE	3		/* console terminal */
259 #define F_FORW		4		/* remote machine */
260 #define F_USERS		5		/* list of users */
261 #define F_WALL		6		/* everyone logged on */
262 #define F_PIPE		7		/* pipe to program */
263 
264 const char *TypeNames[8] = {
265 	"UNUSED",	"FILE",		"TTY",		"CONSOLE",
266 	"FORW",		"USERS",	"WALL",		"PIPE"
267 };
268 
269 static struct filed *Files;	/* Log files that we write to */
270 static struct filed consfile;	/* Console */
271 
272 static int	Debug;		/* debug flag */
273 static int	resolve = 1;	/* resolve hostname */
274 static char	LocalHostName[MAXHOSTNAMELEN];	/* our hostname */
275 static const char *LocalDomain;	/* our local domain name */
276 static int	*finet;		/* Internet datagram socket */
277 static int	fklog = -1;	/* /dev/klog */
278 static int	Initialized;	/* set when we have initialized ourselves */
279 static int	MarkInterval = 20 * 60;	/* interval between marks in seconds */
280 static int	MarkSeq;	/* mark sequence number */
281 static int	NoBind;		/* don't bind() as suggested by RFC 3164 */
282 static int	SecureMode;	/* when true, receive only unix domain socks */
283 #ifdef INET6
284 static int	family = PF_UNSPEC; /* protocol family (IPv4, IPv6 or both) */
285 #else
286 static int	family = PF_INET; /* protocol family (IPv4 only) */
287 #endif
288 static int	mask_C1 = 1;	/* mask characters from 0x80 - 0x9F */
289 static int	send_to_all;	/* send message to all IPv4/IPv6 addresses */
290 static int	use_bootfile;	/* log entire bootfile for every kern msg */
291 static int	no_compress;	/* don't compress messages (1=pipes, 2=all) */
292 static int	logflags = O_WRONLY|O_APPEND; /* flags used to open log files */
293 
294 static char	bootfile[MAXLINE+1]; /* booted kernel file */
295 
296 struct allowedpeer *AllowedPeers; /* List of allowed peers */
297 static int	NumAllowed;	/* Number of entries in AllowedPeers */
298 static int	RemoteAddDate;	/* Always set the date on remote messages */
299 
300 static int	UniquePriority;	/* Only log specified priority? */
301 static int	LogFacPri;	/* Put facility and priority in log message: */
302 				/* 0=no, 1=numeric, 2=names */
303 static int	KeepKernFac;	/* Keep remotely logged kernel facility */
304 static int	needdofsync = 0; /* Are any file(s) waiting to be fsynced? */
305 static struct pidfh *pfh;
306 
307 volatile sig_atomic_t MarkSet, WantDie;
308 
309 static int	allowaddr(char *);
310 static void	cfline(const char *, struct filed *,
311 		    const char *, const char *);
312 static const char *cvthname(struct sockaddr *);
313 static void	deadq_enter(pid_t, const char *);
314 static int	deadq_remove(pid_t);
315 static int	decode(const char *, const CODE *);
316 static void	die(int);
317 static void	dodie(int);
318 static void	dofsync(void);
319 static void	domark(int);
320 static void	fprintlog(struct filed *, int, const char *);
321 static int	*socksetup(int, char *);
322 static void	init(int);
323 static void	logerror(const char *);
324 static void	logmsg(int, const char *, const char *, int);
325 static void	log_deadchild(pid_t, int, const char *);
326 static void	markit(void);
327 static int	skip_message(const char *, const char *, int);
328 static void	printline(const char *, char *, int);
329 static void	printsys(char *);
330 static int	p_open(const char *, pid_t *);
331 static void	readklog(void);
332 static void	reapchild(int);
333 static void	usage(void);
334 static int	validate(struct sockaddr *, const char *);
335 static void	unmapped(struct sockaddr *);
336 static void	wallmsg(struct filed *, struct iovec *, const int iovlen);
337 static int	waitdaemon(int, int, int);
338 static void	timedout(int);
339 static void	double_rbuf(int);
340 
341 int
342 main(int argc, char *argv[])
343 {
344 	int ch, i, fdsrmax = 0, l;
345 	struct sockaddr_un sunx, fromunix;
346 	struct sockaddr_storage frominet;
347 	fd_set *fdsr = NULL;
348 	char line[MAXLINE + 1];
349 	char *bindhostname;
350 	const char *hname;
351 	struct timeval tv, *tvp;
352 	struct sigaction sact;
353 	struct funix *fx, *fx1;
354 	sigset_t mask;
355 	pid_t ppid = 1, spid;
356 	socklen_t len;
357 
358 	if (madvise(NULL, 0, MADV_PROTECT) != 0)
359 		dprintf("madvise() failed: %s\n", strerror(errno));
360 
361 	bindhostname = NULL;
362 	while ((ch = getopt(argc, argv, "468Aa:b:cCdf:kl:m:nNop:P:sS:Tuv"))
363 	    != -1)
364 		switch (ch) {
365 		case '4':
366 			family = PF_INET;
367 			break;
368 #ifdef INET6
369 		case '6':
370 			family = PF_INET6;
371 			break;
372 #endif
373 		case '8':
374 			mask_C1 = 0;
375 			break;
376 		case 'A':
377 			send_to_all++;
378 			break;
379 		case 'a':		/* allow specific network addresses only */
380 			if (allowaddr(optarg) == -1)
381 				usage();
382 			break;
383 		case 'b':
384 			bindhostname = optarg;
385 			break;
386 		case 'c':
387 			no_compress++;
388 			break;
389 		case 'C':
390 			logflags |= O_CREAT;
391 			break;
392 		case 'd':		/* debug */
393 			Debug++;
394 			break;
395 		case 'f':		/* configuration file */
396 			ConfFile = optarg;
397 			break;
398 		case 'k':		/* keep remote kern fac */
399 			KeepKernFac = 1;
400 			break;
401 		case 'l':
402 		    {
403 			long	perml;
404 			mode_t	mode;
405 			char	*name, *ep;
406 
407 			if (optarg[0] == '/') {
408 				mode = DEFFILEMODE;
409 				name = optarg;
410 			} else if ((name = strchr(optarg, ':')) != NULL) {
411 				*name++ = '\0';
412 				if (name[0] != '/')
413 					errx(1, "socket name must be absolute "
414 					    "path");
415 				if (isdigit(*optarg)) {
416 					perml = strtol(optarg, &ep, 8);
417 				    if (*ep || perml < 0 ||
418 					perml & ~(S_IRWXU|S_IRWXG|S_IRWXO))
419 					    errx(1, "invalid mode %s, exiting",
420 						optarg);
421 				    mode = (mode_t )perml;
422 				} else
423 					errx(1, "invalid mode %s, exiting",
424 					    optarg);
425 			} else	/* doesn't begin with '/', and no ':' */
426 				errx(1, "can't parse path %s", optarg);
427 
428 			if (strlen(name) >= sizeof(sunx.sun_path))
429 				errx(1, "%s path too long, exiting", name);
430 			if ((fx = malloc(sizeof(struct funix))) == NULL)
431 				errx(1, "malloc failed");
432 			fx->s = -1;
433 			fx->name = name;
434 			fx->mode = mode;
435 			STAILQ_INSERT_TAIL(&funixes, fx, next);
436 			break;
437 		   }
438 		case 'm':		/* mark interval */
439 			MarkInterval = atoi(optarg) * 60;
440 			break;
441 		case 'N':
442 			NoBind = 1;
443 			SecureMode = 1;
444 			break;
445 		case 'n':
446 			resolve = 0;
447 			break;
448 		case 'o':
449 			use_bootfile = 1;
450 			break;
451 		case 'p':		/* path */
452 			if (strlen(optarg) >= sizeof(sunx.sun_path))
453 				errx(1, "%s path too long, exiting", optarg);
454 			funix_default.name = optarg;
455 			break;
456 		case 'P':		/* path for alt. PID */
457 			PidFile = optarg;
458 			break;
459 		case 's':		/* no network mode */
460 			SecureMode++;
461 			break;
462 		case 'S':		/* path for privileged originator */
463 			if (strlen(optarg) >= sizeof(sunx.sun_path))
464 				errx(1, "%s path too long, exiting", optarg);
465 			funix_secure.name = optarg;
466 			break;
467 		case 'T':
468 			RemoteAddDate = 1;
469 			break;
470 		case 'u':		/* only log specified priority */
471 			UniquePriority++;
472 			break;
473 		case 'v':		/* log facility and priority */
474 		  	LogFacPri++;
475 			break;
476 		default:
477 			usage();
478 		}
479 	if ((argc -= optind) != 0)
480 		usage();
481 
482 	pfh = pidfile_open(PidFile, 0600, &spid);
483 	if (pfh == NULL) {
484 		if (errno == EEXIST)
485 			errx(1, "syslogd already running, pid: %d", spid);
486 		warn("cannot open pid file");
487 	}
488 
489 	if (!Debug) {
490 		ppid = waitdaemon(0, 0, 30);
491 		if (ppid < 0) {
492 			warn("could not become daemon");
493 			pidfile_remove(pfh);
494 			exit(1);
495 		}
496 	} else {
497 		setlinebuf(stdout);
498 	}
499 
500 	if (NumAllowed)
501 		endservent();
502 
503 	consfile.f_type = F_CONSOLE;
504 	(void)strlcpy(consfile.f_un.f_fname, ctty + sizeof _PATH_DEV - 1,
505 	    sizeof(consfile.f_un.f_fname));
506 	(void)strlcpy(bootfile, getbootfile(), sizeof(bootfile));
507 	(void)signal(SIGTERM, dodie);
508 	(void)signal(SIGINT, Debug ? dodie : SIG_IGN);
509 	(void)signal(SIGQUIT, Debug ? dodie : SIG_IGN);
510 	/*
511 	 * We don't want the SIGCHLD and SIGHUP handlers to interfere
512 	 * with each other; they are likely candidates for being called
513 	 * simultaneously (SIGHUP closes pipe descriptor, process dies,
514 	 * SIGCHLD happens).
515 	 */
516 	sigemptyset(&mask);
517 	sigaddset(&mask, SIGHUP);
518 	sact.sa_handler = reapchild;
519 	sact.sa_mask = mask;
520 	sact.sa_flags = SA_RESTART;
521 	(void)sigaction(SIGCHLD, &sact, NULL);
522 	(void)signal(SIGALRM, domark);
523 	(void)signal(SIGPIPE, SIG_IGN);	/* We'll catch EPIPE instead. */
524 	(void)alarm(TIMERINTVL);
525 
526 	TAILQ_INIT(&deadq_head);
527 
528 #ifndef SUN_LEN
529 #define SUN_LEN(unp) (strlen((unp)->sun_path) + 2)
530 #endif
531 	STAILQ_FOREACH_SAFE(fx, &funixes, next, fx1) {
532 		(void)unlink(fx->name);
533 		memset(&sunx, 0, sizeof(sunx));
534 		sunx.sun_family = AF_LOCAL;
535 		(void)strlcpy(sunx.sun_path, fx->name, sizeof(sunx.sun_path));
536 		fx->s = socket(PF_LOCAL, SOCK_DGRAM, 0);
537 		if (fx->s < 0 ||
538 		    bind(fx->s, (struct sockaddr *)&sunx, SUN_LEN(&sunx)) < 0 ||
539 		    chmod(fx->name, fx->mode) < 0) {
540 			(void)snprintf(line, sizeof line,
541 					"cannot create %s", fx->name);
542 			logerror(line);
543 			dprintf("cannot create %s (%d)\n", fx->name, errno);
544 			if (fx == &funix_default || fx == &funix_secure)
545 				die(0);
546 			else {
547 				STAILQ_REMOVE(&funixes, fx, funix, next);
548 				continue;
549 			}
550 			double_rbuf(fx->s);
551 		}
552 	}
553 	if (SecureMode <= 1)
554 		finet = socksetup(family, bindhostname);
555 
556 	if (finet) {
557 		if (SecureMode) {
558 			for (i = 0; i < *finet; i++) {
559 				if (shutdown(finet[i+1], SHUT_RD) < 0) {
560 					logerror("shutdown");
561 					if (!Debug)
562 						die(0);
563 				}
564 			}
565 		} else {
566 			dprintf("listening on inet and/or inet6 socket\n");
567 		}
568 		dprintf("sending on inet and/or inet6 socket\n");
569 	}
570 
571 	if ((fklog = open(_PATH_KLOG, O_RDONLY, 0)) >= 0)
572 		if (fcntl(fklog, F_SETFL, O_NONBLOCK) < 0)
573 			fklog = -1;
574 	if (fklog < 0)
575 		dprintf("can't open %s (%d)\n", _PATH_KLOG, errno);
576 
577 	/* tuck my process id away */
578 	pidfile_write(pfh);
579 
580 	dprintf("off & running....\n");
581 
582 	init(0);
583 	/* prevent SIGHUP and SIGCHLD handlers from running in parallel */
584 	sigemptyset(&mask);
585 	sigaddset(&mask, SIGCHLD);
586 	sact.sa_handler = init;
587 	sact.sa_mask = mask;
588 	sact.sa_flags = SA_RESTART;
589 	(void)sigaction(SIGHUP, &sact, NULL);
590 
591 	tvp = &tv;
592 	tv.tv_sec = tv.tv_usec = 0;
593 
594 	if (fklog != -1 && fklog > fdsrmax)
595 		fdsrmax = fklog;
596 	if (finet && !SecureMode) {
597 		for (i = 0; i < *finet; i++) {
598 		    if (finet[i+1] != -1 && finet[i+1] > fdsrmax)
599 			fdsrmax = finet[i+1];
600 		}
601 	}
602 	STAILQ_FOREACH(fx, &funixes, next)
603 		if (fx->s > fdsrmax)
604 			fdsrmax = fx->s;
605 
606 	fdsr = (fd_set *)calloc(howmany(fdsrmax+1, NFDBITS),
607 	    sizeof(fd_mask));
608 	if (fdsr == NULL)
609 		errx(1, "calloc fd_set");
610 
611 	for (;;) {
612 		if (MarkSet)
613 			markit();
614 		if (WantDie)
615 			die(WantDie);
616 
617 		bzero(fdsr, howmany(fdsrmax+1, NFDBITS) *
618 		    sizeof(fd_mask));
619 
620 		if (fklog != -1)
621 			FD_SET(fklog, fdsr);
622 		if (finet && !SecureMode) {
623 			for (i = 0; i < *finet; i++) {
624 				if (finet[i+1] != -1)
625 					FD_SET(finet[i+1], fdsr);
626 			}
627 		}
628 		STAILQ_FOREACH(fx, &funixes, next)
629 			FD_SET(fx->s, fdsr);
630 
631 		i = select(fdsrmax+1, fdsr, NULL, NULL,
632 		    needdofsync ? &tv : tvp);
633 		switch (i) {
634 		case 0:
635 			dofsync();
636 			needdofsync = 0;
637 			if (tvp) {
638 				tvp = NULL;
639 				if (ppid != 1)
640 					kill(ppid, SIGALRM);
641 			}
642 			continue;
643 		case -1:
644 			if (errno != EINTR)
645 				logerror("select");
646 			continue;
647 		}
648 		if (fklog != -1 && FD_ISSET(fklog, fdsr))
649 			readklog();
650 		if (finet && !SecureMode) {
651 			for (i = 0; i < *finet; i++) {
652 				if (FD_ISSET(finet[i+1], fdsr)) {
653 					len = sizeof(frominet);
654 					l = recvfrom(finet[i+1], line, MAXLINE,
655 					     0, (struct sockaddr *)&frominet,
656 					     &len);
657 					if (l > 0) {
658 						line[l] = '\0';
659 						hname = cvthname((struct sockaddr *)&frominet);
660 						unmapped((struct sockaddr *)&frominet);
661 						if (validate((struct sockaddr *)&frominet, hname))
662 							printline(hname, line, RemoteAddDate ? ADDDATE : 0);
663 					} else if (l < 0 && errno != EINTR)
664 						logerror("recvfrom inet");
665 				}
666 			}
667 		}
668 		STAILQ_FOREACH(fx, &funixes, next) {
669 			if (FD_ISSET(fx->s, fdsr)) {
670 				len = sizeof(fromunix);
671 				l = recvfrom(fx->s, line, MAXLINE, 0,
672 				    (struct sockaddr *)&fromunix, &len);
673 				if (l > 0) {
674 					line[l] = '\0';
675 					printline(LocalHostName, line, 0);
676 				} else if (l < 0 && errno != EINTR)
677 					logerror("recvfrom unix");
678 			}
679 		}
680 	}
681 	if (fdsr)
682 		free(fdsr);
683 }
684 
685 static void
686 unmapped(struct sockaddr *sa)
687 {
688 	struct sockaddr_in6 *sin6;
689 	struct sockaddr_in sin4;
690 
691 	if (sa->sa_family != AF_INET6)
692 		return;
693 	if (sa->sa_len != sizeof(struct sockaddr_in6) ||
694 	    sizeof(sin4) > sa->sa_len)
695 		return;
696 	sin6 = (struct sockaddr_in6 *)sa;
697 	if (!IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr))
698 		return;
699 
700 	memset(&sin4, 0, sizeof(sin4));
701 	sin4.sin_family = AF_INET;
702 	sin4.sin_len = sizeof(struct sockaddr_in);
703 	memcpy(&sin4.sin_addr, &sin6->sin6_addr.s6_addr[12],
704 	       sizeof(sin4.sin_addr));
705 	sin4.sin_port = sin6->sin6_port;
706 
707 	memcpy(sa, &sin4, sin4.sin_len);
708 }
709 
710 static void
711 usage(void)
712 {
713 
714 	fprintf(stderr, "%s\n%s\n%s\n%s\n",
715 		"usage: syslogd [-468ACcdknosTuv] [-a allowed_peer]",
716 		"               [-b bind_address] [-f config_file]",
717 		"               [-l [mode:]path] [-m mark_interval]",
718 		"               [-P pid_file] [-p log_socket]");
719 	exit(1);
720 }
721 
722 /*
723  * Take a raw input line, decode the message, and print the message
724  * on the appropriate log files.
725  */
726 static void
727 printline(const char *hname, char *msg, int flags)
728 {
729 	char *p, *q;
730 	long n;
731 	int c, pri;
732 	char line[MAXLINE + 1];
733 
734 	/* test for special codes */
735 	p = msg;
736 	pri = DEFUPRI;
737 	if (*p == '<') {
738 		errno = 0;
739 		n = strtol(p + 1, &q, 10);
740 		if (*q == '>' && n >= 0 && n < INT_MAX && errno == 0) {
741 			p = q + 1;
742 			pri = n;
743 		}
744 	}
745 	if (pri &~ (LOG_FACMASK|LOG_PRIMASK))
746 		pri = DEFUPRI;
747 
748 	/*
749 	 * Don't allow users to log kernel messages.
750 	 * NOTE: since LOG_KERN == 0 this will also match
751 	 *       messages with no facility specified.
752 	 */
753 	if ((pri & LOG_FACMASK) == LOG_KERN && !KeepKernFac)
754 		pri = LOG_MAKEPRI(LOG_USER, LOG_PRI(pri));
755 
756 	q = line;
757 
758 	while ((c = (unsigned char)*p++) != '\0' &&
759 	    q < &line[sizeof(line) - 4]) {
760 		if (mask_C1 && (c & 0x80) && c < 0xA0) {
761 			c &= 0x7F;
762 			*q++ = 'M';
763 			*q++ = '-';
764 		}
765 		if (isascii(c) && iscntrl(c)) {
766 			if (c == '\n') {
767 				*q++ = ' ';
768 			} else if (c == '\t') {
769 				*q++ = '\t';
770 			} else {
771 				*q++ = '^';
772 				*q++ = c ^ 0100;
773 			}
774 		} else {
775 			*q++ = c;
776 		}
777 	}
778 	*q = '\0';
779 
780 	logmsg(pri, line, hname, flags);
781 }
782 
783 /*
784  * Read /dev/klog while data are available, split into lines.
785  */
786 static void
787 readklog(void)
788 {
789 	char *p, *q, line[MAXLINE + 1];
790 	int len, i;
791 
792 	len = 0;
793 	for (;;) {
794 		i = read(fklog, line + len, MAXLINE - 1 - len);
795 		if (i > 0) {
796 			line[i + len] = '\0';
797 		} else {
798 			if (i < 0 && errno != EINTR && errno != EAGAIN) {
799 				logerror("klog");
800 				fklog = -1;
801 			}
802 			break;
803 		}
804 
805 		for (p = line; (q = strchr(p, '\n')) != NULL; p = q + 1) {
806 			*q = '\0';
807 			printsys(p);
808 		}
809 		len = strlen(p);
810 		if (len >= MAXLINE - 1) {
811 			printsys(p);
812 			len = 0;
813 		}
814 		if (len > 0)
815 			memmove(line, p, len + 1);
816 	}
817 	if (len > 0)
818 		printsys(line);
819 }
820 
821 /*
822  * Take a raw input line from /dev/klog, format similar to syslog().
823  */
824 static void
825 printsys(char *msg)
826 {
827 	char *p, *q;
828 	long n;
829 	int flags, isprintf, pri;
830 
831 	flags = ISKERNEL | SYNC_FILE | ADDDATE;	/* fsync after write */
832 	p = msg;
833 	pri = DEFSPRI;
834 	isprintf = 1;
835 	if (*p == '<') {
836 		errno = 0;
837 		n = strtol(p + 1, &q, 10);
838 		if (*q == '>' && n >= 0 && n < INT_MAX && errno == 0) {
839 			p = q + 1;
840 			pri = n;
841 			isprintf = 0;
842 		}
843 	}
844 	/*
845 	 * Kernel printf's and LOG_CONSOLE messages have been displayed
846 	 * on the console already.
847 	 */
848 	if (isprintf || (pri & LOG_FACMASK) == LOG_CONSOLE)
849 		flags |= IGN_CONS;
850 	if (pri &~ (LOG_FACMASK|LOG_PRIMASK))
851 		pri = DEFSPRI;
852 	logmsg(pri, p, LocalHostName, flags);
853 }
854 
855 static time_t	now;
856 
857 /*
858  * Match a program or host name against a specification.
859  * Return a non-0 value if the message must be ignored
860  * based on the specification.
861  */
862 static int
863 skip_message(const char *name, const char *spec, int checkcase)
864 {
865 	const char *s;
866 	char prev, next;
867 	int exclude = 0;
868 	/* Behaviour on explicit match */
869 
870 	if (spec == NULL)
871 		return 0;
872 	switch (*spec) {
873 	case '-':
874 		exclude = 1;
875 		/*FALLTHROUGH*/
876 	case '+':
877 		spec++;
878 		break;
879 	default:
880 		break;
881 	}
882 	if (checkcase)
883 		s = strstr (spec, name);
884 	else
885 		s = strcasestr (spec, name);
886 
887 	if (s != NULL) {
888 		prev = (s == spec ? ',' : *(s - 1));
889 		next = *(s + strlen (name));
890 
891 		if (prev == ',' && (next == '\0' || next == ','))
892 			/* Explicit match: skip iff the spec is an
893 			   exclusive one. */
894 			return exclude;
895 	}
896 
897 	/* No explicit match for this name: skip the message iff
898 	   the spec is an inclusive one. */
899 	return !exclude;
900 }
901 
902 /*
903  * Log a message to the appropriate log files, users, etc. based on
904  * the priority.
905  */
906 static void
907 logmsg(int pri, const char *msg, const char *from, int flags)
908 {
909 	struct filed *f;
910 	int i, fac, msglen, omask, prilev;
911 	const char *timestamp;
912  	char prog[NAME_MAX+1];
913 	char buf[MAXLINE+1];
914 
915 	dprintf("logmsg: pri %o, flags %x, from %s, msg %s\n",
916 	    pri, flags, from, msg);
917 
918 	omask = sigblock(sigmask(SIGHUP)|sigmask(SIGALRM));
919 
920 	/*
921 	 * Check to see if msg looks non-standard.
922 	 */
923 	msglen = strlen(msg);
924 	if (msglen < 16 || msg[3] != ' ' || msg[6] != ' ' ||
925 	    msg[9] != ':' || msg[12] != ':' || msg[15] != ' ')
926 		flags |= ADDDATE;
927 
928 	(void)time(&now);
929 	if (flags & ADDDATE) {
930 		timestamp = ctime(&now) + 4;
931 	} else {
932 		timestamp = msg;
933 		msg += 16;
934 		msglen -= 16;
935 	}
936 
937 	/* skip leading blanks */
938 	while (isspace(*msg)) {
939 		msg++;
940 		msglen--;
941 	}
942 
943 	/* extract facility and priority level */
944 	if (flags & MARK)
945 		fac = LOG_NFACILITIES;
946 	else
947 		fac = LOG_FAC(pri);
948 
949 	/* Check maximum facility number. */
950 	if (fac > LOG_NFACILITIES) {
951 		(void)sigsetmask(omask);
952 		return;
953 	}
954 
955 	prilev = LOG_PRI(pri);
956 
957 	/* extract program name */
958 	for (i = 0; i < NAME_MAX; i++) {
959 		if (!isprint(msg[i]) || msg[i] == ':' || msg[i] == '[' ||
960 		    msg[i] == '/' || isspace(msg[i]))
961 			break;
962 		prog[i] = msg[i];
963 	}
964 	prog[i] = 0;
965 
966 	/* add kernel prefix for kernel messages */
967 	if (flags & ISKERNEL) {
968 		snprintf(buf, sizeof(buf), "%s: %s",
969 		    use_bootfile ? bootfile : "kernel", msg);
970 		msg = buf;
971 		msglen = strlen(buf);
972 	}
973 
974 	/* log the message to the particular outputs */
975 	if (!Initialized) {
976 		f = &consfile;
977 		/*
978 		 * Open in non-blocking mode to avoid hangs during open
979 		 * and close(waiting for the port to drain).
980 		 */
981 		f->f_file = open(ctty, O_WRONLY | O_NONBLOCK, 0);
982 
983 		if (f->f_file >= 0) {
984 			(void)strlcpy(f->f_lasttime, timestamp,
985 				sizeof(f->f_lasttime));
986 			fprintlog(f, flags, msg);
987 			(void)close(f->f_file);
988 		}
989 		(void)sigsetmask(omask);
990 		return;
991 	}
992 	for (f = Files; f; f = f->f_next) {
993 		/* skip messages that are incorrect priority */
994 		if (!(((f->f_pcmp[fac] & PRI_EQ) && (f->f_pmask[fac] == prilev))
995 		     ||((f->f_pcmp[fac] & PRI_LT) && (f->f_pmask[fac] < prilev))
996 		     ||((f->f_pcmp[fac] & PRI_GT) && (f->f_pmask[fac] > prilev))
997 		     )
998 		    || f->f_pmask[fac] == INTERNAL_NOPRI)
999 			continue;
1000 
1001 		/* skip messages with the incorrect hostname */
1002 		if (skip_message(from, f->f_host, 0))
1003 			continue;
1004 
1005 		/* skip messages with the incorrect program name */
1006 		if (skip_message(prog, f->f_program, 1))
1007 			continue;
1008 
1009 		/* skip message to console if it has already been printed */
1010 		if (f->f_type == F_CONSOLE && (flags & IGN_CONS))
1011 			continue;
1012 
1013 		/* don't output marks to recently written files */
1014 		if ((flags & MARK) && (now - f->f_time) < MarkInterval / 2)
1015 			continue;
1016 
1017 		/*
1018 		 * suppress duplicate lines to this file
1019 		 */
1020 		if (no_compress - (f->f_type != F_PIPE) < 1 &&
1021 		    (flags & MARK) == 0 && msglen == f->f_prevlen &&
1022 		    f->f_prevline && !strcmp(msg, f->f_prevline) &&
1023 		    !strcasecmp(from, f->f_prevhost)) {
1024 			(void)strlcpy(f->f_lasttime, timestamp,
1025 				sizeof(f->f_lasttime));
1026 			f->f_prevcount++;
1027 			dprintf("msg repeated %d times, %ld sec of %d\n",
1028 			    f->f_prevcount, (long)(now - f->f_time),
1029 			    repeatinterval[f->f_repeatcount]);
1030 			/*
1031 			 * If domark would have logged this by now,
1032 			 * flush it now (so we don't hold isolated messages),
1033 			 * but back off so we'll flush less often
1034 			 * in the future.
1035 			 */
1036 			if (now > REPEATTIME(f)) {
1037 				fprintlog(f, flags, (char *)NULL);
1038 				BACKOFF(f);
1039 			}
1040 		} else {
1041 			/* new line, save it */
1042 			if (f->f_prevcount)
1043 				fprintlog(f, 0, (char *)NULL);
1044 			f->f_repeatcount = 0;
1045 			f->f_prevpri = pri;
1046 			(void)strlcpy(f->f_lasttime, timestamp,
1047 				sizeof(f->f_lasttime));
1048 			(void)strlcpy(f->f_prevhost, from,
1049 			    sizeof(f->f_prevhost));
1050 			if (msglen < MAXSVLINE) {
1051 				f->f_prevlen = msglen;
1052 				(void)strlcpy(f->f_prevline, msg, sizeof(f->f_prevline));
1053 				fprintlog(f, flags, (char *)NULL);
1054 			} else {
1055 				f->f_prevline[0] = 0;
1056 				f->f_prevlen = 0;
1057 				fprintlog(f, flags, msg);
1058 			}
1059 		}
1060 	}
1061 	(void)sigsetmask(omask);
1062 }
1063 
1064 static void
1065 dofsync(void)
1066 {
1067 	struct filed *f;
1068 
1069 	for (f = Files; f; f = f->f_next) {
1070 		if ((f->f_type == F_FILE) &&
1071 		    (f->f_flags & FFLAG_NEEDSYNC)) {
1072 			f->f_flags &= ~FFLAG_NEEDSYNC;
1073 			(void)fsync(f->f_file);
1074 		}
1075 	}
1076 }
1077 
1078 #define IOV_SIZE 7
1079 static void
1080 fprintlog(struct filed *f, int flags, const char *msg)
1081 {
1082 	struct iovec iov[IOV_SIZE];
1083 	struct iovec *v;
1084 	struct addrinfo *r;
1085 	int i, l, lsent = 0;
1086 	char line[MAXLINE + 1], repbuf[80], greetings[200], *wmsg = NULL;
1087 	char nul[] = "", space[] = " ", lf[] = "\n", crlf[] = "\r\n";
1088 	const char *msgret;
1089 
1090 	v = iov;
1091 	if (f->f_type == F_WALL) {
1092 		v->iov_base = greetings;
1093 		/* The time displayed is not synchornized with the other log
1094 		 * destinations (like messages).  Following fragment was using
1095 		 * ctime(&now), which was updating the time every 30 sec.
1096 		 * With f_lasttime, time is synchronized correctly.
1097 		 */
1098 		v->iov_len = snprintf(greetings, sizeof greetings,
1099 		    "\r\n\7Message from syslogd@%s at %.24s ...\r\n",
1100 		    f->f_prevhost, f->f_lasttime);
1101 		if (v->iov_len >= sizeof greetings)
1102 			v->iov_len = sizeof greetings - 1;
1103 		v++;
1104 		v->iov_base = nul;
1105 		v->iov_len = 0;
1106 		v++;
1107 	} else {
1108 		v->iov_base = f->f_lasttime;
1109 		v->iov_len = strlen(f->f_lasttime);
1110 		v++;
1111 		v->iov_base = space;
1112 		v->iov_len = 1;
1113 		v++;
1114 	}
1115 
1116 	if (LogFacPri) {
1117 	  	static char fp_buf[30];	/* Hollow laugh */
1118 		int fac = f->f_prevpri & LOG_FACMASK;
1119 		int pri = LOG_PRI(f->f_prevpri);
1120 		const char *f_s = NULL;
1121 		char f_n[5];	/* Hollow laugh */
1122 		const char *p_s = NULL;
1123 		char p_n[5];	/* Hollow laugh */
1124 
1125 		if (LogFacPri > 1) {
1126 		  const CODE *c;
1127 
1128 		  for (c = facilitynames; c->c_name; c++) {
1129 		    if (c->c_val == fac) {
1130 		      f_s = c->c_name;
1131 		      break;
1132 		    }
1133 		  }
1134 		  for (c = prioritynames; c->c_name; c++) {
1135 		    if (c->c_val == pri) {
1136 		      p_s = c->c_name;
1137 		      break;
1138 		    }
1139 		  }
1140 		}
1141 		if (!f_s) {
1142 		  snprintf(f_n, sizeof f_n, "%d", LOG_FAC(fac));
1143 		  f_s = f_n;
1144 		}
1145 		if (!p_s) {
1146 		  snprintf(p_n, sizeof p_n, "%d", pri);
1147 		  p_s = p_n;
1148 		}
1149 		snprintf(fp_buf, sizeof fp_buf, "<%s.%s> ", f_s, p_s);
1150 		v->iov_base = fp_buf;
1151 		v->iov_len = strlen(fp_buf);
1152 	} else {
1153 		v->iov_base = nul;
1154 		v->iov_len = 0;
1155 	}
1156 	v++;
1157 
1158 	v->iov_base = f->f_prevhost;
1159 	v->iov_len = strlen(v->iov_base);
1160 	v++;
1161 	v->iov_base = space;
1162 	v->iov_len = 1;
1163 	v++;
1164 
1165 	if (msg) {
1166 		wmsg = strdup(msg); /* XXX iov_base needs a `const' sibling. */
1167 		if (wmsg == NULL) {
1168 			logerror("strdup");
1169 			exit(1);
1170 		}
1171 		v->iov_base = wmsg;
1172 		v->iov_len = strlen(msg);
1173 	} else if (f->f_prevcount > 1) {
1174 		v->iov_base = repbuf;
1175 		v->iov_len = snprintf(repbuf, sizeof repbuf,
1176 		    "last message repeated %d times", f->f_prevcount);
1177 	} else if (f->f_prevline) {
1178 		v->iov_base = f->f_prevline;
1179 		v->iov_len = f->f_prevlen;
1180 	} else {
1181 		return;
1182 	}
1183 	v++;
1184 
1185 	dprintf("Logging to %s", TypeNames[f->f_type]);
1186 	f->f_time = now;
1187 
1188 	switch (f->f_type) {
1189 		int port;
1190 	case F_UNUSED:
1191 		dprintf("\n");
1192 		break;
1193 
1194 	case F_FORW:
1195 		port = (int)ntohs(((struct sockaddr_in *)
1196 			    (f->f_un.f_forw.f_addr->ai_addr))->sin_port);
1197 		if (port != 514) {
1198 			dprintf(" %s:%d\n", f->f_un.f_forw.f_hname, port);
1199 		} else {
1200 			dprintf(" %s\n", f->f_un.f_forw.f_hname);
1201 		}
1202 		/* check for local vs remote messages */
1203 		if (strcasecmp(f->f_prevhost, LocalHostName))
1204 			l = snprintf(line, sizeof line - 1,
1205 			    "<%d>%.15s Forwarded from %s: %s",
1206 			    f->f_prevpri, (char *)iov[0].iov_base,
1207 			    f->f_prevhost, (char *)iov[5].iov_base);
1208 		else
1209 			l = snprintf(line, sizeof line - 1, "<%d>%.15s %s",
1210 			     f->f_prevpri, (char *)iov[0].iov_base,
1211 			    (char *)iov[5].iov_base);
1212 		if (l < 0)
1213 			l = 0;
1214 		else if (l > MAXLINE)
1215 			l = MAXLINE;
1216 
1217 		if (finet) {
1218 			for (r = f->f_un.f_forw.f_addr; r; r = r->ai_next) {
1219 				for (i = 0; i < *finet; i++) {
1220 #if 0
1221 					/*
1222 					 * should we check AF first, or just
1223 					 * trial and error? FWD
1224 					 */
1225 					if (r->ai_family ==
1226 					    address_family_of(finet[i+1]))
1227 #endif
1228 					lsent = sendto(finet[i+1], line, l, 0,
1229 					    r->ai_addr, r->ai_addrlen);
1230 					if (lsent == l)
1231 						break;
1232 				}
1233 				if (lsent == l && !send_to_all)
1234 					break;
1235 			}
1236 			dprintf("lsent/l: %d/%d\n", lsent, l);
1237 			if (lsent != l) {
1238 				int e = errno;
1239 				logerror("sendto");
1240 				errno = e;
1241 				switch (errno) {
1242 				case ENOBUFS:
1243 				case ENETDOWN:
1244 				case EHOSTUNREACH:
1245 				case EHOSTDOWN:
1246 					break;
1247 				/* case EBADF: */
1248 				/* case EACCES: */
1249 				/* case ENOTSOCK: */
1250 				/* case EFAULT: */
1251 				/* case EMSGSIZE: */
1252 				/* case EAGAIN: */
1253 				/* case ENOBUFS: */
1254 				/* case ECONNREFUSED: */
1255 				default:
1256 					dprintf("removing entry\n");
1257 					f->f_type = F_UNUSED;
1258 					break;
1259 				}
1260 			}
1261 		}
1262 		break;
1263 
1264 	case F_FILE:
1265 		dprintf(" %s\n", f->f_un.f_fname);
1266 		v->iov_base = lf;
1267 		v->iov_len = 1;
1268 		if (writev(f->f_file, iov, IOV_SIZE) < 0) {
1269 			/*
1270 			 * If writev(2) fails for potentially transient errors
1271 			 * like the filesystem being full, ignore it.
1272 			 * Otherwise remove this logfile from the list.
1273 			 */
1274 			if (errno != ENOSPC) {
1275 				int e = errno;
1276 				(void)close(f->f_file);
1277 				f->f_type = F_UNUSED;
1278 				errno = e;
1279 				logerror(f->f_un.f_fname);
1280 			}
1281 		} else if ((flags & SYNC_FILE) && (f->f_flags & FFLAG_SYNC)) {
1282 			f->f_flags |= FFLAG_NEEDSYNC;
1283 			needdofsync = 1;
1284 		}
1285 		break;
1286 
1287 	case F_PIPE:
1288 		dprintf(" %s\n", f->f_un.f_pipe.f_pname);
1289 		v->iov_base = lf;
1290 		v->iov_len = 1;
1291 		if (f->f_un.f_pipe.f_pid == 0) {
1292 			if ((f->f_file = p_open(f->f_un.f_pipe.f_pname,
1293 						&f->f_un.f_pipe.f_pid)) < 0) {
1294 				f->f_type = F_UNUSED;
1295 				logerror(f->f_un.f_pipe.f_pname);
1296 				break;
1297 			}
1298 		}
1299 		if (writev(f->f_file, iov, IOV_SIZE) < 0) {
1300 			int e = errno;
1301 			(void)close(f->f_file);
1302 			if (f->f_un.f_pipe.f_pid > 0)
1303 				deadq_enter(f->f_un.f_pipe.f_pid,
1304 					    f->f_un.f_pipe.f_pname);
1305 			f->f_un.f_pipe.f_pid = 0;
1306 			errno = e;
1307 			logerror(f->f_un.f_pipe.f_pname);
1308 		}
1309 		break;
1310 
1311 	case F_CONSOLE:
1312 		if (flags & IGN_CONS) {
1313 			dprintf(" (ignored)\n");
1314 			break;
1315 		}
1316 		/* FALLTHROUGH */
1317 
1318 	case F_TTY:
1319 		dprintf(" %s%s\n", _PATH_DEV, f->f_un.f_fname);
1320 		v->iov_base = crlf;
1321 		v->iov_len = 2;
1322 
1323 		errno = 0;	/* ttymsg() only sometimes returns an errno */
1324 		if ((msgret = ttymsg(iov, IOV_SIZE, f->f_un.f_fname, 10))) {
1325 			f->f_type = F_UNUSED;
1326 			logerror(msgret);
1327 		}
1328 		break;
1329 
1330 	case F_USERS:
1331 	case F_WALL:
1332 		dprintf("\n");
1333 		v->iov_base = crlf;
1334 		v->iov_len = 2;
1335 		wallmsg(f, iov, IOV_SIZE);
1336 		break;
1337 	}
1338 	f->f_prevcount = 0;
1339 	free(wmsg);
1340 }
1341 
1342 /*
1343  *  WALLMSG -- Write a message to the world at large
1344  *
1345  *	Write the specified message to either the entire
1346  *	world, or a list of approved users.
1347  */
1348 static void
1349 wallmsg(struct filed *f, struct iovec *iov, const int iovlen)
1350 {
1351 	static int reenter;			/* avoid calling ourselves */
1352 	struct utmpx *ut;
1353 	int i;
1354 	const char *p;
1355 
1356 	if (reenter++)
1357 		return;
1358 	setutxent();
1359 	/* NOSTRICT */
1360 	while ((ut = getutxent()) != NULL) {
1361 		if (ut->ut_type != USER_PROCESS)
1362 			continue;
1363 		if (f->f_type == F_WALL) {
1364 			if ((p = ttymsg(iov, iovlen, ut->ut_line,
1365 			    TTYMSGTIME)) != NULL) {
1366 				errno = 0;	/* already in msg */
1367 				logerror(p);
1368 			}
1369 			continue;
1370 		}
1371 		/* should we send the message to this user? */
1372 		for (i = 0; i < MAXUNAMES; i++) {
1373 			if (!f->f_un.f_uname[i][0])
1374 				break;
1375 			if (!strcmp(f->f_un.f_uname[i], ut->ut_user)) {
1376 				if ((p = ttymsg(iov, iovlen, ut->ut_line,
1377 				    TTYMSGTIME)) != NULL) {
1378 					errno = 0;	/* already in msg */
1379 					logerror(p);
1380 				}
1381 				break;
1382 			}
1383 		}
1384 	}
1385 	endutxent();
1386 	reenter = 0;
1387 }
1388 
1389 static void
1390 reapchild(int signo __unused)
1391 {
1392 	int status;
1393 	pid_t pid;
1394 	struct filed *f;
1395 
1396 	while ((pid = wait3(&status, WNOHANG, (struct rusage *)NULL)) > 0) {
1397 		if (!Initialized)
1398 			/* Don't tell while we are initting. */
1399 			continue;
1400 
1401 		/* First, look if it's a process from the dead queue. */
1402 		if (deadq_remove(pid))
1403 			goto oncemore;
1404 
1405 		/* Now, look in list of active processes. */
1406 		for (f = Files; f; f = f->f_next)
1407 			if (f->f_type == F_PIPE &&
1408 			    f->f_un.f_pipe.f_pid == pid) {
1409 				(void)close(f->f_file);
1410 				f->f_un.f_pipe.f_pid = 0;
1411 				log_deadchild(pid, status,
1412 					      f->f_un.f_pipe.f_pname);
1413 				break;
1414 			}
1415 	  oncemore:
1416 		continue;
1417 	}
1418 }
1419 
1420 /*
1421  * Return a printable representation of a host address.
1422  */
1423 static const char *
1424 cvthname(struct sockaddr *f)
1425 {
1426 	int error, hl;
1427 	sigset_t omask, nmask;
1428 	static char hname[NI_MAXHOST], ip[NI_MAXHOST];
1429 
1430 	error = getnameinfo((struct sockaddr *)f,
1431 			    ((struct sockaddr *)f)->sa_len,
1432 			    ip, sizeof ip, NULL, 0, NI_NUMERICHOST);
1433 	dprintf("cvthname(%s)\n", ip);
1434 
1435 	if (error) {
1436 		dprintf("Malformed from address %s\n", gai_strerror(error));
1437 		return ("???");
1438 	}
1439 	if (!resolve)
1440 		return (ip);
1441 
1442 	sigemptyset(&nmask);
1443 	sigaddset(&nmask, SIGHUP);
1444 	sigprocmask(SIG_BLOCK, &nmask, &omask);
1445 	error = getnameinfo((struct sockaddr *)f,
1446 			    ((struct sockaddr *)f)->sa_len,
1447 			    hname, sizeof hname, NULL, 0, NI_NAMEREQD);
1448 	sigprocmask(SIG_SETMASK, &omask, NULL);
1449 	if (error) {
1450 		dprintf("Host name for your address (%s) unknown\n", ip);
1451 		return (ip);
1452 	}
1453 	hl = strlen(hname);
1454 	if (hl > 0 && hname[hl-1] == '.')
1455 		hname[--hl] = '\0';
1456 	trimdomain(hname, hl);
1457 	return (hname);
1458 }
1459 
1460 static void
1461 dodie(int signo)
1462 {
1463 
1464 	WantDie = signo;
1465 }
1466 
1467 static void
1468 domark(int signo __unused)
1469 {
1470 
1471 	MarkSet = 1;
1472 }
1473 
1474 /*
1475  * Print syslogd errors some place.
1476  */
1477 static void
1478 logerror(const char *type)
1479 {
1480 	char buf[512];
1481 	static int recursed = 0;
1482 
1483 	/* If there's an error while trying to log an error, give up. */
1484 	if (recursed)
1485 		return;
1486 	recursed++;
1487 	if (errno)
1488 		(void)snprintf(buf,
1489 		    sizeof buf, "syslogd: %s: %s", type, strerror(errno));
1490 	else
1491 		(void)snprintf(buf, sizeof buf, "syslogd: %s", type);
1492 	errno = 0;
1493 	dprintf("%s\n", buf);
1494 	logmsg(LOG_SYSLOG|LOG_ERR, buf, LocalHostName, ADDDATE);
1495 	recursed--;
1496 }
1497 
1498 static void
1499 die(int signo)
1500 {
1501 	struct filed *f;
1502 	struct funix *fx;
1503 	int was_initialized;
1504 	char buf[100];
1505 
1506 	was_initialized = Initialized;
1507 	Initialized = 0;	/* Don't log SIGCHLDs. */
1508 	for (f = Files; f != NULL; f = f->f_next) {
1509 		/* flush any pending output */
1510 		if (f->f_prevcount)
1511 			fprintlog(f, 0, (char *)NULL);
1512 		if (f->f_type == F_PIPE && f->f_un.f_pipe.f_pid > 0) {
1513 			(void)close(f->f_file);
1514 			f->f_un.f_pipe.f_pid = 0;
1515 		}
1516 	}
1517 	Initialized = was_initialized;
1518 	if (signo) {
1519 		dprintf("syslogd: exiting on signal %d\n", signo);
1520 		(void)snprintf(buf, sizeof(buf), "exiting on signal %d", signo);
1521 		errno = 0;
1522 		logerror(buf);
1523 	}
1524 	STAILQ_FOREACH(fx, &funixes, next)
1525 		(void)unlink(fx->name);
1526 	pidfile_remove(pfh);
1527 
1528 	exit(1);
1529 }
1530 
1531 /*
1532  *  INIT -- Initialize syslogd from configuration table
1533  */
1534 static void
1535 init(int signo)
1536 {
1537 	int i;
1538 	FILE *cf;
1539 	struct filed *f, *next, **nextp;
1540 	char *p;
1541 	char cline[LINE_MAX];
1542  	char prog[NAME_MAX+1];
1543 	char host[MAXHOSTNAMELEN];
1544 	char oldLocalHostName[MAXHOSTNAMELEN];
1545 	char hostMsg[2*MAXHOSTNAMELEN+40];
1546 	char bootfileMsg[LINE_MAX];
1547 
1548 	dprintf("init\n");
1549 
1550 	/*
1551 	 * Load hostname (may have changed).
1552 	 */
1553 	if (signo != 0)
1554 		(void)strlcpy(oldLocalHostName, LocalHostName,
1555 		    sizeof(oldLocalHostName));
1556 	if (gethostname(LocalHostName, sizeof(LocalHostName)))
1557 		err(EX_OSERR, "gethostname() failed");
1558 	if ((p = strchr(LocalHostName, '.')) != NULL) {
1559 		*p++ = '\0';
1560 		LocalDomain = p;
1561 	} else {
1562 		LocalDomain = "";
1563 	}
1564 
1565 	/*
1566 	 *  Close all open log files.
1567 	 */
1568 	Initialized = 0;
1569 	for (f = Files; f != NULL; f = next) {
1570 		/* flush any pending output */
1571 		if (f->f_prevcount)
1572 			fprintlog(f, 0, (char *)NULL);
1573 
1574 		switch (f->f_type) {
1575 		case F_FILE:
1576 		case F_FORW:
1577 		case F_CONSOLE:
1578 		case F_TTY:
1579 			(void)close(f->f_file);
1580 			break;
1581 		case F_PIPE:
1582 			if (f->f_un.f_pipe.f_pid > 0) {
1583 				(void)close(f->f_file);
1584 				deadq_enter(f->f_un.f_pipe.f_pid,
1585 					    f->f_un.f_pipe.f_pname);
1586 			}
1587 			f->f_un.f_pipe.f_pid = 0;
1588 			break;
1589 		}
1590 		next = f->f_next;
1591 		if (f->f_program) free(f->f_program);
1592 		if (f->f_host) free(f->f_host);
1593 		free((char *)f);
1594 	}
1595 	Files = NULL;
1596 	nextp = &Files;
1597 
1598 	/* open the configuration file */
1599 	if ((cf = fopen(ConfFile, "r")) == NULL) {
1600 		dprintf("cannot open %s\n", ConfFile);
1601 		*nextp = (struct filed *)calloc(1, sizeof(*f));
1602 		if (*nextp == NULL) {
1603 			logerror("calloc");
1604 			exit(1);
1605 		}
1606 		cfline("*.ERR\t/dev/console", *nextp, "*", "*");
1607 		(*nextp)->f_next = (struct filed *)calloc(1, sizeof(*f));
1608 		if ((*nextp)->f_next == NULL) {
1609 			logerror("calloc");
1610 			exit(1);
1611 		}
1612 		cfline("*.PANIC\t*", (*nextp)->f_next, "*", "*");
1613 		Initialized = 1;
1614 		return;
1615 	}
1616 
1617 	/*
1618 	 *  Foreach line in the conf table, open that file.
1619 	 */
1620 	f = NULL;
1621 	(void)strlcpy(host, "*", sizeof(host));
1622 	(void)strlcpy(prog, "*", sizeof(prog));
1623 	while (fgets(cline, sizeof(cline), cf) != NULL) {
1624 		/*
1625 		 * check for end-of-section, comments, strip off trailing
1626 		 * spaces and newline character. #!prog is treated specially:
1627 		 * following lines apply only to that program.
1628 		 */
1629 		for (p = cline; isspace(*p); ++p)
1630 			continue;
1631 		if (*p == 0)
1632 			continue;
1633 		if (*p == '#') {
1634 			p++;
1635 			if (*p != '!' && *p != '+' && *p != '-')
1636 				continue;
1637 		}
1638 		if (*p == '+' || *p == '-') {
1639 			host[0] = *p++;
1640 			while (isspace(*p))
1641 				p++;
1642 			if ((!*p) || (*p == '*')) {
1643 				(void)strlcpy(host, "*", sizeof(host));
1644 				continue;
1645 			}
1646 			if (*p == '@')
1647 				p = LocalHostName;
1648 			for (i = 1; i < MAXHOSTNAMELEN - 1; i++) {
1649 				if (!isalnum(*p) && *p != '.' && *p != '-'
1650 				    && *p != ',' && *p != ':' && *p != '%')
1651 					break;
1652 				host[i] = *p++;
1653 			}
1654 			host[i] = '\0';
1655 			continue;
1656 		}
1657 		if (*p == '!') {
1658 			p++;
1659 			while (isspace(*p)) p++;
1660 			if ((!*p) || (*p == '*')) {
1661 				(void)strlcpy(prog, "*", sizeof(prog));
1662 				continue;
1663 			}
1664 			for (i = 0; i < NAME_MAX; i++) {
1665 				if (!isprint(p[i]) || isspace(p[i]))
1666 					break;
1667 				prog[i] = p[i];
1668 			}
1669 			prog[i] = 0;
1670 			continue;
1671 		}
1672 		for (p = cline + 1; *p != '\0'; p++) {
1673 			if (*p != '#')
1674 				continue;
1675 			if (*(p - 1) == '\\') {
1676 				strcpy(p - 1, p);
1677 				p--;
1678 				continue;
1679 			}
1680 			*p = '\0';
1681 			break;
1682 		}
1683 		for (i = strlen(cline) - 1; i >= 0 && isspace(cline[i]); i--)
1684 			cline[i] = '\0';
1685 		f = (struct filed *)calloc(1, sizeof(*f));
1686 		if (f == NULL) {
1687 			logerror("calloc");
1688 			exit(1);
1689 		}
1690 		*nextp = f;
1691 		nextp = &f->f_next;
1692 		cfline(cline, f, prog, host);
1693 	}
1694 
1695 	/* close the configuration file */
1696 	(void)fclose(cf);
1697 
1698 	Initialized = 1;
1699 
1700 	if (Debug) {
1701 		int port;
1702 		for (f = Files; f; f = f->f_next) {
1703 			for (i = 0; i <= LOG_NFACILITIES; i++)
1704 				if (f->f_pmask[i] == INTERNAL_NOPRI)
1705 					printf("X ");
1706 				else
1707 					printf("%d ", f->f_pmask[i]);
1708 			printf("%s: ", TypeNames[f->f_type]);
1709 			switch (f->f_type) {
1710 			case F_FILE:
1711 				printf("%s", f->f_un.f_fname);
1712 				break;
1713 
1714 			case F_CONSOLE:
1715 			case F_TTY:
1716 				printf("%s%s", _PATH_DEV, f->f_un.f_fname);
1717 				break;
1718 
1719 			case F_FORW:
1720 				port = (int)ntohs(((struct sockaddr_in *)
1721 				    (f->f_un.f_forw.f_addr->ai_addr))->sin_port);
1722 				if (port != 514) {
1723 					printf("%s:%d",
1724 						f->f_un.f_forw.f_hname, port);
1725 				} else {
1726 					printf("%s", f->f_un.f_forw.f_hname);
1727 				}
1728 				break;
1729 
1730 			case F_PIPE:
1731 				printf("%s", f->f_un.f_pipe.f_pname);
1732 				break;
1733 
1734 			case F_USERS:
1735 				for (i = 0; i < MAXUNAMES && *f->f_un.f_uname[i]; i++)
1736 					printf("%s, ", f->f_un.f_uname[i]);
1737 				break;
1738 			}
1739 			if (f->f_program)
1740 				printf(" (%s)", f->f_program);
1741 			printf("\n");
1742 		}
1743 	}
1744 
1745 	logmsg(LOG_SYSLOG|LOG_INFO, "syslogd: restart", LocalHostName, ADDDATE);
1746 	dprintf("syslogd: restarted\n");
1747 	/*
1748 	 * Log a change in hostname, but only on a restart.
1749 	 */
1750 	if (signo != 0 && strcmp(oldLocalHostName, LocalHostName) != 0) {
1751 		(void)snprintf(hostMsg, sizeof(hostMsg),
1752 		    "syslogd: hostname changed, \"%s\" to \"%s\"",
1753 		    oldLocalHostName, LocalHostName);
1754 		logmsg(LOG_SYSLOG|LOG_INFO, hostMsg, LocalHostName, ADDDATE);
1755 		dprintf("%s\n", hostMsg);
1756 	}
1757 	/*
1758 	 * Log the kernel boot file if we aren't going to use it as
1759 	 * the prefix, and if this is *not* a restart.
1760 	 */
1761 	if (signo == 0 && !use_bootfile) {
1762 		(void)snprintf(bootfileMsg, sizeof(bootfileMsg),
1763 		    "syslogd: kernel boot file is %s", bootfile);
1764 		logmsg(LOG_KERN|LOG_INFO, bootfileMsg, LocalHostName, ADDDATE);
1765 		dprintf("%s\n", bootfileMsg);
1766 	}
1767 }
1768 
1769 /*
1770  * Crack a configuration file line
1771  */
1772 static void
1773 cfline(const char *line, struct filed *f, const char *prog, const char *host)
1774 {
1775 	struct addrinfo hints, *res;
1776 	int error, i, pri, syncfile;
1777 	const char *p, *q;
1778 	char *bp;
1779 	char buf[MAXLINE], ebuf[100];
1780 
1781 	dprintf("cfline(\"%s\", f, \"%s\", \"%s\")\n", line, prog, host);
1782 
1783 	errno = 0;	/* keep strerror() stuff out of logerror messages */
1784 
1785 	/* clear out file entry */
1786 	memset(f, 0, sizeof(*f));
1787 	for (i = 0; i <= LOG_NFACILITIES; i++)
1788 		f->f_pmask[i] = INTERNAL_NOPRI;
1789 
1790 	/* save hostname if any */
1791 	if (host && *host == '*')
1792 		host = NULL;
1793 	if (host) {
1794 		int hl;
1795 
1796 		f->f_host = strdup(host);
1797 		if (f->f_host == NULL) {
1798 			logerror("strdup");
1799 			exit(1);
1800 		}
1801 		hl = strlen(f->f_host);
1802 		if (hl > 0 && f->f_host[hl-1] == '.')
1803 			f->f_host[--hl] = '\0';
1804 		trimdomain(f->f_host, hl);
1805 	}
1806 
1807 	/* save program name if any */
1808 	if (prog && *prog == '*')
1809 		prog = NULL;
1810 	if (prog) {
1811 		f->f_program = strdup(prog);
1812 		if (f->f_program == NULL) {
1813 			logerror("strdup");
1814 			exit(1);
1815 		}
1816 	}
1817 
1818 	/* scan through the list of selectors */
1819 	for (p = line; *p && *p != '\t' && *p != ' ';) {
1820 		int pri_done;
1821 		int pri_cmp;
1822 		int pri_invert;
1823 
1824 		/* find the end of this facility name list */
1825 		for (q = p; *q && *q != '\t' && *q != ' ' && *q++ != '.'; )
1826 			continue;
1827 
1828 		/* get the priority comparison */
1829 		pri_cmp = 0;
1830 		pri_done = 0;
1831 		pri_invert = 0;
1832 		if (*q == '!') {
1833 			pri_invert = 1;
1834 			q++;
1835 		}
1836 		while (!pri_done) {
1837 			switch (*q) {
1838 			case '<':
1839 				pri_cmp |= PRI_LT;
1840 				q++;
1841 				break;
1842 			case '=':
1843 				pri_cmp |= PRI_EQ;
1844 				q++;
1845 				break;
1846 			case '>':
1847 				pri_cmp |= PRI_GT;
1848 				q++;
1849 				break;
1850 			default:
1851 				pri_done++;
1852 				break;
1853 			}
1854 		}
1855 
1856 		/* collect priority name */
1857 		for (bp = buf; *q && !strchr("\t,; ", *q); )
1858 			*bp++ = *q++;
1859 		*bp = '\0';
1860 
1861 		/* skip cruft */
1862 		while (strchr(",;", *q))
1863 			q++;
1864 
1865 		/* decode priority name */
1866 		if (*buf == '*') {
1867 			pri = LOG_PRIMASK;
1868 			pri_cmp = PRI_LT | PRI_EQ | PRI_GT;
1869 		} else {
1870 			/* Ignore trailing spaces. */
1871 			for (i = strlen(buf) - 1; i >= 0 && buf[i] == ' '; i--)
1872 				buf[i] = '\0';
1873 
1874 			pri = decode(buf, prioritynames);
1875 			if (pri < 0) {
1876 				(void)snprintf(ebuf, sizeof ebuf,
1877 				    "unknown priority name \"%s\"", buf);
1878 				logerror(ebuf);
1879 				return;
1880 			}
1881 		}
1882 		if (!pri_cmp)
1883 			pri_cmp = (UniquePriority)
1884 				  ? (PRI_EQ)
1885 				  : (PRI_EQ | PRI_GT)
1886 				  ;
1887 		if (pri_invert)
1888 			pri_cmp ^= PRI_LT | PRI_EQ | PRI_GT;
1889 
1890 		/* scan facilities */
1891 		while (*p && !strchr("\t.; ", *p)) {
1892 			for (bp = buf; *p && !strchr("\t,;. ", *p); )
1893 				*bp++ = *p++;
1894 			*bp = '\0';
1895 
1896 			if (*buf == '*') {
1897 				for (i = 0; i < LOG_NFACILITIES; i++) {
1898 					f->f_pmask[i] = pri;
1899 					f->f_pcmp[i] = pri_cmp;
1900 				}
1901 			} else {
1902 				i = decode(buf, facilitynames);
1903 				if (i < 0) {
1904 					(void)snprintf(ebuf, sizeof ebuf,
1905 					    "unknown facility name \"%s\"",
1906 					    buf);
1907 					logerror(ebuf);
1908 					return;
1909 				}
1910 				f->f_pmask[i >> 3] = pri;
1911 				f->f_pcmp[i >> 3] = pri_cmp;
1912 			}
1913 			while (*p == ',' || *p == ' ')
1914 				p++;
1915 		}
1916 
1917 		p = q;
1918 	}
1919 
1920 	/* skip to action part */
1921 	while (*p == '\t' || *p == ' ')
1922 		p++;
1923 
1924 	if (*p == '-') {
1925 		syncfile = 0;
1926 		p++;
1927 	} else
1928 		syncfile = 1;
1929 
1930 	switch (*p) {
1931 	case '@':
1932 		{
1933 			char *tp;
1934 			char endkey = ':';
1935 			/*
1936 			 * scan forward to see if there is a port defined.
1937 			 * so we can't use strlcpy..
1938 			 */
1939 			i = sizeof(f->f_un.f_forw.f_hname);
1940 			tp = f->f_un.f_forw.f_hname;
1941 			p++;
1942 
1943 			/*
1944 			 * an ipv6 address should start with a '[' in that case
1945 			 * we should scan for a ']'
1946 			 */
1947 			if (*p == '[') {
1948 				p++;
1949 				endkey = ']';
1950 			}
1951 			while (*p && (*p != endkey) && (i-- > 0)) {
1952 				*tp++ = *p++;
1953 			}
1954 			if (endkey == ']' && *p == endkey)
1955 				p++;
1956 			*tp = '\0';
1957 		}
1958 		/* See if we copied a domain and have a port */
1959 		if (*p == ':')
1960 			p++;
1961 		else
1962 			p = NULL;
1963 
1964 		memset(&hints, 0, sizeof(hints));
1965 		hints.ai_family = family;
1966 		hints.ai_socktype = SOCK_DGRAM;
1967 		error = getaddrinfo(f->f_un.f_forw.f_hname,
1968 				p ? p : "syslog", &hints, &res);
1969 		if (error) {
1970 			logerror(gai_strerror(error));
1971 			break;
1972 		}
1973 		f->f_un.f_forw.f_addr = res;
1974 		f->f_type = F_FORW;
1975 		break;
1976 
1977 	case '/':
1978 		if ((f->f_file = open(p, logflags, 0600)) < 0) {
1979 			f->f_type = F_UNUSED;
1980 			logerror(p);
1981 			break;
1982 		}
1983 		if (syncfile)
1984 			f->f_flags |= FFLAG_SYNC;
1985 		if (isatty(f->f_file)) {
1986 			if (strcmp(p, ctty) == 0)
1987 				f->f_type = F_CONSOLE;
1988 			else
1989 				f->f_type = F_TTY;
1990 			(void)strlcpy(f->f_un.f_fname, p + sizeof(_PATH_DEV) - 1,
1991 			    sizeof(f->f_un.f_fname));
1992 		} else {
1993 			(void)strlcpy(f->f_un.f_fname, p, sizeof(f->f_un.f_fname));
1994 			f->f_type = F_FILE;
1995 		}
1996 		break;
1997 
1998 	case '|':
1999 		f->f_un.f_pipe.f_pid = 0;
2000 		(void)strlcpy(f->f_un.f_pipe.f_pname, p + 1,
2001 		    sizeof(f->f_un.f_pipe.f_pname));
2002 		f->f_type = F_PIPE;
2003 		break;
2004 
2005 	case '*':
2006 		f->f_type = F_WALL;
2007 		break;
2008 
2009 	default:
2010 		for (i = 0; i < MAXUNAMES && *p; i++) {
2011 			for (q = p; *q && *q != ','; )
2012 				q++;
2013 			(void)strncpy(f->f_un.f_uname[i], p, MAXLOGNAME - 1);
2014 			if ((q - p) >= MAXLOGNAME)
2015 				f->f_un.f_uname[i][MAXLOGNAME - 1] = '\0';
2016 			else
2017 				f->f_un.f_uname[i][q - p] = '\0';
2018 			while (*q == ',' || *q == ' ')
2019 				q++;
2020 			p = q;
2021 		}
2022 		f->f_type = F_USERS;
2023 		break;
2024 	}
2025 }
2026 
2027 
2028 /*
2029  *  Decode a symbolic name to a numeric value
2030  */
2031 static int
2032 decode(const char *name, const CODE *codetab)
2033 {
2034 	const CODE *c;
2035 	char *p, buf[40];
2036 
2037 	if (isdigit(*name))
2038 		return (atoi(name));
2039 
2040 	for (p = buf; *name && p < &buf[sizeof(buf) - 1]; p++, name++) {
2041 		if (isupper(*name))
2042 			*p = tolower(*name);
2043 		else
2044 			*p = *name;
2045 	}
2046 	*p = '\0';
2047 	for (c = codetab; c->c_name; c++)
2048 		if (!strcmp(buf, c->c_name))
2049 			return (c->c_val);
2050 
2051 	return (-1);
2052 }
2053 
2054 static void
2055 markit(void)
2056 {
2057 	struct filed *f;
2058 	dq_t q, next;
2059 
2060 	now = time((time_t *)NULL);
2061 	MarkSeq += TIMERINTVL;
2062 	if (MarkSeq >= MarkInterval) {
2063 		logmsg(LOG_INFO, "-- MARK --",
2064 		    LocalHostName, ADDDATE|MARK);
2065 		MarkSeq = 0;
2066 	}
2067 
2068 	for (f = Files; f; f = f->f_next) {
2069 		if (f->f_prevcount && now >= REPEATTIME(f)) {
2070 			dprintf("flush %s: repeated %d times, %d sec.\n",
2071 			    TypeNames[f->f_type], f->f_prevcount,
2072 			    repeatinterval[f->f_repeatcount]);
2073 			fprintlog(f, 0, (char *)NULL);
2074 			BACKOFF(f);
2075 		}
2076 	}
2077 
2078 	/* Walk the dead queue, and see if we should signal somebody. */
2079 	for (q = TAILQ_FIRST(&deadq_head); q != NULL; q = next) {
2080 		next = TAILQ_NEXT(q, dq_entries);
2081 
2082 		switch (q->dq_timeout) {
2083 		case 0:
2084 			/* Already signalled once, try harder now. */
2085 			if (kill(q->dq_pid, SIGKILL) != 0)
2086 				(void)deadq_remove(q->dq_pid);
2087 			break;
2088 
2089 		case 1:
2090 			/*
2091 			 * Timed out on dead queue, send terminate
2092 			 * signal.  Note that we leave the removal
2093 			 * from the dead queue to reapchild(), which
2094 			 * will also log the event (unless the process
2095 			 * didn't even really exist, in case we simply
2096 			 * drop it from the dead queue).
2097 			 */
2098 			if (kill(q->dq_pid, SIGTERM) != 0)
2099 				(void)deadq_remove(q->dq_pid);
2100 			/* FALLTHROUGH */
2101 
2102 		default:
2103 			q->dq_timeout--;
2104 		}
2105 	}
2106 	MarkSet = 0;
2107 	(void)alarm(TIMERINTVL);
2108 }
2109 
2110 /*
2111  * fork off and become a daemon, but wait for the child to come online
2112  * before returing to the parent, or we get disk thrashing at boot etc.
2113  * Set a timer so we don't hang forever if it wedges.
2114  */
2115 static int
2116 waitdaemon(int nochdir, int noclose, int maxwait)
2117 {
2118 	int fd;
2119 	int status;
2120 	pid_t pid, childpid;
2121 
2122 	switch (childpid = fork()) {
2123 	case -1:
2124 		return (-1);
2125 	case 0:
2126 		break;
2127 	default:
2128 		signal(SIGALRM, timedout);
2129 		alarm(maxwait);
2130 		while ((pid = wait3(&status, 0, NULL)) != -1) {
2131 			if (WIFEXITED(status))
2132 				errx(1, "child pid %d exited with return code %d",
2133 					pid, WEXITSTATUS(status));
2134 			if (WIFSIGNALED(status))
2135 				errx(1, "child pid %d exited on signal %d%s",
2136 					pid, WTERMSIG(status),
2137 					WCOREDUMP(status) ? " (core dumped)" :
2138 					"");
2139 			if (pid == childpid)	/* it's gone... */
2140 				break;
2141 		}
2142 		exit(0);
2143 	}
2144 
2145 	if (setsid() == -1)
2146 		return (-1);
2147 
2148 	if (!nochdir)
2149 		(void)chdir("/");
2150 
2151 	if (!noclose && (fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
2152 		(void)dup2(fd, STDIN_FILENO);
2153 		(void)dup2(fd, STDOUT_FILENO);
2154 		(void)dup2(fd, STDERR_FILENO);
2155 		if (fd > 2)
2156 			(void)close (fd);
2157 	}
2158 	return (getppid());
2159 }
2160 
2161 /*
2162  * We get a SIGALRM from the child when it's running and finished doing it's
2163  * fsync()'s or O_SYNC writes for all the boot messages.
2164  *
2165  * We also get a signal from the kernel if the timer expires, so check to
2166  * see what happened.
2167  */
2168 static void
2169 timedout(int sig __unused)
2170 {
2171 	int left;
2172 	left = alarm(0);
2173 	signal(SIGALRM, SIG_DFL);
2174 	if (left == 0)
2175 		errx(1, "timed out waiting for child");
2176 	else
2177 		_exit(0);
2178 }
2179 
2180 /*
2181  * Add `s' to the list of allowable peer addresses to accept messages
2182  * from.
2183  *
2184  * `s' is a string in the form:
2185  *
2186  *    [*]domainname[:{servicename|portnumber|*}]
2187  *
2188  * or
2189  *
2190  *    netaddr/maskbits[:{servicename|portnumber|*}]
2191  *
2192  * Returns -1 on error, 0 if the argument was valid.
2193  */
2194 static int
2195 allowaddr(char *s)
2196 {
2197 	char *cp1, *cp2;
2198 	struct allowedpeer ap;
2199 	struct servent *se;
2200 	int masklen = -1;
2201 	struct addrinfo hints, *res;
2202 	struct in_addr *addrp, *maskp;
2203 #ifdef INET6
2204 	int i;
2205 	u_int32_t *addr6p, *mask6p;
2206 #endif
2207 	char ip[NI_MAXHOST];
2208 
2209 #ifdef INET6
2210 	if (*s != '[' || (cp1 = strchr(s + 1, ']')) == NULL)
2211 #endif
2212 		cp1 = s;
2213 	if ((cp1 = strrchr(cp1, ':'))) {
2214 		/* service/port provided */
2215 		*cp1++ = '\0';
2216 		if (strlen(cp1) == 1 && *cp1 == '*')
2217 			/* any port allowed */
2218 			ap.port = 0;
2219 		else if ((se = getservbyname(cp1, "udp"))) {
2220 			ap.port = ntohs(se->s_port);
2221 		} else {
2222 			ap.port = strtol(cp1, &cp2, 0);
2223 			if (*cp2 != '\0')
2224 				return (-1); /* port not numeric */
2225 		}
2226 	} else {
2227 		if ((se = getservbyname("syslog", "udp")))
2228 			ap.port = ntohs(se->s_port);
2229 		else
2230 			/* sanity, should not happen */
2231 			ap.port = 514;
2232 	}
2233 
2234 	if ((cp1 = strchr(s, '/')) != NULL &&
2235 	    strspn(cp1 + 1, "0123456789") == strlen(cp1 + 1)) {
2236 		*cp1 = '\0';
2237 		if ((masklen = atoi(cp1 + 1)) < 0)
2238 			return (-1);
2239 	}
2240 #ifdef INET6
2241 	if (*s == '[') {
2242 		cp2 = s + strlen(s) - 1;
2243 		if (*cp2 == ']') {
2244 			++s;
2245 			*cp2 = '\0';
2246 		} else {
2247 			cp2 = NULL;
2248 		}
2249 	} else {
2250 		cp2 = NULL;
2251 	}
2252 #endif
2253 	memset(&hints, 0, sizeof(hints));
2254 	hints.ai_family = PF_UNSPEC;
2255 	hints.ai_socktype = SOCK_DGRAM;
2256 	hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
2257 	if (getaddrinfo(s, NULL, &hints, &res) == 0) {
2258 		ap.isnumeric = 1;
2259 		memcpy(&ap.a_addr, res->ai_addr, res->ai_addrlen);
2260 		memset(&ap.a_mask, 0, sizeof(ap.a_mask));
2261 		ap.a_mask.ss_family = res->ai_family;
2262 		if (res->ai_family == AF_INET) {
2263 			ap.a_mask.ss_len = sizeof(struct sockaddr_in);
2264 			maskp = &((struct sockaddr_in *)&ap.a_mask)->sin_addr;
2265 			addrp = &((struct sockaddr_in *)&ap.a_addr)->sin_addr;
2266 			if (masklen < 0) {
2267 				/* use default netmask */
2268 				if (IN_CLASSA(ntohl(addrp->s_addr)))
2269 					maskp->s_addr = htonl(IN_CLASSA_NET);
2270 				else if (IN_CLASSB(ntohl(addrp->s_addr)))
2271 					maskp->s_addr = htonl(IN_CLASSB_NET);
2272 				else
2273 					maskp->s_addr = htonl(IN_CLASSC_NET);
2274 			} else if (masklen <= 32) {
2275 				/* convert masklen to netmask */
2276 				if (masklen == 0)
2277 					maskp->s_addr = 0;
2278 				else
2279 					maskp->s_addr = htonl(~((1 << (32 - masklen)) - 1));
2280 			} else {
2281 				freeaddrinfo(res);
2282 				return (-1);
2283 			}
2284 			/* Lose any host bits in the network number. */
2285 			addrp->s_addr &= maskp->s_addr;
2286 		}
2287 #ifdef INET6
2288 		else if (res->ai_family == AF_INET6 && masklen <= 128) {
2289 			ap.a_mask.ss_len = sizeof(struct sockaddr_in6);
2290 			if (masklen < 0)
2291 				masklen = 128;
2292 			mask6p = (u_int32_t *)&((struct sockaddr_in6 *)&ap.a_mask)->sin6_addr;
2293 			/* convert masklen to netmask */
2294 			while (masklen > 0) {
2295 				if (masklen < 32) {
2296 					*mask6p = htonl(~(0xffffffff >> masklen));
2297 					break;
2298 				}
2299 				*mask6p++ = 0xffffffff;
2300 				masklen -= 32;
2301 			}
2302 			/* Lose any host bits in the network number. */
2303 			mask6p = (u_int32_t *)&((struct sockaddr_in6 *)&ap.a_mask)->sin6_addr;
2304 			addr6p = (u_int32_t *)&((struct sockaddr_in6 *)&ap.a_addr)->sin6_addr;
2305 			for (i = 0; i < 4; i++)
2306 				addr6p[i] &= mask6p[i];
2307 		}
2308 #endif
2309 		else {
2310 			freeaddrinfo(res);
2311 			return (-1);
2312 		}
2313 		freeaddrinfo(res);
2314 	} else {
2315 		/* arg `s' is domain name */
2316 		ap.isnumeric = 0;
2317 		ap.a_name = s;
2318 		if (cp1)
2319 			*cp1 = '/';
2320 #ifdef INET6
2321 		if (cp2) {
2322 			*cp2 = ']';
2323 			--s;
2324 		}
2325 #endif
2326 	}
2327 
2328 	if (Debug) {
2329 		printf("allowaddr: rule %d: ", NumAllowed);
2330 		if (ap.isnumeric) {
2331 			printf("numeric, ");
2332 			getnameinfo((struct sockaddr *)&ap.a_addr,
2333 				    ((struct sockaddr *)&ap.a_addr)->sa_len,
2334 				    ip, sizeof ip, NULL, 0, NI_NUMERICHOST);
2335 			printf("addr = %s, ", ip);
2336 			getnameinfo((struct sockaddr *)&ap.a_mask,
2337 				    ((struct sockaddr *)&ap.a_mask)->sa_len,
2338 				    ip, sizeof ip, NULL, 0, NI_NUMERICHOST);
2339 			printf("mask = %s; ", ip);
2340 		} else {
2341 			printf("domainname = %s; ", ap.a_name);
2342 		}
2343 		printf("port = %d\n", ap.port);
2344 	}
2345 
2346 	if ((AllowedPeers = realloc(AllowedPeers,
2347 				    ++NumAllowed * sizeof(struct allowedpeer)))
2348 	    == NULL) {
2349 		logerror("realloc");
2350 		exit(1);
2351 	}
2352 	memcpy(&AllowedPeers[NumAllowed - 1], &ap, sizeof(struct allowedpeer));
2353 	return (0);
2354 }
2355 
2356 /*
2357  * Validate that the remote peer has permission to log to us.
2358  */
2359 static int
2360 validate(struct sockaddr *sa, const char *hname)
2361 {
2362 	int i;
2363 	size_t l1, l2;
2364 	char *cp, name[NI_MAXHOST], ip[NI_MAXHOST], port[NI_MAXSERV];
2365 	struct allowedpeer *ap;
2366 	struct sockaddr_in *sin4, *a4p = NULL, *m4p = NULL;
2367 #ifdef INET6
2368 	int j, reject;
2369 	struct sockaddr_in6 *sin6, *a6p = NULL, *m6p = NULL;
2370 #endif
2371 	struct addrinfo hints, *res;
2372 	u_short sport;
2373 
2374 	if (NumAllowed == 0)
2375 		/* traditional behaviour, allow everything */
2376 		return (1);
2377 
2378 	(void)strlcpy(name, hname, sizeof(name));
2379 	memset(&hints, 0, sizeof(hints));
2380 	hints.ai_family = PF_UNSPEC;
2381 	hints.ai_socktype = SOCK_DGRAM;
2382 	hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
2383 	if (getaddrinfo(name, NULL, &hints, &res) == 0)
2384 		freeaddrinfo(res);
2385 	else if (strchr(name, '.') == NULL) {
2386 		strlcat(name, ".", sizeof name);
2387 		strlcat(name, LocalDomain, sizeof name);
2388 	}
2389 	if (getnameinfo(sa, sa->sa_len, ip, sizeof ip, port, sizeof port,
2390 			NI_NUMERICHOST | NI_NUMERICSERV) != 0)
2391 		return (0);	/* for safety, should not occur */
2392 	dprintf("validate: dgram from IP %s, port %s, name %s;\n",
2393 		ip, port, name);
2394 	sport = atoi(port);
2395 
2396 	/* now, walk down the list */
2397 	for (i = 0, ap = AllowedPeers; i < NumAllowed; i++, ap++) {
2398 		if (ap->port != 0 && ap->port != sport) {
2399 			dprintf("rejected in rule %d due to port mismatch.\n", i);
2400 			continue;
2401 		}
2402 
2403 		if (ap->isnumeric) {
2404 			if (ap->a_addr.ss_family != sa->sa_family) {
2405 				dprintf("rejected in rule %d due to address family mismatch.\n", i);
2406 				continue;
2407 			}
2408 			if (ap->a_addr.ss_family == AF_INET) {
2409 				sin4 = (struct sockaddr_in *)sa;
2410 				a4p = (struct sockaddr_in *)&ap->a_addr;
2411 				m4p = (struct sockaddr_in *)&ap->a_mask;
2412 				if ((sin4->sin_addr.s_addr & m4p->sin_addr.s_addr)
2413 				    != a4p->sin_addr.s_addr) {
2414 					dprintf("rejected in rule %d due to IP mismatch.\n", i);
2415 					continue;
2416 				}
2417 			}
2418 #ifdef INET6
2419 			else if (ap->a_addr.ss_family == AF_INET6) {
2420 				sin6 = (struct sockaddr_in6 *)sa;
2421 				a6p = (struct sockaddr_in6 *)&ap->a_addr;
2422 				m6p = (struct sockaddr_in6 *)&ap->a_mask;
2423 				if (a6p->sin6_scope_id != 0 &&
2424 				    sin6->sin6_scope_id != a6p->sin6_scope_id) {
2425 					dprintf("rejected in rule %d due to scope mismatch.\n", i);
2426 					continue;
2427 				}
2428 				reject = 0;
2429 				for (j = 0; j < 16; j += 4) {
2430 					if ((*(u_int32_t *)&sin6->sin6_addr.s6_addr[j] & *(u_int32_t *)&m6p->sin6_addr.s6_addr[j])
2431 					    != *(u_int32_t *)&a6p->sin6_addr.s6_addr[j]) {
2432 						++reject;
2433 						break;
2434 					}
2435 				}
2436 				if (reject) {
2437 					dprintf("rejected in rule %d due to IP mismatch.\n", i);
2438 					continue;
2439 				}
2440 			}
2441 #endif
2442 			else
2443 				continue;
2444 		} else {
2445 			cp = ap->a_name;
2446 			l1 = strlen(name);
2447 			if (*cp == '*') {
2448 				/* allow wildmatch */
2449 				cp++;
2450 				l2 = strlen(cp);
2451 				if (l2 > l1 || memcmp(cp, &name[l1 - l2], l2) != 0) {
2452 					dprintf("rejected in rule %d due to name mismatch.\n", i);
2453 					continue;
2454 				}
2455 			} else {
2456 				/* exact match */
2457 				l2 = strlen(cp);
2458 				if (l2 != l1 || memcmp(cp, name, l1) != 0) {
2459 					dprintf("rejected in rule %d due to name mismatch.\n", i);
2460 					continue;
2461 				}
2462 			}
2463 		}
2464 		dprintf("accepted in rule %d.\n", i);
2465 		return (1);	/* hooray! */
2466 	}
2467 	return (0);
2468 }
2469 
2470 /*
2471  * Fairly similar to popen(3), but returns an open descriptor, as
2472  * opposed to a FILE *.
2473  */
2474 static int
2475 p_open(const char *prog, pid_t *rpid)
2476 {
2477 	int pfd[2], nulldesc, i;
2478 	pid_t pid;
2479 	sigset_t omask, mask;
2480 	char *argv[4]; /* sh -c cmd NULL */
2481 	char errmsg[200];
2482 
2483 	if (pipe(pfd) == -1)
2484 		return (-1);
2485 	if ((nulldesc = open(_PATH_DEVNULL, O_RDWR)) == -1)
2486 		/* we are royally screwed anyway */
2487 		return (-1);
2488 
2489 	sigemptyset(&mask);
2490 	sigaddset(&mask, SIGALRM);
2491 	sigaddset(&mask, SIGHUP);
2492 	sigprocmask(SIG_BLOCK, &mask, &omask);
2493 	switch ((pid = fork())) {
2494 	case -1:
2495 		sigprocmask(SIG_SETMASK, &omask, 0);
2496 		close(nulldesc);
2497 		return (-1);
2498 
2499 	case 0:
2500 		argv[0] = strdup("sh");
2501 		argv[1] = strdup("-c");
2502 		argv[2] = strdup(prog);
2503 		argv[3] = NULL;
2504 		if (argv[0] == NULL || argv[1] == NULL || argv[2] == NULL) {
2505 			logerror("strdup");
2506 			exit(1);
2507 		}
2508 
2509 		alarm(0);
2510 		(void)setsid();	/* Avoid catching SIGHUPs. */
2511 
2512 		/*
2513 		 * Throw away pending signals, and reset signal
2514 		 * behaviour to standard values.
2515 		 */
2516 		signal(SIGALRM, SIG_IGN);
2517 		signal(SIGHUP, SIG_IGN);
2518 		sigprocmask(SIG_SETMASK, &omask, 0);
2519 		signal(SIGPIPE, SIG_DFL);
2520 		signal(SIGQUIT, SIG_DFL);
2521 		signal(SIGALRM, SIG_DFL);
2522 		signal(SIGHUP, SIG_DFL);
2523 
2524 		dup2(pfd[0], STDIN_FILENO);
2525 		dup2(nulldesc, STDOUT_FILENO);
2526 		dup2(nulldesc, STDERR_FILENO);
2527 		for (i = getdtablesize(); i > 2; i--)
2528 			(void)close(i);
2529 
2530 		(void)execvp(_PATH_BSHELL, argv);
2531 		_exit(255);
2532 	}
2533 
2534 	sigprocmask(SIG_SETMASK, &omask, 0);
2535 	close(nulldesc);
2536 	close(pfd[0]);
2537 	/*
2538 	 * Avoid blocking on a hung pipe.  With O_NONBLOCK, we are
2539 	 * supposed to get an EWOULDBLOCK on writev(2), which is
2540 	 * caught by the logic above anyway, which will in turn close
2541 	 * the pipe, and fork a new logging subprocess if necessary.
2542 	 * The stale subprocess will be killed some time later unless
2543 	 * it terminated itself due to closing its input pipe (so we
2544 	 * get rid of really dead puppies).
2545 	 */
2546 	if (fcntl(pfd[1], F_SETFL, O_NONBLOCK) == -1) {
2547 		/* This is bad. */
2548 		(void)snprintf(errmsg, sizeof errmsg,
2549 			       "Warning: cannot change pipe to PID %d to "
2550 			       "non-blocking behaviour.",
2551 			       (int)pid);
2552 		logerror(errmsg);
2553 	}
2554 	*rpid = pid;
2555 	return (pfd[1]);
2556 }
2557 
2558 static void
2559 deadq_enter(pid_t pid, const char *name)
2560 {
2561 	dq_t p;
2562 	int status;
2563 
2564 	/*
2565 	 * Be paranoid, if we can't signal the process, don't enter it
2566 	 * into the dead queue (perhaps it's already dead).  If possible,
2567 	 * we try to fetch and log the child's status.
2568 	 */
2569 	if (kill(pid, 0) != 0) {
2570 		if (waitpid(pid, &status, WNOHANG) > 0)
2571 			log_deadchild(pid, status, name);
2572 		return;
2573 	}
2574 
2575 	p = malloc(sizeof(struct deadq_entry));
2576 	if (p == NULL) {
2577 		logerror("malloc");
2578 		exit(1);
2579 	}
2580 
2581 	p->dq_pid = pid;
2582 	p->dq_timeout = DQ_TIMO_INIT;
2583 	TAILQ_INSERT_TAIL(&deadq_head, p, dq_entries);
2584 }
2585 
2586 static int
2587 deadq_remove(pid_t pid)
2588 {
2589 	dq_t q;
2590 
2591 	TAILQ_FOREACH(q, &deadq_head, dq_entries) {
2592 		if (q->dq_pid == pid) {
2593 			TAILQ_REMOVE(&deadq_head, q, dq_entries);
2594 				free(q);
2595 				return (1);
2596 		}
2597 	}
2598 
2599 	return (0);
2600 }
2601 
2602 static void
2603 log_deadchild(pid_t pid, int status, const char *name)
2604 {
2605 	int code;
2606 	char buf[256];
2607 	const char *reason;
2608 
2609 	errno = 0; /* Keep strerror() stuff out of logerror messages. */
2610 	if (WIFSIGNALED(status)) {
2611 		reason = "due to signal";
2612 		code = WTERMSIG(status);
2613 	} else {
2614 		reason = "with status";
2615 		code = WEXITSTATUS(status);
2616 		if (code == 0)
2617 			return;
2618 	}
2619 	(void)snprintf(buf, sizeof buf,
2620 		       "Logging subprocess %d (%s) exited %s %d.",
2621 		       pid, name, reason, code);
2622 	logerror(buf);
2623 }
2624 
2625 static int *
2626 socksetup(int af, char *bindhostname)
2627 {
2628 	struct addrinfo hints, *res, *r;
2629 	const char *bindservice;
2630 	char *cp;
2631 	int error, maxs, *s, *socks;
2632 
2633 	/*
2634 	 * We have to handle this case for backwards compatibility:
2635 	 * If there are two (or more) colons but no '[' and ']',
2636 	 * assume this is an inet6 address without a service.
2637 	 */
2638 	bindservice = "syslog";
2639 	if (bindhostname != NULL) {
2640 #ifdef INET6
2641 		if (*bindhostname == '[' &&
2642 		    (cp = strchr(bindhostname + 1, ']')) != NULL) {
2643 			++bindhostname;
2644 			*cp = '\0';
2645 			if (cp[1] == ':' && cp[2] != '\0')
2646 				bindservice = cp + 2;
2647 		} else {
2648 #endif
2649 			cp = strchr(bindhostname, ':');
2650 			if (cp != NULL && strchr(cp + 1, ':') == NULL) {
2651 				*cp = '\0';
2652 				if (cp[1] != '\0')
2653 					bindservice = cp + 1;
2654 				if (cp == bindhostname)
2655 					bindhostname = NULL;
2656 			}
2657 #ifdef INET6
2658 		}
2659 #endif
2660 	}
2661 
2662 	memset(&hints, 0, sizeof(hints));
2663 	hints.ai_flags = AI_PASSIVE;
2664 	hints.ai_family = af;
2665 	hints.ai_socktype = SOCK_DGRAM;
2666 	error = getaddrinfo(bindhostname, bindservice, &hints, &res);
2667 	if (error) {
2668 		logerror(gai_strerror(error));
2669 		errno = 0;
2670 		die(0);
2671 	}
2672 
2673 	/* Count max number of sockets we may open */
2674 	for (maxs = 0, r = res; r; r = r->ai_next, maxs++);
2675 	socks = malloc((maxs+1) * sizeof(int));
2676 	if (socks == NULL) {
2677 		logerror("couldn't allocate memory for sockets");
2678 		die(0);
2679 	}
2680 
2681 	*socks = 0;   /* num of sockets counter at start of array */
2682 	s = socks + 1;
2683 	for (r = res; r; r = r->ai_next) {
2684 		int on = 1;
2685 		*s = socket(r->ai_family, r->ai_socktype, r->ai_protocol);
2686 		if (*s < 0) {
2687 			logerror("socket");
2688 			continue;
2689 		}
2690 		if (r->ai_family == AF_INET6) {
2691 			if (setsockopt(*s, IPPROTO_IPV6, IPV6_V6ONLY,
2692 				       (char *)&on, sizeof (on)) < 0) {
2693 				logerror("setsockopt");
2694 				close(*s);
2695 				continue;
2696 			}
2697 		}
2698 		if (setsockopt(*s, SOL_SOCKET, SO_REUSEADDR,
2699 			       (char *)&on, sizeof (on)) < 0) {
2700 			logerror("setsockopt");
2701 			close(*s);
2702 			continue;
2703 		}
2704 		/*
2705 		 * RFC 3164 recommends that client side message
2706 		 * should come from the privileged syslogd port.
2707 		 *
2708 		 * If the system administrator choose not to obey
2709 		 * this, we can skip the bind() step so that the
2710 		 * system will choose a port for us.
2711 		 */
2712 		if (!NoBind) {
2713 			if (bind(*s, r->ai_addr, r->ai_addrlen) < 0) {
2714 				close(*s);
2715 				logerror("bind");
2716 				continue;
2717 			}
2718 
2719 			if (!SecureMode)
2720 				double_rbuf(*s);
2721 		}
2722 
2723 		(*socks)++;
2724 		s++;
2725 	}
2726 
2727 	if (*socks == 0) {
2728 		free(socks);
2729 		if (Debug)
2730 			return (NULL);
2731 		else
2732 			die(0);
2733 	}
2734 	if (res)
2735 		freeaddrinfo(res);
2736 
2737 	return (socks);
2738 }
2739 
2740 static void
2741 double_rbuf(int fd)
2742 {
2743 	socklen_t slen, len;
2744 
2745 	if (getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &len, &slen) == 0) {
2746 		len *= 2;
2747 		setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &len, slen);
2748 	}
2749 }
2750