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