Support for HTTP methods added by GENA (the uPnP protocol), and for the
[obnox/wireshark/wip.git] / packet-rsh.c
1 /* packet-rsh.c
2  * Routines for rsh packet disassembly
3  *
4  * Robert Tsai <rtsai@netapp.com>
5  * Liberally copied from packet-http.c, by Guy Harris <guy@alum.mit.edu>
6  *
7  * $Id: packet-rsh.c,v 1.7 2000/11/19 08:54:04 guy Exp $
8  *
9  * Ethereal - Network traffic analyzer
10  * By Gerald Combs <gerald@zing.org>
11  * Copyright 1998 Gerald Combs
12  *
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  */
30
31 #ifdef HAVE_CONFIG_H
32 #include "config.h"
33 #endif
34
35 #ifdef HAVE_SYS_TYPES_H
36 #include <sys/types.h>
37 #endif
38
39 #include <glib.h>
40 #include "packet.h"
41 #include "strutil.h"
42
43 static int proto_rsh = -1;
44 static int hf_rsh_response = -1;
45 static int hf_rsh_request = -1;
46 static gint ett_rsh = -1;
47
48 #define TCP_PORT_RSH                    514
49
50 void
51 dissect_rsh(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
52 {
53         proto_tree      *rsh_tree;
54         proto_item      *ti;
55         gint            offset = 0;
56         const u_char    *line;
57         gint            next_offset;
58         int             linelen;
59
60         CHECK_DISPLAY_AS_DATA(proto_rsh, tvb, pinfo, tree);
61
62         pinfo->current_proto = "RSH";
63
64         if (check_col(pinfo->fd, COL_PROTOCOL))
65                 col_set_str(pinfo->fd, COL_PROTOCOL, "RSH");
66         if (check_col(pinfo->fd, COL_INFO)) {
67                 /* Put the first line from the buffer into the summary. */
68                 tvb_find_line_end(tvb, offset, -1, &next_offset);
69                 linelen = next_offset - offset; /* include the line terminator */
70                 line = tvb_get_ptr(tvb, offset, linelen);
71                 col_add_str(pinfo->fd, COL_INFO, format_text(line, linelen));
72         }
73         if (tree) {
74                 ti = proto_tree_add_item(tree, proto_rsh, tvb, offset,
75                     tvb_length_remaining(tvb, offset), FALSE);
76                 rsh_tree = proto_item_add_subtree(ti, ett_rsh);
77
78                 /*
79                  * Process the packet data, a line at a time.
80                  */
81                 while (tvb_offset_exists(tvb, offset)) {
82                         /*
83                          * Find the end of the line.
84                          */
85                         tvb_find_line_end(tvb, offset, -1, &next_offset);
86
87                         /*
88                          * Put this line.
89                          */
90                         proto_tree_add_text(rsh_tree, tvb, offset,
91                             next_offset - offset, "%s",
92                             tvb_format_text(tvb, offset, next_offset - offset));
93                         offset = next_offset;
94                 }
95
96                 if (pinfo->match_port == pinfo->destport) 
97                         proto_tree_add_boolean_hidden(rsh_tree, 
98                             hf_rsh_request, tvb, 0, 0, 1);
99                 else
100                         proto_tree_add_boolean_hidden(rsh_tree, 
101                             hf_rsh_response, tvb, 0, 0, 1);
102         }
103 }
104
105 void
106 proto_register_rsh(void)
107 {
108
109         static hf_register_info hf[] = {
110                 { &hf_rsh_response,
111                 { "Response",           "rsh.response",  
112                 FT_BOOLEAN, BASE_NONE, NULL, 0x0,
113                 "TRUE if rsh response" }},
114                 { &hf_rsh_request,
115                 { "Request",            "rsh.request",
116                 FT_BOOLEAN, BASE_NONE, NULL, 0x0,
117                 "TRUE if rsh request" }},
118         };
119
120         static gint *ett[] = {
121                 &ett_rsh,
122         };
123
124         proto_rsh = proto_register_protocol("Remote Shell", "rsh");
125         proto_register_field_array(proto_rsh, hf, array_length(hf));
126         proto_register_subtree_array(ett, array_length(ett));
127 }
128
129 void
130 proto_reg_handoff_rsh(void)
131 {
132         dissector_add("tcp.port", TCP_PORT_RSH, dissect_rsh);
133 }