Bernhard Reutner-Fischer | dac7ff1 | 2006-04-12 17:55:51 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 1988, 1989, 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000 |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 4 | * The Regents of the University of California. All rights reserved. |
| 5 | * |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 6 | * Busybox port by Vladimir Oleynik (C) 2005 <dzo@simtreas.ru> |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 9 | * 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 Vlasenko | 95f7953 | 2017-08-02 14:26:33 +0200 | [diff] [blame] | 15 | * ''This product includes software developed by the University of California, |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 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. |
Denys Vlasenko | 95f7953 | 2017-08-02 14:26:33 +0200 | [diff] [blame] | 20 | * THIS SOFTWARE IS PROVIDED ''AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 21 | * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF |
| 22 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | /* |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 26 | * 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 Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 43 | * traceroute host - trace the route ip packets follow going to "host". |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 44 | * |
| 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 Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 159 | * 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" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 165 | * 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 Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 194 | * 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" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 209 | * -- Van Jacobson (van@ee.lbl.gov) |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 210 | * Tue Dec 20 03:50:13 PST 1988 |
| 211 | */ |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 212 | //config:config TRACEROUTE |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 213 | //config: bool "traceroute (11 kb)" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 214 | //config: default y |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 215 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 216 | //config: Utility to trace the route of IP packets. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 217 | //config: |
| 218 | //config:config TRACEROUTE6 |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 219 | //config: bool "traceroute6 (13 kb)" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 220 | //config: default y |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 221 | //config: depends on FEATURE_IPV6 |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 222 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 223 | //config: Utility to trace the route of IPv6 packets. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 224 | //config: |
| 225 | //config:config FEATURE_TRACEROUTE_VERBOSE |
| 226 | //config: bool "Enable verbose output" |
| 227 | //config: default y |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 228 | //config: depends on TRACEROUTE || TRACEROUTE6 |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 229 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 230 | //config: Add some verbosity to traceroute. This includes among other things |
| 231 | //config: hostnames and ICMP response types. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 232 | //config: |
| 233 | //config:config FEATURE_TRACEROUTE_USE_ICMP |
| 234 | //config: bool "Enable -I option (use ICMP instead of UDP)" |
| 235 | //config: default y |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 236 | //config: depends on TRACEROUTE || TRACEROUTE6 |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 237 | |
| 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 Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 243 | //kbuild:lib-$(CONFIG_TRACEROUTE6) += traceroute.o |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 244 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 245 | //usage:#define traceroute_trivial_usage |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 246 | //usage: "[-"IF_TRACEROUTE6("46")"FIlnrv] [-f 1ST_TTL] [-m MAXTTL] [-q PROBES] [-p PORT]\n" |
Denys Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 247 | //usage: " [-t TOS] [-w WAIT_SEC] [-s SRC_IP] [-i IFACE]\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 248 | //usage: " [-z PAUSE_MSEC] HOST [BYTES]" |
| 249 | //usage:#define traceroute_full_usage "\n\n" |
| 250 | //usage: "Trace the route to HOST\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 251 | //usage: IF_TRACEROUTE6( |
| 252 | //usage: "\n -4,-6 Force IP or IPv6 name resolution" |
| 253 | //usage: ) |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 254 | //usage: "\n -F Set don't fragment bit" |
| 255 | //usage: IF_FEATURE_TRACEROUTE_USE_ICMP( |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 256 | //usage: "\n -I Use ICMP ECHO instead of UDP datagrams" |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 257 | //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 Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 261 | //usage: "\n -n Print numeric addresses" |
| 262 | //usage: "\n -r Bypass routing tables, send directly to HOST" |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 263 | //usage: IF_FEATURE_TRACEROUTE_VERBOSE( |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 264 | //usage: "\n -v Verbose" |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 265 | //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 Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 270 | //usage: "\n (default 33434)" |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 271 | //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 Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 276 | //usage: |
| 277 | //usage:#define traceroute6_trivial_usage |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 278 | //usage: "[-nrv] [-m MAXTTL] [-q PROBES] [-p PORT]\n" |
| 279 | //usage: " [-t TOS] [-w WAIT_SEC] [-s SRC_IP] [-i IFACE]\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 280 | //usage: " HOST [BYTES]" |
| 281 | //usage:#define traceroute6_full_usage "\n\n" |
| 282 | //usage: "Trace the route to HOST\n" |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 283 | //Currently disabled (TRACEROUTE_SO_DEBUG==0) |
| 284 | ////usage: "\n -d Set SO_DEBUG options to socket" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 285 | //usage: "\n -n Print numeric addresses" |
| 286 | //usage: "\n -r Bypass routing tables, send directly to HOST" |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 287 | //usage: IF_FEATURE_TRACEROUTE_VERBOSE( |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 288 | //usage: "\n -v Verbose" |
Denys Vlasenko | 729b706 | 2015-08-24 18:56:46 +0200 | [diff] [blame] | 289 | //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 Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 298 | |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 299 | #define TRACEROUTE_SO_DEBUG 0 |
| 300 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 301 | #include <net/if.h> |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 302 | #include <arpa/inet.h> |
Denis Vlasenko | 6edadde | 2006-10-03 18:19:02 +0000 | [diff] [blame] | 303 | #include <netinet/in.h> |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 304 | #include <netinet/udp.h> |
| 305 | #include <netinet/ip.h> |
| 306 | #include <netinet/ip_icmp.h> |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 307 | #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 Clarke | 518fb3b | 2017-10-07 18:53:23 +0100 | [diff] [blame] | 313 | # if defined(IPV6_PKTINFO) && !defined(IPV6_RECVPKTINFO) |
| 314 | # define IPV6_RECVPKTINFO IPV6_PKTINFO |
| 315 | # endif |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 316 | #endif |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 317 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 318 | #include "libbb.h" |
Denis Vlasenko | 703e202 | 2007-01-22 14:12:08 +0000 | [diff] [blame] | 319 | #include "inet_common.h" |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 320 | |
Denis Vlasenko | 6edadde | 2006-10-03 18:19:02 +0000 | [diff] [blame] | 321 | #ifndef IPPROTO_ICMP |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 322 | # define IPPROTO_ICMP 1 |
Denis Vlasenko | 6edadde | 2006-10-03 18:19:02 +0000 | [diff] [blame] | 323 | #endif |
| 324 | #ifndef IPPROTO_IP |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 325 | # define IPPROTO_IP 0 |
Denis Vlasenko | 6edadde | 2006-10-03 18:19:02 +0000 | [diff] [blame] | 326 | #endif |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 327 | |
James Clarke | 4d0971b | 2017-10-07 18:53:21 +0100 | [diff] [blame] | 328 | /* 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 Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 336 | |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 337 | #define OPT_STRING \ |
| 338 | "FIlnrdvxt:i:m:p:q:s:w:z:f:" \ |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 339 | "4" IF_TRACEROUTE6("6") |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 340 | enum { |
| 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 Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 358 | OPT_IPV4 = (1 << 17), /* 4 */ |
| 359 | OPT_IPV6 = (1 << 18) * ENABLE_TRACEROUTE6, /* 6 */ |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 360 | }; |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 361 | #if ENABLE_FEATURE_TRACEROUTE_VERBOSE |
| 362 | # define verbose (option_mask32 & OPT_VERBOSE) |
| 363 | #else |
| 364 | # define verbose 0 |
| 365 | #endif |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 366 | |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 367 | enum { |
| 368 | SIZEOF_ICMP_HDR = 8, |
| 369 | rcvsock = 3, /* receive (icmp) socket file descriptor */ |
| 370 | sndsock = 4, /* send (udp/icmp) socket file descriptor */ |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 371 | }; |
| 372 | |
| 373 | /* Data section of the probe packet */ |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 374 | struct outdata_t { |
Mike Frysinger | 294254c | 2006-02-19 22:59:12 +0000 | [diff] [blame] | 375 | unsigned char seq; /* sequence number of this packet */ |
| 376 | unsigned char ttl; /* ttl packet left with */ |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 377 | // UNUSED. Retaining to have the same packet size. |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 378 | struct timeval tv_UNUSED PACKED; /* time packet left */ |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 379 | }; |
| 380 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 381 | #if ENABLE_TRACEROUTE6 |
| 382 | struct outdata6_t { |
| 383 | uint32_t ident6; |
| 384 | uint32_t seq6; |
| 385 | struct timeval tv_UNUSED PACKED; /* time packet left */ |
| 386 | }; |
| 387 | #endif |
| 388 | |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 389 | struct globals { |
Denys Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 390 | /* Pointer to entire malloced IP packet, "packlen" bytes long: */ |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 391 | struct ip *outip; |
Denys Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 392 | /* Pointer to ICMP or UDP payload (not header): */ |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 393 | struct outdata_t *outdata; |
Denys Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 394 | |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 395 | len_and_sockaddr *dest_lsa; |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 396 | len_and_sockaddr *from_lsa; /* response came from this address */ |
| 397 | struct sockaddr *to; /* response came to this (local) address */ |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 398 | int packlen; /* total length of packet */ |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 399 | int pmtu; /* Path MTU Discovery (RFC1191) */ |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 400 | uint32_t ident; |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 401 | uint16_t port; /* start udp dest port # for probe packets */ |
| 402 | int waittime; /* time to wait for response (in seconds) */ |
| 403 | int first_ttl; |
| 404 | int nprobes; |
| 405 | unsigned pausemsecs; |
| 406 | int max_ttl; |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 407 | unsigned char recv_pkt[512]; /* last inbound (icmp) packet */ |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 408 | }; |
| 409 | |
| 410 | #define G (*ptr_to_globals) |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 411 | #define outip (G.outip ) |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 412 | #define outdata (G.outdata ) |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 413 | #define dest_lsa (G.dest_lsa ) |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 414 | #define packlen (G.packlen ) |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 415 | #define pmtu (G.pmtu ) |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 416 | #define ident (G.ident ) |
| 417 | #define port (G.port ) |
| 418 | #define waittime (G.waittime ) |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 419 | #define recv_pkt (G.recv_pkt ) |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 420 | #define INIT_G() do { \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 421 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Denis Vlasenko | 9ad2cb3 | 2007-12-16 17:19:40 +0000 | [diff] [blame] | 422 | } while (0) |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 423 | |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 424 | #define outudp ((struct udphdr *)(outip + 1)) |
| 425 | #define outudp6 ((struct udphdr *)(((struct ip6_hdr*)outip) + 1)) |
| 426 | #define outicmp ((struct icmp *)(outip + 1)) |
| 427 | #define outicmp6 ((struct icmp *)(((struct ip6_hdr*)outip) + 1)) |
| 428 | /* NB: for icmp echo, IPv4 and IPv6 fields are the same size and offset: |
| 429 | * struct icmp: |
| 430 | * uint8_t icmp_type; |
| 431 | * uint8_t icmp_code; |
| 432 | * uint16_t icmp_cksum; |
| 433 | * uint16_t icmp_id; |
| 434 | * uint16_t icmp_seq; |
| 435 | * struct icmp6_hdr: |
| 436 | * uint8_t icmp6_type; |
| 437 | * uint8_t icmp6_code; |
| 438 | * uint16_t icmp6_cksum; |
| 439 | * uint16_t icmp6_id; |
| 440 | * uint16_t icmp6_seq; |
| 441 | * therefore both outicmp and outicmp6 are pointers to *IPv4* icmp struct. |
| 442 | * SIZEOF_ICMP_HDR == 8 is the same for both, as well. |
| 443 | * However, values of these pointers are not the same (since IPv6 IP header is larger), |
| 444 | * and icmp_type constants are not the same: |
| 445 | * #define ICMP_ECHO 8 |
| 446 | * #define ICMP_ECHOREPLY 0 |
| 447 | * #define ICMP6_ECHO_REQUEST 128 |
| 448 | * #define ICMP6_ECHO_REPLY 129 |
| 449 | */ |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 450 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 451 | static int |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 452 | wait_for_reply(unsigned *timestamp_us, int *left_ms) |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 453 | { |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 454 | struct pollfd pfd[1]; |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 455 | int read_len = 0; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 456 | |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 457 | pfd[0].fd = rcvsock; |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 458 | pfd[0].events = POLLIN; |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 459 | if (*left_ms >= 0 && safe_poll(pfd, 1, *left_ms) > 0) { |
| 460 | unsigned t; |
| 461 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 462 | read_len = recv_from_to(rcvsock, |
| 463 | recv_pkt, sizeof(recv_pkt), |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 464 | /*flags:*/ MSG_DONTWAIT, |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 465 | &G.from_lsa->u.sa, G.to, G.from_lsa->len); |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 466 | t = monotonic_us(); |
| 467 | *left_ms -= (t - *timestamp_us) / 1000; |
| 468 | *timestamp_us = t; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 469 | } |
| 470 | |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 471 | return read_len; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 472 | } |
| 473 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 474 | static void |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 475 | send_probe(int seq, int ttl) |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 476 | { |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 477 | int len, res; |
| 478 | void *out; |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 479 | struct icmp *icp; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 480 | |
| 481 | /* Payload */ |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 482 | #if ENABLE_TRACEROUTE6 |
| 483 | if (dest_lsa->u.sa.sa_family == AF_INET6) { |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 484 | struct outdata6_t *pkt = (void *) outdata; |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 485 | pkt->ident6 = ident; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 486 | pkt->seq6 = htonl(seq); |
| 487 | /*gettimeofday(&pkt->tv, &tz);*/ |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 488 | icp = outicmp6; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 489 | } else |
| 490 | #endif |
| 491 | { |
| 492 | outdata->seq = seq; |
| 493 | outdata->ttl = ttl; |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 494 | // UNUSED: was storing gettimeofday's result there, but never ever checked it |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 495 | /*memcpy(&outdata->tv, tp, sizeof(outdata->tv));*/ |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 496 | icp = outicmp; |
| 497 | } |
| 498 | out = outdata; |
| 499 | if (option_mask32 & OPT_USE_ICMP) { |
| 500 | out = icp; |
| 501 | /*icp->icmp_type = ICMP[6]_ECHO; - already set */ |
| 502 | /*icp->icmp_code = 0; - already set */ |
| 503 | /*icp->icmp_id = ident; - already set */ |
| 504 | icp->icmp_seq = htons(seq); |
| 505 | /* Always calculate checksum for icmp packets */ |
| 506 | icp->icmp_cksum = 0; |
| 507 | icp->icmp_cksum = inet_cksum( |
| 508 | icp, |
| 509 | ((char*)outip + packlen) - (char*)icp |
| 510 | ); |
| 511 | if (icp->icmp_cksum == 0) |
| 512 | icp->icmp_cksum = 0xffff; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 513 | } |
| 514 | |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 515 | //BUG! verbose is (x & OPT_VERBOSE), not a counter! |
| 516 | #if 0 //ENABLE_FEATURE_TRACEROUTE_VERBOSE |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 517 | /* XXX undocumented debugging hack */ |
| 518 | if (verbose > 1) { |
Denis Vlasenko | 2870301 | 2006-12-19 20:32:02 +0000 | [diff] [blame] | 519 | const uint16_t *sp; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 520 | int nshorts, i; |
| 521 | |
Denis Vlasenko | 2870301 | 2006-12-19 20:32:02 +0000 | [diff] [blame] | 522 | sp = (uint16_t *)outip; |
Denis Vlasenko | 35d4da0 | 2007-01-22 14:04:27 +0000 | [diff] [blame] | 523 | nshorts = (unsigned)packlen / sizeof(uint16_t); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 524 | i = 0; |
| 525 | printf("[ %d bytes", packlen); |
| 526 | while (--nshorts >= 0) { |
| 527 | if ((i++ % 8) == 0) |
| 528 | printf("\n\t"); |
| 529 | printf(" %04x", ntohs(*sp)); |
| 530 | sp++; |
| 531 | } |
| 532 | if (packlen & 1) { |
| 533 | if ((i % 8) == 0) |
| 534 | printf("\n\t"); |
Mike Frysinger | 294254c | 2006-02-19 22:59:12 +0000 | [diff] [blame] | 535 | printf(" %02x", *(unsigned char *)sp); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 536 | } |
| 537 | printf("]\n"); |
| 538 | } |
| 539 | #endif |
| 540 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 541 | #if ENABLE_TRACEROUTE6 |
| 542 | if (dest_lsa->u.sa.sa_family == AF_INET6) { |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 543 | res = setsockopt_int(sndsock, SOL_IPV6, IPV6_UNICAST_HOPS, ttl); |
| 544 | if (res != 0) |
Denys Vlasenko | 2db782b | 2015-08-24 19:08:14 +0200 | [diff] [blame] | 545 | bb_perror_msg_and_die("setsockopt(%s) %d", "UNICAST_HOPS", ttl); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 546 | } else |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 547 | #endif |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 548 | { |
Denys Vlasenko | c14bf21 | 2009-11-24 02:17:13 +0100 | [diff] [blame] | 549 | #if defined IP_TTL |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 550 | res = setsockopt_int(sndsock, IPPROTO_IP, IP_TTL, ttl); |
| 551 | if (res != 0) |
Denys Vlasenko | 2db782b | 2015-08-24 19:08:14 +0200 | [diff] [blame] | 552 | bb_perror_msg_and_die("setsockopt(%s) %d", "TTL", ttl); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 553 | #endif |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 554 | } |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 555 | |
Denys Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 556 | if (!(option_mask32 & OPT_USE_ICMP)) { |
| 557 | set_nport(&dest_lsa->u.sa, htons(port + seq)); |
| 558 | } |
| 559 | len = ((char*)outip + packlen) - (char*)out; |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 560 | res = xsendto(sndsock, out, len, &dest_lsa->u.sa, dest_lsa->len); |
Denys Vlasenko | c14bf21 | 2009-11-24 02:17:13 +0100 | [diff] [blame] | 561 | if (res != len) |
Denys Vlasenko | 066e76b | 2016-03-30 16:20:28 +0200 | [diff] [blame] | 562 | bb_error_msg("sent %d octets, ret=%d", len, res); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 563 | } |
| 564 | |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 565 | #if ENABLE_FEATURE_TRACEROUTE_VERBOSE |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 566 | /* Convert an ICMP "type" field to a printable string */ |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 567 | static const char * |
Mike Frysinger | 294254c | 2006-02-19 22:59:12 +0000 | [diff] [blame] | 568 | pr_type(unsigned char t) |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 569 | { |
Denys Vlasenko | 6cc4962 | 2020-11-30 14:58:02 +0100 | [diff] [blame] | 570 | static const char *const ttab[] ALIGN_PTR = { |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 571 | "Echo Reply", "ICMP 1", "ICMP 2", "Dest Unreachable", |
| 572 | "Source Quench", "Redirect", "ICMP 6", "ICMP 7", |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 573 | "Echo", "Router Advert", "Router Solicit", "Time Exceeded", |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 574 | "Param Problem", "Timestamp", "Timestamp Reply", "Info Request", |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 575 | "Info Reply", "Mask Request", "Mask Reply" |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 576 | }; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 577 | # if ENABLE_TRACEROUTE6 |
Denys Vlasenko | 6cc4962 | 2020-11-30 14:58:02 +0100 | [diff] [blame] | 578 | static const char *const ttab6[] ALIGN_PTR = { |
Denys Vlasenko | e076162 | 2019-10-25 13:39:41 +0200 | [diff] [blame] | 579 | [0] = "Error", "Dest Unreachable", "Packet Too Big", "Time Exceeded", |
| 580 | [4] = "Param Problem", |
| 581 | [8] = "Echo Request", "Echo Reply", "Membership Query", "Membership Report", |
| 582 | [12] = "Membership Reduction", "Router Solicit", "Router Advert", "Neighbor Solicit", |
| 583 | [16] = "Neighbor Advert", "Redirect", |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 584 | }; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 585 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 586 | if (dest_lsa->u.sa.sa_family == AF_INET6) { |
| 587 | if (t < 5) |
| 588 | return ttab6[t]; |
| 589 | if (t < 128 || t > ND_REDIRECT) |
| 590 | return "OUT-OF-RANGE"; |
| 591 | return ttab6[(t & 63) + 8]; |
| 592 | } |
| 593 | # endif |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 594 | if (t >= ARRAY_SIZE(ttab)) |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 595 | return "OUT-OF-RANGE"; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 596 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 597 | return ttab[t]; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 598 | } |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 599 | static void |
| 600 | hexdump(const struct icmp *icp, int len) |
| 601 | { |
| 602 | const unsigned char *p; |
| 603 | int i; |
| 604 | |
| 605 | printf("\n%d bytes from %s to %s: icmp type %d (%s) code %d\n", |
| 606 | len, |
| 607 | auto_string(xmalloc_sockaddr2dotted_noport(&G.from_lsa->u.sa)), |
| 608 | auto_string(xmalloc_sockaddr2dotted_noport(G.to)), |
| 609 | icp->icmp_type, pr_type(icp->icmp_type), |
| 610 | icp->icmp_code |
| 611 | ); |
| 612 | p = (const void *)icp; |
| 613 | for (i = 0; i < len; i++) { |
| 614 | if (i % 16 == 0) |
| 615 | printf("%04x:", i); |
| 616 | if (i % 4 == 0) |
| 617 | bb_putchar(' '); |
| 618 | printf("%02x", p[i]); |
| 619 | if ((i % 16 == 15) && (i + 1 < len)) |
| 620 | bb_putchar('\n'); |
| 621 | } |
| 622 | bb_putchar('\n'); |
| 623 | } |
| 624 | #else |
| 625 | # define hexdump(...) ((void)0) |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 626 | #endif |
| 627 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 628 | static int |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 629 | packet4_ok(int read_len, int seq) |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 630 | { |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 631 | const struct icmp *icp; |
Mike Frysinger | 294254c | 2006-02-19 22:59:12 +0000 | [diff] [blame] | 632 | unsigned char type, code; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 633 | int hlen; |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 634 | const struct ip *ip; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 635 | |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 636 | /* NB: reads from (AF_INET, SOCK_RAW, IPPROTO_ICMP) socket |
| 637 | * return the entire IP packet (IOW: they do not strip IP header). |
| 638 | * This differs from (AF_INET6, SOCK_RAW, IPPROTO_ICMPV6) sockets!? |
| 639 | */ |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 640 | ip = (struct ip *) recv_pkt; |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 641 | |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 642 | hlen = ip->ip_hl << 2; |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 643 | if (read_len < hlen + ICMP_MINLEN) { |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 644 | if (verbose) |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 645 | printf("packet too short (%d bytes) from %s\n", read_len, |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 646 | inet_ntoa(G.from_lsa->u.sin.sin_addr)); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 647 | return 0; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 648 | } |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 649 | read_len -= hlen; |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 650 | icp = (struct icmp *)(recv_pkt + hlen); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 651 | type = icp->icmp_type; |
| 652 | code = icp->icmp_code; |
| 653 | /* Path MTU Discovery (RFC1191) */ |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 654 | pmtu = 0; |
| 655 | if (code == ICMP_UNREACH_NEEDFRAG) |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 656 | pmtu = ntohs(icp->icmp_nextmtu); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 657 | |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 658 | if ((option_mask32 & OPT_USE_ICMP) |
| 659 | && type == ICMP_ECHOREPLY |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 660 | && icp->icmp_id == ident |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 661 | && icp->icmp_seq == htons(seq) |
| 662 | ) { |
| 663 | /* In UDP mode, when we reach the machine, we (usually) |
| 664 | * would get "port unreachable" - in ICMP we got "echo reply". |
| 665 | * Simulate "port unreachable" for caller: |
| 666 | */ |
| 667 | return ICMP_UNREACH_PORT+1; |
| 668 | } |
| 669 | |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 670 | if ((type == ICMP_TIMXCEED && code == ICMP_TIMXCEED_INTRANS) |
| 671 | || type == ICMP_UNREACH |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 672 | ) { |
| 673 | const struct ip *hip; |
| 674 | const struct udphdr *up; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 675 | |
| 676 | hip = &icp->icmp_ip; |
| 677 | hlen = hip->ip_hl << 2; |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 678 | if (option_mask32 & OPT_USE_ICMP) { |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 679 | struct icmp *hicmp; |
| 680 | |
Mike Frysinger | 294254c | 2006-02-19 22:59:12 +0000 | [diff] [blame] | 681 | hicmp = (struct icmp *)((unsigned char *)hip + hlen); |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 682 | if (hlen + SIZEOF_ICMP_HDR <= read_len |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 683 | && hip->ip_p == IPPROTO_ICMP |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 684 | && hicmp->icmp_id == ident |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 685 | && hicmp->icmp_seq == htons(seq) |
| 686 | ) { |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 687 | return (type == ICMP_TIMXCEED ? -1 : code + 1); |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 688 | } |
| 689 | } else { |
| 690 | up = (struct udphdr *)((char *)hip + hlen); |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 691 | if (hlen + 12 <= read_len |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 692 | && hip->ip_p == IPPROTO_UDP |
| 693 | // Off: since we do not form the entire IP packet, |
| 694 | // but defer it to kernel, we can't set source port, |
| 695 | // and thus can't check it here in the reply |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 696 | /* && up->source == ident */ |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 697 | && up->dest == htons(port + seq) |
| 698 | ) { |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 699 | return (type == ICMP_TIMXCEED ? -1 : code + 1); |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 700 | } |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 701 | } |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 702 | } |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 703 | if (verbose) |
| 704 | hexdump(icp, read_len); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 705 | return 0; |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 706 | } |
| 707 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 708 | #if ENABLE_TRACEROUTE6 |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 709 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 710 | static int |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 711 | packet6_ok(int read_len, int seq) |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 712 | { |
| 713 | const struct icmp6_hdr *icp; |
| 714 | unsigned char type, code; |
| 715 | |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 716 | /* NB: reads from (AF_INET6, SOCK_RAW, IPPROTO_ICMPV6) socket |
| 717 | * return only ICMP packet (IOW: they strip IPv6 header). |
| 718 | * This differs from (AF_INET, SOCK_RAW, IPPROTO_ICMP) sockets!? |
| 719 | */ |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 720 | icp = (struct icmp6_hdr *) recv_pkt; |
| 721 | |
| 722 | type = icp->icmp6_type; |
| 723 | code = icp->icmp6_code; |
| 724 | |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 725 | if ((option_mask32 & OPT_USE_ICMP) |
| 726 | && type == ICMP6_ECHO_REPLY |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 727 | && icp->icmp6_id == ident |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 728 | && icp->icmp6_seq == htons(seq) |
| 729 | ) { |
| 730 | /* In UDP mode, when we reach the machine, we (usually) |
| 731 | * would get "port unreachable" - in ICMP we got "echo reply". |
| 732 | * Simulate "port unreachable" for caller: |
| 733 | */ |
| 734 | return (ICMP6_DST_UNREACH_NOPORT << 8) + 1; |
| 735 | } |
| 736 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 737 | if ((type == ICMP6_TIME_EXCEEDED && code == ICMP6_TIME_EXCEED_TRANSIT) |
| 738 | || type == ICMP6_DST_UNREACH |
| 739 | ) { |
| 740 | struct ip6_hdr *hip; |
| 741 | struct udphdr *up; |
| 742 | int nexthdr; |
| 743 | |
| 744 | hip = (struct ip6_hdr *)(icp + 1); |
| 745 | up = (struct udphdr *) (hip + 1); |
| 746 | nexthdr = hip->ip6_nxt; |
| 747 | |
| 748 | if (nexthdr == IPPROTO_FRAGMENT) { |
| 749 | nexthdr = *(unsigned char*)up; |
| 750 | up++; |
| 751 | } |
| 752 | if (nexthdr == IPPROTO_UDP) { |
| 753 | struct outdata6_t *pkt; |
| 754 | |
| 755 | pkt = (struct outdata6_t *) (up + 1); |
| 756 | |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 757 | if (pkt->ident6 == ident |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 758 | && ntohl(pkt->seq6) == seq |
| 759 | ) { |
| 760 | return (type == ICMP6_TIME_EXCEEDED ? -1 : (code<<8)+1); |
| 761 | } |
| 762 | } |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 763 | } |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 764 | if (verbose) |
| 765 | /* cast is safe since the beginning of icmp4 and icmp6 layouts match */ |
| 766 | hexdump((const struct icmp *)icp, read_len); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 767 | return 0; |
| 768 | } |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 769 | |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 770 | static int |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 771 | packet_ok(int read_len, int seq) |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 772 | { |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 773 | if (G.from_lsa->u.sa.sa_family == AF_INET) |
| 774 | return packet4_ok(read_len, seq); |
| 775 | return packet6_ok(read_len, seq); |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 776 | } |
| 777 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 778 | #else /* !ENABLE_TRACEROUTE6 */ |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 779 | |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 780 | # define packet_ok(read_len, seq) packet4_ok(read_len, seq) |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 781 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 782 | #endif |
| 783 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 784 | static void |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 785 | print(int read_len) |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 786 | { |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 787 | char *ina = auto_string(xmalloc_sockaddr2dotted_noport(&G.from_lsa->u.sa)); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 788 | |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 789 | if (option_mask32 & OPT_ADDR_NUM) { |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 790 | printf(" %s", ina); |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 791 | } else { |
Denis Vlasenko | 6d9ea24 | 2007-06-19 11:12:46 +0000 | [diff] [blame] | 792 | char *n = NULL; |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 793 | if (G.from_lsa->u.sa.sa_family != AF_INET |
| 794 | || G.from_lsa->u.sin.sin_addr.s_addr != INADDR_ANY |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 795 | ) { |
| 796 | /* Try to reverse resolve if it is not 0.0.0.0 */ |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 797 | n = auto_string(xmalloc_sockaddr2host_noport(&G.from_lsa->u.sa)); |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 798 | } |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 799 | printf(" %s (%s)", (n ? n : ina), ina); |
Denis Vlasenko | 6d9ea24 | 2007-06-19 11:12:46 +0000 | [diff] [blame] | 800 | } |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 801 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 802 | if (verbose) { |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 803 | #if ENABLE_TRACEROUTE6 |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 804 | /* NB: reads from (AF_INET, SOCK_RAW, IPPROTO_ICMP) socket |
| 805 | * return the entire IP packet (IOW: they do not strip IP header). |
| 806 | * Reads from (AF_INET6, SOCK_RAW, IPPROTO_ICMPV6) do strip IPv6 |
| 807 | * header and return only ICMP6 packet. Weird. |
| 808 | */ |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 809 | if (G.from_lsa->u.sa.sa_family == AF_INET6) { |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 810 | /* read_len -= sizeof(struct ip6_hdr); - WRONG! */ |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 811 | } else |
| 812 | #endif |
| 813 | { |
Denys Vlasenko | dd169e8 | 2011-01-20 12:13:23 +0100 | [diff] [blame] | 814 | struct ip *ip4packet = (struct ip*)recv_pkt; |
| 815 | read_len -= ip4packet->ip_hl << 2; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 816 | } |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 817 | printf(" %d bytes to %s", read_len, |
| 818 | auto_string(xmalloc_sockaddr2dotted_noport(G.to)) |
| 819 | ); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 820 | } |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | static void |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 824 | print_delta_ms(unsigned t1p, unsigned t2p) |
Denis Vlasenko | 1adf681 | 2007-06-14 07:47:52 +0000 | [diff] [blame] | 825 | { |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 826 | unsigned tt = t2p - t1p; |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 827 | printf(" %u.%03u ms", tt / 1000, tt % 1000); |
Denis Vlasenko | 1adf681 | 2007-06-14 07:47:52 +0000 | [diff] [blame] | 828 | } |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 829 | |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 830 | /* Keeping init code in a separate (not inlined!) function |
| 831 | * for stack use reduction and better register allocation in main loop. |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 832 | */ |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 833 | static NOINLINE void |
| 834 | traceroute_init(int op, char **argv) |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 835 | { |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 836 | char *source; |
| 837 | char *device; |
| 838 | char *tos_str; |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 839 | char *max_ttl_str; |
| 840 | char *port_str; |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 841 | char *nprobes_str; |
| 842 | char *waittime_str; |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 843 | char *pausemsecs_str; |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 844 | char *first_ttl_str; |
Guilherme Maciel Ferreira | 4a600f8 | 2013-03-08 16:50:51 -0300 | [diff] [blame] | 845 | char *dest_str; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 846 | #if ENABLE_TRACEROUTE6 |
Denys Vlasenko | c14bf21 | 2009-11-24 02:17:13 +0100 | [diff] [blame] | 847 | sa_family_t af; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 848 | #else |
| 849 | enum { af = AF_INET }; |
| 850 | #endif |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 851 | |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 852 | /* Ensure the socket fds won't be 0, 1 or 2 */ |
| 853 | bb_sanitize_stdio(); |
| 854 | |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 855 | INIT_G(); |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 856 | port = 33434; |
| 857 | waittime = 5; |
| 858 | G.first_ttl = 1; |
| 859 | G.nprobes = 3; |
| 860 | G.max_ttl = 30; |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 861 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 862 | op |= getopt32(argv, "^" |
| 863 | OPT_STRING |
| 864 | "\0" "-1:x-x" /* minimum 1 arg */ |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 865 | , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str |
| 866 | , &source, &waittime_str, &pausemsecs_str, &first_ttl_str |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 867 | ); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 868 | argv += optind; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 869 | |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 870 | #if 0 /* IGNORED */ |
| 871 | if (op & OPT_IP_CHKSUM) |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 872 | bb_error_msg("warning: ip checksums disabled"); |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 873 | #endif |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 874 | if (op & OPT_MAX_TTL) |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 875 | G.max_ttl = xatou_range(max_ttl_str, 1, 255); |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 876 | if (op & OPT_PORT) |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 877 | port = xatou16(port_str); |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 878 | if (op & OPT_NPROBES) |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 879 | G.nprobes = xatou_range(nprobes_str, 1, INT_MAX); |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 880 | if (op & OPT_WAITTIME) |
Denis Vlasenko | bdea2c0 | 2009-01-24 21:23:41 +0000 | [diff] [blame] | 881 | waittime = xatou_range(waittime_str, 1, 24 * 60 * 60); |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 882 | if (op & OPT_PAUSE_MS) |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 883 | G.pausemsecs = xatou_range(pausemsecs_str, 0, 60 * 60 * 1000); |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 884 | if (op & OPT_FIRST_TTL) |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 885 | G.first_ttl = xatou_range(first_ttl_str, 1, G.max_ttl); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 886 | |
Denys Vlasenko | c14bf21 | 2009-11-24 02:17:13 +0100 | [diff] [blame] | 887 | /* Process destination and optional packet size */ |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 888 | packlen = sizeof(struct ip) |
Denys Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 889 | + sizeof(struct udphdr) |
| 890 | + sizeof(struct outdata_t); |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 891 | if (op & OPT_USE_ICMP) { |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 892 | packlen = sizeof(struct ip) |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 893 | + SIZEOF_ICMP_HDR |
| 894 | + sizeof(struct outdata_t); |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 895 | port = 0; /* on ICMP6 sockets, sendto(ipv6.nonzero_port) throws EINVAL! */ |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 896 | } |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 897 | #if ENABLE_TRACEROUTE6 |
Denys Vlasenko | c14bf21 | 2009-11-24 02:17:13 +0100 | [diff] [blame] | 898 | af = AF_UNSPEC; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 899 | if (op & OPT_IPV4) |
| 900 | af = AF_INET; |
Denys Vlasenko | c14bf21 | 2009-11-24 02:17:13 +0100 | [diff] [blame] | 901 | if (op & OPT_IPV6) |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 902 | af = AF_INET6; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 903 | dest_lsa = xhost_and_af2sockaddr(argv[0], port, af); |
| 904 | af = dest_lsa->u.sa.sa_family; |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 905 | if (af == AF_INET6) { |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 906 | packlen = sizeof(struct ip6_hdr) |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 907 | + sizeof(struct udphdr) |
| 908 | + sizeof(struct outdata6_t); |
| 909 | if (op & OPT_USE_ICMP) |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 910 | packlen = sizeof(struct ip6_hdr) |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 911 | + SIZEOF_ICMP_HDR |
| 912 | + sizeof(struct outdata6_t); |
| 913 | } |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 914 | #else |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 915 | dest_lsa = xhost2sockaddr(argv[0], port); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 916 | #endif |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 917 | //TODO: make sure af == AF_INET[6]? (FEATURE_UNIX_LOCAL=y allows "local:/PATH" to be translated to AF_UNIX) |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 918 | G.from_lsa = xmemdup(dest_lsa, LSA_LEN_SIZE + dest_lsa->len); |
| 919 | G.to = xzalloc(dest_lsa->len); |
Denys Vlasenko | c14bf21 | 2009-11-24 02:17:13 +0100 | [diff] [blame] | 920 | if (argv[1]) |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 921 | packlen = xatoul_range(argv[1], packlen, 32 * 1024); |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 922 | |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 923 | if (af == AF_INET) { |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 924 | xmove_fd(xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP), rcvsock); |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 925 | /* want recvmsg to report target local address (for -v) */ |
| 926 | setsockopt_1(rcvsock, IPPROTO_IP, IP_PKTINFO); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 927 | } |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 928 | #if ENABLE_TRACEROUTE6 |
| 929 | else { |
| 930 | xmove_fd(xsocket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6), rcvsock); |
| 931 | /* want recvmsg to report target local address (for -v) */ |
| 932 | setsockopt_1(rcvsock, SOL_IPV6, IPV6_RECVPKTINFO); |
| 933 | } |
| 934 | #endif |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 935 | |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 936 | #if TRACEROUTE_SO_DEBUG |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 937 | if (op & OPT_DEBUG) |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 938 | setsockopt_SOL_SOCKET_1(rcvsock, SO_DEBUG); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 939 | #endif |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 940 | if (op & OPT_BYPASS_ROUTE) |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 941 | setsockopt_SOL_SOCKET_1(rcvsock, SO_DONTROUTE); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 942 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 943 | { |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 944 | int snd; |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 945 | if (af == AF_INET) { |
| 946 | if (op & OPT_USE_ICMP) |
| 947 | snd = xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP); |
| 948 | else |
| 949 | snd = xsocket(AF_INET, SOCK_DGRAM, 0); |
| 950 | } |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 951 | #if ENABLE_TRACEROUTE6 |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 952 | else { |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 953 | if (setsockopt_int(rcvsock, SOL_RAW, IPV6_CHECKSUM, 2) != 0) |
| 954 | bb_perror_msg_and_die("setsockopt(%s)", "IPV6_CHECKSUM"); |
| 955 | if (op & OPT_USE_ICMP) |
| 956 | snd = xsocket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6); |
| 957 | else |
| 958 | snd = xsocket(AF_INET6, SOCK_DGRAM, 0); |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 959 | } |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 960 | #endif |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 961 | xmove_fd(snd, sndsock); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 962 | } |
| 963 | |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 964 | #ifdef SO_SNDBUF |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 965 | if (setsockopt_SOL_SOCKET_int(sndsock, SO_SNDBUF, packlen) != 0) { |
| 966 | bb_perror_msg_and_die("setsockopt(%s)", "SO_SNDBUF"); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 967 | } |
Eric Andersen | ad79c0b | 2002-06-06 12:24:51 +0000 | [diff] [blame] | 968 | #endif |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 969 | #ifdef IP_TOS |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 970 | if (op & OPT_TOS) { |
| 971 | int tos = xatou_range(tos_str, 0, 255); |
| 972 | if (setsockopt_int(sndsock, IPPROTO_IP, IP_TOS, tos) != 0) |
| 973 | bb_perror_msg_and_die("setsockopt(%s,%d)", "TOS", tos); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 974 | } |
| 975 | #endif |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 976 | #ifdef IP_DONTFRAG |
| 977 | if (op & OPT_DONT_FRAGMNT) |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 978 | setsockopt_1(sndsock, IPPROTO_IP, IP_DONTFRAG); |
Eric Andersen | ad79c0b | 2002-06-06 12:24:51 +0000 | [diff] [blame] | 979 | #endif |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 980 | #if TRACEROUTE_SO_DEBUG |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 981 | if (op & OPT_DEBUG) |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 982 | setsockopt_SOL_SOCKET_1(sndsock, SO_DEBUG); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 983 | #endif |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 984 | if (op & OPT_BYPASS_ROUTE) |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 985 | setsockopt_SOL_SOCKET_1(sndsock, SO_DONTROUTE); |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 986 | |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 987 | outip = xzalloc(packlen); |
| 988 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 989 | ident = getpid(); |
| 990 | |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 991 | outdata = (void*)(outudp + 1); |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 992 | if (af == AF_INET) { |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 993 | if (op & OPT_USE_ICMP) { |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 994 | outicmp->icmp_type = ICMP_ECHO; |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 995 | /*outicmp->icmp_code = 0; - set by xzalloc */ |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 996 | outicmp->icmp_id = ident; |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 997 | outdata = (void*)((char *)outicmp + SIZEOF_ICMP_HDR); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 998 | } |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 999 | } |
Denys Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 1000 | #if ENABLE_TRACEROUTE6 |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 1001 | else { |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1002 | outdata = (void*)(outudp6 + 1); |
| 1003 | if (op & OPT_USE_ICMP) { |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1004 | outicmp6->icmp_type = ICMP6_ECHO_REQUEST; |
| 1005 | /*outicmp->icmp_code = 0; - set by xzalloc */ |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 1006 | outicmp6->icmp_id = ident; |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1007 | outdata = (void*)((char *)outicmp6 + SIZEOF_ICMP_HDR); |
| 1008 | } |
Denys Vlasenko | 1c32e49 | 2016-09-28 18:39:06 +0200 | [diff] [blame] | 1009 | } |
| 1010 | #endif |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 1011 | |
| 1012 | if (op & OPT_DEVICE) /* hmm, do we need error check? */ |
| 1013 | setsockopt_bindtodevice(sndsock, device); |
| 1014 | |
| 1015 | if (op & OPT_SOURCE) { |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1016 | #if ENABLE_TRACEROUTE6 |
| 1017 | // TODO: need xdotted_and_af2sockaddr? |
| 1018 | len_and_sockaddr *source_lsa = xhost_and_af2sockaddr(source, 0, af); |
| 1019 | #else |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 1020 | len_and_sockaddr *source_lsa = xdotted2sockaddr(source, 0); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1021 | #endif |
Denys Vlasenko | d0dea17 | 2020-12-12 17:24:17 +0100 | [diff] [blame] | 1022 | if (getuid() != 0) |
| 1023 | bb_simple_error_msg_and_die(bb_msg_you_must_be_root); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1024 | /* Ping4 does this (why?) */ |
| 1025 | if (af == AF_INET) |
| 1026 | if (setsockopt(sndsock, IPPROTO_IP, IP_MULTICAST_IF, |
| 1027 | &source_lsa->u.sa, source_lsa->len)) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1028 | bb_simple_error_msg_and_die("can't set multicast source interface"); |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 1029 | //TODO: we can query source port we bound to, |
| 1030 | // and check it in replies... if we care enough |
| 1031 | xbind(sndsock, &source_lsa->u.sa, source_lsa->len); |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 1032 | if (ENABLE_FEATURE_CLEAN_UP) |
| 1033 | free(source_lsa); |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 1034 | } else { |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1035 | len_and_sockaddr *source_lsa; |
| 1036 | |
Denys Vlasenko | ca18311 | 2011-04-07 17:52:20 +0200 | [diff] [blame] | 1037 | set_nport(&dest_lsa->u.sa, htons(port)); |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 1038 | /* Connect makes kernel pick source IP (and port if UDP) */ |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1039 | xconnect(sndsock, &dest_lsa->u.sa, dest_lsa->len); |
| 1040 | /* Read IP and port */ |
| 1041 | source_lsa = get_sock_lsa(sndsock); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1042 | if (source_lsa == NULL) |
Denys Vlasenko | e76f03b | 2020-12-12 21:09:21 +0100 | [diff] [blame^] | 1043 | bb_simple_perror_msg_and_die("getsockname"); |
| 1044 | /* bind our recv ICMP socket to this IP (but not port, ICMP has no ports) */ |
| 1045 | //set_nport(&source_lsa->u.sa, 0); - paranoia, seems to work without this for both ipv4 and ipv6 |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1046 | xbind(rcvsock, &source_lsa->u.sa, source_lsa->len); |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 1047 | if (ENABLE_FEATURE_CLEAN_UP) |
| 1048 | free(source_lsa); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1049 | } |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 1050 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1051 | /* Revert to non-privileged user after opening sockets */ |
Rob Landley | afb94ec | 2006-07-16 08:06:34 +0000 | [diff] [blame] | 1052 | xsetgid(getgid()); |
| 1053 | xsetuid(getuid()); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1054 | |
Guilherme Maciel Ferreira | 4a600f8 | 2013-03-08 16:50:51 -0300 | [diff] [blame] | 1055 | dest_str = xmalloc_sockaddr2dotted_noport(&dest_lsa->u.sa); |
| 1056 | printf("traceroute to %s (%s)", argv[0], dest_str); |
Denys Vlasenko | df5c539 | 2020-12-12 20:08:36 +0100 | [diff] [blame] | 1057 | if (ENABLE_FEATURE_CLEAN_UP) |
Guilherme Maciel Ferreira | 4a600f8 | 2013-03-08 16:50:51 -0300 | [diff] [blame] | 1058 | free(dest_str); |
Guilherme Maciel Ferreira | 4a600f8 | 2013-03-08 16:50:51 -0300 | [diff] [blame] | 1059 | |
Denis Vlasenko | 2e72323 | 2007-03-29 21:55:22 +0000 | [diff] [blame] | 1060 | if (op & OPT_SOURCE) |
| 1061 | printf(" from %s", source); |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 1062 | printf(", %d hops max, %d byte packets\n", G.max_ttl, packlen); |
| 1063 | } |
| 1064 | |
| 1065 | static int |
| 1066 | common_traceroute_main(int op, char **argv) |
| 1067 | { |
| 1068 | int ttl; |
| 1069 | int seq; |
| 1070 | struct sockaddr *lastaddr; |
| 1071 | |
| 1072 | traceroute_init(op, argv); |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 1073 | |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1074 | lastaddr = xzalloc(dest_lsa->len); |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 1075 | seq = 0; |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 1076 | for (ttl = G.first_ttl; ttl <= G.max_ttl; ++ttl) { |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 1077 | int probe; |
| 1078 | int unreachable = 0; /* counter */ |
| 1079 | int gotlastaddr = 0; /* flags */ |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 1080 | int got_there = 0; |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 1081 | |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 1082 | printf("%2d", ttl); |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 1083 | for (probe = 0; probe < G.nprobes; ++probe) { |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 1084 | int read_len; |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 1085 | unsigned t1; |
| 1086 | unsigned t2; |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1087 | int left_ms; |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 1088 | |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 1089 | fflush_all(); |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1090 | if (probe != 0) |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 1091 | msleep(G.pausemsecs); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1092 | |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 1093 | send_probe(++seq, ttl); |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1094 | t2 = t1 = monotonic_us(); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1095 | |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1096 | left_ms = waittime * 1000; |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 1097 | /* NB: wait_for_reply() fills "G.from_lsa" and "G.to" with |
| 1098 | * "where it came from" and "what local address it arrived to" |
| 1099 | * addresses. |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 1100 | */ |
| 1101 | while ((read_len = wait_for_reply(&t2, &left_ms)) != 0) { |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1102 | int icmp_code; |
| 1103 | |
| 1104 | /* Recv'ed a packet, or read error */ |
| 1105 | /* t2 = monotonic_us() - set by wait_for_reply */ |
| 1106 | |
| 1107 | if (read_len < 0) |
| 1108 | continue; |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 1109 | icmp_code = packet_ok(read_len, seq); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1110 | /* Skip short packet */ |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1111 | if (icmp_code == 0) |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1112 | continue; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1113 | |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1114 | if (!gotlastaddr |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 1115 | || (memcmp(lastaddr, &G.from_lsa->u.sa, G.from_lsa->len) != 0) |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1116 | ) { |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 1117 | print(read_len); |
| 1118 | memcpy(lastaddr, &G.from_lsa->u.sa, G.from_lsa->len); |
Denis Vlasenko | 766c10c | 2009-01-24 20:14:24 +0000 | [diff] [blame] | 1119 | gotlastaddr = 1; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1120 | } |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1121 | |
Denis Vlasenko | 459be35 | 2007-06-17 19:09:05 +0000 | [diff] [blame] | 1122 | print_delta_ms(t1, t2); |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1123 | |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 1124 | if (G.from_lsa->u.sa.sa_family == AF_INET) { |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1125 | if (op & OPT_TTL_FLAG) { |
| 1126 | struct ip *ip = (struct ip *)recv_pkt; |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1127 | printf(" (%d)", ip->ip_ttl); |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1128 | } |
| 1129 | } |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1130 | |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1131 | /* Got a "time exceeded in transit" icmp message? */ |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1132 | if (icmp_code == -1) |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1133 | break; |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1134 | |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1135 | icmp_code--; |
| 1136 | switch (icmp_code) { |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1137 | #if ENABLE_TRACEROUTE6 |
| 1138 | case ICMP6_DST_UNREACH_NOPORT << 8: |
| 1139 | got_there = 1; |
| 1140 | break; |
| 1141 | #endif |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1142 | case ICMP_UNREACH_PORT: { |
| 1143 | struct ip *ip = (struct ip *)recv_pkt; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1144 | if (ip->ip_ttl <= 1) |
| 1145 | printf(" !"); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1146 | got_there = 1; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1147 | break; |
Denys Vlasenko | 3978adc | 2020-12-12 16:38:43 +0100 | [diff] [blame] | 1148 | } |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1149 | case ICMP_UNREACH_NET: |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1150 | #if ENABLE_TRACEROUTE6 && (ICMP6_DST_UNREACH_NOROUTE != ICMP_UNREACH_NET) |
| 1151 | case ICMP6_DST_UNREACH_NOROUTE << 8: |
| 1152 | #endif |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1153 | printf(" !N"); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1154 | ++unreachable; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1155 | break; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1156 | case ICMP_UNREACH_HOST: |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1157 | #if ENABLE_TRACEROUTE6 |
| 1158 | case ICMP6_DST_UNREACH_ADDR << 8: |
| 1159 | #endif |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1160 | printf(" !H"); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1161 | ++unreachable; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1162 | break; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1163 | case ICMP_UNREACH_PROTOCOL: |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1164 | printf(" !P"); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1165 | got_there = 1; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1166 | break; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1167 | case ICMP_UNREACH_NEEDFRAG: |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1168 | printf(" !F-%d", pmtu); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1169 | ++unreachable; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1170 | break; |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1171 | case ICMP_UNREACH_SRCFAIL: |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1172 | #if ENABLE_TRACEROUTE6 |
| 1173 | case ICMP6_DST_UNREACH_ADMIN << 8: |
| 1174 | #endif |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1175 | printf(" !S"); |
| 1176 | ++unreachable; |
| 1177 | break; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1178 | case ICMP_UNREACH_FILTER_PROHIB: |
| 1179 | case ICMP_UNREACH_NET_PROHIB: /* misuse */ |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1180 | printf(" !A"); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1181 | ++unreachable; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1182 | break; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1183 | case ICMP_UNREACH_HOST_PROHIB: |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1184 | printf(" !C"); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1185 | ++unreachable; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1186 | break; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1187 | case ICMP_UNREACH_HOST_PRECEDENCE: |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1188 | printf(" !V"); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1189 | ++unreachable; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1190 | break; |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1191 | case ICMP_UNREACH_PRECEDENCE_CUTOFF: |
| 1192 | printf(" !C"); |
| 1193 | ++unreachable; |
| 1194 | break; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1195 | case ICMP_UNREACH_NET_UNKNOWN: |
| 1196 | case ICMP_UNREACH_HOST_UNKNOWN: |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1197 | printf(" !U"); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1198 | ++unreachable; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1199 | break; |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1200 | case ICMP_UNREACH_ISOLATED: |
| 1201 | printf(" !I"); |
| 1202 | ++unreachable; |
| 1203 | break; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1204 | case ICMP_UNREACH_TOSNET: |
| 1205 | case ICMP_UNREACH_TOSHOST: |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1206 | printf(" !T"); |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1207 | ++unreachable; |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1208 | break; |
| 1209 | default: |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1210 | printf(" !<%d>", icmp_code); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1211 | ++unreachable; |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1212 | break; |
| 1213 | } |
| 1214 | break; |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1215 | } /* while (wait and read a packet) */ |
| 1216 | |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 1217 | /* there was no packet at all? */ |
| 1218 | if (read_len == 0) |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1219 | printf(" *"); |
Denys Vlasenko | a348b45 | 2011-05-05 02:31:30 +0200 | [diff] [blame] | 1220 | } /* for (nprobes) */ |
| 1221 | |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 1222 | bb_putchar('\n'); |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1223 | if (got_there |
Denys Vlasenko | cc55bbe | 2020-12-12 18:05:09 +0100 | [diff] [blame] | 1224 | || (unreachable > 0 && unreachable >= G.nprobes - 1) |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1225 | ) { |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 1226 | break; |
Denis Vlasenko | fa65a3d | 2009-01-24 20:11:36 +0000 | [diff] [blame] | 1227 | } |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 1228 | } |
Denys Vlasenko | 0d56568 | 2009-11-23 06:15:38 +0100 | [diff] [blame] | 1229 | |
Guilherme Maciel Ferreira | 4a600f8 | 2013-03-08 16:50:51 -0300 | [diff] [blame] | 1230 | if (ENABLE_FEATURE_CLEAN_UP) { |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 1231 | free(G.to); |
Guilherme Maciel Ferreira | 4a600f8 | 2013-03-08 16:50:51 -0300 | [diff] [blame] | 1232 | free(lastaddr); |
Denys Vlasenko | 7072664 | 2020-12-12 17:45:49 +0100 | [diff] [blame] | 1233 | free(G.from_lsa); |
Guilherme Maciel Ferreira | 4a600f8 | 2013-03-08 16:50:51 -0300 | [diff] [blame] | 1234 | } |
| 1235 | |
Eric Andersen | 5c58d28 | 2001-07-10 16:29:00 +0000 | [diff] [blame] | 1236 | return 0; |
| 1237 | } |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1238 | |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 1239 | #if ENABLE_TRACEROUTE |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1240 | int traceroute_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 1241 | int traceroute_main(int argc UNUSED_PARAM, char **argv) |
| 1242 | { |
| 1243 | return common_traceroute_main(0, argv); |
| 1244 | } |
Denys Vlasenko | 8342397 | 2016-11-23 09:25:57 +0100 | [diff] [blame] | 1245 | #endif |
Leonid Lisovskiy | 4c06531 | 2009-11-23 06:20:09 +0100 | [diff] [blame] | 1246 | |
| 1247 | #if ENABLE_TRACEROUTE6 |
| 1248 | int traceroute6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 1249 | int traceroute6_main(int argc UNUSED_PARAM, char **argv) |
| 1250 | { |
| 1251 | return common_traceroute_main(OPT_IPV6, argv); |
| 1252 | } |
| 1253 | #endif |