1 /* 2 * Oracle 3 */ 4 #define NETDISSECT_REWORKED 5 #ifdef HAVE_CONFIG_H 6 #include "config.h" 7 #endif 8 9 #include <tcpdump-stdinc.h> 10 11 #include "interface.h" 12 #include "extract.h" 13 14 typedef struct ppi_header { 15 uint8_t ppi_ver; 16 uint8_t ppi_flags; 17 uint16_t ppi_len; 18 uint32_t ppi_dlt; 19 } ppi_header_t; 20 21 #define PPI_HDRLEN 8 22 23 #ifdef DLT_PPI 24 25 static inline void 26 ppi_header_print(netdissect_options *ndo, const u_char *bp, u_int length) 27 { 28 const ppi_header_t *hdr; 29 uint32_t dlt; 30 uint16_t len; 31 32 hdr = (const ppi_header_t *)bp; 33 34 len = EXTRACT_LE_16BITS(&hdr->ppi_len); 35 dlt = EXTRACT_LE_32BITS(&hdr->ppi_dlt); 36 37 if (!ndo->ndo_qflag) { 38 ND_PRINT((ndo,", V.%d DLT %s (%d) len %d", hdr->ppi_ver, 39 pcap_datalink_val_to_name(dlt), dlt, 40 len)); 41 } else { 42 ND_PRINT((ndo,", %s", pcap_datalink_val_to_name(dlt))); 43 } 44 45 ND_PRINT((ndo, ", length %u: ", length)); 46 } 47 48 static void 49 ppi_print(netdissect_options *ndo, 50 const struct pcap_pkthdr *h, const u_char *p) 51 { 52 if_ndo_printer ndo_printer; 53 if_printer printer; 54 ppi_header_t *hdr; 55 u_int caplen = h->caplen; 56 u_int length = h->len; 57 uint32_t dlt; 58 59 if (caplen < sizeof(ppi_header_t)) { 60 ND_PRINT((ndo, "[|ppi]")); 61 return; 62 } 63 hdr = (ppi_header_t *)p; 64 dlt = EXTRACT_LE_32BITS(&hdr->ppi_dlt); 65 66 if (ndo->ndo_eflag) 67 ppi_header_print(ndo, p, length); 68 69 length -= sizeof(ppi_header_t); 70 caplen -= sizeof(ppi_header_t); 71 p += sizeof(ppi_header_t); 72 73 if ((printer = lookup_printer(dlt)) != NULL) { 74 printer(h, p); 75 } else if ((ndo_printer = lookup_ndo_printer(dlt)) != NULL) { 76 ndo_printer(ndo, h, p); 77 } else { 78 if (!ndo->ndo_eflag) 79 ppi_header_print(ndo, (u_char *)hdr, 80 length + sizeof(ppi_header_t)); 81 82 if (!ndo->ndo_suppress_default_print) 83 ND_DEFAULTPRINT(p, caplen); 84 } 85 } 86 87 /* 88 * This is the top level routine of the printer. 'p' points 89 * to the ether header of the packet, 'h->ts' is the timestamp, 90 * 'h->len' is the length of the packet off the wire, and 'h->caplen' 91 * is the number of bytes actually captured. 92 */ 93 u_int 94 ppi_if_print(netdissect_options *ndo, 95 const struct pcap_pkthdr *h, const u_char *p) 96 { 97 ppi_print(ndo, h, p); 98 99 return (sizeof(ppi_header_t)); 100 } 101 102 /* 103 * Local Variables: 104 * c-style: whitesmith 105 * c-basic-offset: 8 106 * End: 107 */ 108 109 #endif /* DLT_PPI */ 110