More Ethereal -> Wireshark renaming
[obnox/wireshark/wip.git] / file.h
1 /* file.h
2  * Definitions for file structures and routines
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
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.
14  *
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.
19  *
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.
23  */
24
25 #ifndef __FILE_H__
26 #define __FILE_H__
27
28 #include "packet-range.h"
29 #include "wiretap/wtap.h"
30 #include <epan/dfilter/dfilter.h>
31 #include "print.h"
32 #include <errno.h>
33 #include <epan/epan.h>
34
35 #include "cfile.h"
36
37
38 /** Return values from functions that only can succeed or fail. */
39 typedef enum {
40         CF_OK,                      /**< operation succeeded */
41         CF_ERROR        /**< operation got an error (function may provide err with details) */
42 } cf_status_t;
43
44 /** Return values from functions that read capture files. */
45 typedef enum {
46         CF_READ_OK,             /**< operation succeeded */
47         CF_READ_ERROR,          /**< operation got an error (function may provide err with details) */
48         CF_READ_ABORTED         /**< operation aborted by user */
49 } cf_read_status_t;
50
51 /** Return values from functions that print sets of packets. */
52 typedef enum {
53         CF_PRINT_OK,                /**< print operation succeeded */
54         CF_PRINT_OPEN_ERROR,    /**< print operation failed while opening printer */
55         CF_PRINT_WRITE_ERROR    /**< print operation failed while writing to the printer */
56 } cf_print_status_t;
57
58 typedef enum {
59     cf_cb_file_closing,
60     cf_cb_file_closed,
61     cf_cb_file_read_start,
62     cf_cb_file_read_finished,
63 #ifdef HAVE_LIBPCAP
64     cf_cb_live_capture_prepared,
65     cf_cb_live_capture_update_started,
66     cf_cb_live_capture_update_continue,
67     cf_cb_live_capture_update_finished,
68     cf_cb_live_capture_fixed_started,
69     cf_cb_live_capture_fixed_continue,
70     cf_cb_live_capture_fixed_finished,
71         cf_cb_live_capture_stopping,
72 #endif
73     cf_cb_packet_selected,
74     cf_cb_packet_unselected,
75     cf_cb_field_unselected,
76     cf_cb_file_safe_started,
77     cf_cb_file_safe_finished,
78     cf_cb_file_safe_reload_finished,
79     cf_cb_file_safe_failed
80 } cf_cbs;
81
82 typedef void (*cf_callback_t) (gint event, gpointer data, gpointer user_data);
83
84 extern void
85 cf_callback_invoke(int event, gpointer data);
86
87 extern void
88 cf_callback_add(cf_callback_t func, gpointer user_data);
89
90 extern void
91 cf_callback_remove(cf_callback_t func);
92
93 /**
94  * Open a capture file.
95  *
96  * @param cf the capture file to be opened
97  * @param fname the filename to be opened
98  * @param is_tempfile is this a temporary file?
99  * @return one of cf_status_t
100  */
101 cf_status_t cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
102
103 /**
104  * Close a capture file.
105  *
106  * @param cf the capture file to be closed
107  */
108 void cf_close(capture_file *cf);
109
110 /**
111  * Reload a capture file.
112  *
113  * @param cf the capture file to be reloaded
114  */
115 void cf_reload(capture_file *cf);
116
117 /**
118  * Read all packets of a capture file into the internal structures.
119  * 
120  * @param cf the capture file to be read
121  * @return one of cf_read_status_t
122  */
123 cf_read_status_t cf_read(capture_file *cf);
124
125 /**
126  * Start reading from the end of a capture file.
127  * This is used in "Update list of packets in Real-Time".
128  * 
129  * @param cf the capture file to be read from
130  * @param fname the filename to be read from
131  * @param is_tempfile is this a temporary file?
132  * @param err the error code, if an error had occured
133  * @return one of cf_status_t
134  */
135 cf_status_t cf_start_tail(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
136
137 /**
138  * Read packets from the "end" of a capture file.
139  * 
140  * @param cf the capture file to be read from
141  * @param to_read the number of packets to read
142  * @param err the error code, if an error had occured
143  * @return one of cf_read_status_t
144  */
145 cf_read_status_t cf_continue_tail(capture_file *cf, int to_read, int *err);
146
147 /**
148  * Finish reading from "end" of a capture file.
149  * 
150  * @param cf the capture file to be read from
151  * @param err the error code, if an error had occured
152  * @return one of cf_read_status_t
153  */
154 cf_read_status_t cf_finish_tail(capture_file *cf, int *err);
155
156 /**
157  * Save a capture file (or a range of it).
158  * 
159  * @param cf the capture file to save to
160  * @param fname the filename to save to
161  * @param range the range of packets to save
162  * @param save_format the format of the file to save (libpcap, ...)
163  * @param compressed wether to gzip compress the file
164  * @return one of cf_status_t
165  */
166 cf_status_t cf_save(capture_file * cf, const char *fname, packet_range_t *range, guint save_format, gboolean compressed);
167
168 /**
169  * Get a displayable name of the capture file.
170  * 
171  * @param cf the capture file
172  * @return the displayable name (don't have to be g_free'd)
173  */
174 const gchar *cf_get_display_name(capture_file *cf);
175
176 /**
177  * Get the number of packets in the capture file.
178  * 
179  * @param cf the capture file
180  * @return the number of packets in the capture file
181  */
182 int cf_get_packet_count(capture_file *cf);
183
184 /**
185  * Set the number of packets in the capture file.
186  * 
187  * @param cf the capture file
188  * @param the number of packets in the capture file
189  */
190 void cf_set_packet_count(capture_file *cf, int packet_count);
191
192 /**
193  * Is this capture file a temporary file?
194  * 
195  * @param cf the capture file
196  * @return TRUE if it's a temporary file, FALSE otherwise
197  */
198 gboolean cf_is_tempfile(capture_file *cf);
199
200 /**
201  * Set flag, that this file is a tempfile.
202  */
203 void cf_set_tempfile(capture_file *cf, gboolean is_tempfile);
204
205 /**
206  * Set flag, if the number of packet drops while capturing are known or not.
207  * 
208  * @param cf the capture file
209  * @param drops_known TRUE if the number of packet drops are known, FALSE otherwise
210  */
211 void cf_set_drops_known(capture_file *cf, gboolean drops_known);
212
213 /**
214  * Set the number of packet drops while capturing.
215  * 
216  * @param cf the capture file
217  * @param drops the number of packet drops occured while capturing
218  */
219 void cf_set_drops(capture_file *cf, guint32 drops);
220
221 /**
222  * Get flag state, if the number of packet drops while capturing are known or not.
223  * 
224  * @param cf the capture file
225  * @return TRUE if the number of packet drops are known, FALSE otherwise
226  */
227 gboolean cf_get_drops_known(capture_file *cf);
228
229 /**
230  * Get the number of packet drops while capturing.
231  * 
232  * @param cf the capture file
233  * @return the number of packet drops occured while capturing
234  */
235 guint32 cf_get_drops(capture_file *cf);
236
237 /**
238  * Set the read filter.
239  * @todo this shouldn't be required, remove it somehow
240  * 
241  * @param cf the capture file
242  * @param rfcode the readfilter
243  */
244 void cf_set_rfcode(capture_file *cf, dfilter_t *rfcode);
245
246 /**
247  * "Display Filter" packets in the capture file.
248  * 
249  * @param cf the capture file
250  * @param dfilter the display filter
251  * @param force TRUE if do in any case, FALSE only if dfilter changed
252  * @return one of cf_status_t
253  */
254 cf_status_t cf_filter_packets(capture_file *cf, gchar *dfilter, gboolean force);
255
256 /**
257  * At least one "Refence Time" flag has changed, rescan all packets.
258  * 
259  * @param cf the capture file
260  */
261 void cf_reftime_packets(capture_file *cf);
262
263 /**
264  * At least one "Refence Time" flag has changed, rescan all packets.
265  * 
266  * @param cf the capture file
267  */
268 void cf_colorize_packets(capture_file *cf);
269
270 /**
271  * "Something" has changed, rescan all packets.
272  * 
273  * @param cf the capture file
274  */
275 void cf_redissect_packets(capture_file *cf);
276
277 /**
278  * Rescan all packets and just run taps - don't reconstruct the display.
279  * 
280  * @param cf the capture file
281  * @param do_columns TRUE if columns are to be generated, FALSE otherwise
282  * @return one of cf_read_status_t
283  */
284 cf_read_status_t cf_retap_packets(capture_file *cf, gboolean do_columns);
285
286 /**
287  * The time format has changed, rescan all packets.
288  * 
289  * @param cf the capture file
290  */
291 void cf_change_time_formats(capture_file *cf);
292
293 /**
294  * Print the capture file.
295  * 
296  * @param cf the capture file
297  * @param print_args the arguments what and how to print
298  * @return one of cf_print_status_t
299  */
300 cf_print_status_t cf_print_packets(capture_file *cf, print_args_t *print_args);
301
302 /**
303  * Print (export) the capture file into PDML format.
304  * 
305  * @param cf the capture file
306  * @param print_args the arguments what and how to export
307  * @return one of cf_print_status_t
308  */
309 cf_print_status_t cf_write_pdml_packets(capture_file *cf, print_args_t *print_args);
310
311 /**
312  * Print (export) the capture file into PSML format.
313  * 
314  * @param cf the capture file
315  * @param print_args the arguments what and how to export
316  * @return one of cf_print_status_t
317  */
318 cf_print_status_t cf_write_psml_packets(capture_file *cf, print_args_t *print_args);
319
320 /**
321  * Print (export) the capture file into CSV format.
322  *
323  * @param cf the capture file
324  * @param print_args the arguments what and how to export
325  * @return one of cf_print_status_t
326  */
327 cf_print_status_t cf_write_csv_packets(capture_file *cf, print_args_t *print_args);
328
329 /**
330  * Find Packet in protocol tree.
331  * 
332  * @param cf the capture file
333  * @param string the string to find
334  * @return TRUE if a packet was found, FALSE otherwise
335  */
336 gboolean cf_find_packet_protocol_tree(capture_file *cf, const char *string);
337
338 /**
339  * Find Packet in summary line.
340  * 
341  * @param cf the capture file
342  * @param string the string to find
343  * @return TRUE if a packet was found, FALSE otherwise
344  */
345 gboolean cf_find_packet_summary_line(capture_file *cf, const char *string);
346
347 /**
348  * Find Packet in packet data.
349  * 
350  * @param cf the capture file
351  * @param string the string to find
352  * @param string_size the size of the string to find
353  * @return TRUE if a packet was found, FALSE otherwise
354  */
355 gboolean cf_find_packet_data(capture_file *cf, const guint8 *string,
356                           size_t string_size);
357
358 /**
359  * Find Packet by display filter.
360  * 
361  * @param cf the capture file
362  * @param sfcode the display filter to find a packet for
363  * @return TRUE if a packet was found, FALSE otherwise
364  */
365 gboolean cf_find_packet_dfilter(capture_file *cf, dfilter_t *sfcode);
366
367 /**
368  * GoTo Packet in first row.
369  * 
370  * @param cf the capture file
371  * @return TRUE if the first row exists, FALSE otherwise
372  */
373 gboolean cf_goto_top_frame(capture_file *cf);
374
375 /**
376  * GoTo Packet in last row.
377  * 
378  * @param cf the capture file
379  * @return TRUE if last row exists, FALSE otherwise
380  */
381 gboolean cf_goto_bottom_frame(capture_file *cf);
382
383 /**
384  * GoTo Packet with the given row.
385  * 
386  * @param cf the capture file
387  * @param row the row to go to
388  * @return TRUE if this row exists, FALSE otherwise
389  */
390 gboolean cf_goto_frame(capture_file *cf, guint row);
391
392 /**
393  * Go to frame specified by currently selected protocol tree field.
394  * (Go To Corresponding Packet)
395  * @todo this is ugly and should be improved!
396  *
397  * @param cf the capture file
398  * @return TRUE if this packet exists, FALSE otherwise
399  */
400 gboolean cf_goto_framenum(capture_file *cf);
401
402 /**
403  * Select the packet in the given row.
404  *
405  * @param cf the capture file
406  * @param row the row to select
407  */
408 void cf_select_packet(capture_file *cf, int row);
409
410 /**
411  * Unselect all packets, if any.
412  *
413  * @param cf the capture file
414  * @param row the row to select
415  */
416 void cf_unselect_packet(capture_file *cf);
417
418 /**
419  * Unselect all protocol tree fields, if any.
420  *
421  * @param cf the capture file
422  * @param row the row to select
423  */
424 void cf_unselect_field(capture_file *cf);
425
426 /**
427  * Mark a particular frame in a particular capture.
428  *
429  * @param cf the capture file
430  * @param frame the frame to be marked
431  */
432 void cf_mark_frame(capture_file *cf, frame_data *frame);
433
434 /**
435  * Unmark a particular frame in a particular capture.
436  *
437  * @param cf the capture file
438  * @param frame the frame to be unmarked
439  */
440 void cf_unmark_frame(capture_file *cf, frame_data *frame);
441
442 /**
443  * Convert error number and info to a complete message.
444  *
445  * @param err the error number
446  * @param err_info the additional info about this error (e.g. filename)
447  * @return statically allocated error message
448  */
449 char *cf_read_error_message(int err, const gchar *err_info);
450
451 /**
452  * Merge two (or more) capture files into one.
453  * @todo is this the right place for this function? It doesn't have to do a lot with capture_file.
454  *
455  * @param out_filename pointer to output filename; if output filename is
456  * NULL, a temporary file name is generated and *out_filename is set
457  * to point to the generated file name
458  * @param in_file_count the number of input files to merge
459  * @param in_filnames array of input filenames
460  * @param file_type the output filetype
461  * @param do_append FALSE to merge chronologically, TRUE simply append
462  * @return one of cf_status_t
463  */
464 cf_status_t
465 cf_merge_files(char **out_filename, int in_file_count,
466                char *const *in_filenames, int file_type, gboolean do_append);
467
468 #endif /* file.h */