blob: 764d66ef8ec18895f93e6857fe5c88481aaa1a9a [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:
Denys Vlasenko95f79532017-08-02 14:26:33 +020015 * ''This product includes software developed by the University of California,
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +000016 * 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.
Denys Vlasenko95f79532017-08-02 14:26:33 +020020 * THIS SOFTWARE IS PROVIDED ''AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +000021 * 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 */
Denys Vlasenko47367e12016-11-23 09:05:14 +0100212//config:config TRACEROUTE
Denys Vlasenko4eed2c62017-07-18 22:01:24 +0200213//config: bool "traceroute (11 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100214//config: default y
Denys Vlasenko47367e12016-11-23 09:05:14 +0100215//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200216//config: Utility to trace the route of IP packets.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100217//config:
218//config:config TRACEROUTE6
Denys Vlasenkob097a842018-12-28 03:20:17 +0100219//config: bool "traceroute6 (13 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100220//config: default y
Denys Vlasenko83423972016-11-23 09:25:57 +0100221//config: depends on FEATURE_IPV6
Denys Vlasenko47367e12016-11-23 09:05:14 +0100222//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200223//config: Utility to trace the route of IPv6 packets.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100224//config:
225//config:config FEATURE_TRACEROUTE_VERBOSE
226//config: bool "Enable verbose output"
227//config: default y
Denys Vlasenko83423972016-11-23 09:25:57 +0100228//config: depends on TRACEROUTE || TRACEROUTE6
Denys Vlasenko47367e12016-11-23 09:05:14 +0100229//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200230//config: Add some verbosity to traceroute. This includes among other things
231//config: hostnames and ICMP response types.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100232//config:
233//config:config FEATURE_TRACEROUTE_USE_ICMP
234//config: bool "Enable -I option (use ICMP instead of UDP)"
235//config: default y
Denys Vlasenko83423972016-11-23 09:25:57 +0100236//config: depends on TRACEROUTE || TRACEROUTE6
Denys Vlasenko47367e12016-11-23 09:05:14 +0100237
238/* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */
239//applet:IF_TRACEROUTE(APPLET(traceroute, BB_DIR_USR_BIN, BB_SUID_MAYBE))
240//applet:IF_TRACEROUTE6(APPLET(traceroute6, BB_DIR_USR_BIN, BB_SUID_MAYBE))
241
242//kbuild:lib-$(CONFIG_TRACEROUTE) += traceroute.o
Denys Vlasenko83423972016-11-23 09:25:57 +0100243//kbuild:lib-$(CONFIG_TRACEROUTE6) += traceroute.o
Eric Andersen5c58d282001-07-10 16:29:00 +0000244
Pere Orga5bc8c002011-04-11 03:29:49 +0200245//usage:#define traceroute_trivial_usage
Denys Vlasenko729b7062015-08-24 18:56:46 +0200246//usage: "[-"IF_TRACEROUTE6("46")"FIlnrv] [-f 1ST_TTL] [-m MAXTTL] [-q PROBES] [-p PORT]\n"
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200247//usage: " [-t TOS] [-w WAIT_SEC] [-s SRC_IP] [-i IFACE]\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200248//usage: " [-z PAUSE_MSEC] HOST [BYTES]"
249//usage:#define traceroute_full_usage "\n\n"
250//usage: "Trace the route to HOST\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200251//usage: IF_TRACEROUTE6(
252//usage: "\n -4,-6 Force IP or IPv6 name resolution"
253//usage: )
Denys Vlasenko729b7062015-08-24 18:56:46 +0200254//usage: "\n -F Set don't fragment bit"
255//usage: IF_FEATURE_TRACEROUTE_USE_ICMP(
Pere Orga5bc8c002011-04-11 03:29:49 +0200256//usage: "\n -I Use ICMP ECHO instead of UDP datagrams"
Denys Vlasenko729b7062015-08-24 18:56:46 +0200257//usage: )
258//usage: "\n -l Display TTL value of the returned packet"
259//Currently disabled (TRACEROUTE_SO_DEBUG==0)
260////usage: "\n -d Set SO_DEBUG options to socket"
Pere Orga5bc8c002011-04-11 03:29:49 +0200261//usage: "\n -n Print numeric addresses"
262//usage: "\n -r Bypass routing tables, send directly to HOST"
Denys Vlasenko729b7062015-08-24 18:56:46 +0200263//usage: IF_FEATURE_TRACEROUTE_VERBOSE(
Pere Orga5bc8c002011-04-11 03:29:49 +0200264//usage: "\n -v Verbose"
Denys Vlasenko729b7062015-08-24 18:56:46 +0200265//usage: )
266//usage: "\n -f N First number of hops (default 1)"
267//usage: "\n -m N Max number of hops"
268//usage: "\n -q N Number of probes per hop (default 3)"
269//usage: "\n -p N Base UDP port number used in probes"
Pere Orga5bc8c002011-04-11 03:29:49 +0200270//usage: "\n (default 33434)"
Denys Vlasenko729b7062015-08-24 18:56:46 +0200271//usage: "\n -s IP Source address"
272//usage: "\n -i IFACE Source interface"
273//usage: "\n -t N Type-of-service in probe packets (default 0)"
274//usage: "\n -w SEC Time to wait for a response (default 3)"
275//usage: "\n -g IP Loose source route gateway (8 max)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200276//usage:
277//usage:#define traceroute6_trivial_usage
Denys Vlasenko729b7062015-08-24 18:56:46 +0200278//usage: "[-nrv] [-m MAXTTL] [-q PROBES] [-p PORT]\n"
279//usage: " [-t TOS] [-w WAIT_SEC] [-s SRC_IP] [-i IFACE]\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200280//usage: " HOST [BYTES]"
281//usage:#define traceroute6_full_usage "\n\n"
282//usage: "Trace the route to HOST\n"
Denys Vlasenko729b7062015-08-24 18:56:46 +0200283//Currently disabled (TRACEROUTE_SO_DEBUG==0)
284////usage: "\n -d Set SO_DEBUG options to socket"
Pere Orga5bc8c002011-04-11 03:29:49 +0200285//usage: "\n -n Print numeric addresses"
286//usage: "\n -r Bypass routing tables, send directly to HOST"
Denys Vlasenko729b7062015-08-24 18:56:46 +0200287//usage: IF_FEATURE_TRACEROUTE_VERBOSE(
Pere Orga5bc8c002011-04-11 03:29:49 +0200288//usage: "\n -v Verbose"
Denys Vlasenko729b7062015-08-24 18:56:46 +0200289//usage: )
290//usage: "\n -m N Max number of hops"
291//usage: "\n -q N Number of probes per hop (default 3)"
292//usage: "\n -p N Base UDP port number used in probes"
293//usage: "\n (default 33434)"
294//usage: "\n -s IP Source address"
295//usage: "\n -i IFACE Source interface"
296//usage: "\n -t N Type-of-service in probe packets (default 0)"
297//usage: "\n -w SEC Time wait for a response (default 3)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200298
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000299#define TRACEROUTE_SO_DEBUG 0
300
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000301#include <net/if.h>
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000302#include <arpa/inet.h>
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000303#include <netinet/in.h>
Eric Andersen5c58d282001-07-10 16:29:00 +0000304#include <netinet/udp.h>
305#include <netinet/ip.h>
306#include <netinet/ip_icmp.h>
Denys Vlasenko0d565682009-11-23 06:15:38 +0100307#if ENABLE_FEATURE_IPV6
308# include <netinet/ip6.h>
309# include <netinet/icmp6.h>
310# ifndef SOL_IPV6
311# define SOL_IPV6 IPPROTO_IPV6
312# endif
James Clarke518fb3b2017-10-07 18:53:23 +0100313# if defined(IPV6_PKTINFO) && !defined(IPV6_RECVPKTINFO)
314# define IPV6_RECVPKTINFO IPV6_PKTINFO
315# endif
Denys Vlasenko0d565682009-11-23 06:15:38 +0100316#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000317
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000318#include "libbb.h"
Denis Vlasenko703e2022007-01-22 14:12:08 +0000319#include "inet_common.h"
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000320
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000321#ifndef IPPROTO_ICMP
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000322# define IPPROTO_ICMP 1
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000323#endif
324#ifndef IPPROTO_IP
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000325# define IPPROTO_IP 0
Denis Vlasenko6edadde2006-10-03 18:19:02 +0000326#endif
Eric Andersen5c58d282001-07-10 16:29:00 +0000327
James Clarke4d0971b2017-10-07 18:53:21 +0100328/* Some operating systems, like GNU/Hurd, don't define SOL_RAW, but do have
329 * IPPROTO_RAW. Since the IPPROTO definitions are also valid to use for
330 * setsockopt (and take the same value as their corresponding SOL definitions,
331 * if they exist), we can just fall back on IPPROTO_RAW. */
332#ifndef SOL_RAW
333# define SOL_RAW IPPROTO_RAW
334#endif
335
Denys Vlasenko0d565682009-11-23 06:15:38 +0100336
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100337#define OPT_STRING \
338 "FIlnrdvxt:i:m:p:q:s:w:z:f:" \
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100339 "4" IF_TRACEROUTE6("6")
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000340enum {
341 OPT_DONT_FRAGMNT = (1 << 0), /* F */
342 OPT_USE_ICMP = (1 << 1) * ENABLE_FEATURE_TRACEROUTE_USE_ICMP, /* I */
343 OPT_TTL_FLAG = (1 << 2), /* l */
344 OPT_ADDR_NUM = (1 << 3), /* n */
345 OPT_BYPASS_ROUTE = (1 << 4), /* r */
346 OPT_DEBUG = (1 << 5), /* d */
347 OPT_VERBOSE = (1 << 6) * ENABLE_FEATURE_TRACEROUTE_VERBOSE, /* v */
348 OPT_IP_CHKSUM = (1 << 7), /* x */
349 OPT_TOS = (1 << 8), /* t */
350 OPT_DEVICE = (1 << 9), /* i */
351 OPT_MAX_TTL = (1 << 10), /* m */
352 OPT_PORT = (1 << 11), /* p */
353 OPT_NPROBES = (1 << 12), /* q */
354 OPT_SOURCE = (1 << 13), /* s */
355 OPT_WAITTIME = (1 << 14), /* w */
356 OPT_PAUSE_MS = (1 << 15), /* z */
357 OPT_FIRST_TTL = (1 << 16), /* f */
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200358 OPT_IPV4 = (1 << 17), /* 4 */
359 OPT_IPV6 = (1 << 18) * ENABLE_TRACEROUTE6, /* 6 */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000360};
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000361#define verbose (option_mask32 & OPT_VERBOSE)
Eric Andersen5c58d282001-07-10 16:29:00 +0000362
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000363enum {
364 SIZEOF_ICMP_HDR = 8,
365 rcvsock = 3, /* receive (icmp) socket file descriptor */
366 sndsock = 4, /* send (udp/icmp) socket file descriptor */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000367};
368
369/* Data section of the probe packet */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000370struct outdata_t {
Mike Frysinger294254c2006-02-19 22:59:12 +0000371 unsigned char seq; /* sequence number of this packet */
372 unsigned char ttl; /* ttl packet left with */
Denis Vlasenko459be352007-06-17 19:09:05 +0000373// UNUSED. Retaining to have the same packet size.
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000374 struct timeval tv_UNUSED PACKED; /* time packet left */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000375};
376
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100377#if ENABLE_TRACEROUTE6
378struct outdata6_t {
379 uint32_t ident6;
380 uint32_t seq6;
381 struct timeval tv_UNUSED PACKED; /* time packet left */
382};
383#endif
384
Denis Vlasenko2e723232007-03-29 21:55:22 +0000385struct globals {
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200386 /* Pointer to entire malloced IP packet, "packlen" bytes long: */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000387 struct ip *outip;
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200388 /* Pointer to ICMP or UDP payload (not header): */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000389 struct outdata_t *outdata;
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200390
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000391 len_and_sockaddr *dest_lsa;
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000392 int packlen; /* total length of packet */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000393 int pmtu; /* Path MTU Discovery (RFC1191) */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100394 uint32_t ident;
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200395 uint16_t port; // 33434; /* start udp dest port # for probe packets */
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000396 int waittime; // 5; /* time to wait for response (in seconds) */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000397 unsigned char recv_pkt[512]; /* last inbound (icmp) packet */
Denis Vlasenko2e723232007-03-29 21:55:22 +0000398};
399
400#define G (*ptr_to_globals)
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000401#define outip (G.outip )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000402#define outdata (G.outdata )
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000403#define dest_lsa (G.dest_lsa )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000404#define packlen (G.packlen )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000405#define pmtu (G.pmtu )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000406#define ident (G.ident )
407#define port (G.port )
408#define waittime (G.waittime )
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000409#define recv_pkt (G.recv_pkt )
Denis Vlasenko2e723232007-03-29 21:55:22 +0000410#define gwlist (G.gwlist )
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000411#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000412 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200413 port = 33434; \
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000414 waittime = 5; \
Denis Vlasenko9ad2cb32007-12-16 17:19:40 +0000415} while (0)
Denis Vlasenko2e723232007-03-29 21:55:22 +0000416
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100417#define outudp ((struct udphdr *)(outip + 1))
418#define outudp6 ((struct udphdr *)(((struct ip6_hdr*)outip) + 1))
419#define outicmp ((struct icmp *)(outip + 1))
420#define outicmp6 ((struct icmp *)(((struct ip6_hdr*)outip) + 1))
421/* NB: for icmp echo, IPv4 and IPv6 fields are the same size and offset:
422 * struct icmp:
423 * uint8_t icmp_type;
424 * uint8_t icmp_code;
425 * uint16_t icmp_cksum;
426 * uint16_t icmp_id;
427 * uint16_t icmp_seq;
428 * struct icmp6_hdr:
429 * uint8_t icmp6_type;
430 * uint8_t icmp6_code;
431 * uint16_t icmp6_cksum;
432 * uint16_t icmp6_id;
433 * uint16_t icmp6_seq;
434 * therefore both outicmp and outicmp6 are pointers to *IPv4* icmp struct.
435 * SIZEOF_ICMP_HDR == 8 is the same for both, as well.
436 * However, values of these pointers are not the same (since IPv6 IP header is larger),
437 * and icmp_type constants are not the same:
438 * #define ICMP_ECHO 8
439 * #define ICMP_ECHOREPLY 0
440 * #define ICMP6_ECHO_REQUEST 128
441 * #define ICMP6_ECHO_REPLY 129
442 */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000443
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000444static int
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200445wait_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 +0000446{
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000447 struct pollfd pfd[1];
Denys Vlasenko0d565682009-11-23 06:15:38 +0100448 int read_len = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000449
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000450 pfd[0].fd = rcvsock;
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000451 pfd[0].events = POLLIN;
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200452 if (*left_ms >= 0 && safe_poll(pfd, 1, *left_ms) > 0) {
453 unsigned t;
454
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100455 read_len = recv_from_to(rcvsock,
456 recv_pkt, sizeof(recv_pkt),
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200457 /*flags:*/ MSG_DONTWAIT,
Denys Vlasenko3581c622010-01-25 13:39:24 +0100458 &from_lsa->u.sa, to, from_lsa->len);
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200459 t = monotonic_us();
460 *left_ms -= (t - *timestamp_us) / 1000;
461 *timestamp_us = t;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100462 }
463
Denys Vlasenko0d565682009-11-23 06:15:38 +0100464 return read_len;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000465}
466
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000467static void
Denis Vlasenko459be352007-06-17 19:09:05 +0000468send_probe(int seq, int ttl)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000469{
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000470 int len, res;
471 void *out;
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100472 struct icmp *icp;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000473
474 /* Payload */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100475#if ENABLE_TRACEROUTE6
476 if (dest_lsa->u.sa.sa_family == AF_INET6) {
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100477 struct outdata6_t *pkt = (void *) outdata;
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100478 pkt->ident6 = ident;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100479 pkt->seq6 = htonl(seq);
480 /*gettimeofday(&pkt->tv, &tz);*/
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100481 icp = outicmp6;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100482 } else
483#endif
484 {
485 outdata->seq = seq;
486 outdata->ttl = ttl;
Denis Vlasenko459be352007-06-17 19:09:05 +0000487// UNUSED: was storing gettimeofday's result there, but never ever checked it
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100488 /*memcpy(&outdata->tv, tp, sizeof(outdata->tv));*/
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100489 icp = outicmp;
490 }
491 out = outdata;
492 if (option_mask32 & OPT_USE_ICMP) {
493 out = icp;
494 /*icp->icmp_type = ICMP[6]_ECHO; - already set */
495 /*icp->icmp_code = 0; - already set */
496 /*icp->icmp_id = ident; - already set */
497 icp->icmp_seq = htons(seq);
498 /* Always calculate checksum for icmp packets */
499 icp->icmp_cksum = 0;
500 icp->icmp_cksum = inet_cksum(
501 icp,
502 ((char*)outip + packlen) - (char*)icp
503 );
504 if (icp->icmp_cksum == 0)
505 icp->icmp_cksum = 0xffff;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000506 }
507
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000508//BUG! verbose is (x & OPT_VERBOSE), not a counter!
509#if 0 //ENABLE_FEATURE_TRACEROUTE_VERBOSE
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000510 /* XXX undocumented debugging hack */
511 if (verbose > 1) {
Denis Vlasenko28703012006-12-19 20:32:02 +0000512 const uint16_t *sp;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000513 int nshorts, i;
514
Denis Vlasenko28703012006-12-19 20:32:02 +0000515 sp = (uint16_t *)outip;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000516 nshorts = (unsigned)packlen / sizeof(uint16_t);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000517 i = 0;
518 printf("[ %d bytes", packlen);
519 while (--nshorts >= 0) {
520 if ((i++ % 8) == 0)
521 printf("\n\t");
522 printf(" %04x", ntohs(*sp));
523 sp++;
524 }
525 if (packlen & 1) {
526 if ((i % 8) == 0)
527 printf("\n\t");
Mike Frysinger294254c2006-02-19 22:59:12 +0000528 printf(" %02x", *(unsigned char *)sp);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000529 }
530 printf("]\n");
531 }
532#endif
533
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100534#if ENABLE_TRACEROUTE6
535 if (dest_lsa->u.sa.sa_family == AF_INET6) {
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +0200536 res = setsockopt_int(sndsock, SOL_IPV6, IPV6_UNICAST_HOPS, ttl);
537 if (res != 0)
Denys Vlasenko2db782b2015-08-24 19:08:14 +0200538 bb_perror_msg_and_die("setsockopt(%s) %d", "UNICAST_HOPS", ttl);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100539 } else
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000540#endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100541 {
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100542#if defined IP_TTL
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +0200543 res = setsockopt_int(sndsock, IPPROTO_IP, IP_TTL, ttl);
544 if (res != 0)
Denys Vlasenko2db782b2015-08-24 19:08:14 +0200545 bb_perror_msg_and_die("setsockopt(%s) %d", "TTL", ttl);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100546#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000547 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100548
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200549 if (!(option_mask32 & OPT_USE_ICMP)) {
550 set_nport(&dest_lsa->u.sa, htons(port + seq));
551 }
552 len = ((char*)outip + packlen) - (char*)out;
Denys Vlasenko0d565682009-11-23 06:15:38 +0100553 res = xsendto(sndsock, out, len, &dest_lsa->u.sa, dest_lsa->len);
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100554 if (res != len)
Denys Vlasenko066e76b2016-03-30 16:20:28 +0200555 bb_error_msg("sent %d octets, ret=%d", len, res);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000556}
557
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000558#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000559/*
560 * Convert an ICMP "type" field to a printable string.
561 */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100562static const char *
Mike Frysinger294254c2006-02-19 22:59:12 +0000563pr_type(unsigned char t)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000564{
Denys Vlasenko6cc49622020-11-30 14:58:02 +0100565 static const char *const ttab[] ALIGN_PTR = {
Eric Andersen7467c8d2001-07-12 20:26:32 +0000566 "Echo Reply", "ICMP 1", "ICMP 2", "Dest Unreachable",
567 "Source Quench", "Redirect", "ICMP 6", "ICMP 7",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000568 "Echo", "Router Advert", "Router Solicit", "Time Exceeded",
Eric Andersen7467c8d2001-07-12 20:26:32 +0000569 "Param Problem", "Timestamp", "Timestamp Reply", "Info Request",
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000570 "Info Reply", "Mask Request", "Mask Reply"
Eric Andersen7467c8d2001-07-12 20:26:32 +0000571 };
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100572# if ENABLE_TRACEROUTE6
Denys Vlasenko6cc49622020-11-30 14:58:02 +0100573 static const char *const ttab6[] ALIGN_PTR = {
Denys Vlasenkoe0761622019-10-25 13:39:41 +0200574[0] = "Error", "Dest Unreachable", "Packet Too Big", "Time Exceeded",
575[4] = "Param Problem",
576[8] = "Echo Request", "Echo Reply", "Membership Query", "Membership Report",
577[12] = "Membership Reduction", "Router Solicit", "Router Advert", "Neighbor Solicit",
578[16] = "Neighbor Advert", "Redirect",
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100579 };
Eric Andersen7467c8d2001-07-12 20:26:32 +0000580
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100581 if (dest_lsa->u.sa.sa_family == AF_INET6) {
582 if (t < 5)
583 return ttab6[t];
584 if (t < 128 || t > ND_REDIRECT)
585 return "OUT-OF-RANGE";
586 return ttab6[(t & 63) + 8];
587 }
588# endif
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000589 if (t >= ARRAY_SIZE(ttab))
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000590 return "OUT-OF-RANGE";
Eric Andersen7467c8d2001-07-12 20:26:32 +0000591
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000592 return ttab[t];
Eric Andersen7467c8d2001-07-12 20:26:32 +0000593}
594#endif
595
Denis Vlasenko85c24712008-03-17 09:04:04 +0000596#if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100597#define packet4_ok(read_len, from, seq) \
598 packet4_ok(read_len, seq)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000599#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000600static int
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100601packet4_ok(int read_len, const struct sockaddr_in *from, int seq)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000602{
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000603 const struct icmp *icp;
Mike Frysinger294254c2006-02-19 22:59:12 +0000604 unsigned char type, code;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000605 int hlen;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000606 const struct ip *ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000607
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100608 /* NB: reads from (AF_INET, SOCK_RAW, IPPROTO_ICMP) socket
609 * return the entire IP packet (IOW: they do not strip IP header).
610 * This differs from (AF_INET6, SOCK_RAW, IPPROTO_ICMPV6) sockets!?
611 */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000612 ip = (struct ip *) recv_pkt;
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100613
Eric Andersen7467c8d2001-07-12 20:26:32 +0000614 hlen = ip->ip_hl << 2;
Denys Vlasenko0d565682009-11-23 06:15:38 +0100615 if (read_len < hlen + ICMP_MINLEN) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000616#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000617 if (verbose)
Denys Vlasenko0d565682009-11-23 06:15:38 +0100618 printf("packet too short (%d bytes) from %s\n", read_len,
Eric Andersen7467c8d2001-07-12 20:26:32 +0000619 inet_ntoa(from->sin_addr));
620#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000621 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000622 }
Denys Vlasenko0d565682009-11-23 06:15:38 +0100623 read_len -= hlen;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000624 icp = (struct icmp *)(recv_pkt + hlen);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000625 type = icp->icmp_type;
626 code = icp->icmp_code;
627 /* Path MTU Discovery (RFC1191) */
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000628 pmtu = 0;
629 if (code == ICMP_UNREACH_NEEDFRAG)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000630 pmtu = ntohs(icp->icmp_nextmtu);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000631
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100632 if ((option_mask32 & OPT_USE_ICMP)
633 && type == ICMP_ECHOREPLY
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100634 && icp->icmp_id == ident
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100635 && icp->icmp_seq == htons(seq)
636 ) {
637 /* In UDP mode, when we reach the machine, we (usually)
638 * would get "port unreachable" - in ICMP we got "echo reply".
639 * Simulate "port unreachable" for caller:
640 */
641 return ICMP_UNREACH_PORT+1;
642 }
643
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000644 if ((type == ICMP_TIMXCEED && code == ICMP_TIMXCEED_INTRANS)
645 || type == ICMP_UNREACH
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000646 ) {
647 const struct ip *hip;
648 const struct udphdr *up;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000649
650 hip = &icp->icmp_ip;
651 hlen = hip->ip_hl << 2;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000652 if (option_mask32 & OPT_USE_ICMP) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000653 struct icmp *hicmp;
654
Mike Frysinger294254c2006-02-19 22:59:12 +0000655 hicmp = (struct icmp *)((unsigned char *)hip + hlen);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100656 if (hlen + SIZEOF_ICMP_HDR <= read_len
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000657 && hip->ip_p == IPPROTO_ICMP
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100658 && hicmp->icmp_id == ident
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000659 && hicmp->icmp_seq == htons(seq)
660 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000661 return (type == ICMP_TIMXCEED ? -1 : code + 1);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000662 }
663 } else {
664 up = (struct udphdr *)((char *)hip + hlen);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100665 if (hlen + 12 <= read_len
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000666 && hip->ip_p == IPPROTO_UDP
667// Off: since we do not form the entire IP packet,
668// but defer it to kernel, we can't set source port,
669// and thus can't check it here in the reply
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100670 /* && up->source == ident */
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000671 && up->dest == htons(port + seq)
672 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000673 return (type == ICMP_TIMXCEED ? -1 : code + 1);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000674 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000675 }
Eric Andersen7467c8d2001-07-12 20:26:32 +0000676 }
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000677#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
Eric Andersen7467c8d2001-07-12 20:26:32 +0000678 if (verbose) {
679 int i;
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000680 uint32_t *lp = (uint32_t *)&icp->icmp_ip;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000681
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100682 printf("\n%d bytes from %s",
683 read_len, inet_ntoa(from->sin_addr));
684 /* Two separate printf() because inet_ntoa() returns static string */
685 printf(" to %s: icmp type %d (%s) code %d\n",
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000686 inet_ntoa(ip->ip_dst),
687 type, pr_type(type), icp->icmp_code);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100688 for (i = 4; i < read_len; i += sizeof(*lp))
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000689 printf("%2d: x%8.8x\n", i, *lp++);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000690 }
691#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000692 return 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000693}
694
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100695#if ENABLE_TRACEROUTE6
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100696
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100697# if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100698#define packet6_ok(read_len, from_lsa, to, seq) \
699 packet6_ok(read_len, from_lsa, seq)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100700# endif
701static int
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100702packet6_ok(int read_len, const struct sockaddr_in6 *from,
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100703 struct sockaddr *to,
704 int seq)
705{
706 const struct icmp6_hdr *icp;
707 unsigned char type, code;
708
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100709 /* NB: reads from (AF_INET6, SOCK_RAW, IPPROTO_ICMPV6) socket
710 * return only ICMP packet (IOW: they strip IPv6 header).
711 * This differs from (AF_INET, SOCK_RAW, IPPROTO_ICMP) sockets!?
712 */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100713 icp = (struct icmp6_hdr *) recv_pkt;
714
715 type = icp->icmp6_type;
716 code = icp->icmp6_code;
717
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100718 if ((option_mask32 & OPT_USE_ICMP)
719 && type == ICMP6_ECHO_REPLY
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100720 && icp->icmp6_id == ident
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100721 && icp->icmp6_seq == htons(seq)
722 ) {
723 /* In UDP mode, when we reach the machine, we (usually)
724 * would get "port unreachable" - in ICMP we got "echo reply".
725 * Simulate "port unreachable" for caller:
726 */
727 return (ICMP6_DST_UNREACH_NOPORT << 8) + 1;
728 }
729
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100730 if ((type == ICMP6_TIME_EXCEEDED && code == ICMP6_TIME_EXCEED_TRANSIT)
731 || type == ICMP6_DST_UNREACH
732 ) {
733 struct ip6_hdr *hip;
734 struct udphdr *up;
735 int nexthdr;
736
737 hip = (struct ip6_hdr *)(icp + 1);
738 up = (struct udphdr *) (hip + 1);
739 nexthdr = hip->ip6_nxt;
740
741 if (nexthdr == IPPROTO_FRAGMENT) {
742 nexthdr = *(unsigned char*)up;
743 up++;
744 }
745 if (nexthdr == IPPROTO_UDP) {
746 struct outdata6_t *pkt;
747
748 pkt = (struct outdata6_t *) (up + 1);
749
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100750 if (pkt->ident6 == ident
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100751 && ntohl(pkt->seq6) == seq
752 ) {
753 return (type == ICMP6_TIME_EXCEEDED ? -1 : (code<<8)+1);
754 }
755 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100756 }
757
758# if ENABLE_FEATURE_TRACEROUTE_VERBOSE
759 if (verbose) {
Denys Vlasenkof1fdda42017-10-31 15:59:19 +0100760# ifndef MAXHOSTNAMELEN
761# define MAXHOSTNAMELEN 80
762# endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100763 unsigned char *p;
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100764 char pa[MAXHOSTNAMELEN];
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100765 int i;
766
767 p = (unsigned char *) (icp + 1);
768
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100769 printf("\n%d bytes from %s",
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100770 read_len,
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100771 inet_ntop(AF_INET6, &from->sin6_addr, pa, sizeof(pa)));
772 /* Two printf() instead of one - reuse string constants */
773 printf(" to %s: icmp type %d (%s) code %d\n",
774 inet_ntop(AF_INET6, &((struct sockaddr_in6*)to)->sin6_addr, pa, sizeof(pa)),
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100775 type, pr_type(type), icp->icmp6_code);
776
777 read_len -= sizeof(struct icmp6_hdr);
Denys Vlasenkoa348b452011-05-05 02:31:30 +0200778 for (i = 0; i < read_len; i++) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100779 if (i % 16 == 0)
780 printf("%04x:", i);
781 if (i % 4 == 0)
782 bb_putchar(' ');
783 printf("%02x", p[i]);
784 if ((i % 16 == 15) && (i + 1 < read_len))
785 bb_putchar('\n');
786 }
787 bb_putchar('\n');
788 }
789# endif
790
791 return 0;
792}
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100793# if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
794#define packet_ok(read_len, from_lsa, to, seq) \
795 packet_ok(read_len, from_lsa, seq)
796# endif
797static int
798packet_ok(int read_len, len_and_sockaddr *from_lsa,
799 struct sockaddr *to,
800 int seq)
801{
802 if (from_lsa->u.sa.sa_family == AF_INET)
803 return packet4_ok(read_len, &from_lsa->u.sin, seq);
804 return packet6_ok(read_len, &from_lsa->u.sin6, to, seq);
805}
806
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100807#else /* !ENABLE_TRACEROUTE6 */
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100808
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100809static ALWAYS_INLINE int
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +0100810packet_ok(int read_len,
811 len_and_sockaddr *from_lsa IF_NOT_FEATURE_TRACEROUTE_VERBOSE(UNUSED_PARAM),
812 struct sockaddr *to UNUSED_PARAM,
813 int seq)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100814{
815 return packet4_ok(read_len, &from_lsa->u.sin, seq);
816}
Denys Vlasenkod0dea172020-12-12 17:24:17 +0100817
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100818#endif
819
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000820/*
821 * Construct an Internet address representation.
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000822 * If the -n flag has been supplied, give
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000823 * numeric value, otherwise try for symbolic name.
824 */
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000825static void
Denys Vlasenko0d565682009-11-23 06:15:38 +0100826print_inetname(const struct sockaddr *from)
Eric Andersen7467c8d2001-07-12 20:26:32 +0000827{
Denys Vlasenko0d565682009-11-23 06:15:38 +0100828 char *ina = xmalloc_sockaddr2dotted_noport(from);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000829
Denys Vlasenko0d565682009-11-23 06:15:38 +0100830 if (option_mask32 & OPT_ADDR_NUM) {
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000831 printf(" %s", ina);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100832 } else {
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000833 char *n = NULL;
Denys Vlasenko0d565682009-11-23 06:15:38 +0100834
835 if (from->sa_family != AF_INET
836 || ((struct sockaddr_in*)from)->sin_addr.s_addr != INADDR_ANY
837 ) {
838 /* Try to reverse resolve if it is not 0.0.0.0 */
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000839 n = xmalloc_sockaddr2host_noport((struct sockaddr*)from);
Denys Vlasenko0d565682009-11-23 06:15:38 +0100840 }
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000841 printf(" %s (%s)", (n ? n : ina), ina);
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000842 free(n);
843 }
Denys Vlasenko0d565682009-11-23 06:15:38 +0100844 free(ina);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000845}
846
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000847static void
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100848print(int read_len, const struct sockaddr *from, const struct sockaddr *to)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000849{
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100850 print_inetname(from);
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000851
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100852 if (verbose) {
853 char *ina = xmalloc_sockaddr2dotted_noport(to);
854#if ENABLE_TRACEROUTE6
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100855 /* NB: reads from (AF_INET, SOCK_RAW, IPPROTO_ICMP) socket
856 * return the entire IP packet (IOW: they do not strip IP header).
857 * Reads from (AF_INET6, SOCK_RAW, IPPROTO_ICMPV6) do strip IPv6
858 * header and return only ICMP6 packet. Weird.
859 */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100860 if (to->sa_family == AF_INET6) {
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100861 /* read_len -= sizeof(struct ip6_hdr); - WRONG! */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100862 } else
863#endif
864 {
Denys Vlasenkodd169e82011-01-20 12:13:23 +0100865 struct ip *ip4packet = (struct ip*)recv_pkt;
866 read_len -= ip4packet->ip_hl << 2;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100867 }
868 printf(" %d bytes to %s", read_len, ina);
869 free(ina);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000870 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000871}
872
873static void
Denis Vlasenko459be352007-06-17 19:09:05 +0000874print_delta_ms(unsigned t1p, unsigned t2p)
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000875{
Denis Vlasenko459be352007-06-17 19:09:05 +0000876 unsigned tt = t2p - t1p;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000877 printf(" %u.%03u ms", tt / 1000, tt % 1000);
Denis Vlasenko1adf6812007-06-14 07:47:52 +0000878}
Eric Andersen7467c8d2001-07-12 20:26:32 +0000879
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000880/*
Denys Vlasenko0d565682009-11-23 06:15:38 +0100881 * Usage: [-dFIlnrvx] [-g gateway] [-i iface] [-f first_ttl]
882 * [-m max_ttl] [ -p port] [-q nqueries] [-s src_addr] [-t tos]
883 * [-w waittime] [-z pausemsecs] host [packetlen]"
884 */
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100885static int
886common_traceroute_main(int op, char **argv)
Eric Andersen5c58d282001-07-10 16:29:00 +0000887{
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000888 int minpacket;
Denys Vlasenko9b2a9f02013-11-29 16:43:33 +0100889#ifdef IP_TOS
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000890 int tos = 0;
Denys Vlasenko9b2a9f02013-11-29 16:43:33 +0100891#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000892 int max_ttl = 30;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000893 int nprobes = 3;
894 int first_ttl = 1;
895 unsigned pausemsecs = 0;
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000896 char *source;
897 char *device;
898 char *tos_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000899 char *max_ttl_str;
900 char *port_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000901 char *nprobes_str;
902 char *waittime_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000903 char *pausemsecs_str;
Denis Vlasenko2e723232007-03-29 21:55:22 +0000904 char *first_ttl_str;
Guilherme Maciel Ferreira4a600f82013-03-08 16:50:51 -0300905 char *dest_str;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100906#if ENABLE_TRACEROUTE6
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100907 sa_family_t af;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100908#else
909 enum { af = AF_INET };
910#endif
Denys Vlasenko0d565682009-11-23 06:15:38 +0100911 int ttl;
912 int seq;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100913 len_and_sockaddr *from_lsa;
914 struct sockaddr *lastaddr;
915 struct sockaddr *to;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000916
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100917 /* Ensure the socket fds won't be 0, 1 or 2 */
918 bb_sanitize_stdio();
919
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000920 INIT_G();
Denis Vlasenko2e723232007-03-29 21:55:22 +0000921
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200922 op |= getopt32(argv, "^"
923 OPT_STRING
924 "\0" "-1:x-x" /* minimum 1 arg */
Denis Vlasenko2e723232007-03-29 21:55:22 +0000925 , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str
926 , &source, &waittime_str, &pausemsecs_str, &first_ttl_str
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000927 );
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100928 argv += optind;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000929
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000930#if 0 /* IGNORED */
931 if (op & OPT_IP_CHKSUM)
Denis Vlasenko13858992006-10-08 12:49:22 +0000932 bb_error_msg("warning: ip checksums disabled");
Denis Vlasenko766c10c2009-01-24 20:14:24 +0000933#endif
Denys Vlasenko9b2a9f02013-11-29 16:43:33 +0100934#ifdef IP_TOS
Denis Vlasenko2e723232007-03-29 21:55:22 +0000935 if (op & OPT_TOS)
936 tos = xatou_range(tos_str, 0, 255);
Denys Vlasenko9b2a9f02013-11-29 16:43:33 +0100937#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000938 if (op & OPT_MAX_TTL)
939 max_ttl = xatou_range(max_ttl_str, 1, 255);
940 if (op & OPT_PORT)
Denis Vlasenko13858992006-10-08 12:49:22 +0000941 port = xatou16(port_str);
Denis Vlasenko2e723232007-03-29 21:55:22 +0000942 if (op & OPT_NPROBES)
943 nprobes = xatou_range(nprobes_str, 1, INT_MAX);
Denis Vlasenko2e723232007-03-29 21:55:22 +0000944 if (op & OPT_WAITTIME)
Denis Vlasenkobdea2c02009-01-24 21:23:41 +0000945 waittime = xatou_range(waittime_str, 1, 24 * 60 * 60);
Denis Vlasenko2e723232007-03-29 21:55:22 +0000946 if (op & OPT_PAUSE_MS)
947 pausemsecs = xatou_range(pausemsecs_str, 0, 60 * 60 * 1000);
948 if (op & OPT_FIRST_TTL)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +0000949 first_ttl = xatou_range(first_ttl_str, 1, max_ttl);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000950
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100951 /* Process destination and optional packet size */
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200952 minpacket = sizeof(struct ip)
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200953 + sizeof(struct udphdr)
954 + sizeof(struct outdata_t);
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100955 if (op & OPT_USE_ICMP) {
956 minpacket = sizeof(struct ip)
957 + SIZEOF_ICMP_HDR
958 + sizeof(struct outdata_t);
959 port = 0; /* on ICMP6 sockets, sendto(ipv6.nonzero_port) throws EINVAL */
960 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100961#if ENABLE_TRACEROUTE6
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100962 af = AF_UNSPEC;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100963 if (op & OPT_IPV4)
964 af = AF_INET;
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100965 if (op & OPT_IPV6)
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100966 af = AF_INET6;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100967 dest_lsa = xhost_and_af2sockaddr(argv[0], port, af);
968 af = dest_lsa->u.sa.sa_family;
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100969 if (af == AF_INET6) {
Denys Vlasenko1c32e492016-09-28 18:39:06 +0200970 minpacket = sizeof(struct ip6_hdr)
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100971 + sizeof(struct udphdr)
972 + sizeof(struct outdata6_t);
973 if (op & OPT_USE_ICMP)
974 minpacket = sizeof(struct ip6_hdr)
975 + SIZEOF_ICMP_HDR
976 + sizeof(struct outdata6_t);
977 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100978#else
Denys Vlasenko0d565682009-11-23 06:15:38 +0100979 dest_lsa = xhost2sockaddr(argv[0], port);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100980#endif
Denys Vlasenkoc14bf212009-11-24 02:17:13 +0100981 packlen = minpacket;
982 if (argv[1])
983 packlen = xatoul_range(argv[1], minpacket, 32 * 1024);
Eric Andersen5c58d282001-07-10 16:29:00 +0000984
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100985#if ENABLE_TRACEROUTE6
986 if (af == AF_INET6) {
987 xmove_fd(xsocket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6), rcvsock);
Denys Vlasenko3978adc2020-12-12 16:38:43 +0100988 setsockopt_1(rcvsock, SOL_IPV6, IPV6_RECVPKTINFO); //why?
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100989 } else
990#endif
991 {
992 xmove_fd(xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP), rcvsock);
993 }
994
Denis Vlasenko04291bc2006-11-21 10:15:25 +0000995#if TRACEROUTE_SO_DEBUG
Denis Vlasenko2e723232007-03-29 21:55:22 +0000996 if (op & OPT_DEBUG)
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +0200997 setsockopt_SOL_SOCKET_1(rcvsock, SO_DEBUG);
Eric Andersen7467c8d2001-07-12 20:26:32 +0000998#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +0000999 if (op & OPT_BYPASS_ROUTE)
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02001000 setsockopt_SOL_SOCKET_1(rcvsock, SO_DONTROUTE);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001001
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001002 {
Denys Vlasenkod0dea172020-12-12 17:24:17 +01001003 int snd;
1004#if ENABLE_TRACEROUTE6
1005 if (af == AF_INET6) {
1006 if (setsockopt_int(rcvsock, SOL_RAW, IPV6_CHECKSUM, 2) != 0)
1007 bb_perror_msg_and_die("setsockopt(%s)", "IPV6_CHECKSUM");
1008 if (op & OPT_USE_ICMP)
1009 snd = xsocket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
1010 else
1011 snd = xsocket(AF_INET6, SOCK_DGRAM, 0);
1012 } else
1013#endif
1014 {
1015 if (op & OPT_USE_ICMP)
1016 snd = xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
1017 else
1018 snd = xsocket(AF_INET, SOCK_DGRAM, 0);
1019 }
1020 xmove_fd(snd, sndsock);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001021 }
1022
Eric Andersen5c58d282001-07-10 16:29:00 +00001023#ifdef SO_SNDBUF
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02001024 if (setsockopt_SOL_SOCKET_int(sndsock, SO_SNDBUF, packlen) != 0) {
1025 bb_perror_msg_and_die("setsockopt(%s)", "SO_SNDBUF");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001026 }
Eric Andersenad79c0b2002-06-06 12:24:51 +00001027#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001028#ifdef IP_TOS
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02001029 if ((op & OPT_TOS) && setsockopt_int(sndsock, IPPROTO_IP, IP_TOS, tos) != 0) {
Denys Vlasenko2db782b2015-08-24 19:08:14 +02001030 bb_perror_msg_and_die("setsockopt(%s) %d", "TOS", tos);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001031 }
1032#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001033#ifdef IP_DONTFRAG
1034 if (op & OPT_DONT_FRAGMNT)
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02001035 setsockopt_1(sndsock, IPPROTO_IP, IP_DONTFRAG);
Eric Andersenad79c0b2002-06-06 12:24:51 +00001036#endif
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001037#if TRACEROUTE_SO_DEBUG
Denis Vlasenko2e723232007-03-29 21:55:22 +00001038 if (op & OPT_DEBUG)
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02001039 setsockopt_SOL_SOCKET_1(sndsock, SO_DEBUG);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001040#endif
Denis Vlasenko2e723232007-03-29 21:55:22 +00001041 if (op & OPT_BYPASS_ROUTE)
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02001042 setsockopt_SOL_SOCKET_1(sndsock, SO_DONTROUTE);
Eric Andersen5c58d282001-07-10 16:29:00 +00001043
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001044 outip = xzalloc(packlen);
1045
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001046 ident = getpid();
1047
Denys Vlasenkod0dea172020-12-12 17:24:17 +01001048 outdata = (void*)(outudp + 1);
Denys Vlasenko1c32e492016-09-28 18:39:06 +02001049 if (!ENABLE_TRACEROUTE6 || af == AF_INET) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001050 if (op & OPT_USE_ICMP) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001051 outicmp->icmp_type = ICMP_ECHO;
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001052 /*outicmp->icmp_code = 0; - set by xzalloc */
Denys Vlasenkod0dea172020-12-12 17:24:17 +01001053 outicmp->icmp_id = ident;
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001054 outdata = (void*)((char *)outicmp + SIZEOF_ICMP_HDR);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001055 }
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001056 }
Denys Vlasenko1c32e492016-09-28 18:39:06 +02001057#if ENABLE_TRACEROUTE6
1058 if (af == AF_INET6) {
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001059 outdata = (void*)(outudp6 + 1);
1060 if (op & OPT_USE_ICMP) {
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001061 outicmp6->icmp_type = ICMP6_ECHO_REQUEST;
1062 /*outicmp->icmp_code = 0; - set by xzalloc */
Denys Vlasenkod0dea172020-12-12 17:24:17 +01001063 outicmp6->icmp_id = ident;
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001064 outdata = (void*)((char *)outicmp6 + SIZEOF_ICMP_HDR);
1065 }
Denys Vlasenko1c32e492016-09-28 18:39:06 +02001066 }
1067#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001068
1069 if (op & OPT_DEVICE) /* hmm, do we need error check? */
1070 setsockopt_bindtodevice(sndsock, device);
1071
1072 if (op & OPT_SOURCE) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001073#if ENABLE_TRACEROUTE6
1074// TODO: need xdotted_and_af2sockaddr?
1075 len_and_sockaddr *source_lsa = xhost_and_af2sockaddr(source, 0, af);
1076#else
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001077 len_and_sockaddr *source_lsa = xdotted2sockaddr(source, 0);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001078#endif
Denys Vlasenkod0dea172020-12-12 17:24:17 +01001079 if (getuid() != 0)
1080 bb_simple_error_msg_and_die(bb_msg_you_must_be_root);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001081 /* Ping4 does this (why?) */
1082 if (af == AF_INET)
1083 if (setsockopt(sndsock, IPPROTO_IP, IP_MULTICAST_IF,
1084 &source_lsa->u.sa, source_lsa->len))
James Byrne69374872019-07-02 11:35:03 +02001085 bb_simple_error_msg_and_die("can't set multicast source interface");
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001086//TODO: we can query source port we bound to,
1087// and check it in replies... if we care enough
1088 xbind(sndsock, &source_lsa->u.sa, source_lsa->len);
1089 free(source_lsa);
1090 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001091#if ENABLE_TRACEROUTE6
1092 else if (af == AF_INET6) {
1093//TODO: why we don't do it for IPv4?
1094 len_and_sockaddr *source_lsa;
1095
Denys Vlasenkoca183112011-04-07 17:52:20 +02001096 set_nport(&dest_lsa->u.sa, htons(port));
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001097 /* Connect makes kernel pick source IP and port */
1098 xconnect(sndsock, &dest_lsa->u.sa, dest_lsa->len);
1099 /* Read IP and port */
1100 source_lsa = get_sock_lsa(sndsock);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001101 if (source_lsa == NULL)
James Byrne69374872019-07-02 11:35:03 +02001102 bb_simple_error_msg_and_die("can't get probe addr");
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001103 /* bind our recv socket to this IP (but not port) */
Denys Vlasenkoca183112011-04-07 17:52:20 +02001104 set_nport(&source_lsa->u.sa, 0);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001105 xbind(rcvsock, &source_lsa->u.sa, source_lsa->len);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001106 free(source_lsa);
1107 }
1108#endif
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001109
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001110 /* Revert to non-privileged user after opening sockets */
Rob Landleyafb94ec2006-07-16 08:06:34 +00001111 xsetgid(getgid());
1112 xsetuid(getuid());
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001113
Guilherme Maciel Ferreira4a600f82013-03-08 16:50:51 -03001114 dest_str = xmalloc_sockaddr2dotted_noport(&dest_lsa->u.sa);
1115 printf("traceroute to %s (%s)", argv[0], dest_str);
1116 if (ENABLE_FEATURE_CLEAN_UP) {
1117 free(dest_str);
1118 }
1119
Denis Vlasenko2e723232007-03-29 21:55:22 +00001120 if (op & OPT_SOURCE)
1121 printf(" from %s", source);
1122 printf(", %d hops max, %d byte packets\n", max_ttl, packlen);
Eric Andersen5c58d282001-07-10 16:29:00 +00001123
Ron Yorstond840c5d2015-07-19 23:05:20 +02001124 from_lsa = xmemdup(dest_lsa, LSA_LEN_SIZE + dest_lsa->len);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001125 lastaddr = xzalloc(dest_lsa->len);
1126 to = xzalloc(dest_lsa->len);
Denys Vlasenko0d565682009-11-23 06:15:38 +01001127 seq = 0;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001128 for (ttl = first_ttl; ttl <= max_ttl; ++ttl) {
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001129 int probe;
1130 int unreachable = 0; /* counter */
1131 int gotlastaddr = 0; /* flags */
Eric Andersen5c58d282001-07-10 16:29:00 +00001132 int got_there = 0;
Eric Andersen5c58d282001-07-10 16:29:00 +00001133
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001134 printf("%2d", ttl);
Eric Andersen5c58d282001-07-10 16:29:00 +00001135 for (probe = 0; probe < nprobes; ++probe) {
Denys Vlasenko0d565682009-11-23 06:15:38 +01001136 int read_len;
Denis Vlasenko459be352007-06-17 19:09:05 +00001137 unsigned t1;
1138 unsigned t2;
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001139 int left_ms;
Eric Andersen5c58d282001-07-10 16:29:00 +00001140
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001141 fflush_all();
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001142 if (probe != 0)
Denys Vlasenko6a55b4e2020-11-29 12:40:25 +01001143 msleep(pausemsecs);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001144
Denis Vlasenko459be352007-06-17 19:09:05 +00001145 send_probe(++seq, ttl);
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001146 t2 = t1 = monotonic_us();
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001147
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001148 left_ms = waittime * 1000;
1149 while ((read_len = wait_for_reply(from_lsa, to, &t2, &left_ms)) != 0) {
1150 int icmp_code;
1151
1152 /* Recv'ed a packet, or read error */
1153 /* t2 = monotonic_us() - set by wait_for_reply */
1154
1155 if (read_len < 0)
1156 continue;
1157 icmp_code = packet_ok(read_len, from_lsa, to, seq);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001158 /* Skip short packet */
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001159 if (icmp_code == 0)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001160 continue;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001161
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001162 if (!gotlastaddr
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001163 || (memcmp(lastaddr, &from_lsa->u.sa, from_lsa->len) != 0)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001164 ) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001165 print(read_len, &from_lsa->u.sa, to);
1166 memcpy(lastaddr, &from_lsa->u.sa, from_lsa->len);
Denis Vlasenko766c10c2009-01-24 20:14:24 +00001167 gotlastaddr = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001168 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001169
Denis Vlasenko459be352007-06-17 19:09:05 +00001170 print_delta_ms(t1, t2);
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001171
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001172 if (from_lsa->u.sa.sa_family == AF_INET) {
1173 if (op & OPT_TTL_FLAG) {
1174 struct ip *ip = (struct ip *)recv_pkt;
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001175 printf(" (%d)", ip->ip_ttl);
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001176 }
1177 }
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001178
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001179 /* Got a "time exceeded in transit" icmp message? */
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001180 if (icmp_code == -1)
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001181 break;
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001182
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001183 icmp_code--;
1184 switch (icmp_code) {
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001185#if ENABLE_TRACEROUTE6
1186 case ICMP6_DST_UNREACH_NOPORT << 8:
1187 got_there = 1;
1188 break;
1189#endif
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001190 case ICMP_UNREACH_PORT: {
1191 struct ip *ip = (struct ip *)recv_pkt;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001192 if (ip->ip_ttl <= 1)
1193 printf(" !");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001194 got_there = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001195 break;
Denys Vlasenko3978adc2020-12-12 16:38:43 +01001196 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001197 case ICMP_UNREACH_NET:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001198#if ENABLE_TRACEROUTE6 && (ICMP6_DST_UNREACH_NOROUTE != ICMP_UNREACH_NET)
1199 case ICMP6_DST_UNREACH_NOROUTE << 8:
1200#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001201 printf(" !N");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001202 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001203 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001204 case ICMP_UNREACH_HOST:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001205#if ENABLE_TRACEROUTE6
1206 case ICMP6_DST_UNREACH_ADDR << 8:
1207#endif
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001208 printf(" !H");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001209 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001210 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001211 case ICMP_UNREACH_PROTOCOL:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001212 printf(" !P");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001213 got_there = 1;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001214 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001215 case ICMP_UNREACH_NEEDFRAG:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001216 printf(" !F-%d", pmtu);
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001217 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001218 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001219 case ICMP_UNREACH_SRCFAIL:
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001220#if ENABLE_TRACEROUTE6
1221 case ICMP6_DST_UNREACH_ADMIN << 8:
1222#endif
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001223 printf(" !S");
1224 ++unreachable;
1225 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001226 case ICMP_UNREACH_FILTER_PROHIB:
1227 case ICMP_UNREACH_NET_PROHIB: /* misuse */
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001228 printf(" !A");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001229 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001230 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001231 case ICMP_UNREACH_HOST_PROHIB:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001232 printf(" !C");
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001233 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001234 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001235 case ICMP_UNREACH_HOST_PRECEDENCE:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001236 printf(" !V");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001237 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001238 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001239 case ICMP_UNREACH_PRECEDENCE_CUTOFF:
1240 printf(" !C");
1241 ++unreachable;
1242 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001243 case ICMP_UNREACH_NET_UNKNOWN:
1244 case ICMP_UNREACH_HOST_UNKNOWN:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001245 printf(" !U");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001246 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001247 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001248 case ICMP_UNREACH_ISOLATED:
1249 printf(" !I");
1250 ++unreachable;
1251 break;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001252 case ICMP_UNREACH_TOSNET:
1253 case ICMP_UNREACH_TOSHOST:
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001254 printf(" !T");
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001255 ++unreachable;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001256 break;
1257 default:
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001258 printf(" !<%d>", icmp_code);
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001259 ++unreachable;
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001260 break;
1261 }
1262 break;
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001263 } /* while (wait and read a packet) */
1264
Denys Vlasenko0d565682009-11-23 06:15:38 +01001265 /* there was no packet at all? */
1266 if (read_len == 0)
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001267 printf(" *");
Denys Vlasenkoa348b452011-05-05 02:31:30 +02001268 } /* for (nprobes) */
1269
Denis Vlasenko4daad902007-09-27 10:20:47 +00001270 bb_putchar('\n');
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001271 if (got_there
1272 || (unreachable > 0 && unreachable >= nprobes - 1)
1273 ) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +00001274 break;
Denis Vlasenkofa65a3d2009-01-24 20:11:36 +00001275 }
Eric Andersen5c58d282001-07-10 16:29:00 +00001276 }
Denys Vlasenko0d565682009-11-23 06:15:38 +01001277
Guilherme Maciel Ferreira4a600f82013-03-08 16:50:51 -03001278 if (ENABLE_FEATURE_CLEAN_UP) {
1279 free(to);
1280 free(lastaddr);
1281 free(from_lsa);
1282 }
1283
Eric Andersen5c58d282001-07-10 16:29:00 +00001284 return 0;
1285}
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001286
Denys Vlasenko83423972016-11-23 09:25:57 +01001287#if ENABLE_TRACEROUTE
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001288int traceroute_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1289int traceroute_main(int argc UNUSED_PARAM, char **argv)
1290{
1291 return common_traceroute_main(0, argv);
1292}
Denys Vlasenko83423972016-11-23 09:25:57 +01001293#endif
Leonid Lisovskiy4c065312009-11-23 06:20:09 +01001294
1295#if ENABLE_TRACEROUTE6
1296int traceroute6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1297int traceroute6_main(int argc UNUSED_PARAM, char **argv)
1298{
1299 return common_traceroute_main(OPT_IPV6, argv);
1300}
1301#endif