sec_vt_header: dissect call_id
[wireshark-wip.git] / file.h
blobe375a196f1a742bd906c0fc6bc6a97c675fe059c
1 /* file.h
2 * Definitions for file structures and routines
4 * $Id$
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #ifndef __FILE_H__
26 #define __FILE_H__
28 #include "wiretap/wtap.h"
29 #include <errno.h>
30 #include <epan/epan.h>
32 #include <epan/print.h>
33 #include <epan/packet-range.h>
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
39 /** Return values from functions that only can succeed or fail. */
40 typedef enum {
41 CF_OK, /**< operation succeeded */
42 CF_ERROR /**< operation got an error (function may provide err with details) */
43 } cf_status_t;
45 /** Return values from functions that read capture files. */
46 typedef enum {
47 CF_READ_OK, /**< operation succeeded */
48 CF_READ_ERROR, /**< operation got an error (function may provide err with details) */
49 CF_READ_ABORTED /**< operation aborted by user */
50 } cf_read_status_t;
52 /** Return values from functions that write out packets. */
53 typedef enum {
54 CF_WRITE_OK, /**< operation succeeded */
55 CF_WRITE_ERROR, /**< operation got an error (function may provide err with details) */
56 CF_WRITE_ABORTED /**< operation aborted by user */
57 } cf_write_status_t;
59 /** Return values from functions that print sets of packets. */
60 typedef enum {
61 CF_PRINT_OK, /**< print operation succeeded */
62 CF_PRINT_OPEN_ERROR, /**< print operation failed while opening printer */
63 CF_PRINT_WRITE_ERROR /**< print operation failed while writing to the printer */
64 } cf_print_status_t;
66 typedef enum {
67 cf_cb_file_opened,
68 cf_cb_file_closing,
69 cf_cb_file_closed,
70 cf_cb_file_read_started,
71 cf_cb_file_read_finished,
72 cf_cb_file_reload_started,
73 cf_cb_file_reload_finished,
74 cf_cb_file_rescan_started,
75 cf_cb_file_rescan_finished,
76 cf_cb_file_fast_save_finished,
77 cf_cb_packet_selected,
78 cf_cb_packet_unselected,
79 cf_cb_field_unselected,
80 cf_cb_file_save_started,
81 cf_cb_file_save_finished,
82 cf_cb_file_save_failed,
83 cf_cb_file_save_stopped,
84 cf_cb_file_export_specified_packets_started,
85 cf_cb_file_export_specified_packets_finished,
86 cf_cb_file_export_specified_packets_failed,
87 cf_cb_file_export_specified_packets_stopped
88 } cf_cbs;
90 typedef void (*cf_callback_t) (gint event, gpointer data, gpointer user_data);
92 typedef struct {
93 const char *string;
94 size_t string_len;
95 capture_file *cf;
96 gboolean frame_matched;
97 field_info *finfo;
98 } match_data;
100 extern void
101 cf_callback_add(cf_callback_t func, gpointer user_data);
103 extern void
104 cf_callback_remove(cf_callback_t func);
107 * Open a capture file.
109 * @param cf the capture file to be opened
110 * @param fname the filename to be opened
111 * @param is_tempfile is this a temporary file?
112 * @param err error code
113 * @return one of cf_status_t
115 cf_status_t cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
118 * Close a capture file.
120 * @param cf the capture file to be closed
122 void cf_close(capture_file *cf);
125 * Reload a capture file.
127 * @param cf the capture file to be reloaded
129 void cf_reload(capture_file *cf);
132 * Read all packets of a capture file into the internal structures.
134 * @param cf the capture file to be read
135 * @param from_save reread asked from cf_save_packets
136 * @return one of cf_read_status_t
138 cf_read_status_t cf_read(capture_file *cf, gboolean from_save);
141 * Read the pseudo-header and raw data for a packet. It will pop
142 * up an alert box if there's an error.
144 * @param cf the capture file from which to read the packet
145 * @param fdata the frame_data structure for the packet in question
146 * @param phdr pointer to a wtap_pkthdr structure to contain the
147 * packet's pseudo-header and other metadata
148 * @param buf a Buffer into which to read the packet's raw data
149 * @return TRUE if the read succeeded, FALSE if there was an error
151 gboolean cf_read_frame_r(capture_file *cf, const frame_data *fdata,
152 struct wtap_pkthdr *phdr, Buffer *buf);
155 * Read the pseudo-header and raw data for a packet into a
156 * capture_file structure's pseudo_header and buf members.
157 * It will pop up an alert box if there's an error.
159 * @param cf the capture file from which to read the packet
160 * @param fdata the frame_data structure for the packet in question
161 * @return TRUE if the read succeeded, FALSE if there was an error
163 gboolean cf_read_frame(capture_file *cf, frame_data *fdata);
166 * Read packets from the "end" of a capture file.
168 * @param cf the capture file to be read from
169 * @param to_read the number of packets to read
170 * @param err the error code, if an error had occurred
171 * @return one of cf_read_status_t
173 cf_read_status_t cf_continue_tail(capture_file *cf, volatile int to_read, int *err);
176 * Fake reading packets from the "end" of a capture file.
178 * @param cf the capture file to be read from
180 void cf_fake_continue_tail(capture_file *cf);
183 * Finish reading from "end" of a capture file.
185 * @param cf the capture file to be read from
186 * @param err the error code, if an error had occurred
187 * @return one of cf_read_status_t
189 cf_read_status_t cf_finish_tail(capture_file *cf, int *err);
192 * Determine whether this capture file (or a range of it) can be written
193 * in any format using Wiretap rather than by copying the raw data.
195 * @param cf the capture file to check
196 * @return TRUE if it can be written, FALSE if it can't
198 gboolean cf_can_write_with_wiretap(capture_file *cf);
201 * Determine whether this capture file can be saved with a "save" operation;
202 * if there's nothing unsaved, it can't.
204 * @param cf the capture file to check
205 * @return TRUE if it can be saved, FALSE if it can't
207 gboolean cf_can_save(capture_file *cf);
210 * Determine whether this capture file can be saved with a "save as" operation.
212 * @param cf the capture file to check
213 * @return TRUE if it can be saved, FALSE if it can't
215 gboolean cf_can_save_as(capture_file *cf);
218 * Determine whether this capture file has unsaved data.
220 * @param cf the capture file to check
221 * @return TRUE if it has unsaved data, FALSE if it doesn't
223 gboolean cf_has_unsaved_data(capture_file *cf);
226 * Save all packets in a capture file to a new file, and, if that succeeds,
227 * make that file the current capture file. If there's already a file with
228 * that name, do a "safe save", writing to a temporary file in the same
229 * directory and, if the write succeeds, renaming the new file on top of the
230 * old file, so that if the write fails, the old file is still intact.
232 * @param cf the capture file to save to
233 * @param fname the filename to save to
234 * @param save_format the format of the file to save (libpcap, ...)
235 * @param compressed whether to gzip compress the file
236 * @param discard_comments TRUE if we should discard comments if the save
237 * succeeds (because we saved in a format that doesn't support
238 * comments)
239 * @param dont_reopen TRUE if it shouldn't reopen and make that file the
240 * current capture file
241 * @return one of cf_write_status_t
243 cf_write_status_t cf_save_packets(capture_file * cf, const char *fname,
244 guint save_format, gboolean compressed,
245 gboolean discard_comments,
246 gboolean dont_reopen);
249 * Export some or all packets from a capture file to a new file. If there's
250 * already a file with that name, do a "safe save", writing to a temporary
251 * file in the same directory and, if the write succeeds, renaming the new
252 * file on top of the old file, so that if the write fails, the old file is
253 * still intact.
255 * @param cf the capture file to write to
256 * @param fname the filename to write to
257 * @param range the range of packets to write
258 * @param save_format the format of the file to write (libpcap, ...)
259 * @param compressed whether to gzip compress the file
260 * @return one of cf_write_status_t
262 cf_write_status_t cf_export_specified_packets(capture_file *cf,
263 const char *fname,
264 packet_range_t *range,
265 guint save_format,
266 gboolean compressed);
269 * Get a displayable name of the capture file.
271 * @param cf the capture file
272 * @return the displayable name (must be g_free'd)
274 gchar *cf_get_display_name(capture_file *cf);
277 * Set the source of the capture data for temporary files, e.g.
278 * "Interface eth0" or "Pipe from Pong"
280 * @param cf the capture file
281 * @param source the source description. this will be copied internally.
283 void cf_set_tempfile_source(capture_file *cf, gchar *source);
286 * Get the source of the capture data for temporary files. Guaranteed to
287 * return a non-null value. The returned value should not be freed.
289 * @param cf the capture file
291 const gchar *cf_get_tempfile_source(capture_file *cf);
294 * Get the number of packets in the capture file.
296 * @param cf the capture file
297 * @return the number of packets in the capture file
299 int cf_get_packet_count(capture_file *cf);
302 * Set the number of packets in the capture file.
304 * @param cf the capture file
305 * @param packet_count the number of packets in the capture file
307 void cf_set_packet_count(capture_file *cf, int packet_count);
310 * Is this capture file a temporary file?
312 * @param cf the capture file
313 * @return TRUE if it's a temporary file, FALSE otherwise
315 gboolean cf_is_tempfile(capture_file *cf);
318 * Set flag, that this file is a tempfile.
320 void cf_set_tempfile(capture_file *cf, gboolean is_tempfile);
323 * Set flag, if the number of packet drops while capturing are known or not.
325 * @param cf the capture file
326 * @param drops_known TRUE if the number of packet drops are known, FALSE otherwise
328 void cf_set_drops_known(capture_file *cf, gboolean drops_known);
331 * Set the number of packet drops while capturing.
333 * @param cf the capture file
334 * @param drops the number of packet drops occurred while capturing
336 void cf_set_drops(capture_file *cf, guint32 drops);
339 * Get flag state, if the number of packet drops while capturing are known or not.
341 * @param cf the capture file
342 * @return TRUE if the number of packet drops are known, FALSE otherwise
344 gboolean cf_get_drops_known(capture_file *cf);
347 * Get the number of packet drops while capturing.
349 * @param cf the capture file
350 * @return the number of packet drops occurred while capturing
352 guint32 cf_get_drops(capture_file *cf);
355 * Set the read filter.
356 * @todo this shouldn't be required, remove it somehow
358 * @param cf the capture file
359 * @param rfcode the readfilter
361 void cf_set_rfcode(capture_file *cf, dfilter_t *rfcode);
364 * "Display Filter" packets in the capture file.
366 * @param cf the capture file
367 * @param dfilter the display filter
368 * @param force TRUE if do in any case, FALSE only if dfilter changed
369 * @return one of cf_status_t
371 cf_status_t cf_filter_packets(capture_file *cf, gchar *dfilter, gboolean force);
374 * At least one "Refence Time" flag has changed, rescan all packets.
376 * @param cf the capture file
378 void cf_reftime_packets(capture_file *cf);
381 * Return the time it took to load the file
383 gulong cf_get_computed_elapsed(capture_file *cf);
386 * "Something" has changed, rescan all packets.
388 * @param cf the capture file
390 void cf_redissect_packets(capture_file *cf);
393 * Rescan all packets and just run taps - don't reconstruct the display.
395 * @param cf the capture file
396 * @return one of cf_read_status_t
398 cf_read_status_t cf_retap_packets(capture_file *cf);
401 * Adjust timestamp precision if auto is selected.
403 * @param cf the capture file
405 void cf_timestamp_auto_precision(capture_file *cf);
408 * Print the capture file.
410 * @param cf the capture file
411 * @param print_args the arguments what and how to print
412 * @return one of cf_print_status_t
414 cf_print_status_t cf_print_packets(capture_file *cf, print_args_t *print_args);
417 * Print (export) the capture file into PDML format.
419 * @param cf the capture file
420 * @param print_args the arguments what and how to export
421 * @return one of cf_print_status_t
423 cf_print_status_t cf_write_pdml_packets(capture_file *cf, print_args_t *print_args);
426 * Print (export) the capture file into PSML format.
428 * @param cf the capture file
429 * @param print_args the arguments what and how to export
430 * @return one of cf_print_status_t
432 cf_print_status_t cf_write_psml_packets(capture_file *cf, print_args_t *print_args);
435 * Print (export) the capture file into CSV format.
437 * @param cf the capture file
438 * @param print_args the arguments what and how to export
439 * @return one of cf_print_status_t
441 cf_print_status_t cf_write_csv_packets(capture_file *cf, print_args_t *print_args);
444 * Print (export) the capture file into C Arrays format.
446 * @param cf the capture file
447 * @param print_args the arguments what and how to export
448 * @return one of cf_print_status_t
450 cf_print_status_t cf_write_carrays_packets(capture_file *cf, print_args_t *print_args);
453 * Find packet with a protocol tree item that contains a specified text string.
455 * @param cf the capture file
456 * @param string the string to find
457 * @param dir direction in which to search
458 * @return TRUE if a packet was found, FALSE otherwise
460 gboolean cf_find_packet_protocol_tree(capture_file *cf, const char *string,
461 search_direction dir);
464 * Find field with a label that contains text string cfile->sfilter.
466 * @param cf the capture file
467 * @param tree the protocol tree
468 * @param mdata the first field (mdata->finfo) that matched the string
469 * @return TRUE if a packet was found, FALSE otherwise
471 extern gboolean cf_find_string_protocol_tree(capture_file *cf, proto_tree *tree,
472 match_data *mdata);
475 * Find packet whose summary line contains a specified text string.
477 * @param cf the capture file
478 * @param string the string to find
479 * @param dir direction in which to search
480 * @return TRUE if a packet was found, FALSE otherwise
482 gboolean cf_find_packet_summary_line(capture_file *cf, const char *string,
483 search_direction dir);
486 * Find packet whose data contains a specified byte string.
488 * @param cf the capture file
489 * @param string the string to find
490 * @param string_size the size of the string to find
491 * @param dir direction in which to search
492 * @return TRUE if a packet was found, FALSE otherwise
494 gboolean cf_find_packet_data(capture_file *cf, const guint8 *string,
495 size_t string_size, search_direction dir);
498 * Find packet that matches a compiled display filter.
500 * @param cf the capture file
501 * @param sfcode the display filter to match
502 * @param dir direction in which to search
503 * @return TRUE if a packet was found, FALSE otherwise
505 gboolean cf_find_packet_dfilter(capture_file *cf, dfilter_t *sfcode,
506 search_direction dir);
509 * Find packet that matches a display filter given as a text string.
511 * @param cf the capture file
512 * @param filter the display filter to match
513 * @param dir direction in which to search
514 * @return TRUE if a packet was found, FALSE otherwise
516 gboolean
517 cf_find_packet_dfilter_string(capture_file *cf, const char *filter,
518 search_direction dir);
521 * Find marked packet.
523 * @param cf the capture file
524 * @param dir direction in which to search
525 * @return TRUE if a packet was found, FALSE otherwise
527 gboolean cf_find_packet_marked(capture_file *cf, search_direction dir);
530 * Find time-reference packet.
532 * @param cf the capture file
533 * @param dir direction in which to search
534 * @return TRUE if a packet was found, FALSE otherwise
536 gboolean cf_find_packet_time_reference(capture_file *cf, search_direction dir);
539 * GoTo Packet in first row.
541 * @return TRUE if the first row exists, FALSE otherwise
543 gboolean cf_goto_top_frame(void);
546 * GoTo Packet in last row.
548 * @return TRUE if last row exists, FALSE otherwise
550 gboolean cf_goto_bottom_frame(void);
553 * GoTo Packet with the given row.
555 * @param cf the capture file
556 * @param row the row to go to
557 * @return TRUE if this row exists, FALSE otherwise
559 gboolean cf_goto_frame(capture_file *cf, guint row);
562 * Go to frame specified by currently selected protocol tree field.
563 * (Go To Corresponding Packet)
564 * @todo this is ugly and should be improved!
566 * @param cf the capture file
567 * @return TRUE if this packet exists, FALSE otherwise
569 gboolean cf_goto_framenum(capture_file *cf);
572 * Select the packet in the given row.
574 * @param cf the capture file
575 * @param row the row to select
577 void cf_select_packet(capture_file *cf, int row);
580 * Unselect all packets, if any.
582 * @param cf the capture file
584 void cf_unselect_packet(capture_file *cf);
587 * Unselect all protocol tree fields, if any.
589 * @param cf the capture file
591 void cf_unselect_field(capture_file *cf);
594 * Mark a particular frame in a particular capture.
596 * @param cf the capture file
597 * @param frame the frame to be marked
599 void cf_mark_frame(capture_file *cf, frame_data *frame);
602 * Unmark a particular frame in a particular capture.
604 * @param cf the capture file
605 * @param frame the frame to be unmarked
607 void cf_unmark_frame(capture_file *cf, frame_data *frame);
610 * Ignore a particular frame in a particular capture.
612 * @param cf the capture file
613 * @param frame the frame to be ignored
615 void cf_ignore_frame(capture_file *cf, frame_data *frame);
618 * Unignore a particular frame in a particular capture.
620 * @param cf the capture file
621 * @param frame the frame to be unignored
623 void cf_unignore_frame(capture_file *cf, frame_data *frame);
626 * Merge two (or more) capture files into one.
627 * @todo is this the right place for this function? It doesn't have to do a lot with capture_file.
629 * @param out_filename pointer to output filename; if output filename is
630 * NULL, a temporary file name is generated and *out_filename is set
631 * to point to the generated file name
632 * @param in_file_count the number of input files to merge
633 * @param in_filenames array of input filenames
634 * @param file_type the output filetype
635 * @param do_append FALSE to merge chronologically, TRUE simply append
636 * @return one of cf_status_t
638 cf_status_t
639 cf_merge_files(char **out_filename, int in_file_count,
640 char *const *in_filenames, int file_type, gboolean do_append);
644 * Get the comment on a capture from the SHB data block
646 * @param cf the capture file
648 const gchar* cf_read_shb_comment(capture_file *cf);
651 * Update(replace) the comment on a capture from the SHB data block
653 * @param cf the capture file
654 * @param comment the string replacing the old comment
656 void cf_update_capture_comment(capture_file *cf, gchar *comment);
658 char *cf_get_comment(capture_file *cf, const frame_data *fd);
661 * Update(replace) the comment on a capture from a frame
663 * @param cf the capture file
664 * @param fd the frame_data structure for the frame
665 * @param new_comment the string replacing the old comment
667 gboolean cf_set_user_packet_comment(capture_file *cf, frame_data *fd, const gchar *new_comment);
670 * What types of comments does this file have?
672 * @param cf the capture file
673 * @return bitset of WTAP_COMMENT_ values
675 guint32 cf_comment_types(capture_file *cf);
677 #if defined(HAVE_HEIMDAL_KERBEROS) || defined(HAVE_MIT_KERBEROS)
678 WS_DLL_PUBLIC
679 void read_keytab_file(const char *);
680 #endif
682 #ifdef __cplusplus
684 #endif /* __cplusplus */
686 #endif /* file.h */