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