1 /* $KAME: traceroute6.c,v 1.68 2004/01/25 11:16:12 suz Exp $ */
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * Copyright (c) 1990, 1993
34 * The Regents of the University of California. All rights reserved.
36 * This code is derived from software contributed to Berkeley by
39 * Redistribution and use in source and binary forms, with or without
40 * modification, are permitted provided that the following conditions
42 * 1. Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * 2. Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in the
46 * documentation and/or other materials provided with the distribution.
47 * 3. All advertising materials mentioning features or use of this software
48 * must display the following acknowledgement:
49 * This product includes software developed by the University of
50 * California, Berkeley and its contributors.
51 * 4. Neither the name of the University nor the names of its contributors
52 * may be used to endorse or promote products derived from this software
53 * without specific prior written permission.
55 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
56 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
58 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
59 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
61 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
63 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
64 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 #include <sys/cdefs.h>
71 __unused
static char copyright
[] =
72 "@(#) Copyright (c) 1990, 1993\n\
73 The Regents of the University of California. All rights reserved.\n";
77 * traceroute host - trace the route ip packets follow going to "host".
79 * Attempt to trace the route an ip packet would follow to some
80 * internet host. We find out intermediate hops by launching probe
81 * packets with a small ttl (time to live) then listening for an
82 * icmp "time exceeded" reply from a gateway. We start our probes
83 * with a ttl of one and increase by one until we get an icmp "port
84 * unreachable" (which means we got to "host") or hit a max (which
85 * defaults to 30 hops & can be changed with the -m flag). Three
86 * probes (change with -q flag) are sent at each ttl setting and a
87 * line is printed showing the ttl, address of the gateway and
88 * round trip time of each probe. If the probe answers come from
89 * different gateways, the address of each responding system will
90 * be printed. If there is no response within a 5 sec. timeout
91 * interval (changed with the -w flag), a "*" is printed for that
94 * Probe packets are UDP format. We don't want the destination
95 * host to process them so the destination port is set to an
96 * unlikely value (if some clod on the destination is using that
97 * value, it can be changed with the -p flag).
99 * A sample use might be:
101 * [yak 71]% traceroute nis.nsf.net.
102 * traceroute to nis.nsf.net (35.1.1.48), 30 hops max, 56 byte packet
103 * 1 helios.ee.lbl.gov (128.3.112.1) 19 ms 19 ms 0 ms
104 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
105 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 39 ms 19 ms
106 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 39 ms
107 * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 39 ms 39 ms 39 ms
108 * 6 128.32.197.4 (128.32.197.4) 40 ms 59 ms 59 ms
109 * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 59 ms
110 * 8 129.140.70.13 (129.140.70.13) 99 ms 99 ms 80 ms
111 * 9 129.140.71.6 (129.140.71.6) 139 ms 239 ms 319 ms
112 * 10 129.140.81.7 (129.140.81.7) 220 ms 199 ms 199 ms
113 * 11 nic.merit.edu (35.1.1.48) 239 ms 239 ms 239 ms
115 * Note that lines 2 & 3 are the same. This is due to a buggy
116 * kernel on the 2nd hop system -- lbl-csam.arpa -- that forwards
117 * packets with a zero ttl.
119 * A more interesting example is:
121 * [yak 72]% traceroute allspice.lcs.mit.edu.
122 * traceroute to allspice.lcs.mit.edu (18.26.0.115), 30 hops max
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) 19 ms 19 ms 19 ms
125 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 19 ms
126 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 19 ms 39 ms 39 ms
127 * 5 ccn-nerif22.Berkeley.EDU (128.32.168.22) 20 ms 39 ms 39 ms
128 * 6 128.32.197.4 (128.32.197.4) 59 ms 119 ms 39 ms
129 * 7 131.119.2.5 (131.119.2.5) 59 ms 59 ms 39 ms
130 * 8 129.140.70.13 (129.140.70.13) 80 ms 79 ms 99 ms
131 * 9 129.140.71.6 (129.140.71.6) 139 ms 139 ms 159 ms
132 * 10 129.140.81.7 (129.140.81.7) 199 ms 180 ms 300 ms
133 * 11 129.140.72.17 (129.140.72.17) 300 ms 239 ms 239 ms
135 * 13 128.121.54.72 (128.121.54.72) 259 ms 499 ms 279 ms
140 * 18 ALLSPICE.LCS.MIT.EDU (18.26.0.115) 339 ms 279 ms 279 ms
142 * (I start to see why I'm having so much trouble with mail to
143 * MIT.) Note that the gateways 12, 14, 15, 16 & 17 hops away
144 * either don't send ICMP "time exceeded" messages or send them
145 * with a ttl too small to reach us. 14 - 17 are running the
146 * MIT C Gateway code that doesn't send "time exceeded"s. God
147 * only knows what's going on with 12.
149 * The silent gateway 12 in the above may be the result of a bug in
150 * the 4.[23]BSD network code (and its derivatives): 4.x (x <= 3)
151 * sends an unreachable message using whatever ttl remains in the
152 * original datagram. Since, for gateways, the remaining ttl is
153 * zero, the icmp "time exceeded" is guaranteed to not make it back
154 * to us. The behavior of this bug is slightly more interesting
155 * when it appears on the destination system:
157 * 1 helios.ee.lbl.gov (128.3.112.1) 0 ms 0 ms 0 ms
158 * 2 lilac-dmc.Berkeley.EDU (128.32.216.1) 39 ms 19 ms 39 ms
159 * 3 lilac-dmc.Berkeley.EDU (128.32.216.1) 19 ms 39 ms 19 ms
160 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 19 ms
161 * 5 ccn-nerif35.Berkeley.EDU (128.32.168.35) 39 ms 39 ms 39 ms
162 * 6 csgw.Berkeley.EDU (128.32.133.254) 39 ms 59 ms 39 ms
169 * 13 rip.Berkeley.EDU (128.32.131.22) 59 ms ! 39 ms ! 39 ms !
171 * Notice that there are 12 "gateways" (13 is the final
172 * destination) and exactly the last half of them are "missing".
173 * What's really happening is that rip (a Sun-3 running Sun OS3.5)
174 * is using the ttl from our arriving datagram as the ttl in its
175 * icmp reply. So, the reply will time out on the return path
176 * (with no notice sent to anyone since icmp's aren't sent for
177 * icmp's) until we probe with a ttl that's at least twice the path
178 * length. I.e., rip is really only 7 hops away. A reply that
179 * returns with a ttl of 1 is a clue this problem exists.
180 * Traceroute prints a "!" after the time if the ttl is <= 1.
181 * Since vendors ship a lot of obsolete (DEC's Ultrix, Sun 3.x) or
182 * non-standard (HPUX) software, expect to see this problem
183 * frequently and/or take care picking the target host of your
186 * Other possible annotations after the time are !H, !N, !P (got a host,
187 * network or protocol unreachable, respectively), !S or !F (source
188 * route failed or fragmentation needed -- neither of these should
189 * ever occur and the associated gateway is busted if you see one). If
190 * almost all the probes result in some kind of unreachable, traceroute
191 * will give up and exit.
195 * This program must be run by root or be setuid. (I suggest that
196 * you *don't* make it setuid -- casual use could result in a lot
197 * of unnecessary traffic on our poor, congested nets.)
199 * This program requires a kernel mod that does not appear in any
200 * system available from Berkeley: A raw ip socket using proto
201 * IPPROTO_RAW must interpret the data sent as an ip datagram (as
202 * opposed to data to be wrapped in an ip datagram). See the README
203 * file that came with the source to this program for a description
204 * of the mods I made to /sys/netinet/raw_ip.c. Your mileage may
205 * vary. But, again, ANY 4.x (x < 4) BSD KERNEL WILL HAVE TO BE
206 * MODIFIED TO RUN THIS PROGRAM.
208 * The udp port usage may appear bizarre (well, ok, it is bizarre).
209 * The problem is that an icmp message only contains 8 bytes of
210 * data from the original datagram. 8 bytes is the size of a udp
211 * header so, if we want to associate replies with the original
212 * datagram, the necessary information must be encoded into the
213 * udp header (the ip id could be used but there's no way to
214 * interlock with the kernel's assignment of ip id's and, anyway,
215 * it would have taken a lot more kernel hacking to allow this
216 * code to set the ip id). So, to allow two or more users to
217 * use traceroute simultaneously, we use this task's pid as the
218 * source port (the high bit is set to move the port number out
219 * of the "likely" range). To keep track of which probe is being
220 * replied to (so times and/or hop counts don't get confused by a
221 * reply that was delayed in transit), we increment the destination
222 * port number before each probe.
224 * Don't use this as a coding example. I was trying to find a
225 * routing problem and this code sort-of popped out after 48 hours
226 * without sleep. I was amazed it ever compiled, much less ran.
228 * I stole the idea for this program from Steve Deering. Since
229 * the first release, I've learned that had I attended the right
230 * IETF working group meetings, I also could have stolen it from Guy
231 * Almes or Matt Mathis. I don't know (or care) who came up with
232 * the idea first. I envy the originators' perspicacity and I'm
233 * glad they didn't keep the idea a secret.
235 * Tim Seaver, Ken Adelman and C. Philip Wood provided bug fixes and/or
236 * enhancements to the original distribution.
238 * I've hacked up a round-trip-route version of this that works by
239 * sending a loose-source-routed udp datagram through the destination
240 * back to yourself. Unfortunately, SO many gateways botch source
241 * routing, the thing is almost worthless. Maybe one day...
243 * -- Van Jacobson (van@helios.ee.lbl.gov)
244 * Tue Dec 20 03:50:13 PST 1988
247 #include <sys/param.h>
248 #include <sys/time.h>
249 #include <sys/socket.h>
251 #include <sys/file.h>
252 #include <sys/ioctl.h>
253 #include <sys/sysctl.h>
255 #include <netinet/in.h>
257 #include <arpa/inet.h>
270 #include <netinet/ip6.h>
271 #include <netinet/icmp6.h>
272 #include <netinet/udp.h>
275 #include <net/route.h>
276 #include <netinet6/ipsec.h>
279 #define DUMMY_PORT 10010
281 #define MAXPACKET 65535 /* max ip packet size */
283 #ifndef HAVE_GETIPNODEBYNAME
284 #define getipnodebyname(x, y, z, u) gethostbyname2((x), (y))
285 #define freehostent(x)
289 * format of a (udp) probe packet.
297 u_char seq
; /* sequence number of this packet */
298 u_char hops
; /* hop limit of the packet */
300 struct tv32 tv
; /* time packet left */
301 } __attribute__((__packed__
));
303 u_char packet
[512]; /* last inbound (icmp) packet */
304 struct opacket
*outpacket
; /* last output (udp) packet */
306 int main(int, char *[]);
307 int wait_for_reply(int, struct msghdr
*);
309 #ifdef IPSEC_POLICY_IPSEC
310 int setpolicy(int so
, char *policy
);
313 void send_probe(int, u_long
);
314 void *get_uphdr(struct ip6_hdr
*, u_char
*);
315 int get_hoplim(struct msghdr
*);
316 double deltaT(struct timeval
*, struct timeval
*);
318 int packet_ok(struct msghdr
*, int, int);
319 void print(struct msghdr
*, int);
320 const char *inetname(struct sockaddr
*);
323 int rcvsock
; /* receive (icmp) socket file descriptor */
324 int sndsock
; /* send (udp) socket file descriptor */
326 struct msghdr rcvmhdr
;
327 struct iovec rcviov
[2];
329 struct in6_pktinfo
*rcvpktinfo
;
331 struct sockaddr_in6 Src
, Dst
, Rcv
;
332 u_long datalen
; /* How much data */
333 #define ICMP6ECHOLEN 8
334 /* XXX: 2064 = 127(max hops in type 0 rthdr) * sizeof(ip6_hdr) + 16(margin) */
336 #ifdef USE_RFC2292BIS
337 struct ip6_rthdr
*rth
;
339 struct cmsghdr
*cmsg
;
345 u_long first_hop
= 1;
346 u_long max_hops
= 30;
348 u_int16_t port
= 32768+666; /* start udp dest port # for probe packets */
350 int options
; /* socket options */
352 int waittime
= 5; /* time to wait for response (in seconds) */
353 int nflag
; /* print addresses numerically */
354 int useproto
= IPPROTO_UDP
; /* protocol to use to send packet */
355 int lflag
; /* print both numerical address & hostname */
362 int mib
[4] = { CTL_NET
, PF_INET6
, IPPROTO_IPV6
, IPV6CTL_DEFHLIM
};
363 char hbuf
[NI_MAXHOST
], src0
[NI_MAXHOST
], *ep
;
364 int ch
, i
, on
= 1, seq
, rcvcmsglen
, error
, minlen
;
365 struct addrinfo hints
, *res
;
366 static u_char
*rcvcmsgbuf
;
367 u_long probe
, hops
, lport
;
374 if ((rcvsock
= socket(AF_INET6
, SOCK_RAW
, IPPROTO_ICMPV6
)) < 0) {
375 perror("socket(ICMPv6)");
380 (void) sysctl(mib
, sizeof(mib
)/sizeof(mib
[0]), &i
, &size
, NULL
, 0);
383 /* specify to tell receiving interface */
384 #ifdef IPV6_RECVPKTINFO
385 if (setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_RECVPKTINFO
, &on
,
387 err(1, "setsockopt(IPV6_RECVPKTINFO)");
388 #else /* old adv. API */
389 if (setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_PKTINFO
, &on
,
391 err(1, "setsockopt(IPV6_PKTINFO)");
394 /* specify to tell value of hoplimit field of received IP6 hdr */
395 #ifdef IPV6_RECVHOPLIMIT
396 if (setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_RECVHOPLIMIT
, &on
,
398 err(1, "setsockopt(IPV6_RECVHOPLIMIT)");
399 #else /* old adv. API */
400 if (setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_HOPLIMIT
, &on
,
402 err(1, "setsockopt(IPV6_HOPLIMIT)");
407 while ((ch
= getopt(argc
, argv
, "df:g:Ilm:nNp:q:rs:Uvw:")) != -1)
415 first_hop
= strtoul(optarg
, &ep
, 0);
416 if (errno
|| !*optarg
|| *ep
|| first_hop
> 255) {
418 "traceroute6: invalid min hoplimit.\n");
423 hp
= getipnodebyname(optarg
, AF_INET6
, 0, &h_errno
);
426 "traceroute6: unknown host %s\n", optarg
);
429 #ifdef USE_RFC2292BIS
432 * XXX: We can't detect the number of
433 * intermediate nodes yet.
435 if ((rth
= inet6_rth_init((void *)rtbuf
,
436 sizeof(rtbuf
), IPV6_RTHDR_TYPE_0
,
439 "inet6_rth_init failed.\n");
443 if (inet6_rth_add((void *)rth
,
444 (struct in6_addr
*)hp
->h_addr
)) {
446 "inet6_rth_add failed for %s\n",
450 #else /* old advanced API */
452 cmsg
= inet6_rthdr_init(rtbuf
, IPV6_RTHDR_TYPE_0
);
453 inet6_rthdr_add(cmsg
, (struct in6_addr
*)hp
->h_addr
,
459 useproto
= IPPROTO_ICMPV6
;
460 ident
= htons(getpid() & 0xffff); /* same as ping6 */
468 max_hops
= strtoul(optarg
, &ep
, 0);
469 if (errno
|| !*optarg
|| *ep
|| max_hops
> 255) {
471 "traceroute6: invalid max hoplimit.\n");
479 useproto
= IPPROTO_NONE
;
484 lport
= strtoul(optarg
, &ep
, 0);
485 if (errno
|| !*optarg
|| *ep
) {
486 fprintf(stderr
, "traceroute6: invalid port.\n");
489 if (lport
== 0 || lport
!= (lport
& 0xffff)) {
491 "traceroute6: port out of range.\n");
494 port
= lport
& 0xffff;
499 nprobes
= strtoul(optarg
, &ep
, 0);
500 if (errno
|| !*optarg
|| *ep
) {
502 "traceroute6: invalid nprobes.\n");
507 "traceroute6: nprobes must be >0.\n");
512 options
|= SO_DONTROUTE
;
516 * set the ip source address of the outbound
517 * probe (e.g., on a multi-homed host).
525 useproto
= IPPROTO_UDP
;
530 waittime
= strtoul(optarg
, &ep
, 0);
531 if (errno
|| !*optarg
|| *ep
) {
533 "traceroute6: invalid wait time.\n");
538 "traceroute6: wait must be >= 1 sec.\n");
549 * Open socket to send probe packets.
556 if ((sndsock
= socket(AF_INET6
, SOCK_DGRAM
, 0)) < 0) {
557 perror("socket(SOCK_DGRAM)");
562 if ((sndsock
= socket(AF_INET6
, SOCK_RAW
, IPPROTO_NONE
)) < 0) {
563 perror("socket(SOCK_RAW)");
568 fprintf(stderr
, "traceroute6: unknown probe protocol %d",
572 if (max_hops
< first_hop
) {
574 "traceroute6: max hoplimit must be larger than first hoplimit.\n");
582 if (argc
< 1 || argc
> 2)
586 setvbuf(stdout
, NULL
, _IOLBF
, BUFSIZ
);
591 memset(&hints
, 0, sizeof(hints
));
592 hints
.ai_family
= PF_INET6
;
593 hints
.ai_socktype
= SOCK_RAW
;
594 hints
.ai_protocol
= IPPROTO_ICMPV6
;
595 hints
.ai_flags
= AI_CANONNAME
;
596 error
= getaddrinfo(*argv
, NULL
, &hints
, &res
);
599 "traceroute6: %s\n", gai_strerror(error
));
602 if (res
->ai_addrlen
!= sizeof(Dst
)) {
604 "traceroute6: size of sockaddr mismatch\n");
607 memcpy(&Dst
, res
->ai_addr
, res
->ai_addrlen
);
608 hostname
= res
->ai_canonname
? strdup(res
->ai_canonname
) : *argv
;
610 fprintf(stderr
, "traceroute6: not enough core\n");
614 if (getnameinfo(res
->ai_addr
, res
->ai_addrlen
, hbuf
,
615 sizeof(hbuf
), NULL
, 0, NI_NUMERICHOST
) != 0)
616 strlcpy(hbuf
, "?", sizeof(hbuf
));
617 fprintf(stderr
, "traceroute6: Warning: %s has multiple "
618 "addresses; using %s\n", hostname
, hbuf
);
624 datalen
= strtoul(*argv
, &ep
, 0);
625 if (errno
|| !*argv
|| *ep
) {
627 "traceroute6: invalid packet length.\n");
633 minlen
= ICMP6ECHOLEN
+ sizeof(struct tv32
);
636 minlen
= sizeof(struct opacket
);
643 fprintf(stderr
, "traceroute6: unknown probe protocol %d.\n",
647 if (datalen
< minlen
)
649 else if (datalen
>= MAXPACKET
) {
651 "traceroute6: packet size must be %d <= s < %ld.\n",
652 minlen
, (long)MAXPACKET
);
655 outpacket
= (struct opacket
*)malloc((unsigned)datalen
);
660 (void) bzero((char *)outpacket
, datalen
);
662 /* initialize msghdr for receiving packets */
663 rcviov
[0].iov_base
= (caddr_t
)packet
;
664 rcviov
[0].iov_len
= sizeof(packet
);
665 rcvmhdr
.msg_name
= (caddr_t
)&Rcv
;
666 rcvmhdr
.msg_namelen
= sizeof(Rcv
);
667 rcvmhdr
.msg_iov
= rcviov
;
668 rcvmhdr
.msg_iovlen
= 1;
669 rcvcmsglen
= CMSG_SPACE(sizeof(struct in6_pktinfo
)) +
670 CMSG_SPACE(sizeof(int));
671 if ((rcvcmsgbuf
= malloc(rcvcmsglen
)) == NULL
) {
672 fprintf(stderr
, "traceroute6: malloc failed\n");
675 rcvmhdr
.msg_control
= (caddr_t
) rcvcmsgbuf
;
676 rcvmhdr
.msg_controllen
= rcvcmsglen
;
678 (void) setsockopt(rcvsock
, SOL_SOCKET
, SO_RECV_ANYIF
, (char *)&on
,
680 if (options
& SO_DEBUG
)
681 (void) setsockopt(rcvsock
, SOL_SOCKET
, SO_DEBUG
,
682 (char *)&on
, sizeof(on
));
683 if (options
& SO_DONTROUTE
)
684 (void) setsockopt(rcvsock
, SOL_SOCKET
, SO_DONTROUTE
,
685 (char *)&on
, sizeof(on
));
687 #ifdef IPSEC_POLICY_IPSEC
689 * do not raise error even if setsockopt fails, kernel may have ipsec
692 if (setpolicy(rcvsock
, "in bypass") < 0)
693 errx(1, "%s", ipsec_strerror());
694 if (setpolicy(rcvsock
, "out bypass") < 0)
695 errx(1, "%s", ipsec_strerror());
698 int level
= IPSEC_LEVEL_NONE
;
700 (void)setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_ESP_TRANS_LEVEL
, &level
,
702 (void)setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_ESP_NETWORK_LEVEL
, &level
,
704 #ifdef IP_AUTH_TRANS_LEVEL
705 (void)setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_AUTH_TRANS_LEVEL
, &level
,
708 (void)setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_AUTH_LEVEL
, &level
,
711 #ifdef IP_AUTH_NETWORK_LEVEL
712 (void)setsockopt(rcvsock
, IPPROTO_IPV6
, IPV6_AUTH_NETWORK_LEVEL
, &level
,
716 #endif /*IPSEC_POLICY_IPSEC*/
721 if (setsockopt(sndsock
, SOL_SOCKET
, SO_SNDBUF
, (char *)&i
,
722 sizeof(i
)) < 0 && useproto
!= IPPROTO_NONE
) {
723 perror("setsockopt(SO_SNDBUF)");
726 #endif /* SO_SNDBUF */
727 if (options
& SO_DEBUG
)
728 (void) setsockopt(sndsock
, SOL_SOCKET
, SO_DEBUG
,
729 (char *)&on
, sizeof(on
));
730 if (options
& SO_DONTROUTE
)
731 (void) setsockopt(sndsock
, SOL_SOCKET
, SO_DONTROUTE
,
732 (char *)&on
, sizeof(on
));
733 #ifdef USE_RFC2292BIS
734 if (rth
) {/* XXX: there is no library to finalize the header... */
735 rth
->ip6r_len
= rth
->ip6r_segleft
* 2;
736 if (setsockopt(sndsock
, IPPROTO_IPV6
, IPV6_RTHDR
,
737 (void *)rth
, (rth
->ip6r_len
+ 1) << 3)) {
738 fprintf(stderr
, "setsockopt(IPV6_RTHDR): %s\n",
743 #else /* old advanced API */
745 inet6_rthdr_lasthop(cmsg
, IPV6_RTHDR_LOOSE
);
746 if (setsockopt(sndsock
, IPPROTO_IPV6
, IPV6_PKTOPTIONS
,
747 rtbuf
, cmsg
->cmsg_len
) < 0) {
748 fprintf(stderr
, "setsockopt(IPV6_PKTOPTIONS): %s\n",
753 #endif /* USE_RFC2292BIS */
755 #ifdef IPSEC_POLICY_IPSEC
757 * do not raise error even if setsockopt fails, kernel may have ipsec
760 if (setpolicy(sndsock
, "in bypass") < 0)
761 errx(1, "%s", ipsec_strerror());
762 if (setpolicy(sndsock
, "out bypass") < 0)
763 errx(1, "%s", ipsec_strerror());
766 int level
= IPSEC_LEVEL_BYPASS
;
768 (void)setsockopt(sndsock
, IPPROTO_IPV6
, IPV6_ESP_TRANS_LEVEL
, &level
,
770 (void)setsockopt(sndsock
, IPPROTO_IPV6
, IPV6_ESP_NETWORK_LEVEL
, &level
,
772 #ifdef IP_AUTH_TRANS_LEVEL
773 (void)setsockopt(sndsock
, IPPROTO_IPV6
, IPV6_AUTH_TRANS_LEVEL
, &level
,
776 (void)setsockopt(sndsock
, IPPROTO_IPV6
, IPV6_AUTH_LEVEL
, &level
,
779 #ifdef IP_AUTH_NETWORK_LEVEL
780 (void)setsockopt(sndsock
, IPPROTO_IPV6
, IPV6_AUTH_NETWORK_LEVEL
, &level
,
784 #endif /*IPSEC_POLICY_IPSEC*/
790 bzero(&Src
, sizeof(Src
));
792 struct addrinfo hints
, *res
;
795 memset(&hints
, 0, sizeof(hints
));
796 hints
.ai_family
= AF_INET6
;
797 hints
.ai_socktype
= SOCK_DGRAM
; /*dummy*/
798 hints
.ai_flags
= AI_NUMERICHOST
;
799 error
= getaddrinfo(source
, "0", &hints
, &res
);
801 printf("traceroute6: %s: %s\n", source
,
802 gai_strerror(error
));
805 if (res
->ai_addrlen
> sizeof(Src
)) {
806 printf("traceroute6: %s: %s\n", source
,
807 gai_strerror(error
));
810 memcpy(&Src
, res
->ai_addr
, res
->ai_addrlen
);
813 struct sockaddr_in6 Nxt
;
818 Nxt
.sin6_port
= htons(DUMMY_PORT
);
820 bcopy(inet6_rthdr_getaddr(cmsg
, 1), &Nxt
.sin6_addr
,
821 sizeof(Nxt
.sin6_addr
));
822 if ((dummy
= socket(AF_INET6
, SOCK_DGRAM
, 0)) < 0) {
826 if (connect(dummy
, (struct sockaddr
*)&Nxt
, Nxt
.sin6_len
) < 0) {
831 if (getsockname(dummy
, (struct sockaddr
*)&Src
, &len
) < 0) {
832 perror("getsockname");
835 if (getnameinfo((struct sockaddr
*)&Src
, Src
.sin6_len
,
836 src0
, sizeof(src0
), NULL
, 0, NI_NUMERICHOST
)) {
837 fprintf(stderr
, "getnameinfo failed for source\n");
844 Src
.sin6_port
= htons(0);
845 if (bind(sndsock
, (struct sockaddr
*)&Src
, Src
.sin6_len
) < 0) {
854 if (getsockname(sndsock
, (struct sockaddr
*)&Src
, &len
) < 0) {
855 perror("getsockname");
858 srcport
= ntohs(Src
.sin6_port
);
864 if (getnameinfo((struct sockaddr
*)&Dst
, Dst
.sin6_len
, hbuf
,
865 sizeof(hbuf
), NULL
, 0, NI_NUMERICHOST
))
866 strlcpy(hbuf
, "(invalid)", sizeof(hbuf
));
867 fprintf(stderr
, "traceroute6");
868 fprintf(stderr
, " to %s (%s)", hostname
, hbuf
);
870 fprintf(stderr
, " from %s", source
);
871 fprintf(stderr
, ", %lu hops max, %lu byte packets\n",
873 (void) fflush(stderr
);
876 printf("Skipping %lu intermediate hops\n", first_hop
- 1);
881 for (hops
= first_hop
; hops
<= max_hops
; ++hops
) {
882 struct in6_addr lastaddr
;
886 printf("%2lu ", hops
);
887 bzero(&lastaddr
, sizeof(lastaddr
));
888 for (probe
= 0; probe
< nprobes
; ++probe
) {
890 struct timeval t1
, t2
;
892 (void) gettimeofday(&t1
, NULL
);
893 send_probe(++seq
, hops
);
894 while ((cc
= wait_for_reply(rcvsock
, &rcvmhdr
))) {
895 (void) gettimeofday(&t2
, NULL
);
896 if ((i
= packet_ok(&rcvmhdr
, cc
, seq
))) {
897 if (!IN6_ARE_ADDR_EQUAL(&Rcv
.sin6_addr
,
900 fputs("\n ", stdout
);
902 lastaddr
= Rcv
.sin6_addr
;
904 printf(" %.3f ms", deltaT(&t1
, &t2
));
906 case ICMP6_DST_UNREACH_NOROUTE
:
910 case ICMP6_DST_UNREACH_ADMIN
:
914 case ICMP6_DST_UNREACH_NOTNEIGHBOR
:
918 case ICMP6_DST_UNREACH_ADDR
:
922 case ICMP6_DST_UNREACH_NOPORT
:
934 (void) fflush(stdout
);
938 (unreachable
> 0 && unreachable
>= ((nprobes
+ 1) / 2))) {
947 wait_for_reply(sock
, mhdr
)
952 struct pollfd pfd
[1];
956 pfd
[0].events
= POLLIN
;
959 if (poll(pfd
, 1, waittime
* 1000) > 0)
960 cc
= recvmsg(rcvsock
, mhdr
, 0);
968 fdsn
= howmany(sock
+ 1, NFDBITS
) * sizeof(fd_mask
);
969 if ((fdsp
= (fd_set
*)malloc(fdsn
)) == NULL
)
971 memset(fdsp
, 0, fdsn
);
973 wait
.tv_sec
= waittime
; wait
.tv_usec
= 0;
975 if (select(sock
+1, fdsp
, (fd_set
*)0, (fd_set
*)0, &wait
) > 0)
976 cc
= recvmsg(rcvsock
, mhdr
, 0);
984 #ifdef IPSEC_POLICY_IPSEC
986 setpolicy(so
, policy
)
992 buf
= ipsec_set_policy(policy
, strlen(policy
));
994 warnx("%s", ipsec_strerror());
997 (void)setsockopt(so
, IPPROTO_IPV6
, IPV6_IPSEC_POLICY
,
998 buf
, ipsec_get_policylen(buf
));
1008 send_probe(seq
, hops
)
1012 struct icmp6_hdr
*icp
;
1019 if (setsockopt(sndsock
, IPPROTO_IPV6
, IPV6_UNICAST_HOPS
,
1020 (char *)&i
, sizeof(i
)) < 0) {
1021 perror("setsockopt IPV6_UNICAST_HOPS");
1024 Dst
.sin6_port
= htons(port
+ seq
);
1025 (void) gettimeofday(&tv
, NULL
);
1026 tv32
.tv32_sec
= htonl(tv
.tv_sec
);
1027 tv32
.tv32_usec
= htonl(tv
.tv_usec
);
1030 case IPPROTO_ICMPV6
:
1031 icp
= (struct icmp6_hdr
*)outpacket
;
1033 icp
->icmp6_type
= ICMP6_ECHO_REQUEST
;
1034 icp
->icmp6_code
= 0;
1035 icp
->icmp6_cksum
= 0;
1036 icp
->icmp6_id
= ident
;
1037 icp
->icmp6_seq
= htons(seq
);
1038 bcopy(&tv32
, ((u_int8_t
*)outpacket
+ ICMP6ECHOLEN
),
1046 bcopy(&tv32
, &op
->tv
, sizeof tv32
);
1049 /* No space for anything. No harm as seq/tv32 are decorative. */
1052 fprintf(stderr
, "Unknown probe protocol %d.\n", useproto
);
1056 i
= sendto(sndsock
, (char *)outpacket
, datalen
, 0,
1057 (struct sockaddr
*)&Dst
, Dst
.sin6_len
);
1058 if (i
< 0 || i
!= datalen
) {
1061 printf("traceroute6: wrote %s %lu chars, ret=%d\n",
1062 hostname
, datalen
, i
);
1063 (void) fflush(stdout
);
1069 struct msghdr
*mhdr
;
1073 for (cm
= (struct cmsghdr
*)CMSG_FIRSTHDR(mhdr
); cm
;
1074 cm
= (struct cmsghdr
*)CMSG_NXTHDR(mhdr
, cm
)) {
1075 if (cm
->cmsg_level
== IPPROTO_IPV6
&&
1076 cm
->cmsg_type
== IPV6_HOPLIMIT
&&
1077 cm
->cmsg_len
== CMSG_LEN(sizeof(int)))
1078 return(*(int *)CMSG_DATA(cm
));
1086 struct timeval
*t1p
, *t2p
;
1090 dt
= (double)(t2p
->tv_sec
- t1p
->tv_sec
) * 1000.0 +
1091 (double)(t2p
->tv_usec
- t1p
->tv_usec
) / 1000.0;
1096 * Convert an ICMP "type" field to a printable string.
1102 u_char t
= t0
& 0xff;
1106 case ICMP6_DST_UNREACH
:
1107 cp
= "Destination Unreachable";
1109 case ICMP6_PACKET_TOO_BIG
:
1110 cp
= "Packet Too Big";
1112 case ICMP6_TIME_EXCEEDED
:
1113 cp
= "Time Exceeded";
1115 case ICMP6_PARAM_PROB
:
1116 cp
= "Parameter Problem";
1118 case ICMP6_ECHO_REQUEST
:
1119 cp
= "Echo Request";
1121 case ICMP6_ECHO_REPLY
:
1124 case ICMP6_MEMBERSHIP_QUERY
:
1125 cp
= "Group Membership Query";
1127 case ICMP6_MEMBERSHIP_REPORT
:
1128 cp
= "Group Membership Report";
1130 case ICMP6_MEMBERSHIP_REDUCTION
:
1131 cp
= "Group Membership Reduction";
1133 case ND_ROUTER_SOLICIT
:
1134 cp
= "Router Solicitation";
1136 case ND_ROUTER_ADVERT
:
1137 cp
= "Router Advertisement";
1139 case ND_NEIGHBOR_SOLICIT
:
1140 cp
= "Neighbor Solicitation";
1142 case ND_NEIGHBOR_ADVERT
:
1143 cp
= "Neighbor Advertisement";
1156 packet_ok(mhdr
, cc
, seq
)
1157 struct msghdr
*mhdr
;
1161 struct icmp6_hdr
*icp
;
1162 struct sockaddr_in6
*from
= (struct sockaddr_in6
*)mhdr
->msg_name
;
1164 char *buf
= (char *)mhdr
->msg_iov
[0].iov_base
;
1167 char hbuf
[NI_MAXHOST
];
1175 ip
= (struct ip6_hdr
*) buf
;
1176 hlen
= sizeof(struct ip6_hdr
);
1177 if (cc
< hlen
+ sizeof(struct icmp6_hdr
)) {
1179 if (getnameinfo((struct sockaddr
*)from
, from
->sin6_len
,
1180 hbuf
, sizeof(hbuf
), NULL
, 0, NI_NUMERICHOST
) != 0)
1181 strlcpy(hbuf
, "invalid", sizeof(hbuf
));
1182 printf("packet too short (%d bytes) from %s\n", cc
,
1188 icp
= (struct icmp6_hdr
*)(buf
+ hlen
);
1190 if (cc
< sizeof(struct icmp6_hdr
)) {
1192 if (getnameinfo((struct sockaddr
*)from
, from
->sin6_len
,
1193 hbuf
, sizeof(hbuf
), NULL
, 0, NI_NUMERICHOST
) != 0)
1194 strlcpy(hbuf
, "invalid", sizeof(hbuf
));
1195 printf("data too short (%d bytes) from %s\n", cc
, hbuf
);
1199 icp
= (struct icmp6_hdr
*)buf
;
1201 /* get optional information via advanced API */
1204 for (cm
= (struct cmsghdr
*)CMSG_FIRSTHDR(mhdr
); cm
;
1205 cm
= (struct cmsghdr
*)CMSG_NXTHDR(mhdr
, cm
)) {
1206 if (cm
->cmsg_level
== IPPROTO_IPV6
&&
1207 cm
->cmsg_type
== IPV6_PKTINFO
&&
1209 CMSG_LEN(sizeof(struct in6_pktinfo
)))
1210 rcvpktinfo
= (struct in6_pktinfo
*)(CMSG_DATA(cm
));
1212 if (cm
->cmsg_level
== IPPROTO_IPV6
&&
1213 cm
->cmsg_type
== IPV6_HOPLIMIT
&&
1214 cm
->cmsg_len
== CMSG_LEN(sizeof(int)))
1215 hlimp
= (int *)CMSG_DATA(cm
);
1217 if (rcvpktinfo
== NULL
|| hlimp
== NULL
) {
1218 warnx("failed to get received hop limit or packet info");
1222 rcvhlim
= 0; /*XXX*/
1228 type
= icp
->icmp6_type
;
1229 code
= icp
->icmp6_code
;
1230 if ((type
== ICMP6_TIME_EXCEEDED
&& code
== ICMP6_TIME_EXCEED_TRANSIT
)
1231 || type
== ICMP6_DST_UNREACH
) {
1232 struct ip6_hdr
*hip
;
1235 hip
= (struct ip6_hdr
*)(icp
+ 1);
1236 if ((up
= get_uphdr(hip
, (u_char
*)(buf
+ cc
))) == NULL
) {
1238 warnx("failed to get upper layer header");
1242 case IPPROTO_ICMPV6
:
1243 if (((struct icmp6_hdr
*)up
)->icmp6_id
== ident
&&
1244 ((struct icmp6_hdr
*)up
)->icmp6_seq
== htons(seq
))
1245 return (type
== ICMP6_TIME_EXCEEDED
?
1249 if (((struct udphdr
*)up
)->uh_sport
== htons(srcport
) &&
1250 ((struct udphdr
*)up
)->uh_dport
== htons(port
+ seq
))
1251 return (type
== ICMP6_TIME_EXCEEDED
?
1255 return (type
== ICMP6_TIME_EXCEEDED
? -1 : code
+ 1);
1257 fprintf(stderr
, "Unknown probe proto %d.\n", useproto
);
1260 } else if (useproto
== IPPROTO_ICMPV6
&& type
== ICMP6_ECHO_REPLY
) {
1261 if (icp
->icmp6_id
== ident
&&
1262 icp
->icmp6_seq
== htons(seq
))
1263 return (ICMP6_DST_UNREACH_NOPORT
+ 1);
1266 char sbuf
[NI_MAXHOST
+1], dbuf
[INET6_ADDRSTRLEN
];
1270 if (getnameinfo((struct sockaddr
*)from
, from
->sin6_len
,
1271 sbuf
, sizeof(sbuf
), NULL
, 0, NI_NUMERICHOST
) != 0)
1272 strlcpy(sbuf
, "invalid", sizeof(sbuf
));
1273 printf("\n%d bytes from %s to %s", cc
, sbuf
,
1274 rcvpktinfo
? inet_ntop(AF_INET6
, &rcvpktinfo
->ipi6_addr
,
1275 dbuf
, sizeof(dbuf
)) : "?");
1276 printf(": icmp type %d (%s) code %d\n", type
, pr_type(type
),
1278 p
= (u_int8_t
*)(icp
+ 1);
1280 for (i
= 0; i
< cc
; i
++) {
1285 printf("%02x", p
[i
]);
1286 if (i
% WIDTH
== WIDTH
- 1)
1289 if (cc
% WIDTH
!= 0)
1296 * Increment pointer until find the UDP or ICMP header.
1300 struct ip6_hdr
*ip6
;
1303 u_char
*cp
= (u_char
*)ip6
, nh
;
1305 static u_char none_hdr
[1]; /* Fake pointer for IPPROTO_NONE. */
1307 if (cp
+ sizeof(*ip6
) > lim
)
1311 cp
+= sizeof(struct ip6_hdr
);
1313 while (lim
- cp
>= (nh
== IPPROTO_NONE
? 0 : 8)) {
1318 case IPPROTO_ICMPV6
:
1319 return(useproto
== nh
? cp
: NULL
);
1321 return(useproto
== nh
? cp
: NULL
);
1323 return(useproto
== nh
? none_hdr
: NULL
);
1324 case IPPROTO_FRAGMENT
:
1325 hlen
= sizeof(struct ip6_frag
);
1326 nh
= ((struct ip6_frag
*)cp
)->ip6f_nxt
;
1329 hlen
= (((struct ip6_ext
*)cp
)->ip6e_len
+ 2) << 2;
1330 nh
= ((struct ip6_ext
*)cp
)->ip6e_nxt
;
1333 hlen
= (((struct ip6_ext
*)cp
)->ip6e_len
+ 1) << 3;
1334 nh
= ((struct ip6_ext
*)cp
)->ip6e_nxt
;
1346 struct msghdr
*mhdr
;
1349 struct sockaddr_in6
*from
= (struct sockaddr_in6
*)mhdr
->msg_name
;
1350 char hbuf
[NI_MAXHOST
];
1352 if (getnameinfo((struct sockaddr
*)from
, from
->sin6_len
,
1353 hbuf
, sizeof(hbuf
), NULL
, 0, NI_NUMERICHOST
) != 0)
1354 strlcpy(hbuf
, "invalid", sizeof(hbuf
));
1356 printf(" %s", hbuf
);
1358 printf(" %s (%s)", inetname((struct sockaddr
*)from
), hbuf
);
1360 printf(" %s", inetname((struct sockaddr
*)from
));
1364 printf(" %d bytes to %s", cc
,
1365 rcvpktinfo
? inet_ntop(AF_INET6
, &rcvpktinfo
->ipi6_addr
,
1366 hbuf
, sizeof(hbuf
)) : "?");
1368 printf(" %d bytes of data to %s", cc
,
1369 rcvpktinfo
? inet_ntop(AF_INET6
, &rcvpktinfo
->ipi6_addr
,
1370 hbuf
, sizeof(hbuf
)) : "?");
1376 * Construct an Internet address representation.
1377 * If the nflag has been supplied, give
1378 * numeric value, otherwise try for symbolic name.
1382 struct sockaddr
*sa
;
1384 static char line
[NI_MAXHOST
], domain
[MAXHOSTNAMELEN
+ 1];
1385 static int first
= 1;
1388 if (first
&& !nflag
) {
1390 if (gethostname(domain
, sizeof(domain
)) == 0 &&
1391 (cp
= strchr(domain
, '.')))
1392 (void) memmove(domain
, cp
+ 1, strlen(cp
+ 1) + 1);
1398 if (getnameinfo(sa
, sa
->sa_len
, line
, sizeof(line
), NULL
, 0,
1399 NI_NAMEREQD
) == 0) {
1400 if ((cp
= strchr(line
, '.')) &&
1401 !strcmp(cp
+ 1, domain
))
1409 if (getnameinfo(sa
, sa
->sa_len
, line
, sizeof(line
), NULL
, 0,
1410 NI_NUMERICHOST
) != 0)
1411 strlcpy(line
, "invalid", sizeof(line
));
1420 "usage: traceroute6 [-dIlnNrUv] [-f firsthop] [-g gateway] [-m hoplimit]\n"
1421 " [-p port] [-q probes] [-s src] [-w waittime] target [datalen]\n");