]>
The Tcpdump Group git mirrors - tcpdump/blob - print-loopback.c
ee0caf3cfe4f3ab4e97564bf6a5500d6dc04b220
2 * Copyright (c) 2014 The TCPDUMP project
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
17 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
18 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
24 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
28 /* \summary: Loopback Protocol printer */
31 * originally defined as the Ethernet Configuration Testing Protocol.
32 * specification: https://www.mit.edu/people/jhawk/ctp.pdf
39 #include "netdissect-stdinc.h"
41 #define ND_LONGJMP_FROM_TCHECK
42 #include "netdissect.h"
44 #include "addrtoname.h"
47 #define LOOPBACK_REPLY 1
48 #define LOOPBACK_FWDDATA 2
50 static const struct tok fcode_str
[] = {
51 { LOOPBACK_REPLY
, "Reply" },
52 { LOOPBACK_FWDDATA
, "Forward Data" },
57 loopback_message_print(netdissect_options
*ndo
,
58 const u_char
*cp
, u_int len
)
65 function
= GET_LE_U_2(cp
);
68 ND_PRINT(", %s", tok2str(fcode_str
, " invalid (%u)", function
));
75 ND_PRINT(", receipt number %u", GET_LE_U_2(cp
));
79 ND_PRINT(", data (%u octets)", len
);
80 ND_TCHECK_LEN(cp
, len
);
82 case LOOPBACK_FWDDATA
:
83 if (len
< MAC_ADDR_LEN
)
85 /* forwarding address */
86 ND_PRINT(", forwarding address %s", GET_ETHERADDR_STRING(cp
));
90 ND_PRINT(", data (%u octets)", len
);
91 ND_TCHECK_LEN(cp
, len
);
94 ND_TCHECK_LEN(cp
, len
);
100 nd_print_invalid(ndo
);
101 ND_TCHECK_LEN(cp
, len
);
105 loopback_print(netdissect_options
*ndo
,
106 const u_char
*cp
, u_int len
)
110 ndo
->ndo_protocol
= "loopback";
111 ND_PRINT("Loopback");
115 skipCount
= GET_LE_U_2(cp
);
118 ND_PRINT(", skipCount %u", skipCount
);
120 ND_PRINT(" (bogus)");
123 /* the octets to skip */
124 ND_TCHECK_LEN(cp
, skipCount
);
127 /* the first message to decode */
128 loopback_message_print(ndo
, cp
, len
);
132 nd_print_invalid(ndo
);
133 ND_TCHECK_LEN(cp
, len
);