aboutsummaryrefslogtreecommitdiffstats
path: root/epan/circuit.c
blob: 3f8a192159fd8fdd57d3ace36812ffd52f8cc389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/* circuit.c
 * Routines for building lists of packets that are part of a "circuit"
 *
 * $Id: circuit.c,v 1.3 2002/10/31 07:12:38 guy Exp $
 *
 * Ethereal - Network traffic analyzer
 * By Gerald Combs <gerald@ethereal.com>
 * Copyright 1998 Gerald Combs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include <stdio.h>

#include <string.h>
#include <glib.h>
#include "packet.h"
#include "circuit.h"

/*
 * Hash table for circuits.
 */
static GHashTable *circuit_hashtable = NULL;

static GMemChunk *circuit_key_chunk = NULL;
static GMemChunk *circuit_chunk = NULL;

static guint32 new_index;

static int circuit_init_count = 200;

/*
 * Protocol-specific data attached to a circuit_t structure - protocol
 * index and opaque pointer.
 */
typedef struct _circuit_proto_data {
	int	proto;
	void	*proto_data;
} circuit_proto_data;

static GMemChunk *circuit_proto_data_area = NULL;

/*
 * Compute the hash value for a circuit.
 */
static guint
circuit_hash(gconstpointer v)
{
	circuit_key *key = (circuit_key *)v;

	return key->ctype ^ key->circuit_id;
}

/*
 * Compare two circuit keys.
 */
static gint
circuit_match(gconstpointer v, gconstpointer w)
{
	circuit_key *v1 = (circuit_key *)v;
	circuit_key *v2 = (circuit_key *)w;

	return v1->ctype == v2->ctype && v1->circuit_id == v2->circuit_id;
}

/*
 * Initialize some variables every time a file is loaded or re-loaded.
 * Destroy all existing circuits, and create a new hash table
 * for the circuits in the new file.
 */
void
circuit_init(void)
{
	if (circuit_hashtable != NULL)
		g_hash_table_destroy(circuit_hashtable);
	if (circuit_key_chunk != NULL)
		g_mem_chunk_destroy(circuit_key_chunk);
	if (circuit_chunk != NULL)
		g_mem_chunk_destroy(circuit_chunk);

	/*
	 * Free up any space allocated for circuit protocol data
	 * areas.
	 *
	 * We can free the space, as the structures it contains are
	 * pointed to by circuit data structures that were freed
	 * above.
	 */
	if (circuit_proto_data_area != NULL)
		g_mem_chunk_destroy(circuit_proto_data_area);

	circuit_hashtable = g_hash_table_new(circuit_hash, circuit_match);
	circuit_key_chunk = g_mem_chunk_new("circuit_key_chunk",
	    sizeof(circuit_key),
	    circuit_init_count * sizeof(struct circuit_key),
	    G_ALLOC_AND_FREE);
	circuit_chunk = g_mem_chunk_new("circuit_chunk",
	    sizeof(circuit_t),
	    circuit_init_count * sizeof(circuit_t),
	    G_ALLOC_AND_FREE);

	/*
	 * Allocate a new area for circuit protocol data items.
	 */
	circuit_proto_data_area = g_mem_chunk_new("circuit_proto_data_area",
	    sizeof(circuit_proto_data), 20 * sizeof(circuit_proto_data), /* FIXME*/
	    G_ALLOC_ONLY);

	/*
	 * Start the circuit indices over at 0.
	 */
	new_index = 0;
}

/*
 * Given a circuit type and circuit ID for a packet, create a new circuit
 * to contain packets for that circuit.
 */
circuit_t *
circuit_new(circuit_type ctype, guint32 circuit_id)
{
	circuit_t *circuit;
	circuit_key *new_key;

	new_key = g_mem_chunk_alloc(circuit_key_chunk);
	new_key->ctype = ctype;
	new_key->circuit_id = circuit_id;

	circuit = g_mem_chunk_alloc(circuit_chunk);
	circuit->index = new_index;
	circuit->data_list = NULL;

/* clear dissector handle */
	circuit->dissector_handle = NULL;

/* set the options and key pointer */
	circuit->key_ptr = new_key;

	new_index++;

	g_hash_table_insert(circuit_hashtable, new_key, circuit);

	return circuit;
}

/*
 * Given a circuit type and ID, search for the corresponding circuit.
 * Returns NULL if not found.
 */
circuit_t *
find_circuit(circuit_type ctype, guint32 circuit_id)
{
	circuit_key key;

	key.ctype = ctype;
	key.circuit_id = circuit_id;
	return g_hash_table_lookup(circuit_hashtable, &key);
}

static gint
p_compare(gconstpointer a, gconstpointer b)
{
	if (((circuit_proto_data *)a)->proto > ((circuit_proto_data *)b)->proto)
		return 1;
	else if (((circuit_proto_data *)a)->proto == ((circuit_proto_data *)b)->proto)
		return 0;
	else
		return -1;
}

void
circuit_add_proto_data(circuit_t *conv, int proto, void *proto_data)
{
	circuit_proto_data *p1 = g_mem_chunk_alloc(circuit_proto_data_area);

	p1->proto = proto;
	p1->proto_data = proto_data;

	/* Add it to the list of items for this circuit. */

	conv->data_list = g_slist_insert_sorted(conv->data_list, (gpointer *)p1,
	    p_compare);
}

void *
circuit_get_proto_data(circuit_t *conv, int proto)
{
	circuit_proto_data temp, *p1;
	GSList *item;

	temp.proto = proto;
	temp.proto_data = NULL;

	item = g_slist_find_custom(conv->data_list, (gpointer *)&temp,
	    p_compare);

	if (item != NULL) {
		p1 = (circuit_proto_data *)item->data;
		return p1->proto_data;
	}

	return NULL;
}

void
circuit_delete_proto_data(circuit_t *conv, int proto)
{
	circuit_proto_data temp;
	GSList *item;

	temp.proto = proto;
	temp.proto_data = NULL;

	item = g_slist_find_custom(conv->data_list, (gpointer *)&temp,
	    p_compare);

	if (item != NULL)
		conv->data_list = g_slist_remove(conv->data_list, item);
}

void
circuit_set_dissector(circuit_t *circuit, dissector_handle_t handle)
{
	circuit->dissector_handle = handle;
}

dissector_handle_t
circuit_get_dissector(circuit_t *circuit)
{
	return circuit->dissector_handle;
}

/*
 * Given a circuit type and ID for a packet, search for a matching
 * circuit and, if found and it has a circuit dissector,
 * call that dissector and return TRUE, otherwise return FALSE.
 */
gboolean
try_circuit_dissector(circuit_type ctype, guint32 circuit_id, tvbuff_t *tvb,
    packet_info *pinfo, proto_tree *tree)
{
	circuit_t *circuit;

	circuit = find_circuit(ctype, circuit_id);

	if (circuit != NULL) {
		if (circuit->dissector_handle == NULL)
			return FALSE;
		call_dissector(circuit->dissector_handle, tvb, pinfo,
		    tree);
		return TRUE;
	}
	return FALSE;
}