Show VarBind OIDs and trap enterprise OID in info column.
[obnox/wireshark/wip.git] / tap-rtp.c
1 /* tap-rtp.c
2  * RTP TAP for tshark
3  *
4  * $Id$
5  * 
6  * Copyright 2008, Ericsson AB
7  * By Balint Reczey <balint.reczey@ericsson.com>
8  *
9  * based on gtk/rtp_stream_dlg.c
10  * Copyright 2003, Alcatel Business Systems
11  * By Lars Ruoff <lars.ruoff@gmx.net>
12  *
13  * Wireshark - Network traffic analyzer
14  * By Gerald Combs <gerald@wireshark.org>
15  * Copyright 1998 Gerald Combs
16  *
17  * This program is free software; you can redistribute it and/or
18  * modify it under the terms of the GNU General Public License
19  * as published by the Free Software Foundation; either version 2
20  * of the License, or (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
30  */
31
32 /*
33  * This TAP provides statistics for RTP streams
34  */
35
36 #ifdef HAVE_CONFIG_H
37 # include "config.h"
38 #endif
39
40 #include <stdio.h>
41
42 #ifdef HAVE_SYS_TYPES_H
43 # include <sys/types.h>
44 #endif
45
46 #include <string.h>
47 #include <locale.h>
48 #include "epan/packet_info.h"
49 #include "epan/value_string.h"
50 #include <epan/tap.h>
51 #include <epan/rtp_pt.h>
52 #include <epan/stat_cmd_args.h>
53 #include <epan/addr_resolv.h>
54 #include "register.h"
55 #include "tap-rtp-common.h"
56
57
58
59 static void
60 rtp_streams_stat_draw(void *arg _U_)
61 {
62     
63     
64     GList *list;
65     rtp_stream_info_t* strinfo;
66     gchar *payload_type;
67     guint32 expected;
68     gint32 lost;
69     double perc;
70     char *savelocale;
71     
72     printf("========================= RTP Streams ========================\n");
73     printf("%15s %5s %15s %5s %10s %16s %5s %12s %15s %15s %15s %s\n","Src IP addr", "Port",  "Dest IP addr", "Port", "SSRC", "Payload", "Pkts", "Lost", "Max Delta(ms)", "Max Jitter(ms)", "Mean Jitter(ms)", "Problems?");
74     
75     /* save the current locale */
76     savelocale = setlocale(LC_NUMERIC, NULL);
77     /* switch to "C" locale to avoid problems with localized decimal separators
78        in g_snprintf("%f") functions */
79     setlocale(LC_NUMERIC, "C");
80     
81     list = the_tapinfo_struct.strinfo_list;
82     
83     list = g_list_first(list);
84     while (list)
85     {
86         strinfo = (rtp_stream_info_t*)(list->data);
87
88         /* payload type */
89         if(strinfo->pt>95){
90         if(strinfo->info_payload_type_str != NULL){
91             payload_type = g_strdup(strinfo->info_payload_type_str);
92         }else{
93             payload_type = g_strdup_printf("Unknown(%u)",strinfo->pt);
94         }
95
96         }else{
97             payload_type = g_strdup(val_to_str(strinfo->pt, rtp_payload_type_vals,
98                 "Unknown (%u)"));
99         }
100     
101         /* packet count, lost packets */
102         expected = (strinfo->rtp_stats.stop_seq_nr + strinfo->rtp_stats.cycles*65536)
103             - strinfo->rtp_stats.start_seq_nr + 1;
104         lost = expected - strinfo->rtp_stats.total_nr;
105         if (expected){
106             perc = (double)(lost*100)/(double)expected;
107         } else {
108             perc = 0;
109         }
110         
111         printf("%15s %5u %15s %5u 0x%08X %16s %5u %5d (%.1f%%) %15.2f %15.2f %15.2f %s\n",
112             get_addr_name(&(strinfo->src_addr)),
113             strinfo->src_port,
114             get_addr_name(&(strinfo->dest_addr)),
115             strinfo->dest_port,
116             strinfo->ssrc,
117             payload_type,
118             strinfo->npackets,
119             lost, perc,
120             strinfo->rtp_stats.max_delta*1000,
121             strinfo->rtp_stats.max_jitter*1000,
122             strinfo->rtp_stats.mean_jitter*1000,
123             (strinfo->problem)?"X":"");
124         
125         list = g_list_next(list);
126
127
128     }
129
130     printf("==============================================================\n");
131     /* restore previous locale setting */
132     setlocale(LC_NUMERIC, savelocale);
133 }
134
135
136 static void
137 rtp_streams_stat_init(const char *optarg _U_, void* userdata _U_)
138 {
139     GString             *err_p;
140
141     err_p =
142         register_tap_listener("rtp", &the_tapinfo_struct, NULL,
143             rtpstream_reset_cb,
144             rtpstream_packet,
145             rtp_streams_stat_draw);
146
147     if (err_p != NULL)
148     {
149         g_string_free(err_p, TRUE);
150
151         exit(1);
152     }
153 }
154
155
156 void
157 register_tap_listener_rtp_streams(void)
158 {
159     register_stat_cmd_arg("rtp,streams", rtp_streams_stat_init,NULL);
160 }