1 /*- 2 * Copyright (c) 1983, 1993 The Regents of the University of California. 3 * Copyright (c) 2013 Mariusz Zaborski <oshogbo@FreeBSD.org> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 4. Neither the name of the University nor the names of its contributors 15 * may be used to endorse or promote products derived from this software 16 * without specific prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 */ 30 31 #ifndef lint 32 static const char copyright[] = 33 "@(#) Copyright (c) 1983, 1993\n\ 34 The Regents of the University of California. All rights reserved.\n"; 35 #endif /* not lint */ 36 37 #if 0 38 #ifndef lint 39 static char sccsid[] = "@(#)rwhod.c 8.1 (Berkeley) 6/6/93"; 40 #endif /* not lint */ 41 #endif 42 43 #include <sys/cdefs.h> 44 __FBSDID("$FreeBSD$"); 45 46 #include <sys/capability.h> 47 #include <sys/param.h> 48 #include <sys/socket.h> 49 #include <sys/stat.h> 50 #include <sys/signal.h> 51 #include <sys/ioctl.h> 52 #include <sys/sysctl.h> 53 #include <sys/procdesc.h> 54 #include <sys/wait.h> 55 56 #include <net/if.h> 57 #include <net/if_dl.h> 58 #include <net/route.h> 59 #include <netinet/in.h> 60 #include <arpa/inet.h> 61 #include <protocols/rwhod.h> 62 63 #include <ctype.h> 64 #include <err.h> 65 #include <errno.h> 66 #include <fcntl.h> 67 #include <grp.h> 68 #include <netdb.h> 69 #include <paths.h> 70 #include <pwd.h> 71 #include <stdio.h> 72 #include <stdlib.h> 73 #include <string.h> 74 #include <syslog.h> 75 #include <timeconv.h> 76 #include <utmpx.h> 77 #include <unistd.h> 78 79 #define UNPRIV_USER "daemon" 80 #define UNPRIV_GROUP "daemon" 81 82 #define NO_MULTICAST 0 /* multicast modes */ 83 #define PER_INTERFACE_MULTICAST 1 84 #define SCOPED_MULTICAST 2 85 86 #define MAX_MULTICAST_SCOPE 32 /* "site-wide", by convention */ 87 88 #define INADDR_WHOD_GROUP (u_long)0xe0000103 /* 224.0.1.3 */ 89 /* (belongs in protocols/rwhod.h) */ 90 91 int insecure_mode; 92 int quiet_mode; 93 int iff_flag = IFF_POINTOPOINT; 94 int multicast_mode = NO_MULTICAST; 95 int multicast_scope; 96 struct sockaddr_in multicast_addr = 97 { sizeof(multicast_addr), AF_INET, 0, { 0 }, { 0 } }; 98 99 /* 100 * Sleep interval. Don't forget to change the down time check in ruptime 101 * if this is changed. 102 */ 103 #define SL_INTERVAL (3 * 60) 104 105 char myname[MAXHOSTNAMELEN]; 106 107 /* 108 * We communicate with each neighbor in a list constructed at the time we're 109 * started up. Neighbors are currently directly connected via a hardware 110 * interface. 111 */ 112 struct neighbor { 113 struct neighbor *n_next; 114 char *n_name; /* interface name */ 115 struct sockaddr *n_addr; /* who to send to */ 116 int n_addrlen; /* size of address */ 117 int n_flags; /* should forward?, interface flags */ 118 }; 119 120 struct neighbor *neighbors; 121 struct whod mywd; 122 struct servent *sp; 123 int s; 124 int fdp; 125 pid_t pid_child_receiver; 126 127 #define WHDRSIZE (int)(sizeof(mywd) - sizeof(mywd.wd_we)) 128 129 int configure(int so); 130 void getboottime(int signo __unused); 131 void receiver_process(void); 132 void rt_xaddrs(caddr_t cp, caddr_t cplim, struct rt_addrinfo *rtinfo); 133 void run_as(uid_t *uid, gid_t *gid); 134 void quit(const char *msg); 135 void sender_process(void); 136 int verify(char *name, int maxlen); 137 static void usage(void); 138 139 #ifdef DEBUG 140 char *interval(int time, char *updown); 141 void Sendto(int s, const void *buf, size_t cc, int flags, 142 const struct sockaddr *to, int tolen); 143 #define sendto Sendto 144 #endif 145 146 /* 147 * This version of Berkeley's rwhod has been modified to use IP multicast 148 * datagrams, under control of a new command-line option: 149 * 150 * rwhod -m causes rwhod to use IP multicast (instead of 151 * broadcast or unicast) on all interfaces that have 152 * the IFF_MULTICAST flag set in their "ifnet" structs 153 * (excluding the loopback interface). The multicast 154 * reports are sent with a time-to-live of 1, to prevent 155 * forwarding beyond the directly-connected subnet(s). 156 * 157 * rwhod -m <ttl> causes rwhod to send IP multicast datagrams with a 158 * time-to-live of <ttl>, via a SINGLE interface rather 159 * than all interfaces. <ttl> must be between 0 and 160 * MAX_MULTICAST_SCOPE, defined below. Note that "-m 1" 161 * is different than "-m", in that "-m 1" specifies 162 * transmission on one interface only. 163 * 164 * When "-m" is used without a <ttl> argument, the program accepts multicast 165 * rwhod reports from all multicast-capable interfaces. If a <ttl> argument 166 * is given, it accepts multicast reports from only one interface, the one 167 * on which reports are sent (which may be controlled via the host's routing 168 * table). Regardless of the "-m" option, the program accepts broadcast or 169 * unicast reports from all interfaces. Thus, this program will hear the 170 * reports of old, non-multicasting rwhods, but, if multicasting is used, 171 * those old rwhods won't hear the reports generated by this program. 172 * 173 * -- Steve Deering, Stanford University, February 1989 174 */ 175 int 176 main(int argc, char *argv[]) 177 { 178 int on; 179 char *cp; 180 struct sockaddr_in soin; 181 uid_t unpriv_uid; 182 gid_t unpriv_gid; 183 184 on = 1; 185 if (getuid()) 186 errx(1, "not super user"); 187 188 run_as(&unpriv_uid, &unpriv_gid); 189 190 argv++; 191 argc--; 192 while (argc > 0 && *argv[0] == '-') { 193 if (strcmp(*argv, "-m") == 0) { 194 if (argc > 1 && isdigit(*(argv + 1)[0])) { 195 argv++; 196 argc--; 197 multicast_mode = SCOPED_MULTICAST; 198 multicast_scope = atoi(*argv); 199 if (multicast_scope > MAX_MULTICAST_SCOPE) { 200 errx(1, "ttl must not exceed %u", 201 MAX_MULTICAST_SCOPE); 202 } 203 } else { 204 multicast_mode = PER_INTERFACE_MULTICAST; 205 } 206 } else if (strcmp(*argv, "-i") == 0) { 207 insecure_mode = 1; 208 } else if (strcmp(*argv, "-l") == 0) { 209 quiet_mode = 1; 210 } else if (strcmp(*argv, "-p") == 0) { 211 iff_flag = 0; 212 } else { 213 usage(); 214 } 215 argv++; 216 argc--; 217 } 218 if (argc > 0) 219 usage(); 220 #ifndef DEBUG 221 daemon(1, 0); 222 #endif 223 (void) signal(SIGHUP, getboottime); 224 openlog("rwhod", LOG_PID | LOG_NDELAY, LOG_DAEMON); 225 sp = getservbyname("who", "udp"); 226 if (sp == NULL) { 227 syslog(LOG_ERR, "who/udp: unknown service"); 228 exit(1); 229 } 230 if (chdir(_PATH_RWHODIR) < 0) { 231 syslog(LOG_ERR, "%s: %m", _PATH_RWHODIR); 232 exit(1); 233 } 234 /* 235 * Establish host name as returned by system. 236 */ 237 if (gethostname(myname, sizeof(myname) - 1) < 0) { 238 syslog(LOG_ERR, "gethostname: %m"); 239 exit(1); 240 } 241 if ((cp = strchr(myname, '.')) != NULL) 242 *cp = '\0'; 243 strlcpy(mywd.wd_hostname, myname, sizeof(mywd.wd_hostname)); 244 getboottime(0); 245 if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { 246 syslog(LOG_ERR, "socket: %m"); 247 exit(1); 248 } 249 if (setsockopt(s, SOL_SOCKET, SO_BROADCAST, &on, sizeof(on)) < 0) { 250 syslog(LOG_ERR, "setsockopt SO_BROADCAST: %m"); 251 exit(1); 252 } 253 memset(&soin, 0, sizeof(soin)); 254 soin.sin_len = sizeof(soin); 255 soin.sin_family = AF_INET; 256 soin.sin_port = sp->s_port; 257 if (bind(s, (struct sockaddr *)&soin, sizeof(soin)) < 0) { 258 syslog(LOG_ERR, "bind: %m"); 259 exit(1); 260 } 261 if (setgid(unpriv_gid) != 0) { 262 syslog(LOG_ERR, "setgid: %m"); 263 exit(1); 264 } 265 if (setgroups(1, &unpriv_gid) != 0) { /* XXX BOGUS groups[0] = egid */ 266 syslog(LOG_ERR, "setgroups: %m"); 267 exit(1); 268 } 269 if (setuid(unpriv_uid) != 0) { 270 syslog(LOG_ERR, "setuid: %m"); 271 exit(1); 272 } 273 if (!configure(s)) 274 exit(1); 275 if (!quiet_mode) { 276 pid_child_receiver = pdfork(&fdp, 0); 277 if (pid_child_receiver == -1) { 278 if (errno != ENOSYS) { 279 syslog(LOG_ERR, "pdfork: %m"); 280 exit(1); 281 } else { 282 pid_child_receiver = fork(); 283 fdp = -1; 284 } 285 } 286 if (pid_child_receiver == 0) { 287 receiver_process(); 288 } else if (pid_child_receiver > 0) { 289 sender_process(); 290 } else if (pid_child_receiver == -1) { 291 syslog(LOG_ERR, "pdfork: %m"); 292 exit(1); 293 } 294 } else { 295 receiver_process(); 296 } 297 } 298 299 static void 300 usage(void) 301 { 302 303 fprintf(stderr, "usage: rwhod [-i] [-p] [-l] [-m [ttl]]\n"); 304 exit(1); 305 } 306 307 void 308 run_as(uid_t *uid, gid_t *gid) 309 { 310 struct passwd *pw; 311 struct group *gr; 312 313 pw = getpwnam(UNPRIV_USER); 314 if (pw == NULL) { 315 syslog(LOG_ERR, "getpwnam(%s): %m", UNPRIV_USER); 316 exit(1); 317 } 318 *uid = pw->pw_uid; 319 320 gr = getgrnam(UNPRIV_GROUP); 321 if (gr == NULL) { 322 syslog(LOG_ERR, "getgrnam(%s): %m", UNPRIV_GROUP); 323 exit(1); 324 } 325 *gid = gr->gr_gid; 326 } 327 328 /* 329 * Check out host name for unprintables 330 * and other funnies before allowing a file 331 * to be created. Sorry, but blanks aren't allowed. 332 */ 333 int 334 verify(char *name, int maxlen) 335 { 336 int size; 337 338 size = 0; 339 while (*name != '\0' && size < maxlen - 1) { 340 if (!isascii((unsigned char)*name) || 341 !(isalnum((unsigned char)*name) || 342 ispunct((unsigned char)*name))) { 343 return (0); 344 } 345 name++; 346 size++; 347 } 348 *name = '\0'; 349 return (size > 0); 350 } 351 352 void 353 receiver_process(void) 354 { 355 struct sockaddr_in from; 356 struct stat st; 357 char path[64]; 358 int dirfd; 359 struct whod wd; 360 socklen_t len; 361 int cc, whod; 362 time_t t; 363 364 len = sizeof(from); 365 dirfd = open(".", O_RDONLY | O_DIRECTORY); 366 if (dirfd < 0) { 367 syslog(LOG_WARNING, "%s: %m", _PATH_RWHODIR); 368 exit(1); 369 } 370 if (cap_rights_limit(dirfd, CAP_CREATE | CAP_WRITE | CAP_FTRUNCATE | 371 CAP_SEEK | CAP_LOOKUP | CAP_FSTAT) < 0 && errno != ENOSYS) { 372 syslog(LOG_WARNING, "cap_rights_limit: %m"); 373 exit(1); 374 } 375 if (cap_enter() < 0 && errno != ENOSYS) { 376 syslog(LOG_ERR, "cap_enter: %m"); 377 exit(1); 378 } 379 for (;;) { 380 cc = recvfrom(s, &wd, sizeof(wd), 0, (struct sockaddr *)&from, 381 &len); 382 if (cc <= 0) { 383 if (cc < 0 && errno != EINTR) 384 syslog(LOG_WARNING, "recv: %m"); 385 continue; 386 } 387 if (from.sin_port != sp->s_port && !insecure_mode) { 388 syslog(LOG_WARNING, "%d: bad source port from %s", 389 ntohs(from.sin_port), inet_ntoa(from.sin_addr)); 390 continue; 391 } 392 if (cc < WHDRSIZE) { 393 syslog(LOG_WARNING, "short packet from %s", 394 inet_ntoa(from.sin_addr)); 395 continue; 396 } 397 if (wd.wd_vers != WHODVERSION) 398 continue; 399 if (wd.wd_type != WHODTYPE_STATUS) 400 continue; 401 if (!verify(wd.wd_hostname, sizeof(wd.wd_hostname))) { 402 syslog(LOG_WARNING, "malformed host name from %s", 403 inet_ntoa(from.sin_addr)); 404 continue; 405 } 406 (void) snprintf(path, sizeof(path), "whod.%s", wd.wd_hostname); 407 /* 408 * Rather than truncating and growing the file each time, 409 * use ftruncate if size is less than previous size. 410 */ 411 whod = openat(dirfd, path, O_WRONLY | O_CREAT, 0644); 412 if (whod < 0) { 413 syslog(LOG_WARNING, "%s: %m", path); 414 continue; 415 } 416 if (cap_rights_limit(whod, CAP_WRITE | CAP_FTRUNCATE | 417 CAP_FSTAT) < 0 && errno != ENOSYS) { 418 syslog(LOG_WARNING, "cap_rights_limit: %m"); 419 exit(1); 420 } 421 #if ENDIAN != BIG_ENDIAN 422 { 423 struct whoent *we; 424 int i, n; 425 426 n = (cc - WHDRSIZE) / sizeof(struct whoent); 427 /* undo header byte swapping before writing to file */ 428 wd.wd_sendtime = ntohl(wd.wd_sendtime); 429 for (i = 0; i < 3; i++) 430 wd.wd_loadav[i] = ntohl(wd.wd_loadav[i]); 431 wd.wd_boottime = ntohl(wd.wd_boottime); 432 we = wd.wd_we; 433 for (i = 0; i < n; i++) { 434 we->we_idle = ntohl(we->we_idle); 435 we->we_utmp.out_time = 436 ntohl(we->we_utmp.out_time); 437 we++; 438 } 439 } 440 #endif 441 (void) time(&t); 442 wd.wd_recvtime = _time_to_int(t); 443 (void) write(whod, (char *)&wd, cc); 444 if (fstat(whod, &st) < 0 || st.st_size > cc) 445 ftruncate(whod, cc); 446 (void) close(whod); 447 } 448 (void) close(dirfd); 449 } 450 451 void 452 sender_process(void) 453 { 454 int sendcount; 455 double avenrun[3]; 456 time_t now; 457 int i, cc, status; 458 struct utmpx *ut; 459 struct stat stb; 460 struct neighbor *np; 461 struct whoent *we, *wend; 462 463 sendcount = 0; 464 for (;;) { 465 we = mywd.wd_we; 466 now = time(NULL); 467 if (sendcount % 10 == 0) 468 getboottime(0); 469 sendcount++; 470 wend = &mywd.wd_we[1024 / sizeof(struct whoent)]; 471 setutxent(); 472 while ((ut = getutxent()) != NULL && we < wend) { 473 if (ut->ut_type != USER_PROCESS) 474 continue; 475 strncpy(we->we_utmp.out_line, ut->ut_line, 476 sizeof(we->we_utmp.out_line)); 477 strncpy(we->we_utmp.out_name, ut->ut_user, 478 sizeof(we->we_utmp.out_name)); 479 we->we_utmp.out_time = 480 htonl(_time_to_time32(ut->ut_tv.tv_sec)); 481 we++; 482 } 483 endutxent(); 484 485 if (chdir(_PATH_DEV) < 0) { 486 syslog(LOG_ERR, "chdir(%s): %m", _PATH_DEV); 487 exit(1); 488 } 489 wend = we; 490 for (we = mywd.wd_we; we < wend; we++) { 491 if (stat(we->we_utmp.out_line, &stb) >= 0) 492 we->we_idle = htonl(now - stb.st_atime); 493 we++; 494 } 495 (void) getloadavg(avenrun, 496 sizeof(avenrun) / sizeof(avenrun[0])); 497 for (i = 0; i < 3; i++) 498 mywd.wd_loadav[i] = htonl((u_long)(avenrun[i] * 100)); 499 cc = (char *)wend - (char *)&mywd; 500 mywd.wd_sendtime = htonl(_time_to_time32(time(NULL))); 501 mywd.wd_vers = WHODVERSION; 502 mywd.wd_type = WHODTYPE_STATUS; 503 if (multicast_mode == SCOPED_MULTICAST) { 504 (void) sendto(s, (char *)&mywd, cc, 0, 505 (struct sockaddr *)&multicast_addr, 506 sizeof(multicast_addr)); 507 } else { 508 for (np = neighbors; np != NULL; np = np->n_next) { 509 if (multicast_mode == PER_INTERFACE_MULTICAST && 510 (np->n_flags & IFF_MULTICAST) != 0) { 511 /* 512 * Select the outgoing interface for the 513 * multicast. 514 */ 515 if (setsockopt(s, IPPROTO_IP, 516 IP_MULTICAST_IF, 517 &(((struct sockaddr_in *)np->n_addr)->sin_addr), 518 sizeof(struct in_addr)) < 0) { 519 syslog(LOG_ERR, 520 "setsockopt IP_MULTICAST_IF: %m"); 521 exit(1); 522 } 523 (void) sendto(s, (char *)&mywd, cc, 0, 524 (struct sockaddr *)&multicast_addr, 525 sizeof(multicast_addr)); 526 } else { 527 (void) sendto(s, (char *)&mywd, cc, 0, 528 np->n_addr, np->n_addrlen); 529 } 530 } 531 } 532 if (chdir(_PATH_RWHODIR) < 0) { 533 syslog(LOG_ERR, "chdir(%s): %m", _PATH_RWHODIR); 534 exit(1); 535 } 536 if (waitpid(pid_child_receiver, &status, WNOHANG) == 537 pid_child_receiver) { 538 break; 539 } 540 sleep(SL_INTERVAL); 541 } 542 } 543 544 void 545 getboottime(int signo __unused) 546 { 547 int mib[2]; 548 size_t size; 549 struct timeval tm; 550 551 mib[0] = CTL_KERN; 552 mib[1] = KERN_BOOTTIME; 553 size = sizeof(tm); 554 if (sysctl(mib, 2, &tm, &size, NULL, 0) == -1) { 555 syslog(LOG_ERR, "cannot get boottime: %m"); 556 exit(1); 557 } 558 mywd.wd_boottime = htonl(_time_to_time32(tm.tv_sec)); 559 } 560 561 void 562 quit(const char *msg) 563 { 564 565 syslog(LOG_ERR, "%s", msg); 566 exit(1); 567 } 568 569 void 570 rt_xaddrs(caddr_t cp, caddr_t cplim, struct rt_addrinfo *rtinfo) 571 { 572 struct sockaddr *sa; 573 int i; 574 575 memset(rtinfo->rti_info, 0, sizeof(rtinfo->rti_info)); 576 for (i = 0; i < RTAX_MAX && cp < cplim; i++) { 577 if ((rtinfo->rti_addrs & (1 << i)) == 0) 578 continue; 579 sa = (struct sockaddr *)cp; 580 rtinfo->rti_info[i] = sa; 581 cp += SA_SIZE(sa); 582 } 583 } 584 585 /* 586 * Figure out device configuration and select 587 * networks which deserve status information. 588 */ 589 int 590 configure(int so) 591 { 592 struct neighbor *np; 593 struct if_msghdr *ifm; 594 struct ifa_msghdr *ifam; 595 struct sockaddr_dl *sdl; 596 size_t needed; 597 int mib[6], flags, lflags, len; 598 char *buf, *lim, *next; 599 struct rt_addrinfo info; 600 601 flags = 0; 602 if (multicast_mode != NO_MULTICAST) { 603 multicast_addr.sin_addr.s_addr = htonl(INADDR_WHOD_GROUP); 604 multicast_addr.sin_port = sp->s_port; 605 } 606 607 if (multicast_mode == SCOPED_MULTICAST) { 608 struct ip_mreq mreq; 609 unsigned char ttl; 610 611 mreq.imr_multiaddr.s_addr = htonl(INADDR_WHOD_GROUP); 612 mreq.imr_interface.s_addr = htonl(INADDR_ANY); 613 if (setsockopt(so, IPPROTO_IP, IP_ADD_MEMBERSHIP, 614 &mreq, sizeof(mreq)) < 0) { 615 syslog(LOG_ERR, 616 "setsockopt IP_ADD_MEMBERSHIP: %m"); 617 return (0); 618 } 619 ttl = multicast_scope; 620 if (setsockopt(so, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, 621 sizeof(ttl)) < 0) { 622 syslog(LOG_ERR, 623 "setsockopt IP_MULTICAST_TTL: %m"); 624 return (0); 625 } 626 return (1); 627 } 628 629 mib[0] = CTL_NET; 630 mib[1] = PF_ROUTE; 631 mib[2] = 0; 632 mib[3] = AF_INET; 633 mib[4] = NET_RT_IFLIST; 634 mib[5] = 0; 635 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) 636 quit("route-sysctl-estimate"); 637 if ((buf = malloc(needed)) == NULL) 638 quit("malloc"); 639 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) 640 quit("actual retrieval of interface table"); 641 lim = buf + needed; 642 643 sdl = NULL; /* XXX just to keep gcc -Wall happy */ 644 for (next = buf; next < lim; next += ifm->ifm_msglen) { 645 ifm = (struct if_msghdr *)next; 646 if (ifm->ifm_type == RTM_IFINFO) { 647 sdl = (struct sockaddr_dl *)(ifm + 1); 648 flags = ifm->ifm_flags; 649 continue; 650 } 651 if ((flags & IFF_UP) == 0) 652 continue; 653 lflags = IFF_BROADCAST | iff_flag; 654 if (multicast_mode == PER_INTERFACE_MULTICAST) 655 lflags |= IFF_MULTICAST; 656 if ((flags & lflags) == 0) 657 continue; 658 if (ifm->ifm_type != RTM_NEWADDR) 659 quit("out of sync parsing NET_RT_IFLIST"); 660 ifam = (struct ifa_msghdr *)ifm; 661 info.rti_addrs = ifam->ifam_addrs; 662 rt_xaddrs((char *)(ifam + 1), ifam->ifam_msglen + (char *)ifam, 663 &info); 664 /* gag, wish we could get rid of Internet dependencies */ 665 #define dstaddr info.rti_info[RTAX_BRD] 666 #define ifaddr info.rti_info[RTAX_IFA] 667 #define IPADDR_SA(x) ((struct sockaddr_in *)(x))->sin_addr.s_addr 668 #define PORT_SA(x) ((struct sockaddr_in *)(x))->sin_port 669 if (dstaddr == 0 || dstaddr->sa_family != AF_INET) 670 continue; 671 PORT_SA(dstaddr) = sp->s_port; 672 for (np = neighbors; np != NULL; np = np->n_next) { 673 if (memcmp(sdl->sdl_data, np->n_name, 674 sdl->sdl_nlen) == 0 && 675 IPADDR_SA(np->n_addr) == IPADDR_SA(dstaddr)) { 676 break; 677 } 678 } 679 if (np != NULL) 680 continue; 681 len = sizeof(*np) + dstaddr->sa_len + sdl->sdl_nlen + 1; 682 np = malloc(len); 683 if (np == NULL) 684 quit("malloc of neighbor structure"); 685 memset(np, 0, len); 686 np->n_flags = flags; 687 np->n_addr = (struct sockaddr *)(np + 1); 688 np->n_addrlen = dstaddr->sa_len; 689 np->n_name = np->n_addrlen + (char *)np->n_addr; 690 memcpy((char *)np->n_addr, (char *)dstaddr, np->n_addrlen); 691 memcpy(np->n_name, sdl->sdl_data, sdl->sdl_nlen); 692 if (multicast_mode == PER_INTERFACE_MULTICAST && 693 (flags & IFF_MULTICAST) != 0 && 694 (flags & IFF_LOOPBACK) == 0) { 695 struct ip_mreq mreq; 696 697 memcpy((char *)np->n_addr, (char *)ifaddr, 698 np->n_addrlen); 699 mreq.imr_multiaddr.s_addr = htonl(INADDR_WHOD_GROUP); 700 mreq.imr_interface.s_addr = 701 ((struct sockaddr_in *)np->n_addr)->sin_addr.s_addr; 702 if (setsockopt(s, IPPROTO_IP, IP_ADD_MEMBERSHIP, 703 &mreq, sizeof(mreq)) < 0) { 704 syslog(LOG_ERR, 705 "setsockopt IP_ADD_MEMBERSHIP: %m"); 706 #if 0 707 /* Fall back to broadcast on this if. */ 708 np->n_flags &= ~IFF_MULTICAST; 709 #else 710 free(np); 711 continue; 712 #endif 713 } 714 } 715 np->n_next = neighbors; 716 neighbors = np; 717 } 718 free(buf); 719 return (1); 720 } 721 722 #ifdef DEBUG 723 void 724 Sendto(int s, const void *buf, size_t cc, int flags, const struct sockaddr *to, 725 int tolen) 726 { 727 struct whod *w; 728 struct whoent *we; 729 struct sockaddr_in *sin; 730 731 w = (struct whod *)buf; 732 sin = (struct sockaddr_in *)to; 733 printf("sendto %x.%d\n", ntohl(sin->sin_addr.s_addr), 734 ntohs(sin->sin_port)); 735 printf("hostname %s %s\n", w->wd_hostname, 736 interval(ntohl(w->wd_sendtime) - ntohl(w->wd_boottime), " up")); 737 printf("load %4.2f, %4.2f, %4.2f\n", 738 ntohl(w->wd_loadav[0]) / 100.0, ntohl(w->wd_loadav[1]) / 100.0, 739 ntohl(w->wd_loadav[2]) / 100.0); 740 cc -= WHDRSIZE; 741 for (we = w->wd_we, cc /= sizeof(struct whoent); cc > 0; cc--, we++) { 742 time_t t = _time32_to_time(ntohl(we->we_utmp.out_time)); 743 744 printf("%-8.8s %s:%s %.12s", we->we_utmp.out_name, 745 w->wd_hostname, we->we_utmp.out_line, ctime(&t) + 4); 746 we->we_idle = ntohl(we->we_idle) / 60; 747 if (we->we_idle != 0) { 748 if (we->we_idle >= 100 * 60) 749 we->we_idle = 100 * 60 - 1; 750 if (we->we_idle >= 60) 751 printf(" %2d", we->we_idle / 60); 752 else 753 printf(" "); 754 printf(":%02d", we->we_idle % 60); 755 } 756 printf("\n"); 757 } 758 } 759 760 char * 761 interval(int time, char *updown) 762 { 763 static char resbuf[32]; 764 int days, hours, minutes; 765 766 if (time < 0 || time > 3 * 30 * 24 * 60 * 60) { 767 (void) sprintf(resbuf, " %s ??:??", updown); 768 return (resbuf); 769 } 770 minutes = (time + 59) / 60; /* round to minutes */ 771 hours = minutes / 60; 772 minutes %= 60; 773 days = hours / 24; 774 hours %= 24; 775 if (days > 0) { 776 (void) sprintf(resbuf, "%s %2d+%02d:%02d", 777 updown, days, hours, minutes); 778 } else { 779 (void) sprintf(resbuf, "%s %2d:%02d", 780 updown, hours, minutes); 781 } 782 return (resbuf); 783 } 784 #endif 785