Some minor corrections in function descriptions
[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     cf_cb_packet_selected,
64     cf_cb_packet_unselected,
65     cf_cb_field_unselected,
66     cf_cb_file_safe_started,
67     cf_cb_file_safe_finished,
68     cf_cb_file_safe_reload_finished,
69     cf_cb_file_safe_failed
70 } cf_cbs;
71
72 typedef void (*cf_callback_t) (gint event, gpointer data, gpointer user_data);
73
74 extern void
75 cf_callback_add(cf_callback_t func, gpointer user_data);
76
77 extern void
78 cf_callback_remove(cf_callback_t func);
79
80 /**
81  * Open a capture file.
82  *
83  * @param cf the capture file to be opened
84  * @param fname the filename to be opened
85  * @param is_tempfile is this a temporary file?
86  * @return one of cf_status_t
87  */
88 cf_status_t cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
89
90 /**
91  * Close a capture file.
92  *
93  * @param cf the capture file to be closed
94  */
95 void cf_close(capture_file *cf);
96
97 /**
98  * Reload a capture file.
99  *
100  * @param cf the capture file to be reloaded
101  */
102 void cf_reload(capture_file *cf);
103
104 /**
105  * Read all packets of a capture file into the internal structures.
106  * 
107  * @param cf the capture file to be read
108  * @return one of cf_read_status_t
109  */
110 cf_read_status_t cf_read(capture_file *cf);
111
112 /**
113  * Start reading from the end of a capture file.
114  * This is used in "Update list of packets in Real-Time".
115  * 
116  * @param cf the capture file to be read from
117  * @param fname the filename to be read from
118  * @param is_tempfile is this a temporary file?
119  * @param err the error code, if an error had occured
120  * @return one of cf_status_t
121  */
122 cf_status_t cf_start_tail(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
123
124 /**
125  * Read packets from the "end" of a capture file.
126  * 
127  * @param cf the capture file to be read from
128  * @param to_read the number of packets to read
129  * @param err the error code, if an error had occured
130  * @return one of cf_read_status_t
131  */
132 cf_read_status_t cf_continue_tail(capture_file *cf, volatile int to_read, int *err);
133
134 /**
135  * Finish reading from "end" of a capture file.
136  * 
137  * @param cf the capture file to be read from
138  * @param err the error code, if an error had occured
139  * @return one of cf_read_status_t
140  */
141 cf_read_status_t cf_finish_tail(capture_file *cf, int *err);
142
143 /**
144  * Determine whether this capture file (or a range of it) can be saved
145  * (except by copying the raw file data).
146  * 
147  * @param cf the capture file to check
148  * @return TRUE if it can be saved, FALSE if it can't
149  */
150 gboolean cf_can_save_as(capture_file *cf);
151
152 /**
153  * Save a capture file (or a range of it).
154  * 
155  * @param cf the capture file to save to
156  * @param fname the filename to save to
157  * @param range the range of packets to save
158  * @param save_format the format of the file to save (libpcap, ...)
159  * @param compressed whether to gzip compress the file
160  * @return one of cf_status_t
161  */
162 cf_status_t cf_save(capture_file * cf, const char *fname, packet_range_t *range, guint save_format, gboolean compressed);
163
164 /**
165  * Get a displayable name of the capture file.
166  * 
167  * @param cf the capture file
168  * @return the displayable name (don't have to be g_free'd)
169  */
170 const gchar *cf_get_display_name(capture_file *cf);
171
172 /**
173  * Get the number of packets in the capture file.
174  * 
175  * @param cf the capture file
176  * @return the number of packets in the capture file
177  */
178 int cf_get_packet_count(capture_file *cf);
179
180 /**
181  * Set the number of packets in the capture file.
182  * 
183  * @param cf the capture file
184  * @param the number of packets in the capture file
185  */
186 void cf_set_packet_count(capture_file *cf, int packet_count);
187
188 /**
189  * Is this capture file a temporary file?
190  * 
191  * @param cf the capture file
192  * @return TRUE if it's a temporary file, FALSE otherwise
193  */
194 gboolean cf_is_tempfile(capture_file *cf);
195
196 /**
197  * Set flag, that this file is a tempfile.
198  */
199 void cf_set_tempfile(capture_file *cf, gboolean is_tempfile);
200
201 /**
202  * Set flag, if the number of packet drops while capturing are known or not.
203  * 
204  * @param cf the capture file
205  * @param drops_known TRUE if the number of packet drops are known, FALSE otherwise
206  */
207 void cf_set_drops_known(capture_file *cf, gboolean drops_known);
208
209 /**
210  * Set the number of packet drops while capturing.
211  * 
212  * @param cf the capture file
213  * @param drops the number of packet drops occured while capturing
214  */
215 void cf_set_drops(capture_file *cf, guint32 drops);
216
217 /**
218  * Get flag state, if the number of packet drops while capturing are known or not.
219  * 
220  * @param cf the capture file
221  * @return TRUE if the number of packet drops are known, FALSE otherwise
222  */
223 gboolean cf_get_drops_known(capture_file *cf);
224
225 /**
226  * Get the number of packet drops while capturing.
227  * 
228  * @param cf the capture file
229  * @return the number of packet drops occured while capturing
230  */
231 guint32 cf_get_drops(capture_file *cf);
232
233 /**
234  * Set the read filter.
235  * @todo this shouldn't be required, remove it somehow
236  * 
237  * @param cf the capture file
238  * @param rfcode the readfilter
239  */
240 void cf_set_rfcode(capture_file *cf, dfilter_t *rfcode);
241
242 /**
243  * "Display Filter" packets in the capture file.
244  * 
245  * @param cf the capture file
246  * @param dfilter the display filter
247  * @param force TRUE if do in any case, FALSE only if dfilter changed
248  * @return one of cf_status_t
249  */
250 cf_status_t cf_filter_packets(capture_file *cf, gchar *dfilter, gboolean force);
251
252 /**
253  * At least one "Refence Time" flag has changed, rescan all packets.
254  * 
255  * @param cf the capture file
256  */
257 void cf_reftime_packets(capture_file *cf);
258
259 /**
260  * Return the time it took to load the file
261  */
262 gulong cf_get_computed_elapsed(void);
263
264 /**
265  * The coloring rules have changed, redo coloring
266  * 
267  * @param cf the capture file
268  */
269 void cf_colorize_packets(capture_file *cf);
270
271 /**
272  * "Something" has changed, rescan all packets.
273  * 
274  * @param cf the capture file
275  */
276 void cf_redissect_packets(capture_file *cf);
277
278 /**
279  * Rescan all packets and just run taps - don't reconstruct the display.
280  * 
281  * @param cf the capture file
282  * @return one of cf_read_status_t
283  */
284 cf_read_status_t cf_retap_packets(capture_file *cf);
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  * Adjust timestamp precision if auto is selected.
295  * 
296  * @param cf the capture file
297  */
298 void cf_timestamp_auto_precision(capture_file *cf);
299
300 /**
301  * Print the capture file.
302  * 
303  * @param cf the capture file
304  * @param print_args the arguments what and how to print
305  * @return one of cf_print_status_t
306  */
307 cf_print_status_t cf_print_packets(capture_file *cf, print_args_t *print_args);
308
309 /**
310  * Print (export) the capture file into PDML format.
311  * 
312  * @param cf the capture file
313  * @param print_args the arguments what and how to export
314  * @return one of cf_print_status_t
315  */
316 cf_print_status_t cf_write_pdml_packets(capture_file *cf, print_args_t *print_args);
317
318 /**
319  * Print (export) the capture file into PSML format.
320  * 
321  * @param cf the capture file
322  * @param print_args the arguments what and how to export
323  * @return one of cf_print_status_t
324  */
325 cf_print_status_t cf_write_psml_packets(capture_file *cf, print_args_t *print_args);
326
327 /**
328  * Print (export) the capture file into CSV format.
329  *
330  * @param cf the capture file
331  * @param print_args the arguments what and how to export
332  * @return one of cf_print_status_t
333  */
334 cf_print_status_t cf_write_csv_packets(capture_file *cf, print_args_t *print_args);
335
336 /**
337  * Print (export) the capture file into C Arrays format.
338  *
339  * @param cf the capture file
340  * @param print_args the arguments what and how to export
341  * @return one of cf_print_status_t
342  */
343 cf_print_status_t cf_write_carrays_packets(capture_file *cf, print_args_t *print_args);
344
345 /**
346  * Find Packet in protocol tree.
347  * 
348  * @param cf the capture file
349  * @param string the string to find
350  * @return TRUE if a packet was found, FALSE otherwise
351  */
352 gboolean cf_find_packet_protocol_tree(capture_file *cf, const char *string);
353
354 /**
355  * Find Packet in summary line.
356  * 
357  * @param cf the capture file
358  * @param string the string to find
359  * @return TRUE if a packet was found, FALSE otherwise
360  */
361 gboolean cf_find_packet_summary_line(capture_file *cf, const char *string);
362
363 /**
364  * Find Packet in packet data.
365  * 
366  * @param cf the capture file
367  * @param string the string to find
368  * @param string_size the size of the string to find
369  * @return TRUE if a packet was found, FALSE otherwise
370  */
371 gboolean cf_find_packet_data(capture_file *cf, const guint8 *string,
372                           size_t string_size);
373
374 /**
375  * Find Packet by display filter.
376  * 
377  * @param cf the capture file
378  * @param sfcode the display filter to find a packet for
379  * @return TRUE if a packet was found, FALSE otherwise
380  */
381 gboolean cf_find_packet_dfilter(capture_file *cf, dfilter_t *sfcode);
382
383 /**
384  * GoTo Packet in first row.
385  * 
386  * @param cf the capture file
387  * @return TRUE if the first row exists, FALSE otherwise
388  */
389 gboolean cf_goto_top_frame(capture_file *cf);
390
391 /**
392  * GoTo Packet in last row.
393  * 
394  * @param cf the capture file
395  * @return TRUE if last row exists, FALSE otherwise
396  */
397 gboolean cf_goto_bottom_frame(capture_file *cf);
398
399 /**
400  * GoTo Packet with the given row.
401  * 
402  * @param cf the capture file
403  * @param row the row to go to
404  * @return TRUE if this row exists, FALSE otherwise
405  */
406 gboolean cf_goto_frame(capture_file *cf, guint row);
407
408 /**
409  * Go to frame specified by currently selected protocol tree field.
410  * (Go To Corresponding Packet)
411  * @todo this is ugly and should be improved!
412  *
413  * @param cf the capture file
414  * @return TRUE if this packet exists, FALSE otherwise
415  */
416 gboolean cf_goto_framenum(capture_file *cf);
417
418 /**
419  * Select the packet in the given row.
420  *
421  * @param cf the capture file
422  * @param row the row to select
423  */
424 void cf_select_packet(capture_file *cf, int row);
425
426 /**
427  * Unselect all packets, if any.
428  *
429  * @param cf the capture file
430  * @param row the row to select
431  */
432 void cf_unselect_packet(capture_file *cf);
433
434 /**
435  * Unselect all protocol tree fields, if any.
436  *
437  * @param cf the capture file
438  * @param row the row to select
439  */
440 void cf_unselect_field(capture_file *cf);
441
442 /**
443  * Mark a particular frame in a particular capture.
444  *
445  * @param cf the capture file
446  * @param frame the frame to be marked
447  */
448 void cf_mark_frame(capture_file *cf, frame_data *frame);
449
450 /**
451  * Unmark a particular frame in a particular capture.
452  *
453  * @param cf the capture file
454  * @param frame the frame to be unmarked
455  */
456 void cf_unmark_frame(capture_file *cf, frame_data *frame);
457
458 /**
459  * Convert error number and info to a complete message.
460  *
461  * @param err the error number
462  * @param err_info a string with additional details about this error
463  * @return statically allocated error message
464  */
465 char *cf_read_error_message(int err, gchar *err_info);
466
467 /**
468  * Merge two (or more) capture files into one.
469  * @todo is this the right place for this function? It doesn't have to do a lot with capture_file.
470  *
471  * @param out_filename pointer to output filename; if output filename is
472  * NULL, a temporary file name is generated and *out_filename is set
473  * to point to the generated file name
474  * @param in_file_count the number of input files to merge
475  * @param in_filnames array of input filenames
476  * @param file_type the output filetype
477  * @param do_append FALSE to merge chronologically, TRUE simply append
478  * @return one of cf_status_t
479  */
480 cf_status_t
481 cf_merge_files(char **out_filename, int in_file_count,
482                char *const *in_filenames, int file_type, gboolean do_append);
483
484 #if defined(HAVE_HEIMDAL_KERBEROS) || defined(HAVE_MIT_KERBEROS)
485 void read_keytab_file(const char *);
486 #endif
487
488 #endif /* file.h */