Add comments about nettl support.
[obnox/wireshark/wip.git] / print.c
1 /* print.c
2  * Routines for printing packet analysis trees.
3  *
4  * $Id: print.c,v 1.28 2000/01/22 06:22:18 guy Exp $
5  *
6  * Gilbert Ramirez <gram@xiexie.org>
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@zing.org>
10  * Copyright 1998 Gerald Combs
11  *
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 #include <string.h>
34
35 #ifdef HAVE_SYS_TYPES_H
36 # include <sys/types.h>
37 #endif
38
39 #include "packet.h"
40 #include "print.h"
41 #include "ps.h"
42 #include "util.h"
43
44 static void proto_tree_print_node_text(GNode *node, gpointer data);
45 static void proto_tree_print_node_ps(GNode *node, gpointer data);
46 static void ps_clean_string(unsigned char *out, const unsigned char *in,
47                         int outbuf_size);
48 static void print_hex_data_text(FILE *fh, register const u_char *cp,
49                 register u_int length, char_enc encoding);
50 static void print_hex_data_ps(FILE *fh, register const u_char *cp,
51                 register u_int length, char_enc encoding);
52
53 extern int proto_data; /* in packet-data.c */
54
55
56 typedef struct {
57         int             level;
58         FILE            *fh;
59         const guint8    *pd;
60         gboolean        print_all_levels;
61         gboolean        print_hex_for_data;
62         char_enc        encoding;
63 } print_data;
64
65 FILE *open_print_dest(int to_file, const char *dest)
66 {
67         FILE    *fh;
68
69         /* Open the file or command for output */
70         if (to_file)
71                 fh = fopen(dest, "w");
72         else
73                 fh = popen(dest, "w");
74
75         return fh;
76 }
77
78 void close_print_dest(int to_file, FILE *fh)
79 {
80         /* Close the file or command */
81         if (to_file)
82                 fclose(fh);
83         else
84                 pclose(fh);
85 }
86
87 void print_preamble(FILE *fh, gint format)
88 {
89         if (format == PR_FMT_PS)
90                 print_ps_preamble(fh);
91 }
92
93 void print_finale(FILE *fh, gint format)
94 {
95         if (format == PR_FMT_PS)
96                 print_ps_finale(fh);
97 }
98
99 void proto_tree_print(gboolean print_one_packet, print_args_t *print_args,
100     GNode *protocol_tree, const u_char *pd, frame_data *fd, FILE *fh)
101 {
102         print_data data;
103
104         /* Create the output */
105         data.level = 0;
106         data.fh = fh;
107         data.pd = pd;
108         data.encoding = fd->encoding;
109         data.print_all_levels = print_args->expand_all;
110         data.print_hex_for_data = !print_args->print_hex;
111             /* If we're printing the entire packet in hex, don't
112                print uninterpreted data fields in hex as well. */
113
114         if (print_args->format == PR_FMT_TEXT) {
115                 g_node_children_foreach((GNode*) protocol_tree, G_TRAVERSE_ALL,
116                         proto_tree_print_node_text, &data);
117         } else {
118                 g_node_children_foreach((GNode*) protocol_tree, G_TRAVERSE_ALL,
119                         proto_tree_print_node_ps, &data);
120         }
121 }
122
123 /* Print a tree's data, and any child nodes, in plain text */
124 static
125 void proto_tree_print_node_text(GNode *node, gpointer data)
126 {
127         field_info      *fi = (field_info*) (node->data);
128         print_data      *pdata = (print_data*) data;
129         int             i;
130         int             num_spaces;
131         char            space[41];
132         gchar           label_str[ITEM_LABEL_LENGTH];
133         gchar           *label_ptr;
134
135         /* Don't print invisible entries. */
136         if (!fi->visible)
137                 return;
138
139         /* was a free format label produced? */
140         if (fi->representation) {
141                 label_ptr = fi->representation;
142         }
143         else { /* no, make a generic label */
144                 label_ptr = label_str;
145                 proto_item_fill_label(fi, label_str);
146         }
147                 
148         /* Prepare the tabs for printing, depending on tree level */
149         num_spaces = pdata->level * 4;
150         if (num_spaces > 40) {
151                 num_spaces = 40;
152         }
153         for (i = 0; i < num_spaces; i++) {
154                 space[i] = ' ';
155         }
156         /* The string is NUL-terminated */
157         space[num_spaces] = 0;
158
159         /* Print the text */
160         fprintf(pdata->fh, "%s%s\n", space, label_ptr);
161
162         /* If it's uninterpreted data, dump it (unless our caller will
163            be printing the entire packet in hex). */
164         if (fi->hfinfo->id == proto_data && pdata->print_hex_for_data)
165                 print_hex_data_text(pdata->fh, &pdata->pd[fi->start],
166                                 fi->length, pdata->encoding);
167
168         /* If we're printing all levels, or if this level is expanded,
169            recurse into the subtree, if it exists. */
170         if (pdata->print_all_levels || tree_is_expanded[fi->tree_type]) {
171                 if (g_node_n_children(node) > 0) {
172                         pdata->level++;
173                         g_node_children_foreach(node, G_TRAVERSE_ALL,
174                                 proto_tree_print_node_text, pdata);
175                         pdata->level--;
176                 }
177         }
178 }
179
180 void print_hex_data(FILE *fh, gint format, register const u_char *cp,
181                 register u_int length, char_enc encoding)
182 {
183         if (format == PR_FMT_PS)
184                 print_hex_data_ps(fh, cp, length, encoding);
185         else
186                 print_hex_data_text(fh, cp, length, encoding);
187 }
188
189 /* This routine was created by Dan Lasley <DLASLEY@PROMUS.com>, and
190 only slightly modified for ethereal by Gilbert Ramirez. */
191 static
192 void print_hex_data_text(FILE *fh, register const u_char *cp,
193                 register u_int length, char_enc encoding)
194 {
195         register int ad, i, j, k;
196         u_char c;
197         u_char line[60];
198         static u_char binhex[16] = {
199                 '0', '1', '2', '3', '4', '5', '6', '7',
200                 '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
201
202         memset (line, ' ', sizeof line);
203         line[sizeof (line)-1] = 0;
204         for (ad=i=j=k=0; i<length; i++) {
205                 c = *cp++;
206                 line[j++] = binhex[c>>4];
207                 line[j++] = binhex[c&0xf];
208                 if (i&1) j++;
209                 if (encoding == CHAR_EBCDIC) {
210                         c = EBCDIC_to_ASCII1(c);
211                 }
212                 line[42+k++] = c >= ' ' && c < 0x7f ? c : '.';
213                 if ((i & 15) == 15) {
214                         fprintf (fh, "\n%4x  %s", ad, line);
215                         /*if (i==15) printf (" %d", length);*/
216                         memset (line, ' ', sizeof line);
217                         line[sizeof (line)-1] = j = k = 0;
218                         ad += 16;
219                 }
220         }
221
222         if (line[0] != ' ') fprintf (fh, "\n%4x  %s", ad, line);
223         fprintf(fh, "\n");
224         return;
225
226 }
227
228 #define MAX_LINE_LENGTH 256
229
230 /* Print a node's data, and any child nodes, in PostScript */
231 static
232 void proto_tree_print_node_ps(GNode *node, gpointer data)
233 {
234         field_info      *fi = (field_info*) (node->data);
235         print_data      *pdata = (print_data*) data;
236         gchar           label_str[ITEM_LABEL_LENGTH];
237         gchar           *label_ptr;
238         char            psbuffer[MAX_LINE_LENGTH]; /* static sized buffer! */
239
240         if (!fi->visible)
241                 return;
242
243         /* was a free format label produced? */
244         if (fi->representation) {
245                 label_ptr = fi->representation;
246         }
247         else { /* no, make a generic label */
248                 label_ptr = label_str;
249                 proto_item_fill_label(fi, label_str);
250         }
251                 
252         /* Print the text */
253         ps_clean_string(psbuffer, label_ptr, MAX_LINE_LENGTH);
254         fprintf(pdata->fh, "%d (%s) putline\n", pdata->level, psbuffer);
255
256         /* If it's uninterpreted data, dump it (unless our caller will
257            be printing the entire packet in hex). */
258         if (fi->hfinfo->id == proto_data && pdata->print_hex_for_data) {
259                 print_hex_data_ps(pdata->fh, &pdata->pd[fi->start], fi->length,
260                                 pdata->encoding);
261         }
262
263         /* Recurse into the subtree, if it exists */
264         if (g_node_n_children(node) > 0) {
265                 pdata->level++;
266                 g_node_children_foreach(node, G_TRAVERSE_ALL,
267                         proto_tree_print_node_ps, pdata);
268                 pdata->level--;
269         }
270 }
271
272 static
273 void ps_clean_string(unsigned char *out, const unsigned char *in,
274                         int outbuf_size)
275 {
276         int rd, wr;
277         char c;
278
279         for (rd = 0, wr = 0 ; wr < outbuf_size; rd++, wr++ ) {
280                 c = in[rd];
281                 switch (c) {
282                         case '(':
283                         case ')':
284                         case '\\':
285                                 out[wr] = '\\';
286                                 out[++wr] = c;
287                                 break;
288
289                         default:
290                                 out[wr] = c;
291                                 break;
292                 }
293
294                 if (c == 0) {
295                         break;
296                 }
297         }
298 }
299
300 static
301 void print_hex_data_ps(FILE *fh, register const u_char *cp,
302                 register u_int length, char_enc encoding)
303 {
304         register int ad, i, j, k;
305         u_char c;
306         u_char line[60];
307         static u_char binhex[16] = {
308                 '0', '1', '2', '3', '4', '5', '6', '7',
309                 '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
310         u_char psline[MAX_LINE_LENGTH];
311
312         print_ps_hex(fh);
313         memset (line, ' ', sizeof line);
314         line[sizeof (line)-1] = 0;
315         for (ad=i=j=k=0; i<length; i++) {
316                 c = *cp++;
317                 line[j++] = binhex[c>>4];
318                 line[j++] = binhex[c&0xf];
319                 if (i&1) j++;
320                 if (encoding == CHAR_EBCDIC) {
321                         c = EBCDIC_to_ASCII1(c);
322                 }
323                 line[42+k++] = c >= ' ' && c < 0x7f ? c : '.';
324                 if ((i & 15) == 15) {
325                         ps_clean_string(psline, line, MAX_LINE_LENGTH);
326                         fprintf (fh, "(%4x  %s) hexdump\n", ad, psline);
327                         memset (line, ' ', sizeof line);
328                         line[sizeof (line)-1] = j = k = 0;
329                         ad += 16;
330                 }
331         }
332
333         if (line[0] != ' ') {
334                 ps_clean_string(psline, line, MAX_LINE_LENGTH);
335                 fprintf (fh, "(%4x  %s) hexdump\n", ad, psline);
336         }
337         return;
338
339 }
340
341 void print_line(FILE *fh, gint format, char *line)
342 {
343         char            psbuffer[MAX_LINE_LENGTH]; /* static sized buffer! */
344
345         if (format == PR_FMT_PS) {
346                 ps_clean_string(psbuffer, line, MAX_LINE_LENGTH);
347                 fprintf(fh, "(%s) hexdump\n", psbuffer);
348         } else
349                 fputs(line, fh);
350 }