Home | History | Annotate | Line # | Download | only in mtrace
mtrace.c revision 1.14.4.2
      1  1.14.4.2   itojun /*	$NetBSD: mtrace.c,v 1.14.4.2 2002/09/04 00:49:49 itojun Exp $	*/
      2       1.4  thorpej 
      3       1.1  mycroft /*
      4       1.1  mycroft  * mtrace.c
      5       1.1  mycroft  *
      6       1.1  mycroft  * This tool traces the branch of a multicast tree from a source to a
      7       1.1  mycroft  * receiver for a particular multicast group and gives statistics
      8       1.1  mycroft  * about packet rate and loss for each hop along the path.  It can
      9       1.1  mycroft  * usually be invoked just as
     10       1.1  mycroft  *
     11       1.1  mycroft  * 	mtrace source
     12       1.1  mycroft  *
     13       1.1  mycroft  * to trace the route from that source to the local host for a default
     14       1.1  mycroft  * group when only the route is desired and not group-specific packet
     15       1.1  mycroft  * counts.  See the usage line for more complex forms.
     16       1.1  mycroft  *
     17       1.1  mycroft  *
     18       1.1  mycroft  * Released 4 Apr 1995.  This program was adapted by Steve Casner
     19       1.1  mycroft  * (USC/ISI) from a prototype written by Ajit Thyagarajan (UDel and
     20       1.1  mycroft  * Xerox PARC).  It attempts to parallel in command syntax and output
     21       1.1  mycroft  * format the unicast traceroute program written by Van Jacobson (LBL)
     22       1.1  mycroft  * for the parts where that makes sense.
     23       1.1  mycroft  *
     24       1.1  mycroft  * Copyright (c) 1995 by the University of Southern California
     25       1.1  mycroft  * All rights reserved.
     26       1.1  mycroft  *
     27       1.1  mycroft  * Permission to use, copy, modify, and distribute this software and its
     28       1.1  mycroft  * documentation in source and binary forms for non-commercial purposes
     29       1.1  mycroft  * and without fee is hereby granted, provided that the above copyright
     30       1.1  mycroft  * notice appear in all copies and that both the copyright notice and
     31       1.1  mycroft  * this permission notice appear in supporting documentation, and that
     32       1.1  mycroft  * any documentation, advertising materials, and other materials related
     33       1.1  mycroft  * to such distribution and use acknowledge that the software was
     34       1.1  mycroft  * developed by the University of Southern California, Information
     35       1.1  mycroft  * Sciences Institute.  The name of the University may not be used to
     36       1.1  mycroft  * endorse or promote products derived from this software without
     37       1.1  mycroft  * specific prior written permission.
     38       1.1  mycroft  *
     39       1.1  mycroft  * THE UNIVERSITY OF SOUTHERN CALIFORNIA makes no representations about
     40       1.1  mycroft  * the suitability of this software for any purpose.  THIS SOFTWARE IS
     41       1.1  mycroft  * PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,
     42       1.1  mycroft  * INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
     43       1.1  mycroft  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
     44       1.1  mycroft  *
     45       1.1  mycroft  * Other copyrights might apply to parts of this software and are so
     46       1.1  mycroft  * noted when applicable.
     47       1.1  mycroft  *
     48       1.1  mycroft  * In particular, parts of the prototype version of this program may
     49       1.1  mycroft  * have been derived from mrouted programs sources covered by the
     50       1.1  mycroft  * license in the accompanying file named "LICENSE".
     51       1.1  mycroft  */
     52       1.1  mycroft 
     53       1.8    lukem #include <sys/cdefs.h>
     54       1.5  mycroft #ifndef lint
     55  1.14.4.2   itojun __RCSID("$NetBSD: mtrace.c,v 1.14.4.2 2002/09/04 00:49:49 itojun Exp $");
     56       1.5  mycroft #endif
     57       1.5  mycroft 
     58       1.8    lukem #include <sys/types.h>
     59       1.8    lukem #include <sys/ioctl.h>
     60       1.1  mycroft #include <sys/time.h>
     61       1.8    lukem #include <netinet/in.h>
     62       1.8    lukem #include <arpa/inet.h>
     63       1.8    lukem #include <ctype.h>
     64       1.1  mycroft #include <memory.h>
     65       1.8    lukem #include <netdb.h>
     66       1.1  mycroft #include <string.h>
     67       1.1  mycroft #include "defs.h"
     68       1.8    lukem 
     69       1.5  mycroft #ifdef __STDC__
     70       1.5  mycroft #include <stdarg.h>
     71       1.5  mycroft #else
     72       1.5  mycroft #include <varargs.h>
     73       1.5  mycroft #endif
     74       1.5  mycroft #ifdef SUNOS5
     75       1.5  mycroft #include <sys/systeminfo.h>
     76       1.5  mycroft #endif
     77       1.1  mycroft 
     78       1.1  mycroft #define DEFAULT_TIMEOUT	3	/* How long to wait before retrying requests */
     79       1.1  mycroft #define DEFAULT_RETRIES 3	/* How many times to try */
     80       1.1  mycroft #define MAXHOPS UNREACHABLE	/* Don't need more hops than max metric */
     81       1.1  mycroft #define UNICAST_TTL 255		/* TTL for unicast response */
     82       1.1  mycroft #define MULTICAST_TTL1 64	/* Default TTL for multicast query/response */
     83       1.1  mycroft #define MULTICAST_TTL_INC 32	/* TTL increment for increase after timeout */
     84       1.1  mycroft #define MULTICAST_TTL_MAX 192	/* Maximum TTL allowed (protect low-BW links */
     85       1.1  mycroft 
     86       1.1  mycroft struct resp_buf {
     87       1.1  mycroft     u_long qtime;		/* Time query was issued */
     88       1.1  mycroft     u_long rtime;		/* Time response was received */
     89       1.1  mycroft     int	len;			/* Number of reports or length of data */
     90       1.1  mycroft     struct igmp igmp;		/* IGMP header */
     91       1.1  mycroft     union {
     92       1.1  mycroft 	struct {
     93       1.1  mycroft 	    struct tr_query q;		/* Query/response header */
     94       1.1  mycroft 	    struct tr_resp r[MAXHOPS];	/* Per-hop reports */
     95       1.1  mycroft 	} t;
     96       1.1  mycroft 	char d[MAX_DVMRP_DATA_LEN];	/* Neighbor data */
     97       1.1  mycroft     } u;
     98       1.1  mycroft } base, incr[2];
     99       1.1  mycroft 
    100       1.1  mycroft #define qhdr u.t.q
    101       1.1  mycroft #define resps u.t.r
    102       1.1  mycroft #define ndata u.d
    103       1.1  mycroft 
    104       1.1  mycroft char names[MAXHOPS][40];
    105       1.5  mycroft int reset[MAXHOPS];			/* To get around 3.4 bug, ... */
    106       1.5  mycroft int swaps[MAXHOPS];			/* To get around 3.6 bug, ... */
    107       1.1  mycroft 
    108       1.1  mycroft int timeout = DEFAULT_TIMEOUT;
    109       1.1  mycroft int nqueries = DEFAULT_RETRIES;
    110       1.1  mycroft int numeric = FALSE;
    111       1.1  mycroft int debug = 0;
    112       1.1  mycroft int passive = FALSE;
    113       1.1  mycroft int multicast = FALSE;
    114       1.5  mycroft int statint = 10;
    115       1.5  mycroft int verbose = 0;
    116       1.1  mycroft 
    117       1.1  mycroft u_int32_t defgrp;			/* Default group if not specified */
    118       1.1  mycroft u_int32_t query_cast;			/* All routers multicast addr */
    119       1.1  mycroft u_int32_t resp_cast;			/* Mtrace response multicast addr */
    120       1.1  mycroft 
    121       1.1  mycroft u_int32_t lcl_addr = 0;			/* This host address, in NET order */
    122       1.1  mycroft u_int32_t dst_netmask;			/* netmask to go with qdst */
    123       1.1  mycroft 
    124       1.1  mycroft /*
    125       1.1  mycroft  * Query/response parameters, all initialized to zero and set later
    126       1.1  mycroft  * to default values or from options.
    127       1.1  mycroft  */
    128       1.5  mycroft u_int32_t qsrc = 0;		/* Source address in the query */
    129       1.5  mycroft u_int32_t qgrp = 0;		/* Group address in the query */
    130       1.5  mycroft u_int32_t qdst = 0;		/* Destination (receiver) address in query */
    131       1.5  mycroft u_char qno  = 0;		/* Max number of hops to query */
    132       1.5  mycroft u_int32_t raddr = 0;		/* Address where response should be sent */
    133       1.5  mycroft int    qttl = 0;		/* TTL for the query packet */
    134       1.5  mycroft u_char rttl = 0;		/* TTL for the response packet */
    135       1.5  mycroft u_int32_t gwy = 0;		/* User-supplied last-hop router address */
    136       1.5  mycroft u_int32_t tdst = 0;		/* Address where trace is sent (last-hop) */
    137       1.1  mycroft 
    138       1.1  mycroft vifi_t  numvifs;		/* to keep loader happy */
    139       1.1  mycroft 				/* (see kern.c) */
    140       1.1  mycroft 
    141       1.8    lukem u_long			byteswap __P((u_long));
    142       1.5  mycroft char *			inet_name __P((u_int32_t addr));
    143       1.5  mycroft u_int32_t			host_addr __P((char *name));
    144       1.5  mycroft /* u_int is promoted u_char */
    145       1.5  mycroft char *			proto_type __P((u_int type));
    146       1.5  mycroft char *			flag_type __P((u_int type));
    147       1.5  mycroft 
    148       1.8    lukem u_int32_t		get_netmask __P((int s, u_int32_t dst));
    149       1.5  mycroft int			get_ttl __P((struct resp_buf *buf));
    150       1.5  mycroft int			t_diff __P((u_long a, u_long b));
    151       1.5  mycroft u_long			fixtime __P((u_long time));
    152       1.5  mycroft int			send_recv __P((u_int32_t dst, int type, int code,
    153       1.5  mycroft 					int tries, struct resp_buf *save));
    154       1.5  mycroft char *			print_host __P((u_int32_t addr));
    155       1.5  mycroft char *			print_host2 __P((u_int32_t addr1, u_int32_t addr2));
    156       1.5  mycroft void			print_trace __P((int index, struct resp_buf *buf));
    157       1.5  mycroft int			what_kind __P((struct resp_buf *buf, char *why));
    158       1.5  mycroft char *			scale __P((int *hop));
    159       1.5  mycroft void			stat_line __P((struct tr_resp *r, struct tr_resp *s,
    160       1.5  mycroft 					int have_next, int *res));
    161       1.5  mycroft void			fixup_stats __P((struct resp_buf *base,
    162       1.5  mycroft 					struct resp_buf *prev,
    163       1.5  mycroft 					struct resp_buf *new));
    164       1.5  mycroft int			print_stats __P((struct resp_buf *base,
    165       1.5  mycroft 					struct resp_buf *prev,
    166       1.5  mycroft 					struct resp_buf *new));
    167       1.5  mycroft void			check_vif_state __P((void));
    168       1.8    lukem void			passive_mode __P((void));
    169       1.5  mycroft 
    170       1.5  mycroft int			main __P((int argc, char *argv[]));
    171       1.2  thorpej 
    172       1.2  thorpej 
    173       1.1  mycroft 
    174       1.5  mycroft char   *
    175       1.1  mycroft inet_name(addr)
    176       1.1  mycroft     u_int32_t  addr;
    177       1.1  mycroft {
    178       1.1  mycroft     struct hostent *e;
    179       1.1  mycroft 
    180       1.1  mycroft     e = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET);
    181       1.1  mycroft 
    182       1.1  mycroft     return e ? e->h_name : "?";
    183       1.1  mycroft }
    184       1.1  mycroft 
    185       1.1  mycroft 
    186       1.1  mycroft u_int32_t
    187       1.1  mycroft host_addr(name)
    188       1.1  mycroft     char   *name;
    189       1.1  mycroft {
    190       1.5  mycroft     struct hostent *e = (struct hostent *)0;
    191       1.5  mycroft     u_int32_t  addr;
    192       1.1  mycroft     int	i, dots = 3;
    193       1.1  mycroft     char	buf[40];
    194       1.1  mycroft     char	*ip = name;
    195       1.1  mycroft     char	*op = buf;
    196       1.1  mycroft 
    197       1.2  thorpej     /*
    198       1.5  mycroft      * Undo BSD's favor -- take fewer than 4 octets as net/subnet address
    199       1.5  mycroft      * if the name is all numeric.
    200       1.2  thorpej      */
    201       1.2  thorpej     for (i = sizeof(buf) - 7; i > 0; --i) {
    202       1.5  mycroft 	if (*ip == '.') --dots;
    203       1.5  mycroft 	else if (*ip == '\0') break;
    204       1.5  mycroft 	else if (!isdigit(*ip)) dots = 0;  /* Not numeric, don't add zeroes */
    205       1.5  mycroft 	*op++ = *ip++;
    206       1.2  thorpej     }
    207       1.2  thorpej     for (i = 0; i < dots; ++i) {
    208       1.5  mycroft 	*op++ = '.';
    209       1.2  thorpej 	*op++ = '0';
    210       1.2  thorpej     }
    211       1.2  thorpej     *op = '\0';
    212       1.2  thorpej 
    213       1.5  mycroft     if (dots <= 0) e = gethostbyname(name);
    214      1.10      mrg     if (e) memcpy((char *)&addr, e->h_addr_list[0], sizeof(addr));
    215       1.5  mycroft     else {
    216       1.5  mycroft 	addr = inet_addr(buf);
    217       1.5  mycroft 	if (addr == -1) {
    218       1.5  mycroft 	    addr = 0;
    219       1.1  mycroft 	    printf("Could not parse %s as host name or address\n", name);
    220       1.5  mycroft 	}
    221       1.1  mycroft     }
    222       1.5  mycroft     return addr;
    223       1.1  mycroft }
    224       1.1  mycroft 
    225       1.1  mycroft 
    226       1.1  mycroft char *
    227       1.1  mycroft proto_type(type)
    228       1.5  mycroft     u_int type;
    229       1.1  mycroft {
    230       1.1  mycroft     static char buf[80];
    231       1.1  mycroft 
    232       1.1  mycroft     switch (type) {
    233       1.1  mycroft       case PROTO_DVMRP:
    234       1.1  mycroft 	return ("DVMRP");
    235       1.1  mycroft       case PROTO_MOSPF:
    236       1.1  mycroft 	return ("MOSPF");
    237       1.1  mycroft       case PROTO_PIM:
    238       1.1  mycroft 	return ("PIM");
    239       1.1  mycroft       case PROTO_CBT:
    240       1.1  mycroft 	return ("CBT");
    241      1.12       he       case PROTO_PIM_SPEC:
    242      1.12       he 	return ("PIM-special");
    243      1.12       he       case PROTO_PIM_STAT:
    244      1.12       he 	return ("PIM-static");
    245      1.12       he       case PROTO_DVMRP_STAT:
    246      1.12       he 	return ("DVMRP-static");
    247      1.12       he       case PROTO_PIM_MBGP:
    248      1.12       he 	return ("PIM/MBGP");
    249       1.1  mycroft       default:
    250       1.7      mrg 	(void)snprintf(buf, sizeof buf, "Unknown protocol code %d", type);
    251       1.1  mycroft 	return (buf);
    252       1.1  mycroft     }
    253       1.1  mycroft }
    254       1.1  mycroft 
    255       1.1  mycroft 
    256       1.1  mycroft char *
    257       1.1  mycroft flag_type(type)
    258       1.5  mycroft     u_int type;
    259       1.1  mycroft {
    260       1.1  mycroft     static char buf[80];
    261       1.1  mycroft 
    262       1.1  mycroft     switch (type) {
    263       1.1  mycroft       case TR_NO_ERR:
    264       1.1  mycroft 	return ("");
    265       1.1  mycroft       case TR_WRONG_IF:
    266       1.1  mycroft 	return ("Wrong interface");
    267       1.1  mycroft       case TR_PRUNED:
    268       1.1  mycroft 	return ("Prune sent upstream");
    269       1.1  mycroft       case TR_OPRUNED:
    270       1.1  mycroft 	return ("Output pruned");
    271       1.1  mycroft       case TR_SCOPED:
    272       1.1  mycroft 	return ("Hit scope boundary");
    273       1.1  mycroft       case TR_NO_RTE:
    274       1.1  mycroft 	return ("No route");
    275       1.1  mycroft       case TR_OLD_ROUTER:
    276       1.1  mycroft 	return ("Next router no mtrace");
    277       1.1  mycroft       case TR_NO_FWD:
    278       1.1  mycroft 	return ("Not forwarding");
    279       1.1  mycroft       case TR_NO_SPACE:
    280       1.1  mycroft 	return ("No space in packet");
    281      1.12       he       case TR_RP_OR_CORE:
    282      1.12       he 	return ("RP/Core");
    283      1.12       he       case TR_RPF_INT:
    284      1.12       he 	return ("Trace packet on RPT interface");
    285      1.12       he       case TR_NO_MULTICAST:
    286      1.12       he 	return ("Trace packet on non-MC interface");
    287      1.12       he       case TR_ADMIN_DENY:
    288      1.12       he 	return ("Trace admin-denied");
    289       1.1  mycroft       default:
    290       1.7      mrg 	(void)snprintf(buf, sizeof buf, "Unknown error code %d", type);
    291       1.1  mycroft 	return (buf);
    292       1.1  mycroft     }
    293       1.1  mycroft }
    294       1.1  mycroft 
    295       1.1  mycroft /*
    296       1.1  mycroft  * If destination is on a local net, get the netmask, else set the
    297       1.1  mycroft  * netmask to all ones.  There are two side effects: if the local
    298       1.1  mycroft  * address was not explicitly set, and if the destination is on a
    299       1.1  mycroft  * local net, use that one; in either case, verify that the local
    300       1.1  mycroft  * address is valid.
    301       1.1  mycroft  */
    302       1.1  mycroft 
    303       1.1  mycroft u_int32_t
    304       1.1  mycroft get_netmask(s, dst)
    305       1.1  mycroft     int s;
    306       1.1  mycroft     u_int32_t dst;
    307       1.1  mycroft {
    308       1.5  mycroft     unsigned int i;
    309       1.5  mycroft     char ifbuf[5000];
    310       1.1  mycroft     struct ifconf ifc;
    311       1.1  mycroft     struct ifreq *ifr;
    312       1.1  mycroft     u_int32_t if_addr, if_mask;
    313       1.1  mycroft     u_int32_t retval = 0xFFFFFFFF;
    314       1.1  mycroft     int found = FALSE;
    315       1.1  mycroft 
    316       1.5  mycroft     ifc.ifc_buf = ifbuf;
    317       1.5  mycroft     ifc.ifc_len = sizeof(ifbuf);
    318       1.5  mycroft     if (ioctl(s, SIOCGIFCONF, (char *) &ifc) < 0) {
    319       1.1  mycroft 	perror("ioctl (SIOCGIFCONF)");
    320       1.1  mycroft 	return (retval);
    321       1.1  mycroft     }
    322       1.2  thorpej     for (i = 0; i < ifc.ifc_len; ) {
    323       1.2  thorpej 	ifr = (struct ifreq *)((char *)ifc.ifc_req + i);
    324       1.2  thorpej 	i += sizeof(ifr->ifr_name) + ifr->ifr_addr.sa_len;
    325       1.1  mycroft 	if_addr = ((struct sockaddr_in *)&(ifr->ifr_addr))->sin_addr.s_addr;
    326       1.1  mycroft 	if (ioctl(s, SIOCGIFNETMASK, (char *)ifr) >= 0) {
    327       1.1  mycroft 	    if_mask = ((struct sockaddr_in *)&(ifr->ifr_addr))->sin_addr.s_addr;
    328       1.1  mycroft 	    if ((dst & if_mask) == (if_addr & if_mask)) {
    329       1.1  mycroft 		retval = if_mask;
    330       1.5  mycroft 		if (lcl_addr == 0) lcl_addr = if_addr;
    331       1.1  mycroft 	    }
    332       1.1  mycroft 	}
    333       1.5  mycroft 	if (lcl_addr == if_addr) found = TRUE;
    334       1.1  mycroft     }
    335       1.1  mycroft     if (!found && lcl_addr != 0) {
    336       1.1  mycroft 	printf("Interface address is not valid\n");
    337       1.1  mycroft 	exit(1);
    338       1.1  mycroft     }
    339       1.1  mycroft     return (retval);
    340       1.1  mycroft }
    341       1.1  mycroft 
    342       1.1  mycroft 
    343       1.1  mycroft int
    344       1.1  mycroft get_ttl(buf)
    345       1.1  mycroft     struct resp_buf *buf;
    346       1.1  mycroft {
    347       1.5  mycroft     int rno;
    348       1.5  mycroft     struct tr_resp *b;
    349       1.5  mycroft     u_int ttl;
    350       1.1  mycroft 
    351       1.1  mycroft     if (buf && (rno = buf->len) > 0) {
    352       1.1  mycroft 	b = buf->resps + rno - 1;
    353       1.1  mycroft 	ttl = b->tr_fttl;
    354       1.1  mycroft 
    355       1.1  mycroft 	while (--rno > 0) {
    356       1.1  mycroft 	    --b;
    357       1.5  mycroft 	    if (ttl < b->tr_fttl) ttl = b->tr_fttl;
    358       1.5  mycroft 	    else ++ttl;
    359       1.1  mycroft 	}
    360       1.1  mycroft 	ttl += MULTICAST_TTL_INC;
    361       1.5  mycroft 	if (ttl < MULTICAST_TTL1) ttl = MULTICAST_TTL1;
    362       1.5  mycroft 	if (ttl > MULTICAST_TTL_MAX) ttl = MULTICAST_TTL_MAX;
    363       1.1  mycroft 	return (ttl);
    364       1.5  mycroft     } else return(MULTICAST_TTL1);
    365       1.1  mycroft }
    366       1.1  mycroft 
    367       1.1  mycroft /*
    368       1.1  mycroft  * Calculate the difference between two 32-bit NTP timestamps and return
    369       1.1  mycroft  * the result in milliseconds.
    370       1.1  mycroft  */
    371       1.1  mycroft int
    372       1.1  mycroft t_diff(a, b)
    373       1.1  mycroft     u_long a, b;
    374       1.1  mycroft {
    375       1.1  mycroft     int d = a - b;
    376       1.1  mycroft 
    377       1.1  mycroft     return ((d * 125) >> 13);
    378       1.1  mycroft }
    379       1.1  mycroft 
    380       1.1  mycroft /*
    381       1.1  mycroft  * Fixup for incorrect time format in 3.3 mrouted.
    382       1.1  mycroft  * This is possible because (JAN_1970 mod 64K) is quite close to 32K,
    383       1.1  mycroft  * so correct and incorrect times will be far apart.
    384       1.1  mycroft  */
    385       1.1  mycroft u_long
    386       1.1  mycroft fixtime(time)
    387       1.1  mycroft     u_long time;
    388       1.1  mycroft {
    389       1.1  mycroft     if (abs((int)(time-base.qtime)) > 0x3FFFFFFF)
    390       1.1  mycroft         time = ((time & 0xFFFF0000) + (JAN_1970 << 16)) +
    391       1.1  mycroft 	       ((time & 0xFFFF) << 14) / 15625;
    392       1.1  mycroft     return (time);
    393       1.1  mycroft }
    394       1.1  mycroft 
    395       1.5  mycroft /*
    396       1.5  mycroft  * Swap bytes for poor little-endian machines that don't byte-swap
    397       1.5  mycroft  */
    398       1.5  mycroft u_long
    399       1.5  mycroft byteswap(v)
    400       1.5  mycroft     u_long v;
    401       1.5  mycroft {
    402       1.5  mycroft     return ((v << 24) | ((v & 0xff00) << 8) |
    403       1.5  mycroft 	    ((v >> 8) & 0xff00) | (v >> 24));
    404       1.5  mycroft }
    405       1.5  mycroft 
    406       1.1  mycroft int
    407       1.1  mycroft send_recv(dst, type, code, tries, save)
    408       1.1  mycroft     u_int32_t dst;
    409       1.1  mycroft     int type, code, tries;
    410       1.1  mycroft     struct resp_buf *save;
    411       1.1  mycroft {
    412       1.1  mycroft     fd_set  fds;
    413       1.1  mycroft     struct timeval tq, tr, tv;
    414       1.1  mycroft     struct ip *ip;
    415       1.1  mycroft     struct igmp *igmp;
    416       1.1  mycroft     struct tr_query *query, *rquery;
    417       1.1  mycroft     int ipdatalen, iphdrlen, igmpdatalen;
    418       1.1  mycroft     u_int32_t local, group;
    419       1.1  mycroft     int datalen;
    420       1.1  mycroft     int count, recvlen, dummy = 0;
    421       1.1  mycroft     int len;
    422       1.2  thorpej     int i;
    423       1.1  mycroft 
    424       1.1  mycroft     if (type == IGMP_MTRACE_QUERY) {
    425       1.1  mycroft 	group = qgrp;
    426       1.1  mycroft 	datalen = sizeof(struct tr_query);
    427       1.1  mycroft     } else {
    428       1.1  mycroft 	group = htonl(MROUTED_LEVEL);
    429       1.1  mycroft 	datalen = 0;
    430       1.1  mycroft     }
    431       1.5  mycroft     if (IN_MULTICAST(ntohl(dst))) local = lcl_addr;
    432       1.5  mycroft     else local = INADDR_ANY;
    433       1.1  mycroft 
    434       1.1  mycroft     /*
    435       1.1  mycroft      * If the reply address was not explictly specified, start off
    436       1.1  mycroft      * with the unicast address of this host.  Then, if there is no
    437       1.1  mycroft      * response after trying half the tries with unicast, switch to
    438       1.1  mycroft      * the standard multicast reply address.  If the TTL was also not
    439       1.1  mycroft      * specified, set a multicast TTL and if needed increase it for the
    440       1.1  mycroft      * last quarter of the tries.
    441       1.1  mycroft      */
    442       1.1  mycroft     query = (struct tr_query *)(send_buf + MIN_IP_HEADER_LEN + IGMP_MINLEN);
    443       1.1  mycroft     query->tr_raddr = raddr ? raddr : multicast ? resp_cast : lcl_addr;
    444       1.1  mycroft     query->tr_rttl  = rttl ? rttl :
    445       1.1  mycroft       IN_MULTICAST(ntohl(query->tr_raddr)) ? get_ttl(save) : UNICAST_TTL;
    446       1.5  mycroft     query->tr_src   = qsrc;
    447       1.5  mycroft     query->tr_dst   = qdst;
    448       1.1  mycroft 
    449       1.1  mycroft     for (i = tries ; i > 0; --i) {
    450       1.1  mycroft 	if (tries == nqueries && raddr == 0) {
    451       1.1  mycroft 	    if (i == ((nqueries + 1) >> 1)) {
    452       1.1  mycroft 		query->tr_raddr = resp_cast;
    453       1.1  mycroft 		if (rttl == 0) query->tr_rttl = get_ttl(save);
    454       1.1  mycroft 	    }
    455       1.1  mycroft 	    if (i <= ((nqueries + 3) >> 2) && rttl == 0) {
    456       1.1  mycroft 		query->tr_rttl += MULTICAST_TTL_INC;
    457       1.1  mycroft 		if (query->tr_rttl > MULTICAST_TTL_MAX)
    458       1.1  mycroft 		  query->tr_rttl = MULTICAST_TTL_MAX;
    459       1.1  mycroft 	    }
    460       1.1  mycroft 	}
    461       1.1  mycroft 
    462       1.1  mycroft 	/*
    463       1.1  mycroft 	 * Change the qid for each request sent to avoid being confused
    464       1.1  mycroft 	 * by duplicate responses
    465       1.1  mycroft 	 */
    466       1.5  mycroft #ifdef SYSV
    467       1.5  mycroft 	query->tr_qid  = ((u_int32_t)lrand48() >> 8);
    468       1.5  mycroft #else
    469       1.1  mycroft 	query->tr_qid  = ((u_int32_t)random() >> 8);
    470       1.5  mycroft #endif
    471       1.1  mycroft 
    472       1.1  mycroft 	/*
    473       1.1  mycroft 	 * Set timer to calculate delays, then send query
    474       1.1  mycroft 	 */
    475       1.1  mycroft 	gettimeofday(&tq, 0);
    476       1.1  mycroft 	send_igmp(local, dst, type, code, group, datalen);
    477       1.1  mycroft 
    478       1.1  mycroft 	/*
    479       1.1  mycroft 	 * Wait for response, discarding false alarms
    480       1.1  mycroft 	 */
    481       1.1  mycroft 	while (TRUE) {
    482       1.1  mycroft 	    FD_ZERO(&fds);
    483  1.14.4.2   itojun 	    if (igmp_socket >= FD_SETSIZE)
    484  1.14.4.2   itojun 		log(LOG_ERR, 0, "descriptor too big");
    485       1.1  mycroft 	    FD_SET(igmp_socket, &fds);
    486       1.1  mycroft 	    gettimeofday(&tv, 0);
    487       1.1  mycroft 	    tv.tv_sec = tq.tv_sec + timeout - tv.tv_sec;
    488       1.1  mycroft 	    tv.tv_usec = tq.tv_usec - tv.tv_usec;
    489       1.5  mycroft 	    if (tv.tv_usec < 0) tv.tv_usec += 1000000L, --tv.tv_sec;
    490       1.5  mycroft 	    if (tv.tv_sec < 0) tv.tv_sec = tv.tv_usec = 0;
    491       1.1  mycroft 
    492       1.1  mycroft 	    count = select(igmp_socket + 1, &fds, (fd_set *)0, (fd_set *)0,
    493       1.1  mycroft 			   &tv);
    494       1.1  mycroft 
    495       1.1  mycroft 	    if (count < 0) {
    496       1.5  mycroft 		if (errno != EINTR) perror("select");
    497       1.1  mycroft 		continue;
    498       1.1  mycroft 	    } else if (count == 0) {
    499       1.1  mycroft 		printf("* ");
    500       1.1  mycroft 		fflush(stdout);
    501       1.1  mycroft 		break;
    502       1.1  mycroft 	    }
    503       1.1  mycroft 
    504       1.1  mycroft 	    gettimeofday(&tr, 0);
    505       1.1  mycroft 	    recvlen = recvfrom(igmp_socket, recv_buf, RECV_BUF_SIZE,
    506       1.1  mycroft 			       0, (struct sockaddr *)0, &dummy);
    507       1.1  mycroft 
    508       1.1  mycroft 	    if (recvlen <= 0) {
    509       1.5  mycroft 		if (recvlen && errno != EINTR) perror("recvfrom");
    510       1.1  mycroft 		continue;
    511       1.1  mycroft 	    }
    512       1.1  mycroft 
    513       1.1  mycroft 	    if (recvlen < sizeof(struct ip)) {
    514       1.1  mycroft 		fprintf(stderr,
    515       1.1  mycroft 			"packet too short (%u bytes) for IP header", recvlen);
    516       1.1  mycroft 		continue;
    517       1.1  mycroft 	    }
    518       1.1  mycroft 	    ip = (struct ip *) recv_buf;
    519       1.1  mycroft 	    if (ip->ip_p == 0)	/* ignore cache creation requests */
    520       1.1  mycroft 		continue;
    521       1.1  mycroft 
    522       1.1  mycroft 	    iphdrlen = ip->ip_hl << 2;
    523       1.1  mycroft 	    ipdatalen = ip->ip_len;
    524       1.1  mycroft 	    if (iphdrlen + ipdatalen != recvlen) {
    525       1.1  mycroft 		fprintf(stderr,
    526       1.1  mycroft 			"packet shorter (%u bytes) than hdr+data len (%u+%u)\n",
    527       1.1  mycroft 			recvlen, iphdrlen, ipdatalen);
    528       1.1  mycroft 		continue;
    529       1.1  mycroft 	    }
    530       1.1  mycroft 
    531       1.1  mycroft 	    igmp = (struct igmp *) (recv_buf + iphdrlen);
    532       1.1  mycroft 	    igmpdatalen = ipdatalen - IGMP_MINLEN;
    533       1.1  mycroft 	    if (igmpdatalen < 0) {
    534       1.1  mycroft 		fprintf(stderr,
    535       1.1  mycroft 			"IP data field too short (%u bytes) for IGMP from %s\n",
    536       1.1  mycroft 			ipdatalen, inet_fmt(ip->ip_src.s_addr, s1));
    537       1.1  mycroft 		continue;
    538       1.1  mycroft 	    }
    539       1.1  mycroft 
    540       1.1  mycroft 	    switch (igmp->igmp_type) {
    541       1.1  mycroft 
    542       1.1  mycroft 	      case IGMP_DVMRP:
    543       1.5  mycroft 		if (igmp->igmp_code != DVMRP_NEIGHBORS2) continue;
    544       1.1  mycroft 		len = igmpdatalen;
    545       1.5  mycroft 		/*
    546       1.5  mycroft 		 * Accept DVMRP_NEIGHBORS2 response if it comes from the
    547       1.5  mycroft 		 * address queried or if that address is one of the local
    548       1.5  mycroft 		 * addresses in the response.
    549       1.5  mycroft 		 */
    550       1.5  mycroft 		if (ip->ip_src.s_addr != dst) {
    551       1.5  mycroft 		    u_int32_t *p = (u_int32_t *)(igmp + 1);
    552       1.5  mycroft 		    u_int32_t *ep = p + (len >> 2);
    553       1.5  mycroft 		    while (p < ep) {
    554       1.5  mycroft 			u_int32_t laddr = *p++;
    555       1.5  mycroft 			int n = ntohl(*p++) & 0xFF;
    556       1.5  mycroft 			if (laddr == dst) {
    557       1.5  mycroft 			    ep = p + 1;		/* ensure p < ep after loop */
    558       1.5  mycroft 			    break;
    559       1.5  mycroft 			}
    560       1.5  mycroft 			p += n;
    561       1.5  mycroft 		    }
    562       1.5  mycroft 		    if (p >= ep) continue;
    563       1.5  mycroft 		}
    564       1.1  mycroft 		break;
    565       1.1  mycroft 
    566       1.5  mycroft 	      case IGMP_MTRACE_QUERY:	    /* For backward compatibility with 3.3 */
    567       1.1  mycroft 	      case IGMP_MTRACE_REPLY:
    568       1.5  mycroft 		if (igmpdatalen <= QLEN) continue;
    569       1.1  mycroft 		if ((igmpdatalen - QLEN)%RLEN) {
    570       1.1  mycroft 		    printf("packet with incorrect datalen\n");
    571       1.1  mycroft 		    continue;
    572       1.1  mycroft 		}
    573       1.1  mycroft 
    574       1.1  mycroft 		/*
    575       1.1  mycroft 		 * Ignore responses that don't match query.
    576       1.1  mycroft 		 */
    577       1.1  mycroft 		rquery = (struct tr_query *)(igmp + 1);
    578       1.5  mycroft 		if (rquery->tr_qid != query->tr_qid) continue;
    579       1.5  mycroft 		if (rquery->tr_src != qsrc) continue;
    580       1.5  mycroft 		if (rquery->tr_dst != qdst) continue;
    581       1.1  mycroft 		len = (igmpdatalen - QLEN)/RLEN;
    582       1.1  mycroft 
    583       1.1  mycroft 		/*
    584       1.1  mycroft 		 * Ignore trace queries passing through this node when
    585       1.1  mycroft 		 * mtrace is run on an mrouter that is in the path
    586       1.5  mycroft 		 * (needed only because IGMP_MTRACE_QUERY is accepted above
    587       1.1  mycroft 		 * for backward compatibility with multicast release 3.3).
    588       1.1  mycroft 		 */
    589       1.1  mycroft 		if (igmp->igmp_type == IGMP_MTRACE_QUERY) {
    590       1.1  mycroft 		    struct tr_resp *r = (struct tr_resp *)(rquery+1) + len - 1;
    591       1.1  mycroft 		    u_int32_t smask;
    592       1.1  mycroft 
    593       1.1  mycroft 		    VAL_TO_MASK(smask, r->tr_smask);
    594       1.1  mycroft 		    if (len < code && (r->tr_inaddr & smask) != (qsrc & smask)
    595       1.1  mycroft 			&& r->tr_rmtaddr != 0 && !(r->tr_rflags & 0x80))
    596       1.1  mycroft 		      continue;
    597       1.1  mycroft 		}
    598       1.1  mycroft 
    599       1.1  mycroft 		/*
    600       1.1  mycroft 		 * A match, we'll keep this one.
    601       1.1  mycroft 		 */
    602       1.1  mycroft 		if (len > code) {
    603       1.1  mycroft 		    fprintf(stderr,
    604       1.1  mycroft 			    "Num hops received (%d) exceeds request (%d)\n",
    605       1.1  mycroft 			    len, code);
    606       1.1  mycroft 		}
    607       1.1  mycroft 		rquery->tr_raddr = query->tr_raddr;	/* Insure these are */
    608       1.1  mycroft 		rquery->tr_rttl = query->tr_rttl;	/* as we sent them */
    609       1.1  mycroft 		break;
    610       1.1  mycroft 
    611       1.1  mycroft 	      default:
    612       1.1  mycroft 		continue;
    613       1.1  mycroft 	    }
    614       1.1  mycroft 
    615       1.1  mycroft 	    /*
    616       1.1  mycroft 	     * Most of the sanity checking done at this point.
    617       1.1  mycroft 	     * Return this packet we have been waiting for.
    618       1.1  mycroft 	     */
    619       1.1  mycroft 	    if (save) {
    620       1.1  mycroft 		save->qtime = ((tq.tv_sec + JAN_1970) << 16) +
    621       1.1  mycroft 			      (tq.tv_usec << 10) / 15625;
    622       1.1  mycroft 		save->rtime = ((tr.tv_sec + JAN_1970) << 16) +
    623       1.1  mycroft 			      (tr.tv_usec << 10) / 15625;
    624       1.1  mycroft 		save->len = len;
    625       1.1  mycroft 		bcopy((char *)igmp, (char *)&save->igmp, ipdatalen);
    626       1.1  mycroft 	    }
    627       1.1  mycroft 	    return (recvlen);
    628       1.1  mycroft 	}
    629       1.1  mycroft     }
    630       1.1  mycroft     return (0);
    631       1.1  mycroft }
    632       1.1  mycroft 
    633       1.5  mycroft /*
    634       1.5  mycroft  * Most of this code is duplicated elsewhere.  I'm not sure if
    635       1.5  mycroft  * the duplication is absolutely required or not.
    636       1.5  mycroft  *
    637       1.5  mycroft  * Ideally, this would keep track of ongoing statistics
    638       1.5  mycroft  * collection and print out statistics.  (& keep track
    639       1.5  mycroft  * of h-b-h traces and only print the longest)  For now,
    640       1.5  mycroft  * it just snoops on what traces it can.
    641       1.5  mycroft  */
    642       1.5  mycroft void
    643       1.5  mycroft passive_mode()
    644       1.5  mycroft {
    645       1.5  mycroft     struct timeval tr;
    646       1.5  mycroft     struct ip *ip;
    647       1.5  mycroft     struct igmp *igmp;
    648       1.5  mycroft     struct tr_resp *r;
    649       1.5  mycroft     int ipdatalen, iphdrlen, igmpdatalen;
    650       1.5  mycroft     int len, recvlen, dummy = 0;
    651       1.5  mycroft     u_int32_t smask;
    652       1.5  mycroft 
    653       1.5  mycroft     if (raddr) {
    654       1.5  mycroft 	if (IN_MULTICAST(ntohl(raddr))) k_join(raddr, INADDR_ANY);
    655       1.5  mycroft     } else k_join(htonl(0xE0000120), INADDR_ANY);
    656       1.5  mycroft 
    657       1.5  mycroft     while (1) {
    658       1.5  mycroft 	recvlen = recvfrom(igmp_socket, recv_buf, RECV_BUF_SIZE,
    659       1.5  mycroft 			   0, (struct sockaddr *)0, &dummy);
    660       1.5  mycroft 	gettimeofday(&tr,0);
    661       1.5  mycroft 
    662       1.5  mycroft 	if (recvlen <= 0) {
    663       1.5  mycroft 	    if (recvlen && errno != EINTR) perror("recvfrom");
    664       1.5  mycroft 	    continue;
    665       1.5  mycroft 	}
    666       1.5  mycroft 
    667       1.5  mycroft 	if (recvlen < sizeof(struct ip)) {
    668       1.5  mycroft 	    fprintf(stderr,
    669       1.5  mycroft 		    "packet too short (%u bytes) for IP header", recvlen);
    670       1.5  mycroft 	    continue;
    671       1.5  mycroft 	}
    672       1.5  mycroft 	ip = (struct ip *) recv_buf;
    673       1.5  mycroft 	if (ip->ip_p == 0)	/* ignore cache creation requests */
    674       1.5  mycroft 	    continue;
    675       1.5  mycroft 
    676       1.5  mycroft 	iphdrlen = ip->ip_hl << 2;
    677       1.5  mycroft 	ipdatalen = ip->ip_len;
    678       1.5  mycroft 	if (iphdrlen + ipdatalen != recvlen) {
    679       1.5  mycroft 	    fprintf(stderr,
    680       1.5  mycroft 		    "packet shorter (%u bytes) than hdr+data len (%u+%u)\n",
    681       1.5  mycroft 		    recvlen, iphdrlen, ipdatalen);
    682       1.5  mycroft 	    continue;
    683       1.5  mycroft 	}
    684       1.5  mycroft 
    685       1.5  mycroft 	igmp = (struct igmp *) (recv_buf + iphdrlen);
    686       1.5  mycroft 	igmpdatalen = ipdatalen - IGMP_MINLEN;
    687       1.5  mycroft 	if (igmpdatalen < 0) {
    688       1.5  mycroft 	    fprintf(stderr,
    689       1.5  mycroft 		    "IP data field too short (%u bytes) for IGMP from %s\n",
    690       1.5  mycroft 		    ipdatalen, inet_fmt(ip->ip_src.s_addr, s1));
    691       1.5  mycroft 	    continue;
    692       1.5  mycroft 	}
    693       1.5  mycroft 
    694       1.5  mycroft 	switch (igmp->igmp_type) {
    695       1.5  mycroft 
    696       1.5  mycroft 	  case IGMP_MTRACE_QUERY:	    /* For backward compatibility with 3.3 */
    697       1.5  mycroft 	  case IGMP_MTRACE_REPLY:
    698       1.5  mycroft 	    if (igmpdatalen < QLEN) continue;
    699       1.5  mycroft 	    if ((igmpdatalen - QLEN)%RLEN) {
    700       1.5  mycroft 		printf("packet with incorrect datalen\n");
    701       1.5  mycroft 		continue;
    702       1.5  mycroft 	    }
    703       1.5  mycroft 
    704       1.5  mycroft 	    len = (igmpdatalen - QLEN)/RLEN;
    705       1.5  mycroft 
    706       1.5  mycroft 	    break;
    707       1.5  mycroft 
    708       1.5  mycroft 	  default:
    709       1.5  mycroft 	    continue;
    710       1.5  mycroft 	}
    711       1.5  mycroft 
    712       1.5  mycroft 	base.qtime = ((tr.tv_sec + JAN_1970) << 16) +
    713       1.5  mycroft 		      (tr.tv_usec << 10) / 15625;
    714       1.5  mycroft 	base.rtime = ((tr.tv_sec + JAN_1970) << 16) +
    715       1.5  mycroft 		      (tr.tv_usec << 10) / 15625;
    716       1.5  mycroft 	base.len = len;
    717       1.5  mycroft 	bcopy((char *)igmp, (char *)&base.igmp, ipdatalen);
    718       1.5  mycroft 	/*
    719       1.5  mycroft 	 * If the user specified which traces to monitor,
    720       1.5  mycroft 	 * only accept traces that correspond to the
    721       1.5  mycroft 	 * request
    722       1.5  mycroft 	 */
    723       1.5  mycroft 	if ((qsrc != 0 && qsrc != base.qhdr.tr_src) ||
    724       1.5  mycroft 	    (qdst != 0 && qdst != base.qhdr.tr_dst) ||
    725       1.5  mycroft 	    (qgrp != 0 && qgrp != igmp->igmp_group.s_addr))
    726       1.5  mycroft 	    continue;
    727       1.5  mycroft 
    728       1.5  mycroft 	printf("Mtrace from %s to %s via group %s (mxhop=%d)\n",
    729       1.5  mycroft 		inet_fmt(base.qhdr.tr_dst, s1), inet_fmt(base.qhdr.tr_src, s2),
    730       1.5  mycroft 		inet_fmt(igmp->igmp_group.s_addr, s3), igmp->igmp_code);
    731       1.5  mycroft 	if (len == 0)
    732       1.5  mycroft 	    continue;
    733       1.5  mycroft 	printf("  0  ");
    734       1.5  mycroft 	print_host(base.qhdr.tr_dst);
    735       1.5  mycroft 	printf("\n");
    736       1.5  mycroft 	print_trace(1, &base);
    737       1.5  mycroft 	r = base.resps + base.len - 1;
    738       1.5  mycroft 	VAL_TO_MASK(smask, r->tr_smask);
    739       1.5  mycroft 	if ((r->tr_inaddr & smask) == (base.qhdr.tr_src & smask)) {
    740       1.5  mycroft 	    printf("%3d  ", -(base.len+1));
    741       1.5  mycroft 	    print_host(base.qhdr.tr_src);
    742       1.5  mycroft 	    printf("\n");
    743       1.5  mycroft 	} else if (r->tr_rmtaddr != 0) {
    744       1.5  mycroft 	    printf("%3d  ", -(base.len+1));
    745       1.5  mycroft 	    what_kind(&base, r->tr_rflags == TR_OLD_ROUTER ?
    746       1.5  mycroft 				   "doesn't support mtrace"
    747       1.5  mycroft 				 : "is the next hop");
    748       1.5  mycroft 	}
    749       1.5  mycroft 	printf("\n");
    750       1.5  mycroft     }
    751       1.5  mycroft }
    752       1.1  mycroft 
    753       1.1  mycroft char *
    754       1.1  mycroft print_host(addr)
    755       1.1  mycroft     u_int32_t addr;
    756       1.1  mycroft {
    757       1.5  mycroft     return print_host2(addr, 0);
    758       1.5  mycroft }
    759       1.5  mycroft 
    760       1.5  mycroft /*
    761       1.5  mycroft  * On some routers, one interface has a name and the other doesn't.
    762       1.5  mycroft  * We always print the address of the outgoing interface, but can
    763       1.5  mycroft  * sometimes get the name from the incoming interface.  This might be
    764       1.5  mycroft  * confusing but should be slightly more helpful than just a "?".
    765       1.5  mycroft  */
    766       1.5  mycroft char *
    767       1.5  mycroft print_host2(addr1, addr2)
    768       1.5  mycroft     u_int32_t addr1, addr2;
    769       1.5  mycroft {
    770       1.1  mycroft     char *name;
    771       1.1  mycroft 
    772       1.1  mycroft     if (numeric) {
    773       1.5  mycroft 	printf("%s", inet_fmt(addr1, s1));
    774       1.1  mycroft 	return ("");
    775       1.1  mycroft     }
    776       1.5  mycroft     name = inet_name(addr1);
    777       1.5  mycroft     if (*name == '?' && *(name + 1) == '\0' && addr2 != 0)
    778       1.5  mycroft 	name = inet_name(addr2);
    779       1.5  mycroft     printf("%s (%s)", name, inet_fmt(addr1, s1));
    780       1.1  mycroft     return (name);
    781       1.1  mycroft }
    782       1.1  mycroft 
    783       1.1  mycroft /*
    784       1.1  mycroft  * Print responses as received (reverse path from dst to src)
    785       1.1  mycroft  */
    786       1.1  mycroft void
    787       1.1  mycroft print_trace(index, buf)
    788       1.1  mycroft     int index;
    789       1.1  mycroft     struct resp_buf *buf;
    790       1.1  mycroft {
    791       1.1  mycroft     struct tr_resp *r;
    792       1.1  mycroft     char *name;
    793       1.1  mycroft     int i;
    794       1.5  mycroft     int hop;
    795      1.13       he     char *ms, *ft;
    796       1.1  mycroft 
    797       1.1  mycroft     i = abs(index);
    798       1.1  mycroft     r = buf->resps + i - 1;
    799       1.1  mycroft 
    800       1.1  mycroft     for (; i <= buf->len; ++i, ++r) {
    801       1.1  mycroft 	if (index > 0) printf("%3d  ", -i);
    802       1.5  mycroft 	name = print_host2(r->tr_outaddr, r->tr_inaddr);
    803       1.5  mycroft 	printf("  %s  thresh^ %d", proto_type(r->tr_rproto), r->tr_fttl);
    804       1.5  mycroft 	if (verbose) {
    805       1.5  mycroft 	    hop = t_diff(fixtime(ntohl(r->tr_qarr)), buf->qtime);
    806       1.5  mycroft 	    ms = scale(&hop);
    807       1.5  mycroft 	    printf("  %d%s", hop, ms);
    808       1.5  mycroft 	}
    809      1.13       he 	ft = flag_type(r->tr_rflags);
    810      1.13       he 	if (strlen(ft) != 0)
    811      1.13       he 	    printf("  %s", ft);
    812      1.13       he 	printf("\n");
    813       1.1  mycroft 	memcpy(names[i-1], name, sizeof(names[0]) - 1);
    814       1.1  mycroft 	names[i-1][sizeof(names[0])-1] = '\0';
    815       1.1  mycroft     }
    816       1.1  mycroft }
    817       1.1  mycroft 
    818       1.1  mycroft /*
    819       1.1  mycroft  * See what kind of router is the next hop
    820       1.1  mycroft  */
    821       1.5  mycroft int
    822       1.5  mycroft what_kind(buf, why)
    823       1.1  mycroft     struct resp_buf *buf;
    824       1.5  mycroft     char *why;
    825       1.1  mycroft {
    826       1.1  mycroft     u_int32_t smask;
    827       1.5  mycroft     int retval;
    828       1.1  mycroft     int hops = buf->len;
    829       1.1  mycroft     struct tr_resp *r = buf->resps + hops - 1;
    830       1.1  mycroft     u_int32_t next = r->tr_rmtaddr;
    831       1.1  mycroft 
    832       1.5  mycroft     retval = send_recv(next, IGMP_DVMRP, DVMRP_ASK_NEIGHBORS2, 1, &incr[0]);
    833       1.1  mycroft     print_host(next);
    834       1.5  mycroft     if (retval) {
    835       1.1  mycroft 	u_int32_t version = ntohl(incr[0].igmp.igmp_group.s_addr);
    836       1.1  mycroft 	u_int32_t *p = (u_int32_t *)incr[0].ndata;
    837       1.1  mycroft 	u_int32_t *ep = p + (incr[0].len >> 2);
    838       1.5  mycroft 	char *type = "";
    839       1.5  mycroft 	retval = 0;
    840       1.5  mycroft 	switch (version & 0xFF) {
    841       1.5  mycroft 	  case 1:
    842       1.5  mycroft 	    type = "proteon/mrouted ";
    843       1.5  mycroft 	    retval = 1;
    844       1.5  mycroft 	    break;
    845       1.5  mycroft 
    846       1.5  mycroft 	  case 2:
    847       1.5  mycroft 	  case 3:
    848       1.5  mycroft 	    if (((version >> 8) & 0xFF) < 3) retval = 1;
    849       1.5  mycroft 				/* Fall through */
    850       1.5  mycroft 	  case 4:
    851       1.5  mycroft 	    type = "mrouted ";
    852       1.5  mycroft 	    break;
    853       1.5  mycroft 
    854       1.5  mycroft 	  case 10:
    855       1.5  mycroft 	    type = "cisco ";
    856       1.5  mycroft 	}
    857       1.5  mycroft 	printf(" [%s%d.%d] %s\n",
    858       1.5  mycroft 	       type, version & 0xFF, (version >> 8) & 0xFF,
    859       1.5  mycroft 	       why);
    860       1.1  mycroft 	VAL_TO_MASK(smask, r->tr_smask);
    861       1.1  mycroft 	while (p < ep) {
    862       1.5  mycroft 	    u_int32_t laddr = *p++;
    863       1.5  mycroft 	    int flags = (ntohl(*p) & 0xFF00) >> 8;
    864       1.5  mycroft 	    int n = ntohl(*p++) & 0xFF;
    865       1.5  mycroft 	    if (!(flags & (DVMRP_NF_DOWN | DVMRP_NF_DISABLED)) &&
    866       1.5  mycroft 		 (laddr & smask) == (qsrc & smask)) {
    867       1.1  mycroft 		printf("%3d  ", -(hops+2));
    868       1.1  mycroft 		print_host(qsrc);
    869       1.1  mycroft 		printf("\n");
    870       1.5  mycroft 		return 1;
    871       1.1  mycroft 	    }
    872       1.1  mycroft 	    p += n;
    873       1.1  mycroft 	}
    874       1.5  mycroft 	return retval;
    875       1.1  mycroft     }
    876       1.5  mycroft     printf(" %s\n", why);
    877       1.5  mycroft     return 0;
    878       1.1  mycroft }
    879       1.1  mycroft 
    880       1.1  mycroft 
    881       1.1  mycroft char *
    882       1.1  mycroft scale(hop)
    883       1.1  mycroft     int *hop;
    884       1.1  mycroft {
    885       1.1  mycroft     if (*hop > -1000 && *hop < 10000) return (" ms");
    886       1.1  mycroft     *hop /= 1000;
    887       1.1  mycroft     if (*hop > -1000 && *hop < 10000) return (" s ");
    888       1.1  mycroft     return ("s ");
    889       1.1  mycroft }
    890       1.1  mycroft 
    891       1.1  mycroft /*
    892       1.1  mycroft  * Calculate and print one line of packet loss and packet rate statistics.
    893       1.1  mycroft  * Checks for count of all ones from mrouted 2.3 that doesn't have counters.
    894       1.1  mycroft  */
    895       1.1  mycroft #define NEITHER 0
    896       1.1  mycroft #define INS     1
    897       1.1  mycroft #define OUTS    2
    898       1.1  mycroft #define BOTH    3
    899       1.1  mycroft void
    900       1.5  mycroft stat_line(r, s, have_next, rst)
    901       1.1  mycroft     struct tr_resp *r, *s;
    902       1.1  mycroft     int have_next;
    903       1.5  mycroft     int *rst;
    904       1.1  mycroft {
    905       1.5  mycroft     int timediff = (fixtime(ntohl(s->tr_qarr)) -
    906       1.1  mycroft 			 fixtime(ntohl(r->tr_qarr))) >> 16;
    907       1.5  mycroft     int v_lost, v_pct;
    908       1.5  mycroft     int g_lost, g_pct;
    909       1.5  mycroft     int v_out = ntohl(s->tr_vifout) - ntohl(r->tr_vifout);
    910       1.5  mycroft     int g_out = ntohl(s->tr_pktcnt) - ntohl(r->tr_pktcnt);
    911       1.5  mycroft     int v_pps, g_pps;
    912       1.1  mycroft     char v_str[8], g_str[8];
    913       1.5  mycroft     int have = NEITHER;
    914       1.5  mycroft     int res = *rst;
    915       1.1  mycroft 
    916       1.5  mycroft     if (timediff == 0) timediff = 1;
    917       1.1  mycroft     v_pps = v_out / timediff;
    918       1.1  mycroft     g_pps = g_out / timediff;
    919       1.1  mycroft 
    920       1.8    lukem     if ((v_out && (s->tr_vifout != 0xFFFFFFFF && s->tr_vifout != 0)) ||
    921       1.5  mycroft 		 (r->tr_vifout != 0xFFFFFFFF && r->tr_vifout != 0))
    922       1.5  mycroft 	    have |= OUTS;
    923       1.1  mycroft 
    924       1.1  mycroft     if (have_next) {
    925       1.5  mycroft 	--r,  --s,  --rst;
    926       1.5  mycroft 	if ((s->tr_vifin != 0xFFFFFFFF && s->tr_vifin != 0) ||
    927       1.5  mycroft 	    (r->tr_vifin != 0xFFFFFFFF && r->tr_vifin != 0))
    928       1.1  mycroft 	  have |= INS;
    929       1.5  mycroft 	if (*rst)
    930       1.5  mycroft 	  res = 1;
    931       1.1  mycroft     }
    932       1.1  mycroft 
    933       1.1  mycroft     switch (have) {
    934       1.1  mycroft       case BOTH:
    935       1.1  mycroft 	v_lost = v_out - (ntohl(s->tr_vifin) - ntohl(r->tr_vifin));
    936       1.5  mycroft 	if (v_out) v_pct = (v_lost * 100 + (v_out >> 1)) / v_out;
    937       1.5  mycroft 	else v_pct = 0;
    938       1.1  mycroft 	if (-100 < v_pct && v_pct < 101 && v_out > 10)
    939       1.7      mrg 	  (void)snprintf(v_str, sizeof v_str, "%3d", v_pct);
    940       1.5  mycroft 	else memcpy(v_str, " --", 4);
    941       1.1  mycroft 
    942       1.1  mycroft 	g_lost = g_out - (ntohl(s->tr_pktcnt) - ntohl(r->tr_pktcnt));
    943       1.5  mycroft 	if (g_out) g_pct = (g_lost * 100 + (g_out >> 1))/ g_out;
    944       1.5  mycroft 	else g_pct = 0;
    945       1.1  mycroft 	if (-100 < g_pct && g_pct < 101 && g_out > 10)
    946       1.7      mrg 	  (void)snprintf(g_str, sizeof g_str, "%3d", g_pct);
    947       1.5  mycroft 	else memcpy(g_str, " --", 4);
    948       1.5  mycroft 
    949       1.5  mycroft 	printf("%6d/%-5d=%s%%%4d pps",
    950       1.5  mycroft 	       v_lost, v_out, v_str, v_pps);
    951       1.5  mycroft 	if (res)
    952       1.5  mycroft 	    printf("\n");
    953       1.2  thorpej 	else
    954       1.5  mycroft 	    printf("%6d/%-5d=%s%%%4d pps\n",
    955       1.5  mycroft 		   g_lost, g_out, g_str, g_pps);
    956       1.1  mycroft 	break;
    957       1.1  mycroft 
    958       1.1  mycroft       case INS:
    959       1.5  mycroft 	v_out = ntohl(s->tr_vifin) - ntohl(r->tr_vifin);
    960       1.1  mycroft 	v_pps = v_out / timediff;
    961       1.1  mycroft 	/* Fall through */
    962       1.1  mycroft 
    963       1.1  mycroft       case OUTS:
    964       1.5  mycroft 	printf("       %-5d     %4d pps",
    965       1.5  mycroft 	       v_out, v_pps);
    966       1.5  mycroft 	if (res)
    967       1.5  mycroft 	    printf("\n");
    968       1.5  mycroft 	else
    969       1.5  mycroft 	    printf("       %-5d     %4d pps\n",
    970       1.5  mycroft 		   g_out, g_pps);
    971       1.1  mycroft 	break;
    972       1.1  mycroft 
    973       1.1  mycroft       case NEITHER:
    974       1.1  mycroft 	printf("\n");
    975       1.1  mycroft 	break;
    976       1.1  mycroft     }
    977       1.5  mycroft 
    978       1.5  mycroft     if (debug > 2) {
    979       1.8    lukem 	printf("\t\t\t\tv_in: %ld ", (long)ntohl(s->tr_vifin));
    980       1.8    lukem 	printf("v_out: %ld ", (long)ntohl(s->tr_vifout));
    981       1.8    lukem 	printf("pkts: %ld\n", (long)ntohl(s->tr_pktcnt));
    982       1.8    lukem 	printf("\t\t\t\tv_in: %ld ", (long)ntohl(r->tr_vifin));
    983       1.8    lukem 	printf("v_out: %ld ", (long)ntohl(r->tr_vifout));
    984       1.8    lukem 	printf("pkts: %ld\n", (long)ntohl(r->tr_pktcnt));
    985       1.8    lukem 	printf("\t\t\t\tv_in: %ld ",
    986       1.8    lukem 	    (long)ntohl(s->tr_vifin)-ntohl(r->tr_vifin));
    987       1.8    lukem 	printf("v_out: %ld ",
    988       1.8    lukem 	    (long)(ntohl(s->tr_vifout) - ntohl(r->tr_vifout)));
    989       1.8    lukem 	printf("pkts: %ld ", (long)(ntohl(s->tr_pktcnt) - ntohl(r->tr_pktcnt)));
    990       1.5  mycroft 	printf("time: %d\n", timediff);
    991       1.5  mycroft 	printf("\t\t\t\tres: %d\n", res);
    992       1.5  mycroft     }
    993       1.1  mycroft }
    994       1.1  mycroft 
    995       1.1  mycroft /*
    996       1.5  mycroft  * A fixup to check if any pktcnt has been reset, and to fix the
    997       1.5  mycroft  * byteorder bugs in mrouted 3.6 on little-endian machines.
    998       1.1  mycroft  */
    999       1.1  mycroft void
   1000       1.5  mycroft fixup_stats(base, prev, new)
   1001       1.5  mycroft     struct resp_buf *base, *prev, *new;
   1002       1.1  mycroft {
   1003       1.5  mycroft     int rno = base->len;
   1004       1.5  mycroft     struct tr_resp *b = base->resps + rno;
   1005       1.5  mycroft     struct tr_resp *p = prev->resps + rno;
   1006       1.5  mycroft     struct tr_resp *n = new->resps + rno;
   1007       1.5  mycroft     int *r = reset + rno;
   1008       1.5  mycroft     int *s = swaps + rno;
   1009       1.5  mycroft     int res;
   1010       1.5  mycroft 
   1011       1.5  mycroft     /* Check for byte-swappers */
   1012       1.5  mycroft     while (--rno >= 0) {
   1013       1.5  mycroft 	--n; --p; --b; --s;
   1014       1.5  mycroft 	if (*s || abs(ntohl(n->tr_vifout) - ntohl(p->tr_vifout)) > 100000) {
   1015       1.5  mycroft 	    /* This host sends byteswapped reports; swap 'em */
   1016       1.5  mycroft 	    if (!*s) {
   1017       1.5  mycroft 		*s = 1;
   1018       1.5  mycroft 		b->tr_qarr = byteswap(b->tr_qarr);
   1019       1.5  mycroft 		b->tr_vifin = byteswap(b->tr_vifin);
   1020       1.5  mycroft 		b->tr_vifout = byteswap(b->tr_vifout);
   1021       1.5  mycroft 		b->tr_pktcnt = byteswap(b->tr_pktcnt);
   1022       1.5  mycroft 	    }
   1023       1.1  mycroft 
   1024       1.5  mycroft 	    n->tr_qarr = byteswap(n->tr_qarr);
   1025       1.5  mycroft 	    n->tr_vifin = byteswap(n->tr_vifin);
   1026       1.5  mycroft 	    n->tr_vifout = byteswap(n->tr_vifout);
   1027       1.5  mycroft 	    n->tr_pktcnt = byteswap(n->tr_pktcnt);
   1028       1.5  mycroft 	}
   1029       1.5  mycroft     }
   1030       1.1  mycroft 
   1031       1.1  mycroft     rno = base->len;
   1032       1.1  mycroft     b = base->resps + rno;
   1033       1.5  mycroft     p = prev->resps + rno;
   1034       1.1  mycroft     n = new->resps + rno;
   1035       1.1  mycroft 
   1036       1.5  mycroft     while (--rno >= 0) {
   1037       1.5  mycroft 	--n; --p; --b; --r;
   1038       1.5  mycroft 	res = ((ntohl(n->tr_pktcnt) < ntohl(b->tr_pktcnt)) ||
   1039       1.5  mycroft 	       (ntohl(n->tr_pktcnt) < ntohl(p->tr_pktcnt)));
   1040       1.5  mycroft 	if (debug > 2)
   1041       1.5  mycroft     	    printf("\t\tr=%d, res=%d\n", *r, res);
   1042       1.5  mycroft 	if (*r) {
   1043       1.5  mycroft 	    if (res || *r > 1) {
   1044       1.5  mycroft 		/*
   1045       1.5  mycroft 		 * This router appears to be a 3.4 with that nasty ol'
   1046       1.5  mycroft 		 * neighbor version bug, which causes it to constantly
   1047       1.5  mycroft 		 * reset.  Just nuke the statistics for this node, and
   1048       1.5  mycroft 		 * don't even bother giving it the benefit of the
   1049       1.5  mycroft 		 * doubt from now on.
   1050       1.5  mycroft 		 */
   1051       1.5  mycroft 		p->tr_pktcnt = b->tr_pktcnt = n->tr_pktcnt;
   1052       1.8    lukem 		r++;
   1053       1.5  mycroft 	    } else {
   1054       1.5  mycroft 		/*
   1055       1.5  mycroft 		 * This is simply the situation that the original
   1056       1.5  mycroft 		 * fixup_stats was meant to deal with -- that a
   1057       1.5  mycroft 		 * 3.3 or 3.4 router deleted a cache entry while
   1058       1.5  mycroft 		 * traffic was still active.
   1059       1.5  mycroft 		 */
   1060       1.5  mycroft 		*r = 0;
   1061       1.5  mycroft 		break;
   1062       1.5  mycroft 	    }
   1063       1.5  mycroft 	} else
   1064       1.5  mycroft 	    *r = res;
   1065       1.5  mycroft     }
   1066       1.5  mycroft 
   1067       1.5  mycroft     if (rno < 0) return;
   1068       1.5  mycroft 
   1069       1.5  mycroft     rno = base->len;
   1070       1.5  mycroft     b = base->resps + rno;
   1071       1.5  mycroft     p = prev->resps + rno;
   1072       1.5  mycroft 
   1073       1.5  mycroft     while (--rno >= 0) (--b)->tr_pktcnt = (--p)->tr_pktcnt;
   1074       1.1  mycroft }
   1075       1.1  mycroft 
   1076       1.1  mycroft /*
   1077       1.1  mycroft  * Print responses with statistics for forward path (from src to dst)
   1078       1.1  mycroft  */
   1079       1.5  mycroft int
   1080       1.1  mycroft print_stats(base, prev, new)
   1081       1.1  mycroft     struct resp_buf *base, *prev, *new;
   1082       1.1  mycroft {
   1083       1.1  mycroft     int rtt, hop;
   1084       1.5  mycroft     char *ms;
   1085       1.5  mycroft     u_int32_t smask;
   1086       1.5  mycroft     int rno = base->len - 1;
   1087       1.5  mycroft     struct tr_resp *b = base->resps + rno;
   1088       1.5  mycroft     struct tr_resp *p = prev->resps + rno;
   1089       1.5  mycroft     struct tr_resp *n = new->resps + rno;
   1090       1.5  mycroft     int *r = reset + rno;
   1091       1.5  mycroft     u_long resptime = new->rtime;
   1092       1.5  mycroft     u_long qarrtime = fixtime(ntohl(n->tr_qarr));
   1093       1.5  mycroft     u_int ttl = n->tr_fttl;
   1094       1.5  mycroft     int first = (base == prev);
   1095       1.1  mycroft 
   1096       1.1  mycroft     VAL_TO_MASK(smask, b->tr_smask);
   1097       1.1  mycroft     printf("  Source        Response Dest");
   1098       1.1  mycroft     printf("    Packet Statistics For     Only For Traffic\n");
   1099       1.1  mycroft     printf("%-15s %-15s  All Multicast Traffic     From %s\n",
   1100       1.1  mycroft 	   ((b->tr_inaddr & smask) == (qsrc & smask)) ? s1 : "   * * *       ",
   1101       1.1  mycroft 	   inet_fmt(base->qhdr.tr_raddr, s2), inet_fmt(qsrc, s1));
   1102       1.1  mycroft     rtt = t_diff(resptime, new->qtime);
   1103       1.1  mycroft     ms = scale(&rtt);
   1104       1.5  mycroft     printf("     %c       __/  rtt%5d%s    Lost/Sent = Pct  Rate       To %s\n",
   1105       1.5  mycroft 	   first ? 'v' : '|', rtt, ms, inet_fmt(qgrp, s2));
   1106       1.5  mycroft     if (!first) {
   1107       1.5  mycroft 	hop = t_diff(resptime, qarrtime);
   1108       1.5  mycroft 	ms = scale(&hop);
   1109       1.5  mycroft 	printf("     v      /     hop%5d%s", hop, ms);
   1110       1.5  mycroft 	printf("    ---------------------     --------------------\n");
   1111       1.5  mycroft     }
   1112       1.1  mycroft     if (debug > 2) {
   1113       1.8    lukem 	printf("\t\t\t\tv_in: %ld ", (long)ntohl(n->tr_vifin));
   1114       1.8    lukem 	printf("v_out: %ld ", (long)ntohl(n->tr_vifout));
   1115       1.8    lukem 	printf("pkts: %ld\n", (long)ntohl(n->tr_pktcnt));
   1116       1.8    lukem 	printf("\t\t\t\tv_in: %ld ", (long)ntohl(b->tr_vifin));
   1117       1.8    lukem 	printf("v_out: %ld ", (long)ntohl(b->tr_vifout));
   1118       1.8    lukem 	printf("pkts: %ld\n", (long)ntohl(b->tr_pktcnt));
   1119       1.8    lukem 	printf("\t\t\t\tv_in: %ld ",
   1120       1.8    lukem 	    (long)(ntohl(n->tr_vifin) - ntohl(b->tr_vifin)));
   1121       1.8    lukem 	printf("v_out: %ld ",
   1122       1.8    lukem 	    (long)(ntohl(n->tr_vifout) - ntohl(b->tr_vifout)));
   1123       1.8    lukem 	printf("pkts: %ld\n",
   1124       1.8    lukem 	    (long)(ntohl(n->tr_pktcnt) - ntohl(b->tr_pktcnt)));
   1125       1.5  mycroft 	printf("\t\t\t\treset: %d\n", *r);
   1126       1.1  mycroft     }
   1127       1.1  mycroft 
   1128       1.1  mycroft     while (TRUE) {
   1129       1.5  mycroft 	if ((n->tr_inaddr != b->tr_inaddr) || (n->tr_inaddr != b->tr_inaddr))
   1130       1.5  mycroft 	  return 1;		/* Route changed */
   1131       1.5  mycroft 
   1132       1.1  mycroft 	if ((n->tr_inaddr != n->tr_outaddr))
   1133       1.1  mycroft 	  printf("%-15s\n", inet_fmt(n->tr_inaddr, s1));
   1134       1.1  mycroft 	printf("%-15s %-14s %s\n", inet_fmt(n->tr_outaddr, s1), names[rno],
   1135       1.1  mycroft 		 flag_type(n->tr_rflags));
   1136       1.1  mycroft 
   1137       1.1  mycroft 	if (rno-- < 1) break;
   1138       1.1  mycroft 
   1139       1.5  mycroft 	printf("     %c     ^      ttl%5d   ", first ? 'v' : '|', ttl);
   1140       1.5  mycroft 	stat_line(p, n, TRUE, r);
   1141       1.5  mycroft 	if (!first) {
   1142       1.5  mycroft 	    resptime = qarrtime;
   1143       1.5  mycroft 	    qarrtime = fixtime(ntohl((n-1)->tr_qarr));
   1144       1.5  mycroft 	    hop = t_diff(resptime, qarrtime);
   1145       1.5  mycroft 	    ms = scale(&hop);
   1146       1.5  mycroft 	    printf("     v     |      hop%5d%s", hop, ms);
   1147       1.5  mycroft 	    stat_line(b, n, TRUE, r);
   1148       1.5  mycroft 	}
   1149       1.1  mycroft 
   1150       1.5  mycroft 	--b, --p, --n, --r;
   1151       1.5  mycroft 	if (ttl < n->tr_fttl) ttl = n->tr_fttl;
   1152       1.5  mycroft 	else ++ttl;
   1153       1.1  mycroft     }
   1154       1.1  mycroft 
   1155       1.5  mycroft     printf("     %c      \\__   ttl%5d   ", first ? 'v' : '|', ttl);
   1156       1.5  mycroft     stat_line(p, n, FALSE, r);
   1157       1.5  mycroft     if (!first) {
   1158       1.5  mycroft 	hop = t_diff(qarrtime, new->qtime);
   1159       1.5  mycroft 	ms = scale(&hop);
   1160       1.5  mycroft 	printf("     v         \\  hop%5d%s", hop, ms);
   1161       1.5  mycroft 	stat_line(b, n, FALSE, r);
   1162       1.5  mycroft     }
   1163       1.1  mycroft     printf("%-15s %s\n", inet_fmt(qdst, s1), inet_fmt(lcl_addr, s2));
   1164       1.1  mycroft     printf("  Receiver      Query Source\n\n");
   1165       1.5  mycroft     return 0;
   1166       1.1  mycroft }
   1167       1.1  mycroft 
   1168       1.1  mycroft 
   1169       1.1  mycroft /***************************************************************************
   1170       1.1  mycroft  *	main
   1171       1.1  mycroft  ***************************************************************************/
   1172       1.1  mycroft 
   1173       1.1  mycroft int
   1174       1.1  mycroft main(argc, argv)
   1175       1.1  mycroft int argc;
   1176       1.1  mycroft char *argv[];
   1177       1.1  mycroft {
   1178       1.1  mycroft     int udp;
   1179       1.1  mycroft     struct sockaddr_in addr;
   1180       1.1  mycroft     int addrlen = sizeof(addr);
   1181       1.1  mycroft     int recvlen;
   1182       1.1  mycroft     struct timeval tv;
   1183       1.1  mycroft     struct resp_buf *prev, *new;
   1184       1.1  mycroft     struct tr_resp *r;
   1185       1.1  mycroft     u_int32_t smask;
   1186       1.1  mycroft     int rno;
   1187       1.5  mycroft     int hops, nexthop, tries;
   1188       1.5  mycroft     u_int32_t lastout = 0;
   1189       1.1  mycroft     int numstats = 1;
   1190       1.1  mycroft     int waittime;
   1191       1.1  mycroft     int seed;
   1192       1.1  mycroft 
   1193       1.1  mycroft     if (geteuid() != 0) {
   1194       1.1  mycroft 	fprintf(stderr, "mtrace: must be root\n");
   1195       1.1  mycroft 	exit(1);
   1196       1.1  mycroft     }
   1197  1.14.4.2   itojun     init_igmp();
   1198  1.14.4.2   itojun     if (setuid(getuid()) == -1)
   1199  1.14.4.2   itojun 	log(LOG_ERR, errno, "setuid");
   1200       1.1  mycroft 
   1201       1.5  mycroft     argv++, argc--;
   1202       1.5  mycroft     if (argc == 0) goto usage;
   1203       1.2  thorpej 
   1204       1.5  mycroft     while (argc > 0 && *argv[0] == '-') {
   1205       1.5  mycroft 	char *p = *argv++;  argc--;
   1206       1.5  mycroft 	p++;
   1207       1.5  mycroft 	do {
   1208       1.5  mycroft 	    char c = *p++;
   1209       1.5  mycroft 	    char *arg = (char *) 0;
   1210       1.5  mycroft 	    if (isdigit(*p)) {
   1211       1.5  mycroft 		arg = p;
   1212       1.5  mycroft 		p = "";
   1213       1.5  mycroft 	    } else if (argc > 0) arg = argv[0];
   1214       1.5  mycroft 	    switch (c) {
   1215       1.5  mycroft 	      case 'd':			/* Unlisted debug print option */
   1216       1.5  mycroft 		if (arg && isdigit(*arg)) {
   1217       1.5  mycroft 		    debug = atoi(arg);
   1218       1.5  mycroft 		    if (debug < 0) debug = 0;
   1219       1.5  mycroft 		    if (debug > 3) debug = 3;
   1220       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1221       1.5  mycroft 		    break;
   1222       1.5  mycroft 		} else
   1223       1.5  mycroft 		    goto usage;
   1224       1.5  mycroft 	      case 'M':			/* Use multicast for reponse */
   1225       1.5  mycroft 		multicast = TRUE;
   1226       1.5  mycroft 		break;
   1227       1.5  mycroft 	      case 'l':			/* Loop updating stats indefinitely */
   1228       1.5  mycroft 		numstats = 3153600;
   1229       1.5  mycroft 		break;
   1230       1.5  mycroft 	      case 'n':			/* Don't reverse map host addresses */
   1231       1.5  mycroft 		numeric = TRUE;
   1232       1.5  mycroft 		break;
   1233       1.5  mycroft 	      case 'p':			/* Passive listen for traces */
   1234       1.5  mycroft 		passive = TRUE;
   1235       1.5  mycroft 		break;
   1236       1.5  mycroft 	      case 'v':			/* Verbosity */
   1237       1.5  mycroft 		verbose = TRUE;
   1238       1.5  mycroft 		break;
   1239       1.5  mycroft 	      case 's':			/* Short form, don't wait for stats */
   1240       1.5  mycroft 		numstats = 0;
   1241       1.5  mycroft 		break;
   1242       1.5  mycroft 	      case 'w':			/* Time to wait for packet arrival */
   1243       1.5  mycroft 		if (arg && isdigit(*arg)) {
   1244       1.5  mycroft 		    timeout = atoi(arg);
   1245       1.5  mycroft 		    if (timeout < 1) timeout = 1;
   1246       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1247       1.5  mycroft 		    break;
   1248       1.5  mycroft 		} else
   1249       1.5  mycroft 		    goto usage;
   1250       1.5  mycroft 	      case 'm':			/* Max number of hops to trace */
   1251       1.5  mycroft 		if (arg && isdigit(*arg)) {
   1252       1.5  mycroft 		    qno = atoi(arg);
   1253       1.5  mycroft 		    if (qno > MAXHOPS) qno = MAXHOPS;
   1254       1.5  mycroft 		    else if (qno < 1) qno = 0;
   1255       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1256       1.5  mycroft 		    break;
   1257       1.5  mycroft 		} else
   1258       1.5  mycroft 		    goto usage;
   1259       1.5  mycroft 	      case 'q':			/* Number of query retries */
   1260       1.5  mycroft 		if (arg && isdigit(*arg)) {
   1261       1.5  mycroft 		    nqueries = atoi(arg);
   1262       1.5  mycroft 		    if (nqueries < 1) nqueries = 1;
   1263       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1264       1.5  mycroft 		    break;
   1265       1.5  mycroft 		} else
   1266       1.5  mycroft 		    goto usage;
   1267       1.5  mycroft 	      case 'g':			/* Last-hop gateway (dest of query) */
   1268       1.5  mycroft 		if (arg && (gwy = host_addr(arg))) {
   1269       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1270       1.5  mycroft 		    break;
   1271       1.5  mycroft 		} else
   1272       1.5  mycroft 		    goto usage;
   1273       1.5  mycroft 	      case 't':			/* TTL for query packet */
   1274       1.5  mycroft 		if (arg && isdigit(*arg)) {
   1275       1.5  mycroft 		    qttl = atoi(arg);
   1276       1.5  mycroft 		    if (qttl < 1) qttl = 1;
   1277       1.5  mycroft 		    rttl = qttl;
   1278       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1279       1.5  mycroft 		    break;
   1280       1.5  mycroft 		} else
   1281       1.5  mycroft 		    goto usage;
   1282       1.5  mycroft 	      case 'r':			/* Dest for response packet */
   1283       1.5  mycroft 		if (arg && (raddr = host_addr(arg))) {
   1284       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1285       1.5  mycroft 		    break;
   1286       1.5  mycroft 		} else
   1287       1.5  mycroft 		    goto usage;
   1288       1.5  mycroft 	      case 'i':			/* Local interface address */
   1289       1.5  mycroft 		if (arg && (lcl_addr = host_addr(arg))) {
   1290       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1291       1.5  mycroft 		    break;
   1292       1.5  mycroft 		} else
   1293       1.5  mycroft 		    goto usage;
   1294       1.5  mycroft 	      case 'S':			/* Stat accumulation interval */
   1295       1.5  mycroft 		if (arg && isdigit(*arg)) {
   1296       1.5  mycroft 		    statint = atoi(arg);
   1297       1.5  mycroft 		    if (statint < 1) statint = 1;
   1298       1.5  mycroft 		    if (arg == argv[0]) argv++, argc--;
   1299       1.5  mycroft 		    break;
   1300       1.5  mycroft 		} else
   1301       1.5  mycroft 		    goto usage;
   1302       1.5  mycroft 	      default:
   1303       1.5  mycroft 		goto usage;
   1304       1.5  mycroft 	    }
   1305       1.5  mycroft 	} while (*p);
   1306       1.5  mycroft     }
   1307       1.2  thorpej 
   1308       1.5  mycroft     if (argc > 0 && (qsrc = host_addr(argv[0]))) {          /* Source of path */
   1309       1.5  mycroft 	if (IN_MULTICAST(ntohl(qsrc))) goto usage;
   1310       1.5  mycroft 	argv++, argc--;
   1311       1.5  mycroft 	if (argc > 0 && (qdst = host_addr(argv[0]))) {      /* Dest of path */
   1312       1.5  mycroft 	    argv++, argc--;
   1313       1.5  mycroft 	    if (argc > 0 && (qgrp = host_addr(argv[0]))) {  /* Path via group */
   1314       1.5  mycroft 		argv++, argc--;
   1315       1.5  mycroft 	    }
   1316       1.5  mycroft 	    if (IN_MULTICAST(ntohl(qdst))) {
   1317       1.5  mycroft 		u_int32_t temp = qdst;
   1318       1.5  mycroft 		qdst = qgrp;
   1319       1.5  mycroft 		qgrp = temp;
   1320       1.5  mycroft 		if (IN_MULTICAST(ntohl(qdst))) goto usage;
   1321       1.5  mycroft 	    } else if (qgrp && !IN_MULTICAST(ntohl(qgrp))) goto usage;
   1322       1.5  mycroft 	}
   1323       1.5  mycroft     }
   1324       1.2  thorpej 
   1325       1.5  mycroft     if (passive) {
   1326       1.5  mycroft 	passive_mode();
   1327       1.5  mycroft 	return(0);
   1328       1.1  mycroft     }
   1329       1.1  mycroft 
   1330       1.5  mycroft     if (argc > 0 || qsrc == 0) {
   1331       1.5  mycroft usage:	printf("\
   1332       1.5  mycroft Usage: mtrace [-Mlnps] [-w wait] [-m max_hops] [-q nqueries] [-g gateway]\n\
   1333       1.5  mycroft               [-S statint] [-t ttl] [-r resp_dest] [-i if_addr] source [receiver] [group]\n");
   1334       1.5  mycroft 	exit(1);
   1335       1.1  mycroft     }
   1336       1.1  mycroft 
   1337       1.1  mycroft     /*
   1338       1.1  mycroft      * Set useful defaults for as many parameters as possible.
   1339       1.1  mycroft      */
   1340       1.1  mycroft 
   1341       1.1  mycroft     defgrp = htonl(0xE0020001);		/* MBone Audio (224.2.0.1) */
   1342       1.1  mycroft     query_cast = htonl(0xE0000002);	/* All routers multicast addr */
   1343       1.1  mycroft     resp_cast = htonl(0xE0000120);	/* Mtrace response multicast addr */
   1344       1.5  mycroft     if (qgrp == 0) qgrp = defgrp;
   1345       1.1  mycroft 
   1346       1.1  mycroft     /*
   1347       1.1  mycroft      * Get default local address for multicasts to use in setting defaults.
   1348       1.1  mycroft      */
   1349       1.1  mycroft     addr.sin_family = AF_INET;
   1350       1.1  mycroft #if (defined(BSD) && (BSD >= 199103))
   1351       1.1  mycroft     addr.sin_len = sizeof(addr);
   1352       1.1  mycroft #endif
   1353       1.1  mycroft     addr.sin_addr.s_addr = qgrp;
   1354       1.1  mycroft     addr.sin_port = htons(2000);	/* Any port above 1024 will do */
   1355       1.1  mycroft 
   1356       1.1  mycroft     if (((udp = socket(AF_INET, SOCK_DGRAM, 0)) < 0) ||
   1357       1.1  mycroft 	(connect(udp, (struct sockaddr *) &addr, sizeof(addr)) < 0) ||
   1358       1.1  mycroft 	getsockname(udp, (struct sockaddr *) &addr, &addrlen) < 0) {
   1359       1.1  mycroft 	perror("Determining local address");
   1360       1.1  mycroft 	exit(-1);
   1361       1.1  mycroft     }
   1362       1.1  mycroft 
   1363       1.5  mycroft #ifdef SUNOS5
   1364       1.1  mycroft     /*
   1365       1.5  mycroft      * SunOS 5.X prior to SunOS 2.6, getsockname returns 0 for udp socket.
   1366       1.5  mycroft      * This call to sysinfo will return the hostname.
   1367       1.5  mycroft      * If the default multicast interfface (set with the route
   1368       1.5  mycroft      * for 224.0.0.0) is not the same as the hostname,
   1369       1.5  mycroft      * mtrace -i [if_addr] will have to be used.
   1370       1.1  mycroft      */
   1371       1.5  mycroft     if (addr.sin_addr.s_addr == 0) {
   1372       1.5  mycroft 	char myhostname[MAXHOSTNAMELEN];
   1373       1.5  mycroft 	struct hostent *hp;
   1374       1.5  mycroft 	int error;
   1375       1.5  mycroft 
   1376       1.5  mycroft 	error = sysinfo(SI_HOSTNAME, myhostname, sizeof(myhostname));
   1377       1.5  mycroft 	if (error == -1) {
   1378       1.5  mycroft 	    perror("Getting my hostname");
   1379       1.5  mycroft 	    exit(-1);
   1380       1.5  mycroft 	}
   1381       1.5  mycroft 
   1382       1.5  mycroft 	hp = gethostbyname(myhostname);
   1383       1.5  mycroft 	if (hp == NULL || hp->h_addrtype != AF_INET ||
   1384       1.5  mycroft 	    hp->h_length != sizeof(addr.sin_addr)) {
   1385       1.5  mycroft 	    perror("Finding IP address for my hostname");
   1386       1.5  mycroft 	    exit(-1);
   1387       1.5  mycroft 	}
   1388       1.5  mycroft 
   1389      1.10      mrg 	memcpy((char *)&addr.sin_addr.s_addr, hp->h_addr,
   1390      1.10      mrg 	    sizeof(addr.sin_addr.s_addr));
   1391       1.5  mycroft     }
   1392       1.5  mycroft #endif
   1393       1.1  mycroft 
   1394       1.1  mycroft     /*
   1395       1.5  mycroft      * Default destination for path to be queried is the local host.
   1396       1.1  mycroft      */
   1397       1.5  mycroft     if (qdst == 0) qdst = lcl_addr ? lcl_addr : addr.sin_addr.s_addr;
   1398       1.1  mycroft     dst_netmask = get_netmask(udp, qdst);
   1399       1.1  mycroft     close(udp);
   1400       1.5  mycroft     if (lcl_addr == 0) lcl_addr = addr.sin_addr.s_addr;
   1401       1.5  mycroft 
   1402       1.5  mycroft     /*
   1403       1.5  mycroft      * Initialize the seed for random query identifiers.
   1404       1.5  mycroft      */
   1405       1.5  mycroft     gettimeofday(&tv, 0);
   1406       1.5  mycroft     seed = tv.tv_usec ^ lcl_addr;
   1407       1.5  mycroft #ifdef SYSV
   1408       1.5  mycroft     srand48(seed);
   1409       1.5  mycroft #else
   1410       1.5  mycroft     srandom(seed);
   1411       1.5  mycroft #endif
   1412       1.1  mycroft 
   1413       1.5  mycroft     /*
   1414       1.5  mycroft      * Protect against unicast queries to mrouted versions that might crash.
   1415       1.5  mycroft      */
   1416       1.5  mycroft     if (gwy && !IN_MULTICAST(ntohl(gwy)))
   1417       1.5  mycroft       if (send_recv(gwy, IGMP_DVMRP, DVMRP_ASK_NEIGHBORS2, 1, &incr[0])) {
   1418       1.5  mycroft 	  int version = ntohl(incr[0].igmp.igmp_group.s_addr) & 0xFFFF;
   1419       1.5  mycroft 	  if (version == 0x0303 || version == 0x0503) {
   1420       1.5  mycroft 	    printf("Don't use -g to address an mrouted 3.%d, it might crash\n",
   1421       1.5  mycroft 		   (version >> 8) & 0xFF);
   1422       1.1  mycroft 	    exit(0);
   1423       1.1  mycroft 	}
   1424       1.5  mycroft       }
   1425       1.1  mycroft 
   1426       1.1  mycroft     printf("Mtrace from %s to %s via group %s\n",
   1427       1.1  mycroft 	   inet_fmt(qsrc, s1), inet_fmt(qdst, s2), inet_fmt(qgrp, s3));
   1428       1.1  mycroft 
   1429       1.1  mycroft     if ((qdst & dst_netmask) == (qsrc & dst_netmask)) {
   1430       1.1  mycroft 	printf("Source & receiver are directly connected, no path to trace\n");
   1431       1.1  mycroft 	exit(0);
   1432       1.1  mycroft     }
   1433       1.1  mycroft 
   1434       1.1  mycroft     /*
   1435       1.5  mycroft      * If the response is to be a multicast address, make sure we
   1436       1.5  mycroft      * are listening on that multicast address.
   1437       1.1  mycroft      */
   1438       1.5  mycroft     if (raddr) {
   1439       1.5  mycroft 	if (IN_MULTICAST(ntohl(raddr))) k_join(raddr, lcl_addr);
   1440       1.5  mycroft     } else k_join(resp_cast, lcl_addr);
   1441       1.1  mycroft 
   1442       1.1  mycroft     /*
   1443       1.5  mycroft      * If the destination is on the local net, the last-hop router can
   1444       1.5  mycroft      * be found by multicast to the all-routers multicast group.
   1445       1.5  mycroft      * Otherwise, use the group address that is the subject of the
   1446       1.5  mycroft      * query since by definition the last-hop router will be a member.
   1447       1.5  mycroft      * Set default TTLs for local remote multicasts.
   1448       1.1  mycroft      */
   1449       1.5  mycroft     restart:
   1450       1.5  mycroft 
   1451       1.5  mycroft     if (gwy == 0)
   1452       1.5  mycroft       if ((qdst & dst_netmask) == (lcl_addr & dst_netmask)) tdst = query_cast;
   1453       1.5  mycroft       else tdst = qgrp;
   1454       1.5  mycroft     else tdst = gwy;
   1455       1.5  mycroft 
   1456       1.5  mycroft     if (IN_MULTICAST(ntohl(tdst))) {
   1457       1.5  mycroft       k_set_loop(1);	/* If I am running on a router, I need to hear this */
   1458       1.5  mycroft       if (tdst == query_cast) k_set_ttl(qttl ? qttl : 1);
   1459       1.5  mycroft       else k_set_ttl(qttl ? qttl : MULTICAST_TTL1);
   1460       1.5  mycroft     }
   1461       1.1  mycroft 
   1462       1.1  mycroft     /*
   1463       1.5  mycroft      * Try a query at the requested number of hops or MAXHOPS if unspecified.
   1464       1.1  mycroft      */
   1465       1.1  mycroft     if (qno == 0) {
   1466       1.1  mycroft 	hops = MAXHOPS;
   1467       1.1  mycroft 	tries = 1;
   1468       1.1  mycroft 	printf("Querying full reverse path... ");
   1469       1.1  mycroft 	fflush(stdout);
   1470       1.1  mycroft     } else {
   1471       1.1  mycroft 	hops = qno;
   1472       1.1  mycroft 	tries = nqueries;
   1473       1.1  mycroft 	printf("Querying reverse path, maximum %d hops... ", qno);
   1474       1.1  mycroft 	fflush(stdout);
   1475       1.2  thorpej     }
   1476       1.1  mycroft     base.rtime = 0;
   1477       1.1  mycroft     base.len = 0;
   1478       1.1  mycroft 
   1479       1.5  mycroft     recvlen = send_recv(tdst, IGMP_MTRACE_QUERY, hops, tries, &base);
   1480       1.1  mycroft 
   1481       1.1  mycroft     /*
   1482       1.1  mycroft      * If the initial query was successful, print it.  Otherwise, if
   1483       1.1  mycroft      * the query max hop count is the default of zero, loop starting
   1484       1.5  mycroft      * from one until there is no response for four hops.  The extra
   1485       1.5  mycroft      * hops allow getting past an mtrace-capable mrouter that can't
   1486       1.5  mycroft      * send multicast packets because all phyints are disabled.
   1487       1.1  mycroft      */
   1488       1.1  mycroft     if (recvlen) {
   1489       1.1  mycroft 	printf("\n  0  ");
   1490       1.1  mycroft 	print_host(qdst);
   1491       1.1  mycroft 	printf("\n");
   1492       1.1  mycroft 	print_trace(1, &base);
   1493       1.1  mycroft 	r = base.resps + base.len - 1;
   1494       1.5  mycroft 	if (r->tr_rflags == TR_OLD_ROUTER || r->tr_rflags == TR_NO_SPACE ||
   1495       1.5  mycroft 		qno != 0) {
   1496       1.1  mycroft 	    printf("%3d  ", -(base.len+1));
   1497       1.5  mycroft 	    what_kind(&base, r->tr_rflags == TR_OLD_ROUTER ?
   1498       1.5  mycroft 				   "doesn't support mtrace"
   1499       1.5  mycroft 				 : "is the next hop");
   1500       1.1  mycroft 	} else {
   1501       1.1  mycroft 	    VAL_TO_MASK(smask, r->tr_smask);
   1502       1.1  mycroft 	    if ((r->tr_inaddr & smask) == (qsrc & smask)) {
   1503       1.1  mycroft 		printf("%3d  ", -(base.len+1));
   1504       1.1  mycroft 		print_host(qsrc);
   1505       1.1  mycroft 		printf("\n");
   1506       1.1  mycroft 	    }
   1507       1.1  mycroft 	}
   1508       1.1  mycroft     } else if (qno == 0) {
   1509       1.1  mycroft 	printf("switching to hop-by-hop:\n  0  ");
   1510       1.1  mycroft 	print_host(qdst);
   1511       1.1  mycroft 	printf("\n");
   1512       1.1  mycroft 
   1513       1.5  mycroft 	for (hops = 1, nexthop = 1; hops <= MAXHOPS; ++hops) {
   1514       1.1  mycroft 	    printf("%3d  ", -hops);
   1515       1.1  mycroft 	    fflush(stdout);
   1516       1.1  mycroft 
   1517       1.5  mycroft 	    /*
   1518       1.5  mycroft 	     * After a successful first hop, try switching to the unicast
   1519       1.5  mycroft 	     * address of the last-hop router instead of multicasting the
   1520       1.5  mycroft 	     * trace query.  This should be safe for mrouted versions 3.3
   1521       1.5  mycroft 	     * and 3.5 because there is a long route timeout with metric
   1522       1.5  mycroft 	     * infinity before a route disappears.  Switching to unicast
   1523       1.5  mycroft 	     * reduces the amount of multicast traffic and avoids a bug
   1524       1.5  mycroft 	     * with duplicate suppression in mrouted 3.5.
   1525       1.5  mycroft 	     */
   1526       1.5  mycroft 	    if (hops == 2 && gwy == 0 &&
   1527       1.5  mycroft 		(recvlen = send_recv(lastout, IGMP_MTRACE_QUERY, hops, 1, &base)))
   1528       1.5  mycroft 	      tdst = lastout;
   1529       1.5  mycroft 	    else recvlen = send_recv(tdst, IGMP_MTRACE_QUERY, hops, nqueries, &base);
   1530       1.1  mycroft 
   1531       1.1  mycroft 	    if (recvlen == 0) {
   1532       1.5  mycroft 		if (hops == 1) break;
   1533       1.5  mycroft 		if (hops == nexthop) {
   1534       1.5  mycroft 		    if (what_kind(&base, "didn't respond")) {
   1535       1.5  mycroft 			/* the ask_neighbors determined that the
   1536       1.5  mycroft 			 * not-responding router is the first-hop. */
   1537       1.5  mycroft 			break;
   1538       1.5  mycroft 		    }
   1539       1.5  mycroft 		} else if (hops < nexthop + 3) {
   1540       1.5  mycroft 		    printf("\n");
   1541       1.5  mycroft 		} else {
   1542       1.5  mycroft 		    printf("...giving up\n");
   1543       1.5  mycroft 		    break;
   1544       1.5  mycroft 		}
   1545       1.5  mycroft 		continue;
   1546       1.1  mycroft 	    }
   1547       1.1  mycroft 	    r = base.resps + base.len - 1;
   1548       1.5  mycroft 	    if (base.len == hops &&
   1549       1.5  mycroft 		(hops == 1 || (base.resps+nexthop-2)->tr_outaddr == lastout)) {
   1550       1.5  mycroft 	    	if (hops == nexthop) {
   1551       1.5  mycroft 		    print_trace(-hops, &base);
   1552       1.5  mycroft 		} else {
   1553       1.5  mycroft 		    printf("\nResuming...\n");
   1554       1.5  mycroft 		    print_trace(nexthop, &base);
   1555       1.1  mycroft 		}
   1556       1.5  mycroft 	    } else {
   1557       1.5  mycroft 		if (base.len < hops) {
   1558       1.5  mycroft 		    /*
   1559       1.5  mycroft 		     * A shorter trace than requested means a fatal error
   1560       1.5  mycroft 		     * occurred along the path, or that the route changed
   1561       1.5  mycroft 		     * to a shorter one.
   1562       1.5  mycroft 		     *
   1563       1.5  mycroft 		     * If the trace is longer than the last one we received,
   1564       1.5  mycroft 		     * then we are resuming from a skipped router (but there
   1565       1.5  mycroft 		     * is still probably a problem).
   1566       1.5  mycroft 		     *
   1567       1.5  mycroft 		     * If the trace is shorter than the last one we
   1568       1.5  mycroft 		     * received, then the route must have changed (and
   1569       1.5  mycroft 		     * there is still probably a problem).
   1570       1.5  mycroft 		     */
   1571       1.5  mycroft 		    if (nexthop <= base.len) {
   1572       1.5  mycroft 			printf("\nResuming...\n");
   1573       1.5  mycroft 			print_trace(nexthop, &base);
   1574       1.5  mycroft 		    } else if (nexthop > base.len + 1) {
   1575       1.5  mycroft 			hops = base.len;
   1576       1.5  mycroft 			printf("\nRoute must have changed...\n");
   1577       1.5  mycroft 			print_trace(1, &base);
   1578       1.5  mycroft 		    }
   1579       1.5  mycroft 		} else {
   1580       1.5  mycroft 		    /*
   1581       1.5  mycroft 		     * The last hop address is not the same as it was;
   1582       1.5  mycroft 		     * the route probably changed underneath us.
   1583       1.5  mycroft 		     */
   1584       1.5  mycroft 		    hops = base.len;
   1585       1.5  mycroft 		    printf("\nRoute must have changed...\n");
   1586       1.5  mycroft 		    print_trace(1, &base);
   1587       1.1  mycroft 		}
   1588       1.1  mycroft 	    }
   1589       1.5  mycroft 	    lastout = r->tr_outaddr;
   1590       1.1  mycroft 
   1591       1.5  mycroft 	    if (base.len < hops ||
   1592       1.5  mycroft 		r->tr_rmtaddr == 0 ||
   1593       1.5  mycroft 		(r->tr_rflags & 0x80)) {
   1594       1.5  mycroft 		VAL_TO_MASK(smask, r->tr_smask);
   1595       1.5  mycroft 		if (r->tr_rmtaddr) {
   1596       1.5  mycroft 		    if (hops != nexthop) {
   1597       1.5  mycroft 			printf("\n%3d  ", -(base.len+1));
   1598       1.5  mycroft 		    }
   1599       1.5  mycroft 		    what_kind(&base, r->tr_rflags == TR_OLD_ROUTER ?
   1600       1.5  mycroft 				"doesn't support mtrace" :
   1601       1.5  mycroft 				"would be the next hop");
   1602       1.5  mycroft 		    /* XXX could do segmented trace if TR_NO_SPACE */
   1603       1.5  mycroft 		} else if (r->tr_rflags == TR_NO_ERR &&
   1604       1.5  mycroft 			   (r->tr_inaddr & smask) == (qsrc & smask)) {
   1605       1.5  mycroft 		    printf("%3d  ", -(hops + 1));
   1606       1.5  mycroft 		    print_host(qsrc);
   1607       1.5  mycroft 		    printf("\n");
   1608       1.5  mycroft 		}
   1609       1.1  mycroft 		break;
   1610       1.1  mycroft 	    }
   1611       1.5  mycroft 
   1612       1.5  mycroft 	    nexthop = hops + 1;
   1613       1.1  mycroft 	}
   1614       1.1  mycroft     }
   1615       1.1  mycroft 
   1616       1.1  mycroft     if (base.rtime == 0) {
   1617       1.1  mycroft 	printf("Timed out receiving responses\n");
   1618      1.11     ross 	if (IN_MULTICAST(ntohl(tdst))) {
   1619       1.5  mycroft 	  if (tdst == query_cast)
   1620       1.1  mycroft 	    printf("Perhaps no local router has a route for source %s\n",
   1621       1.1  mycroft 		   inet_fmt(qsrc, s1));
   1622       1.1  mycroft 	  else
   1623      1.11     ross 	    printf("Perhaps receiver %s is not a member of group %s,\n"
   1624      1.11     ross 		"or no router local to it has a route for source %s,\n"
   1625      1.11     ross 		"or multicast at ttl %d doesn't reach its last-hop router"
   1626      1.11     ross 		" for that source\n",
   1627      1.11     ross 		inet_fmt(qdst, s2), inet_fmt(qgrp, s3), inet_fmt(qsrc, s1),
   1628      1.11     ross 		qttl ? qttl : MULTICAST_TTL1);
   1629      1.11     ross 	}
   1630       1.1  mycroft 	exit(1);
   1631       1.1  mycroft     }
   1632       1.1  mycroft 
   1633       1.1  mycroft     printf("Round trip time %d ms\n\n", t_diff(base.rtime, base.qtime));
   1634       1.1  mycroft 
   1635       1.1  mycroft     /*
   1636       1.1  mycroft      * Use the saved response which was the longest one received,
   1637       1.1  mycroft      * and make additional probes after delay to measure loss.
   1638       1.1  mycroft      */
   1639       1.1  mycroft     raddr = base.qhdr.tr_raddr;
   1640       1.1  mycroft     rttl = base.qhdr.tr_rttl;
   1641       1.1  mycroft     gettimeofday(&tv, 0);
   1642       1.5  mycroft     waittime = statint - (((tv.tv_sec + JAN_1970) & 0xFFFF) - (base.qtime >> 16));
   1643       1.5  mycroft     prev = &base;
   1644       1.5  mycroft     new = &incr[numstats&1];
   1645       1.1  mycroft 
   1646       1.1  mycroft     while (numstats--) {
   1647       1.1  mycroft 	if (waittime < 1) printf("\n");
   1648       1.1  mycroft 	else {
   1649       1.1  mycroft 	    printf("Waiting to accumulate statistics... ");
   1650       1.1  mycroft 	    fflush(stdout);
   1651       1.1  mycroft 	    sleep((unsigned)waittime);
   1652       1.1  mycroft 	}
   1653       1.1  mycroft 	rno = base.len;
   1654       1.5  mycroft 	recvlen = send_recv(tdst, IGMP_MTRACE_QUERY, rno, nqueries, new);
   1655       1.1  mycroft 
   1656       1.1  mycroft 	if (recvlen == 0) {
   1657       1.1  mycroft 	    printf("Timed out.\n");
   1658       1.1  mycroft 	    exit(1);
   1659       1.1  mycroft 	}
   1660       1.1  mycroft 
   1661       1.1  mycroft 	if (rno != new->len) {
   1662       1.5  mycroft 	    printf("Trace length doesn't match:\n");
   1663       1.5  mycroft 	    /*
   1664       1.5  mycroft 	     * XXX Should this trace result be printed, or is that
   1665       1.5  mycroft 	     * too verbose?  Perhaps it should just say restarting.
   1666       1.5  mycroft 	     * But if the path is changing quickly, this may be the
   1667       1.5  mycroft 	     * only snapshot of the current path.  But, if the path
   1668       1.5  mycroft 	     * is changing that quickly, does the current path really
   1669       1.5  mycroft 	     * matter?
   1670       1.5  mycroft 	     */
   1671       1.5  mycroft 	    print_trace(1, new);
   1672       1.5  mycroft 	    printf("Restarting.\n\n");
   1673       1.5  mycroft 	    numstats++;
   1674       1.5  mycroft 	    goto restart;
   1675       1.1  mycroft 	}
   1676       1.1  mycroft 
   1677       1.1  mycroft 	printf("Results after %d seconds:\n\n",
   1678       1.5  mycroft 	       (int)((new->qtime - base.qtime) >> 16));
   1679       1.5  mycroft 	fixup_stats(&base, prev, new);
   1680       1.5  mycroft 	if (print_stats(&base, prev, new)) {
   1681       1.5  mycroft 	    printf("Route changed:\n");
   1682       1.5  mycroft 	    print_trace(1, new);
   1683       1.5  mycroft 	    printf("Restarting.\n\n");
   1684       1.5  mycroft 	    goto restart;
   1685       1.5  mycroft 	}
   1686       1.1  mycroft 	prev = new;
   1687       1.1  mycroft 	new = &incr[numstats&1];
   1688       1.5  mycroft 	waittime = statint;
   1689       1.1  mycroft     }
   1690       1.1  mycroft 
   1691       1.1  mycroft     /*
   1692       1.1  mycroft      * If the response was multicast back, leave the group
   1693       1.1  mycroft      */
   1694       1.5  mycroft     if (raddr) {
   1695       1.5  mycroft 	if (IN_MULTICAST(ntohl(raddr)))	k_leave(raddr, lcl_addr);
   1696       1.5  mycroft     } else k_leave(resp_cast, lcl_addr);
   1697       1.1  mycroft 
   1698       1.1  mycroft     return (0);
   1699       1.1  mycroft }
   1700       1.1  mycroft 
   1701       1.1  mycroft void
   1702       1.1  mycroft check_vif_state()
   1703       1.1  mycroft {
   1704       1.1  mycroft     log(LOG_WARNING, errno, "sendto");
   1705       1.1  mycroft }
   1706       1.1  mycroft 
   1707       1.1  mycroft /*
   1708       1.1  mycroft  * Log errors and other messages to stderr, according to the severity
   1709       1.1  mycroft  * of the message and the current debug level.  For errors of severity
   1710       1.1  mycroft  * LOG_ERR or worse, terminate the program.
   1711       1.1  mycroft  */
   1712       1.5  mycroft #ifdef __STDC__
   1713       1.5  mycroft void
   1714  1.14.4.1       tv log(int severity, int syserr, const char *format, ...)
   1715       1.5  mycroft {
   1716       1.5  mycroft 	va_list ap;
   1717       1.5  mycroft 
   1718       1.5  mycroft 	va_start(ap, format);
   1719       1.5  mycroft #else
   1720       1.1  mycroft /*VARARGS3*/
   1721       1.5  mycroft void
   1722       1.5  mycroft log(severity, syserr, format, va_alist)
   1723       1.5  mycroft 	int     severity, syserr;
   1724       1.5  mycroft 	char   *format;
   1725       1.5  mycroft 	va_dcl
   1726       1.1  mycroft {
   1727       1.5  mycroft 	va_list ap;
   1728       1.5  mycroft 
   1729       1.5  mycroft 	va_start(ap);
   1730       1.5  mycroft #endif
   1731       1.1  mycroft 
   1732       1.1  mycroft     switch (debug) {
   1733       1.5  mycroft 	case 0: if (severity > LOG_WARNING) return;
   1734       1.5  mycroft 	case 1: if (severity > LOG_NOTICE) return;
   1735       1.5  mycroft 	case 2: if (severity > LOG_INFO  ) return;
   1736       1.1  mycroft 	default:
   1737  1.14.4.2   itojun 	    if (severity == LOG_WARNING)
   1738  1.14.4.2   itojun 		fprintf(stderr, "warning - ");
   1739  1.14.4.1       tv 	    vfprintf(stderr, format, ap);
   1740       1.1  mycroft 	    if (syserr == 0)
   1741       1.1  mycroft 		fprintf(stderr, "\n");
   1742       1.1  mycroft 	    else
   1743       1.9   kleink 		fprintf(stderr, ": %s\n", strerror(syserr));
   1744       1.1  mycroft     }
   1745       1.5  mycroft     if (severity <= LOG_ERR) exit(-1);
   1746       1.1  mycroft }
   1747       1.1  mycroft 
   1748       1.1  mycroft /* dummies */
   1749       1.5  mycroft void accept_probe(src, dst, p, datalen, level)
   1750       1.5  mycroft 	u_int32_t src, dst, level;
   1751       1.5  mycroft 	char *p;
   1752       1.5  mycroft 	int datalen;
   1753       1.5  mycroft {
   1754       1.5  mycroft }
   1755       1.5  mycroft void accept_group_report(src, dst, group, r_type)
   1756       1.5  mycroft 	u_int32_t src, dst, group;
   1757       1.5  mycroft 	int r_type;
   1758       1.5  mycroft {
   1759       1.5  mycroft }
   1760       1.5  mycroft void accept_neighbor_request2(src, dst)
   1761       1.5  mycroft 	u_int32_t src, dst;
   1762       1.5  mycroft {
   1763       1.5  mycroft }
   1764       1.5  mycroft void accept_report(src, dst, p, datalen, level)
   1765       1.5  mycroft 	u_int32_t src, dst, level;
   1766       1.5  mycroft 	char *p;
   1767       1.5  mycroft 	int datalen;
   1768       1.5  mycroft {
   1769       1.5  mycroft }
   1770       1.5  mycroft void accept_neighbor_request(src, dst)
   1771       1.5  mycroft 	u_int32_t src, dst;
   1772       1.5  mycroft {
   1773       1.5  mycroft }
   1774       1.5  mycroft void accept_prune(src, dst, p, datalen)
   1775       1.5  mycroft 	u_int32_t src, dst;
   1776       1.5  mycroft 	char *p;
   1777       1.5  mycroft 	int datalen;
   1778       1.5  mycroft {
   1779       1.5  mycroft }
   1780       1.5  mycroft void accept_graft(src, dst, p, datalen)
   1781       1.5  mycroft 	u_int32_t src, dst;
   1782       1.5  mycroft 	char *p;
   1783       1.5  mycroft 	int datalen;
   1784       1.5  mycroft {
   1785       1.5  mycroft }
   1786       1.5  mycroft void accept_g_ack(src, dst, p, datalen)
   1787       1.5  mycroft 	u_int32_t src, dst;
   1788       1.5  mycroft 	char *p;
   1789       1.5  mycroft 	int datalen;
   1790       1.5  mycroft {
   1791       1.5  mycroft }
   1792       1.5  mycroft void add_table_entry(origin, mcastgrp)
   1793       1.5  mycroft 	u_int32_t origin, mcastgrp;
   1794       1.5  mycroft {
   1795       1.5  mycroft }
   1796       1.5  mycroft void accept_leave_message(src, dst, group)
   1797       1.5  mycroft 	u_int32_t src, dst, group;
   1798       1.5  mycroft {
   1799       1.5  mycroft }
   1800       1.5  mycroft void accept_mtrace(src, dst, group, data, no, datalen)
   1801       1.5  mycroft 	u_int32_t src, dst, group;
   1802       1.5  mycroft 	char *data;
   1803       1.5  mycroft 	u_int no;
   1804       1.5  mycroft 	int datalen;
   1805       1.5  mycroft {
   1806       1.5  mycroft }
   1807       1.5  mycroft void accept_membership_query(src, dst, group, tmo)
   1808       1.5  mycroft 	u_int32_t src, dst, group;
   1809       1.5  mycroft 	int tmo;
   1810       1.5  mycroft {
   1811       1.5  mycroft }
   1812       1.5  mycroft void accept_neighbors(src, dst, p, datalen, level)
   1813       1.5  mycroft 	u_int32_t src, dst, level;
   1814       1.5  mycroft 	u_char *p;
   1815       1.5  mycroft 	int datalen;
   1816       1.5  mycroft {
   1817       1.5  mycroft }
   1818       1.5  mycroft void accept_neighbors2(src, dst, p, datalen, level)
   1819       1.5  mycroft 	u_int32_t src, dst, level;
   1820       1.5  mycroft 	u_char *p;
   1821       1.5  mycroft 	int datalen;
   1822       1.5  mycroft {
   1823       1.5  mycroft }
   1824       1.5  mycroft void accept_info_request(src, dst, p, datalen)
   1825       1.5  mycroft 	u_int32_t src, dst;
   1826       1.5  mycroft 	u_char *p;
   1827       1.5  mycroft 	int datalen;
   1828       1.5  mycroft {
   1829       1.5  mycroft }
   1830       1.5  mycroft void accept_info_reply(src, dst, p, datalen)
   1831       1.5  mycroft 	u_int32_t src, dst;
   1832       1.5  mycroft 	u_char *p;
   1833       1.5  mycroft 	int datalen;
   1834       1.5  mycroft {
   1835       1.5  mycroft }
   1836