Pull much of the processing done after a call to "fragment_add_check()"
[obnox/wireshark/wip.git] / tap-protocolinfo.c
1 /* tap-protocolinfo.c
2  * protohierstat   2002 Ronnie Sahlberg
3  *
4  * $Id: tap-protocolinfo.c,v 1.1 2002/11/04 12:10:59 sahlberg Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  * 
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  * 
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 /* This module provides Protocol Column Info tap for tethereal */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <stdio.h>
32
33 #ifdef HAVE_SYS_TYPES_H
34 # include <sys/types.h>
35 #endif
36
37 #include <string.h>
38 #include "epan/epan_dissect.h"
39 #include "epan/column-utils.h"
40 #include "epan/proto.h"
41 #include "tap.h"
42 #include "register.h"
43
44 typedef struct _pci_t {
45         char *filter;
46         int hf_index;
47 } pci_t;
48
49
50 static int
51 protocolinfo_packet(void *prs, packet_info *pinfo, epan_dissect_t *edt, void *dummy _U_)
52 {
53         pci_t *rs=prs;
54         GPtrArray *gp;
55         guint i;
56         char *str;
57
58         gp=proto_get_finfo_ptr_array(edt->tree, rs->hf_index);
59         if(!gp){
60                 return 0;
61         }
62
63         for(i=0;i<gp->len;i++){
64                 str=proto_alloc_dfilter_string(gp->pdata[i], NULL);
65                 col_append_fstr(pinfo->cinfo, COL_INFO, "  %s",str);
66                 g_free(str);
67         }
68         return 0;
69 }
70
71
72
73 static void
74 protocolinfo_init(char *optarg)
75 {
76         pci_t *rs;
77         char *field=NULL;
78         char *filter=NULL;
79         header_field_info *hfi;
80
81         if(!strncmp("proto,colinfo,",optarg,14)){
82                 filter=optarg+14;
83                 field=strchr(filter,',');
84                 if(field){
85                         field+=1;  /* skip the ',' */
86                 }
87         }
88         if(!field){
89                 fprintf(stderr, "tethereal: invalid \"-z proto,colinfo,<filter>,<field>\" argument\n");
90                 exit(1);
91         }
92
93         hfi=proto_registrar_get_byname(field);
94         if(!hfi){
95                 fprintf(stderr, "tethereal: Field \"%s\" does not exist.\n", field);
96                 exit(1);
97         }
98
99         rs=g_malloc(sizeof(pci_t));
100         rs->hf_index=hfi->id;
101         if((field-filter)>1){
102                 rs->filter=g_malloc(field-filter);
103                 strncpy(rs->filter,filter,(field-filter)-1);
104                 rs->filter[(field-filter)-1]=0;
105         } else {
106                 rs->filter=NULL;
107         }
108
109         if(register_tap_listener("frame", rs, rs->filter, NULL, protocolinfo_packet, NULL)){
110                 /* error, we failed to attach to the tap. clean up */
111                 if(rs->filter){
112                         g_free(rs->filter);
113                 }
114                 g_free(rs);
115
116                 fprintf(stderr,"tethereal: protocolinfo_init() failed to attach to tap.\n");
117                 exit(1);
118         }
119 }
120
121
122 void
123 register_tap_listener_protocolinfo(void)
124 {
125         register_ethereal_tap("proto,colinfo,", protocolinfo_init, NULL, NULL);
126 }
127