Fix for bug 1023 (problem with 'apply as filter' strings)
[obnox/wireshark/wip.git] / tap-sipstat.c
1 /* tap_sipstat.c
2  * sip message counter for wireshark
3  *
4  * $Id$
5  * Copied from gtk/sip_stat.c and tap-httpstat.c
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <stdio.h>
31
32 #ifdef HAVE_SYS_TYPES_H
33 # include <sys/types.h>
34 #endif
35
36 #include <string.h>
37 #include "epan/packet_info.h"
38 #include <epan/tap.h>
39 #include <epan/stat_cmd_args.h>
40 #include "epan/value_string.h"
41 #include "register.h"
42 #include <epan/dissectors/packet-sip.h>
43
44 /* used to keep track of the statictics for an entire program interface */
45 typedef struct _sip_stats_t {
46         char            *filter;
47         guint32         packets;        /* number of sip packets, including continuations */
48         guint32         resent_packets;
49         GHashTable      *hash_responses;
50         GHashTable      *hash_requests;
51 } sipstat_t;
52
53 /* used to keep track of the stats for a specific response code
54  * for example it can be { 3, 404, "Not Found" ,...}
55  * which means we captured 3 reply sip/1.1 404 Not Found */
56 typedef struct _sip_response_code_t {
57         guint32          packets;               /* 3 */
58         guint            response_code;         /* 404 */
59         const gchar     *name;                  /* Not Found */
60         sipstat_t       *sp;
61 } sip_response_code_t;
62
63 /* used to keep track of the stats for a specific request string */
64 typedef struct _sip_request_method_t {
65         gchar           *response;      /* eg. : INVITE */
66         guint32          packets;
67         sipstat_t       *sp;
68 } sip_request_method_t;
69
70 /* TODO: extra codes to be added from SIP extensions? */
71 static const value_string vals_status_code[] = {
72     { 100, "Trying"},
73     { 180, "Ringing"},
74     { 181, "Call Is Being Forwarded"},
75     { 182, "Queued"},
76     { 183, "Session Progress"},
77     { 199, "Informational - Others" },
78
79     { 200, "OK"},
80     { 202, "Accepted"},
81     { 299, "Success - Others"}, /* used to keep track of other Success packets */
82
83     { 300, "Multiple Choices"},
84     { 301, "Moved Permanently"},
85     { 302, "Moved Temporarily"},
86     { 305, "Use Proxy"},
87     { 380, "Alternative Service"},
88     { 399, "Redirection - Others"},
89
90     { 400, "Bad Request"},
91     { 401, "Unauthorized"},
92     { 402, "Payment Required"},
93     { 403, "Forbidden"},
94     { 404, "Not Found"},
95     { 405, "Method Not Allowed"},
96     { 406, "Not Acceptable"},
97     { 407, "Proxy Authentication Required"},
98     { 408, "Request Timeout"},
99     { 410, "Gone"},
100     { 412, "Conditional Request Failed"},
101     { 413, "Request Entity Too Large"},
102     { 414, "Request-URI Too Long"},
103     { 415, "Unsupported Media Type"},
104     { 416, "Unsupported URI Scheme"},
105     { 420, "Bad Extension"},
106     { 421, "Extension Required"},
107     { 423, "Interval Too Brief"},
108     { 429, "Provide Referrer Identity"},
109     { 480, "Temporarily Unavailable"},
110     { 481, "Call/Transaction Does Not Exist"},
111     { 482, "Loop Detected"},
112     { 483, "Too Many Hops"},
113     { 484, "Address Incomplete"},
114     { 485, "Ambiguous"},
115     { 486, "Busy Here"},
116     { 487, "Request Terminated"},
117     { 488, "Not Acceptable Here"},
118     { 489, "Bad Event"},
119     { 491, "Request Pending"},
120     { 493, "Undecipherable"},
121     { 499, "Client Error - Others"},
122
123     { 500, "Server Internal Error"},
124     { 501, "Not Implemented"},
125     { 502, "Bad Gateway"},
126     { 503, "Service Unavailable"},
127     { 504, "Server Time-out"},
128     { 505, "Version Not Supported"},
129     { 513, "Message Too Large"},
130     { 599, "Server Error - Others"},
131
132     { 600, "Busy Everywhere"},
133     { 603, "Decline"},
134     { 604, "Does Not Exist Anywhere"},
135     { 606, "Not Acceptable"},
136     { 699, "Global Failure - Others"},
137
138     { 0,        NULL}
139 };
140
141 /* Create tables for responses and requests */
142 static void
143 sip_init_hash(sipstat_t *sp)
144 {
145     int i;
146
147     /* Create responses table */
148     sp->hash_responses = g_hash_table_new(g_int_hash, g_int_equal);
149
150     /* Add all response codes */
151     for (i=0 ; vals_status_code[i].strptr ; i++)
152     {
153         gint *key = g_malloc (sizeof(gint));
154         sip_response_code_t *sc = g_malloc (sizeof(sip_response_code_t));
155         *key = vals_status_code[i].value;
156         sc->packets=0;
157         sc->response_code =  *key;
158         sc->name=vals_status_code[i].strptr;
159         sc->sp = sp;
160         g_hash_table_insert(sc->sp->hash_responses, key, sc);
161     }
162
163     /* Create empty requests table */
164     sp->hash_requests = g_hash_table_new(g_str_hash, g_str_equal);
165 }
166
167 static void
168 sip_draw_hash_requests( gchar *key _U_ , sip_request_method_t *data, gchar * format)
169 {
170         if (data->packets==0)
171                 return;
172         printf( format, data->response, data->packets);
173 }
174
175 static void
176 sip_draw_hash_responses( gint * key _U_ , sip_response_code_t *data, char * format)
177 {
178         if (data==NULL) {
179                 g_warning("C'est quoi ce borderl key=%d\n", *key);
180                 exit(EXIT_FAILURE);
181         }
182         if (data->packets==0)
183                 return;
184         printf(format,  data->response_code, data->name, data->packets );
185 }
186
187 /* NOT USED at this moment */
188 /*
189 static void
190 sip_free_hash( gpointer key, gpointer value, gpointer user_data _U_ )
191 {
192         g_free(key);
193         g_free(value);
194 }
195 */
196
197 static void
198 sip_reset_hash_responses(gchar *key _U_ , sip_response_code_t *data, gpointer ptr _U_ )
199 {
200         data->packets = 0;
201 }
202 static void
203 sip_reset_hash_requests(gchar *key _U_ , sip_request_method_t *data, gpointer ptr _U_ )
204 {
205         data->packets = 0;
206 }
207
208 static void
209 sipstat_reset(void *psp  )
210 {
211         sipstat_t *sp=psp;
212         if (sp) {
213                 sp->packets = 0;
214                 sp->resent_packets = 0;
215                 g_hash_table_foreach( sp->hash_responses, (GHFunc)sip_reset_hash_responses, NULL);
216                 g_hash_table_foreach( sp->hash_requests, (GHFunc)sip_reset_hash_requests, NULL);
217         }
218 }
219
220
221 /* Main entry point to SIP tap */
222 static int
223 sipstat_packet(void *psp, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const void *pri)
224 {
225     const sip_info_value_t *value=pri;
226     sipstat_t *sp = (sipstat_t *)psp;
227     
228     /* Total number of packets, including continuation packets */
229     sp->packets++;
230     
231     /* Update resent count if flag set */
232     if (value->resend)
233     {
234         sp->resent_packets++;
235     }
236
237     
238     /* Looking at both requests and responses */
239     if (value->response_code != 0)
240     {
241         /* Responses */
242         guint *key = g_malloc(sizeof(guint));
243         sip_response_code_t *sc;
244
245         /* Look up response code in hash table */
246         *key = value->response_code;
247         sc = g_hash_table_lookup(sp->hash_responses, key);
248         if (sc==NULL)
249         {
250             /* Non-standard status code ; we classify it as others
251              * in the relevant category
252              * (Informational,Success,Redirection,Client Error,Server Error,Global Failure)
253              */
254             int i = value->response_code;
255             if ((i<100) || (i>=700))
256             {
257                 /* Forget about crazy values */
258                 return 0;
259             }
260             else if (i<200)
261             {
262                 *key=199;       /* Hopefully, this status code will never be used */
263             }
264             else if (i<300)
265             {
266                 *key=299;
267             }
268             else if (i<400)
269             {
270                 *key=399;
271             }
272             else if (i<500)
273             {
274                 *key=499;
275             }
276             else if (i<600)
277             {
278                 *key=599;
279             }
280             else
281             {
282                 *key = 699;
283             }
284
285             /* Now look up this fallback code to get its text description */
286             sc = g_hash_table_lookup(sp->hash_responses, key);
287             if (sc==NULL)
288             {
289                 return 0;
290             }
291         }
292         sc->packets++;
293     }
294     else if (value->request_method)
295     {
296         /* Requests */
297         sip_request_method_t *sc;
298
299         /* Look up the request method in the table */
300         sc = g_hash_table_lookup(sp->hash_requests, value->request_method);
301         if (sc == NULL)
302         {
303             /* First of this type. Create structure and initialise */
304             sc=g_malloc(sizeof(sip_request_method_t));
305             sc->response = g_strdup(value->request_method);
306             sc->packets = 1;
307             sc->sp = sp;
308             /* Insert it into request table */
309             g_hash_table_insert(sp->hash_requests, sc->response, sc);
310         }
311         else
312         {
313             /* Already existed, just update count for that method */
314             sc->packets++;
315         }
316         /* g_free(value->request_method); */
317     }
318     else
319     {
320         /* No request method set. Just ignore */
321         return 0;
322     }
323
324     return 1;
325 }
326
327 static void
328 sipstat_draw(void *psp  )
329 {
330         sipstat_t *sp=psp;
331         printf("\n");
332         printf("===================================================================\n");
333         if (sp->filter == NULL)
334                 printf("SIP Statistics\n");
335         else
336                 printf("SIP Statistics with filter %s\n", sp->filter);
337
338         printf("\nNumber of SIP messages: %d", sp->packets);
339         printf("\nNumber of resent SIP messages: %d\n", sp->resent_packets);
340         printf( "\n* SIP Status Codes in reply packets\n");
341         g_hash_table_foreach( sp->hash_responses, (GHFunc)sip_draw_hash_responses,
342                 "  SIP %3d %-15s : %5d Packets\n");
343         printf("\n* List of SIP Request methods\n");
344         g_hash_table_foreach( sp->hash_requests,  (GHFunc)sip_draw_hash_requests,
345                 "  %-15s : %5d Packets\n");
346         printf("===================================================================\n");
347 }
348
349 static void
350 sipstat_init(const char *optarg, void* userdata _U_)
351 {
352         sipstat_t *sp;
353         const char *filter=NULL;
354         GString *error_string;
355
356         if (strncmp (optarg, "sip,stat,", 9) == 0){
357                 filter=optarg+9;
358         } else {
359                 filter=NULL;
360         }
361
362         sp = g_malloc( sizeof(sipstat_t) );
363         if(filter){
364                 sp->filter=g_strdup(filter);
365         } else {
366                 sp->filter=NULL;
367         }
368         /*g_hash_table_foreach( sip_status, (GHFunc)sip_reset_hash_responses, NULL);*/
369
370
371         error_string = register_tap_listener(
372                         "sip",
373                         sp,
374                         filter,
375                         sipstat_reset,
376                         sipstat_packet,
377                         sipstat_draw);
378         if (error_string){
379                 /* error, we failed to attach to the tap. clean up */
380                 g_free(sp->filter);
381                 g_free(sp);
382                 fprintf (stderr, "tshark: Couldn't register sip,stat tap: %s\n",
383                                 error_string->str);
384                 g_string_free(error_string, TRUE);
385                 exit(1);
386         }
387
388         sp->packets = 0;
389         sp->resent_packets = 0;
390         sip_init_hash(sp);
391 }
392
393 void
394 register_tap_listener_sipstat(void)
395 {
396         register_stat_cmd_arg("sip,stat", sipstat_init,NULL);
397 }