Fix return type for frame_data_init()
[obnox/wireshark/wip.git] / capture.c
index b93fcc1a22df8e85791d274d5579578e13778917..d6461eec7d87f5838ce492bc211b1ba2d6743414 100644 (file)
--- a/capture.c
+++ b/capture.c
@@ -32,6 +32,7 @@
 #include <unistd.h>
 #endif
 
+#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
@@ -82,7 +83,6 @@
 #include "capture_ui_utils.h"
 #include "util.h"
 #include "capture-pcap-util.h"
-#include "alert_box.h"
 #include "simple_dialog.h"
 #include <epan/prefs.h>
 
@@ -90,7 +90,7 @@
 #include "capture-wpcap.h"
 #endif
 #include "ui_util.h"
-#include "file_util.h"
+#include "wsutil/file_util.h"
 #include "log.h"
 
 typedef struct if_stat_cache_item_s {
@@ -104,6 +104,62 @@ struct if_stat_cache_s {
     GList *cache_list;  /* List of if_stat_chache_entry_t */
 };
 
+/* this callback mechanism should possibly be replaced by the g_signal_...() stuff (if I only would know how :-) */
+typedef struct {
+    capture_callback_t cb_fct;
+    gpointer user_data;
+} capture_callback_data_t;
+
+static GList *capture_callbacks = NULL;
+
+static void
+capture_callback_invoke(int event, capture_options *capture_opts)
+{
+    capture_callback_data_t *cb;
+    GList *cb_item = capture_callbacks;
+
+    /* there should be at least one interested */
+    g_assert(cb_item != NULL);
+
+    while(cb_item != NULL) {
+        cb = cb_item->data;
+        cb->cb_fct(event, capture_opts, cb->user_data);
+        cb_item = g_list_next(cb_item);
+    }
+}
+
+
+void
+capture_callback_add(capture_callback_t func, gpointer user_data)
+{
+    capture_callback_data_t *cb;
+
+    cb = g_malloc(sizeof(capture_callback_data_t));
+    cb->cb_fct = func;
+    cb->user_data = user_data;
+
+    capture_callbacks = g_list_append(capture_callbacks, cb);
+}
+
+void
+capture_callback_remove(capture_callback_t func)
+{
+    capture_callback_data_t *cb;
+    GList *cb_item = capture_callbacks;
+
+    while(cb_item != NULL) {
+        cb = cb_item->data;
+        if(cb->cb_fct == func) {
+            capture_callbacks = g_list_remove(capture_callbacks, cb);
+            g_free(cb);
+            return;
+        }
+        cb_item = g_list_next(cb_item);
+    }
+
+    g_assert_not_reached();
+}
+
 /**
  * Start a capture.
  *
@@ -135,14 +191,14 @@ capture_start(capture_options *capture_opts)
       capture_opts->state = CAPTURE_STOPPED;
   } else {
       /* the capture child might not respond shortly after bringing it up */
-      /* (especially it will block, if no input coming from an input capture pipe (e.g. mkfifo) is coming in) */
+      /* (for example: it will block if no input arrives from an input capture pipe (e.g. mkfifo)) */
 
-      /* to prevent problems, bring the main GUI into "capture mode" right after successfully */
-      /* spawn/exec the capture child, without waiting for any response from it */
-      cf_callback_invoke(cf_cb_live_capture_prepared, capture_opts);
+      /* to prevent problems, bring the main GUI into "capture mode" right after a successful */
+      /* spawn/exec of the capture child, without waiting for any response from it */
+      capture_callback_invoke(capture_cb_capture_prepared, capture_opts);
 
       if(capture_opts->show_info)
-        capture_info_open(capture_opts->iface);
+        capture_info_open(capture_opts);
   }
 
   return ret;
@@ -154,7 +210,7 @@ capture_stop(capture_options *capture_opts)
 {
   g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "Capture Stop ...");
 
-  cf_callback_invoke(cf_cb_live_capture_stopping, capture_opts);
+  capture_callback_invoke(capture_cb_capture_stopping, capture_opts);
 
   /* stop the capture child gracefully */
   sync_pipe_stop(capture_opts);
@@ -182,7 +238,7 @@ capture_kill_child(capture_options *capture_opts)
 
 
 
-/* We've succeeded a (non real-time) capture, try to read it into a new capture file */
+/* We've succeeded in doing a (non real-time) capture; try to read it into a new capture file */
 static gboolean
 capture_input_read_all(capture_options *capture_opts, gboolean is_tempfile, gboolean drops_known,
 guint32 drops)
