added decode support for 'poll inactive station' ipx message
[obnox/wireshark/wip.git] / packet-pop.c
1 /* packet-pop.c
2  * Routines for pop packet dissection
3  * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
4  *
5  * $Id: packet-pop.c,v 1.11 1999/11/20 23:03:09 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@unicom.net>
9  * Copyright 1998 Gerald Combs
10  *
11  * Copied from packet-tftp.c
12  * 
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  * 
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <stdio.h>
33
34 #ifdef HAVE_SYS_TYPES_H
35 # include <sys/types.h>
36 #endif
37
38 #ifdef HAVE_NETINET_IN_H
39 # include <netinet/in.h>
40 #endif
41
42 #include <string.h>
43 #include <glib.h>
44 #include "packet.h"
45
46 static int proto_pop = -1;
47 static int hf_pop_response = -1;
48 static int hf_pop_request = -1;
49
50 static gint ett_pop = -1;
51
52 static gboolean is_continuation(const u_char *data);
53         
54 void
55 dissect_pop(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
56 {
57         proto_tree      *pop_tree, *ti;
58         gchar          rr[50], rd[1500];
59         int i1 = (u_char *)strchr(pd + offset, ' ') - (pd + offset); /* Where is that space */
60         int i2;
61         int max_data = pi.captured_len - offset;
62
63         memset(rr, '\0', sizeof(rr));
64         memset(rd, '\0', sizeof(rd));
65
66         if ((i1 > max_data) || (i1 <= 0)) {
67           
68           i1 = max_data;
69           strncpy(rr, pd + offset, MIN(max_data - 2, sizeof(rr) - 1));
70
71         }
72         else {
73
74           strncpy(rr, pd + offset, MIN(i1, sizeof(rr) - 1));
75           i2 = ((u_char *)strchr(pd + offset + i1 + 1, '\r') - (pd + offset)) - i1 - 1;
76           if (i2 > max_data - i1 - 1 || i2 <= 0) {
77             i2 = ((u_char *)strchr(pd + offset + i1 + 1, '\n') - (pd + offset)) - i1 - 1;
78             if (i2 > max_data - i1 - 1 || i2 <= 0)
79               i2 = max_data - i1 - 1;
80           }
81           strncpy(rd, pd + offset + i1 + 1, MIN(i2, sizeof(rd) - 1));
82         }
83
84         if (check_col(fd, COL_PROTOCOL))
85           col_add_str(fd, COL_PROTOCOL, "POP");
86
87         if (check_col(fd, COL_INFO)) {
88           /*
89            * Do it like HTTP does.
90            * Put the first line from the buffer into the summary,
91            * if it's an POP request or reply.
92            * Otherwise, just call it a continuation.
93            */
94           if (pi.match_port == pi.srcport && is_continuation(pd+offset))
95             col_add_str(fd, COL_INFO, "Continuation");
96           else
97             col_add_fstr(fd, COL_INFO, "%s: %s %s", (pi.match_port == pi.destport)? "Request" : "Response", rr, rd);      
98         }
99
100         if (tree) {
101
102           ti = proto_tree_add_item(tree, proto_pop, offset, END_OF_FRAME, NULL);
103           pop_tree = proto_item_add_subtree(ti, ett_pop);
104
105           if (pi.match_port == pi.destport) { /* Request */
106             proto_tree_add_item_hidden(pop_tree, hf_pop_request, offset, i1, TRUE);
107             proto_tree_add_text(pop_tree, offset, i1, "Request: %s", rr);
108
109             if (strlen(rd) != 0)
110               proto_tree_add_text(pop_tree, offset + i1 + 1, END_OF_FRAME, "Request Arg: %s", rd);
111
112           }
113           else {
114             proto_tree_add_item_hidden(pop_tree, hf_pop_response, offset, i1, TRUE);
115
116             if (is_continuation(pd+offset))
117               dissect_data(pd, offset, fd, pop_tree);
118             else {
119               proto_tree_add_text(pop_tree, offset, i1, "Response: %s", rr);
120
121               if (strlen(rd) != 0)
122               proto_tree_add_text(pop_tree, offset + i1 + 1, END_OF_FRAME, "Response Arg: %s", rd);
123             }
124           }
125
126         }
127 }
128
129 void
130 proto_register_pop(void)
131 {
132
133   static hf_register_info hf[] = {
134     { &hf_pop_response,
135       { "Response",           "pop.response",
136         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
137         "TRUE if POP response" }},
138
139     { &hf_pop_request,
140       { "Request",            "pop.request",
141         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
142         "TRUE if POP request" }}
143   };
144   static gint *ett[] = {
145     &ett_pop,
146   };
147
148   proto_pop = proto_register_protocol("Post Office Protocol", "pop");
149   proto_register_field_array(proto_pop, hf, array_length(hf));
150   proto_register_subtree_array(ett, array_length(ett));
151 }
152
153 static gboolean is_continuation(const u_char *data)
154 {
155   if (strncmp(data, "+OK", strlen("+OK")) == 0)
156     return FALSE;
157
158   if (strncmp(data, "-ERR", strlen("-ERR")) == 0)
159     return FALSE;
160
161   return TRUE;
162 }