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
|
|
|
*/
|
|
|
|
|
2016-08-14 21:42:19 +08:00
|
|
|
/* \summary: ATM LANE printer */
|
|
|
|
|
2018-01-22 04:27:08 +08:00
|
|
|
#include <config.h>
|
1999-11-21 11:52:11 +08:00
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
1999-11-21 11:52:11 +08:00
|
|
|
|
2020-10-25 23:03:49 +08:00
|
|
|
#define ND_LONGJMP_FROM_TCHECK
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
2002-12-11 15:13:49 +08:00
|
|
|
#include "extract.h"
|
2013-12-31 14:52:15 +08:00
|
|
|
|
|
|
|
struct lecdatahdr_8023 {
|
2017-12-31 07:22:16 +08:00
|
|
|
nd_uint16_t le_header;
|
2023-07-14 15:27:39 +08:00
|
|
|
nd_mac48 h_dest;
|
|
|
|
nd_mac48 h_source;
|
2017-12-31 07:22:16 +08:00
|
|
|
nd_uint16_t h_type;
|
2013-12-31 14:52:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct lane_controlhdr {
|
2017-12-31 07:22:16 +08:00
|
|
|
nd_uint16_t lec_header;
|
|
|
|
nd_uint8_t lec_proto;
|
|
|
|
nd_uint8_t lec_vers;
|
|
|
|
nd_uint16_t lec_opcode;
|
2013-12-31 14:52:15 +08:00
|
|
|
};
|
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
|
|
|
{
|
2018-06-16 23:23:21 +08:00
|
|
|
ND_PRINT("lecid:%x ", GET_BE_U_2(bp));
|
1999-11-21 11:52:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
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
|
2014-03-07 21:52:45 +08:00
|
|
|
lane_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen)
|
1999-11-21 11:52:11 +08:00
|
|
|
{
|
2015-04-27 08:24:42 +08:00
|
|
|
const struct lane_controlhdr *lec;
|
1999-11-21 11:52:11 +08:00
|
|
|
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "lane";
|
2002-07-11 17:17:21 +08:00
|
|
|
|
2015-04-27 08:24:42 +08:00
|
|
|
lec = (const struct lane_controlhdr *)p;
|
2018-06-16 23:23:21 +08:00
|
|
|
if (GET_BE_U_2(lec->lec_header) == 0xff00) {
|
2002-07-11 17:17:21 +08:00
|
|
|
/*
|
|
|
|
* LE Control.
|
|
|
|
*/
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("lec: proto %x vers %x %s",
|
2020-10-25 23:03:49 +08:00
|
|
|
GET_U_1(lec->lec_proto),
|
|
|
|
GET_U_1(lec->lec_vers),
|
|
|
|
tok2str(lecop2str, "opcode-#%u", GET_BE_U_2(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
|
|
|
*/
|
2020-10-25 23:03:49 +08:00
|
|
|
ND_TCHECK_2(p); /* Needed */
|
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
|
|
|
*/
|
2020-08-01 20:05:59 +08:00
|
|
|
ether_print(ndo, p, length, caplen, lane_hdr_print, p - 2);
|
2002-07-11 17:17:21 +08:00
|
|
|
}
|