@@ -192,13 +248,12 @@ guint32 drops)
 
   /* Capture succeeded; attempt to open the capture file. */
   if (cf_open(capture_opts->cf, capture_opts->save_file, is_tempfile, &err) != CF_OK) {
-    /* We're not doing a capture any more, so we don't have a save
-       file. */
+    /* We're not doing a capture any more, so we don't have a save file. */
     return FALSE;
   }
 
   /* Set the read filter to NULL. */
-  /* XXX - this is odd here, try to put it somewhere, where it fits better */
+  /* XXX - this is odd here; try to put it somewhere where it fits better */
   cf_set_rfcode(capture_opts->cf, NULL);
 
   /* Get the packet-drop statistics.
@@ -250,7 +305,7 @@ guint32 drops)
     return FALSE;
   }
 
-  /* if we didn't captured even a single packet, close the file again */
+  /* if we didn't capture even a single packet, close the file again */
   if(cf_get_packet_count(capture_opts->cf) == 0 && !capture_opts->restart) {
     simple_dialog(ESD_TYPE_INFO, ESD_BTN_OK,
 "%sNo packets captured!%s\n"
@@ -292,10 +347,10 @@ capture_input_new_file(capture_options *capture_opts, gchar *new_file)
 
   /* free the old filename */
   if(capture_opts->save_file != NULL) {
-    /* we start a new capture file, close the old one (if we had one before) */
+    /* we start a new capture file, close the old one (if we had one before). */
     /* (we can only have an open capture file in real_time_mode!) */
     if( ((capture_file *) capture_opts->cf)->state != FILE_CLOSED) {
-        cf_callback_invoke(cf_cb_live_capture_update_finished, capture_opts->cf);
+        capture_callback_invoke(capture_cb_capture_update_finished, capture_opts);
         cf_finish_tail(capture_opts->cf, &err);
         cf_close(capture_opts->cf);
     }
@@ -303,7 +358,7 @@ capture_input_new_file(capture_options *capture_opts, gchar *new_file)
     is_tempfile = FALSE;
     cf_set_tempfile(capture_opts->cf, FALSE);
   } else {
-    /* we didn't had a save_file before, must be a tempfile */
+    /* we didn't have a save_file before; must be a tempfile */
     is_tempfile = TRUE;
     cf_set_tempfile(capture_opts->cf, TRUE);
   }
@@ -332,9 +387,9 @@ capture_input_new_file(capture_options *capture_opts, gchar *new_file)
   }
 
   if(capture_opts->real_time_mode) {
-    cf_callback_invoke(cf_cb_live_capture_update_started, capture_opts);
+    capture_callback_invoke(capture_cb_capture_update_started, capture_opts);
   } else {
-    cf_callback_invoke(cf_cb_live_capture_fixed_started, capture_opts);
+    capture_callback_invoke(capture_cb_capture_fixed_started, capture_opts);
   }
   capture_opts->state = CAPTURE_RUNNING;
 
@@ -362,7 +417,7 @@ capture_input_new_packets(capture_options *capture_opts, int to_read)
          file.
 
          XXX - abort on a read error? */
-         cf_callback_invoke(cf_cb_live_capture_update_continue, capture_opts->cf);
+         capture_callback_invoke(capture_cb_capture_update_continue, capture_opts);
       break;
 
     case CF_READ_ABORTED:
@@ -372,14 +427,14 @@ capture_input_new_packets(capture_options *capture_opts, int to_read)
       break;
     }
   } else {
-    /* increase capture file packet counter by the number or incoming packets */
+    /* increase the capture file packet counter by the number of incoming packets */
     cf_set_packet_count(capture_opts->cf,
         cf_get_packet_count(capture_opts->cf) + to_read);
 
-    cf_callback_invoke(cf_cb_live_capture_fixed_continue, capture_opts->cf);
+    capture_callback_invoke(capture_cb_capture_fixed_continue, capture_opts);
   }
 
-  /* update the main window, so we get events (e.g. from the stop toolbar button) */
+  /* update the main window so we get events (e.g. from the stop toolbar button) */
   main_window_update();
 
   if(capture_opts->show_info)
@@ -390,9 +445,9 @@ capture_input_new_packets(capture_options *capture_opts, int to_read)
 /* Capture child told us how many dropped packets it counted.
  */
 void
-capture_input_drops(capture_options *capture_opts, int dropped)
+capture_input_drops(capture_options *capture_opts, guint32 dropped)
 {
-  g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_INFO, "%d packet%s dropped", dropped, plurality(dropped, "", "s"));
+  g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_INFO, "%u packet%s dropped", dropped, plurality(dropped, "", "s"));
 
   g_assert(capture_opts->state == CAPTURE_RUNNING);
 
