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