blob: c4f050abb9e5cc92abd065958679973fbcfab25c [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00002/*
3 * Copyright (c) 1988, 1989, 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000
Eric Andersen5c58d282001-07-10 16:29:00 +00004 * The Regents of the University of California. All rights reserved.
5 *
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00006 * Busybox port by Vladimir Oleynik (C) 2005 <dzo@simtreas.ru>
Eric Andersen5c58d282001-07-10 16:29:00 +00007 *
8 * Redistribution and use in source and binary forms, with or without
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00009 * modification, are permitted provided that: (1) source code distributions
10 * retain the above copyright notice and this paragraph in its entirety, (2)
11 * distributions including binary code include the above copyright notice and
12 * this paragraph in its entirety in the documentation or other materials
13 * provided with the distribution, and (3) all advertising materials mentioning
14 * features or use of this software display the following acknowledgement:
15 * ``This product includes software developed by the University of California,
16 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
17 * the University nor the names of its contributors may be used to endorse
18 * or promote products derived from this software without specific prior
19 * written permission.
20 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
21 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
22 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
Eric Andersen5c58d282001-07-10 16:29:00 +000023 */
24
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +000025//#define version "1.4a12"
26
27
Eric Andersen5c58d282001-07-10 16:29:00 +000028/*
29 * traceroute host - trace the route ip packets follow going to "host".
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +000030 *
31 * Attempt to trace the route an ip packet would follow to some
32 * internet host. We find out intermediate hops by launching probe
33 * packets with a small ttl (time to live) then listening for an
34 * icmp "time exceeded" reply from a gateway. We start our probes
35 * with a ttl of one and increase by one until we get an icmp "port
36 * unreachable" (which means we got to "host") or hit a max (which
37 * defaults to 30 hops & can be changed with the -m flag). Three
38 * probes (change with -q flag) are sent at each ttl setting and a
39 * line is printed showing the ttl, address of the gateway and
40 * round trip time of each probe. If the probe answers come from
41 * different gateways, the address of each responding system will
42 * be printed. If there is no response within a 5 sec. timeout
43 * interval (changed with the -w flag), a "*" is printed for that
44 * probe.
45 *
46 * Probe packets are UDP format. We don't want the destination
47 * host to process them so the destination port is set to an
48 * unlikely value (if some clod on the destination is using that
49 * value, it can be changed with the -p flag).
50 *
51 * A sample use might be:
52 *
53 * [yak 71]% traceroute nis.nsf.net.
54 * traceroute to nis.nsf.net (35.1.1.48), 30 hops max, 56 byte packet
55 * 1 helios.ee.lbl.gov (128.3.112.1) 19 ms 19 ms 0 ms
56 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
57 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
58 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 39 ms
59 * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 39 ms 39 ms 39 ms
60 * 6 128.32.197.4 (128.32.197.4) 40 ms 59 ms 59 ms
61 * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 59 ms
62 * 8 129.140.70.13 (129.140.70.13) 99 ms 99 ms 80 ms
63 * 9 129.140.71.6 (129.140.71.6) 139 ms 239 ms 319 ms
64 * 10 129.140.81.7 (129.140.81.7) 220 ms 199 ms 199 ms
65 * 11 nic.merit.edu (35.1.1.48) 239 ms 239 ms 239 ms
66 *
67 * Note that lines 2 & 3 are the same. This is due to a buggy
68 * kernel on the 2nd hop system -- lbl-csam.arpa -- that forwards
69 * packets with a zero ttl.
70 *
71 * A more interesting example is:
72 *
73 * [yak 72]% traceroute allspice.lcs.mit.edu.
74 * traceroute to allspice.lcs.mit.edu (18.26.0.115), 30 hops max
75 * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
76 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 19 ms 19 ms
77 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 19 ms
78 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 19 ms 39 ms 39 ms
79 * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 20 ms 39 ms 39 ms
80 * 6 128.32.197.4 (128.32.197.4) 59 ms 119 ms 39 ms
81 * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 39 ms
82 * 8 129.140.70.13 (129.140.70.13) 80 ms 79 ms 99 ms
83 * 9 129.140.71.6 (129.140.71.6) 139 ms 139 ms 159 ms
84 * 10 129.140.81.7 (129.140.81.7) 199 ms 180 ms 300 ms
85 * 11 129.140.72.17 (129.140.72.17) 300 ms 239 ms 239 ms
86 * 12 * * *
87 * 13 128.121.54.72 (128.121.54.72) 259 ms 499 ms 279 ms
88 * 14 * * *
89 * 15 * * *
90 * 16 * * *
91 * 17 * * *
92 * 18 ALLSPICE.LCS.MIT.EDU (18.26.0.115) 339 ms 279 ms 279 ms
93 *
94 * (I start to see why I'm having so much trouble with mail to
95 * MIT.) Note that the gateways 12, 14, 15, 16 & 17 hops away
96 * either don't send ICMP "time exceeded" messages or send them
97 * with a ttl too small to reach us. 14 - 17 are running the
98 * MIT C Gateway code that doesn't send "time exceeded"s. God
99 * only knows what's going on with 12.
100 *
101 * The silent gateway 12 in the above may be the result of a bug in
102 * the 4.[23]BSD network code (and its derivatives): 4.x (x <= 3)
103 * sends an unreachable message using whatever ttl remains in the
104 * original datagram. Since, for gateways, the remaining ttl is
105 * zero, the icmp "time exceeded" is guaranteed to not make it back
106 * to us. The behavior of this bug is slightly more interesting
107 * when it appears on the destination system:
108 *
109 * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
110 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 39 ms
111 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 39 ms 19 ms
112 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 19 ms
113 * 5 ccn-nerif35.Berkeley.EDU (128.32.168.35) 39 ms 39 ms 39 ms
114 * 6 csgw.Berkeley.EDU (128.32.133.254) 39 ms 59 ms 39 ms
115 * 7 * * *
116 * 8 * * *
117 * 9 * * *
118 * 10 * * *
119 * 11 * * *
120 * 12 * * *
121 * 13 rip.Berkeley.EDU (128.32.131.22) 59 ms ! 39 ms ! 39 ms !
122 *
123 * Notice that there are 12 "gateways" (13 is the final
124 * destination) and exactly the last half of them are "missing".
125 * What's really happening is that rip (a Sun-3 running Sun OS3.5)
126 * is using the ttl from our arriving datagram as the ttl in its
127 * icmp reply. So, the reply will time out on the return path
128 * (with no notice sent to anyone since icmp's aren't sent for
129 * icmp's) until we probe with a ttl that's at least twice the path
130 * length. I.e., rip is really only 7 hops away. A reply that
131 * returns with a ttl of 1 is a clue this problem exists.
132 * Traceroute prints a "!" after the time if the ttl is <= 1.
133 * Since vendors ship a lot of obsolete (DEC's Ultrix, Sun 3.x) or
134 * non-standard (HPUX) software, expect to see this problem
135 * frequently and/or take care picking the target host of your
136 * probes.
137 *
138 * Other possible annotations after the time are !H, !N, !P (got a host,
139 * network or protocol unreachable, respectively), !S or !F (source
140 * route failed or fragmentation needed -- neither of these should
141 * ever occur and the associated gateway is busted if you see one). If
142 * almost all the probes result in some kind of unreachable, traceroute
143 * will give up and exit.
144 *
Eric Andersen5c58d282001-07-10 16:29:00 +0000145 * Notes
146 * -----
147 * This program must be run by root or be setuid. (I suggest that
148 * you *don't* make it setuid -- casual use could result in a lot
149 * of unnecessary traffic on our poor, congested nets.)
150 *
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000151 * This program requires a kernel mod that does not appear in any
152 * system available from Berkeley: A raw ip socket using proto
153 * IPPROTO_RAW must interpret the data sent as an ip datagram (as
154 * opposed to data to be wrapped in a ip datagram). See the README
155 * file that came with the source to this program for a description
156 * of the mods I made to /sys/netinet/raw_ip.c. Your mileage may
157 * vary. But, again, ANY 4.x (x < 4) BSD KERNEL WILL HAVE TO BE
158 * MODIFIED TO RUN THIS PROGRAM.
159 *
160 * The udp port usage may appear bizarre (well, ok, it is bizarre).
161 * The problem is that an icmp message only contains 8 bytes of
162 * data from the original datagram. 8 bytes is the size of a udp
163 * header so, if we want to associate replies with the original
164 * datagram, the necessary information must be encoded into the
165 * udp header (the ip id could be used but there's no way to
166 * interlock with the kernel's assignment of ip id's and, anyway,
167 * it would have taken a lot more kernel hacking to allow this
168 * code to set the ip id). So, to allow two or more users to
169 * use traceroute simultaneously, we use this task's pid as the
170 * source port (the high bit is set to move the port number out
171 * of the "likely" range). To keep track of which probe is being
172 * replied to (so times and/or hop counts don't get confused by a
173 * reply that was delayed in transit), we increment the destination
174 * port number before each probe.
175 *
176 * Don't use this as a coding example. I was trying to find a
177 * routing problem and this code sort-of popped out after 48 hours
178 * without sleep. I was amazed it ever compiled, much less ran.
179 *
Eric Andersen5c58d282001-07-10 16:29:00 +0000180 * I stole the idea for this program from Steve Deering. Since
181 * the first release, I've learned that had I attended the right
182 * IETF working group meetings, I also could have stolen it from Guy
183 * Almes or Matt Mathis. I don't know (or care) who came up with
184 * the idea first. I envy the originators' perspicacity and I'm
185 * glad they didn't keep the idea a secret.
186 *
187 * Tim Seaver, Ken Adelman and C. Philip Wood provided bug fixes and/or
188 * enhancements to the original distribution.
189 *
190 * I've hacked up a round-trip-route version of this that works by
191 * sending a loose-source-routed udp datagram through the destination
192 * back to yourself. Unfortunately, SO many gateways botch source
193 * routing, the thing is almost worthless. Maybe one day...
194 *
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000195 * -- Van Jacobson (van@ee.lbl.gov)
Eric Andersen5c58d282001-07-10 16:29:00 +0000196 * Tue Dec 20 03:50:13 PST 1988
197 */
198
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000199#define TRACEROUTE_SO_DEBUG 0
200
201/* TODO: undefs were uncommented - ??! we have config system for that! */
202/* probably ok to remove altogether */
203//#undef CONFIG_FEATURE_TRACEROUTE_VERBOSE
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000204//#define CONFIG_FEATURE_TRACEROUTE_VERBOSE
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000205//#undef CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000206//#define CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000207//#undef CONFIG_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000208//#define CONFIG_FEATURE_TRACEROUTE_USE_ICMP
Eric Andersen7467c8d2001-07-12 20:26:32 +0000209
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000210#include "inet_common.h"
211
212#include <net/if.h>
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000213#include <arpa/inet.h>
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000214#include <netinet/in.h>
Eric Andersen5c58d282001-07-10 16:29:00 +0000215#include <netinet/udp.h>
216#include <netinet/ip.h>
217#include <netinet/ip_icmp.h>
218
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000219#include "busybox.h"
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000220
Eric Andersen5c58d282001-07-10 16:29:00 +0000221
222/*
223 * Definitions for internet protocol version 4.
224 * Per RFC 791, September 1981.
225 */
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000226#define IPVERSION 4
227
228#ifndef IPPROTO_ICMP
229/* Grrrr.... */
230#define IPPROTO_ICMP 1
231#endif
232#ifndef IPPROTO_IP
233#define IPPROTO_IP 0
234#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000235
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000236/*
237 * Overlay for ip header used by other protocols (tcp, udp).
238 */
239struct ipovly {
Mike Frysinger294254c2006-02-19 22:59:12 +0000240 unsigned char ih_x1[9]; /* (unused) */
241 unsigned char ih_pr; /* protocol */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000242 short ih_len; /* protocol length */
243 struct in_addr ih_src; /* source internet address */
244 struct in_addr ih_dst; /* destination internet address */
245};
Eric Andersen5c58d282001-07-10 16:29:00 +0000246
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000247/*
248 * UDP kernel structures and variables.
249 */
250struct udpiphdr {
251 struct ipovly ui_i; /* overlaid ip structure */
252 struct udphdr ui_u; /* udp header */
253};
254#define ui_next ui_i.ih_next
255#define ui_prev ui_i.ih_prev
256#define ui_x1 ui_i.ih_x1
257#define ui_pr ui_i.ih_pr
258#define ui_len ui_i.ih_len
259#define ui_src ui_i.ih_src
260#define ui_dst ui_i.ih_dst
261#define ui_sport ui_u.uh_sport
262#define ui_dport ui_u.uh_dport
263#define ui_ulen ui_u.uh_ulen
264#define ui_sum ui_u.uh_sum
Eric Andersen5c58d282001-07-10 16:29:00 +0000265
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000266
267/* Host name and address list */
268struct hostinfo {
269 char *name;
270 int n;
271 u_int32_t *addrs;
272};
273
274/* Data section of the probe packet */
275struct outdata {
Mike Frysinger294254c2006-02-19 22:59:12 +0000276 unsigned char seq; /* sequence number of this packet */
277 unsigned char ttl; /* ttl packet left with */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000278 struct timeval tv ATTRIBUTE_PACKED; /* time packet left */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000279};
280
281struct IFADDRLIST {
282 u_int32_t addr;
283 char device[sizeof(struct ifreq)];
284};
285
286
287static const char route[] = "/proc/net/route";
288
289/* last inbound (icmp) packet */
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000290static unsigned char packet[512] ATTRIBUTE_ALIGNED(32);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000291
292static struct ip *outip; /* last output (udp) packet */
293static struct udphdr *outudp; /* last output (udp) packet */
294static struct outdata *outdata; /* last output (udp) packet */
295
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000296#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000297static struct icmp *outicmp; /* last output (icmp) packet */
298#endif
299
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000300#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000301/* Maximum number of gateways (include room for one noop) */
302#define NGATEWAYS ((int)((MAX_IPOPTLEN - IPOPT_MINOFF - 1) / sizeof(u_int32_t)))
303/* loose source route gateway list (including room for final destination) */
304static u_int32_t gwlist[NGATEWAYS + 1];
305#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000306
307static int s; /* receive (icmp) socket file descriptor */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000308static int sndsock; /* send (udp/icmp) socket file descriptor */
Eric Andersen5c58d282001-07-10 16:29:00 +0000309
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000310static struct sockaddr_storage whereto; /* Who to try to reach */
311static struct sockaddr_storage wherefrom; /* Who we are */
312static int packlen; /* total length of packet */
313static int minpacket; /* min ip packet size */
314static int maxpacket = 32 * 1024; /* max ip packet size */
315static int pmtu; /* Path MTU Discovery (RFC1191) */
Eric Andersen5c58d282001-07-10 16:29:00 +0000316
317static char *hostname;
318
Eric Andersen5c58d282001-07-10 16:29:00 +0000319static u_short ident;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000320static u_short port = 32768 + 666; /* start udp dest port # for probe packets */
Eric Andersen5c58d282001-07-10 16:29:00 +0000321
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000322static int waittime = 5; /* time to wait for response (in seconds) */
323static int nflag; /* print addresses numerically */
324static int doipcksum = 1; /* calculate ip checksums by default */
325
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000326#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000327static int optlen; /* length of ip options */
328#else
329#define optlen 0
330#endif
331
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000332#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000333static int useicmp; /* use icmp echo instead of udp packets */
334#endif
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000335#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen5c58d282001-07-10 16:29:00 +0000336static int verbose;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000337#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000338
Eric Andersen7467c8d2001-07-12 20:26:32 +0000339/*
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000340 * Return the interface list
Eric Andersen7467c8d2001-07-12 20:26:32 +0000341 */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000342static int
343ifaddrlist(struct IFADDRLIST **ipaddrp)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000344{
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000345 int fd, nipaddr;
346#ifdef HAVE_SOCKADDR_SA_LEN
347 int n;
348#endif
349 struct ifreq *ifrp, *ifend, *ifnext;
350 struct sockaddr_in *addr_sin;
351 struct IFADDRLIST *al;
352 struct ifconf ifc;
353 struct ifreq ibuf[(32 * 1024) / sizeof(struct ifreq)], ifr;
354 struct IFADDRLIST *st_ifaddrlist;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000355
Rob Landleyd921b2e2006-08-03 15:41:12 +0000356 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000357
358 ifc.ifc_len = sizeof(ibuf);
359 ifc.ifc_buf = (caddr_t)ibuf;
360
361 if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) < 0 ||
362 ifc.ifc_len < sizeof(struct ifreq)) {
363 if (errno == EINVAL)
364 bb_error_msg_and_die(
365 "SIOCGIFCONF: ifreq struct too small (%d bytes)",
Eric Andersen0cb6f352006-01-30 22:30:41 +0000366 (int)sizeof(ibuf));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000367 else
368 bb_perror_msg_and_die("SIOCGIFCONF");
Eric Andersen7467c8d2001-07-12 20:26:32 +0000369 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000370 ifrp = ibuf;
371 ifend = (struct ifreq *)((char *)ibuf + ifc.ifc_len);
372
373 nipaddr = 1 + (ifc.ifc_len / sizeof(struct ifreq));
Rob Landley081e3842006-08-03 20:07:35 +0000374 st_ifaddrlist = xzalloc(nipaddr * sizeof(struct IFADDRLIST));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000375 al = st_ifaddrlist;
376 nipaddr = 0;
377
378 for (; ifrp < ifend; ifrp = ifnext) {
379#ifdef HAVE_SOCKADDR_SA_LEN
380 n = ifrp->ifr_addr.sa_len + sizeof(ifrp->ifr_name);
381 if (n < sizeof(*ifrp))
382 ifnext = ifrp + 1;
383 else
384 ifnext = (struct ifreq *)((char *)ifrp + n);
385 if (ifrp->ifr_addr.sa_family != AF_INET)
386 continue;
387#else
388 ifnext = ifrp + 1;
389#endif
390 /*
391 * Need a template to preserve address info that is
392 * used below to locate the next entry. (Otherwise,
393 * SIOCGIFFLAGS stomps over it because the requests
394 * are returned in a union.)
395 */
396 strncpy(ifr.ifr_name, ifrp->ifr_name, sizeof(ifr.ifr_name));
397 if (ioctl(fd, SIOCGIFFLAGS, (char *)&ifr) < 0) {
398 if (errno == ENXIO)
399 continue;
400 bb_perror_msg_and_die("SIOCGIFFLAGS: %.*s",
401 (int)sizeof(ifr.ifr_name), ifr.ifr_name);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000402 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000403
404 /* Must be up */
405 if ((ifr.ifr_flags & IFF_UP) == 0)
406 continue;
407
408 safe_strncpy(al->device, ifr.ifr_name, sizeof(ifr.ifr_name) + 1);
409#ifdef sun
410 /* Ignore sun virtual interfaces */
411 if (strchr(al->device, ':') != NULL)
412 continue;
413#endif
414 if (ioctl(fd, SIOCGIFADDR, (char *)&ifr) < 0)
415 bb_perror_msg_and_die("SIOCGIFADDR: %s", al->device);
416
417 addr_sin = (struct sockaddr_in *)&ifr.ifr_addr;
418 al->addr = addr_sin->sin_addr.s_addr;
419 ++al;
420 ++nipaddr;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000421 }
Denis Vlasenko13858992006-10-08 12:49:22 +0000422 if (nipaddr == 0)
Denis Vlasenkoea620772006-10-14 02:23:43 +0000423 bb_error_msg_and_die ("can't find any network interfaces");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000424 (void)close(fd);
425
426 *ipaddrp = st_ifaddrlist;
427 return nipaddr;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000428}
429
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000430
431static void
432setsin(struct sockaddr_in *addr_sin, u_int32_t addr)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000433{
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000434 memset(addr_sin, 0, sizeof(*addr_sin));
435#ifdef HAVE_SOCKADDR_SA_LEN
436 addr_sin->sin_len = sizeof(*addr_sin);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000437#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000438 addr_sin->sin_family = AF_INET;
439 addr_sin->sin_addr.s_addr = addr;
440}
441
442
443/*
444 * Return the source address for the given destination address
445 */
446static void
447findsaddr(const struct sockaddr_in *to, struct sockaddr_in *from)
448{
449 int i, n;
450 FILE *f;
451 u_int32_t mask;
452 u_int32_t dest, tmask;
453 struct IFADDRLIST *al;
454 char buf[256], tdevice[256], device[256];
455
Rob Landleyd921b2e2006-08-03 15:41:12 +0000456 f = xfopen(route, "r");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000457
458 /* Find the appropriate interface */
459 n = 0;
460 mask = 0;
461 device[0] = '\0';
462 while (fgets(buf, sizeof(buf), f) != NULL) {
463 ++n;
464 if (n == 1 && strncmp(buf, "Iface", 5) == 0)
465 continue;
466 if ((i = sscanf(buf, "%255s %x %*s %*s %*s %*s %*s %x",
467 tdevice, &dest, &tmask)) != 3)
468 bb_error_msg_and_die ("junk in buffer");
469 if ((to->sin_addr.s_addr & tmask) == dest &&
470 (tmask > mask || mask == 0)) {
471 mask = tmask;
472 strcpy(device, tdevice);
473 }
474 }
475 fclose(f);
476
477 if (device[0] == '\0')
Denis Vlasenkoea620772006-10-14 02:23:43 +0000478 bb_error_msg_and_die ("can't find interface");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000479
480 /* Get the interface address list */
481 n = ifaddrlist(&al);
482
483 /* Find our appropriate source address */
484 for (i = n; i > 0; --i, ++al)
485 if (strcmp(device, al->device) == 0)
486 break;
487 if (i <= 0)
Denis Vlasenkoea620772006-10-14 02:23:43 +0000488 bb_error_msg_and_die("can't find interface %s", device);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000489
490 setsin(from, al->addr);
491}
492
493/*
494"Usage: %s [-dFIlnrvx] [-g gateway] [-i iface] [-f first_ttl]\n"
495"\t[-m max_ttl] [ -p port] [-q nqueries] [-s src_addr] [-t tos]\n"
496"\t[-w waittime] [-z pausemsecs] host [packetlen]"
497
498*/
499
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000500/*
501 * Subtract 2 timeval structs: out = out - in.
502 * Out is assumed to be >= in.
503 */
504static inline void
505tvsub(struct timeval *out, struct timeval *in)
506{
507
508 if ((out->tv_usec -= in->tv_usec) < 0) {
509 --out->tv_sec;
510 out->tv_usec += 1000000;
511 }
512 out->tv_sec -= in->tv_sec;
513}
514
515static int
516wait_for_reply(int sock, struct sockaddr_in *fromp, const struct timeval *tp)
517{
518 fd_set fds;
Rob Landleyc9c1a412006-07-12 19:17:55 +0000519 struct timeval now, tvwait;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000520 struct timezone tz;
521 int cc = 0;
522 socklen_t fromlen = sizeof(*fromp);
523
524 FD_ZERO(&fds);
525 FD_SET(sock, &fds);
526
Rob Landleyc9c1a412006-07-12 19:17:55 +0000527 tvwait.tv_sec = tp->tv_sec + waittime;
528 tvwait.tv_usec = tp->tv_usec;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000529 (void)gettimeofday(&now, &tz);
Rob Landleyc9c1a412006-07-12 19:17:55 +0000530 tvsub(&tvwait, &now);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000531
Rob Landleyc9c1a412006-07-12 19:17:55 +0000532 if (select(sock + 1, &fds, NULL, NULL, &tvwait) > 0)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000533 cc = recvfrom(sock, (char *)packet, sizeof(packet), 0,
534 (struct sockaddr *)fromp, &fromlen);
535
536 return cc;
537}
538
539/*
540 * Checksum routine for Internet Protocol family headers (C Version)
541 */
542static u_short
543in_cksum(u_short *addr, int len)
544{
545 int nleft = len;
546 u_short *w = addr;
547 u_short answer;
548 int sum = 0;
549
550 /*
551 * Our algorithm is simple, using a 32 bit accumulator (sum),
552 * we add sequential 16 bit words to it, and at the end, fold
553 * back all the carry bits from the top 16 bits into the lower
554 * 16 bits.
555 */
556 while (nleft > 1) {
557 sum += *w++;
558 nleft -= 2;
559 }
560
561 /* mop up an odd byte, if necessary */
562 if (nleft == 1)
Mike Frysinger294254c2006-02-19 22:59:12 +0000563 sum += *(unsigned char *)w;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000564
565 /*
566 * add back carry outs from top 16 bits to low 16 bits
567 */
568 sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
569 sum += (sum >> 16); /* add carry */
570 answer = ~sum; /* truncate to 16 bits */
571 return answer;
572}
573
574
575static void
576send_probe(int seq, int ttl, struct timeval *tp)
577{
578 int cc;
579 struct udpiphdr *ui, *oui;
580 struct ip tip;
581
582 outip->ip_ttl = ttl;
583 outip->ip_id = htons(ident + seq);
584
585 /*
586 * In most cases, the kernel will recalculate the ip checksum.
587 * But we must do it anyway so that the udp checksum comes out
588 * right.
589 */
590 if (doipcksum) {
591 outip->ip_sum =
592 in_cksum((u_short *)outip, sizeof(*outip) + optlen);
593 if (outip->ip_sum == 0)
594 outip->ip_sum = 0xffff;
595 }
596
597 /* Payload */
598 outdata->seq = seq;
599 outdata->ttl = ttl;
600 memcpy(&outdata->tv, tp, sizeof(outdata->tv));
601
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000602#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000603 if (useicmp)
604 outicmp->icmp_seq = htons(seq);
605 else
606#endif
607 outudp->dest = htons(port + seq);
608
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000609#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000610 if (useicmp) {
611 /* Always calculate checksum for icmp packets */
612 outicmp->icmp_cksum = 0;
613 outicmp->icmp_cksum = in_cksum((u_short *)outicmp,
614 packlen - (sizeof(*outip) + optlen));
615 if (outicmp->icmp_cksum == 0)
616 outicmp->icmp_cksum = 0xffff;
617 } else
618#endif
Denis Vlasenko92758142006-10-03 19:56:34 +0000619 if (doipcksum) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000620 /* Checksum (we must save and restore ip header) */
621 tip = *outip;
622 ui = (struct udpiphdr *)outip;
623 oui = (struct udpiphdr *)&tip;
624 /* Easier to zero and put back things that are ok */
625 memset((char *)ui, 0, sizeof(ui->ui_i));
626 ui->ui_src = oui->ui_src;
627 ui->ui_dst = oui->ui_dst;
628 ui->ui_pr = oui->ui_pr;
629 ui->ui_len = outudp->len;
630 outudp->check = 0;
631 outudp->check = in_cksum((u_short *)ui, packlen);
632 if (outudp->check == 0)
633 outudp->check = 0xffff;
634 *outip = tip;
635 }
636
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000637#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000638 /* XXX undocumented debugging hack */
639 if (verbose > 1) {
640 const u_short *sp;
641 int nshorts, i;
642
643 sp = (u_short *)outip;
644 nshorts = (u_int)packlen / sizeof(u_short);
645 i = 0;
646 printf("[ %d bytes", packlen);
647 while (--nshorts >= 0) {
648 if ((i++ % 8) == 0)
649 printf("\n\t");
650 printf(" %04x", ntohs(*sp));
651 sp++;
652 }
653 if (packlen & 1) {
654 if ((i % 8) == 0)
655 printf("\n\t");
Mike Frysinger294254c2006-02-19 22:59:12 +0000656 printf(" %02x", *(unsigned char *)sp);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000657 }
658 printf("]\n");
659 }
660#endif
661
662#if !defined(IP_HDRINCL) && defined(IP_TTL)
663 if (setsockopt(sndsock, IPPROTO_IP, IP_TTL,
664 (char *)&ttl, sizeof(ttl)) < 0) {
665 bb_perror_msg_and_die("setsockopt ttl %d", ttl);
666 }
667#endif
668
669 cc = sendto(sndsock, (char *)outip,
670 packlen, 0, (struct sockaddr *)&whereto, sizeof(whereto));
671 if (cc < 0 || cc != packlen) {
672 if (cc < 0)
673 bb_perror_msg_and_die("sendto");
674 printf("%s: wrote %s %d chars, ret=%d\n",
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000675 applet_name, hostname, packlen, cc);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000676 (void)fflush(stdout);
677 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000678}
679
680static inline double
681deltaT(struct timeval *t1p, struct timeval *t2p)
682{
683 double dt;
684
685 dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
686 (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000687 return dt;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000688}
689
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000690#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000691/*
692 * Convert an ICMP "type" field to a printable string.
693 */
694static inline const char *
Mike Frysinger294254c2006-02-19 22:59:12 +0000695pr_type(unsigned char t)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000696{
697 static const char * const ttab[] = {
698 "Echo Reply", "ICMP 1", "ICMP 2", "Dest Unreachable",
699 "Source Quench", "Redirect", "ICMP 6", "ICMP 7",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000700 "Echo", "Router Advert", "Router Solicit", "Time Exceeded",
Eric Andersen7467c8d2001-07-12 20:26:32 +0000701 "Param Problem", "Timestamp", "Timestamp Reply", "Info Request",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000702 "Info Reply", "Mask Request", "Mask Reply"
Eric Andersen7467c8d2001-07-12 20:26:32 +0000703 };
704
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000705 if (t > 18)
706 return "OUT-OF-RANGE";
Eric Andersen7467c8d2001-07-12 20:26:32 +0000707
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000708 return ttab[t];
Eric Andersen7467c8d2001-07-12 20:26:32 +0000709}
710#endif
711
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000712static int
Mike Frysinger294254c2006-02-19 22:59:12 +0000713packet_ok(unsigned char *buf, int cc, struct sockaddr_in *from, int seq)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000714{
715 struct icmp *icp;
Mike Frysinger294254c2006-02-19 22:59:12 +0000716 unsigned char type, code;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000717 int hlen;
718 struct ip *ip;
719
720 ip = (struct ip *) buf;
721 hlen = ip->ip_hl << 2;
722 if (cc < hlen + ICMP_MINLEN) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000723#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000724 if (verbose)
725 printf("packet too short (%d bytes) from %s\n", cc,
726 inet_ntoa(from->sin_addr));
727#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000728 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000729 }
730 cc -= hlen;
731 icp = (struct icmp *)(buf + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000732 type = icp->icmp_type;
733 code = icp->icmp_code;
734 /* Path MTU Discovery (RFC1191) */
735 if (code != ICMP_UNREACH_NEEDFRAG)
736 pmtu = 0;
737 else {
738 pmtu = ntohs(icp->icmp_nextmtu);
739 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000740 if ((type == ICMP_TIMXCEED && code == ICMP_TIMXCEED_INTRANS) ||
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000741 type == ICMP_UNREACH || type == ICMP_ECHOREPLY) {
Eric Andersen7467c8d2001-07-12 20:26:32 +0000742 struct ip *hip;
743 struct udphdr *up;
744
745 hip = &icp->icmp_ip;
746 hlen = hip->ip_hl << 2;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000747#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000748 if (useicmp) {
749 struct icmp *hicmp;
750
751 /* XXX */
752 if (type == ICMP_ECHOREPLY &&
753 icp->icmp_id == htons(ident) &&
754 icp->icmp_seq == htons(seq))
755 return -2;
756
Mike Frysinger294254c2006-02-19 22:59:12 +0000757 hicmp = (struct icmp *)((unsigned char *)hip + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000758 /* XXX 8 is a magic number */
759 if (hlen + 8 <= cc &&
760 hip->ip_p == IPPROTO_ICMP &&
761 hicmp->icmp_id == htons(ident) &&
762 hicmp->icmp_seq == htons(seq))
763 return (type == ICMP_TIMXCEED ? -1 : code + 1);
764 } else
765#endif
Denis Vlasenko92758142006-10-03 19:56:34 +0000766 {
Mike Frysinger294254c2006-02-19 22:59:12 +0000767 up = (struct udphdr *)((unsigned char *)hip + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000768 /* XXX 8 is a magic number */
769 if (hlen + 12 <= cc &&
770 hip->ip_p == IPPROTO_UDP &&
771 up->source == htons(ident) &&
772 up->dest == htons(port + seq))
773 return (type == ICMP_TIMXCEED ? -1 : code + 1);
774 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000775 }
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000776#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000777 if (verbose) {
778 int i;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000779 u_int32_t *lp = (u_int32_t *)&icp->icmp_ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000780
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000781 printf("\n%d bytes from %s to "
782 "%s: icmp type %d (%s) code %d\n",
783 cc, inet_ntoa(from->sin_addr),
784 inet_ntoa(ip->ip_dst), type, pr_type(type), icp->icmp_code);
785 for (i = 4; i < cc ; i += sizeof(*lp))
786 printf("%2d: x%8.8x\n", i, *lp++);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000787 }
788#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000789 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000790}
791
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000792
793/*
794 * Construct an Internet address representation.
795 * If the nflag has been supplied, give
796 * numeric value, otherwise try for symbolic name.
797 */
798static inline void
799inetname(struct sockaddr_in *from)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000800{
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000801 const char *n = NULL;
802 const char *ina;
803 char name[257];
Eric Andersen7467c8d2001-07-12 20:26:32 +0000804
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000805 if (!nflag && from->sin_addr.s_addr != INADDR_ANY) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000806 if (INET_rresolve(name, sizeof(name), from, 0x4000, 0xffffffff) >= 0)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000807 n = name;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000808 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000809 ina = inet_ntoa(from->sin_addr);
810 if (nflag)
811 printf(" %s", ina);
812 else
813 printf(" %s (%s)", (n ? n : ina), ina);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000814}
815
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000816static inline void
Mike Frysinger294254c2006-02-19 22:59:12 +0000817print(unsigned char *buf, int cc, struct sockaddr_in *from)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000818{
819 struct ip *ip;
820 int hlen;
821
822 ip = (struct ip *) buf;
823 hlen = ip->ip_hl << 2;
824 cc -= hlen;
825
826 inetname(from);
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000827#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000828 if (verbose)
829 printf(" %d bytes to %s", cc, inet_ntoa (ip->ip_dst));
830#endif
831}
832
833
834static struct hostinfo *
835gethostinfo(const char *host)
836{
837 int n;
838 struct hostent *hp;
839 struct hostinfo *hi;
840 char **p;
841 u_int32_t addr, *ap;
842
Rob Landley081e3842006-08-03 20:07:35 +0000843 hi = xzalloc(sizeof(*hi));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000844 addr = inet_addr(host);
845 if ((int32_t)addr != -1) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000846 hi->name = xstrdup(host);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000847 hi->n = 1;
Rob Landley081e3842006-08-03 20:07:35 +0000848 hi->addrs = xzalloc(sizeof(hi->addrs[0]));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000849 hi->addrs[0] = addr;
850 return hi;
851 }
852
853 hp = xgethostbyname(host);
854 if (hp->h_addrtype != AF_INET || hp->h_length != 4)
855 bb_perror_msg_and_die("bad host %s", host);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000856 hi->name = xstrdup(hp->h_name);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000857 for (n = 0, p = hp->h_addr_list; *p != NULL; ++n, ++p)
858 continue;
859 hi->n = n;
Rob Landley081e3842006-08-03 20:07:35 +0000860 hi->addrs = xzalloc(n * sizeof(hi->addrs[0]));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000861 for (ap = hi->addrs, p = hp->h_addr_list; *p != NULL; ++ap, ++p)
862 memcpy(ap, *p, sizeof(*ap));
863 return hi;
864}
865
866static void
867freehostinfo(struct hostinfo *hi)
868{
Rob Landleye7c43b62006-03-01 16:39:45 +0000869 free(hi->name);
870 hi->name = NULL;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000871 free((char *)hi->addrs);
872 free((char *)hi);
873}
874
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000875#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000876static void
877getaddr(u_int32_t *ap, const char *host)
878{
879 struct hostinfo *hi;
880
881 hi = gethostinfo(host);
882 *ap = hi->addrs[0];
883 freehostinfo(hi);
884}
885#endif
886
Eric Andersen7467c8d2001-07-12 20:26:32 +0000887
Eric Andersen5c58d282001-07-10 16:29:00 +0000888int
Aaron Lehmann7dd2cec2002-08-23 07:52:58 +0000889traceroute_main(int argc, char *argv[])
Eric Andersen5c58d282001-07-10 16:29:00 +0000890{
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000891 int code, n;
Mike Frysinger294254c2006-02-19 22:59:12 +0000892 unsigned char *outp;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000893 u_int32_t *ap;
894 struct sockaddr_in *from = (struct sockaddr_in *)&wherefrom;
895 struct sockaddr_in *to = (struct sockaddr_in *)&whereto;
896 struct hostinfo *hi;
897 int on = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000898 int ttl, probe, i;
899 int seq = 0;
900 int tos = 0;
901 char *tos_str = NULL;
902 char *source = NULL;
903 unsigned long op;
Eric Andersen5c58d282001-07-10 16:29:00 +0000904
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000905#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000906 int lsrr = 0;
907#endif
908 u_short off = 0;
909 struct IFADDRLIST *al;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000910 char *device = NULL;
911 int max_ttl = 30;
912 char *max_ttl_str = NULL;
913 char *port_str = NULL;
Eric Andersen5c58d282001-07-10 16:29:00 +0000914 int nprobes = 3;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000915 char *nprobes_str = NULL;
916 char *waittime_str = NULL;
917 u_int pausemsecs = 0;
918 char *pausemsecs_str = NULL;
919 int first_ttl = 1;
920 char *first_ttl_str = NULL;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000921#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000922 llist_t *sourse_route_list = NULL;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000923#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000924
925 opterr = 0;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000926#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000927 opt_complementary = "x-x:g::";
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000928#else
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000929 opt_complementary = "x-x";
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000930#endif
931
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000932 op = getopt32(argc, argv, "FIlnrdvxt:i:m:p:q:s:w:z:f:"
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000933#define USAGE_OP_DONT_FRAGMNT (1<<0) /* F */
934#define USAGE_OP_USE_ICMP (1<<1) /* I */
935#define USAGE_OP_TTL_FLAG (1<<2) /* l */
936#define USAGE_OP_ADDR_NUM (1<<3) /* n */
937#define USAGE_OP_BYPASS_ROUTE (1<<4) /* r */
938#define USAGE_OP_DEBUG (1<<5) /* d */
939#define USAGE_OP_VERBOSE (1<<6) /* v */
940#define USAGE_OP_IP_CHKSUM (1<<7) /* x */
941
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000942#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000943 "g:"
944#endif
945 , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str,
946 &source, &waittime_str, &pausemsecs_str, &first_ttl_str
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000947#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000948 , &sourse_route_list
949#endif
950 );
951
Denis Vlasenko13858992006-10-08 12:49:22 +0000952 if (op & USAGE_OP_DONT_FRAGMNT)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000953 off = IP_DF;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000954#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000955 useicmp = op & USAGE_OP_USE_ICMP;
956#endif
957 nflag = op & USAGE_OP_ADDR_NUM;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000958#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000959 verbose = op & USAGE_OP_VERBOSE;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000960#endif
Denis Vlasenko13858992006-10-08 12:49:22 +0000961 if (op & USAGE_OP_IP_CHKSUM) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000962 doipcksum = 0;
Denis Vlasenko13858992006-10-08 12:49:22 +0000963 bb_error_msg("warning: ip checksums disabled");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000964 }
965 if (tos_str)
Denis Vlasenko13858992006-10-08 12:49:22 +0000966 tos = xatoul_range(tos_str, 0, 255);
967 if (max_ttl_str)
968 max_ttl = xatoul_range(max_ttl_str, 1, 255);
969 if (port_str)
970 port = xatou16(port_str);
971 if (nprobes_str)
972 nprobes = xatoul_range(nprobes_str, 1, INT_MAX);
973 if (source) {
Denis Vlasenko92758142006-10-03 19:56:34 +0000974 /*
975 * set the ip source address of the outbound
976 * probe (e.g., on a multi-homed host).
977 */
978 if (getuid()) bb_error_msg_and_die("-s %s: permission denied", source);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000979 }
Denis Vlasenko13858992006-10-08 12:49:22 +0000980 if (waittime_str)
981 waittime = xatoul_range(waittime_str, 2, 24 * 60 * 60);
982 if (pausemsecs_str)
983 pausemsecs = xatoul_range(pausemsecs_str, 0, 60 * 60 * 1000);
984 if (first_ttl_str)
985 first_ttl = xatoul_range(first_ttl_str, 1, 255);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000986
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000987#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko13858992006-10-08 12:49:22 +0000988 if (sourse_route_list) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000989 llist_t *l_sr;
990
991 for(l_sr = sourse_route_list; l_sr; ) {
992 if (lsrr >= NGATEWAYS)
Denis Vlasenko92758142006-10-03 19:56:34 +0000993 bb_error_msg_and_die("no more than %d gateways", NGATEWAYS);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000994 getaddr(gwlist + lsrr, l_sr->data);
995 ++lsrr;
996 l_sr = l_sr->link;
997 free(sourse_route_list);
998 sourse_route_list = l_sr;
Eric Andersen5c58d282001-07-10 16:29:00 +0000999 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001000 optlen = (lsrr + 1) * sizeof(gwlist[0]);
1001 }
1002#endif
Eric Andersen5c58d282001-07-10 16:29:00 +00001003
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001004 if (first_ttl > max_ttl) {
1005 bb_error_msg_and_die(
1006 "first ttl (%d) may not be greater than max ttl (%d)",
1007 first_ttl, max_ttl);
1008 }
1009
1010 minpacket = sizeof(*outip) + sizeof(*outdata) + optlen;
1011
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001012#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001013 if (useicmp)
1014 minpacket += 8; /* XXX magic number */
1015 else
1016#endif
1017 minpacket += sizeof(*outudp);
1018 packlen = minpacket; /* minimum sized packet */
1019
1020 /* Process destination and optional packet size */
1021 switch (argc - optind) {
1022
1023 case 2:
Denis Vlasenko13858992006-10-08 12:49:22 +00001024 packlen = xatoul_range(argv[optind + 1], minpacket, maxpacket);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001025 /* Fall through */
1026
1027 case 1:
1028 hostname = argv[optind];
1029 hi = gethostinfo(hostname);
1030 setsin(to, hi->addrs[0]);
1031 if (hi->n > 1)
Denis Vlasenko13858992006-10-08 12:49:22 +00001032 bb_error_msg("warning: %s has multiple addresses; using %s",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001033 hostname, inet_ntoa(to->sin_addr));
1034 hostname = hi->name;
1035 hi->name = NULL;
1036 freehostinfo(hi);
1037 break;
1038
1039 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +00001040 bb_show_usage();
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001041 }
Eric Andersen5c58d282001-07-10 16:29:00 +00001042
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001043 /* Insure the socket fds won't be 0, 1 or 2 */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001044 do n = xopen(bb_dev_null, O_RDONLY); while (n < 2);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001045 if (n > 2)
1046 close(n);
Eric Andersen5c58d282001-07-10 16:29:00 +00001047
Denis Vlasenko6edadde2006-10-03 18:19:02 +00001048 s = xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001049
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001050#if TRACEROUTE_SO_DEBUG
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001051 if (op & USAGE_OP_DEBUG)
1052 (void)setsockopt(s, SOL_SOCKET, SO_DEBUG, (char *)&on,
1053 sizeof(on));
Eric Andersen7467c8d2001-07-12 20:26:32 +00001054#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001055 if (op & USAGE_OP_BYPASS_ROUTE)
1056 (void)setsockopt(s, SOL_SOCKET, SO_DONTROUTE, (char *)&on,
1057 sizeof(on));
1058
Rob Landleyd921b2e2006-08-03 15:41:12 +00001059 sndsock = xsocket(AF_INET, SOCK_RAW, IPPROTO_RAW);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001060
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001061#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001062#if defined(IP_OPTIONS)
1063 if (lsrr > 0) {
Mike Frysinger294254c2006-02-19 22:59:12 +00001064 unsigned char optlist[MAX_IPOPTLEN];
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001065
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001066 /* final hop */
1067 gwlist[lsrr] = to->sin_addr.s_addr;
1068 ++lsrr;
1069
1070 /* force 4 byte alignment */
1071 optlist[0] = IPOPT_NOP;
1072 /* loose source route option */
1073 optlist[1] = IPOPT_LSRR;
1074 i = lsrr * sizeof(gwlist[0]);
1075 optlist[2] = i + 3;
1076 /* Pointer to LSRR addresses */
1077 optlist[3] = IPOPT_MINOFF;
1078 memcpy(optlist + 4, gwlist, i);
1079
Denis Vlasenko6edadde2006-10-03 18:19:02 +00001080 if ((setsockopt(sndsock, IPPROTO_IP, IP_OPTIONS,
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001081 (char *)optlist, i + sizeof(gwlist[0]))) < 0) {
1082 bb_perror_msg_and_die("IP_OPTIONS");
Denis Vlasenko6edadde2006-10-03 18:19:02 +00001083 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001084 }
1085#endif /* IP_OPTIONS */
1086#endif /* CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE */
1087
Eric Andersen5c58d282001-07-10 16:29:00 +00001088#ifdef SO_SNDBUF
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001089 if (setsockopt(sndsock, SOL_SOCKET, SO_SNDBUF, (char *)&packlen,
1090 sizeof(packlen)) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001091 bb_perror_msg_and_die("SO_SNDBUF");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001092 }
Eric Andersenad79c0b2002-06-06 12:24:51 +00001093#endif
Eric Andersen5c58d282001-07-10 16:29:00 +00001094#ifdef IP_HDRINCL
1095 if (setsockopt(sndsock, IPPROTO_IP, IP_HDRINCL, (char *)&on,
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001096 sizeof(on)) < 0 && errno != ENOPROTOOPT) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001097 bb_perror_msg_and_die("IP_HDRINCL");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001098 }
1099#else
1100#ifdef IP_TOS
1101 if (tos_str && setsockopt(sndsock, IPPROTO_IP, IP_TOS,
1102 (char *)&tos, sizeof(tos)) < 0) {
1103 bb_perror_msg_and_die("setsockopt tos %d", tos);
1104 }
1105#endif
Eric Andersenad79c0b2002-06-06 12:24:51 +00001106#endif
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001107#if TRACEROUTE_SO_DEBUG
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001108 if (op & USAGE_OP_DEBUG)
1109 (void)setsockopt(sndsock, SOL_SOCKET, SO_DEBUG, (char *)&on,
1110 sizeof(on));
Eric Andersen7467c8d2001-07-12 20:26:32 +00001111#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001112 if (op & USAGE_OP_BYPASS_ROUTE)
1113 (void)setsockopt(sndsock, SOL_SOCKET, SO_DONTROUTE, (char *)&on,
1114 sizeof(on));
Eric Andersen5c58d282001-07-10 16:29:00 +00001115
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001116 /* Revert to non-privileged user after opening sockets */
Rob Landleyafb94ec2006-07-16 08:06:34 +00001117 xsetgid(getgid());
1118 xsetuid(getuid());
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001119
Rob Landley081e3842006-08-03 20:07:35 +00001120 outip = (struct ip *)xzalloc(packlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001121
1122 outip->ip_v = IPVERSION;
1123 if (tos_str)
1124 outip->ip_tos = tos;
1125 outip->ip_len = htons(packlen);
1126 outip->ip_off = htons(off);
Mike Frysinger294254c2006-02-19 22:59:12 +00001127 outp = (unsigned char *)(outip + 1);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001128 outip->ip_dst = to->sin_addr;
1129
Mike Frysinger294254c2006-02-19 22:59:12 +00001130 outip->ip_hl = (outp - (unsigned char *)outip) >> 2;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001131 ident = (getpid() & 0xffff) | 0x8000;
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001132#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001133 if (useicmp) {
1134 outip->ip_p = IPPROTO_ICMP;
1135
1136 outicmp = (struct icmp *)outp;
1137 outicmp->icmp_type = ICMP_ECHO;
1138 outicmp->icmp_id = htons(ident);
1139
1140 outdata = (struct outdata *)(outp + 8); /* XXX magic number */
1141 } else
Eric Andersenad79c0b2002-06-06 12:24:51 +00001142#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001143 {
1144 outip->ip_p = IPPROTO_UDP;
1145
1146 outudp = (struct udphdr *)outp;
1147 outudp->source = htons(ident);
1148 outudp->len =
1149 htons((u_short)(packlen - (sizeof(*outip) + optlen)));
1150 outdata = (struct outdata *)(outudp + 1);
Eric Andersen5c58d282001-07-10 16:29:00 +00001151 }
1152
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001153 /* Get the interface address list */
1154 n = ifaddrlist(&al);
1155
1156 /* Look for a specific device */
1157 if (device != NULL) {
1158 for (i = n; i > 0; --i, ++al)
1159 if (strcmp(device, al->device) == 0)
1160 break;
1161 if (i <= 0) {
Denis Vlasenkoea620772006-10-14 02:23:43 +00001162 bb_error_msg_and_die("can't find interface %s", device);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001163 }
1164 }
1165
1166 /* Determine our source address */
1167 if (source == NULL) {
1168 /*
1169 * If a device was specified, use the interface address.
1170 * Otherwise, try to determine our source address.
1171 */
1172 if (device != NULL)
1173 setsin(from, al->addr);
1174 findsaddr(to, from);
1175 } else {
1176 hi = gethostinfo(source);
1177 source = hi->name;
1178 hi->name = NULL;
1179 /*
1180 * If the device was specified make sure it
1181 * corresponds to the source address specified.
1182 * Otherwise, use the first address (and warn if
1183 * there are more than one).
1184 */
1185 if (device != NULL) {
1186 for (i = hi->n, ap = hi->addrs; i > 0; --i, ++ap)
1187 if (*ap == al->addr)
1188 break;
1189 if (i <= 0) {
1190 bb_error_msg_and_die(
1191 "%s is not on interface %s",
1192 source, device);
1193 }
1194 setsin(from, *ap);
1195 } else {
1196 setsin(from, hi->addrs[0]);
1197 if (hi->n > 1)
1198 bb_error_msg(
1199 "Warning: %s has multiple addresses; using %s",
1200 source, inet_ntoa(from->sin_addr));
1201 }
1202 freehostinfo(hi);
1203 }
1204
1205 outip->ip_src = from->sin_addr;
1206#ifndef IP_HDRINCL
Rob Landleyd921b2e2006-08-03 15:41:12 +00001207 xbind(sndsock, (struct sockaddr *)from, sizeof(*from));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001208#endif
1209
1210 fprintf(stderr, "traceroute to %s (%s)", hostname, inet_ntoa(to->sin_addr));
Eric Andersen5c58d282001-07-10 16:29:00 +00001211 if (source)
1212 fprintf(stderr, " from %s", source);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001213 fprintf(stderr, ", %d hops max, %d byte packets\n", max_ttl, packlen);
1214 (void)fflush(stderr);
Eric Andersen5c58d282001-07-10 16:29:00 +00001215
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001216 for (ttl = first_ttl; ttl <= max_ttl; ++ttl) {
1217 u_int32_t lastaddr = 0;
1218 int gotlastaddr = 0;
Eric Andersen5c58d282001-07-10 16:29:00 +00001219 int got_there = 0;
1220 int unreachable = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001221 int sentfirst = 0;
Eric Andersen5c58d282001-07-10 16:29:00 +00001222
1223 printf("%2d ", ttl);
1224 for (probe = 0; probe < nprobes; ++probe) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001225 int cc;
Eric Andersen5c58d282001-07-10 16:29:00 +00001226 struct timeval t1, t2;
1227 struct timezone tz;
1228 struct ip *ip;
1229
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001230 if (sentfirst && pausemsecs > 0)
1231 usleep(pausemsecs * 1000);
1232 (void)gettimeofday(&t1, &tz);
1233 send_probe(++seq, ttl, &t1);
1234 ++sentfirst;
1235 while ((cc = wait_for_reply(s, from, &t1)) != 0) {
1236 (void)gettimeofday(&t2, &tz);
1237 i = packet_ok(packet, cc, from, seq);
1238 /* Skip short packet */
1239 if (i == 0)
1240 continue;
1241 if (!gotlastaddr ||
1242 from->sin_addr.s_addr != lastaddr) {
1243 print(packet, cc, from);
1244 lastaddr = from->sin_addr.s_addr;
1245 ++gotlastaddr;
1246 }
1247 printf(" %.3f ms", deltaT(&t1, &t2));
1248 ip = (struct ip *)packet;
1249 if (op & USAGE_OP_TTL_FLAG)
1250 printf(" (%d)", ip->ip_ttl);
1251 if (i == -2) {
1252 if (ip->ip_ttl <= 1)
1253 printf(" !");
1254 ++got_there;
Eric Andersen5c58d282001-07-10 16:29:00 +00001255 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001256 }
1257 /* time exceeded in transit */
1258 if (i == -1)
1259 break;
1260 code = i - 1;
1261 switch (code) {
1262
1263 case ICMP_UNREACH_PORT:
1264 if (ip->ip_ttl <= 1)
1265 printf(" !");
1266 ++got_there;
1267 break;
1268
1269 case ICMP_UNREACH_NET:
1270 ++unreachable;
1271 printf(" !N");
1272 break;
1273
1274 case ICMP_UNREACH_HOST:
1275 ++unreachable;
1276 printf(" !H");
1277 break;
1278
1279 case ICMP_UNREACH_PROTOCOL:
1280 ++got_there;
1281 printf(" !P");
1282 break;
1283
1284 case ICMP_UNREACH_NEEDFRAG:
1285 ++unreachable;
1286 printf(" !F-%d", pmtu);
1287 break;
1288
1289 case ICMP_UNREACH_SRCFAIL:
1290 ++unreachable;
1291 printf(" !S");
1292 break;
1293
1294 case ICMP_UNREACH_FILTER_PROHIB:
1295 case ICMP_UNREACH_NET_PROHIB: /* misuse */
1296 ++unreachable;
1297 printf(" !A");
1298 break;
1299
1300 case ICMP_UNREACH_HOST_PROHIB:
1301 ++unreachable;
1302 printf(" !C");
1303 break;
1304
1305 case ICMP_UNREACH_HOST_PRECEDENCE:
1306 ++unreachable;
1307 printf(" !V");
1308 break;
1309
1310 case ICMP_UNREACH_PRECEDENCE_CUTOFF:
1311 ++unreachable;
1312 printf(" !C");
1313 break;
1314
1315 case ICMP_UNREACH_NET_UNKNOWN:
1316 case ICMP_UNREACH_HOST_UNKNOWN:
1317 ++unreachable;
1318 printf(" !U");
1319 break;
1320
1321 case ICMP_UNREACH_ISOLATED:
1322 ++unreachable;
1323 printf(" !I");
1324 break;
1325
1326 case ICMP_UNREACH_TOSNET:
1327 case ICMP_UNREACH_TOSHOST:
1328 ++unreachable;
1329 printf(" !T");
1330 break;
1331
1332 default:
1333 ++unreachable;
1334 printf(" !<%d>", code);
1335 break;
1336 }
1337 break;
Eric Andersen5c58d282001-07-10 16:29:00 +00001338 }
1339 if (cc == 0)
1340 printf(" *");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001341 (void)fflush(stdout);
Eric Andersen5c58d282001-07-10 16:29:00 +00001342 }
1343 putchar('\n');
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001344 if (got_there ||
1345 (unreachable > 0 && unreachable >= nprobes - 1))
1346 break;
Eric Andersen5c58d282001-07-10 16:29:00 +00001347 }
Eric Andersen5c58d282001-07-10 16:29:00 +00001348 return 0;
1349}