Update some links.
[obnox/wireshark/wip.git] / merge.c
diff --git a/merge.c b/merge.c
index 1968d245f098dc89118e48061a5df00fb17b72cb..b64d65baeedbb91ec3d94a4e10f4ab670d9383d7 100644 (file)
--- a/merge.c
+++ b/merge.c
@@ -1,6 +1,6 @@
-/* Combine two dump files, either by appending or by merging by timestamp
+/* Combine multiple dump files, either by appending or by merging by timestamp
  *
- * $Id: merge.c,v 1.2 2004/06/18 07:41:20 ulfl Exp $
+ * $Id$
  *
  * Written by Scott Renfro <scott@renfro.org> based on
  * editcap by Richard Sharpe and Guy Harris
@@ -14,6 +14,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <glib.h>
+#include <errno.h>
 
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 
 #include <string.h>
 #include "wtap.h"
-
-#ifdef NEED_GETOPT_H
-#include "getopt.h"
-#endif
-
-#include "cvsversion.h"
-
-/*
- * Global variables
- */
-static int verbose = 0;                      /* Not so verbose         */
-
-/*
- * Structures to manage our files
- */
-typedef struct in_file_t {
-  const char *filename;
-  wtap       *wth;
-  int         err;
-  gchar      *err_info;
-  long        data_offset;
-  gboolean    ok;
-} in_file_t;
-
-typedef struct out_file_t {
-  const char  *filename;
-  wtap_dumper *pdh;
-  int          file_type;
-  int          frame_type;
-  unsigned int snaplen;
-  int          count;
-} out_file_t;
-static out_file_t out_file;
+#include "merge.h"
 
 /*
- * Routine to write frame to output file
+ * Scan through the arguments and open the input files
  */
