2 * Definitions for Wireshark memory management and garbage collection
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 #include "gnuc_format_check.h"
31 /* Initialize all the memory allocation pools described below.
32 * This function must be called once when *shark initialize to set up the
33 * required structures.
37 /* Functions for handling memory allocation and garbage collection with
38 * a packet lifetime scope.
39 * These functions are used to allocate memory that will only remain persistent
40 * until Wireshark starts dissecting the next packet in the list.
41 * Everytime Wireshark starts decoding the next packet all memory allocated
42 * through these functions will be released back to the free pool.
44 * These functions are very fast and offer automatic garbage collection:
45 * Everytime a new packet is dissected, all memory allocations done in
46 * the previous packet is freed.
49 /* Allocate memory with a packet lifetime scope */
50 void *ep_alloc(size_t size);
51 #define ep_new(type) ((type*)ep_alloc(sizeof(type)))
53 /* Allocate memory with a packet lifetime scope and fill it with zeros*/
54 void* ep_alloc0(size_t size);
55 #define ep_new0(type) ((type*)ep_alloc0(sizeof(type)))
57 /* Duplicate a string with a packet lifetime scope */
58 gchar* ep_strdup(const gchar* src);
60 /* Duplicate at most n characters of a string with a packet lifetime scope */
61 gchar* ep_strndup(const gchar* src, size_t len);
63 /* Duplicate a buffer with a packet lifetime scope */
64 void* ep_memdup(const void* src, size_t len);
66 /* Create a formatted string with a packet lifetime scope */
67 gchar* ep_strdup_vprintf(const gchar* fmt, va_list ap);
68 gchar* ep_strdup_printf(const gchar* fmt, ...)
69 GNUC_FORMAT_CHECK(printf, 1, 2);
71 /* allocates with a packet lifetime scope an array of type made of num elements */
72 #define ep_alloc_array(type,num) (type*)ep_alloc(sizeof(type)*(num))
74 /* allocates with a packet lifetime scope an array of type made of num elements,
75 * initialised to zero.
77 #define ep_alloc_array0(type,num) (type*)ep_alloc0(sizeof(type)*(num))
80 * Splits a string into a maximum of max_tokens pieces, using the given
81 * delimiter. If max_tokens is reached, the remainder of string is appended
82 * to the last token. Consecutive delimiters are treated as a single delimiter.
84 * the vector and all the strings are allocated with packet lifetime scope
86 gchar** ep_strsplit(const gchar* string, const gchar* delimiter, int max_tokens);
88 /* release all memory allocated in the previous packet dissector */
89 void ep_free_all(void);
92 /* a stack implemented using ephemeral allocators */
94 typedef struct _ep_stack_frame_t** ep_stack_t;
96 struct _ep_stack_frame_t {
98 struct _ep_stack_frame_t* below;
99 struct _ep_stack_frame_t* above;
103 * creates an empty stack with a packet lifetime scope
105 ep_stack_t ep_stack_new(void);
108 * pushes item into stack, returns item
110 void* ep_stack_push(ep_stack_t stack, void* item);
113 * pops an item from the stack
115 void* ep_stack_pop(ep_stack_t stack);
118 * returns the item on top of the stack without popping it
120 #define ep_stack_peek(stack) ((*(stack))->payload)
123 /* Functions for handling memory allocation and garbage collection with
124 * a capture lifetime scope.
125 * These functions are used to allocate memory that will only remain persistent
126 * until Wireshark opens a new capture or capture file.
127 * Everytime Wireshark starts a new capture or opens a new capture file
128 * all the data allocated through these functions will be released back
131 * These functions are very fast and offer automatic garbage collection.
134 /* Allocate memory with a capture lifetime scope */
135 void *se_alloc(size_t size);
137 /* Allocate memory with a capture lifetime scope and fill it with zeros*/
138 void* se_alloc0(size_t size);
140 /* Duplicate a string with a capture lifetime scope */
141 gchar* se_strdup(const gchar* src);
143 /* Duplicate at most n characters of a string with a capture lifetime scope */
144 gchar* se_strndup(const gchar* src, size_t len);
146 /* Duplicate a buffer with a capture lifetime scope */
147 void* se_memdup(const void* src, size_t len);
149 /* Create a formatted string with a capture lifetime scope */
150 gchar* se_strdup_vprintf(const gchar* fmt, va_list ap);
151 gchar* se_strdup_printf(const gchar* fmt, ...)
152 GNUC_FORMAT_CHECK(printf, 1, 2);
154 /* allocates with a capture lifetime scope an array of type made of num elements */
155 #define se_alloc_array(type,num) (type*)se_alloc(sizeof(type)*(num))
157 /* release all memory allocated */
158 void se_free_all(void);
163 /**************************************************************
165 **************************************************************/
166 typedef struct _emem_tree_node_t {
167 struct _emem_tree_node_t *parent;
168 struct _emem_tree_node_t *left;
169 struct _emem_tree_node_t *right;
171 #define EMEM_TREE_RB_COLOR_RED 0
172 #define EMEM_TREE_RB_COLOR_BLACK 1
174 #define EMEM_TREE_NODE_IS_DATA 0
175 #define EMEM_TREE_NODE_IS_SUBTREE 1
176 guint32 is_subtree:1;
182 /* Right now we only do basic red/black trees but in the future we might want
183 * to try something different, such as a tree where each node keeps track
184 * of how many times it has been looked up, and letting often looked up
185 * nodes bubble upwards in the tree using rotate_right/left.
186 * That would probably be good for things like nfs filehandles
188 #define EMEM_TREE_TYPE_RED_BLACK 1
189 typedef struct _emem_tree_t {
190 struct _emem_tree_t *next;
192 const char *name; /* just a string to make debugging easier */
193 emem_tree_node_t *tree;
194 void *(*malloc)(size_t);
197 /* *******************************************************************
198 * Tree functions for SE memory allocation scope
199 * ******************************************************************* */
200 /* This function is used to create a se based tree with monitoring.
201 * When the SE heap is released back to the system the pointer to the
202 * tree is automatically reset to NULL.
204 * type is : EMEM_TREE_TYPE_RED_BLACK for a standard red/black tree.
206 emem_tree_t *se_tree_create(int type, const char *name);
208 /* This function is similar to the se_tree_create() call but with the
209 * difference that when the se memory is release everything including the
210 * pointer to the tree itself will be released.
211 * This tree will not be just reset to zero it will be completely forgotten
213 * Use this function for when you want to store the pointer to a tree inside
214 * another structure that is also se allocated so that when the structure is
215 * released, the tree will be completely released as well.
217 emem_tree_t *se_tree_create_non_persistent(int type, const char *name);
220 * Insert data into the tree and key it by a 32bit integer value
222 #define se_tree_insert32 emem_tree_insert32
225 * Retrieve the data at the search key. the search key is a 32bit integer value
227 #define se_tree_lookup32 emem_tree_lookup32
229 /* se_tree_lookup32_le
230 * Retrieve the data for the largest key that is less than or equal
233 #define se_tree_lookup32_le emem_tree_lookup32_le
235 /* se_tree_insert32_array
236 * Insert data into the tree and key it by a 32bit integer value
238 #define se_tree_insert32_array emem_tree_insert32_array
240 /* se_tree_lookup32_array
241 * Lookup data from the tree that is index by an array
243 #define se_tree_lookup32_array emem_tree_lookup32_array
247 /* Create a new string based hash table */
248 #define se_tree_create_string() se_tree_create(SE_TREE_TYPE_RED_BLACK)
250 /* Insert a new value under a string key */
251 #define se_tree_insert_string emem_tree_insert_string
253 /* Lookup the value under a string key */
254 #define se_tree_lookup_string emem_tree_lookup_string
256 /* Traverse a tree */
257 #define se_tree_foreach emem_tree_foreach
260 /* *******************************************************************
261 * Tree functions for PE memory allocation scope
262 * ******************************************************************* */
263 /* These trees have PErmanent allocation scope and will never be released
265 emem_tree_t *pe_tree_create(int type, const char *name);
266 #define pe_tree_insert32 emem_tree_insert32
267 #define pe_tree_lookup32 emem_tree_lookup32
268 #define pe_tree_lookup32_le emem_tree_lookup32_le
269 #define pe_tree_insert32_array emem_tree_insert32_array
270 #define pe_tree_lookup32_array emem_tree_lookup32_array
271 #define pe_tree_insert_string emem_tree_insert_string
272 #define pe_tree_lookup_string emem_tree_lookup_string
273 #define pe_tree_foreach emem_tree_foreach
277 /* ******************************************************************
278 * Real tree functions
279 * ****************************************************************** */
281 /* This function is used to insert a node indexed by a guint32 key value.
282 * The data pointer should be allocated by the appropriate storage scope
283 * so that it will be released at the same time as the tree itself is
286 void emem_tree_insert32(emem_tree_t *se_tree, guint32 key, void *data);
288 /* This function will look up a node in the tree indexed by a guint32 integer
291 void *emem_tree_lookup32(emem_tree_t *se_tree, guint32 key);
293 /* This function will look up a node in the tree indexed by a guint32 integer
295 * The function will return the node that has the largest key that is
296 * equal to or smaller than the search key, or NULL if no such key was
299 void *emem_tree_lookup32_le(emem_tree_t *se_tree, guint32 key);
301 typedef struct _emem_tree_key_t {
302 guint32 length; /*length in guint32 words */
306 /* This function is used to insert a node indexed by a sequence of guint32
308 * The data pointer should be allocated by SE allocators so that the
309 * data will be released at the same time as the tree itself is destroyed.
311 * Note: all the "key" members of the "key" argument MUST be aligned on
312 * 32-bit boundaries; otherwise, this code will crash on platforms such
313 * as SPARC that require aligned pointers.
315 * If you use ...32_array() calls you MUST make sure that every single node
316 * you add to a specific tree always has a key of exactly the same number of
317 * keylen words or things will most likely crash. Or at least that every single
318 * item that sits behind the same top level node always have exactly the same
321 * One way to guarantee this is the way that NFS does this for the
322 * nfs_name_snoop_known tree which holds filehandles for both v2 and v3.
323 * v2 filehandles are always 32 bytes (8 words) while v3 filehandles can have
324 * any length (though 32bytes are most common).
325 * The NFS dissector handles this by providing a guint32 containing the length
326 * as the very first item in this vector :
328 * emem_tree_key_t fhkey[3];
330 * fhlen=nns->fh_length;
332 * fhkey[0].key=&fhlen;
333 * fhkey[1].length=fhlen/4;
334 * fhkey[1].key=nns->fh;
337 void emem_tree_insert32_array(emem_tree_t *se_tree, emem_tree_key_t *key, void *data);
339 /* This function will look up a node in the tree indexed by a sequence of
340 * guint32 integer values.
342 void *emem_tree_lookup32_array(emem_tree_t *se_tree, emem_tree_key_t *key);
344 /* case insensitive strings as keys */
345 #define EMEM_TREE_STRING_NOCASE 0x00000001
346 /* Insert a new value under a string key */
347 void emem_tree_insert_string(emem_tree_t* h, const gchar* k, void* v, guint32 flags);
349 /* Lookup the value under a string key */
350 void* emem_tree_lookup_string(emem_tree_t* h, const gchar* k, guint32 flags);
353 /* traverse a tree. if the callback returns TRUE the traversal will end */
354 typedef gboolean (*tree_foreach_func)(void *value, void *userdata);
356 gboolean emem_tree_foreach(emem_tree_t* emem_tree, tree_foreach_func callback, void *user_data);
359 /* ******************************************************************
360 * String buffers - Growable strings similar to GStrings
361 * ****************************************************************** */
363 typedef struct _emem_strbuf_t {
364 gchar *str; /* points to the character data. It may move as text is */
365 /* added. The str field is nul-terminated and so can */
366 /* be used as an ordinary C string. */
367 gsize len; /* strlen: ie: length of str not including trailing '\0' */
368 gsize alloc_len; /* num bytes curently allocated for str: 1 .. MAX_STRBUF_LEN */
369 gsize max_alloc_len; /* max num bytes to allocate for str: 1 .. MAX_STRBUF_LEN */
373 * The maximum length is limited to 64K. If you need something bigger, you
374 * should probably use an actual GString or GByteArray.
378 * Allocate an ephemeral string buffer with "unlimited" size.
380 * @param init The initial string for the buffer, or NULL to allocate an initial zero-length string.
382 * @return A newly-allocated string buffer.
384 emem_strbuf_t *ep_strbuf_new(const gchar *init);
387 * Allocate an ephemeral string buffer suitable for the protocol tree.
388 * The string will never grow beyond the maximum tree item length.
390 * @param init The initial string for the buffer, or NULL to allocate an initial zero-length string.
392 * @return A newly-allocated string buffer.
394 emem_strbuf_t *ep_strbuf_new_label(const gchar *init);
397 * Allocate an ephemeral string buffer with enough initial space for @alloc_len bytes
398 * and a maximum of @max_alloc_len bytes.
400 * @param alloc_len The initial size of the buffer. This value can be 0, but a nonzero
401 * value is recommended.
402 * @param max_alloc_len The maximum size of the buffer. 0 means "unlimited" (within
405 * @return A newly-allocated string buffer. @str will be empty.
407 emem_strbuf_t *ep_strbuf_sized_new(gsize alloc_len, gsize max_alloc_len);
410 * Append vprintf-style formatted text to a string buffer.
412 * @param strbuf The ep_strbuf-allocated string buffer to append to.
413 * @param format A printf-style string format.
414 * @param args The list of arguments to append.
416 void ep_strbuf_append_vprintf(emem_strbuf_t *strbuf, const gchar *format, va_list ap);
419 * Apply printf-style formatted text to a string buffer.
421 * @param strbuf The ep_strbuf-allocated string buffer to set to.
422 * @param format A printf-style string format.
424 void ep_strbuf_printf(emem_strbuf_t *strbuf, const gchar *format, ...)
425 GNUC_FORMAT_CHECK(printf, 2, 3);
428 * Append printf-style formatted text to a string buffer.
430 * @param strbuf The ep_strbuf-allocated string buffer to append to.
431 * @param format A printf-style string format.
433 void ep_strbuf_append_printf(emem_strbuf_t *strbuf, const gchar *format, ...)
434 GNUC_FORMAT_CHECK(printf, 2, 3);
437 * Append a string to a string buffer.
439 * @param strbuf The ep_strbuf-allocated string buffer to append to.
440 * @param str A null-terminated string.
444 emem_strbuf_t *ep_strbuf_append(emem_strbuf_t *strbuf, const gchar *str);
447 * Append a character to a string buffer.
449 * @param strbuf The ep_strbuf-allocated string buffer to append to.
450 * @param c The character to append.
454 emem_strbuf_t *ep_strbuf_append_c(emem_strbuf_t *strbuf, const gchar c);
457 * Chop off the end of a string buffer.
459 * @param strbuf The ep_strbuf-allocated string buffer to append to.
460 * @param len The new string length.
464 emem_strbuf_t *ep_strbuf_truncate(emem_strbuf_t *strbuf, gsize len);
466 void emem_print_tree(emem_tree_t* emem_tree);
468 /* #define DEBUG_INTENSE_CANARY_CHECKS */
470 /* Helper to troubleshoot ep memory corruption
471 * if compiled and the environment variable WIRESHARK_DEBUG_EP_INTENSE_CANARY exists
472 * it will check the canaries and when found corrupt stop there in the hope
473 * the corruptor is still there in the stack.
474 * Some checkpoints are already set in packet.c in strategic points
475 * before and after dissection of a frame or a dissector call.
478 #ifdef DEBUG_INTENSE_CANARY_CHECKS
479 void ep_check_canary_integrity(const char* fmt, ...)
480 GNUC_FORMAT_CHECK(printf, 1, 2);
481 #define EP_CHECK_CANARY(args) ep_check_canary_integrity args
483 #define EP_CHECK_CANARY(args)
487 * Verify that the given pointer is of ephemeral/seasonal type.
489 * @param ptr The pointer to verify
491 * @return TRUE if the pointer belongs to the ephemeral/seasonal pool.
493 gboolean ep_verify_pointer(const void *ptr);
494 gboolean se_verify_pointer(const void *ptr);