2004-10-20 18:50:58 +00:00
|
|
|
/* capinfos.c
|
2004-07-30 07:22:21 +00:00
|
|
|
* Reports capture file information including # of packets, duration, others
|
|
|
|
*
|
|
|
|
* Copyright 2004 Ian Schorr
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
2006-05-21 05:12:17 +00:00
|
|
|
* Wireshark - Network traffic analyzer
|
|
|
|
* By Gerald Combs <gerald@wireshark.org>
|
2004-07-30 07:22:21 +00:00
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
/*
|
|
|
|
* 2009-09-19: jyoung
|
|
|
|
*
|
|
|
|
* New capinfos features
|
|
|
|
*
|
2009-12-08 00:13:57 +00:00
|
|
|
* Continue processing additional files after
|
|
|
|
* a wiretap open failure. The new -C option
|
|
|
|
* reverts to capinfos' original behavior which
|
2011-04-06 01:41:03 +00:00
|
|
|
* is to cancel any further file processing at
|
2009-11-13 21:43:57 +00:00
|
|
|
* first file open failure.
|
|
|
|
*
|
2009-12-08 00:13:57 +00:00
|
|
|
* Change the behavior of how the default display
|
|
|
|
* of all infos is initiated. This gets rid of a
|
2009-11-13 21:43:57 +00:00
|
|
|
* special post getopt() argument count test.
|
|
|
|
*
|
|
|
|
* Add new table output format (with related options)
|
2009-12-08 00:13:57 +00:00
|
|
|
* This feature allows outputting the various infos
|
|
|
|
* into a tab delimited text file, or to a comma
|
2009-11-13 21:43:57 +00:00
|
|
|
* separated variables file (*.csv) instead of the
|
|
|
|
* original "long" format.
|
2011-04-06 01:41:03 +00:00
|
|
|
*
|
|
|
|
* 2011-04-05: wmeier
|
|
|
|
* behaviour changed: Upon exit capinfos will return
|
|
|
|
* an error status if an error occurred at any
|
|
|
|
* point during "continuous" file processing.
|
|
|
|
* (Previously a success status was always
|
|
|
|
* returned if the -C option was not used).
|
|
|
|
*
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2007-05-25 17:22:32 +00:00
|
|
|
#include <stdarg.h>
|
2005-01-11 00:13:42 +00:00
|
|
|
#include <errno.h>
|
2004-07-30 07:22:21 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2005-01-11 00:13:42 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
#include <epan/packet.h>
|
2007-05-25 17:22:32 +00:00
|
|
|
#include <epan/filesystem.h>
|
|
|
|
#include <epan/plugins.h>
|
|
|
|
#include <epan/report_err.h>
|
2004-07-30 07:22:21 +00:00
|
|
|
#include "wtap.h"
|
2008-06-30 17:16:29 +00:00
|
|
|
#include <wsutil/privileges.h>
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2009-12-07 23:18:12 +00:00
|
|
|
#ifdef HAVE_LIBGCRYPT
|
|
|
|
#include <gcrypt.h>
|
|
|
|
#include <wsutil/file_util.h>
|
|
|
|
#endif
|
|
|
|
|
2009-10-06 16:01:18 +00:00
|
|
|
#ifdef HAVE_GETOPT_H
|
|
|
|
#include <getopt.h>
|
|
|
|
#else
|
2010-05-28 20:19:55 +00:00
|
|
|
#include "wsutil/wsgetopt.h"
|
2004-07-30 07:22:21 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-06 23:28:58 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <shellapi.h>
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2009-12-29 16:11:43 +00:00
|
|
|
#include "svnversion.h"
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
/*
|
|
|
|
* By default capinfos now continues processing
|
2009-12-08 00:13:57 +00:00
|
|
|
* the next filename if and when wiretap detects
|
|
|
|
* a problem opening a file.
|
2009-11-13 21:43:57 +00:00
|
|
|
* Use the '-C' option to revert back to original
|
2009-12-08 00:13:57 +00:00
|
|
|
* capinfos behavior which is to abort any
|
|
|
|
* additional file processing at first open file
|
2009-11-13 21:43:57 +00:00
|
|
|
* failure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static gboolean continue_after_wtap_open_offline_failure = TRUE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* table report variables
|
|
|
|
*/
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
static gboolean long_report = TRUE; /* By default generate long report */
|
|
|
|
static gchar table_report_header = TRUE; /* Generate column header by default */
|
|
|
|
static gchar field_separator = '\t'; /* Use TAB as field separator by default */
|
|
|
|
static gchar quote_char = '\0'; /* Do NOT quote fields by default */
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
/*
|
2009-12-08 00:13:57 +00:00
|
|
|
* capinfos has the ability to report on a number of
|
|
|
|
* various characteristics ("infos") for each input file.
|
2009-11-13 21:43:57 +00:00
|
|
|
*
|
2009-12-08 00:13:57 +00:00
|
|
|
* By default reporting of all info fields is enabled.
|
|
|
|
*
|
|
|
|
* Optionally the reporting of any specific info field
|
|
|
|
* or combination of info fields can be enabled with
|
2009-11-13 21:43:57 +00:00
|
|
|
* individual options.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static gboolean report_all_infos = TRUE; /* Report all infos */
|
|
|
|
|
|
|
|
static gboolean cap_file_type = TRUE; /* Report capture type */
|
|
|
|
static gboolean cap_file_encap = TRUE; /* Report encapsulation */
|
2010-04-29 06:29:51 +00:00
|
|
|
static gboolean cap_snaplen = TRUE; /* Packet size limit (snaplen)*/
|
2009-11-13 21:43:57 +00:00
|
|
|
static gboolean cap_packet_count = TRUE; /* Report packet count */
|
|
|
|
static gboolean cap_file_size = TRUE; /* Report file size */
|
|
|
|
|
|
|
|
static gboolean cap_data_size = TRUE; /* Report packet byte size */
|
|
|
|
static gboolean cap_duration = TRUE; /* Report capture duration */
|
|
|
|
static gboolean cap_start_time = TRUE; /* Report capture start time */
|
|
|
|
static gboolean cap_end_time = TRUE; /* Report capture end time */
|
2010-02-17 20:15:50 +00:00
|
|
|
static gboolean time_as_secs = FALSE; /* Report time values as raw seconds */
|
2009-11-13 21:43:57 +00:00
|
|
|
|
|
|
|
static gboolean cap_data_rate_byte = TRUE; /* Report data rate bytes/sec */
|
|
|
|
static gboolean cap_data_rate_bit = TRUE; /* Report data rate bites/sec */
|
|
|
|
static gboolean cap_packet_size = TRUE; /* Report average packet size */
|
|
|
|
static gboolean cap_packet_rate = TRUE; /* Report average packet rate */
|
2010-06-02 00:24:03 +00:00
|
|
|
static gboolean cap_in_order = TRUE; /* Report if packets are in chronological order (True/False) */
|
|
|
|
|
2009-12-07 23:18:12 +00:00
|
|
|
#ifdef HAVE_LIBGCRYPT
|
|
|
|
static gboolean cap_file_hashes = TRUE; /* Calculate file hashes */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBGCRYPT
|
|
|
|
#define HASH_SIZE_SHA1 20
|
|
|
|
#define HASH_SIZE_RMD160 20
|
|
|
|
#define HASH_SIZE_MD5 16
|
|
|
|
|
|
|
|
#define HASH_STR_SIZE (41) /* Max hash size * 2 + '\0' */
|
|
|
|
#define HASH_BUF_SIZE (1024 * 1024)
|
|
|
|
|
|
|
|
|
|
|
|
static gchar file_sha1[HASH_STR_SIZE];
|
|
|
|
static gchar file_rmd160[HASH_STR_SIZE];
|
|
|
|
static gchar file_md5[HASH_STR_SIZE];
|
|
|
|
|
|
|
|
#define FILE_HASH_OPT "H"
|
|
|
|
#else
|
|
|
|
#define FILE_HASH_OPT ""
|
|
|
|
#endif /* HAVE_LIBGCRYPT */
|
2004-07-30 07:22:21 +00:00
|
|
|
|
|
|
|
typedef struct _capture_info {
|
2010-05-03 19:08:11 +00:00
|
|
|
const char *filename;
|
|
|
|
guint16 file_type;
|
|
|
|
int file_encap;
|
|
|
|
gint64 filesize;
|
|
|
|
|
|
|
|
guint64 packet_bytes;
|
|
|
|
double start_time;
|
|
|
|
double stop_time;
|
|
|
|
guint32 packet_count;
|
|
|
|
gboolean snap_set; /* If set in capture file header */
|
|
|
|
guint32 snaplen; /* value from the capture file header */
|
|
|
|
guint32 snaplen_min_inferred; /* If caplen < len for 1 or more rcds */
|
|
|
|
guint32 snaplen_max_inferred; /* ... */
|
|
|
|
gboolean drops_known;
|
|
|
|
guint32 drop_count;
|
|
|
|
|
|
|
|
double duration;
|
|
|
|
double packet_rate;
|
|
|
|
double packet_size;
|
|
|
|
double data_rate; /* in bytes */
|
2010-06-02 00:24:03 +00:00
|
|
|
gboolean in_order;
|
2011-05-02 02:06:52 +00:00
|
|
|
|
|
|
|
int *encap_counts; /* array of per_packet encap counts; array has one entry per wtap_encap type */
|
2004-07-30 07:22:21 +00:00
|
|
|
} capture_info;
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
static void
|
|
|
|
enable_all_infos(void)
|
|
|
|
{
|
|
|
|
report_all_infos = TRUE;
|
|
|
|
|
|
|
|
cap_file_type = TRUE;
|
|
|
|
cap_file_encap = TRUE;
|
2010-04-29 06:29:51 +00:00
|
|
|
cap_snaplen = TRUE;
|
2009-11-13 21:43:57 +00:00
|
|
|
cap_packet_count = TRUE;
|
|
|
|
cap_file_size = TRUE;
|
|
|
|
|
|
|
|
cap_data_size = TRUE;
|
|
|
|
cap_duration = TRUE;
|
|
|
|
cap_start_time = TRUE;
|
|
|
|
cap_end_time = TRUE;
|
2010-06-02 00:24:03 +00:00
|
|
|
cap_in_order = TRUE;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
|
|
|
cap_data_rate_byte = TRUE;
|
|
|
|
cap_data_rate_bit = TRUE;
|
|
|
|
cap_packet_size = TRUE;
|
|
|
|
cap_packet_rate = TRUE;
|
2009-12-07 23:18:12 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBGCRYPT
|
|
|
|
cap_file_hashes = TRUE;
|
|
|
|
#endif /* HAVE_LIBGCRYPT */
|
2009-11-13 21:43:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
disable_all_infos(void)
|
|
|
|
{
|
2010-05-03 19:08:11 +00:00
|
|
|
report_all_infos = FALSE;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
2010-05-03 19:08:11 +00:00
|
|
|
cap_file_type = FALSE;
|
|
|
|
cap_file_encap = FALSE;
|
|
|
|
cap_snaplen = FALSE;
|
|
|
|
cap_packet_count = FALSE;
|
|
|
|
cap_file_size = FALSE;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
2010-05-03 19:08:11 +00:00
|
|
|
cap_data_size = FALSE;
|
|
|
|
cap_duration = FALSE;
|
|
|
|
cap_start_time = FALSE;
|
|
|
|
cap_end_time = FALSE;
|
2010-06-02 00:24:03 +00:00
|
|
|
cap_in_order = FALSE;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
|
|
|
cap_data_rate_byte = FALSE;
|
2010-05-03 19:08:11 +00:00
|
|
|
cap_data_rate_bit = FALSE;
|
|
|
|
cap_packet_size = FALSE;
|
|
|
|
cap_packet_rate = FALSE;
|
2009-12-07 23:18:12 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBGCRYPT
|
|
|
|
cap_file_hashes = FALSE;
|
|
|
|
#endif /* HAVE_LIBGCRYPT */
|
2009-11-13 21:43:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ctime_no_lf()
|
|
|
|
*
|
2009-12-08 00:13:57 +00:00
|
|
|
* This function simply truncates the string returned
|
|
|
|
* from the ctime() function to remove the trailing
|
2009-11-13 21:43:57 +00:00
|
|
|
* '\n' character.
|
|
|
|
*
|
|
|
|
* The ctime() function returns a string formatted as:
|
|
|
|
* "Www Mmm dd hh:mm:ss yyyy\n"
|
|
|
|
* The unwanted '\n' is the 24th character.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
ctime_no_lf(const time_t* timer)
|
|
|
|
{
|
|
|
|
gchar *time_string;
|
|
|
|
time_string = ctime(timer);
|
|
|
|
time_string[24] = '\0';
|
2009-12-08 00:13:57 +00:00
|
|
|
return(time_string);
|
2009-11-13 21:43:57 +00:00
|
|
|
}
|
|
|
|
|
2010-02-17 20:15:50 +00:00
|
|
|
static gchar *
|
|
|
|
time_string(const time_t *timer, capture_info *cf_info, gboolean want_lf)
|
|
|
|
{
|
2010-03-02 00:11:42 +00:00
|
|
|
const gchar *lf = want_lf ? "\n" : "";
|
2010-02-20 17:44:52 +00:00
|
|
|
static gchar time_string_buf[15];
|
2010-02-17 20:15:50 +00:00
|
|
|
|
|
|
|
if (cf_info->packet_count > 0) {
|
|
|
|
if (time_as_secs) {
|
|
|
|
/* XXX - Would it be useful to show sub-second precision? */
|
2010-02-20 17:44:52 +00:00
|
|
|
g_snprintf(time_string_buf, 15, "%lu%s", (unsigned long) *timer, lf);
|
|
|
|
return time_string_buf;
|
2010-02-17 20:15:50 +00:00
|
|
|
} else if (want_lf) {
|
|
|
|
return ctime(timer);
|
|
|
|
} else {
|
|
|
|
return ctime_no_lf(timer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-20 17:44:52 +00:00
|
|
|
g_snprintf(time_string_buf, 15, "n/a%s", lf);
|
|
|
|
return time_string_buf;
|
2010-02-17 20:15:50 +00:00
|
|
|
}
|
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
static double
|
2005-08-24 21:31:56 +00:00
|
|
|
secs_nsecs(const struct wtap_nstime * nstime)
|
2004-07-30 07:22:21 +00:00
|
|
|
{
|
2005-08-24 21:31:56 +00:00
|
|
|
return (nstime->nsecs / 1000000000.0) + (double)nstime->secs;
|
2004-07-30 07:22:21 +00:00
|
|
|
}
|
|
|
|
|
2010-03-02 00:11:42 +00:00
|
|
|
static void print_value(const gchar *text_p1, gint width, const gchar *text_p2, double value) {
|
2009-05-11 14:00:05 +00:00
|
|
|
if (value > 0.0)
|
|
|
|
printf("%s%.*f%s\n", text_p1, width, value, text_p2);
|
|
|
|
else
|
|
|
|
printf("%sn/a\n", text_p1);
|
|
|
|
}
|
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
static void
|
2009-11-13 21:43:57 +00:00
|
|
|
print_stats(const gchar *filename, capture_info *cf_info)
|
2004-07-30 07:22:21 +00:00
|
|
|
{
|
2010-05-03 19:08:11 +00:00
|
|
|
const gchar *file_type_string, *file_encap_string;
|
|
|
|
time_t start_time_t;
|
|
|
|
time_t stop_time_t;
|
2004-07-30 07:22:21 +00:00
|
|
|
|
|
|
|
/* Build printable strings for various stats */
|
|
|
|
file_type_string = wtap_file_type_string(cf_info->file_type);
|
2007-09-25 19:52:19 +00:00
|
|
|
file_encap_string = wtap_encap_string(cf_info->file_encap);
|
2004-08-21 01:19:36 +00:00
|
|
|
start_time_t = (time_t)cf_info->start_time;
|
|
|
|
stop_time_t = (time_t)cf_info->stop_time;
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
if (filename) printf ("File name: %s\n", filename);
|
2009-05-11 14:00:05 +00:00
|
|
|
if (cap_file_type) printf ("File type: %s\n", file_type_string);
|
|
|
|
if (cap_file_encap) printf ("File encapsulation: %s\n", file_encap_string);
|
2011-05-02 02:06:52 +00:00
|
|
|
if (cap_file_encap && (cf_info->file_encap = WTAP_ENCAP_PER_PACKET)) {
|
|
|
|
int i;
|
|
|
|
for (i=0; i<WTAP_NUM_ENCAP_TYPES; i++) {
|
|
|
|
if (cf_info->encap_counts[i] > 0)
|
|
|
|
printf(" %s\n", wtap_encap_string(i));
|
|
|
|
}
|
|
|
|
}
|
2010-04-29 06:29:51 +00:00
|
|
|
if (cap_snaplen && cf_info->snap_set)
|
2010-05-03 19:08:11 +00:00
|
|
|
printf ("Packet size limit: file hdr: %u bytes\n", cf_info->snaplen);
|
2010-04-29 06:29:51 +00:00
|
|
|
else if(cap_snaplen && !cf_info->snap_set)
|
2010-05-03 19:08:11 +00:00
|
|
|
printf ("Packet size limit: file hdr: (not set)\n");
|
|
|
|
if (cf_info->snaplen_max_inferred > 0) {
|
|
|
|
if (cf_info->snaplen_min_inferred == cf_info->snaplen_max_inferred)
|
2010-05-03 19:42:09 +00:00
|
|
|
printf ("Packet size limit: inferred: %u bytes\n", cf_info->snaplen_min_inferred);
|
2010-05-03 19:08:11 +00:00
|
|
|
else
|
|
|
|
printf ("Packet size limit: inferred: %u bytes - %u bytes (range)\n",
|
|
|
|
cf_info->snaplen_min_inferred, cf_info->snaplen_max_inferred);
|
|
|
|
}
|
2009-05-11 14:00:05 +00:00
|
|
|
if (cap_packet_count) printf ("Number of packets: %u\n", cf_info->packet_count);
|
|
|
|
if (cap_file_size) printf ("File size: %" G_GINT64_MODIFIER "d bytes\n", cf_info->filesize);
|
|
|
|
if (cap_data_size) printf ("Data size: %" G_GINT64_MODIFIER "u bytes\n", cf_info->packet_bytes);
|
2009-12-08 00:13:57 +00:00
|
|
|
if (cap_duration) print_value("Capture duration: ", 0, " seconds", cf_info->duration);
|
2010-02-17 20:15:50 +00:00
|
|
|
if (cap_start_time) printf ("Start time: %s", time_string(&start_time_t, cf_info, TRUE));
|
|
|
|
if (cap_end_time) printf ("End time: %s", time_string(&stop_time_t, cf_info, TRUE));
|
2009-05-12 16:06:14 +00:00
|
|
|
if (cap_data_rate_byte) print_value("Data byte rate: ", 2, " bytes/sec", cf_info->data_rate);
|
|
|
|
if (cap_data_rate_bit) print_value("Data bit rate: ", 2, " bits/sec", cf_info->data_rate*8);
|
|
|
|
if (cap_packet_size) printf ("Average packet size: %.2f bytes\n", cf_info->packet_size);
|
|
|
|
if (cap_packet_rate) print_value("Average packet rate: ", 2, " packets/sec", cf_info->packet_rate);
|
2009-12-07 23:18:12 +00:00
|
|
|
#ifdef HAVE_LIBGCRYPT
|
|
|
|
if (cap_file_hashes) {
|
|
|
|
printf ("SHA1: %s\n", file_sha1);
|
|
|
|
printf ("RIPEMD160: %s\n", file_rmd160);
|
|
|
|
printf ("MD5: %s\n", file_md5);
|
|
|
|
}
|
2010-06-02 00:24:03 +00:00
|
|
|
if (cap_in_order) printf ("Strict time order: %s\n", (cf_info->in_order) ? "True" : "False");
|
2009-12-07 23:18:12 +00:00
|
|
|
#endif /* HAVE_LIBGCRYPT */
|
2004-07-30 07:22:21 +00:00
|
|
|
}
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
static void
|
|
|
|
putsep(void)
|
|
|
|
{
|
|
|
|
if (field_separator) putchar(field_separator);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
putquote(void)
|
|
|
|
{
|
|
|
|
if (quote_char) putchar(quote_char);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-03-02 00:11:42 +00:00
|
|
|
print_stats_table_header_label(const gchar *label)
|
2009-11-13 21:43:57 +00:00
|
|
|
{
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%s", label);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_stats_table_header(void)
|
|
|
|
{
|
|
|
|
putquote();
|
|
|
|
printf("File name");
|
|
|
|
putquote();
|
|
|
|
|
|
|
|
if (cap_file_type) print_stats_table_header_label("File type");
|
|
|
|
if (cap_file_encap) print_stats_table_header_label("File encapsulation");
|
2010-04-29 06:29:51 +00:00
|
|
|
if (cap_snaplen) print_stats_table_header_label("Packet size limit");
|
2010-05-03 19:08:11 +00:00
|
|
|
if (cap_snaplen) print_stats_table_header_label("Packet size limit min (inferred)");
|
|
|
|
if (cap_snaplen) print_stats_table_header_label("Packet size limit max (inferred)");
|
2009-11-13 21:43:57 +00:00
|
|
|
if (cap_packet_count) print_stats_table_header_label("Number of packets");
|
|
|
|
if (cap_file_size) print_stats_table_header_label("File size (bytes)");
|
|
|
|
if (cap_data_size) print_stats_table_header_label("Data size (bytes)");
|
|
|
|
if (cap_duration) print_stats_table_header_label("Capture duration (seconds)");
|
|
|
|
if (cap_start_time) print_stats_table_header_label("Start time");
|
|
|
|
if (cap_end_time) print_stats_table_header_label("End time");
|
|
|
|
if (cap_data_rate_byte) print_stats_table_header_label("Data byte rate (bytes/sec)");
|
|
|
|
if (cap_data_rate_bit) print_stats_table_header_label("Data bit rate (bits/sec)");
|
|
|
|
if (cap_packet_size) print_stats_table_header_label("Average packet size (bytes)");
|
|
|
|
if (cap_packet_rate) print_stats_table_header_label("Average packet rate (packets/sec)");
|
2009-12-07 23:18:12 +00:00
|
|
|
#ifdef HAVE_LIBGCRYPT
|
2009-12-08 07:04:12 +00:00
|
|
|
if (cap_file_hashes) {
|
2009-12-07 23:18:12 +00:00
|
|
|
print_stats_table_header_label("SHA1");
|
|
|
|
print_stats_table_header_label("RIPEMD160");
|
|
|
|
print_stats_table_header_label("MD5");
|
|
|
|
}
|
|
|
|
#endif /* HAVE_LIBGCRYPT */
|
2011-04-05 05:50:45 +00:00
|
|
|
if (cap_in_order) print_stats_table_header_label("Strict time order");
|
2009-11-13 21:43:57 +00:00
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_stats_table(const gchar *filename, capture_info *cf_info)
|
|
|
|
{
|
2010-05-03 19:08:11 +00:00
|
|
|
const gchar *file_type_string, *file_encap_string;
|
|
|
|
time_t start_time_t;
|
|
|
|
time_t stop_time_t;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
|
|
|
/* Build printable strings for various stats */
|
|
|
|
file_type_string = wtap_file_type_string(cf_info->file_type);
|
|
|
|
file_encap_string = wtap_encap_string(cf_info->file_encap);
|
|
|
|
start_time_t = (time_t)cf_info->start_time;
|
|
|
|
stop_time_t = (time_t)cf_info->stop_time;
|
|
|
|
|
|
|
|
if (filename) {
|
|
|
|
putquote();
|
|
|
|
printf("%s", filename);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_file_type) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%s", file_type_string);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
2011-05-02 02:06:52 +00:00
|
|
|
/* ToDo: If WTAP_ENCAP_PER_PACKET, show the list of encapsulations encountered;
|
|
|
|
* Output a line for each different encap with all fields repeated except
|
|
|
|
* the encapsulation field which has "Per Packet: ..." for each
|
|
|
|
* encapsulation type seen ?
|
|
|
|
*/
|
2009-11-13 21:43:57 +00:00
|
|
|
if (cap_file_encap) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%s", file_encap_string);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
2010-04-29 06:29:51 +00:00
|
|
|
if (cap_snaplen) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
if(cf_info->snap_set)
|
|
|
|
printf("%u", cf_info->snaplen);
|
|
|
|
else
|
|
|
|
printf("(not set)");
|
2010-05-03 19:08:11 +00:00
|
|
|
putquote();
|
|
|
|
if (cf_info->snaplen_max_inferred > 0) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
2010-05-03 19:42:09 +00:00
|
|
|
printf("%u", cf_info->snaplen_min_inferred);
|
2010-05-03 19:08:11 +00:00
|
|
|
putquote();
|
|
|
|
putsep();
|
|
|
|
putquote();
|
2010-05-03 19:42:09 +00:00
|
|
|
printf("%u", cf_info->snaplen_max_inferred);
|
2010-05-03 19:08:11 +00:00
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("n/a");
|
|
|
|
putquote();
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("n/a");
|
|
|
|
putquote();
|
2010-05-03 19:42:09 +00:00
|
|
|
}
|
2010-04-29 06:29:51 +00:00
|
|
|
}
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
if (cap_packet_count) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%u", cf_info->packet_count);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_file_size) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%" G_GINT64_MODIFIER "d", cf_info->filesize);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_data_size) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%" G_GINT64_MODIFIER "u", cf_info->packet_bytes);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_duration) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%f", cf_info->duration);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_start_time) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
2010-02-17 20:15:50 +00:00
|
|
|
printf("%s", time_string(&start_time_t, cf_info, FALSE));
|
2009-11-13 21:43:57 +00:00
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_end_time) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
2010-02-17 20:15:50 +00:00
|
|
|
printf("%s", time_string(&stop_time_t, cf_info, FALSE));
|
2009-11-13 21:43:57 +00:00
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_data_rate_byte) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%.2f", cf_info->data_rate);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_data_rate_bit) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%.2f", cf_info->data_rate*8);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_packet_size) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%.2f", cf_info->packet_size);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cap_packet_rate) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%.2f", cf_info->packet_rate);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
2009-12-07 23:18:12 +00:00
|
|
|
#ifdef HAVE_LIBGCRYPT
|
|
|
|
if (cap_file_hashes) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%s", file_sha1);
|
|
|
|
putquote();
|
|
|
|
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%s", file_rmd160);
|
|
|
|
putquote();
|
|
|
|
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%s", file_md5);
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
#endif /* HAVE_LIBGCRYPT */
|
|
|
|
|
2010-06-02 00:24:03 +00:00
|
|
|
if (cap_in_order) {
|
|
|
|
putsep();
|
|
|
|
putquote();
|
|
|
|
printf("%s", (cf_info->in_order) ? "True" : "False");
|
|
|
|
putquote();
|
|
|
|
}
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2007-09-25 19:52:19 +00:00
|
|
|
static int
|
2005-01-11 00:13:42 +00:00
|
|
|
process_cap_file(wtap *wth, const char *filename)
|
2004-07-30 07:22:21 +00:00
|
|
|
{
|
2010-05-03 19:08:11 +00:00
|
|
|
int err;
|
|
|
|
gchar *err_info;
|
|
|
|
gint64 size;
|
|
|
|
gint64 data_offset;
|
|
|
|
|
|
|
|
guint32 packet = 0;
|
|
|
|
gint64 bytes = 0;
|
|
|
|
guint32 snaplen_min_inferred = 0xffffffff;
|
|
|
|
guint32 snaplen_max_inferred = 0;
|
2004-07-30 07:22:21 +00:00
|
|
|
const struct wtap_pkthdr *phdr;
|
2010-05-03 19:08:11 +00:00
|
|
|
capture_info cf_info;
|
|
|
|
double start_time = 0;
|
|
|
|
double stop_time = 0;
|
|
|
|
double cur_time = 0;
|
2010-06-02 00:24:03 +00:00
|
|
|
double prev_time = 0;
|
|
|
|
gboolean in_order = TRUE;
|
2007-09-25 19:52:19 +00:00
|
|
|
|
2011-05-02 02:06:52 +00:00
|
|
|
cf_info.encap_counts = g_malloc0(WTAP_NUM_ENCAP_TYPES * sizeof(int));
|
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
/* Tally up data that we need to parse through the file to find */
|
|
|
|
while (wtap_read(wth, &err, &err_info, &data_offset)) {
|
|
|
|
phdr = wtap_phdr(wth);
|
2010-06-02 00:24:03 +00:00
|
|
|
prev_time = cur_time;
|
2005-08-24 21:31:56 +00:00
|
|
|
cur_time = secs_nsecs(&phdr->ts);
|
2004-08-21 01:19:36 +00:00
|
|
|
if(packet==0) {
|
|
|
|
start_time = cur_time;
|
|
|
|
stop_time = cur_time;
|
2010-06-02 00:24:03 +00:00
|
|
|
prev_time = cur_time;
|
|
|
|
}
|
|
|
|
if (cur_time < prev_time) {
|
|
|
|
in_order = FALSE;
|
2004-08-21 01:19:36 +00:00
|
|
|
}
|
|
|
|
if (cur_time < start_time) {
|
|
|
|
start_time = cur_time;
|
|
|
|
}
|
|
|
|
if (cur_time > stop_time) {
|
|
|
|
stop_time = cur_time;
|
|
|
|
}
|
2010-05-03 19:08:11 +00:00
|
|
|
|
2004-08-21 01:19:36 +00:00
|
|
|
bytes+=phdr->len;
|
2004-07-30 07:22:21 +00:00
|
|
|
packet++;
|
2010-05-03 19:08:11 +00:00
|
|
|
|
|
|
|
/* If caplen < len for a rcd, then presumably */
|
2010-05-03 19:42:09 +00:00
|
|
|
/* 'Limit packet capture length' was done for this rcd. */
|
2010-05-03 19:08:11 +00:00
|
|
|
/* Keep track as to the min/max actual snapshot lengths */
|
|
|
|
/* seen for this file. */
|
|
|
|
if (phdr->caplen < phdr->len) {
|
|
|
|
if (phdr->caplen < snaplen_min_inferred)
|
|
|
|
snaplen_min_inferred = phdr->caplen;
|
|
|
|
if (phdr->caplen > snaplen_max_inferred)
|
|
|
|
snaplen_max_inferred = phdr->caplen;
|
|
|
|
}
|
|
|
|
|
2011-05-02 02:06:52 +00:00
|
|
|
/* Per-packet encapsulation */
|
|
|
|
if (wtap_file_encap(wth) == WTAP_ENCAP_PER_PACKET) {
|
|
|
|
if ((phdr->pkt_encap > 0) && (phdr->pkt_encap < WTAP_NUM_ENCAP_TYPES)) {
|
|
|
|
cf_info.encap_counts[phdr->pkt_encap] += 1;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "capinfos: Unknown per-packet encapsulation: %d [frame number: %d]\n", phdr->pkt_encap, packet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* while */
|
2007-09-25 19:52:19 +00:00
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
if (err != 0) {
|
2005-01-11 00:13:42 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"capinfos: An error occurred after reading %u packets from \"%s\": %s.\n",
|
2010-05-03 19:08:11 +00:00
|
|
|
packet, filename, wtap_strerror(err));
|
2005-01-11 00:13:42 +00:00
|
|
|
switch (err) {
|
|
|
|
|
|
|
|
case WTAP_ERR_UNSUPPORTED:
|
|
|
|
case WTAP_ERR_UNSUPPORTED_ENCAP:
|
|
|
|
case WTAP_ERR_BAD_RECORD:
|
2011-04-21 09:41:52 +00:00
|
|
|
case WTAP_ERR_DECOMPRESS:
|
2005-01-11 00:13:42 +00:00
|
|
|
fprintf(stderr, "(%s)\n", err_info);
|
2008-05-30 02:44:02 +00:00
|
|
|
g_free(err_info);
|
2005-01-11 00:13:42 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-05-02 02:06:52 +00:00
|
|
|
g_free(cf_info.encap_counts);
|
2005-01-11 00:13:42 +00:00
|
|
|
return 1;
|
2004-07-30 07:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* File size */
|
2005-08-19 19:40:00 +00:00
|
|
|
size = wtap_file_size(wth, &err);
|
|
|
|
if (size == -1) {
|
2005-01-11 00:13:42 +00:00
|
|
|
fprintf(stderr,
|
2005-08-19 19:40:00 +00:00
|
|
|
"capinfos: Can't get size of \"%s\": %s.\n",
|
2010-05-03 19:08:11 +00:00
|
|
|
filename, strerror(err));
|
2011-05-02 02:06:52 +00:00
|
|
|
g_free(cf_info.encap_counts);
|
2004-08-21 01:19:36 +00:00
|
|
|
return 1;
|
2004-07-30 07:22:21 +00:00
|
|
|
}
|
2007-09-25 19:52:19 +00:00
|
|
|
|
2005-08-19 19:40:00 +00:00
|
|
|
cf_info.filesize = size;
|
2007-09-25 19:52:19 +00:00
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
/* File Type */
|
|
|
|
cf_info.file_type = wtap_file_type(wth);
|
2007-09-25 19:52:19 +00:00
|
|
|
|
|
|
|
/* File Encapsulation */
|
|
|
|
cf_info.file_encap = wtap_file_encap(wth);
|
|
|
|
|
2010-04-29 06:29:51 +00:00
|
|
|
/* Packet size limit (snaplen) */
|
|
|
|
cf_info.snaplen = wtap_snapshot_length(wth);
|
|
|
|
if(cf_info.snaplen > 0)
|
|
|
|
cf_info.snap_set = TRUE;
|
|
|
|
else
|
|
|
|
cf_info.snap_set = FALSE;
|
|
|
|
|
2010-05-03 19:08:11 +00:00
|
|
|
cf_info.snaplen_min_inferred = snaplen_min_inferred;
|
|
|
|
cf_info.snaplen_max_inferred = snaplen_max_inferred;
|
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
/* # of packets */
|
|
|
|
cf_info.packet_count = packet;
|
2007-09-25 19:52:19 +00:00
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
/* File Times */
|
|
|
|
cf_info.start_time = start_time;
|
|
|
|
cf_info.stop_time = stop_time;
|
|
|
|
cf_info.duration = stop_time-start_time;
|
2010-06-02 00:24:03 +00:00
|
|
|
cf_info.in_order = in_order;
|
2004-08-21 01:19:36 +00:00
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
/* Number of packet bytes */
|
|
|
|
cf_info.packet_bytes = bytes;
|
2007-09-25 19:52:19 +00:00
|
|
|
|
2009-05-11 14:00:05 +00:00
|
|
|
cf_info.data_rate = 0.0;
|
|
|
|
cf_info.packet_rate = 0.0;
|
|
|
|
cf_info.packet_size = 0.0;
|
|
|
|
|
2007-01-28 17:33:14 +00:00
|
|
|
if (packet > 0) {
|
2009-12-08 00:13:57 +00:00
|
|
|
if (cf_info.duration > 0.0) {
|
2009-05-11 14:00:05 +00:00
|
|
|
cf_info.data_rate = (double)bytes / (stop_time-start_time); /* Data rate per second */
|
|
|
|
cf_info.packet_rate = (double)packet / (stop_time-start_time); /* packet rate per second */
|
|
|
|
}
|
2007-01-28 17:33:14 +00:00
|
|
|
cf_info.packet_size = (double)bytes / packet; /* Avg packet size */
|
|
|
|
}
|
2007-09-25 19:52:19 +00:00
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
if(long_report) {
|
|
|
|
print_stats(filename, &cf_info);
|
|
|
|
} else {
|
|
|
|
print_stats_table(filename, &cf_info);
|
|
|
|
}
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2011-05-02 02:06:52 +00:00
|
|
|
g_free(cf_info.encap_counts);
|
|
|
|
|
2005-01-11 00:13:42 +00:00
|
|
|
return 0;
|
2004-07-30 07:22:21 +00:00
|
|
|
}
|
|
|
|
|
2008-03-16 00:32:12 +00:00
|
|
|
static void
|
|
|
|
usage(gboolean is_error)
|
2004-07-30 07:22:21 +00:00
|
|
|
{
|
|
|
|
FILE *output;
|
2007-09-25 19:52:19 +00:00
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
if (!is_error) {
|
|
|
|
output = stdout;
|
2004-10-20 18:50:58 +00:00
|
|
|
/* XXX - add capinfos header info here */
|
2004-07-30 07:22:21 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
output = stderr;
|
|
|
|
}
|
|
|
|
|
2006-01-11 01:38:16 +00:00
|
|
|
fprintf(output, "Capinfos %s"
|
|
|
|
#ifdef SVNVERSION
|
2010-05-03 19:08:11 +00:00
|
|
|
" (" SVNVERSION " from " SVNPATH ")"
|
2006-01-11 01:38:16 +00:00
|
|
|
#endif
|
2010-05-03 19:08:11 +00:00
|
|
|
"\n", VERSION);
|
|