1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196#define TRACEROUTE_SO_DEBUG 0
197
198
199
200
201
202
203
204
205
206
207
208#include <net/if.h>
209#include <arpa/inet.h>
210#include <netinet/in.h>
211#include <netinet/udp.h>
212#include <netinet/ip.h>
213#include <netinet/ip_icmp.h>
214
215#include "libbb.h"
216#include "inet_common.h"
217
218
219
220
221
222
223#define IPVERSION 4
224
225#ifndef IPPROTO_ICMP
226
227#define IPPROTO_ICMP 1
228#endif
229#ifndef IPPROTO_IP
230#define IPPROTO_IP 0
231#endif
232
233
234
235
236struct ipovly {
237 unsigned char ih_x1[9];
238 unsigned char ih_pr;
239 short ih_len;
240 struct in_addr ih_src;
241 struct in_addr ih_dst;
242};
243
244
245
246
247struct udpiphdr {
248 struct ipovly ui_i;
249 struct udphdr ui_u;
250};
251#define ui_next ui_i.ih_next
252#define ui_prev ui_i.ih_prev
253#define ui_x1 ui_i.ih_x1
254#define ui_pr ui_i.ih_pr
255#define ui_len ui_i.ih_len
256#define ui_src ui_i.ih_src
257#define ui_dst ui_i.ih_dst
258#define ui_sport ui_u.uh_sport
259#define ui_dport ui_u.uh_dport
260#define ui_ulen ui_u.uh_ulen
261#define ui_sum ui_u.uh_sum
262
263
264
265struct hostinfo {
266 char *name;
267 int n;
268 uint32_t *addrs;
269};
270
271
272typedef struct outdata {
273 unsigned char seq;
274 unsigned char ttl;
275
276 struct timeval tv_UNUSED PACKED;
277} outdata_t;
278
279struct IFADDRLIST {
280 uint32_t addr;
281 char device[sizeof(struct ifreq)];
282};
283
284
285
286#define OPT_DONT_FRAGMNT (1<<0)
287#define OPT_USE_ICMP (1<<1)
288#define OPT_TTL_FLAG (1<<2)
289#define OPT_ADDR_NUM (1<<3)
290#define OPT_BYPASS_ROUTE (1<<4)
291#define OPT_DEBUG (1<<5)
292#define OPT_VERBOSE (1<<6)
293#define OPT_IP_CHKSUM (1<<7)
294#define OPT_TOS (1<<8)
295#define OPT_DEVICE (1<<9)
296#define OPT_MAX_TTL (1<<10)
297#define OPT_PORT (1<<11)
298#define OPT_NPROBES (1<<12)
299#define OPT_SOURCE (1<<13)
300#define OPT_WAITTIME (1<<14)
301#define OPT_PAUSE_MS (1<<15)
302#define OPT_FIRST_TTL (1<<16)
303
304#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
305
306#define useicmp (option_mask32 & OPT_USE_ICMP)
307#endif
308#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
309#define verbose (option_mask32 & OPT_VERBOSE)
310#endif
311#define nflag (option_mask32 & OPT_ADDR_NUM)
312
313
314struct globals {
315 struct ip *outip;
316 struct udphdr *outudp;
317 struct outdata *outdata;
318
319#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
320 struct icmp *outicmp;
321#endif
322
323 int rcvsock;
324 int sndsock;
325
326 int packlen;
327 int minpacket;
328 int maxpacket;
329 int pmtu;
330
331 char *hostname;
332
333 uint16_t ident;
334 uint16_t port;
335
336 int waittime;
337 int doipcksum;
338
339#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
340 int optlen;
341#else
342#define optlen 0
343#endif
344
345 struct sockaddr_storage whereto;
346 struct sockaddr_storage wherefrom;
347
348 unsigned char packet[512];
349#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
350
351#define NGATEWAYS ((int)((MAX_IPOPTLEN - IPOPT_MINOFF - 1) / sizeof(uint32_t)))
352
353 uint32_t gwlist[NGATEWAYS + 1];
354#endif
355};
356
357#define G (*ptr_to_globals)
358#define outip (G.outip )
359#define outudp (G.outudp )
360#define outdata (G.outdata )
361#define outicmp (G.outicmp )
362#define rcvsock (G.rcvsock )
363#define sndsock (G.sndsock )
364#define packlen (G.packlen )
365#define minpacket (G.minpacket)
366#define maxpacket (G.maxpacket)
367#define pmtu (G.pmtu )
368#define hostname (G.hostname )
369#define ident (G.ident )
370#define port (G.port )
371#define waittime (G.waittime )
372#define doipcksum (G.doipcksum)
373#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
374#define optlen (G.optlen )
375#endif
376#define packet (G.packet )
377#define whereto (G.whereto )
378#define wherefrom (G.wherefrom)
379#define gwlist (G.gwlist )
380#define INIT_G() do { \
381 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
382 maxpacket = 32 * 1024; \
383 port = 32768 + 666; \
384 waittime = 5; \
385 doipcksum = 1; \
386} while (0)
387
388
389
390
391
392static int
393ifaddrlist(struct IFADDRLIST **ipaddrp)
394{
395 enum { IFREQ_BUFSIZE = (32 * 1024) / sizeof(struct ifreq) };
396
397 int fd, nipaddr;
398#ifdef HAVE_SOCKADDR_SA_LEN
399 int n;
400#endif
401 struct ifreq *ifrp, *ifend, *ifnext;
402 struct sockaddr_in *addr_sin;
403 struct IFADDRLIST *al;
404 struct ifconf ifc;
405 struct ifreq ifr;
406
407 struct ifreq *ibuf = xmalloc(IFREQ_BUFSIZE * sizeof(ibuf[0]));
408 struct IFADDRLIST *st_ifaddrlist;
409
410 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
411
412 ifc.ifc_len = IFREQ_BUFSIZE * sizeof(ibuf[0]);
413 ifc.ifc_buf = (caddr_t)ibuf;
414
415 if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) < 0
416 || ifc.ifc_len < (int)sizeof(struct ifreq)
417 ) {
418 if (errno == EINVAL)
419 bb_error_msg_and_die(
420 "SIOCGIFCONF: ifreq struct too small (%u bytes)",
421 (unsigned)(IFREQ_BUFSIZE * sizeof(ibuf[0])));
422 bb_perror_msg_and_die("SIOCGIFCONF");
423 }
424 ifrp = ibuf;
425 ifend = (struct ifreq *)((char *)ibuf + ifc.ifc_len);
426
427 nipaddr = 1 + (ifc.ifc_len / sizeof(struct ifreq));
428 st_ifaddrlist = xzalloc(nipaddr * sizeof(struct IFADDRLIST));
429 al = st_ifaddrlist;
430 nipaddr = 0;
431
432 for (; ifrp < ifend; ifrp = ifnext) {
433#ifdef HAVE_SOCKADDR_SA_LEN
434 n = ifrp->ifr_addr.sa_len + sizeof(ifrp->ifr_name);
435 if (n < sizeof(*ifrp))
436 ifnext = ifrp + 1;
437 else
438 ifnext = (struct ifreq *)((char *)ifrp + n);
439 if (ifrp->ifr_addr.sa_family != AF_INET)
440 continue;
441#else
442 ifnext = ifrp + 1;
443#endif
444
445
446
447
448
449
450 strncpy(ifr.ifr_name, ifrp->ifr_name, sizeof(ifr.ifr_name));
451 if (ioctl(fd, SIOCGIFFLAGS, (char *)&ifr) < 0) {
452 if (errno == ENXIO)
453 continue;
454 bb_perror_msg_and_die("SIOCGIFFLAGS: %.*s",
455 (int)sizeof(ifr.ifr_name), ifr.ifr_name);
456 }
457
458
459 if ((ifr.ifr_flags & IFF_UP) == 0)
460 continue;
461
462 safe_strncpy(al->device, ifr.ifr_name, sizeof(ifr.ifr_name) + 1);
463#ifdef sun
464
465 if (strchr(al->device, ':') != NULL)
466 continue;
467#endif
468 ioctl_or_perror_and_die(fd, SIOCGIFADDR, (char *)&ifr,
469 "SIOCGIFADDR: %s", al->device);
470
471 addr_sin = (struct sockaddr_in *)&ifr.ifr_addr;
472 al->addr = addr_sin->sin_addr.s_addr;
473 ++al;
474 ++nipaddr;
475 }
476 if (nipaddr == 0)
477 bb_error_msg_and_die("can't find any network interfaces");
478
479 free(ibuf);
480 close(fd);
481 *ipaddrp = st_ifaddrlist;
482 return nipaddr;
483}
484
485
486static void
487setsin(struct sockaddr_in *addr_sin, uint32_t addr)
488{
489 memset(addr_sin, 0, sizeof(*addr_sin));
490#ifdef HAVE_SOCKADDR_SA_LEN
491 addr_sin->sin_len = sizeof(*addr_sin);
492#endif
493 addr_sin->sin_family = AF_INET;
494 addr_sin->sin_addr.s_addr = addr;
495}
496
497
498
499
500
501static void
502findsaddr(const struct sockaddr_in *to, struct sockaddr_in *from)
503{
504 int i, n;
505 FILE *f;
506 uint32_t mask;
507 uint32_t dest, tmask;
508 struct IFADDRLIST *al;
509 char buf[256], tdevice[256], device[256];
510
511 f = xfopen_for_read("/proc/net/route");
512
513
514 n = 0;
515 mask = 0;
516 device[0] = '\0';
517 while (fgets(buf, sizeof(buf), f) != NULL) {
518 ++n;
519 if (n == 1 && strncmp(buf, "Iface", 5) == 0)
520 continue;
521 i = sscanf(buf, "%255s %x %*s %*s %*s %*s %*s %x",
522 tdevice, &dest, &tmask);
523 if (i != 3)
524 bb_error_msg_and_die("junk in buffer");
525 if ((to->sin_addr.s_addr & tmask) == dest
526 && (tmask > mask || mask == 0)
527 ) {
528 mask = tmask;
529 strcpy(device, tdevice);
530 }
531 }
532 fclose(f);
533
534 if (device[0] == '\0')
535 bb_error_msg_and_die("can't find interface");
536
537
538 n = ifaddrlist(&al);
539
540
541 for (i = n; i > 0; --i, ++al)
542 if (strcmp(device, al->device) == 0)
543 break;
544 if (i <= 0)
545 bb_error_msg_and_die("can't find interface %s", device);
546
547 setsin(from, al->addr);
548}
549
550
551
552
553
554
555
556
557static int
558wait_for_reply(int sock, struct sockaddr_in *fromp)
559{
560 struct pollfd pfd[1];
561 int cc = 0;
562 socklen_t fromlen = sizeof(*fromp);
563
564 pfd[0].fd = sock;
565 pfd[0].events = POLLIN;
566 if (safe_poll(pfd, 1, waittime * 1000) > 0)
567 cc = recvfrom(sock, packet, sizeof(packet), 0,
568 (struct sockaddr *)fromp, &fromlen);
569 return cc;
570}
571
572
573
574
575static uint16_t
576in_cksum(uint16_t *addr, int len)
577{
578 int nleft = len;
579 uint16_t *w = addr;
580 uint16_t answer;
581 int sum = 0;
582
583
584
585
586
587
588
589 while (nleft > 1) {
590 sum += *w++;
591 nleft -= 2;
592 }
593
594
595 if (nleft == 1)
596 sum += *(unsigned char *)w;
597
598
599
600
601 sum = (sum >> 16) + (sum & 0xffff);
602 sum += (sum >> 16);
603 answer = ~sum;
604 return answer;
605}
606
607
608static void
609send_probe(int seq, int ttl)
610{
611 int cc;
612 struct udpiphdr *ui, *oui;
613 struct ip tip;
614
615 outip->ip_ttl = ttl;
616 outip->ip_id = htons(ident + seq);
617
618
619
620
621
622
623 if (doipcksum) {
624 outip->ip_sum =
625 in_cksum((uint16_t *)outip, sizeof(*outip) + optlen);
626 if (outip->ip_sum == 0)
627 outip->ip_sum = 0xffff;
628 }
629
630
631 outdata->seq = seq;
632 outdata->ttl = ttl;
633
634
635
636#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
637 if (useicmp)
638 outicmp->icmp_seq = htons(seq);
639 else
640#endif
641 outudp->dest = htons(port + seq);
642
643#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
644 if (useicmp) {
645
646 outicmp->icmp_cksum = 0;
647 outicmp->icmp_cksum = in_cksum((uint16_t *)outicmp,
648 packlen - (sizeof(*outip) + optlen));
649 if (outicmp->icmp_cksum == 0)
650 outicmp->icmp_cksum = 0xffff;
651 } else
652#endif
653 if (doipcksum) {
654
655 tip = *outip;
656 ui = (struct udpiphdr *)outip;
657 oui = (struct udpiphdr *)&tip;
658
659 memset((char *)ui, 0, sizeof(ui->ui_i));
660 ui->ui_src = oui->ui_src;
661 ui->ui_dst = oui->ui_dst;
662 ui->ui_pr = oui->ui_pr;
663 ui->ui_len = outudp->len;
664 outudp->check = 0;
665 outudp->check = in_cksum((uint16_t *)ui, packlen);
666 if (outudp->check == 0)
667 outudp->check = 0xffff;
668 *outip = tip;
669 }
670
671#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
672
673 if (verbose > 1) {
674 const uint16_t *sp;
675 int nshorts, i;
676
677 sp = (uint16_t *)outip;
678 nshorts = (unsigned)packlen / sizeof(uint16_t);
679 i = 0;
680 printf("[ %d bytes", packlen);
681 while (--nshorts >= 0) {
682 if ((i++ % 8) == 0)
683 printf("\n\t");
684 printf(" %04x", ntohs(*sp));
685 sp++;
686 }
687 if (packlen & 1) {
688 if ((i % 8) == 0)
689 printf("\n\t");
690 printf(" %02x", *(unsigned char *)sp);
691 }
692 printf("]\n");
693 }
694#endif
695
696#if !defined(IP_HDRINCL) && defined(IP_TTL)
697 if (setsockopt(sndsock, IPPROTO_IP, IP_TTL,
698 (char *)&ttl, sizeof(ttl)) < 0) {
699 bb_perror_msg_and_die("setsockopt ttl %d", ttl);
700 }
701#endif
702
703 cc = xsendto(sndsock, (char *)outip,
704 packlen, (struct sockaddr *)&whereto, sizeof(whereto));
705 if (cc != packlen) {
706 bb_info_msg("wrote %s %d chars, ret=%d", hostname, packlen, cc);
707 }
708}
709
710#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
711
712
713
714static inline const char *
715pr_type(unsigned char t)
716{
717 static const char *const ttab[] = {
718 "Echo Reply", "ICMP 1", "ICMP 2", "Dest Unreachable",
719 "Source Quench", "Redirect", "ICMP 6", "ICMP 7",
720 "Echo", "Router Advert", "Router Solicit", "Time Exceeded",
721 "Param Problem", "Timestamp", "Timestamp Reply", "Info Request",
722 "Info Reply", "Mask Request", "Mask Reply"
723 };
724
725 if (t > 18)
726 return "OUT-OF-RANGE";
727
728 return ttab[t];
729}
730#endif
731
732#if !ENABLE_FEATURE_TRACEROUTE_VERBOSE
733#define packet_ok(buf, cc, from, seq) \
734 packet_ok(buf, cc, seq)
735#endif
736static int
737packet_ok(unsigned char *buf, int cc, struct sockaddr_in *from, int seq)
738{
739 struct icmp *icp;
740 unsigned char type, code;
741 int hlen;
742 struct ip *ip;
743
744 ip = (struct ip *) buf;
745 hlen = ip->ip_hl << 2;
746 if (cc < hlen + ICMP_MINLEN) {
747#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
748 if (verbose)
749 printf("packet too short (%d bytes) from %s\n", cc,
750 inet_ntoa(from->sin_addr));
751#endif
752 return 0;
753 }
754 cc -= hlen;
755 icp = (struct icmp *)(buf + hlen);
756 type = icp->icmp_type;
757 code = icp->icmp_code;
758
759 if (code != ICMP_UNREACH_NEEDFRAG)
760 pmtu = 0;
761 else {
762 pmtu = ntohs(icp->icmp_nextmtu);
763 }
764 if ((type == ICMP_TIMXCEED && code == ICMP_TIMXCEED_INTRANS) ||
765 type == ICMP_UNREACH || type == ICMP_ECHOREPLY) {
766 struct ip *hip;
767 struct udphdr *up;
768
769 hip = &icp->icmp_ip;
770 hlen = hip->ip_hl << 2;
771#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
772 if (useicmp) {
773 struct icmp *hicmp;
774
775
776 if (type == ICMP_ECHOREPLY &&
777 icp->icmp_id == htons(ident) &&
778 icp->icmp_seq == htons(seq))
779 return -2;
780
781 hicmp = (struct icmp *)((unsigned char *)hip + hlen);
782
783 if (hlen + 8 <= cc &&
784 hip->ip_p == IPPROTO_ICMP &&
785 hicmp->icmp_id == htons(ident) &&
786 hicmp->icmp_seq == htons(seq))
787 return (type == ICMP_TIMXCEED ? -1 : code + 1);
788 } else
789#endif
790 {
791 up = (struct udphdr *)((unsigned char *)hip + hlen);
792
793 if (hlen + 12 <= cc &&
794 hip->ip_p == IPPROTO_UDP &&
795 up->source == htons(ident) &&
796 up->dest == htons(port + seq))
797 return (type == ICMP_TIMXCEED ? -1 : code + 1);
798 }
799 }
800#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
801 if (verbose) {
802 int i;
803 uint32_t *lp = (uint32_t *)&icp->icmp_ip;
804
805 printf("\n%d bytes from %s to "
806 "%s: icmp type %d (%s) code %d\n",
807 cc, inet_ntoa(from->sin_addr),
808 inet_ntoa(ip->ip_dst), type, pr_type(type), icp->icmp_code);
809 for (i = 4; i < cc; i += sizeof(*lp))
810 printf("%2d: x%8.8x\n", i, *lp++);
811 }
812#endif
813 return 0;
814}
815
816
817
818
819
820
821
822static void
823print_inetname(struct sockaddr_in *from)
824{
825 const char *ina;
826
827 ina = inet_ntoa(from->sin_addr);
828 if (nflag)
829 printf(" %s", ina);
830 else {
831 char *n = NULL;
832 if (from->sin_addr.s_addr != INADDR_ANY)
833 n = xmalloc_sockaddr2host_noport((struct sockaddr*)from);
834 printf(" %s (%s)", (n ? n : ina), ina);
835 free(n);
836 }
837}
838
839static void
840print(unsigned char *buf, int cc, struct sockaddr_in *from)
841{
842 struct ip *ip;
843 int hlen;
844
845 ip = (struct ip *) buf;
846 hlen = ip->ip_hl << 2;
847 cc -= hlen;
848
849 print_inetname(from);
850#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
851 if (verbose)
852 printf(" %d bytes to %s", cc, inet_ntoa(ip->ip_dst));
853#endif
854}
855
856
857static struct hostinfo *
858gethostinfo(const char *host)
859{
860 int n;
861 struct hostent *hp;
862 struct hostinfo *hi;
863 char **p;
864 uint32_t addr, *ap;
865
866 hi = xzalloc(sizeof(*hi));
867 addr = inet_addr(host);
868 if (addr != 0xffffffff) {
869 hi->name = xstrdup(host);
870 hi->n = 1;
871 hi->addrs = xzalloc(sizeof(hi->addrs[0]));
872 hi->addrs[0] = addr;
873 return hi;
874 }
875
876 hp = xgethostbyname(host);
877 if (hp->h_addrtype != AF_INET || hp->h_length != 4)
878 bb_perror_msg_and_die("bad host %s", host);
879 hi->name = xstrdup(hp->h_name);
880 for (n = 0, p = hp->h_addr_list; *p != NULL; ++n, ++p)
881 continue;
882 hi->n = n;
883 hi->addrs = xzalloc(n * sizeof(hi->addrs[0]));
884 for (ap = hi->addrs, p = hp->h_addr_list; *p != NULL; ++ap, ++p)
885 memcpy(ap, *p, sizeof(*ap));
886 return hi;
887}
888
889static void
890freehostinfo(struct hostinfo *hi)
891{
892 free(hi->name);
893 free(hi->addrs);
894 free(hi);
895}
896
897#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
898static void
899getaddr(uint32_t *ap, const char *host)
900{
901 struct hostinfo *hi;
902
903 hi = gethostinfo(host);
904 *ap = hi->addrs[0];
905 freehostinfo(hi);
906}
907#endif
908
909static void
910print_delta_ms(unsigned t1p, unsigned t2p)
911{
912 unsigned tt = t2p - t1p;
913 printf(" %u.%03u ms", tt/1000, tt%1000);
914}
915
916int traceroute_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
917int traceroute_main(int argc, char **argv)
918{
919 int code, n;
920 unsigned char *outp;
921 uint32_t *ap;
922 struct sockaddr_in *from;
923 struct sockaddr_in *to;
924 struct hostinfo *hi;
925 int ttl, probe, i;
926 int seq = 0;
927 int tos = 0;
928 char *tos_str;
929 char *source;
930 unsigned op;
931#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
932 int lsrr = 0;
933#endif
934 uint16_t off = 0;
935 struct IFADDRLIST *al;
936 char *device;
937 int max_ttl = 30;
938 char *max_ttl_str;
939 char *port_str;
940 int nprobes = 3;
941 char *nprobes_str;
942 char *waittime_str;
943 unsigned pausemsecs = 0;
944 char *pausemsecs_str;
945 int first_ttl = 1;
946 char *first_ttl_str;
947#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
948 llist_t *source_route_list = NULL;
949#endif
950
951 INIT_G();
952 from = (struct sockaddr_in *)&wherefrom;
953 to = (struct sockaddr_in *)&whereto;
954
955
956#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
957 opt_complementary = "x-x:g::";
958#else
959 opt_complementary = "x-x";
960#endif
961
962 op = getopt32(argv, "FIlnrdvxt:i:m:p:q:s:w:z:f:"
963#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
964 "g:"
965#endif
966 , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str
967 , &source, &waittime_str, &pausemsecs_str, &first_ttl_str
968#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
969 , &source_route_list
970#endif
971 );
972
973 if (op & OPT_DONT_FRAGMNT)
974 off = IP_DF;
975 if (op & OPT_IP_CHKSUM) {
976 doipcksum = 0;
977 bb_error_msg("warning: ip checksums disabled");
978 }
979 if (op & OPT_TOS)
980 tos = xatou_range(tos_str, 0, 255);
981 if (op & OPT_MAX_TTL)
982 max_ttl = xatou_range(max_ttl_str, 1, 255);
983 if (op & OPT_PORT)
984 port = xatou16(port_str);
985 if (op & OPT_NPROBES)
986 nprobes = xatou_range(nprobes_str, 1, INT_MAX);
987 if (op & OPT_SOURCE) {
988
989
990
991
992 if (getuid())
993 bb_error_msg_and_die("-s %s: permission denied", source);
994 }
995 if (op & OPT_WAITTIME)
996 waittime = xatou_range(waittime_str, 2, 24 * 60 * 60);
997 if (op & OPT_PAUSE_MS)
998 pausemsecs = xatou_range(pausemsecs_str, 0, 60 * 60 * 1000);
999 if (op & OPT_FIRST_TTL)
1000 first_ttl = xatou_range(first_ttl_str, 1, 255);
1001
1002#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
1003 if (source_route_list) {
1004 while (source_route_list) {
1005 if (lsrr >= NGATEWAYS)
1006 bb_error_msg_and_die("no more than %d gateways", NGATEWAYS);
1007 getaddr(gwlist + lsrr, llist_pop(&source_route_list));
1008 ++lsrr;
1009 }
1010 optlen = (lsrr + 1) * sizeof(gwlist[0]);
1011 }
1012#endif
1013
1014 if (first_ttl > max_ttl) {
1015 bb_error_msg_and_die(
1016 "first ttl (%d) may not be greater than max ttl (%d)",
1017 first_ttl, max_ttl);
1018 }
1019
1020 minpacket = sizeof(*outip) + sizeof(*outdata) + optlen;
1021
1022#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
1023 if (useicmp)
1024 minpacket += 8;
1025 else
1026#endif
1027 minpacket += sizeof(*outudp);
1028 packlen = minpacket;
1029
1030
1031 switch (argc - optind) {
1032
1033 case 2:
1034 packlen = xatoul_range(argv[optind + 1], minpacket, maxpacket);
1035
1036
1037 case 1:
1038 hostname = argv[optind];
1039 hi = gethostinfo(hostname);
1040 setsin(to, hi->addrs[0]);
1041 if (hi->n > 1)
1042 bb_error_msg("warning: %s has multiple addresses; using %s",
1043 hostname, inet_ntoa(to->sin_addr));
1044 hostname = hi->name;
1045 hi->name = NULL;
1046 freehostinfo(hi);
1047 break;
1048
1049 default:
1050 bb_show_usage();
1051 }
1052
1053
1054 bb_sanitize_stdio();
1055
1056 rcvsock = xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
1057
1058#if TRACEROUTE_SO_DEBUG
1059 if (op & OPT_DEBUG)
1060 setsockopt(rcvsock, SOL_SOCKET, SO_DEBUG,
1061 &const_int_1, sizeof(const_int_1));
1062#endif
1063 if (op & OPT_BYPASS_ROUTE)
1064 setsockopt(rcvsock, SOL_SOCKET, SO_DONTROUTE,
1065 &const_int_1, sizeof(const_int_1));
1066
1067 sndsock = xsocket(AF_INET, SOCK_RAW, IPPROTO_RAW);
1068
1069#if ENABLE_FEATURE_TRACEROUTE_SOURCE_ROUTE
1070#if defined(IP_OPTIONS)
1071 if (lsrr > 0) {
1072 unsigned char optlist[MAX_IPOPTLEN];
1073
1074
1075 gwlist[lsrr] = to->sin_addr.s_addr;
1076 ++lsrr;
1077
1078
1079 optlist[0] = IPOPT_NOP;
1080
1081 optlist[1] = IPOPT_LSRR;
1082 i = lsrr * sizeof(gwlist[0]);
1083 optlist[2] = i + 3;
1084
1085 optlist[3] = IPOPT_MINOFF;
1086 memcpy(optlist + 4, gwlist, i);
1087
1088 if ((setsockopt(sndsock, IPPROTO_IP, IP_OPTIONS,
1089 (char *)optlist, i + sizeof(gwlist[0]))) < 0) {
1090 bb_perror_msg_and_die("IP_OPTIONS");
1091 }
1092 }
1093#endif
1094#endif
1095
1096#ifdef SO_SNDBUF
1097 if (setsockopt(sndsock, SOL_SOCKET, SO_SNDBUF, &packlen, sizeof(packlen)) < 0) {
1098 bb_perror_msg_and_die("SO_SNDBUF");
1099 }
1100#endif
1101#ifdef IP_HDRINCL
1102 if (setsockopt(sndsock, IPPROTO_IP, IP_HDRINCL, &const_int_1, sizeof(const_int_1)) < 0
1103 && errno != ENOPROTOOPT
1104 ) {
1105 bb_perror_msg_and_die("IP_HDRINCL");
1106 }
1107#else
1108#ifdef IP_TOS
1109 if (tos_str && setsockopt(sndsock, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0) {
1110 bb_perror_msg_and_die("setsockopt tos %d", tos);
1111 }
1112#endif
1113#endif
1114#if TRACEROUTE_SO_DEBUG
1115 if (op & OPT_DEBUG)
1116 setsockopt(sndsock, SOL_SOCKET, SO_DEBUG,
1117 &const_int_1, sizeof(const_int_1));
1118#endif
1119 if (op & OPT_BYPASS_ROUTE)
1120 setsockopt(sndsock, SOL_SOCKET, SO_DONTROUTE,
1121 &const_int_1, sizeof(const_int_1));
1122
1123
1124 xsetgid(getgid());
1125 xsetuid(getuid());
1126
1127 outip = xzalloc(packlen);
1128
1129 outip->ip_v = IPVERSION;
1130 if (tos_str)
1131 outip->ip_tos = tos;
1132 outip->ip_len = htons(packlen);
1133 outip->ip_off = htons(off);
1134 outp = (unsigned char *)(outip + 1);
1135 outip->ip_dst = to->sin_addr;
1136
1137 outip->ip_hl = (outp - (unsigned char *)outip) >> 2;
1138 ident = (getpid() & 0xffff) | 0x8000;
1139#if ENABLE_FEATURE_TRACEROUTE_USE_ICMP
1140 if (useicmp) {
1141 outip->ip_p = IPPROTO_ICMP;
1142 outicmp = (struct icmp *)outp;
1143 outicmp->icmp_type = ICMP_ECHO;
1144 outicmp->icmp_id = htons(ident);
1145 outdata = (outdata_t *)(outp + 8);
1146 } else
1147#endif
1148 {
1149 outip->ip_p = IPPROTO_UDP;
1150 outudp = (struct udphdr *)outp;
1151 outudp->source = htons(ident);
1152 outudp->len = htons((uint16_t)(packlen - (sizeof(*outip) + optlen)));
1153 outdata = (outdata_t *)(outudp + 1);
1154 }
1155
1156
1157 n = ifaddrlist(&al);
1158
1159
1160 if (op & OPT_DEVICE) {
1161 for (i = n; i > 0; --i, ++al)
1162 if (strcmp(device, al->device) == 0)
1163 goto found_dev;
1164 bb_error_msg_and_die("can't find interface %s", device);
1165 }
1166 found_dev:
1167
1168
1169 if (!(op & OPT_SOURCE)) {
1170
1171
1172
1173
1174 if (op & OPT_DEVICE)
1175 setsin(from, al->addr);
1176 findsaddr(to, from);
1177 } else {
1178 hi = gethostinfo(source);
1179 source = hi->name;
1180 hi->name = NULL;
1181
1182
1183
1184
1185
1186
1187 if (op & OPT_DEVICE) {
1188 for (i = hi->n, ap = hi->addrs; i > 0; --i, ++ap)
1189 if (*ap == al->addr)
1190 goto found_dev2;
1191 bb_error_msg_and_die("%s is not on interface %s",
1192 source, device);
1193 found_dev2:
1194 setsin(from, *ap);
1195 } else {
1196 setsin(from, hi->addrs[0]);
1197 if (hi->n > 1)
1198 bb_error_msg(
1199 "warning: %s has multiple addresses; using %s",
1200 source, inet_ntoa(from->sin_addr));
1201 }
1202 freehostinfo(hi);
1203 }
1204
1205 outip->ip_src = from->sin_addr;
1206#ifndef IP_HDRINCL
1207 xbind(sndsock, (struct sockaddr *)from, sizeof(*from));
1208#endif
1209
1210 printf("traceroute to %s (%s)", hostname, inet_ntoa(to->sin_addr));
1211 if (op & OPT_SOURCE)
1212 printf(" from %s", source);
1213 printf(", %d hops max, %d byte packets\n", max_ttl, packlen);
1214 fflush(stdout);
1215
1216 for (ttl = first_ttl; ttl <= max_ttl; ++ttl) {
1217 uint32_t lastaddr = 0;
1218 int gotlastaddr = 0;
1219 int got_there = 0;
1220 int unreachable = 0;
1221 int sentfirst = 0;
1222
1223 printf("%2d ", ttl);
1224 for (probe = 0; probe < nprobes; ++probe) {
1225 int cc;
1226 unsigned t1;
1227 unsigned t2;
1228 struct ip *ip;
1229
1230 if (sentfirst && pausemsecs > 0)
1231 usleep(pausemsecs * 1000);
1232 t1 = monotonic_us();
1233 send_probe(++seq, ttl);
1234 ++sentfirst;
1235 while ((cc = wait_for_reply(rcvsock, from)) != 0) {
1236 t2 = monotonic_us();
1237 i = packet_ok(packet, cc, from, seq);
1238
1239 if (i == 0)
1240 continue;
1241 if (!gotlastaddr ||
1242 from->sin_addr.s_addr != lastaddr) {
1243 print(packet, cc, from);
1244 lastaddr = from->sin_addr.s_addr;
1245 ++gotlastaddr;
1246 }
1247 print_delta_ms(t1, t2);
1248 ip = (struct ip *)packet;
1249 if (op & OPT_TTL_FLAG)
1250 printf(" (%d)", ip->ip_ttl);
1251 if (i == -2) {
1252 if (ip->ip_ttl <= 1)
1253 printf(" !");
1254 ++got_there;
1255 break;
1256 }
1257
1258 if (i == -1)
1259 break;
1260 code = i - 1;
1261 switch (code) {
1262
1263 case ICMP_UNREACH_PORT:
1264 if (ip->ip_ttl <= 1)
1265 printf(" !");
1266 ++got_there;
1267 break;
1268
1269 case ICMP_UNREACH_NET:
1270 ++unreachable;
1271 printf(" !N");
1272 break;
1273
1274 case ICMP_UNREACH_HOST:
1275 ++unreachable;
1276 printf(" !H");
1277 break;
1278
1279 case ICMP_UNREACH_PROTOCOL:
1280 ++got_there;
1281 printf(" !P");
1282 break;
1283
1284 case ICMP_UNREACH_NEEDFRAG:
1285 ++unreachable;
1286 printf(" !F-%d", pmtu);
1287 break;
1288
1289 case ICMP_UNREACH_SRCFAIL:
1290 ++unreachable;
1291 printf(" !S");
1292 break;
1293
1294 case ICMP_UNREACH_FILTER_PROHIB:
1295 case ICMP_UNREACH_NET_PROHIB:
1296 ++unreachable;
1297 printf(" !A");
1298 break;
1299
1300 case ICMP_UNREACH_HOST_PROHIB:
1301 ++unreachable;
1302 printf(" !C");
1303 break;
1304
1305 case ICMP_UNREACH_HOST_PRECEDENCE:
1306 ++unreachable;
1307 printf(" !V");
1308 break;
1309
1310 case ICMP_UNREACH_PRECEDENCE_CUTOFF:
1311 ++unreachable;
1312 printf(" !C");
1313 break;
1314
1315 case ICMP_UNREACH_NET_UNKNOWN:
1316 case ICMP_UNREACH_HOST_UNKNOWN:
1317 ++unreachable;
1318 printf(" !U");
1319 break;
1320
1321 case ICMP_UNREACH_ISOLATED:
1322 ++unreachable;
1323 printf(" !I");
1324 break;
1325
1326 case ICMP_UNREACH_TOSNET:
1327 case ICMP_UNREACH_TOSHOST:
1328 ++unreachable;
1329 printf(" !T");
1330 break;
1331
1332 default:
1333 ++unreachable;
1334 printf(" !<%d>", code);
1335 break;
1336 }
1337 break;
1338 }
1339 if (cc == 0)
1340 printf(" *");
1341 (void)fflush(stdout);
1342 }
1343 bb_putchar('\n');
1344 if (got_there ||
1345 (unreachable > 0 && unreachable >= nprobes - 1))
1346 break;
1347 }
1348 return 0;
1349}
1350