Replace a bunch of "tvb_length()" and "tvb_length_remaining()" calls in
[obnox/wireshark/wip.git] / packet-sip.c
1 /* packet-sip.c
2  * Routines for the Session Initiation Protocol (SIP) dissection.
3  * RFC 2543
4  * 
5  * TODO: Pay attention to Content-Type: It might not always be SDP.
6  *       Add hf_* fields for filtering support.
7  *       Add sip msg body dissection based on Content-Type for:
8  *                SDP, MIME, and other types
9  *       Align SIP methods with recent Internet Drafts or RFC
10  *               (SIP INFO, rfc2976 - done)
11  *               (SIP SUBSCRIBE-NOTIFY - done)
12  *               (SIP REFER - done)
13  *               check for other
14  *
15  * Copyright 2000, Heikki Vatiainen <hessu@cs.tut.fi>
16  * Copyright 2001, Jean-Francois Mule <jfm@clarent.com>
17  *
18  * $Id: packet-sip.c,v 1.22 2002/01/24 09:20:51 guy Exp $
19  *
20  * Ethereal - Network traffic analyzer
21  * By Gerald Combs <gerald@ethereal.com>
22  * Copyright 1998 Gerald Combs
23  *
24  * Copied from packet-cops.c
25  * 
26  * This program is free software; you can redistribute it and/or
27  * modify it under the terms of the GNU General Public License
28  * as published by the Free Software Foundation; either version 2
29  * of the License, or (at your option) any later version.
30  * 
31  * This program is distributed in the hope that it will be useful,
32  * but WITHOUT ANY WARRANTY; without even the implied warranty of
33  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
34  * GNU General Public License for more details.
35  * 
36  * You should have received a copy of the GNU General Public License
37  * along with this program; if not, write to the Free Software
38  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
39  */
40
41 #ifdef HAVE_CONFIG_H
42 # include "config.h"
43 #endif
44
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48
49 #include <glib.h>
50 #include <epan/packet.h>
51
52 #define TCP_PORT_SIP 5060
53 #define UDP_PORT_SIP 5060
54
55 /* Initialize the protocol and registered fields */
56 static gint proto_sip = -1;
57 static gint hf_msg_hdr = -1;
58
59 /* Initialize the subtree pointers */
60 static gint ett_sip = -1;
61 static gint ett_sip_hdr = -1;
62
63 static const char *sip_methods[] = {
64         "<Invalid method>",      /* Pad so that the real methods start at index 1 */
65         "INVITE",
66         "ACK",
67         "OPTIONS",
68         "BYE",
69         "CANCEL",
70         "REGISTER",
71         "INFO",
72         "REFER",
73         "SUBSCRIBE",
74         "NOTIFY"
75 };
76
77 static gboolean sip_is_request(tvbuff_t *tvb, guint32 offset);
78 static gint sip_get_msg_offset(tvbuff_t *tvb, guint32 offset);
79  
80 static dissector_handle_t sdp_handle;
81 static dissector_handle_t data_handle;
82
83 #define SIP2_HDR "SIP/2.0 "
84 #define SIP2_HDR_LEN (strlen (SIP2_HDR))
85
86 /* Code to actually dissect the packets */
87 static void dissect_sip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
88 {
89         guint32 offset;
90         gint eol, next_offset, msg_offset;
91         tvbuff_t *next_tvb;
92         gboolean is_request;
93
94         /*
95          * Note that "tvb_strneql()" doesn't throw exceptions, so
96          * "sip_is_request()" won't throw an exception.
97          *
98          * Note that "tvb_find_line_end()" will return a value that
99          * is not longer than what's in the buffer, so the
100          * "tvb_get_ptr()" call s below won't throw exceptions.
101          */
102         offset = 0;
103         eol = tvb_find_line_end(tvb, 0, -1, &next_offset);
104         is_request = sip_is_request(tvb, 0);
105         /* XXX - Is this case-sensitive?  RFC 2543 didn't explicitly say. */
106         if (tvb_strneql(tvb, 0, SIP2_HDR, SIP2_HDR_LEN) != 0 && ! is_request)
107                 goto bad;
108           
109         if (check_col(pinfo->cinfo, COL_PROTOCOL)) 
110                 col_set_str(pinfo->cinfo, COL_PROTOCOL, "SIP");
111     
112
113         if (check_col(pinfo->cinfo, COL_INFO))
114                 col_add_fstr(pinfo->cinfo, COL_INFO, "%s: %s",
115                              is_request ? "Request" : "Status",
116                              is_request ? 
117                              tvb_format_text(tvb, 0, eol - SIP2_HDR_LEN) :
118                              tvb_format_text(tvb, SIP2_HDR_LEN, eol - SIP2_HDR_LEN));
119
120         msg_offset = sip_get_msg_offset(tvb, offset);
121         if (msg_offset < 0) goto bad;
122
123         if (tree) {
124                 proto_item *ti, *th;
125                 proto_tree *sip_tree, *hdr_tree;
126
127                 ti = proto_tree_add_item(tree, proto_sip, tvb, 0, -1, FALSE);
128                 sip_tree = proto_item_add_subtree(ti, ett_sip);
129
130                 proto_tree_add_text(sip_tree, tvb, 0, next_offset, "%s-Line: %s",
131                                     is_request ? "Request" : "Status",
132                                     tvb_format_text(tvb, 0, eol));
133
134                 offset = next_offset;
135                 th = proto_tree_add_item(sip_tree, hf_msg_hdr, tvb, offset, msg_offset - offset, FALSE);
136                 hdr_tree = proto_item_add_subtree(th, ett_sip_hdr);
137
138                 /* - 2 since we have a CRLF separating the message-body */
139                 while (msg_offset - 2 > (int) offset) {
140                         eol = tvb_find_line_end(tvb, offset, -1, &next_offset);
141                         proto_tree_add_text(hdr_tree, tvb, offset, next_offset - offset, "%s",
142                                             tvb_format_text(tvb, offset, eol));
143                         offset = next_offset;
144                 }
145                 offset += 2;  /* Skip the CRLF mentioned above */
146        }
147
148         if (tvb_length_remaining(tvb, msg_offset) > 0) {
149                 next_tvb = tvb_new_subset(tvb, offset, -1, -1);
150                 call_dissector(sdp_handle, next_tvb, pinfo, tree);
151         }
152
153         return;
154
155   bad:
156         next_tvb = tvb_new_subset(tvb, offset, -1, -1);
157         call_dissector(data_handle,next_tvb, pinfo, tree);
158
159         return;
160 }
161
162 /* Returns the offset to the start of the optional message-body, or
163  * -1 for an error.
164  */
165 static gint sip_get_msg_offset(tvbuff_t *tvb, guint32 offset)
166 {
167         gint eol;
168
169         while ((eol = tvb_find_guint8(tvb, offset, tvb_length_remaining(tvb, offset), '\r')) > 0) {
170                         if (tvb_get_guint8(tvb, eol + 1) == '\n' && 
171                             tvb_get_guint8(tvb, eol + 2) == '\r' && 
172                             tvb_get_guint8(tvb, eol + 3) == '\n')
173                                 return eol + 4;
174                         offset = eol + 2;
175         }
176
177         return -1;
178 }
179                 
180 static gboolean sip_is_request(tvbuff_t *tvb, guint32 offset)
181 {
182         u_int i;
183
184         for (i = 1; i < array_length(sip_methods); i++) {
185                 if (tvb_strneql(tvb, offset, sip_methods[i], strlen(sip_methods[i])) == 0)
186                         return TRUE;
187         }
188
189         return FALSE;
190 }
191
192 /* Register the protocol with Ethereal */
193 void proto_register_sip(void)
194 {                 
195
196         /* Setup list of header fields */
197         static hf_register_info hf[] = {
198
199                 { &hf_msg_hdr,
200                         { "Message Header",           "sip.msg_hdr",
201                         FT_NONE, 0, NULL, 0,
202                         "Message Header in SIP message", HFILL }
203                 },
204         };
205
206         /* Setup protocol subtree array */
207         static gint *ett[] = {
208                 &ett_sip,
209                 &ett_sip_hdr,
210         };
211
212         /* Register the protocol name and description */
213         proto_sip = proto_register_protocol("Session Initiation Protocol",
214             "SIP", "sip");
215
216         /* Required function calls to register the header fields and subtrees used */
217         proto_register_field_array(proto_sip, hf, array_length(hf));
218         proto_register_subtree_array(ett, array_length(ett));
219 }
220
221 void
222 proto_reg_handoff_sip(void)
223 {
224         dissector_handle_t sip_handle;
225
226         sip_handle = create_dissector_handle(dissect_sip, proto_sip);
227         dissector_add("tcp.port", TCP_PORT_SIP, sip_handle);
228         dissector_add("udp.port", UDP_PORT_SIP, sip_handle);
229
230         /*
231          * Get a handle for the SDP dissector.
232          */
233         sdp_handle = find_dissector("sdp");
234         data_handle = find_dissector("data");
235 }