@@ -494,13 +549,13 @@ capture_input_closed(capture_options *capture_opts)
     g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "Capture stopped!");
     g_assert(capture_opts->state == CAPTURE_PREPARING || capture_opts->state == CAPTURE_RUNNING);
 
-    /* if we didn't started the capture, do a fake start */
-    /* (happens if we got an error message - we won't get a filename then) */
+    /* if we didn't start the capture, do a fake start. */
+    /* (happens if we got an error message - we won't get a filename then). */
     if(capture_opts->state == CAPTURE_PREPARING) {
         if(capture_opts->real_time_mode) {
-            cf_callback_invoke(cf_cb_live_capture_update_started, capture_opts);
+            capture_callback_invoke(capture_cb_capture_update_started, capture_opts);
         } else {
-            cf_callback_invoke(cf_cb_live_capture_fixed_started, capture_opts);
+            capture_callback_invoke(capture_cb_capture_fixed_started, capture_opts);
         }
     }
 
@@ -512,10 +567,10 @@ capture_input_closed(capture_options *capture_opts)
 
         /* XXX: If -Q (quit-after-cap) then cf->count clr'd below so save it first */
        packet_count_save = cf_get_packet_count(capture_opts->cf);
-        /* Tell the GUI, we are not doing a capture any more.
-                  Must be done after the cf_finish_tail(), so file lengths are displayed
-                  correct. */
-        cf_callback_invoke(cf_cb_live_capture_update_finished, capture_opts->cf);
+        /* Tell the GUI we are not doing a capture any more.
+                  Must be done after the cf_finish_tail(), so file lengths are 
+                   correctly displayed */
+        capture_callback_invoke(capture_cb_capture_update_finished, capture_opts);
 
         /* Finish the capture. */
         switch (status) {
@@ -556,7 +611,7 @@ capture_input_closed(capture_options *capture_opts)
 
     } else {
         /* first of all, we are not doing a capture any more */
-        cf_callback_invoke(cf_cb_live_capture_fixed_finished, capture_opts->cf);
+        capture_callback_invoke(capture_cb_capture_fixed_finished, capture_opts);
 
         /* this is a normal mode capture and if no error happened, read in the capture file data */
         if(capture_opts->save_file != NULL) {
@@ -580,7 +635,7 @@ capture_input_closed(capture_options *capture_opts)
     if(capture_opts->restart) {
         capture_opts->restart = FALSE;
 
-        eth_unlink(capture_opts->save_file);
+        ws_unlink(capture_opts->save_file);
 
         /* if it was a tempfile, throw away the old filename (so it will become a tempfile again) */
         if(cf_is_tempfile(capture_opts->cf)) {
@@ -600,7 +655,8 @@ capture_input_closed(capture_options *capture_opts)
 /**
  * Fetch the interface list from a child process (dumpcap).
  *
- * @return A GList containing if_info_t structs if successful, NULL otherwise.
+ * @return A GList containing if_info_t structs if successful, NULL (with err and possibly err_str set) otherwise.
+ *
  */
 
 /* XXX - We parse simple text output to get our interface list.  Should
@@ -623,10 +679,7 @@ capture_interface_list(int *err, char **err_str)
     if (*err != 0) {
         g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_MESSAGE, "Capture Interface List failed!");
         if (err_str) {
-            if (*err_str)
-                *err_str = msg;
-            else
-                g_free(msg);
+            *err_str = msg;
         } else {
             g_free(msg);
         }
@@ -634,7 +687,11 @@ capture_interface_list(int *err, char **err_str)
     }
 
     /* Split our lines */
+#ifdef _WIN32
+    raw_list = g_strsplit(msg, "\r\n", 0);
+#else
     raw_list = g_strsplit(msg, "\n", 0);
+#endif
     g_free(msg);
 
     for (i = 0; raw_list[i] != NULL; i++) {
@@ -684,9 +741,9 @@ capture_interface_list(int *err, char **err_str)
 
     /* Check to see if we built a list */
     if (if_list == NULL) {
-        if (err_str && *err_str)
-            *err_str = g_strdup("No interfaces found");
         *err = NO_INTERFACES_FOUND;
+        if (err_str)
+            *err_str = g_strdup("No interfaces found");
     }
     return if_list;
 }
@@ -717,7 +774,11 @@ capture_pcap_linktype_list(const gchar *ifname, char **err_str)
     }
 
     /* Split our lines */
+#ifdef _WIN32
+    raw_list = g_strsplit(msg, "\r\n", 0);
+#else
     raw_list = g_strsplit(msg, "\n", 0);
+#endif
     g_free(msg);
 
     for (i = 0; raw_list[i] != NULL; i++) {