-static gboolean
-write_frame(guchar *user, const struct wtap_pkthdr *phdr, long offset _U_,
-            union wtap_pseudo_header *pseudo_header, const guchar *buf)
-{
-  wtap_dumper *pdh = (wtap_dumper*)user;
-  int err;
-  struct wtap_pkthdr snap_phdr;
-
-  if (verbose)
-    printf("Record: %u\n", out_file.count++);
-
-  /* We simply write it, perhaps after truncating it; we could do other
-   * things, like modify it. */
-  if (out_file.snaplen != 0 && phdr->caplen > out_file.snaplen) {
-    snap_phdr = *phdr;
-    snap_phdr.caplen = out_file.snaplen;
-    phdr = &snap_phdr;
-  }
-
-  if (!wtap_dump(pdh, phdr, pseudo_header, buf, &err)) {
-    fprintf(stderr, "mergecap: Error writing to %s: %s\n",
-            out_file.filename, wtap_strerror(err));
-    return FALSE;
-  }
-
-  return TRUE;
-}
-
-
-static gboolean
-append_loop(wtap *wth, int count, wtap_handler callback, guchar* user, int *err,
-    gchar **err_info)
+gboolean
+merge_open_in_files(int in_file_count, char *const *in_file_names,
+                    merge_in_file_t **in_files, int *err, gchar **err_info,
+                    int *err_fileno)
 {
-       long            data_offset;
-       int             loop = 0;
-
-       /* Start by clearing error flag */
-       *err = 0;
+  int i, j;
+  size_t files_size = in_file_count * sizeof(merge_in_file_t);
+  merge_in_file_t *files;
+  gint64 size;
 
-       while ( (wtap_read(wth, err, err_info, &data_offset)) ) {
-               if(!write_frame(user, wtap_phdr(wth), data_offset,
-                   wtap_pseudoheader(wth), wtap_buf_ptr(wth)))
-            return FALSE;
-               if (count > 0 && ++loop >= count)
-                       break;
-       }
+  files = (merge_in_file_t *)g_malloc(files_size);
+  *in_files = files;
 
-    if (*err == 0) {
-               return TRUE;    /* success */
-    } else {
-               return FALSE;   /* failure */
+  for (i = 0; i < in_file_count; i++) {
+    files[i].filename    = in_file_names[i];
+    files[i].wth         = wtap_open_offline(in_file_names[i], err, err_info, FALSE);
+    files[i].data_offset = 0;
+    files[i].state       = PACKET_NOT_PRESENT;
+    if (!files[i].wth) {
+      /* Close the files we've already opened. */
+      for (j = 0; j < i; j++)
+        wtap_close(files[j].wth);
+      *err_fileno = i;
+      return FALSE;
     }
-}
-
-
-
-/*
- * routine to concatenate files
- */
-static void
-append_files(int count, in_file_t in_files[], out_file_t *out_file)
-{
-  int i;
-  int err;
-  gchar *err_info;
-
-  for (i = 0; i < count; i++) {
-    if (!append_loop(in_files[i].wth, 0, write_frame,
-                   (guchar*)out_file->pdh, &err, &err_info)) {
-          fprintf(stderr, "mergecap: Error appending %s to %s: %s\n",
-                  in_files[i].filename, out_file->filename, wtap_strerror(err));
-          switch (err) {
-
-          case WTAP_ERR_UNSUPPORTED:
-          case WTAP_ERR_UNSUPPORTED_ENCAP:
-          case WTAP_ERR_BAD_RECORD:
-           fprintf(stderr, "(%s)\n", err_info);
-
-           break;
-      }
+    size = wtap_file_size(files[i].wth, err);
+    if (size == -1) {
+      for (j = 0; j <= i; j++)
+        wtap_close(files[j].wth);
+      *err_fileno = i;
+      return FALSE;
     }
+    files[i].size = size;
   }
-}
-
-
-/*
- * returns TRUE if first argument is earlier than second
- */
-static gboolean
-is_earlier(struct timeval *l, struct timeval *r) {
-  if (l->tv_sec > r->tv_sec) {  /* left is later */
-    return FALSE;
-  } else if (l->tv_sec < r->tv_sec) { /* left is earlier */
-    return TRUE;
-  } else if (l->tv_usec > r->tv_usec) { /* tv_sec equal, l.usec later */
-    return FALSE;
-  }
-  /* either one < two or one == two
-   * either way, return one
-   */
   return TRUE;
 }
 
-
-/*
- * returns index of earliest timestamp in set of input files
- * or -1 if no valid files remain
- */
-static int
-earliest(int count, in_file_t in_files[]) {
-  int i;
-  int ei = -1;
-  struct timeval tv = {LONG_MAX, LONG_MAX};
-
-  for (i = 0; i < count; i++) {
-    struct wtap_pkthdr *phdr = wtap_phdr(in_files[i].wth);
-
-    if (in_files[i].ok && is_earlier(&(phdr->ts), &tv)) {
-      tv = phdr->ts;
-      ei = i;
-    }
-  }
-  return ei;
-}
-
 /*
- * actually merge the files
+ * Scan through and close each input file
  */
-static gboolean
-merge(int count, in_file_t in_files[], out_file_t *out_file)
+void
+merge_close_in_files(int count, merge_in_file_t in_files[])
 {
   int i;
-
-  /* prime the pump (read in first frame from each file) */
   for (i = 0; i < count; i++) {
-    in_files[i].ok = wtap_read(in_files[i].wth, &(in_files[i].err),
-                               &(in_files[i].err_info),
-                               &(in_files[i].data_offset));
-  }
-
-  /* now keep writing the earliest frame until we're out of frames */
-  while ( -1 != (i = earliest(count, in_files))) {
-
-    /* write out earliest frame, and fetch another from its
-     * input file
-     */
-    if(!write_frame((guchar*)out_file->pdh,
-                wtap_phdr(in_files[i].wth),
-                in_files[i].data_offset,
-                wtap_pseudoheader(in_files[i].wth),
-                wtap_buf_ptr(in_files[i].wth)))
-                return FALSE;
-    in_files[i].ok = wtap_read(in_files[i].wth, &(in_files[i].err),
-                               &(in_files[i].err_info),
-                               &(in_files[i].data_offset));
+    wtap_close(in_files[i].wth);
   }
-
-  return TRUE;
 }
 
-
 /*
  * Select an output frame type based on the input files
  * From Guy: If all files have the same frame type, then use that.
@@ -231,8 +88,8 @@ merge(int count, in_file_t in_files[], out_file_t *out_file)
  *           then the wtap_dump_open call will fail with a reasonable
  *           error condition.
  */
-static int
-select_frame_type(int count, in_file_t files[])
+int
+merge_select_frame_type(int count, merge_in_file_t files[])
 {
   int i;
   int selected_frame_type;
@@ -243,82 +100,18 @@ select_frame_type(int count, in_file_t files[])
     int this_frame_type = wtap_file_encap(files[i].wth);
     if (selected_frame_type != this_frame_type) {
       selected_frame_type = WTAP_ENCAP_PER_PACKET;
-      if (verbose) {
-        fprintf(stderr, "mergecap: multiple frame encapsulation types detected\n");
-        fprintf(stderr, "          defaulting to WTAP_ENCAP_PER_PACKET\n");
-        fprintf(stderr, "          %s had type %s (%s)\n",
-                files[0].filename,
-                wtap_encap_string(selected_frame_type),
-                wtap_encap_short_string(selected_frame_type));
-        fprintf(stderr, "          %s had type %s (%s)\n",
-                files[i].filename,
-                wtap_encap_string(this_frame_type),
-                wtap_encap_short_string(this_frame_type));
-      }
       break;
     }
   }
 
-  if (verbose) {
-      fprintf(stderr, "mergecap: selected frame_type %s (%s)\n",
-              wtap_encap_string(selected_frame_type),
-              wtap_encap_short_string(selected_frame_type));
-  }
-
   return selected_frame_type;
 }
 
-
-/*
- * Close the output file
- */
-static void
-close_outfile(out_file_t *out_file)
-{
-  int err;
-  if (!wtap_dump_close(out_file->pdh, &err)) {
-    fprintf(stderr, "mergecap: Error closing file %s: %s\n",
-            out_file->filename, wtap_strerror(err));
-  }
-}
-
-
-/*
- * Open the output file
- *
- * Return FALSE if file cannot be opened (so caller can clean up)
- */
-static gboolean
-open_outfile(out_file_t *out_file, int snapshot_len)
-{
-  int err;
-
-  if (!out_file) {
-    fprintf(stderr, "mergecap: internal error (null out_file)\n");
-    return FALSE;
-  }
-
-  /* Allow output to stdout by using - */
-  if (strncmp(out_file->filename, "-", 2) == 0)
-    out_file->filename = "";
-
-
-  out_file->pdh = wtap_dump_open(out_file->filename, out_file->file_type,
-                                 out_file->frame_type, snapshot_len, &err);
-  if (!out_file->pdh) {
-    fprintf(stderr, "mergecap: Can't open/create %s:\n", out_file->filename);
-    fprintf(stderr, "          %s\n", wtap_strerror(err));
-    return FALSE;
-  }
-  return TRUE;
-}
-
-
 /*
  * Scan through input files and find maximum snapshot length
  */
-static int
-max_snapshot_length(int count, in_file_t in_files[])
+int
+merge_max_snapshot_length(int count, merge_in_file_t in_files[])
 {
   int i;
   int max_snapshot = 0;
@@ -336,122 +129,112 @@ max_snapshot_length(int count, in_file_t in_files[])
   return max_snapshot;
 }
 
-
 /*
- * Scan through and close each input file
+ * returns TRUE if first argument is earlier than second
  */
-static void
-close_in_files(int count, in_file_t in_files[])
-{
-  int i;
-  for (i = 0; i < count; i++) {
-    wtap_close(in_files[i].wth);
+static gboolean
+is_earlier(struct wtap_nstime *l, struct wtap_nstime *r) {
+  if (l->secs > r->secs) {  /* left is later */
+    return FALSE;
+  } else if (l->secs < r->secs) { /* left is earlier */
+    return TRUE;
+  } else if (l->nsecs > r->nsecs) { /* tv_sec equal, l.usec later */
+    return FALSE;
   }
+  /* either one < two or one == two
+   * either way, return one
+   */
+  return TRUE;
 }
 
-
 /*
- * Scan through the arguments and open the input files
+ * Read the next packet, in chronological order, from the set of files
+ * to be merged.
  */
-static int
-open_in_files(int in_file_count, char *argv[], in_file_t *in_files[], int *err)
+wtap *
+merge_read_packet(int in_file_count, merge_in_file_t in_files[], int *err,
+                  gchar **err_info)
 {
   int i;
-  int count = 0;
-  gchar *err_info;
-  in_file_t *files;
-  int files_size = in_file_count * sizeof(in_file_t);
-
-
-  files = g_malloc(files_size);
-  *in_files = files;
+  int ei = -1;
+  struct wtap_nstime tv = { sizeof(time_t) > sizeof(int) ? LONG_MAX : INT_MAX, INT_MAX };
+  struct wtap_pkthdr *phdr;
 
+  /*
+   * Make sure we have a packet available from each file, if there are any
+   * packets left in the file in question, and search for the packet
+   * with the earliest time stamp.
+   */
   for (i = 0; i < in_file_count; i++) {
-    files[count].filename    = argv[i];
-    files[count].wth         = wtap_open_offline(argv[i], err, &err_info, FALSE);
-    files[count].err         = 0;
-    files[count].data_offset = 0;
-    files[count].ok          = TRUE;
-    if (!files[count].wth) {
-      fprintf(stderr, "merge: skipping %s: %s\n", argv[i],
-              wtap_strerror(*err));
-      switch (*err) {
-
-      case WTAP_ERR_UNSUPPORTED:
-      case WTAP_ERR_UNSUPPORTED_ENCAP:
-      case WTAP_ERR_BAD_RECORD:
-        fprintf(stderr, "(%s)\n", err_info);
-        g_free(err_info);
-        break;
-      }
-    } else {
-      if (verbose) {
-        fprintf(stderr, "mergecap: %s is type %s.\n", argv[i],
-                wtap_file_type_string(wtap_file_type(files[count].wth)));
+    if (in_files[i].state == PACKET_NOT_PRESENT) {
+      /*
+       * No packet available, and we haven't seen an error or EOF yet,
+       * so try to read the next packet.
+       */
+      if (!wtap_read(in_files[i].wth, err, err_info, &in_files[i].data_offset)) {
+        if (*err != 0) {
+          in_files[i].state = GOT_ERROR;
+          return NULL;
+        }
+        in_files[i].state = AT_EOF;
+      } else
+        in_files[i].state = PACKET_PRESENT;
+    }
+    
+    if (in_files[i].state == PACKET_PRESENT) {
+      phdr = wtap_phdr(in_files[i].wth);
+      if (is_earlier(&phdr->ts, &tv)) {
+        tv = phdr->ts;
+        ei = i;
       }
-      count++;
     }
   }
-  if (verbose)
-    fprintf(stderr, "mergecap: opened %d of %d input files\n", count,
-    in_file_count);
 
-  return count;
-}
+  if (ei == -1) {
+    /* All the streams are at EOF.  Return an EOF indication. */
+    *err = 0;
+    return NULL;
+  }
 
+  /* We'll need to read another packet from this file. */
+  in_files[ei].state = PACKET_NOT_PRESENT;
 
-gboolean
-merge_two_files(char *out_filename, char *in_file0, char *in_file1, gboolean do_append, int *err)
-{
-  extern char *optarg;
-  extern int   optind;
-  int          in_file_count = 0;
-  in_file_t   *in_files      = NULL;
-  char        *in_filenames[2];
+  /* Return a pointer to the wtap structure for the file with that frame. */
+  return in_files[ei].wth;
+}
 
-  /* initialize out_file */
-  out_file.filename   = out_filename;
-  out_file.pdh        = NULL;              /* wiretap dumpfile */
-  out_file.file_type  = WTAP_FILE_PCAP;    /* default to "libpcap" */
-  out_file.frame_type = -2;                /* leave type alone */
-  out_file.snaplen    = 0;                 /* no limit */
-  out_file.count      = 1;                 /* frames output */
+/*
+ * Read the next packet, in file sequence order, from the set of files
+ * to be merged.
+ */
+wtap *
+merge_append_read_packet(int in_file_count, merge_in_file_t in_files[],
+                         int *err, gchar **err_info)
+{
+  int i;
 
-  /* check for proper args; at a minimum, must have an output
-   * filename and one input file
+  /*
+   * Find the first file not at EOF, and read the next packet from it.
    */
-  in_file_count = 2;
-
-  in_filenames[0] = in_file0;
-  in_filenames[1] = in_file1;
-
-  /* open the input files */
-  in_file_count = open_in_files(in_file_count, in_filenames, &in_files, err);
-  if (in_file_count < 2) {
-    fprintf(stderr, "mergecap: Not all input files valid\n");
-    return FALSE;
+  for (i = 0; i < in_file_count; i++) {
+    if (in_files[i].state == AT_EOF)
+      continue; /* This file is already at EOF */
+    if (wtap_read(in_files[i].wth, err, err_info, &in_files[i].data_offset))
+      break; /* We have a packet */
+    if (*err != 0) {
+      /* Read error - quit immediately. */
+      in_files[i].state = GOT_ERROR;
+      return NULL;
+    }
+    /* EOF - flag this file as being at EOF, and try the next one. */
+    in_files[i].state = AT_EOF;
   }
-
-  /* set the outfile frame type */
-  if (out_file.frame_type == -2)
-    out_file.frame_type = select_frame_type(in_file_count, in_files);
-
-  /* open the outfile */
-  if (!open_outfile(&out_file, max_snapshot_length(in_file_count, in_files))) {
-    close_in_files(in_file_count, in_files);
-    return FALSE;
+  if (i == in_file_count) {
+    /* All the streams are at EOF.  Return an EOF indication. */
+    *err = 0;
+    return NULL;
   }
 
-  /* do the merge (or append) */
-  if (do_append)
-    append_files(in_file_count, in_files, &out_file);
-  else
-    merge(in_file_count, in_files, &out_file);
-
-  close_in_files(in_file_count, in_files);
-  close_outfile(&out_file);
-
-  free(in_files);
-
-  return TRUE;
+  /* Return a pointer to the wtap structure for the file with that frame. */
+  return in_files[i].wth;
 }