1999-11-21 11:52:11 +08:00
|
|
|
/*
|
2002-06-12 01:08:37 +08:00
|
|
|
* Marko Kiiskila carnil@cs.tut.fi
|
|
|
|
*
|
1999-11-21 11:52:11 +08:00
|
|
|
* Tampere University of Technology - Telecommunications Laboratory
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this
|
|
|
|
* software and its documentation is hereby granted,
|
|
|
|
* provided that both the copyright notice and this
|
|
|
|
* permission notice appear in all copies of the software,
|
|
|
|
* derivative works or modified versions, and any portions
|
|
|
|
* thereof, that both notices appear in supporting
|
|
|
|
* documentation, and that the use of this software is
|
|
|
|
* acknowledged in any publications resulting from using
|
|
|
|
* the software.
|
2002-06-12 01:08:37 +08:00
|
|
|
*
|
1999-11-21 11:52:11 +08:00
|
|
|
* TUT ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION AND DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS
|
|
|
|
* SOFTWARE.
|
2002-06-12 01:08:37 +08:00
|
|
|
*
|
1999-11-21 11:52:11 +08:00
|
|
|
*/
|
|
|
|
|
1999-11-21 17:36:43 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
1999-11-21 11:52:11 +08:00
|
|
|
#endif
|
|
|
|
|
2002-08-01 16:52:55 +08:00
|
|
|
#include <tcpdump-stdinc.h>
|
1999-11-21 11:52:11 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "interface.h"
|
2002-12-11 15:13:49 +08:00
|
|
|
#include "extract.h"
|
2000-09-23 16:03:27 +08:00
|
|
|
#include "ether.h"
|
2013-12-31 14:52:15 +08:00
|
|
|
|
|
|
|
#ifndef ETHER_ADDR_LEN
|
|
|
|
#define ETHER_ADDR_LEN 6
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct lecdatahdr_8023 {
|
|
|
|
u_int16_t le_header;
|
|
|
|
u_int8_t h_dest[ETHER_ADDR_LEN];
|
|
|
|
u_int8_t h_source[ETHER_ADDR_LEN];
|
|
|
|
u_int16_t h_type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct lane_controlhdr {
|
|
|
|
u_int16_t lec_header;
|
|
|
|
u_int8_t lec_proto;
|
|
|
|
u_int8_t lec_vers;
|
|
|
|
u_int16_t lec_opcode;
|
|
|
|
};
|
1999-11-21 11:52:11 +08:00
|
|
|
|
2002-07-11 17:17:21 +08:00
|
|
|
static const struct tok lecop2str[] = {
|
|
|
|
{ 0x0001, "configure request" },
|
|
|
|
{ 0x0101, "configure response" },
|
|
|
|
{ 0x0002, "join request" },
|
|
|
|
{ 0x0102, "join response" },
|
|
|
|
{ 0x0003, "ready query" },
|
|
|
|
{ 0x0103, "ready indication" },
|
|
|
|
{ 0x0004, "register request" },
|
|
|
|
{ 0x0104, "register response" },
|
|
|
|
{ 0x0005, "unregister request" },
|
|
|
|
{ 0x0105, "unregister response" },
|
|
|
|
{ 0x0006, "ARP request" },
|
|
|
|
{ 0x0106, "ARP response" },
|
|
|
|
{ 0x0007, "flush request" },
|
|
|
|
{ 0x0107, "flush response" },
|
|
|
|
{ 0x0008, "NARP request" },
|
|
|
|
{ 0x0009, "topology request" },
|
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
2010-02-22 04:44:53 +08:00
|
|
|
static void
|
2010-10-08 02:36:49 +08:00
|
|
|
lane_hdr_print(netdissect_options *ndo, const u_char *bp)
|
1999-11-21 11:52:11 +08:00
|
|
|
{
|
2010-11-07 10:53:17 +08:00
|
|
|
(void)ND_PRINT((ndo, "lecid:%x ", EXTRACT_16BITS(bp)));
|
1999-11-21 11:52:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2002-09-06 05:25:34 +08:00
|
|
|
* This is the top level routine of the printer. 'p' points
|
|
|
|
* to the LANE header of the packet, 'h->ts' is the timestamp,
|
2004-03-18 07:24:35 +08:00
|
|
|
* 'h->len' is the length of the packet off the wire, and 'h->caplen'
|
1999-11-21 11:52:11 +08:00
|
|
|
* is the number of bytes actually captured.
|
2002-07-11 17:17:21 +08:00
|
|
|
*
|
|
|
|
* This assumes 802.3, not 802.5, LAN emulation.
|
1999-11-21 11:52:11 +08:00
|
|
|
*/
|
|
|
|
void
|
2002-07-11 17:17:21 +08:00
|
|
|
lane_print(const u_char *p, u_int length, u_int caplen)
|
1999-11-21 11:52:11 +08:00
|
|
|
{
|
2002-07-11 17:17:21 +08:00
|
|
|
struct lane_controlhdr *lec;
|
1999-11-21 11:52:11 +08:00
|
|
|
|
2002-07-11 17:17:21 +08:00
|
|
|
if (caplen < sizeof(struct lane_controlhdr)) {
|
|
|
|
printf("[|lane]");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lec = (struct lane_controlhdr *)p;
|
2002-12-11 15:13:49 +08:00
|
|
|
if (EXTRACT_16BITS(&lec->lec_header) == 0xff00) {
|
2002-07-11 17:17:21 +08:00
|
|
|
/*
|
|
|
|
* LE Control.
|
|
|
|
*/
|
|
|
|
printf("lec: proto %x vers %x %s",
|
|
|
|
lec->lec_proto, lec->lec_vers,
|
2002-12-11 15:13:49 +08:00
|
|
|
tok2str(lecop2str, "opcode-#%u", EXTRACT_16BITS(&lec->lec_opcode)));
|
2002-07-11 17:17:21 +08:00
|
|
|
return;
|
|
|
|
}
|
1999-11-21 11:52:11 +08:00
|
|
|
|
Add a new routine "default_print_packet()", which takes a pointer to the
beginning of the raw packet data, the captured length of the raw packet
data, and the length of the link-layer header, and:
if "-e" was specified, prints all the raw packet data;
if "-e" was not specified, prints all the raw packet data past
the link-layer header, if there is any.
Use that routine in all the "xxx_if_print()" routines if "-x" was
specified.
Make "arcnet_encap_print()" static - it's not used outside
"print-arcnet.c".
Add missing info printing code to "atm_if_print()".
Print the packet data in "lane_if_print()", not in "lane_print()", as
"lane_print()" can be called from other "xxx_if_print()" routines, and
those routines will also print the packet data if "-x" was specified -
no need to print it twice.
2002-12-18 17:41:13 +08:00
|
|
|
/*
|
2010-02-22 04:44:53 +08:00
|
|
|
* Go past the LE header.
|
Add a new routine "default_print_packet()", which takes a pointer to the
beginning of the raw packet data, the captured length of the raw packet
data, and the length of the link-layer header, and:
if "-e" was specified, prints all the raw packet data;
if "-e" was not specified, prints all the raw packet data past
the link-layer header, if there is any.
Use that routine in all the "xxx_if_print()" routines if "-x" was
specified.
Make "arcnet_encap_print()" static - it's not used outside
"print-arcnet.c".
Add missing info printing code to "atm_if_print()".
Print the packet data in "lane_if_print()", not in "lane_print()", as
"lane_print()" can be called from other "xxx_if_print()" routines, and
those routines will also print the packet data if "-x" was specified -
no need to print it twice.
2002-12-18 17:41:13 +08:00
|
|
|
*/
|
2010-02-22 04:44:53 +08:00
|
|
|
length -= 2;
|
|
|
|
caplen -= 2;
|
|
|
|
p += 2;
|
1999-11-21 11:52:11 +08:00
|
|
|
|
|
|
|
/*
|
2010-02-22 04:44:53 +08:00
|
|
|
* Now print the encapsulated frame, under the assumption
|
|
|
|
* that it's an Ethernet frame.
|
1999-11-21 11:52:11 +08:00
|
|
|
*/
|
2010-10-08 02:36:49 +08:00
|
|
|
ether_print(gndo, p, length, caplen, lane_hdr_print, p - 2);
|
2002-07-11 17:17:21 +08:00
|
|
|
}
|
|
|
|
|
2002-12-19 17:39:10 +08:00
|
|
|
u_int
|
|
|
|
lane_if_print(const struct pcap_pkthdr *h, const u_char *p)
|
2002-07-11 17:17:21 +08:00
|
|
|
{
|
2002-12-19 17:39:10 +08:00
|
|
|
lane_print(p, h->len, h->caplen);
|
2002-07-11 17:17:21 +08:00
|
|
|
|
2002-12-19 17:39:10 +08:00
|
|
|
return (sizeof(struct lecdatahdr_8023));
|
1999-11-21 11:52:11 +08:00
|
|
|
}
|