Add tvbuff class.
[obnox/wireshark/wip.git] / packet-lpd.c
1 /* packet-lpd.c
2  * Routines for LPR and LPRng packet disassembly
3  * Gilbert Ramirez <gram@xiexie.org>
4  *
5  * $Id: packet-lpd.c,v 1.19 2000/05/11 08:15:23 gram Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@zing.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * 
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  * 
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #ifdef HAVE_SYS_TYPES_H
32 # include <sys/types.h>
33 #endif
34
35 #include <string.h>
36
37 #include <glib.h>
38 #include "packet.h"
39
40 #define TCP_PORT_PRINTER                515
41
42 static int proto_lpd = -1;
43 static int hf_lpd_response = -1;
44 static int hf_lpd_request = -1;
45
46 static gint ett_lpd = -1;
47
48 enum lpr_type { request, response, unknown };
49
50 static char* find_printer_string(const u_char *pd, int offset, int frame_length);
51
52 static void
53 dissect_lpd(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
54 {
55         proto_tree      *lpd_tree;
56         proto_item      *ti;
57         enum lpr_type   lpr_packet_type;
58         char            *printer;
59
60         /* This information comes from the LPRng HOWTO, which also describes
61                 RFC 1179. http://www.astart.com/lprng/LPRng-HOWTO.html */
62         char            *lpd_client_code[] = {
63                 "Unknown command",
64                 "LPC: start print / jobcmd: abort",
65                 "LPR: transfer a printer job / jobcmd: receive control file",
66                 "LPQ: print short form of queue status / jobcmd: receive data file",
67                 "LPQ: print long form of queue status",
68                 "LPRM: remove jobs",
69                 "LPRng lpc: do control operation",
70                 "LPRng lpr: transfer a block format print job",
71                 "LPRng lpc: secure command transfer",
72                 "LPRng lpq: verbose status information"
73         };
74         char            *lpd_server_code[] = {
75                 "Success: accepted, proceed",
76                 "Queue not accepting jobs",
77                 "Queue temporarily full, retry later",
78                 "Bad job format, do not retry"
79         };
80
81         /* rfc1179 states that all responses are 1 byte long */
82         if (END_OF_FRAME == 1) {
83                 lpr_packet_type = response;
84         }
85         else if (pd[offset] <= 9) {
86                 lpr_packet_type = request;
87         }
88         else {
89                 lpr_packet_type = unknown;
90         }
91
92         if (check_col(fd, COL_PROTOCOL))
93                 col_add_str(fd, COL_PROTOCOL, "LPD");
94         if (check_col(fd, COL_INFO)) {
95                 if (lpr_packet_type == request) {
96                         col_add_str(fd, COL_INFO, lpd_client_code[pd[offset]]);
97                 }
98                 else if (lpr_packet_type == response) {
99                         col_add_str(fd, COL_INFO, "LPD response");
100                 }
101                 else {
102                         col_add_str(fd, COL_INFO, "LPD continuation");
103                 }
104         }
105
106         if (tree) {
107                 ti = proto_tree_add_item(tree, proto_lpd, NullTVB, offset, 
108                                          END_OF_FRAME, NULL);
109                 lpd_tree = proto_item_add_subtree(ti, ett_lpd);
110
111                 if (lpr_packet_type == response) {
112                   proto_tree_add_item_hidden(lpd_tree, hf_lpd_response, NullTVB, 0, 0, TRUE);
113                 } else {
114                   proto_tree_add_item_hidden(lpd_tree, hf_lpd_request, NullTVB, 0, 0, TRUE);
115                 }
116
117                 if (lpr_packet_type == request) {
118                         printer = find_printer_string(pd, offset+1, END_OF_FRAME);
119
120                         if (pd[offset] <= 9 && printer) {
121                                 proto_tree_add_text(lpd_tree, NullTVB, offset,          1,
122                                         lpd_client_code[pd[offset]]);
123                                 proto_tree_add_text(lpd_tree, NullTVB, offset+1,
124                                         strlen(printer), "Printer/options: %s", printer);
125                         }
126                         else {
127                                 dissect_data(pd, offset, fd, tree);
128                         }
129
130                         if (printer) 
131                                 g_free(printer);
132                 }
133                 else if (lpr_packet_type == response) {
134                         int response = pd[offset];
135
136                         if (response <= 3) {
137                                 proto_tree_add_text(lpd_tree, NullTVB, offset, 1, "Response: %s",
138                                         lpd_server_code[response]);
139                         }
140                         else {
141                                 dissect_data(pd, offset, fd, tree);
142                         }
143                 }
144                 else {
145                                 dissect_data(pd, offset, fd, tree);
146                 }
147         }
148 }
149
150
151 static char*
152 find_printer_string(const u_char *pd, int offset, int frame_length)
153 {
154         int     i, final_offset;
155         char    c;
156         char    *string;
157         int     bytes;
158
159         final_offset = offset + frame_length;
160
161         /* try to find end of string, either 0x0a or 0x00 */
162         for (i = offset; i < final_offset; i++) {
163                 c = pd[i];
164                 if (c == '\x00' || c == '\x0a') {
165                         bytes = i - offset;
166                         string = g_malloc(bytes+1);
167                         memcpy(string, &pd[offset], bytes);
168                         string[bytes] = 0;
169                         return string;
170                 }
171         }
172
173         return NULL;
174 }
175
176
177 void
178 proto_register_lpd(void)
179 {
180   static hf_register_info hf[] = {
181     { &hf_lpd_response,
182       { "Response",           "lpd.response",           
183         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
184         "TRUE if LPD response" }},
185
186     { &hf_lpd_request,
187       { "Request",            "lpd.request",
188         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
189         "TRUE if LPD request" }}
190   };
191   static gint *ett[] = {
192     &ett_lpd,
193   };
194
195   proto_lpd = proto_register_protocol("Line Printer Daemon Protocol", "lpd");
196   proto_register_field_array(proto_lpd, hf, array_length(hf));
197   proto_register_subtree_array(ett, array_length(ett));
198 }
199
200 void
201 proto_reg_handoff_lpd(void)
202 {
203   dissector_add("tcp.port", TCP_PORT_PRINTER, &dissect_lpd);
204 }