aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipsec-udp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-08-08 23:06:47 +0000
committerGuy Harris <guy@alum.mit.edu>2003-08-08 23:06:47 +0000
commit97c3b2785254d39de3881160ae7d63ec7568154a (patch)
tree2853f6db43b3f36f4bcd85e4941fc2c82795b119 /packet-ipsec-udp.c
parent82ead653d3fce4fdc4c18ed904b3c49c9d0a521d (diff)
Handle NAT-keepalive packets.
Clear the Info column before dissecting. Use "proto_tree_add_item()" to create the top-level entry - the string used in the "proto_tree_add_protocol_format()" call was the protocol's long name, so "proto_tree_add_item()" would use it. Don't register the dissector by name - nobody uses it. svn path=/trunk/; revision=8154
Diffstat (limited to 'packet-ipsec-udp.c')
-rw-r--r--packet-ipsec-udp.c30
1 files changed, 18 insertions, 12 deletions
diff --git a/packet-ipsec-udp.c b/packet-ipsec-udp.c
index be96d45d85..b9e01d87c5 100644
--- a/packet-ipsec-udp.c
+++ b/packet-ipsec-udp.c
@@ -43,27 +43,33 @@ static void
dissect_udpencap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
tvbuff_t *next_tvb;
- proto_tree *udpencap_tree;
+ proto_tree *udpencap_tree = NULL;
proto_item *ti;
guint32 spi;
if (check_col(pinfo->cinfo, COL_PROTOCOL))
col_set_str(pinfo->cinfo, COL_PROTOCOL, "UDPENCAP");
-
- tvb_memcpy(tvb, (guint8 *)&spi, 0, sizeof(spi));
+ if (check_col(pinfo->cinfo, COL_INFO))
+ col_clear(pinfo->cinfo, COL_INFO);
if (tree) {
- ti = proto_tree_add_protocol_format(tree, proto_udpencap, tvb, 0, -1,
- "UDP Encapsulation of IPsec Packets");
+ ti = proto_tree_add_item(tree, proto_udpencap, tvb, 0, -1, FALSE);
udpencap_tree = proto_item_add_subtree(ti, ett_udpencap);
}
- /* SPI of zero indicates IKE traffic, otherwise it's ESP */
- if (spi == 0) {
- next_tvb = tvb_new_subset(tvb, sizeof(spi), -1, -1);
- call_dissector(isakmp_handle, next_tvb, pinfo, tree);
+ /* First byte of 0 iindicates NAT-keepalive */
+ if (tvb_get_guint8(tvb, 0) == 0xff) {
+ if (tree)
+ proto_tree_add_text(udpencap_tree, tvb, 0, 1, "NAT-keepalive packet");
} else {
- call_dissector(esp_handle, tvb, pinfo, tree);
+ /* SPI of zero indicates IKE traffic, otherwise it's ESP */
+ tvb_memcpy(tvb, (guint8 *)&spi, 0, sizeof(spi));
+ if (spi == 0) {
+ next_tvb = tvb_new_subset(tvb, sizeof(spi), -1, -1);
+ call_dissector(isakmp_handle, next_tvb, pinfo, tree);
+ } else {
+ call_dissector(esp_handle, tvb, pinfo, tree);
+ }
}
}
@@ -77,7 +83,6 @@ proto_register_udpencap(void)
proto_udpencap = proto_register_protocol(
"UDP Encapsulation of IPsec Packets", "UDPENCAP", "udpencap");
proto_register_subtree_array(ett, array_length(ett));
- register_dissector("udpencap", dissect_udpencap, proto_udpencap);
}
void
@@ -87,6 +92,7 @@ proto_reg_handoff_udpencap(void)
esp_handle = find_dissector("esp");
isakmp_handle = find_dissector("isakmp");
- udpencap_handle = find_dissector("udpencap");
+
+ udpencap_handle = create_dissector_handle(dissect_udpencap, proto_udpencap);
dissector_add("udp.port", 4500, udpencap_handle);
}