PageRenderTime 52ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/cmpt471/a2/wireshark/proto_hier_stats.c

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