Align the --with-pcap help message with other help messages.
[obnox/wireshark/wip.git] / packet-ipsec-udp.c
1 /*
2  * Copyright (c) 2003 Markus Friedl.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <string.h>
29 #include <glib.h>
30 #include <epan/packet.h>
31
32 static int proto_udpencap = -1;
33 static gint ett_udpencap = -1;
34
35 static dissector_handle_t esp_handle;
36 static dissector_handle_t isakmp_handle;
37
38 /*
39  * UDP Encapsulation of IPsec Packets   
40  * draft-ietf-ipsec-udp-encaps-06.txt
41  */
42 static void
43 dissect_udpencap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
44 {
45   tvbuff_t *next_tvb;
46   proto_tree *udpencap_tree = NULL;
47   proto_item *ti = NULL;
48   guint32 spi;
49
50   if (check_col(pinfo->cinfo, COL_PROTOCOL))
51     col_set_str(pinfo->cinfo, COL_PROTOCOL, "UDPENCAP");
52   if (check_col(pinfo->cinfo, COL_INFO))
53     col_clear(pinfo->cinfo, COL_INFO);
54
55   if (tree) {
56     ti = proto_tree_add_item(tree, proto_udpencap, tvb, 0, -1, FALSE);
57     udpencap_tree = proto_item_add_subtree(ti, ett_udpencap);
58   }
59
60   /* First byte of 0 iindicates NAT-keepalive */
61   if (tvb_get_guint8(tvb, 0) == 0xff) {
62     if (tree)
63       proto_tree_add_text(udpencap_tree, tvb, 0, 1, "NAT-keepalive packet");
64   } else {
65     /* SPI of zero indicates IKE traffic, otherwise it's ESP */
66     tvb_memcpy(tvb, (guint8 *)&spi, 0, sizeof(spi));
67     if (spi == 0) {
68       if (tree) {
69         proto_tree_add_text(udpencap_tree, tvb, 0, sizeof(spi),
70                 "Non-ESP Marker");
71         proto_item_set_len(ti, sizeof(spi));
72       }
73       next_tvb = tvb_new_subset(tvb, sizeof(spi), -1, -1);
74       call_dissector(isakmp_handle, next_tvb, pinfo, tree);
75     } else {
76       if (tree)
77         proto_item_set_len(ti, 0);
78       call_dissector(esp_handle, tvb, pinfo, tree);
79     }
80   }
81 }
82
83 void
84 proto_register_udpencap(void)
85 {
86   static gint *ett[] = {
87     &ett_udpencap,
88   };
89
90   proto_udpencap = proto_register_protocol(
91         "UDP Encapsulation of IPsec Packets", "UDPENCAP", "udpencap");
92   proto_register_subtree_array(ett, array_length(ett));
93 }
94
95 void
96 proto_reg_handoff_udpencap(void)
97 {
98   dissector_handle_t udpencap_handle;
99
100   esp_handle = find_dissector("esp");
101   isakmp_handle = find_dissector("isakmp");
102
103   udpencap_handle = create_dissector_handle(dissect_udpencap, proto_udpencap);
104   dissector_add("udp.port", 4500, udpencap_handle);
105 }