Update Free Software Foundation address.
[metze/wireshark/wip.git] / epan / dissectors / packet-pcli.c
1 /* packet-pcli.c
2  * Routines for Packet Cable Lawful Intercept packet disassembly
3  * Packet Cable Lawful Intercept is detailed at
4  * http://www.cablelabs.com/specifications/archives/PKT-SP-ESP-I01-991229.pdf
5  * Chapter 4 ( Call Content Connection Interface )
6  *
7  * $Id$
8  *
9  * Copyright (c) 2000 by Ed Warnicke <hagbard@physics.rutgers.edu>
10  *
11  * Wireshark - Network traffic analyzer
12  * By Gerald Combs <gerald@wireshark.org>
13  * Copyright 1999 Gerald Combs
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28  */
29
30 /* Include files */
31
32 #ifdef HAVE_CONFIG_H
33 #include "config.h"
34 #endif
35
36 #include <glib.h>
37
38 #include <epan/packet.h>
39 #include <epan/addr_resolv.h>
40 #include <epan/prefs.h>
41 #include <epan/strutil.h>
42
43 /* Define udp_port for lawful intercept */
44
45 #define UDP_PORT_PCLI 9000
46
47 void proto_reg_handoff_pcli(void);
48
49 /* Define the pcli proto */
50
51 static int proto_pcli = -1;
52
53 /* Define headers for pcli */
54
55 static int hf_pcli_cccid = -1;
56
57 /* Define the tree for pcli */
58
59 static int ett_pcli = -1;
60
61 /*
62  * Here are the global variables associated with the preferences
63  * for pcli
64  */
65
66 static guint global_udp_port_pcli = UDP_PORT_PCLI;
67
68 /* A static handle for the ip dissector */
69 static dissector_handle_t ip_handle;
70
71 static void
72 dissect_pcli(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
73
74   guint32 cccid;
75   proto_tree *ti,*pcli_tree;
76   tvbuff_t * next_tvb;
77
78   /* Set the protocol column */
79   col_set_str(pinfo->cinfo, COL_PROTOCOL, "PCLI");
80
81   /* Get the CCCID */
82   cccid = tvb_get_ntohl(tvb,0);
83
84   /* Set the info column */
85   if(check_col(pinfo->cinfo,COL_INFO)){
86     col_add_fstr(pinfo->cinfo, COL_INFO, "CCCID: %u",cccid);
87   }
88
89   /*
90    *If we have a non-null tree (ie we are building the proto_tree
91    * instead of just filling out the columns ), then add a PLCI
92    * tree node and put a CCCID header element under it.
93    */
94   if(tree) {
95     ti = proto_tree_add_item(tree,proto_pcli,tvb,0,0,ENC_NA);
96     pcli_tree = proto_item_add_subtree(ti,ett_pcli);
97     proto_tree_add_uint(pcli_tree,hf_pcli_cccid,tvb,
98                         0,4,cccid);
99   }
100
101   /*
102    * Hand off to the IP dissector.
103    */
104   next_tvb = tvb_new_subset_remaining(tvb,4);
105   call_dissector(ip_handle,next_tvb,pinfo,tree);
106 }
107
108 void
109 proto_register_pcli(void) {
110   static hf_register_info hf[] = {
111     { &hf_pcli_cccid,
112       { "CCCID", "pcli.cccid", FT_UINT32, BASE_DEC, NULL, 0x0,
113         "Call Content Connection Identifier", HFILL }},
114   };
115
116   static gint *ett[] = {
117     &ett_pcli,
118   };
119
120   module_t *pcli_module;
121
122   proto_pcli = proto_register_protocol("Packet Cable Lawful Intercept",
123                                        "PCLI","pcli");
124   proto_register_field_array(proto_pcli,hf,array_length(hf));
125   proto_register_subtree_array(ett,array_length(ett));
126
127   pcli_module = prefs_register_protocol(proto_pcli,
128                                         proto_reg_handoff_pcli);
129   prefs_register_uint_preference(pcli_module, "udp_port",
130                                  "PCLI UDP Port",
131                                  "The UDP port on which "
132                                  "Packet Cable Lawful Intercept "
133                                  "packets will be sent",
134                                  10,&global_udp_port_pcli);
135
136 }
137
138 /* The registration hand-off routing */
139
140 void
141 proto_reg_handoff_pcli(void) {
142   static gboolean pcli_initialized = FALSE;
143   static dissector_handle_t pcli_handle;
144   static guint udp_port_pcli;
145
146   if(!pcli_initialized) {
147     pcli_handle = create_dissector_handle(dissect_pcli,proto_pcli);
148     ip_handle = find_dissector("ip");
149     pcli_initialized = TRUE;
150   } else {
151     dissector_delete_uint("udp.port",udp_port_pcli,pcli_handle);
152   }
153
154   udp_port_pcli = global_udp_port_pcli;
155
156   dissector_add_uint("udp.port",global_udp_port_pcli,pcli_handle);
157 }