GSM/ANSI/CAMEL...: fix no previous prototype for '*_stat_init' [-Wmissing-prototypes]
[metze/wireshark/wip.git] / epan / tvbuff.h
1 /* tvbuff.h
2  *
3  * Testy, Virtual(-izable) Buffer of guint8*'s
4  *
5  * "Testy" -- the buffer gets mad when an attempt is made to access data
6  *      beyond the bounds of the buffer. An exception is thrown.
7  *
8  * "Virtual" -- the buffer can have its own data, can use a subset of
9  *      the data of a backing tvbuff, or can be a composite of
10  *      other tvbuffs.
11  *
12  * Copyright (c) 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
13  *
14  * Wireshark - Network traffic analyzer
15  * By Gerald Combs <gerald@wireshark.org>
16  * Copyright 1998 Gerald Combs
17  *
18  * This program is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU General Public License
20  * as published by the Free Software Foundation; either version 2
21  * of the License, or (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, write to the Free Software
30  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31  */
32
33 #ifndef __TVBUFF_H__
34 #define __TVBUFF_H__
35
36 #include <glib.h>
37 #include <epan/guid-utils.h>
38 #include <epan/wmem/wmem.h>
39 #include "wsutil/ws_mempbrk.h"
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif /* __cplusplus */
44
45 /**
46  * "testy, virtual(-izable) buffer".  They are testy in that they get mad when
47  * an attempt is made to access data beyond the bounds of their array. In that
48  * case, they throw an exception.
49  *
50  * They are virtualizable in that new tvbuff's can be made from other tvbuffs,
51  * while only the original tvbuff may have data. That is, the new tvbuff has
52  * virtual data.
53  */
54
55 struct tvbuff;
56 typedef struct tvbuff tvbuff_t;
57
58 struct e_in6_addr; /* ipv6-utils.h */
59 struct nstime_t;   /* nstime.h */
60
61 /** @defgroup tvbuff Testy, Virtual(-izable) Buffers
62  *
63  * Dissector use and management
64  *
65  *  Consider a collection of tvbs as being a chain or stack of tvbs.
66  *
67  *  When dissecting a frame:
68  *   The top-level dissector (packet.c) pushes the initial tvb (containing
69  *   the complete frame) onto the stack (starts the chain) and then calls
70  *   a sub-dissector which in turn calls the next sub-dissector and so on.
71  *   Each sub-dissector may chain additional tvbs (see below) to the tvb
72  *   handed to that dissector. After dissection is complete and control has
73  *   returned to the top-level dissector, the chain of tvbs (stack) is free'd
74  *   via a call to tvb_free_chain() (in epan_dissect_cleanup()).
75  *
76  * A dissector:
77  *  - Can chain new tvbs (subset, real, composite) to the
78  *    tvb handed to the dissector using tvb_new_subset(),
79  *    tvb_new_subset_length(), tvb_new_subset_remaining(),
80  *    tvb_new_child_real_data(), tvb_set_child_real_data_tvbuff(),
81  *    tvb_composite_finalize(), and tvb_child_uncompress(). (Composite
82  *    tvbs should reference only tvbs which are already part of the chain).
83  *  - Must not save for later use (e.g., when dissecting another frame) a
84  *    pointer to a tvb handed to the dissector; (A higher level function
85  *    may very well free the chain thus leaving a dangling pointer).
86  *    This (obviously) also applies to any tvbs chained to the tvb handed
87  *    to the dissector.
88  *  - Can create its own tvb chain (using tvb_new_real_data() which the
89  *
90  *    dissector is free to manage as desired.
91  * @{
92  */
93
94 /** TVBUFF_REAL_DATA contains a guint8* that points to real data.
95  * The data is allocated and contiguous.
96  *
97  * TVBUFF_SUBSET has a backing tvbuff. The TVBUFF_SUBSET is a "window"
98  * through which the program sees only a portion of the backing tvbuff.
99  *
100  * TVBUFF_COMPOSITE combines multiple tvbuffs sequentially to produce
101  * a larger byte array.
102  *
103  * tvbuff's of any type can be used as the backing-tvbuff of a
104  * TVBUFF_SUBSET or as the member of a TVBUFF_COMPOSITE.
105  * TVBUFF_COMPOSITEs can have member-tvbuffs of different types.
106  *
107  * Once a tvbuff is create/initialized/finalized, the tvbuff is read-only.
108  * That is, it cannot point to any other data. A new tvbuff must be created if
109  * you want a tvbuff that points to other data.
110  *
111  * tvbuff's are normally chained together to allow efficient de-allocation of
112  * tvbuff's.
113  */
114
115 typedef void (*tvbuff_free_cb_t)(void*);
116
117 /** Extracts 'number of bits' starting at 'bit offset'.
118  * Returns a pointer to a newly initialized g_malloc'd REAL_DATA
119  * tvbuff with the bits octet aligned.
120  */
121 WS_DLL_PUBLIC tvbuff_t *tvb_new_octet_aligned(tvbuff_t *tvb,
122     guint32 bit_offset, gint32 no_of_bits);
123
124 WS_DLL_PUBLIC tvbuff_t *tvb_new_chain(tvbuff_t *parent, tvbuff_t *backing);
125
126 WS_DLL_PUBLIC tvbuff_t *tvb_clone(tvbuff_t *tvb);
127
128 WS_DLL_PUBLIC tvbuff_t *tvb_clone_offset_len(tvbuff_t *tvb, guint offset,
129     guint len);
130
131 /** Free a tvbuff_t and all tvbuffs chained from it
132  * The tvbuff must be 'the 'head' (initial) tvb of a chain or
133  * must not be in a chain.
134  * If specified, a callback to free the tvbuff data will be invoked
135  * for each tvbuff free'd */
136 WS_DLL_PUBLIC void tvb_free(tvbuff_t *tvb);
137
138 /** Free the tvbuff_t and all tvbuffs chained from it.
139  * The tvbuff must be 'the 'head' (initial) tvb of a chain or
140  * must not be in a chain.
141  * If specified, a callback to free the tvbuff data will be invoked
142  * for each tvbuff free'd */
143 WS_DLL_PUBLIC void tvb_free_chain(tvbuff_t *tvb);
144
145 /** Set a callback function to call when a tvbuff is actually freed
146  * One argument is passed to that callback --- a void* that points
147  * to the real data. Obviously, this only applies to a
148  * TVBUFF_REAL_DATA tvbuff. */
149 WS_DLL_PUBLIC void tvb_set_free_cb(tvbuff_t *tvb, const tvbuff_free_cb_t func);
150
151 /** Attach a TVBUFF_REAL_DATA tvbuff to a parent tvbuff. This connection
152  * is used during a tvb_free_chain()... the "child" TVBUFF_REAL_DATA acts
153  * as if it is part of the chain-of-creation of the parent tvbuff, although it
154  * isn't. This is useful if you need to take the data from some tvbuff,
155  * run some operation on it, like decryption or decompression, and make a new
156  * tvbuff from it, yet want the new tvbuff to be part of the chain. The reality
157  * is that the new tvbuff *is* part of the "chain of creation", but in a way
158  * that these tvbuff routines are ignorant of. Use this function to make
159  * the tvbuff routines knowledgable of this fact. */
160 WS_DLL_PUBLIC void tvb_set_child_real_data_tvbuff(tvbuff_t *parent,
161     tvbuff_t *child);
162
163 WS_DLL_PUBLIC tvbuff_t *tvb_new_child_real_data(tvbuff_t *parent,
164     const guint8 *data, const guint length, const gint reported_length);
165
166 /** Create a tvbuff backed by existing data. Can throw ReportedBoundsError.
167  * Normally, a callback to free the data should be registered using
168  * tvb_set_free_cb(); when this tvbuff is freed, then your callback will be
169  * called, and at that time you can free your original data. */
170 WS_DLL_PUBLIC tvbuff_t *tvb_new_real_data(const guint8 *data,
171     const guint length, const gint reported_length);
172
173 /** Create a tvbuff that's a subset of another tvbuff.
174  *
175  * 'backing_offset', if positive, is the offset from the beginning of
176  * the backing tvbuff at which the new tvbuff's data begins, and, if
177  * negative, is the offset from the end of the backing tvbuff at which
178  * the new tvbuff's data begins.
179  *
180  * 'backing_length' is the length of the data to include in the new
181  * tvbuff, starting with the byte at 'backing_offset"; if -1, it
182  * means "to the end of the backing tvbuff".  It can be 0, although
183  * the usefulness of the buffer would be rather limited.
184  *
185  * Will throw BoundsError if 'backing_offset'/'length'
186  * is beyond the bounds of the backing tvbuff.
187  * Can throw ReportedBoundsError. */
188 WS_DLL_PUBLIC tvbuff_t *tvb_new_subset(tvbuff_t *backing,
189     const gint backing_offset, const gint backing_length,
190     const gint reported_length);
191
192 /**
193  * Similar to tvb_new_subset() but with captured length calculated
194  * to fit within the existing captured length and the specified
195  * backing length (which is used as the reported length).
196  * Can throw ReportedBoundsError. */
197 WS_DLL_PUBLIC tvbuff_t *tvb_new_subset_length(tvbuff_t *backing,
198     const gint backing_offset, const gint backing_length);
199
200 /** Similar to tvb_new_subset() but with backing_length and reported_length set
201  * to -1.  Can throw ReportedBoundsError. */
202 WS_DLL_PUBLIC tvbuff_t *tvb_new_subset_remaining(tvbuff_t *backing,
203     const gint backing_offset);
204
205 /*
206 * Both tvb_composite_append and tvb_composite_prepend can throw
207  * BoundsError if member_offset/member_length goes beyond bounds of
208  * the 'member' tvbuff. */
209
210 /** Append to the list of tvbuffs that make up this composite tvbuff */
211 WS_DLL_PUBLIC void tvb_composite_append(tvbuff_t *tvb, tvbuff_t *member);
212
213 /** Prepend to the list of tvbuffs that make up this composite tvbuff */
214 extern void tvb_composite_prepend(tvbuff_t *tvb, tvbuff_t *member);
215
216 /** Create an empty composite tvbuff. */
217 WS_DLL_PUBLIC tvbuff_t *tvb_new_composite(void);
218
219 /** Mark a composite tvbuff as initialized. No further appends or prepends
220  * occur, data access can finally happen after this finalization. */
221 WS_DLL_PUBLIC void tvb_composite_finalize(tvbuff_t *tvb);
222
223
224 /* Get amount of captured data in the buffer (which is *NOT* necessarily the
225  * length of the packet). You probably want tvb_reported_length instead. */
226 WS_DLL_PUBLIC guint tvb_captured_length(const tvbuff_t *tvb);
227
228 /** Computes bytes to end of buffer, from offset (which can be negative,
229  * to indicate bytes from end of buffer). Function returns 0 if offset is
230  * either at the end of the buffer or out of bounds. No exception is thrown.
231  * You probably want tvb_reported_length_remaining instead. */
232 WS_DLL_PUBLIC gint tvb_captured_length_remaining(const tvbuff_t *tvb, const gint offset);
233
234 /** Same as above, but throws an exception if the offset is out of bounds. */
235 WS_DLL_PUBLIC guint tvb_ensure_captured_length_remaining(const tvbuff_t *tvb,
236     const gint offset);
237
238 /* DEPRECATED, do not use in new code, call tvb_ensure_captured_length_remaining directly! */
239 #define tvb_ensure_length_remaining tvb_ensure_captured_length_remaining
240
241 /* Checks (w/o throwing exception) that the bytes referred to by
242  * 'offset'/'length' actually exist in the buffer */
243 WS_DLL_PUBLIC gboolean tvb_bytes_exist(const tvbuff_t *tvb, const gint offset,
244     const gint length);
245
246 /** Checks that the bytes referred to by 'offset'/'length', where 'length'
247  * is a 64-bit unsigned integer, actually exist in the buffer, and throws
248  * an exception if they aren't. */
249 WS_DLL_PUBLIC void tvb_ensure_bytes_exist64(const tvbuff_t *tvb,
250     const gint offset, const guint64 length);
251
252 /** Checks that the bytes referred to by 'offset'/'length' actually exist
253  * in the buffer, and throws an exception if they aren't. */
254 WS_DLL_PUBLIC void tvb_ensure_bytes_exist(const tvbuff_t *tvb,
255     const gint offset, const gint length);
256
257 /* Checks (w/o throwing exception) that offset exists in buffer */
258 WS_DLL_PUBLIC gboolean tvb_offset_exists(const tvbuff_t *tvb,
259     const gint offset);
260
261 /* Get reported length of buffer */
262 WS_DLL_PUBLIC guint tvb_reported_length(const tvbuff_t *tvb);
263
264 /** Computes bytes of reported packet data to end of buffer, from offset
265  * (which can be negative, to indicate bytes from end of buffer). Function
266  * returns 0 if offset is either at the end of the buffer or out of bounds.
267  * No exception is thrown. */
268 WS_DLL_PUBLIC gint tvb_reported_length_remaining(const tvbuff_t *tvb,
269     const gint offset);
270
271 /** Set the reported length of a tvbuff to a given value; used for protocols
272    whose headers contain an explicit length and where the calling
273    dissector's payload may include padding as well as the packet for
274    this protocol.
275
276    Also adjusts the data length. */
277 WS_DLL_PUBLIC void tvb_set_reported_length(tvbuff_t *tvb, const guint);
278
279 WS_DLL_PUBLIC guint tvb_offset_from_real_beginning(const tvbuff_t *tvb);
280
281 /* Returns the offset from the first byte of real data. */
282 WS_DLL_PUBLIC gint tvb_raw_offset(tvbuff_t *tvb);
283
284 /** Set the "this is a fragment" flag. */
285 WS_DLL_PUBLIC void tvb_set_fragment(tvbuff_t *tvb);
286
287 WS_DLL_PUBLIC struct tvbuff *tvb_get_ds_tvb(tvbuff_t *tvb);
288
289
290 /************** START OF ACCESSORS ****************/
291 /* All accessors will throw an exception if appropriate */
292
293 WS_DLL_PUBLIC guint8 tvb_get_guint8(tvbuff_t *tvb, const gint offset);
294
295 WS_DLL_PUBLIC guint16 tvb_get_ntohs(tvbuff_t *tvb, const gint offset);
296 WS_DLL_PUBLIC guint32 tvb_get_ntoh24(tvbuff_t *tvb, const gint offset);
297 WS_DLL_PUBLIC guint32 tvb_get_ntohl(tvbuff_t *tvb, const gint offset);
298 WS_DLL_PUBLIC guint64 tvb_get_ntoh40(tvbuff_t *tvb, const gint offset);
299 WS_DLL_PUBLIC gint64 tvb_get_ntohi40(tvbuff_t *tvb, const gint offset);
300 WS_DLL_PUBLIC guint64 tvb_get_ntoh48(tvbuff_t *tvb, const gint offset);
301 WS_DLL_PUBLIC gint64 tvb_get_ntohi48(tvbuff_t *tvb, const gint offset);
302 WS_DLL_PUBLIC guint64 tvb_get_ntoh56(tvbuff_t *tvb, const gint offset);
303 WS_DLL_PUBLIC gint64 tvb_get_ntohi56(tvbuff_t *tvb, const gint offset);
304 WS_DLL_PUBLIC guint64 tvb_get_ntoh64(tvbuff_t *tvb, const gint offset);
305 WS_DLL_PUBLIC gfloat tvb_get_ntohieee_float(tvbuff_t *tvb, const gint offset);
306 WS_DLL_PUBLIC gdouble tvb_get_ntohieee_double(tvbuff_t *tvb,
307     const gint offset);
308
309 WS_DLL_PUBLIC guint16 tvb_get_letohs(tvbuff_t *tvb, const gint offset);
310 WS_DLL_PUBLIC guint32 tvb_get_letoh24(tvbuff_t *tvb, const gint offset);
311 WS_DLL_PUBLIC guint32 tvb_get_letohl(tvbuff_t *tvb, const gint offset);
312 WS_DLL_PUBLIC guint64 tvb_get_letoh40(tvbuff_t *tvb, const gint offset);
313 WS_DLL_PUBLIC gint64 tvb_get_letohi40(tvbuff_t *tvb, const gint offset);
314 WS_DLL_PUBLIC guint64 tvb_get_letoh48(tvbuff_t *tvb, const gint offset);
315 WS_DLL_PUBLIC gint64 tvb_get_letohi48(tvbuff_t *tvb, const gint offset);
316 WS_DLL_PUBLIC guint64 tvb_get_letoh56(tvbuff_t *tvb, const gint offset);
317 WS_DLL_PUBLIC gint64 tvb_get_letohi56(tvbuff_t *tvb, const gint offset);
318 WS_DLL_PUBLIC guint64 tvb_get_letoh64(tvbuff_t *tvb, const gint offset);
319 WS_DLL_PUBLIC gfloat tvb_get_letohieee_float(tvbuff_t *tvb, const gint offset);
320 WS_DLL_PUBLIC gdouble tvb_get_letohieee_double(tvbuff_t *tvb,
321     const gint offset);
322
323 WS_DLL_PUBLIC guint16 tvb_get_guint16(tvbuff_t *tvb, const gint offset, const guint encoding);
324 WS_DLL_PUBLIC guint32 tvb_get_guint24(tvbuff_t *tvb, const gint offset, const guint encoding);
325 WS_DLL_PUBLIC guint32 tvb_get_guint32(tvbuff_t *tvb, const gint offset, const guint encoding);
326 WS_DLL_PUBLIC guint64 tvb_get_guint40(tvbuff_t *tvb, const gint offset, const guint encoding);
327 WS_DLL_PUBLIC gint64 tvb_get_gint40(tvbuff_t *tvb, const gint offset, const guint encoding);
328 WS_DLL_PUBLIC guint64 tvb_get_guint48(tvbuff_t *tvb, const gint offset, const guint encoding);
329 WS_DLL_PUBLIC gint64 tvb_get_gint48(tvbuff_t *tvb, const gint offset, const guint encoding);
330 WS_DLL_PUBLIC guint64 tvb_get_guint56(tvbuff_t *tvb, const gint offset, const guint encoding);
331 WS_DLL_PUBLIC gint64 tvb_get_gint56(tvbuff_t *tvb, const gint offset, const guint encoding);
332 WS_DLL_PUBLIC guint64 tvb_get_guint64(tvbuff_t *tvb, const gint offset, const guint encoding);
333 WS_DLL_PUBLIC gfloat tvb_get_ieee_float(tvbuff_t *tvb, const gint offset, const guint encoding);
334 WS_DLL_PUBLIC gdouble tvb_get_ieee_double(tvbuff_t *tvb, const gint offset, const guint encoding);
335
336 /*
337  * Fetch 16-bit and 32-bit values in host byte order.
338  * Used for some pseudo-headers in pcap/pcap-ng files, in which the
339  * headers are, when capturing, in the byte order of the host, and
340  * are converted to the byte order of the host reading the file
341  * when reading a capture file.
342  */
343 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
344 #define tvb_get_h_guint16   tvb_get_letohs
345 #define tvb_get_h_guint32   tvb_get_letohl
346 #elif G_BYTE_ORDER == G_BIG_ENDIAN
347 #define tvb_get_h_guint16   tvb_get_ntohs
348 #define tvb_get_h_guint32   tvb_get_ntohl
349 #else
350 #error "Unsupported byte order"
351 #endif
352
353
354 /* Fetch a time value from an ASCII-style string in the tvb.
355  *
356  * @param[in] offset The beginning offset in the tvb (cannot be negative)
357  * @param[in] length The field's length in the tvb (or -1 for remaining)
358  * @param[in] encoding The ENC_* that defines the format (e.g., ENC_ISO_8601_DATE_TIME)
359  * @param[in,out] ns The pre-allocated nstime_t that will be set to the decoded value
360  * @param[out] endoff if not NULL, should point to a gint that this
361  *     routine will then set to be the offset to the character after
362  *     the last character used in the conversion. This is useful because
363  *     they may not consume the whole section.
364  *
365  * @return a pointer to the nstime_t passed-in, or NULL on failure; if no
366  *    valid conversion could be performed, *endoff is set to 0, and errno will be
367  *    EDOM or ERANGE, and the nstime_t* passed-in will be cleared.
368  *
369  * @note The conversion ignores leading spaces, and will succeed even if it does
370  *    not consume the entire string. If you care about such things, always compare
371  *    the *endoff to where you expect it to be (namely, offset+length).
372  *
373  * This routine will not throw an error unless the passed-in arguments are
374  * invalid (e.g., offset is beyond the tvb's length).
375  *
376  * @warning This only works for string encodings which encode ASCII characters in
377  * a single byte: ENC_ASCII, ENC_UTF_8, ENC_ISO_8859_*, etc. It does NOT work
378  * for purely multi-byte encodings such as ENC_UTF_16, ENC_UCS_*, etc.
379  */
380 WS_DLL_PUBLIC
381 struct nstime_t* tvb_get_string_time(tvbuff_t *tvb, const gint offset, const gint length,
382                               const guint encoding, struct nstime_t* ns, gint *endoff);
383
384 /* Similar to above, but returns a GByteArray based on the case-insensitive
385  * hex-char strings with optional separators, and with optional leading spaces.
386  * The separators allowed are based on the ENC_SEP_* passed in the encoding param.
387  *
388  * The passed-in bytes is set to the values, and its pointer is also the return
389  * value or NULL on error. The GByteArray bytes must be pre-constructed with
390  * g_byte_array_new().
391  */
392 WS_DLL_PUBLIC
393 GByteArray* tvb_get_string_bytes(tvbuff_t *tvb, const gint offset, const gint length,
394                                  const guint encoding, GByteArray* bytes, gint *endoff);
395
396 /**
397  * Fetch an IPv4 address, in network byte order.
398  * We do *not* convert it to host byte order; we leave it in
399  * network byte order, as that's what its callers expect. */
400 WS_DLL_PUBLIC guint32 tvb_get_ipv4(tvbuff_t *tvb, const gint offset);
401
402 /* Fetch an IPv6 address. */
403 WS_DLL_PUBLIC void tvb_get_ipv6(tvbuff_t *tvb, const gint offset,
404     struct e_in6_addr *addr);
405
406 /* Fetch a GUID. */
407 WS_DLL_PUBLIC void tvb_get_ntohguid(tvbuff_t *tvb, const gint offset,
408     e_guid_t *guid);
409 WS_DLL_PUBLIC void tvb_get_letohguid(tvbuff_t *tvb, const gint offset,
410     e_guid_t *guid);
411 WS_DLL_PUBLIC void tvb_get_guid(tvbuff_t *tvb, const gint offset,
412     e_guid_t *guid, const guint encoding);
413
414 /* Fetch a specified number of bits from bit offset in a tvb.  All of these
415  * functions are equivalent, except for the type of the return value.  Note
416  * that the parameter encoding (where supplied) is meaningless and ignored */
417
418 /* get 1 - 8 bits returned in a guint8 */
419 WS_DLL_PUBLIC guint8 tvb_get_bits8(tvbuff_t *tvb, guint bit_offset,
420     const gint no_of_bits);
421 /* get 1 - 16 bits returned in a guint16 */
422 WS_DLL_PUBLIC guint16 tvb_get_bits16(tvbuff_t *tvb, guint bit_offset,
423     const gint no_of_bits, const guint encoding);
424 /* get 1 - 32 bits returned in a guint32 */
425 WS_DLL_PUBLIC guint32 tvb_get_bits32(tvbuff_t *tvb, guint bit_offset,
426     const gint no_of_bits, const guint encoding);
427 /* get 1 - 64 bits returned in a guint64 */
428 WS_DLL_PUBLIC guint64 tvb_get_bits64(tvbuff_t *tvb, guint bit_offset,
429     const gint no_of_bits, const guint encoding);
430
431 /**
432  *  This function has EXACTLY the same behavior as
433  *  tvb_get_bits32()
434  */
435 WS_DLL_PUBLIC guint32 tvb_get_bits(tvbuff_t *tvb, const guint bit_offset,
436     const gint no_of_bits, const guint encoding);
437
438 /** Returns target for convenience. Does not suffer from possible
439  * expense of tvb_get_ptr(), since this routine is smart enough
440  * to copy data in chunks if the request range actually exists in
441  * different TVBUFF_REAL_DATA tvbuffs. This function assumes that the
442  * target memory is already allocated; it does not allocate or free the
443  * target memory. */
444 WS_DLL_PUBLIC void *tvb_memcpy(tvbuff_t *tvb, void *target, const gint offset,
445     size_t length);
446
447 /** Given an allocator scope, a tvbuff, a byte offset, a byte length:
448  *
449  *    allocate a buffer using the specified scope;
450  *
451  *    copy the data from the tvbuff specified by the offset and length
452  *    into that buffer, using tvb_memcpy();
453  *
454  *    and return a pointer to the buffer.
455  *
456  * Throws an exception if the tvbuff ends before the data being copied does.
457  *
458  * If scope is set to NULL it is the user's responsibility to wmem_free()
459  * the memory allocated. Otherwise memory is automatically freed when the
460  * scope lifetime is reached.
461  */
462 WS_DLL_PUBLIC void *tvb_memdup(wmem_allocator_t *scope, tvbuff_t *tvb,
463     const gint offset, size_t length);
464
465 /** WARNING! This function is possibly expensive, temporarily allocating
466  * another copy of the packet data. Furthermore, it's dangerous because once
467  * this pointer is given to the user, there's no guarantee that the user will
468  * honor the 'length' and not overstep the boundaries of the buffer.
469  *
470  * If you're thinking of using tvb_get_ptr, STOP WHAT YOU ARE DOING
471  * IMMEDIATELY. Go take a break. Consider that tvb_get_ptr hands you
472  * a raw, unprotected pointer that you can easily use to create a
473  * security vulnerability or otherwise crash Wireshark. Then consider
474  * that you can probably find a function elsewhere in this file that
475  * does exactly what you want in a much more safe and robust manner.
476  *
477  * The returned pointer is data that is internal to the tvbuff, so do not
478  * attempt to free it. Don't modify the data, either, because another tvbuff
479  * that might be using this tvbuff may have already copied that portion of
480  * the data (sometimes tvbuff's need to make copies of data, but that's the
481  * internal implementation that you need not worry about). Assume that the
482  * guint8* points to read-only data that the tvbuff manages.
483  *
484  * Return a pointer into our buffer if the data asked for via 'offset'/'length'
485  * is contiguous (which might not be the case for TVBUFF_COMPOSITE). If the
486  * data is not contiguous, a tvb_memdup() is called for the entire buffer
487  * and the pointer to the newly-contiguous data is returned. This dynamically-
488  * allocated memory will be freed when the tvbuff is freed, after the
489  * tvbuff_free_cb_t() is called, if any. */
490 WS_DLL_PUBLIC const guint8 *tvb_get_ptr(tvbuff_t *tvb, const gint offset,
491     const gint length);
492
493 /** Find first occurrence of needle in tvbuff, starting at offset. Searches
494  * at most maxlength number of bytes; if maxlength is -1, searches to
495  * end of tvbuff.
496  * Returns the offset of the found needle, or -1 if not found.
497  * Will not throw an exception, even if maxlength exceeds boundary of tvbuff;
498  * in that case, -1 will be returned if the boundary is reached before
499  * finding needle. */
500 WS_DLL_PUBLIC gint tvb_find_guint8(tvbuff_t *tvb, const gint offset,
501     const gint maxlength, const guint8 needle);
502
503
504 /** Find first occurrence of any of the needles of the pre-compiled pattern in
505  * tvbuff, starting at offset. The passed in pattern must have been "compiled"
506  * before-hand, using ws_mempbrk_compile().
507  * Searches at most maxlength number of bytes. Returns the offset of the
508  * found needle, or -1 if not found and the found needle.
509  * Will not throw an exception, even if
510  * maxlength exceeds boundary of tvbuff; in that case, -1 will be returned if
511  * the boundary is reached before finding needle. */
512 WS_DLL_PUBLIC gint tvb_ws_mempbrk_pattern_guint8(tvbuff_t *tvb, const gint offset,
513     const gint maxlength, const ws_mempbrk_pattern* pattern, guchar *found_needle);
514
515
516 /** Find size of stringz (NUL-terminated string) by looking for terminating
517  * NUL.  The size of the string includes the terminating NUL.
518  *
519  * If the NUL isn't found, it throws the appropriate exception.
520  */
521 WS_DLL_PUBLIC guint tvb_strsize(tvbuff_t *tvb, const gint offset);
522
523 /** Find size of UCS-2 or UTF-16 stringz (NUL-terminated string) by
524  * looking for terminating 16-bit NUL.  The size of the string includes
525  * the terminating NUL.
526  *
527  * If the NUL isn't found, it throws the appropriate exception.
528  */
529 WS_DLL_PUBLIC guint tvb_unicode_strsize(tvbuff_t *tvb, const gint offset);
530
531 /** Find length of string by looking for end of zero terminated string, up to
532  * 'maxlength' characters'; if 'maxlength' is -1, searches to end
533  * of tvbuff.
534  * Returns -1 if 'maxlength' reached before finding EOS. */
535 WS_DLL_PUBLIC gint tvb_strnlen(tvbuff_t *tvb, const gint offset,
536     const guint maxlength);
537
538 /**
539  * Format the data in the tvb from offset for size ...
540  */
541 WS_DLL_PUBLIC gchar *tvb_format_text(tvbuff_t *tvb, const gint offset,
542     const gint size);
543
544 /**
545  * Like "tvb_format_text()", but for 'wsp'; don't show
546  * the characters as C-style escapes.
547  */
548 WS_DLL_PUBLIC gchar *tvb_format_text_wsp(tvbuff_t *tvb, const gint offset,
549     const gint size);
550
551 /**
552  * Like "tvb_format_text()", but for null-padded strings; don't show
553  * the null padding characters as "\000".
554  */
555 extern gchar *tvb_format_stringzpad(tvbuff_t *tvb, const gint offset,
556     const gint size);
557
558 /**
559  * Like "tvb_format_text_wsp()", but for null-padded strings; don't show
560  * the null padding characters as "\000".
561  */
562 extern gchar *tvb_format_stringzpad_wsp(tvbuff_t *tvb, const gint offset,
563     const gint size);
564
565 /**
566  * Given an allocator scope, a tvbuff, a byte offset, a byte length, and
567  * a string encoding, with the specified offset and length referring to
568  * a string in the specified encoding:
569  *
570  *    allocate a buffer using the specified scope;
571  *
572  *    convert the string from the specified encoding to UTF-8, possibly
573  *    mapping some characters or invalid octet sequences to the Unicode
574  *    REPLACEMENT CHARACTER, and put the resulting UTF-8 string, plus a
575  *    trailing '\0', into that buffer;
576  *
577  *    and return a pointer to the buffer.
578  *
579  * Throws an exception if the tvbuff ends before the string does.
580  *
581  * If scope is set to NULL it is the user's responsibility to wmem_free()
582  * the memory allocated. Otherwise memory is automatically freed when the
583  * scope lifetime is reached.
584  */
585 WS_DLL_PUBLIC guint8 *tvb_get_string_enc(wmem_allocator_t *scope,
586     tvbuff_t *tvb, const gint offset, const gint length, const guint encoding);
587
588 /*
589  * DEPRECATED, do not use in new code, call tvb_get_string_enc directly with
590  * the appropriate extension!  Do not assume that ENC_ASCII will work
591  * with arbitrary string encodings; it will map all bytes with the 8th
592  * bit set to the Unicode REPLACEMENT CHARACTER, so it won't show non-ASCII
593  * characters as anything other than an ugly blob.
594  */
595 #define tvb_get_string(SCOPE, TVB, OFFSET, LENGTH) \
596     tvb_get_string_enc(SCOPE, TVB, OFFSET, LENGTH, ENC_ASCII)
597
598 /**
599  * Given an allocator scope, a tvbuff, a bit offset, and a length in
600  * 7-bit characters (not octets!), with the specified offset and
601  * length referring to a string in the 3GPP TS 23.038 7bits encoding:
602  *
603  *    allocate a buffer using the specified scope;
604  *
605  *    convert the string from the specified encoding to UTF-8, possibly
606  *    mapping some characters or invalid octet sequences to the Unicode
607  *    REPLACEMENT CHARACTER, and put the resulting UTF-8 string, plus a
608  *    trailing '\0', into that buffer;
609  *
610  *    and return a pointer to the buffer.
611  *
612  * Throws an exception if the tvbuff ends before the string does.
613  *
614  * If scope is set to NULL it is the user's responsibility to wmem_free()
615  * the memory allocated. Otherwise memory is automatically freed when the
616  * scope lifetime is reached.
617  */
618 WS_DLL_PUBLIC gchar *tvb_get_ts_23_038_7bits_string(wmem_allocator_t *scope,
619     tvbuff_t *tvb, const gint bit_offset, gint no_of_chars);
620
621 /**
622  * Given an allocator scope, a tvbuff, a bit offset, and a length in
623  * 7-bit characters (not octets!), with the specified offset and
624  * length referring to a string in the ASCII 7bits encoding:
625  *
626  *    allocate a buffer using the specified scope;
627  *
628  *    convert the string from the specified encoding to UTF-8, possibly
629  *    mapping some characters or invalid octet sequences to the Unicode
630  *    REPLACEMENT CHARACTER, and put the resulting UTF-8 string, plus a
631  *    trailing '\0', into that buffer;
632  *
633  *    and return a pointer to the buffer.
634  *
635  * Throws an exception if the tvbuff ends before the string does.
636  *
637  * If scope is set to NULL it is the user's responsibility to wmem_free()
638  * the memory allocated. Otherwise memory is automatically freed when the
639  * scope lifetime is reached.
640  */
641 WS_DLL_PUBLIC gchar *tvb_get_ascii_7bits_string(wmem_allocator_t *scope,
642     tvbuff_t *tvb, const gint bit_offset, gint no_of_chars);
643
644 /**
645  * Given an allocator scope, a tvbuff, a byte offset, a byte length, and
646  * a string encoding, with the specified offset and length referring to
647  * a null-padded string in the specified encoding:
648  *
649  *    allocate a buffer using the specified scope;
650  *
651  *    convert the string from the specified encoding to UTF-8, possibly
652  *    mapping some characters or invalid octet sequences to the Unicode
653  *    REPLACEMENT CHARACTER, and put the resulting UTF-8 string, plus a
654  *    trailing '\0', into that buffer;
655  *
656  *    and return a pointer to the buffer.
657  *
658  * Throws an exception if the tvbuff ends before the string does.
659  *
660  * If scope is set to NULL it is the user's responsibility to wmem_free()
661  * the memory allocated. Otherwise memory is automatically freed when the
662  * scope lifetime is reached.
663  */
664 WS_DLL_PUBLIC guint8 *tvb_get_stringzpad(wmem_allocator_t *scope,
665     tvbuff_t *tvb, const gint offset, const gint length, const guint encoding);
666
667 /**
668  * Given an allocator scope, a tvbuff, a byte offset, a pointer to a
669  * gint, and a string encoding, with the specified offset referring to
670  * a null-terminated string in the specified encoding:
671  *
672  *    find the length of that string (and throw an exception if the tvbuff
673  *    ends before we find the null);
674  *
675  *    allocate a buffer using the specified scope;
676  *
677  *    convert the string from the specified encoding to UTF-8, possibly
678  *    mapping some characters or invalid octet sequences to the Unicode
679  *    REPLACEMENT CHARACTER, and put the resulting UTF-8 string, plus a
680  *    trailing '\0', into that buffer;
681  *
682  *    if the pointer to the gint is non-null, set the gint to which it
683  *    points to the length of the string;
684  *
685  *    and return a pointer to the buffer.
686  *
687  * Throws an exception if the tvbuff ends before the string does.
688  *
689  * If scope is set to NULL it is the user's responsibility to wmem_free()
690  * the memory allocated. Otherwise memory is automatically freed when the
691  * scope lifetime is reached.
692  */
693 WS_DLL_PUBLIC guint8 *tvb_get_stringz_enc(wmem_allocator_t *scope,
694     tvbuff_t *tvb, const gint offset, gint *lengthp, const guint encoding);
695
696 /*
697  * DEPRECATED, do not use in new code, call tvb_get_string_enc directly with
698  * the appropriate extension!  Do not assume that ENC_ASCII will work
699  * with arbitrary string encodings; it will map all bytes with the 8th
700  * bit set to the Unicode REPLACEMENT CHARACTER, so it won't show non-ASCII
701  * characters as anything other than an ugly blob.
702  */
703 #define tvb_get_stringz(SCOPE, TVB, OFFSET, LENGTHP) \
704     tvb_get_stringz_enc(SCOPE, TVB, OFFSET, LENGTHP, ENC_ASCII)
705
706 /**
707  * Given a tvbuff and an offset, with the offset assumed to refer to
708  * a null-terminated string, find the length of that string (and throw
709  * an exception if the tvbuff ends before we find the null), allocate
710  * a buffer big enough to hold the string, copy the string into it,
711  * and return a pointer to the string.  Also return the length of the
712  * string (including the terminating null) through a pointer.
713  *
714  * This returns a constant (unmodifiable) string that does not need
715  * to be freed; instead, it will automatically be freed once the next
716  * packet is dissected.
717  *
718  * It is slightly more efficient than the other routines, but does *NOT*
719  * do any translation to UTF-8 - the string consists of the raw octets
720  * of the string, in whatever encoding they happen to be in, and, if
721  * the string is not valid in that encoding, with invalid octet sequences
722  * as they are in the packet.
723  */
724 WS_DLL_PUBLIC const guint8 *tvb_get_const_stringz(tvbuff_t *tvb,
725     const gint offset, gint *lengthp);
726
727 /** Looks for a stringz (NUL-terminated string) in tvbuff and copies
728  * no more than bufsize number of bytes, including terminating NUL, to buffer.
729  * Returns length of string (not including terminating NUL), or -1 if the
730  * string was truncated in the buffer due to not having reached the terminating
731  * NUL.  In this way, it acts like g_snprintf().
732  *
733  * When processing a packet where the remaining number of bytes is less
734  * than bufsize, an exception is not thrown if the end of the packet
735  * is reached before the NUL is found. If no NUL is found before reaching
736  * the end of the short packet, -1 is still returned, and the string
737  * is truncated with a NUL, albeit not at buffer[bufsize - 1], but
738  * at the correct spot, terminating the string.
739  */
740 WS_DLL_PUBLIC gint tvb_get_nstringz(tvbuff_t *tvb, const gint offset,
741     const guint bufsize, guint8 *buffer);
742
743 /** Like tvb_get_nstringz(), but never returns -1. The string is guaranteed to
744  * have a terminating NUL. If the string was truncated when copied into buffer,
745  * a NUL is placed at the end of buffer to terminate it.
746  *
747  * bufsize MUST be greater than 0.
748  */
749 WS_DLL_PUBLIC gint tvb_get_nstringz0(tvbuff_t *tvb, const gint offset,
750     const guint bufsize, guint8 *buffer);
751
752 /**
753  * Given a tvbuff, an offset into the tvbuff, and a length that starts
754  * at that offset (which may be -1 for "all the way to the end of the
755  * tvbuff"), find the end of the (putative) line that starts at the
756  * specified offset in the tvbuff, going no further than the specified
757  * length.
758  *
759  * Return the length of the line (not counting the line terminator at
760  * the end), or, if we don't find a line terminator:
761  *
762  *  if "deseg" is true, return -1;
763  *
764  *  if "deseg" is false, return the amount of data remaining in
765  *  the buffer.
766  *
767  * Set "*next_offset" to the offset of the character past the line
768  * terminator, or past the end of the buffer if we don't find a line
769  * terminator.  (It's not set if we return -1.)
770  */
771 WS_DLL_PUBLIC gint tvb_find_line_end(tvbuff_t *tvb, const gint offset, int len,
772     gint *next_offset, const gboolean desegment);
773
774 /**
775  * Given a tvbuff, an offset into the tvbuff, and a length that starts
776  * at that offset (which may be -1 for "all the way to the end of the
777  * tvbuff"), find the end of the (putative) line that starts at the
778  * specified offset in the tvbuff, going no further than the specified
779  * length.
780  *
781  * However, treat quoted strings inside the buffer specially - don't
782  * treat newlines in quoted strings as line terminators.
783  *
784  * Return the length of the line (not counting the line terminator at
785  * the end), or the amount of data remaining in the buffer if we don't
786  * find a line terminator.
787  *
788  * Set "*next_offset" to the offset of the character past the line
789  * terminator, or past the end of the buffer if we don't find a line
790  * terminator.
791  */
792 WS_DLL_PUBLIC gint tvb_find_line_end_unquoted(tvbuff_t *tvb, const gint offset,
793     int len, gint *next_offset);
794
795 /**
796  * Copied from the mgcp dissector. (This function should be moved to /epan )
797  * tvb_skip_wsp - Returns the position in tvb of the first non-whitespace
798  *                character following offset or offset + maxlength -1 whichever
799  *                is smaller.
800  *
801  * Parameters:
802  * tvb - The tvbuff in which we are skipping whitespace.
803  * offset - The offset in tvb from which we begin trying to skip whitespace.
804  * maxlength - The maximum distance from offset that we may try to skip
805  * whitespace.
806  *
807  * Returns: The position in tvb of the first non-whitespace
808  *          character following offset or offset + maxlength -1 whichever
809  *          is smaller.
810  */
811
812 WS_DLL_PUBLIC gint tvb_skip_wsp(tvbuff_t *tvb, const gint offset,
813     const gint maxlength);
814
815 WS_DLL_PUBLIC gint tvb_skip_wsp_return(tvbuff_t *tvb, const gint offset);
816
817 int tvb_skip_guint8(tvbuff_t *tvb, int offset, const int maxlength, const guint8 ch);
818
819 /**
820  * Call strncmp after checking if enough chars left, returning 0 if
821  * it returns 0 (meaning "equal") and -1 otherwise, otherwise return -1.
822  */
823 WS_DLL_PUBLIC gint tvb_strneql(tvbuff_t *tvb, const gint offset,
824     const gchar *str, const size_t size);
825
826 /**
827  * Call g_ascii_strncasecmp after checking if enough chars left, returning
828  * 0 if it returns 0 (meaning "equal") and -1 otherwise, otherwise return -1.
829  */
830 WS_DLL_PUBLIC gint tvb_strncaseeql(tvbuff_t *tvb, const gint offset,
831     const gchar *str, const size_t size);
832
833 /**
834  * Call memcmp after checking if enough chars left, returning 0 if
835  * it returns 0 (meaning "equal") and -1 otherwise, otherwise return -1.
836  */
837 WS_DLL_PUBLIC gint tvb_memeql(tvbuff_t *tvb, const gint offset,
838     const guint8 *str, size_t size);
839
840 /**
841  * Format a bunch of data from a tvbuff as bytes, returning a pointer
842  * to the string with the formatted data, with "punct" as a byte
843  * separator.
844  */
845 WS_DLL_PUBLIC gchar *tvb_bytes_to_str_punct(wmem_allocator_t *scope, tvbuff_t *tvb, const gint offset,
846     const gint len, const gchar punct);
847
848 /**
849  * Format a bunch of data from a tvbuff as bytes, returning a pointer
850  * to the string with the formatted data.
851  */
852 WS_DLL_PUBLIC gchar *tvb_bytes_to_str(wmem_allocator_t *allocator, tvbuff_t *tvb,
853     const gint offset, const gint len);
854
855 /**
856  * Given a tvbuff, an offset into the tvbuff, and a length that starts
857  * at that offset (which may be -1 for "all the way to the end of the
858  * tvbuff"), fetch BCD encoded digits from a tvbuff starting from either
859  * the low or high half byte, formatting the digits according to an input digit
860  * set, if NUL a default digit set of 0-9 returning "?" for overdecadic digits
861  * will be used.  A pointer to the packet-scope (WMEM-allocated) string will
862  * be returned. Note a tvbuff content of 0xf is considered a 'filler' and will
863  * end the conversion.
864  */
865 typedef struct dgt_set_t
866 {
867     const unsigned char out[16];
868 }
869 dgt_set_t;
870
871 WS_DLL_PUBLIC const gchar *tvb_bcd_dig_to_wmem_packet_str(tvbuff_t *tvb,
872     const gint offset, const gint len, dgt_set_t *dgt, gboolean skip_first);
873
874 /** Locate a sub-tvbuff within another tvbuff, starting at position
875  * 'haystack_offset'. Returns the index of the beginning of 'needle' within
876  * 'haystack', or -1 if 'needle' is not found. The index is relative
877  * to the start of 'haystack', not 'haystack_offset'. */
878 WS_DLL_PUBLIC gint tvb_find_tvb(tvbuff_t *haystack_tvb, tvbuff_t *needle_tvb,
879     const gint haystack_offset);
880
881 /* From tvbuff_zlib.c */
882
883 /**
884  * Uncompresses a zlib compressed packet inside a tvbuff at offset with
885  * length comprlen.  Returns an uncompressed tvbuffer if uncompression
886  * succeeded or NULL if uncompression failed.
887  */
888 WS_DLL_PUBLIC tvbuff_t *tvb_uncompress(tvbuff_t *tvb, const int offset,
889     int comprlen);
890
891 /**
892  * Uncompresses a zlib compressed packet inside a tvbuff at offset with
893  * length comprlen.  Returns an uncompressed tvbuffer attached to tvb if
894  * uncompression succeeded or NULL if uncompression failed.
895  */
896 WS_DLL_PUBLIC tvbuff_t *tvb_child_uncompress(tvbuff_t *parent, tvbuff_t *tvb,
897     const int offset, int comprlen);
898
899 /* From tvbuff_base64.c */
900
901 /** Return a tvb that contains the binary representation of a base64
902  *  string
903  */
904 extern tvbuff_t* base64_to_tvb(tvbuff_t *parent, const char *base64);
905
906 /************** END OF ACCESSORS ****************/
907
908 /** @} */
909
910 #ifdef __cplusplus
911 }
912 #endif /* __cplusplus */
913
914 #endif /* __TVBUFF_H__ */
915
916 /*
917  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
918  *
919  * Local variables:
920  * c-basic-offset: 4
921  * tab-width: 8
922  * indent-tabs-mode: nil
923  * End:
924  *
925  * vi: set shiftwidth=4 tabstop=8 expandtab:
926  * :indentSize=4:tabSize=8:noTabs=true:
927  */