1 | /* |
---|
2 | * |
---|
3 | * Copyright (c) 2007-2016 The University of Waikato, Hamilton, New Zealand. |
---|
4 | * All rights reserved. |
---|
5 | * |
---|
6 | * This file is part of libtrace. |
---|
7 | * |
---|
8 | * This code has been developed by the University of Waikato WAND |
---|
9 | * research group. For further information please see http://www.wand.net.nz/ |
---|
10 | * |
---|
11 | * libtrace is free software; you can redistribute it and/or modify |
---|
12 | * it under the terms of the GNU Lesser General Public License as published by |
---|
13 | * the Free Software Foundation; either version 3 of the License, or |
---|
14 | * (at your option) any later version. |
---|
15 | * |
---|
16 | * libtrace is distributed in the hope that it will be useful, |
---|
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
19 | * GNU Lesser General Public License for more details. |
---|
20 | * |
---|
21 | * You should have received a copy of the GNU Lesser General Public License |
---|
22 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
23 | * |
---|
24 | * |
---|
25 | */ |
---|
26 | /* Decoder for CHDLC frames */ |
---|
27 | |
---|
28 | #include <sys/types.h> |
---|
29 | #include <netinet/in.h> |
---|
30 | #include <stdio.h> |
---|
31 | #include <inttypes.h> |
---|
32 | #include <dlfcn.h> |
---|
33 | #include "libtrace.h" |
---|
34 | #include "libpacketdump.h" |
---|
35 | |
---|
36 | typedef struct libtrace_chdlc_t { |
---|
37 | uint8_t address; /** 0xF0 for unicast, 0xF8 for multicast */ |
---|
38 | uint8_t control; /** Always 0x00 */ |
---|
39 | uint16_t ethertype; |
---|
40 | } libtrace_chdlc_t; |
---|
41 | |
---|
42 | |
---|
43 | DLLEXPORT void decode(int link_type UNUSED,const char *packet,unsigned len) |
---|
44 | { |
---|
45 | libtrace_chdlc_t *frame = (libtrace_chdlc_t *)packet; |
---|
46 | |
---|
47 | printf(" CHDLC:"); |
---|
48 | if (len >= 1) |
---|
49 | printf(" Address: 0x%02x", frame->address); |
---|
50 | else { |
---|
51 | printf("[|Truncated]\n"); |
---|
52 | return; |
---|
53 | } |
---|
54 | |
---|
55 | if (len >= 2) |
---|
56 | printf(" Control: 0x%02x", frame->control); |
---|
57 | else { |
---|
58 | printf("[|Truncated]\n"); |
---|
59 | return; |
---|
60 | } |
---|
61 | |
---|
62 | if (len >= 4) { |
---|
63 | printf(" Ethertype: 0x%04x\n", ntohs(frame->ethertype)); |
---|
64 | decode_next(packet + 4, len - 4, "eth", |
---|
65 | ntohs(frame->ethertype)); |
---|
66 | } |
---|
67 | else { |
---|
68 | printf("[|Truncated]\n"); |
---|
69 | return; |
---|
70 | } |
---|
71 | |
---|
72 | |
---|
73 | return; |
---|
74 | } |
---|