2016-10-15 18:48:17 +00:00
|
|
|
/* sharkd.c
|
|
|
|
*
|
|
|
|
* Daemon variant of Wireshark
|
|
|
|
*
|
|
|
|
* Wireshark - Network traffic analyzer
|
|
|
|
* By Gerald Combs <gerald@wireshark.org>
|
|
|
|
* Copyright 1998 Gerald Combs
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <epan/exceptions.h>
|
|
|
|
#include <epan/epan-int.h>
|
|
|
|
#include <epan/epan.h>
|
|
|
|
|
|
|
|
#include <wsutil/clopts_common.h>
|
|
|
|
#include <wsutil/cmdarg_err.h>
|
|
|
|
#include <wsutil/crash_info.h>
|
|
|
|
#include <wsutil/filesystem.h>
|
|
|
|
#include <wsutil/file_util.h>
|
|
|
|
#include <wsutil/privileges.h>
|
2017-04-08 19:45:19 +00:00
|
|
|
#include <wsutil/report_message.h>
|
2016-10-15 18:48:17 +00:00
|
|
|
#include <ws_version_info.h>
|
|
|
|
#include <wiretap/wtap_opttypes.h>
|
|
|
|
#include <wiretap/pcapng.h>
|
|
|
|
|
|
|
|
#include <epan/decode_as.h>
|
|
|
|
#include <epan/timestamp.h>
|
|
|
|
#include <epan/packet.h>
|
|
|
|
#include "frame_tvbuff.h"
|
|
|
|
#include <epan/disabled_protos.h>
|
|
|
|
#include <epan/prefs.h>
|
|
|
|
#include <epan/column.h>
|
|
|
|
#include <epan/print.h>
|
|
|
|
#include <epan/addr_resolv.h>
|
|
|
|
#include "ui/util.h"
|
|
|
|
#include "ui/ui_util.h"
|
|
|
|
#include "ui/decode_as_utils.h"
|
2017-04-09 04:24:45 +00:00
|
|
|
#include "ui/filter_files.h"
|
2016-10-15 18:48:17 +00:00
|
|
|
#include "ui/tap_export_pdu.h"
|
|
|
|
#include "register.h"
|
|
|
|
#include <epan/epan_dissect.h>
|
|
|
|
#include <epan/tap.h>
|
|
|
|
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
#include <wsutil/str_util.h>
|
|
|
|
#include <wsutil/utf8_entities.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_PLUGINS
|
|
|
|
#include <wsutil/plugins.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "sharkd.h"
|
|
|
|
|
2017-02-03 22:06:35 +00:00
|
|
|
#define INIT_FAILED 1
|
|
|
|
#define EPAN_INIT_FAIL 2
|
|
|
|
|
2016-10-15 18:48:17 +00:00
|
|
|
static guint32 cum_bytes;
|
|
|
|
static const frame_data *ref;
|
|
|
|
static frame_data ref_frame;
|
|
|
|
static frame_data *prev_dis;
|
|
|
|
static frame_data *prev_cap;
|
|
|
|
|
|
|
|
static const char *cf_open_error_message(int err, gchar *err_info,
|
|
|
|
gboolean for_writing, int file_type);
|
|
|
|
|
2017-04-08 19:45:19 +00:00
|
|
|
static void failure_warning_message(const char *msg_format, va_list ap);
|
2016-10-15 18:48:17 +00:00
|
|
|
static void open_failure_message(const char *filename, int err,
|
|
|
|
gboolean for_writing);
|
|
|
|
static void read_failure_message(const char *filename, int err);
|
|
|
|
static void write_failure_message(const char *filename, int err);
|
|
|
|
static void failure_message_cont(const char *msg_format, va_list ap);
|
|
|
|
|
|
|
|
capture_file cfile;
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_current_user(void) {
|
|
|
|
gchar *cur_user, *cur_group;
|
|
|
|
|
|
|
|
if (started_with_special_privs()) {
|
|
|
|
cur_user = get_cur_username();
|
|
|
|
cur_group = get_cur_groupname();
|
|
|
|
fprintf(stderr, "Running as user \"%s\" and group \"%s\".",
|
|
|
|
cur_user, cur_group);
|
|
|
|
g_free(cur_user);
|
|
|
|
g_free(cur_group);
|
|
|
|
if (running_with_special_privs()) {
|
|
|
|
fprintf(stderr, " This could be dangerous.");
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
GString *comp_info_str;
|
|
|
|
GString *runtime_info_str;
|
|
|
|
char *init_progfile_dir_error;
|
|
|
|
|
|
|
|
char *err_msg = NULL;
|
|
|
|
e_prefs *prefs_p;
|
2017-02-03 22:06:35 +00:00
|
|
|
int ret = EXIT_SUCCESS;
|
2016-10-15 18:48:17 +00:00
|
|
|
|
2017-04-08 19:45:19 +00:00
|
|
|
cmdarg_err_init(failure_warning_message, failure_message_cont);
|
2016-10-15 18:48:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get credential information for later use, and drop privileges
|
|
|
|
* before doing anything else.
|
|
|
|
* Let the user know if anything happened.
|
|
|
|
*/
|
|
|
|
init_process_policies();
|
|
|
|
relinquish_special_privs_perm();
|
|
|
|
print_current_user();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attempt to get the pathname of the executable file.
|
|
|
|
*/
|
|
|
|
init_progfile_dir_error = init_progfile_dir(argv[0], main);
|
|
|
|
if (init_progfile_dir_error != NULL) {
|
|
|
|
fprintf(stderr, "sharkd: Can't get pathname of sharkd program: %s.\n",
|
|
|
|
init_progfile_dir_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the compile-time version information string */
|
|
|
|
comp_info_str = get_compiled_version_info(NULL, epan_get_compiled_version_info);
|
|
|
|
|
|
|
|
/* Get the run-time version information string */
|
|
|
|
runtime_info_str = get_runtime_version_info(epan_get_runtime_version_info);
|
|
|
|
|
|
|
|
/* Add it to the information to be reported on a crash. */
|
|
|
|
ws_add_crash_info("Sharkd (Wireshark) %s\n"
|
|
|
|
"\n"
|
|
|
|
"%s"
|
|
|
|
"\n"
|
|
|
|
"%s",
|
|
|
|
get_ws_vcs_version_info(), comp_info_str->str, runtime_info_str->str);
|
|
|
|
g_string_free(comp_info_str, TRUE);
|
|
|
|
g_string_free(runtime_info_str, TRUE);
|
|
|
|
|
|
|
|
if (sharkd_init(argc, argv) < 0)
|
|
|
|
{
|
|
|
|
printf("cannot initialize sharkd\n");
|
2017-02-03 22:06:35 +00:00
|
|
|
ret = INIT_FAILED;
|
|
|
|
goto clean_exit;
|
2016-10-15 18:48:17 +00:00
|
|
|
}
|
|
|
|
|
2017-04-08 19:45:19 +00:00
|
|
|
init_report_message(failure_warning_message, failure_warning_message,
|
|
|
|
open_failure_message, read_failure_message,
|
|
|
|
write_failure_message);
|
2016-10-15 18:48:17 +00:00
|
|
|
|
|
|
|
timestamp_set_type(TS_RELATIVE);
|
|
|
|
timestamp_set_precision(TS_PREC_AUTO);
|
|
|
|
timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
|
|
|
|
|
|
|
|
wtap_init();
|
|
|
|
|
|
|
|
#ifdef HAVE_PLUGINS
|
|
|
|
/* Register all the plugin types we have. */
|
|
|
|
epan_register_plugin_types(); /* Types known to libwireshark */
|
|
|
|
|
|
|
|
/* Scan for plugins. This does *not* call their registration routines;
|
|
|
|
that's done later. */
|
|
|
|
scan_plugins(REPORT_LOAD_FAILURE);
|
|
|
|
|
|
|
|
/* Register all libwiretap plugin modules. */
|
|
|
|
register_all_wiretap_modules();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Register all dissectors; we must do this before checking for the
|
|
|
|
"-G" flag, as the "-G" flag dumps information registered by the
|
|
|
|
dissectors, and we must do it before we read the preferences, in
|
|
|
|
case any dissectors register preferences. */
|
|
|
|
if (!epan_init(register_all_protocols, register_all_protocol_handoffs, NULL,
|
2017-02-03 22:06:35 +00:00
|
|
|
NULL)) {
|
|
|
|
ret = EPAN_INIT_FAIL;
|
|
|
|
goto clean_exit;
|
|
|
|
}
|
2016-10-15 18:48:17 +00:00
|
|
|
|
2017-04-09 19:27:57 +00:00
|
|
|
/* Load libwireshark settings from the current profile. */
|
|
|
|
prefs_p = epan_load_settings();
|
2016-10-15 18:48:17 +00:00
|
|
|
|
2017-04-09 09:01:05 +00:00
|
|
|
read_filter_list(CFILTER_LIST);
|
2016-10-15 18:48:17 +00:00
|
|
|
|
|
|
|
if (!color_filters_init(&err_msg, NULL)) {
|
|
|
|
fprintf(stderr, "color_filters_init() failed %s\n", err_msg);
|
|
|
|
g_free(err_msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
cap_file_init(&cfile);
|
|
|
|
|
|
|
|
/* Notify all registered modules that have had any of their preferences
|
|
|
|
changed either from one of the preferences file or from the command
|
|
|
|
line that their preferences have changed. */
|
|
|
|
prefs_apply_all();
|
|
|
|
|
|
|
|
/* Build the column format array */
|
|
|
|
build_column_format_array(&cfile.cinfo, prefs_p->num_cols, TRUE);
|
|
|
|
|
2017-02-03 22:06:35 +00:00
|
|
|
ret = sharkd_loop();
|
|
|
|
clean_exit:
|
2017-02-03 21:41:31 +00:00
|
|
|
col_cleanup(&cfile.cinfo);
|
2017-02-03 22:15:56 +00:00
|
|
|
free_filter_lists();
|
2017-02-04 15:26:34 +00:00
|
|
|
wtap_cleanup();
|
2017-02-08 13:25:57 +00:00
|
|
|
free_progdirs();
|
|
|
|
#ifdef HAVE_PLUGINS
|
|
|
|
plugins_cleanup();
|
|
|
|
#endif
|
2017-02-03 22:06:35 +00:00
|
|
|
return ret;
|
2016-10-15 18:48:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const nstime_t *
|
|
|
|
sharkd_get_frame_ts(void *data, guint32 frame_num)
|
|
|
|
{
|
|
|
|
capture_file *cf = (capture_file *) data;
|
|
|
|
|
|
|
|
if (ref && ref->num == frame_num)
|
|
|
|
return &ref->abs_ts;
|
|
|
|
|
|
|
|
if (prev_dis && prev_dis->num == frame_num)
|
|
|
|
return &prev_dis->abs_ts;
|
|
|
|
|
|
|
|
if (prev_cap && prev_cap->num == frame_num)
|
|
|
|
return &prev_cap->abs_ts;
|
|
|
|
|
|
|
|
if (cf->frames) {
|
|
|
|
frame_data *fd = frame_data_sequence_find(cf->frames, frame_num);
|
|
|
|
|
|
|
|
return (fd) ? &fd->abs_ts : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static epan_t *
|
|
|
|
sharkd_epan_new(capture_file *cf)
|
|
|
|
{
|
|
|
|
epan_t *epan = epan_new();
|
|
|
|
|
|
|
|
epan->data = cf;
|
|
|
|
epan->get_frame_ts = sharkd_get_frame_ts;
|
|
|
|
epan->get_interface_name = cap_file_get_interface_name;
|
2017-01-30 07:45:15 +00:00
|
|
|
epan->get_interface_description = cap_file_get_interface_description;
|
2016-10-15 18:48:17 +00:00
|
|
|
epan->get_user_comment = NULL;
|
|
|
|
|
|
|
|
return epan;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2017-04-12 20:52:07 +00:00
|
|
|
process_packet(capture_file *cf, epan_dissect_t *edt,
|
2016-10-15 18:48:17 +00:00
|
|
|
gint64 offset, struct wtap_pkthdr *whdr,
|
|
|
|
const guchar *pd)
|
|
|
|
{
|
|
|
|
frame_data fdlocal;
|
|
|
|
guint32 framenum;
|
|
|
|
gboolean passed;
|
|
|
|
|
|
|
|
/* The frame number of this packet is one more than the count of
|
|
|
|
frames in this packet. */
|
|
|
|
framenum = cf->count + 1;
|
|
|
|
|
|
|
|
/* If we're not running a display filter and we're not printing any
|
|
|
|
packet information, we don't need to do a dissection. This means
|
|
|
|
that all packets can be marked as 'passed'. */
|
|
|
|
passed = TRUE;
|
|
|
|
|
|
|
|
frame_data_init(&fdlocal, framenum, whdr, offset, cum_bytes);
|
|
|
|
|
|
|
|
/* If we're going to print packet information, or we're going to
|
|
|
|
run a read filter, or display filter, or we're going to process taps, set up to
|
|
|
|
do a dissection and do so. */
|
|
|
|
if (edt) {
|
|
|
|
if (gbl_resolv_flags.mac_name || gbl_resolv_flags.network_name ||
|
|
|
|
gbl_resolv_flags.transport_name)
|
|
|
|
/* Grab any resolved addresses */
|
|
|
|
host_name_lookup_process();
|
|
|
|
|
|
|
|
/* If we're running a read filter, prime the epan_dissect_t with that
|
|
|
|
filter. */
|
|
|
|
if (cf->rfcode)
|
2017-04-12 04:56:14 +00:00
|
|
|
epan_dissect_prime_with_dfilter(edt, cf->rfcode);
|
2016-10-15 18:48:17 +00:00
|
|
|
|
|
|
|
if (cf->dfcode)
|
2017-04-12 04:56:14 +00:00
|
|
|
epan_dissect_prime_with_dfilter(edt, cf->dfcode);
|
2016-10-15 18:48:17 +00:00
|
|
|
|
2017-04-12 20:52:07 +00:00
|
|
|
/* This is the first and only pass, so prime the epan_dissect_t
|
2017-04-17 01:48:30 +00:00
|
|
|
with the hfids postdissectors want on the first pass. */
|
|
|
|
prime_epan_dissect_with_postdissector_wanted_hfids(edt);
|
2017-04-12 20:52:07 +00:00
|
|
|
|
2016-10-15 18:48:17 +00:00
|
|
|
frame_data_set_before_dissect(&fdlocal, &cf->elapsed_time,
|
|
|
|
&ref, prev_dis);
|
|
|
|
if (ref == &fdlocal) {
|
|
|
|
ref_frame = fdlocal;
|
|
|
|
ref = &ref_frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
epan_dissect_run(edt, cf->cd_t, whdr, frame_tvbuff_new(&fdlocal, pd), &fdlocal, NULL);
|
|
|
|
|
|
|
|
/* Run the read filter if we have one. */
|
|
|
|
if (cf->rfcode)
|
|
|
|
passed = dfilter_apply_edt(cf->rfcode, edt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (passed) {
|
|
|
|
frame_data_set_after_dissect(&fdlocal, &cum_bytes);
|
|
|
|
prev_cap = prev_dis = frame_data_sequence_add(cf->frames, &fdlocal);
|
|
|
|
|
|
|
|
/* If we're not doing dissection then there won't be any dependent frames.
|
|
|
|
* More importantly, edt.pi.dependent_frames won't be initialized because
|
|
|
|
* epan hasn't been initialized.
|
|
|
|
* if we *are* doing dissection, then mark the dependent frames, but only
|
|
|
|
* if a display filter was given and it matches this packet.
|
|
|
|
*/
|
|
|
|
if (edt && cf->dfcode) {
|
|
|
|
if (dfilter_apply_edt(cf->dfcode, edt)) {
|
|
|
|
g_slist_foreach(edt->pi.dependent_frames, find_and_mark_frame_depended_upon, cf->frames);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cf->count++;
|
|
|
|
} else {
|
|
|
|
/* if we don't add it to the frame_data_sequence, clean it up right now
|
|
|
|
* to avoid leaks */
|
|
|
|
frame_data_destroy(&fdlocal);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (edt)
|
|
|
|
epan_dissect_reset(edt);
|
|
|
|
|
|
|
|
return passed;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
load_cap_file(capture_file *cf, int max_packet_count, gint64 max_byte_count)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
gchar *err_info = NULL;
|
|
|
|
gint64 data_offset;
|
|
|
|
epan_dissect_t *edt = NULL;
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Allocate a frame_data_sequence for all the frames. */
|
|
|
|
cf->frames = new_frame_data_sequence();
|
|
|
|
|
|
|
|
{
|
2017-04-12 02:53:48 +00:00
|
|
|
gboolean create_proto_tree;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine whether we need to create a protocol tree.
|
|
|
|
* We do if:
|
|
|
|
*
|
|
|
|
* we're going to apply a read filter;
|
|
|
|
*
|
|
|
|
* we're going to apply a display filter;
|
|
|
|
*
|
2017-04-17 01:48:30 +00:00
|
|
|
* a postdissector wants field values or protocols
|
|
|
|
* on the first pass.
|
2017-04-12 02:53:48 +00:00
|
|
|
*/
|
|
|
|
create_proto_tree =
|
2017-04-17 01:48:30 +00:00
|
|
|
(cf->rfcode != NULL || cf->dfcode != NULL || postdissectors_want_hfids());
|
2016-10-15 18:48:17 +00:00
|
|
|
|
|
|
|
/* We're not going to display the protocol tree on this pass,
|
|
|
|
so it's not going to be "visible". */
|
|
|
|
edt = epan_dissect_new(cf->epan, create_proto_tree, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (wtap_read(cf->wth, &err, &err_info, &data_offset)) {
|
2017-04-12 20:52:07 +00:00
|
|
|
if (process_packet(cf, edt, data_offset, wtap_phdr(cf->wth),
|
2016-10-15 18:48:17 +00:00
|
|
|
wtap_buf_ptr(cf->wth))) {
|
|
|
|
/* Stop reading if we have the maximum number of packets;
|
|
|
|
* When the -c option has not been used, max_packet_count
|
|
|
|
* starts at 0, which practically means, never stop reading.
|
|
|
|
* (unless we roll over max_packet_count ?)
|
|
|
|
*/
|
|
|
|
if ( (--max_packet_count == 0) || (max_byte_count != 0 && data_offset >= max_byte_count)) {
|
|
|
|
err = 0; /* This is not an error */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (edt) {
|
|
|
|
epan_dissect_free(edt);
|
|
|
|
edt = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close the sequential I/O side, to free up memory it requires. */
|
|
|
|
wtap_sequential_close(cf->wth);
|
|
|
|
|
|
|
|
/* Allow the protocol dissectors to free up memory that they
|
|
|
|
* don't need after the sequential run-through of the packets. */
|
|
|
|
postseq_cleanup_all_protocols();
|
|
|
|
|
|
|
|
prev_dis = NULL;
|
|
|
|
prev_cap = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err != 0) {
|
|
|
|
switch (err) {
|
|
|
|
|
|
|
|
case WTAP_ERR_UNSUPPORTED:
|
2017-04-08 19:45:19 +00:00
|
|
|
cmdarg_err("The file \"%s\" contains record data that sharkd doesn't support.\n(%s)",
|
2016-10-15 18:48:17 +00:00
|
|
|
cf->filename,
|
|
|
|
err_info != NULL ? err_info : "no information supplied");
|
|
|
|
g_free(err_info);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_SHORT_READ:
|
|
|
|
cmdarg_err("The file \"%s\" appears to have been cut short in the middle of a packet.",
|
|
|
|
cf->filename);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_BAD_FILE:
|
|
|
|
cmdarg_err("The file \"%s\" appears to be damaged or corrupt.\n(%s)",
|
|
|
|
cf->filename,
|
|
|
|
err_info != NULL ? err_info : "no information supplied");
|
|
|
|
g_free(err_info);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_DECOMPRESS:
|
|
|
|
cmdarg_err("The compressed file \"%s\" appears to be damaged or corrupt.\n"
|
|
|
|
"(%s)", cf->filename,
|
|
|
|
err_info != NULL ? err_info : "no information supplied");
|
|
|
|
g_free(err_info);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
cmdarg_err("An error occurred while reading the file \"%s\": %s.",
|
|
|
|
cf->filename, wtap_strerror(err));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
cf_status_t
|
|
|
|
cf_open(capture_file *cf, const char *fname, unsigned int type, gboolean is_tempfile, int *err)
|
|
|
|
{
|
|
|
|
wtap *wth;
|
|
|
|
gchar *err_info;
|
|
|
|
char err_msg[2048+1];
|
|
|
|
|
|
|
|
wth = wtap_open_offline(fname, type, err, &err_info, TRUE);
|
|
|
|
if (wth == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* The open succeeded. Fill in the information for this file. */
|
|
|
|
|
|
|
|
/* Create new epan session for dissection. */
|
|
|
|
epan_free(cf->epan);
|
|
|
|
cf->epan = sharkd_epan_new(cf);
|
|
|
|
|
|
|
|
cf->wth = wth;
|
|
|
|
cf->f_datalen = 0; /* not used, but set it anyway */
|
|
|
|
|
|
|
|
/* Set the file name because we need it to set the follow stream filter.
|
|
|
|
XXX - is that still true? We need it for other reasons, though,
|
|
|
|
in any case. */
|
|
|
|
cf->filename = g_strdup(fname);
|
|
|
|
|
|
|
|
/* Indicate whether it's a permanent or temporary file. */
|
|
|
|
cf->is_tempfile = is_tempfile;
|
|
|
|
|
|
|
|
/* No user changes yet. */
|
|
|
|
cf->unsaved_changes = FALSE;
|
|
|
|
|
|
|
|
cf->cd_t = wtap_file_type_subtype(cf->wth);
|
|
|
|
cf->open_type = type;
|
|
|
|
cf->count = 0;
|
|
|
|
cf->drops_known = FALSE;
|
|
|
|
cf->drops = 0;
|
|
|
|
cf->snap = wtap_snapshot_length(cf->wth);
|
|
|
|
if (cf->snap == 0) {
|
|
|
|
/* Snapshot length not known. */
|
|
|
|
cf->has_snap = FALSE;
|
|
|
|
cf->snap = WTAP_MAX_PACKET_SIZE;
|
|
|
|
} else
|
|
|
|
cf->has_snap = TRUE;
|
|
|
|
nstime_set_zero(&cf->elapsed_time);
|
|
|
|
ref = NULL;
|
|
|
|
prev_dis = NULL;
|
|
|
|
prev_cap = NULL;
|
|
|
|
|
|
|
|
cf->state = FILE_READ_IN_PROGRESS;
|
|
|
|
|
|
|
|
wtap_set_cb_new_ipv4(cf->wth, add_ipv4_name);
|
|
|
|
wtap_set_cb_new_ipv6(cf->wth, (wtap_new_ipv6_callback_t) add_ipv6_name);
|
|
|
|
|
|
|
|
return CF_OK;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
g_snprintf(err_msg, sizeof err_msg,
|
|
|
|
cf_open_error_message(*err, err_info, FALSE, cf->cd_t), fname);
|
|
|
|
cmdarg_err("%s", err_msg);
|
|
|
|
return CF_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
cf_open_error_message(int err, gchar *err_info, gboolean for_writing,
|
|
|
|
int file_type)
|
|
|
|
{
|
|
|
|
const char *errmsg;
|
|
|
|
static char errmsg_errno[1024+1];
|
|
|
|
|
|
|
|
if (err < 0) {
|
|
|
|
/* Wiretap error. */
|
|
|
|
switch (err) {
|
|
|
|
|
|
|
|
case WTAP_ERR_NOT_REGULAR_FILE:
|
|
|
|
errmsg = "The file \"%s\" is a \"special file\" or socket or other non-regular file.";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_RANDOM_OPEN_PIPE:
|
|
|
|
/* Seen only when opening a capture file for reading. */
|
2017-04-08 19:45:19 +00:00
|
|
|
errmsg = "The file \"%s\" is a pipe or FIFO; sharkd can't read pipe or FIFO files in two-pass mode.";
|
2016-10-15 18:48:17 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_FILE_UNKNOWN_FORMAT:
|
|
|
|
/* Seen only when opening a capture file for reading. */
|
2017-04-08 19:45:19 +00:00
|
|
|
errmsg = "The file \"%s\" isn't a capture file in a format sharkd understands.";
|
2016-10-15 18:48:17 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_UNSUPPORTED:
|
|
|
|
/* Seen only when opening a capture file for reading. */
|
|
|
|
g_snprintf(errmsg_errno, sizeof(errmsg_errno),
|
2017-04-08 19:45:19 +00:00
|
|
|
"The file \"%%s\" contains record data that sharkd doesn't support.\n"
|
2016-10-15 18:48:17 +00:00
|
|
|
"(%s)",
|
|
|
|
err_info != NULL ? err_info : "no information supplied");
|
|
|
|
g_free(err_info);
|
|
|
|
errmsg = errmsg_errno;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_CANT_WRITE_TO_PIPE:
|
|
|
|
/* Seen only when opening a capture file for writing. */
|
|
|
|
g_snprintf(errmsg_errno, sizeof(errmsg_errno),
|
|
|
|
"The file \"%%s\" is a pipe, and \"%s\" capture files can't be "
|
|
|
|
"written to a pipe.", wtap_file_type_subtype_short_string(file_type));
|
|
|
|
errmsg = errmsg_errno;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_UNWRITABLE_FILE_TYPE:
|
|
|
|
/* Seen only when opening a capture file for writing. */
|
2017-04-08 19:45:19 +00:00
|
|
|
errmsg = "sharkd doesn't support writing capture files in that format.";
|
2016-10-15 18:48:17 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_UNWRITABLE_ENCAP:
|
|
|
|
/* Seen only when opening a capture file for writing. */
|
|
|
|
g_snprintf(errmsg_errno, sizeof(errmsg_errno),
|
2017-04-08 19:45:19 +00:00
|
|
|
"sharkd can't save this capture as a \"%s\" file.",
|
2016-10-15 18:48:17 +00:00
|
|
|
wtap_file_type_subtype_short_string(file_type));
|
|
|
|
errmsg = errmsg_errno;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
|
|
|
|
if (for_writing) {
|
|
|
|
g_snprintf(errmsg_errno, sizeof(errmsg_errno),
|
2017-04-08 19:45:19 +00:00
|
|
|
"sharkd can't save this capture as a \"%s\" file.",
|
2016-10-15 18:48:17 +00:00
|
|
|
wtap_file_type_subtype_short_string(file_type));
|
|
|
|
errmsg = errmsg_errno;
|
|
|
|
} else
|
2017-04-08 19:45:19 +00:00
|
|
|
errmsg = "The file \"%s\" is a capture for a network type that sharkd doesn't support.";
|
2016-10-15 18:48:17 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_BAD_FILE:
|
|
|
|
/* Seen only when opening a capture file for reading. */
|
|
|
|
g_snprintf(errmsg_errno, sizeof(errmsg_errno),
|
|
|
|
"The file \"%%s\" appears to be damaged or corrupt.\n"
|
|
|
|
"(%s)",
|
|
|
|
err_info != NULL ? err_info : "no information supplied");
|
|
|
|
g_free(err_info);
|
|
|
|
errmsg = errmsg_errno;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_CANT_OPEN:
|
|
|
|
if (for_writing)
|
|
|
|
errmsg = "The file \"%s\" could not be created for some unknown reason.";
|
|
|
|
else
|
|
|
|
errmsg = "The file \"%s\" could not be opened for some unknown reason.";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_SHORT_READ:
|
|
|
|
errmsg = "The file \"%s\" appears to have been cut short"
|
|
|
|
" in the middle of a packet or other data.";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_SHORT_WRITE:
|
|
|
|
errmsg = "A full header couldn't be written to the file \"%s\".";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_COMPRESSION_NOT_SUPPORTED:
|
|
|
|
errmsg = "This file type cannot be written as a compressed file.";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_ERR_DECOMPRESS:
|
|
|
|
/* Seen only when opening a capture file for reading. */
|
|
|
|
g_snprintf(errmsg_errno, sizeof(errmsg_errno),
|
|
|
|
"The compressed file \"%%s\" appears to be damaged or corrupt.\n"
|
|
|
|
"(%s)",
|
|
|
|
err_info != NULL ? err_info : "no information supplied");
|
|
|
|
g_free(err_info);
|
|
|
|
errmsg = errmsg_errno;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_snprintf(errmsg_errno, sizeof(errmsg_errno),
|
|
|
|
"The file \"%%s\" could not be %s: %s.",
|
|
|
|
for_writing ? "created" : "opened",
|
|
|
|
wtap_strerror(err));
|
|
|
|
errmsg = errmsg_errno;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
errmsg = file_open_error_message(err, for_writing);
|
|
|
|
return errmsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-04-08 19:45:19 +00:00
|
|
|
* General errors and warnings are reported with an console message
|
|
|
|
* in sharkd.
|
2016-10-15 18:48:17 +00:00
|
|
|
*/
|
|
|
|
static void
|
2017-04-08 19:45:19 +00:00
|
|
|
failure_warning_message(const char *msg_format, va_list ap)
|
2016-10-15 18:48:17 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "sharkd: ");
|
2017-04-08 19:45:19 +00:00
|
|
|
vfprintf(stderr, msg_format, ap);
|
2016-10-15 18:48:17 +00:00
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-04-08 19:45:19 +00:00
|
|
|
* Open/create errors are reported with an console message in sharkd.
|
2016-10-15 18:48:17 +00:00
|
|
|
*/
|
|
|
|
static void
|
2017-04-08 19:45:19 +00:00
|
|
|
open_failure_message(const char *filename, int err, gboolean for_writing)
|
2016-10-15 18:48:17 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "sharkd: ");
|
2017-04-08 19:45:19 +00:00
|
|
|
fprintf(stderr, file_open_error_message(err, for_writing), filename);
|
2016-10-15 18:48:17 +00:00
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-04-08 19:45:19 +00:00
|
|
|
* Read errors are reported with an console message in sharkd.
|
2016-10-15 18:48:17 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
read_failure_message(const char *filename, int err)
|
|
|
|
{
|
|
|
|
cmdarg_err("An error occurred while reading from the file \"%s\": %s.",
|
|
|
|
filename, g_strerror(err));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-04-08 19:45:19 +00:00
|
|
|
* Write errors are reported with an console message in sharkd.
|
2016-10-15 18:48:17 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
write_failure_message(const char *filename, int err)
|
|
|
|
{
|
|
|
|
cmdarg_err("An error occurred while writing to the file \"%s\": %s.",
|
|
|
|
filename, g_strerror(err));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Report additional information for an error in command-line arguments.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
failure_message_cont(const char *msg_format, va_list ap)
|
|
|
|
{
|
|
|
|
vfprintf(stderr, msg_format, ap);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
cf_status_t
|
|
|
|
sharkd_cf_open(const char *fname, unsigned int type, gboolean is_tempfile, int *err)
|
|
|
|
{
|
|
|
|
return cf_open(&cfile, fname, type, is_tempfile, err);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sharkd_load_cap_file(void)
|
|
|
|
{
|
|
|
|
return load_cap_file(&cfile, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sharkd_dissect_request(unsigned int framenum, void (*cb)(packet_info *, proto_tree *, struct epan_column_info *, const GSList *, void *), int dissect_bytes, int dissect_columns, int dissect_tree, void *data)
|
|
|
|
{
|
|
|
|
frame_data *fdata;
|
|
|
|
column_info *cinfo = (dissect_columns) ? &cfile.cinfo : NULL;
|
|
|
|
epan_dissect_t edt;
|
|
|
|
gboolean create_proto_tree;
|
|
|
|
struct wtap_pkthdr phdr; /* Packet header */
|
|
|
|
Buffer buf; /* Packet data */
|
|
|
|
|
|
|
|
int err;
|
|
|
|
char *err_info = NULL;
|
|
|
|
|
|
|
|
fdata = frame_data_sequence_find(cfile.frames, framenum);
|
|
|
|
if (fdata == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wtap_phdr_init(&phdr);
|
|
|
|
ws_buffer_init(&buf, 1500);
|
|
|
|
|
|
|
|
if (!wtap_seek_read(cfile.wth, fdata->file_off, &phdr, &buf, &err, &err_info)) {
|
|
|
|
ws_buffer_free(&buf);
|
|
|
|
return -1; /* error reading the record */
|
|
|
|
}
|
|
|
|
|
|
|
|
create_proto_tree = (dissect_tree) || (cinfo && have_custom_cols(cinfo));
|
|
|
|
epan_dissect_init(&edt, cfile.epan, create_proto_tree, dissect_tree);
|
|
|
|
|
|
|
|
if (cinfo)
|
|
|
|
col_custom_prime_edt(&edt, cinfo);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX - need to catch an OutOfMemoryError exception and
|
|
|
|
* attempt to recover from it.
|
|
|
|
*/
|
|
|
|
epan_dissect_run(&edt, cfile.cd_t, &phdr, frame_tvbuff_new_buffer(fdata, &buf), fdata, cinfo);
|
|
|
|
|
|
|
|
if (cinfo) {
|
|
|
|
/* "Stringify" non frame_data vals */
|
|
|
|
epan_dissect_fill_in_columns(&edt, FALSE, TRUE/* fill_fd_columns */);
|
|
|
|
}
|
|
|
|
|
|
|
|
cb(&edt.pi, dissect_tree ? edt.tree : NULL, cinfo, dissect_bytes ? edt.pi.data_src : NULL, data);
|
|
|
|
|
|
|
|
epan_dissect_cleanup(&edt);
|
|
|
|
wtap_phdr_cleanup(&phdr);
|
|
|
|
ws_buffer_free(&buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* based on packet_list_dissect_and_cache_record */
|
|
|
|
int
|
|
|
|
sharkd_dissect_columns(int framenum, column_info *cinfo, gboolean dissect_color)
|
|
|
|
{
|
|
|
|
frame_data *fdata;
|
|
|
|
epan_dissect_t edt;
|
|
|
|
gboolean create_proto_tree;
|
|
|
|
struct wtap_pkthdr phdr; /* Packet header */
|
|
|
|
Buffer buf; /* Packet data */
|
|
|
|
|
|
|
|
int err;
|
|
|
|
char *err_info = NULL;
|
|
|
|
|
|
|
|
fdata = frame_data_sequence_find(cfile.frames, framenum);
|
|
|
|
if (fdata == NULL) {
|
|
|
|
col_fill_in_error(cinfo, fdata, FALSE, TRUE/* fill_fd_columns */);
|
|
|
|
return -1; /* error reading the record */
|
|
|
|
}
|
|
|
|
|
|
|
|
wtap_phdr_init(&phdr);
|
|
|
|
ws_buffer_init(&buf, 1500);
|
|
|
|
|
|
|
|
if (!wtap_seek_read(cfile.wth, fdata->file_off, &phdr, &buf, &err, &err_info)) {
|
|
|
|
col_fill_in_error(cinfo, fdata, FALSE, FALSE /* fill_fd_columns */);
|
|
|
|
ws_buffer_free(&buf);
|
|
|
|
return -1; /* error reading the record */
|
|
|
|
}
|
|
|
|
|
|
|
|
create_proto_tree = (dissect_color && color_filters_used()) || (cinfo && have_custom_cols(cinfo));
|
|
|
|
|
|
|
|
epan_dissect_init(&edt, cfile.epan, create_proto_tree, FALSE /* proto_tree_visible */);
|
|
|
|
|
|
|
|
if (dissect_color) {
|
|
|
|
color_filters_prime_edt(&edt);
|
|
|
|
fdata->flags.need_colorize = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cinfo)
|
|
|
|
col_custom_prime_edt(&edt, cinfo);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX - need to catch an OutOfMemoryError exception and
|
|
|
|
* attempt to recover from it.
|
|
|
|
*/
|
|
|
|
epan_dissect_run(&edt, cfile.cd_t, &phdr, frame_tvbuff_new_buffer(fdata, &buf), fdata, cinfo);
|
|
|
|
|
|
|
|
if (cinfo) {
|
|
|
|
/* "Stringify" non frame_data vals */
|
|
|
|
epan_dissect_fill_in_columns(&edt, FALSE, TRUE/* fill_fd_columns */);
|
|
|
|
}
|
|
|
|
|
|
|
|
epan_dissect_cleanup(&edt);
|
|
|
|
wtap_phdr_cleanup(&phdr);
|
|
|
|
ws_buffer_free(&buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sharkd_retap(void)
|
|
|
|
{
|
|
|
|
guint32 framenum;
|
|
|
|
frame_data *fdata;
|
|
|
|
Buffer buf;
|
|
|
|
struct wtap_pkthdr phdr;
|
|
|
|
int err;
|
|
|
|
char *err_info = NULL;
|
|
|
|
|
|
|
|
guint tap_flags;
|
2017-04-12 02:53:48 +00:00
|
|
|
gboolean create_proto_tree;
|
2016-10-15 18:48:17 +00:00
|
|
|
epan_dissect_t edt;
|
|
|
|
column_info *cinfo;
|
|
|
|
|
2017-04-12 02:53:48 +00:00
|
|
|
/* Get the union of the flags for all tap listeners. */
|
2016-10-15 18:48:17 +00:00
|
|
|
tap_flags = union_of_tap_listener_flags();
|
|
|
|
|
2017-04-12 02:53:48 +00:00
|
|
|
/* If any tap listeners require the columns, construct them. */
|
2016-10-15 18:48:17 +00:00
|
|
|
cinfo = (tap_flags & TL_REQUIRES_COLUMNS) ? &cfile.cinfo : NULL;
|
|
|
|
|
2017-04-12 02:53:48 +00:00
|
|
|
/*
|
|
|
|
* Determine whether we need to create a protocol tree.
|
|
|
|
* We do if:
|
|
|
|
*
|
|
|
|
* one of the tap listeners is going to apply a filter;
|
|
|
|
*
|
|
|
|
* one of the tap listeners requires a protocol tree.
|
|
|
|
*/
|
|
|
|
create_proto_tree =
|
|
|
|
(have_filtering_tap_listeners() || (tap_flags & TL_REQUIRES_PROTO_TREE));
|
|
|
|
|
2016-10-15 18:48:17 +00:00
|
|
|
wtap_phdr_init(&phdr);
|
|
|
|
ws_buffer_init(&buf, 1500);
|
2017-04-12 02:53:48 +00:00
|
|
|
epan_dissect_init(&edt, cfile.epan, create_proto_tree, FALSE);
|
2016-10-15 18:48:17 +00:00
|
|
|
|
|
|
|
reset_tap_listeners();
|
|
|
|
|
|
|
|
for (framenum = 1; framenum <= cfile.count; framenum++) {
|
|
|
|
fdata = frame_data_sequence_find(cfile.frames, framenum);
|
|
|
|
|
|
|
|
if (!wtap_seek_read(cfile.wth, fdata->file_off, &phdr, &buf, &err, &err_info))
|
|
|
|
break;
|
|
|
|
|
|
|
|
epan_dissect_run_with_taps(&edt, cfile.cd_t, &phdr, frame_tvbuff_new(fdata, ws_buffer_start_ptr(&buf)), fdata, cinfo);
|
|
|
|
epan_dissect_reset(&edt);
|
|
|
|
}
|
|
|
|
|
|
|
|
wtap_phdr_cleanup(&phdr);
|
|
|
|
ws_buffer_free(&buf);
|
|
|
|
epan_dissect_cleanup(&edt);
|
|
|
|
|
|
|
|
draw_tap_listeners(TRUE);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sharkd_filter(const char *dftext, guint8 **result)
|
|
|
|
{
|
|
|
|
dfilter_t *dfcode = NULL;
|
|
|
|
|
|
|
|
guint32 framenum;
|
|
|
|
guint32 frames_count;
|
|
|
|
Buffer buf;
|
|
|
|
struct wtap_pkthdr phdr;
|
|
|
|
int err;
|
|
|
|
char *err_info = NULL;
|
|
|
|
|
|
|
|
guint8 *result_bits;
|
|
|
|
guint8 passed_bits;
|
|
|
|
|
|
|
|
epan_dissect_t edt;
|
|
|
|
|
|
|
|
if (!dfilter_compile(dftext, &dfcode, &err_info)) {
|
|
|
|
g_free(err_info);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
frames_count = cfile.count;
|
|
|
|
|
|
|
|
wtap_phdr_init(&phdr);
|
|
|
|
ws_buffer_init(&buf, 1500);
|
|
|
|
epan_dissect_init(&edt, cfile.epan, TRUE, FALSE);
|
|
|
|
|
|
|
|
passed_bits = 0;
|
|
|
|
result_bits = (guint8 *) g_malloc(2 + (frames_count / 8));
|
|
|
|
|
|
|
|
for (framenum = 1; framenum <= frames_count; framenum++) {
|
|
|
|
frame_data *fdata = frame_data_sequence_find(cfile.frames, framenum);
|
|
|
|
|
|
|
|
if ((framenum & 7) == 0) {
|
|
|
|
result_bits[(framenum / 8) - 1] = passed_bits;
|
|
|
|
passed_bits = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!wtap_seek_read(cfile.wth, fdata->file_off, &phdr, &buf, &err, &err_info))
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* frame_data_set_before_dissect */
|
2017-04-12 04:56:14 +00:00
|
|
|
epan_dissect_prime_with_dfilter(&edt, dfcode);
|
2016-10-15 18:48:17 +00:00
|
|
|
|
|
|
|
epan_dissect_run(&edt, cfile.cd_t, &phdr, frame_tvbuff_new_buffer(fdata, &buf), fdata, NULL);
|
|
|
|
|
|
|
|
if (dfilter_apply_edt(dfcode, &edt))
|
|
|
|
passed_bits |= (1 << (framenum % 8));
|
|
|
|
|
|
|
|
/* if passed or ref -> frame_data_set_after_dissect */
|
|
|
|
|
|
|
|
epan_dissect_reset(&edt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((framenum & 7) == 0)
|
|
|
|
framenum--;
|
|
|
|
result_bits[framenum / 8] = passed_bits;
|
|
|
|
|
|
|
|
wtap_phdr_cleanup(&phdr);
|
|
|
|
ws_buffer_free(&buf);
|
|
|
|
epan_dissect_cleanup(&edt);
|
|
|
|
|
|
|
|
dfilter_free(dfcode);
|
|
|
|
|
|
|
|
|