Home | History | Annotate | Line # | Download | only in mrinfo
mrinfo.c revision 1.6
      1  1.6   kleink /*	$NetBSD: mrinfo.c,v 1.6 1998/05/09 17:22:08 kleink Exp $	*/
      2  1.3  thorpej 
      3  1.1  mycroft /*
      4  1.1  mycroft  * This tool requests configuration info from a multicast router
      5  1.1  mycroft  * and prints the reply (if any).  Invoke it as:
      6  1.1  mycroft  *
      7  1.1  mycroft  *	mrinfo router-name-or-address
      8  1.1  mycroft  *
      9  1.1  mycroft  * Written Wed Mar 24 1993 by Van Jacobson (adapted from the
     10  1.1  mycroft  * multicast mapper written by Pavel Curtis).
     11  1.1  mycroft  *
     12  1.1  mycroft  * The lawyers insist we include the following UC copyright notice.
     13  1.1  mycroft  * The mapper from which this is derived contained a Xerox copyright
     14  1.1  mycroft  * notice which follows the UC one.  Try not to get depressed noting
     15  1.1  mycroft  * that the legal gibberish is larger than the program.
     16  1.1  mycroft  *
     17  1.1  mycroft  * Copyright (c) 1993 Regents of the University of California.
     18  1.1  mycroft  * All rights reserved.
     19  1.1  mycroft  *
     20  1.1  mycroft  * Redistribution and use in source and binary forms, with or without
     21  1.1  mycroft  * modification, are permitted provided that the following conditions
     22  1.1  mycroft  * are met:
     23  1.1  mycroft  * 1. Redistributions of source code must retain the above copyright
     24  1.1  mycroft  *    notice, this list of conditions and the following disclaimer.
     25  1.1  mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     26  1.1  mycroft  *    notice, this list of conditions and the following disclaimer in the
     27  1.1  mycroft  *    documentation and/or other materials provided with the distribution.
     28  1.1  mycroft  * 3. All advertising materials mentioning features or use of this software
     29  1.1  mycroft  *    must display the following acknowledgement:
     30  1.1  mycroft  *	This product includes software developed by the Computer Systems
     31  1.1  mycroft  *	Engineering Group at Lawrence Berkeley Laboratory.
     32  1.1  mycroft  * 4. Neither the name of the University nor of the Laboratory may be used
     33  1.1  mycroft  *    to endorse or promote products derived from this software without
     34  1.1  mycroft  *    specific prior written permission.
     35  1.1  mycroft  *
     36  1.1  mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     37  1.1  mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     38  1.1  mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     39  1.1  mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     40  1.1  mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     41  1.1  mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     42  1.1  mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     43  1.1  mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     44  1.1  mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     45  1.1  mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     46  1.1  mycroft  * SUCH DAMAGE.
     47  1.1  mycroft  * ---------------------------------
     48  1.1  mycroft  * Copyright (c) Xerox Corporation 1992. All rights reserved.
     49  1.1  mycroft  *
     50  1.1  mycroft  * License is granted to copy, to use, and to make and to use derivative works
     51  1.1  mycroft  * for research and evaluation purposes, provided that Xerox is acknowledged
     52  1.1  mycroft  * in all documentation pertaining to any such copy or derivative work. Xerox
     53  1.1  mycroft  * grants no other licenses expressed or implied. The Xerox trade name should
     54  1.1  mycroft  * not be used in any advertising without its written permission.
     55  1.1  mycroft  *
     56  1.1  mycroft  * XEROX CORPORATION MAKES NO REPRESENTATIONS CONCERNING EITHER THE
     57  1.1  mycroft  * MERCHANTABILITY OF THIS SOFTWARE OR THE SUITABILITY OF THIS SOFTWARE FOR
     58  1.1  mycroft  * ANY PARTICULAR PURPOSE.  The software is provided "as is" without express
     59  1.1  mycroft  * or implied warranty of any kind.
     60  1.1  mycroft  *
     61  1.1  mycroft  * These notices must be retained in any copies of any part of this software.
     62  1.1  mycroft  */
     63  1.1  mycroft 
     64  1.5    lukem #include <sys/cdefs.h>
     65  1.1  mycroft #ifndef lint
     66  1.5    lukem #if 0
     67  1.1  mycroft static char rcsid[] =
     68  1.1  mycroft     "@(#) Header: mrinfo.c,v 1.6 93/04/08 15:14:16 van Exp (LBL)";
     69  1.5    lukem #else
     70  1.6   kleink __RCSID("$NetBSD: mrinfo.c,v 1.6 1998/05/09 17:22:08 kleink Exp $");
     71  1.5    lukem #endif
     72  1.1  mycroft #endif
     73  1.1  mycroft 
     74  1.2      cgd #include <string.h>
     75  1.1  mycroft #include <netdb.h>
     76  1.1  mycroft #include <sys/time.h>
     77  1.1  mycroft #include "defs.h"
     78  1.1  mycroft #include <arpa/inet.h>
     79  1.4  mycroft #ifdef __STDC__
     80  1.4  mycroft #include <stdarg.h>
     81  1.4  mycroft #else
     82  1.4  mycroft #include <varargs.h>
     83  1.4  mycroft #endif
     84  1.1  mycroft 
     85  1.1  mycroft #define DEFAULT_TIMEOUT	4	/* How long to wait before retrying requests */
     86  1.1  mycroft #define DEFAULT_RETRIES 3	/* How many times to ask each router */
     87  1.1  mycroft 
     88  1.1  mycroft u_int32_t	our_addr, target_addr = 0;	/* in NET order */
     89  1.1  mycroft int     debug = 0;
     90  1.1  mycroft int	nflag = 0;
     91  1.1  mycroft int     retries = DEFAULT_RETRIES;
     92  1.1  mycroft int     timeout = DEFAULT_TIMEOUT;
     93  1.4  mycroft int	target_level = 0;
     94  1.1  mycroft vifi_t  numvifs;		/* to keep loader happy */
     95  1.1  mycroft 				/* (see COPY_TABLES macro called in kern.c) */
     96  1.1  mycroft 
     97  1.4  mycroft char *			inet_name __P((u_int32_t addr));
     98  1.4  mycroft void			ask __P((u_int32_t dst));
     99  1.4  mycroft void			ask2 __P((u_int32_t dst));
    100  1.4  mycroft int			get_number __P((int *var, int deflt, char ***pargv,
    101  1.4  mycroft 					int *pargc));
    102  1.4  mycroft u_int32_t			host_addr __P((char *name));
    103  1.4  mycroft void			usage __P((void));
    104  1.4  mycroft 
    105  1.4  mycroft /* to shut up -Wstrict-prototypes */
    106  1.4  mycroft int			main __P((int argc, char *argv[]));
    107  1.4  mycroft 
    108  1.4  mycroft 
    109  1.1  mycroft char   *
    110  1.1  mycroft inet_name(addr)
    111  1.1  mycroft 	u_int32_t  addr;
    112  1.1  mycroft {
    113  1.1  mycroft 	struct hostent *e;
    114  1.1  mycroft 	struct in_addr in;
    115  1.1  mycroft 
    116  1.1  mycroft 	if (addr == 0)
    117  1.1  mycroft 		return "local";
    118  1.1  mycroft 
    119  1.1  mycroft 	if (nflag ||
    120  1.1  mycroft 	    (e = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET)) == NULL) {
    121  1.1  mycroft 		in.s_addr = addr;
    122  1.1  mycroft 		return (inet_ntoa(in));
    123  1.1  mycroft 	}
    124  1.1  mycroft 	return (e->h_name);
    125  1.1  mycroft }
    126  1.1  mycroft 
    127  1.1  mycroft /*
    128  1.1  mycroft  * Log errors and other messages to stderr, according to the severity of the
    129  1.1  mycroft  * message and the current debug level.  For errors of severity LOG_ERR or
    130  1.1  mycroft  * worse, terminate the program.
    131  1.1  mycroft  */
    132  1.4  mycroft #ifdef __STDC__
    133  1.4  mycroft void
    134  1.4  mycroft log(int severity, int syserr, char *format, ...)
    135  1.4  mycroft {
    136  1.4  mycroft 	va_list ap;
    137  1.4  mycroft 	char    fmt[100];
    138  1.4  mycroft 
    139  1.4  mycroft 	va_start(ap, format);
    140  1.4  mycroft #else
    141  1.1  mycroft void
    142  1.4  mycroft log(severity, syserr, format, va_alist)
    143  1.1  mycroft 	int     severity, syserr;
    144  1.1  mycroft 	char   *format;
    145  1.4  mycroft 	va_dcl
    146  1.1  mycroft {
    147  1.4  mycroft 	va_list ap;
    148  1.1  mycroft 	char    fmt[100];
    149  1.1  mycroft 
    150  1.4  mycroft 	va_start(ap);
    151  1.4  mycroft #endif
    152  1.1  mycroft 	switch (debug) {
    153  1.1  mycroft 	case 0:
    154  1.1  mycroft 		if (severity > LOG_WARNING)
    155  1.1  mycroft 			return;
    156  1.1  mycroft 	case 1:
    157  1.1  mycroft 		if (severity > LOG_NOTICE)
    158  1.1  mycroft 			return;
    159  1.1  mycroft 	case 2:
    160  1.1  mycroft 		if (severity > LOG_INFO)
    161  1.1  mycroft 			return;
    162  1.1  mycroft 	default:
    163  1.1  mycroft 		fmt[0] = '\0';
    164  1.1  mycroft 		if (severity == LOG_WARNING)
    165  1.1  mycroft 			strcat(fmt, "warning - ");
    166  1.1  mycroft 		strncat(fmt, format, 80);
    167  1.4  mycroft 		vfprintf(stderr, fmt, ap);
    168  1.1  mycroft 		if (syserr == 0)
    169  1.1  mycroft 			fprintf(stderr, "\n");
    170  1.1  mycroft 		else
    171  1.6   kleink 			fprintf(stderr, ": %s\n", strerror(syserr));
    172  1.1  mycroft 	}
    173  1.1  mycroft 
    174  1.1  mycroft 	if (severity <= LOG_ERR)
    175  1.1  mycroft 		exit(-1);
    176  1.1  mycroft }
    177  1.1  mycroft 
    178  1.1  mycroft /*
    179  1.1  mycroft  * Send a neighbors-list request.
    180  1.1  mycroft  */
    181  1.1  mycroft void
    182  1.1  mycroft ask(dst)
    183  1.1  mycroft 	u_int32_t  dst;
    184  1.1  mycroft {
    185  1.1  mycroft 	send_igmp(our_addr, dst, IGMP_DVMRP, DVMRP_ASK_NEIGHBORS,
    186  1.1  mycroft 			htonl(MROUTED_LEVEL), 0);
    187  1.1  mycroft }
    188  1.1  mycroft 
    189  1.1  mycroft void
    190  1.1  mycroft ask2(dst)
    191  1.1  mycroft 	u_int32_t  dst;
    192  1.1  mycroft {
    193  1.1  mycroft 	send_igmp(our_addr, dst, IGMP_DVMRP, DVMRP_ASK_NEIGHBORS2,
    194  1.1  mycroft 			htonl(MROUTED_LEVEL), 0);
    195  1.1  mycroft }
    196  1.1  mycroft 
    197  1.1  mycroft /*
    198  1.1  mycroft  * Process an incoming neighbor-list message.
    199  1.1  mycroft  */
    200  1.1  mycroft void
    201  1.4  mycroft accept_neighbors(src, dst, p, datalen, level)
    202  1.4  mycroft 	u_int32_t	src, dst, level;
    203  1.4  mycroft 	u_char	*p;
    204  1.1  mycroft 	int     datalen;
    205  1.1  mycroft {
    206  1.1  mycroft 	u_char *ep = p + datalen;
    207  1.1  mycroft #define GET_ADDR(a) (a = ((u_int32_t)*p++ << 24), a += ((u_int32_t)*p++ << 16),\
    208  1.1  mycroft 		     a += ((u_int32_t)*p++ << 8), a += *p++)
    209  1.1  mycroft 
    210  1.1  mycroft 	printf("%s (%s):\n", inet_fmt(src, s1), inet_name(src));
    211  1.1  mycroft 	while (p < ep) {
    212  1.1  mycroft 		register u_int32_t laddr;
    213  1.1  mycroft 		register u_char metric;
    214  1.1  mycroft 		register u_char thresh;
    215  1.1  mycroft 		register int ncount;
    216  1.1  mycroft 
    217  1.1  mycroft 		GET_ADDR(laddr);
    218  1.1  mycroft 		laddr = htonl(laddr);
    219  1.1  mycroft 		metric = *p++;
    220  1.1  mycroft 		thresh = *p++;
    221  1.1  mycroft 		ncount = *p++;
    222  1.1  mycroft 		while (--ncount >= 0) {
    223  1.1  mycroft 			register u_int32_t neighbor;
    224  1.1  mycroft 			GET_ADDR(neighbor);
    225  1.1  mycroft 			neighbor = htonl(neighbor);
    226  1.1  mycroft 			printf("  %s -> ", inet_fmt(laddr, s1));
    227  1.1  mycroft 			printf("%s (%s) [%d/%d]\n", inet_fmt(neighbor, s1),
    228  1.1  mycroft 			       inet_name(neighbor), metric, thresh);
    229  1.1  mycroft 		}
    230  1.1  mycroft 	}
    231  1.1  mycroft }
    232  1.1  mycroft 
    233  1.1  mycroft void
    234  1.4  mycroft accept_neighbors2(src, dst, p, datalen, level)
    235  1.4  mycroft 	u_int32_t	src, dst, level;
    236  1.4  mycroft 	u_char	*p;
    237  1.1  mycroft 	int     datalen;
    238  1.1  mycroft {
    239  1.1  mycroft 	u_char *ep = p + datalen;
    240  1.4  mycroft 	u_int broken_cisco = ((level & 0xffff) == 0x020a); /* 10.2 */
    241  1.1  mycroft 	/* well, only possibly_broken_cisco, but that's too long to type. */
    242  1.1  mycroft 
    243  1.4  mycroft 	printf("%s (%s) [version %d.%d", inet_fmt(src, s1), inet_name(src),
    244  1.4  mycroft 	       level & 0xff, (level >> 8) & 0xff);
    245  1.4  mycroft 	if ((level >> 16) & NF_LEAF)   { printf (",leaf"); }
    246  1.4  mycroft 	if ((level >> 16) & NF_PRUNE)  { printf (",prune"); }
    247  1.4  mycroft 	if ((level >> 16) & NF_GENID)  { printf (",genid"); }
    248  1.4  mycroft 	if ((level >> 16) & NF_MTRACE) { printf (",mtrace"); }
    249  1.4  mycroft 	printf ("]:\n");
    250  1.1  mycroft 
    251  1.1  mycroft 	while (p < ep) {
    252  1.1  mycroft 		register u_char metric;
    253  1.1  mycroft 		register u_char thresh;
    254  1.1  mycroft 		register u_char flags;
    255  1.1  mycroft 		register int ncount;
    256  1.1  mycroft 		register u_int32_t laddr = *(u_int32_t*)p;
    257  1.1  mycroft 
    258  1.1  mycroft 		p += 4;
    259  1.1  mycroft 		metric = *p++;
    260  1.1  mycroft 		thresh = *p++;
    261  1.1  mycroft 		flags = *p++;
    262  1.1  mycroft 		ncount = *p++;
    263  1.1  mycroft 		if (broken_cisco && ncount == 0)	/* dumb Ciscos */
    264  1.1  mycroft 			ncount = 1;
    265  1.1  mycroft 		if (broken_cisco && ncount > 15)	/* dumb Ciscos */
    266  1.1  mycroft 			ncount = ncount & 0xf;
    267  1.1  mycroft 		while (--ncount >= 0 && p < ep) {
    268  1.1  mycroft 			register u_int32_t neighbor = *(u_int32_t*)p;
    269  1.1  mycroft 			p += 4;
    270  1.1  mycroft 			printf("  %s -> ", inet_fmt(laddr, s1));
    271  1.1  mycroft 			printf("%s (%s) [%d/%d", inet_fmt(neighbor, s1),
    272  1.1  mycroft 			       inet_name(neighbor), metric, thresh);
    273  1.1  mycroft 			if (flags & DVMRP_NF_TUNNEL)
    274  1.1  mycroft 				printf("/tunnel");
    275  1.1  mycroft 			if (flags & DVMRP_NF_SRCRT)
    276  1.1  mycroft 				printf("/srcrt");
    277  1.1  mycroft 			if (flags & DVMRP_NF_PIM)
    278  1.1  mycroft 				printf("/pim");
    279  1.1  mycroft 			if (flags & DVMRP_NF_QUERIER)
    280  1.1  mycroft 				printf("/querier");
    281  1.1  mycroft 			if (flags & DVMRP_NF_DISABLED)
    282  1.1  mycroft 				printf("/disabled");
    283  1.1  mycroft 			if (flags & DVMRP_NF_DOWN)
    284  1.1  mycroft 				printf("/down");
    285  1.1  mycroft 			if (flags & DVMRP_NF_LEAF)
    286  1.1  mycroft 				printf("/leaf");
    287  1.1  mycroft 			printf("]\n");
    288  1.1  mycroft 		}
    289  1.1  mycroft 	}
    290  1.1  mycroft }
    291  1.1  mycroft 
    292  1.1  mycroft int
    293  1.1  mycroft get_number(var, deflt, pargv, pargc)
    294  1.1  mycroft 	int    *var, *pargc, deflt;
    295  1.1  mycroft 	char ***pargv;
    296  1.1  mycroft {
    297  1.1  mycroft 	if ((*pargv)[0][2] == '\0') {	/* Get the value from the next
    298  1.1  mycroft 					 * argument */
    299  1.1  mycroft 		if (*pargc > 1 && isdigit((*pargv)[1][0])) {
    300  1.1  mycroft 			(*pargv)++, (*pargc)--;
    301  1.1  mycroft 			*var = atoi((*pargv)[0]);
    302  1.1  mycroft 			return 1;
    303  1.1  mycroft 		} else if (deflt >= 0) {
    304  1.1  mycroft 			*var = deflt;
    305  1.1  mycroft 			return 1;
    306  1.1  mycroft 		} else
    307  1.1  mycroft 			return 0;
    308  1.1  mycroft 	} else {		/* Get value from the rest of this argument */
    309  1.1  mycroft 		if (isdigit((*pargv)[0][2])) {
    310  1.1  mycroft 			*var = atoi((*pargv)[0] + 2);
    311  1.1  mycroft 			return 1;
    312  1.1  mycroft 		} else {
    313  1.1  mycroft 			return 0;
    314  1.1  mycroft 		}
    315  1.1  mycroft 	}
    316  1.1  mycroft }
    317  1.1  mycroft 
    318  1.1  mycroft void
    319  1.1  mycroft usage()
    320  1.1  mycroft {
    321  1.1  mycroft 	fprintf(stderr,
    322  1.1  mycroft 	    "Usage: mrinfo [-n] [-t timeout] [-r retries] [router]\n");
    323  1.1  mycroft 	exit(1);
    324  1.1  mycroft }
    325  1.1  mycroft 
    326  1.1  mycroft int
    327  1.1  mycroft main(argc, argv)
    328  1.1  mycroft 	int     argc;
    329  1.1  mycroft 	char   *argv[];
    330  1.1  mycroft {
    331  1.4  mycroft 	int tries;
    332  1.4  mycroft 	int trynew;
    333  1.4  mycroft 	struct timeval et;
    334  1.4  mycroft 	struct hostent *hp;
    335  1.4  mycroft 	struct hostent bogus;
    336  1.4  mycroft 	char *host;
    337  1.4  mycroft 	int curaddr;
    338  1.4  mycroft 
    339  1.1  mycroft 	setlinebuf(stderr);
    340  1.1  mycroft 
    341  1.1  mycroft 	if (geteuid() != 0) {
    342  1.1  mycroft 		fprintf(stderr, "mrinfo: must be root\n");
    343  1.1  mycroft 		exit(1);
    344  1.1  mycroft 	}
    345  1.1  mycroft 	argv++, argc--;
    346  1.1  mycroft 	while (argc > 0 && argv[0][0] == '-') {
    347  1.1  mycroft 		switch (argv[0][1]) {
    348  1.1  mycroft 		case 'd':
    349  1.1  mycroft 			if (!get_number(&debug, DEFAULT_DEBUG, &argv, &argc))
    350  1.1  mycroft 				usage();
    351  1.1  mycroft 			break;
    352  1.1  mycroft 		case 'n':
    353  1.1  mycroft 			++nflag;
    354  1.1  mycroft 			break;
    355  1.1  mycroft 		case 'r':
    356  1.1  mycroft 			if (!get_number(&retries, -1, &argv, &argc))
    357  1.1  mycroft 				usage();
    358  1.1  mycroft 			break;
    359  1.1  mycroft 		case 't':
    360  1.1  mycroft 			if (!get_number(&timeout, -1, &argv, &argc))
    361  1.1  mycroft 				usage();
    362  1.1  mycroft 			break;
    363  1.1  mycroft 		default:
    364  1.1  mycroft 			usage();
    365  1.1  mycroft 		}
    366  1.1  mycroft 		argv++, argc--;
    367  1.1  mycroft 	}
    368  1.1  mycroft 	if (argc > 1)
    369  1.1  mycroft 		usage();
    370  1.1  mycroft 	if (argc == 1)
    371  1.4  mycroft 		host = argv[0];
    372  1.1  mycroft 	else
    373  1.4  mycroft 		host = "127.0.0.1";
    374  1.4  mycroft 
    375  1.4  mycroft 	if ((target_addr = inet_addr(host)) != -1) {
    376  1.4  mycroft 		hp = &bogus;
    377  1.4  mycroft 		hp->h_length = sizeof(target_addr);
    378  1.4  mycroft 		hp->h_addr_list = (char **)malloc(2 * sizeof(char *));
    379  1.4  mycroft 		hp->h_addr_list[0] = malloc(hp->h_length);
    380  1.4  mycroft 		memcpy(hp->h_addr_list[0], &target_addr, hp->h_length);
    381  1.4  mycroft 		hp->h_addr_list[1] = 0;
    382  1.4  mycroft 	} else
    383  1.4  mycroft 		hp = gethostbyname(host);
    384  1.1  mycroft 
    385  1.4  mycroft 	if (hp == NULL) {
    386  1.1  mycroft 		fprintf(stderr, "mrinfo: %s: no such host\n", argv[0]);
    387  1.1  mycroft 		exit(1);
    388  1.1  mycroft 	}
    389  1.1  mycroft 	if (debug)
    390  1.1  mycroft 		fprintf(stderr, "Debug level %u\n", debug);
    391  1.1  mycroft 
    392  1.1  mycroft 	init_igmp();
    393  1.1  mycroft 
    394  1.4  mycroft 	/* Check all addresses; mrouters often have unreachable interfaces */
    395  1.4  mycroft 	for (curaddr = 0; hp->h_addr_list[curaddr] != NULL; curaddr++) {
    396  1.4  mycroft 	    memcpy(&target_addr, hp->h_addr_list[curaddr], hp->h_length);
    397  1.4  mycroft 	    {			/* Find a good local address for us. */
    398  1.1  mycroft 		int     udp;
    399  1.1  mycroft 		struct sockaddr_in addr;
    400  1.1  mycroft 		int     addrlen = sizeof(addr);
    401  1.1  mycroft 
    402  1.1  mycroft 		addr.sin_family = AF_INET;
    403  1.1  mycroft #if (defined(BSD) && (BSD >= 199103))
    404  1.1  mycroft 		addr.sin_len = sizeof addr;
    405  1.1  mycroft #endif
    406  1.1  mycroft 		addr.sin_addr.s_addr = target_addr;
    407  1.1  mycroft 		addr.sin_port = htons(2000);	/* any port over 1024 will
    408  1.1  mycroft 						 * do... */
    409  1.1  mycroft 		if ((udp = socket(AF_INET, SOCK_DGRAM, 0)) < 0
    410  1.1  mycroft 		|| connect(udp, (struct sockaddr *) & addr, sizeof(addr)) < 0
    411  1.1  mycroft 		    || getsockname(udp, (struct sockaddr *) & addr, &addrlen) < 0) {
    412  1.1  mycroft 			perror("Determining local address");
    413  1.1  mycroft 			exit(-1);
    414  1.1  mycroft 		}
    415  1.1  mycroft 		close(udp);
    416  1.1  mycroft 		our_addr = addr.sin_addr.s_addr;
    417  1.4  mycroft 	    }
    418  1.4  mycroft 
    419  1.4  mycroft 	    tries = 0;
    420  1.4  mycroft 	    trynew = 1;
    421  1.4  mycroft 	    /*
    422  1.4  mycroft 	     * New strategy: send 'ask2' for two timeouts, then fall back
    423  1.4  mycroft 	     * to 'ask', since it's not very likely that we are going to
    424  1.4  mycroft 	     * find someone who only responds to 'ask' these days
    425  1.4  mycroft 	     */
    426  1.4  mycroft 	    ask2(target_addr);
    427  1.1  mycroft 
    428  1.4  mycroft 	    gettimeofday(&et, 0);
    429  1.4  mycroft 	    et.tv_sec += timeout;
    430  1.1  mycroft 
    431  1.4  mycroft 	    /* Main receive loop */
    432  1.4  mycroft 	    for (;;) {
    433  1.1  mycroft 		fd_set  fds;
    434  1.4  mycroft 		struct timeval tv, now;
    435  1.1  mycroft 		int     count, recvlen, dummy = 0;
    436  1.1  mycroft 		register u_int32_t src, dst, group;
    437  1.1  mycroft 		struct ip *ip;
    438  1.1  mycroft 		struct igmp *igmp;
    439  1.1  mycroft 		int     ipdatalen, iphdrlen, igmpdatalen;
    440  1.1  mycroft 
    441  1.1  mycroft 		FD_ZERO(&fds);
    442  1.1  mycroft 		FD_SET(igmp_socket, &fds);
    443  1.1  mycroft 
    444  1.4  mycroft 		gettimeofday(&now, 0);
    445  1.4  mycroft 		tv.tv_sec = et.tv_sec - now.tv_sec;
    446  1.4  mycroft 		tv.tv_usec = et.tv_usec - now.tv_usec;
    447  1.4  mycroft 
    448  1.4  mycroft 		if (tv.tv_usec < 0) {
    449  1.4  mycroft 			tv.tv_usec += 1000000L;
    450  1.4  mycroft 			--tv.tv_sec;
    451  1.4  mycroft 		}
    452  1.4  mycroft 		if (tv.tv_sec < 0)
    453  1.4  mycroft 			tv.tv_sec = tv.tv_usec = 0;
    454  1.1  mycroft 
    455  1.1  mycroft 		count = select(igmp_socket + 1, &fds, 0, 0, &tv);
    456  1.1  mycroft 
    457  1.1  mycroft 		if (count < 0) {
    458  1.1  mycroft 			if (errno != EINTR)
    459  1.1  mycroft 				perror("select");
    460  1.1  mycroft 			continue;
    461  1.1  mycroft 		} else if (count == 0) {
    462  1.1  mycroft 			log(LOG_DEBUG, 0, "Timed out receiving neighbor lists");
    463  1.4  mycroft 			if (++tries > retries)
    464  1.4  mycroft 				break;
    465  1.4  mycroft 			/* If we've tried ASK_NEIGHBORS2 twice with
    466  1.4  mycroft 			 * no response, fall back to ASK_NEIGHBORS
    467  1.4  mycroft 			 */
    468  1.4  mycroft 			if (tries == 2 && target_level == 0)
    469  1.4  mycroft 				trynew = 0;
    470  1.4  mycroft 			if (target_level == 0 && trynew == 0)
    471  1.1  mycroft 				ask(target_addr);
    472  1.1  mycroft 			else
    473  1.1  mycroft 				ask2(target_addr);
    474  1.4  mycroft 			gettimeofday(&et, 0);
    475  1.4  mycroft 			et.tv_sec += timeout;
    476  1.1  mycroft 			continue;
    477  1.1  mycroft 		}
    478  1.1  mycroft 		recvlen = recvfrom(igmp_socket, recv_buf, RECV_BUF_SIZE,
    479  1.1  mycroft 				   0, NULL, &dummy);
    480  1.1  mycroft 		if (recvlen <= 0) {
    481  1.1  mycroft 			if (recvlen && errno != EINTR)
    482  1.1  mycroft 				perror("recvfrom");
    483  1.1  mycroft 			continue;
    484  1.1  mycroft 		}
    485  1.1  mycroft 
    486  1.1  mycroft 		if (recvlen < sizeof(struct ip)) {
    487  1.1  mycroft 			log(LOG_WARNING, 0,
    488  1.1  mycroft 			    "packet too short (%u bytes) for IP header",
    489  1.1  mycroft 			    recvlen);
    490  1.1  mycroft 			continue;
    491  1.1  mycroft 		}
    492  1.1  mycroft 		ip = (struct ip *) recv_buf;
    493  1.1  mycroft 		if (ip->ip_p == 0)
    494  1.1  mycroft 			continue;	/* Request to install cache entry */
    495  1.1  mycroft 		src = ip->ip_src.s_addr;
    496  1.1  mycroft 		dst = ip->ip_dst.s_addr;
    497  1.1  mycroft 		iphdrlen = ip->ip_hl << 2;
    498  1.1  mycroft 		ipdatalen = ip->ip_len;
    499  1.1  mycroft 		if (iphdrlen + ipdatalen != recvlen) {
    500  1.4  mycroft 		    log(LOG_WARNING, 0,
    501  1.4  mycroft 		      "packet shorter (%u bytes) than hdr+data length (%u+%u)",
    502  1.4  mycroft 		      recvlen, iphdrlen, ipdatalen);
    503  1.4  mycroft 		    continue;
    504  1.1  mycroft 		}
    505  1.1  mycroft 		igmp = (struct igmp *) (recv_buf + iphdrlen);
    506  1.1  mycroft 		group = igmp->igmp_group.s_addr;
    507  1.1  mycroft 		igmpdatalen = ipdatalen - IGMP_MINLEN;
    508  1.1  mycroft 		if (igmpdatalen < 0) {
    509  1.4  mycroft 		    log(LOG_WARNING, 0,
    510  1.4  mycroft 			"IP data field too short (%u bytes) for IGMP, from %s",
    511  1.4  mycroft 			ipdatalen, inet_fmt(src, s1));
    512  1.4  mycroft 		    continue;
    513  1.1  mycroft 		}
    514  1.1  mycroft 		if (igmp->igmp_type != IGMP_DVMRP)
    515  1.1  mycroft 			continue;
    516  1.1  mycroft 
    517  1.1  mycroft 		switch (igmp->igmp_code) {
    518  1.1  mycroft 		case DVMRP_NEIGHBORS:
    519  1.1  mycroft 		case DVMRP_NEIGHBORS2:
    520  1.1  mycroft 			if (src != target_addr) {
    521  1.1  mycroft 				fprintf(stderr, "mrinfo: got reply from %s",
    522  1.1  mycroft 					inet_fmt(src, s1));
    523  1.1  mycroft 				fprintf(stderr, " instead of %s\n",
    524  1.1  mycroft 					inet_fmt(target_addr, s1));
    525  1.1  mycroft 				/*continue;*/
    526  1.1  mycroft 			}
    527  1.1  mycroft 			break;
    528  1.1  mycroft 		default:
    529  1.1  mycroft 			continue;	/* ignore all other DVMRP messages */
    530  1.1  mycroft 		}
    531  1.1  mycroft 
    532  1.1  mycroft 		switch (igmp->igmp_code) {
    533  1.1  mycroft 
    534  1.1  mycroft 		case DVMRP_NEIGHBORS:
    535  1.1  mycroft 			if (group) {
    536  1.1  mycroft 				/* knows about DVMRP_NEIGHBORS2 msg */
    537  1.1  mycroft 				if (target_level == 0) {
    538  1.1  mycroft 					target_level = ntohl(group);
    539  1.1  mycroft 					ask2(target_addr);
    540  1.1  mycroft 				}
    541  1.1  mycroft 			} else {
    542  1.4  mycroft 				accept_neighbors(src, dst, (u_char *)(igmp + 1),
    543  1.4  mycroft 						 igmpdatalen, ntohl(group));
    544  1.1  mycroft 				exit(0);
    545  1.1  mycroft 			}
    546  1.1  mycroft 			break;
    547  1.1  mycroft 
    548  1.1  mycroft 		case DVMRP_NEIGHBORS2:
    549  1.4  mycroft 			accept_neighbors2(src, dst, (u_char *)(igmp + 1),
    550  1.4  mycroft 					  igmpdatalen, ntohl(group));
    551  1.1  mycroft 			exit(0);
    552  1.1  mycroft 		}
    553  1.4  mycroft 	    }
    554  1.1  mycroft 	}
    555  1.4  mycroft 	exit(1);
    556  1.1  mycroft }
    557  1.1  mycroft 
    558  1.1  mycroft /* dummies */
    559  1.4  mycroft void accept_probe(src, dst, p, datalen, level)
    560  1.4  mycroft 	u_int32_t src, dst, level;
    561  1.4  mycroft 	char *p;
    562  1.4  mycroft 	int datalen;
    563  1.1  mycroft {
    564  1.1  mycroft }
    565  1.4  mycroft void accept_group_report(src, dst, group, r_type)
    566  1.4  mycroft 	u_int32_t src, dst, group;
    567  1.4  mycroft 	int r_type;
    568  1.1  mycroft {
    569  1.1  mycroft }
    570  1.4  mycroft void accept_neighbor_request2(src, dst)
    571  1.4  mycroft 	u_int32_t src, dst;
    572  1.1  mycroft {
    573  1.1  mycroft }
    574  1.4  mycroft void accept_report(src, dst, p, datalen, level)
    575  1.4  mycroft 	u_int32_t src, dst, level;
    576  1.4  mycroft 	char *p;
    577  1.4  mycroft 	int datalen;
    578  1.1  mycroft {
    579  1.1  mycroft }
    580  1.4  mycroft void accept_neighbor_request(src, dst)
    581  1.4  mycroft 	u_int32_t src, dst;
    582  1.1  mycroft {
    583  1.1  mycroft }
    584  1.4  mycroft void accept_prune(src, dst, p, datalen)
    585  1.4  mycroft 	u_int32_t src, dst;
    586  1.4  mycroft 	char *p;
    587  1.4  mycroft 	int datalen;
    588  1.1  mycroft {
    589  1.1  mycroft }
    590  1.4  mycroft void accept_graft(src, dst, p, datalen)
    591  1.4  mycroft 	u_int32_t src, dst;
    592  1.4  mycroft 	char *p;
    593  1.4  mycroft 	int datalen;
    594  1.1  mycroft {
    595  1.1  mycroft }
    596  1.4  mycroft void accept_g_ack(src, dst, p, datalen)
    597  1.4  mycroft 	u_int32_t src, dst;
    598  1.4  mycroft 	char *p;
    599  1.4  mycroft 	int datalen;
    600  1.1  mycroft {
    601  1.1  mycroft }
    602  1.4  mycroft void add_table_entry(origin, mcastgrp)
    603  1.4  mycroft 	u_int32_t origin, mcastgrp;
    604  1.1  mycroft {
    605  1.1  mycroft }
    606  1.1  mycroft void check_vif_state()
    607  1.1  mycroft {
    608  1.1  mycroft }
    609  1.4  mycroft void accept_leave_message(src, dst, group)
    610  1.4  mycroft 	u_int32_t src, dst, group;
    611  1.4  mycroft {
    612  1.4  mycroft }
    613  1.4  mycroft void accept_mtrace(src, dst, group, data, no, datalen)
    614  1.4  mycroft 	u_int32_t src, dst, group;
    615  1.4  mycroft 	char *data;
    616  1.4  mycroft 	u_int no;
    617  1.4  mycroft 	int datalen;
    618  1.1  mycroft {
    619  1.1  mycroft }
    620  1.4  mycroft void accept_membership_query(src, dst, group, tmo)
    621  1.4  mycroft 	u_int32_t src, dst, group;
    622  1.4  mycroft 	int tmo;
    623  1.1  mycroft {
    624  1.1  mycroft }
    625  1.4  mycroft void accept_info_request(src, dst, p, datalen)
    626  1.4  mycroft 	u_int32_t src, dst;
    627  1.4  mycroft 	u_char *p;
    628  1.4  mycroft 	int datalen;
    629  1.4  mycroft {
    630  1.4  mycroft }
    631  1.4  mycroft void accept_info_reply(src, dst, p, datalen)
    632  1.4  mycroft 	u_int32_t src, dst;
    633  1.4  mycroft 	u_char *p;
    634  1.4  mycroft 	int datalen;
    635  1.1  mycroft {
    636  1.1  mycroft }
    637