home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / src / traceroute / traceroute.c < prev   
C/C++ Source or Header  |  1989-10-13  |  24KB  |  844 lines

  1. #ifndef lint
  2. static char *rcsid =
  3.     "@(#)$Header: traceroute.c,v 1.17 89/02/28 21:01:13 van Exp $ (LBL)";
  4. #endif
  5.  
  6. /*
  7.  * traceroute host  - trace the route ip packets follow going to "host".
  8.  *
  9.  * Attempt to trace the route an ip packet would follow to some
  10.  * internet host.  We find out intermediate hops by launching probe
  11.  * packets with a small ttl (time to live) then listening for an
  12.  * icmp "time exceeded" reply from a gateway.  We start our probes
  13.  * with a ttl of one and increase by one until we get an icmp "port
  14.  * unreachable" (which means we got to "host") or hit a max (which
  15.  * defaults to 30 hops & can be changed with the -m flag).  Three
  16.  * probes (change with -q flag) are sent at each ttl setting and a
  17.  * line is printed showing the ttl, address of the gateway and
  18.  * round trip time of each probe.  If the probe answers come from
  19.  * different gateways, the address of each responding system will
  20.  * be printed.  If there is no response within a 5 sec. timeout
  21.  * interval (changed with the -w flag), a "*" is printed for that
  22.  * probe.
  23.  *
  24.  * Probe packets are UDP format.  We don't want the destination
  25.  * host to process them so the destination port is set to an
  26.  * unlikely value (if some clod on the destination is using that
  27.  * value, it can be changed with the -p flag).
  28.  *
  29.  * A sample use might be:
  30.  *
  31.  *     [yak 71]% traceroute nis.nsf.net.
  32.  *     traceroute to nis.nsf.net (35.1.1.48), 30 hops max, 56 byte packet
  33.  *      1  helios.ee.lbl.gov (128.3.112.1)  19 ms  19 ms  0 ms
  34.  *      2  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  39 ms  19 ms
  35.  *      3  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  39 ms  19 ms
  36.  *      4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  39 ms  40 ms  39 ms
  37.  *      5  ccn-nerif22.Berkeley.EDU (128.32.168.22)  39 ms  39 ms  39 ms
  38.  *      6  128.32.197.4 (128.32.197.4)  40 ms  59 ms  59 ms
  39.  *      7  131.119.2.5 (131.119.2.5)  59 ms  59 ms  59 ms
  40.  *      8  129.140.70.13 (129.140.70.13)  99 ms  99 ms  80 ms
  41.  *      9  129.140.71.6 (129.140.71.6)  139 ms  239 ms  319 ms
  42.  *     10  129.140.81.7 (129.140.81.7)  220 ms  199 ms  199 ms
  43.  *     11  nic.merit.edu (35.1.1.48)  239 ms  239 ms  239 ms
  44.  *
  45.  * Note that lines 2 & 3 are the same.  This is due to a buggy
  46.  * kernel on the 2nd hop system -- lbl-csam.arpa -- that forwards
  47.  * packets with a zero ttl.
  48.  *
  49.  * A more interesting example is:
  50.  *
  51.  *     [yak 72]% traceroute allspice.lcs.mit.edu.
  52.  *     traceroute to allspice.lcs.mit.edu (18.26.0.115), 30 hops max
  53.  *      1  helios.ee.lbl.gov (128.3.112.1)  0 ms  0 ms  0 ms
  54.  *      2  lilac-dmc.Berkeley.EDU (128.32.216.1)  19 ms  19 ms  19 ms
  55.  *      3  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  19 ms  19 ms
  56.  *      4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  19 ms  39 ms  39 ms
  57.  *      5  ccn-nerif22.Berkeley.EDU (128.32.168.22)  20 ms  39 ms  39 ms
  58.  *      6  128.32.197.4 (128.32.197.4)  59 ms  119 ms  39 ms
  59.  *      7  131.119.2.5 (131.119.2.5)  59 ms  59 ms  39 ms
  60.  *      8  129.140.70.13 (129.140.70.13)  80 ms  79 ms  99 ms
  61.  *      9  129.140.71.6 (129.140.71.6)  139 ms  139 ms  159 ms
  62.  *     10  129.140.81.7 (129.140.81.7)  199 ms  180 ms  300 ms
  63.  *     11  129.140.72.17 (129.140.72.17)  300 ms  239 ms  239 ms
  64.  *     12  * * *
  65.  *     13  128.121.54.72 (128.121.54.72)  259 ms  499 ms  279 ms
  66.  *     14  * * *
  67.  *     15  * * *
  68.  *     16  * * *
  69.  *     17  * * *
  70.  *     18  ALLSPICE.LCS.MIT.EDU (18.26.0.115)  339 ms  279 ms  279 ms
  71.  *
  72.  * (I start to see why I'm having so much trouble with mail to
  73.  * MIT.)  Note that the gateways 12, 14, 15, 16 & 17 hops away
  74.  * either don't send ICMP "time exceeded" messages or send them
  75.  * with a ttl too small to reach us.  14 - 17 are running the
  76.  * MIT C Gateway code that doesn't send "time exceeded"s.  God
  77.  * only knows what's going on with 12.
  78.  *
  79.  * The silent gateway 12 in the above may be the result of a bug in
  80.  * the 4.[23]BSD network code (and its derivatives):  4.x (x <= 3)
  81.  * sends an unreachable message using whatever ttl remains in the
  82.  * original datagram.  Since, for gateways, the remaining ttl is
  83.  * zero, the icmp "time exceeded" is guaranteed to not make it back
  84.  * to us.  The behavior of this bug is slightly more interesting
  85.  * when it appears on the destination system:
  86.  *
  87.  *      1  helios.ee.lbl.gov (128.3.112.1)  0 ms  0 ms  0 ms
  88.  *      2  lilac-dmc.Berkeley.EDU (128.32.216.1)  39 ms  19 ms  39 ms
  89.  *      3  lilac-dmc.Berkeley.EDU (128.32.216.1)  19 ms  39 ms  19 ms
  90.  *      4  ccngw-ner-cc.Berkeley.EDU (128.32.136.23)  39 ms  40 ms  19 ms
  91.  *      5  ccn-nerif35.Berkeley.EDU (128.32.168.35)  39 ms  39 ms  39 ms
  92.  *      6  csgw.Berkeley.EDU (128.32.133.254)  39 ms  59 ms  39 ms
  93.  *      7  * * *
  94.  *      8  * * *
  95.  *      9  * * *
  96.  *     10  * * *
  97.  *     11  * * *
  98.  *     12  * * *
  99.  *     13  rip.Berkeley.EDU (128.32.131.22)  59 ms !  39 ms !  39 ms !
  100.  *
  101.  * Notice that there are 12 "gateways" (13 is the final
  102.  * destination) and exactly the last half of them are "missing".
  103.  * What's really happening is that rip (a Sun-3 running Sun OS3.5)
  104.  * is using the ttl from our arriving datagram as the ttl in its
  105.  * icmp reply.  So, the reply will time out on the return path
  106.  * (with no notice sent to anyone since icmp's aren't sent for
  107.  * icmp's) until we probe with a ttl that's at least twice the path
  108.  * length.  I.e., rip is really only 7 hops away.  A reply that
  109.  * returns with a ttl of 1 is a clue this problem exists.
  110.  * Traceroute prints a "!" after the time if the ttl is <= 1.
  111.  * Since vendors ship a lot of obsolete (DEC's Ultrix, Sun 3.x) or
  112.  * non-standard (HPUX) software, expect to see this problem
  113.  * frequently and/or take care picking the target host of your
  114.  * probes.
  115.  *
  116.  * Other possible annotations after the time are !H, !N, !P (got a host,
  117.  * network or protocol unreachable, respectively), !S or !F (source
  118.  * route failed or fragmentation needed -- neither of these should
  119.  * ever occur and the associated gateway is busted if you see one).  If
  120.  * almost all the probes result in some kind of unreachable, traceroute
  121.  * will give up and exit.
  122.  *
  123.  * Notes
  124.  * -----
  125.  * This program must be run by root or be setuid.  (I suggest that
  126.  * you *don't* make it setuid -- casual use could result in a lot
  127.  * of unnecessary traffic on our poor, congested nets.)
  128.  *
  129.  * This program requires a kernel mod that does not appear in any
  130.  * system available from Berkeley:  A raw ip socket using proto
  131.  * IPPROTO_RAW must interpret the data sent as an ip datagram (as
  132.  * opposed to data to be wrapped in a ip datagram).  See the README
  133.  * file that came with the source to this program for a description
  134.  * of the mods I made to /sys/netinet/raw_ip.c.  Your mileage may
  135.  * vary.  But, again, ANY 4.x (x < 4) BSD KERNEL WILL HAVE TO BE
  136.  * MODIFIED TO RUN THIS PROGRAM.
  137.  *
  138.  * The udp port usage may appear bizarre (well, ok, it is bizarre).
  139.  * The problem is that an icmp message only contains 8 bytes of
  140.  * data from the original datagram.  8 bytes is the size of a udp
  141.  * header so, if we want to associate replies with the original
  142.  * datagram, the necessary information must be encoded into the
  143.  * udp header (the ip id could be used but there's no way to
  144.  * interlock with the kernel's assignment of ip id's and, anyway,
  145.  * it would have taken a lot more kernel hacking to allow this
  146.  * code to set the ip id).  So, to allow two or more users to
  147.  * use traceroute simultaneously, we use this task's pid as the
  148.  * source port (the high bit is set to move the port number out
  149.  * of the "likely" range).  To keep track of which probe is being
  150.  * replied to (so times and/or hop counts don't get confused by a
  151.  * reply that was delayed in transit), we increment the destination
  152.  * port number before each probe.
  153.  *
  154.  * Don't use this as a coding example.  I was trying to find a
  155.  * routing problem and this code sort-of popped out after 48 hours
  156.  * without sleep.  I was amazed it ever compiled, much less ran.
  157.  *
  158.  * I stole the idea for this program from Steve Deering.  Since
  159.  * the first release, I've learned that had I attended the right
  160.  * IETF working group meetings, I also could have stolen it from Guy
  161.  * Almes or Matt Mathis.  I don't know (or care) who came up with
  162.  * the idea first.  I envy the originators' perspicacity and I'm
  163.  * glad they didn't keep the idea a secret.
  164.  *
  165.  * Tim Seaver, Ken Adelman and C. Philip Wood provided bug fixes and/or
  166.  * enhancements to the original distribution.
  167.  *
  168.  * I've hacked up a round-trip-route version of this that works by
  169.  * sending a loose-source-routed udp datagram through the destination
  170.  * back to yourself.  Unfortunately, SO many gateways botch source
  171.  * routing, the thing is almost worthless.  Maybe one day...
  172.  *
  173.  *  -- Van Jacobson (van@helios.ee.lbl.gov)
  174.  *     Tue Dec 20 03:50:13 PST 1988
  175.  *
  176.  * Copyright (c) 1988 Regents of the University of California.
  177.  * All rights reserved.
  178.  *
  179.  * Redistribution and use in source and binary forms are permitted
  180.  * provided that the above copyright notice and this paragraph are
  181.  * duplicated in all such forms and that any documentation,
  182.  * advertising materials, and other materials related to such
  183.  * distribution and use acknowledge that the software was developed
  184.  * by the University of California, Berkeley.  The name of the
  185.  * University may not be used to endorse or promote products derived
  186.  * from this software without specific prior written permission.
  187.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  188.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  189.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  190.  */
  191.  
  192. #include <stdio.h>
  193. #include <errno.h>
  194. #include <strings.h>
  195. #include <sys/time.h>
  196.  
  197. #include <sys/param.h>
  198. #include <sys/socket.h>
  199. #include <sys/file.h>
  200. #include <sys/ioctl.h>
  201.  
  202. #include <netinet/in_systm.h>
  203. #include <netinet/in.h>
  204. #include <netinet/ip.h>
  205. #include <netinet/ip_var.h>
  206. #include <netinet/ip_icmp.h>
  207. #include <netinet/udp.h>
  208. #include <netdb.h>
  209. #include <ctype.h>
  210.  
  211. #define    MAXPACKET    65535    /* max ip packet size */
  212. #ifndef MAXHOSTNAMELEN
  213. #define MAXHOSTNAMELEN    64
  214. #endif
  215.  
  216. #ifndef FD_SET
  217. #define NFDBITS         (8*sizeof(fd_set))
  218. #define FD_SETSIZE      NFDBITS
  219. #define FD_SET(n, p)    ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
  220. #define FD_CLR(n, p)    ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
  221. #define FD_ISSET(n, p)  ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
  222. #define FD_ZERO(p)      bzero((char *)(p), sizeof(*(p)))
  223. #endif
  224.  
  225. #define Fprintf (void)fprintf
  226. #define Sprintf (void)sprintf
  227. #define Printf (void)printf
  228.  
  229. extern    int errno;
  230. extern  char *malloc();
  231. extern  char *inet_ntoa();
  232. extern  u_long inet_addr();
  233.  
  234. /*
  235.  * format of a (udp) probe packet.
  236.  */
  237. struct opacket {
  238.     struct ip ip;
  239.     struct udphdr udp;
  240.     u_char seq;        /* sequence number of this packet */
  241.     u_char ttl;        /* ttl packet left with */
  242.     struct timeval tv;    /* time packet left */
  243. };
  244.  
  245. u_char    packet[512];        /* last inbound (icmp) packet */
  246. struct opacket    *outpacket;    /* last output (udp) packet */
  247. char *inetname();
  248.  
  249. int s;                /* receive (icmp) socket file descriptor */
  250. int sndsock;            /* send (udp) socket file descriptor */
  251. struct timezone tz;        /* leftover */
  252.  
  253. struct sockaddr whereto;    /* Who to try to reach */
  254. int datalen;            /* How much data */
  255.  
  256. char *source = 0;
  257. char *hostname;
  258. char hnamebuf[MAXHOSTNAMELEN];
  259.  
  260. int nprobes = 3;
  261. int max_ttl = 30;
  262. u_short ident;
  263. u_short port = 32768+666;    /* start udp dest port # for probe packets */
  264.  
  265. int options;            /* socket options */
  266. int verbose;
  267. int waittime = 5;        /* time to wait for response (in seconds) */
  268. int nflag;            /* print addresses numerically */
  269.  
  270. char usage[] =
  271.  "Usage: traceroute [-dnrv] [-w wait] [-m max_ttl] [-p port#] [-q nqueries] [-t tos] [-s src_addr] [-g gateway] host [data size]\n";
  272.  
  273.  
  274. main(argc, argv)
  275.     char *argv[];
  276. {
  277.     struct sockaddr_in from;
  278.     char **av = argv;
  279.     struct sockaddr_in *to = (struct sockaddr_in *) &whereto;
  280.     int on = 1;
  281.     struct protoent *pe;
  282.     int ttl, probe, i;
  283.     int seq = 0;
  284.     int tos = 0;
  285.     struct hostent *hp;
  286.     int lsrr = 0;
  287.     u_long gw;
  288.     u_char optlist[MAX_IPOPTLEN], *oix;
  289.  
  290.     oix = optlist;
  291.     bzero(optlist, sizeof(optlist));
  292.  
  293.     argc--, av++;
  294.     while (argc && *av[0] == '-')  {
  295.         while (*++av[0])
  296.             switch (*av[0]) {
  297.             case 'd':
  298.                 options |= SO_DEBUG;
  299.                 break;
  300.             case 'g':
  301.                 argc--, av++;
  302.                 if ((lsrr+1) >= ((MAX_IPOPTLEN-IPOPT_MINOFF)/sizeof(u_long))) {
  303.                   Fprintf(stderr,"No more than %d gateways\n",
  304.                       ((MAX_IPOPTLEN-IPOPT_MINOFF)/sizeof(u_long))-1);
  305.                   exit(1);
  306.                 }
  307.                 if (lsrr == 0) {
  308.                   *oix++ = IPOPT_LSRR;
  309.                   *oix++;    /* Fill in total length later */
  310.                   *oix++ = IPOPT_MINOFF; /* Pointer to LSRR addresses */
  311.                 }
  312.                 lsrr++;
  313.                 if (isdigit(*av[0])) {
  314.                   gw = inet_addr(*av);
  315.                   if (gw) {
  316.                     bcopy(&gw, oix, sizeof(u_long));
  317.                   } else {
  318.                     Fprintf(stderr, "Unknown host %s\n",av[0]);
  319.                     exit(1);
  320.                   }
  321.                 } else {
  322.                   hp = gethostbyname(av[0]);
  323.                   if (hp) {
  324.                     bcopy(hp->h_addr, oix, sizeof(u_long));
  325.                   } else {
  326.                     Fprintf(stderr, "Unknown host %s\n",av[0]);
  327.                     exit(1);
  328.                   }
  329.                 }
  330.                 oix += sizeof(u_long);
  331.                 goto nextarg;
  332.             case 'm':
  333.                 argc--, av++;
  334.                 max_ttl = atoi(av[0]);
  335.                 if (max_ttl <= 1) {
  336.                     Fprintf(stderr, "max ttl must be >1\n");
  337.                     exit(1);
  338.                 }
  339.                 goto nextarg;
  340.             case 'n':
  341.                 nflag++;
  342.                 break;
  343.             case 'p':
  344.                 argc--, av++;
  345.                 port = atoi(av[0]);
  346.                 if (port < 1) {
  347.                     Fprintf(stderr, "port must be >0\n");
  348.                     exit(1);
  349.                 }
  350.                 goto nextarg;
  351.             case 'q':
  352.                 argc--, av++;
  353.                 nprobes = atoi(av[0]);
  354.                 if (nprobes < 1) {
  355.                     Fprintf(stderr, "nprobes must be >0\n");
  356.                     exit(1);
  357.                 }
  358.                 goto nextarg;
  359.             case 'r':
  360.                 options |= SO_DONTROUTE;
  361.                 break;
  362.             case 's':
  363.                 /*
  364.                  * set the ip source address of the outbound
  365.                  * probe (e.g., on a multi-homed host).
  366.                  */
  367.                 argc--, av++;
  368.                 source = av[0];
  369.                 goto nextarg;
  370.             case 't':
  371.                 argc--, av++;
  372.                 tos = atoi(av[0]);
  373.                 if (tos < 0 || tos > 255) {
  374.                     Fprintf(stderr, "tos must be 0 to 255\n");
  375.                     exit(1);
  376.                 }
  377.                 goto nextarg;
  378.             case 'v':
  379.                 verbose++;
  380.                 break;
  381.             case 'w':
  382.                 argc--, av++;
  383.                 waittime = atoi(av[0]);
  384.                 if (waittime <= 1) {
  385.                     Fprintf(stderr, "wait must be >1 sec\n");
  386.                     exit(1);
  387.                 }
  388.                 goto nextarg;
  389.             }
  390.     nextarg:
  391.         argc--, av++;
  392.     }
  393.     if (argc < 1)  {
  394.         Printf(usage);
  395.         exit(1);
  396.     }
  397.     setlinebuf (stdout);
  398.  
  399.     (void) bzero((char *)&whereto, sizeof(struct sockaddr));
  400.     to->sin_family = AF_INET;
  401.     to->sin_addr.s_addr = inet_addr(av[0]);
  402.     if (to->sin_addr.s_addr != -1) {
  403.         (void) strcpy(hnamebuf, av[0]);
  404.         hostname = hnamebuf;
  405.     } else {
  406.         hp = gethostbyname(av[0]);
  407.         if (hp) {
  408.             to->sin_family = hp->h_addrtype;
  409.             bcopy(hp->h_addr, (caddr_t)&to->sin_addr, hp->h_length);
  410.             hostname = hp->h_name;
  411.         } else {
  412.             Printf("%s: unknown host %s\n", argv[0], av[0]);
  413.             exit(1);
  414.         }
  415.     }
  416.  
  417.     if (argc >= 2)
  418.         datalen = atoi(av[1]);
  419.     if (datalen < 0 || datalen >= MAXPACKET - sizeof(struct opacket)) {
  420.         Fprintf(stderr, "traceroute: packet size must be 0 <= s < %ld\n",
  421.             MAXPACKET - sizeof(struct opacket));
  422.         exit(1);
  423.     }
  424.     datalen += sizeof(struct opacket);
  425.     outpacket = (struct opacket *)malloc((unsigned)datalen);
  426.     if (! outpacket) {
  427.         perror("traceroute: malloc");
  428.         exit(1);
  429.     }
  430.     (void) bzero((char *)outpacket, datalen);
  431.     outpacket->ip.ip_dst = to->sin_addr;
  432.     outpacket->ip.ip_tos = tos;
  433.  
  434.     ident = (getpid() & 0xffff) | 0x8000;
  435.  
  436.     if ((pe = getprotobyname("icmp")) == NULL) {
  437.         Fprintf(stderr, "icmp: unknown protocol\n");
  438.         exit(10);
  439.     }
  440.     if ((s = socket(AF_INET, SOCK_RAW, pe->p_proto)) < 0) {
  441.         perror("traceroute: icmp socket");
  442.         exit(5);
  443.     }
  444.     if (options & SO_DEBUG)
  445.         (void) setsockopt(s, SOL_SOCKET, SO_DEBUG,
  446.                   (char *)&on, sizeof(on));
  447.     if (options & SO_DONTROUTE)
  448.         (void) setsockopt(s, SOL_SOCKET, SO_DONTROUTE,
  449.                   (char *)&on, sizeof(on));
  450.  
  451.     if ((sndsock = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0) {
  452.         perror("traceroute: raw socket");
  453.         exit(5);
  454.     }
  455.  
  456.     if (lsrr > 0) {
  457.       lsrr++;
  458.       optlist[IPOPT_OLEN]=IPOPT_MINOFF-1+(lsrr*sizeof(u_long));
  459.       bcopy((caddr_t)&to->sin_addr, oix, sizeof(u_long));
  460.       oix += sizeof(u_long);
  461.       while ((oix - optlist)&3) oix++;        /* Pad to an even boundry */
  462.  
  463.       if ((pe = getprotobyname("ip")) == NULL) {
  464.         perror("traceroute: unknown protocol ip\n");
  465.         exit(10);
  466.       }
  467.       if ((setsockopt(sndsock, pe->p_proto, IP_OPTIONS, optlist, oix-optlist)) < 0) {
  468.         perror("traceroute: lsrr options");
  469.         exit(5);
  470.       }
  471.     }
  472.  
  473. #ifdef SO_SNDBUF
  474.     if (setsockopt(sndsock, SOL_SOCKET, SO_SNDBUF, (char *)&datalen,
  475.                sizeof(datalen)) < 0) {
  476.         perror("traceroute: SO_SNDBUF");
  477.         exit(6);
  478.     }
  479. #endif SO_SNDBUF
  480. #ifdef IP_HDRINCL
  481.     if (setsockopt(sndsock, IPPROTO_IP, IP_HDRINCL, (char *)&on,
  482.                sizeof(on)) < 0) {
  483.         perror("traceroute: IP_HDRINCL");
  484.         exit(6);
  485.     }
  486. #endif IP_HDRINCL
  487.     if (options & SO_DEBUG)
  488.         (void) setsockopt(sndsock, SOL_SOCKET, SO_DEBUG,
  489.                   (char *)&on, sizeof(on));
  490.     if (options & SO_DONTROUTE)
  491.         (void) setsockopt(sndsock, SOL_SOCKET, SO_DONTROUTE,
  492.                   (char *)&on, sizeof(on));
  493.  
  494.     if (source) {
  495.         (void) bzero((char *)&from, sizeof(struct sockaddr));
  496.         from.sin_family = AF_INET;
  497.         from.sin_addr.s_addr = inet_addr(source);
  498.         if (from.sin_addr.s_addr == -1) {
  499.             Printf("traceroute: unknown host %s\n", source);
  500.             exit(1);
  501.         }
  502.         outpacket->ip.ip_src = from.sin_addr;
  503. #ifndef IP_HDRINCL
  504.         if (bind(sndsock, (struct sockaddr *)&from, sizeof(from)) < 0) {
  505.             perror ("traceroute: bind:");
  506.             exit (1);
  507.         }
  508. #endif IP_HDRINCL
  509.     }
  510.  
  511.     Fprintf(stderr, "traceroute to %s (%s)", hostname,
  512.         inet_ntoa(to->sin_addr));
  513.     if (source)
  514.         Fprintf(stderr, " from %s", source);
  515.     Fprintf(stderr, ", %d hops max, %d byte packets\n", max_ttl, datalen);
  516.     (void) fflush(stderr);
  517.  
  518.     for (ttl = 1; ttl <= max_ttl; ++ttl) {
  519.         u_long lastaddr = 0;
  520.         int got_there = 0;
  521.         int unreachable = 0;
  522.  
  523.         Printf("%2d ", ttl);
  524.         for (probe = 0; probe < nprobes; ++probe) {
  525.             int cc;
  526.             struct timeval tv;
  527.             struct ip *ip;
  528.  
  529.             (void) gettimeofday(&tv, &tz);
  530.             send_probe(++seq, ttl);
  531.             while (cc = wait_for_reply(s, &from)) {
  532.                 if ((i = packet_ok(packet, cc, &from, seq))) {
  533.                     int dt = deltaT(&tv);
  534.                     if (from.sin_addr.s_addr != lastaddr) {
  535.                         print(packet, cc, &from);
  536.                         lastaddr = from.sin_addr.s_addr;
  537.                     }
  538.                     Printf("  %d ms", dt);
  539.                     switch(i - 1) {
  540.                     case ICMP_UNREACH_PORT:
  541. #ifndef ARCHAIC
  542.                         ip = (struct ip *)packet;
  543.                         if (ip->ip_ttl <= 1)
  544.                             Printf(" !");
  545. #endif ARCHAIC
  546.                         ++got_there;
  547.                         break;
  548.                     case ICMP_UNREACH_NET:
  549.                         ++unreachable;
  550.                         Printf(" !N");
  551.                         break;
  552.                     case ICMP_UNREACH_HOST:
  553.                         ++unreachable;
  554.                         Printf(" !H");
  555.                         break;
  556.                     case ICMP_UNREACH_PROTOCOL:
  557.                         ++got_there;
  558.                         Printf(" !P");
  559.                         break;
  560.                     case ICMP_UNREACH_NEEDFRAG:
  561.                         ++unreachable;
  562.                         Printf(" !F");
  563.                         break;
  564.                     case ICMP_UNREACH_SRCFAIL:
  565.                         ++unreachable;
  566.                         Printf(" !S");
  567.                         break;
  568.                     }
  569.                     break;
  570.                 }
  571.             }
  572.             if (cc == 0)
  573.                 Printf(" *");
  574.             (void) fflush(stdout);
  575.         }
  576.         putchar('\n');
  577.         if (got_there || unreachable >= nprobes-1)
  578.             exit(0);
  579.     }
  580. }
  581.  
  582. wait_for_reply(sock, from)
  583.     int sock;
  584.     struct sockaddr_in *from;
  585. {
  586.     fd_set fds;
  587.     struct timeval wait;
  588.     int cc = 0;
  589.     int fromlen = sizeof (*from);
  590.  
  591.     FD_ZERO(&fds);
  592.     FD_SET(sock, &fds);
  593.     wait.tv_sec = waittime; wait.tv_usec = 0;
  594.  
  595.     if (select(sock+1, &fds, (fd_set *)0, (fd_set *)0, &wait) > 0)
  596.         cc=recvfrom(s, (char *)packet, sizeof(packet), 0,
  597.                 (struct sockaddr *)from, &fromlen);
  598.  
  599.     return(cc);
  600. }
  601.  
  602.  
  603. send_probe(seq, ttl)
  604. {
  605.     struct opacket *op = outpacket;
  606.     struct ip *ip = &op->ip;
  607.     struct udphdr *up = &op->udp;
  608.     int i;
  609.  
  610.     ip->ip_off = 0;
  611.     ip->ip_p = IPPROTO_UDP;
  612.     ip->ip_len = datalen;
  613.     ip->ip_ttl = ttl;
  614.  
  615.     up->uh_sport = htons(ident);
  616.     up->uh_dport = htons(port+seq);
  617.     up->uh_ulen = htons((u_short)(datalen - sizeof(struct ip)));
  618.     up->uh_sum = 0;
  619.  
  620.     op->seq = seq;
  621.     op->ttl = ttl;
  622.     (void) gettimeofday(&op->tv, &tz);
  623.  
  624.     i = sendto(sndsock, (char *)outpacket, datalen, 0, &whereto,
  625.            sizeof(struct sockaddr));
  626.     if (i < 0 || i != datalen)  {
  627.         if (i<0)
  628.             perror("sendto");
  629.         Printf("traceroute: wrote %s %d chars, ret=%d\n", hostname,
  630.             datalen, i);
  631.         (void) fflush(stdout);
  632.     }
  633. }
  634.  
  635.  
  636. deltaT(tp)
  637.     struct timeval *tp;
  638. {
  639.     struct timeval tv;
  640.  
  641.     (void) gettimeofday(&tv, &tz);
  642.     tvsub(&tv, tp);
  643.     return (tv.tv_sec*1000 + (tv.tv_usec + 500)/1000);
  644. }
  645.  
  646.  
  647. /*
  648.  * Convert an ICMP "type" field to a printable string.
  649.  */
  650. char *
  651. pr_type(t)
  652.     u_char t;
  653. {
  654.     static char *ttab[] = {
  655.     "Echo Reply",    "ICMP 1",    "ICMP 2",    "Dest Unreachable",
  656.     "Source Quench", "Redirect",    "ICMP 6",    "ICMP 7",
  657.     "Echo",        "ICMP 9",    "ICMP 10",    "Time Exceeded",
  658.     "Param Problem", "Timestamp",    "Timestamp Reply", "Info Request",
  659.     "Info Reply"
  660.     };
  661.  
  662.     if(t > 16)
  663.         return("OUT-OF-RANGE");
  664.  
  665.     return(ttab[t]);
  666. }
  667.  
  668.  
  669. packet_ok(buf, cc, from, seq)
  670.     u_char *buf;
  671.     int cc;
  672.     struct sockaddr_in *from;
  673.     int seq;
  674. {
  675.     register struct icmp *icp;
  676.     u_char type, code;
  677.     int hlen;
  678. #ifndef ARCHAIC
  679.     struct ip *ip;
  680.  
  681.     ip = (struct ip *) buf;
  682.     hlen = ip->ip_hl << 2;
  683.     if (cc < hlen + ICMP_MINLEN) {
  684.         if (verbose)
  685.             Printf("packet too short (%d bytes) from %s\n", cc,
  686.                 inet_ntoa(from->sin_addr));
  687.         return (0);
  688.     }
  689.     cc -= hlen;
  690.     icp = (struct icmp *)(buf + hlen);
  691. #else
  692.     icp = (struct icmp *)buf;
  693. #endif ARCHAIC
  694.     type = icp->icmp_type; code = icp->icmp_code;
  695.     if ((type == ICMP_TIMXCEED && code == ICMP_TIMXCEED_INTRANS) ||
  696.         type == ICMP_UNREACH) {
  697.         struct ip *hip;
  698.         struct udphdr *up;
  699.  
  700.         hip = &icp->icmp_ip;
  701.         hlen = hip->ip_hl << 2;
  702.         up = (struct udphdr *)((u_char *)hip + hlen);
  703.         if (hlen + 12 <= cc && hip->ip_p == IPPROTO_UDP &&
  704.             up->uh_sport == htons(ident) &&
  705.             up->uh_dport == htons(port+seq))
  706.             return (type == ICMP_TIMXCEED? -1 : code+1);
  707.     }
  708. #ifndef ARCHAIC
  709.     if (verbose) {
  710.         int i;
  711.         u_long *lp = (u_long *)&icp->icmp_ip;
  712.  
  713.         Printf("\n%d bytes from %s to %s", cc,
  714.             inet_ntoa(from->sin_addr), inet_ntoa(ip->ip_dst));
  715.         Printf(": icmp type %d (%s) code %d\n", type, pr_type(type),
  716.                icp->icmp_code);
  717.         for (i = 4; i < cc ; i += sizeof(long))
  718.             Printf("%2d: x%8.8lx\n", i, *lp++);
  719.     }
  720. #endif ARCHAIC
  721.     return(0);
  722. }
  723.  
  724.  
  725. print(buf, cc, from)
  726.     u_char *buf;
  727.     int cc;
  728.     struct sockaddr_in *from;
  729. {
  730.     struct ip *ip;
  731.     int hlen;
  732.  
  733.     ip = (struct ip *) buf;
  734.     hlen = ip->ip_hl << 2;
  735.     cc -= hlen;
  736.  
  737.     if (nflag)
  738.         Printf(" %s", inet_ntoa(from->sin_addr));
  739.     else
  740.         Printf(" %s (%s)", inetname(from->sin_addr),
  741.                inet_ntoa(from->sin_addr));
  742.  
  743.     if (verbose)
  744.         Printf (" %d bytes to %s", cc, inet_ntoa (ip->ip_dst));
  745. }
  746.  
  747.  
  748. #ifdef notyet
  749. /*
  750.  * Checksum routine for Internet Protocol family headers (C Version)
  751.  */
  752. in_cksum(addr, len)
  753. u_short *addr;
  754. int len;
  755. {
  756.     register int nleft = len;
  757.     register u_short *w = addr;
  758.     register u_short answer;
  759.     register int sum = 0;
  760.  
  761.     /*
  762.      *  Our algorithm is simple, using a 32 bit accumulator (sum),
  763.      *  we add sequential 16 bit words to it, and at the end, fold
  764.      *  back all the carry bits from the top 16 bits into the lower
  765.      *  16 bits.
  766.      */
  767.     while (nleft > 1)  {
  768.         sum += *w++;
  769.         nleft -= 2;
  770.     }
  771.  
  772.     /* mop up an odd byte, if necessary */
  773.     if (nleft == 1)
  774.         sum += *(u_char *)w;
  775.  
  776.     /*
  777.      * add back carry outs from top 16 bits to low 16 bits
  778.      */
  779.     sum = (sum >> 16) + (sum & 0xffff);    /* add hi 16 to low 16 */
  780.     sum += (sum >> 16);            /* add carry */
  781.     answer = ~sum;                /* truncate to 16 bits */
  782.     return (answer);
  783. }
  784. #endif notyet
  785.  
  786. /*
  787.  * Subtract 2 timeval structs:  out = out - in.
  788.  * Out is assumed to be >= in.
  789.  */
  790. tvsub(out, in)
  791. register struct timeval *out, *in;
  792. {
  793.     if ((out->tv_usec -= in->tv_usec) < 0)   {
  794.         out->tv_sec--;
  795.         out->tv_usec += 1000000;
  796.     }
  797.     out->tv_sec -= in->tv_sec;
  798. }
  799.  
  800.  
  801. /*
  802.  * Construct an Internet address representation.
  803.  * If the nflag has been supplied, give 
  804.  * numeric value, otherwise try for symbolic name.
  805.  */
  806. char *
  807. inetname(in)
  808.     struct in_addr in;
  809. {
  810.     register char *cp;
  811.     static char line[50];
  812.     struct hostent *hp;
  813.     static char domain[MAXHOSTNAMELEN + 1];
  814.     static int first = 1;
  815.  
  816.     if (first && !nflag) {
  817.         first = 0;
  818.         if (gethostname(domain, MAXHOSTNAMELEN) == 0 &&
  819.             (cp = index(domain, '.')))
  820.             (void) strcpy(domain, cp + 1);
  821.         else
  822.             domain[0] = 0;
  823.     }
  824.     cp = 0;
  825.     if (!nflag && in.s_addr != INADDR_ANY) {
  826.         hp = gethostbyaddr((char *)&in, sizeof (in), AF_INET);
  827.         if (hp) {
  828.             if ((cp = index(hp->h_name, '.')) &&
  829.                 !strcmp(cp + 1, domain))
  830.                 *cp = 0;
  831.             cp = hp->h_name;
  832.         }
  833.     }
  834.     if (cp)
  835.         (void) strcpy(line, cp);
  836.     else {
  837.         in.s_addr = ntohl(in.s_addr);
  838. #define C(x)    ((x) & 0xff)
  839.         Sprintf(line, "%lu.%lu.%lu.%lu", C(in.s_addr >> 24),
  840.             C(in.s_addr >> 16), C(in.s_addr >> 8), C(in.s_addr));
  841.     }
  842.     return (line);
  843. }
  844.