blob: 958299aaa3943d2f4fbd6949435a4d73f6af80b9 [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
25/*
26 * traceroute host - trace the route ip packets follow going to "host".
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +000027 *
28 * Attempt to trace the route an ip packet would follow to some
29 * internet host. We find out intermediate hops by launching probe
30 * packets with a small ttl (time to live) then listening for an
31 * icmp "time exceeded" reply from a gateway. We start our probes
32 * with a ttl of one and increase by one until we get an icmp "port
33 * unreachable" (which means we got to "host") or hit a max (which
34 * defaults to 30 hops & can be changed with the -m flag). Three
35 * probes (change with -q flag) are sent at each ttl setting and a
36 * line is printed showing the ttl, address of the gateway and
37 * round trip time of each probe. If the probe answers come from
38 * different gateways, the address of each responding system will
39 * be printed. If there is no response within a 5 sec. timeout
40 * interval (changed with the -w flag), a "*" is printed for that
41 * probe.
42 *
43 * Probe packets are UDP format. We don't want the destination
44 * host to process them so the destination port is set to an
45 * unlikely value (if some clod on the destination is using that
46 * value, it can be changed with the -p flag).
47 *
48 * A sample use might be:
49 *
50 * [yak 71]% traceroute nis.nsf.net.
51 * traceroute to nis.nsf.net (35.1.1.48), 30 hops max, 56 byte packet
52 * 1 helios.ee.lbl.gov (128.3.112.1) 19 ms 19 ms 0 ms
53 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
54 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
55 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 39 ms
56 * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 39 ms 39 ms 39 ms
57 * 6 128.32.197.4 (128.32.197.4) 40 ms 59 ms 59 ms
58 * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 59 ms
59 * 8 129.140.70.13 (129.140.70.13) 99 ms 99 ms 80 ms
60 * 9 129.140.71.6 (129.140.71.6) 139 ms 239 ms 319 ms
61 * 10 129.140.81.7 (129.140.81.7) 220 ms 199 ms 199 ms
62 * 11 nic.merit.edu (35.1.1.48) 239 ms 239 ms 239 ms
63 *
64 * Note that lines 2 & 3 are the same. This is due to a buggy
65 * kernel on the 2nd hop system -- lbl-csam.arpa -- that forwards
66 * packets with a zero ttl.
67 *
68 * A more interesting example is:
69 *
70 * [yak 72]% traceroute allspice.lcs.mit.edu.
71 * traceroute to allspice.lcs.mit.edu (18.26.0.115), 30 hops max
72 * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
73 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 19 ms 19 ms
74 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 19 ms
75 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 19 ms 39 ms 39 ms
76 * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 20 ms 39 ms 39 ms
77 * 6 128.32.197.4 (128.32.197.4) 59 ms 119 ms 39 ms
78 * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 39 ms
79 * 8 129.140.70.13 (129.140.70.13) 80 ms 79 ms 99 ms
80 * 9 129.140.71.6 (129.140.71.6) 139 ms 139 ms 159 ms
81 * 10 129.140.81.7 (129.140.81.7) 199 ms 180 ms 300 ms
82 * 11 129.140.72.17 (129.140.72.17) 300 ms 239 ms 239 ms
83 * 12 * * *
84 * 13 128.121.54.72 (128.121.54.72) 259 ms 499 ms 279 ms
85 * 14 * * *
86 * 15 * * *
87 * 16 * * *
88 * 17 * * *
89 * 18 ALLSPICE.LCS.MIT.EDU (18.26.0.115) 339 ms 279 ms 279 ms
90 *
91 * (I start to see why I'm having so much trouble with mail to
92 * MIT.) Note that the gateways 12, 14, 15, 16 & 17 hops away
93 * either don't send ICMP "time exceeded" messages or send them
94 * with a ttl too small to reach us. 14 - 17 are running the
95 * MIT C Gateway code that doesn't send "time exceeded"s. God
96 * only knows what's going on with 12.
97 *
98 * The silent gateway 12 in the above may be the result of a bug in
99 * the 4.[23]BSD network code (and its derivatives): 4.x (x <= 3)
100 * sends an unreachable message using whatever ttl remains in the
101 * original datagram. Since, for gateways, the remaining ttl is
102 * zero, the icmp "time exceeded" is guaranteed to not make it back
103 * to us. The behavior of this bug is slightly more interesting
104 * when it appears on the destination system:
105 *
106 * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
107 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 39 ms
108 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 39 ms 19 ms
109 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 19 ms
110 * 5 ccn-nerif35.Berkeley.EDU (128.32.168.35) 39 ms 39 ms 39 ms
111 * 6 csgw.Berkeley.EDU (128.32.133.254) 39 ms 59 ms 39 ms
112 * 7 * * *
113 * 8 * * *
114 * 9 * * *
115 * 10 * * *
116 * 11 * * *
117 * 12 * * *
118 * 13 rip.Berkeley.EDU (128.32.131.22) 59 ms ! 39 ms ! 39 ms !
119 *
120 * Notice that there are 12 "gateways" (13 is the final
121 * destination) and exactly the last half of them are "missing".
122 * What's really happening is that rip (a Sun-3 running Sun OS3.5)
123 * is using the ttl from our arriving datagram as the ttl in its
124 * icmp reply. So, the reply will time out on the return path
125 * (with no notice sent to anyone since icmp's aren't sent for
126 * icmp's) until we probe with a ttl that's at least twice the path
127 * length. I.e., rip is really only 7 hops away. A reply that
128 * returns with a ttl of 1 is a clue this problem exists.
129 * Traceroute prints a "!" after the time if the ttl is <= 1.
130 * Since vendors ship a lot of obsolete (DEC's Ultrix, Sun 3.x) or
131 * non-standard (HPUX) software, expect to see this problem
132 * frequently and/or take care picking the target host of your
133 * probes.
134 *
135 * Other possible annotations after the time are !H, !N, !P (got a host,
136 * network or protocol unreachable, respectively), !S or !F (source
137 * route failed or fragmentation needed -- neither of these should
138 * ever occur and the associated gateway is busted if you see one). If
139 * almost all the probes result in some kind of unreachable, traceroute
140 * will give up and exit.
141 *
Eric Andersen5c58d282001-07-10 16:29:00 +0000142 * Notes
143 * -----
144 * This program must be run by root or be setuid. (I suggest that
145 * you *don't* make it setuid -- casual use could result in a lot
146 * of unnecessary traffic on our poor, congested nets.)
147 *
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000148 * This program requires a kernel mod that does not appear in any
149 * system available from Berkeley: A raw ip socket using proto
150 * IPPROTO_RAW must interpret the data sent as an ip datagram (as
151 * opposed to data to be wrapped in a ip datagram). See the README
152 * file that came with the source to this program for a description
153 * of the mods I made to /sys/netinet/raw_ip.c. Your mileage may
154 * vary. But, again, ANY 4.x (x < 4) BSD KERNEL WILL HAVE TO BE
155 * MODIFIED TO RUN THIS PROGRAM.
156 *
157 * The udp port usage may appear bizarre (well, ok, it is bizarre).
158 * The problem is that an icmp message only contains 8 bytes of
159 * data from the original datagram. 8 bytes is the size of a udp
160 * header so, if we want to associate replies with the original
161 * datagram, the necessary information must be encoded into the
162 * udp header (the ip id could be used but there's no way to
163 * interlock with the kernel's assignment of ip id's and, anyway,
164 * it would have taken a lot more kernel hacking to allow this
165 * code to set the ip id). So, to allow two or more users to
166 * use traceroute simultaneously, we use this task's pid as the
167 * source port (the high bit is set to move the port number out
168 * of the "likely" range). To keep track of which probe is being
169 * replied to (so times and/or hop counts don't get confused by a
170 * reply that was delayed in transit), we increment the destination
171 * port number before each probe.
172 *
173 * Don't use this as a coding example. I was trying to find a
174 * routing problem and this code sort-of popped out after 48 hours
175 * without sleep. I was amazed it ever compiled, much less ran.
176 *
Eric Andersen5c58d282001-07-10 16:29:00 +0000177 * I stole the idea for this program from Steve Deering. Since
178 * the first release, I've learned that had I attended the right
179 * IETF working group meetings, I also could have stolen it from Guy
180 * Almes or Matt Mathis. I don't know (or care) who came up with
181 * the idea first. I envy the originators' perspicacity and I'm
182 * glad they didn't keep the idea a secret.
183 *
184 * Tim Seaver, Ken Adelman and C. Philip Wood provided bug fixes and/or
185 * enhancements to the original distribution.
186 *
187 * I've hacked up a round-trip-route version of this that works by
188 * sending a loose-source-routed udp datagram through the destination
189 * back to yourself. Unfortunately, SO many gateways botch source
190 * routing, the thing is almost worthless. Maybe one day...
191 *
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000192 * -- Van Jacobson (van@ee.lbl.gov)
Eric Andersen5c58d282001-07-10 16:29:00 +0000193 * Tue Dec 20 03:50:13 PST 1988
194 */
195
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000196#define TRACEROUTE_SO_DEBUG 0
197
198/* TODO: undefs were uncommented - ??! we have config system for that! */
199/* probably ok to remove altogether */
200//#undef CONFIG_FEATURE_TRACEROUTE_VERBOSE
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000201//#define CONFIG_FEATURE_TRACEROUTE_VERBOSE
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000202//#undef CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000203//#define CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000204//#undef CONFIG_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000205//#define CONFIG_FEATURE_TRACEROUTE_USE_ICMP
Eric Andersen7467c8d2001-07-12 20:26:32 +0000206
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000207
208#include <net/if.h>
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000209#include <arpa/inet.h>
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000210#include <netinet/in.h>
Eric Andersen5c58d282001-07-10 16:29:00 +0000211#include <netinet/udp.h>
212#include <netinet/ip.h>
213#include <netinet/ip_icmp.h>
214
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000215#include "libbb.h"
Denis Vlasenko703e2022007-01-22 14:12:08 +0000216#include "inet_common.h"
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000217
Eric Andersen5c58d282001-07-10 16:29:00 +0000218
219/*
220 * Definitions for internet protocol version 4.
221 * Per RFC 791, September 1981.
222 */
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000223#define IPVERSION 4
224
225#ifndef IPPROTO_ICMP
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000226# define IPPROTO_ICMP 1
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000227#endif
228#ifndef IPPROTO_IP
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000229# define IPPROTO_IP 0
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000230#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000231
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000232/*
233 * Overlay for ip header used by other protocols (tcp, udp).
234 */
235struct ipovly {
Mike Frysinger294254c2006-02-19 22:59:12 +0000236 unsigned char ih_x1[9]; /* (unused) */
237 unsigned char ih_pr; /* protocol */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000238 short ih_len; /* protocol length */
239 struct in_addr ih_src; /* source internet address */
240 struct in_addr ih_dst; /* destination internet address */
241};
Eric Andersen5c58d282001-07-10 16:29:00 +0000242
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000243/*
244 * UDP kernel structures and variables.
245 */
Denis Vlasenko10944522007-02-04 02:40:27 +0000246struct udpiphdr {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000247 struct ipovly ui_i; /* overlaid ip structure */
248 struct udphdr ui_u; /* udp header */
249};
250#define ui_next ui_i.ih_next
251#define ui_prev ui_i.ih_prev
252#define ui_x1 ui_i.ih_x1
253#define ui_pr ui_i.ih_pr
254#define ui_len ui_i.ih_len
255#define ui_src ui_i.ih_src
256#define ui_dst ui_i.ih_dst
257#define ui_sport ui_u.uh_sport
258#define ui_dport ui_u.uh_dport
259#define ui_ulen ui_u.uh_ulen
260#define ui_sum ui_u.uh_sum
Eric Andersen5c58d282001-07-10 16:29:00 +0000261
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000262
263/* Host name and address list */
264struct hostinfo {
265 char *name;
266 int n;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000267 uint32_t *addrs;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000268};
269
270/* Data section of the probe packet */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000271typedef struct outdata {
Mike Frysinger294254c2006-02-19 22:59:12 +0000272 unsigned char seq; /* sequence number of this packet */
273 unsigned char ttl; /* ttl packet left with */
Denis Vlasenko459be352007-06-17 19:09:05 +0000274// UNUSED. Retaining to have the same packet size.
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000275 struct timeval tv_UNUSED PACKED; /* time packet left */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000276} outdata_t;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000277
278struct IFADDRLIST {
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000279 uint32_t addr;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000280 char device[sizeof(struct ifreq)];
281};
282
283
Denis Vlasenko2e723232007-03-29 21:55:22 +0000284/* Keep in sync with getopt32 call! */
285#define OPT_DONT_FRAGMNT (1<<0) /* F */
286#define OPT_USE_ICMP (1<<1) /* I */
287#define OPT_TTL_FLAG (1<<2) /* l */
288#define OPT_ADDR_NUM (1<<3) /* n */
289#define OPT_BYPASS_ROUTE (1<<4) /* r */
290#define OPT_DEBUG (1<<5) /* d */
291#define OPT_VERBOSE (1<<6) /* v */
292#define OPT_IP_CHKSUM (1<<7) /* x */
293#define OPT_TOS (1<<8) /* t */
294#define OPT_DEVICE (1<<9) /* i */
295#define OPT_MAX_TTL (1<<10) /* m */
296#define OPT_PORT (1<<11) /* p */
297#define OPT_NPROBES (1<<12) /* q */
298#define OPT_SOURCE (1<<13) /* s */
299#define OPT_WAITTIME (1<<14) /* w */
300#define OPT_PAUSE_MS (1<<15) /* z */
301#define OPT_FIRST_TTL (1<<16) /* f */
302
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000303#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
Denis Vlasenko2e723232007-03-29 21:55:22 +0000304/* use icmp echo instead of udp packets */
305#define useicmp (option_mask32 & OPT_USE_ICMP)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000306#endif
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000307#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Denis Vlasenko2e723232007-03-29 21:55:22 +0000308#define verbose (option_mask32 & OPT_VERBOSE)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000309#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000310#define nflag (option_mask32 & OPT_ADDR_NUM)
311
312
313struct globals {
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000314 struct ip *outip; /* last output (udp) packet */
315 struct udphdr *outudp; /* last output (udp) packet */
316 struct outdata *outdata; /* last output (udp) packet */
317
318#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
319 struct icmp *outicmp; /* last output (icmp) packet */
320#endif
321
322 int rcvsock; /* receive (icmp) socket file descriptor */
323 int sndsock; /* send (udp/icmp) socket file descriptor */
324
325 int packlen; /* total length of packet */
326 int minpacket; /* min ip packet size */
327 int maxpacket; // 32 * 1024; /* max ip packet size */
328 int pmtu; /* Path MTU Discovery (RFC1191) */
329
330 char *hostname;
331
332 uint16_t ident;
333 uint16_t port; // 32768 + 666; /* start udp dest port # for probe packets */
334
335 int waittime; // 5; /* time to wait for response (in seconds) */
336 int doipcksum; // 1; /* calculate ip checksums by default */
337
338#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
339 int optlen; /* length of ip options */
340#else
341#define optlen 0
342#endif
343
Denis Vlasenko2e723232007-03-29 21:55:22 +0000344 struct sockaddr_storage whereto; /* Who to try to reach */
345 struct sockaddr_storage wherefrom; /* Who we are */
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000346 /* last inbound (icmp) packet */
347 unsigned char packet[512];
Denis Vlasenko2e723232007-03-29 21:55:22 +0000348#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
349 /* Maximum number of gateways (include room for one noop) */
350#define NGATEWAYS ((int)((MAX_IPOPTLEN - IPOPT_MINOFF - 1) / sizeof(uint32_t)))
351 /* loose source route gateway list (including room for final destination) */
352 uint32_t gwlist[NGATEWAYS + 1];
353#endif
354};
355
356#define G (*ptr_to_globals)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000357#define outip (G.outip )
358#define outudp (G.outudp )
359#define outdata (G.outdata )
360#define outicmp (G.outicmp )
361#define rcvsock (G.rcvsock )
362#define sndsock (G.sndsock )
363#define packlen (G.packlen )
364#define minpacket (G.minpacket)
365#define maxpacket (G.maxpacket)
366#define pmtu (G.pmtu )
367#define hostname (G.hostname )
368#define ident (G.ident )
369#define port (G.port )
370#define waittime (G.waittime )
371#define doipcksum (G.doipcksum)
372#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
373#define optlen (G.optlen )
374#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000375#define packet (G.packet )
376#define whereto (G.whereto )
377#define wherefrom (G.wherefrom)
378#define gwlist (G.gwlist )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000379#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000380 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000381 maxpacket = 32 * 1024; \
382 port = 32768 + 666; \
383 waittime = 5; \
384 doipcksum = 1; \
385} while (0)
Denis Vlasenko2e723232007-03-29 21:55:22 +0000386
Eric Andersen5c58d282001-07-10 16:29:00 +0000387
Eric Andersen7467c8d2001-07-12 20:26:32 +0000388/*
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000389 * Return the interface list
Eric Andersen7467c8d2001-07-12 20:26:32 +0000390 */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000391static int
392ifaddrlist(struct IFADDRLIST **ipaddrp)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000393{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000394 enum { IFREQ_BUFSIZE = (32 * 1024) / sizeof(struct ifreq) };
395
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000396 int fd, nipaddr;
397#ifdef HAVE_SOCKADDR_SA_LEN
398 int n;
399#endif
400 struct ifreq *ifrp, *ifend, *ifnext;
401 struct sockaddr_in *addr_sin;
402 struct IFADDRLIST *al;
403 struct ifconf ifc;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000404 struct ifreq ifr;
405 /* Was on stack, but 32k is a bit too much: */
406 struct ifreq *ibuf = xmalloc(IFREQ_BUFSIZE * sizeof(ibuf[0]));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000407 struct IFADDRLIST *st_ifaddrlist;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000408
Rob Landleyd921b2e2006-08-03 15:41:12 +0000409 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000410
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000411 ifc.ifc_len = IFREQ_BUFSIZE * sizeof(ibuf[0]);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000412 ifc.ifc_buf = (caddr_t)ibuf;
413
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000414 if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) < 0
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000415 || ifc.ifc_len < (int)sizeof(struct ifreq)
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000416 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000417 if (errno == EINVAL)
418 bb_error_msg_and_die(
Denis Vlasenkoc965f4b2007-06-27 00:20:38 +0000419 "SIOCGIFCONF: ifreq struct too small (%u bytes)",
420 (unsigned)(IFREQ_BUFSIZE * sizeof(ibuf[0])));
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000421 bb_perror_msg_and_die("SIOCGIFCONF");
Eric Andersen7467c8d2001-07-12 20:26:32 +0000422 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000423 ifrp = ibuf;
424 ifend = (struct ifreq *)((char *)ibuf + ifc.ifc_len);
425
426 nipaddr = 1 + (ifc.ifc_len / sizeof(struct ifreq));
Rob Landley081e3842006-08-03 20:07:35 +0000427 st_ifaddrlist = xzalloc(nipaddr * sizeof(struct IFADDRLIST));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000428 al = st_ifaddrlist;
429 nipaddr = 0;
430
431 for (; ifrp < ifend; ifrp = ifnext) {
432#ifdef HAVE_SOCKADDR_SA_LEN
433 n = ifrp->ifr_addr.sa_len + sizeof(ifrp->ifr_name);
434 if (n < sizeof(*ifrp))
435 ifnext = ifrp + 1;
436 else
437 ifnext = (struct ifreq *)((char *)ifrp + n);
438 if (ifrp->ifr_addr.sa_family != AF_INET)
439 continue;
440#else
441 ifnext = ifrp + 1;
442#endif
443 /*
444 * Need a template to preserve address info that is
445 * used below to locate the next entry. (Otherwise,
446 * SIOCGIFFLAGS stomps over it because the requests
447 * are returned in a union.)
448 */
Denis Vlasenko360d9662008-12-02 18:18:50 +0000449 strncpy_IFNAMSIZ(ifr.ifr_name, ifrp->ifr_name);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000450 if (ioctl(fd, SIOCGIFFLAGS, (char *)&ifr) < 0) {
451 if (errno == ENXIO)
452 continue;
453 bb_perror_msg_and_die("SIOCGIFFLAGS: %.*s",
454 (int)sizeof(ifr.ifr_name), ifr.ifr_name);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000455 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000456
457 /* Must be up */
458 if ((ifr.ifr_flags & IFF_UP) == 0)
459 continue;
460
461 safe_strncpy(al->device, ifr.ifr_name, sizeof(ifr.ifr_name) + 1);
462#ifdef sun
463 /* Ignore sun virtual interfaces */
464 if (strchr(al->device, ':') != NULL)
465 continue;
466#endif
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000467 ioctl_or_perror_and_die(fd, SIOCGIFADDR, (char *)&ifr,
468 "SIOCGIFADDR: %s", al->device);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000469
470 addr_sin = (struct sockaddr_in *)&ifr.ifr_addr;
471 al->addr = addr_sin->sin_addr.s_addr;
472 ++al;
473 ++nipaddr;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000474 }
Denis Vlasenko13858992006-10-08 12:49:22 +0000475 if (nipaddr == 0)
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000476 bb_error_msg_and_die("can't find any network interfaces");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000477
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000478 free(ibuf);
479 close(fd);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000480 *ipaddrp = st_ifaddrlist;
481 return nipaddr;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000482}
483
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000484static void
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000485setsin(struct sockaddr_in *addr_sin, uint32_t addr)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000486{
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000487 memset(addr_sin, 0, sizeof(*addr_sin));
488#ifdef HAVE_SOCKADDR_SA_LEN
489 addr_sin->sin_len = sizeof(*addr_sin);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000490#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000491 addr_sin->sin_family = AF_INET;
492 addr_sin->sin_addr.s_addr = addr;
493}
494
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000495/*
496 * Return the source address for the given destination address
497 */
498static void
499findsaddr(const struct sockaddr_in *to, struct sockaddr_in *from)
500{
501 int i, n;
502 FILE *f;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000503 uint32_t mask;
504 uint32_t dest, tmask;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000505 struct IFADDRLIST *al;
506 char buf[256], tdevice[256], device[256];
507
Denis Vlasenko5415c852008-07-21 23:05:26 +0000508 f = xfopen_for_read("/proc/net/route");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000509
510 /* Find the appropriate interface */
511 n = 0;
512 mask = 0;
513 device[0] = '\0';
514 while (fgets(buf, sizeof(buf), f) != NULL) {
515 ++n;
516 if (n == 1 && strncmp(buf, "Iface", 5) == 0)
517 continue;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000518 i = sscanf(buf, "%255s %x %*s %*s %*s %*s %*s %x",
519 tdevice, &dest, &tmask);
520 if (i != 3)
521 bb_error_msg_and_die("junk in buffer");
522 if ((to->sin_addr.s_addr & tmask) == dest
523 && (tmask > mask || mask == 0)
524 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000525 mask = tmask;
526 strcpy(device, tdevice);
527 }
528 }
529 fclose(f);
530
531 if (device[0] == '\0')
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000532 bb_error_msg_and_die("can't find interface");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000533
534 /* Get the interface address list */
535 n = ifaddrlist(&al);
536
537 /* Find our appropriate source address */
538 for (i = n; i > 0; --i, ++al)
539 if (strcmp(device, al->device) == 0)
540 break;
541 if (i <= 0)
Denis Vlasenkoea620772006-10-14 02:23:43 +0000542 bb_error_msg_and_die("can't find interface %s", device);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000543
544 setsin(from, al->addr);
545}
546
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000547static int
Denis Vlasenko459be352007-06-17 19:09:05 +0000548wait_for_reply(int sock, struct sockaddr_in *fromp)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000549{
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000550 struct pollfd pfd[1];
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000551 int cc = 0;
552 socklen_t fromlen = sizeof(*fromp);
553
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000554 pfd[0].fd = sock;
555 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000556 if (safe_poll(pfd, 1, waittime * 1000) > 0)
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000557 cc = recvfrom(sock, packet, sizeof(packet), 0,
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000558 (struct sockaddr *)fromp, &fromlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000559 return cc;
560}
561
562/*
563 * Checksum routine for Internet Protocol family headers (C Version)
564 */
Denis Vlasenko28703012006-12-19 20:32:02 +0000565static uint16_t
566in_cksum(uint16_t *addr, int len)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000567{
568 int nleft = len;
Denis Vlasenko28703012006-12-19 20:32:02 +0000569 uint16_t *w = addr;
570 uint16_t answer;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000571 int sum = 0;
572
573 /*
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000574 * Our algorithm is simple, using a 32 bit accumulator (sum),
575 * we add sequential 16 bit words to it, and at the end, fold
576 * back all the carry bits from the top 16 bits into the lower
577 * 16 bits.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000578 */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000579 while (nleft > 1) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000580 sum += *w++;
581 nleft -= 2;
582 }
583
584 /* mop up an odd byte, if necessary */
585 if (nleft == 1)
Mike Frysinger294254c2006-02-19 22:59:12 +0000586 sum += *(unsigned char *)w;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000587
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000588 /* add back carry outs from top 16 bits to low 16 bits */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000589 sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
590 sum += (sum >> 16); /* add carry */
591 answer = ~sum; /* truncate to 16 bits */
592 return answer;
593}
594
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000595static void
Denis Vlasenko459be352007-06-17 19:09:05 +0000596send_probe(int seq, int ttl)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000597{
598 int cc;
599 struct udpiphdr *ui, *oui;
600 struct ip tip;
601
602 outip->ip_ttl = ttl;
603 outip->ip_id = htons(ident + seq);
604
605 /*
606 * In most cases, the kernel will recalculate the ip checksum.
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000607 * But we must do it anyway so that the udp checksum comes out right.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000608 */
609 if (doipcksum) {
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000610 outip->ip_sum = in_cksum((uint16_t *)outip, sizeof(*outip) + optlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000611 if (outip->ip_sum == 0)
612 outip->ip_sum = 0xffff;
613 }
614
615 /* Payload */
616 outdata->seq = seq;
617 outdata->ttl = ttl;
Denis Vlasenko459be352007-06-17 19:09:05 +0000618// UNUSED: was storing gettimeofday's result there, but never ever checked it
619 /*memcpy(&outdata->tv, tp, sizeof(outdata->tv));*/
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000620
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000621#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000622 if (useicmp)
623 outicmp->icmp_seq = htons(seq);
624 else
625#endif
626 outudp->dest = htons(port + seq);
627
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000628#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000629 if (useicmp) {
630 /* Always calculate checksum for icmp packets */
631 outicmp->icmp_cksum = 0;
Denis Vlasenko28703012006-12-19 20:32:02 +0000632 outicmp->icmp_cksum = in_cksum((uint16_t *)outicmp,
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000633 packlen - (sizeof(*outip) + optlen));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000634 if (outicmp->icmp_cksum == 0)
635 outicmp->icmp_cksum = 0xffff;
636 } else
637#endif
Denis Vlasenko92758142006-10-03 19:56:34 +0000638 if (doipcksum) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000639 /* Checksum (we must save and restore ip header) */
640 tip = *outip;
641 ui = (struct udpiphdr *)outip;
642 oui = (struct udpiphdr *)&tip;
643 /* Easier to zero and put back things that are ok */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000644 memset(ui, 0, sizeof(ui->ui_i));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000645 ui->ui_src = oui->ui_src;
646 ui->ui_dst = oui->ui_dst;
647 ui->ui_pr = oui->ui_pr;
648 ui->ui_len = outudp->len;
649 outudp->check = 0;
Denis Vlasenko28703012006-12-19 20:32:02 +0000650 outudp->check = in_cksum((uint16_t *)ui, packlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000651 if (outudp->check == 0)
652 outudp->check = 0xffff;
653 *outip = tip;
654 }
655
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000656//BUG! verbose is (x & OPT_VERBOSE), not a counter!
657#if 0 //ENABLE_FEATURE_TRACEROUTE_VERBOSE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000658 /* XXX undocumented debugging hack */
659 if (verbose > 1) {
Denis Vlasenko28703012006-12-19 20:32:02 +0000660 const uint16_t *sp;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000661 int nshorts, i;
662
Denis Vlasenko28703012006-12-19 20:32:02 +0000663 sp = (uint16_t *)outip;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000664 nshorts = (unsigned)packlen / sizeof(uint16_t);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000665 i = 0;
666 printf("[ %d bytes", packlen);
667 while (--nshorts >= 0) {
668 if ((i++ % 8) == 0)
669 printf("\n\t");
670 printf(" %04x", ntohs(*sp));
671 sp++;
672 }
673 if (packlen & 1) {
674 if ((i % 8) == 0)
675 printf("\n\t");
Mike Frysinger294254c2006-02-19 22:59:12 +0000676 printf(" %02x", *(unsigned char *)sp);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000677 }
678 printf("]\n");
679 }
680#endif
681
682#if !defined(IP_HDRINCL) && defined(IP_TTL)
683 if (setsockopt(sndsock, IPPROTO_IP, IP_TTL,
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000684 (char *)&ttl, sizeof(ttl)) < 0) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000685 bb_perror_msg_and_die("setsockopt ttl %d", ttl);
686 }
687#endif
688
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000689 cc = xsendto(sndsock, outip, packlen,
690 (struct sockaddr *)&whereto, sizeof(whereto));
691 if (cc != packlen) {
692 bb_info_msg("sent %s %d octets, ret=%d", hostname, packlen, cc);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000693 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000694}
695
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000696#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000697/*
698 * Convert an ICMP "type" field to a printable string.
699 */
700static inline const char *
Mike Frysinger294254c2006-02-19 22:59:12 +0000701pr_type(unsigned char t)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000702{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000703 static const char *const ttab[] = {
Eric Andersen7467c8d2001-07-12 20:26:32 +0000704 "Echo Reply", "ICMP 1", "ICMP 2", "Dest Unreachable",
705 "Source Quench", "Redirect", "ICMP 6", "ICMP 7",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000706 "Echo", "Router Advert", "Router Solicit", "Time Exceeded",
Eric Andersen7467c8d2001-07-12 20:26:32 +0000707 "Param Problem", "Timestamp", "Timestamp Reply", "Info Request",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000708 "Info Reply", "Mask Request", "Mask Reply"
Eric Andersen7467c8d2001-07-12 20:26:32 +0000709 };
710
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000711 if (t >= ARRAY_SIZE(ttab))
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000712 return "OUT-OF-RANGE";
Eric Andersen7467c8d2001-07-12 20:26:32 +0000713
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000714 return ttab[t];
Eric Andersen7467c8d2001-07-12 20:26:32 +0000715}
716#endif
717
Denis Vlasenko85c24712008-03-17 09:04:04 +0000718#if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
719#define packet_ok(buf, cc, from, seq) \
720 packet_ok(buf, cc, seq)
721#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000722static int
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000723packet_ok(const unsigned char *buf, int cc, const struct sockaddr_in *from, int seq)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000724{
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000725 const struct icmp *icp;
Mike Frysinger294254c2006-02-19 22:59:12 +0000726 unsigned char type, code;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000727 int hlen;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000728 const struct ip *ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000729
730 ip = (struct ip *) buf;
731 hlen = ip->ip_hl << 2;
732 if (cc < hlen + ICMP_MINLEN) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000733#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000734 if (verbose)
735 printf("packet too short (%d bytes) from %s\n", cc,
736 inet_ntoa(from->sin_addr));
737#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000738 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000739 }
740 cc -= hlen;
741 icp = (struct icmp *)(buf + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000742 type = icp->icmp_type;
743 code = icp->icmp_code;
744 /* Path MTU Discovery (RFC1191) */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000745 pmtu = 0;
746 if (code == ICMP_UNREACH_NEEDFRAG)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000747 pmtu = ntohs(icp->icmp_nextmtu);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000748
749 if ((type == ICMP_TIMXCEED && code == ICMP_TIMXCEED_INTRANS)
750 || type == ICMP_UNREACH
751 || type == ICMP_ECHOREPLY
752 ) {
753 const struct ip *hip;
754 const struct udphdr *up;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000755
756 hip = &icp->icmp_ip;
757 hlen = hip->ip_hl << 2;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000758#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000759 if (useicmp) {
760 struct icmp *hicmp;
761
762 /* XXX */
763 if (type == ICMP_ECHOREPLY &&
764 icp->icmp_id == htons(ident) &&
765 icp->icmp_seq == htons(seq))
766 return -2;
767
Mike Frysinger294254c2006-02-19 22:59:12 +0000768 hicmp = (struct icmp *)((unsigned char *)hip + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000769 /* XXX 8 is a magic number */
770 if (hlen + 8 <= cc &&
771 hip->ip_p == IPPROTO_ICMP &&
772 hicmp->icmp_id == htons(ident) &&
773 hicmp->icmp_seq == htons(seq))
774 return (type == ICMP_TIMXCEED ? -1 : code + 1);
775 } else
776#endif
Denis Vlasenko92758142006-10-03 19:56:34 +0000777 {
Mike Frysinger294254c2006-02-19 22:59:12 +0000778 up = (struct udphdr *)((unsigned char *)hip + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000779 /* XXX 8 is a magic number */
780 if (hlen + 12 <= cc &&
781 hip->ip_p == IPPROTO_UDP &&
782 up->source == htons(ident) &&
783 up->dest == htons(port + seq))
784 return (type == ICMP_TIMXCEED ? -1 : code + 1);
785 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000786 }
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000787#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000788 if (verbose) {
789 int i;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000790 uint32_t *lp = (uint32_t *)&icp->icmp_ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000791
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000792 printf("\n%d bytes from %s to "
793 "%s: icmp type %d (%s) code %d\n",
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000794 cc, inet_ntoa(from->sin_addr),
795 inet_ntoa(ip->ip_dst),
796 type, pr_type(type), icp->icmp_code);
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000797 for (i = 4; i < cc; i += sizeof(*lp))
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000798 printf("%2d: x%8.8x\n", i, *lp++);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000799 }
800#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000801 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000802}
803
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000804/*
805 * Construct an Internet address representation.
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000806 * If the -n flag has been supplied, give
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000807 * numeric value, otherwise try for symbolic name.
808 */
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000809static void
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000810print_inetname(const struct sockaddr_in *from)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000811{
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000812 const char *ina;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000813
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000814 ina = inet_ntoa(from->sin_addr);
815 if (nflag)
816 printf(" %s", ina);
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000817 else {
818 char *n = NULL;
819 if (from->sin_addr.s_addr != INADDR_ANY)
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000820 n = xmalloc_sockaddr2host_noport((struct sockaddr*)from);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000821 printf(" %s (%s)", (n ? n : ina), ina);
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000822 free(n);
823 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000824}
825
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000826static void
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000827print(const unsigned char *buf, int cc, const struct sockaddr_in *from)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000828{
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000829 const struct ip *ip;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000830 int hlen;
831
832 ip = (struct ip *) buf;
833 hlen = ip->ip_hl << 2;
834 cc -= hlen;
835
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000836 print_inetname(from);
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000837#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000838 if (verbose)
Denis Vlasenko6398cf42007-04-11 17:04:29 +0000839 printf(" %d bytes to %s", cc, inet_ntoa(ip->ip_dst));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000840#endif
841}
842
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000843static struct hostinfo *
844gethostinfo(const char *host)
845{
846 int n;
847 struct hostent *hp;
848 struct hostinfo *hi;
849 char **p;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000850 uint32_t addr, *ap;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000851
Rob Landley081e3842006-08-03 20:07:35 +0000852 hi = xzalloc(sizeof(*hi));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000853 addr = inet_addr(host);
Denis Vlasenko703e2022007-01-22 14:12:08 +0000854 if (addr != 0xffffffff) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000855 hi->name = xstrdup(host);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000856 hi->n = 1;
Rob Landley081e3842006-08-03 20:07:35 +0000857 hi->addrs = xzalloc(sizeof(hi->addrs[0]));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000858 hi->addrs[0] = addr;
859 return hi;
860 }
861
862 hp = xgethostbyname(host);
863 if (hp->h_addrtype != AF_INET || hp->h_length != 4)
864 bb_perror_msg_and_die("bad host %s", host);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000865 hi->name = xstrdup(hp->h_name);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000866 for (n = 0, p = hp->h_addr_list; *p != NULL; ++n, ++p)
867 continue;
868 hi->n = n;
Rob Landley081e3842006-08-03 20:07:35 +0000869 hi->addrs = xzalloc(n * sizeof(hi->addrs[0]));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000870 for (ap = hi->addrs, p = hp->h_addr_list; *p != NULL; ++ap, ++p)
871 memcpy(ap, *p, sizeof(*ap));
872 return hi;
873}
874
875static void
876freehostinfo(struct hostinfo *hi)
877{
Rob Landleye7c43b62006-03-01 16:39:45 +0000878 free(hi->name);
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000879 free(hi->addrs);
880 free(hi);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000881}
882
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000883#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000884static void
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000885getaddr(uint32_t *ap, const char *host)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000886{
887 struct hostinfo *hi;
888
889 hi = gethostinfo(host);
890 *ap = hi->addrs[0];
891 freehostinfo(hi);
892}
893#endif
894
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000895static void
Denis Vlasenko459be352007-06-17 19:09:05 +0000896print_delta_ms(unsigned t1p, unsigned t2p)
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000897{
Denis Vlasenko459be352007-06-17 19:09:05 +0000898 unsigned tt = t2p - t1p;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000899 printf(" %u.%03u ms", tt / 1000, tt % 1000);
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000900}
Eric Andersen7467c8d2001-07-12 20:26:32 +0000901
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000902/*
903"Usage: %s [-dFIlnrvx] [-g gateway] [-i iface] [-f first_ttl]\n"
904"\t[-m max_ttl] [ -p port] [-q nqueries] [-s src_addr] [-t tos]\n"
905"\t[-w waittime] [-z pausemsecs] host [packetlen]"
906*/
907
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000908int traceroute_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000909int traceroute_main(int argc, char **argv)
Eric Andersen5c58d282001-07-10 16:29:00 +0000910{
Mike Frysinger294254c2006-02-19 22:59:12 +0000911 unsigned char *outp;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000912 struct sockaddr_in *from;
913 struct sockaddr_in *to;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000914 struct hostinfo *hi;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000915 int ttl, probe, i;
916 int seq = 0;
917 int tos = 0;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000918 char *tos_str;
919 char *source;
920 unsigned op;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000921#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000922 int lsrr = 0;
923#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000924 struct IFADDRLIST *al;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000925 char *device;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000926 int max_ttl = 30;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000927 char *max_ttl_str;
928 char *port_str;
Eric Andersen5c58d282001-07-10 16:29:00 +0000929 int nprobes = 3;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000930 char *nprobes_str;
931 char *waittime_str;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000932 unsigned pausemsecs = 0;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000933 char *pausemsecs_str;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000934 int first_ttl = 1;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000935 char *first_ttl_str;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000936#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000937 llist_t *source_route_list = NULL;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000938#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000939
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000940 INIT_G();
Denis Vlasenko2e723232007-03-29 21:55:22 +0000941 from = (struct sockaddr_in *)&wherefrom;
942 to = (struct sockaddr_in *)&whereto;
943
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000944#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000945 opt_complementary = "x-x:g::";
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000946#else
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000947 opt_complementary = "x-x";
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000948#endif
949
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000950 op = getopt32(argv, "FIlnrdvxt:i:m:p:q:s:w:z:f:"
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000951#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000952 "g:"
953#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000954 , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str
955 , &source, &waittime_str, &pausemsecs_str, &first_ttl_str
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000956#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000957 , &source_route_list
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000958#endif
959 );
960
Denis Vlasenko2e723232007-03-29 21:55:22 +0000961 if (op & OPT_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 }
Denis Vlasenko2e723232007-03-29 21:55:22 +0000965 if (op & OPT_TOS)
966 tos = xatou_range(tos_str, 0, 255);
967 if (op & OPT_MAX_TTL)
968 max_ttl = xatou_range(max_ttl_str, 1, 255);
969 if (op & OPT_PORT)
Denis Vlasenko13858992006-10-08 12:49:22 +0000970 port = xatou16(port_str);
Denis Vlasenko2e723232007-03-29 21:55:22 +0000971 if (op & OPT_NPROBES)
972 nprobes = xatou_range(nprobes_str, 1, INT_MAX);
973 if (op & OPT_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 */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000978 if (getuid() != 0)
979 bb_error_msg_and_die("you must be root to use -s");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000980 }
Denis Vlasenko2e723232007-03-29 21:55:22 +0000981 if (op & OPT_WAITTIME)
982 waittime = xatou_range(waittime_str, 2, 24 * 60 * 60);
983 if (op & OPT_PAUSE_MS)
984 pausemsecs = xatou_range(pausemsecs_str, 0, 60 * 60 * 1000);
985 if (op & OPT_FIRST_TTL)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000986 first_ttl = xatou_range(first_ttl_str, 1, max_ttl);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000987
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000988#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000989 if (source_route_list) {
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000990 while (source_route_list) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000991 if (lsrr >= NGATEWAYS)
Denis Vlasenko92758142006-10-03 19:56:34 +0000992 bb_error_msg_and_die("no more than %d gateways", NGATEWAYS);
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000993 getaddr(gwlist + lsrr, llist_pop(&source_route_list));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000994 ++lsrr;
Eric Andersen5c58d282001-07-10 16:29:00 +0000995 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000996 optlen = (lsrr + 1) * sizeof(gwlist[0]);
997 }
998#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000999
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001000 minpacket = sizeof(*outip) + sizeof(*outdata) + optlen;
1001
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001002#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001003 if (useicmp)
1004 minpacket += 8; /* XXX magic number */
1005 else
1006#endif
1007 minpacket += sizeof(*outudp);
1008 packlen = minpacket; /* minimum sized packet */
1009
1010 /* Process destination and optional packet size */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001011 argv += optind;
1012 argc -= optind;
1013 switch (argc) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001014 case 2:
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001015 packlen = xatoul_range(argv[1], minpacket, maxpacket);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001016 /* Fall through */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001017 case 1:
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001018 hostname = argv[0];
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001019 hi = gethostinfo(hostname);
1020 setsin(to, hi->addrs[0]);
1021 if (hi->n > 1)
Denis Vlasenko13858992006-10-08 12:49:22 +00001022 bb_error_msg("warning: %s has multiple addresses; using %s",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001023 hostname, inet_ntoa(to->sin_addr));
1024 hostname = hi->name;
1025 hi->name = NULL;
1026 freehostinfo(hi);
1027 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001028 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +00001029 bb_show_usage();
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001030 }
Eric Andersen5c58d282001-07-10 16:29:00 +00001031
Denis Vlasenkoe06bed32007-01-27 22:21:12 +00001032 /* Ensure the socket fds won't be 0, 1 or 2 */
1033 bb_sanitize_stdio();
Eric Andersen5c58d282001-07-10 16:29:00 +00001034
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +00001035 rcvsock = xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001036
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001037#if TRACEROUTE_SO_DEBUG
Denis Vlasenko2e723232007-03-29 21:55:22 +00001038 if (op & OPT_DEBUG)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +00001039 setsockopt(rcvsock, SOL_SOCKET, SO_DEBUG,
Denis Vlasenko703e2022007-01-22 14:12:08 +00001040 &const_int_1, sizeof(const_int_1));
Eric Andersen7467c8d2001-07-12 20:26:32 +00001041#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +00001042 if (op & OPT_BYPASS_ROUTE)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +00001043 setsockopt(rcvsock, SOL_SOCKET, SO_DONTROUTE,
Denis Vlasenko703e2022007-01-22 14:12:08 +00001044 &const_int_1, sizeof(const_int_1));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001045
Rob Landleyd921b2e2006-08-03 15:41:12 +00001046 sndsock = xsocket(AF_INET, SOCK_RAW, IPPROTO_RAW);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001047
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001048#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001049#if defined(IP_OPTIONS)
1050 if (lsrr > 0) {
Mike Frysinger294254c2006-02-19 22:59:12 +00001051 unsigned char optlist[MAX_IPOPTLEN];
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001052
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001053 /* final hop */
1054 gwlist[lsrr] = to->sin_addr.s_addr;
1055 ++lsrr;
1056
1057 /* force 4 byte alignment */
1058 optlist[0] = IPOPT_NOP;
1059 /* loose source route option */
1060 optlist[1] = IPOPT_LSRR;
1061 i = lsrr * sizeof(gwlist[0]);
1062 optlist[2] = i + 3;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001063 /* pointer to LSRR addresses */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001064 optlist[3] = IPOPT_MINOFF;
1065 memcpy(optlist + 4, gwlist, i);
1066
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001067 if (setsockopt(sndsock, IPPROTO_IP, IP_OPTIONS,
1068 (char *)optlist, i + sizeof(gwlist[0])) < 0) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001069 bb_perror_msg_and_die("IP_OPTIONS");
Denis Vlasenko6edadde2006-10-03 18:19:02 +00001070 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001071 }
1072#endif /* IP_OPTIONS */
1073#endif /* CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE */
1074
Eric Andersen5c58d282001-07-10 16:29:00 +00001075#ifdef SO_SNDBUF
Denis Vlasenko703e2022007-01-22 14:12:08 +00001076 if (setsockopt(sndsock, SOL_SOCKET, SO_SNDBUF, &packlen, sizeof(packlen)) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001077 bb_perror_msg_and_die("SO_SNDBUF");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001078 }
Eric Andersenad79c0b2002-06-06 12:24:51 +00001079#endif
Eric Andersen5c58d282001-07-10 16:29:00 +00001080#ifdef IP_HDRINCL
Denis Vlasenko703e2022007-01-22 14:12:08 +00001081 if (setsockopt(sndsock, IPPROTO_IP, IP_HDRINCL, &const_int_1, sizeof(const_int_1)) < 0
1082 && errno != ENOPROTOOPT
1083 ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001084 bb_perror_msg_and_die("IP_HDRINCL");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001085 }
1086#else
1087#ifdef IP_TOS
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001088 if ((op & OPT_TOS) && setsockopt(sndsock, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001089 bb_perror_msg_and_die("setsockopt tos %d", tos);
1090 }
1091#endif
Eric Andersenad79c0b2002-06-06 12:24:51 +00001092#endif
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001093#if TRACEROUTE_SO_DEBUG
Denis Vlasenko2e723232007-03-29 21:55:22 +00001094 if (op & OPT_DEBUG)
Denis Vlasenko703e2022007-01-22 14:12:08 +00001095 setsockopt(sndsock, SOL_SOCKET, SO_DEBUG,
1096 &const_int_1, sizeof(const_int_1));
Eric Andersen7467c8d2001-07-12 20:26:32 +00001097#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +00001098 if (op & OPT_BYPASS_ROUTE)
Denis Vlasenko703e2022007-01-22 14:12:08 +00001099 setsockopt(sndsock, SOL_SOCKET, SO_DONTROUTE,
1100 &const_int_1, sizeof(const_int_1));
Eric Andersen5c58d282001-07-10 16:29:00 +00001101
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001102 /* Revert to non-privileged user after opening sockets */
Rob Landleyafb94ec2006-07-16 08:06:34 +00001103 xsetgid(getgid());
1104 xsetuid(getuid());
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001105
Denis Vlasenko4cccc032006-12-22 18:37:07 +00001106 outip = xzalloc(packlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001107
1108 outip->ip_v = IPVERSION;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001109 if (op & OPT_TOS)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001110 outip->ip_tos = tos;
1111 outip->ip_len = htons(packlen);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001112 if (op & OPT_DONT_FRAGMNT)
1113 outip->ip_off = htons(IP_DF);
Mike Frysinger294254c2006-02-19 22:59:12 +00001114 outp = (unsigned char *)(outip + 1);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001115 outip->ip_dst = to->sin_addr;
1116
Mike Frysinger294254c2006-02-19 22:59:12 +00001117 outip->ip_hl = (outp - (unsigned char *)outip) >> 2;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001118 ident = (getpid() & 0xffff) | 0x8000;
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001119#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001120 if (useicmp) {
1121 outip->ip_p = IPPROTO_ICMP;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001122 outicmp = (struct icmp *)outp;
1123 outicmp->icmp_type = ICMP_ECHO;
1124 outicmp->icmp_id = htons(ident);
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +00001125 outdata = (outdata_t *)(outp + 8); /* XXX magic number */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001126 } else
Eric Andersenad79c0b2002-06-06 12:24:51 +00001127#endif
Denis Vlasenko28703012006-12-19 20:32:02 +00001128 {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001129 outip->ip_p = IPPROTO_UDP;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001130 outudp = (struct udphdr *)outp;
1131 outudp->source = htons(ident);
Denis Vlasenko28703012006-12-19 20:32:02 +00001132 outudp->len = htons((uint16_t)(packlen - (sizeof(*outip) + optlen)));
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +00001133 outdata = (outdata_t *)(outudp + 1);
Eric Andersen5c58d282001-07-10 16:29:00 +00001134 }
1135
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001136 /* Look for a specific device */
Denis Vlasenko2e723232007-03-29 21:55:22 +00001137 if (op & OPT_DEVICE) {
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001138 /* Get the interface address list */
1139 int n = ifaddrlist(&al);
1140 for (; n > 0; --n, ++al)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001141 if (strcmp(device, al->device) == 0)
Denis Vlasenko2e723232007-03-29 21:55:22 +00001142 goto found_dev;
1143 bb_error_msg_and_die("can't find interface %s", device);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001144 }
Denis Vlasenko2e723232007-03-29 21:55:22 +00001145 found_dev:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001146
1147 /* Determine our source address */
Denis Vlasenko2e723232007-03-29 21:55:22 +00001148 if (!(op & OPT_SOURCE)) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001149 /*
1150 * If a device was specified, use the interface address.
1151 * Otherwise, try to determine our source address.
1152 */
Denis Vlasenko2e723232007-03-29 21:55:22 +00001153 if (op & OPT_DEVICE)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001154 setsin(from, al->addr);
1155 findsaddr(to, from);
1156 } else {
1157 hi = gethostinfo(source);
1158 source = hi->name;
1159 hi->name = NULL;
1160 /*
1161 * If the device was specified make sure it
1162 * corresponds to the source address specified.
1163 * Otherwise, use the first address (and warn if
1164 * there are more than one).
1165 */
Denis Vlasenko2e723232007-03-29 21:55:22 +00001166 if (op & OPT_DEVICE) {
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001167 uint32_t *ap;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001168 for (i = hi->n, ap = hi->addrs; i > 0; --i, ++ap)
1169 if (*ap == al->addr)
Denis Vlasenko2e723232007-03-29 21:55:22 +00001170 goto found_dev2;
1171 bb_error_msg_and_die("%s is not on interface %s",
1172 source, device);
1173 found_dev2:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001174 setsin(from, *ap);
1175 } else {
1176 setsin(from, hi->addrs[0]);
1177 if (hi->n > 1)
1178 bb_error_msg(
Denis Vlasenko2e723232007-03-29 21:55:22 +00001179 "warning: %s has multiple addresses; using %s",
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001180 source, inet_ntoa(from->sin_addr));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001181 }
1182 freehostinfo(hi);
1183 }
1184
1185 outip->ip_src = from->sin_addr;
1186#ifndef IP_HDRINCL
Rob Landleyd921b2e2006-08-03 15:41:12 +00001187 xbind(sndsock, (struct sockaddr *)from, sizeof(*from));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001188#endif
1189
Denis Vlasenko2e723232007-03-29 21:55:22 +00001190 printf("traceroute to %s (%s)", hostname, inet_ntoa(to->sin_addr));
1191 if (op & OPT_SOURCE)
1192 printf(" from %s", source);
1193 printf(", %d hops max, %d byte packets\n", max_ttl, packlen);
Eric Andersen5c58d282001-07-10 16:29:00 +00001194
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001195 for (ttl = first_ttl; ttl <= max_ttl; ++ttl) {
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001196 uint32_t lastaddr = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001197 int gotlastaddr = 0;
Eric Andersen5c58d282001-07-10 16:29:00 +00001198 int got_there = 0;
1199 int unreachable = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001200 int sentfirst = 0;
Eric Andersen5c58d282001-07-10 16:29:00 +00001201
1202 printf("%2d ", ttl);
1203 for (probe = 0; probe < nprobes; ++probe) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001204 int cc;
Denis Vlasenko459be352007-06-17 19:09:05 +00001205 unsigned t1;
1206 unsigned t2;
Eric Andersen5c58d282001-07-10 16:29:00 +00001207 struct ip *ip;
1208
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001209 if (sentfirst && pausemsecs > 0)
1210 usleep(pausemsecs * 1000);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001211 fflush(stdout);
1212
Denis Vlasenko459be352007-06-17 19:09:05 +00001213 t1 = monotonic_us();
1214 send_probe(++seq, ttl);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001215 ++sentfirst;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001216
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +00001217 while ((cc = wait_for_reply(rcvsock, from)) != 0) {
Denis Vlasenko459be352007-06-17 19:09:05 +00001218 t2 = monotonic_us();
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001219 i = packet_ok(packet, cc, from, seq);
1220 /* Skip short packet */
1221 if (i == 0)
1222 continue;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001223 if (!gotlastaddr
1224 || from->sin_addr.s_addr != lastaddr
1225 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001226 print(packet, cc, from);
1227 lastaddr = from->sin_addr.s_addr;
1228 ++gotlastaddr;
1229 }
Denis Vlasenko459be352007-06-17 19:09:05 +00001230 print_delta_ms(t1, t2);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001231 ip = (struct ip *)packet;
Denis Vlasenko2e723232007-03-29 21:55:22 +00001232 if (op & OPT_TTL_FLAG)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001233 printf(" (%d)", ip->ip_ttl);
1234 if (i == -2) {
1235 if (ip->ip_ttl <= 1)
1236 printf(" !");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001237 got_there = 1;
Eric Andersen5c58d282001-07-10 16:29:00 +00001238 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001239 }
1240 /* time exceeded in transit */
1241 if (i == -1)
1242 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001243 i--;
1244 switch (i) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001245 case ICMP_UNREACH_PORT:
1246 if (ip->ip_ttl <= 1)
1247 printf(" !");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001248 got_there = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001249 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001250 case ICMP_UNREACH_NET:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001251 printf(" !N");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001252 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001253 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001254 case ICMP_UNREACH_HOST:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001255 printf(" !H");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001256 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001257 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001258 case ICMP_UNREACH_PROTOCOL:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001259 printf(" !P");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001260 got_there = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001261 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001262 case ICMP_UNREACH_NEEDFRAG:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001263 printf(" !F-%d", pmtu);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001264 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001265 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001266 case ICMP_UNREACH_SRCFAIL:
1267 printf(" !S");
1268 ++unreachable;
1269 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001270 case ICMP_UNREACH_FILTER_PROHIB:
1271 case ICMP_UNREACH_NET_PROHIB: /* misuse */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001272 printf(" !A");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001273 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001274 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001275 case ICMP_UNREACH_HOST_PROHIB:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001276 printf(" !C");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001277 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001278 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001279 case ICMP_UNREACH_HOST_PRECEDENCE:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001280 printf(" !V");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001281 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001282 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001283 case ICMP_UNREACH_PRECEDENCE_CUTOFF:
1284 printf(" !C");
1285 ++unreachable;
1286 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001287 case ICMP_UNREACH_NET_UNKNOWN:
1288 case ICMP_UNREACH_HOST_UNKNOWN:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001289 printf(" !U");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001290 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001291 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001292 case ICMP_UNREACH_ISOLATED:
1293 printf(" !I");
1294 ++unreachable;
1295 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001296 case ICMP_UNREACH_TOSNET:
1297 case ICMP_UNREACH_TOSHOST:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001298 printf(" !T");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001299 ++unreachable;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001300 break;
1301 default:
1302 printf(" !<%d>", i);
1303 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001304 break;
1305 }
1306 break;
Eric Andersen5c58d282001-07-10 16:29:00 +00001307 }
1308 if (cc == 0)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001309 printf(" *");
Eric Andersen5c58d282001-07-10 16:29:00 +00001310 }
Denis Vlasenko4daad902007-09-27 10:20:47 +00001311 bb_putchar('\n');
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001312 if (got_there
1313 || (unreachable > 0 && unreachable >= nprobes - 1)
1314 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001315 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001316 }
Eric Andersen5c58d282001-07-10 16:29:00 +00001317 }
Eric Andersen5c58d282001-07-10 16:29:00 +00001318 return 0;
1319}