Fix a possible dereference of null pointer.
[metze/wireshark/wip.git] / print.c
1 /* print.c
2  * Routines for printing packet analysis trees.
3  *
4  * $Id$
5  *
6  * Gilbert Ramirez <gram@alumni.rice.edu>
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
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 #include <stdio.h>
32 #include <string.h>
33
34 #include <epan/epan.h>
35 #include <epan/epan_dissect.h>
36 #include <epan/tvbuff.h>
37 #include <epan/packet.h>
38 #include <epan/emem.h>
39
40 #include "packet-range.h"
41 #include "print.h"
42 #include "ps.h"
43 #include "version_info.h"
44 #include <wsutil/file_util.h>
45 #include <epan/charsets.h>
46 #include <epan/dissectors/packet-data.h>
47 #include <epan/dissectors/packet-frame.h>
48
49 #define PDML_VERSION "0"
50 #define PSML_VERSION "0"
51
52 typedef struct {
53         int                     level;
54         print_stream_t          *stream;
55         gboolean                success;
56         GSList                  *src_list;
57         print_dissections_e     print_dissections;
58         gboolean                print_hex_for_data;
59         char_enc                encoding;
60         epan_dissect_t          *edt;
61 } print_data;
62
63 typedef struct {
64         int                     level;
65         FILE                    *fh;
66         GSList                  *src_list;
67         epan_dissect_t          *edt;
68 } write_pdml_data;
69
70 typedef struct {
71     output_fields_t* fields;
72         epan_dissect_t          *edt;
73 } write_field_data_t;
74
75 struct _output_fields {
76     gboolean print_header;
77     gchar separator;
78     GPtrArray* fields;
79     GHashTable* field_indicies;
80     const gchar** field_values;
81     gchar quote;
82 };
83
84 static const gchar* get_field_hex_value(GSList* src_list, field_info *fi);
85 const gchar* get_node_field_value(field_info* fi, epan_dissect_t* edt);
86 static void proto_tree_print_node(proto_node *node, gpointer data);
87 static void proto_tree_write_node_pdml(proto_node *node, gpointer data);
88 static const guint8 *get_field_data(GSList *src_list, field_info *fi);
89 static void write_pdml_field_hex_value(write_pdml_data *pdata, field_info *fi);
90 static gboolean print_hex_data_buffer(print_stream_t *stream, const guchar *cp,
91     guint length, char_enc encoding);
92 static void ps_clean_string(unsigned char *out, const unsigned char *in,
93                         int outbuf_size);
94 static void print_escaped_xml(FILE *fh, const char *unescaped_string);
95
96 static void print_pdml_geninfo(proto_tree *tree, FILE *fh);
97
98 static void proto_tree_get_node_field_values(proto_node *node, gpointer data);
99
100 static FILE *
101 open_print_dest(int to_file, const char *dest)
102 {
103         FILE    *fh;
104
105         /* Open the file or command for output */
106         if (to_file)
107                 fh = ws_fopen(dest, "w");
108         else
109                 fh = popen(dest, "w");
110
111         return fh;
112 }
113
114 static gboolean
115 close_print_dest(int to_file, FILE *fh)
116 {
117         /* Close the file or command */
118         if (to_file)
119                 return (fclose(fh) == 0);
120         else
121                 return (pclose(fh) == 0);
122 }
123
124 #define MAX_PS_LINE_LENGTH 256
125
126 gboolean
127 proto_tree_print(print_args_t *print_args, epan_dissect_t *edt,
128     print_stream_t *stream)
129 {
130         print_data data;
131
132         /* Create the output */
133         data.level = 0;
134         data.stream = stream;
135         data.success = TRUE;
136         data.src_list = edt->pi.data_src;
137         data.encoding = edt->pi.fd->flags.encoding;
138         data.print_dissections = print_args->print_dissections;
139         /* If we're printing the entire packet in hex, don't
140            print uninterpreted data fields in hex as well. */
141         data.print_hex_for_data = !print_args->print_hex;
142         data.edt = edt;
143
144         proto_tree_children_foreach(edt->tree, proto_tree_print_node, &data);
145         return data.success;
146 }
147
148 #define MAX_INDENT      160
149
150 /* Print a tree's data, and any child nodes. */
151 static
152 void proto_tree_print_node(proto_node *node, gpointer data)
153 {
154         field_info      *fi = PNODE_FINFO(node);
155         print_data      *pdata = (print_data*) data;
156         const guint8    *pd;
157         gchar           label_str[ITEM_LABEL_LENGTH];
158         gchar           *label_ptr;
159
160         g_assert(fi && "dissection with an invisible proto tree?");
161
162         /* Don't print invisible entries. */
163         if (PROTO_ITEM_IS_HIDDEN(node))
164                 return;
165
166         /* Give up if we've already gotten an error. */
167         if (!pdata->success)
168                 return;
169
170         /* was a free format label produced? */
171         if (fi->rep) {
172                 label_ptr = fi->rep->representation;
173         }
174         else { /* no, make a generic label */
175                 label_ptr = label_str;
176                 proto_item_fill_label(fi, label_str);
177         }
178
179         if (PROTO_ITEM_IS_GENERATED(node)) {
180                 label_ptr = g_strdup_printf("[%s]", label_ptr);
181         }
182
183         if (!print_line(pdata->stream, pdata->level, label_ptr)) {
184                 pdata->success = FALSE;
185                 return;
186         }
187
188         if (PROTO_ITEM_IS_GENERATED(node)) {
189                 g_free(label_ptr);
190         }
191
192         /* If it's uninterpreted data, dump it (unless our caller will
193            be printing the entire packet in hex). */
194         if (fi->hfinfo->id == proto_data && pdata->print_hex_for_data) {
195                 /*
196                  * Find the data for this field.
197                  */
198                 pd = get_field_data(pdata->src_list, fi);
199                 if (pd) {
200                         if (!print_hex_data_buffer(pdata->stream, pd,
201                             fi->length, pdata->encoding)) {
202                                 pdata->success = FALSE;
203                                 return;
204                         }
205                 }
206         }
207
208         /* If we're printing all levels, or if this node is one with a
209            subtree and its subtree is expanded, recurse into the subtree,
210            if it exists. */
211         g_assert(fi->tree_type >= -1 && fi->tree_type < num_tree_types);
212         if (pdata->print_dissections == print_dissections_expanded ||
213             (pdata->print_dissections == print_dissections_as_displayed &&
214                 fi->tree_type >= 0 && tree_is_expanded[fi->tree_type])) {
215                 if (node->first_child != NULL) {
216                         pdata->level++;
217                         proto_tree_children_foreach(node,
218                                 proto_tree_print_node, pdata);
219                         pdata->level--;
220                         if (!pdata->success)
221                                 return;
222                 }
223         }
224 }
225
226 void
227 write_pdml_preamble(FILE *fh)
228 {
229         fputs("<?xml version=\"1.0\"?>\n", fh);
230         fputs("<pdml version=\"" PDML_VERSION "\" ", fh);
231         fprintf(fh, "creator=\"%s/%s\">\n", PACKAGE, VERSION);
232 }
233
234 void
235 proto_tree_write_pdml(epan_dissect_t *edt, FILE *fh)
236 {
237         write_pdml_data data;
238
239         /* Create the output */
240         data.level = 0;
241         data.fh = fh;
242         data.src_list = edt->pi.data_src;
243         data.edt = edt;
244
245         /* We shouldn't be called with a NULL pointer here because we've
246          * created a visible protocol tree */
247         g_assert(data.src_list);
248
249         fprintf(fh, "<packet>\n");
250
251         /* Print a "geninfo" protocol as required by PDML */
252         print_pdml_geninfo(edt->tree, fh);
253
254         proto_tree_children_foreach(edt->tree, proto_tree_write_node_pdml,
255             &data);
256
257         fprintf(fh, "</packet>\n\n");
258 }
259
260 /* Write out a tree's data, and any child nodes, as PDML */
261 static void
262 proto_tree_write_node_pdml(proto_node *node, gpointer data)
263 {
264         field_info      *fi = PNODE_FINFO(node);
265         write_pdml_data *pdata = (write_pdml_data*) data;
266         const gchar     *label_ptr;
267         gchar           label_str[ITEM_LABEL_LENGTH];
268         char            *dfilter_string;
269         size_t          chop_len;
270         int             i;
271         gboolean wrap_in_fake_protocol;
272
273         g_assert(fi && "dissection with an invisible proto tree?");
274
275         /* Will wrap up top-level field items inside a fake protocol wrapper to
276            preserve the PDML schema */
277         wrap_in_fake_protocol =
278             (((fi->hfinfo->type != FT_PROTOCOL) ||
279              (fi->hfinfo->id == proto_data)) &&
280             (pdata->level == 0));
281
282         /* Indent to the correct level */
283         for (i = -1; i < pdata->level; i++) {
284                 fputs("  ", pdata->fh);
285         }
286
287         if (wrap_in_fake_protocol) {
288                 /* Open fake protocol wrapper */
289                 fputs("<proto name=\"fake-field-wrapper\">\n", pdata->fh);
290
291                 /* Indent to increased level before writint out field */
292                 pdata->level++;
293                 for (i = -1; i < pdata->level; i++) {
294                         fputs("  ", pdata->fh);
295                 }
296         }
297
298         /* Text label. It's printed as a field with no name. */
299         if (fi->hfinfo->id == hf_text_only) {
300                 /* Get the text */
301                 if (fi->rep) {
302                         label_ptr = fi->rep->representation;
303                 }
304                 else {
305                         label_ptr = "";
306                 }
307
308                 /* Show empty name since it is a required field */
309                 fputs("<field name=\"", pdata->fh);
310                 fputs("\" show=\"", pdata->fh);
311                 print_escaped_xml(pdata->fh, label_ptr);
312
313                 fprintf(pdata->fh, "\" size=\"%d", fi->length);
314                 fprintf(pdata->fh, "\" pos=\"%d", fi->start);
315
316                 fputs("\" value=\"", pdata->fh);
317                 write_pdml_field_hex_value(pdata, fi);
318
319                 if (node->first_child != NULL) {
320                         fputs("\">\n", pdata->fh);
321                 }
322                 else {
323                         fputs("\"/>\n", pdata->fh);
324                 }
325         }
326
327         /* Uninterpreted data, i.e., the "Data" protocol, is
328          * printed as a field instead of a protocol. */
329         else if (fi->hfinfo->id == proto_data) {
330
331                 /* Write out field with data */
332                 fputs("<field name=\"data\" value=\"", pdata->fh);
333                 write_pdml_field_hex_value(pdata, fi);
334                 fputs("\"/>\n", pdata->fh);
335         }
336         /* Normal protocols and fields */
337         else {
338                 if (fi->hfinfo->type == FT_PROTOCOL) {
339                         fputs("<proto name=\"", pdata->fh);
340                 }
341                 else {
342                         fputs("<field name=\"", pdata->fh);
343                 }
344                 print_escaped_xml(pdata->fh, fi->hfinfo->abbrev);
345
346 #if 0
347         /* PDML spec, see:
348          * http://analyzer.polito.it/30alpha/docs/dissectors/PDMLSpec.htm
349          *
350          * the show fields contains things in 'human readable' format
351          * showname: contains only the name of the field
352          * show: contains only the data of the field
353          * showdtl: contains additional details of the field data
354          * showmap: contains mappings of the field data (e.g. the hostname to an IP address)
355          *
356          * XXX - the showname shouldn't contain the field data itself
357          * (like it's contained in the fi->rep->representation).
358          * Unfortunately, we don't have the field data representation for
359          * all fields, so this isn't currently possible */
360                 fputs("\" showname=\"", pdata->fh);
361                 print_escaped_xml(pdata->fh, fi->hfinfo->name);
362 #endif
363
364                 if (fi->rep) {
365                         fputs("\" showname=\"", pdata->fh);
366                         print_escaped_xml(pdata->fh, fi->rep->representation);
367                 }
368                 else {
369                         label_ptr = label_str;
370                         proto_item_fill_label(fi, label_str);
371                         fputs("\" showname=\"", pdata->fh);
372                         print_escaped_xml(pdata->fh, label_ptr);
373                 }
374
375                 if (PROTO_ITEM_IS_HIDDEN(node))
376                         fprintf(pdata->fh, "\" hide=\"yes");
377
378                 fprintf(pdata->fh, "\" size=\"%d", fi->length);
379                 fprintf(pdata->fh, "\" pos=\"%d", fi->start);
380 /*              fprintf(pdata->fh, "\" id=\"%d", fi->hfinfo->id);*/
381
382                 /* show, value, and unmaskedvalue attributes */
383                 switch (fi->hfinfo->type)
384                 {
385                 case FT_PROTOCOL:
386                         break;
387                 case FT_NONE:
388                         fputs("\" show=\"\" value=\"",  pdata->fh);
389                         break;
390                 default:
391                         /* XXX - this is a hack until we can just call
392                          * fvalue_to_string_repr() for *all* FT_* types. */
393                         dfilter_string = proto_construct_match_selected_string(fi,
394                             pdata->edt);
395                         if (dfilter_string != NULL) {
396                                 chop_len = strlen(fi->hfinfo->abbrev) + 4; /* for " == " */
397
398                                 /* XXX - Remove double-quotes. Again, once we
399                                  * can call fvalue_to_string_repr(), we can
400                                  * ask it not to produce the version for
401                                  * display-filters, and thus, no
402                                  * double-quotes. */
403                                 if (dfilter_string[strlen(dfilter_string)-1] == '"') {
404                                         dfilter_string[strlen(dfilter_string)-1] = '\0';
405                                         chop_len++;
406                                 }
407
408                                 fputs("\" show=\"", pdata->fh);
409                                 print_escaped_xml(pdata->fh, &dfilter_string[chop_len]);
410                         }
411
412                         /*
413                          * XXX - should we omit "value" for any fields?
414                          * What should we do for fields whose length is 0?
415                          * They might come from a pseudo-header or from
416                          * the capture header (e.g., time stamps), or
417                          * they might be generated fields.
418                          */
419                         if (fi->length > 0) {
420                                 fputs("\" value=\"", pdata->fh);
421
422                                 if (fi->hfinfo->bitmask!=0) {
423                                         fprintf(pdata->fh, "%X", fvalue_get_uinteger(&fi->value));
424                                         fputs("\" unmaskedvalue=\"", pdata->fh);
425                                         write_pdml_field_hex_value(pdata, fi);
426                                 }
427                                 else {
428                                         write_pdml_field_hex_value(pdata, fi);
429                                 }
430                         }
431                 }
432
433                 if (node->first_child != NULL) {
434                         fputs("\">\n", pdata->fh);
435                 }
436                 else if (fi->hfinfo->id == proto_data) {
437                         fputs("\">\n", pdata->fh);
438                 }
439                 else {
440                         fputs("\"/>\n", pdata->fh);
441                 }
442         }
443
444         /* We always print all levels for PDML. Recurse here. */
445         if (node->first_child != NULL) {
446                 pdata->level++;
447                 proto_tree_children_foreach(node,
448                                 proto_tree_write_node_pdml, pdata);
449                 pdata->level--;
450         }
451
452         /* Take back the extra level we added for fake wrapper protocol */
453         if (wrap_in_fake_protocol) {
454                 pdata->level--;
455         }
456
457         if (node->first_child != NULL) {
458                 /* Indent to correct level */
459                 for (i = -1; i < pdata->level; i++) {
460                         fputs("  ", pdata->fh);
461                 }
462                 /* Close off current element */
463                 if (fi->hfinfo->id != proto_data) {   /* Data protocol uses simple tags */
464                         if (fi->hfinfo->type == FT_PROTOCOL) {
465                                 fputs("</proto>\n", pdata->fh);
466                         }
467                         else {
468                                 fputs("</field>\n", pdata->fh);
469                         }
470                 }
471         }
472
473         /* Close off fake wrapper protocol */
474         if (wrap_in_fake_protocol) {
475                 fputs("</proto>\n", pdata->fh);
476         }
477 }
478
479 /* Print info for a 'geninfo' pseudo-protocol. This is required by
480  * the PDML spec. The information is contained in Wireshark's 'frame' protocol,
481  * but we produce a 'geninfo' protocol in the PDML to conform to spec.
482  * The 'frame' protocol follows the 'geninfo' protocol in the PDML. */
483 static void
484 print_pdml_geninfo(proto_tree *tree, FILE *fh)
485 {
486         guint32 num, len, caplen;
487         nstime_t *timestamp;
488         GPtrArray *finfo_array;
489         field_info *frame_finfo;
490
491         /* Get frame protocol's finfo. */
492         finfo_array = proto_find_finfo(tree, proto_frame);
493         if (g_ptr_array_len(finfo_array) < 1) {
494                 return;
495         }
496         frame_finfo = finfo_array->pdata[0];
497         g_ptr_array_free(finfo_array, TRUE);
498
499         /* frame.number --> geninfo.num */
500         finfo_array = proto_find_finfo(tree, hf_frame_number);
501         if (g_ptr_array_len(finfo_array) < 1) {
502                 return;
503         }
504         num = fvalue_get_uinteger(&((field_info*)finfo_array->pdata[0])->value);
505         g_ptr_array_free(finfo_array, TRUE);
506
507         /* frame.frame_len --> geninfo.len */
508         finfo_array = proto_find_finfo(tree, hf_frame_len);
509         if (g_ptr_array_len(finfo_array) < 1) {
510                 return;
511         }
512         len = fvalue_get_uinteger(&((field_info*)finfo_array->pdata[0])->value);
513         g_ptr_array_free(finfo_array, TRUE);
514
515         /* frame.cap_len --> geninfo.caplen */
516         finfo_array = proto_find_finfo(tree, hf_frame_capture_len);
517         if (g_ptr_array_len(finfo_array) < 1) {
518                 return;
519         }
520         caplen = fvalue_get_uinteger(&((field_info*)finfo_array->pdata[0])->value);
521         g_ptr_array_free(finfo_array, TRUE);
522
523         /* frame.time --> geninfo.timestamp */
524         finfo_array = proto_find_finfo(tree, hf_frame_arrival_time);
525         if (g_ptr_array_len(finfo_array) < 1) {
526                 return;
527         }
528         timestamp = fvalue_get(&((field_info*)finfo_array->pdata[0])->value);
529         g_ptr_array_free(finfo_array, TRUE);
530
531         /* Print geninfo start */
532         fprintf(fh,
533 "  <proto name=\"geninfo\" pos=\"0\" showname=\"General information\" size=\"%u\">\n",
534                 frame_finfo->length);
535
536         /* Print geninfo.num */
537         fprintf(fh,
538 "    <field name=\"num\" pos=\"0\" show=\"%u\" showname=\"Number\" value=\"%x\" size=\"%u\"/>\n",
539                 num, num, frame_finfo->length);
540
541         /* Print geninfo.len */
542         fprintf(fh,
543 "    <field name=\"len\" pos=\"0\" show=\"%u\" showname=\"Frame Length\" value=\"%x\" size=\"%u\"/>\n",
544                 len, len, frame_finfo->length);
545
546         /* Print geninfo.caplen */
547         fprintf(fh,
548 "    <field name=\"caplen\" pos=\"0\" show=\"%u\" showname=\"Captured Length\" value=\"%x\" size=\"%u\"/>\n",
549                 caplen, caplen, frame_finfo->length);
550
551         /* Print geninfo.timestamp */
552         fprintf(fh,
553 "    <field name=\"timestamp\" pos=\"0\" show=\"%s\" showname=\"Captured Time\" value=\"%d.%09d\" size=\"%u\"/>\n",
554                 abs_time_to_str(timestamp), (int) timestamp->secs, timestamp->nsecs, frame_finfo->length);
555
556         /* Print geninfo end */
557         fprintf(fh,
558 "  </proto>\n");
559 }
560
561 void
562 write_pdml_finale(FILE *fh)
563 {
564         fputs("</pdml>\n", fh);
565 }
566
567 void
568 write_psml_preamble(FILE *fh)
569 {
570         fputs("<?xml version=\"1.0\"?>\n", fh);
571         fputs("<psml version=\"" PSML_VERSION "\" ", fh);
572         fprintf(fh, "creator=\"%s/%s\">\n", PACKAGE, VERSION);
573 }
574
575 void
576 proto_tree_write_psml(epan_dissect_t *edt, FILE *fh)
577 {
578         gint    i;
579
580         /* if this is the first packet, we have to create the PSML structure output */
581         if(edt->pi.fd->num == 1) {
582             fprintf(fh, "<structure>\n");
583
584             for(i=0; i < edt->pi.cinfo->num_cols; i++) {
585                 fprintf(fh, "<section>");
586                 print_escaped_xml(fh, edt->pi.cinfo->col_title[i]);
587                 fprintf(fh, "</section>\n");
588             }
589
590             fprintf(fh, "</structure>\n\n");
591         }
592
593         fprintf(fh, "<packet>\n");
594
595         for(i=0; i < edt->pi.cinfo->num_cols; i++) {
596             fprintf(fh, "<section>");
597             print_escaped_xml(fh, edt->pi.cinfo->col_data[i]);
598             fprintf(fh, "</section>\n");
599         }
600
601         fprintf(fh, "</packet>\n\n");
602 }
603
604 void
605 write_psml_finale(FILE *fh)
606 {
607         fputs("</psml>\n", fh);
608 }
609
610 void
611 write_csv_preamble(FILE *fh _U_)
612 {
613
614 }
615
616 void
617 proto_tree_write_csv(epan_dissect_t *edt, FILE *fh)
618 {
619         gint    i;
620
621         /* if this is the first packet, we have to write the CSV header */
622         if(edt->pi.fd->num == 1) {
623             for(i=0; i < edt->pi.cinfo->num_cols - 1; i++)
624                 fprintf(fh, "\"%s\",", edt->pi.cinfo->col_title[i]);
625
626             fprintf(fh, "\"%s\"\n", edt->pi.cinfo->col_title[i]);
627         }
628
629         for(i=0; i < edt->pi.cinfo->num_cols - 1; i++)
630             fprintf(fh, "\"%s\",", edt->pi.cinfo->col_data[i]);
631
632         fprintf(fh, "\"%s\"\n", edt->pi.cinfo->col_data[i]);
633 }
634
635 void
636 write_csv_finale(FILE *fh _U_)
637 {
638
639 }
640
641 void
642 write_carrays_preamble(FILE *fh _U_)
643 {
644
645 }
646
647 void
648 proto_tree_write_carrays(const guint8 *pd, guint32 len, guint32 num, FILE *fh)
649 {
650         guint32 i = 0;
651
652         if (!len)
653                 return;
654
655         fprintf(fh, "char pkt%u[] = {\n", num);
656
657         for (i = 0; i < len; i++) {
658
659                 fprintf(fh, "0x%02x", *(pd + i));
660
661                 if (i == (len - 1)) {
662                         fprintf(fh, " };\n\n");
663                         break;
664                 }
665
666                 if (!((i + 1) % 8)) {
667                         fprintf(fh, ", \n");
668                 } else {
669                         fprintf(fh, ", ");
670                 }
671         }
672 }
673
674 void
675 write_carrays_finale(FILE *fh _U_)
676 {
677
678 }
679
680 /*
681  * Find the data source for a specified field, and return a pointer
682  * to the data in it. Returns NULL if the data is out of bounds.
683  */
684 static const guint8 *
685 get_field_data(GSList *src_list, field_info *fi)
686 {
687         GSList *src_le;
688         data_source *src;
689         tvbuff_t *src_tvb;
690         gint length, tvbuff_length;
691
692         for (src_le = src_list; src_le != NULL; src_le = src_le->next) {
693                 src = src_le->data;
694                 src_tvb = src->tvb;
695                 if (fi->ds_tvb == src_tvb) {
696                         /*
697                          * Found it.
698                          *
699                          * XXX - a field can have a length that runs past
700                          * the end of the tvbuff.  Ideally, that should
701                          * be fixed when adding an item to the protocol
702                          * tree, but checking the length when doing
703                          * that could be expensive.  Until we fix that,
704                          * we'll do the check here.
705                          */
706                         tvbuff_length = tvb_length_remaining(src_tvb,
707                             fi->start);
708                         if (tvbuff_length < 0) {
709                                 return NULL;
710                         }
711                         length = fi->length;
712                         if (length > tvbuff_length)
713                                 length = tvbuff_length;
714                         return tvb_get_ptr(src_tvb, fi->start, length);
715                 }
716         }
717         g_assert_not_reached();
718         return NULL;    /* not found */
719 }
720
721 /* Print a string, escaping out certain characters that need to
722  * escaped out for XML. */
723 static void
724 print_escaped_xml(FILE *fh, const char *unescaped_string)
725 {
726         const char *p;
727
728         for (p = unescaped_string; *p != '\0'; p++) {
729                 switch (*p) {
730                         case '&':
731                                 fputs("&amp;", fh);
732                                 break;
733                         case '<':
734                                 fputs("&lt;", fh);
735                                 break;
736                         case '>':
737                                 fputs("&gt;", fh);
738                                 break;
739                         case '"':
740                                 fputs("&quot;", fh);
741                                 break;
742                         case '\'':
743                                 fputs("&apos;", fh);
744                                 break;
745                         default:
746                                 fputc(*p, fh);
747                 }
748         }
749 }
750
751 static void
752 write_pdml_field_hex_value(write_pdml_data *pdata, field_info *fi)
753 {
754         int i;
755         const guint8 *pd;
756
757         if (!fi->ds_tvb)
758                 return;
759
760         if (fi->length > tvb_length_remaining(fi->ds_tvb, fi->start)) {
761                 fprintf(pdata->fh, "field length invalid!");
762                 return;
763         }
764
765         /* Find the data for this field. */
766         pd = get_field_data(pdata->src_list, fi);
767
768         if (pd) {
769                 /* Print a simple hex dump */
770                 for (i = 0 ; i < fi->length; i++) {
771                         fprintf(pdata->fh, "%02x", pd[i]);
772                 }
773         }
774 }
775
776 gboolean
777 print_hex_data(print_stream_t *stream, epan_dissect_t *edt)
778 {
779         gboolean multiple_sources;
780         GSList *src_le;
781         data_source *src;
782         tvbuff_t *tvb;
783         const char *name;
784         char *line;
785         const guchar *cp;
786         guint length;
787
788         /* We shouldn't be called with a NULL pointer here because we've
789          * created a visible protocol tree */
790         g_assert(edt->pi.data_src);
791
792         /*
793          * Set "multiple_sources" iff this frame has more than one
794          * data source; if it does, we need to print the name of
795          * the data source before printing the data from the
796          * data source.
797          */
798         multiple_sources = (edt->pi.data_src->next != NULL);
799
800         for (src_le = edt->pi.data_src; src_le != NULL;
801             src_le = src_le->next) {
802                 src = src_le->data;
803                 tvb = src->tvb;
804                 if (multiple_sources) {
805                         name = get_data_source_name(src);
806                         print_line(stream, 0, "");
807                         line = g_strdup_printf("%s:", name);
808                         print_line(stream, 0, line);
809                         g_free(line);
810                 }
811                 length = tvb_length(tvb);
812                 if (length == 0)
813                     return TRUE;
814                 cp = tvb_get_ptr(tvb, 0, length);
815                 if (!print_hex_data_buffer(stream, cp, length,
816                     edt->pi.fd->flags.encoding))
817                         return FALSE;
818         }
819         return TRUE;
820 }
821
822 /*
823  * This routine is based on a routine created by Dan Lasley
824  * <DLASLEY@PROMUS.com>.
825  *
826  * It was modified for Wireshark by Gilbert Ramirez and others.
827  */
828
829 #define MAX_OFFSET_LEN  8       /* max length of hex offset of bytes */
830 #define BYTES_PER_LINE  16      /* max byte values printed on a line */
831 #define HEX_DUMP_LEN    (BYTES_PER_LINE*3)
832                                 /* max number of characters hex dump takes -
833                                    2 digits plus trailing blank */
834 #define DATA_DUMP_LEN   (HEX_DUMP_LEN + 2 + BYTES_PER_LINE)
835                                 /* number of characters those bytes take;
836                                    3 characters per byte of hex dump,
837                                    2 blanks separating hex from ASCII,
838                                    1 character per byte of ASCII dump */
839 #define MAX_LINE_LEN    (MAX_OFFSET_LEN + 2 + DATA_DUMP_LEN)
840                                 /* number of characters per line;
841                                    offset, 2 blanks separating offset
842                                    from data dump, data dump */
843
844 static gboolean
845 print_hex_data_buffer(print_stream_t *stream, const guchar *cp,
846     guint length, char_enc encoding)
847 {
848         register unsigned int ad, i, j, k, l;
849         guchar c;
850         guchar line[MAX_LINE_LEN + 1];
851         unsigned int use_digits;
852         static guchar binhex[16] = {
853                 '0', '1', '2', '3', '4', '5', '6', '7',
854                 '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
855
856         if (!print_line(stream, 0, ""))
857                 return FALSE;
858
859         /*
860          * How many of the leading digits of the offset will we supply?
861          * We always supply at least 4 digits, but if the maximum offset
862          * won't fit in 4 digits, we use as many digits as will be needed.
863          */
864         if (((length - 1) & 0xF0000000) != 0)
865                 use_digits = 8; /* need all 8 digits */
866         else if (((length - 1) & 0x0F000000) != 0)
867                 use_digits = 7; /* need 7 digits */
868         else if (((length - 1) & 0x00F00000) != 0)
869                 use_digits = 6; /* need 6 digits */
870         else if (((length - 1) & 0x000F0000) != 0)
871                 use_digits = 5; /* need 5 digits */
872         else
873                 use_digits = 4; /* we'll supply 4 digits */
874
875         ad = 0;
876         i = 0;
877         j = 0;
878         k = 0;
879         while (i < length) {
880                 if ((i & 15) == 0) {
881                         /*
882                          * Start of a new line.
883                          */
884                         j = 0;
885                         k = 0;
886                         l = use_digits;
887                         do {
888                                 l--;
889                                 c = (ad >> (l*4)) & 0xF;
890                                 line[j++] = binhex[c];
891                         } while (l != 0);
892                         line[j++] = ' ';
893                         line[j++] = ' ';
894                         memset(line+j, ' ', DATA_DUMP_LEN);
895
896                         /*
897                          * Offset in line of ASCII dump.
898                          */
899                         k = j + HEX_DUMP_LEN + 2;
900                 }
901                 c = *cp++;
902                 line[j++] = binhex[c>>4];
903                 line[j++] = binhex[c&0xf];
904                 j++;
905                 if (encoding == CHAR_EBCDIC) {
906                         c = EBCDIC_to_ASCII1(c);
907                 }
908                 line[k++] = c >= ' ' && c < 0x7f ? c : '.';
909                 i++;
910                 if ((i & 15) == 0 || i == length) {
911                         /*
912                          * We'll be starting a new line, or
913                          * we're finished printing this buffer;
914                          * dump out the line we've constructed,
915                          * and advance the offset.
916                          */
917                         line[k] = '\0';
918                         if (!print_line(stream, 0, line))
919                                 return FALSE;
920                         ad += 16;
921                 }
922         }
923         return TRUE;
924 }
925
926 static
927 void ps_clean_string(unsigned char *out, const unsigned char *in,
928                         int outbuf_size)
929 {
930         int rd, wr;
931         char c;
932
933         for (rd = 0, wr = 0 ; wr < outbuf_size; rd++, wr++ ) {
934                 c = in[rd];
935                 switch (c) {
936                         case '(':
937                         case ')':
938                         case '\\':
939                                 out[wr] = '\\';
940                                 out[++wr] = c;
941                                 break;
942
943                         default:
944                                 out[wr] = c;
945                                 break;
946                 }
947
948                 if (c == 0) {
949                         break;
950                 }
951         }
952 }
953
954 /* Some formats need stuff at the beginning of the output */
955 gboolean
956 print_preamble(print_stream_t *self, gchar *filename)
957 {
958         return (self->ops->print_preamble)(self, filename);
959 }
960
961 gboolean
962 print_line(print_stream_t *self, int indent, const char *line)
963 {
964         return (self->ops->print_line)(self, indent, line);
965 }
966
967 /* Insert bookmark */
968 gboolean
969 print_bookmark(print_stream_t *self, const gchar *name, const gchar *title)
970 {
971         return (self->ops->print_bookmark)(self, name, title);
972 }
973
974 gboolean
975 new_page(print_stream_t *self)
976 {
977         return (self->ops->new_page)(self);
978 }
979
980 /* Some formats need stuff at the end of the output */
981 gboolean
982 print_finale(print_stream_t *self)
983 {
984         return (self->ops->print_finale)(self);
985 }
986
987 gboolean
988 destroy_print_stream(print_stream_t *self)
989 {
990         return (self->ops->destroy)(self);
991 }
992
993 typedef struct {
994         int to_file;
995         FILE *fh;
996 } output_text;
997
998 static gboolean
999 print_preamble_text(print_stream_t *self _U_, gchar *filename _U_)
1000 {
1001         /* do nothing */
1002         return TRUE;    /* always succeeds */
1003 }
1004
1005 static gboolean
1006 print_line_text(print_stream_t *self, int indent, const char *line)
1007 {
1008         output_text *output = self->data;
1009         char space[MAX_INDENT+1];
1010         int i;
1011         int num_spaces;
1012
1013         /* Prepare the tabs for printing, depending on tree level */
1014         num_spaces = indent * 4;
1015         if (num_spaces > MAX_INDENT) {
1016                 num_spaces = MAX_INDENT;
1017         }
1018         for (i = 0; i < num_spaces; i++) {
1019                 space[i] = ' ';
1020         }
1021         /* The string is NUL-terminated */
1022         space[num_spaces] = '\0';
1023
1024         fputs(space, output->fh);
1025         fputs(line, output->fh);
1026         putc('\n', output->fh);
1027         return !ferror(output->fh);
1028 }
1029
1030 static gboolean
1031 print_bookmark_text(print_stream_t *self _U_, const gchar *name _U_,
1032     const gchar *title _U_)
1033 {
1034         /* do nothing */
1035         return TRUE;
1036 }
1037
1038 static gboolean
1039 new_page_text(print_stream_t *self)
1040 {
1041         output_text *output = self->data;
1042
1043         fputs("\f", output->fh);
1044         return !ferror(output->fh);
1045 }
1046
1047 static gboolean
1048 print_finale_text(print_stream_t *self _U_)
1049 {
1050         /* do nothing */
1051         return TRUE;    /* always succeeds */
1052 }
1053
1054 static gboolean
1055 destroy_text(print_stream_t *self)
1056 {
1057         output_text *output = self->data;
1058         gboolean ret;
1059
1060         ret = close_print_dest(output->to_file, output->fh);
1061         g_free(output);
1062         g_free(self);
1063         return ret;
1064 }
1065
1066 static const print_stream_ops_t print_text_ops = {
1067         print_preamble_text,
1068         print_line_text,
1069         print_bookmark_text,
1070         new_page_text,
1071         print_finale_text,
1072         destroy_text
1073 };
1074
1075 static print_stream_t *
1076 print_stream_text_allow(int to_file, FILE *fh)
1077 {
1078         print_stream_t *stream;
1079         output_text *output;
1080
1081         output = g_malloc(sizeof *output);
1082         output->to_file = to_file;
1083         output->fh = fh;
1084         stream = g_malloc(sizeof (print_stream_t));
1085         stream->ops = &print_text_ops;
1086         stream->data = output;
1087
1088         return stream;
1089 }
1090
1091 print_stream_t *
1092 print_stream_text_new(int to_file, const char *dest)
1093 {
1094         FILE *fh;
1095
1096         fh = open_print_dest(to_file, dest);
1097         if (fh == NULL)
1098                 return NULL;
1099
1100         return print_stream_text_allow(to_file, fh);
1101 }
1102
1103 print_stream_t *
1104 print_stream_text_stdio_new(FILE *fh)
1105 {
1106         return print_stream_text_allow(TRUE, fh);
1107 }
1108
1109 typedef struct {
1110         int to_file;
1111         FILE *fh;
1112 } output_ps;
1113
1114 static gboolean
1115 print_preamble_ps(print_stream_t *self, gchar *filename)
1116 {
1117         output_ps *output = self->data;
1118         unsigned char psbuffer[MAX_PS_LINE_LENGTH]; /* static sized buffer! */
1119
1120         print_ps_preamble(output->fh);
1121
1122         fputs("%% Set the font to 8 point\n", output->fh);
1123         fputs("/Courier findfont 8 scalefont setfont\n", output->fh);
1124         fputs("\n", output->fh);
1125         fputs("%% the page title\n", output->fh);
1126         ps_clean_string(psbuffer, filename, MAX_PS_LINE_LENGTH);
1127         fprintf(output->fh, "/ws_pagetitle (%s - Wireshark " VERSION "%s) def\n", psbuffer, wireshark_svnversion);
1128         fputs("\n", output->fh);
1129         return !ferror(output->fh);
1130 }
1131
1132 static gboolean
1133 print_line_ps(print_stream_t *self, int indent, const char *line)
1134 {
1135         output_ps *output = self->data;
1136         unsigned char psbuffer[MAX_PS_LINE_LENGTH]; /* static sized buffer! */
1137
1138         ps_clean_string(psbuffer, line, MAX_PS_LINE_LENGTH);
1139         fprintf(output->fh, "%d (%s) putline\n", indent, psbuffer);
1140         return !ferror(output->fh);
1141 }
1142
1143 static gboolean
1144 print_bookmark_ps(print_stream_t *self, const gchar *name, const gchar *title)
1145 {
1146         output_ps *output = self->data;
1147         unsigned char psbuffer[MAX_PS_LINE_LENGTH]; /* static sized buffer! */
1148
1149         /*
1150          * See the Adobe "pdfmark reference":
1151          *
1152          *      http://partners.adobe.com/asn/acrobat/docs/pdfmark.pdf
1153          *
1154          * The pdfmark stuff tells code that turns PostScript into PDF
1155          * things that it should do.
1156          *
1157          * The /OUT stuff creates a bookmark that goes to the
1158          * destination with "name" as the name and "title" as the title.
1159          *
1160          * The "/DEST" creates the destination.
1161          */
1162         ps_clean_string(psbuffer, title, MAX_PS_LINE_LENGTH);
1163         fprintf(output->fh, "[/Dest /%s /Title (%s)   /OUT pdfmark\n", name,
1164             psbuffer);
1165         fputs("[/View [/XYZ -4 currentpoint matrix currentmatrix matrix defaultmatrix\n",
1166             output->fh);
1167         fputs("matrix invertmatrix matrix concatmatrix transform exch pop 20 add null]\n",
1168             output->fh);
1169         fprintf(output->fh, "/Dest /%s /DEST pdfmark\n", name);
1170         return !ferror(output->fh);
1171 }
1172
1173 static gboolean
1174 new_page_ps(print_stream_t *self)
1175 {
1176         output_ps *output = self->data;
1177
1178         fputs("formfeed\n", output->fh);
1179         return !ferror(output->fh);
1180 }
1181
1182 static gboolean
1183 print_finale_ps(print_stream_t *self)
1184 {
1185         output_ps *output = self->data;
1186
1187         print_ps_finale(output->fh);
1188         return !ferror(output->fh);
1189 }
1190
1191 static gboolean
1192 destroy_ps(print_stream_t *self)
1193 {
1194         output_ps *output = self->data;
1195         gboolean ret;
1196
1197         ret = close_print_dest(output->to_file, output->fh);
1198         g_free(output);
1199         g_free(self);
1200         return ret;
1201 }
1202
1203 static const print_stream_ops_t print_ps_ops = {
1204         print_preamble_ps,
1205         print_line_ps,
1206         print_bookmark_ps,
1207         new_page_ps,
1208         print_finale_ps,
1209         destroy_ps
1210 };
1211
1212 static print_stream_t *
1213 print_stream_ps_alloc(int to_file, FILE *fh)
1214 {
1215         print_stream_t *stream;
1216         output_ps *output;
1217
1218         output = g_malloc(sizeof *output);
1219         output->to_file = to_file;
1220         output->fh = fh;
1221         stream = g_malloc(sizeof (print_stream_t));
1222         stream->ops = &print_ps_ops;
1223         stream->data = output;
1224
1225         return stream;
1226 }
1227
1228 print_stream_t *
1229 print_stream_ps_new(int to_file, const char *dest)
1230 {
1231         FILE *fh;
1232
1233         fh = open_print_dest(to_file, dest);
1234         if (fh == NULL)
1235                 return NULL;
1236
1237         return print_stream_ps_alloc(to_file, fh);
1238 }
1239
1240 print_stream_t *
1241 print_stream_ps_stdio_new(FILE *fh)
1242 {
1243         return print_stream_ps_alloc(TRUE, fh);
1244 }
1245
1246 output_fields_t* output_fields_new()
1247 {
1248     output_fields_t* fields = g_new(output_fields_t, 1);
1249     fields->print_header = FALSE;
1250     fields->separator = '\t';
1251     fields->fields = NULL; /*Do lazy initialisation */
1252     fields->field_indicies = NULL;
1253     fields->field_values = NULL;
1254     fields->quote='\0';
1255     return fields;
1256 }
1257
1258 gsize output_fields_num_fields(output_fields_t* fields)
1259 {
1260     g_assert(fields);
1261
1262     if(NULL == fields->fields) {
1263         return 0;
1264     } else {
1265         return fields->fields->len;
1266     }
1267 }
1268
1269 void output_fields_free(output_fields_t* fields)
1270 {
1271     g_assert(fields);
1272
1273     if(NULL != fields->field_indicies) {
1274         /* Keys are stored in fields->fields, values are
1275          * integers.
1276          */
1277         g_hash_table_destroy(fields->field_indicies);
1278     }
1279     if(NULL != fields->fields) {
1280         gsize i;
1281         for(i = 0; i < fields->fields->len; ++i) {
1282             gchar* field = g_ptr_array_index(fields->fields,i);
1283             g_free(field);
1284         }
1285         g_ptr_array_free(fields->fields, TRUE);
1286     }
1287
1288     g_free(fields);
1289 }
1290
1291 void output_fields_add(output_fields_t* fields, const gchar* field)
1292 {
1293     gchar* field_copy;
1294
1295     g_assert(fields);
1296     g_assert(field);
1297
1298
1299     if(NULL == fields->fields) {
1300         fields->fields = g_ptr_array_new();
1301     }
1302
1303     field_copy = g_strdup(field);
1304
1305     g_ptr_array_add(fields->fields, field_copy);
1306 }
1307
1308 gboolean output_fields_set_option(output_fields_t* info, gchar* option)
1309 {
1310     const gchar* option_name;
1311     const gchar* option_value;
1312
1313     g_assert(info);
1314     g_assert(option);
1315
1316     if('\0' == *option) {
1317         return FALSE; /* Is this guarded against by option parsing? */
1318     }
1319     option_name = strtok(option,"=");
1320     option_value = option + strlen(option_name) + 1;
1321     if(0 == strcmp(option_name, "header")) {
1322         switch(NULL == option_value ? '\0' : *option_value) {
1323         case 'n':
1324             info->print_header = FALSE;
1325             break;
1326         case 'y':
1327             info->print_header = TRUE;
1328             break;
1329         default:
1330             return FALSE;
1331         }
1332         return TRUE;
1333     }
1334
1335     if(0 == strcmp(option_name,"separator")) {
1336         switch(NULL == option_value ? '\0' : *option_value) {
1337         case '\0':
1338             return FALSE;
1339         case '/':
1340             switch(*++option_value) {
1341             case 't':
1342                 info->separator = '\t';
1343                 break;
1344             case 's':
1345                 info->separator = ' ';
1346                 break;
1347             default:
1348                 info->separator = '\\';
1349             }
1350             break;
1351         default:
1352             info->separator = *option_value;
1353             break;
1354         }
1355         return TRUE;
1356     }
1357
1358     if(0 == strcmp(option_name, "quote")) {
1359         switch(NULL == option_value ? '\0' : *option_value) {
1360         default: /* Fall through */
1361         case '\0':
1362             info->quote='\0';
1363             return FALSE;
1364         case 'd':
1365             info->quote='"';
1366             break;
1367         case 's':
1368             info->quote='\'';
1369             break;
1370         case 'n':
1371             info->quote='\0';
1372             break;
1373         }
1374         return TRUE;
1375     }
1376
1377     return FALSE;
1378 }
1379
1380 void output_fields_list_options(FILE *fh)
1381 {
1382     fprintf(fh, "TShark: The available options for field output \"E\" are:\n");
1383     fputs("header=y|n   Print field abbreviations as first line of output (def: N: no)\n", fh);
1384     fputs("separator=/t|/s|<character>   Set the separator to use; \"/t\" = tab,\n \"/s\" = space (def: /t: tab)\n", fh);
1385     fputs("quote=d|s|n   Print either d: double-quotes, s: single quotes or n: no quotes around field values (def: n: none)\n", fh);
1386 }
1387
1388
1389 void write_fields_preamble(output_fields_t* fields, FILE *fh)
1390 {
1391     gsize i;
1392
1393     g_assert(fields);
1394     g_assert(fh);
1395
1396     if(!fields->print_header) {
1397         return;
1398     }
1399
1400     for(i = 0; i < fields->fields->len; ++i) {
1401         const gchar* field = g_ptr_array_index(fields->fields,i);
1402         if(i != 0 ) {
1403             fputc(fields->separator, fh);
1404         }
1405         fputs(field, fh);
1406     }
1407     fputc('\n', fh);
1408 }
1409
1410 static void proto_tree_get_node_field_values(proto_node *node, gpointer data)
1411 {
1412     write_field_data_t *call_data;
1413     field_info *fi;
1414     gpointer field_index;
1415
1416     call_data = data;
1417     fi = PNODE_FINFO(node);
1418
1419     g_assert(fi && "dissection with an invisible proto tree?");
1420
1421     field_index = g_hash_table_lookup(call_data->fields->field_indicies, fi->hfinfo->abbrev);
1422     if(NULL != field_index) {
1423         const gchar* value;
1424
1425         value = get_node_field_value(fi, call_data->edt); /* ep_alloced string */
1426
1427         if(NULL != value && '\0' != *value) {
1428             guint actual_index;
1429             actual_index = GPOINTER_TO_UINT(field_index);
1430             /* Unwrap change made to disambiguiate zero / null */
1431             call_data->fields->field_values[actual_index - 1] = value;
1432         }
1433     }
1434
1435     /* Recurse here. */
1436     if (node->first_child != NULL) {
1437         proto_tree_children_foreach(node, proto_tree_get_node_field_values,
1438                                     call_data);
1439     }
1440 }
1441
1442 void proto_tree_write_fields(output_fields_t* fields, epan_dissect_t *edt, FILE *fh)
1443 {
1444     gsize i;
1445
1446     write_field_data_t data;
1447
1448     g_assert(fields);
1449     g_assert(edt);
1450     g_assert(fh);
1451
1452     data.fields = fields;
1453     data.edt = edt;
1454
1455     if(NULL == fields->field_indicies) {
1456         /* Prepare a lookup table from string abbreviation for field to its index. */
1457         fields->field_indicies = g_hash_table_new(g_str_hash, g_str_equal);
1458
1459         i = 0;
1460         while( i < fields->fields->len) {
1461             gchar* field = g_ptr_array_index(fields->fields, i);
1462              /* Store field indicies +1 so that zero is not a valid value,
1463               * and can be distinguished from NULL as a pointer.
1464               */
1465             ++i;
1466             g_hash_table_insert(fields->field_indicies, field, GUINT_TO_POINTER(i));
1467         }
1468     }
1469
1470     /* Buffer to store values for this packet */
1471     fields->field_values = ep_alloc_array0(const gchar*, fields->fields->len);
1472
1473     proto_tree_children_foreach(edt->tree, proto_tree_get_node_field_values,
1474                                 &data);
1475
1476     for(i = 0; i < fields->fields->len; ++i) {
1477         if(0 != i) {
1478             fputc(fields->separator, fh);
1479         }
1480         if(NULL != fields->field_values[i]) {
1481             if(fields->quote != '\0') {
1482                 fputc(fields->quote, fh);
1483             }
1484             fputs(fields->field_values[i], fh);
1485             if(fields->quote != '\0') {
1486                 fputc(fields->quote, fh);
1487             }
1488         }
1489     }
1490 }
1491
1492 void write_fields_finale(output_fields_t* fields _U_ , FILE *fh _U_)
1493 {
1494     /* Nothing to do */
1495 }
1496
1497 /* Returns an ep_alloced string or a static constant*/
1498 const gchar* get_node_field_value(field_info* fi, epan_dissect_t* edt)
1499 {
1500     if (fi->hfinfo->id == hf_text_only) {
1501         /* Text label.
1502          * Get the text */
1503         if (fi->rep) {
1504             return fi->rep->representation;
1505         }
1506         else {
1507             return get_field_hex_value(edt->pi.data_src, fi);
1508         }
1509     }
1510     else if (fi->hfinfo->id == proto_data) {
1511         /* Uninterpreted data, i.e., the "Data" protocol, is
1512          * printed as a field instead of a protocol. */
1513         return get_field_hex_value(edt->pi.data_src, fi);
1514     }
1515     else {
1516         /* Normal protocols and fields */
1517         gchar      *dfilter_string;
1518         size_t      chop_len;
1519
1520         switch (fi->hfinfo->type)
1521         {
1522         case FT_PROTOCOL:
1523             /* Print out the full details for the protocol. */
1524             if (fi->rep) {
1525                 return fi->rep->representation;
1526             } else {
1527                 /* Just print out the protocol abbreviation */
1528                 return fi->hfinfo->abbrev;;
1529             }
1530         case FT_NONE:
1531             /* Return "1" so that the presence of a field of type
1532              * FT_NONE can be checked when using -T fields */
1533             return "1";
1534         default:
1535             /* XXX - this is a hack until we can just call
1536              * fvalue_to_string_repr() for *all* FT_* types. */
1537             dfilter_string = proto_construct_match_selected_string(fi,
1538                 edt);
1539             if (dfilter_string != NULL) {
1540                 chop_len = strlen(fi->hfinfo->abbrev) + 4; /* for " == " */
1541
1542                 /* XXX - Remove double-quotes. Again, once we
1543                  * can call fvalue_to_string_repr(), we can
1544                  * ask it not to produce the version for
1545                  * display-filters, and thus, no
1546                  * double-quotes. */
1547                 if (dfilter_string[strlen(dfilter_string)-1] == '"') {
1548                     dfilter_string[strlen(dfilter_string)-1] = '\0';
1549                     chop_len++;
1550                 }
1551
1552                 return &(dfilter_string[chop_len]);
1553             } else {
1554                 return get_field_hex_value(edt->pi.data_src, fi);
1555             }
1556         }
1557     }
1558 }
1559
1560 static const gchar*
1561 get_field_hex_value(GSList* src_list, field_info *fi)
1562 {
1563     const guint8 *pd;
1564
1565     if (!fi->ds_tvb)
1566         return NULL;
1567
1568     if (fi->length > tvb_length_remaining(fi->ds_tvb, fi->start)) {
1569         return "field length invalid!";
1570     }
1571
1572     /* Find the data for this field. */
1573     pd = get_field_data(src_list, fi);
1574
1575     if (pd) {
1576         int i;
1577         gchar* buffer;
1578         gchar* p;
1579         int len;
1580         const int chars_per_byte = 2;
1581
1582         len = chars_per_byte * fi->length;
1583         buffer = ep_alloc_array(gchar, len + 1);
1584         buffer[len] = '\0'; /* Ensure NULL termination in bad cases */
1585         p = buffer;
1586         /* Print a simple hex dump */
1587         for (i = 0 ; i < fi->length; i++) {
1588             g_snprintf(p, chars_per_byte+1, "%02x", pd[i]);
1589             p += chars_per_byte;
1590         }
1591         return buffer;
1592     } else {
1593         return NULL;
1594     }
1595 }