Make Content-Length and Max-Forwards fields uints
[obnox/wireshark/wip.git] / file.c
diff --git a/file.c b/file.c
index c4b6a0c570bcd34e419b79a31d4532a330089124..1ac3d070cb3b82e91a546526a241412b09978165 100644 (file)
--- a/file.c
+++ b/file.c
@@ -3,8 +3,8 @@
  *
  * $Id$
  *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@ethereal.com>
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
  * This program is free software; you can redistribute it and/or
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
-/* With MSVC and a libethereal.dll this file needs to import some variables 
-   in a special way. Therefore _NEED_VAR_IMPORT_ is defined. */
-#define _NEED_VAR_IMPORT_
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
 #include <time.h>
 
-#ifdef HAVE_IO_H
-#include <io.h>
-#endif
-
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
 #include <errno.h>
 #include <signal.h>
 
-#ifdef HAVE_SYS_STAT_H
-#include <sys/stat.h>
-#endif
-
 #ifdef HAVE_FCNTL_H
 #include <fcntl.h>
 #endif
 
-#ifdef NEED_SNPRINTF_H
-# include "snprintf.h"
-#endif
-
 #ifdef NEED_STRERROR_H
 #include "strerror.h"
 #endif
 #include "packet-range.h"
 #include "print.h"
 #include "file.h"
-#include "menu.h"
-#include "util.h"
+#include "fileset.h"
+#include "tempfile.h"
+#include "merge.h"
 #include "alert_box.h"
 #include "simple_dialog.h"
 #include "progress_dlg.h"
 #include "ui_util.h"
-#include "statusbar.h"
 #include <epan/prefs.h>
 #include <epan/dfilter/dfilter.h>
 #include <epan/conversation.h>
-#include "globals.h"
 #include <epan/epan_dissect.h>
 #include <epan/tap.h>
+#include "stat_menu.h"
 #include "tap_dfilter_dlg.h"
 #include <epan/dissectors/packet-data.h>
+#include <epan/timestamp.h>
+#include "file_util.h"
+
 
-/* Win32 needs the O_BINARY flag for open() */
-#ifndef O_BINARY
-#define O_BINARY       0
-#endif
 
 #ifdef HAVE_LIBPCAP
 gboolean auto_scroll_live;
 #endif
 
-static guint32 firstsec, firstusec;
-static guint32 prevsec, prevusec;
+static nstime_t first_ts;
+static nstime_t prev_ts;
 static guint32 cum_bytes = 0;
 
