traceroute6.c revision 1.49 1 1.49 maxv /* $NetBSD: traceroute6.c,v 1.49 2018/04/23 10:22:18 maxv Exp $ */
2 1.34 itojun /* $KAME: traceroute6.c,v 1.67 2004/01/25 03:24:39 itojun Exp $ */
3 1.3 itojun
4 1.1 itojun /*
5 1.1 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 1.1 itojun * All rights reserved.
7 1.11 itojun *
8 1.1 itojun * Redistribution and use in source and binary forms, with or without
9 1.1 itojun * modification, are permitted provided that the following conditions
10 1.1 itojun * are met:
11 1.1 itojun * 1. Redistributions of source code must retain the above copyright
12 1.1 itojun * notice, this list of conditions and the following disclaimer.
13 1.1 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 itojun * notice, this list of conditions and the following disclaimer in the
15 1.1 itojun * documentation and/or other materials provided with the distribution.
16 1.1 itojun * 3. Neither the name of the project nor the names of its contributors
17 1.1 itojun * may be used to endorse or promote products derived from this software
18 1.1 itojun * without specific prior written permission.
19 1.11 itojun *
20 1.1 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 1.1 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.1 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.1 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 1.1 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.1 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.1 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.1 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.1 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.1 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.1 itojun * SUCH DAMAGE.
31 1.1 itojun */
32 1.1 itojun
33 1.1 itojun /*-
34 1.1 itojun * Copyright (c) 1990, 1993
35 1.1 itojun * The Regents of the University of California. All rights reserved.
36 1.1 itojun *
37 1.1 itojun * This code is derived from software contributed to Berkeley by
38 1.1 itojun * Van Jacobson.
39 1.1 itojun *
40 1.1 itojun * Redistribution and use in source and binary forms, with or without
41 1.1 itojun * modification, are permitted provided that the following conditions
42 1.1 itojun * are met:
43 1.1 itojun * 1. Redistributions of source code must retain the above copyright
44 1.1 itojun * notice, this list of conditions and the following disclaimer.
45 1.1 itojun * 2. Redistributions in binary form must reproduce the above copyright
46 1.1 itojun * notice, this list of conditions and the following disclaimer in the
47 1.1 itojun * documentation and/or other materials provided with the distribution.
48 1.33 agc * 3. Neither the name of the University nor the names of its contributors
49 1.1 itojun * may be used to endorse or promote products derived from this software
50 1.1 itojun * without specific prior written permission.
51 1.1 itojun *
52 1.1 itojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 1.1 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 1.1 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 1.1 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 1.1 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 1.1 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 1.1 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 1.1 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 1.1 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 1.1 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 1.1 itojun * SUCH DAMAGE.
63 1.1 itojun */
64 1.1 itojun
65 1.3 itojun #if 0
66 1.1 itojun #ifndef lint
67 1.1 itojun static char copyright[] =
68 1.1 itojun "@(#) Copyright (c) 1990, 1993\n\
69 1.1 itojun The Regents of the University of California. All rights reserved.\n";
70 1.1 itojun #endif /* not lint */
71 1.1 itojun
72 1.1 itojun #ifndef lint
73 1.1 itojun static char sccsid[] = "@(#)traceroute.c 8.1 (Berkeley) 6/6/93";
74 1.3 itojun #endif /* not lint */
75 1.1 itojun #else
76 1.3 itojun #include <sys/cdefs.h>
77 1.3 itojun #ifndef lint
78 1.49 maxv __RCSID("$NetBSD: traceroute6.c,v 1.49 2018/04/23 10:22:18 maxv Exp $");
79 1.3 itojun #endif
80 1.1 itojun #endif
81 1.1 itojun
82 1.1 itojun /*
83 1.1 itojun * traceroute host - trace the route ip packets follow going to "host".
84 1.1 itojun *
85 1.1 itojun * Attempt to trace the route an ip packet would follow to some
86 1.1 itojun * internet host. We find out intermediate hops by launching probe
87 1.1 itojun * packets with a small ttl (time to live) then listening for an
88 1.1 itojun * icmp "time exceeded" reply from a gateway. We start our probes
89 1.1 itojun * with a ttl of one and increase by one until we get an icmp "port
90 1.1 itojun * unreachable" (which means we got to "host") or hit a max (which
91 1.1 itojun * defaults to 30 hops & can be changed with the -m flag). Three
92 1.1 itojun * probes (change with -q flag) are sent at each ttl setting and a
93 1.1 itojun * line is printed showing the ttl, address of the gateway and
94 1.1 itojun * round trip time of each probe. If the probe answers come from
95 1.1 itojun * different gateways, the address of each responding system will
96 1.1 itojun * be printed. If there is no response within a 5 sec. timeout
97 1.1 itojun * interval (changed with the -w flag), a "*" is printed for that
98 1.1 itojun * probe.
99 1.1 itojun *
100 1.1 itojun * Probe packets are UDP format. We don't want the destination
101 1.1 itojun * host to process them so the destination port is set to an
102 1.1 itojun * unlikely value (if some clod on the destination is using that
103 1.1 itojun * value, it can be changed with the -p flag).
104 1.1 itojun *
105 1.1 itojun * A sample use might be:
106 1.1 itojun *
107 1.1 itojun * [yak 71]% traceroute nis.nsf.net.
108 1.1 itojun * traceroute to nis.nsf.net (35.1.1.48), 30 hops max, 56 byte packet
109 1.1 itojun * 1 helios.ee.lbl.gov (128.3.112.1) 19 ms 19 ms 0 ms
110 1.1 itojun * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
111 1.1 itojun * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
112 1.1 itojun * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 39 ms
113 1.1 itojun * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 39 ms 39 ms 39 ms
114 1.1 itojun * 6 128.32.197.4 (128.32.197.4) 40 ms 59 ms 59 ms
115 1.1 itojun * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 59 ms
116 1.1 itojun * 8 129.140.70.13 (129.140.70.13) 99 ms 99 ms 80 ms
117 1.1 itojun * 9 129.140.71.6 (129.140.71.6) 139 ms 239 ms 319 ms
118 1.1 itojun * 10 129.140.81.7 (129.140.81.7) 220 ms 199 ms 199 ms
119 1.1 itojun * 11 nic.merit.edu (35.1.1.48) 239 ms 239 ms 239 ms
120 1.1 itojun *
121 1.1 itojun * Note that lines 2 & 3 are the same. This is due to a buggy
122 1.1 itojun * kernel on the 2nd hop system -- lbl-csam.arpa -- that forwards
123 1.1 itojun * packets with a zero ttl.
124 1.1 itojun *
125 1.1 itojun * A more interesting example is:
126 1.1 itojun *
127 1.1 itojun * [yak 72]% traceroute allspice.lcs.mit.edu.
128 1.1 itojun * traceroute to allspice.lcs.mit.edu (18.26.0.115), 30 hops max
129 1.1 itojun * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
130 1.1 itojun * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 19 ms 19 ms
131 1.1 itojun * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 19 ms
132 1.1 itojun * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 19 ms 39 ms 39 ms
133 1.1 itojun * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 20 ms 39 ms 39 ms
134 1.1 itojun * 6 128.32.197.4 (128.32.197.4) 59 ms 119 ms 39 ms
135 1.1 itojun * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 39 ms
136 1.1 itojun * 8 129.140.70.13 (129.140.70.13) 80 ms 79 ms 99 ms
137 1.1 itojun * 9 129.140.71.6 (129.140.71.6) 139 ms 139 ms 159 ms
138 1.1 itojun * 10 129.140.81.7 (129.140.81.7) 199 ms 180 ms 300 ms
139 1.1 itojun * 11 129.140.72.17 (129.140.72.17) 300 ms 239 ms 239 ms
140 1.1 itojun * 12 * * *
141 1.1 itojun * 13 128.121.54.72 (128.121.54.72) 259 ms 499 ms 279 ms
142 1.1 itojun * 14 * * *
143 1.1 itojun * 15 * * *
144 1.1 itojun * 16 * * *
145 1.1 itojun * 17 * * *
146 1.1 itojun * 18 ALLSPICE.LCS.MIT.EDU (18.26.0.115) 339 ms 279 ms 279 ms
147 1.1 itojun *
148 1.1 itojun * (I start to see why I'm having so much trouble with mail to
149 1.1 itojun * MIT.) Note that the gateways 12, 14, 15, 16 & 17 hops away
150 1.1 itojun * either don't send ICMP "time exceeded" messages or send them
151 1.1 itojun * with a ttl too small to reach us. 14 - 17 are running the
152 1.1 itojun * MIT C Gateway code that doesn't send "time exceeded"s. God
153 1.1 itojun * only knows what's going on with 12.
154 1.1 itojun *
155 1.1 itojun * The silent gateway 12 in the above may be the result of a bug in
156 1.1 itojun * the 4.[23]BSD network code (and its derivatives): 4.x (x <= 3)
157 1.1 itojun * sends an unreachable message using whatever ttl remains in the
158 1.1 itojun * original datagram. Since, for gateways, the remaining ttl is
159 1.1 itojun * zero, the icmp "time exceeded" is guaranteed to not make it back
160 1.1 itojun * to us. The behavior of this bug is slightly more interesting
161 1.1 itojun * when it appears on the destination system:
162 1.1 itojun *
163 1.1 itojun * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
164 1.1 itojun * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 39 ms
165 1.1 itojun * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 39 ms 19 ms
166 1.1 itojun * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 19 ms
167 1.1 itojun * 5 ccn-nerif35.Berkeley.EDU (128.32.168.35) 39 ms 39 ms 39 ms
168 1.1 itojun * 6 csgw.Berkeley.EDU (128.32.133.254) 39 ms 59 ms 39 ms
169 1.1 itojun * 7 * * *
170 1.1 itojun * 8 * * *
171 1.1 itojun * 9 * * *
172 1.1 itojun * 10 * * *
173 1.1 itojun * 11 * * *
174 1.1 itojun * 12 * * *
175 1.1 itojun * 13 rip.Berkeley.EDU (128.32.131.22) 59 ms ! 39 ms ! 39 ms !
176 1.1 itojun *
177 1.1 itojun * Notice that there are 12 "gateways" (13 is the final
178 1.1 itojun * destination) and exactly the last half of them are "missing".
179 1.1 itojun * What's really happening is that rip (a Sun-3 running Sun OS3.5)
180 1.1 itojun * is using the ttl from our arriving datagram as the ttl in its
181 1.1 itojun * icmp reply. So, the reply will time out on the return path
182 1.1 itojun * (with no notice sent to anyone since icmp's aren't sent for
183 1.1 itojun * icmp's) until we probe with a ttl that's at least twice the path
184 1.1 itojun * length. I.e., rip is really only 7 hops away. A reply that
185 1.1 itojun * returns with a ttl of 1 is a clue this problem exists.
186 1.1 itojun * Traceroute prints a "!" after the time if the ttl is <= 1.
187 1.1 itojun * Since vendors ship a lot of obsolete (DEC's Ultrix, Sun 3.x) or
188 1.1 itojun * non-standard (HPUX) software, expect to see this problem
189 1.1 itojun * frequently and/or take care picking the target host of your
190 1.1 itojun * probes.
191 1.1 itojun *
192 1.1 itojun * Other possible annotations after the time are !H, !N, !P (got a host,
193 1.1 itojun * network or protocol unreachable, respectively), !S or !F (source
194 1.1 itojun * route failed or fragmentation needed -- neither of these should
195 1.1 itojun * ever occur and the associated gateway is busted if you see one). If
196 1.1 itojun * almost all the probes result in some kind of unreachable, traceroute
197 1.1 itojun * will give up and exit.
198 1.1 itojun *
199 1.1 itojun * Notes
200 1.1 itojun * -----
201 1.1 itojun * This program must be run by root or be setuid. (I suggest that
202 1.1 itojun * you *don't* make it setuid -- casual use could result in a lot
203 1.1 itojun * of unnecessary traffic on our poor, congested nets.)
204 1.1 itojun *
205 1.1 itojun * This program requires a kernel mod that does not appear in any
206 1.1 itojun * system available from Berkeley: A raw ip socket using proto
207 1.1 itojun * IPPROTO_RAW must interpret the data sent as an ip datagram (as
208 1.1 itojun * opposed to data to be wrapped in a ip datagram). See the README
209 1.1 itojun * file that came with the source to this program for a description
210 1.1 itojun * of the mods I made to /sys/netinet/raw_ip.c. Your mileage may
211 1.1 itojun * vary. But, again, ANY 4.x (x < 4) BSD KERNEL WILL HAVE TO BE
212 1.1 itojun * MODIFIED TO RUN THIS PROGRAM.
213 1.1 itojun *
214 1.1 itojun * The udp port usage may appear bizarre (well, ok, it is bizarre).
215 1.1 itojun * The problem is that an icmp message only contains 8 bytes of
216 1.1 itojun * data from the original datagram. 8 bytes is the size of a udp
217 1.1 itojun * header so, if we want to associate replies with the original
218 1.1 itojun * datagram, the necessary information must be encoded into the
219 1.1 itojun * udp header (the ip id could be used but there's no way to
220 1.1 itojun * interlock with the kernel's assignment of ip id's and, anyway,
221 1.1 itojun * it would have taken a lot more kernel hacking to allow this
222 1.1 itojun * code to set the ip id). So, to allow two or more users to
223 1.1 itojun * use traceroute simultaneously, we use this task's pid as the
224 1.1 itojun * source port (the high bit is set to move the port number out
225 1.1 itojun * of the "likely" range). To keep track of which probe is being
226 1.1 itojun * replied to (so times and/or hop counts don't get confused by a
227 1.1 itojun * reply that was delayed in transit), we increment the destination
228 1.1 itojun * port number before each probe.
229 1.1 itojun *
230 1.1 itojun * Don't use this as a coding example. I was trying to find a
231 1.1 itojun * routing problem and this code sort-of popped out after 48 hours
232 1.1 itojun * without sleep. I was amazed it ever compiled, much less ran.
233 1.1 itojun *
234 1.1 itojun * I stole the idea for this program from Steve Deering. Since
235 1.1 itojun * the first release, I've learned that had I attended the right
236 1.1 itojun * IETF working group meetings, I also could have stolen it from Guy
237 1.1 itojun * Almes or Matt Mathis. I don't know (or care) who came up with
238 1.1 itojun * the idea first. I envy the originators' perspicacity and I'm
239 1.1 itojun * glad they didn't keep the idea a secret.
240 1.1 itojun *
241 1.1 itojun * Tim Seaver, Ken Adelman and C. Philip Wood provided bug fixes and/or
242 1.1 itojun * enhancements to the original distribution.
243 1.1 itojun *
244 1.1 itojun * I've hacked up a round-trip-route version of this that works by
245 1.1 itojun * sending a loose-source-routed udp datagram through the destination
246 1.1 itojun * back to yourself. Unfortunately, SO many gateways botch source
247 1.1 itojun * routing, the thing is almost worthless. Maybe one day...
248 1.1 itojun *
249 1.1 itojun * -- Van Jacobson (van (at) helios.ee.lbl.gov)
250 1.1 itojun * Tue Dec 20 03:50:13 PST 1988
251 1.1 itojun */
252 1.1 itojun
253 1.1 itojun #include <sys/param.h>
254 1.1 itojun #include <sys/time.h>
255 1.1 itojun #include <sys/socket.h>
256 1.1 itojun #include <sys/uio.h>
257 1.1 itojun #include <sys/file.h>
258 1.1 itojun #include <sys/ioctl.h>
259 1.21 itojun #include <sys/sysctl.h>
260 1.1 itojun
261 1.11 itojun #include <netinet/in.h>
262 1.1 itojun
263 1.1 itojun #include <arpa/inet.h>
264 1.1 itojun
265 1.1 itojun #include <netdb.h>
266 1.1 itojun #include <stdio.h>
267 1.1 itojun #include <err.h>
268 1.14 itojun #ifdef HAVE_POLL
269 1.14 itojun #include <poll.h>
270 1.14 itojun #endif
271 1.1 itojun #include <errno.h>
272 1.1 itojun #include <stdlib.h>
273 1.1 itojun #include <string.h>
274 1.1 itojun #include <unistd.h>
275 1.1 itojun
276 1.1 itojun #include <netinet/ip6.h>
277 1.1 itojun #include <netinet/icmp6.h>
278 1.1 itojun #include <netinet/udp.h>
279 1.1 itojun
280 1.1 itojun #ifdef IPSEC
281 1.11 itojun #include <net/route.h>
282 1.42 drochner #include <netipsec/ipsec.h>
283 1.1 itojun #endif
284 1.1 itojun
285 1.40 christos #include "as.h"
286 1.40 christos
287 1.1 itojun #define DUMMY_PORT 10010
288 1.1 itojun
289 1.1 itojun #define MAXPACKET 65535 /* max ip packet size */
290 1.1 itojun
291 1.11 itojun #ifndef HAVE_GETIPNODEBYNAME
292 1.11 itojun #define getipnodebyname(x, y, z, u) gethostbyname2((x), (y))
293 1.11 itojun #define freehostent(x)
294 1.11 itojun #endif
295 1.11 itojun
296 1.1 itojun /*
297 1.1 itojun * format of a (udp) probe packet.
298 1.1 itojun */
299 1.26 onoe struct tv32 {
300 1.26 onoe u_int32_t tv32_sec;
301 1.26 onoe u_int32_t tv32_usec;
302 1.26 onoe };
303 1.1 itojun
304 1.34 itojun struct opacket {
305 1.34 itojun u_char seq; /* sequence number of this packet */
306 1.34 itojun u_char hops; /* hop limit of the packet */
307 1.34 itojun u_char pad[2];
308 1.34 itojun struct tv32 tv; /* time packet left */
309 1.34 itojun } __packed;
310 1.34 itojun
311 1.40 christos static u_char packet[512]; /* last inbound (icmp) packet */
312 1.40 christos static struct opacket *outpacket; /* last output (udp) packet */
313 1.1 itojun
314 1.40 christos static ssize_t wait_for_reply(int, struct msghdr *);
315 1.6 itojun #ifdef IPSEC
316 1.6 itojun #ifdef IPSEC_POLICY_IPSEC
317 1.40 christos static int setpolicy(int so, const char *policy);
318 1.40 christos #endif
319 1.6 itojun #endif
320 1.40 christos static void send_probe(int, u_long);
321 1.40 christos static struct udphdr *get_udphdr(struct ip6_hdr *, u_char *);
322 1.40 christos static double deltaT(struct timeval *, struct timeval *);
323 1.40 christos static const char *pr_type(int);
324 1.40 christos static int packet_ok(struct msghdr *, ssize_t, int);
325 1.40 christos static void print(struct msghdr *, int);
326 1.40 christos static const char *inetname(struct sockaddr *);
327 1.40 christos static void usage(void) __attribute__((__noreturn__));
328 1.40 christos
329 1.40 christos static int rcvsock; /* receive (icmp) socket file descriptor */
330 1.40 christos static int sndsock; /* send (udp) socket file descriptor */
331 1.40 christos
332 1.40 christos static struct msghdr rcvmhdr;
333 1.40 christos static struct iovec rcviov[2];
334 1.40 christos static int rcvhlim;
335 1.40 christos static struct in6_pktinfo *rcvpktinfo;
336 1.1 itojun
337 1.40 christos static struct sockaddr_in6 Src, Dst, Rcv;
338 1.40 christos static u_long datalen; /* How much data */
339 1.26 onoe #define ICMP6ECHOLEN 8
340 1.1 itojun
341 1.40 christos static char *source;
342 1.40 christos static char *hostname;
343 1.1 itojun
344 1.40 christos static u_long nprobes = 3;
345 1.40 christos static u_long first_hop = 1;
346 1.40 christos static u_long max_hops = 30;
347 1.40 christos static u_int16_t srcport;
348 1.40 christos static u_int16_t port = 32768+666;/* start udp dest port # for probe packets */
349 1.40 christos static u_int16_t ident;
350 1.40 christos static int options; /* socket options */
351 1.40 christos static int verbose;
352 1.40 christos static int waittime = 5; /* time to wait for response (in seconds) */
353 1.40 christos static int nflag; /* print addresses numerically */
354 1.40 christos static int useicmp;
355 1.40 christos static int lflag; /* print both numerical address & hostname */
356 1.40 christos static int as_path; /* print as numbers for each hop */
357 1.40 christos static char *as_server = NULL;
358 1.40 christos static void *asn;
359 1.1 itojun
360 1.1 itojun int
361 1.40 christos main(int argc, char *argv[])
362 1.1 itojun {
363 1.34 itojun int mib[4] = { CTL_NET, PF_INET6, IPPROTO_IPV6, IPV6CTL_DEFHLIM };
364 1.34 itojun char hbuf[NI_MAXHOST], src0[NI_MAXHOST], *ep;
365 1.40 christos int ch, i, on = 1, seq, rcvcmsglen, error;
366 1.40 christos u_long minlen;
367 1.7 itojun struct addrinfo hints, *res;
368 1.8 itojun static u_char *rcvcmsgbuf;
369 1.34 itojun u_long probe, hops, lport;
370 1.32 itojun size_t size;
371 1.11 itojun
372 1.11 itojun /*
373 1.11 itojun * Receive ICMP
374 1.11 itojun */
375 1.40 christos if ((rcvsock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6)) < 0)
376 1.40 christos err(5, "socket(ICMPv6)");
377 1.1 itojun
378 1.15 itojun /* revoke privs */
379 1.15 itojun seteuid(getuid());
380 1.15 itojun setuid(getuid());
381 1.21 itojun
382 1.32 itojun size = sizeof(i);
383 1.32 itojun (void) sysctl(mib, sizeof(mib)/sizeof(mib[0]), &i, &size, NULL, 0);
384 1.32 itojun max_hops = i;
385 1.15 itojun
386 1.11 itojun /* specify to tell receiving interface */
387 1.11 itojun if (setsockopt(rcvsock, IPPROTO_IPV6, IPV6_RECVPKTINFO, &on,
388 1.19 itojun sizeof(on)) < 0)
389 1.11 itojun err(1, "setsockopt(IPV6_RECVPKTINFO)");
390 1.11 itojun
391 1.11 itojun /* specify to tell value of hoplimit field of received IP6 hdr */
392 1.11 itojun if (setsockopt(rcvsock, IPPROTO_IPV6, IPV6_RECVHOPLIMIT, &on,
393 1.19 itojun sizeof(on)) < 0)
394 1.11 itojun err(1, "setsockopt(IPV6_RECVHOPLIMIT)");
395 1.11 itojun
396 1.1 itojun seq = 0;
397 1.34 itojun
398 1.45 maxv while ((ch = getopt(argc, argv, "aA:df:Ilm:np:q:rs:w:v")) != -1)
399 1.23 itojun switch (ch) {
400 1.40 christos case 'a':
401 1.40 christos as_path = 1;
402 1.40 christos break;
403 1.40 christos case 'A':
404 1.40 christos as_path = 1;
405 1.40 christos as_server = optarg;
406 1.40 christos break;
407 1.1 itojun case 'd':
408 1.1 itojun options |= SO_DEBUG;
409 1.1 itojun break;
410 1.11 itojun case 'f':
411 1.15 itojun ep = NULL;
412 1.30 itojun errno = 0;
413 1.15 itojun first_hop = strtoul(optarg, &ep, 0);
414 1.40 christos if (errno || !*optarg || *ep|| first_hop > 255)
415 1.40 christos errx(1, "Invalid min hoplimit `%s'", optarg);
416 1.1 itojun break;
417 1.26 onoe case 'I':
418 1.26 onoe useicmp++;
419 1.35 itojun /* same as ping6 */
420 1.35 itojun ident = htons(arc4random() & 0xffff);
421 1.26 onoe break;
422 1.11 itojun case 'l':
423 1.11 itojun lflag++;
424 1.11 itojun break;
425 1.1 itojun case 'm':
426 1.15 itojun ep = NULL;
427 1.30 itojun errno = 0;
428 1.15 itojun max_hops = strtoul(optarg, &ep, 0);
429 1.40 christos if (errno || !*optarg || *ep || max_hops > 255)
430 1.40 christos errx(1, "Invalid max hoplimit `%s'", optarg);
431 1.1 itojun break;
432 1.1 itojun case 'n':
433 1.1 itojun nflag++;
434 1.1 itojun break;
435 1.1 itojun case 'p':
436 1.15 itojun ep = NULL;
437 1.30 itojun errno = 0;
438 1.23 itojun lport = strtoul(optarg, &ep, 0);
439 1.40 christos if (errno || !*optarg || *ep)
440 1.40 christos errx(1, "Invalid port `%s'", optarg);
441 1.40 christos if (lport == 0 || lport != (lport & 0xffff))
442 1.40 christos errx(1, "Port `%s' out of range", optarg);
443 1.23 itojun port = lport & 0xffff;
444 1.1 itojun break;
445 1.1 itojun case 'q':
446 1.15 itojun ep = NULL;
447 1.30 itojun errno = 0;
448 1.15 itojun nprobes = strtoul(optarg, &ep, 0);
449 1.40 christos if (errno || !*optarg || *ep)
450 1.40 christos errx(1, "Invalid nprobes `%s'", optarg);
451 1.40 christos if (nprobes < 1)
452 1.40 christos errx(1, "nprobes `%s' must be > 0", optarg);
453 1.1 itojun break;
454 1.1 itojun case 'r':
455 1.1 itojun options |= SO_DONTROUTE;
456 1.1 itojun break;
457 1.1 itojun case 's':
458 1.1 itojun /*
459 1.1 itojun * set the ip source address of the outbound
460 1.1 itojun * probe (e.g., on a multi-homed host).
461 1.1 itojun */
462 1.1 itojun source = optarg;
463 1.1 itojun break;
464 1.1 itojun case 'v':
465 1.1 itojun verbose++;
466 1.1 itojun break;
467 1.1 itojun case 'w':
468 1.15 itojun ep = NULL;
469 1.30 itojun errno = 0;
470 1.15 itojun waittime = strtoul(optarg, &ep, 0);
471 1.40 christos if (errno || !*optarg || *ep)
472 1.40 christos errx(1, "Invalid wait time `%s'", optarg);
473 1.40 christos if (waittime <= 1)
474 1.40 christos errx(1, "Wait `%s' must be > 1 sec", optarg);
475 1.1 itojun break;
476 1.1 itojun default:
477 1.1 itojun usage();
478 1.1 itojun }
479 1.1 itojun argc -= optind;
480 1.1 itojun argv += optind;
481 1.1 itojun
482 1.40 christos if (max_hops < first_hop)
483 1.40 christos errx(1, "max hoplimit `%lu' must be larger than "
484 1.40 christos "first hoplimit `%lu'", max_hops, first_hop);
485 1.30 itojun
486 1.15 itojun if (argc < 1 || argc > 2)
487 1.1 itojun usage();
488 1.1 itojun
489 1.1 itojun #if 1
490 1.1 itojun setvbuf(stdout, NULL, _IOLBF, BUFSIZ);
491 1.1 itojun #else
492 1.34 itojun setlinebuf(stdout);
493 1.1 itojun #endif
494 1.1 itojun
495 1.7 itojun memset(&hints, 0, sizeof(hints));
496 1.7 itojun hints.ai_family = PF_INET6;
497 1.7 itojun hints.ai_socktype = SOCK_RAW;
498 1.7 itojun hints.ai_protocol = IPPROTO_ICMPV6;
499 1.7 itojun hints.ai_flags = AI_CANONNAME;
500 1.7 itojun error = getaddrinfo(*argv, NULL, &hints, &res);
501 1.40 christos if (error)
502 1.40 christos errx(1, "%s", gai_strerror(error));
503 1.40 christos if (res->ai_addrlen != sizeof(Dst))
504 1.40 christos errx(1, "size of sockaddr mismatch");
505 1.7 itojun memcpy(&Dst, res->ai_addr, res->ai_addrlen);
506 1.7 itojun hostname = res->ai_canonname ? strdup(res->ai_canonname) : *argv;
507 1.40 christos if (!hostname)
508 1.40 christos err(1, NULL);
509 1.25 itojun if (res->ai_next) {
510 1.25 itojun if (getnameinfo(res->ai_addr, res->ai_addrlen, hbuf,
511 1.25 itojun sizeof(hbuf), NULL, 0, NI_NUMERICHOST) != 0)
512 1.25 itojun strlcpy(hbuf, "?", sizeof(hbuf));
513 1.40 christos warnx("`%s' has multiple addresses; using `%s'",
514 1.40 christos hostname, hbuf);
515 1.15 itojun }
516 1.1 itojun
517 1.15 itojun if (*++argv) {
518 1.15 itojun ep = NULL;
519 1.30 itojun errno = 0;
520 1.15 itojun datalen = strtoul(*argv, &ep, 0);
521 1.44 shm if (errno || *ep)
522 1.40 christos errx(1, "Invalid packet length `%s'", *argv);
523 1.15 itojun }
524 1.26 onoe if (useicmp)
525 1.26 onoe minlen = ICMP6ECHOLEN + sizeof(struct tv32);
526 1.26 onoe else
527 1.26 onoe minlen = sizeof(struct opacket);
528 1.26 onoe if (datalen < minlen)
529 1.26 onoe datalen = minlen;
530 1.40 christos else if (datalen >= MAXPACKET)
531 1.40 christos errx(1, "Packet size must be %lu <= s < %lu",
532 1.40 christos minlen, (u_long)MAXPACKET);
533 1.1 itojun outpacket = (struct opacket *)malloc((unsigned)datalen);
534 1.40 christos if (!outpacket)
535 1.40 christos err(1, NULL);
536 1.40 christos memset(outpacket, 0, datalen);
537 1.1 itojun
538 1.1 itojun /* initialize msghdr for receiving packets */
539 1.1 itojun rcviov[0].iov_base = (caddr_t)packet;
540 1.1 itojun rcviov[0].iov_len = sizeof(packet);
541 1.11 itojun rcvmhdr.msg_name = (caddr_t)&Rcv;
542 1.11 itojun rcvmhdr.msg_namelen = sizeof(Rcv);
543 1.1 itojun rcvmhdr.msg_iov = rcviov;
544 1.1 itojun rcvmhdr.msg_iovlen = 1;
545 1.34 itojun rcvcmsglen = CMSG_SPACE(sizeof(struct in6_pktinfo)) +
546 1.34 itojun CMSG_SPACE(sizeof(int));
547 1.40 christos if ((rcvcmsgbuf = malloc(rcvcmsglen)) == NULL)
548 1.40 christos err(1, NULL);
549 1.1 itojun rcvmhdr.msg_control = (caddr_t) rcvcmsgbuf;
550 1.8 itojun rcvmhdr.msg_controllen = rcvcmsglen;
551 1.1 itojun
552 1.1 itojun if (options & SO_DEBUG)
553 1.1 itojun (void) setsockopt(rcvsock, SOL_SOCKET, SO_DEBUG,
554 1.19 itojun (char *)&on, sizeof(on));
555 1.1 itojun if (options & SO_DONTROUTE)
556 1.1 itojun (void) setsockopt(rcvsock, SOL_SOCKET, SO_DONTROUTE,
557 1.19 itojun (char *)&on, sizeof(on));
558 1.1 itojun #ifdef IPSEC
559 1.1 itojun #ifdef IPSEC_POLICY_IPSEC
560 1.5 itojun /*
561 1.5 itojun * do not raise error even if setsockopt fails, kernel may have ipsec
562 1.5 itojun * turned off.
563 1.5 itojun */
564 1.6 itojun if (setpolicy(rcvsock, "in bypass") < 0)
565 1.13 itojun errx(1, "%s", ipsec_strerror());
566 1.6 itojun if (setpolicy(rcvsock, "out bypass") < 0)
567 1.13 itojun errx(1, "%s", ipsec_strerror());
568 1.1 itojun #else
569 1.1 itojun {
570 1.1 itojun int level = IPSEC_LEVEL_NONE;
571 1.1 itojun
572 1.1 itojun (void)setsockopt(rcvsock, IPPROTO_IPV6, IPV6_ESP_TRANS_LEVEL, &level,
573 1.19 itojun sizeof(level));
574 1.1 itojun (void)setsockopt(rcvsock, IPPROTO_IPV6, IPV6_ESP_NETWORK_LEVEL, &level,
575 1.19 itojun sizeof(level));
576 1.1 itojun #ifdef IP_AUTH_TRANS_LEVEL
577 1.1 itojun (void)setsockopt(rcvsock, IPPROTO_IPV6, IPV6_AUTH_TRANS_LEVEL, &level,
578 1.19 itojun sizeof(level));
579 1.1 itojun #else
580 1.1 itojun (void)setsockopt(rcvsock, IPPROTO_IPV6, IPV6_AUTH_LEVEL, &level,
581 1.19 itojun sizeof(level));
582 1.1 itojun #endif
583 1.1 itojun #ifdef IP_AUTH_NETWORK_LEVEL
584 1.1 itojun (void)setsockopt(rcvsock, IPPROTO_IPV6, IPV6_AUTH_NETWORK_LEVEL, &level,
585 1.19 itojun sizeof(level));
586 1.1 itojun #endif
587 1.1 itojun }
588 1.1 itojun #endif /*IPSEC_POLICY_IPSEC*/
589 1.1 itojun #endif /*IPSEC*/
590 1.1 itojun
591 1.1 itojun /*
592 1.26 onoe * Send UDP or ICMP
593 1.1 itojun */
594 1.26 onoe if (useicmp) {
595 1.27 onoe sndsock = rcvsock;
596 1.26 onoe } else {
597 1.40 christos if ((sndsock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
598 1.40 christos err(5, "socket(SOCK_DGRAM)");
599 1.1 itojun }
600 1.1 itojun #ifdef SO_SNDBUF
601 1.32 itojun i = datalen;
602 1.32 itojun if (setsockopt(sndsock, SOL_SOCKET, SO_SNDBUF, (char *)&i,
603 1.40 christos sizeof(i)) < 0)
604 1.40 christos err(6, "setsockopt(SO_SNDBUF)");
605 1.1 itojun #endif /* SO_SNDBUF */
606 1.1 itojun if (options & SO_DEBUG)
607 1.1 itojun (void) setsockopt(sndsock, SOL_SOCKET, SO_DEBUG,
608 1.19 itojun (char *)&on, sizeof(on));
609 1.1 itojun if (options & SO_DONTROUTE)
610 1.1 itojun (void) setsockopt(sndsock, SOL_SOCKET, SO_DONTROUTE,
611 1.19 itojun (char *)&on, sizeof(on));
612 1.46 maxv
613 1.1 itojun #ifdef IPSEC
614 1.1 itojun #ifdef IPSEC_POLICY_IPSEC
615 1.5 itojun /*
616 1.5 itojun * do not raise error even if setsockopt fails, kernel may have ipsec
617 1.5 itojun * turned off.
618 1.5 itojun */
619 1.6 itojun if (setpolicy(sndsock, "in bypass") < 0)
620 1.13 itojun errx(1, "%s", ipsec_strerror());
621 1.6 itojun if (setpolicy(sndsock, "out bypass") < 0)
622 1.13 itojun errx(1, "%s", ipsec_strerror());
623 1.1 itojun #else
624 1.1 itojun {
625 1.1 itojun int level = IPSEC_LEVEL_BYPASS;
626 1.1 itojun
627 1.1 itojun (void)setsockopt(sndsock, IPPROTO_IPV6, IPV6_ESP_TRANS_LEVEL, &level,
628 1.19 itojun sizeof(level));
629 1.1 itojun (void)setsockopt(sndsock, IPPROTO_IPV6, IPV6_ESP_NETWORK_LEVEL, &level,
630 1.19 itojun sizeof(level));
631 1.1 itojun #ifdef IP_AUTH_TRANS_LEVEL
632 1.1 itojun (void)setsockopt(sndsock, IPPROTO_IPV6, IPV6_AUTH_TRANS_LEVEL, &level,
633 1.19 itojun sizeof(level));
634 1.1 itojun #else
635 1.1 itojun (void)setsockopt(sndsock, IPPROTO_IPV6, IPV6_AUTH_LEVEL, &level,
636 1.19 itojun sizeof(level));
637 1.1 itojun #endif
638 1.1 itojun #ifdef IP_AUTH_NETWORK_LEVEL
639 1.1 itojun (void)setsockopt(sndsock, IPPROTO_IPV6, IPV6_AUTH_NETWORK_LEVEL, &level,
640 1.19 itojun sizeof(level));
641 1.1 itojun #endif
642 1.1 itojun }
643 1.1 itojun #endif /*IPSEC_POLICY_IPSEC*/
644 1.1 itojun #endif /*IPSEC*/
645 1.1 itojun
646 1.1 itojun /*
647 1.1 itojun * Source selection
648 1.1 itojun */
649 1.40 christos memset(&Src, 0, sizeof(Src));
650 1.1 itojun if (source) {
651 1.40 christos struct addrinfo hints0, *res0;
652 1.40 christos int error0;
653 1.11 itojun
654 1.40 christos memset(&hints0, 0, sizeof(hints0));
655 1.40 christos hints0.ai_family = AF_INET6;
656 1.40 christos hints0.ai_socktype = SOCK_DGRAM; /*dummy*/
657 1.40 christos hints0.ai_flags = AI_NUMERICHOST;
658 1.40 christos error0 = getaddrinfo(source, "0", &hints0, &res0);
659 1.40 christos if (error0)
660 1.40 christos errx(1, "Cannot get address for `%s' (%s)", source,
661 1.40 christos gai_strerror(error0));
662 1.43 christos if (res0->ai_addrlen > sizeof(Src))
663 1.40 christos errx(1, "Bad incompatible address length");
664 1.43 christos memcpy(&Src, res0->ai_addr, res0->ai_addrlen);
665 1.43 christos freeaddrinfo(res0);
666 1.1 itojun } else {
667 1.1 itojun struct sockaddr_in6 Nxt;
668 1.28 itojun int dummy;
669 1.28 itojun socklen_t len;
670 1.1 itojun
671 1.1 itojun Nxt = Dst;
672 1.1 itojun Nxt.sin6_port = htons(DUMMY_PORT);
673 1.46 maxv
674 1.40 christos if ((dummy = socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
675 1.40 christos err(1, "socket");
676 1.40 christos if (connect(dummy, (struct sockaddr *)&Nxt, Nxt.sin6_len) < 0)
677 1.40 christos err(1, "connect");
678 1.11 itojun len = sizeof(Src);
679 1.40 christos if (getsockname(dummy, (struct sockaddr *)&Src, &len) < 0)
680 1.40 christos err(1, "getsockname");
681 1.40 christos if ((error = getnameinfo((struct sockaddr *)&Src, Src.sin6_len,
682 1.40 christos src0, sizeof(src0), NULL, 0, NI_NUMERICHOST)))
683 1.40 christos errx(1, "getnameinfo failed for source (%s)",
684 1.40 christos gai_strerror(error));
685 1.11 itojun source = src0;
686 1.11 itojun close(dummy);
687 1.1 itojun }
688 1.11 itojun
689 1.19 itojun Src.sin6_port = htons(0);
690 1.40 christos if (bind(sndsock, (struct sockaddr *)&Src, Src.sin6_len) < 0)
691 1.40 christos err(1, "bind");
692 1.11 itojun
693 1.19 itojun {
694 1.28 itojun socklen_t len;
695 1.11 itojun
696 1.11 itojun len = sizeof(Src);
697 1.40 christos if (getsockname(sndsock, (struct sockaddr *)&Src, &len) < 0)
698 1.40 christos err(1, "bind");
699 1.19 itojun srcport = ntohs(Src.sin6_port);
700 1.1 itojun }
701 1.1 itojun
702 1.40 christos if (as_path) {
703 1.40 christos asn = as_setup(as_server);
704 1.40 christos if (asn == NULL) {
705 1.40 christos warnx("as_setup failed, AS# lookups disabled");
706 1.40 christos (void)fflush(stderr);
707 1.40 christos as_path = 0;
708 1.40 christos }
709 1.40 christos }
710 1.40 christos
711 1.1 itojun /*
712 1.1 itojun * Message to users
713 1.1 itojun */
714 1.7 itojun if (getnameinfo((struct sockaddr *)&Dst, Dst.sin6_len, hbuf,
715 1.19 itojun sizeof(hbuf), NULL, 0, NI_NUMERICHOST))
716 1.15 itojun strlcpy(hbuf, "(invalid)", sizeof(hbuf));
717 1.19 itojun fprintf(stderr, "traceroute6");
718 1.19 itojun fprintf(stderr, " to %s (%s)", hostname, hbuf);
719 1.1 itojun if (source)
720 1.19 itojun fprintf(stderr, " from %s", source);
721 1.29 itojun fprintf(stderr, ", %lu hops max, %lu byte packets\n",
722 1.19 itojun max_hops, datalen);
723 1.1 itojun (void) fflush(stderr);
724 1.1 itojun
725 1.11 itojun if (first_hop > 1)
726 1.29 itojun printf("Skipping %lu intermediate hops\n", first_hop - 1);
727 1.11 itojun
728 1.1 itojun /*
729 1.1 itojun * Main loop
730 1.1 itojun */
731 1.11 itojun for (hops = first_hop; hops <= max_hops; ++hops) {
732 1.1 itojun struct in6_addr lastaddr;
733 1.1 itojun int got_there = 0;
734 1.40 christos u_long unreachable = 0;
735 1.1 itojun
736 1.29 itojun printf("%2lu ", hops);
737 1.40 christos memset(&lastaddr, 0, sizeof(lastaddr));
738 1.1 itojun for (probe = 0; probe < nprobes; ++probe) {
739 1.1 itojun int cc;
740 1.1 itojun struct timeval t1, t2;
741 1.1 itojun
742 1.24 itojun (void) gettimeofday(&t1, NULL);
743 1.39 christos if (!useicmp && htons((in_port_t)(port + seq + 1)) == 0)
744 1.37 elad seq++;
745 1.1 itojun send_probe(++seq, hops);
746 1.1 itojun while ((cc = wait_for_reply(rcvsock, &rcvmhdr))) {
747 1.24 itojun (void) gettimeofday(&t2, NULL);
748 1.1 itojun if ((i = packet_ok(&rcvmhdr, cc, seq))) {
749 1.34 itojun if (!IN6_ARE_ADDR_EQUAL(&Rcv.sin6_addr,
750 1.19 itojun &lastaddr)) {
751 1.1 itojun print(&rcvmhdr, cc);
752 1.1 itojun lastaddr = Rcv.sin6_addr;
753 1.1 itojun }
754 1.19 itojun printf(" %g ms", deltaT(&t1, &t2));
755 1.23 itojun switch (i - 1) {
756 1.1 itojun case ICMP6_DST_UNREACH_NOROUTE:
757 1.1 itojun ++unreachable;
758 1.19 itojun printf(" !N");
759 1.1 itojun break;
760 1.1 itojun case ICMP6_DST_UNREACH_ADMIN:
761 1.1 itojun ++unreachable;
762 1.38 is printf(" !X");
763 1.1 itojun break;
764 1.1 itojun case ICMP6_DST_UNREACH_NOTNEIGHBOR:
765 1.1 itojun ++unreachable;
766 1.19 itojun printf(" !S");
767 1.1 itojun break;
768 1.1 itojun case ICMP6_DST_UNREACH_ADDR:
769 1.1 itojun ++unreachable;
770 1.38 is printf(" !H");
771 1.1 itojun break;
772 1.1 itojun case ICMP6_DST_UNREACH_NOPORT:
773 1.1 itojun if (rcvhlim >= 0 &&
774 1.1 itojun rcvhlim <= 1)
775 1.19 itojun printf(" !");
776 1.1 itojun ++got_there;
777 1.1 itojun break;
778 1.1 itojun }
779 1.1 itojun break;
780 1.1 itojun }
781 1.1 itojun }
782 1.1 itojun if (cc == 0)
783 1.19 itojun printf(" *");
784 1.1 itojun (void) fflush(stdout);
785 1.1 itojun }
786 1.1 itojun putchar('\n');
787 1.4 itojun if (got_there ||
788 1.4 itojun (unreachable > 0 && unreachable >= ((nprobes + 1) / 2))) {
789 1.1 itojun exit(0);
790 1.4 itojun }
791 1.1 itojun }
792 1.1 itojun
793 1.40 christos if (as_path)
794 1.40 christos as_shutdown(asn);
795 1.40 christos
796 1.1 itojun exit(0);
797 1.1 itojun }
798 1.1 itojun
799 1.40 christos static ssize_t
800 1.40 christos wait_for_reply(int sock, struct msghdr *mhdr)
801 1.1 itojun {
802 1.14 itojun #ifdef HAVE_POLL
803 1.14 itojun struct pollfd pfd[1];
804 1.40 christos ssize_t cc = 0;
805 1.14 itojun
806 1.14 itojun pfd[0].fd = sock;
807 1.14 itojun pfd[0].events = POLLIN;
808 1.14 itojun pfd[0].revents = 0;
809 1.14 itojun
810 1.14 itojun if (poll(pfd, 1, waittime * 1000) > 0)
811 1.14 itojun cc = recvmsg(rcvsock, mhdr, 0);
812 1.14 itojun
813 1.40 christos return cc;
814 1.14 itojun #else
815 1.14 itojun fd_set *fdsp;
816 1.1 itojun struct timeval wait;
817 1.40 christos ssize_t cc = 0;
818 1.40 christos int fdsn;
819 1.1 itojun
820 1.16 itojun fdsn = howmany(sock + 1, NFDBITS) * sizeof(fd_mask);
821 1.14 itojun if ((fdsp = (fd_set *)malloc(fdsn)) == NULL)
822 1.14 itojun err(1, "malloc");
823 1.14 itojun memset(fdsp, 0, fdsn);
824 1.14 itojun FD_SET(sock, fdsp);
825 1.1 itojun wait.tv_sec = waittime; wait.tv_usec = 0;
826 1.1 itojun
827 1.14 itojun if (select(sock+1, fdsp, (fd_set *)0, (fd_set *)0, &wait) > 0)
828 1.1 itojun cc = recvmsg(rcvsock, mhdr, 0);
829 1.1 itojun
830 1.14 itojun free(fdsp);
831 1.40 christos return cc;
832 1.14 itojun #endif
833 1.1 itojun }
834 1.6 itojun
835 1.6 itojun #ifdef IPSEC
836 1.6 itojun #ifdef IPSEC_POLICY_IPSEC
837 1.40 christos static int
838 1.40 christos setpolicy(int so, const char *policy)
839 1.6 itojun {
840 1.6 itojun char *buf;
841 1.6 itojun
842 1.6 itojun buf = ipsec_set_policy(policy, strlen(policy));
843 1.6 itojun if (buf == NULL) {
844 1.12 itojun warnx("%s", ipsec_strerror());
845 1.6 itojun return -1;
846 1.6 itojun }
847 1.6 itojun (void)setsockopt(so, IPPROTO_IPV6, IPV6_IPSEC_POLICY,
848 1.19 itojun buf, ipsec_get_policylen(buf));
849 1.6 itojun
850 1.6 itojun free(buf);
851 1.6 itojun
852 1.6 itojun return 0;
853 1.6 itojun }
854 1.6 itojun #endif
855 1.6 itojun #endif
856 1.1 itojun
857 1.40 christos static void
858 1.40 christos send_probe(int seq, u_long hops)
859 1.1 itojun {
860 1.34 itojun struct timeval tv;
861 1.34 itojun struct tv32 tv32;
862 1.1 itojun int i;
863 1.1 itojun
864 1.31 itojun i = hops;
865 1.19 itojun if (setsockopt(sndsock, IPPROTO_IPV6, IPV6_UNICAST_HOPS,
866 1.40 christos (char *)&i, sizeof(i)) < 0)
867 1.40 christos warn("setsockopt IPV6_UNICAST_HOPS");
868 1.1 itojun
869 1.1 itojun Dst.sin6_port = htons(port + seq);
870 1.34 itojun (void) gettimeofday(&tv, NULL);
871 1.34 itojun tv32.tv32_sec = htonl(tv.tv_sec);
872 1.34 itojun tv32.tv32_usec = htonl(tv.tv_usec);
873 1.1 itojun
874 1.26 onoe if (useicmp) {
875 1.26 onoe struct icmp6_hdr *icp = (struct icmp6_hdr *)outpacket;
876 1.26 onoe
877 1.26 onoe icp->icmp6_type = ICMP6_ECHO_REQUEST;
878 1.26 onoe icp->icmp6_code = 0;
879 1.26 onoe icp->icmp6_cksum = 0;
880 1.26 onoe icp->icmp6_id = ident;
881 1.26 onoe icp->icmp6_seq = htons(seq);
882 1.40 christos memcpy(((u_int8_t *)outpacket + ICMP6ECHOLEN), &tv32,
883 1.34 itojun sizeof(tv32));
884 1.26 onoe } else {
885 1.26 onoe struct opacket *op = outpacket;
886 1.34 itojun
887 1.26 onoe op->seq = seq;
888 1.26 onoe op->hops = hops;
889 1.40 christos memcpy(&op->tv, &tv32, sizeof tv32);
890 1.26 onoe }
891 1.1 itojun
892 1.1 itojun i = sendto(sndsock, (char *)outpacket, datalen , 0,
893 1.19 itojun (struct sockaddr *)&Dst, Dst.sin6_len);
894 1.40 christos if (i < 0 || i != (int)datalen) {
895 1.34 itojun if (i < 0)
896 1.40 christos warnx("sendto");
897 1.29 itojun printf("traceroute6: wrote %s %lu chars, ret=%d\n",
898 1.19 itojun hostname, datalen, i);
899 1.1 itojun (void) fflush(stdout);
900 1.1 itojun }
901 1.1 itojun }
902 1.1 itojun
903 1.40 christos static double
904 1.40 christos deltaT(struct timeval *t1p, struct timeval *t2p)
905 1.1 itojun {
906 1.34 itojun double dt;
907 1.1 itojun
908 1.1 itojun dt = (double)(t2p->tv_sec - t1p->tv_sec) * 1000.0 +
909 1.19 itojun (double)(t2p->tv_usec - t1p->tv_usec) / 1000.0;
910 1.40 christos return dt;
911 1.1 itojun }
912 1.1 itojun
913 1.1 itojun /*
914 1.1 itojun * Convert an ICMP "type" field to a printable string.
915 1.1 itojun */
916 1.40 christos static const char *
917 1.40 christos pr_type(int t0)
918 1.1 itojun {
919 1.1 itojun u_char t = t0 & 0xff;
920 1.40 christos const char *cp;
921 1.1 itojun
922 1.1 itojun switch (t) {
923 1.1 itojun case ICMP6_DST_UNREACH:
924 1.1 itojun cp = "Destination Unreachable";
925 1.1 itojun break;
926 1.1 itojun case ICMP6_PACKET_TOO_BIG:
927 1.19 itojun cp = "Packet Too Big";
928 1.1 itojun break;
929 1.1 itojun case ICMP6_TIME_EXCEEDED:
930 1.1 itojun cp = "Time Exceeded";
931 1.1 itojun break;
932 1.1 itojun case ICMP6_PARAM_PROB:
933 1.1 itojun cp = "Parameter Problem";
934 1.1 itojun break;
935 1.1 itojun case ICMP6_ECHO_REQUEST:
936 1.1 itojun cp = "Echo Request";
937 1.1 itojun break;
938 1.1 itojun case ICMP6_ECHO_REPLY:
939 1.1 itojun cp = "Echo Reply";
940 1.1 itojun break;
941 1.1 itojun case ICMP6_MEMBERSHIP_QUERY:
942 1.1 itojun cp = "Group Membership Query";
943 1.1 itojun break;
944 1.1 itojun case ICMP6_MEMBERSHIP_REPORT:
945 1.1 itojun cp = "Group Membership Report";
946 1.1 itojun break;
947 1.1 itojun case ICMP6_MEMBERSHIP_REDUCTION:
948 1.1 itojun cp = "Group Membership Reduction";
949 1.1 itojun break;
950 1.1 itojun case ND_ROUTER_SOLICIT:
951 1.1 itojun cp = "Router Solicitation";
952 1.1 itojun break;
953 1.1 itojun case ND_ROUTER_ADVERT:
954 1.1 itojun cp = "Router Advertisement";
955 1.1 itojun break;
956 1.1 itojun case ND_NEIGHBOR_SOLICIT:
957 1.1 itojun cp = "Neighbor Solicitation";
958 1.1 itojun break;
959 1.1 itojun case ND_NEIGHBOR_ADVERT:
960 1.1 itojun cp = "Neighbor Advertisement";
961 1.1 itojun break;
962 1.1 itojun case ND_REDIRECT:
963 1.9 itojun cp = "Redirect";
964 1.1 itojun break;
965 1.1 itojun default:
966 1.1 itojun cp = "Unknown";
967 1.1 itojun break;
968 1.1 itojun }
969 1.1 itojun return cp;
970 1.1 itojun }
971 1.1 itojun
972 1.40 christos static int
973 1.40 christos packet_ok(struct msghdr *mhdr, ssize_t cc, int seq)
974 1.1 itojun {
975 1.34 itojun struct icmp6_hdr *icp;
976 1.1 itojun struct sockaddr_in6 *from = (struct sockaddr_in6 *)mhdr->msg_name;
977 1.1 itojun u_char type, code;
978 1.1 itojun char *buf = (char *)mhdr->msg_iov[0].iov_base;
979 1.1 itojun struct cmsghdr *cm;
980 1.1 itojun int *hlimp;
981 1.7 itojun char hbuf[NI_MAXHOST];
982 1.1 itojun
983 1.40 christos if (cc < (ssize_t)sizeof(struct icmp6_hdr)) {
984 1.7 itojun if (verbose) {
985 1.7 itojun if (getnameinfo((struct sockaddr *)from, from->sin6_len,
986 1.19 itojun hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST) != 0)
987 1.15 itojun strlcpy(hbuf, "invalid", sizeof(hbuf));
988 1.40 christos printf("data too short (%zd bytes) from %s\n", cc,
989 1.40 christos hbuf);
990 1.7 itojun }
991 1.40 christos return 0;
992 1.1 itojun }
993 1.1 itojun icp = (struct icmp6_hdr *)buf;
994 1.49 maxv
995 1.1 itojun /* get optional information via advanced API */
996 1.1 itojun rcvpktinfo = NULL;
997 1.1 itojun hlimp = NULL;
998 1.1 itojun for (cm = (struct cmsghdr *)CMSG_FIRSTHDR(mhdr); cm;
999 1.19 itojun cm = (struct cmsghdr *)CMSG_NXTHDR(mhdr, cm)) {
1000 1.1 itojun if (cm->cmsg_level == IPPROTO_IPV6 &&
1001 1.1 itojun cm->cmsg_type == IPV6_PKTINFO &&
1002 1.1 itojun cm->cmsg_len ==
1003 1.1 itojun CMSG_LEN(sizeof(struct in6_pktinfo)))
1004 1.1 itojun rcvpktinfo = (struct in6_pktinfo *)(CMSG_DATA(cm));
1005 1.1 itojun
1006 1.1 itojun if (cm->cmsg_level == IPPROTO_IPV6 &&
1007 1.1 itojun cm->cmsg_type == IPV6_HOPLIMIT &&
1008 1.1 itojun cm->cmsg_len == CMSG_LEN(sizeof(int)))
1009 1.1 itojun hlimp = (int *)CMSG_DATA(cm);
1010 1.1 itojun }
1011 1.1 itojun if (rcvpktinfo == NULL || hlimp == NULL) {
1012 1.1 itojun warnx("failed to get received hop limit or packet info");
1013 1.11 itojun #if 0
1014 1.40 christos return 0;
1015 1.11 itojun #else
1016 1.11 itojun rcvhlim = 0; /*XXX*/
1017 1.11 itojun #endif
1018 1.1 itojun }
1019 1.11 itojun else
1020 1.11 itojun rcvhlim = *hlimp;
1021 1.11 itojun
1022 1.1 itojun type = icp->icmp6_type;
1023 1.1 itojun code = icp->icmp6_code;
1024 1.1 itojun if ((type == ICMP6_TIME_EXCEEDED && code == ICMP6_TIME_EXCEED_TRANSIT)
1025 1.34 itojun || type == ICMP6_DST_UNREACH) {
1026 1.1 itojun struct ip6_hdr *hip;
1027 1.1 itojun struct udphdr *up;
1028 1.1 itojun
1029 1.1 itojun hip = (struct ip6_hdr *)(icp + 1);
1030 1.1 itojun if ((up = get_udphdr(hip, (u_char *)(buf + cc))) == NULL) {
1031 1.1 itojun if (verbose)
1032 1.1 itojun warnx("failed to get upper layer header");
1033 1.40 christos return 0;
1034 1.1 itojun }
1035 1.26 onoe if (useicmp &&
1036 1.26 onoe ((struct icmp6_hdr *)up)->icmp6_id == ident &&
1037 1.26 onoe ((struct icmp6_hdr *)up)->icmp6_seq == htons(seq))
1038 1.40 christos return type == ICMP6_TIME_EXCEEDED ? -1 : code + 1;
1039 1.26 onoe else if (!useicmp &&
1040 1.26 onoe up->uh_sport == htons(srcport) &&
1041 1.19 itojun up->uh_dport == htons(port + seq))
1042 1.40 christos return type == ICMP6_TIME_EXCEEDED ? -1 : code + 1;
1043 1.26 onoe } else if (useicmp && type == ICMP6_ECHO_REPLY) {
1044 1.26 onoe if (icp->icmp6_id == ident &&
1045 1.26 onoe icp->icmp6_seq == htons(seq))
1046 1.40 christos return ICMP6_DST_UNREACH_NOPORT + 1;
1047 1.1 itojun }
1048 1.1 itojun if (verbose) {
1049 1.34 itojun char sbuf[NI_MAXHOST+1], dbuf[INET6_ADDRSTRLEN];
1050 1.34 itojun u_int8_t *p;
1051 1.40 christos ssize_t i;
1052 1.1 itojun
1053 1.7 itojun if (getnameinfo((struct sockaddr *)from, from->sin6_len,
1054 1.19 itojun sbuf, sizeof(sbuf), NULL, 0, NI_NUMERICHOST) != 0)
1055 1.23 itojun strlcpy(sbuf, "invalid", sizeof(sbuf));
1056 1.40 christos printf("\n%zd bytes from %s to %s", cc, sbuf,
1057 1.11 itojun rcvpktinfo ? inet_ntop(AF_INET6, &rcvpktinfo->ipi6_addr,
1058 1.19 itojun dbuf, sizeof(dbuf)) : "?");
1059 1.19 itojun printf(": icmp type %d (%s) code %d\n", type, pr_type(type),
1060 1.19 itojun icp->icmp6_code);
1061 1.11 itojun p = (u_int8_t *)(icp + 1);
1062 1.11 itojun #define WIDTH 16
1063 1.11 itojun for (i = 0; i < cc; i++) {
1064 1.11 itojun if (i % WIDTH == 0)
1065 1.40 christos printf("%04zx:", i);
1066 1.11 itojun if (i % 4 == 0)
1067 1.19 itojun printf(" ");
1068 1.19 itojun printf("%02x", p[i]);
1069 1.11 itojun if (i % WIDTH == WIDTH - 1)
1070 1.19 itojun printf("\n");
1071 1.11 itojun }
1072 1.11 itojun if (cc % WIDTH != 0)
1073 1.19 itojun printf("\n");
1074 1.1 itojun }
1075 1.40 christos return 0;
1076 1.1 itojun }
1077 1.1 itojun
1078 1.1 itojun /*
1079 1.26 onoe * Increment pointer until find the UDP or ICMP header.
1080 1.1 itojun */
1081 1.40 christos static struct udphdr *
1082 1.40 christos get_udphdr(struct ip6_hdr *ip6, u_char *lim)
1083 1.1 itojun {
1084 1.1 itojun u_char *cp = (u_char *)ip6, nh;
1085 1.1 itojun int hlen;
1086 1.1 itojun
1087 1.1 itojun if (cp + sizeof(*ip6) >= lim)
1088 1.40 christos return NULL;
1089 1.1 itojun
1090 1.1 itojun nh = ip6->ip6_nxt;
1091 1.1 itojun cp += sizeof(struct ip6_hdr);
1092 1.1 itojun
1093 1.19 itojun while (lim - cp >= 8) {
1094 1.23 itojun switch (nh) {
1095 1.19 itojun case IPPROTO_ESP:
1096 1.19 itojun case IPPROTO_TCP:
1097 1.40 christos return NULL;
1098 1.19 itojun case IPPROTO_ICMPV6:
1099 1.40 christos return useicmp ? (struct udphdr *)cp : NULL;
1100 1.19 itojun case IPPROTO_UDP:
1101 1.40 christos return useicmp ? NULL : (struct udphdr *)cp;
1102 1.19 itojun case IPPROTO_FRAGMENT:
1103 1.26 onoe hlen = sizeof(struct ip6_frag);
1104 1.26 onoe nh = ((struct ip6_frag *)cp)->ip6f_nxt;
1105 1.26 onoe break;
1106 1.19 itojun case IPPROTO_AH:
1107 1.26 onoe hlen = (((struct ip6_ext *)cp)->ip6e_len + 2) << 2;
1108 1.26 onoe nh = ((struct ip6_ext *)cp)->ip6e_nxt;
1109 1.26 onoe break;
1110 1.19 itojun default:
1111 1.26 onoe hlen = (((struct ip6_ext *)cp)->ip6e_len + 1) << 3;
1112 1.26 onoe nh = ((struct ip6_ext *)cp)->ip6e_nxt;
1113 1.26 onoe break;
1114 1.1 itojun }
1115 1.1 itojun
1116 1.1 itojun cp += hlen;
1117 1.1 itojun }
1118 1.1 itojun
1119 1.40 christos return NULL;
1120 1.1 itojun }
1121 1.1 itojun
1122 1.40 christos static void
1123 1.40 christos print(struct msghdr *mhdr, int cc)
1124 1.1 itojun {
1125 1.1 itojun struct sockaddr_in6 *from = (struct sockaddr_in6 *)mhdr->msg_name;
1126 1.7 itojun char hbuf[NI_MAXHOST];
1127 1.1 itojun
1128 1.7 itojun if (getnameinfo((struct sockaddr *)from, from->sin6_len,
1129 1.19 itojun hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST) != 0)
1130 1.15 itojun strlcpy(hbuf, "invalid", sizeof(hbuf));
1131 1.40 christos if (as_path)
1132 1.40 christos printf(" [AS%u]", as_lookup(asn, hbuf, AF_INET6));
1133 1.7 itojun if (nflag)
1134 1.19 itojun printf(" %s", hbuf);
1135 1.7 itojun else if (lflag)
1136 1.19 itojun printf(" %s (%s)", inetname((struct sockaddr *)from), hbuf);
1137 1.7 itojun else
1138 1.19 itojun printf(" %s", inetname((struct sockaddr *)from));
1139 1.1 itojun
1140 1.1 itojun if (verbose) {
1141 1.1 itojun #ifdef OLDRAWSOCKET
1142 1.19 itojun printf(" %d bytes to %s", cc,
1143 1.11 itojun rcvpktinfo ? inet_ntop(AF_INET6, &rcvpktinfo->ipi6_addr,
1144 1.19 itojun hbuf, sizeof(hbuf)) : "?");
1145 1.1 itojun #else
1146 1.19 itojun printf(" %d bytes of data to %s", cc,
1147 1.11 itojun rcvpktinfo ? inet_ntop(AF_INET6, &rcvpktinfo->ipi6_addr,
1148 1.19 itojun hbuf, sizeof(hbuf)) : "?");
1149 1.1 itojun #endif
1150 1.1 itojun }
1151 1.1 itojun }
1152 1.1 itojun
1153 1.1 itojun /*
1154 1.1 itojun * Construct an Internet address representation.
1155 1.1 itojun * If the nflag has been supplied, give
1156 1.1 itojun * numeric value, otherwise try for symbolic name.
1157 1.1 itojun */
1158 1.40 christos static const char *
1159 1.40 christos inetname(struct sockaddr *sa)
1160 1.1 itojun {
1161 1.34 itojun static char line[NI_MAXHOST], domain[MAXHOSTNAMELEN + 1];
1162 1.1 itojun static int first = 1;
1163 1.34 itojun char *cp;
1164 1.1 itojun
1165 1.1 itojun if (first && !nflag) {
1166 1.1 itojun first = 0;
1167 1.18 itojun if (gethostname(domain, sizeof(domain)) == 0 &&
1168 1.22 itojun (cp = strchr(domain, '.')))
1169 1.15 itojun (void) strlcpy(domain, cp + 1, sizeof(domain));
1170 1.1 itojun else
1171 1.1 itojun domain[0] = 0;
1172 1.1 itojun }
1173 1.7 itojun cp = NULL;
1174 1.1 itojun if (!nflag) {
1175 1.7 itojun if (getnameinfo(sa, sa->sa_len, line, sizeof(line), NULL, 0,
1176 1.7 itojun NI_NAMEREQD) == 0) {
1177 1.22 itojun if ((cp = strchr(line, '.')) &&
1178 1.1 itojun !strcmp(cp + 1, domain))
1179 1.1 itojun *cp = 0;
1180 1.7 itojun cp = line;
1181 1.1 itojun }
1182 1.1 itojun }
1183 1.1 itojun if (cp)
1184 1.7 itojun return cp;
1185 1.7 itojun
1186 1.7 itojun if (getnameinfo(sa, sa->sa_len, line, sizeof(line), NULL, 0,
1187 1.19 itojun NI_NUMERICHOST) != 0)
1188 1.15 itojun strlcpy(line, "invalid", sizeof(line));
1189 1.7 itojun return line;
1190 1.1 itojun }
1191 1.1 itojun
1192 1.40 christos static void
1193 1.40 christos usage(void)
1194 1.1 itojun {
1195 1.19 itojun
1196 1.19 itojun fprintf(stderr,
1197 1.45 maxv "Usage: %s [-adIlnrv] [-A as_server] [-f firsthop] [-m hoplimit]\n"
1198 1.45 maxv "\t[-p port] [-q probes] [-s src] [-w waittime] target [datalen]\n",
1199 1.41 wiz getprogname());
1200 1.1 itojun exit(1);
1201 1.1 itojun }
1202