2 * Declarations of outines for {fragment,segment} reassembly
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 /* make sure that all flags that are set in a fragment entry is also set for
26 * the flags field of fd_head !!!
29 /* only in fd_head: packet is defragmented */
30 #define FD_DEFRAGMENTED 0x0001
32 /* there are overlapping fragments */
33 #define FD_OVERLAP 0x0002
35 /* overlapping fragments contain different data */
36 #define FD_OVERLAPCONFLICT 0x0004
38 /* more than one fragment which indicates end-of data */
39 #define FD_MULTIPLETAILS 0x0008
41 /* fragment contains data past the end of the datagram */
42 #define FD_TOOLONGFRAGMENT 0x0010
44 /* fragment data not alloc'ed, fd->data pointing to fd_head->data+fd->offset */
45 #define FD_NOT_MALLOCED 0x0020
47 /* this flag is used to request fragment_add to continue the reassembly process */
48 #define FD_PARTIAL_REASSEMBLY 0x0040
50 /* fragment offset is indicated by sequence number and not byte offset
51 into the defragmented packet */
52 #define FD_BLOCKSEQUENCE 0x0100
54 /* if REASSEMBLE_FLAGS_CHECK_DATA_PRESENT is set, and the first fragment is
55 * incomplete, this flag is set in the flags word on the fd_head returned.
57 * It's all a fudge to preserve historical behaviour.
59 #define FD_DATA_NOT_PRESENT 0x0200
61 /* This flag is set in (only) fd_head to denote that datalen has been set to a valid value.
62 * It's implied by FD_DEFRAGMENTED (we must know the total length of the
63 * datagram if we have defragmented it...)
65 #define FD_DATALEN_SET 0x0400
67 typedef struct _fragment_data {
68 struct _fragment_data *next;
72 guint32 datalen; /* Only valid in first item of list and when
73 * flags&FD_DATALEN_SET is set;
74 * number of bytes or (if flags&FD_BLOCKSEQUENCE set)
75 * segments in the datagram */
76 guint32 reassembled_in; /* frame where this PDU was reassembled,
77 only valid in the first item of the list
78 and when FD_DEFRAGMENTED is set*/
85 * Flags for fragment_add_seq_*
88 /* we don't have any sequence numbers - fragments are assumed to appear in
90 #define REASSEMBLE_FLAGS_NO_FRAG_NUMBER 0x0001
92 /* a special fudge for the 802.11 dissector */
93 #define REASSEMBLE_FLAGS_802_11_HACK 0x0002
95 /* causes fragment_add_seq_key to check that all the fragment data is present
96 * in the tvb, and if not, do something a bit odd. */
97 #define REASSEMBLE_FLAGS_CHECK_DATA_PRESENT 0x0004
99 /* a function for copying hash keys */
100 typedef void *(*fragment_key_copier)(const void *key);
104 * Initialize a fragment table.
106 extern void fragment_table_init(GHashTable **fragment_table);
107 extern void dcerpc_fragment_table_init(GHashTable **fragment_table);
110 * Initialize a reassembled-packet table.
112 extern void reassembled_table_init(GHashTable **reassembled_table);
115 * Free up all space allocated for fragment keys and data.
117 void reassemble_cleanup(void);
120 * Initialise fragment keys and data.
122 void reassemble_init(void);
125 * This function adds a new fragment to the fragment hash table.
126 * If this is the first fragment seen for this datagram, a new entry
127 * is created in the hash table, otherwise this fragment is just added
128 * to the linked list of fragments for this packet.
129 * The list of fragments for a specific datagram is kept sorted for
132 * Returns a pointer to the head of the fragment data list if we have all the
133 * fragments, NULL otherwise.
135 extern fragment_data *fragment_add(tvbuff_t *tvb, const int offset, const packet_info *pinfo,
136 const guint32 id, GHashTable *fragment_table, const guint32 frag_offset,
137 guint32 const frag_data_len, const gboolean more_frags);
138 extern fragment_data *fragment_add_multiple_ok(tvbuff_t *tvb, const int offset,
139 const packet_info *pinfo, const guint32 id, GHashTable *fragment_table,
140 const guint32 frag_offset, const guint32 frag_data_len, const gboolean more_frags);
143 * This routine extends fragment_add to use a "reassembled_table".
145 * If, after processing this fragment, we have all the fragments, they
146 * remove that from the fragment hash table if necessary and add it
147 * to the table of reassembled fragments, and return a pointer to the
148 * head of the fragment list.
150 extern fragment_data *fragment_add_check(tvbuff_t *tvb, const int offset,
151 const packet_info *pinfo, const guint32 id, GHashTable *fragment_table,
152 GHashTable *reassembled_table, const guint32 frag_offset,
153 const guint32 frag_data_len, const gboolean more_frags);
155 /* same as fragment_add() but this one assumes frag_number is a block
156 sequence number. note that frag_number is 0 for the first fragment. */
159 * These functions add a new fragment to the fragment hash table,
160 * assuming that frag_number is a block sequence number (starting from zero for
161 * the first fragment of each datagram).
163 * If this is the first fragment seen for this datagram, a new
164 * "fragment_data" structure is allocated to refer to the reassembled
167 * if "more_frags" is false, and either we have no sequence numbers, or
168 * are using the 802.11 hack, it is assumed that this is the only fragment
169 * in the datagram. The structure is not added to the hash
170 * table, and not given any fragments to refer to, but is just returned.
172 * In this latter case reassembly wasn't done (since there was only one
173 * fragment in the packet); dissectors can check the 'next' pointer on the
174 * returned list to see if this case was hit or not.
176 * Otherwise, this fragment is just added to the linked list of fragments
177 * for this packet; the fragment_data is also added to the fragment hash if
180 * If this packet completes assembly, these functions return the head of the
181 * fragment data; otherwise, they return null.
184 /* "key" should be an arbitrary key used for indexing the fragment hash;
185 * "key_copier" is called to copy the key to a more appropriate store before
186 * inserting a new entry to the hash.
188 extern fragment_data *
189 fragment_add_seq_key(tvbuff_t *tvb, const int offset, const packet_info *pinfo,
190 void *key, fragment_key_copier key_copier,
191 GHashTable *fragment_table, guint32 frag_number,
192 const guint32 frag_data_len, const gboolean more_frags,
193 const guint32 flags);
195 /* a wrapper for fragment_add_seq_key - uses a key of source, dest and id */
196 extern fragment_data *fragment_add_seq(tvbuff_t *tvb, const int offset, const packet_info *pinfo,
197 const guint32 id, GHashTable *fragment_table, const guint32 frag_number,
198 const guint32 frag_data_len, const gboolean more_frags);
200 /* another wrapper for fragment_add_seq_key - uses a key of source, dest, id
202 extern fragment_data *
203 fragment_add_dcerpc_dg(tvbuff_t *tvb, const int offset, const packet_info *pinfo, const guint32 id,
205 GHashTable *fragment_table, const guint32 frag_number,
206 const guint32 frag_data_len, const gboolean more_frags);
209 * These routines extend fragment_add_seq_key to use a "reassembled_table".
211 * If, after processing this fragment, we have all the fragments, they
212 * remove that from the fragment hash table if necessary and add it
213 * to the table of reassembled fragments, and return a pointer to the
214 * head of the fragment list.
216 extern fragment_data *
217 fragment_add_seq_check(tvbuff_t *tvb, const int offset, const packet_info *pinfo,
218 const guint32 id, GHashTable *fragment_table,
219 GHashTable *reassembled_table, const guint32 frag_number,
220 const guint32 frag_data_len, const gboolean more_frags);
222 extern fragment_data *
223 fragment_add_seq_802_11(tvbuff_t *tvb, int offset, packet_info *pinfo,
224 guint32 id, GHashTable *fragment_table,
225 GHashTable *reassembled_table, guint32 frag_number,
226 guint32 frag_data_len, gboolean more_frags);
228 extern fragment_data *
229 fragment_add_seq_next(tvbuff_t *tvb, int offset, packet_info *pinfo, guint32 id,
230 GHashTable *fragment_table, GHashTable *reassembled_table,
231 guint32 frag_data_len, gboolean more_frags);
234 fragment_start_seq_check(const packet_info *pinfo, const guint32 id, GHashTable *fragment_table,
235 const guint32 tot_len);
237 extern fragment_data *
238 fragment_end_seq_next(const packet_info *pinfo, const guint32 id, GHashTable *fragment_table,
239 GHashTable *reassembled_table);
240 /* to specify how much to reassemble, for fragmentation where last fragment can not be
241 * identified by flags or such.
242 * note that for FD_BLOCKSEQUENCE tot_len is the index for the tail fragment.
243 * i.e. since the block numbers start at 0, if we specify tot_len==2, that
244 * actually means we want to defragment 3 blocks, block 0, 1 and 2.
248 fragment_set_tot_len(const packet_info *pinfo, const guint32 id, GHashTable *fragment_table,
249 const guint32 tot_len);
251 /* to resad whatever totlen previously set */
253 fragment_get_tot_len(const packet_info *pinfo, const guint32 id, GHashTable *fragment_table);
256 * This function will set the partial reassembly flag(FD_PARTIAL_REASSEMBLY) for a fh.
257 * When this function is called, the fh MUST already exist, i.e.
258 * the fh MUST be created by the initial call to fragment_add() before
259 * this function is called. Also note that this function MUST be called to indicate
260 * a fh will be extended (increase the already stored data). After calling this function,
261 * and if FD_DEFRAGMENTED is set, the reassembly process will be continued.
264 fragment_set_partial_reassembly(const packet_info *pinfo, const guint32 id, GHashTable *fragment_table);
266 /* This function is used to check if there is partial or completed reassembly state
267 * matching this packet. I.e. Are there reassembly going on or not for this packet?
269 extern fragment_data *
270 fragment_get(const packet_info *pinfo, const guint32 id, GHashTable *fragment_table);
272 /* The same for the reassemble table */
273 /* id *must* be the frame number for this to work! */
274 extern fragment_data *
275 fragment_get_reassembled(const guint32 id, GHashTable *reassembled_table);
277 extern fragment_data *
278 fragment_get_reassembled_id(const packet_info *pinfo, const guint32 id, GHashTable *reassembled_table);
280 /* This will free up all resources and delete reassembly state for this PDU.
281 * Except if the PDU is completely reassembled, then it would NOT deallocate the
282 * buffer holding the reassembled data but instead return the pointer to that
285 * So, if you call fragment_delete and it returns non-NULL, YOU are responsible to
286 * g_free() that buffer.
288 extern unsigned char *
289 fragment_delete(const packet_info *pinfo, const guint32 id, GHashTable *fragment_table);
291 /* hf_fragment, hf_fragment_error, and hf_reassembled_in should be
292 FT_FRAMENUM, the others should be FT_BOOLEAN
294 typedef struct _fragment_items {
300 int *hf_fragment_overlap;
301 int *hf_fragment_overlap_conflict;
302 int *hf_fragment_multiple_tails;
303 int *hf_fragment_too_long_fragment;
304 int *hf_fragment_error;
305 int *hf_reassembled_in;
306 int *hf_reassembled_length;
312 process_reassembled_data(tvbuff_t *tvb, const int offset, packet_info *pinfo,
313 const char *name, fragment_data *fd_head, const fragment_items *fit,
314 gboolean *update_col_infop, proto_tree *tree);
317 show_fragment_tree(fragment_data *ipfd_head, const fragment_items *fit,
318 proto_tree *tree, packet_info *pinfo, tvbuff_t *tvb, proto_item **fi);
321 show_fragment_seq_tree(fragment_data *ipfd_head, const fragment_items *fit,
322 proto_tree *tree, packet_info *pinfo, tvbuff_t *tvb, proto_item **fi);