Fix some aclocal warnings during autogen.sh
[obnox/wireshark/wip.git] / tethereal.c
index 01d90cfd841095ec52663caaee74eb5e615e6a53..2450495d7a1f0580410d9804f1be0f8f78302a12 100644 (file)
@@ -1,6 +1,6 @@
 /* tethereal.c
  *
- * $Id: tethereal.c,v 1.184 2003/05/15 13:33:53 deniel Exp $
+ * $Id: tethereal.c,v 1.233 2004/03/23 21:19:56 guy Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -68,6 +68,8 @@
 #include "getopt.h"
 #endif
 
+#include "cvsversion.h"
+
 #include <glib.h>
 #include <epan/epan.h>
 #include <epan/filesystem.h>
 #include <epan/timestamp.h>
 #include <epan/packet.h>
 #include "file.h"
+#include "disabled_protos.h"
 #include "prefs.h"
 #include "column.h"
 #include "print.h"
 #include <epan/resolv.h>
 #include "util.h"
+#include "version_info.h"
 #ifdef HAVE_LIBPCAP
 #include "pcap-util.h"
 #endif
@@ -92,6 +96,7 @@
 #include "ringbuffer.h"
 #include <epan/epan_dissect.h>
 #include "tap.h"
+#include <epan/timestamp.h>
 
 #ifdef HAVE_LIBPCAP
 #include <wiretap/wtap-capture.h>
 #include "capture-wpcap.h"
 #endif
 
+/*
+ * This is the template for the decode as option; it is shared between the
+ * various functions that output the usage for this parameter.
+ */
+static const gchar decode_as_arg_template[] = "<layer_type>==<selector>,<decode_as_protocol>";
 static guint32 firstsec, firstusec;
 static guint32 prevsec, prevusec;
 static GString *comp_info_str, *runtime_info_str;
@@ -110,6 +120,8 @@ static gboolean decode;
 static gboolean verbose;
 static gboolean print_hex;
 static gboolean line_buffered;
