Fix warnings. Raise WARNS to 6.
[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.7 2005/03/17 15:39:34 joerg 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
143 #define WHDRSIZE        (sizeof(mywd) - sizeof(mywd.wd_we))
144
145 void     run_as(uid_t *, gid_t *);
146 int      configure(int);
147 void     getboottime(int);
148 void     onalrm(int);
149 void     quit(const char *);
150 void     rt_xaddrs(caddr_t, caddr_t, struct rt_addrinfo *);
151 int      verify(char *, int);
152 static void usage(void);
153 #ifdef DEBUG
154 char    *interval(int, char *);
155 void     Sendto(int, const void *, size_t, int,
156                      const struct sockaddr *, int);
157 #define  sendto Sendto
158 #endif
159
160 int
161 main(int argc, char *argv[])
162 {
163         struct sockaddr_in from;
164         struct stat st;
165         char path[64];
166         int on = 1;
167         char *cp;
168         struct sockaddr_in m_sin;
169         uid_t unpriv_uid;
170         gid_t unpriv_gid;
171
172         if (getuid())
173                 errx(1, "not super user");
174
175         run_as(&unpriv_uid, &unpriv_gid);
176
177         argv++; argc--;
178         while (argc > 0 && *argv[0] == '-') {
179                 if (strcmp(*argv, "-m") == 0) {
180                         if (argc > 1 && isdigit(*(argv + 1)[0])) {
181                                 argv++, argc--;
182                                 multicast_mode  = SCOPED_MULTICAST;
183                                 multicast_scope = atoi(*argv);
184                                 if (multicast_scope > MAX_MULTICAST_SCOPE)
185                                         errx(1, "ttl must not exceed %u",
186                                         MAX_MULTICAST_SCOPE);
187                         }
188                         else multicast_mode = PER_INTERFACE_MULTICAST;
189                 }
190                 else if (strcmp(*argv, "-i") == 0)
191                         insecure_mode = 1;
192                 else if (strcmp(*argv, "-l") == 0)
193                         quiet_mode = 1;
194                 else if (strcmp(*argv, "-p") == 0)
195                         iff_flag = 0;
196                 else
197                         usage();
198                 argv++, argc--;
199         }
200         if (argc > 0)
201                 usage();
202 #ifndef DEBUG
203         daemon(1, 0);
204 #endif
205         signal(SIGHUP, getboottime);
206         openlog("rwhod", LOG_PID, LOG_DAEMON);
207         sp = getservbyname("who", "udp");
208         if (sp == NULL) {
209                 syslog(LOG_ERR, "udp/who: unknown service");
210                 exit(1);
211         }
212         if (chdir(_PATH_RWHODIR) < 0) {
213                 syslog(LOG_ERR, "%s: %m", _PATH_RWHODIR);
214                 exit(1);
215         }
216         /*
217          * Establish host name as returned by system.
218          */
219         if (gethostname(myname, sizeof(myname) - 1) < 0) {
220                 syslog(LOG_ERR, "gethostname: %m");
221                 exit(1);
222         }
223         if ((cp = strchr(myname, '.')) != NULL)
224                 *cp = '\0';
225         strncpy(mywd.wd_hostname, myname, sizeof(mywd.wd_hostname) - 1);
226         mywd.wd_hostname[sizeof(mywd.wd_hostname) - 1] = '\0';
227         utmpf = open(_PATH_UTMP, O_RDONLY|O_CREAT, 0644);
228         if (utmpf < 0) {
229                 syslog(LOG_ERR, "%s: %m", _PATH_UTMP);
230                 exit(1);
231         }
232         getboottime(0);
233         if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
234                 syslog(LOG_ERR, "socket: %m");
235                 exit(1);
236         }
237         if (setsockopt(s, SOL_SOCKET, SO_BROADCAST, &on, sizeof(on)) < 0) {
238                 syslog(LOG_ERR, "setsockopt SO_BROADCAST: %m");
239                 exit(1);
240         }
241         memset(&m_sin, 0, sizeof(m_sin));
242         m_sin.sin_len = sizeof(m_sin);
243         m_sin.sin_family = AF_INET;
244         m_sin.sin_port = sp->s_port;
245         if (bind(s, (struct sockaddr *)&m_sin, sizeof(m_sin)) < 0) {
246                 syslog(LOG_ERR, "bind: %m");
247                 exit(1);
248         }
249         setgid(unpriv_gid);
250         setgroups(1, &unpriv_gid);      /* XXX BOGUS groups[0] = egid */
251         setuid(unpriv_uid);
252         if (!configure(s))
253                 exit(1);
254         if (!quiet_mode) {
255                 signal(SIGALRM, onalrm);
256                 onalrm(0);
257         }
258         for (;;) {
259                 struct whod wd;
260                 int cc, whod, len = sizeof(from);
261
262                 cc = recvfrom(s, (char *)&wd, sizeof(struct whod), 0,
263                         (struct sockaddr *)&from, &len);
264                 if (cc <= 0) {
265                         if (cc < 0 && errno != EINTR)
266                                 syslog(LOG_WARNING, "recv: %m");
267                         continue;
268                 }
269                 if (from.sin_port != sp->s_port && !insecure_mode) {
270                         syslog(LOG_WARNING, "%d: bad source port from %s",
271                             ntohs(from.sin_port), inet_ntoa(from.sin_addr));
272                         continue;
273                 }
274                 if (cc < (int)WHDRSIZE) {
275                         syslog(LOG_WARNING, "short packet from %s",
276                             inet_ntoa(from.sin_addr));
277                         continue;
278                 }
279                 if (wd.wd_vers != WHODVERSION)
280                         continue;
281                 if (wd.wd_type != WHODTYPE_STATUS)
282                         continue;
283                 if (!verify(wd.wd_hostname, sizeof wd.wd_hostname)) {
284                         syslog(LOG_WARNING, "malformed host name from %s",
285                             inet_ntoa(from.sin_addr));
286                         continue;
287                 }
288                 snprintf(path, sizeof path, "whod.%s", wd.wd_hostname);
289                 /*
290                  * Rather than truncating and growing the file each time,
291                  * use ftruncate if size is less than previous size.
292                  */
293                 whod = open(path, O_WRONLY | O_CREAT, 0644);
294                 if (whod < 0) {
295                         syslog(LOG_WARNING, "%s: %m", path);
296                         continue;
297                 }
298 #if ENDIAN != BIG_ENDIAN
299                 {
300                         int i, n = (cc - WHDRSIZE)/sizeof(struct whoent);
301                         struct whoent *we;
302
303                         /* undo header byte swapping before writing to file */
304                         wd.wd_sendtime = ntohl(wd.wd_sendtime);
305                         for (i = 0; i < 3; i++)
306                                 wd.wd_loadav[i] = ntohl(wd.wd_loadav[i]);
307                         wd.wd_boottime = ntohl(wd.wd_boottime);
308                         we = wd.wd_we;
309                         for (i = 0; i < n; i++) {
310                                 we->we_idle = ntohl(we->we_idle);
311                                 we->we_utmp.out_time =
312                                     ntohl(we->we_utmp.out_time);
313                                 we++;
314                         }
315                 }
316 #endif
317                 time((time_t *)&wd.wd_recvtime);
318                 write(whod, (char *)&wd, cc);
319                 if (fstat(whod, &st) < 0 || st.st_size > cc)
320                         ftruncate(whod, cc);
321                 close(whod);
322         }
323 }
324
325 static void
326 usage(void)
327 {
328
329         fprintf(stderr, "usage: rwhod [-i] [-p] [-l] [-m [ttl]]\n");
330         exit(1);
331 }
332
333 void
334 run_as(uid_t *uid, gid_t *gid)
335 {
336         struct passwd *pw;
337         struct group *gr;
338
339         pw = getpwnam(UNPRIV_USER);
340         if (!pw) {
341                 syslog(LOG_ERR, "getpwnam(%s): %m", UNPRIV_USER);
342                 exit(1);
343         }
344         *uid = pw->pw_uid;
345
346         gr = getgrnam(UNPRIV_GROUP);
347         if (!gr) {
348                 syslog(LOG_ERR, "getgrnam(%s): %m", UNPRIV_GROUP);
349                 exit(1);
350         }
351         *gid = gr->gr_gid;
352 }
353
354 /*
355  * Check out host name for unprintables
356  * and other funnies before allowing a file
357  * to be created.  Sorry, but blanks aren't allowed.
358  */
359 int
360 verify(char *name, int maxlen)
361 {
362         int size = 0;
363
364         while (*name && size < maxlen - 1) {
365                 if (!isascii(*name) || !(isalnum(*name) || ispunct(*name)))
366                         return (0);
367                 name++, size++;
368         }
369         *name = '\0';
370         return (size > 0);
371 }
372
373 int     utmptime;
374 int     utmpent;
375 int     utmpsize = 0;
376 struct  utmp *utmp;
377 int     alarmcount;
378
379 void
380 onalrm(int signo __unused)
381 {
382         /* XXX BAD SIGNAL HANDLER */
383         struct neighbor *np;
384         struct whoent *we = mywd.wd_we, *wlast;
385         int i;
386         struct stat stb;
387         double avenrun[3];
388         time_t now;
389         int cc;
390
391         now = time(NULL);
392         if (alarmcount % 10 == 0)
393                 getboottime(0);
394         alarmcount++;
395         fstat(utmpf, &stb);
396         if ((stb.st_mtime != utmptime) || (stb.st_size > utmpsize)) {
397                 utmptime = stb.st_mtime;
398                 if (stb.st_size > utmpsize) {
399                         utmpsize = stb.st_size + 10 * sizeof(struct utmp);
400                         if (utmp)
401                                 utmp = (struct utmp *)realloc(utmp, utmpsize);
402                         else
403                                 utmp = (struct utmp *)malloc(utmpsize);
404                         if (! utmp) {
405                                 syslog(LOG_WARNING, "malloc failed");
406                                 utmpsize = 0;
407                                 goto done;
408                         }
409                 }
410                 lseek(utmpf, (off_t)0, L_SET);
411                 cc = read(utmpf, (char *)utmp, stb.st_size);
412                 if (cc < 0) {
413                         syslog(LOG_ERR, "read(%s): %m", _PATH_UTMP);
414                         goto done;
415                 }
416                 wlast = &mywd.wd_we[1024 / sizeof(struct whoent) - 1];
417                 utmpent = cc / sizeof(struct utmp);
418                 for (i = 0; i < utmpent; i++)
419                         if (utmp[i].ut_name[0]) {
420                                 memcpy(we->we_utmp.out_line, utmp[i].ut_line,
421                                    sizeof(utmp[i].ut_line));
422                                 memcpy(we->we_utmp.out_name, utmp[i].ut_name,
423                                    sizeof(utmp[i].ut_name));
424                                 we->we_utmp.out_time = htonl(utmp[i].ut_time);
425                                 if (we >= wlast)
426                                         break;
427                                 we++;
428                         }
429                 utmpent = we - mywd.wd_we;
430         }
431
432         /*
433          * The test on utmpent looks silly---after all, if no one is
434          * logged on, why worry about efficiency?---but is useful on
435          * (e.g.) compute servers.
436          */
437         if (utmpent && chdir(_PATH_DEV)) {
438                 syslog(LOG_ERR, "chdir(%s): %m", _PATH_DEV);
439                 exit(1);
440         }
441         we = mywd.wd_we;
442         for (i = 0; i < utmpent; i++) {
443                 if (stat(we->we_utmp.out_line, &stb) >= 0)
444                         we->we_idle = htonl(now - stb.st_atime);
445                 we++;
446         }
447         getloadavg(avenrun, sizeof(avenrun)/sizeof(avenrun[0]));
448         for (i = 0; i < 3; i++)
449                 mywd.wd_loadav[i] = htonl((u_long)(avenrun[i] * 100));
450         cc = (char *)we - (char *)&mywd;
451         mywd.wd_sendtime = htonl(time(0));
452         mywd.wd_vers = WHODVERSION;
453         mywd.wd_type = WHODTYPE_STATUS;
454         if (multicast_mode == SCOPED_MULTICAST) {
455                 sendto(s, (char *)&mywd, cc, 0,
456                                 (struct sockaddr *)&multicast_addr,
457                                 sizeof(multicast_addr));
458         }
459         else for (np = neighbors; np != NULL; np = np->n_next) {
460                 if (multicast_mode == PER_INTERFACE_MULTICAST &&
461                     np->n_flags & IFF_MULTICAST) {
462                         /*
463                          * Select the outgoing interface for the multicast.
464                          */
465                         if (setsockopt(s, IPPROTO_IP, IP_MULTICAST_IF,
466                             &(((struct sockaddr_in *)np->n_addr)->sin_addr),
467                             sizeof(struct in_addr)) < 0) {
468                                 syslog(LOG_ERR,
469                                         "setsockopt IP_MULTICAST_IF: %m");
470                                 exit(1);
471                         }
472                         sendto(s, (char *)&mywd, cc, 0,
473                                 (struct sockaddr *)&multicast_addr,
474                                 sizeof(multicast_addr));
475                 } else sendto(s, (char *)&mywd, cc, 0,
476                                 np->n_addr, np->n_addrlen);
477         }
478         if (utmpent && chdir(_PATH_RWHODIR)) {
479                 syslog(LOG_ERR, "chdir(%s): %m", _PATH_RWHODIR);
480                 exit(1);
481         }
482 done:
483         alarm(AL_INTERVAL);
484 }
485
486 void
487 getboottime(int signo __unused)
488 {
489         /* XXX BAD SIGNAL HANDLER */
490         int mib[2];
491         size_t size;
492         struct timeval tm;
493
494         mib[0] = CTL_KERN;
495         mib[1] = KERN_BOOTTIME;
496         size = sizeof(tm);
497         if (sysctl(mib, 2, &tm, &size, NULL, 0) == -1) {
498                 syslog(LOG_ERR, "cannot get boottime: %m");
499                 exit(1);
500         }
501         mywd.wd_boottime = htonl(tm.tv_sec);
502 }
503
504 void
505 quit(const char *msg)
506 {
507
508         syslog(LOG_ERR, "%s", msg);
509         exit(1);
510 }
511
512 #define ROUNDUP(a) \
513         ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
514 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
515
516 void
517 rt_xaddrs(caddr_t cp, caddr_t cplim, struct rt_addrinfo *rtinfo)
518 {
519         struct sockaddr *sa;
520         int i;
521
522         memset(rtinfo->rti_info, 0, sizeof(rtinfo->rti_info));
523         for (i = 0; (i < RTAX_MAX) && (cp < cplim); i++) {
524                 if ((rtinfo->rti_addrs & (1 << i)) == 0)
525                         continue;
526                 rtinfo->rti_info[i] = sa = (struct sockaddr *)cp;
527                 ADVANCE(cp, sa);
528         }
529 }
530
531 /*
532  * Figure out device configuration and select
533  * networks which deserve status information.
534  */
535 int
536 configure(int c_sock)
537 {
538         struct neighbor *np;
539         struct if_msghdr *ifm;
540         struct ifa_msghdr *ifam;
541         struct sockaddr_dl *sdl;
542         size_t needed;
543         int mib[6], flags = 0, len;
544         char *buf, *lim, *next;
545         struct rt_addrinfo info;
546
547         if (multicast_mode != NO_MULTICAST) {
548                 multicast_addr.sin_len = sizeof(multicast_addr);
549                 multicast_addr.sin_family = AF_INET;
550                 multicast_addr.sin_addr.s_addr = htonl(INADDR_WHOD_GROUP);
551                 multicast_addr.sin_port = sp->s_port;
552         }
553
554         if (multicast_mode == SCOPED_MULTICAST) {
555                 struct ip_mreq mreq;
556                 unsigned char ttl;
557
558                 mreq.imr_multiaddr.s_addr = htonl(INADDR_WHOD_GROUP);
559                 mreq.imr_interface.s_addr = htonl(INADDR_ANY);
560                 if (setsockopt(c_sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
561                                         &mreq, sizeof(mreq)) < 0) {
562                         syslog(LOG_ERR,
563                                 "setsockopt IP_ADD_MEMBERSHIP: %m");
564                         return(0);
565                 }
566                 ttl = multicast_scope;
567                 if (setsockopt(c_sock, IPPROTO_IP, IP_MULTICAST_TTL,
568                                         &ttl, sizeof(ttl)) < 0) {
569                         syslog(LOG_ERR,
570                                 "setsockopt IP_MULTICAST_TTL: %m");
571                         return(0);
572                 }
573                 return(1);
574         }
575
576         mib[0] = CTL_NET;
577         mib[1] = PF_ROUTE;
578         mib[2] = 0;
579         mib[3] = AF_INET;
580         mib[4] = NET_RT_IFLIST;
581         mib[5] = 0;
582         if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
583                 quit("route-sysctl-estimate");
584         if ((buf = malloc(needed)) == NULL)
585                 quit("malloc");
586         if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0)
587                 quit("actual retrieval of interface table");
588         lim = buf + needed;
589
590         sdl = NULL;             /* XXX just to keep gcc -Wall happy */
591         for (next = buf; next < lim; next += ifm->ifm_msglen) {
592                 ifm = (struct if_msghdr *)next;
593                 if (ifm->ifm_type == RTM_IFINFO) {
594                         sdl = (struct sockaddr_dl *)(ifm + 1);
595                         flags = ifm->ifm_flags;
596                         continue;
597                 }
598                 if ((flags & IFF_UP) == 0 ||
599                     (flags & (((multicast_mode == PER_INTERFACE_MULTICAST) ?
600                                 IFF_MULTICAST : 0) |
601                                 IFF_BROADCAST|iff_flag)) == 0)
602                         continue;
603                 if (ifm->ifm_type != RTM_NEWADDR)
604                         quit("out of sync parsing NET_RT_IFLIST");
605                 ifam = (struct ifa_msghdr *)ifm;
606                 info.rti_addrs = ifam->ifam_addrs;
607                 rt_xaddrs((char *)(ifam + 1), ifam->ifam_msglen + (char *)ifam,
608                         &info);
609                 /* gag, wish we could get rid of Internet dependencies */
610 #define dstaddr info.rti_info[RTAX_BRD]
611 #define ifaddr info.rti_info[RTAX_IFA]
612 #define IPADDR_SA(x) ((struct sockaddr_in *)(x))->sin_addr.s_addr
613 #define PORT_SA(x) ((struct sockaddr_in *)(x))->sin_port
614                 if (dstaddr == 0 || dstaddr->sa_family != AF_INET)
615                         continue;
616                 PORT_SA(dstaddr) = sp->s_port;
617                 for (np = neighbors; np != NULL; np = np->n_next)
618                         if (memcmp(sdl->sdl_data, np->n_name,
619                                    sdl->sdl_nlen) == 0 &&
620                             IPADDR_SA(np->n_addr) == IPADDR_SA(dstaddr))
621                                 break;
622                 if (np != NULL)
623                         continue;
624                 len = sizeof(*np) + dstaddr->sa_len + sdl->sdl_nlen + 1;
625                 np = (struct neighbor *)malloc(len);
626                 if (np == NULL)
627                         quit("malloc of neighbor structure");
628                 memset(np, 0, len);
629                 np->n_flags = flags;
630                 np->n_addr = (struct sockaddr *)(np + 1);
631                 np->n_addrlen = dstaddr->sa_len;
632                 np->n_name = np->n_addrlen + (char *)np->n_addr;
633                 memcpy((char *)np->n_addr, (char *)dstaddr, np->n_addrlen);
634                 memcpy(np->n_name, sdl->sdl_data, sdl->sdl_nlen);
635                 if (multicast_mode == PER_INTERFACE_MULTICAST &&
636                     (flags & IFF_MULTICAST) &&
637                    !(flags & IFF_LOOPBACK)) {
638                         struct ip_mreq mreq;
639
640                         memcpy((char *)np->n_addr, (char *)ifaddr,
641                                 np->n_addrlen);
642                         mreq.imr_multiaddr.s_addr = htonl(INADDR_WHOD_GROUP);
643                         mreq.imr_interface.s_addr =
644                           ((struct sockaddr_in *)np->n_addr)->sin_addr.s_addr;
645                         if (setsockopt(s, IPPROTO_IP, IP_ADD_MEMBERSHIP,
646                                                 &mreq, sizeof(mreq)) < 0) {
647                                 syslog(LOG_ERR,
648                                     "setsockopt IP_ADD_MEMBERSHIP: %m");
649 #if 0
650                                 /* Fall back to broadcast on this if. */
651                                 np->n_flags &= ~IFF_MULTICAST;
652 #else
653                                 free((char *)np);
654                                 continue;
655 #endif
656                         }
657                 }
658                 np->n_next = neighbors;
659                 neighbors = np;
660         }
661         free(buf);
662         return (1);
663 }
664
665 #ifdef DEBUG
666 void
667 Sendto(int s, const void *buf, size_t cc, int flags,
668        const struct sockaddr *to, int tolen)
669 {
670         struct whod *w = (struct whod *)buf;
671         struct whoent *we;
672         struct sockaddr_in *sin = (struct sockaddr_in *)to;
673
674         printf("sendto %x.%d\n", ntohl(sin->sin_addr.s_addr),
675                                  ntohs(sin->sin_port));
676         printf("hostname %s %s\n", w->wd_hostname,
677            interval(ntohl(w->wd_sendtime) - ntohl(w->wd_boottime), "  up"));
678         printf("load %4.2f, %4.2f, %4.2f\n",
679             ntohl(w->wd_loadav[0]) / 100.0, ntohl(w->wd_loadav[1]) / 100.0,
680             ntohl(w->wd_loadav[2]) / 100.0);
681         cc -= WHDRSIZE;
682         for (we = w->wd_we, cc /= sizeof(struct whoent); cc > 0; cc--, we++) {
683                 time_t t = ntohl(we->we_utmp.out_time);
684                 printf("%-8.8s %s:%s %.12s",
685                         we->we_utmp.out_name,
686                         w->wd_hostname, we->we_utmp.out_line,
687                         ctime(&t)+4);
688                 we->we_idle = ntohl(we->we_idle) / 60;
689                 if (we->we_idle) {
690                         if (we->we_idle >= 100*60)
691                                 we->we_idle = 100*60 - 1;
692                         if (we->we_idle >= 60)
693                                 printf(" %2d", we->we_idle / 60);
694                         else
695                                 printf("   ");
696                         printf(":%02d", we->we_idle % 60);
697                 }
698                 printf("\n");
699         }
700 }
701
702 char *
703 interval(int time, char *updown)
704 {
705         static char resbuf[32];
706         int days, hours, minutes;
707
708         if (time < 0 || time > 3*30*24*60*60) {
709                 sprintf(resbuf, "   %s ??:??", updown);
710                 return (resbuf);
711         }
712         minutes = (time + 59) / 60;             /* round to minutes */
713         hours = minutes / 60; minutes %= 60;
714         days = hours / 24; hours %= 24;
715         if (days)
716                 sprintf(resbuf, "%s %2d+%02d:%02d",
717                     updown, days, hours, minutes);
718         else
719                 sprintf(resbuf, "%s    %2d:%02d",
720                     updown, hours, minutes);
721         return (resbuf);
722 }
723 #endif