Fix the fuzz failure reported in
[obnox/wireshark/wip.git] / tap-smbsids.c
1 /* tap-smbsids.c
2  * smbstat   2003 Ronnie Sahlberg
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
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 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <stdio.h>
30
31 #ifdef HAVE_SYS_TYPES_H
32 # include <sys/types.h>
33 #endif
34
35 #include <string.h>
36 #include "epan/packet_info.h"
37 #include <epan/dissectors/packet-smb-sidsnooping.h>
38 #include <epan/tap.h>
39 #include <epan/stat_cmd_args.h>
40 #include "epan/value_string.h"
41 #include <epan/dissectors/packet-smb.h>
42
43
44 static int
45 smbsids_packet(void *pss _U_, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const void *psi _U_)
46 {
47         return 1;
48 }
49
50 static void
51 enum_sids(gpointer key _U_, gpointer value, gpointer userdata _U_)
52 {
53         sid_name *sn=(sid_name *)value;
54
55         printf("%-60s %s\n", sn->sid, sn->name);
56         return;
57 }
58
59 static void
60 smbsids_draw(void *pss _U_)
61 {
62         printf("\n");
63         printf("===================================================================\n");
64         printf("SMB SID List:\n");
65         g_hash_table_foreach(sid_name_table, enum_sids, NULL);
66         printf("===================================================================\n");
67 }
68
69
70 static void
71 smbsids_init(const char *optarg _U_, void* userdata _U_)
72 {
73         GString *error_string;
74
75         if(!sid_name_snooping){
76                 fprintf(stderr,"The -z smb,sids function needs SMB/SID-Snooping to be enabled.\n");
77                 fprintf(stderr,"Either enable Edit/Preferences/Protocols/SMB/Snoop SID name mappings  in wireshark\n");
78                 fprintf(stderr,"or override the preference file by specifying\n");
79                 fprintf(stderr,"  -o \"smb.sid_name_snooping=TRUE\"\n");
80                 fprintf(stderr,"on the tshark command line.\n");
81                 exit(1);
82         }
83
84
85         error_string=register_tap_listener("smb", NULL, NULL, 0, NULL, smbsids_packet, smbsids_draw);
86         if(error_string){
87                 fprintf(stderr, "tshark: Couldn't register smb,sids tap:%s\n",
88                     error_string->str);
89                 g_string_free(error_string, TRUE);
90                 exit(1);
91         }
92 }
93
94
95 void
96 register_tap_listener_smbsids(void)
97 {
98         register_stat_cmd_arg("smb,sids", smbsids_init,NULL);
99 }
100