Some old CPP or tools that take C code in input do
[obnox/wireshark/wip.git] / packet-atalk.c
1 /* packet-ddp.c
2  * Routines for DDP packet disassembly.
3  *
4  * Simon Wilkinson <sxw@dcs.ed.ac.uk>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19  */
20
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
24
25 #ifdef HAVE_SYS_TYPES_H
26 # include <sys/types.h>
27 #endif
28
29 #include <glib.h>
30 #include "globals.h"
31 #include "packet.h"
32
33 #ifdef HAVE_NETINET_IN_H
34 # include <netinet/in.h>
35 #endif
36
37 static int proto_ddp = -1;
38
39 /* P = Padding, H = Hops, L = Len */
40 #if BYTE_ORDER == BIG_ENDIAN
41  /* PPHHHHLL LLLLLLLL */
42 # define ddp_hops(x)    ( ( x >> 10) & 0x3C )
43 # define ddp_len(x)             ( x & 0x03ff )
44 #else
45  /* LLLLLLLL PPHHHHLL*/
46 # define ddp_hops(x)    ( x & 0x3C )
47 # define ddp_len(x)             ( ntohs(x) & 0x03ff )
48 #endif
49 typedef struct _e_ddp {
50   guint16       hops_len; /* combines pad, hops, and len */
51   guint16       sum,dnet,snet;
52   guint8        dnode,snode;
53   guint8        dport,sport;
54   guint8        type;
55 } e_ddp;
56
57 #define DDP_RTMPDATA    0x01
58 #define DDP_NBP         0x02
59 #define DDP_ATP         0x03
60 #define DDP_AEP         0x04
61 #define DDP_RTMPREQ     0x05
62 #define DDP_ZIP         0x06
63 #define DDP_ADSP        0x07
64
65 void
66 dissect_ddp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
67   e_ddp       ddp;
68   proto_tree *ddp_tree;
69   proto_item *ti;
70   value_string op_vals[] = { {DDP_RTMPDATA, "AppleTalk Routing Table response or data" },
71                              {DDP_NBP, "AppleTalk Name Binding Protocol packet"},
72                              {DDP_ATP, "AppleTalk Transaction Protocol packet"},
73                              {DDP_AEP, "AppleTalk Echo Protocol packet"},
74                              {DDP_RTMPREQ, "AppleTalk Routing Table request"},
75                              {DDP_ZIP, "AppleTalk Zone Information Protocol packet"},
76                              {DDP_ADSP, "AppleTalk Data Stream Protocol"},
77                              {0, NULL} };
78
79   memcpy(&ddp, &pd[offset], sizeof(e_ddp));
80   ddp.dnet=ntohs(ddp.dnet);
81   ddp.snet=ntohs(ddp.snet);
82   ddp.sum=ntohs(ddp.sum);
83   
84   if (check_col(fd, COL_RES_NET_SRC))
85     col_add_fstr(fd, COL_RES_NET_SRC, "%d.%d:%d", ddp.snet, ddp.snode, ddp.sport);
86   if (check_col(fd, COL_RES_NET_DST))
87     col_add_fstr(fd, COL_RES_NET_DST, "%d.%d:%d", ddp.dnet, ddp.dnode, ddp.dport);
88   if (check_col(fd, COL_PROTOCOL))
89     col_add_str(fd, COL_PROTOCOL, "DDP");
90   if (check_col(fd, COL_INFO))
91     col_add_str(fd, COL_INFO,
92       val_to_str(ddp.type, op_vals, "Unknown DDP protocol (%02x)"));
93   
94   if (tree) {
95     ti = proto_tree_add_item(tree, proto_ddp, offset, 13, NULL);
96     ddp_tree = proto_item_add_subtree(ti, ETT_IP);
97     proto_tree_add_text(ddp_tree, offset,      1, "Hop count: %d", ddp_hops(ddp.hops_len));
98     proto_tree_add_text(ddp_tree, offset,           2, "Datagram length: %d", ddp_len(ddp.hops_len));
99     proto_tree_add_text(ddp_tree, offset + 2,  2, "Checksum: %d",ddp.sum);
100     proto_tree_add_text(ddp_tree, offset + 4,  2, "Destination Net: %d",ddp.dnet);
101     proto_tree_add_text(ddp_tree, offset + 6,  2, "Source Net: %d",ddp.snet);
102     proto_tree_add_text(ddp_tree, offset + 8,  1, "Destination Node: %d",ddp.dnode);
103     proto_tree_add_text(ddp_tree, offset + 9,  1, "Source Node: %d",ddp.snode);
104     proto_tree_add_text(ddp_tree, offset + 10, 1, "Destination Socket: %d",ddp.dport);
105     proto_tree_add_text(ddp_tree, offset + 11, 1, "Source Socket: %d",ddp.sport);
106     proto_tree_add_text(ddp_tree, offset + 12, 1, "Type: %d",ddp.type);  
107   }
108
109   offset += 13;
110
111 }
112
113 void
114 proto_register_atalk(void)
115 {
116 /*        static hf_register_info hf[] = {
117                 { &variable,
118                 { "Name",           "ddp.abbreviation", TYPE, VALS_POINTER }},
119         };*/
120
121         proto_ddp = proto_register_protocol("Datagram Delivery Protocol", "ddp");
122  /*       proto_register_field_array(proto_ddp, hf, array_length(hf));*/
123 }