Call subdissectors even if we're not building a protocol tree.
[obnox/wireshark/wip.git] / packet-frame.c
index 4593e84177c32f59be7e5213ffa2962735d03c13..dc904f8438ae2157a6a04cf99d3a37bec9cb4680 100644 (file)
@@ -2,22 +2,22 @@
  *
  * Top-most dissector. Decides dissector based on Wiretap Encapsulation Type.
  *
- * $Id: packet-frame.c,v 1.20 2002/01/21 07:36:34 guy Exp $
+ * $Id: packet-frame.c,v 1.42 2003/12/06 06:09:10 gram Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
  * Copyright 2000 Gerald Combs
- * 
+ *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
  * of the License, or (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include <epan/tvbuff.h>
 #include "packet-frame.h"
 #include "prefs.h"
+#include "tap.h"
 
-static int proto_frame = -1;
-static int hf_frame_arrival_time = -1;
+int proto_frame = -1;
+int hf_frame_arrival_time = -1;
 static int hf_frame_time_delta = -1;
 static int hf_frame_time_relative = -1;
-static int hf_frame_number = -1;
-static int hf_frame_packet_len = -1;
-static int hf_frame_capture_len = -1;
+int hf_frame_number = -1;
+int hf_frame_packet_len = -1;
+int hf_frame_capture_len = -1;
 static int hf_frame_p2p_dir = -1;
 static int hf_frame_file_off = -1;
+static int hf_frame_marked = -1;
+static int hf_frame_ref_time = -1;
+
 static int proto_short = -1;
 int proto_malformed = -1;
 static int proto_unreassembled = -1;
 
 static gint ett_frame = -1;
 
+static int frame_tap = -1;
+
 static dissector_handle_t data_handle;
+static dissector_handle_t docsis_handle;
 
 /* Preferences */
 static gboolean show_file_off = FALSE;
+static gboolean force_docsis_encap;
 
 static const value_string p2p_dirs[] = {
        { P2P_DIR_SENT, "Sent" },
@@ -61,8 +69,8 @@ static const value_string p2p_dirs[] = {
 };
 
 static dissector_table_t wtap_encap_dissector_table;
-       
-void
+
+static void
 dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
 {
        proto_tree      *fh_tree;
@@ -72,16 +80,43 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
 
        pinfo->current_proto = "Frame";
 
-       if (pinfo->fd->lnk_t == WTAP_ENCAP_LAPD ||
-                       pinfo->fd->lnk_t == WTAP_ENCAP_CHDLC ||
-                       pinfo->fd->lnk_t == WTAP_ENCAP_PPP_WITH_PHDR) {
-
-               pinfo->p2p_dir = pinfo->pseudo_header->p2p.sent ? P2P_DIR_SENT : P2P_DIR_RECV;
+       if (pinfo->pseudo_header != NULL) {
+               switch (pinfo->fd->lnk_t) {
+
+               case WTAP_ENCAP_WFLEET_HDLC:
+               case WTAP_ENCAP_CHDLC_WITH_PHDR:
+               case WTAP_ENCAP_PPP_WITH_PHDR:
+               case WTAP_ENCAP_SDLC:
+                       pinfo->p2p_dir = pinfo->pseudo_header->p2p.sent ?
+                           P2P_DIR_SENT : P2P_DIR_RECV;
+                       break;
+
+               case WTAP_ENCAP_LAPB:
+               case WTAP_ENCAP_FRELAY_WITH_PHDR:
+                       pinfo->p2p_dir =
+                           (pinfo->pseudo_header->x25.flags & FROM_DCE) ?
+                           P2P_DIR_RECV : P2P_DIR_SENT;
+                       break;
+
+               case WTAP_ENCAP_ISDN:
+                       pinfo->p2p_dir = pinfo->pseudo_header->isdn.uton ?
+                           P2P_DIR_SENT : P2P_DIR_RECV;
+                       break;
+               }
        }
-       else if (pinfo->fd->lnk_t == WTAP_ENCAP_LAPB ||
-                       pinfo->fd->lnk_t == WTAP_ENCAP_FRELAY) {
 
-               pinfo->p2p_dir = (pinfo->pseudo_header->x25.flags & 0x80) ? P2P_DIR_RECV : P2P_DIR_SENT;
+       if ((force_docsis_encap) && (docsis_handle)) {
+               /*
+                * XXX - setting it here makes it impossible to
+                * turn the "Treat all frames as DOCSIS frames"
+                * option off.
+                *
+                * The TCP Graph code currently uses "fd->lnk_t";
+                * it should eventually just get the information
+                * it needs from a full-blown dissection, so that
+                * can handle any link-layer type.
+                */
+               pinfo->fd->lnk_t = WTAP_ENCAP_DOCSIS;
        }
 
        /* Put in frame header information. */
@@ -90,11 +125,17 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
          cap_len = tvb_length(tvb);
          pkt_len = tvb_reported_length(tvb);
 
-         ti = proto_tree_add_protocol_format(tree, proto_frame, tvb, 0, tvb_length(tvb),
-           "Frame %u (%u on wire, %u captured)", pinfo->fd->num, pkt_len, cap_len);
+         ti = proto_tree_add_protocol_format(tree, proto_frame, tvb, 0, -1,
+           "Frame %u (%u bytes on wire, %u bytes captured)", pinfo->fd->num, pkt_len, cap_len);
 
          fh_tree = proto_item_add_subtree(ti, ett_frame);
 
+         proto_tree_add_boolean_hidden(fh_tree, hf_frame_marked, tvb, 0, 0,pinfo->fd->flags.marked);
+
+         if(pinfo->fd->flags.ref_time){
+               proto_tree_add_item(fh_tree, hf_frame_ref_time, tvb, 0, 0, FALSE);
+         }
+
          ts.secs = pinfo->fd->abs_secs;
          ts.nsecs = pinfo->fd->abs_usecs*1000;
 
@@ -119,7 +160,7 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
          proto_tree_add_uint_format(fh_tree, hf_frame_packet_len, tvb,
                0, 0, pkt_len, "Packet Length: %d byte%s", pkt_len,
                plurality(pkt_len, "", "s"));
-               
+
          proto_tree_add_uint_format(fh_tree, hf_frame_capture_len, tvb,
                0, 0, cap_len, "Capture Length: %d byte%s", cap_len,
                plurality(cap_len, "", "s"));
@@ -151,38 +192,59 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
                        call_dissector(data_handle,tvb, pinfo, tree);
                }
        }
-       CATCH(BoundsError) {
+       CATCH_ALL {
+               show_exception(tvb, pinfo, tree, EXCEPT_CODE);
+       }
+       ENDTRY;
+
+       tap_queue_packet(frame_tap, pinfo, NULL);
+}
+
+void
+show_exception(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
+    unsigned long exception)
+{
+       switch (exception) {
+
+       case BoundsError:
                if (check_col(pinfo->cinfo, COL_INFO))
                        col_append_str(pinfo->cinfo, COL_INFO, "[Short Frame]");
                proto_tree_add_protocol_format(tree, proto_short, tvb, 0, 0,
-                               "[Short Frame: %s]", pinfo->current_proto );
+                               "[Short Frame: %s]", pinfo->current_proto);
+               break;
+
+       case ReportedBoundsError:
+               show_reported_bounds_error(tvb, pinfo, tree);
+               break;
        }
-       CATCH(ReportedBoundsError) {
-               if (pinfo->fragmented) {
-                       /*
-                        * We were dissecting an unreassembled fragmented
-                        * packet when the exception was thrown, so the
-                        * problem isn't that the dissector expected
-                        * something but it wasn't in the packet, the
-                        * problem is that the dissector expected something
-                        * but it wasn't in the fragment we dissected.
-                        */
-                       if (check_col(pinfo->cinfo, COL_INFO))
-                               col_append_str(pinfo->cinfo, COL_INFO,
-                                   "[Unreassembled Packet]");
-                       proto_tree_add_protocol_format(tree, proto_unreassembled,
-                           tvb, 0, 0, "[Unreassembled Packet: %s]",
-                           pinfo->current_proto );
-               } else {
-                       if (check_col(pinfo->cinfo, COL_INFO))
-                               col_append_str(pinfo->cinfo, COL_INFO,
-                                   "[Malformed Packet]");
-                       proto_tree_add_protocol_format(tree, proto_malformed,
-                           tvb, 0, 0, "[Malformed Packet: %s]",
-                           pinfo->current_proto );
-               }
+}
+
+void
+show_reported_bounds_error(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+       if (pinfo->fragmented) {
+               /*
+                * We were dissecting an unreassembled fragmented
+                * packet when the exception was thrown, so the
+                * problem isn't that the dissector expected
+                * something but it wasn't in the packet, the
+                * problem is that the dissector expected something
+                * but it wasn't in the fragment we dissected.
+                */
+               if (check_col(pinfo->cinfo, COL_INFO))
+                       col_append_fstr(pinfo->cinfo, COL_INFO,
+                           "[Unreassembled Packet%s]",
+                           pinfo->noreassembly_reason);
+               proto_tree_add_protocol_format(tree, proto_unreassembled,
+                   tvb, 0, 0, "[Unreassembled Packet%s: %s]",
+                   pinfo->noreassembly_reason, pinfo->current_proto);
+       } else {
+               if (check_col(pinfo->cinfo, COL_INFO))
+                       col_append_str(pinfo->cinfo, COL_INFO,
+                           "[Malformed Packet]");
+               proto_tree_add_protocol_format(tree, proto_malformed,
+                   tvb, 0, 0, "[Malformed Packet: %s]", pinfo->current_proto);
        }
-       ENDTRY;
 }
 
 void
@@ -191,17 +253,17 @@ proto_register_frame(void)
        static hf_register_info hf[] = {
                { &hf_frame_arrival_time,
                { "Arrival Time",               "frame.time", FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0x0,
-                       "", HFILL }},
+                       "Absolute time when this frame was captured", HFILL }},
 
                { &hf_frame_time_delta,
                { "Time delta from previous packet",    "frame.time_delta", FT_RELATIVE_TIME, BASE_NONE, NULL,
                        0x0,
-                       "", HFILL }},
+                       "Time delta since previous diplayed frame", HFILL }},
 
                { &hf_frame_time_relative,
-               { "Time relative to first packet",      "frame.time_relative", FT_RELATIVE_TIME, BASE_NONE, NULL,
+               { "Time since reference or first frame",        "frame.time_relative", FT_RELATIVE_TIME, BASE_NONE, NULL,
                        0x0,
-                       "", HFILL }},
+                       "Time relative reference or first frame", HFILL }},
 
                { &hf_frame_number,
                { "Frame Number",               "frame.number", FT_UINT32, BASE_DEC, NULL, 0x0,
@@ -223,11 +285,18 @@ proto_register_frame(void)
                { "File Offset",        "frame.file_off", FT_INT32, BASE_DEC, NULL, 0x0,
                        "", HFILL }},
 
+               { &hf_frame_marked,
+               { "Frame is marked",    "frame.marked", FT_BOOLEAN, 8, NULL, 0x0,
+                       "Frame is marked in the GUI", HFILL }},
+
+               { &hf_frame_ref_time,
+               { "This is a Ref Time frame",   "frame.ref_time", FT_NONE, 0, NULL, 0x0,
+                       "This frame is a Reference Time frame", HFILL }},
        };
        static gint *ett[] = {
                &ett_frame,
        };
-       module_t *frame_module; 
+       module_t *frame_module;
 
        wtap_encap_dissector_table = register_dissector_table("wtap_encap",
            "Wiretap encapsulation type", FT_UINT32, BASE_DEC);
@@ -259,10 +328,15 @@ proto_register_frame(void)
        frame_module = prefs_register_protocol(proto_frame, NULL);
        prefs_register_bool_preference(frame_module, "show_file_off",
            "Show File Offset", "Show File Offset", &show_file_off);
+       prefs_register_bool_preference(frame_module, "force_docsis_encap",
+           "Treat all frames as DOCSIS frames", "Treat all frames as DOCSIS Frames", &force_docsis_encap);
+
+       frame_tap=register_tap("frame");
 }
 
 void
 proto_reg_handoff_frame(void)
 {
        data_handle = find_dissector("data");
+       docsis_handle = find_dissector("docsis");
 }