blob: 85181ab8d77a8d4b54f7e11080daff4e1e5f0321 [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/*
Leonid Lisovskiy4c065312009-11-23 06:20:09 +010026 * traceroute6
27 *
28 * Modified for NRL 4.4BSD IPv6 release.
29 * 07/31/96 bgp
30 *
31 * Modified for Linux IPv6 by Pedro Roque <roque@di.fc.ul.pt>
32 * 31/07/1996
33 *
34 * As ICMP error messages for IPv6 now include more than 8 bytes
35 * UDP datagrams are now sent via an UDP socket instead of magic
36 * RAW socket tricks.
37 *
38 * Converted to busybox applet by Leonid Lisovskiy <lly@sf.net>
39 * 2009-11-16
40 */
41
42/*
Eric Andersen5c58d282001-07-10 16:29:00 +000043 * traceroute host - trace the route ip packets follow going to "host".
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +000044 *
45 * Attempt to trace the route an ip packet would follow to some
46 * internet host. We find out intermediate hops by launching probe
47 * packets with a small ttl (time to live) then listening for an
48 * icmp "time exceeded" reply from a gateway. We start our probes
49 * with a ttl of one and increase by one until we get an icmp "port
50 * unreachable" (which means we got to "host") or hit a max (which
51 * defaults to 30 hops & can be changed with the -m flag). Three
52 * probes (change with -q flag) are sent at each ttl setting and a
53 * line is printed showing the ttl, address of the gateway and
54 * round trip time of each probe. If the probe answers come from
55 * different gateways, the address of each responding system will
56 * be printed. If there is no response within a 5 sec. timeout
57 * interval (changed with the -w flag), a "*" is printed for that
58 * probe.
59 *
60 * Probe packets are UDP format. We don't want the destination
61 * host to process them so the destination port is set to an
62 * unlikely value (if some clod on the destination is using that
63 * value, it can be changed with the -p flag).
64 *
65 * A sample use might be:
66 *
67 * [yak 71]% traceroute nis.nsf.net.
68 * traceroute to nis.nsf.net (35.1.1.48), 30 hops max, 56 byte packet
69 * 1 helios.ee.lbl.gov (128.3.112.1) 19 ms 19 ms 0 ms
70 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
71 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
72 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 39 ms
73 * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 39 ms 39 ms 39 ms
74 * 6 128.32.197.4 (128.32.197.4) 40 ms 59 ms 59 ms
75 * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 59 ms
76 * 8 129.140.70.13 (129.140.70.13) 99 ms 99 ms 80 ms
77 * 9 129.140.71.6 (129.140.71.6) 139 ms 239 ms 319 ms
78 * 10 129.140.81.7 (129.140.81.7) 220 ms 199 ms 199 ms
79 * 11 nic.merit.edu (35.1.1.48) 239 ms 239 ms 239 ms
80 *
81 * Note that lines 2 & 3 are the same. This is due to a buggy
82 * kernel on the 2nd hop system -- lbl-csam.arpa -- that forwards
83 * packets with a zero ttl.
84 *
85 * A more interesting example is:
86 *
87 * [yak 72]% traceroute allspice.lcs.mit.edu.
88 * traceroute to allspice.lcs.mit.edu (18.26.0.115), 30 hops max
89 * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
90 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 19 ms 19 ms
91 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 19 ms
92 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 19 ms 39 ms 39 ms
93 * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 20 ms 39 ms 39 ms
94 * 6 128.32.197.4 (128.32.197.4) 59 ms 119 ms 39 ms
95 * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 39 ms
96 * 8 129.140.70.13 (129.140.70.13) 80 ms 79 ms 99 ms
97 * 9 129.140.71.6 (129.140.71.6) 139 ms 139 ms 159 ms
98 * 10 129.140.81.7 (129.140.81.7) 199 ms 180 ms 300 ms
99 * 11 129.140.72.17 (129.140.72.17) 300 ms 239 ms 239 ms
100 * 12 * * *
101 * 13 128.121.54.72 (128.121.54.72) 259 ms 499 ms 279 ms
102 * 14 * * *
103 * 15 * * *
104 * 16 * * *
105 * 17 * * *
106 * 18 ALLSPICE.LCS.MIT.EDU (18.26.0.115) 339 ms 279 ms 279 ms
107 *
108 * (I start to see why I'm having so much trouble with mail to
109 * MIT.) Note that the gateways 12, 14, 15, 16 & 17 hops away
110 * either don't send ICMP "time exceeded" messages or send them
111 * with a ttl too small to reach us. 14 - 17 are running the
112 * MIT C Gateway code that doesn't send "time exceeded"s. God
113 * only knows what's going on with 12.
114 *
115 * The silent gateway 12 in the above may be the result of a bug in
116 * the 4.[23]BSD network code (and its derivatives): 4.x (x <= 3)
117 * sends an unreachable message using whatever ttl remains in the
118 * original datagram. Since, for gateways, the remaining ttl is
119 * zero, the icmp "time exceeded" is guaranteed to not make it back
120 * to us. The behavior of this bug is slightly more interesting
121 * when it appears on the destination system:
122 *
123 * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
124 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 39 ms
125 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 39 ms 19 ms
126 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 19 ms
127 * 5 ccn-nerif35.Berkeley.EDU (128.32.168.35) 39 ms 39 ms 39 ms
128 * 6 csgw.Berkeley.EDU (128.32.133.254) 39 ms 59 ms 39 ms
129 * 7 * * *
130 * 8 * * *
131 * 9 * * *
132 * 10 * * *
133 * 11 * * *
134 * 12 * * *
135 * 13 rip.Berkeley.EDU (128.32.131.22) 59 ms ! 39 ms ! 39 ms !
136 *
137 * Notice that there are 12 "gateways" (13 is the final
138 * destination) and exactly the last half of them are "missing".
139 * What's really happening is that rip (a Sun-3 running Sun OS3.5)
140 * is using the ttl from our arriving datagram as the ttl in its
141 * icmp reply. So, the reply will time out on the return path
142 * (with no notice sent to anyone since icmp's aren't sent for
143 * icmp's) until we probe with a ttl that's at least twice the path
144 * length. I.e., rip is really only 7 hops away. A reply that
145 * returns with a ttl of 1 is a clue this problem exists.
146 * Traceroute prints a "!" after the time if the ttl is <= 1.
147 * Since vendors ship a lot of obsolete (DEC's Ultrix, Sun 3.x) or
148 * non-standard (HPUX) software, expect to see this problem
149 * frequently and/or take care picking the target host of your
150 * probes.
151 *
152 * Other possible annotations after the time are !H, !N, !P (got a host,
153 * network or protocol unreachable, respectively), !S or !F (source
154 * route failed or fragmentation needed -- neither of these should
155 * ever occur and the associated gateway is busted if you see one). If
156 * almost all the probes result in some kind of unreachable, traceroute
157 * will give up and exit.
158 *
Eric Andersen5c58d282001-07-10 16:29:00 +0000159 * Notes
160 * -----
161 * This program must be run by root or be setuid. (I suggest that
162 * you *don't* make it setuid -- casual use could result in a lot
163 * of unnecessary traffic on our poor, congested nets.)
164 *
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000165 * This program requires a kernel mod that does not appear in any
166 * system available from Berkeley: A raw ip socket using proto
167 * IPPROTO_RAW must interpret the data sent as an ip datagram (as
168 * opposed to data to be wrapped in a ip datagram). See the README
169 * file that came with the source to this program for a description
170 * of the mods I made to /sys/netinet/raw_ip.c. Your mileage may
171 * vary. But, again, ANY 4.x (x < 4) BSD KERNEL WILL HAVE TO BE
172 * MODIFIED TO RUN THIS PROGRAM.
173 *
174 * The udp port usage may appear bizarre (well, ok, it is bizarre).
175 * The problem is that an icmp message only contains 8 bytes of
176 * data from the original datagram. 8 bytes is the size of a udp
177 * header so, if we want to associate replies with the original
178 * datagram, the necessary information must be encoded into the
179 * udp header (the ip id could be used but there's no way to
180 * interlock with the kernel's assignment of ip id's and, anyway,
181 * it would have taken a lot more kernel hacking to allow this
182 * code to set the ip id). So, to allow two or more users to
183 * use traceroute simultaneously, we use this task's pid as the
184 * source port (the high bit is set to move the port number out
185 * of the "likely" range). To keep track of which probe is being
186 * replied to (so times and/or hop counts don't get confused by a
187 * reply that was delayed in transit), we increment the destination
188 * port number before each probe.
189 *
190 * Don't use this as a coding example. I was trying to find a
191 * routing problem and this code sort-of popped out after 48 hours
192 * without sleep. I was amazed it ever compiled, much less ran.
193 *
Eric Andersen5c58d282001-07-10 16:29:00 +0000194 * I stole the idea for this program from Steve Deering. Since
195 * the first release, I've learned that had I attended the right
196 * IETF working group meetings, I also could have stolen it from Guy
197 * Almes or Matt Mathis. I don't know (or care) who came up with
198 * the idea first. I envy the originators' perspicacity and I'm
199 * glad they didn't keep the idea a secret.
200 *
201 * Tim Seaver, Ken Adelman and C. Philip Wood provided bug fixes and/or
202 * enhancements to the original distribution.
203 *
204 * I've hacked up a round-trip-route version of this that works by
205 * sending a loose-source-routed udp datagram through the destination
206 * back to yourself. Unfortunately, SO many gateways botch source
207 * routing, the thing is almost worthless. Maybe one day...
208 *
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000209 * -- Van Jacobson (van@ee.lbl.gov)
Eric Andersen5c58d282001-07-10 16:29:00 +0000210 * Tue Dec 20 03:50:13 PST 1988
211 */
212
Pere Orga5bc8c002011-04-11 03:29:49 +0200213//usage:#define traceroute_trivial_usage
214//usage: "[-"IF_TRACEROUTE6("46")"FIldnrv] [-f 1ST_TTL] [-m MAXTTL] [-p PORT] [-q PROBES]\n"
215//usage: " [-s SRC_IP] [-t TOS] [-w WAIT_SEC] [-g GATEWAY] [-i IFACE]\n"
216//usage: " [-z PAUSE_MSEC] HOST [BYTES]"
217//usage:#define traceroute_full_usage "\n\n"
218//usage: "Trace the route to HOST\n"
219//usage: "\nOptions:"
220//usage: IF_TRACEROUTE6(
221//usage: "\n -4,-6 Force IP or IPv6 name resolution"
222//usage: )
223//usage: "\n -F Set the don't fragment bit"
224//usage: "\n -I Use ICMP ECHO instead of UDP datagrams"
225//usage: "\n -l Display the TTL value of the returned packet"
226//usage: "\n -d Set SO_DEBUG options to socket"
227//usage: "\n -n Print numeric addresses"
228//usage: "\n -r Bypass routing tables, send directly to HOST"
229//usage: "\n -v Verbose"
230//usage: "\n -m Max time-to-live (max number of hops)"
231//usage: "\n -p Base UDP port number used in probes"
232//usage: "\n (default 33434)"
233//usage: "\n -q Number of probes per TTL (default 3)"
234//usage: "\n -s IP address to use as the source address"
235//usage: "\n -t Type-of-service in probe packets (default 0)"
236//usage: "\n -w Time in seconds to wait for a response (default 3)"
237//usage: "\n -g Loose source route gateway (8 max)"
238//usage:
239//usage:#define traceroute6_trivial_usage
240//usage: "[-dnrv] [-m MAXTTL] [-p PORT] [-q PROBES]\n"
241//usage: " [-s SRC_IP] [-t TOS] [-w WAIT_SEC] [-i IFACE]\n"
242//usage: " HOST [BYTES]"
243//usage:#define traceroute6_full_usage "\n\n"
244//usage: "Trace the route to HOST\n"
245//usage: "\nOptions:"
246//usage: "\n -d Set SO_DEBUG options to socket"
247//usage: "\n -n Print numeric addresses"
248//usage: "\n -r Bypass routing tables, send directly to HOST"
249//usage: "\n -v Verbose"
250//usage: "\n -m Max time-to-live (max number of hops)"
251//usage: "\n -p Base UDP port number used in probes"
252//usage: "\n (default is 33434)"
253//usage: "\n -q Number of probes per TTL (default 3)"
254//usage: "\n -s IP address to use as the source address"
255//usage: "\n -t Type-of-service in probe packets (default 0)"
256//usage: "\n -w Time in seconds to wait for a response (default 3)"
257
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000258#define TRACEROUTE_SO_DEBUG 0
259
260/* TODO: undefs were uncommented - ??! we have config system for that! */
261/* probably ok to remove altogether */
262//#undef CONFIG_FEATURE_TRACEROUTE_VERBOSE
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000263//#define CONFIG_FEATURE_TRACEROUTE_VERBOSE
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000264//#undef CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000265//#define CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000266//#undef CONFIG_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000267//#define CONFIG_FEATURE_TRACEROUTE_USE_ICMP
Eric Andersen7467c8d2001-07-12 20:26:32 +0000268
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000269
270#include <net/if.h>
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000271#include <arpa/inet.h>
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000272#include <netinet/in.h>
Eric Andersen5c58d282001-07-10 16:29:00 +0000273#include <netinet/udp.h>
274#include <netinet/ip.h>
275#include <netinet/ip_icmp.h>
Denys Vlasenko0d565682009-11-23 06:15:38 +0100276#if ENABLE_FEATURE_IPV6
277# include <netinet/ip6.h>
278# include <netinet/icmp6.h>
279# ifndef SOL_IPV6
280# define SOL_IPV6 IPPROTO_IPV6
281# endif
282#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000283
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000284#include "libbb.h"
Denis Vlasenko703e2022007-01-22 14:12:08 +0000285#include "inet_common.h"
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000286
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000287#ifndef IPPROTO_ICMP
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000288# define IPPROTO_ICMP 1
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000289#endif
290#ifndef IPPROTO_IP
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000291# define IPPROTO_IP 0
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000292#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000293
Denys Vlasenko0d565682009-11-23 06:15:38 +0100294
295#define OPT_STRING "FIlnrdvxt:i:m:p:q:s:w:z:f:" \
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100296 IF_FEATURE_TRACEROUTE_SOURCE_ROUTE("g:") \
297 "4" IF_TRACEROUTE6("6")
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000298enum {
299 OPT_DONT_FRAGMNT = (1 << 0), /* F */
300 OPT_USE_ICMP = (1 << 1) * ENABLE_FEATURE_TRACEROUTE_USE_ICMP, /* I */
301 OPT_TTL_FLAG = (1 << 2), /* l */
302 OPT_ADDR_NUM = (1 << 3), /* n */
303 OPT_BYPASS_ROUTE = (1 << 4), /* r */
304 OPT_DEBUG = (1 << 5), /* d */
305 OPT_VERBOSE = (1 << 6) * ENABLE_FEATURE_TRACEROUTE_VERBOSE, /* v */
306 OPT_IP_CHKSUM = (1 << 7), /* x */
307 OPT_TOS = (1 << 8), /* t */
308 OPT_DEVICE = (1 << 9), /* i */
309 OPT_MAX_TTL = (1 << 10), /* m */
310 OPT_PORT = (1 << 11), /* p */
311 OPT_NPROBES = (1 << 12), /* q */
312 OPT_SOURCE = (1 << 13), /* s */
313 OPT_WAITTIME = (1 << 14), /* w */
314 OPT_PAUSE_MS = (1 << 15), /* z */
315 OPT_FIRST_TTL = (1 << 16), /* f */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100316 OPT_SOURCE_ROUTE = (1 << 17) * ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE, /* g */
317 OPT_IPV4 = (1 << (17+ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE)), /* 4 */
318 OPT_IPV6 = (1 << (18+ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE)) * ENABLE_TRACEROUTE6, /* 6 */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000319};
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000320#define verbose (option_mask32 & OPT_VERBOSE)
Eric Andersen5c58d282001-07-10 16:29:00 +0000321
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000322enum {
323 SIZEOF_ICMP_HDR = 8,
324 rcvsock = 3, /* receive (icmp) socket file descriptor */
325 sndsock = 4, /* send (udp/icmp) socket file descriptor */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000326};
327
328/* Data section of the probe packet */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000329struct outdata_t {
Mike Frysinger294254c2006-02-19 22:59:12 +0000330 unsigned char seq; /* sequence number of this packet */
331 unsigned char ttl; /* ttl packet left with */
Denis Vlasenko459be352007-06-17 19:09:05 +0000332// UNUSED. Retaining to have the same packet size.
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000333 struct timeval tv_UNUSED PACKED; /* time packet left */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000334};
335
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100336#if ENABLE_TRACEROUTE6
337struct outdata6_t {
338 uint32_t ident6;
339 uint32_t seq6;
340 struct timeval tv_UNUSED PACKED; /* time packet left */
341};
342#endif
343
Denis Vlasenko2e723232007-03-29 21:55:22 +0000344struct globals {
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000345 struct ip *outip;
346 struct outdata_t *outdata;
347 len_and_sockaddr *dest_lsa;
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000348 int packlen; /* total length of packet */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000349 int pmtu; /* Path MTU Discovery (RFC1191) */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100350 uint32_t ident;
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000351 uint16_t port; // 32768 + 666; /* start udp dest port # for probe packets */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000352 int waittime; // 5; /* time to wait for response (in seconds) */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000353#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
354 int optlen; /* length of ip options */
355#else
356#define optlen 0
357#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000358 unsigned char recv_pkt[512]; /* last inbound (icmp) packet */
Denis Vlasenko2e723232007-03-29 21:55:22 +0000359#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
360 /* Maximum number of gateways (include room for one noop) */
361#define NGATEWAYS ((int)((MAX_IPOPTLEN - IPOPT_MINOFF - 1) / sizeof(uint32_t)))
362 /* loose source route gateway list (including room for final destination) */
363 uint32_t gwlist[NGATEWAYS + 1];
364#endif
365};
366
367#define G (*ptr_to_globals)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000368#define outip (G.outip )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000369#define outdata (G.outdata )
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000370#define dest_lsa (G.dest_lsa )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000371#define packlen (G.packlen )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000372#define pmtu (G.pmtu )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000373#define ident (G.ident )
374#define port (G.port )
375#define waittime (G.waittime )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000376#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000377# define optlen (G.optlen )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000378#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000379#define recv_pkt (G.recv_pkt )
Denis Vlasenko2e723232007-03-29 21:55:22 +0000380#define gwlist (G.gwlist )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000381#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000382 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000383 port = 32768 + 666; \
384 waittime = 5; \
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000385} while (0)
Denis Vlasenko2e723232007-03-29 21:55:22 +0000386
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000387#define outicmp ((struct icmp *)(outip + 1))
388#define outudp ((struct udphdr *)(outip + 1))
Eric Andersen5c58d282001-07-10 16:29:00 +0000389
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000390
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100391/* libbb candidate? tftp uses this idiom too */
392static len_and_sockaddr* dup_sockaddr(const len_and_sockaddr *lsa)
393{
394 len_and_sockaddr *new_lsa = xzalloc(LSA_LEN_SIZE + lsa->len);
395 memcpy(new_lsa, lsa, LSA_LEN_SIZE + lsa->len);
396 return new_lsa;
397}
398
399
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000400static int
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200401wait_for_reply(len_and_sockaddr *from_lsa, struct sockaddr *to, unsigned *timestamp_us, int *left_ms)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000402{
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000403 struct pollfd pfd[1];
Denys Vlasenko0d565682009-11-23 06:15:38 +0100404 int read_len = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000405
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000406 pfd[0].fd = rcvsock;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000407 pfd[0].events = POLLIN;
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200408 if (*left_ms >= 0 && safe_poll(pfd, 1, *left_ms) > 0) {
409 unsigned t;
410
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100411 read_len = recv_from_to(rcvsock,
412 recv_pkt, sizeof(recv_pkt),
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200413 /*flags:*/ MSG_DONTWAIT,
Denys Vlasenko3581c622010-01-25 13:39:24 +0100414 &from_lsa->u.sa, to, from_lsa->len);
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200415 t = monotonic_us();
416 *left_ms -= (t - *timestamp_us) / 1000;
417 *timestamp_us = t;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100418 }
419
Denys Vlasenko0d565682009-11-23 06:15:38 +0100420 return read_len;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000421}
422
423/*
424 * Checksum routine for Internet Protocol family headers (C Version)
425 */
Denis Vlasenko28703012006-12-19 20:32:02 +0000426static uint16_t
427in_cksum(uint16_t *addr, int len)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000428{
429 int nleft = len;
Denis Vlasenko28703012006-12-19 20:32:02 +0000430 uint16_t *w = addr;
431 uint16_t answer;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000432 int sum = 0;
433
434 /*
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000435 * Our algorithm is simple, using a 32 bit accumulator (sum),
436 * we add sequential 16 bit words to it, and at the end, fold
437 * back all the carry bits from the top 16 bits into the lower
438 * 16 bits.
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000439 */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000440 while (nleft > 1) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000441 sum += *w++;
442 nleft -= 2;
443 }
444
445 /* mop up an odd byte, if necessary */
446 if (nleft == 1)
Mike Frysinger294254c2006-02-19 22:59:12 +0000447 sum += *(unsigned char *)w;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000448
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000449 /* add back carry outs from top 16 bits to low 16 bits */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000450 sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
451 sum += (sum >> 16); /* add carry */
452 answer = ~sum; /* truncate to 16 bits */
453 return answer;
454}
455
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000456static void
Denis Vlasenko459be352007-06-17 19:09:05 +0000457send_probe(int seq, int ttl)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000458{
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000459 int len, res;
460 void *out;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000461
462 /* Payload */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100463#if ENABLE_TRACEROUTE6
464 if (dest_lsa->u.sa.sa_family == AF_INET6) {
465 struct outdata6_t *pkt = (struct outdata6_t *) outip;
466 pkt->ident6 = htonl(ident);
467 pkt->seq6 = htonl(seq);
468 /*gettimeofday(&pkt->tv, &tz);*/
469 } else
470#endif
471 {
472 outdata->seq = seq;
473 outdata->ttl = ttl;
Denis Vlasenko459be352007-06-17 19:09:05 +0000474// UNUSED: was storing gettimeofday's result there, but never ever checked it
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100475 /*memcpy(&outdata->tv, tp, sizeof(outdata->tv));*/
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000476
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100477 if (option_mask32 & OPT_USE_ICMP) {
478 outicmp->icmp_seq = htons(seq);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000479
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100480 /* Always calculate checksum for icmp packets */
481 outicmp->icmp_cksum = 0;
482 outicmp->icmp_cksum = in_cksum((uint16_t *)outicmp,
483 packlen - (sizeof(*outip) + optlen));
484 if (outicmp->icmp_cksum == 0)
485 outicmp->icmp_cksum = 0xffff;
486 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000487 }
488
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000489//BUG! verbose is (x & OPT_VERBOSE), not a counter!
490#if 0 //ENABLE_FEATURE_TRACEROUTE_VERBOSE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000491 /* XXX undocumented debugging hack */
492 if (verbose > 1) {
Denis Vlasenko28703012006-12-19 20:32:02 +0000493 const uint16_t *sp;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000494 int nshorts, i;
495
Denis Vlasenko28703012006-12-19 20:32:02 +0000496 sp = (uint16_t *)outip;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000497 nshorts = (unsigned)packlen / sizeof(uint16_t);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000498 i = 0;
499 printf("[ %d bytes", packlen);
500 while (--nshorts >= 0) {
501 if ((i++ % 8) == 0)
502 printf("\n\t");
503 printf(" %04x", ntohs(*sp));
504 sp++;
505 }
506 if (packlen & 1) {
507 if ((i % 8) == 0)
508 printf("\n\t");
Mike Frysinger294254c2006-02-19 22:59:12 +0000509 printf(" %02x", *(unsigned char *)sp);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000510 }
511 printf("]\n");
512 }
513#endif
514
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100515#if ENABLE_TRACEROUTE6
516 if (dest_lsa->u.sa.sa_family == AF_INET6) {
517 res = setsockopt(sndsock, SOL_IPV6, IPV6_UNICAST_HOPS, &ttl, sizeof(ttl));
518 if (res < 0)
519 bb_perror_msg_and_die("setsockopt UNICAST_HOPS %d", ttl);
520 out = outip;
521 len = packlen;
522 } else
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000523#endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100524 {
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100525#if defined IP_TTL
526 res = setsockopt(sndsock, IPPROTO_IP, IP_TTL, &ttl, sizeof(ttl));
527 if (res < 0)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100528 bb_perror_msg_and_die("setsockopt ttl %d", ttl);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100529#endif
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100530 out = outicmp;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100531 len = packlen - sizeof(*outip);
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100532 if (!(option_mask32 & OPT_USE_ICMP)) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100533 out = outdata;
534 len -= sizeof(*outudp);
Denys Vlasenkoca183112011-04-07 17:52:20 +0200535 set_nport(&dest_lsa->u.sa, htons(port + seq));
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100536 }
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000537 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100538
Denys Vlasenko0d565682009-11-23 06:15:38 +0100539 res = xsendto(sndsock, out, len, &dest_lsa->u.sa, dest_lsa->len);
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100540 if (res != len)
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000541 bb_info_msg("sent %d octets, ret=%d", len, res);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000542}
543
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000544#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000545/*
546 * Convert an ICMP "type" field to a printable string.
547 */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100548static const char *
Mike Frysinger294254c2006-02-19 22:59:12 +0000549pr_type(unsigned char t)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000550{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000551 static const char *const ttab[] = {
Eric Andersen7467c8d2001-07-12 20:26:32 +0000552 "Echo Reply", "ICMP 1", "ICMP 2", "Dest Unreachable",
553 "Source Quench", "Redirect", "ICMP 6", "ICMP 7",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000554 "Echo", "Router Advert", "Router Solicit", "Time Exceeded",
Eric Andersen7467c8d2001-07-12 20:26:32 +0000555 "Param Problem", "Timestamp", "Timestamp Reply", "Info Request",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000556 "Info Reply", "Mask Request", "Mask Reply"
Eric Andersen7467c8d2001-07-12 20:26:32 +0000557 };
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100558# if ENABLE_TRACEROUTE6
559 static const char *const ttab6[] = {
560[0] "Error", "Dest Unreachable", "Packet Too Big", "Time Exceeded",
561[4] "Param Problem",
562[8] "Echo Request", "Echo Reply", "Membership Query", "Membership Report",
563[12] "Membership Reduction", "Router Solicit", "Router Advert", "Neighbor Solicit",
564[16] "Neighbor Advert", "Redirect",
565 };
Eric Andersen7467c8d2001-07-12 20:26:32 +0000566
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100567 if (dest_lsa->u.sa.sa_family == AF_INET6) {
568 if (t < 5)
569 return ttab6[t];
570 if (t < 128 || t > ND_REDIRECT)
571 return "OUT-OF-RANGE";
572 return ttab6[(t & 63) + 8];
573 }
574# endif
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000575 if (t >= ARRAY_SIZE(ttab))
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000576 return "OUT-OF-RANGE";
Eric Andersen7467c8d2001-07-12 20:26:32 +0000577
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000578 return ttab[t];
Eric Andersen7467c8d2001-07-12 20:26:32 +0000579}
580#endif
581
Denis Vlasenko85c24712008-03-17 09:04:04 +0000582#if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100583#define packet4_ok(read_len, from, seq) \
584 packet4_ok(read_len, seq)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000585#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000586static int
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100587packet4_ok(int read_len, const struct sockaddr_in *from, int seq)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000588{
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000589 const struct icmp *icp;
Mike Frysinger294254c2006-02-19 22:59:12 +0000590 unsigned char type, code;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000591 int hlen;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000592 const struct ip *ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000593
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000594 ip = (struct ip *) recv_pkt;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000595 hlen = ip->ip_hl << 2;
Denys Vlasenko0d565682009-11-23 06:15:38 +0100596 if (read_len < hlen + ICMP_MINLEN) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000597#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000598 if (verbose)
Denys Vlasenko0d565682009-11-23 06:15:38 +0100599 printf("packet too short (%d bytes) from %s\n", read_len,
Eric Andersen7467c8d2001-07-12 20:26:32 +0000600 inet_ntoa(from->sin_addr));
601#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000602 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000603 }
Denys Vlasenko0d565682009-11-23 06:15:38 +0100604 read_len -= hlen;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000605 icp = (struct icmp *)(recv_pkt + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000606 type = icp->icmp_type;
607 code = icp->icmp_code;
608 /* Path MTU Discovery (RFC1191) */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000609 pmtu = 0;
610 if (code == ICMP_UNREACH_NEEDFRAG)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000611 pmtu = ntohs(icp->icmp_nextmtu);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000612
613 if ((type == ICMP_TIMXCEED && code == ICMP_TIMXCEED_INTRANS)
614 || type == ICMP_UNREACH
615 || type == ICMP_ECHOREPLY
616 ) {
617 const struct ip *hip;
618 const struct udphdr *up;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000619
620 hip = &icp->icmp_ip;
621 hlen = hip->ip_hl << 2;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000622 if (option_mask32 & OPT_USE_ICMP) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000623 struct icmp *hicmp;
624
625 /* XXX */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000626 if (type == ICMP_ECHOREPLY
627 && icp->icmp_id == htons(ident)
628 && icp->icmp_seq == htons(seq)
629 ) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100630 return ICMP_UNREACH_PORT+1;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000631 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000632
Mike Frysinger294254c2006-02-19 22:59:12 +0000633 hicmp = (struct icmp *)((unsigned char *)hip + hlen);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100634 if (hlen + SIZEOF_ICMP_HDR <= read_len
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000635 && hip->ip_p == IPPROTO_ICMP
636 && hicmp->icmp_id == htons(ident)
637 && hicmp->icmp_seq == htons(seq)
638 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000639 return (type == ICMP_TIMXCEED ? -1 : code + 1);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000640 }
641 } else {
642 up = (struct udphdr *)((char *)hip + hlen);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100643 if (hlen + 12 <= read_len
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000644 && hip->ip_p == IPPROTO_UDP
645// Off: since we do not form the entire IP packet,
646// but defer it to kernel, we can't set source port,
647// and thus can't check it here in the reply
648 /* && up->source == htons(ident) */
649 && up->dest == htons(port + seq)
650 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000651 return (type == ICMP_TIMXCEED ? -1 : code + 1);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000652 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000653 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000654 }
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000655#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000656 if (verbose) {
657 int i;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000658 uint32_t *lp = (uint32_t *)&icp->icmp_ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000659
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000660 printf("\n%d bytes from %s to "
661 "%s: icmp type %d (%s) code %d\n",
Denys Vlasenko0d565682009-11-23 06:15:38 +0100662 read_len, inet_ntoa(from->sin_addr),
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000663 inet_ntoa(ip->ip_dst),
664 type, pr_type(type), icp->icmp_code);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100665 for (i = 4; i < read_len; i += sizeof(*lp))
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000666 printf("%2d: x%8.8x\n", i, *lp++);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000667 }
668#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000669 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000670}
671
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100672#if ENABLE_TRACEROUTE6
673# if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
674#define packet_ok(read_len, from_lsa, to, seq) \
675 packet_ok(read_len, from_lsa, seq)
676# endif
677static int
678packet_ok(int read_len, len_and_sockaddr *from_lsa,
679 struct sockaddr *to,
680 int seq)
681{
682 const struct icmp6_hdr *icp;
683 unsigned char type, code;
684
685 if (from_lsa->u.sa.sa_family == AF_INET)
686 return packet4_ok(read_len, &from_lsa->u.sin, seq);
687
688 icp = (struct icmp6_hdr *) recv_pkt;
689
690 type = icp->icmp6_type;
691 code = icp->icmp6_code;
692
693 if ((type == ICMP6_TIME_EXCEEDED && code == ICMP6_TIME_EXCEED_TRANSIT)
694 || type == ICMP6_DST_UNREACH
695 ) {
696 struct ip6_hdr *hip;
697 struct udphdr *up;
698 int nexthdr;
699
700 hip = (struct ip6_hdr *)(icp + 1);
701 up = (struct udphdr *) (hip + 1);
702 nexthdr = hip->ip6_nxt;
703
704 if (nexthdr == IPPROTO_FRAGMENT) {
705 nexthdr = *(unsigned char*)up;
706 up++;
707 }
708 if (nexthdr == IPPROTO_UDP) {
709 struct outdata6_t *pkt;
710
711 pkt = (struct outdata6_t *) (up + 1);
712
713 if (ntohl(pkt->ident6) == ident
714 && ntohl(pkt->seq6) == seq
715 ) {
716 return (type == ICMP6_TIME_EXCEEDED ? -1 : (code<<8)+1);
717 }
718 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100719 }
720
721# if ENABLE_FEATURE_TRACEROUTE_VERBOSE
722 if (verbose) {
723 unsigned char *p;
724 char pa1[MAXHOSTNAMELEN];
725 char pa2[MAXHOSTNAMELEN];
726 int i;
727
728 p = (unsigned char *) (icp + 1);
729
730 printf("\n%d bytes from %s to "
731 "%s: icmp type %d (%s) code %d\n",
732 read_len,
733 inet_ntop(AF_INET6, &from_lsa->u.sin6.sin6_addr, pa1, sizeof(pa1)),
734 inet_ntop(AF_INET6, &((struct sockaddr_in6*)to)->sin6_addr, pa2, sizeof(pa2)),
735 type, pr_type(type), icp->icmp6_code);
736
737 read_len -= sizeof(struct icmp6_hdr);
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200738 for (i = 0; i < read_len; i++) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100739 if (i % 16 == 0)
740 printf("%04x:", i);
741 if (i % 4 == 0)
742 bb_putchar(' ');
743 printf("%02x", p[i]);
744 if ((i % 16 == 15) && (i + 1 < read_len))
745 bb_putchar('\n');
746 }
747 bb_putchar('\n');
748 }
749# endif
750
751 return 0;
752}
753#else /* !ENABLE_TRACEROUTE6 */
754static ALWAYS_INLINE int
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100755packet_ok(int read_len,
756 len_and_sockaddr *from_lsa IF_NOT_FEATURE_TRACEROUTE_VERBOSE(UNUSED_PARAM),
757 struct sockaddr *to UNUSED_PARAM,
758 int seq)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100759{
760 return packet4_ok(read_len, &from_lsa->u.sin, seq);
761}
762#endif
763
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000764/*
765 * Construct an Internet address representation.
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000766 * If the -n flag has been supplied, give
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000767 * numeric value, otherwise try for symbolic name.
768 */
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000769static void
Denys Vlasenko0d565682009-11-23 06:15:38 +0100770print_inetname(const struct sockaddr *from)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000771{
Denys Vlasenko0d565682009-11-23 06:15:38 +0100772 char *ina = xmalloc_sockaddr2dotted_noport(from);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000773
Denys Vlasenko0d565682009-11-23 06:15:38 +0100774 if (option_mask32 & OPT_ADDR_NUM) {
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000775 printf(" %s", ina);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100776 } else {
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000777 char *n = NULL;
Denys Vlasenko0d565682009-11-23 06:15:38 +0100778
779 if (from->sa_family != AF_INET
780 || ((struct sockaddr_in*)from)->sin_addr.s_addr != INADDR_ANY
781 ) {
782 /* Try to reverse resolve if it is not 0.0.0.0 */
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000783 n = xmalloc_sockaddr2host_noport((struct sockaddr*)from);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100784 }
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000785 printf(" %s (%s)", (n ? n : ina), ina);
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000786 free(n);
787 }
Denys Vlasenko0d565682009-11-23 06:15:38 +0100788 free(ina);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000789}
790
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000791static void
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100792print(int read_len, const struct sockaddr *from, const struct sockaddr *to)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000793{
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100794 print_inetname(from);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000795
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100796 if (verbose) {
797 char *ina = xmalloc_sockaddr2dotted_noport(to);
798#if ENABLE_TRACEROUTE6
799 if (to->sa_family == AF_INET6) {
800 read_len -= sizeof(struct ip6_hdr);
801 } else
802#endif
803 {
Denys Vlasenkodd169e82011-01-20 12:13:23 +0100804 struct ip *ip4packet = (struct ip*)recv_pkt;
805 read_len -= ip4packet->ip_hl << 2;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100806 }
807 printf(" %d bytes to %s", read_len, ina);
808 free(ina);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000809 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000810}
811
812static void
Denis Vlasenko459be352007-06-17 19:09:05 +0000813print_delta_ms(unsigned t1p, unsigned t2p)
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000814{
Denis Vlasenko459be352007-06-17 19:09:05 +0000815 unsigned tt = t2p - t1p;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000816 printf(" %u.%03u ms", tt / 1000, tt % 1000);
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000817}
Eric Andersen7467c8d2001-07-12 20:26:32 +0000818
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000819/*
Denys Vlasenko0d565682009-11-23 06:15:38 +0100820 * Usage: [-dFIlnrvx] [-g gateway] [-i iface] [-f first_ttl]
821 * [-m max_ttl] [ -p port] [-q nqueries] [-s src_addr] [-t tos]
822 * [-w waittime] [-z pausemsecs] host [packetlen]"
823 */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100824static int
825common_traceroute_main(int op, char **argv)
Eric Andersen5c58d282001-07-10 16:29:00 +0000826{
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000827 int minpacket;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000828 int tos = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000829 int max_ttl = 30;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000830 int nprobes = 3;
831 int first_ttl = 1;
832 unsigned pausemsecs = 0;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000833 char *source;
834 char *device;
835 char *tos_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000836 char *max_ttl_str;
837 char *port_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000838 char *nprobes_str;
839 char *waittime_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000840 char *pausemsecs_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000841 char *first_ttl_str;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000842#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000843 llist_t *source_route_list = NULL;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000844 int lsrr = 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000845#endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100846#if ENABLE_TRACEROUTE6
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100847 sa_family_t af;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100848#else
849 enum { af = AF_INET };
850#endif
Denys Vlasenko0d565682009-11-23 06:15:38 +0100851 int ttl;
852 int seq;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100853 len_and_sockaddr *from_lsa;
854 struct sockaddr *lastaddr;
855 struct sockaddr *to;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000856
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000857 INIT_G();
Denis Vlasenko2e723232007-03-29 21:55:22 +0000858
Denys Vlasenko0d565682009-11-23 06:15:38 +0100859 /* minimum 1 arg */
860 opt_complementary = "-1:x-x" IF_FEATURE_TRACEROUTE_SOURCE_ROUTE(":g::");
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100861 op |= getopt32(argv, OPT_STRING
Denis Vlasenko2e723232007-03-29 21:55:22 +0000862 , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str
863 , &source, &waittime_str, &pausemsecs_str, &first_ttl_str
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000864#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000865 , &source_route_list
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000866#endif
867 );
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100868 argv += optind;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000869
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000870#if 0 /* IGNORED */
871 if (op & OPT_IP_CHKSUM)
Denis Vlasenko13858992006-10-08 12:49:22 +0000872 bb_error_msg("warning: ip checksums disabled");
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000873#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000874 if (op & OPT_TOS)
875 tos = xatou_range(tos_str, 0, 255);
876 if (op & OPT_MAX_TTL)
877 max_ttl = xatou_range(max_ttl_str, 1, 255);
878 if (op & OPT_PORT)
Denis Vlasenko13858992006-10-08 12:49:22 +0000879 port = xatou16(port_str);
Denis Vlasenko2e723232007-03-29 21:55:22 +0000880 if (op & OPT_NPROBES)
881 nprobes = xatou_range(nprobes_str, 1, INT_MAX);
882 if (op & OPT_SOURCE) {
Denis Vlasenko92758142006-10-03 19:56:34 +0000883 /*
884 * set the ip source address of the outbound
885 * probe (e.g., on a multi-homed host).
886 */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000887 if (getuid() != 0)
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100888 bb_error_msg_and_die(bb_msg_you_must_be_root);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000889 }
Denis Vlasenko2e723232007-03-29 21:55:22 +0000890 if (op & OPT_WAITTIME)
Denis Vlasenkobdea2c02009-01-24 21:23:41 +0000891 waittime = xatou_range(waittime_str, 1, 24 * 60 * 60);
Denis Vlasenko2e723232007-03-29 21:55:22 +0000892 if (op & OPT_PAUSE_MS)
893 pausemsecs = xatou_range(pausemsecs_str, 0, 60 * 60 * 1000);
894 if (op & OPT_FIRST_TTL)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000895 first_ttl = xatou_range(first_ttl_str, 1, max_ttl);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000896
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000897#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000898 if (source_route_list) {
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000899 while (source_route_list) {
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000900 len_and_sockaddr *lsa;
901
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000902 if (lsrr >= NGATEWAYS)
Denis Vlasenko92758142006-10-03 19:56:34 +0000903 bb_error_msg_and_die("no more than %d gateways", NGATEWAYS);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000904 lsa = xhost_and_af2sockaddr(llist_pop(&source_route_list), 0, AF_INET);
905 gwlist[lsrr] = lsa->u.sin.sin_addr.s_addr;
906 free(lsa);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000907 ++lsrr;
Eric Andersen5c58d282001-07-10 16:29:00 +0000908 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000909 optlen = (lsrr + 1) * sizeof(gwlist[0]);
910 }
911#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000912
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100913 /* Process destination and optional packet size */
914 minpacket = sizeof(*outip) + SIZEOF_ICMP_HDR + sizeof(*outdata) + optlen;
915 if (!(op & OPT_USE_ICMP))
916 minpacket += sizeof(*outudp) - SIZEOF_ICMP_HDR;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100917#if ENABLE_TRACEROUTE6
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100918 af = AF_UNSPEC;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100919 if (op & OPT_IPV4)
920 af = AF_INET;
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100921 if (op & OPT_IPV6)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100922 af = AF_INET6;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100923 dest_lsa = xhost_and_af2sockaddr(argv[0], port, af);
924 af = dest_lsa->u.sa.sa_family;
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100925 if (af == AF_INET6)
926 minpacket = sizeof(struct outdata6_t);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100927#else
Denys Vlasenko0d565682009-11-23 06:15:38 +0100928 dest_lsa = xhost2sockaddr(argv[0], port);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100929#endif
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100930 packlen = minpacket;
931 if (argv[1])
932 packlen = xatoul_range(argv[1], minpacket, 32 * 1024);
Eric Andersen5c58d282001-07-10 16:29:00 +0000933
Denis Vlasenkoe06bed32007-01-27 22:21:12 +0000934 /* Ensure the socket fds won't be 0, 1 or 2 */
935 bb_sanitize_stdio();
Eric Andersen5c58d282001-07-10 16:29:00 +0000936
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100937#if ENABLE_TRACEROUTE6
938 if (af == AF_INET6) {
939 xmove_fd(xsocket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6), rcvsock);
940# ifdef IPV6_RECVPKTINFO
941 setsockopt(rcvsock, SOL_IPV6, IPV6_RECVPKTINFO,
942 &const_int_1, sizeof(const_int_1));
943 setsockopt(rcvsock, SOL_IPV6, IPV6_2292PKTINFO,
944 &const_int_1, sizeof(const_int_1));
945# else
946 setsockopt(rcvsock, SOL_IPV6, IPV6_PKTINFO,
947 &const_int_1, sizeof(const_int_1));
948# endif
949 } else
950#endif
951 {
952 xmove_fd(xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP), rcvsock);
953 }
954
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000955#if TRACEROUTE_SO_DEBUG
Denis Vlasenko2e723232007-03-29 21:55:22 +0000956 if (op & OPT_DEBUG)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000957 setsockopt(rcvsock, SOL_SOCKET, SO_DEBUG,
Denis Vlasenko703e2022007-01-22 14:12:08 +0000958 &const_int_1, sizeof(const_int_1));
Eric Andersen7467c8d2001-07-12 20:26:32 +0000959#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000960 if (op & OPT_BYPASS_ROUTE)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000961 setsockopt(rcvsock, SOL_SOCKET, SO_DONTROUTE,
Denis Vlasenko703e2022007-01-22 14:12:08 +0000962 &const_int_1, sizeof(const_int_1));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000963
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100964#if ENABLE_TRACEROUTE6
965 if (af == AF_INET6) {
966 static const int two = 2;
967 if (setsockopt(rcvsock, SOL_RAW, IPV6_CHECKSUM, &two, sizeof(two)) < 0)
968 bb_perror_msg_and_die("setsockopt RAW_CHECKSUM");
969 xmove_fd(xsocket(af, SOCK_DGRAM, 0), sndsock);
970 } else
Denys Vlasenko0d565682009-11-23 06:15:38 +0100971#endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100972 {
973 if (op & OPT_USE_ICMP)
974 xmove_fd(xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP), sndsock);
975 else
976 xmove_fd(xsocket(AF_INET, SOCK_DGRAM, 0), sndsock);
977#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE && defined IP_OPTIONS
978 if (lsrr > 0) {
979 unsigned char optlist[MAX_IPOPTLEN];
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200980 unsigned size;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100981
982 /* final hop */
983 gwlist[lsrr] = dest_lsa->u.sin.sin_addr.s_addr;
984 ++lsrr;
985
986 /* force 4 byte alignment */
987 optlist[0] = IPOPT_NOP;
988 /* loose source route option */
989 optlist[1] = IPOPT_LSRR;
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200990 size = lsrr * sizeof(gwlist[0]);
991 optlist[2] = size + 3;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100992 /* pointer to LSRR addresses */
993 optlist[3] = IPOPT_MINOFF;
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200994 memcpy(optlist + 4, gwlist, size);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100995
996 if (setsockopt(sndsock, IPPROTO_IP, IP_OPTIONS,
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200997 (char *)optlist, size + sizeof(gwlist[0])) < 0) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100998 bb_perror_msg_and_die("IP_OPTIONS");
999 }
1000 }
1001#endif
1002 }
1003
Eric Andersen5c58d282001-07-10 16:29:00 +00001004#ifdef SO_SNDBUF
Denis Vlasenko703e2022007-01-22 14:12:08 +00001005 if (setsockopt(sndsock, SOL_SOCKET, SO_SNDBUF, &packlen, sizeof(packlen)) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001006 bb_perror_msg_and_die("SO_SNDBUF");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001007 }
Eric Andersenad79c0b2002-06-06 12:24:51 +00001008#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001009#ifdef IP_TOS
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001010 if ((op & OPT_TOS) && setsockopt(sndsock, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001011 bb_perror_msg_and_die("setsockopt tos %d", tos);
1012 }
1013#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001014#ifdef IP_DONTFRAG
1015 if (op & OPT_DONT_FRAGMNT)
1016 setsockopt(sndsock, IPPROTO_IP, IP_DONTFRAG,
1017 &const_int_1, sizeof(const_int_1));
Eric Andersenad79c0b2002-06-06 12:24:51 +00001018#endif
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001019#if TRACEROUTE_SO_DEBUG
Denis Vlasenko2e723232007-03-29 21:55:22 +00001020 if (op & OPT_DEBUG)
Denis Vlasenko703e2022007-01-22 14:12:08 +00001021 setsockopt(sndsock, SOL_SOCKET, SO_DEBUG,
1022 &const_int_1, sizeof(const_int_1));
Eric Andersen7467c8d2001-07-12 20:26:32 +00001023#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +00001024 if (op & OPT_BYPASS_ROUTE)
Denis Vlasenko703e2022007-01-22 14:12:08 +00001025 setsockopt(sndsock, SOL_SOCKET, SO_DONTROUTE,
1026 &const_int_1, sizeof(const_int_1));
Eric Andersen5c58d282001-07-10 16:29:00 +00001027
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001028 outip = xzalloc(packlen);
1029
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001030 ident = getpid();
1031
1032 if (af == AF_INET) {
1033 if (op & OPT_USE_ICMP) {
1034 ident |= 0x8000;
1035 outicmp->icmp_type = ICMP_ECHO;
1036 outicmp->icmp_id = htons(ident);
1037 outdata = (struct outdata_t *)((char *)outicmp + SIZEOF_ICMP_HDR);
1038 } else {
1039 outdata = (struct outdata_t *)(outudp + 1);
1040 }
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001041 }
1042
1043 if (op & OPT_DEVICE) /* hmm, do we need error check? */
1044 setsockopt_bindtodevice(sndsock, device);
1045
1046 if (op & OPT_SOURCE) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001047#if ENABLE_TRACEROUTE6
1048// TODO: need xdotted_and_af2sockaddr?
1049 len_and_sockaddr *source_lsa = xhost_and_af2sockaddr(source, 0, af);
1050#else
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001051 len_and_sockaddr *source_lsa = xdotted2sockaddr(source, 0);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001052#endif
1053 /* Ping4 does this (why?) */
1054 if (af == AF_INET)
1055 if (setsockopt(sndsock, IPPROTO_IP, IP_MULTICAST_IF,
1056 &source_lsa->u.sa, source_lsa->len))
1057 bb_error_msg_and_die("can't set multicast source interface");
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001058//TODO: we can query source port we bound to,
1059// and check it in replies... if we care enough
1060 xbind(sndsock, &source_lsa->u.sa, source_lsa->len);
1061 free(source_lsa);
1062 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001063#if ENABLE_TRACEROUTE6
1064 else if (af == AF_INET6) {
1065//TODO: why we don't do it for IPv4?
1066 len_and_sockaddr *source_lsa;
1067
1068 int probe_fd = xsocket(af, SOCK_DGRAM, 0);
1069 if (op & OPT_DEVICE)
1070 setsockopt_bindtodevice(probe_fd, device);
Denys Vlasenkoca183112011-04-07 17:52:20 +02001071 set_nport(&dest_lsa->u.sa, htons(1025));
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001072 /* dummy connect. makes kernel pick source IP (and port) */
1073 xconnect(probe_fd, &dest_lsa->u.sa, dest_lsa->len);
Denys Vlasenkoca183112011-04-07 17:52:20 +02001074 set_nport(&dest_lsa->u.sa, htons(port));
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001075
1076 /* read IP and port */
1077 source_lsa = get_sock_lsa(probe_fd);
1078 if (source_lsa == NULL)
1079 bb_error_msg_and_die("can't get probe addr");
1080
1081 close(probe_fd);
1082
1083 /* bind our sockets to this IP (but not port) */
Denys Vlasenkoca183112011-04-07 17:52:20 +02001084 set_nport(&source_lsa->u.sa, 0);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001085 xbind(sndsock, &source_lsa->u.sa, source_lsa->len);
1086 xbind(rcvsock, &source_lsa->u.sa, source_lsa->len);
1087
1088 free(source_lsa);
1089 }
1090#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001091
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001092 /* Revert to non-privileged user after opening sockets */
Rob Landleyafb94ec2006-07-16 08:06:34 +00001093 xsetgid(getgid());
1094 xsetuid(getuid());
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001095
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001096 printf("traceroute to %s (%s)", argv[0],
1097 xmalloc_sockaddr2dotted_noport(&dest_lsa->u.sa));
Denis Vlasenko2e723232007-03-29 21:55:22 +00001098 if (op & OPT_SOURCE)
1099 printf(" from %s", source);
1100 printf(", %d hops max, %d byte packets\n", max_ttl, packlen);
Eric Andersen5c58d282001-07-10 16:29:00 +00001101
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001102 from_lsa = dup_sockaddr(dest_lsa);
1103 lastaddr = xzalloc(dest_lsa->len);
1104 to = xzalloc(dest_lsa->len);
Denys Vlasenko0d565682009-11-23 06:15:38 +01001105 seq = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001106 for (ttl = first_ttl; ttl <= max_ttl; ++ttl) {
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001107 int probe;
1108 int unreachable = 0; /* counter */
1109 int gotlastaddr = 0; /* flags */
Eric Andersen5c58d282001-07-10 16:29:00 +00001110 int got_there = 0;
Eric Andersen5c58d282001-07-10 16:29:00 +00001111
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001112 printf("%2d", ttl);
Eric Andersen5c58d282001-07-10 16:29:00 +00001113 for (probe = 0; probe < nprobes; ++probe) {
Denys Vlasenko0d565682009-11-23 06:15:38 +01001114 int read_len;
Denis Vlasenko459be352007-06-17 19:09:05 +00001115 unsigned t1;
1116 unsigned t2;
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001117 int left_ms;
Eric Andersen5c58d282001-07-10 16:29:00 +00001118 struct ip *ip;
1119
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001120 fflush_all();
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001121 if (probe != 0 && pausemsecs > 0)
1122 usleep(pausemsecs * 1000);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001123
Denis Vlasenko459be352007-06-17 19:09:05 +00001124 send_probe(++seq, ttl);
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001125 t2 = t1 = monotonic_us();
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001126
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001127 left_ms = waittime * 1000;
1128 while ((read_len = wait_for_reply(from_lsa, to, &t2, &left_ms)) != 0) {
1129 int icmp_code;
1130
1131 /* Recv'ed a packet, or read error */
1132 /* t2 = monotonic_us() - set by wait_for_reply */
1133
1134 if (read_len < 0)
1135 continue;
1136 icmp_code = packet_ok(read_len, from_lsa, to, seq);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001137 /* Skip short packet */
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001138 if (icmp_code == 0)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001139 continue;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001140
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001141 if (!gotlastaddr
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001142 || (memcmp(lastaddr, &from_lsa->u.sa, from_lsa->len) != 0)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001143 ) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001144 print(read_len, &from_lsa->u.sa, to);
1145 memcpy(lastaddr, &from_lsa->u.sa, from_lsa->len);
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001146 gotlastaddr = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001147 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001148
Denis Vlasenko459be352007-06-17 19:09:05 +00001149 print_delta_ms(t1, t2);
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001150 ip = (struct ip *)recv_pkt;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001151
1152 if (from_lsa->u.sa.sa_family == AF_INET)
1153 if (op & OPT_TTL_FLAG)
1154 printf(" (%d)", ip->ip_ttl);
1155
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001156 /* time exceeded in transit */
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001157 if (icmp_code == -1)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001158 break;
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001159 icmp_code--;
1160 switch (icmp_code) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001161#if ENABLE_TRACEROUTE6
1162 case ICMP6_DST_UNREACH_NOPORT << 8:
1163 got_there = 1;
1164 break;
1165#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001166 case ICMP_UNREACH_PORT:
1167 if (ip->ip_ttl <= 1)
1168 printf(" !");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001169 got_there = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001170 break;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001171
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001172 case ICMP_UNREACH_NET:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001173#if ENABLE_TRACEROUTE6 && (ICMP6_DST_UNREACH_NOROUTE != ICMP_UNREACH_NET)
1174 case ICMP6_DST_UNREACH_NOROUTE << 8:
1175#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001176 printf(" !N");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001177 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001178 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001179 case ICMP_UNREACH_HOST:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001180#if ENABLE_TRACEROUTE6
1181 case ICMP6_DST_UNREACH_ADDR << 8:
1182#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001183 printf(" !H");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001184 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001185 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001186 case ICMP_UNREACH_PROTOCOL:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001187 printf(" !P");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001188 got_there = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001189 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001190 case ICMP_UNREACH_NEEDFRAG:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001191 printf(" !F-%d", pmtu);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001192 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001193 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001194 case ICMP_UNREACH_SRCFAIL:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001195#if ENABLE_TRACEROUTE6
1196 case ICMP6_DST_UNREACH_ADMIN << 8:
1197#endif
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001198 printf(" !S");
1199 ++unreachable;
1200 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001201 case ICMP_UNREACH_FILTER_PROHIB:
1202 case ICMP_UNREACH_NET_PROHIB: /* misuse */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001203 printf(" !A");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001204 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001205 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001206 case ICMP_UNREACH_HOST_PROHIB:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001207 printf(" !C");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001208 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001209 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001210 case ICMP_UNREACH_HOST_PRECEDENCE:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001211 printf(" !V");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001212 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001213 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001214 case ICMP_UNREACH_PRECEDENCE_CUTOFF:
1215 printf(" !C");
1216 ++unreachable;
1217 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001218 case ICMP_UNREACH_NET_UNKNOWN:
1219 case ICMP_UNREACH_HOST_UNKNOWN:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001220 printf(" !U");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001221 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001222 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001223 case ICMP_UNREACH_ISOLATED:
1224 printf(" !I");
1225 ++unreachable;
1226 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001227 case ICMP_UNREACH_TOSNET:
1228 case ICMP_UNREACH_TOSHOST:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001229 printf(" !T");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001230 ++unreachable;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001231 break;
1232 default:
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001233 printf(" !<%d>", icmp_code);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001234 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001235 break;
1236 }
1237 break;
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001238 } /* while (wait and read a packet) */
1239
Denys Vlasenko0d565682009-11-23 06:15:38 +01001240 /* there was no packet at all? */
1241 if (read_len == 0)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001242 printf(" *");
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001243 } /* for (nprobes) */
1244
Denis Vlasenko4daad902007-09-27 10:20:47 +00001245 bb_putchar('\n');
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001246 if (got_there
1247 || (unreachable > 0 && unreachable >= nprobes - 1)
1248 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001249 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001250 }
Eric Andersen5c58d282001-07-10 16:29:00 +00001251 }
Denys Vlasenko0d565682009-11-23 06:15:38 +01001252
Eric Andersen5c58d282001-07-10 16:29:00 +00001253 return 0;
1254}
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001255
1256int traceroute_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1257int traceroute_main(int argc UNUSED_PARAM, char **argv)
1258{
1259 return common_traceroute_main(0, argv);
1260}
1261
1262#if ENABLE_TRACEROUTE6
1263int traceroute6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1264int traceroute6_main(int argc UNUSED_PARAM, char **argv)
1265{
1266 return common_traceroute_main(OPT_IPV6, argv);
1267}
1268#endif