+static guint32 cum_bytes = 0;
+static int print_format;
 
 #ifdef HAVE_LIBPCAP
 typedef struct _loop_data {
@@ -161,15 +173,23 @@ static void wtap_dispatch_cb_write(guchar *, const struct wtap_pkthdr *, long,
 static void show_capture_file_io_error(const char *, int, gboolean);
 static void wtap_dispatch_cb_print(guchar *, const struct wtap_pkthdr *, long,
     union wtap_pseudo_header *, const guchar *);
+static void show_print_file_io_error(int err);
+static char *cf_open_error_message(int err, gchar *err_info,
+    gboolean for_writing, int file_type);
+#ifdef HAVE_LIBPCAP
 #ifndef _WIN32
 static void adjust_header(loop_data *, struct pcap_hdr *, struct pcaprec_hdr *);
 static int pipe_open_live(char *, struct pcap_hdr *, loop_data *, char *, int);
 static int pipe_dispatch(int, loop_data *, struct pcap_hdr *, \
                 struct pcaprec_modified_hdr *, guchar *, char *, int);
+#endif /* _WIN32 */
 #endif
 
+static void open_failure_message(const char *filename, int err,
+    gboolean for_writing);
+static void read_failure_message(const char *filename, int err);
+
 capture_file cfile;
-ts_type timestamp_type = RELATIVE;
 #ifdef HAVE_LIBPCAP
 typedef struct {
        int snaplen;                    /* Maximum captured packet length */
@@ -185,6 +205,8 @@ typedef struct {
        guint32 ringbuffer_num_files;   /* Number of ring buffer files */
        gboolean has_ring_duration;     /* TRUE if ring duration specified */
        gint32 ringbuffer_duration;     /* Switch file after n seconds */
+       int linktype;                   /* Data link type to use, or -1 for
+                                          "use default" */
 } capture_options;
 
 static capture_options capture_opts = {
@@ -203,9 +225,12 @@ static capture_options capture_opts = {
        RINGBUFFER_MIN_NUM_FILES,       /* default number of ring buffer
                                           files */
        FALSE,                          /* Switch ring file after some */
-       0                               /* specified time is off by default */
+       0,                              /* specified time is off by default */
+       -1                              /* Default to not change link type */
 };
 
+static gboolean list_link_layer_types;
+
 #ifdef SIGINFO
 static gboolean infodelay;     /* if TRUE, don't print capture info in SIGINFO handler */
 static gboolean infoprint;     /* if TRUE, print capture info after clearing infodelay */
@@ -216,37 +241,51 @@ static void
 print_usage(gboolean print_ver)
 {
   int i;
+  FILE *output;
 
   if (print_ver) {
-    fprintf(stderr, "This is GNU t%s %s\n%s\n%s\n", PACKAGE, VERSION,
+    output = stdout;
+    fprintf(output, "This is GNU t" PACKAGE " " VERSION
+#ifdef CVSVERSION
+       " (" CVSVERSION ")"
+#endif
+        "\n (C) 1998-2004 Gerald Combs <gerald@ethereal.com>"
+       "\n%s\n%s\n",
+
        comp_info_str->str, runtime_info_str->str);
+  } else {
+    output = stderr;
   }
 #ifdef HAVE_LIBPCAP
-  fprintf(stderr, "\nt%s [ -DvVhqSlp ] [ -a <capture autostop condition> ] ...\n",
+  fprintf(output, "\nt%s [ -vh ] [ -DlLnpqSVx ] [ -a <capture autostop condition> ] ...\n",
          PACKAGE);
-  fprintf(stderr, "\t[ -b <number of ring buffer files>[:<duration>] ] [ -c <count> ]\n");
-  fprintf(stderr, "\t[ -f <capture filter> ] [ -F <output file type> ]\n");
-  fprintf(stderr, "\t[ -i <interface> ] [ -n ] [ -N <resolving> ]\n");
-  fprintf(stderr, "\t[ -o <preference setting> ] ... [ -r <infile> ] [ -R <read filter> ]\n");
-  fprintf(stderr, "\t[ -s <snaplen> ] [ -t <time stamp format> ] [ -w <savefile> ] [ -x ]\n");
+  fprintf(output, "\t[ -b <number of ring buffer files>[:<duration>] ] [ -c <count> ]\n");
+  fprintf(output, "\t[ -d %s ] ...\n", decode_as_arg_template);
+  fprintf(output, "\t[ -f <capture filter> ] [ -F <output file type> ] [ -i <interface> ]\n");
+  fprintf(output, "\t[ -N <resolving> ] [ -o <preference setting> ] ... [ -r <infile> ]\n");
+  fprintf(output, "\t[ -R <read filter> ] [ -s <snaplen> ] [ -t <time stamp format> ]\n");
+  fprintf(output, "\t[ -T pdml|ps|text ] [ -w <savefile> ] [ -y <link type> ]\n");
+  fprintf(output, "\t[ -z <statistics string> ]\n");
 #else
-  fprintf(stderr, "\nt%s [ -vVhl ] [ -F <output file type> ] [ -n ] [ -N <resolving> ]\n", PACKAGE);
-  fprintf(stderr, "\t[ -o <preference setting> ] ... [ -r <infile> ] [ -R <read filter> ]\n");
-  fprintf(stderr, "\t[ -t <time stamp format> ] [ -w <savefile> ] [ -x ]\n");
+  fprintf(output, "\nt%s [ -vh ] [ -lnVx ]\n", PACKAGE);
+  fprintf(output, "\t[ -d %s ] ...\n", decode_as_arg_template);
+  fprintf(output, "\t[ -F <output file type> ] [ -N <resolving> ]\n");
+  fprintf(output, "\t[ -o <preference setting> ] ... [ -r <infile> ] [ -R <read filter> ]\n");
+  fprintf(output, "\t[ -t <time stamp format> ] [ -T pdml|ps|text ] [ -w <savefile> ]\n");
+  fprintf(output, "\t[ -z <statistics string> ]\n");
 #endif
-  fprintf(stderr, "\t[ -Z <statistics string> ]\n");
-  fprintf(stderr, "Valid file type arguments to the \"-F\" flag:\n");
+  fprintf(output, "Valid file type arguments to the \"-F\" flag:\n");
   for (i = 0; i < WTAP_NUM_FILE_TYPES; i++) {
     if (wtap_dump_can_open(i))
-      fprintf(stderr, "\t%s - %s\n",
+      fprintf(output, "\t%s - %s\n",
         wtap_file_type_short_string(i), wtap_file_type_string(i));
   }
-  fprintf(stderr, "\tdefault is libpcap\n");
+  fprintf(output, "\tdefault is libpcap\n");
 }
 
 #ifdef HAVE_LIBPCAP
 static int
-get_positive_int(const char *string, const char *name)
+get_natural_int(const char *string, const char *name)
 {
   long number;
   char *p;
@@ -262,11 +301,6 @@ get_positive_int(const char *string, const char *name)
            name);
     exit(1);
   }
-  if (number == 0) {
-    fprintf(stderr, "tethereal: The specified %s is zero\n",
-           name);
-    exit(1);
-  }
   if (number > INT_MAX) {
     fprintf(stderr, "tethereal: The specified %s is too large (greater than %d)\n",
            name, INT_MAX);
@@ -275,6 +309,22 @@ get_positive_int(const char *string, const char *name)
   return number;
 }
 
+static int
+get_positive_int(const char *string, const char *name)
+{
+  long number;
+
+  number = get_natural_int(string, name);
+
+  if (number == 0) {
+    fprintf(stderr, "tethereal: The specified %s is zero\n",
+           name);
+    exit(1);
+  }
+
+  return number;
+}
+
 /*
  * Given a string of the form "<autostop criterion>:<value>", as might appear
  * as an argument to a "-a" option, parse it and set the criterion in
@@ -331,7 +381,7 @@ set_autostop_criterion(const char *autostoparg)
 static gboolean
 get_ring_arguments(const char *arg)
 {
-  guchar *p, *colonp;
+  guchar *p = NULL, *colonp;
 
   colonp = strchr(arg, ':');
 
@@ -341,7 +391,7 @@ get_ring_arguments(const char *arg)
   }
 
   capture_opts.ringbuffer_num_files = 
-    get_positive_int(arg, "number of ring buffer files");
+    get_natural_int(arg, "number of ring buffer files");
 
   if (colonp == NULL)
     return TRUE;
@@ -394,6 +444,352 @@ register_ethereal_tap(char *cmd, void (*func)(char *arg))
 
 }
 
+/*
+ * For a dissector table, print on the stream described by output,
+ * its short name (which is what's used in the "-d" option) and its
+ * descriptive name.
+ */
+static void
+display_dissector_table_names(char *table_name, char *ui_name, gpointer output)
+{
+  fprintf((FILE *)output, "\t%s (%s)\n", table_name, ui_name);
+}
+
+/*
+ * For a dissector handle, print on the stream described by output,
+ * the filter name (which is what's used in the "-d" option) and the full
+ * name for the protocol that corresponds to this handle.
+ */
+static void
+display_dissector_names(gchar *table _U_, gpointer handle, gpointer output)
+{
+  int                proto_id;
+  const gchar*       proto_filter_name;
+  const gchar*       proto_ui_name;
+
+  proto_id = dissector_handle_get_protocol_index((dissector_handle_t)handle);
+
+  if (proto_id != -1) {
+    proto_filter_name = proto_get_protocol_filter_name(proto_id);
+    proto_ui_name =  proto_get_protocol_name(proto_id);
+    g_assert(proto_filter_name != NULL);
+    g_assert(proto_ui_name != NULL);
+
+    fprintf((FILE *)output, "\t%s (%s)\n",
+            proto_filter_name,
+            proto_ui_name);
+  }
+}
+
+/*
+ * The protocol_name_search structure is used by find_protocol_name_func()
+ * to pass parameters and store results
+ */
+struct protocol_name_search{
+  gchar              *searched_name;  /* Protocol filter name we are looking for */
+  dissector_handle_t  matched_handle; /* Handle for a dissector whose protocol has the specified filter name */
+  guint               nb_match;       /* How many dissectors matched searched_name */
+};
+typedef struct protocol_name_search *protocol_name_search_t;
+
+/*
+ * This function parses all dissectors associated with a table to find the
+ * one whose protocol has the specified filter name.  It is called
+ * as a reference function in a call to dissector_table_foreach_handle.
+ * The name we are looking for, as well as the results, are stored in the
+ * protocol_name_search struct pointed to by user_data.
+ * If called using dissector_table_foreach_handle, we actually parse the
+ * whole list of dissectors.
+ */
+static void
+find_protocol_name_func(gchar *table _U_, gpointer handle, gpointer user_data)
+
+{
+  int                         proto_id;
+  const gchar                *protocol_filter_name;
+  protocol_name_search_t      search_info;
+
+  g_assert(handle);
+
+  search_info = (protocol_name_search_t)user_data;
+
+  proto_id = dissector_handle_get_protocol_index((dissector_handle_t)handle);
+  if (proto_id != -1) {
+    protocol_filter_name = proto_get_protocol_filter_name(proto_id);
+    g_assert(protocol_filter_name != NULL);
+    if (strcmp(protocol_filter_name, search_info->searched_name) == 0) {
+      /* Found a match */
+      if (search_info->nb_match == 0) {
+        /* Record this handle only if this is the first match */
+        search_info->matched_handle = (dissector_handle_t)handle; /* Record the handle for this matching dissector */
+      }
+      search_info->nb_match++;
+    }
+  }
+}
+
+/*
+ * Print all layer type names supported.
+ * We send the output to the stream described by the handle output.
+ */
+
+static void
+fprint_all_layer_types(FILE *output)
+
+{
+  dissector_all_tables_foreach_table(display_dissector_table_names, (gpointer)output);
+}
+
+/*
+ * Print all protocol names supported for a specific layer type.
+ * table_name contains the layer type name in which the search is performed.
+ * We send the output to the stream described by the handle output.
+ */
+
+static void
+fprint_all_protocols_for_layer_types(FILE *output, gchar *table_name)
+
+{
+  dissector_table_foreach_handle(table_name,
+                                 display_dissector_names,
+                                 (gpointer)output);
+}
+
+/*
+ * The function below parses the command-line parameters for the decode as
+ * feature (a string pointer by cl_param).
+ * It checks the format of the command-line, searches for a matching table
+ * and dissector.  If a table/dissector match is not found, we display a
+ * summary of the available tables/dissectors (on stderr) and return FALSE.
+ * If everything is fine, we get the "Decode as" preference activated,
+ * then we return TRUE.
+ */
+static gboolean
+add_decode_as(const gchar *cl_param)
+{
+  gchar                        *table_name;
+  guint32                       selector;
+  gchar                        *decoded_param;
+  gchar                        *remaining_param;
+  gchar                        *selector_str;
+  gchar                        *dissector_str;
+  dissector_handle_t            dissector_matching;
+  dissector_table_t             table_matching;
+  ftenum_t                      dissector_table_selector_type;
+  struct protocol_name_search   user_protocol_name;
+
+/* The following code will allocate and copy the command-line options in a string pointed by decoded_param */
+
+  g_assert(cl_param);
+  decoded_param = g_malloc( sizeof(gchar) * (strlen(cl_param) + 1) ); /* Allocate enough space to have a working copy of the command-line parameter */
+  g_assert(decoded_param);
+  strcpy(decoded_param, cl_param);
+
+
+  /* The lines below will parse this string (modifying it) to extract all
+    necessary information.  Note that decoded_param is still needed since
+    strings are not copied - we just save pointers. */
+
+  /* This section extracts a layer type (table_name) from decoded_param */
+  table_name = decoded_param; /* Layer type string starts from beginning */
+
+  remaining_param = strchr(table_name, '=');
+  if (remaining_param == NULL) {
+    fprintf(stderr, "tethereal: Parameter \"%s\" doesn't follow the template \"%s\"\n", cl_param, decode_as_arg_template);
+    /* If the argument does not follow the template, carry on anyway to check
+       if the table name is at least correct.  If remaining_param is NULL,
+       we'll exit anyway further down */
+  }
+  else {
+    *remaining_param = '\0'; /* Terminate the layer type string (table_name) where '=' was detected */
+  }
+
+  /* Remove leading and trailing spaces from the table name */
+  while ( table_name[0] == ' ' )
+    table_name++; 
+  while ( table_name[strlen(table_name) - 1] == ' ' )
+    table_name[strlen(table_name) - 1] = '\0'; /* Note: if empty string, while loop will eventually exit */
+
+/* The following part searches a table matching with the layer type specified */
+  table_matching = NULL;
+
+/* Look for the requested table */
+  if ( !(*(table_name)) ) { /* Is the table name empty, if so, don't even search for anything, display a message */
+    fprintf(stderr, "tethereal: No layer type specified\n"); /* Note, we don't exit here, but table_matching will remain NULL, so we exit below */
+  }
+  else {
+    table_matching = find_dissector_table(table_name);
+    if (!table_matching) {
+      fprintf(stderr, "tethereal: Unknown layer type -- %s\n", table_name); /* Note, we don't exit here, but table_matching will remain NULL, so we exit below */
+    }
+  }
+
+  if (!table_matching) {
+    /* Display a list of supported layer types to help the user, if the 
+       specified layer type was not found */
+    fprintf(stderr, "tethereal: Valid layer types are:\n");
+    fprint_all_layer_types(stderr);
+  }
+  if (remaining_param == NULL || !table_matching) {
+    /* Exit if the layer type was not found, or if no '=' separator was found
+       (see above) */
+    g_free(decoded_param); 
+    return FALSE;
+  }
+  
+  if (*(remaining_param + 1) != '=') { /* Check for "==" and not only '=' */
+    fprintf(stderr, "tethereal: WARNING: -d requires \"==\" instead of \"=\". Option will be treated as \"%s==%s\"\n", table_name, remaining_param + 1);
+  }
+  else {
+    remaining_param++; /* Move to the second '=' */
+    *remaining_param = '\0'; /* Remove the second '=' */
+  }
+  remaining_param++; /* Position after the layer type string */
+
+  /* This section extracts a selector value (selector_str) from decoded_param */
+
+  selector_str = remaining_param; /* Next part starts with the selector number */
+
+  remaining_param = strchr(selector_str, ',');
+  if (remaining_param == NULL) {
+    fprintf(stderr, "tethereal: Parameter \"%s\" doesn't follow the template \"%s\"\n", cl_param, decode_as_arg_template);
+    /* If the argument does not follow the template, carry on anyway to check
+       if the selector value is at least correct.  If remaining_param is NULL,
+       we'll exit anyway further down */
+  }
+  else {
+    *remaining_param = '\0'; /* Terminate the selector number string (selector_str) where ',' was detected */
+  }
+
+  dissector_table_selector_type = get_dissector_table_selector_type(table_name);
+
+  switch (dissector_table_selector_type) {
+
+  case FT_UINT8:
+  case FT_UINT16:
+  case FT_UINT24:
+  case FT_UINT32:
+    /* The selector for this table is an unsigned number.  Parse it as such.
+       There's no need to remove leading and trailing spaces from the
+       selector number string, because sscanf will do that for us. */
+    if ( sscanf(selector_str, "%u", &selector) != 1 ) {
+      fprintf(stderr, "tethereal: Invalid selector number \"%s\"\n", selector_str);
+      g_free(decoded_param);
+      return FALSE;
+    }
+    break;
+
+  case FT_STRING:
+  case FT_STRINGZ:
+    /* The selector for this table is a string. */
+    break;
+
+  default:
+    /* There are currently no dissector tables with any types other
+       than the ones listed above. */
+    g_assert_not_reached();
+  }
+
+  if (remaining_param == NULL) {
+    /* Exit if no ',' separator was found (see above) */
+    fprintf(stderr, "tethereal: Valid protocols for layer type \"%s\" are:\n", table_name);
+    fprint_all_protocols_for_layer_types(stderr, table_name);
+    g_free(decoded_param); 
+    return FALSE;
+  }
+
+  remaining_param++; /* Position after the selector number string */
+
+  /* This section extracts a protocol filter name (dissector_str) from decoded_param */
+
+  dissector_str = remaining_param; /* All the rest of the string is the dissector (decode as protocol) name */
+  
+  /* Remove leading and trailing spaces from the dissector name */
+  while ( dissector_str[0] == ' ' )
+    dissector_str++; 
+  while ( dissector_str[strlen(dissector_str) - 1] == ' ' )
+    dissector_str[strlen(dissector_str) - 1] = '\0'; /* Note: if empty string, while loop will eventually exit */
+
+  dissector_matching = NULL;
+  
+  /* We now have a pointer to the handle for the requested table inside the variable table_matching */
+  if ( ! (*dissector_str) ) { /* Is the dissector name empty, if so, don't even search for a matching dissector and display all dissectors found for the selected table */
+    fprintf(stderr, "tethereal: No protocol name specified\n"); /* Note, we don't exit here, but dissector_matching will remain NULL, so we exit below */
+  }
+  else {
+    user_protocol_name.nb_match = 0;
+    user_protocol_name.searched_name = dissector_str;
+    user_protocol_name.matched_handle = NULL;
+    
+    dissector_table_foreach_handle(table_name, find_protocol_name_func, &user_protocol_name); /* Go and perform the search for this dissector in the this table's dissectors' names and shortnames */
+    
+    if (user_protocol_name.nb_match != 0) {
+      dissector_matching = user_protocol_name.matched_handle;
+      if (user_protocol_name.nb_match > 1) {
+        fprintf(stderr, "tethereal: WARNING: Protocol \"%s\" matched %u dissectors, first one will be used\n", dissector_str, user_protocol_name.nb_match);
+      }
+    }
+    else {
+      /* OK, check whether the problem is that there isn't any such
+         protocol, or that there is but it's not specified as a protocol
+         that's valid for that dissector table.
+         Note, we don't exit here, but dissector_matching will remain NULL,
+         so we exit below */
+      if (proto_get_id_by_filter_name(dissector_str) == -1) {
+        /* No such protocol */
+        fprintf(stderr, "tethereal: Unknown protocol -- \"%s\"\n", dissector_str);
+      } else {
+        fprintf(stderr, "tethereal: Protocol \"%s\" isn't valid for layer type \"%s\"\n",
+               dissector_str, table_name);
+      }
+    }
+  }
+
+  if (!dissector_matching) {
+    fprintf(stderr, "tethereal: Valid protocols for layer type \"%s\" are:\n", table_name);
+    fprint_all_protocols_for_layer_types(stderr, table_name);
+    g_free(decoded_param); 
+    return FALSE;
+  }
+
+/* This is the end of the code that parses the command-line options.
+   All information is now stored in the variables:
+   table_name
+   selector
+   dissector_matching
+   The above variables that are strings are still pointing to areas within
+   decoded_parm.  decoded_parm thus still needs to be kept allocated in 
+   until we stop needing these variables
+   decoded_param will be deallocated at each exit point of this function */
+
+
+  /* We now have a pointer to the handle for the requested dissector
+     (requested protocol) inside the variable dissector_matching */
+  switch (dissector_table_selector_type) {
+
+  case FT_UINT8:
+  case FT_UINT16:
+  case FT_UINT24:
+  case FT_UINT32:
+    /* The selector for this table is an unsigned number. */
+    dissector_change(table_name, selector, dissector_matching);
+    break;
+
+  case FT_STRING:
+  case FT_STRINGZ:
+    /* The selector for this table is a string. */
+    dissector_change_string(table_name, selector_str, dissector_matching);
+    break;
+
+  default:
+    /* There are currently no dissector tables with any types other
+       than the ones listed above. */
+    g_assert_not_reached();
+  }
+  g_free(decoded_param); /* "Decode As" rule has been succesfully added */
+  return TRUE;
+}
+
 int
 main(int argc, char *argv[])
 {
@@ -405,13 +801,19 @@ main(int argc, char *argv[])
   WSADATA              wsaData;
 #endif /* _WIN32 */
 
-  char                *gpf_path;
-  char                *pf_path;
-  int                  gpf_open_errno, pf_open_errno;
+  char                *gpf_path, *pf_path;
+  char                *gdp_path, *dp_path;
+  int                  gpf_open_errno, gpf_read_errno;
+  int                  pf_open_errno, pf_read_errno;
+  int                  gdp_open_errno, gdp_read_errno;
+  int                  dp_open_errno, dp_read_errno;
   int                  err;
 #ifdef HAVE_LIBPCAP
   gboolean             capture_filter_specified = FALSE;
   GList               *if_list, *if_entry;
+  if_info_t           *if_info;
+  long                 adapter_index;
+  char                *p;
   gchar                err_str[PCAP_ERRBUF_SIZE];
 #else
   gboolean             capture_option_specified = FALSE;
@@ -420,17 +822,25 @@ main(int argc, char *argv[])
   gchar               *cf_name = NULL, *rfilter = NULL;
 #ifdef HAVE_LIBPCAP
   gchar               *if_text;
+  GList               *lt_list, *lt_entry;
+  data_link_info_t    *data_link_info;
+#endif
+#ifdef HAVE_PCAP_OPEN_DEAD
+  struct bpf_program   fcode;
 #endif
   dfilter_t           *rfcode = NULL;
   e_prefs             *prefs;
   char                 badopt;
   ethereal_tap_list *tli;
 
+  set_timestamp_setting(TS_RELATIVE);
+
   /* 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. */
-  epan_init(PLUGIN_DIR,register_all_protocols,register_all_protocol_handoffs);
+  epan_init(PLUGIN_DIR,register_all_protocols,register_all_protocol_handoffs,
+            open_failure_message, read_failure_message);
 
   /* Register all tap listeners; we do this before we parse the arguments,
      as the "-z" argument can specify a registered tap. */
@@ -467,14 +877,27 @@ main(int argc, char *argv[])
   /* Set the C-language locale to the native environment. */
   setlocale(LC_ALL, "");
 
-  prefs = read_prefs(&gpf_open_errno, &gpf_path, &pf_open_errno, &pf_path);
+  prefs = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
+                     &pf_open_errno, &pf_read_errno, &pf_path);
   if (gpf_path != NULL) {
-    fprintf(stderr, "Can't open global preferences file \"%s\": %s.\n", pf_path,
-        strerror(gpf_open_errno));
+    if (gpf_open_errno != 0) {
+      fprintf(stderr, "Can't open global preferences file \"%s\": %s.\n",
+              pf_path, strerror(gpf_open_errno));
+    }
+    if (gpf_read_errno != 0) {
+      fprintf(stderr, "I/O error reading global preferences file \"%s\": %s.\n",
+              pf_path, strerror(gpf_read_errno));
+    }
   }
   if (pf_path != NULL) {
-    fprintf(stderr, "Can't open your preferences file \"%s\": %s.\n", pf_path,
-        strerror(pf_open_errno));
+    if (pf_open_errno != 0) {
+      fprintf(stderr, "Can't open your preferences file \"%s\": %s.\n", pf_path,
+              strerror(pf_open_errno));
+    }
+    if (pf_read_errno != 0) {
+      fprintf(stderr, "I/O error reading your preferences file \"%s\": %s.\n",
+              pf_path, strerror(pf_read_errno));
+    }
     g_free(pf_path);
     pf_path = NULL;
   }
@@ -482,6 +905,36 @@ main(int argc, char *argv[])
   /* Set the name resolution code's flags from the preferences. */
   g_resolv_flags = prefs->name_resolve;
 
+  /* Read the disabled protocols file. */
+  read_disabled_protos_list(&gdp_path, &gdp_open_errno, &gdp_read_errno,
+                           &dp_path, &dp_open_errno, &dp_read_errno);
+  if (gdp_path != NULL) {
+    if (gdp_open_errno != 0) {
+      fprintf(stderr,
+        "Could not open global disabled protocols file\n\"%s\": %s.\n",
+       gdp_path, strerror(gdp_open_errno));
+    }
+    if (gdp_read_errno != 0) {
+      fprintf(stderr,
+        "I/O error reading global disabled protocols file\n\"%s\": %s.\n",
+       gdp_path, strerror(gdp_read_errno));
+    }
+    g_free(gdp_path);
+  }
+  if (dp_path != NULL) {
+    if (dp_open_errno != 0) {
+      fprintf(stderr,
+        "Could not open your disabled protocols file\n\"%s\": %s.\n", dp_path,
+        strerror(dp_open_errno));
+    }
+    if (dp_read_errno != 0) {
+      fprintf(stderr,
+        "I/O error reading your disabled protocols file\n\"%s\": %s.\n", dp_path,
+        strerror(dp_read_errno));
+    }
+    g_free(dp_path);
+  }
+
 #ifdef _WIN32
   /* Load Wpcap, if possible */
   load_wpcap();
@@ -497,13 +950,16 @@ main(int argc, char *argv[])
   runtime_info_str = g_string_new("Running ");
   get_runtime_version_info(runtime_info_str);
 
+  /* Print format defaults to this. */
+  print_format = PR_FMT_TEXT;
+
   /* Now get our args */
-  while ((opt = getopt(argc, argv, "a:b:c:Df:F:hi:lnN:o:pqr:R:s:St:vw:Vxz:")) != -1) {
+  while ((opt = getopt(argc, argv, "a:b:c:d:Df:F:hi:lLnN:o:pqr:R:s:St:T:vw:Vxy:z:")) != -1) {
     switch (opt) {
       case 'a':        /* autostop criteria */
 #ifdef HAVE_LIBPCAP
         if (set_autostop_criterion(optarg) == FALSE) {
-          fprintf(stderr, "ethereal: Invalid or unknown -a flag \"%s\"\n", optarg);
+          fprintf(stderr, "tethereal: Invalid or unknown -a flag \"%s\"\n", optarg);
           exit(1);
         }
 #else
@@ -515,7 +971,7 @@ main(int argc, char *argv[])
 #ifdef HAVE_LIBPCAP
         capture_opts.ringbuffer_on = TRUE;
        if (get_ring_arguments(optarg) == FALSE) {
-          fprintf(stderr, "ethereal: Invalid or unknown -b arg \"%s\"\n", optarg);
+          fprintf(stderr, "tethereal: Invalid or unknown -b arg \"%s\"\n", optarg);
           exit(1);
        }
 #else
@@ -532,6 +988,10 @@ main(int argc, char *argv[])
         arg_error = TRUE;
 #endif
         break;
+      case 'd':        /* Decode as rule */
+        if (!add_decode_as(optarg))
+          exit(1);
+       break;
       case 'D':        /* Print a list of capture devices */
 #ifdef HAVE_LIBPCAP
         if_list = get_interface_list(&err, err_str);
@@ -549,9 +1009,15 @@ main(int argc, char *argv[])
             }
             exit(2);
         }
+        i = 1;  /* Interface id number */
         for (if_entry = g_list_first(if_list); if_entry != NULL;
-               if_entry = g_list_next(if_entry))
-          printf("%s\n", (char *)if_entry->data);
+               if_entry = g_list_next(if_entry)) {
+         if_info = if_entry->data;
+          printf("%d. %s", i++, if_info->name);
+          if (if_info->description != NULL)
+            printf(" (%s)", if_info->description);
+          printf("\n");
+        }
         free_interface_list(if_list);
         exit(0);
 #else
@@ -584,7 +1050,55 @@ main(int argc, char *argv[])
         break;
       case 'i':        /* Use interface xxx */
 #ifdef HAVE_LIBPCAP
-        cfile.iface = g_strdup(optarg);
+        /*
+         * If the argument is a number, treat it as an index into the list
+         * of adapters, as printed by "tethereal -D".
+         *
+         * This should be OK on UNIX systems, as interfaces shouldn't have
+         * names that begin with digits.  It can be useful on Windows, where
+         * more than one interface can have the same name.
+         */
+        adapter_index = strtol(optarg, &p, 10);
+        if (p != NULL && *p == '\0') {
+          if (adapter_index < 0) {
+            fprintf(stderr,
+                "tethereal: The specified adapter index is a negative number\n");
+           exit(1);
+          }
+          if (adapter_index > INT_MAX) {
+            fprintf(stderr,
+                "tethereal: The specified adapter index is too large (greater than %d)\n",
+                INT_MAX);
+            exit(1);
+          }
+          if (adapter_index == 0) {
+            fprintf(stderr, "tethereal: there is no interface with that adapter index\n");
+            exit(1);
+          }
+          if_list = get_interface_list(&err, err_str);
+          if (if_list == NULL) {
+            switch (err) {
+
+            case CANT_GET_INTERFACE_LIST:
+                fprintf(stderr, "tethereal: Can't get list of interfaces: %s\n",
+                        err_str);
+                break;
+
+            case NO_INTERFACES_FOUND:
+                fprintf(stderr, "tethereal: There are no interfaces on which a capture can be done\n");
+                break;
+            }
+            exit(2);
+          }
+          if_info = g_list_nth_data(if_list, adapter_index - 1);
+          if (if_info == NULL) {
+            fprintf(stderr, "tethereal: there is no interface with that adapter index\n");
+            exit(1);
+          }
+          cfile.iface = g_strdup(if_info->name);
+          free_interface_list(if_list);
+        } else
+          cfile.iface = g_strdup(optarg);
 #else
         capture_option_specified = TRUE;
         arg_error = TRUE;
@@ -594,7 +1108,9 @@ main(int argc, char *argv[])
        /* This isn't line-buffering, strictly speaking, it's just
           flushing the standard output after the information for
           each packet is printed; however, that should be good
-          enough for all the purposes to which "-l" is put.
+          enough for all the purposes to which "-l" is put (and
+          is probably actually better for "-V", as it does fewer
+          writes).
 
           See the comment in "wtap_dispatch_cb_print()" for an
           explanation of why we do that, and why we don't just
@@ -604,6 +1120,15 @@ main(int argc, char *argv[])
           when it fills up). */
        line_buffered = TRUE;
        break;
+      case 'L':        /* Print list of link-layer types and exit */
+#ifdef HAVE_LIBPCAP
+        list_link_layer_types = TRUE;
+        break;
+#else
+        capture_option_specified = TRUE;
+        arg_error = TRUE;
+#endif
+        break;
       case 'n':        /* No name resolution */
         g_resolv_flags = RESOLV_NONE;
         break;
@@ -663,13 +1188,13 @@ main(int argc, char *argv[])
         break;
       case 't':        /* Time stamp type */
         if (strcmp(optarg, "r") == 0)
-          timestamp_type = RELATIVE;
+          set_timestamp_setting(TS_RELATIVE);
         else if (strcmp(optarg, "a") == 0)
-          timestamp_type = ABSOLUTE;
+          set_timestamp_setting(TS_ABSOLUTE);
         else if (strcmp(optarg, "ad") == 0)
-          timestamp_type = ABSOLUTE_WITH_DATE;
+          set_timestamp_setting(TS_ABSOLUTE_WITH_DATE);
         else if (strcmp(optarg, "d") == 0)
-          timestamp_type = DELTA;
+          set_timestamp_setting(TS_DELTA);
         else {
           fprintf(stderr, "tethereal: Invalid time stamp type \"%s\"\n",
             optarg);
@@ -678,9 +1203,26 @@ main(int argc, char *argv[])
           exit(1);
         }
         break;
+      case 'T':        /* printing Type */
+        if (strcmp(optarg, "text") == 0)
+               print_format = PR_FMT_TEXT;
+       else if (strcmp(optarg, "pdml") == 0)
+               print_format = PR_FMT_PDML;
+       else if (strcmp(optarg, "ps") == 0)
+               print_format = PR_FMT_PS;
+       else {
+               fprintf(stderr, "tethereal: Invalid -T parameter.\n");
+               fprintf(stderr, "It must be \"ps\", \"text\" or \"pdml\".\n");
+               exit(1);
+       }
+       break;
       case 'v':        /* Show version and exit */
-        printf("t%s %s\n%s\n%s\n", PACKAGE, VERSION, comp_info_str->str,
-               runtime_info_str->str);
+        printf("t" PACKAGE " " VERSION
+#ifdef CVSVERSION
+           " (" CVSVERSION ")"
+#endif
+           "\n%s\n%s\n",
+           comp_info_str->str, runtime_info_str->str);
         exit(0);
         break;
       case 'w':        /* Write to capture file xxx */
@@ -692,6 +1234,24 @@ main(int argc, char *argv[])
       case 'x':        /* Print packet data in hex (and ASCII) */
         print_hex = TRUE;
         break;
+      case 'y':        /* Set the pcap data link type */
+#ifdef HAVE_LIBPCAP
+#ifdef HAVE_PCAP_DATALINK_NAME_TO_VAL
+        capture_opts.linktype = pcap_datalink_name_to_val(optarg);
+        if (capture_opts.linktype == -1) {
+          fprintf(stderr, "tethereal: The specified data link type \"%s\" is not valid\n",
+                  optarg);
+          exit(1);
+        }
+#else /* HAVE_PCAP_DATALINK_NAME_TO_VAL */
+        /* XXX - just treat it as a number */
+        capture_opts.linktype = get_natural_int(optarg, "data link type");
+#endif /* HAVE_PCAP_DATALINK_NAME_TO_VAL */
+#else
+        capture_option_specified = TRUE;
+        arg_error = TRUE;
+#endif
+        break;
       case 'z':
         for(tli=tap_list;tli;tli=tli->next){
           if(!strncmp(tli->cmd,optarg,strlen(tli->cmd))){
@@ -715,6 +1275,10 @@ main(int argc, char *argv[])
     }
   }
 
+  /* If printing PDML or PS, force -V */
+  if (print_format == PR_FMT_PDML || print_format == PR_FMT_PS)
+         verbose = TRUE;
+
   /* If no capture filter or read filter has been specified, and there are
      still command-line arguments, treat them as the tokens of a capture
      filter (if no "-r" flag was specified) or a read filter (if a "-r"
@@ -778,42 +1342,66 @@ main(int argc, char *argv[])
 #endif
   }
 
-#ifdef HAVE_LIBPCAP
-  /* If they didn't specify a "-w" flag, but specified a maximum capture
-     file size, tell them that this doesn't work, and exit. */
-  if (capture_opts.has_autostop_filesize && cfile.save_file == NULL) {
-    fprintf(stderr, "tethereal: Maximum capture file size specified, but "
-      "capture isn't being saved to a file.\n");
-    exit(2);
+#ifndef HAVE_LIBPCAP
+  if (capture_option_specified)
+    fprintf(stderr, "This version of Tethereal was not built with support for capturing packets.\n");
+#endif
+  if (arg_error) {
+    print_usage(FALSE);
+    exit(1);
   }
 
-  if (capture_opts.ringbuffer_on) {
-    /* Ring buffer works only under certain conditions:
-       a) ring buffer does not work if you're not saving the capture to
-          a file;
-       b) ring buffer only works if you're saving in libpcap format;
-       c) it makes no sense to enable the ring buffer if the maximum
-          file size is set to "infinite";
-       d) file must not be a pipe. */
-    if (cfile.save_file == NULL) {
-      fprintf(stderr, "tethereal: Ring buffer requested, but "
-        "capture isn't being saved to a file.\n");
-      exit(2);
+#ifdef HAVE_LIBPCAP
+  if (list_link_layer_types) {
+    /* We're supposed to list the link-layer types for an interface;
+       did the user also specify a capture file to be read? */
+    if (cf_name) {
+      /* Yes - that's bogus. */
+      fprintf(stderr, "tethereal: You cannot specify -L and a capture file to be read.\n");
+      exit(1);
     }
-    if (out_file_type != WTAP_FILE_PCAP) {
-      fprintf(stderr, "tethereal: Ring buffer requested, but "
-        "capture isn't being saved in libpcap format.\n");
-      exit(2);
+    /* No - did they specify a ring buffer option? */
+    if (capture_opts.ringbuffer_on) {
+      fprintf(stderr, "tethereal: Ring buffer requested, but a capture is not being done.\n");
+      exit(1);
     }
-    if (!capture_opts.has_autostop_filesize) {
-      fprintf(stderr, "tethereal: Ring buffer requested, but "
-        "no maximum capture file size was specified.\n");
-      exit(2);
+  } else {
+    /* If they didn't specify a "-w" flag, but specified a maximum capture
+       file size, tell them that this doesn't work, and exit. */
+    if (capture_opts.has_autostop_filesize && cfile.save_file == NULL) {
+      fprintf(stderr, "tethereal: Maximum capture file size specified, but "
+        "capture isn't being saved to a file.\n");
+      exit(1);
     }
-    if (ld.output_to_pipe) {
-      fprintf(stderr, "tethereal: Ring buffer requested, but "
-        "capture file is a pipe.\n");
-      exit(2);
+
+    if (capture_opts.ringbuffer_on) {
+      /* Ring buffer works only under certain conditions:
+        a) ring buffer does not work if you're not saving the capture to
+           a file;
+        b) ring buffer only works if you're saving in libpcap format;
+        c) it makes no sense to enable the ring buffer if the maximum
+           file size is set to "infinite";
+        d) file must not be a pipe. */
+      if (cfile.save_file == NULL) {
+       fprintf(stderr, "tethereal: Ring buffer requested, but "
+         "capture isn't being saved to a file.\n");
+       exit(1);
+      }
+      if (out_file_type != WTAP_FILE_PCAP) {
+       fprintf(stderr, "tethereal: Ring buffer requested, but "
+         "capture isn't being saved in libpcap format.\n");
+       exit(2);
+      }
+      if (!capture_opts.has_autostop_filesize) {
+       fprintf(stderr, "tethereal: Ring buffer requested, but "
+         "no maximum capture file size was specified.\n");
+       exit(2);
+      }
+      if (ld.output_to_pipe) {
+       fprintf(stderr, "tethereal: Ring buffer requested, but "
+         "capture file is a pipe.\n");
+       exit(2);
+      }
     }
   }
 #endif
@@ -828,13 +1416,9 @@ main(int argc, char *argv[])
      line that their preferences have changed. */
   prefs_apply_all();
 
-#ifndef HAVE_LIBPCAP
-  if (capture_option_specified)
-    fprintf(stderr, "This version of Tethereal was not built with support for capturing packets.\n");
-#endif
-  if (arg_error) {
-    print_usage(FALSE);
-    exit(1);
+  /* disabled protocols as per configuration file */
+  if (gdp_path == NULL && dp_path == NULL) {
+    set_disabled_protos_list();
   }
 
   /* Build the column format array */
@@ -855,6 +1439,19 @@ main(int argc, char *argv[])
     cfile.cinfo.col_expr_val[i] = (gchar *) g_malloc(sizeof(gchar) * COL_MAX_LEN);
   }
 
+  for (i = 0; i < cfile.cinfo.num_cols; i++) {
+      int j;
+
+      for (j = 0; j < NUM_COL_FMTS; j++) {
+         if (!cfile.cinfo.fmt_matx[i][j])
+             continue;
+         
+         if (cfile.cinfo.col_first[j] == -1)
+             cfile.cinfo.col_first[j] = i;
+         cfile.cinfo.col_last[j] = i;
+      }
+  }
+
 #ifdef HAVE_LIBPCAP
   if (capture_opts.snaplen < 1)
     capture_opts.snaplen = WTAP_MAX_PACKET_SIZE;
@@ -862,22 +1459,53 @@ main(int argc, char *argv[])
     capture_opts.snaplen = MIN_PACKET_SIZE;
 
   /* Check the value range of the ringbuffer_num_files parameter */
-  if (capture_opts.ringbuffer_num_files < RINGBUFFER_MIN_NUM_FILES)
-    capture_opts.ringbuffer_num_files = RINGBUFFER_MIN_NUM_FILES;
-  else if (capture_opts.ringbuffer_num_files > RINGBUFFER_MAX_NUM_FILES)
+  if (capture_opts.ringbuffer_num_files > RINGBUFFER_MAX_NUM_FILES)
     capture_opts.ringbuffer_num_files = RINGBUFFER_MAX_NUM_FILES;
+#if RINGBUFFER_MIN_NUM_FILES > 0
+  else if (capture_opts.ringbuffer_num_files < RINGBUFFER_MIN_NUM_FILES)
+    capture_opts.ringbuffer_num_files = RINGBUFFER_MIN_NUM_FILES;
+#endif
 #endif
 
   if (rfilter != NULL) {
     if (!dfilter_compile(rfilter, &rfcode)) {
       fprintf(stderr, "tethereal: %s\n", dfilter_error_msg);
       epan_cleanup();
+#ifdef HAVE_PCAP_OPEN_DEAD
+      {
+        pcap_t *p;
+
+        p = pcap_open_dead(DLT_EN10MB, MIN_PACKET_SIZE);
+        if (p != NULL) {
+          if (pcap_compile(p, &fcode, rfilter, 0, 0) != -1) {
+            fprintf(stderr,
+              "  Note: That display filter code looks like a valid capture filter;\n"
+              "        maybe you mixed them up?\n");
+          }
+          pcap_close(p);
+        }
+      }
+#endif
       exit(2);
     }
   }
   cfile.rfcode = rfcode;
   if (cf_name) {
-    err = open_cap_file(cf_name, FALSE, &cfile);
+    /*
+     * We're reading a capture file.
+     */
+
+#ifndef _WIN32
+    /*
+     * Immediately relinquish any set-UID or set-GID privileges we have;
+     * we must not be allowed to read any capture files the user running
+     * Tethereal can't open.
+     */
+    setuid(getuid());
+    setgid(getgid());
+#endif
+
+    err = cf_open(cf_name, FALSE, &cfile);
     if (err != 0) {
       epan_cleanup();
       exit(2);
@@ -889,7 +1517,8 @@ main(int argc, char *argv[])
     }
     cf_name[0] = '\0';
   } else {
-    /* No capture file specified, so we're supposed to do a live capture;
+    /* No capture file specified, so we're supposed to do a live capture
+       (or get a list of link-layer types for a live capture device);
        do we have support for live captures? */
 #ifdef HAVE_LIBPCAP
 
@@ -928,15 +1557,40 @@ main(int argc, char *argv[])
                 }
                 exit(2);
             }
-           if_text = strrchr(if_list->data, ' ');      /* first interface */
-           if (if_text == NULL) {
-               cfile.iface = g_strdup(if_list->data);
-           } else {
-               cfile.iface = g_strdup(if_text + 1); /* Skip over space */
-           }
+           if_info = if_list->data;    /* first interface */
+           cfile.iface = g_strdup(if_info->name);
             free_interface_list(if_list);
         }
     }
+
+    if (list_link_layer_types) {
+      /* We were asked to list the link-layer types for an interface.
+         Get the list of link-layer types for the capture device. */
+      lt_list = get_pcap_linktype_list(cfile.iface, err_str);
+      if (lt_list == NULL) {
+       if (err_str[0] != '\0') {
+         fprintf(stderr, "tethereal: The list of data link types for the capture device could not be obtained (%s).\n"
+           "Please check to make sure you have sufficient permissions, and that\n"
+           "you have the proper interface or pipe specified.\n", err_str);
+       } else
+         fprintf(stderr, "tethereal: The capture device has no data link types.\n");
+       exit(2);
+      }
+      fprintf(stderr, "Data link types (use option -y to set):\n");
+      for (lt_entry = lt_list; lt_entry != NULL;
+          lt_entry = g_list_next(lt_entry)) {
+       data_link_info = lt_entry->data;
+       fprintf(stderr, "  %s", data_link_info->name);
+       if (data_link_info->description != NULL)
+         fprintf(stderr, " (%s)", data_link_info->description);
+       else
+         fprintf(stderr, " (not supported)");
+       putchar('\n');
+      }
+      free_pcap_linktype_list(lt_list);
+      exit(0);
+    }
+
     capture(out_file_type);
 
     if (capture_opts.ringbuffer_on) {
@@ -958,6 +1612,9 @@ main(int argc, char *argv[])
 #ifdef HAVE_LIBPCAP
 /* Do the low-level work of a capture.
    Returns TRUE if it succeeds, FALSE otherwise. */
+
+static condition  *volatile cnd_ring_timeout = NULL; /* this must be visible in wtap_dispatch_cb_write */
+
 static int
 capture(int out_file_type)
 {
@@ -967,7 +1624,7 @@ capture(int out_file_type)
   gchar       lookup_net_err_str[PCAP_ERRBUF_SIZE];
   bpf_u_int32 netnum, netmask;
   struct bpf_program fcode;
-  void        (*oldhandler)(int);
+  const char *set_linktype_err_str;
   int         err = 0;
   int         volatile volatile_err = 0;
   int         volatile inpkts = 0;
@@ -975,8 +1632,8 @@ capture(int out_file_type)
   char        errmsg[1024+1];
   condition  *volatile cnd_stop_capturesize = NULL;
   condition  *volatile cnd_stop_timeout = NULL;
-  condition  *volatile cnd_ring_timeout = NULL;
 #ifndef _WIN32
+  void        (*oldhandler)(int);
   static const char ppamsg[] = "can't find PPA for ";
   char       *libpcap_warn;
   volatile int pipe_fd = -1;
@@ -987,6 +1644,7 @@ capture(int out_file_type)
   struct pcap_stat stats;
   gboolean    write_err;
   gboolean    dump_ok;
+  dfilter_t   *rfcode = NULL;
 
   /* Initialize all data structures used for dissection. */
   init_dissection();
@@ -1002,7 +1660,18 @@ capture(int out_file_type)
   ld.pch = pcap_open_live(cfile.iface, capture_opts.snaplen,
                          capture_opts.promisc_mode, 1000, open_err_str);
 
-  if (ld.pch == NULL) {
+  if (ld.pch != NULL) {
+    /* setting the data link type only works on real interfaces */
+    if (capture_opts.linktype != -1) {
+      set_linktype_err_str = set_pcap_linktype(ld.pch, cfile.iface,
+       capture_opts.linktype);
+      if (set_linktype_err_str != NULL) {
+       snprintf(errmsg, sizeof errmsg, "Unable to set data link type (%s).",
+         set_linktype_err_str);
+       goto error;
+      }
+    }
+  } else {
     /* We couldn't open "cfile.iface" as a network device. */
 #ifdef _WIN32
     /* On Windows, we don't support capturing on pipes, so we give up. */
@@ -1015,8 +1684,10 @@ capture(int out_file_type)
        "The capture session could not be initiated (%s).\n"
        "Please check that you have the proper interface specified.\n"
        "\n"
-       "Note that the driver Tethereal uses for packet capture on Windows doesn't\n"
-       "support capturing on PPP/WAN interfaces in Windows NT/2000/XP/.NET Server.\n",
+       "Note that the WinPcap 2.x version of the driver Ethereal uses for packet\n"
+       "capture on Windows doesn't support capturing on PPP/WAN interfaces in\n"
+       "Windows NT/2000/XP/2003 Server, and that the WinPcap 3.0 and later versions\n"
+       "don't support capturing on PPP/WAN interfaces at all.\n",
        open_err_str);
     goto error;
 #else
@@ -1065,6 +1736,22 @@ capture(int out_file_type)
 #endif
   }
 
+#ifndef _WIN32
+  /*
+   * We've opened the capture device, so, if we're set-UID or set-GID,
+   * relinquish those privileges.
+   *
+   * XXX - if we have saved set-user-ID support, we should give up those
+   * privileges immediately, and then reclaim them long enough to get
+   * a list of network interfaces and to open one, and then give them
+   * up again, so that stuff we do while processing the argument list,
+   * reading the user's preferences, etc. is done as the real user and
+   * group, not the effective user and group.
+   */
+  setuid(getuid());
+  setgid(getgid());
+#endif
+
   if (cfile.cfilter && !ld.from_pipe) {
     /* A capture filter was specified; set it up. */
     if (pcap_lookupnet(cfile.iface, &netnum, &netmask, lookup_net_err_str) < 0) {
@@ -1078,8 +1765,17 @@ capture(int out_file_type)
       netmask = 0;
     }
     if (pcap_compile(ld.pch, &fcode, cfile.cfilter, 1, netmask) < 0) {
-      snprintf(errmsg, sizeof errmsg, "Unable to parse filter string (%s).",
-       pcap_geterr(ld.pch));
+      if (dfilter_compile(cfile.cfilter, &rfcode)) {
+        snprintf(errmsg, sizeof errmsg,
+         "Unable to parse capture filter string (%s).\n"
+          "  Interestingly enough, this looks like a valid display filter\n"
+         "  Are you sure you didn't mix them up?",
+         pcap_geterr(ld.pch));
+      } else {
+        snprintf(errmsg, sizeof errmsg,
+         "Unable to parse capture filter string (%s).",
+         pcap_geterr(ld.pch));
+      }
       goto error;
     }
     if (pcap_setfilter(ld.pch, &fcode) < 0) {
@@ -1125,7 +1821,7 @@ capture(int out_file_type)
 
     if (ld.pdh == NULL) {
       snprintf(errmsg, sizeof errmsg,
-              file_open_error_message(err, TRUE, out_file_type),
+              cf_open_error_message(err, NULL, TRUE, out_file_type),
               *cfile.save_file == '\0' ? "stdout" : cfile.save_file);
       goto error;
     }
@@ -1251,15 +1947,6 @@ capture(int out_file_type)
     } else if (cnd_stop_timeout != NULL && cnd_eval(cnd_stop_timeout)) {
       /* The specified capture time has elapsed; stop the capture. */
       ld.go = FALSE;
-    } else if (cnd_ring_timeout != NULL && cnd_eval(cnd_ring_timeout)) {
-      /* time elasped for this ring file, swith to the next */
-      if (ringbuf_switch_file(&cfile, &ld.pdh, &loop_err)) {
-       /* File switch succeeded: reset the condition */
-       cnd_reset(cnd_ring_timeout);
-      } else {
-       /* File switch failed: stop here */
-       ld.go = FALSE;
-      }
     } else if (inpkts > 0) {
       if (capture_opts.autostop_count != 0 &&
                  ld.packet_count >= capture_opts.autostop_count) {
@@ -1526,6 +2213,7 @@ load_cap_file(capture_file *cf, int out_file_type)
   int          snapshot_length;
   wtap_dumper *pdh;
   int          err;
+  gchar        *err_info;
   int          success;
   cb_args_t    args;
 
@@ -1581,26 +2269,39 @@ load_cap_file(capture_file *cf, int out_file_type)
     args.cf = cf;
     args.pdh = pdh;
     success = wtap_loop(cf->wth, 0, wtap_dispatch_cb_write, (guchar *) &args,
-                       &err);
-
-    /* Now close the capture file. */
-    if (!wtap_dump_close(pdh, &err))
-      show_capture_file_io_error(cfile.save_file, err, TRUE);
+                       &err, &err_info);
   } else {
+    print_preamble(stdout, print_format);
+    if (ferror(stdout)) {
+      err = errno;
+      show_print_file_io_error(err);
+      goto out;
+    }
     args.cf = cf;
     args.pdh = NULL;
     success = wtap_loop(cf->wth, 0, wtap_dispatch_cb_print, (guchar *) &args,
-                       &err);
+                       &err, &err_info);
   }
-  if (!success) {
-    /* Print up a message box noting that the read failed somewhere along
-       the line. */
+  if (success) {
+    if (cf->save_file != NULL) {
+      /* Now close the capture file. */
+      if (!wtap_dump_close(args.pdh, &err))
+        show_capture_file_io_error(cfile.save_file, err, TRUE);
+    } else {
+      print_finale(stdout, print_format);
+      if (ferror(stdout)) {
+        err = errno;
+        show_print_file_io_error(err);
+      }
+    }
+  } else {
+    /* Print a message noting that the read failed somewhere along the line. */
     switch (err) {
 
     case WTAP_ERR_UNSUPPORTED_ENCAP:
       fprintf(stderr,
-"tethereal: \"%s\" is a capture file is for a network type that Tethereal doesn't support.\n",
-       cf->filename);
+"tethereal: \"%s\" is a capture file is for a network type that Tethereal doesn't support.\n(%s)\n",
+       cf->filename, err_info);
       break;
 
     case WTAP_ERR_CANT_READ:
@@ -1617,8 +2318,8 @@ load_cap_file(capture_file *cf, int out_file_type)
 
     case WTAP_ERR_BAD_RECORD:
       fprintf(stderr,
-"tethereal: \"%s\" appears to be damaged or corrupt.\n",
-       cf->filename);
+"tethereal: \"%s\" appears to be damaged or corrupt.\n(%s)\n",
+       cf->filename, err_info);
       break;
 
     default:
@@ -1627,6 +2328,11 @@ load_cap_file(capture_file *cf, int out_file_type)
        cf->filename, wtap_strerror(err));
       break;
     }
+    if (cf->save_file != NULL) {
+      /* Now close the capture file. */
+      if (!wtap_dump_close(args.pdh, &err))
+        show_capture_file_io_error(cfile.save_file, err, TRUE);
+    }
   }
 
 out:
@@ -1645,6 +2351,8 @@ fill_in_fdata(frame_data *fdata, capture_file *cf,
   fdata->pfd = NULL;
   fdata->num = cf->count;
   fdata->pkt_len = phdr->len;
+  cum_bytes += phdr->len;
+  fdata->cum_bytes  = cum_bytes;
   fdata->cap_len = phdr->caplen;
   fdata->file_off = offset;
   fdata->lnk_t = phdr->pkt_encap;
@@ -1654,6 +2362,7 @@ fill_in_fdata(frame_data *fdata, capture_file *cf,
   fdata->flags.encoding = CHAR_ASCII;
   fdata->flags.visited = 0;
   fdata->flags.marked = 0;
+  fdata->flags.ref_time = 0;
 
   /* If we don't have the time stamp of the first packet in the
      capture, it's because this is the first packet.  Save the time
@@ -1713,6 +2422,7 @@ wtap_dispatch_cb_write(guchar *user, const struct wtap_pkthdr *phdr,
   gboolean      passed;
   epan_dissect_t *edt;
 
+#ifdef HAVE_LIBPCAP
 #ifdef SIGINFO
   /*
    * Prevent a SIGINFO handler from writing to stdout while we're
@@ -1721,6 +2431,7 @@ wtap_dispatch_cb_write(guchar *user, const struct wtap_pkthdr *phdr,
    */
   infodelay = TRUE;
 #endif /* SIGINFO */
+#endif /* HAVE_LIBPCAP */
 
   cf->count++;
   if (cf->rfcode) {
@@ -1736,7 +2447,26 @@ wtap_dispatch_cb_write(guchar *user, const struct wtap_pkthdr *phdr,
   if (passed) {
     /* The packet passed the read filter. */
 #ifdef HAVE_LIBPCAP
+    int loop_err;
+
     ld.packet_count++;
+
+    /* The current packet may have arrived after a very long silence,
+     * way past the time to switch files.  In order not to have
+     * the first packet of a new series of events as the last
+     * [or only] packet in the file, switch before writing!
+     */
+    if (cnd_ring_timeout != NULL && cnd_eval(cnd_ring_timeout)) {
+      /* time elasped for this ring file, switch to the next */
+      if (ringbuf_switch_file(&cfile, &ld.pdh, &loop_err)) {
+       /* File switch succeeded: reset the condition */
+       cnd_reset(cnd_ring_timeout);
+      } else {
+       /* File switch failed: stop here */
+       /* XXX - we should do something with "loop_err" */
+       ld.go = FALSE;
+      }
+    }
 #endif
     if (!wtap_dump(pdh, phdr, pseudo_header, buf, &err)) {
 #ifdef HAVE_LIBPCAP
@@ -1760,6 +2490,7 @@ wtap_dispatch_cb_write(guchar *user, const struct wtap_pkthdr *phdr,
   if (cf->rfcode)
     clear_fdata(&fdata);
 
+#ifdef HAVE_LIBPCAP
 #ifdef SIGINFO
   /*
    * Allow SIGINFO handlers to write.
@@ -1772,6 +2503,7 @@ wtap_dispatch_cb_write(guchar *user, const struct wtap_pkthdr *phdr,
   if (infoprint)
     report_counts();
 #endif /* SIGINFO */
+#endif /* HAVE_LIBPCAP */
 }
 
 static void
@@ -1874,14 +2606,17 @@ wtap_dispatch_cb_print(guchar *user, const struct wtap_pkthdr *phdr,
 #ifdef HAVE_LIBPCAP
     ld.packet_count++;
 #endif
+    print_args.to_file = TRUE;
+    print_args.format = print_format;
+    print_args.print_summary = !verbose;
+    print_args.print_hex = print_hex;
+    print_args.print_dissections = print_dissections_expanded;
+
+    /* init the packet range */
+    packet_range_init(&print_args.range);
+
     if (verbose) {
       /* Print the information in the protocol tree. */
-      print_args.to_file = TRUE;
-      print_args.format = PR_FMT_TEXT;
-      print_args.print_summary = FALSE;
-      print_args.print_hex = print_hex;
-      print_args.expand_all = TRUE;
-      print_args.suppress_unmarked = FALSE;
       proto_tree_print(&print_args, edt, stdout);
       if (!print_hex) {
         /* "print_hex_data()" will put out a leading blank line, as well
@@ -2101,107 +2836,163 @@ wtap_dispatch_cb_print(guchar *user, const struct wtap_pkthdr *phdr,
   if (line_buffered)
     fflush(stdout);
 
+  if (ferror(stdout)) {
+    show_print_file_io_error(errno);
+    exit(2);
+  }
   epan_dissect_free(edt);
 
   clear_fdata(&fdata);
 }
 
-char *
-file_open_error_message(int err, gboolean for_writing, int file_type)
+static void
+show_print_file_io_error(int err)
 {
-  char *errmsg;
-  static char errmsg_errno[1024+1];
-
   switch (err) {
 
-  case WTAP_ERR_NOT_REGULAR_FILE:
-    errmsg = "The file \"%s\" is a \"special file\" or socket or other non-regular file.";
+  case ENOSPC:
+    fprintf(stderr,
+"tethereal: Not all the packets could be printed because there is "
+"no space left on the file system.\n");
     break;
 
-  case WTAP_ERR_FILE_UNKNOWN_FORMAT:
-  case WTAP_ERR_UNSUPPORTED:
-    /* Seen only when opening a capture file for reading. */
-    errmsg = "The file \"%s\" is not a capture file in a format Tethereal understands.";
-    break;
+#ifdef EDQUOT
+  case EDQUOT:
+    fprintf(stderr,
+"tethereal: Not all the packets could be printed because you are "
+"too close to, or over your disk quota.\n");
+  break;
+#endif
 
-  case WTAP_ERR_CANT_WRITE_TO_PIPE:
-    /* Seen only when opening a capture file for writing. */
-    snprintf(errmsg_errno, sizeof(errmsg_errno),
-            "The file \"%%s\" is a pipe, and %s capture files cannot be "
-            "written to a pipe.", wtap_file_type_string(file_type));
-    errmsg = errmsg_errno;
+  default:
+    fprintf(stderr,
+"tethereal: An error occurred while printing packets: %s.\n",
+      strerror(err));
     break;
+  }
+}
 
-  case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
-    /* Seen only when opening a capture file for writing. */
-    errmsg = "Tethereal does not support writing capture files in that format.";
-    break;
+static char *
+cf_open_error_message(int err, gchar *err_info, gboolean for_writing,
+                      int file_type)
+{
+  char *errmsg;
+  static char errmsg_errno[1024+1];
 
-  case WTAP_ERR_UNSUPPORTED_ENCAP:
-  case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
-    if (for_writing)
-      errmsg = "Tethereal cannot save this capture in that format.";
-    else
-      errmsg = "The file \"%s\" is a capture for a network type that Tethereal doesn't support.";
-    break;
+  if (err < 0) {
+    /* Wiretap error. */
+    switch (err) {
 
-  case WTAP_ERR_BAD_RECORD:
-    errmsg = "The file \"%s\" appears to be damaged or corrupt.";
-    break;
+    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_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_FILE_UNKNOWN_FORMAT:
+      /* Seen only when opening a capture file for reading. */
+      errmsg = "The file \"%s\" is not a capture file in a format Tethereal understands.";
+      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_UNSUPPORTED:
+      /* Seen only when opening a capture file for reading. */
+      snprintf(errmsg_errno, sizeof(errmsg_errno),
+               "The file \"%%s\" is not a capture file in a format Tethereal understands.\n"
+               "(%s)", err_info);
+      g_free(err_info);
+      errmsg = errmsg_errno;
+      break;
 
-  case WTAP_ERR_SHORT_WRITE:
-    errmsg = "A full header couldn't be written to the file \"%s\".";
-    break;
+    case WTAP_ERR_CANT_WRITE_TO_PIPE:
+      /* Seen only when opening a capture file for writing. */
+      snprintf(errmsg_errno, sizeof(errmsg_errno),
+              "The file \"%%s\" is a pipe, and %s capture files cannot be "
+              "written to a pipe.", wtap_file_type_string(file_type));
+      errmsg = errmsg_errno;
+      break;
 
-  case ENOENT:
-    if (for_writing)
-      errmsg = "The path to the file \"%s\" does not exist.";
-    else
-      errmsg = "The file \"%s\" does not exist.";
-    break;
+    case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
+      /* Seen only when opening a capture file for writing. */
+      errmsg = "Tethereal does not support writing capture files in that format.";
+      break;
 
-  case EACCES:
-    if (for_writing)
-      errmsg = "You do not have permission to create or write to the file \"%s\".";
-    else
-      errmsg = "You do not have permission to read the file \"%s\".";
-    break;
+    case WTAP_ERR_UNSUPPORTED_ENCAP:
+      if (for_writing)
+        errmsg = "Tethereal cannot save this capture in that format.";
+      else {
+        snprintf(errmsg_errno, sizeof(errmsg_errno),
+                 "The file \"%%s\" is a capture for a network type that Tethereal doesn't support.\n"
+                 "(%s)", err_info);
+        g_free(err_info);
+        errmsg = errmsg_errno;
+      }
+      break;
 
-  case EISDIR:
-    errmsg = "\"%s\" is a directory (folder), not a file.";
-    break;
+    case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
+      if (for_writing)
+        errmsg = "Tethereal cannot save this capture in that format.";
+      else
+        errmsg = "The file \"%s\" is a capture for a network type that Tethereal doesn't support.";
+      break;
 
-  default:
-    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;
-  }
+    case WTAP_ERR_BAD_RECORD:
+      /* Seen only when opening a capture file for reading. */
+      snprintf(errmsg_errno, sizeof(errmsg_errno),
+               "The file \"%%s\" appears to be damaged or corrupt.\n"
+               "(%s)", err_info);
+      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;
+
+    default:
+      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;
 }
 
+/*
+ * Open/create errors are reported with an console message in Tethereal.
+ */
+static void
+open_failure_message(const char *filename, int err, gboolean for_writing)
+{
+  char *errmsg;
+
+  errmsg = g_strdup_printf(file_open_error_message(err, for_writing), filename);
+  fprintf(stderr, "tethereal: %s\n", errmsg);
+  g_free(errmsg);
+}
+
 int
-open_cap_file(char *fname, gboolean is_tempfile, capture_file *cf)
+cf_open(char *fname, gboolean is_tempfile, capture_file *cf)
 {
   wtap       *wth;
   int         err;
+  gchar       *err_info;
   char        err_msg[2048+1];
 
-  wth = wtap_open_offline(fname, &err, FALSE);
+  wth = wtap_open_offline(fname, &err, &err_info, FALSE);
   if (wth == NULL)
     goto fail;
 
@@ -2238,20 +3029,19 @@ open_cap_file(char *fname, gboolean is_tempfile, capture_file *cf)
     cf->snap = WTAP_MAX_PACKET_SIZE;
   } else
     cf->has_snap = TRUE;
-  cf->progbar_quantum = 0;
-  cf->progbar_nextstep = 0;
   firstsec = 0, firstusec = 0;
   prevsec = 0, prevusec = 0;
 
   return (0);
 
 fail:
-  snprintf(err_msg, sizeof err_msg, file_open_error_message(err, FALSE, 0),
-          fname);
+  snprintf(err_msg, sizeof err_msg,
+           cf_open_error_message(err, err_info, FALSE, 0), fname);
   fprintf(stderr, "tethereal: %s\n", err_msg);
   return (err);
 }
 
+#ifdef HAVE_LIBPCAP
 #ifndef _WIN32
 /* Take care of byte order in the libpcap headers read from pipes.
  * (function taken from wiretap/libpcap.c) */
@@ -2536,4 +3326,15 @@ pipe_dispatch(int fd, loop_data *ld, struct pcap_hdr *hdr,
   /* Return here rather than inside the switch to prevent GCC warning */
   return -1;
 }
-#endif
+#endif /* _WIN32 */
+#endif /* HAVE_LIBPCAP */
+
+/*
+ * Read errors are reported with an console message in Tethereal.
+ */
+static void
+read_failure_message(const char *filename, int err)
+{
+  fprintf(stderr, "tethereal: An error occurred while reading from the file \"%s\": %s.",
+          filename, strerror(err));
+}