Don't guard col_set_str (COL_PROTOCOL) with col_check
[obnox/wireshark/wip.git] / epan / dissectors / packet-lpd.c
1 /* packet-lpd.c
2  * Routines for LPR and LPRng packet disassembly
3  * Gilbert Ramirez <gram@alumni.rice.edu>
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.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 <string.h>
31
32 #include <glib.h>
33 #include <epan/packet.h>
34
35 #define TCP_PORT_PRINTER                515
36
37 static int proto_lpd = -1;
38 static int hf_lpd_response = -1;
39 static int hf_lpd_request = -1;
40
41 static gint ett_lpd = -1;
42
43 enum lpr_type { request, response, unknown };
44
45 static gint find_printer_string(tvbuff_t *tvb, int offset);
46
47 static dissector_handle_t data_handle;
48
49 static void
50 dissect_lpd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
51 {
52         proto_tree      *lpd_tree;
53         proto_item      *ti, *hidden_item;
54         enum lpr_type   lpr_packet_type;
55         guint8          code;
56         gint            printer_len;
57
58         /* This information comes from the LPRng HOWTO, which also describes
59                 RFC 1179. http://www.astart.com/lprng/LPRng-HOWTO.html */
60         static const value_string lpd_client_code[] = {
61                 { 1, "LPC: start print / jobcmd: abort" },
62                 { 2, "LPR: transfer a printer job / jobcmd: receive control file" },
63                 { 3, "LPQ: print short form of queue status / jobcmd: receive data file" },
64                 { 4, "LPQ: print long form of queue status" },
65                 { 5, "LPRM: remove jobs" },
66                 { 6, "LPRng lpc: do control operation" },
67                 { 7, "LPRng lpr: transfer a block format print job" },
68                 { 8, "LPRng lpc: secure command transfer" },
69                 { 9, "LPRng lpq: verbose status information" },
70                 { 0, NULL }
71         };
72         static const value_string lpd_server_code[] = {
73                 { 0, "Success: accepted, proceed" },
74                 { 1, "Queue not accepting jobs" },
75                 { 2, "Queue temporarily full, retry later" },
76                 { 3, "Bad job format, do not retry" },
77                 { 0, NULL }
78         };
79
80         col_set_str(pinfo->cinfo, COL_PROTOCOL, "LPD");
81         if (check_col(pinfo->cinfo, COL_INFO))
82                 col_clear(pinfo->cinfo, COL_INFO);
83
84         /* rfc1179 states that all responses are 1 byte long */
85         code = tvb_get_guint8(tvb, 0);
86         if (tvb_reported_length(tvb) == 1) {
87                 lpr_packet_type = response;
88         }
89         else if (code <= 9) {
90                 lpr_packet_type = request;
91         }
92         else {
93                 lpr_packet_type = unknown;
94         }
95
96         if (check_col(pinfo->cinfo, COL_INFO)) {
97                 if (lpr_packet_type == request && code !=0) {
98                         col_add_str(pinfo->cinfo, COL_INFO, val_to_str(code, lpd_client_code, "Unknown client code: %u"));
99                 }
100                 else if (lpr_packet_type == response) {
101                         col_set_str(pinfo->cinfo, COL_INFO, "LPD response");
102                 }
103                 else {
104                         col_set_str(pinfo->cinfo, COL_INFO, "LPD continuation");
105                 }
106         }
107
108         if (tree) {
109                 ti = proto_tree_add_item(tree, proto_lpd, tvb, 0, -1, FALSE);
110                 lpd_tree = proto_item_add_subtree(ti, ett_lpd);
111
112                 if (lpr_packet_type == response) {
113                   hidden_item = proto_tree_add_boolean(lpd_tree, hf_lpd_response,
114                                                 tvb, 0, 0, TRUE);
115                 } else {
116                   hidden_item = proto_tree_add_boolean(lpd_tree, hf_lpd_request,
117                                                 tvb, 0, 0, TRUE);
118                 }
119                 PROTO_ITEM_SET_HIDDEN(hidden_item);
120
121                 if (lpr_packet_type == request) {
122                         printer_len = find_printer_string(tvb, 1);
123
124                         if (code <= 9 && printer_len != -1) {
125                                 proto_tree_add_text(lpd_tree, tvb, 0, 1, "%s",
126                                         val_to_str(code, lpd_client_code, "Unknown client code: %u"));
127                                 proto_tree_add_text(lpd_tree, tvb, 1, printer_len,
128                                          "Printer/options: %s",
129                                          tvb_format_text(tvb, 1, printer_len));
130                         }
131                         else {
132                                 call_dissector(data_handle,tvb, pinfo, lpd_tree);
133                         }
134                 }
135                 else if (lpr_packet_type == response) {
136                         if (code <= 3) {
137                                 proto_tree_add_text(lpd_tree, tvb, 0, 1,
138                                         "Response: %s", val_to_str(code, lpd_server_code, "Unknown server code: %u"));
139                         }
140                         else {
141                                 call_dissector(data_handle,tvb, pinfo, lpd_tree);
142                         }
143                 }
144                 else {
145                         call_dissector(data_handle,tvb, pinfo, lpd_tree);
146                 }
147         }
148 }
149
150
151 static gint
152 find_printer_string(tvbuff_t *tvb, int offset)
153 {
154         int     i;
155
156         /* try to find end of string, either '\n' or '\0' */
157         i = tvb_find_guint8(tvb, offset, -1, '\0');
158         if (i == -1)
159                 i = tvb_find_guint8(tvb, offset, -1, '\n');
160         if (i == -1)
161                 return -1;
162         return i - offset;      /* length of string */
163 }
164
165
166 void
167 proto_register_lpd(void)
168 {
169   static hf_register_info hf[] = {
170     { &hf_lpd_response,
171       { "Response",           "lpd.response",
172         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
173         "TRUE if LPD response", HFILL }},
174
175     { &hf_lpd_request,
176       { "Request",            "lpd.request",
177         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
178         "TRUE if LPD request", HFILL }}
179   };
180   static gint *ett[] = {
181     &ett_lpd,
182   };
183
184   proto_lpd = proto_register_protocol("Line Printer Daemon Protocol", "LPD", "lpd");
185   proto_register_field_array(proto_lpd, hf, array_length(hf));
186   proto_register_subtree_array(ett, array_length(ett));
187 }
188
189 void
190 proto_reg_handoff_lpd(void)
191 {
192   dissector_handle_t lpd_handle;
193
194   lpd_handle = create_dissector_handle(dissect_lpd, proto_lpd);
195   dissector_add("tcp.port", TCP_PORT_PRINTER, lpd_handle);
196   data_handle = find_dissector("data");
197 }