Be a little less picky about EAPOL packet lengths. Someone sent in a
[obnox/wireshark/wip.git] / proto_hier_stats.c
1 /* proto_hier_stats.c
2  * Routines for calculating statistics based on protocol.
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 "globals.h"
30 #include "proto_hier_stats.h"
31 #include "progress_dlg.h"
32 #include "simple_dialog.h"
33 #include <epan/epan_dissect.h>
34 #include <wtap.h>
35
36 #include <stdio.h>
37 #include <string.h>
38 #include <glib.h>
39
40 /* Update the progress bar this many times when scanning the packet list. */
41 #define N_PROGBAR_UPDATES       100
42
43 #define STAT_NODE_STATS(n)   ((ph_stats_node_t*)(n)->data)
44 #define STAT_NODE_HFINFO(n)  (STAT_NODE_STATS(n)->hfinfo)
45
46
47 static GNode*
48 find_stat_node(GNode *parent_stat_node, header_field_info *needle_hfinfo)
49 {
50         GNode                   *needle_stat_node;
51         header_field_info       *hfinfo;
52         ph_stats_node_t         *stats;
53
54         needle_stat_node = g_node_first_child(parent_stat_node);
55
56         while (needle_stat_node) {
57                 hfinfo = STAT_NODE_HFINFO(needle_stat_node);
58                 if (hfinfo &&  hfinfo->id == needle_hfinfo->id) {
59                         return needle_stat_node;
60                 }
61                 needle_stat_node = g_node_next_sibling(needle_stat_node);
62         }
63
64         /* None found. Create one. */
65         stats = g_new(ph_stats_node_t, 1);
66
67         /* Intialize counters */
68         stats->hfinfo = needle_hfinfo;
69         stats->num_pkts_total = 0;
70         stats->num_pkts_last = 0;
71         stats->num_bytes_total = 0;
72         stats->num_bytes_last = 0;
73
74         needle_stat_node = g_node_new(stats);
75         g_node_append(parent_stat_node, needle_stat_node);
76         return needle_stat_node;
77 }
78
79
80 static void
81 process_node(proto_node *ptree_node, GNode *parent_stat_node, ph_stats_t *ps, guint pkt_len)
82 {
83         field_info              *finfo;
84         ph_stats_node_t         *stats;
85         proto_node              *proto_sibling_node;
86         GNode                   *stat_node;
87
88         finfo = PITEM_FINFO(ptree_node);
89         g_assert(finfo);
90
91         /* if the field info isn't related to a protocol but to a field, don't count them,
92      * as they don't belong to any protocol.
93      * (happens e.g. for toplevel tree item of desegmentation "[Reassembled TCP Segments]") */
94     if(finfo->hfinfo->parent != -1) {
95         /* there are some cases where helpful generated items are added
96          * to the decode tree so do not test for it any more
97          *g_assert(PROTO_ITEM_IS_GENERATED(ptree_node));
98          */
99         return;
100     }
101
102         stat_node = find_stat_node(parent_stat_node, finfo->hfinfo);
103
104         stats = STAT_NODE_STATS(stat_node);
105         stats->num_pkts_total++;
106         stats->num_bytes_total += pkt_len;
107
108         proto_sibling_node = ptree_node->next;
109
110         if (proto_sibling_node) {
111                 /* If the name does not exist for this proto_sibling_node, then it is
112                  * not a normal protocol in the top-level tree.  It was instead
113                  * added as a normal tree such as IPv6's Hop-by-hop Option Header and
114                  * should be skipped when creating the protocol hierarchy display. */
115                 if(strlen(proto_sibling_node->finfo->hfinfo->name) == 0 &&
116                    ptree_node->next)
117                         proto_sibling_node = proto_sibling_node->next;
118
119                 process_node(proto_sibling_node, stat_node, ps, pkt_len);
120         }
121         else {
122                 stats->num_pkts_last++;
123                 stats->num_bytes_last += pkt_len;
124         }
125 }
126
127
128
129 static void
130 process_tree(proto_tree *protocol_tree, ph_stats_t* ps, guint pkt_len)
131 {
132         proto_node      *ptree_node;
133
134         ptree_node = ((proto_node *)protocol_tree)->first_child;
135         if (!ptree_node) {
136                 return;
137         }
138
139         process_node(ptree_node, ps->stats_tree, ps, pkt_len);
140 }
141
142 static gboolean
143 process_frame(frame_data *frame, column_info *cinfo, ph_stats_t* ps)
144 {
145         epan_dissect_t                  *edt;
146         union wtap_pseudo_header        phdr;
147         guint8                          pd[WTAP_MAX_PACKET_SIZE];
148         int                             err;
149         gchar                           *err_info;
150         double                          cur_time;
151
152         /* Load the frame from the capture file */
153         if (!wtap_seek_read(cfile.wth, frame->file_off, &phdr, pd,
154             frame->cap_len, &err, &err_info)) {
155                 simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
156                     cf_read_error_message(err, err_info), cfile.filename);
157                 return FALSE;   /* failure */
158         }
159
160         /* Dissect the frame   tree  not visible */
161         edt = epan_dissect_new(TRUE, FALSE);
162         epan_dissect_run(edt, &phdr, pd, frame, cinfo);
163
164         /* Get stats from this protocol tree */
165         process_tree(edt->tree, ps, frame->pkt_len);
166
167         /* Update times */
168         cur_time = nstime_to_sec(&frame->abs_ts);
169         if (cur_time < ps->first_time) {
170           ps->first_time = cur_time;
171         }
172         if (cur_time > ps->last_time){
173           ps->last_time = cur_time;
174         }
175
176         /* Free our memory. */
177         epan_dissect_free(edt);
178
179         return TRUE;    /* success */
180 }
181
182 ph_stats_t*
183 ph_stats_new(void)
184 {
185         ph_stats_t      *ps;
186         frame_data      *frame;
187         guint           tot_packets, tot_bytes;
188         progdlg_t       *progbar = NULL;
189         gboolean        stop_flag;
190         int             count;
191         float           progbar_val;
192         GTimeVal        start_time;
193         gchar           status_str[100];
194         int             progbar_nextstep;
195         int             progbar_quantum;
196
197         /* Initialize the data */
198         ps = g_new(ph_stats_t, 1);
199         ps->tot_packets = 0;
200         ps->tot_bytes = 0;
201         ps->stats_tree = g_node_new(NULL);
202         ps->first_time = 0.0;
203         ps->last_time = 0.0;
204
205         /* Update the progress bar when it gets to this value. */
206         progbar_nextstep = 0;
207         /* When we reach the value that triggers a progress bar update,
208            bump that value by this amount. */
209         progbar_quantum = cfile.count/N_PROGBAR_UPDATES;
210         /* Count of packets at which we've looked. */
211         count = 0;
212         /* Progress so far. */
213         progbar_val = 0.0;
214
215         stop_flag = FALSE;
216         g_get_current_time(&start_time);
217
218         tot_packets = 0;
219         tot_bytes = 0;
220
221         for (frame = cfile.plist; frame != NULL; frame = frame->next) {
222                 /* Create the progress bar if necessary.
223                    We check on every iteration of the loop, so that
224                    it takes no longer than the standard time to create
225                    it (otherwise, for a large file, we might take
226                    considerably longer than that standard time in order
227                    to get to the next progress bar step). */
228                 if (progbar == NULL)
229                         progbar = delayed_create_progress_dlg(
230                             "Computing", "protocol hierarchy statistics", 
231                             TRUE, &stop_flag, &start_time, progbar_val);
232
233                 /* Update the progress bar, but do it only N_PROGBAR_UPDATES
234                    times; when we update it, we have to run the GTK+ main
235                    loop to get it to repaint what's pending, and doing so
236                    may involve an "ioctl()" to see if there's any pending
237                    input from an X server, and doing that for every packet
238                    can be costly, especially on a big file. */
239                 if (count >= progbar_nextstep) {
240                         /* let's not divide by zero. I should never be started
241                          * with count == 0, so let's assert that
242                          */
243                         g_assert(cfile.count > 0);
244
245                         progbar_val = (gfloat) count / cfile.count;
246
247                         if (progbar != NULL) {
248                                 g_snprintf(status_str, sizeof(status_str),
249                                         "%4u of %u frames", count, cfile.count);
250                                 update_progress_dlg(progbar, progbar_val, status_str);
251                         }
252
253                         progbar_nextstep += progbar_quantum;
254                 }
255
256                 if (stop_flag) {
257                         /* Well, the user decided to abort the statistics.
258                            computation process  Just stop. */
259                         break;
260                 }
261
262                 /* Skip frames that are hidden due to the display filter.
263                    XXX - should the progress bar count only packets that
264                    passed the display filter?  If so, it should
265                    probably do so for other loops (see "file.c") that
266                    look only at those packets. */
267                 if (frame->flags.passed_dfilter) {
268
269                         if (tot_packets == 0) {
270                                 double cur_time = nstime_to_sec(&frame->abs_ts);
271                                 ps->first_time = cur_time;
272                                 ps->last_time = cur_time;
273                         }
274                         
275                         /* we don't care about colinfo */
276                         if (!process_frame(frame, NULL, ps)) {
277                                 /*
278                                  * Give up, and set "stop_flag" so we
279                                  * just abort rather than popping up
280                                  * the statistics window.
281                                  */
282                                 stop_flag = TRUE;
283                                 break;
284                         }
285
286                         tot_packets++;
287                         tot_bytes += frame->pkt_len;
288                 }
289
290                 count++;
291         }
292
293         /* We're done calculating the statistics; destroy the progress bar
294            if it was created. */
295         if (progbar != NULL)
296                 destroy_progress_dlg(progbar);
297
298         if (stop_flag) {
299                 /*
300                  * We quit in the middle; throw away the statistics
301                  * and return NULL, so our caller doesn't pop up a
302                  * window with the incomplete statistics.
303                  */
304                 ph_stats_free(ps);
305                 return NULL;
306         }
307
308         ps->tot_packets = tot_packets;
309         ps->tot_bytes = tot_bytes;
310
311         return ps;
312 }
313
314 static gboolean
315 stat_node_free(GNode *node, gpointer data _U_)
316 {
317         ph_stats_node_t *stats = node->data;
318
319         if (stats) {
320                 g_free(stats);
321         }
322         return FALSE;
323 }
324
325 void
326 ph_stats_free(ph_stats_t *ps)
327 {
328
329         if (ps->stats_tree) {
330                 g_node_traverse(ps->stats_tree, G_IN_ORDER,
331                                 G_TRAVERSE_ALL, -1,
332                                 stat_node_free, NULL);
333                 g_node_destroy(ps->stats_tree);
334         }
335
336         g_free(ps);
337 }