Add in some heuristics to try to detect AIX libpcap format. (This works
[obnox/wireshark/wip.git] / packet-bacapp.c
1 /* packet-bacapp.c
2  * Routines for BACnet (APDU) dissection
3  * Copyright 2001, Hartmut Mueller <hartmut@abmlinux.org>, FH Dortmund
4  *
5  * $Id: packet-bacapp.c,v 1.4 2001/06/18 02:17:44 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
10  *
11  * Copied from README.developer,v 1.23
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  * 
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35
36 #ifdef HAVE_SYS_TYPES_H
37 # include <sys/types.h>
38 #endif
39
40 #ifdef HAVE_NETINET_IN_H
41 # include <netinet/in.h>
42 #endif
43
44 #include <glib.h>
45
46 #ifdef NEED_SNPRINTF_H
47 # include "snprintf.h"
48 #endif
49
50 #include "packet.h"
51
52 static const char*
53 bacapp_type_name (guint8 bacapp_type){
54   static const char *type_names[] = {
55         "Confirmed-Request-PDU",
56         "Unconfirmed-Request-PDU",
57         "SimpleACK-PDU",
58         "ComplexACK-PDU",
59         "SegmentACK-PDU",
60         "Error-PDU",
61         "Reject-PDU",
62         "Abort-PDU"
63         };
64         return (bacapp_type > 7)? "unknown PDU" : type_names[bacapp_type];
65 }
66
67 static int proto_bacapp = -1;
68 static int hf_bacapp_type = -1;
69
70 static gint ett_bacapp = -1;
71
72 static void
73 dissect_bacapp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
74 {
75         proto_item *ti;
76         proto_tree *bacapp_tree;
77         guint8 offset;
78         guint8 bacapp_type;
79         tvbuff_t *next_tvb;
80
81         if (check_col(pinfo->fd, COL_PROTOCOL))
82                 col_set_str(pinfo->fd, COL_PROTOCOL, "BACnet-APDU");
83         if (check_col(pinfo->fd, COL_INFO))
84                 col_add_str(pinfo->fd, COL_INFO, "BACnet APDU ");
85
86         offset  = 0;
87         bacapp_type = (tvb_get_guint8(tvb, offset) >> 4) & 0x0f;
88
89         if (check_col(pinfo->fd, COL_INFO))
90                 col_append_fstr(pinfo->fd, COL_INFO, "(%s)",
91                 bacapp_type_name(bacapp_type));
92         if (tree) {
93                 ti = proto_tree_add_item(tree, proto_bacapp, tvb, offset, tvb_length(tvb), FALSE);
94
95                 bacapp_tree = proto_item_add_subtree(ti, ett_bacapp);
96
97                 proto_tree_add_uint_format(bacapp_tree, hf_bacapp_type, tvb, 
98                         offset, 1, bacapp_type, "APDU Type: %u (%s)", bacapp_type,
99                                 bacapp_type_name(bacapp_type));
100                 offset ++;
101
102         }
103         next_tvb = tvb_new_subset(tvb,offset,-1,-1);
104         dissect_data(next_tvb, 0, pinfo, tree);
105 }
106
107
108 void
109 proto_register_bacapp(void)
110 {
111         static hf_register_info hf[] = {
112                 { &hf_bacapp_type,
113                         { "APDU Type",           "bacapp.bacapp_type",
114                         FT_UINT8, BASE_DEC, NULL, 0xf0, "APDU Type", HFILL }
115                 },
116         };
117         static gint *ett[] = {
118                 &ett_bacapp,
119         };
120         proto_bacapp = proto_register_protocol("Building Automation and Control Network APDU",
121             "BACapp", "bacapp");
122         proto_register_field_array(proto_bacapp, hf, array_length(hf));
123         proto_register_subtree_array(ett, array_length(ett));
124 }
125 void
126 proto_reg_handoff_bacapp(void)
127 {
128         dissector_add("bacnet_control_net", 0, dissect_bacapp, proto_bacapp);
129 }