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
|
|
|
|
*
|
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
|
|
|
|
*
|
2018-02-07 11:26:45 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
2004-07-30 07:22:21 +00:00
|
|
|
*/
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
/*
|
|
|
|
* 2009-09-19: jyoung
|
|
|
|
*
|
|
|
|
* New capinfos features
|
|
|
|
*
|
2019-01-19 21:39:36 +00:00
|
|
|
* Continue processing additional files after
|
|
|
|
* a wiretap open failure. The new -C option
|
|
|
|
* reverts to capinfos' original behavior which
|
|
|
|
* is to cancel any further file processing at
|
|
|
|
* first file open failure.
|
2009-11-13 21:43:57 +00:00
|
|
|
*
|
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
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-08-22 21:13:05 +00:00
|
|
|
#include <config.h>
|
2004-07-30 07:22:21 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2007-05-25 17:22:32 +00:00
|
|
|
#include <stdarg.h>
|
2013-02-28 04:44:38 +00:00
|
|
|
#include <locale.h>
|
2005-01-11 00:13:42 +00:00
|
|
|
#include <errno.h>
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2021-02-14 20:54:42 +00:00
|
|
|
/*
|
|
|
|
* If we have getopt_long() in the system library, include <getopt.h>.
|
|
|
|
* Otherwise, we're using our own getopt_long() (either because the
|
|
|
|
* system has getopt() but not getopt_long(), as with some UN*Xes,
|
|
|
|
* or because it doesn't even have getopt(), as with Windows), so
|
|
|
|
* include our getopt_long()'s header.
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_GETOPT_LONG
|
2014-07-03 04:50:54 +00:00
|
|
|
#include <getopt.h>
|
2021-02-14 20:54:42 +00:00
|
|
|
#else
|
|
|
|
#include <wsutil/wsgetopt.h>
|
2014-07-03 04:50:54 +00:00
|
|
|
#endif
|
|
|
|
|
2005-01-11 00:13:42 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
2016-01-06 00:24:52 +00:00
|
|
|
#include <wiretap/wtap.h>
|
|
|
|
|
2019-01-01 00:55:23 +00:00
|
|
|
#include <ui/cmdarg_err.h>
|
2021-04-13 08:23:21 +00:00
|
|
|
#include <ui/exit_codes.h>
|
2015-02-20 00:05:49 +00:00
|
|
|
#include <wsutil/filesystem.h>
|
|
|
|
#include <wsutil/privileges.h>
|
2018-12-12 10:53:08 +00:00
|
|
|
#include <cli_main.h>
|
2017-09-26 14:04:56 +00:00
|
|
|
#include <version_info.h>
|
2016-01-26 01:17:21 +00:00
|
|
|
#include <wiretap/wtap_opttypes.h>
|
2013-03-07 17:20:12 +00:00
|
|
|
|
2013-12-02 08:30:29 +00:00
|
|
|
#ifdef HAVE_PLUGINS
|
|
|
|
#include <wsutil/plugins.h>
|
|
|
|
#endif
|
2013-03-07 17:20:12 +00:00
|
|
|
|
2017-04-08 19:45:19 +00:00
|
|
|
#include <wsutil/report_message.h>
|
2013-02-26 06:40:25 +00:00
|
|
|
#include <wsutil/str_util.h>
|
2014-06-29 17:39:24 +00:00
|
|
|
#include <wsutil/file_util.h>
|
2021-06-18 18:21:42 +00:00
|
|
|
#include <wsutil/ws_assert.h>
|
2021-06-19 18:44:58 +00:00
|
|
|
#include <wsutil/wslog.h>
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2013-02-21 18:23:29 +00:00
|
|
|
#include <wsutil/wsgcrypt.h>
|
2009-12-07 23:18:12 +00:00
|
|
|
|
2017-04-20 07:19:01 +00:00
|
|
|
#include "ui/failure_message.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
|
2019-01-24 06:39:22 +00:00
|
|
|
* a problem opening or reading 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
|
2019-01-24 06:39:22 +00:00
|
|
|
* additional file processing at the first file
|
|
|
|
* open or read failure.
|
2009-11-13 21:43:57 +00:00
|
|
|
*/
|
|
|
|
|
2019-01-24 06:39:22 +00:00
|
|
|
static gboolean stop_after_failure = FALSE;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* table report variables
|
|
|
|
*/
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2014-01-02 15:41:45 +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 */
|
|
|
|
static gboolean machine_readable = FALSE; /* Display machine-readable numbers */
|
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.
|
|
|
|
*/
|
|
|
|
|
2014-01-02 15:41:45 +00:00
|
|
|
static gboolean report_all_infos = TRUE; /* Report all infos */
|
2009-11-13 21:43:57 +00:00
|
|
|
|
2014-01-02 15:41:45 +00:00
|
|
|
static gboolean cap_file_type = TRUE; /* Report capture type */
|
|
|
|
static gboolean cap_file_encap = TRUE; /* Report encapsulation */
|
|
|
|
static gboolean cap_snaplen = TRUE; /* Packet size limit (snaplen)*/
|
|
|
|
static gboolean cap_packet_count = TRUE; /* Report packet count */
|
|
|
|
static gboolean cap_file_size = TRUE; /* Report file size */
|
|
|
|
static gboolean cap_comment = TRUE; /* Display the capture comment */
|
2015-08-16 16:37:11 +00:00
|
|
|
static gboolean cap_file_more_info = TRUE; /* Report more file info */
|
|
|
|
static gboolean cap_file_idb = TRUE; /* Report Interface info */
|
2019-02-19 01:05:47 +00:00
|
|
|
static gboolean cap_file_nrb = TRUE; /* Report Name Resolution Block info */
|
|
|
|
static gboolean cap_file_dsb = TRUE; /* Report Decryption Secrets Block info */
|
2009-11-13 21:43:57 +00:00
|
|
|
|
2014-01-02 15:41:45 +00:00
|
|
|
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 */
|
|
|
|
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 */
|
2014-01-02 15:41:45 +00:00
|
|
|
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 */
|
|
|
|
static gboolean cap_order = TRUE; /* Report if packets are in chronological order (True/False) */
|
2010-06-02 00:24:03 +00:00
|
|
|
|
2014-01-02 15:41:45 +00:00
|
|
|
static gboolean cap_file_hashes = TRUE; /* Calculate file hashes */
|
2012-07-06 04:48:36 +00:00
|
|
|
|
2017-09-26 21:23:51 +00:00
|
|
|
// Strongest to weakest
|
|
|
|
#define HASH_SIZE_SHA256 32
|
2009-12-07 23:18:12 +00:00
|
|
|
#define HASH_SIZE_RMD160 20
|
2017-09-26 21:23:51 +00:00
|
|
|
#define HASH_SIZE_SHA1 20
|
2009-12-07 23:18:12 +00:00
|
|
|
|
2017-09-26 21:23:51 +00:00
|
|
|
#define HASH_STR_SIZE (65) /* Max hash size * 2 + '\0' */
|
2009-12-07 23:18:12 +00:00
|
|
|
#define HASH_BUF_SIZE (1024 * 1024)
|
|
|
|
|
|
|
|
|
2017-09-26 21:23:51 +00:00
|
|
|
static gchar file_sha256[HASH_STR_SIZE];
|
2009-12-07 23:18:12 +00:00
|
|
|
static gchar file_rmd160[HASH_STR_SIZE];
|
2017-09-26 21:23:51 +00:00
|
|
|
static gchar file_sha1[HASH_STR_SIZE];
|
2009-12-07 23:18:12 +00:00
|
|
|
|
2019-02-19 01:05:47 +00:00
|
|
|
static guint num_ipv4_addresses;
|
|
|
|
static guint num_ipv6_addresses;
|
|
|
|
static guint num_decryption_secrets;
|
|
|
|
|
2012-02-26 05:51:54 +00:00
|
|
|
/*
|
|
|
|
* If we have at least two packets with time stamps, and they're not in
|
|
|
|
* order - i.e., the later packet has a time stamp older than the earlier
|
|
|
|
* packet - the time stamps are known not to be in order.
|
|
|
|
*
|
|
|
|
* If every packet has a time stamp, and they're all in order, the time
|
|
|
|
* stamp is known to be in order.
|
|
|
|
*
|
|
|
|
* Otherwise, we have no idea.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
IN_ORDER,
|
|
|
|
NOT_IN_ORDER,
|
|
|
|
ORDER_UNKNOWN
|
|
|
|
} order_t;
|
|
|
|
|
2004-07-30 07:22:21 +00:00
|
|
|
typedef struct _capture_info {
|
2018-11-16 04:06:36 +00:00
|
|
|
const char *filename;
|
|
|
|
guint16 file_type;
|
|
|
|
wtap_compression_type compression_type;
|
|
|
|
int file_encap;
|
|
|
|
int file_tsprec;
|
2020-05-01 17:28:04 +00:00
|
|
|
wtap *wth;
|
2018-11-16 04:06:36 +00:00
|
|
|
gint64 filesize;
|
|
|
|
guint64 packet_bytes;
|
|
|
|
gboolean times_known;
|
|
|
|
nstime_t start_time;
|
|
|
|
int start_time_tsprec;
|
|
|
|
nstime_t stop_time;
|
|
|
|
int stop_time_tsprec;
|
|
|
|
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;
|
|
|
|
|
|
|
|
nstime_t duration;
|
|
|
|
int duration_tsprec;
|
|
|
|
double packet_rate;
|
|
|
|
double packet_size;
|
|
|
|
double data_rate; /* in bytes/s */
|
|
|
|
gboolean know_order;
|
|
|
|
order_t order;
|
|
|
|
|
|
|
|
int *encap_counts; /* array of per_packet encap counts; array has one entry per wtap_encap type */
|
|
|
|
|
|
|
|
guint num_interfaces; /* number of IDBs, and thus size of interface_packet_counts array */
|
|
|
|
GArray *interface_packet_counts; /* array of per_packet interface_id counts; one entry per file IDB */
|
|
|
|
guint32 pkt_interface_id_unknown; /* counts if packet interface_id didn't match a known one */
|
|
|
|
GArray *idb_info_strings; /* array of IDB info strings */
|
2004-07-30 07:22:21 +00:00
|
|
|
} capture_info;
|
|
|
|
|
2016-06-09 01:12:48 +00:00
|
|
|
static char *decimal_point;
|
2012-07-06 04:48:36 +00:00
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
static void
|
|
|
|
enable_all_infos(void)
|
|
|
|
{
|
2014-01-02 15:41:45 +00:00
|
|
|
report_all_infos = TRUE;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
2014-01-02 15:41:45 +00:00
|
|
|
cap_file_type = TRUE;
|
|
|
|
cap_file_encap = TRUE;
|
|
|
|
cap_snaplen = TRUE;
|
|
|
|
cap_packet_count = TRUE;
|
|
|
|
cap_file_size = TRUE;
|
|
|
|
cap_comment = TRUE;
|
2015-08-16 16:37:11 +00:00
|
|
|
cap_file_more_info = TRUE;
|
|
|
|
cap_file_idb = TRUE;
|
2019-02-19 01:05:47 +00:00
|
|
|
cap_file_nrb = TRUE;
|
|
|
|
cap_file_dsb = TRUE;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
2014-01-02 15:41:45 +00:00
|
|
|
cap_data_size = TRUE;
|
|
|
|
cap_duration = TRUE;
|
|
|
|
cap_start_time = TRUE;
|
|
|
|
cap_end_time = TRUE;
|
|
|
|
cap_order = TRUE;
|
2009-11-13 21:43:57 +00:00
|
|
|
|
|
|
|
cap_data_rate_byte = TRUE;
|
2014-01-02 15:41:45 +00:00
|
|
|
cap_data_rate_bit = TRUE;
|
|
|
|
cap_packet_size = TRUE;
|
|
|
|
cap_packet_rate = TRUE;
|
2009-12-07 23:18:12 +00:00
|
|
|
|
2014-01-02 15:41:45 +00:00
|
|
|
cap_file_hashes = TRUE;
|
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;
|
2013-04-13 17:48:51 +00:00
|
|
|
cap_comment = FALSE;
|
2015-08-16 16:37:11 +00:00
|
|
|
cap_file_more_info = FALSE;
|
|
|
|
cap_file_idb = FALSE;
|
2019-02-19 01:05:47 +00:00
|
|
|
cap_file_nrb = FALSE;
|
|
|
|
cap_file_dsb = 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;
|
2012-02-26 05:51:54 +00:00
|
|
|
cap_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
|
|
|
|
2014-01-02 15:41:45 +00:00
|
|
|
cap_file_hashes = FALSE;
|
2009-11-13 21:43:57 +00:00
|
|
|
}
|
|
|
|
|
2012-02-26 05:51:54 +00:00
|
|
|
static const gchar *
|
|
|
|
order_string(order_t order)
|
|
|
|
{
|
|
|
|
switch (order) {
|
|
|
|
|
2013-04-13 18:08:11 +00:00
|
|
|
case IN_ORDER:
|
|
|
|
return "True";
|
2012-02-26 05:51:54 +00:00
|
|
|
|
2013-04-13 18:08:11 +00:00
|
|
|
case NOT_IN_ORDER:
|
|
|
|
return "False";
|
2012-02-26 05:51:54 +00:00
|
|
|
|
2013-04-13 18:08:11 +00:00
|
|
|
case ORDER_UNKNOWN:
|
|
|
|
return "Unknown";
|
2012-02-26 05:51:54 +00:00
|
|
|
|
2013-04-13 18:08:11 +00:00
|
|
|
default:
|
|
|
|
return "???"; /* "cannot happen" (the next step is "Profit!") */
|
2012-02-26 05:51:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
static gchar *
|
2015-07-31 22:37:49 +00:00
|
|
|
absolute_time_string(nstime_t *timer, int tsprecision, capture_info *cf_info)
|
2010-02-17 20:15:50 +00:00
|
|
|
{
|
2020-04-29 18:24:45 +00:00
|
|
|
/*
|
|
|
|
* https://web.archive.org/web/20120513133703/http://www.idrbt.ac.in/publications/workingpapers/Working%20Paper%20No.%209.pdf
|
|
|
|
*
|
|
|
|
* says:
|
|
|
|
*
|
|
|
|
* A 64-bit Unix time would be safe for the indefinite future, as
|
|
|
|
* this variable would not overflow until 2**63 or
|
|
|
|
* 9,223,372,036,854,775,808 (over nine quintillion) seconds
|
|
|
|
* after the beginning of the Unix epoch - corresponding to
|
|
|
|
* GMT 15:30:08, Sunday, 4th December, 292,277,026,596.
|
|
|
|
*
|
|
|
|
* So, if we're displaying the time as YYYY-MM-DD HH:MM:SS.SSSSSSSSS,
|
|
|
|
* we'll have the buffer be large enouth for a date of the format
|
|
|
|
* 292277026596-MM-DD HH:MM:SS.SSSSSSSSS, which is the biggest value
|
|
|
|
* you'll get with a 64-bit time_t and a nanosecond-resolution
|
|
|
|
* fraction-of-a-second.
|
|
|
|
*
|
|
|
|
* That's 12+1+2+1+2+1+2+1+2+2+2+1+9+1, including the terminating
|
|
|
|
* \0, or 39.
|
|
|
|
*
|
|
|
|
* If we're displaying the time as epoch time, and the time is
|
|
|
|
* unsigned, 2^64-1 is 18446744073709551615, so the buffer has
|
|
|
|
* to be big enough for 18446744073709551615.999999999. That's
|
|
|
|
* 20+1+9+1, including the terminating '\0', or 31. If it's
|
|
|
|
* signed, 2^63 is 9223372036854775808, so the buffer has to
|
|
|
|
* be big enough for -9223372036854775808.999999999, which is
|
|
|
|
* again 20+1+9+1, or 31.
|
|
|
|
*
|
|
|
|
* So we go with 39.
|
|
|
|
*/
|
|
|
|
static gchar time_string_buf[39];
|
2015-02-28 09:13:41 +00:00
|
|
|
struct tm *ti_tm;
|
2010-02-17 20:15:50 +00:00
|
|
|
|
2012-02-26 05:51:54 +00:00
|
|
|
if (cf_info->times_known && cf_info->packet_count > 0) {
|
2010-02-17 20:15:50 +00:00
|
|
|
if (time_as_secs) {
|
2015-07-31 22:37:49 +00:00
|
|
|
switch (tsprecision) {
|
|
|
|
|
|
|
|
case WTAP_TSPREC_SEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d",
|
|
|
|
(gint64)timer->secs);
|
2015-07-31 22:37:49 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_DSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%01d",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 100000000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_CSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%02d",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 10000000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_MSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%03d",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 1000000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_USEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%06d",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 1000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_NSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%09d",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
|
|
|
"Unknown precision %d",
|
|
|
|
tsprecision);
|
|
|
|
break;
|
|
|
|
}
|
2010-02-20 17:44:52 +00:00
|
|
|
return time_string_buf;
|
2010-02-17 20:15:50 +00:00
|
|
|
} else {
|
2015-07-31 22:37:49 +00:00
|
|
|
ti_tm = localtime(&timer->secs);
|
2015-02-28 09:13:41 +00:00
|
|
|
if (ti_tm == NULL) {
|
2015-07-31 22:37:49 +00:00
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf, "Not representable");
|
2011-11-16 03:13:02 +00:00
|
|
|
return time_string_buf;
|
|
|
|
}
|
2015-07-31 22:37:49 +00:00
|
|
|
switch (tsprecision) {
|
|
|
|
|
|
|
|
case WTAP_TSPREC_SEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
|
|
|
"%04d-%02d-%02d %02d:%02d:%02d",
|
|
|
|
ti_tm->tm_year + 1900,
|
|
|
|
ti_tm->tm_mon + 1,
|
|
|
|
ti_tm->tm_mday,
|
|
|
|
ti_tm->tm_hour,
|
|
|
|
ti_tm->tm_min,
|
|
|
|
ti_tm->tm_sec);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_DSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2016-06-09 01:12:48 +00:00
|
|
|
"%04d-%02d-%02d %02d:%02d:%02d%s%01d",
|
2015-07-31 22:37:49 +00:00
|
|
|
ti_tm->tm_year + 1900,
|
|
|
|
ti_tm->tm_mon + 1,
|
|
|
|
ti_tm->tm_mday,
|
|
|
|
ti_tm->tm_hour,
|
|
|
|
ti_tm->tm_min,
|
|
|
|
ti_tm->tm_sec,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 100000000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_CSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2016-06-09 01:12:48 +00:00
|
|
|
"%04d-%02d-%02d %02d:%02d:%02d%s%02d",
|
2015-07-31 22:37:49 +00:00
|
|
|
ti_tm->tm_year + 1900,
|
|
|
|
ti_tm->tm_mon + 1,
|
|
|
|
ti_tm->tm_mday,
|
|
|
|
ti_tm->tm_hour,
|
|
|
|
ti_tm->tm_min,
|
|
|
|
ti_tm->tm_sec,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 10000000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_MSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2016-06-09 01:12:48 +00:00
|
|
|
"%04d-%02d-%02d %02d:%02d:%02d%s%03d",
|
2015-07-31 22:37:49 +00:00
|
|
|
ti_tm->tm_year + 1900,
|
|
|
|
ti_tm->tm_mon + 1,
|
|
|
|
ti_tm->tm_mday,
|
|
|
|
ti_tm->tm_hour,
|
|
|
|
ti_tm->tm_min,
|
|
|
|
ti_tm->tm_sec,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 1000000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_USEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2016-06-09 01:12:48 +00:00
|
|
|
"%04d-%02d-%02d %02d:%02d:%02d%s%06d",
|
2015-07-31 22:37:49 +00:00
|
|
|
ti_tm->tm_year + 1900,
|
|
|
|
ti_tm->tm_mon + 1,
|
|
|
|
ti_tm->tm_mday,
|
|
|
|
ti_tm->tm_hour,
|
|
|
|
ti_tm->tm_min,
|
|
|
|
ti_tm->tm_sec,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 1000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_NSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2016-06-09 01:12:48 +00:00
|
|
|
"%04d-%02d-%02d %02d:%02d:%02d%s%09d",
|
2015-07-31 22:37:49 +00:00
|
|
|
ti_tm->tm_year + 1900,
|
|
|
|
ti_tm->tm_mon + 1,
|
|
|
|
ti_tm->tm_mday,
|
|
|
|
ti_tm->tm_hour,
|
|
|
|
ti_tm->tm_min,
|
|
|
|
ti_tm->tm_sec,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
|
|
|
"Unknown precision %d",
|
|
|
|
tsprecision);
|
|
|
|
break;
|
|
|
|
}
|
2015-02-28 09:13:41 +00:00
|
|
|
return time_string_buf;
|
2010-02-17 20:15:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-31 22:37:49 +00:00
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf, "n/a");
|
|
|
|
return time_string_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
relative_time_string(nstime_t *timer, int tsprecision, capture_info *cf_info, gboolean want_seconds)
|
|
|
|
{
|
|
|
|
const gchar *second = want_seconds ? " second" : "";
|
|
|
|
const gchar *plural = want_seconds ? "s" : "";
|
2020-04-29 18:24:45 +00:00
|
|
|
/*
|
|
|
|
* If we're displaying the time as epoch time, and the time is
|
|
|
|
* unsigned, 2^64-1 is 18446744073709551615, so the buffer has
|
|
|
|
* to be big enough for "18446744073709551615.999999999 seconds".
|
|
|
|
* That's 20+1+9+1+7+1, including the terminating '\0', or 39.
|
|
|
|
* If it'ssigned, 2^63 is 9223372036854775808, so the buffer has to
|
|
|
|
* be big enough for "-9223372036854775808.999999999 seconds",
|
|
|
|
* which is again 20+1+9+1+7+1, or 39.
|
|
|
|
*/
|
|
|
|
static gchar time_string_buf[39];
|
2015-07-31 22:37:49 +00:00
|
|
|
|
|
|
|
if (cf_info->times_known && cf_info->packet_count > 0) {
|
|
|
|
switch (tsprecision) {
|
|
|
|
|
|
|
|
case WTAP_TSPREC_SEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%s",
|
|
|
|
(gint64)timer->secs,
|
2015-07-31 22:37:49 +00:00
|
|
|
second,
|
|
|
|
timer->secs == 1 ? "" : plural);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_DSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%01d%s%s",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 100000000,
|
|
|
|
second,
|
|
|
|
(timer->secs == 1 && timer->nsecs == 0) ? "" : plural);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_CSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%02d%s%s",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 10000000,
|
|
|
|
second,
|
|
|
|
(timer->secs == 1 && timer->nsecs == 0) ? "" : plural);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_MSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%03d%s%s",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 1000000,
|
|
|
|
second,
|
|
|
|
(timer->secs == 1 && timer->nsecs == 0) ? "" : plural);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_USEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%06d%s%s",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs / 1000,
|
|
|
|
second,
|
|
|
|
(timer->secs == 1 && timer->nsecs == 0) ? "" : plural);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WTAP_TSPREC_NSEC:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
2020-04-29 18:24:45 +00:00
|
|
|
"%"G_GINT64_MODIFIER"d%s%09d%s%s",
|
|
|
|
(gint64)timer->secs,
|
2016-06-09 01:12:48 +00:00
|
|
|
decimal_point,
|
2015-07-31 22:37:49 +00:00
|
|
|
timer->nsecs,
|
|
|
|
second,
|
|
|
|
(timer->secs == 1 && timer->nsecs == 0) ? "" : plural);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf,
|
|
|
|
"Unknown precision %d",
|
|
|
|
tsprecision);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return time_string_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_snprintf(time_string_buf, sizeof time_string_buf, "n/a");
|
2010-02-20 17:44:52 +00:00
|
|
|
return time_string_buf;
|
2010-02-17 20:15:50 +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);
|
|
|
|
}
|
|
|
|
|
2016-05-28 19:17:48 +00:00
|
|
|
/* multi-line comments would conflict with the formatting that capinfos uses
|
|
|
|
we replace linefeeds with spaces */
|
|
|
|
static void
|
|
|
|
string_replace_newlines(gchar *str)
|
|
|
|
{
|
|
|
|
gchar *p;
|
|
|
|
|
|
|
|
if (str) {
|
|
|
|
p = str;
|
|
|
|
while (*p != '\0') {
|
|
|
|
if (*p == '\n')
|
|
|
|
*p = ' ';
|
|
|
|
if (*p == '\r')
|
|
|
|
*p = ' ';
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-06-06 01:04:23 +00:00
|
|
|
show_option_string(const char *prefix, const char *option_str)
|
2016-05-28 19:17:48 +00:00
|
|
|
{
|
2016-06-06 01:04:23 +00:00
|
|
|
char *str;
|
2016-05-28 19:17:48 +00:00
|
|
|
|
2016-06-06 01:04:23 +00:00
|
|
|
if (option_str != NULL && option_str[0] != '\0') {
|
|
|
|
str = g_strdup(option_str);
|
|
|
|
string_replace_newlines(str);
|
|
|
|
printf("%s%s\n", prefix, str);
|
|
|
|
g_free(str);
|
2016-05-28 19:17:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2013-02-26 06:40:25 +00:00
|
|
|
gchar *size_string;
|
2004-07-30 07:22:21 +00:00
|
|
|
|
|
|
|
/* Build printable strings for various stats */
|
2021-02-13 08:03:51 +00:00
|
|
|
file_type_string = wtap_file_type_subtype_description(cf_info->file_type);
|
2019-01-09 21:21:10 +00:00
|
|
|
file_encap_string = wtap_encap_description(cf_info->file_encap);
|
2004-07-30 07:22:21 +00:00
|
|
|
|
2009-11-13 21:43:57 +00:00
|
|
|
if (filename) printf ("File name: %s\n", filename);
|
2018-11-16 10:15:47 +00:00
|
|
|
if (cap_file_type) {
|
|
|
|
const char *compression_type_description;
|
|
|
|
compression_type_description = wtap_compression_type_description(cf_info->compression_type);
|
|
|
|
if (compression_type_description == NULL |