aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/smb_stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gtk/smb_stat.c')
-rw-r--r--ui/gtk/smb_stat.c260
1 files changed, 0 insertions, 260 deletions
diff --git a/ui/gtk/smb_stat.c b/ui/gtk/smb_stat.c
deleted file mode 100644
index 9724119b64..0000000000
--- a/ui/gtk/smb_stat.c
+++ /dev/null
@@ -1,260 +0,0 @@
-/* smb_stat.c
- * smb_stat 2003 Ronnie Sahlberg
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#include "config.h"
-
-#include <string.h>
-
-#include <gtk/gtk.h>
-
-#include <epan/packet_info.h>
-#include <epan/value_string.h>
-#include <epan/tap.h>
-#include <epan/dissectors/packet-smb.h>
-
-#include "ui/simple_dialog.h"
-
-#include "ui/gtk/gui_utils.h"
-#include "ui/gtk/dlg_utils.h"
-#include "ui/gtk/service_response_time_table.h"
-#include "ui/gtk/tap_param_dlg.h"
-#include "ui/gtk/main.h"
-
-
-void register_tap_listener_gtksmbstat(void);
-
-/* used to keep track of the statistics for an entire program interface */
-typedef struct _smbstat_t {
- GtkWidget *win;
- srt_stat_table smb_srt_table;
- srt_stat_table trans2_srt_table;
- srt_stat_table nt_trans_srt_table;
-} smbstat_t;
-
-static void
-smbstat_set_title(smbstat_t *ss)
-{
- set_window_title(ss->win, "SMB Service Response Time statistics");
-}
-
-static void
-smbstat_reset(void *pss)
-{
- smbstat_t *ss=(smbstat_t *)pss;
-
- reset_srt_table_data(&ss->smb_srt_table);
- reset_srt_table_data(&ss->trans2_srt_table);
- reset_srt_table_data(&ss->nt_trans_srt_table);
- smbstat_set_title(ss);
-}
-
-static int
-smbstat_packet(void *pss, packet_info *pinfo, epan_dissect_t *edt _U_, const void *psi)
-{
- smbstat_t *ss=(smbstat_t *)pss;
- const smb_info_t *si=(const smb_info_t *)psi;
-
- /* we are only interested in reply packets */
- if(si->request){
- return 0;
- }
- /* if we havnt seen the request, just ignore it */
- if(!si->sip){
- return 0;
- }
-
- add_srt_table_data(&ss->smb_srt_table, si->cmd, &si->sip->req_time, pinfo);
-
- if(si->cmd==0xA0 && si->sip->extra_info_type == SMB_EI_NTI){
- smb_nt_transact_info_t *sti=(smb_nt_transact_info_t *)si->sip->extra_info;
-
- if(sti){
- add_srt_table_data(&ss->nt_trans_srt_table, sti->subcmd, &si->sip->req_time, pinfo);
- }
- } else if(si->cmd==0x32 && si->sip->extra_info_type == SMB_EI_T2I){
- smb_transact2_info_t *st2i=(smb_transact2_info_t *)si->sip->extra_info;
-
- if(st2i){
- add_srt_table_data(&ss->trans2_srt_table, st2i->subcmd, &si->sip->req_time, pinfo);
- }
- }
-
- return 1;
-}
-
-
-
-static void
-smbstat_draw(void *pss)
-{
- smbstat_t *ss=(smbstat_t *)pss;
-
- draw_srt_table_data(&ss->smb_srt_table);
- draw_srt_table_data(&ss->trans2_srt_table);
- draw_srt_table_data(&ss->nt_trans_srt_table);
-}
-
-
-static void
-win_destroy_cb(GtkWindow *win _U_, gpointer data)
-{
- smbstat_t *ss=(smbstat_t *)data;
-
- remove_tap_listener(ss);
-
- free_srt_table_data(&ss->smb_srt_table);
- free_srt_table_data(&ss->trans2_srt_table);
- free_srt_table_data(&ss->nt_trans_srt_table);
- g_free(ss);
-}
-
-
-static void
-gtk_smbstat_init(const char *opt_arg, void *userdata _U_)
-{
- smbstat_t *ss;
- const char *filter=NULL;
- GtkWidget *label;
- char *filter_string;
- GString *error_string;
- int i;
- GtkWidget *vbox;
- GtkWidget *bbox;
- GtkWidget *close_bt;
-
- if(!strncmp(opt_arg,"smb,srt,",8)){
- filter=opt_arg+8;
- } else {
- filter=NULL;
- }
-
- ss=(smbstat_t *)g_malloc(sizeof(smbstat_t));
-
- ss->win = dlg_window_new("smb-stat"); /* transient_for top_level */
- gtk_window_set_destroy_with_parent (GTK_WINDOW(ss->win), TRUE);
- gtk_window_set_default_size(GTK_WINDOW(ss->win), SRT_PREFERRED_WIDTH, 600);
- smbstat_set_title(ss);
-
- vbox=ws_gtk_box_new(GTK_ORIENTATION_VERTICAL, 3, FALSE);
- gtk_container_add(GTK_CONTAINER(ss->win), vbox);
- gtk_container_set_border_width(GTK_CONTAINER(vbox), 12);
-
- label=gtk_label_new("SMB Service Response Time statistics");
- gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
-
- filter_string = g_strdup_printf("Filter: %s", filter ? filter : "");
- label=gtk_label_new(filter_string);
- g_free(filter_string);
- gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
- gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
-
- label=gtk_label_new("SMB Commands");
- gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
-
- /* We must display TOP LEVEL Widget before calling init_srt_table() */
- gtk_widget_show_all(ss->win);
-
- init_srt_table(&ss->smb_srt_table, 256, vbox, "smb.cmd");
- for(i=0;i<256;i++){
- gchar* tmp_str = val_to_str_ext_wmem(NULL, i, &smb_cmd_vals_ext, "Unknown(0x%02x)");
- init_srt_table_row(&ss->smb_srt_table, i, tmp_str);
- wmem_free(NULL, tmp_str);
- }
-
-
- label=gtk_label_new("Transaction2 Sub-Commands");
- gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
- init_srt_table(&ss->trans2_srt_table, 256, vbox, "smb.trans2.cmd");
- for(i=0;i<256;i++){
- gchar* tmp_str = val_to_str_ext_wmem(NULL, i, &trans2_cmd_vals_ext, "Unknown(0x%02x)");
- init_srt_table_row(&ss->trans2_srt_table, i, tmp_str);
- wmem_free(NULL, tmp_str);
- }
-
-
- label=gtk_label_new("NT Transaction Sub-Commands");
- gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
- init_srt_table(&ss->nt_trans_srt_table, 256, vbox, "smb.nt.function");
- for(i=0;i<256;i++){
- gchar* tmp_str = val_to_str_ext_wmem(NULL, i, &nt_cmd_vals_ext, "Unknown(0x%02x)");
- init_srt_table_row(&ss->nt_trans_srt_table, i, tmp_str);
- wmem_free(NULL, tmp_str);
- }
-
-
- error_string=register_tap_listener("smb", ss, filter, 0, smbstat_reset, smbstat_packet, smbstat_draw);
- if(error_string){
- simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "%s", error_string->str);
- g_string_free(error_string, TRUE);
- g_free(ss);
- return;
- }
-
- /* Button row. */
- bbox = dlg_button_row_new(GTK_STOCK_CLOSE, NULL);
- gtk_box_pack_end(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
-
- close_bt = (GtkWidget *)g_object_get_data(G_OBJECT(bbox), GTK_STOCK_CLOSE);
- window_set_cancel_button(ss->win, close_bt, window_cancel_button_cb);
-
- g_signal_connect(ss->win, "delete_event", G_CALLBACK(window_delete_event_cb), NULL);
- g_signal_connect(ss->win, "destroy", G_CALLBACK(win_destroy_cb), ss);
-
- gtk_widget_show_all(ss->win);
- window_present(ss->win);
-
- cf_retap_packets(&cfile);
- gdk_window_raise(gtk_widget_get_window(ss->win));
-}
-
-static tap_param smb_stat_params[] = {
- { PARAM_FILTER, "filter", "Filter", NULL, TRUE }
-};
-
-static tap_param_dlg smb_stat_dlg = {
- "SMB SRT Statistics",
- "smb,srt",
- gtk_smbstat_init,
- -1,
- G_N_ELEMENTS(smb_stat_params),
- smb_stat_params
-};
-
-void
-register_tap_listener_gtksmbstat(void)
-{
- register_param_stat(&smb_stat_dlg, "SMB",
- REGISTER_STAT_GROUP_RESPONSE_TIME);
-}
-
-/*
- * Editor modelines - http://www.wireshark.org/tools/modelines.html
- *
- * Local variables:
- * c-basic-offset: 8
- * tab-width: 8
- * indent-tabs-mode: t
- * End:
- *
- * vi: set shiftwidth=8 tabstop=8 noexpandtab:
- * :indentSize=8:tabSize=8:noTabs=false:
- */