+static void cf_reset_state(capture_file *cf);
+
 static void read_packet(capture_file *cf, long offset);
 
 static void rescan_packets(capture_file *cf, const char *action, const char *action_item,
@@ -129,10 +114,10 @@ static gboolean find_packet(capture_file *cf,
 static void cf_open_failure_alert_box(const char *filename, int err,
                                      gchar *err_info, gboolean for_writing,
                                      int file_type);
-static char *file_rename_error_message(int err);
+static const char *file_rename_error_message(int err);
 static void cf_write_failure_alert_box(const char *filename, int err);
 static void cf_close_failure_alert_box(const char *filename, int err);
-static   gboolean copy_binary_file(char *from_filename, char *to_filename);
+static   gboolean copy_binary_file(const char *from_filename, const char *to_filename);
 
 /* Update the progress bar this many times when reading a file. */
 #define N_PROGBAR_UPDATES      100
@@ -142,30 +127,95 @@ static   gboolean copy_binary_file(char *from_filename, char *to_filename);
 #define        FRAME_DATA_CHUNK_SIZE   1024
 
 
-int
-cf_open(char *fname, gboolean is_tempfile, capture_file *cf)
+/* one callback for now, we could have a list later */
+static cf_callback_t cf_cb = NULL;
+static gpointer cf_cb_user_data = NULL;
+
+void
+cf_callback_invoke(int event, gpointer data)
+{
+    g_assert(cf_cb != NULL);
+    cf_cb(event, data, cf_cb_user_data);
+}
+
+
+void
+cf_callback_add(cf_callback_t func, gpointer user_data)
+{
+    /* More than one callback listener is currently not implemented,
+       but should be easy to do. */
+    g_assert(cf_cb == NULL);
+    cf_cb = func;
+    cf_cb_user_data = user_data;
+}
+
+void
+cf_callback_remove(cf_callback_t func _U_)
+{
+    g_assert(cf_cb != NULL);
+    cf_cb = NULL;
+    cf_cb_user_data = NULL;
+}
+
+void
+cf_timestamp_auto_precision(capture_file *cf)
+{
+       int prec = timestamp_get_precision();
+
+
+       /* don't try to get the file's precision if none is opened */
+       if(cf->state == FILE_CLOSED) {
+               return;
+       }
+
+       /* if we are in auto mode, set precision of current file */
+       if(prec == TS_PREC_AUTO ||
+         prec == TS_PREC_AUTO_SEC ||
+         prec == TS_PREC_AUTO_DSEC ||
+         prec == TS_PREC_AUTO_CSEC ||
+         prec == TS_PREC_AUTO_MSEC ||
+         prec == TS_PREC_AUTO_USEC ||
+         prec == TS_PREC_AUTO_NSEC)
+       {
+               switch(wtap_file_tsprecision(cf->wth)) {
+               case(WTAP_FILE_TSPREC_SEC):
+                       timestamp_set_precision(TS_PREC_AUTO_SEC);
+                       break;
+               case(WTAP_FILE_TSPREC_DSEC):
+                       timestamp_set_precision(TS_PREC_AUTO_DSEC);
+                       break;
+               case(WTAP_FILE_TSPREC_CSEC):
+                       timestamp_set_precision(TS_PREC_AUTO_CSEC);
+                       break;
+               case(WTAP_FILE_TSPREC_MSEC):
+                       timestamp_set_precision(TS_PREC_AUTO_MSEC);
+                       break;
+               case(WTAP_FILE_TSPREC_USEC):
+                       timestamp_set_precision(TS_PREC_AUTO_USEC);
+                       break;
+               case(WTAP_FILE_TSPREC_NSEC):
+                       timestamp_set_precision(TS_PREC_AUTO_NSEC);
+                       break;
+               default:
+                       g_assert_not_reached();
+               }
+       }
+}
+
+
+cf_status_t
+cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err)
 {
   wtap       *wth;
-  int         err;
   gchar       *err_info;
-  int         fd;
-  struct stat cf_stat;
 
-  wth = wtap_open_offline(fname, &err, &err_info, TRUE);
+  wth = wtap_open_offline(fname, err, &err_info, TRUE);
   if (wth == NULL)
     goto fail;
 
-  /* Find the size of the file. */
-  fd = wtap_fd(wth);
-  if (fstat(fd, &cf_stat) < 0) {
-    err = errno;
-    wtap_close(wth);
-    goto fail;
-  }
-
   /* The open succeeded.  Close whatever capture file we had open,
      and fill in the information for this file. */
-  cf_close(cf);
+  cf_reset_state(cf);
 
   /* Initialize all data structures used for dissection. */
   init_dissection();
@@ -174,8 +224,7 @@ cf_open(char *fname, gboolean is_tempfile, capture_file *cf)
   cf->state = FILE_READ_IN_PROGRESS;
 
   cf->wth = wth;
-  cf->filed = fd;
-  cf->f_len = cf_stat.st_size;
+  cf->f_datalen = 0;
 
   /* Set the file name because we need it to set the follow stream filter.
      XXX - is that still true?  We need it for other reasons, though,
@@ -188,14 +237,12 @@ cf_open(char *fname, gboolean is_tempfile, capture_file *cf)
   /* If it's a temporary capture buffer file, mark it as not saved. */
   cf->user_saved = !is_tempfile;
 
-  cf->cd_t      = wtap_file_type(cf->wth);
+  cf->cd_t        = wtap_file_type(cf->wth);
   cf->count     = 0;
   cf->displayed_count = 0;
   cf->marked_count = 0;
   cf->drops_known = FALSE;
   cf->drops     = 0;
-  cf->esec      = 0;
-  cf->eusec     = 0;
   cf->snap      = wtap_snapshot_length(cf->wth);
   if (cf->snap == 0) {
     /* Snapshot length not known. */
@@ -203,8 +250,9 @@ cf_open(char *fname, gboolean is_tempfile, capture_file *cf)
     cf->snap = WTAP_MAX_PACKET_SIZE;
   } else
     cf->has_snap = TRUE;
-  firstsec = 0, firstusec = 0;
-  prevsec = 0, prevusec = 0;
+  nstime_set_zero(&cf->elapsed_time);
+  nstime_set_zero(&first_ts);
+  nstime_set_zero(&prev_ts);
 
   cf->plist_chunk = g_mem_chunk_new("frame_data_chunk",
        sizeof(frame_data),
@@ -212,24 +260,32 @@ cf_open(char *fname, gboolean is_tempfile, capture_file *cf)
        G_ALLOC_AND_FREE);
   g_assert(cf->plist_chunk);
 
-  return (0);
+  /* change the time formats now, as we might have a new precision */
+  cf_change_time_formats(cf);
+
+  fileset_file_opened(fname);
+
+  return CF_OK;
 
 fail:
-  cf_open_failure_alert_box(fname, err, err_info, FALSE, 0);
-  return (err);
+  cf_open_failure_alert_box(fname, *err, err_info, FALSE, 0);
+  return CF_ERROR;
 }
 
-/* Reset everything to a pristine state */
-void
-cf_close(capture_file *cf)
+
+/*
+ * Reset the state for the currently closed file, but don't do the
+ * UI callbacks; this is for use in "cf_open()", where we don't
+ * want the UI to go from "file open" to "file closed" back to
+ * "file open", we want it to go from "old file open" to "new file
+ * open and being read".
+ */
+static void
+cf_reset_state(capture_file *cf)
 {
   /* Die if we're in the middle of reading a file. */
   g_assert(cf->state != FILE_READ_IN_PROGRESS);
 
-  /* Destroy all windows, which refer to the
-     capture file we're closing. */
-  destroy_cfile_wins();
-
   if (cf->wth) {
     wtap_close(cf->wth);
     cf->wth = NULL;
@@ -238,7 +294,7 @@ cf_close(capture_file *cf)
   if (cf->filename != NULL) {
     /* If it's a temporary file, remove it. */
     if (cf->is_tempfile)
-      unlink(cf->filename);
+      eth_unlink(cf->filename);
     g_free(cf->filename);
     cf->filename = NULL;
   }
@@ -255,7 +311,7 @@ cf_close(capture_file *cf)
   }
   cf->plist = NULL;
   cf->plist_end = NULL;
-  unselect_packet(cf); /* nothing to select */
+  cf_unselect_packet(cf);      /* nothing to select */
   cf->first_displayed = NULL;
   cf->last_displayed = NULL;
 
@@ -268,121 +324,78 @@ cf_close(capture_file *cf)
   packet_list_clear();
   packet_list_thaw();
 
-  cf->f_len = 0;
+  cf->f_datalen = 0;
   cf->count = 0;
-  cf->esec  = 0;
-  cf->eusec = 0;
-
-  /* Clear any file-related status bar messages.
-     XXX - should be "clear *ALL* file-related status bar messages;
-     will there ever be more than one on the stack? */
-  statusbar_pop_file_msg();
-
-  /* Restore the standard title bar message. */
-  set_main_window_name("The Ethereal Network Analyzer");
-
-  /* Disable all menu items that make sense only if you have a capture. */
-  set_menus_for_capture_file(FALSE);
-  set_menus_for_unsaved_capture_file(FALSE);
-  set_menus_for_captured_packets(FALSE);
-  set_menus_for_selected_packet(cf);
-  set_menus_for_capture_in_progress(FALSE);
-  set_menus_for_selected_tree_row(cf);
+  nstime_set_zero(&cf->elapsed_time);
 
   reset_tap_listeners();
 
   /* We have no file open. */
   cf->state = FILE_CLOSED;
+
+  fileset_file_closed();
 }
 
-/* Set the file name in the status line, in the name for the main window,
-   and in the name for the main window's icon. */
-static void
-set_display_filename(capture_file *cf)
-{
-  gchar  *name_ptr;
-  size_t  msg_len;
-  static const gchar done_fmt_nodrops[] = " File: %s %s %02u:%02u:%02u";
-  static const gchar done_fmt_drops[] = " File: %s %s %02u:%02u:%02u Drops: %u";
-  gchar  *done_msg;
-  gchar  *win_name_fmt = "%s - Ethereal";
-  gchar  *win_name;
-  gchar  *size_str;
-
-  name_ptr = cf_get_display_name(cf);
-       
-  if (!cf->is_tempfile) {
-    /* Add this filename to the list of recent files in the "Recent Files" submenu */
-    add_menu_recent_capture_file(cf->filename);
-  }
+/* Reset everything to a pristine state */
+void
+cf_close(capture_file *cf)
+{
+  /* do GUI things even if file is already closed,
+   * e.g. to cleanup things if a capture couldn't be started */
+  cf_callback_invoke(cf_cb_file_closing, cf);
 
-  if (cf->f_len/1024/1024 > 10) {
-    size_str = g_strdup_printf("%ld MB", cf->f_len/1024/1024);
-  } else if (cf->f_len/1024 > 10) {
-    size_str = g_strdup_printf("%ld KB", cf->f_len/1024);
-  } else {
-    size_str = g_strdup_printf("%ld bytes", cf->f_len);
-  }
+  /* close things, if not already closed before */
+  if(cf->state != FILE_CLOSED) {
 
-  if (cf->drops_known) {
-    done_msg = g_strdup_printf(done_fmt_drops, name_ptr, size_str, 
-        cf->esec/3600, cf->esec%3600/60, cf->esec%60, cf->drops);
-  } else {
-    done_msg = g_strdup_printf(done_fmt_nodrops, name_ptr, size_str,
-        cf->esec/3600, cf->esec%3600/60, cf->esec%60);
+         cf_reset_state(cf);
+
+         cleanup_dissection();
   }
-  statusbar_push_file_msg(done_msg);
-  g_free(done_msg);
 
-  msg_len = strlen(name_ptr) + strlen(win_name_fmt) + 1;
-  win_name = g_malloc(msg_len);
-  snprintf(win_name, msg_len, win_name_fmt, name_ptr);
-  set_main_window_name(win_name);
-  g_free(win_name);
+  cf_callback_invoke(cf_cb_file_closed, cf);
 }
 
-read_status_t
+cf_read_status_t
 cf_read(capture_file *cf)
 {
-  int        err;
-  gchar      *err_info;
-  gchar      *name_ptr, *load_msg, *load_fmt = "%s";
-  char       *errmsg;
-  char        errmsg_errno[1024+1];
-  gchar       err_str[2048+1];
-  long        data_offset;
-  progdlg_t  *progbar = NULL;
-  gboolean    stop_flag;
-  /*
-   * XXX - should be "off_t", but Wiretap would need more work to handle
-   * the full size of "off_t" on platforms where it's more than a "long"
-   * as well.
-   */
-  long        file_pos;
-  float       prog_val;
-  int         fd;
-  struct stat cf_stat;
-  GTimeVal    start_time;
-  gchar       status_str[100];
-  int         progbar_nextstep;
-  int         progbar_quantum;
+  int         err;
+  gchar       *err_info;
+  const gchar *name_ptr;
+  const char  *errmsg;
+  char         errmsg_errno[1024+1];
+  gchar        err_str[2048+1];
+  long         data_offset;
+  progdlg_t   *progbar = NULL;
+  gboolean     stop_flag;
+  gint64       size, file_pos;
+  float        progbar_val;
+  GTimeVal     start_time;
+  gchar        status_str[100];
+  gint64       progbar_nextstep;
+  gint64       progbar_quantum;
 
   cum_bytes=0;
+
   reset_tap_listeners();
   tap_dfilter_dlg_update();
-  name_ptr = get_basename(cf->filename);
 
-  load_msg = g_strdup_printf(" Loading: %s", name_ptr);
-  statusbar_push_file_msg(load_msg);
-  g_free(load_msg);
+  cf_callback_invoke(cf_cb_file_read_start, cf);
 
-  load_msg = g_strdup_printf(load_fmt, name_ptr);
+  name_ptr = get_basename(cf->filename);
+
+  /* Find the size of the file. */
+  size = wtap_file_size(cf->wth, NULL);
 
   /* Update the progress bar when it gets to this value. */
   progbar_nextstep = 0;
   /* When we reach the value that triggers a progress bar update,
      bump that value by this amount. */
-  progbar_quantum = cf->f_len/N_PROGBAR_UPDATES;
+  if (size >= 0)
+    progbar_quantum = size/N_PROGBAR_UPDATES;
+  else
+    progbar_quantum = 0;
+  /* Progress so far. */
+  progbar_val = 0.0;
 
   packet_list_freeze();
 
@@ -390,61 +403,62 @@ cf_read(capture_file *cf)
   g_get_current_time(&start_time);
 
   while ((wtap_read(cf->wth, &err, &err_info, &data_offset))) {
-    /* Update the progress bar, but do it only N_PROGBAR_UPDATES times;
-       when we update it, we have to run the GTK+ main loop to get it
-       to repaint what's pending, and doing so may involve an "ioctl()"
-       to see if there's any pending input from an X server, and doing
-       that for every packet can be costly, especially on a big file. */
-    if (data_offset >= progbar_nextstep) {
-        file_pos = lseek(cf->filed, 0, SEEK_CUR);
-        prog_val = (gfloat) file_pos / (gfloat) cf->f_len;
-        if (prog_val > 1.0) {
-          /* The file probably grew while we were reading it.
-             Update "cf->f_len", and try again. */
-          fd = wtap_fd(cf->wth);
-          if (fstat(fd, &cf_stat) >= 0) {
-            cf->f_len = cf_stat.st_size;
-            prog_val = (gfloat) file_pos / (gfloat) cf->f_len;
+    if (size >= 0) {
+      /* Create the progress bar if necessary.
+         We check on every iteration of the loop, so that it takes no
+         longer than the standard time to create it (otherwise, for a
+         large file, we might take considerably longer than that standard
+         time in order to get to the next progress bar step). */
+      if (progbar == NULL) {
+        progbar = delayed_create_progress_dlg("Loading", name_ptr,
+          TRUE, &stop_flag, &start_time, progbar_val);
+      }
+
+      /* Update the progress bar, but do it only N_PROGBAR_UPDATES times;
+         when we update it, we have to run the GTK+ main loop to get it
+         to repaint what's pending, and doing so may involve an "ioctl()"
+         to see if there's any pending input from an X server, and doing
+         that for every packet can be costly, especially on a big file. */
+      if (data_offset >= progbar_nextstep) {
+          file_pos = wtap_read_so_far(cf->wth, NULL);
+          progbar_val = (gfloat) file_pos / (gfloat) size;
+          if (progbar_val > 1.0) {
+            /* The file probably grew while we were reading it.
+               Update file size, and try again. */
+            size = wtap_file_size(cf->wth, NULL);
+            if (size >= 0)
+              progbar_val = (gfloat) file_pos / (gfloat) size;
+            /* If it's still > 1, either "wtap_file_size()" failed (in which
+               case there's not much we can do about it), or the file
+               *shrank* (in which case there's not much we can do about
+               it); just clip the progress value at 1.0. */
+            if (progbar_val > 1.0)
+              progbar_val = 1.0;
           }
-          /* If it's still > 1, either the "fstat()" failed (in which
-             case there's not much we can do about it), or the file
-             *shrank* (in which case there's not much we can do about
-             it); just clip the progress value at 1.0. */
-          if (prog_val > 1.0)
-            prog_val = 1.0;
-        }
-        if (progbar == NULL) {
-          /* Create the progress bar if necessary */
-          progbar = delayed_create_progress_dlg("Loading", load_msg,
-            &stop_flag, &start_time, prog_val);
-          if (progbar != NULL)
-            g_free(load_msg);
-        }
-        if (progbar != NULL) {
-          g_snprintf(status_str, sizeof(status_str),
-                     "%luKB of %luKB", file_pos / 1024, cf->f_len / 1024);
-          update_progress_dlg(progbar, prog_val, status_str);
-        }
-        progbar_nextstep += progbar_quantum;
+          if (progbar != NULL) {
+            g_snprintf(status_str, sizeof(status_str),
+                       "%" PRId64 "KB of %" PRId64 "KB",
+                       file_pos / 1024, size / 1024);
+            update_progress_dlg(progbar, progbar_val, status_str);
+          }
+         progbar_nextstep += progbar_quantum;
+      }
     }
 
     if (stop_flag) {
-      /* Well, the user decided to abort the read.  Destroy the progress
-         bar, close the capture file, and return READ_ABORTED so our caller
-        can do whatever is appropriate when that happens. */
-      destroy_progress_dlg(progbar);
-      cf->state = FILE_READ_ABORTED;   /* so that we're allowed to close it */
-      packet_list_thaw();              /* undo our freeze */
-      cf_close(cf);
-      return (READ_ABORTED);
+      /* Well, the user decided to abort the read. He/She will be warned and
+         it might be enough for him/her to work with the already loaded
+         packets.
+         This is especially true for very large capture files, where you don't
+         want to wait loading the whole file (which may last minutes or even
+         hours even on fast machines) just to see that it was the wrong file. */
+      break;
     }
     read_packet(cf, data_offset);
   }
 
   /* We're done reading the file; destroy the progress bar if it was created. */
-  if (progbar == NULL)
-    g_free(load_msg);
-  else
+  if (progbar != NULL)
     destroy_progress_dlg(progbar);
 
   /* We're done reading sequentially through the file. */
@@ -466,22 +480,25 @@ cf_read(capture_file *cf)
   cf->current_frame = cf->first_displayed;
   packet_list_thaw();
 
-  statusbar_pop_file_msg();
-  set_display_filename(cf);
-
-  /* Enable menu items that make sense if you have a capture file you've
-     finished reading. */
-  set_menus_for_capture_file(TRUE);
-  set_menus_for_unsaved_capture_file(!cf->user_saved);
-
-  /* Enable menu items that make sense if you have some captured packets. */
-  set_menus_for_captured_packets(TRUE);
+  cf_callback_invoke(cf_cb_file_read_finished, cf);
 
   /* If we have any displayed packets to select, select the first of those
      packets by making the first row the selected row. */
   if (cf->first_displayed != NULL)
     packet_list_select_row(0);
 
+  if(stop_flag) {
+    simple_dialog(ESD_TYPE_WARN, ESD_BTN_OK,
+          "%sFile loading was cancelled!%s\n"
+          "\n"
+                 "The remaining packets in the file were discarded.\n"
+          "\n"
+          "As a lot of packets from the original file will be missing,\n"
+                 "remember to be careful when saving the current content to a file.\n",
+          simple_dialog_primary_start(), simple_dialog_primary_end());
+    return CF_READ_ERROR;
+  }
+
   if (err != 0) {
     /* Put up a message box noting that the read failed somewhere along
        the line.  Don't throw out the stuff we managed to read, though,
@@ -489,14 +506,15 @@ cf_read(capture_file *cf)
     switch (err) {
 
     case WTAP_ERR_UNSUPPORTED_ENCAP:
-      snprintf(errmsg_errno, sizeof(errmsg_errno),
-               "The capture file has a packet with a network type that Ethereal doesn't support.\n(%s)",
+      g_snprintf(errmsg_errno, sizeof(errmsg_errno),
+               "The capture file has a packet with a network type that Wireshark doesn't support.\n(%s)",
                err_info);
+      g_free(err_info);
       errmsg = errmsg_errno;
       break;
 
     case WTAP_ERR_CANT_READ:
-      errmsg = "An attempt to read from the file failed for"
+      errmsg = "An attempt to read from the capture file failed for"
                " some unknown reason.";
       break;
 
@@ -506,53 +524,38 @@ cf_read(capture_file *cf)
       break;
 
     case WTAP_ERR_BAD_RECORD:
-      snprintf(errmsg_errno, sizeof(errmsg_errno),
+      g_snprintf(errmsg_errno, sizeof(errmsg_errno),
                "The capture file appears to be damaged or corrupt.\n(%s)",
                err_info);
+      g_free(err_info);
       errmsg = errmsg_errno;
       break;
 
     default:
-      snprintf(errmsg_errno, sizeof(errmsg_errno),
+      g_snprintf(errmsg_errno, sizeof(errmsg_errno),
               "An error occurred while reading the"
               " capture file: %s.", wtap_strerror(err));
       errmsg = errmsg_errno;
       break;
     }
-    snprintf(err_str, sizeof err_str, errmsg);
+    g_snprintf(err_str, sizeof err_str, errmsg);
     simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, err_str);
-    return (READ_ERROR);
+    return CF_READ_ERROR;
   } else
-    return (READ_SUCCESS);
+    return CF_READ_OK;
 }
 
 #ifdef HAVE_LIBPCAP
-int
-cf_start_tail(char *fname, gboolean is_tempfile, capture_file *cf)
+cf_status_t
+cf_start_tail(capture_file *cf, const char *fname, gboolean is_tempfile, int *err)
 {
-  int     err;
-  gchar *capture_msg;
-
-  err = cf_open(fname, is_tempfile, cf);
-  if (err == 0) {
-    /* Disable menu items that make no sense if you're currently running
-       a capture. */
-    set_menus_for_capture_in_progress(TRUE);
-
-    /* Enable menu items that make sense if you have some captured
-       packets (yes, I know, we don't have any *yet*). */
-    set_menus_for_captured_packets(TRUE);
+  cf_status_t cf_status;
 
-    capture_msg = g_strdup_printf(" %s: <live capture in progress>", cf->iface);
-
-    statusbar_push_file_msg(capture_msg);
-
-    g_free(capture_msg);
-  }
-  return err;
+  cf_status = cf_open(cf, fname, is_tempfile, err);
+  return cf_status;
 }
 
-read_status_t
+cf_read_status_t
 cf_continue_tail(capture_file *cf, int to_read, int *err)
 {
   long data_offset = 0;
@@ -562,9 +565,11 @@ cf_continue_tail(capture_file *cf, int to_read, int *err)
 
   packet_list_freeze();
 
+  /*g_log(NULL, G_LOG_LEVEL_MESSAGE, "cf_continue_tail: %u new: %u", cf->count, to_read);*/
+
   while (to_read != 0 && (wtap_read(cf->wth, err, &err_info, &data_offset))) {
     if (cf->state == FILE_READ_ABORTED) {
-      /* Well, the user decided to exit Ethereal.  Break out of the
+      /* Well, the user decided to exit Wireshark.  Break out of the
          loop, and let the code below (which is called even if there
         aren't any packets left to read) exit. */
       break;
@@ -573,35 +578,44 @@ cf_continue_tail(capture_file *cf, int to_read, int *err)
     to_read--;
   }
 
-  packet_list_thaw();
+  /*g_log(NULL, G_LOG_LEVEL_MESSAGE, "cf_continue_tail: count %u state: %u err: %u",
+         cf->count, cf->state, *err);*/
 
   /* XXX - this cheats and looks inside the packet list to find the final
      row number. */
   if (auto_scroll_live && cf->plist_end != NULL)
     packet_list_moveto_end();
 
+  packet_list_thaw();
+
   if (cf->state == FILE_READ_ABORTED) {
-    /* Well, the user decided to exit Ethereal.  Return READ_ABORTED
+    /* Well, the user decided to exit Wireshark.  Return CF_READ_ABORTED
        so that our caller can kill off the capture child process;
        this will cause an EOF on the pipe from the child, so
        "cf_finish_tail()" will be called, and it will clean up
        and exit. */
-    return READ_ABORTED;
+    return CF_READ_ABORTED;
   } else if (*err != 0) {
     /* We got an error reading the capture file.
-       XXX - pop up a dialog box? */
-    return (READ_ERROR);
+       XXX - pop up a dialog box instead? */
+       g_warning("Error \"%s\" while reading: \"%s\"\n",
+               wtap_strerror(*err), cf->filename);
+
+    return CF_READ_ERROR;
   } else
-    return (READ_SUCCESS);
+    return CF_READ_OK;
 }
 
-read_status_t
+cf_read_status_t
 cf_finish_tail(capture_file *cf, int *err)
 {
   gchar *err_info;
   long data_offset;
-  int         fd;
-  struct stat cf_stat;
+
+  if(cf->wth == NULL) {
+    cf_close(cf);
+    return CF_READ_ERROR;
+  }
 
   packet_list_freeze();
 
@@ -615,17 +629,18 @@ cf_finish_tail(capture_file *cf, int *err)
     read_packet(cf, data_offset);
   }
 
+  packet_list_thaw();
+
   if (cf->state == FILE_READ_ABORTED) {
     /* Well, the user decided to abort the read.  We're only called
        when the child capture process closes the pipe to us (meaning
        it's probably exited), so we can just close the capture
-       file; we return READ_ABORTED so our caller can do whatever
+       file; we return CF_READ_ABORTED so our caller can do whatever
        is appropriate when that happens. */
     cf_close(cf);
-    return READ_ABORTED;
+    return CF_READ_ABORTED;
   }
 
-  packet_list_thaw();
   if (auto_scroll_live && cf->plist_end != NULL)
     /* XXX - this cheats and looks inside the packet list to find the final
        row number. */
@@ -634,13 +649,6 @@ cf_finish_tail(capture_file *cf, int *err)
   /* We're done reading sequentially through the file. */
   cf->state = FILE_READ_DONE;
 
-  /* we have to update the f_len field */
-  /* Find the size of the file. */
-  fd = wtap_fd(cf->wth);
-  if (fstat(fd, &cf_stat) >= 0) {
-      cf->f_len = cf_stat.st_size;
-  }
-
   /* We're done reading sequentially through the file; close the
      sequential I/O side, to free up memory it requires. */
   wtap_sequential_close(cf->wth);
@@ -655,43 +663,26 @@ cf_finish_tail(capture_file *cf, int *err)
      WTAP_ENCAP_PER_PACKET). */
   cf->lnk_t = wtap_file_encap(cf->wth);
 
-  /* Pop the "<live capture in progress>" message off the status bar. */
-  statusbar_pop_file_msg();
-
-  set_display_filename(cf);
-
-  /* Enable menu items that make sense if you're not currently running
-     a capture. */
-  set_menus_for_capture_in_progress(FALSE);
-
-  /* Enable menu items that make sense if you have a capture file
-     you've finished reading. */
-  set_menus_for_capture_file(TRUE);
-  set_menus_for_unsaved_capture_file(!cf->user_saved);
-
   if (*err != 0) {
     /* We got an error reading the capture file.
        XXX - pop up a dialog box? */
-    return (READ_ERROR);
+    return CF_READ_ERROR;
   } else {
-    return (READ_SUCCESS);
+    return CF_READ_OK;
   }
 }
 #endif /* HAVE_LIBPCAP */
 
-gchar *
+const gchar *
 cf_get_display_name(capture_file *cf)
 {
-  gchar *displayname;
+  const gchar *displayname;
 
   /* Return a name to use in displays */
   if (!cf->is_tempfile) {
     /* Get the last component of the file name, and use that. */
     if (cf->filename){
       displayname = get_basename(cf->filename);
-      
-      /* Add this filename to the list of recent files in the "Recent Files" submenu */
-      add_menu_recent_capture_file(cf->filename);
     } else {
       displayname="(No file)";
     }
@@ -703,26 +694,60 @@ cf_get_display_name(capture_file *cf)
   return displayname;
 }
 
-typedef struct {
-  color_filter_t *colorf;
-  epan_dissect_t *edt;
-} apply_color_filter_args;
+/* XXX - use a macro instead? */
+int
+cf_get_packet_count(capture_file *cf)
+{
+    return cf->count;
+}
 
-/*
- * If no color filter has been applied, apply this one.
- * (The "if no color filter has been applied" is to handle the case where
- * more than one color filter matches the packet.)
- */
-static void
-apply_color_filter(gpointer filter_arg, gpointer argp)
+/* XXX - use a macro instead? */
+void
+cf_set_packet_count(capture_file *cf, int packet_count)
 {
-  color_filter_t *colorf = filter_arg;
-  apply_color_filter_args *args = argp;
+    cf->count = packet_count;
+}
 
-  if (colorf->c_colorfilter != NULL && args->colorf == NULL) {
-    if (dfilter_apply_edt(colorf->c_colorfilter, args->edt))
-      args->colorf = colorf;
-  }
+/* XXX - use a macro instead? */
+gboolean
+cf_is_tempfile(capture_file *cf)
+{
+    return cf->is_tempfile;
+}
+
+void cf_set_tempfile(capture_file *cf, gboolean is_tempfile)
+{
+    cf->is_tempfile = is_tempfile;
+}
+
+
+/* XXX - use a macro instead? */
+void cf_set_drops_known(capture_file *cf, gboolean drops_known)
+{
+    cf->drops_known = drops_known;
+}
+
+/* XXX - use a macro instead? */
+void cf_set_drops(capture_file *cf, guint32 drops)
+{
+    cf->drops = drops;
+}
+
+/* XXX - use a macro instead? */
+gboolean cf_get_drops_known(capture_file *cf)
+{
+    return cf->drops_known;
+}
+
+/* XXX - use a macro instead? */
+guint32 cf_get_drops(capture_file *cf)
+{
+    return cf->drops;
+}
+
+void cf_set_rfcode(capture_file *cf, dfilter_t *rfcode)
+{
+    cf->rfcode = rfcode;
 }
 
 static int
@@ -730,7 +755,6 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
        union wtap_pseudo_header *pseudo_header, const guchar *buf,
        gboolean refilter)
 {
-  apply_color_filter_args args;
   gint          row;
   gboolean     create_proto_tree = FALSE;
   epan_dissect_t *edt;
@@ -738,49 +762,40 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
   /* just add some value here until we know if it is being displayed or not */
   fdata->cum_bytes  = cum_bytes + fdata->pkt_len;
 
-  /* We don't yet have a color filter to apply. */
-  args.colorf = NULL;
-
   /* 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
      stamp of this packet as the time stamp of the first packet. */
-  if (!firstsec && !firstusec) {
-    firstsec  = fdata->abs_secs;
-    firstusec = fdata->abs_usecs;
+  if (nstime_is_zero(&first_ts)) {
+    first_ts  = fdata->abs_ts;
   }
   /* if this frames is marked as a reference time frame, reset
      firstsec and firstusec to this frame */
   if(fdata->flags.ref_time){
-    firstsec  = fdata->abs_secs;
-    firstusec = fdata->abs_usecs;
+    first_ts = fdata->abs_ts;
   }
 
   /* If we don't have the time stamp of the previous displayed packet,
      it's because this is the first displayed packet.  Save the time
      stamp of this packet as the time stamp of the previous displayed
      packet. */
-  if (!prevsec && !prevusec) {
-    prevsec  = fdata->abs_secs;
-    prevusec = fdata->abs_usecs;
+  if (nstime_is_zero(&prev_ts)) {
+    prev_ts = fdata->abs_ts;
   }
 
   /* Get the time elapsed between the first packet and this packet. */
-  compute_timestamp_diff(&fdata->rel_secs, &fdata->rel_usecs,
-     fdata->abs_secs, fdata->abs_usecs, firstsec, firstusec);
+  nstime_delta(&fdata->rel_ts, &fdata->abs_ts, &first_ts);
 
   /* If it's greater than the current elapsed time, set the elapsed time
      to it (we check for "greater than" so as not to be confused by
      time moving backwards). */
-  if ((gint32)cf->esec < fdata->rel_secs
-  || ((gint32)cf->esec == fdata->rel_secs && (gint32)cf->eusec < fdata->rel_usecs)) {
-    cf->esec = fdata->rel_secs;
-    cf->eusec = fdata->rel_usecs;
+  if ((gint32)cf->elapsed_time.secs < fdata->rel_ts.secs
+  || ((gint32)cf->elapsed_time.secs == fdata->rel_ts.secs && (gint32)cf->elapsed_time.nsecs < fdata->rel_ts.nsecs)) {
+    cf->elapsed_time = fdata->rel_ts;
   }
 
   /* Get the time elapsed between the previous displayed packet and
      this packet. */
-  compute_timestamp_diff(&fdata->del_secs, &fdata->del_usecs,
-       fdata->abs_secs, fdata->abs_usecs, prevsec, prevusec);
+  nstime_delta(&fdata->del_ts, &fdata->abs_ts, &prev_ts);
 
   /* If either
 
@@ -793,7 +808,7 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
      allocate a protocol tree root node, so that we'll construct
      a protocol tree against which a filter expression can be
      evaluated. */
-  if ((cf->dfcode != NULL && refilter) || filter_list != NULL
+  if ((cf->dfcode != NULL && refilter) || color_filters_used()
         || num_tap_filters != 0)
          create_proto_tree = TRUE;
 
@@ -803,8 +818,8 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
   if (cf->dfcode != NULL && refilter) {
       epan_dissect_prime_dfilter(edt, cf->dfcode);
   }
-  if (filter_list) {
-      filter_list_prime_edt(edt);
+  if (color_filters_used()) {
+      color_filters_prime_edt(edt);
   }
   tap_queue_init(edt);
   epan_dissect_run(edt, pseudo_header, buf, fdata, &cf->cinfo);
@@ -816,25 +831,12 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
      If we don't have a display filter, set "passed_dfilter" to 1. */
   if (cf->dfcode != NULL) {
     if (refilter) {
-      if (cf->dfcode != NULL)
-        fdata->flags.passed_dfilter = dfilter_apply_edt(cf->dfcode, edt) ? 1 : 0;
-      else
-        fdata->flags.passed_dfilter = 1;
+      fdata->flags.passed_dfilter = dfilter_apply_edt(cf->dfcode, edt) ? 1 : 0;
     }
   } else
     fdata->flags.passed_dfilter = 1;
 
-  /* If we have color filters, and the frame is to be displayed, apply
-     the color filters. */
-  if (fdata->flags.passed_dfilter) {
-    if (filter_list != NULL) {
-      args.edt = edt;
-      g_slist_foreach(filter_list, apply_color_filter, &args);
-    }
-  }
-
-
-  if( (fdata->flags.passed_dfilter) 
+  if( (fdata->flags.passed_dfilter)
    || (edt->pi.fd->flags.ref_time) ){
     /* This frame either passed the display filter list or is marked as
        a time reference frame.  All time reference frames are displayed
@@ -855,14 +857,14 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
        XXX - we must do this before we add the row to the display,
        as, if the display's GtkCList's selection mode is
        GTK_SELECTION_BROWSE, when the first entry is added to it,
-       "select_packet()" will be called, and it will fetch the row
+       "cf_select_packet()" will be called, and it will fetch the row
        data for the 0th row, and will get a null pointer rather than
        "fdata", as "gtk_clist_append()" won't yet have returned and
        thus "gtk_clist_set_row_data()" won't yet have been called.
 
        We thus need to leave behind bread crumbs so that
-       "select_packet()" can find this frame.  See the comment
-       in "select_packet()". */
+       "cf_select_packet()" can find this frame.  See the comment
+       in "cf_select_packet()". */
     if (cf->first_displayed == NULL)
       cf->first_displayed = fdata;
 
@@ -871,30 +873,18 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
 
     row = packet_list_append(cf->cinfo.col_data, fdata);
 
-    /* If the packet matches a color filter,
-     * store matching color_filter_t object in frame data. */
-    if (filter_list != NULL && (args.colorf != NULL)) {
-      /* add the matching colorfilter to the frame data */
-      fdata->color_filter = args.colorf;
-      /* If packet is marked, use colors from preferences */
-      if (fdata->flags.marked) {
-          packet_list_set_colors(row, &prefs.gui_marked_fg, &prefs.gui_marked_bg);
-      } else /* if (filter_list != NULL && (args.colorf != NULL)) */ {
-          packet_list_set_colors(row, &(args.colorf->fg_color),
-             &(args.colorf->bg_color));
-      }
-    } else {
-      /* No color filter match */
-      fdata->color_filter = NULL;
+    /* colorize packet: if packet is marked, use preferences,
+       otherwise try to apply color filters */
       if (fdata->flags.marked) {
+          fdata->color_filter = NULL;
           packet_list_set_colors(row, &prefs.gui_marked_fg, &prefs.gui_marked_bg);
+      } else {
+          fdata->color_filter = color_filters_colorize_packet(row, edt);
       }
-    }
 
     /* Set the time of the previous displayed frame to the time of this
        frame. */
-    prevsec = fdata->abs_secs;
-    prevusec = fdata->abs_usecs;
+    prev_ts = fdata->abs_ts;
 
     cf->displayed_count++;
   } else {
@@ -920,6 +910,7 @@ read_packet(capture_file *cf, long offset)
   /* Allocate the next list entry, and add it to the list. */
   fdata = g_mem_chunk_alloc(cf->plist_chunk);
 
+  fdata->num = 0;
   fdata->next = NULL;
   fdata->prev = NULL;
   fdata->pfd  = NULL;
@@ -927,12 +918,13 @@ read_packet(capture_file *cf, long offset)
   fdata->cap_len  = phdr->caplen;
   fdata->file_off = offset;
   fdata->lnk_t = phdr->pkt_encap;
-  fdata->abs_secs  = phdr->ts.tv_sec;
-  fdata->abs_usecs = phdr->ts.tv_usec;
   fdata->flags.encoding = CHAR_ASCII;
   fdata->flags.visited = 0;
   fdata->flags.marked = 0;
   fdata->flags.ref_time = 0;
+  fdata->color_filter = NULL;
+
+  fdata->abs_ts  = *((nstime_t *) &phdr->ts);
 
   passed = TRUE;
   if (cf->rfcode) {
@@ -952,6 +944,7 @@ read_packet(capture_file *cf, long offset)
     cf->plist_end = fdata;
 
     cf->count++;
+    cf->f_datalen = offset + phdr->caplen;
     fdata->num = cf->count;
     add_packet_to_packet_list(fdata, cf, pseudo_header, buf, TRUE);
   } else {
@@ -967,16 +960,243 @@ read_packet(capture_file *cf, long offset)
   }
 }
 
-gboolean
-filter_packets(capture_file *cf, gchar *dftext, gboolean force)
+cf_status_t
+cf_merge_files(char **out_filenamep, int in_file_count,
+               char *const *in_filenames, int file_type, gboolean do_append)
+{
+  merge_in_file_t  *in_files;
+  wtap             *wth;
+  char             *out_filename;
+  char              tmpname[128+1];
+  int               out_fd;
+  wtap_dumper      *pdh;
+  int               open_err, read_err, write_err, close_err;
+  gchar            *err_info;
+  int               err_fileno;
+  int               i;
+  char              errmsg_errno[1024+1];
+  gchar             err_str[2048+1];
+  const char       *errmsg;
+  gboolean          got_read_error = FALSE, got_write_error = FALSE;
+  long              data_offset;
+  progdlg_t        *progbar = NULL;
+  gboolean          stop_flag;
+  gint64            f_len, file_pos;
+  float             progbar_val;
+  GTimeVal          start_time;
+  gchar             status_str[100];
+  gint64            progbar_nextstep;
+  gint64            progbar_quantum;
+
+  /* open the input files */
+  if (!merge_open_in_files(in_file_count, in_filenames, &in_files,
+                           &open_err, &err_info, &err_fileno)) {
+    free(in_files);
+    cf_open_failure_alert_box(in_filenames[err_fileno], open_err, err_info,
+                              FALSE, 0);
+    return CF_ERROR;
+  }
+
+  if (*out_filenamep != NULL) {
+    out_filename = *out_filenamep;
+    out_fd = eth_open(out_filename, O_CREAT|O_TRUNC|O_BINARY, 0600);
+    if (out_fd == -1)
+      open_err = errno;
+  } else {
+    out_fd = create_tempfile(tmpname, sizeof tmpname, "ether");
+    if (out_fd == -1)
+      open_err = errno;
+    out_filename = g_strdup(tmpname);
+    *out_filenamep = out_filename;
+  }
+  if (out_fd == -1) {
+    err_info = NULL;
+    merge_close_in_files(in_file_count, in_files);
+    free(in_files);
+    cf_open_failure_alert_box(out_filename, open_err, NULL, TRUE, file_type);
+    return CF_ERROR;
+  }
+
+  pdh = wtap_dump_fdopen(out_fd, file_type,
+      merge_select_frame_type(in_file_count, in_files),
+      merge_max_snapshot_length(in_file_count, in_files),
+         FALSE /* compressed */, &open_err);
+  if (pdh == NULL) {
+    eth_close(out_fd);
+    merge_close_in_files(in_file_count, in_files);
+    free(in_files);
+    cf_open_failure_alert_box(out_filename, open_err, err_info, TRUE,
+                              file_type);
+    return CF_ERROR;
+  }
+
+  /* Get the sum of the sizes of all the files. */
+  f_len = 0;
+  for (i = 0; i < in_file_count; i++)
+    f_len += in_files[i].size;
+
+  /* Update the progress bar when it gets to this value. */
+  progbar_nextstep = 0;
+  /* When we reach the value that triggers a progress bar update,
+     bump that value by this amount. */
+  progbar_quantum = f_len/N_PROGBAR_UPDATES;
+  /* Progress so far. */
+  progbar_val = 0.0;
+
+  stop_flag = FALSE;
+  g_get_current_time(&start_time);
+
+  /* do the merge (or append) */
+  for (;;) {
+    if (do_append)
+      wth = merge_append_read_packet(in_file_count, in_files, &read_err,
+                                     &err_info);
+    else
+      wth = merge_read_packet(in_file_count, in_files, &read_err,
+                              &err_info);
+    if (wth == NULL) {
+      if (read_err != 0)
+        got_read_error = TRUE;
+      break;
+    }
+
+    /* Get the sum of the data offsets in all of the files. */
+    data_offset = 0;
+    for (i = 0; i < in_file_count; i++)
+      data_offset += in_files[i].data_offset;
+
+    /* Create the progress bar if necessary.
+       We check on every iteration of the loop, so that it takes no
+       longer than the standard time to create it (otherwise, for a
+       large file, we might take considerably longer than that standard
+       time in order to get to the next progress bar step). */
+    if (progbar == NULL) {
+      progbar = delayed_create_progress_dlg("Merging", "files",
+        FALSE, &stop_flag, &start_time, progbar_val);
+    }
+
+    /* Update the progress bar, but do it only N_PROGBAR_UPDATES times;
+       when we update it, we have to run the GTK+ main loop to get it
+       to repaint what's pending, and doing so may involve an "ioctl()"
+       to see if there's any pending input from an X server, and doing
+       that for every packet can be costly, especially on a big file. */
+    if (data_offset >= progbar_nextstep) {
+        /* Get the sum of the seek positions in all of the files. */
+        file_pos = 0;
+        for (i = 0; i < in_file_count; i++)
+          file_pos += wtap_read_so_far(in_files[i].wth, NULL);
+        progbar_val = (gfloat) file_pos / (gfloat) f_len;
+        if (progbar_val > 1.0) {
+          /* Some file probably grew while we were reading it.
+             That "shouldn't happen", so we'll just clip the progress
+             value at 1.0. */
+          progbar_val = 1.0;
+        }
+        if (progbar != NULL) {
+          g_snprintf(status_str, sizeof(status_str),
+                     "%" PRId64 "KB of %" PRId64 "KB",
+                     file_pos / 1024, f_len / 1024);
+          update_progress_dlg(progbar, progbar_val, status_str);
+        }
+        progbar_nextstep += progbar_quantum;
+    }
+
+    if (stop_flag) {
+      /* Well, the user decided to abort the merge. */
+      break;
+    }
+
+    if (!wtap_dump(pdh, wtap_phdr(wth), wtap_pseudoheader(wth),
+         wtap_buf_ptr(wth), &write_err)) {
+      got_write_error = TRUE;
+      break;
+    }
+  }
+
+  /* We're done merging the files; destroy the progress bar if it was created. */
+  if (progbar != NULL)
+    destroy_progress_dlg(progbar);
+
+  merge_close_in_files(in_file_count, in_files);
+  if (!got_read_error && !got_write_error) {
+    if (!wtap_dump_close(pdh, &write_err))
+      got_write_error = TRUE;
+  } else
+    wtap_dump_close(pdh, &close_err);
+
+  if (got_read_error) {
+    /*
+     * Find the file on which we got the error, and report the error.
+     */
+    for (i = 0; i < in_file_count; i++) {
+      if (in_files[i].state == GOT_ERROR) {
+       /* Put up a message box noting that a read failed somewhere along
+          the line. */
+       switch (read_err) {
+
+       case WTAP_ERR_UNSUPPORTED_ENCAP:
+         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
+                  "The capture file %%s has a packet with a network type that Wireshark doesn't support.\n(%s)",
+                  err_info);
+         g_free(err_info);
+         errmsg = errmsg_errno;
+         break;
+
+       case WTAP_ERR_CANT_READ:
+         errmsg = "An attempt to read from the capture file %s failed for"
+                  " some unknown reason.";
+         break;
+
+       case WTAP_ERR_SHORT_READ:
+         errmsg = "The capture file %s appears to have been cut short"
+                  " in the middle of a packet.";
+         break;
+
+       case WTAP_ERR_BAD_RECORD:
+         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
+                  "The capture file %%s appears to be damaged or corrupt.\n(%s)",
+                  err_info);
+         g_free(err_info);
+         errmsg = errmsg_errno;
+         break;
+
+       default:
+         g_snprintf(errmsg_errno, sizeof(errmsg_errno),
+                  "An error occurred while reading the"
+                  " capture file %%s: %s.", wtap_strerror(read_err));
+         errmsg = errmsg_errno;
+         break;
+       }
+       g_snprintf(err_str, sizeof err_str, errmsg, in_files[i].filename);
+        simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, err_str);
+      }
+    }
+  }
+
+  if (got_write_error) {
+    /* Put up an alert box for the write error. */
+    cf_write_failure_alert_box(out_filename, write_err);
+  }
+
+  if (got_read_error || got_write_error || stop_flag) {
+    /* Callers aren't expected to treat an error or an explicit abort
+       differently - we put up error dialogs ourselves, so they don't
+       have to. */
+    return CF_ERROR;
+  } else
+    return CF_READ_OK;
+}
+
+cf_status_t
+cf_filter_packets(capture_file *cf, gchar *dftext, gboolean force)
 {
-  dfilter_t *dfcode;
-  char      *filter_new = dftext ? dftext : "";
-  char      *filter_old = cf->dfilter ? cf->dfilter : "";
+  dfilter_t  *dfcode;
+  const char *filter_new = dftext ? dftext : "";
+  const char *filter_old = cf->dfilter ? cf->dfilter : "";
 
   /* if new filter equals old one, do nothing unless told to do so */
   if (!force && strcmp(filter_new, filter_old) == 0) {
-    return TRUE;
+    return CF_OK;
   }
 
   if (dftext == NULL) {
@@ -993,17 +1213,17 @@ filter_packets(capture_file *cf, gchar *dftext, gboolean force)
       gchar *safe_dftext = simple_dialog_format_message(dftext);
       gchar *safe_dfilter_error_msg = simple_dialog_format_message(
          dfilter_error_msg);
-      simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, 
+      simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
           "%s%s%s\n"
           "\n"
-          "The following display filter is not a valid display filter:\n%s\n"
+          "The following display filter isn't a valid display filter:\n%s\n"
           "See the help for a description of the display filter syntax.",
           simple_dialog_primary_start(), safe_dfilter_error_msg,
           simple_dialog_primary_end(), safe_dftext);
       g_free(safe_dfilter_error_msg);
       g_free(safe_dftext);
       g_free(dftext);
-      return FALSE;
+      return CF_ERROR;
     }
 
     /* Was it empty? */
@@ -1029,23 +1249,23 @@ filter_packets(capture_file *cf, gchar *dftext, gboolean force)
   } else {
     rescan_packets(cf, "Filtering", dftext, TRUE, FALSE);
   }
-  return TRUE;
+  return CF_OK;
 }
 
 void
-colorize_packets(capture_file *cf)
+cf_colorize_packets(capture_file *cf)
 {
   rescan_packets(cf, "Colorizing", "all packets", FALSE, FALSE);
 }
 
 void
-reftime_packets(capture_file *cf)
+cf_reftime_packets(capture_file *cf)
 {
   rescan_packets(cf, "Updating Reftime", "all packets", FALSE, FALSE);
 }
 
 void
-redissect_packets(capture_file *cf)
+cf_redissect_packets(capture_file *cf)
 {
   rescan_packets(cf, "Reprocessing", "all packets", TRUE, TRUE);
 }
@@ -1078,7 +1298,7 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
   int         selected_row, prev_row, preceding_row, following_row;
   gboolean    selected_frame_seen;
   int         row;
-  float       prog_val;
+  float       progbar_val;
   GTimeVal    start_time;
   gchar       status_str[100];
   int         progbar_nextstep;
@@ -1123,10 +1343,8 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
   /* Iterate through the list of frames.  Call a routine for each frame
      to check whether it should be displayed and, if so, add it to
      the display list. */
-  firstsec = 0;
-  firstusec = 0;
-  prevsec = 0;
-  prevusec = 0;
+  nstime_set_zero(&first_ts);
+  nstime_set_zero(&prev_ts);
 
   /* Update the progress bar when it gets to this value. */
   progbar_nextstep = 0;
@@ -1135,6 +1353,8 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
   progbar_quantum = cf->count/N_PROGBAR_UPDATES;
   /* Count of packets at which we've looked. */
   count = 0;
+  /* Progress so far. */
+  progbar_val = 0.0;
 
   stop_flag = FALSE;
   g_get_current_time(&start_time);
@@ -1151,6 +1371,16 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
   selected_frame_seen = FALSE;
 
   for (fdata = cf->plist; fdata != NULL; fdata = fdata->next) {
+    /* Create the progress bar if necessary.
+       We check on every iteration of the loop, so that it takes no
+       longer than the standard time to create it (otherwise, for a
+       large file, we might take considerably longer than that standard
+       time in order to get to the next progress bar step). */
+    if (progbar == NULL)
+      progbar = delayed_create_progress_dlg(action, action_item, TRUE,
+                                            &stop_flag, &start_time,
+                                            progbar_val);
+
     /* Update the progress bar, but do it only N_PROGBAR_UPDATES times;
        when we update it, we have to run the GTK+ main loop to get it
        to repaint what's pending, and doing so may involve an "ioctl()"
@@ -1161,17 +1391,12 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
        * with count == 0, so let's assert that
        */
       g_assert(cf->count > 0);
-      prog_val = (gfloat) count / cf->count;
-
-      if (progbar == NULL)
-        /* Create the progress bar if necessary */
-        progbar = delayed_create_progress_dlg(action, action_item, &stop_flag,
-          &start_time, prog_val);
+      progbar_val = (gfloat) count / cf->count;
 
       if (progbar != NULL) {
         g_snprintf(status_str, sizeof(status_str),
                   "%4u of %u frames", count, cf->count);
-        update_progress_dlg(progbar, prog_val, status_str);
+        update_progress_dlg(progbar, progbar_val, status_str);
       }
 
       progbar_nextstep += progbar_quantum;
@@ -1251,7 +1476,7 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
        these frames, as they won't have been seen by this sequential
        pass, but the only alternative I see is to keep scanning them
        even though the user requested that the scan stop, and that
-       would leave the user stuck with an Ethereal grinding on
+       would leave the user stuck with an Wireshark grinding on
        until it finishes.  Should we just stick them with that? */
     for (; fdata != NULL; fdata = fdata->next) {
       fdata->flags.visited = 0;
@@ -1295,26 +1520,13 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
            have to select the first displayed frame after the selected
            frame. */
         selected_row = following_row;
-      } else {
-        /* Choose the closer of the last displayed frame before the
-           selected frame and the first displayed frame after the
-           selected frame; in case of a tie, choose the first displayed
-           frame after the selected frame. */
-        if (following_frame->num - selected_frame->num <=
-            selected_frame->num - preceding_frame->num) {
-          selected_row = following_row;
-        } else {
-          /* The previous frame is closer to the selected frame than the
-             next frame. */
-          selected_row = preceding_row;
-        }
       }
     }
   }
 
   if (selected_row == -1) {
     /* There are no frames displayed at all. */
-    unselect_packet(cf);
+    cf_unselect_packet(cf);
   } else {
     /* Either the frame that was selected passed the filter, or we've
        found the nearest displayed frame to that frame.  Select it, make
@@ -1329,9 +1541,9 @@ typedef enum {
   PSP_FAILED
 } psp_return_t;
 
-psp_return_t
+static psp_return_t
 process_specified_packets(capture_file *cf, packet_range_t *range,
-    const char *string1, const char *string2,
+    const char *string1, const char *string2, gboolean terminate_is_stop,
     gboolean (*callback)(capture_file *, frame_data *,
                          union wtap_pseudo_header *, const guint8 *, void *),
     void *callback_args)
@@ -1360,6 +1572,8 @@ process_specified_packets(capture_file *cf, packet_range_t *range,
   progbar_quantum = cf->count/N_PROGBAR_UPDATES;
   /* Count of packets at which we've looked. */
   progbar_count = 0;
+  /* Progress so far. */
+  progbar_val = 0.0;
 
   progbar_stop_flag = FALSE;
   g_get_current_time(&progbar_start_time);
@@ -1369,6 +1583,18 @@ process_specified_packets(capture_file *cf, packet_range_t *range,
   /* Iterate through the list of packets, printing the packets that
      were selected by the current display filter.  */
   for (fdata = cf->plist; fdata != NULL; fdata = fdata->next) {
+    /* Create the progress bar if necessary.
+       We check on every iteration of the loop, so that it takes no
+       longer than the standard time to create it (otherwise, for a
+       large file, we might take considerably longer than that standard
+       time in order to get to the next progress bar step). */
+    if (progbar == NULL)
+      progbar = delayed_create_progress_dlg(string1, string2,
+                                            terminate_is_stop,
+                                            &progbar_stop_flag,
+                                            &progbar_start_time,
+                                            progbar_val);
+
     /* Update the progress bar, but do it only N_PROGBAR_UPDATES times;
        when we update it, we have to run the GTK+ main loop to get it
        to repaint what's pending, and doing so may involve an "ioctl()"
@@ -1381,13 +1607,6 @@ process_specified_packets(capture_file *cf, packet_range_t *range,
       g_assert(cf->count > 0);
       progbar_val = (gfloat) progbar_count / cf->count;
 
-      if (progbar == NULL)
-        /* Create the progress bar if necessary */
-        progbar = delayed_create_progress_dlg(string1, string2,
-                                              &progbar_stop_flag,
-                                              &progbar_start_time,
-                                              progbar_val);
-
       if (progbar != NULL) {
         g_snprintf(progbar_status_str, sizeof(progbar_status_str),
                    "%4u of %u packets", progbar_count, cf->count);
@@ -1399,8 +1618,8 @@ process_specified_packets(capture_file *cf, packet_range_t *range,
 
     if (progbar_stop_flag) {
       /* Well, the user decided to abort the operation.  Just stop,
-         and arrange to return TRUE to our caller, so they know it
-         was stopped explicitly. */
+         and arrange to return PSP_STOPPED to our caller, so they know
+         it was stopped explicitly. */
       ret = PSP_STOPPED;
       break;
     }
@@ -1445,8 +1664,9 @@ process_specified_packets(capture_file *cf, packet_range_t *range,
 static gboolean
 retap_packet(capture_file *cf _U_, frame_data *fdata,
              union wtap_pseudo_header *pseudo_header, const guint8 *pd,
-             void *argsp _U_)
+             void *argsp)
 {
+  column_info *cinfo = argsp;
   epan_dissect_t *edt;
 
   /* If we have tap listeners, allocate a protocol tree root node, so that
@@ -1454,15 +1674,15 @@ retap_packet(capture_file *cf _U_, frame_data *fdata,
      be evaluated. */
   edt = epan_dissect_new(num_tap_filters != 0, FALSE);
   tap_queue_init(edt);
-  epan_dissect_run(edt, pseudo_header, pd, fdata, NULL);
+  epan_dissect_run(edt, pseudo_header, pd, fdata, cinfo);
   tap_push_tapped_queue(edt);
   epan_dissect_free(edt);
 
   return TRUE;
 }
 
-int
-retap_packets(capture_file *cf)
+cf_read_status_t
+cf_retap_packets(capture_file *cf, gboolean do_columns)
 {
   packet_range_t range;
 
@@ -1474,23 +1694,24 @@ retap_packets(capture_file *cf)
   packet_range_init(&range);
   packet_range_process_init(&range);
   switch (process_specified_packets(cf, &range, "Refiltering statistics on",
-                                    "all packets", retap_packet,
-                                    NULL)) {
+                                    "all packets", TRUE, retap_packet,
+                                    do_columns ? &cf->cinfo : NULL)) {
   case PSP_FINISHED:
     /* Completed successfully. */
-    break;
+    return CF_OK;
 
   case PSP_STOPPED:
     /* Well, the user decided to abort the refiltering.
-       Return FALSE so our caller knows they did that. */
-    return FALSE;
+       Return CF_READ_ABORTED so our caller knows they did that. */
+    return CF_READ_ABORTED;
 
   case PSP_FAILED:
     /* Error while retapping. */
-    return FALSE;
+    return CF_READ_ERROR;
   }
 
-  return TRUE;
+  g_assert_not_reached();
+  return CF_READ_OK;
 }
 
 typedef struct {
@@ -1524,7 +1745,7 @@ print_packet(capture_file *cf, frame_data *fdata,
   /* Create the protocol tree, and make it visible, if we're printing
      the dissection or the hex data.
      XXX - do we need it if we're just printing the hex data? */
-  proto_tree_needed = 
+  proto_tree_needed =
       args->print_args->print_dissections != print_dissections_none || args->print_args->print_hex;
   edt = epan_dissect_new(proto_tree_needed, proto_tree_needed);
 
@@ -1550,7 +1771,7 @@ print_packet(capture_file *cf, frame_data *fdata,
    * We generate bookmarks, if the output format supports them.
    * The name is "__frameN__".
    */
-  sprintf(bookmark_name, "__frame%u__", fdata->num);
+  g_snprintf(bookmark_name, sizeof bookmark_name, "__frame%u__", fdata->num);
 
   if (args->print_args->print_summary) {
     if (args->print_header_line) {
@@ -1601,7 +1822,7 @@ print_packet(capture_file *cf, frame_data *fdata,
      * Generate a bookmark, using "Frame N" as the title, as we're not
      * printing the summary line.
      */
-    sprintf(bookmark_title, "Frame %u", fdata->num);
+    g_snprintf(bookmark_title, sizeof bookmark_title, "Frame %u", fdata->num);
     if (!print_bookmark(args->print_args->stream, bookmark_name,
                         bookmark_title))
       goto fail;
@@ -1651,8 +1872,8 @@ fail:
   return FALSE;
 }
 
-pp_return_t
-print_packets(capture_file *cf, print_args_t *print_args)
+cf_print_status_t
+cf_print_packets(capture_file *cf, print_args_t *print_args)
 {
   int         i;
   print_callback_args_t callback_args;
@@ -1675,7 +1896,7 @@ print_packets(capture_file *cf, print_args_t *print_args)
 
   if (!print_preamble(print_args->stream, cf->filename)) {
     destroy_print_stream(print_args->stream);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   if (print_args->print_summary) {
@@ -1736,7 +1957,7 @@ print_packets(capture_file *cf, print_args_t *print_args)
   /* Iterate through the list of packets, printing the packets we were
      told to print. */
   ret = process_specified_packets(cf, &print_args->range, "Printing",
-                                  "selected packets", print_packet,
+                                  "selected packets", TRUE, print_packet,
                                   &callback_args);
 
   if (callback_args.header_line_buf != NULL)
@@ -1769,18 +1990,18 @@ print_packets(capture_file *cf, print_args_t *print_args)
        have to write to a file and then hand that to the print
        program to make it actually not print anything. */
     destroy_print_stream(print_args->stream);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   if (!print_finale(print_args->stream)) {
     destroy_print_stream(print_args->stream);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   if (!destroy_print_stream(print_args->stream))
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
 
-  return PP_OK;
+  return CF_PRINT_OK;
 }
 
 static gboolean
@@ -1803,27 +2024,27 @@ write_pdml_packet(capture_file *cf _U_, frame_data *fdata,
   return !ferror(fh);
 }
 
-pp_return_t
-write_pdml_packets(capture_file *cf, print_args_t *print_args)
+cf_print_status_t
+cf_write_pdml_packets(capture_file *cf, print_args_t *print_args)
 {
   FILE        *fh;
   psp_return_t ret;
 
-  fh = fopen(print_args->file, "w");
+  fh = eth_fopen(print_args->file, "w");
   if (fh == NULL)
-    return PP_OPEN_ERROR;      /* attempt to open destination failed */
+    return CF_PRINT_OPEN_ERROR;        /* attempt to open destination failed */
 
   write_pdml_preamble(fh);
   if (ferror(fh)) {
     fclose(fh);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   /* Iterate through the list of packets, printing the packets we were
      told to print. */
   ret = process_specified_packets(cf, &print_args->range, "Writing PDML",
-                                  "selected packets", write_pdml_packet,
-                                  fh);
+                                  "selected packets", TRUE,
+                                  write_pdml_packet, fh);
 
   switch (ret) {
 
@@ -1838,19 +2059,19 @@ write_pdml_packets(capture_file *cf, print_args_t *print_args)
   case PSP_FAILED:
     /* Error while printing. */
     fclose(fh);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   write_pdml_finale(fh);
   if (ferror(fh)) {
     fclose(fh);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   /* XXX - check for an error */
   fclose(fh);
 
-  return PP_OK;
+  return CF_PRINT_OK;
 }
 
 static gboolean
@@ -1864,6 +2085,7 @@ write_psml_packet(capture_file *cf, frame_data *fdata,
   /* Fill in the column information, but don't create the protocol tree. */
   edt = epan_dissect_new(FALSE, FALSE);
   epan_dissect_run(edt, pseudo_header, pd, fdata, &cf->cinfo);
+  epan_dissect_fill_in_columns(edt);
 
   /* Write out the information in that tree. */
   proto_tree_write_psml(edt, fh);
@@ -1873,27 +2095,27 @@ write_psml_packet(capture_file *cf, frame_data *fdata,
   return !ferror(fh);
 }
 
-pp_return_t
-write_psml_packets(capture_file *cf, print_args_t *print_args)
+cf_print_status_t
+cf_write_psml_packets(capture_file *cf, print_args_t *print_args)
 {
   FILE        *fh;
   psp_return_t ret;
 
-  fh = fopen(print_args->file, "w");
+  fh = eth_fopen(print_args->file, "w");
   if (fh == NULL)
-    return PP_OPEN_ERROR;      /* attempt to open destination failed */
+    return CF_PRINT_OPEN_ERROR;        /* attempt to open destination failed */
 
   write_psml_preamble(fh);
   if (ferror(fh)) {
     fclose(fh);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   /* Iterate through the list of packets, printing the packets we were
      told to print. */
   ret = process_specified_packets(cf, &print_args->range, "Writing PSML",
-                                  "selected packets", write_psml_packet,
-                                  fh);
+                                  "selected packets", TRUE,
+                                  write_psml_packet, fh);
 
   switch (ret) {
 
@@ -1908,26 +2130,97 @@ write_psml_packets(capture_file *cf, print_args_t *print_args)
   case PSP_FAILED:
     /* Error while printing. */
     fclose(fh);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   write_psml_finale(fh);
   if (ferror(fh)) {
     fclose(fh);
-    return PP_WRITE_ERROR;
+    return CF_PRINT_WRITE_ERROR;
   }
 
   /* XXX - check for an error */
   fclose(fh);
 
-  return PP_OK;
+  return CF_PRINT_OK;
+}
+
+static gboolean
+write_csv_packet(capture_file *cf, frame_data *fdata,
+                 union wtap_pseudo_header *pseudo_header, const guint8 *pd,
+                 void *argsp)
+{
+  FILE *fh = argsp;
+  epan_dissect_t *edt;
+
+  /* Fill in the column information, but don't create the protocol tree. */
+  edt = epan_dissect_new(FALSE, FALSE);
+  epan_dissect_run(edt, pseudo_header, pd, fdata, &cf->cinfo);
+  epan_dissect_fill_in_columns(edt);
+
+  /* Write out the information in that tree. */
+  proto_tree_write_csv(edt, fh);
+
+  epan_dissect_free(edt);
+
+  return !ferror(fh);
+}
+
+cf_print_status_t
+cf_write_csv_packets(capture_file *cf, print_args_t *print_args)
+{
+  FILE        *fh;
+  psp_return_t ret;
+
+  fh = eth_fopen(print_args->file, "w");
+  if (fh == NULL)
+    return CF_PRINT_OPEN_ERROR; /* attempt to open destination failed */
+
+  write_csv_preamble(fh);
+  if (ferror(fh)) {
+    fclose(fh);
+    return CF_PRINT_WRITE_ERROR;
+  }
+
+  /* Iterate through the list of packets, printing the packets we were
+     told to print. */
+  ret = process_specified_packets(cf, &print_args->range, "Writing CSV",
+                                  "selected packets", TRUE,
+                                  write_csv_packet, fh);
+
+  switch (ret) {
+
+  case PSP_FINISHED:
+    /* Completed successfully. */
+    break;
+
+  case PSP_STOPPED:
+    /* Well, the user decided to abort the printing. */
+    break;
+
+  case PSP_FAILED:
+    /* Error while printing. */
+    fclose(fh);
+    return CF_PRINT_WRITE_ERROR;
+  }
+
+  write_csv_finale(fh);
+  if (ferror(fh)) {
+    fclose(fh);
+    return CF_PRINT_WRITE_ERROR;
+  }
+
+  /* XXX - check for an error */
+  fclose(fh);
+
+  return CF_PRINT_OK;
 }
 
 /* Scan through the packet list and change all columns that use the
    "command-line-specified" time stamp format to use the current
    value of that format. */
 void
-change_time_formats(capture_file *cf)
+cf_change_time_formats(capture_file *cf)
 {
   frame_data *fdata;
   progdlg_t  *progbar = NULL;
@@ -1935,7 +2228,7 @@ change_time_formats(capture_file *cf)
   int         count;
   int         row;
   int         i;
-  float       prog_val;
+  float       progbar_val;
   GTimeVal    start_time;
   gchar       status_str[100];
   int         progbar_nextstep;
@@ -1943,6 +2236,10 @@ change_time_formats(capture_file *cf)
   int         first, last;
   gboolean    sorted_by_frame_column;
 
+
+  /* adjust timestamp precision if auto is selected */
+  cf_timestamp_auto_precision(cf);
+
   /* Are there any columns with time stamps in the "command-line-specified"
      format?
 
@@ -1969,6 +2266,8 @@ change_time_formats(capture_file *cf)
   progbar_quantum = cf->count/N_PROGBAR_UPDATES;
   /* Count of packets at which we've looked. */
   count = 0;
+  /* Progress so far. */
+  progbar_val = 0.0;
 
   /*  If the rows are currently sorted by the frame column then we know
    *  the row number of each packet: it's the row number of the previously
@@ -1999,6 +2298,15 @@ change_time_formats(capture_file *cf)
      any columns that show the time in the "command-line-specified"
      format and, if so, update that row. */
   for (fdata = cf->plist, row = -1; fdata != NULL; fdata = fdata->next) {
+    /* Create the progress bar if necessary.
+       We check on every iteration of the loop, so that it takes no
+       longer than the standard time to create it (otherwise, for a
+       large file, we might take considerably longer than that standard
+       time in order to get to the next progress bar step). */
+    if (progbar == NULL)
+      progbar = delayed_create_progress_dlg("Changing", "time display",
+        TRUE, &stop_flag, &start_time, progbar_val);
+
     /* Update the progress bar, but do it only N_PROGBAR_UPDATES times;
        when we update it, we have to run the GTK+ main loop to get it
        to repaint what's pending, and doing so may involve an "ioctl()"
@@ -2010,17 +2318,12 @@ change_time_formats(capture_file *cf)
        */
       g_assert(cf->count > 0);
 
-      prog_val = (gfloat) count / cf->count;
-
-      if (progbar == NULL)
-        /* Create the progress bar if necessary */
-        progbar = delayed_create_progress_dlg("Changing", "time display", 
-          &stop_flag, &start_time, prog_val);
+      progbar_val = (gfloat) count / cf->count;
 
       if (progbar != NULL) {
         g_snprintf(status_str, sizeof(status_str),
                    "%4u of %u packets", count, cf->count);
-        update_progress_dlg(progbar, prog_val, status_str);
+        update_progress_dlg(progbar, progbar_val, status_str);
       }
 
       progbar_nextstep += progbar_quantum;
@@ -2093,7 +2396,7 @@ typedef struct {
 } match_data;
 
 gboolean
-find_packet_protocol_tree(capture_file *cf, const char *string)
+cf_find_packet_protocol_tree(capture_file *cf, const char *string)
 {
   match_data           mdata;
 
@@ -2153,7 +2456,7 @@ match_subtree_text(proto_node *node, gpointer data)
     label_ptr = label_str;
     proto_item_fill_label(fi, label_str);
   }
-    
+
   /* Does that label match? */
   label_len = strlen(label_ptr);
   for (i = 0; i < label_len; i++) {
@@ -2170,14 +2473,14 @@ match_subtree_text(proto_node *node, gpointer data)
     } else
       c_match = 0;
   }
-  
+
   /* Recurse into the subtree, if it exists */
   if (node->first_child != NULL)
     proto_tree_children_foreach(node, match_subtree_text, mdata);
 }
 
 gboolean
-find_packet_summary_line(capture_file *cf, const char *string)
+cf_find_packet_summary_line(capture_file *cf, const char *string)
 {
   match_data           mdata;
 
@@ -2238,7 +2541,7 @@ typedef struct {
 } cbs_t;       /* "Counted byte string" */
 
 gboolean
-find_packet_data(capture_file *cf, const guint8 *string, size_t string_size)
+cf_find_packet_data(capture_file *cf, const guint8 *string, size_t string_size)
 {
   cbs_t info;
 
@@ -2387,7 +2690,7 @@ match_binary(capture_file *cf, frame_data *fdata, void *criterion)
 }
 
 gboolean
-find_packet_dfilter(capture_file *cf, dfilter_t *sfcode)
+cf_find_packet_dfilter(capture_file *cf, dfilter_t *sfcode)
 {
   return find_packet(cf, match_dfilter, sfcode);
 }
@@ -2421,11 +2724,12 @@ find_packet(capture_file *cf,
   int         err;
   gchar      *err_info;
   int         row;
-  float       prog_val;
+  float       progbar_val;
   GTimeVal    start_time;
   gchar       status_str[100];
   int         progbar_nextstep;
   int         progbar_quantum;
+  char       *title;
 
   start_fd = cf->current_frame;
   if (start_fd != NULL)  {
@@ -2435,16 +2739,29 @@ find_packet(capture_file *cf,
     count = 0;
     fdata = start_fd;
 
+    /* Update the progress bar when it gets to this value. */
     progbar_nextstep = 0;
     /* When we reach the value that triggers a progress bar update,
        bump that value by this amount. */
     progbar_quantum = cf->count/N_PROGBAR_UPDATES;
+    /* Progress so far. */
+    progbar_val = 0.0;
 
     stop_flag = FALSE;
     g_get_current_time(&start_time);
 
     fdata = start_fd;
+    title = cf->sfilter?cf->sfilter:"";
     for (;;) {
+      /* Create the progress bar if necessary.
+         We check on every iteration of the loop, so that it takes no
+         longer than the standard time to create it (otherwise, for a
+         large file, we might take considerably longer than that standard
+         time in order to get to the next progress bar step). */
+      if (progbar == NULL)
+         progbar = delayed_create_progress_dlg("Searching", title,
+           FALSE, &stop_flag, &start_time, progbar_val);
+
       /* Update the progress bar, but do it only N_PROGBAR_UPDATES times;
          when we update it, we have to run the GTK+ main loop to get it
          to repaint what's pending, and doing so may involve an "ioctl()"
@@ -2456,17 +2773,12 @@ find_packet(capture_file *cf,
          */
         g_assert(cf->count > 0);
 
-        prog_val = (gfloat) count / cf->count;
-
-        /* Create the progress bar if necessary */
-        if (progbar == NULL)
-           progbar = delayed_create_progress_dlg("Searching", cf->sfilter, 
-             &stop_flag, &start_time, prog_val);
+        progbar_val = (gfloat) count / cf->count;
 
         if (progbar != NULL) {
           g_snprintf(status_str, sizeof(status_str),
                      "%4u of %u packets", count, cf->count);
-          update_progress_dlg(progbar, prog_val, status_str);
+          update_progress_dlg(progbar, progbar_val, status_str);
         }
 
         progbar_nextstep += progbar_quantum;
@@ -2580,7 +2892,7 @@ find_packet(capture_file *cf,
 }
 
 gboolean
-goto_frame(capture_file *cf, guint fnumber)
+cf_goto_frame(capture_file *cf, guint fnumber)
 {
   frame_data *fdata;
   int row;
@@ -2591,14 +2903,14 @@ goto_frame(capture_file *cf, guint fnumber)
   if (fdata == NULL) {
     /* we didn't find a packet with that packet number */
     simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                 "There is no packet with that packet number.");
+                 "There is no packet with the packet number %u.", fnumber);
     return FALSE;      /* we failed to go to that packet */
   }
   if (!fdata->flags.passed_dfilter) {
     /* that packet currently isn't displayed */
     /* XXX - add it to the set of displayed packets? */
     simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                 "That packet is not currently being displayed.");
+                 "The packet number %u isn't currently being displayed.", fnumber);
     return FALSE;      /* we failed to go to that packet */
   }
 
@@ -2613,7 +2925,7 @@ goto_frame(capture_file *cf, guint fnumber)
 }
 
 gboolean
-goto_top_frame(capture_file *cf)
+cf_goto_top_frame(capture_file *cf)
 {
   frame_data *fdata;
   int row;
@@ -2641,7 +2953,7 @@ goto_top_frame(capture_file *cf)
 }
 
 gboolean
-goto_bottom_frame(capture_file *cf)
+cf_goto_bottom_frame(capture_file *cf)
 {
   frame_data *fdata;
   int row;
@@ -2670,8 +2982,8 @@ goto_bottom_frame(capture_file *cf)
 /*
  * Go to frame specified by currently selected protocol tree item.
  */
-void
-goto_framenum(capture_file *cf)
+gboolean
+cf_goto_framenum(capture_file *cf)
 {
   header_field_info       *hfinfo;
   guint32                 framenum;
@@ -2682,14 +2994,16 @@ goto_framenum(capture_file *cf)
     if (hfinfo->type == FT_FRAMENUM) {
       framenum = fvalue_get_integer(&cf->finfo_selected->value);
       if (framenum != 0)
-        goto_frame(cf, framenum);
+        return cf_goto_frame(cf, framenum);
       }
   }
+
+  return FALSE;
 }
 
 /* Select the packet on a given row. */
 void
-select_packet(capture_file *cf, int row)
+cf_select_packet(capture_file *cf, int row)
 {
   frame_data *fdata;
   int err;
@@ -2705,10 +3019,10 @@ select_packet(capture_file *cf, int row)
        our version and the vanilla GTK+ version).
 
        This means that a "select-row" signal is emitted; this causes
-       "packet_list_select_cb()" to be called, which causes "select_packet()"
+       "packet_list_select_cb()" to be called, which causes "cf_select_packet()"
        to be called.
 
-       "select_packet()" fetches, above, the data associated with the
+       "cf_select_packet()" fetches, above, the data associated with the
        row that was selected; however, as "gtk_clist_append()", which
        called "real_insert_row()", hasn't yet returned, we haven't yet
        associated any data with that row, so we get back a null pointer.
@@ -2729,6 +3043,11 @@ select_packet(capture_file *cf, int row)
          fdata = cf->first_displayed;
   }
 
+  /* If fdata _still_ isn't set simply give up. */
+  if (fdata == NULL) {
+    return;
+  }
+
   /* Get the data in that frame. */
   if (!wtap_seek_read (cf->wth, fdata->file_off, &cf->pseudo_header,
                       cf->pd, fdata->cap_len, &err, &err_info)) {
@@ -2750,19 +3069,12 @@ select_packet(capture_file *cf, int row)
   epan_dissect_run(cf->edt, &cf->pseudo_header, cf->pd, cf->current_frame,
           NULL);
 
-  /* Display the GUI protocol tree and hex dump.
-     XXX - why do we dump core if we call "proto_tree_draw()"
-     before calling "add_byte_views()"? */
-  add_main_byte_views(cf->edt);
-  main_proto_tree_draw(cf->edt->tree);
-
-  /* A packet is selected. */
-  set_menus_for_selected_packet(cf);
+  cf_callback_invoke(cf_cb_packet_selected, cf);
 }
 
 /* Unselect the selected packet, if any. */
 void
-unselect_packet(capture_file *cf)
+cf_unselect_packet(capture_file *cf)
 {
   /* Destroy the epan_dissect_t for the unselected packet. */
   if (cf->edt != NULL) {
@@ -2770,31 +3082,29 @@ unselect_packet(capture_file *cf)
     cf->edt = NULL;
   }
 
-  /* Clear out the display of that packet. */
-  clear_tree_and_hex_views();
-
   /* No packet is selected. */
   cf->current_frame = NULL;
-  set_menus_for_selected_packet(cf);
+
+  cf_callback_invoke(cf_cb_packet_unselected, cf);
 
   /* No protocol tree means no selected field. */
-  unselect_field(cf);
+  cf_unselect_field(cf);
 }
 
 /* Unset the selected protocol tree field, if any. */
 void
-unselect_field(capture_file *cf)
+cf_unselect_field(capture_file *cf)
 {
-  statusbar_pop_field_msg();
   cf->finfo_selected = NULL;
-  set_menus_for_selected_tree_row(cf);
+
+  cf_callback_invoke(cf_cb_field_unselected, cf);
 }
 
 /*
  * Mark a particular frame.
  */
 void
-mark_frame(capture_file *cf, frame_data *frame)
+cf_mark_frame(capture_file *cf, frame_data *frame)
 {
   if (! frame->flags.marked) {
     frame->flags.marked = TRUE;
@@ -2807,7 +3117,7 @@ mark_frame(capture_file *cf, frame_data *frame)
  * Unmark a particular frame.
  */
 void
-unmark_frame(capture_file *cf, frame_data *frame)
+cf_unmark_frame(capture_file *cf, frame_data *frame)
 {
   if (frame->flags.marked) {
     frame->flags.marked = FALSE;
@@ -2838,8 +3148,7 @@ save_packet(capture_file *cf _U_, frame_data *fdata,
   int           err;
 
   /* init the wtap header for saving */
-  hdr.ts.tv_sec  = fdata->abs_secs;
-  hdr.ts.tv_usec = fdata->abs_usecs;
+  hdr.ts         = *(struct wtap_nstime *) &fdata->abs_ts;
   hdr.caplen     = fdata->cap_len;
   hdr.len        = fdata->pkt_len;
   hdr.pkt_encap  = fdata->lnk_t;
@@ -2852,42 +3161,20 @@ save_packet(capture_file *cf _U_, frame_data *fdata,
   return TRUE;
 }
 
-gboolean
-cf_save(char *fname, capture_file *cf, packet_range_t *range, guint save_format)
+cf_status_t
+cf_save(capture_file *cf, const char *fname, packet_range_t *range, guint save_format, gboolean compressed)
 {
   gchar        *from_filename;
-  gchar        *name_ptr, *save_msg, *save_fmt = " Saving: %s...";
-  size_t        msg_len;
   int           err;
   gboolean      do_copy;
   wtap_dumper  *pdh;
-  struct stat   infile, outfile;
   save_callback_args_t callback_args;
 
-  name_ptr = get_basename(fname);
-  msg_len = strlen(name_ptr) + strlen(save_fmt) + 2;
-  save_msg = g_malloc(msg_len);
-  snprintf(save_msg, msg_len, save_fmt, name_ptr);
-  statusbar_push_file_msg(save_msg);
-  g_free(save_msg);
+  cf_callback_invoke(cf_cb_file_safe_started, (gpointer) fname);
 
-  /*
-   * Check that the from file is not the same as to file
-   * We do it here so we catch all cases ...
-   * Unfortunately, the file requester gives us an absolute file
-   * name and the read file name may be relative (if supplied on
-   * the command line). From Joerg Mayer.
-   *
-   * This is a bit tricky on win32. The st_ino field is documented as:
-   * "The inode, and therefore st_ino, has no meaning in the FAT, ..."
-   * but it *is* set to zero if stat() returns without an error,
-   * so this is working, but maybe not quite the way expected. ULFL
-   */
-   infile.st_ino = 1;   /* These prevent us from getting equality         */
-   outfile.st_ino = 2;  /* If one or other of the files is not accessible */
-   stat(cf->filename, &infile);
-   stat(fname, &outfile);
-   if (infile.st_ino == outfile.st_ino) {
+  /* don't write over an existing file. */
+  /* this should've been already checked by our caller, just to be sure... */
+  if (file_exists(fname)) {
     simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
       "%sCapture file: \"%s\" already exists!%s\n\n"
       "Please choose a different filename.",
@@ -2897,11 +3184,7 @@ cf_save(char *fname, capture_file *cf, packet_range_t *range, guint save_format)
 
   packet_range_process_init(range);
 
-  /* Used to be :
-   * if (!save_filtered && !save_marked && !save_manual_range && 
-   *     !save_marked_range && !save_curr && save_format == cf->cd_t) {
-   */ 
-       
+
   if (packet_range_process_all(range) && save_format == cf->cd_t) {
     /* We're not filtering packets, and we're saving it in the format
        it's already in, so we can just move or copy the raw data. */
@@ -2911,7 +3194,7 @@ cf_save(char *fname, capture_file *cf, packet_range_t *range, guint save_format)
          capture, so it doesn't need to stay around under that name;
         first, try renaming the capture buffer file to the new name. */
 #ifndef _WIN32
-      if (rename(cf->filename, fname) == 0) {
+      if (eth_rename(cf->filename, fname) == 0) {
        /* That succeeded - there's no need to copy the source file. */
        from_filename = NULL;
        do_copy = FALSE;
@@ -2954,7 +3237,8 @@ cf_save(char *fname, capture_file *cf, packet_range_t *range, guint save_format)
     /* Either we're filtering packets, or we're saving in a different
        format; we can't do that by copying or moving the capture file,
        we have to do it by writing the packets out in Wiretap. */
-    pdh = wtap_dump_open(fname, save_format, cf->lnk_t, cf->snap, &err);
+    pdh = wtap_dump_open(fname, save_format, cf->lnk_t, cf->snap,
+               compressed, &err);
     if (pdh == NULL) {
       cf_open_failure_alert_box(fname, err, NULL, TRUE, save_format);
       goto fail;
@@ -2975,9 +3259,8 @@ cf_save(char *fname, capture_file *cf, packet_range_t *range, guint save_format)
        "range" since we initialized it. */
     callback_args.pdh = pdh;
     callback_args.fname = fname;
-    switch (process_specified_packets(cf, range, "Saving",
-                                      "selected packets", save_packet,
-                                      &callback_args)) {
+    switch (process_specified_packets(cf, range, "Saving", "selected packets",
+                                      TRUE, save_packet, &callback_args)) {
 
     case PSP_FINISHED:
       /* Completed successfully. */
@@ -3000,8 +3283,7 @@ cf_save(char *fname, capture_file *cf, packet_range_t *range, guint save_format)
     }
   }
 
-  /* Pop the "Saving:" message off the status bar. */
-  statusbar_pop_file_msg();
+  cf_callback_invoke(cf_cb_file_safe_finished, NULL);
 
   if (packet_range_process_all(range)) {
     /* We saved the entire capture, not just some packets from it.
@@ -3016,34 +3298,33 @@ cf_save(char *fname, capture_file *cf, packet_range_t *range, guint save_format)
        time if the file is large. */
     cf->user_saved = TRUE;
 
-    if ((err = cf_open(fname, FALSE, cf)) == 0) {
+    if ((cf_open(cf, fname, FALSE, &err)) == CF_OK) {
       /* XXX - report errors if this fails?
          What should we return if it fails or is aborted? */
       switch (cf_read(cf)) {
 
-      case READ_SUCCESS:
-      case READ_ERROR:
+      case CF_READ_OK:
+      case CF_READ_ERROR:
        /* Just because we got an error, that doesn't mean we were unable
           to read any of the file; we handle what we could get from the
           file. */
        break;
 
-      case READ_ABORTED:
+      case CF_READ_ABORTED:
        /* The user bailed out of re-reading the capture file; the
           capture file has been closed - just return (without
           changing any menu settings; "cf_close()" set them
           correctly for the "no capture file open" state). */
        break;
       }
-      set_menus_for_unsaved_capture_file(FALSE);
+      cf_callback_invoke(cf_cb_file_safe_reload_finished, NULL);
     }
   }
-  return TRUE;
+  return CF_OK;
 
 fail:
-  /* Pop the "Saving:" message off the status bar. */
-  statusbar_pop_file_msg();
-  return FALSE;
+  cf_callback_invoke(cf_cb_file_safe_failed, NULL);
+  return CF_ERROR;
 }
 
 static void
@@ -3063,21 +3344,21 @@ cf_open_failure_alert_box(const char *filename, int err, gchar *err_info,
     case WTAP_ERR_RANDOM_OPEN_PIPE:
       /* Seen only when opening a capture file for reading. */
       simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                   "The file \"%s\" is a pipe or FIFO; Ethereal cannot read pipe or FIFO files.",
+                   "The file \"%s\" is a pipe or FIFO; Wireshark can't read pipe or FIFO files.",
                    filename);
       break;
 
     case WTAP_ERR_FILE_UNKNOWN_FORMAT:
       /* Seen only when opening a capture file for reading. */
       simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                   "The file \"%s\" is not a capture file in a format Ethereal understands.",
+                   "The file \"%s\" isn't a capture file in a format Wireshark understands.",
                    filename);
       break;
 
     case WTAP_ERR_UNSUPPORTED:
       /* Seen only when opening a capture file for reading. */
       simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                   "The file \"%s\" is not a capture file in a format Ethereal understands.\n"
+                   "The file \"%s\" isn't a capture file in a format Wireshark understands.\n"
                    "(%s)",
                    filename, err_info);
       g_free(err_info);
@@ -3086,7 +3367,7 @@ cf_open_failure_alert_box(const char *filename, int err, gchar *err_info,
     case WTAP_ERR_CANT_WRITE_TO_PIPE:
       /* Seen only when opening a capture file for writing. */
       simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                   "The file \"%s\" is a pipe, and %s capture files cannot be "
+                   "The file \"%s\" is a pipe, and %s capture files can't be "
                    "written to a pipe.",
                    filename, wtap_file_type_string(file_type));
       break;
@@ -3094,16 +3375,16 @@ cf_open_failure_alert_box(const char *filename, int err, gchar *err_info,
     case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
       /* Seen only when opening a capture file for writing. */
       simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                   "Ethereal does not support writing capture files in that format.");
+                   "Wireshark doesn't support writing capture files in that format.");
       break;
 
     case WTAP_ERR_UNSUPPORTED_ENCAP:
       if (for_writing) {
        simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                     "Ethereal cannot save this capture in that format.");
+                     "Wireshark can't save this capture in that format.");
       } else {
        simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                     "The file \"%s\" is a capture for a network type that Ethereal doesn't support.\n"
+                     "The file \"%s\" is a capture for a network type that Wireshark doesn't support.\n"
                      "(%s)",
                      filename, err_info);
         g_free(err_info);
@@ -3113,10 +3394,10 @@ cf_open_failure_alert_box(const char *filename, int err, gchar *err_info,
     case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
       if (for_writing) {
        simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                     "Ethereal cannot save this capture in that format.");
+                     "Wireshark can't save this capture in that format.");
       } else {
        simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
-                     "The file \"%s\" is a capture for a network type that Ethereal doesn't support.",
+                     "The file \"%s\" is a capture for a network type that Wireshark doesn't support.",
                      filename);
       }
       break;
@@ -3155,6 +3436,11 @@ cf_open_failure_alert_box(const char *filename, int err, gchar *err_info,
                    filename);
       break;
 
+    case WTAP_ERR_COMPRESSION_NOT_SUPPORTED:
+      simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
+                   "Gzip compression not supported by this file type.");
+      break;
+
     default:
       simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
                    "The file \"%s\" could not be %s: %s.",
@@ -3169,24 +3455,24 @@ cf_open_failure_alert_box(const char *filename, int err, gchar *err_info,
   }
 }
 
-static char *
+static const char *
 file_rename_error_message(int err)
 {
-  char *errmsg;
+  const char *errmsg;
   static char errmsg_errno[1024+1];
 
   switch (err) {
 
   case ENOENT:
-    errmsg = "The path to the file \"%s\" does not exist.";
+    errmsg = "The path to the file \"%s\" doesn't exist.";
     break;
 
   case EACCES:
-    errmsg = "You do not have permission to move the capture file to \"%s\".";
+    errmsg = "You don't have permission to move the capture file to \"%s\".";
     break;
 
   default:
-    snprintf(errmsg_errno, sizeof(errmsg_errno),
+    g_snprintf(errmsg_errno, sizeof(errmsg_errno),
                    "The file \"%%s\" could not be moved: %s.",
                                wtap_strerror(err));
     errmsg = errmsg_errno;
@@ -3196,26 +3482,26 @@ file_rename_error_message(int err)
 }
 
 char *
-cf_read_error_message(int err, gchar *err_info)
+cf_read_error_message(int err, const gchar *err_info)
 {
   static char errmsg_errno[1024+1];
 
   switch (err) {
 
   case WTAP_ERR_UNSUPPORTED_ENCAP:
-      snprintf(errmsg_errno, sizeof(errmsg_errno),
-               "The file \"%%s\" has a packet with a network type that Ethereal doesn't support.\n(%s)",
+      g_snprintf(errmsg_errno, sizeof(errmsg_errno),
+               "The file \"%%s\" has a packet with a network type that Wireshark doesn't support.\n(%s)",
                err_info);
       break;
 
   case WTAP_ERR_BAD_RECORD:
-    snprintf(errmsg_errno, sizeof(errmsg_errno),
+    g_snprintf(errmsg_errno, sizeof(errmsg_errno),
             "An error occurred while reading from the file \"%%s\": %s.\n(%s)",
             wtap_strerror(err), err_info);
     break;
 
   default:
-    snprintf(errmsg_errno, sizeof(errmsg_errno),
+    g_snprintf(errmsg_errno, sizeof(errmsg_errno),
             "An error occurred while reading from the file \"%%s\": %s.",
             wtap_strerror(err));
     break;
@@ -3275,9 +3561,10 @@ cf_close_failure_alert_box(const char *filename, int err)
 
 /* Reload the current capture file. */
 void
-cf_reload() {
+cf_reload(capture_file *cf) {
   gchar *filename;
   gboolean is_tempfile;
+  int err;
 
   /* If the file could be opened, "cf_open()" calls "cf_close()"
      to get rid of state for the old capture file before filling in state
@@ -3287,22 +3574,22 @@ cf_reload() {
      a temporary file, mark it as not being a temporary file, and then
      reopen it as the type of file it was.
 
-     Also, "cf_close()" will free "cfile.filename", so we must make
+     Also, "cf_close()" will free "cf->filename", so we must make
      a copy of it first. */
-  filename = g_strdup(cfile.filename);
-  is_tempfile = cfile.is_tempfile;
-  cfile.is_tempfile = FALSE;
-  if (cf_open(filename, is_tempfile, &cfile) == 0) {
-    switch (cf_read(&cfile)) {
-
-    case READ_SUCCESS:
-    case READ_ERROR:
+  filename = g_strdup(cf->filename);
+  is_tempfile = cf->is_tempfile;
+  cf->is_tempfile = FALSE;
+  if (cf_open(cf, filename, is_tempfile, &err) == CF_OK) {
+    switch (cf_read(cf)) {
+
+    case CF_READ_OK:
+    case CF_READ_ERROR:
       /* Just because we got an error, that doesn't mean we were unable
          to read any of the file; we handle what we could get from the
          file. */
       break;
 
-    case READ_ABORTED:
+    case CF_READ_ABORTED:
       /* The user bailed out of re-reading the capture file; the
          capture file has been closed - just free the capture file name
          string and return (without changing the last containing
@@ -3311,13 +3598,13 @@ cf_reload() {
       return;
     }
   } else {
-    /* The open failed, so "cfile.is_tempfile" wasn't set to "is_tempfile".
-       Instead, the file was left open, so we should restore "cfile.is_tempfile"
+    /* The open failed, so "cf->is_tempfile" wasn't set to "is_tempfile".
+       Instead, the file was left open, so we should restore "cf->is_tempfile"
        ourselves.
 
        XXX - change the menu?  Presumably "cf_open()" will do that;
        make sure it does! */
-    cfile.is_tempfile = is_tempfile;
+    cf->is_tempfile = is_tempfile;
   }
   /* "cf_open()" made a copy of the file name we handed it, so
      we should free up our copy. */
@@ -3330,13 +3617,13 @@ cf_reload() {
  * displays a simple dialog window with the error message.
  */
 static gboolean
-copy_binary_file(char *from_filename, char *to_filename)
+copy_binary_file(const char *from_filename, const char *to_filename)
 {
   int           from_fd, to_fd, nread, nwritten, err;
   guint8        pd[65536];
 
   /* Copy the raw bytes of the file. */
-  from_fd = open(from_filename, O_RDONLY | O_BINARY);
+  from_fd = eth_open(from_filename, O_RDONLY | O_BINARY, 0000 /* no creation so don't matter */);
   if (from_fd < 0) {
     open_failure_alert_box(from_filename, errno, FALSE);
     goto done;
@@ -3347,23 +3634,23 @@ copy_binary_file(char *from_filename, char *to_filename)
      may open the file in text mode, not binary mode, but we want
      to copy the raw bytes of the file, so we need the output file
      to be open in binary mode. */
-  to_fd = open(to_filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
+  to_fd = eth_open(to_filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
   if (to_fd < 0) {
     open_failure_alert_box(to_filename, errno, TRUE);
-    close(from_fd);
+    eth_close(from_fd);
     goto done;
   }
 
-  while ((nread = read(from_fd, pd, sizeof pd)) > 0) {
-    nwritten = write(to_fd, pd, nread);
+  while ((nread = eth_read(from_fd, pd, sizeof pd)) > 0) {
+    nwritten = eth_write(to_fd, pd, nread);
     if (nwritten < nread) {
       if (nwritten < 0)
        err = errno;
       else
        err = WTAP_ERR_SHORT_WRITE;
       write_failure_alert_box(to_filename, err);
-      close(from_fd);
-      close(to_fd);
+      eth_close(from_fd);
+      eth_close(to_fd);
       goto done;
     }
   }
@@ -3372,12 +3659,12 @@ copy_binary_file(char *from_filename, char *to_filename)
     simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
                  "An error occurred while reading from the file \"%s\": %s.",
                  from_filename, strerror(err));
-    close(from_fd);
-    close(to_fd);
+    eth_close(from_fd);
+    eth_close(to_fd);
     goto done;
   }
-  close(from_fd);
-  if (close(to_fd) < 0) {
+  eth_close(from_fd);
+  if (eth_close(to_fd) < 0) {
     write_failure_alert_box(to_filename, errno);
     goto done;
   }