Add a dialog box for constructing expressions that test a field in the
[obnox/wireshark/wip.git] / packet-nntp.c
1 /* packet-nntp.c
2  * Routines for nntp packet dissection
3  * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
4  *
5  * $Id: packet-nntp.c,v 1.16 2000/11/19 08:54:00 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@zing.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <stdio.h>
31
32 #ifdef HAVE_SYS_TYPES_H
33 # include <sys/types.h>
34 #endif
35
36 #ifdef HAVE_NETINET_IN_H
37 # include <netinet/in.h>
38 #endif
39
40 #include <string.h>
41 #include <glib.h>
42 #include "packet.h"
43 #include "strutil.h"
44
45 static int proto_nntp = -1;
46 static int hf_nntp_response = -1;
47 static int hf_nntp_request = -1;
48
49 static gint ett_nntp = -1;
50
51 #define TCP_PORT_NNTP                   119
52
53 static void
54 dissect_nntp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
55 {
56         gchar           *type;
57         proto_tree      *nntp_tree;
58         proto_item      *ti;
59         gint            offset = 0;
60         const u_char    *line;
61         gint            next_offset;
62         int             linelen;
63
64         CHECK_DISPLAY_AS_DATA(proto_nntp, tvb, pinfo, tree);
65
66         if (pinfo->match_port == pinfo->destport)
67                 type = "Request";
68         else
69                 type = "Response";
70
71         pinfo->current_proto = "NNTP";
72
73         if (check_col(pinfo->fd, COL_PROTOCOL))
74                 col_set_str(pinfo->fd, COL_PROTOCOL, "NNTP");
75
76         if (check_col(pinfo->fd, COL_INFO)) {
77                 /*
78                  * Put the first line from the buffer into the summary
79                  * (but leave out the line terminator).
80                  */
81                 linelen = tvb_find_line_end(tvb, offset, -1, &next_offset);
82                 line = tvb_get_ptr(tvb, offset, linelen);
83                 col_add_fstr(pinfo->fd, COL_INFO, "%s: %s", type,
84                     format_text(line, linelen));
85         }
86
87         if (tree) {
88                 ti = proto_tree_add_item(tree, proto_nntp, tvb, offset,
89                     tvb_length_remaining(tvb, offset), FALSE);
90                 nntp_tree = proto_item_add_subtree(ti, ett_nntp);
91
92                 if (pinfo->match_port == pinfo->destport) {
93                         proto_tree_add_boolean_hidden(nntp_tree,
94                             hf_nntp_request, tvb, 0, 0, TRUE);
95                 } else {
96                         proto_tree_add_boolean_hidden(nntp_tree,
97                             hf_nntp_response, tvb, 0, 0, TRUE);
98                 }
99
100                 /*
101                  * Show the request or response as text, a line at a time.
102                  * XXX - for requests, we could display the stuff after the
103                  * first line, if any, based on what the request was, and
104                  * for responses, we could display it based on what the
105                  * matching request was, although the latter requires us to
106                  * know what the matching request was....
107                  */
108                 while (tvb_offset_exists(tvb, offset)) {
109                         /*
110                          * Find the end of the line.
111                          */
112                         tvb_find_line_end(tvb, offset, -1, &next_offset);
113
114                         /*
115                          * Put this line.
116                          */
117                         proto_tree_add_text(nntp_tree, tvb, offset,
118                             next_offset - offset, "%s",
119                             tvb_format_text(tvb, offset, next_offset - offset));
120                         offset = next_offset;
121                 }
122         }
123 }
124
125 void
126 proto_register_nntp(void)
127 {
128         static hf_register_info hf[] = {
129             { &hf_nntp_response,
130               { "Response",           "nntp.response",
131                 FT_BOOLEAN, BASE_NONE, NULL, 0x0,
132                 "TRUE if NNTP response" }},
133
134             { &hf_nntp_request,
135               { "Request",            "nntp.request",
136                 FT_BOOLEAN, BASE_NONE, NULL, 0x0,
137                 "TRUE if NNTP request" }}
138         };
139         static gint *ett[] = {
140                 &ett_nntp,
141         };
142
143         proto_nntp = proto_register_protocol("Network News Transfer Protocol", 
144                                        "nntp");
145         proto_register_field_array(proto_nntp, hf, array_length(hf));
146         proto_register_subtree_array(ett, array_length(ett));
147 }
148
149 void
150 proto_reg_handoff_nntp(void)
151 {
152         dissector_add("tcp.port", TCP_PORT_NNTP, dissect_nntp);
153 }