Move some headers for stuff defined by a dissector into epan/dissectors
[obnox/wireshark/wip.git] / tap-smbsids.c
1 /* tap-smbsids.c
2  * smbstat   2003 Ronnie Sahlberg
3  *
4  * $Id$
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 #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 "register.h"
39 #include <epan/tap.h>
40 #include <epan/stat_cmd_args.h>
41 #include "epan/value_string.h"
42 #include <epan/dissectors/packet-smb.h>
43
44
45 static int
46 smbsids_packet(void *pss _U_, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const void *psi _U_)
47 {
48         return 1;
49 }
50
51 static void 
52 enum_sids(gpointer key _U_, gpointer value, gpointer userdata _U_)
53 {
54         sid_name *sn=(sid_name *)value;
55
56         printf("%-60s %s\n", sn->sid, sn->name);
57         return;
58 }
59
60 static void
61 smbsids_draw(void *pss _U_)
62 {
63         printf("\n");
64         printf("===================================================================\n");
65         printf("SMB SID List:\n");
66         g_hash_table_foreach(sid_name_table, enum_sids, NULL);
67         printf("===================================================================\n");
68 }
69
70
71 static void
72 smbsids_init(const char *optarg _U_)
73 {
74         GString *error_string;
75
76         if(!sid_name_snooping){
77                 fprintf(stderr,"The -z smb,sids function needs SMB/SID-Snooping to be enabled.\n");
78                 fprintf(stderr,"Either enable Edit/Preferences/Protocols/SMB/Snoop SID name mappings  in ethereal\n");
79                 fprintf(stderr,"or override the preference file by specifying\n");
80                 fprintf(stderr,"  -o \"smb.sid_name_snooping=TRUE\"\n");
81                 fprintf(stderr,"on the tethereal command line.\n");
82                 exit(1);
83         }
84
85
86         error_string=register_tap_listener("smb", NULL, NULL, NULL, smbsids_packet, smbsids_draw);
87         if(error_string){
88                 fprintf(stderr, "tethereal: Couldn't register smb,sids tap:%s\n",
89                     error_string->str);
90                 g_string_free(error_string, TRUE);
91                 exit(1);
92         }
93 }
94
95
96 void
97 register_tap_listener_smbsids(void)
98 {
99         register_stat_cmd_arg("smb,sids", smbsids_init);
100 }
101