]>
The Tcpdump Group git mirrors - tcpdump/blob - print-loopback.c
2 * This module implements decoding of the the Loopback Protocol, originally
3 * defined as the Configuration Testing Protocol. It is based on the following
5 * http://www.mit.edu/people/jhawk/ctp.pdf
7 * Copyright (c) 2014 The TCPDUMP project
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
33 #define NETDISSECT_REWORKED
38 #include <tcpdump-stdinc.h>
40 #include "interface.h"
43 #include "addrtoname.h"
45 static const char tstr
[] = " [|loopback]";
46 static const char cstr
[] = " (corrupt)";
48 #define LOOPBACK_REPLY 1
49 #define LOOPBACK_FWDDATA 2
51 static const struct tok fcode_str
[] = {
52 { LOOPBACK_REPLY
, "Reply" },
53 { LOOPBACK_FWDDATA
, "Forward Data" },
58 loopback_message_print(netdissect_options
*ndo
, const u_char
*cp
, const u_int len
)
60 const u_char
*ep
= cp
+ len
;
67 function
= EXTRACT_LE_16BITS(cp
);
69 ND_PRINT((ndo
, ", %s", tok2str(fcode_str
, " invalid (%u)", function
)));
77 ND_PRINT((ndo
, ", receipt number %u", EXTRACT_LE_16BITS(cp
)));
80 ND_PRINT((ndo
, ", data (%u octets)", len
- 4));
81 ND_TCHECK2(*cp
, len
- 4);
83 case LOOPBACK_FWDDATA
:
86 /* forwarding address */
87 ND_TCHECK2(*cp
, ETHER_ADDR_LEN
);
88 ND_PRINT((ndo
, ", forwarding address %s", etheraddr_string(cp
)));
91 ND_PRINT((ndo
, ", data (%u octets)", len
- 8));
92 ND_TCHECK2(*cp
, len
- 8);
95 ND_TCHECK2(*cp
, len
- 2);
101 ND_PRINT((ndo
, "%s", cstr
));
102 ND_TCHECK2(*cp
, ep
- cp
);
105 ND_PRINT((ndo
, "%s", tstr
));
109 loopback_print(netdissect_options
*ndo
, const u_char
*cp
, const u_int len
)
111 const u_char
*ep
= cp
+ len
;
114 ND_PRINT((ndo
, "Loopback"));
119 skipCount
= EXTRACT_LE_16BITS(cp
);
121 ND_PRINT((ndo
, ", skipCount %u", skipCount
));
123 ND_PRINT((ndo
, " (bogus)"));
124 if (skipCount
> len
- 2)
126 loopback_message_print(ndo
, cp
+ skipCount
, len
- 2 - skipCount
);
130 ND_PRINT((ndo
, "%s", cstr
));
131 ND_TCHECK2(*cp
, ep
- cp
);
134 ND_PRINT((ndo
, "%s", tstr
));