aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pktap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-03-31 21:04:13 -0700
committerEvan Huus <eapache@gmail.com>2014-04-01 17:03:29 +0000
commitfc48f57214d55d3f35bff87f1fffa08ac6f7bfd6 (patch)
tree48c537aad2784c8cf09875092788993a148debe7 /epan/dissectors/packet-pktap.c
parent47d296709dcd0ed1fc8900de12648583c9df7b43 (diff)
Add a dissector for Apple's PKTAP headers.
It automatically works for LINKTYPE_PKTAP and, by default, for LINKTYPE_USER2; if any other dissector is specified for LINKTYPE_USER2, that dissector overrides PKTAP. Change-Id: Ic00ac8a81c6101e45d638d337aef42df3920da12 Reviewed-on: https://code.wireshark.org/review/903 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-pktap.c')
-rw-r--r--epan/dissectors/packet-pktap.c300
1 files changed, 300 insertions, 0 deletions
diff --git a/epan/dissectors/packet-pktap.c b/epan/dissectors/packet-pktap.c
new file mode 100644
index 0000000000..5c08ab3279
--- /dev/null
+++ b/epan/dissectors/packet-pktap.c
@@ -0,0 +1,300 @@
+/*
+ * packet-pktap.c
+ * Routines for dissecting Apple's PKTAP header
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 2007 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include "config.h"
+
+#include <glib.h>
+
+#include <epan/packet.h>
+#include <epan/expert.h>
+#include <epan/wmem/wmem.h>
+#include <wsutil/pint.h>
+
+#include <wiretap/wtap.h>
+
+#include "packet-frame.h"
+#include "packet-eth.h"
+
+/* Needed for wtap_pcap_encap_to_wtap_encap(). */
+#include <wiretap/pcap-encap.h>
+
+/*
+ * Apple's PKTAP header.
+ */
+
+/*
+ * Minimum header length.
+ *
+ * XXX - I'm assuming the header begins with a length field so that it
+ * can be transparently *extended*, not so that fields in the current
+ * header can be *omitted*.
+ */
+#define MIN_PKTAP_HDR_LEN 108
+
+/*
+ * Record types.
+ */
+#define PKT_REC_NONE 0 /* nothing follows the header */
+#define PKT_REC_PACKET 1 /* a packet follows the header */
+
+/* Protocol */
+static int proto_pktap = -1;
+
+static int hf_pktap_hdrlen = -1;
+static int hf_pktap_rectype = -1;
+static int hf_pktap_dlt = -1;
+static int hf_pktap_ifname = -1;
+static int hf_pktap_flags = -1;
+static int hf_pktap_pfamily = -1;
+static int hf_pktap_llhdrlen = -1;
+static int hf_pktap_lltrlrlen = -1;
+static int hf_pktap_pid = -1;
+static int hf_pktap_cmdname = -1;
+static int hf_pktap_svc_class = -1;
+static int hf_pktap_iftype = -1;
+static int hf_pktap_ifunit = -1;
+static int hf_pktap_epid = -1;
+static int hf_pktap_ecmdname = -1;
+
+static gint ett_pktap = -1;
+
+static expert_field ei_pktap_hdrlen_too_short = EI_INIT;
+
+static dissector_handle_t pktap_handle;
+
+/*
+ * XXX - these are little-endian in the captures I've seen, but Apple
+ * no longer make any big-endian machines (Macs use x86, iOS machines
+ * use ARM and run it little-endian), so that might be by definition
+ * or they might be host-endian.
+ *
+ * If a big-endian PKTAP file ever shows up, and it comes from a
+ * big-endian machine, presumably these are host-endian, and we need
+ * to just fetch the fields in host byte order here but byte-swap them
+ * to host byte order in libwiretap.
+ */
+
+void
+capture_pktap(const guchar *pd, int len, packet_counts *ld)
+{
+ guint32 hdrlen, rectype, dlt;
+
+ hdrlen = pletoh32(pd);
+ if (hdrlen < MIN_PKTAP_HDR_LEN || !BYTES_ARE_IN_FRAME(0, len, hdrlen)) {
+ ld->other++;
+ return;
+ }
+
+ rectype = pletoh32(pd+4);
+ if (rectype != PKT_REC_PACKET) {
+ ld->other++;
+ return;
+ }
+
+ dlt = pletoh32(pd+4);
+
+ /* XXX - We should probably combine this with capture_info.c:capture_info_packet() */
+ switch (dlt) {
+
+ case 1: /* DLT_EN10MB */
+ capture_eth(pd, hdrlen, len, ld);
+ return;
+
+ default:
+ break;
+ }
+
+ ld->other++;
+}
+
+static void
+dissect_pktap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+ proto_tree *pktap_tree = NULL;
+ proto_item *ti = NULL;
+ tvbuff_t *next_tvb;
+ int offset = 0;
+ guint32 pkt_len, rectype, dlt;
+
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "PKTAP");
+ col_clear(pinfo->cinfo, COL_INFO);
+
+ pkt_len = tvb_get_letohl(tvb, offset);
+ col_add_fstr(pinfo->cinfo, COL_INFO, "PKTAP, %u byte header", pkt_len);
+
+ /* Dissect the packet */
+ ti = proto_tree_add_item(tree, proto_pktap, tvb, offset, pkt_len, ENC_NA);
+ pktap_tree = proto_item_add_subtree(ti, ett_pktap);
+
+ proto_tree_add_item(pktap_tree, hf_pktap_hdrlen, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ if (pkt_len < MIN_PKTAP_HDR_LEN) {
+ proto_tree_add_expert(tree, pinfo, &ei_pktap_hdrlen_too_short,
+ tvb, offset, 4);
+ return;
+ }
+ offset += 4;
+
+ proto_tree_add_item(pktap_tree, hf_pktap_rectype, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ rectype = tvb_get_letohl(tvb, offset);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_dlt, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ dlt = tvb_get_letohl(tvb, offset);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_ifname, tvb, offset, 24,
+ ENC_ASCII|ENC_NA);
+ offset += 24;
+ proto_tree_add_item(pktap_tree, hf_pktap_flags, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_pfamily, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_llhdrlen, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_lltrlrlen, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_pid, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_cmdname, tvb, offset, 20,
+ ENC_UTF_8|ENC_NA);
+ offset += 20;
+ proto_tree_add_item(pktap_tree, hf_pktap_svc_class, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_iftype, tvb, offset, 2,
+ ENC_LITTLE_ENDIAN);
+ offset += 2;
+ proto_tree_add_item(pktap_tree, hf_pktap_ifunit, tvb, offset, 2,
+ ENC_LITTLE_ENDIAN);
+ offset += 2;
+ proto_tree_add_item(pktap_tree, hf_pktap_epid, tvb, offset, 4,
+ ENC_LITTLE_ENDIAN);
+ offset += 4;
+ proto_tree_add_item(pktap_tree, hf_pktap_ecmdname, tvb, offset, 20,
+ ENC_UTF_8|ENC_NA);
+ offset += 20;
+
+ if (rectype == PKT_REC_PACKET) {
+ next_tvb = tvb_new_subset_remaining(tvb, offset);
+ dissector_try_uint(wtap_encap_dissector_table,
+ wtap_pcap_encap_to_wtap_encap(dlt), next_tvb, pinfo, tree);
+ }
+}
+
+void
+proto_register_pktap(void)
+{
+ static hf_register_info hf[] = {
+ { &hf_pktap_hdrlen,
+ { "Header length", "pktap.hdrlen",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_rectype,
+ { "Record type", "pktap.rectype",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_dlt,
+ { "DLT", "pktap.dlt",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_ifname, /* fixed length *and* null-terminated */
+ { "Interface name", "pktap.ifname",
+ FT_STRINGZ, BASE_NONE, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_flags,
+ { "Flags", "pktap.flags",
+ FT_UINT32, BASE_HEX, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_pfamily,
+ { "Protocol family", "pktap.pfamily",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_llhdrlen,
+ { "Link-layer header length", "pktap.llhdrlen",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_lltrlrlen,
+ { "Link-layer trailer length", "pktap.lltrlrlen",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_pid,
+ { "Process ID", "pktap.pid",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_cmdname, /* fixed length *and* null-terminated */
+ { "Command name", "pktap.cmdname",
+ FT_STRINGZ, BASE_NONE, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_svc_class,
+ { "Service class", "pktap.svc_class",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_iftype,
+ { "Interface type", "pktap.iftype",
+ FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_ifunit,
+ { "Interface unit", "pktap.ifunit",
+ FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_epid,
+ { "Effective process ID", "pktap.epid",
+ FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL } },
+ { &hf_pktap_ecmdname, /* fixed length *and* null-terminated */
+ { "Effective command name", "pktap.ecmdname",
+ FT_STRINGZ, BASE_NONE, NULL, 0x0, NULL, HFILL } },
+ };
+
+ static gint *ett[] = {
+ &ett_pktap,
+ };
+
+ static ei_register_info ei[] = {
+ { &ei_pktap_hdrlen_too_short,
+ { "pktap.hdrlen_too_short", PI_MALFORMED, PI_ERROR,
+ "Header length is too short", EXPFILL }},
+ };
+
+ expert_module_t* expert_pktap;
+
+ proto_pktap = proto_register_protocol("PKTAP packet header", "PKTAP",
+ "pktap");
+ proto_register_field_array(proto_pktap, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
+ expert_pktap = expert_register_protocol(proto_pktap);
+ expert_register_field_array(expert_pktap, ei, array_length(ei));
+
+ pktap_handle = register_dissector("pktap", dissect_pktap, proto_pktap);
+}
+
+void
+proto_reg_handoff_pktap(void)
+{
+ dissector_add_uint("wtap_encap", WTAP_ENCAP_PKTAP, pktap_handle);
+}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */