home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / ip / trace / tcpdump-2.2.1 / print-fddi.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-03  |  7.0 KB  |  237 lines

  1. /*
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that: (1) source code distributions
  7.  * retain the above copyright notice and this paragraph in its entirety, (2)
  8.  * distributions including binary code include the above copyright notice and
  9.  * this paragraph in its entirety in the documentation or other materials
  10.  * provided with the distribution, and (3) all advertising materials mentioning
  11.  * features or use of this software display the following acknowledgement:
  12.  * ``This product includes software developed by the University of California,
  13.  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
  14.  * the University nor the names of its contributors may be used to endorse
  15.  * or promote products derived from this software without specific prior
  16.  * written permission.
  17.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  18.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  19.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  20.  */
  21.  
  22. #ifndef lint
  23. static  char rcsid[] =
  24.     "@(#)$Header: print-fddi.c,v 1.4 92/02/03 16:04:02 van Exp $ (LBL)";
  25. #endif
  26.  
  27. #ifdef FDDI
  28. #include <stdio.h>
  29. #include <netdb.h>
  30. #include <ctype.h>
  31. #include <signal.h>
  32. #include <errno.h>
  33. #include <sys/param.h>
  34. #include <sys/types.h>
  35. #include <sys/time.h>
  36. #include <sys/timeb.h>
  37. #include <sys/socket.h>
  38. #include <sys/file.h>
  39. #include <sys/mbuf.h>
  40. #include <sys/ioctl.h>
  41.  
  42. #include <net/if.h>
  43. #include <netinet/in.h>
  44. #include <netinet/if_ether.h>
  45. #include <netinet/in_systm.h>
  46. #include <netinet/ip.h>
  47.  
  48. #include <net/bpf.h>
  49.  
  50. #include "interface.h"
  51. #include "addrtoname.h"
  52.  
  53. /*
  54.  * NOTE:  This is a very preliminary hack for FDDI support.
  55.  * There are all sorts of wired in constants & nothing (yet)
  56.  * to print SMT packets as anything other than hex dumps.
  57.  * Most of the necessary changes are waiting on my redoing
  58.  * the "header" that a kernel fddi driver supplies to bpf:  I
  59.  * want it to look like one byte of 'direction' (0 or 1
  60.  * depending on whether the packet was inbound or outbound),
  61.  * two bytes of system/driver dependent data (anything an
  62.  * implementor thinks would be useful to filter on and/or
  63.  * save per-packet, then the real 21-byte FDDI header.
  64.  * Steve McCanne & I have also talked about adding the
  65.  * 'direction' byte to all bpf headers (e.g., in the two
  66.  * bytes of padding on an ethernet header).  It's not clear
  67.  * we could do this in a backwards compatible way & we hate
  68.  * the idea of an incompatible bpf change.  Discussions are
  69.  * proceeding.
  70.  *
  71.  * Also, to really support FDDI (and better support 802.2
  72.  * over ethernet) we really need to re-think the rather simple
  73.  * minded assumptions about fixed length & fixed format link
  74.  * level headers made in gencode.c.  One day...
  75.  *
  76.  *  - vj
  77.  */
  78.  
  79. /* XXX This goes somewhere else. */
  80. #define FDDI_HDRLEN 21
  81.  
  82. static u_char fddi_bit_swap[] = {
  83.     0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0,
  84.     0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0,
  85.     0x08, 0x88, 0x48, 0xc8, 0x28, 0xa8, 0x68, 0xe8,
  86.     0x18, 0x98, 0x58, 0xd8, 0x38, 0xb8, 0x78, 0xf8,
  87.     0x04, 0x84, 0x44, 0xc4, 0x24, 0xa4, 0x64, 0xe4,
  88.     0x14, 0x94, 0x54, 0xd4, 0x34, 0xb4, 0x74, 0xf4,
  89.     0x0c, 0x8c, 0x4c, 0xcc, 0x2c, 0xac, 0x6c, 0xec,
  90.     0x1c, 0x9c, 0x5c, 0xdc, 0x3c, 0xbc, 0x7c, 0xfc,
  91.     0x02, 0x82, 0x42, 0xc2, 0x22, 0xa2, 0x62, 0xe2,
  92.     0x12, 0x92, 0x52, 0xd2, 0x32, 0xb2, 0x72, 0xf2,
  93.     0x0a, 0x8a, 0x4a, 0xca, 0x2a, 0xaa, 0x6a, 0xea,
  94.     0x1a, 0x9a, 0x5a, 0xda, 0x3a, 0xba, 0x7a, 0xfa,
  95.     0x06, 0x86, 0x46, 0xc6, 0x26, 0xa6, 0x66, 0xe6,
  96.     0x16, 0x96, 0x56, 0xd6, 0x36, 0xb6, 0x76, 0xf6,
  97.     0x0e, 0x8e, 0x4e, 0xce, 0x2e, 0xae, 0x6e, 0xee,
  98.     0x1e, 0x9e, 0x5e, 0xde, 0x3e, 0xbe, 0x7e, 0xfe,
  99.     0x01, 0x81, 0x41, 0xc1, 0x21, 0xa1, 0x61, 0xe1,
  100.     0x11, 0x91, 0x51, 0xd1, 0x31, 0xb1, 0x71, 0xf1,
  101.     0x09, 0x89, 0x49, 0xc9, 0x29, 0xa9, 0x69, 0xe9,
  102.     0x19, 0x99, 0x59, 0xd9, 0x39, 0xb9, 0x79, 0xf9,
  103.     0x05, 0x85, 0x45, 0xc5, 0x25, 0xa5, 0x65, 0xe5,
  104.     0x15, 0x95, 0x55, 0xd5, 0x35, 0xb5, 0x75, 0xf5,
  105.     0x0d, 0x8d, 0x4d, 0xcd, 0x2d, 0xad, 0x6d, 0xed,
  106.     0x1d, 0x9d, 0x5d, 0xdd, 0x3d, 0xbd, 0x7d, 0xfd,
  107.     0x03, 0x83, 0x43, 0xc3, 0x23, 0xa3, 0x63, 0xe3,
  108.     0x13, 0x93, 0x53, 0xd3, 0x33, 0xb3, 0x73, 0xf3,
  109.     0x0b, 0x8b, 0x4b, 0xcb, 0x2b, 0xab, 0x6b, 0xeb,
  110.     0x1b, 0x9b, 0x5b, 0xdb, 0x3b, 0xbb, 0x7b, 0xfb,
  111.     0x07, 0x87, 0x47, 0xc7, 0x27, 0xa7, 0x67, 0xe7,
  112.     0x17, 0x97, 0x57, 0xd7, 0x37, 0xb7, 0x77, 0xf7,
  113.     0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef,
  114.     0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff,
  115. };
  116.  
  117. static inline void
  118. fddi_print(p, length)
  119.     u_char *p;
  120.     int length;
  121. {
  122.     u_char fsrc[6], fdst[6];
  123.     register char *srcname, *dstname;
  124.     register int i;
  125.  
  126.     /*
  127.      * bit-swap the fddi addresses (isn't the IEEE standards
  128.      * process wonderful!) then convert them to names. 
  129.      */
  130.     
  131.     for (i = 0; i < sizeof(fdst); ++i)
  132.         fdst[i] = fddi_bit_swap[p[i+1]];
  133.     for (i = 0; i < sizeof(fsrc); ++i)
  134.         fsrc[i] = fddi_bit_swap[p[i+7]];
  135.     dstname = etheraddr_string(fdst);
  136.     srcname = etheraddr_string(fsrc);
  137.  
  138.     if (vflag)
  139.         printf("%s %s %02x %02x %02x %02x %02x%02x%02x %s %d: ",
  140.                dstname, srcname,
  141.                p[0],
  142.                p[13], p[14], p[15],
  143.                p[16], p[17], p[18],
  144.                etherproto_string((p[19] << 8) | p[20]),
  145.                length);
  146.     else if (qflag)
  147.         printf("%s %s %d: ", dstname, srcname, length);
  148.     else
  149.         printf("%s %s %02x %s %d: ",
  150.                dstname, srcname,
  151.                p[0],
  152.                etherproto_string((p[19] << 8) | p[20]),
  153.                length);
  154. }
  155.  
  156. void
  157. fddi_if_print(p, tvp, length, caplen)
  158.     u_char *p;
  159.     struct timeval *tvp;
  160.     int length;
  161.     int caplen;
  162. {
  163.     struct ip *ip;
  164.     u_short type;
  165.  
  166.     ts_print(tvp);
  167.  
  168.     if (caplen < FDDI_HDRLEN) {
  169.         printf("[|fddi]");
  170.         goto out;
  171.     }
  172.  
  173.     /*
  174.      * Some printers want to get back at the link level addresses,
  175.      * and/or check that they're not walking off the end of the packet.
  176.      * Rather than pass them all the way down, we set these globals.
  177.      */
  178.     packetp = (u_char *)p;
  179.     snapend = (u_char *)p + caplen;
  180.  
  181.     /*
  182.      * If the frame is not an LLC frame or is not an LLC/UI frame
  183.      * or doesn't have SNAP as a dest NSAP, use the default printer.
  184.      * (XXX - should interpret SMT packets here.)
  185.      */
  186.     if ((p[0] & 0xf8) != 0x50)
  187.         /* not LLC frame -- use default printer */
  188.         type = 0;
  189.     else if ((p[15] &~ 0x10) != 0x03)
  190.         /* not UI frame -- use default printer */
  191.         type = 0;
  192.     else if (p[13] != 170)
  193.         /* DSAP not SNAP -- use default printer */
  194.         type = 0;
  195.     else
  196.         type = (p[19] << 8) | p[20];
  197.     if (eflag)
  198.         fddi_print(p, length);
  199.  
  200.     length -= FDDI_HDRLEN;
  201.     p += FDDI_HDRLEN;
  202.  
  203.     switch (ntohs(type)) {
  204.  
  205.     case ETHERTYPE_IP:
  206.         ip_print((struct ip *)p, length);
  207.         break;
  208.  
  209.     case ETHERTYPE_ARP:
  210.     case ETHERTYPE_REVARP:
  211.         arp_print((struct ether_arp *)p, length, caplen - FDDI_HDRLEN);
  212.         break;
  213.  
  214.     default:
  215.         if (!eflag)
  216.             fddi_print(p, length);
  217.         if (!xflag && !qflag)
  218.             default_print((u_short *)p, caplen - FDDI_HDRLEN);
  219.         break;
  220.     }
  221.     if (xflag)
  222.         default_print((u_short *)p, caplen - sizeof(FDDI_HDRLEN));
  223. out:
  224.     putchar('\n');
  225. }
  226. #else
  227. #include <stdio.h>
  228. void
  229. fddi_if_print()
  230. {
  231.     void error();
  232.  
  233.     error("not configured for fddi");
  234.     /* NOTREACHED */
  235. }
  236. #endif
  237.