blob: 6b7b2ebdd7ae0b46d575dc3ac5ec54caf7612571 [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"
Pere Orga5bc8c002011-04-11 03:29:49 +0200219//usage: IF_TRACEROUTE6(
220//usage: "\n -4,-6 Force IP or IPv6 name resolution"
221//usage: )
222//usage: "\n -F Set the don't fragment bit"
223//usage: "\n -I Use ICMP ECHO instead of UDP datagrams"
224//usage: "\n -l Display the TTL value of the returned packet"
225//usage: "\n -d Set SO_DEBUG options to socket"
226//usage: "\n -n Print numeric addresses"
227//usage: "\n -r Bypass routing tables, send directly to HOST"
228//usage: "\n -v Verbose"
229//usage: "\n -m Max time-to-live (max number of hops)"
230//usage: "\n -p Base UDP port number used in probes"
231//usage: "\n (default 33434)"
232//usage: "\n -q Number of probes per TTL (default 3)"
233//usage: "\n -s IP address to use as the source address"
234//usage: "\n -t Type-of-service in probe packets (default 0)"
235//usage: "\n -w Time in seconds to wait for a response (default 3)"
236//usage: "\n -g Loose source route gateway (8 max)"
237//usage:
238//usage:#define traceroute6_trivial_usage
239//usage: "[-dnrv] [-m MAXTTL] [-p PORT] [-q PROBES]\n"
240//usage: " [-s SRC_IP] [-t TOS] [-w WAIT_SEC] [-i IFACE]\n"
241//usage: " HOST [BYTES]"
242//usage:#define traceroute6_full_usage "\n\n"
243//usage: "Trace the route to HOST\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200244//usage: "\n -d Set SO_DEBUG options to socket"
245//usage: "\n -n Print numeric addresses"
246//usage: "\n -r Bypass routing tables, send directly to HOST"
247//usage: "\n -v Verbose"
248//usage: "\n -m Max time-to-live (max number of hops)"
249//usage: "\n -p Base UDP port number used in probes"
250//usage: "\n (default is 33434)"
251//usage: "\n -q Number of probes per TTL (default 3)"
252//usage: "\n -s IP address to use as the source address"
253//usage: "\n -t Type-of-service in probe packets (default 0)"
254//usage: "\n -w Time in seconds to wait for a response (default 3)"
255
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000256#define TRACEROUTE_SO_DEBUG 0
257
258/* TODO: undefs were uncommented - ??! we have config system for that! */
259/* probably ok to remove altogether */
260//#undef CONFIG_FEATURE_TRACEROUTE_VERBOSE
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000261//#define CONFIG_FEATURE_TRACEROUTE_VERBOSE
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000262//#undef CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000263//#define CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000264//#undef CONFIG_FEATURE_TRACEROUTE_USE_ICMP
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000265//#define CONFIG_FEATURE_TRACEROUTE_USE_ICMP
Eric Andersen7467c8d2001-07-12 20:26:32 +0000266
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000267
268#include <net/if.h>
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000269#include <arpa/inet.h>
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000270#include <netinet/in.h>
Eric Andersen5c58d282001-07-10 16:29:00 +0000271#include <netinet/udp.h>
272#include <netinet/ip.h>
273#include <netinet/ip_icmp.h>
Denys Vlasenko0d565682009-11-23 06:15:38 +0100274#if ENABLE_FEATURE_IPV6
275# include <netinet/ip6.h>
276# include <netinet/icmp6.h>
277# ifndef SOL_IPV6
278# define SOL_IPV6 IPPROTO_IPV6
279# endif
280#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000281
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000282#include "libbb.h"
Denis Vlasenko703e2022007-01-22 14:12:08 +0000283#include "inet_common.h"
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000284
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000285#ifndef IPPROTO_ICMP
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000286# define IPPROTO_ICMP 1
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000287#endif
288#ifndef IPPROTO_IP
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000289# define IPPROTO_IP 0
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000290#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000291
Denys Vlasenko0d565682009-11-23 06:15:38 +0100292
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100293#define OPT_STRING \
294 "FIlnrdvxt:i:m:p:q:s:w:z:f:" \
295 IF_FEATURE_TRACEROUTE_SOURCE_ROUTE("g:") \
296 "4" IF_TRACEROUTE6("6")
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000297enum {
298 OPT_DONT_FRAGMNT = (1 << 0), /* F */
299 OPT_USE_ICMP = (1 << 1) * ENABLE_FEATURE_TRACEROUTE_USE_ICMP, /* I */
300 OPT_TTL_FLAG = (1 << 2), /* l */
301 OPT_ADDR_NUM = (1 << 3), /* n */
302 OPT_BYPASS_ROUTE = (1 << 4), /* r */
303 OPT_DEBUG = (1 << 5), /* d */
304 OPT_VERBOSE = (1 << 6) * ENABLE_FEATURE_TRACEROUTE_VERBOSE, /* v */
305 OPT_IP_CHKSUM = (1 << 7), /* x */
306 OPT_TOS = (1 << 8), /* t */
307 OPT_DEVICE = (1 << 9), /* i */
308 OPT_MAX_TTL = (1 << 10), /* m */
309 OPT_PORT = (1 << 11), /* p */
310 OPT_NPROBES = (1 << 12), /* q */
311 OPT_SOURCE = (1 << 13), /* s */
312 OPT_WAITTIME = (1 << 14), /* w */
313 OPT_PAUSE_MS = (1 << 15), /* z */
314 OPT_FIRST_TTL = (1 << 16), /* f */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100315 OPT_SOURCE_ROUTE = (1 << 17) * ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE, /* g */
316 OPT_IPV4 = (1 << (17+ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE)), /* 4 */
317 OPT_IPV6 = (1 << (18+ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE)) * ENABLE_TRACEROUTE6, /* 6 */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000318};
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000319#define verbose (option_mask32 & OPT_VERBOSE)
Eric Andersen5c58d282001-07-10 16:29:00 +0000320
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000321enum {
322 SIZEOF_ICMP_HDR = 8,
323 rcvsock = 3, /* receive (icmp) socket file descriptor */
324 sndsock = 4, /* send (udp/icmp) socket file descriptor */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000325};
326
327/* Data section of the probe packet */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000328struct outdata_t {
Mike Frysinger294254c2006-02-19 22:59:12 +0000329 unsigned char seq; /* sequence number of this packet */
330 unsigned char ttl; /* ttl packet left with */
Denis Vlasenko459be352007-06-17 19:09:05 +0000331// UNUSED. Retaining to have the same packet size.
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000332 struct timeval tv_UNUSED PACKED; /* time packet left */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000333};
334
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100335#if ENABLE_TRACEROUTE6
336struct outdata6_t {
337 uint32_t ident6;
338 uint32_t seq6;
339 struct timeval tv_UNUSED PACKED; /* time packet left */
340};
341#endif
342
Denis Vlasenko2e723232007-03-29 21:55:22 +0000343struct globals {
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000344 struct ip *outip;
345 struct outdata_t *outdata;
346 len_and_sockaddr *dest_lsa;
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000347 int packlen; /* total length of packet */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000348 int pmtu; /* Path MTU Discovery (RFC1191) */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100349 uint32_t ident;
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000350 uint16_t port; // 32768 + 666; /* start udp dest port # for probe packets */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000351 int waittime; // 5; /* time to wait for response (in seconds) */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000352#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
353 int optlen; /* length of ip options */
354#else
355#define optlen 0
356#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000357 unsigned char recv_pkt[512]; /* last inbound (icmp) packet */
Denis Vlasenko2e723232007-03-29 21:55:22 +0000358#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
359 /* Maximum number of gateways (include room for one noop) */
360#define NGATEWAYS ((int)((MAX_IPOPTLEN - IPOPT_MINOFF - 1) / sizeof(uint32_t)))
361 /* loose source route gateway list (including room for final destination) */
362 uint32_t gwlist[NGATEWAYS + 1];
363#endif
364};
365
366#define G (*ptr_to_globals)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000367#define outip (G.outip )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000368#define outdata (G.outdata )
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000369#define dest_lsa (G.dest_lsa )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000370#define packlen (G.packlen )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000371#define pmtu (G.pmtu )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000372#define ident (G.ident )
373#define port (G.port )
374#define waittime (G.waittime )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000375#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000376# define optlen (G.optlen )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000377#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000378#define recv_pkt (G.recv_pkt )
Denis Vlasenko2e723232007-03-29 21:55:22 +0000379#define gwlist (G.gwlist )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000380#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000381 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000382 port = 32768 + 666; \
383 waittime = 5; \
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000384} while (0)
Denis Vlasenko2e723232007-03-29 21:55:22 +0000385
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000386#define outicmp ((struct icmp *)(outip + 1))
387#define outudp ((struct udphdr *)(outip + 1))
Eric Andersen5c58d282001-07-10 16:29:00 +0000388
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000389
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100390/* libbb candidate? tftp uses this idiom too */
391static len_and_sockaddr* dup_sockaddr(const len_and_sockaddr *lsa)
392{
393 len_and_sockaddr *new_lsa = xzalloc(LSA_LEN_SIZE + lsa->len);
394 memcpy(new_lsa, lsa, LSA_LEN_SIZE + lsa->len);
395 return new_lsa;
396}
397
398
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000399static int
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200400wait_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 +0000401{
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000402 struct pollfd pfd[1];
Denys Vlasenko0d565682009-11-23 06:15:38 +0100403 int read_len = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000404
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000405 pfd[0].fd = rcvsock;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000406 pfd[0].events = POLLIN;
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200407 if (*left_ms >= 0 && safe_poll(pfd, 1, *left_ms) > 0) {
408 unsigned t;
409
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100410 read_len = recv_from_to(rcvsock,
411 recv_pkt, sizeof(recv_pkt),
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200412 /*flags:*/ MSG_DONTWAIT,
Denys Vlasenko3581c622010-01-25 13:39:24 +0100413 &from_lsa->u.sa, to, from_lsa->len);
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200414 t = monotonic_us();
415 *left_ms -= (t - *timestamp_us) / 1000;
416 *timestamp_us = t;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100417 }
418
Denys Vlasenko0d565682009-11-23 06:15:38 +0100419 return read_len;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000420}
421
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000422static void
Denis Vlasenko459be352007-06-17 19:09:05 +0000423send_probe(int seq, int ttl)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000424{
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000425 int len, res;
426 void *out;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000427
428 /* Payload */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100429#if ENABLE_TRACEROUTE6
430 if (dest_lsa->u.sa.sa_family == AF_INET6) {
431 struct outdata6_t *pkt = (struct outdata6_t *) outip;
432 pkt->ident6 = htonl(ident);
433 pkt->seq6 = htonl(seq);
434 /*gettimeofday(&pkt->tv, &tz);*/
435 } else
436#endif
437 {
438 outdata->seq = seq;
439 outdata->ttl = ttl;
Denis Vlasenko459be352007-06-17 19:09:05 +0000440// UNUSED: was storing gettimeofday's result there, but never ever checked it
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100441 /*memcpy(&outdata->tv, tp, sizeof(outdata->tv));*/
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000442
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100443 if (option_mask32 & OPT_USE_ICMP) {
444 outicmp->icmp_seq = htons(seq);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000445
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100446 /* Always calculate checksum for icmp packets */
447 outicmp->icmp_cksum = 0;
Baruch Siache8f36332011-09-07 17:52:37 +0200448 outicmp->icmp_cksum = inet_cksum((uint16_t *)outicmp,
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100449 packlen - (sizeof(*outip) + optlen));
450 if (outicmp->icmp_cksum == 0)
451 outicmp->icmp_cksum = 0xffff;
452 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000453 }
454
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000455//BUG! verbose is (x & OPT_VERBOSE), not a counter!
456#if 0 //ENABLE_FEATURE_TRACEROUTE_VERBOSE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000457 /* XXX undocumented debugging hack */
458 if (verbose > 1) {
Denis Vlasenko28703012006-12-19 20:32:02 +0000459 const uint16_t *sp;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000460 int nshorts, i;
461
Denis Vlasenko28703012006-12-19 20:32:02 +0000462 sp = (uint16_t *)outip;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000463 nshorts = (unsigned)packlen / sizeof(uint16_t);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000464 i = 0;
465 printf("[ %d bytes", packlen);
466 while (--nshorts >= 0) {
467 if ((i++ % 8) == 0)
468 printf("\n\t");
469 printf(" %04x", ntohs(*sp));
470 sp++;
471 }
472 if (packlen & 1) {
473 if ((i % 8) == 0)
474 printf("\n\t");
Mike Frysinger294254c2006-02-19 22:59:12 +0000475 printf(" %02x", *(unsigned char *)sp);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000476 }
477 printf("]\n");
478 }
479#endif
480
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100481#if ENABLE_TRACEROUTE6
482 if (dest_lsa->u.sa.sa_family == AF_INET6) {
483 res = setsockopt(sndsock, SOL_IPV6, IPV6_UNICAST_HOPS, &ttl, sizeof(ttl));
484 if (res < 0)
485 bb_perror_msg_and_die("setsockopt UNICAST_HOPS %d", ttl);
486 out = outip;
487 len = packlen;
488 } else
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000489#endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100490 {
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100491#if defined IP_TTL
492 res = setsockopt(sndsock, IPPROTO_IP, IP_TTL, &ttl, sizeof(ttl));
493 if (res < 0)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100494 bb_perror_msg_and_die("setsockopt ttl %d", ttl);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100495#endif
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100496 out = outicmp;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100497 len = packlen - sizeof(*outip);
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100498 if (!(option_mask32 & OPT_USE_ICMP)) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100499 out = outdata;
500 len -= sizeof(*outudp);
Denys Vlasenkoca183112011-04-07 17:52:20 +0200501 set_nport(&dest_lsa->u.sa, htons(port + seq));
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100502 }
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000503 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100504
Denys Vlasenko0d565682009-11-23 06:15:38 +0100505 res = xsendto(sndsock, out, len, &dest_lsa->u.sa, dest_lsa->len);
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100506 if (res != len)
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000507 bb_info_msg("sent %d octets, ret=%d", len, res);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000508}
509
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000510#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000511/*
512 * Convert an ICMP "type" field to a printable string.
513 */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100514static const char *
Mike Frysinger294254c2006-02-19 22:59:12 +0000515pr_type(unsigned char t)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000516{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000517 static const char *const ttab[] = {
Eric Andersen7467c8d2001-07-12 20:26:32 +0000518 "Echo Reply", "ICMP 1", "ICMP 2", "Dest Unreachable",
519 "Source Quench", "Redirect", "ICMP 6", "ICMP 7",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000520 "Echo", "Router Advert", "Router Solicit", "Time Exceeded",
Eric Andersen7467c8d2001-07-12 20:26:32 +0000521 "Param Problem", "Timestamp", "Timestamp Reply", "Info Request",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000522 "Info Reply", "Mask Request", "Mask Reply"
Eric Andersen7467c8d2001-07-12 20:26:32 +0000523 };
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100524# if ENABLE_TRACEROUTE6
525 static const char *const ttab6[] = {
526[0] "Error", "Dest Unreachable", "Packet Too Big", "Time Exceeded",
527[4] "Param Problem",
528[8] "Echo Request", "Echo Reply", "Membership Query", "Membership Report",
529[12] "Membership Reduction", "Router Solicit", "Router Advert", "Neighbor Solicit",
530[16] "Neighbor Advert", "Redirect",
531 };
Eric Andersen7467c8d2001-07-12 20:26:32 +0000532
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100533 if (dest_lsa->u.sa.sa_family == AF_INET6) {
534 if (t < 5)
535 return ttab6[t];
536 if (t < 128 || t > ND_REDIRECT)
537 return "OUT-OF-RANGE";
538 return ttab6[(t & 63) + 8];
539 }
540# endif
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000541 if (t >= ARRAY_SIZE(ttab))
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000542 return "OUT-OF-RANGE";
Eric Andersen7467c8d2001-07-12 20:26:32 +0000543
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000544 return ttab[t];
Eric Andersen7467c8d2001-07-12 20:26:32 +0000545}
546#endif
547
Denis Vlasenko85c24712008-03-17 09:04:04 +0000548#if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100549#define packet4_ok(read_len, from, seq) \
550 packet4_ok(read_len, seq)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000551#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000552static int
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100553packet4_ok(int read_len, const struct sockaddr_in *from, int seq)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000554{
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000555 const struct icmp *icp;
Mike Frysinger294254c2006-02-19 22:59:12 +0000556 unsigned char type, code;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000557 int hlen;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000558 const struct ip *ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000559
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000560 ip = (struct ip *) recv_pkt;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000561 hlen = ip->ip_hl << 2;
Denys Vlasenko0d565682009-11-23 06:15:38 +0100562 if (read_len < hlen + ICMP_MINLEN) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000563#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000564 if (verbose)
Denys Vlasenko0d565682009-11-23 06:15:38 +0100565 printf("packet too short (%d bytes) from %s\n", read_len,
Eric Andersen7467c8d2001-07-12 20:26:32 +0000566 inet_ntoa(from->sin_addr));
567#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000568 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000569 }
Denys Vlasenko0d565682009-11-23 06:15:38 +0100570 read_len -= hlen;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000571 icp = (struct icmp *)(recv_pkt + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000572 type = icp->icmp_type;
573 code = icp->icmp_code;
574 /* Path MTU Discovery (RFC1191) */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000575 pmtu = 0;
576 if (code == ICMP_UNREACH_NEEDFRAG)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000577 pmtu = ntohs(icp->icmp_nextmtu);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000578
579 if ((type == ICMP_TIMXCEED && code == ICMP_TIMXCEED_INTRANS)
580 || type == ICMP_UNREACH
581 || type == ICMP_ECHOREPLY
582 ) {
583 const struct ip *hip;
584 const struct udphdr *up;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000585
586 hip = &icp->icmp_ip;
587 hlen = hip->ip_hl << 2;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000588 if (option_mask32 & OPT_USE_ICMP) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000589 struct icmp *hicmp;
590
591 /* XXX */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000592 if (type == ICMP_ECHOREPLY
593 && icp->icmp_id == htons(ident)
594 && icp->icmp_seq == htons(seq)
595 ) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100596 return ICMP_UNREACH_PORT+1;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000597 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000598
Mike Frysinger294254c2006-02-19 22:59:12 +0000599 hicmp = (struct icmp *)((unsigned char *)hip + hlen);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100600 if (hlen + SIZEOF_ICMP_HDR <= read_len
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000601 && hip->ip_p == IPPROTO_ICMP
602 && hicmp->icmp_id == htons(ident)
603 && hicmp->icmp_seq == htons(seq)
604 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000605 return (type == ICMP_TIMXCEED ? -1 : code + 1);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000606 }
607 } else {
608 up = (struct udphdr *)((char *)hip + hlen);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100609 if (hlen + 12 <= read_len
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000610 && hip->ip_p == IPPROTO_UDP
611// Off: since we do not form the entire IP packet,
612// but defer it to kernel, we can't set source port,
613// and thus can't check it here in the reply
614 /* && up->source == htons(ident) */
615 && up->dest == htons(port + seq)
616 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000617 return (type == ICMP_TIMXCEED ? -1 : code + 1);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000618 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000619 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000620 }
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000621#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000622 if (verbose) {
623 int i;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000624 uint32_t *lp = (uint32_t *)&icp->icmp_ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000625
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000626 printf("\n%d bytes from %s to "
627 "%s: icmp type %d (%s) code %d\n",
Denys Vlasenko0d565682009-11-23 06:15:38 +0100628 read_len, inet_ntoa(from->sin_addr),
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000629 inet_ntoa(ip->ip_dst),
630 type, pr_type(type), icp->icmp_code);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100631 for (i = 4; i < read_len; i += sizeof(*lp))
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000632 printf("%2d: x%8.8x\n", i, *lp++);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000633 }
634#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000635 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000636}
637
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100638#if ENABLE_TRACEROUTE6
639# if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
640#define packet_ok(read_len, from_lsa, to, seq) \
641 packet_ok(read_len, from_lsa, seq)
642# endif
643static int
644packet_ok(int read_len, len_and_sockaddr *from_lsa,
645 struct sockaddr *to,
646 int seq)
647{
648 const struct icmp6_hdr *icp;
649 unsigned char type, code;
650
651 if (from_lsa->u.sa.sa_family == AF_INET)
652 return packet4_ok(read_len, &from_lsa->u.sin, seq);
653
654 icp = (struct icmp6_hdr *) recv_pkt;
655
656 type = icp->icmp6_type;
657 code = icp->icmp6_code;
658
659 if ((type == ICMP6_TIME_EXCEEDED && code == ICMP6_TIME_EXCEED_TRANSIT)
660 || type == ICMP6_DST_UNREACH
661 ) {
662 struct ip6_hdr *hip;
663 struct udphdr *up;
664 int nexthdr;
665
666 hip = (struct ip6_hdr *)(icp + 1);
667 up = (struct udphdr *) (hip + 1);
668 nexthdr = hip->ip6_nxt;
669
670 if (nexthdr == IPPROTO_FRAGMENT) {
671 nexthdr = *(unsigned char*)up;
672 up++;
673 }
674 if (nexthdr == IPPROTO_UDP) {
675 struct outdata6_t *pkt;
676
677 pkt = (struct outdata6_t *) (up + 1);
678
679 if (ntohl(pkt->ident6) == ident
680 && ntohl(pkt->seq6) == seq
681 ) {
682 return (type == ICMP6_TIME_EXCEEDED ? -1 : (code<<8)+1);
683 }
684 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100685 }
686
687# if ENABLE_FEATURE_TRACEROUTE_VERBOSE
688 if (verbose) {
689 unsigned char *p;
690 char pa1[MAXHOSTNAMELEN];
691 char pa2[MAXHOSTNAMELEN];
692 int i;
693
694 p = (unsigned char *) (icp + 1);
695
696 printf("\n%d bytes from %s to "
697 "%s: icmp type %d (%s) code %d\n",
698 read_len,
699 inet_ntop(AF_INET6, &from_lsa->u.sin6.sin6_addr, pa1, sizeof(pa1)),
700 inet_ntop(AF_INET6, &((struct sockaddr_in6*)to)->sin6_addr, pa2, sizeof(pa2)),
701 type, pr_type(type), icp->icmp6_code);
702
703 read_len -= sizeof(struct icmp6_hdr);
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200704 for (i = 0; i < read_len; i++) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100705 if (i % 16 == 0)
706 printf("%04x:", i);
707 if (i % 4 == 0)
708 bb_putchar(' ');
709 printf("%02x", p[i]);
710 if ((i % 16 == 15) && (i + 1 < read_len))
711 bb_putchar('\n');
712 }
713 bb_putchar('\n');
714 }
715# endif
716
717 return 0;
718}
719#else /* !ENABLE_TRACEROUTE6 */
720static ALWAYS_INLINE int
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100721packet_ok(int read_len,
722 len_and_sockaddr *from_lsa IF_NOT_FEATURE_TRACEROUTE_VERBOSE(UNUSED_PARAM),
723 struct sockaddr *to UNUSED_PARAM,
724 int seq)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100725{
726 return packet4_ok(read_len, &from_lsa->u.sin, seq);
727}
728#endif
729
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000730/*
731 * Construct an Internet address representation.
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000732 * If the -n flag has been supplied, give
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000733 * numeric value, otherwise try for symbolic name.
734 */
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000735static void
Denys Vlasenko0d565682009-11-23 06:15:38 +0100736print_inetname(const struct sockaddr *from)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000737{
Denys Vlasenko0d565682009-11-23 06:15:38 +0100738 char *ina = xmalloc_sockaddr2dotted_noport(from);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000739
Denys Vlasenko0d565682009-11-23 06:15:38 +0100740 if (option_mask32 & OPT_ADDR_NUM) {
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000741 printf(" %s", ina);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100742 } else {
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000743 char *n = NULL;
Denys Vlasenko0d565682009-11-23 06:15:38 +0100744
745 if (from->sa_family != AF_INET
746 || ((struct sockaddr_in*)from)->sin_addr.s_addr != INADDR_ANY
747 ) {
748 /* Try to reverse resolve if it is not 0.0.0.0 */
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000749 n = xmalloc_sockaddr2host_noport((struct sockaddr*)from);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100750 }
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000751 printf(" %s (%s)", (n ? n : ina), ina);
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000752 free(n);
753 }
Denys Vlasenko0d565682009-11-23 06:15:38 +0100754 free(ina);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000755}
756
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000757static void
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100758print(int read_len, const struct sockaddr *from, const struct sockaddr *to)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000759{
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100760 print_inetname(from);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000761
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100762 if (verbose) {
763 char *ina = xmalloc_sockaddr2dotted_noport(to);
764#if ENABLE_TRACEROUTE6
765 if (to->sa_family == AF_INET6) {
766 read_len -= sizeof(struct ip6_hdr);
767 } else
768#endif
769 {
Denys Vlasenkodd169e82011-01-20 12:13:23 +0100770 struct ip *ip4packet = (struct ip*)recv_pkt;
771 read_len -= ip4packet->ip_hl << 2;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100772 }
773 printf(" %d bytes to %s", read_len, ina);
774 free(ina);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000775 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000776}
777
778static void
Denis Vlasenko459be352007-06-17 19:09:05 +0000779print_delta_ms(unsigned t1p, unsigned t2p)
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000780{
Denis Vlasenko459be352007-06-17 19:09:05 +0000781 unsigned tt = t2p - t1p;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000782 printf(" %u.%03u ms", tt / 1000, tt % 1000);
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000783}
Eric Andersen7467c8d2001-07-12 20:26:32 +0000784
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000785/*
Denys Vlasenko0d565682009-11-23 06:15:38 +0100786 * Usage: [-dFIlnrvx] [-g gateway] [-i iface] [-f first_ttl]
787 * [-m max_ttl] [ -p port] [-q nqueries] [-s src_addr] [-t tos]
788 * [-w waittime] [-z pausemsecs] host [packetlen]"
789 */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100790static int
791common_traceroute_main(int op, char **argv)
Eric Andersen5c58d282001-07-10 16:29:00 +0000792{
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000793 int minpacket;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000794 int tos = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000795 int max_ttl = 30;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000796 int nprobes = 3;
797 int first_ttl = 1;
798 unsigned pausemsecs = 0;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000799 char *source;
800 char *device;
801 char *tos_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000802 char *max_ttl_str;
803 char *port_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000804 char *nprobes_str;
805 char *waittime_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000806 char *pausemsecs_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000807 char *first_ttl_str;
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000808#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000809 llist_t *source_route_list = NULL;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000810 int lsrr = 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000811#endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100812#if ENABLE_TRACEROUTE6
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100813 sa_family_t af;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100814#else
815 enum { af = AF_INET };
816#endif
Denys Vlasenko0d565682009-11-23 06:15:38 +0100817 int ttl;
818 int seq;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100819 len_and_sockaddr *from_lsa;
820 struct sockaddr *lastaddr;
821 struct sockaddr *to;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000822
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000823 INIT_G();
Denis Vlasenko2e723232007-03-29 21:55:22 +0000824
Denys Vlasenko0d565682009-11-23 06:15:38 +0100825 /* minimum 1 arg */
826 opt_complementary = "-1:x-x" IF_FEATURE_TRACEROUTE_SOURCE_ROUTE(":g::");
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100827 op |= getopt32(argv, OPT_STRING
Denis Vlasenko2e723232007-03-29 21:55:22 +0000828 , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str
829 , &source, &waittime_str, &pausemsecs_str, &first_ttl_str
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000830#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000831 , &source_route_list
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000832#endif
833 );
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100834 argv += optind;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000835
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000836#if 0 /* IGNORED */
837 if (op & OPT_IP_CHKSUM)
Denis Vlasenko13858992006-10-08 12:49:22 +0000838 bb_error_msg("warning: ip checksums disabled");
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000839#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000840 if (op & OPT_TOS)
841 tos = xatou_range(tos_str, 0, 255);
842 if (op & OPT_MAX_TTL)
843 max_ttl = xatou_range(max_ttl_str, 1, 255);
844 if (op & OPT_PORT)
Denis Vlasenko13858992006-10-08 12:49:22 +0000845 port = xatou16(port_str);
Denis Vlasenko2e723232007-03-29 21:55:22 +0000846 if (op & OPT_NPROBES)
847 nprobes = xatou_range(nprobes_str, 1, INT_MAX);
848 if (op & OPT_SOURCE) {
Denis Vlasenko92758142006-10-03 19:56:34 +0000849 /*
850 * set the ip source address of the outbound
851 * probe (e.g., on a multi-homed host).
852 */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000853 if (getuid() != 0)
Denys Vlasenkob2e5fc32009-11-25 14:52:47 +0100854 bb_error_msg_and_die(bb_msg_you_must_be_root);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000855 }
Denis Vlasenko2e723232007-03-29 21:55:22 +0000856 if (op & OPT_WAITTIME)
Denis Vlasenkobdea2c02009-01-24 21:23:41 +0000857 waittime = xatou_range(waittime_str, 1, 24 * 60 * 60);
Denis Vlasenko2e723232007-03-29 21:55:22 +0000858 if (op & OPT_PAUSE_MS)
859 pausemsecs = xatou_range(pausemsecs_str, 0, 60 * 60 * 1000);
860 if (op & OPT_FIRST_TTL)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000861 first_ttl = xatou_range(first_ttl_str, 1, max_ttl);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000862
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000863#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
Denis Vlasenkof7fcca42007-04-13 22:07:21 +0000864 if (source_route_list) {
Denis Vlasenkod50dda82008-06-15 05:40:56 +0000865 while (source_route_list) {
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000866 len_and_sockaddr *lsa;
867
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000868 if (lsrr >= NGATEWAYS)
Denis Vlasenko92758142006-10-03 19:56:34 +0000869 bb_error_msg_and_die("no more than %d gateways", NGATEWAYS);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000870 lsa = xhost_and_af2sockaddr(llist_pop(&source_route_list), 0, AF_INET);
871 gwlist[lsrr] = lsa->u.sin.sin_addr.s_addr;
872 free(lsa);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000873 ++lsrr;
Eric Andersen5c58d282001-07-10 16:29:00 +0000874 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000875 optlen = (lsrr + 1) * sizeof(gwlist[0]);
876 }
877#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000878
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100879 /* Process destination and optional packet size */
880 minpacket = sizeof(*outip) + SIZEOF_ICMP_HDR + sizeof(*outdata) + optlen;
881 if (!(op & OPT_USE_ICMP))
882 minpacket += sizeof(*outudp) - SIZEOF_ICMP_HDR;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100883#if ENABLE_TRACEROUTE6
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100884 af = AF_UNSPEC;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100885 if (op & OPT_IPV4)
886 af = AF_INET;
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100887 if (op & OPT_IPV6)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100888 af = AF_INET6;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100889 dest_lsa = xhost_and_af2sockaddr(argv[0], port, af);
890 af = dest_lsa->u.sa.sa_family;
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100891 if (af == AF_INET6)
892 minpacket = sizeof(struct outdata6_t);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100893#else
Denys Vlasenko0d565682009-11-23 06:15:38 +0100894 dest_lsa = xhost2sockaddr(argv[0], port);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100895#endif
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100896 packlen = minpacket;
897 if (argv[1])
898 packlen = xatoul_range(argv[1], minpacket, 32 * 1024);
Eric Andersen5c58d282001-07-10 16:29:00 +0000899
Denis Vlasenkoe06bed32007-01-27 22:21:12 +0000900 /* Ensure the socket fds won't be 0, 1 or 2 */
901 bb_sanitize_stdio();
Eric Andersen5c58d282001-07-10 16:29:00 +0000902
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100903#if ENABLE_TRACEROUTE6
904 if (af == AF_INET6) {
905 xmove_fd(xsocket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6), rcvsock);
906# ifdef IPV6_RECVPKTINFO
907 setsockopt(rcvsock, SOL_IPV6, IPV6_RECVPKTINFO,
908 &const_int_1, sizeof(const_int_1));
909 setsockopt(rcvsock, SOL_IPV6, IPV6_2292PKTINFO,
910 &const_int_1, sizeof(const_int_1));
911# else
912 setsockopt(rcvsock, SOL_IPV6, IPV6_PKTINFO,
913 &const_int_1, sizeof(const_int_1));
914# endif
915 } else
916#endif
917 {
918 xmove_fd(xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP), rcvsock);
919 }
920
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000921#if TRACEROUTE_SO_DEBUG
Denis Vlasenko2e723232007-03-29 21:55:22 +0000922 if (op & OPT_DEBUG)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000923 setsockopt(rcvsock, SOL_SOCKET, SO_DEBUG,
Denis Vlasenko703e2022007-01-22 14:12:08 +0000924 &const_int_1, sizeof(const_int_1));
Eric Andersen7467c8d2001-07-12 20:26:32 +0000925#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000926 if (op & OPT_BYPASS_ROUTE)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000927 setsockopt(rcvsock, SOL_SOCKET, SO_DONTROUTE,
Denis Vlasenko703e2022007-01-22 14:12:08 +0000928 &const_int_1, sizeof(const_int_1));
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000929
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100930#if ENABLE_TRACEROUTE6
931 if (af == AF_INET6) {
932 static const int two = 2;
933 if (setsockopt(rcvsock, SOL_RAW, IPV6_CHECKSUM, &two, sizeof(two)) < 0)
934 bb_perror_msg_and_die("setsockopt RAW_CHECKSUM");
935 xmove_fd(xsocket(af, SOCK_DGRAM, 0), sndsock);
936 } else
Denys Vlasenko0d565682009-11-23 06:15:38 +0100937#endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100938 {
939 if (op & OPT_USE_ICMP)
940 xmove_fd(xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP), sndsock);
941 else
942 xmove_fd(xsocket(AF_INET, SOCK_DGRAM, 0), sndsock);
943#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE && defined IP_OPTIONS
944 if (lsrr > 0) {
945 unsigned char optlist[MAX_IPOPTLEN];
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200946 unsigned size;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100947
948 /* final hop */
949 gwlist[lsrr] = dest_lsa->u.sin.sin_addr.s_addr;
950 ++lsrr;
951
952 /* force 4 byte alignment */
953 optlist[0] = IPOPT_NOP;
954 /* loose source route option */
955 optlist[1] = IPOPT_LSRR;
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200956 size = lsrr * sizeof(gwlist[0]);
957 optlist[2] = size + 3;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100958 /* pointer to LSRR addresses */
959 optlist[3] = IPOPT_MINOFF;
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200960 memcpy(optlist + 4, gwlist, size);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100961
962 if (setsockopt(sndsock, IPPROTO_IP, IP_OPTIONS,
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200963 (char *)optlist, size + sizeof(gwlist[0])) < 0) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100964 bb_perror_msg_and_die("IP_OPTIONS");
965 }
966 }
967#endif
968 }
969
Eric Andersen5c58d282001-07-10 16:29:00 +0000970#ifdef SO_SNDBUF
Denis Vlasenko703e2022007-01-22 14:12:08 +0000971 if (setsockopt(sndsock, SOL_SOCKET, SO_SNDBUF, &packlen, sizeof(packlen)) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000972 bb_perror_msg_and_die("SO_SNDBUF");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000973 }
Eric Andersenad79c0b2002-06-06 12:24:51 +0000974#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000975#ifdef IP_TOS
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000976 if ((op & OPT_TOS) && setsockopt(sndsock, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000977 bb_perror_msg_and_die("setsockopt tos %d", tos);
978 }
979#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000980#ifdef IP_DONTFRAG
981 if (op & OPT_DONT_FRAGMNT)
982 setsockopt(sndsock, IPPROTO_IP, IP_DONTFRAG,
983 &const_int_1, sizeof(const_int_1));
Eric Andersenad79c0b2002-06-06 12:24:51 +0000984#endif
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000985#if TRACEROUTE_SO_DEBUG
Denis Vlasenko2e723232007-03-29 21:55:22 +0000986 if (op & OPT_DEBUG)
Denis Vlasenko703e2022007-01-22 14:12:08 +0000987 setsockopt(sndsock, SOL_SOCKET, SO_DEBUG,
988 &const_int_1, sizeof(const_int_1));
Eric Andersen7467c8d2001-07-12 20:26:32 +0000989#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000990 if (op & OPT_BYPASS_ROUTE)
Denis Vlasenko703e2022007-01-22 14:12:08 +0000991 setsockopt(sndsock, SOL_SOCKET, SO_DONTROUTE,
992 &const_int_1, sizeof(const_int_1));
Eric Andersen5c58d282001-07-10 16:29:00 +0000993
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000994 outip = xzalloc(packlen);
995
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100996 ident = getpid();
997
998 if (af == AF_INET) {
999 if (op & OPT_USE_ICMP) {
1000 ident |= 0x8000;
1001 outicmp->icmp_type = ICMP_ECHO;
1002 outicmp->icmp_id = htons(ident);
1003 outdata = (struct outdata_t *)((char *)outicmp + SIZEOF_ICMP_HDR);
1004 } else {
1005 outdata = (struct outdata_t *)(outudp + 1);
1006 }
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001007 }
1008
1009 if (op & OPT_DEVICE) /* hmm, do we need error check? */
1010 setsockopt_bindtodevice(sndsock, device);
1011
1012 if (op & OPT_SOURCE) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001013#if ENABLE_TRACEROUTE6
1014// TODO: need xdotted_and_af2sockaddr?
1015 len_and_sockaddr *source_lsa = xhost_and_af2sockaddr(source, 0, af);
1016#else
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001017 len_and_sockaddr *source_lsa = xdotted2sockaddr(source, 0);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001018#endif
1019 /* Ping4 does this (why?) */
1020 if (af == AF_INET)
1021 if (setsockopt(sndsock, IPPROTO_IP, IP_MULTICAST_IF,
1022 &source_lsa->u.sa, source_lsa->len))
1023 bb_error_msg_and_die("can't set multicast source interface");
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001024//TODO: we can query source port we bound to,
1025// and check it in replies... if we care enough
1026 xbind(sndsock, &source_lsa->u.sa, source_lsa->len);
1027 free(source_lsa);
1028 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001029#if ENABLE_TRACEROUTE6
1030 else if (af == AF_INET6) {
1031//TODO: why we don't do it for IPv4?
1032 len_and_sockaddr *source_lsa;
1033
1034 int probe_fd = xsocket(af, SOCK_DGRAM, 0);
1035 if (op & OPT_DEVICE)
1036 setsockopt_bindtodevice(probe_fd, device);
Denys Vlasenkoca183112011-04-07 17:52:20 +02001037 set_nport(&dest_lsa->u.sa, htons(1025));
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001038 /* dummy connect. makes kernel pick source IP (and port) */
1039 xconnect(probe_fd, &dest_lsa->u.sa, dest_lsa->len);
Denys Vlasenkoca183112011-04-07 17:52:20 +02001040 set_nport(&dest_lsa->u.sa, htons(port));
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001041
1042 /* read IP and port */
1043 source_lsa = get_sock_lsa(probe_fd);
1044 if (source_lsa == NULL)
1045 bb_error_msg_and_die("can't get probe addr");
1046
1047 close(probe_fd);
1048
1049 /* bind our sockets to this IP (but not port) */
Denys Vlasenkoca183112011-04-07 17:52:20 +02001050 set_nport(&source_lsa->u.sa, 0);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001051 xbind(sndsock, &source_lsa->u.sa, source_lsa->len);
1052 xbind(rcvsock, &source_lsa->u.sa, source_lsa->len);
1053
1054 free(source_lsa);
1055 }
1056#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001057
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001058 /* Revert to non-privileged user after opening sockets */
Rob Landleyafb94ec2006-07-16 08:06:34 +00001059 xsetgid(getgid());
1060 xsetuid(getuid());
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001061
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001062 printf("traceroute to %s (%s)", argv[0],
1063 xmalloc_sockaddr2dotted_noport(&dest_lsa->u.sa));
Denis Vlasenko2e723232007-03-29 21:55:22 +00001064 if (op & OPT_SOURCE)
1065 printf(" from %s", source);
1066 printf(", %d hops max, %d byte packets\n", max_ttl, packlen);
Eric Andersen5c58d282001-07-10 16:29:00 +00001067
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001068 from_lsa = dup_sockaddr(dest_lsa);
1069 lastaddr = xzalloc(dest_lsa->len);
1070 to = xzalloc(dest_lsa->len);
Denys Vlasenko0d565682009-11-23 06:15:38 +01001071 seq = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001072 for (ttl = first_ttl; ttl <= max_ttl; ++ttl) {
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001073 int probe;
1074 int unreachable = 0; /* counter */
1075 int gotlastaddr = 0; /* flags */
Eric Andersen5c58d282001-07-10 16:29:00 +00001076 int got_there = 0;
Eric Andersen5c58d282001-07-10 16:29:00 +00001077
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001078 printf("%2d", ttl);
Eric Andersen5c58d282001-07-10 16:29:00 +00001079 for (probe = 0; probe < nprobes; ++probe) {
Denys Vlasenko0d565682009-11-23 06:15:38 +01001080 int read_len;
Denis Vlasenko459be352007-06-17 19:09:05 +00001081 unsigned t1;
1082 unsigned t2;
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001083 int left_ms;
Eric Andersen5c58d282001-07-10 16:29:00 +00001084 struct ip *ip;
1085
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001086 fflush_all();
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001087 if (probe != 0 && pausemsecs > 0)
1088 usleep(pausemsecs * 1000);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001089
Denis Vlasenko459be352007-06-17 19:09:05 +00001090 send_probe(++seq, ttl);
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001091 t2 = t1 = monotonic_us();
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001092
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001093 left_ms = waittime * 1000;
1094 while ((read_len = wait_for_reply(from_lsa, to, &t2, &left_ms)) != 0) {
1095 int icmp_code;
1096
1097 /* Recv'ed a packet, or read error */
1098 /* t2 = monotonic_us() - set by wait_for_reply */
1099
1100 if (read_len < 0)
1101 continue;
1102 icmp_code = packet_ok(read_len, from_lsa, to, seq);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001103 /* Skip short packet */
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001104 if (icmp_code == 0)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001105 continue;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001106
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001107 if (!gotlastaddr
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001108 || (memcmp(lastaddr, &from_lsa->u.sa, from_lsa->len) != 0)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001109 ) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001110 print(read_len, &from_lsa->u.sa, to);
1111 memcpy(lastaddr, &from_lsa->u.sa, from_lsa->len);
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001112 gotlastaddr = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001113 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001114
Denis Vlasenko459be352007-06-17 19:09:05 +00001115 print_delta_ms(t1, t2);
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001116 ip = (struct ip *)recv_pkt;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001117
1118 if (from_lsa->u.sa.sa_family == AF_INET)
1119 if (op & OPT_TTL_FLAG)
1120 printf(" (%d)", ip->ip_ttl);
1121
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001122 /* time exceeded in transit */
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001123 if (icmp_code == -1)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001124 break;
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001125 icmp_code--;
1126 switch (icmp_code) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001127#if ENABLE_TRACEROUTE6
1128 case ICMP6_DST_UNREACH_NOPORT << 8:
1129 got_there = 1;
1130 break;
1131#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001132 case ICMP_UNREACH_PORT:
1133 if (ip->ip_ttl <= 1)
1134 printf(" !");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001135 got_there = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001136 break;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001137
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001138 case ICMP_UNREACH_NET:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001139#if ENABLE_TRACEROUTE6 && (ICMP6_DST_UNREACH_NOROUTE != ICMP_UNREACH_NET)
1140 case ICMP6_DST_UNREACH_NOROUTE << 8:
1141#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001142 printf(" !N");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001143 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001144 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001145 case ICMP_UNREACH_HOST:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001146#if ENABLE_TRACEROUTE6
1147 case ICMP6_DST_UNREACH_ADDR << 8:
1148#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001149 printf(" !H");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001150 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001151 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001152 case ICMP_UNREACH_PROTOCOL:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001153 printf(" !P");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001154 got_there = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001155 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001156 case ICMP_UNREACH_NEEDFRAG:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001157 printf(" !F-%d", pmtu);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001158 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001159 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001160 case ICMP_UNREACH_SRCFAIL:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001161#if ENABLE_TRACEROUTE6
1162 case ICMP6_DST_UNREACH_ADMIN << 8:
1163#endif
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001164 printf(" !S");
1165 ++unreachable;
1166 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001167 case ICMP_UNREACH_FILTER_PROHIB:
1168 case ICMP_UNREACH_NET_PROHIB: /* misuse */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001169 printf(" !A");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001170 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001171 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001172 case ICMP_UNREACH_HOST_PROHIB:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001173 printf(" !C");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001174 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001175 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001176 case ICMP_UNREACH_HOST_PRECEDENCE:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001177 printf(" !V");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001178 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001179 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001180 case ICMP_UNREACH_PRECEDENCE_CUTOFF:
1181 printf(" !C");
1182 ++unreachable;
1183 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001184 case ICMP_UNREACH_NET_UNKNOWN:
1185 case ICMP_UNREACH_HOST_UNKNOWN:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001186 printf(" !U");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001187 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001188 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001189 case ICMP_UNREACH_ISOLATED:
1190 printf(" !I");
1191 ++unreachable;
1192 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001193 case ICMP_UNREACH_TOSNET:
1194 case ICMP_UNREACH_TOSHOST:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001195 printf(" !T");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001196 ++unreachable;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001197 break;
1198 default:
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001199 printf(" !<%d>", icmp_code);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001200 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001201 break;
1202 }
1203 break;
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001204 } /* while (wait and read a packet) */
1205
Denys Vlasenko0d565682009-11-23 06:15:38 +01001206 /* there was no packet at all? */
1207 if (read_len == 0)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001208 printf(" *");
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001209 } /* for (nprobes) */
1210
Denis Vlasenko4daad902007-09-27 10:20:47 +00001211 bb_putchar('\n');
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001212 if (got_there
1213 || (unreachable > 0 && unreachable >= nprobes - 1)
1214 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001215 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001216 }
Eric Andersen5c58d282001-07-10 16:29:00 +00001217 }
Denys Vlasenko0d565682009-11-23 06:15:38 +01001218
Eric Andersen5c58d282001-07-10 16:29:00 +00001219 return 0;
1220}
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001221
1222int traceroute_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1223int traceroute_main(int argc UNUSED_PARAM, char **argv)
1224{
1225 return common_traceroute_main(0, argv);
1226}
1227
1228#if ENABLE_TRACEROUTE6
1229int traceroute6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1230int traceroute6_main(int argc UNUSED_PARAM, char **argv)
1231{
1232 return common_traceroute_main(OPT_IPV6, argv);
1233}
1234#endif