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