Have the Etherenet and PPP dissectors register themselves, and have
[obnox/wireshark/wip.git] / packet-raw.c
index be745c023716d75ab0af72aeae8c951e641da065..472fe480f73d035746e71f6644e814a7a22b3440 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-raw.c
  * Routines for raw packet disassembly
  *
- * $Id: packet-raw.c,v 1.4 1998/10/10 03:32:15 gerald Exp $
+ * $Id: packet-raw.c,v 1.21 2000/11/19 02:00:03 guy Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@zing.org>
 # include <sys/types.h>
 #endif
 
-#include <gtk/gtk.h>
-#include <stdio.h>
-#include <pcap.h>
-
-#include "ethereal.h"
+#include <string.h>
+#include <glib.h>
 #include "packet.h"
+#include "packet-raw.h"
+#include "packet-ip.h"
+#include "packet-ppp.h"
+
+static gint ett_raw = -1;
+
+static const char zeroes[10];
+
+static dissector_handle_t ip_handle;
+static dissector_handle_t ppp_handle;
+
+void
+capture_raw(const u_char *pd, packet_counts *ld)
+{
+  /* So far, the only time we get raw connection types are with Linux and
+   * Irix PPP connections.  We can't tell what type of data is coming down
+   * the line, so our safest bet is IP. - GCC
+   */
+   
+  /* Currently, the Linux 2.1.xxx PPP driver passes back some of the header
+   * sometimes.  This check should be removed when 2.2 is out.
+   */
+  if (BYTES_ARE_IN_FRAME(0,2) && pd[0] == 0xff && pd[1] == 0x03) {
+    capture_ppp(pd, 0, ld);
+  }
+  /* The Linux ISDN driver sends a fake MAC address before the PPP header
+   * on its ippp interfaces... */
+  else if (BYTES_ARE_IN_FRAME(0,8) && pd[6] == 0xff && pd[7] == 0x03) {
+    capture_ppp(pd, 6, ld);
+  }
+  /* ...except when it just puts out one byte before the PPP header... */
+  else if (BYTES_ARE_IN_FRAME(0,3) && pd[1] == 0xff && pd[2] == 0x03) {
+    capture_ppp(pd, 1, ld);
+  }
+  /* ...and if the connection is currently down, it sends 10 bytes of zeroes
+   * instead of a fake MAC address and PPP header. */
+  else if (BYTES_ARE_IN_FRAME(0,10) && memcmp(pd, zeroes, 10) == 0) {
+    capture_ip(pd, 10, ld);
+  }
+  else {
+    capture_ip(pd, 0, ld);
+  }
+}
 
 void
-dissect_raw( const u_char *pd, frame_data *fd, GtkTree *tree ) {
-  GtkWidget *ti, *fh_tree;
+dissect_raw(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+  proto_tree   *fh_tree;
+  proto_item   *ti;
+  tvbuff_t     *next_tvb;
 
   /* load the top pane info. This should be overwritten by
      the next protocol in the stack */
-  if(fd->win_info[COL_NUM]) {
-    strcpy(fd->win_info[COL_SOURCE], "N/A" );
-    strcpy(fd->win_info[COL_DESTINATION], "N/A" );
-    strcpy(fd->win_info[COL_INFO], "Raw packet data" );
-  }
+  if(check_col(pinfo->fd, COL_RES_DL_SRC))
+    col_add_str(pinfo->fd, COL_RES_DL_SRC, "N/A" );
+  if(check_col(pinfo->fd, COL_RES_DL_DST))
+    col_add_str(pinfo->fd, COL_RES_DL_DST, "N/A" );
+  if(check_col(pinfo->fd, COL_PROTOCOL))
+    col_add_str(pinfo->fd, COL_PROTOCOL, "N/A" );
+  if(check_col(pinfo->fd, COL_INFO))
+    col_add_str(pinfo->fd, COL_INFO, "Raw packet data" );
 
   /* populate a tree in the second pane with the status of the link
      layer (ie none) */
-  if(tree) {
-    ti = add_item_to_tree( GTK_WIDGET(tree), 0, 0,
-                          "Raw packet data (%d on link, %d captured)",
-                          fd->pkt_len, fd->cap_len );
-    fh_tree = gtk_tree_new();
-    add_subtree(ti, fh_tree, ETT_RAW);
-    add_item_to_tree(fh_tree, 0, 0, "No link information available");
+  if (tree) {
+    ti = proto_tree_add_text(tree, tvb, 0, 0, "Raw packet data" );
+    fh_tree = proto_item_add_subtree(ti, ett_raw);
+    proto_tree_add_text(fh_tree, tvb, 0, 0, "No link information available");
   }
 
   /* So far, the only time we get raw connection types are with Linux and
@@ -70,9 +113,54 @@ dissect_raw( const u_char *pd, frame_data *fd, GtkTree *tree ) {
   /* Currently, the Linux 2.1.xxx PPP driver passes back some of the header
    * sometimes.  This check should be removed when 2.2 is out.
    */
-  if (pd[0] == 0xff && pd[1] == 0x03)
-    dissect_ip(pd, 4, fd, tree);
-  else
-    dissect_ip(pd, 0, fd, tree);
+  if (tvb_get_ntohs(tvb, 0) == 0xff03) {
+       call_dissector(ppp_handle, tvb, pinfo, tree);
+       return;
+  }
+  /* The Linux ISDN driver sends a fake MAC address before the PPP header
+   * on its ippp interfaces... */
+  else if (tvb_get_ntohs(tvb, 6) == 0xff03) {
+       next_tvb = tvb_new_subset(tvb, 6, -1, -1);
+       call_dissector(ppp_handle, next_tvb, pinfo, tree);
+       return;
+  }
+  /* ...except when it just puts out one byte before the PPP header... */
+  else if (tvb_get_ntohs(tvb, 1) == 0xff03) {
+       next_tvb = tvb_new_subset(tvb, 1, -1, -1);
+       call_dissector(ppp_handle, next_tvb, pinfo, tree);
+       return;
+  }
+  /* ...and if the connection is currently down, it sends 10 bytes of zeroes
+   * instead of a fake MAC address and PPP header. */
+  else if (memcmp(tvb_get_ptr(tvb, 0, 10), zeroes, 10) == 0) {
+       next_tvb = tvb_new_subset(tvb, 10, -1, -1);
+       call_dissector(ip_handle, next_tvb, pinfo, tree);
+       return;
+  }
+  else {
+       next_tvb = tvb_new_subset(tvb, 0, -1, -1);
+       call_dissector(ip_handle, next_tvb, pinfo, tree);
+       return;
+  }
+  g_assert_not_reached();
+}
+
+void
+proto_register_raw(void)
+{
+  static gint *ett[] = {
+    &ett_raw,
+  };
+
+  proto_register_subtree_array(ett, array_length(ett));
+}
+
+void
+proto_reg_handoff_raw(void)
+{
+  /*
+   * Get handles for the IP and PPP dissectors.
+   */
+  ip_handle = find_dissector("ip");
+  ppp_handle = find_dissector("ppp");
 }
-