Add in some missing header files.
[obnox/wireshark/wip.git] / packet-ftp.c
1 /* packet-ftp.c
2  * Routines for ftp packet dissection
3  * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
4  * Copyright 2001, Juan Toledo <toledo@users.sourceforge.net> (Passive FTP)
5  * 
6  * $Id: packet-ftp.c,v 1.43 2002/04/26 20:59:42 guy Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@ethereal.com>
10  * Copyright 1998 Gerald Combs
11  *
12  * Copied from packet-pop.c
13  * 
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  * 
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * 
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27  */
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <ctype.h>
36
37 #ifdef HAVE_SYS_TYPES_H
38 # include <sys/types.h>
39 #endif
40
41 #ifdef HAVE_NETINET_IN_H
42 # include <netinet/in.h>
43 #endif
44
45 #include <string.h>
46 #include <glib.h>
47 #include <epan/packet.h>
48 #include <epan/strutil.h>
49 #include <epan/conversation.h>
50
51 static int proto_ftp = -1;
52 static int proto_ftp_data = -1;
53 static int hf_ftp_response = -1;
54 static int hf_ftp_request = -1;
55 static int hf_ftp_request_command = -1;
56 static int hf_ftp_request_arg = -1;
57 static int hf_ftp_response_code = -1;
58 static int hf_ftp_response_arg = -1;
59
60 static gint ett_ftp = -1;
61 static gint ett_ftp_data = -1;
62
63 static dissector_handle_t ftpdata_handle;
64
65 #define TCP_PORT_FTPDATA                20
66 #define TCP_PORT_FTP                    21
67
68 static void
69 dissect_ftpdata(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
70
71 /*
72  * Handle a response to a PASV command.
73  *
74  * We ignore the IP address in the reply, and use the address from which
75  * the request came.
76  *
77  * XXX - are there cases where they differ?  What if the FTP server is
78  * behind a NAT box, so that the address it puts into the reply isn't
79  * the address at which you should contact it?  Do all NAT boxes detect
80  * FTP PASV replies and rewrite the address?  (I suspect not.)
81  *
82  * RFC 959 doesn't say much about the syntax of the 227 reply.
83  *
84  * A proposal from Dan Bernstein at
85  *
86  *      http://cr.yp.to/ftp/retr.html
87  *
88  * "recommend[s] that clients use the following strategy to parse the
89  * response line: look for the first digit after the initial space; look
90  * for the fourth comma after that digit; read two (possibly negative)
91  * integers, separated by a comma; the TCP port number is p1*256+p2, where
92  * p1 is the first integer modulo 256 and p2 is the second integer modulo
93  * 256."
94  *
95  * wget 1.5.3 looks for a digit, although it doesn't handle negative
96  * integers.
97  *
98  * The FTP code in the source of the cURL library, at
99  *
100  *      http://curl.haxx.se/lxr/source/lib/ftp.c
101  *
102  * says that cURL "now scans for a sequence of six comma-separated numbers
103  * and will take them as IP+port indicators"; it loops, doing "sscanf"s
104  * looking for six numbers separated by commas, stepping the start pointer
105  * in the scanf one character at a time - i.e., it tries rather exhaustively.
106  *
107  * An optimization would be to scan for a digit, and start there, and if
108  * the scanf doesn't find six values, scan for the next digit and try
109  * again; this will probably succeed on the first try.
110  *
111  * The cURL code also says that "found reply-strings include":
112  *
113  *      "227 Entering Passive Mode (127,0,0,1,4,51)"
114  *      "227 Data transfer will passively listen to 127,0,0,1,4,51"
115  *      "227 Entering passive mode. 127,0,0,1,4,51"
116  *
117  * so it appears that you can't assume there are parentheses around
118  * the address and port number.
119  */
120 static void
121 handle_pasv_response(const u_char *line, int linelen, packet_info *pinfo)
122 {
123         char *args;
124         char *p;
125         u_char c;
126         int i;
127         int address[4], port[2];
128         guint16 server_port;
129         conversation_t  *conversation;
130
131         /*
132          * Copy the rest of the line into a null-terminated buffer.
133          */
134         args = g_malloc(linelen + 1);
135         memcpy(args, line, linelen);
136         args[linelen] = '\0';
137         p = args;
138
139         for (;;) {
140                 /*
141                  * Look for a digit.
142                  */
143                 while ((c = *p) != '\0' && !isdigit(c))
144                         p++;
145
146                 if (*p == '\0') {
147                         /*
148                          * We ran out of text without finding anything.
149                          */
150                         break;
151                 }
152                         
153                 /*
154                  * See if we have six numbers.
155                  */
156                 i = sscanf(p, "%d,%d,%d,%d,%d,%d",
157                     &address[0], &address[1], &address[2], &address[3],
158                     &port[0], &port[1]);
159                 if (i == 6) {
160                         /*
161                          * We have a winner!
162                          * Set up a conversation, to be dissected as FTP data.
163                          */
164                         server_port = ((port[0] & 0xFF)<<8) | (port[1] & 0xFF);
165
166                         /*
167                          * XXX - should this call to "find_conversation()"
168                          * just use "pinfo->src" and "server_port", and
169                          * wildcard everything else?
170                          */
171                         conversation = find_conversation(&pinfo->src,
172                             &pinfo->dst, PT_TCP, server_port, 0, NO_PORT_B);
173                         if (conversation == NULL) {
174                                 /*
175                                  * XXX - should this call to
176                                  * "conversation_new()" just use "pinfo->src"
177                                  * and "server_port", and wildcard everything
178                                  * else?
179                                  *
180                                  * XXX - what if we did find a conversation?
181                                  * As we create it only on the first pass
182                                  * through the packets, if we find one, it's
183                                  * presumably an unrelated conversation.
184                                  * Should we remove the old one from the hash
185                                  * table and put this one in its place?
186                                  * Can the conversaton code handle
187                                  * conversations not in the hash table?
188                                  */
189                                 conversation = conversation_new(&pinfo->src,
190                                     &pinfo->dst, PT_TCP, server_port, 0,
191                                     NO_PORT2);
192                                 conversation_set_dissector(conversation,
193                                     ftpdata_handle);
194                         }
195                         break;
196                 }
197
198                 /*
199                  * Well, that didn't work.  Skip the first number we found,
200                  * and keep trying.
201                  */
202                 while ((c = *p) != '\0' && isdigit(c))
203                         p++;
204         }
205
206         g_free(args);
207 }       
208
209 static void
210 dissect_ftp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
211 {
212         gboolean        is_request;
213         proto_tree      *ftp_tree = NULL;
214         proto_item      *ti;
215         gint            offset = 0;
216         const u_char    *line;
217         gboolean        is_pasv_response = FALSE;
218         gint            next_offset;
219         int             linelen;
220         int             tokenlen;
221         const u_char    *next_token;
222
223         if (pinfo->match_port == pinfo->destport)
224                 is_request = TRUE;
225         else
226                 is_request = FALSE;
227
228         if (check_col(pinfo->cinfo, COL_PROTOCOL))
229                 col_set_str(pinfo->cinfo, COL_PROTOCOL, "FTP");
230
231         /*
232          * Find the end of the first line.
233          *
234          * Note that "tvb_find_line_end()" will return a value that is
235          * not longer than what's in the buffer, so the "tvb_get_ptr()"
236          * call won't throw an exception.
237          */
238         linelen = tvb_find_line_end(tvb, offset, -1, &next_offset);
239         line = tvb_get_ptr(tvb, offset, linelen);
240
241         if (check_col(pinfo->cinfo, COL_INFO)) {
242                 /*
243                  * Put the first line from the buffer into the summary
244                  * (but leave out the line terminator).
245                  */
246                 col_add_fstr(pinfo->cinfo, COL_INFO, "%s: %s",
247                     is_request ? "Request" : "Response",
248                     format_text(line, linelen));
249         }
250    
251         if (tree) {
252                 ti = proto_tree_add_item(tree, proto_ftp, tvb, offset, -1,
253                     FALSE);
254                 ftp_tree = proto_item_add_subtree(ti, ett_ftp);
255
256                 if (is_request) {
257                         proto_tree_add_boolean_hidden(ftp_tree,
258                             hf_ftp_request, tvb, 0, 0, TRUE);
259                         proto_tree_add_boolean_hidden(ftp_tree,
260                             hf_ftp_response, tvb, 0, 0, FALSE);
261                 } else {
262                         proto_tree_add_boolean_hidden(ftp_tree,
263                             hf_ftp_request, tvb, 0, 0, FALSE);
264                         proto_tree_add_boolean_hidden(ftp_tree,
265                             hf_ftp_response, tvb, 0, 0, TRUE);
266                 }
267         }
268
269         /*
270          * Extract the first token, and, if there is a first
271          * token, add it as the request or reply code.
272          */
273         tokenlen = get_token_len(line, line + linelen, &next_token);
274         if (tokenlen != 0) {
275                 if (is_request) {
276                         if (tree) {
277                                 proto_tree_add_item(ftp_tree,
278                                     hf_ftp_request_command, tvb, offset,
279                                     tokenlen, FALSE);
280                         }
281                 } else {
282                         /*
283                          * This is a response; see if it's a passive-mode
284                          * response.
285                          *
286                          * XXX - check for "229" responses to EPSV
287                          * commands, to handle IPv6, as per RFC 2428?
288                          *
289                          * XXX - does anybody do FOOBAR, as per RFC 1639,
290                          * or has that been supplanted by RFC 2428?
291                          */
292                         if (tokenlen == 3 &&
293                             strncmp("227", line, tokenlen) == 0)
294                                 is_pasv_response = TRUE;
295                         if (tree) {
296                                 proto_tree_add_uint(ftp_tree,
297                                     hf_ftp_response_code, tvb, offset,
298                                     tokenlen, atoi(line));
299                         }
300                 }
301                 offset += next_token - line;
302                 linelen -= next_token - line;
303                 line = next_token;
304
305                 /*
306                  * If this is a PASV response, handle it if we haven't
307                  * already processed this frame.
308                  */
309                 if (!pinfo->fd->flags.visited && is_pasv_response) {
310                         /*
311                          * We haven't processed this frame, and it contains
312                          * a PASV response; set up a conversation for the
313                          * data.
314                          */
315                         handle_pasv_response(line, linelen, pinfo);
316                 }
317         }
318
319         if (tree) {
320                 /*
321                  * Add the rest of the first line as request or
322                  * reply data.
323                  */
324                 if (linelen != 0) {
325                         if (is_request) {
326                                 proto_tree_add_item(ftp_tree,
327                                     hf_ftp_request_arg, tvb, offset,
328                                     linelen, FALSE);
329                         } else {
330                                 proto_tree_add_item(ftp_tree,
331                                     hf_ftp_response_arg, tvb, offset,
332                                     linelen, FALSE);
333                         }
334                 }
335                 offset = next_offset;
336
337                 /*
338                  * Show the rest of the request or response as text,
339                  * a line at a time.
340                  */
341                 while (tvb_offset_exists(tvb, offset)) {
342                         /*
343                          * Find the end of the line.
344                          */
345                         linelen = tvb_find_line_end(tvb, offset, -1,
346                             &next_offset);
347
348                         /*
349                          * Put this line.
350                          */
351                         proto_tree_add_text(ftp_tree, tvb, offset,
352                             next_offset - offset, "%s",
353                             tvb_format_text(tvb, offset, next_offset - offset));
354                         offset = next_offset;
355                 }
356         }
357 }
358
359 static void
360 dissect_ftpdata(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
361 {
362         proto_tree      *ti, *ftp_data_tree;
363         int             data_length;
364
365         if (check_col(pinfo->cinfo, COL_PROTOCOL))
366                 col_set_str(pinfo->cinfo, COL_PROTOCOL, "FTP-DATA");
367
368         if (check_col(pinfo->cinfo, COL_INFO)) {
369                 col_add_fstr(pinfo->cinfo, COL_INFO, "FTP Data: %u bytes",
370                     tvb_reported_length(tvb));
371         }
372
373         if (tree) {
374                 data_length = tvb_length(tvb);
375
376                 ti = proto_tree_add_item(tree, proto_ftp_data, tvb, 0, -1,
377                     FALSE);
378                 ftp_data_tree = proto_item_add_subtree(ti, ett_ftp_data);
379
380                 /*
381                  * XXX - if this is binary data, it'll produce
382                  * a *really* long line.
383                  */
384                 proto_tree_add_text(ftp_data_tree, tvb, 0, data_length,
385                     "FTP Data: %s", tvb_format_text(tvb, 0, data_length));
386         }
387 }
388
389 void
390 proto_register_ftp(void)
391 {
392     static hf_register_info hf[] = {
393     { &hf_ftp_response,
394       { "Response",           "ftp.response",
395         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
396         "TRUE if FTP response", HFILL }},
397
398     { &hf_ftp_request,
399       { "Request",            "ftp.request",
400         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
401         "TRUE if FTP request", HFILL }},
402
403     { &hf_ftp_request_command,
404       { "Request command",    "ftp.request.command",
405         FT_STRING,  BASE_NONE, NULL, 0x0,
406         "", HFILL }},
407
408     { &hf_ftp_request_arg,
409       { "Request arg",        "ftp.request.arg",
410         FT_STRING,  BASE_NONE, NULL, 0x0,
411         "", HFILL }},
412
413     { &hf_ftp_response_code,
414       { "Response code",      "ftp.response.code",
415         FT_UINT8,   BASE_DEC, NULL, 0x0,
416         "", HFILL }},
417
418     { &hf_ftp_response_arg,
419       { "Response arg",      "ftp.reponse.arg",
420         FT_STRING,  BASE_NONE, NULL, 0x0,
421         "", HFILL }}
422   };
423   static gint *ett[] = {
424     &ett_ftp,
425     &ett_ftp_data,
426   };
427
428   proto_ftp = proto_register_protocol("File Transfer Protocol (FTP)", "FTP",
429                                       "ftp");
430   proto_ftp_data = proto_register_protocol("FTP Data", "FTP-DATA", "ftp-data");
431   proto_register_field_array(proto_ftp, hf, array_length(hf));
432   proto_register_subtree_array(ett, array_length(ett));
433
434   ftpdata_handle = create_dissector_handle(dissect_ftpdata, proto_ftp_data);
435 }
436
437 void
438 proto_reg_handoff_ftp(void)
439 {
440   dissector_handle_t ftpdata_handle, ftp_handle;
441
442   ftpdata_handle = create_dissector_handle(dissect_ftpdata, proto_ftp_data);
443   dissector_add("tcp.port", TCP_PORT_FTPDATA, ftpdata_handle);
444   ftp_handle = create_dissector_handle(dissect_ftp, proto_ftp);
445   dissector_add("tcp.port", TCP_PORT_FTP, ftp_handle);
446 }