From Hannes Gredler:
[obnox/wireshark/wip.git] / tap-gsm_astat.c
1 /* tap-gsm_astat.c
2  *
3  * Copyright 2003, Michael Lum <mlum [AT] telostech.com>
4  * In association with Telos Technology Inc.
5  *
6  * $Id$
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@ethereal.com>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 /*
28  * This TAP provides statistics for the GSM A Interface:
29  */
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <stdio.h>
36
37 #ifdef HAVE_SYS_TYPES_H
38 # include <sys/types.h>
39 #endif
40
41 #include <string.h>
42 #include "epan/packet_info.h"
43 #include "epan/value_string.h"
44 #include <epan/tap.h>
45 #include <epan/stat_cmd_args.h>
46 #include <epan/dissectors/packet-bssap.h>
47 #include <epan/dissectors/packet-gsm_a.h>
48 #include "register.h"
49
50
51 typedef struct _gsm_a_stat_t {
52     int         bssmap_message_type[0xff];
53     int         dtap_mm_message_type[0xff];
54     int         dtap_rr_message_type[0xff];
55     int         dtap_cc_message_type[0xff];
56     int         dtap_gmm_message_type[0xff];
57     int         dtap_sms_message_type[0xff];
58     int         dtap_sm_message_type[0xff];
59     int         dtap_ss_message_type[0xff];
60 } gsm_a_stat_t;
61
62
63 static int
64 gsm_a_stat_packet(
65     void                        *tapdata,
66     packet_info                 *pinfo _U_,
67     epan_dissect_t              *edt _U_,
68     const void                  *data)
69 {
70     gsm_a_stat_t                *stat_p = tapdata;
71     const gsm_a_tap_rec_t       *tap_p = data;
72
73     switch (tap_p->pdu_type)
74     {
75     case BSSAP_PDU_TYPE_BSSMAP:
76         stat_p->bssmap_message_type[tap_p->message_type]++;
77         break;
78
79     case BSSAP_PDU_TYPE_DTAP:
80         switch (tap_p->protocol_disc)
81         {
82         case PD_CC:
83             stat_p->dtap_cc_message_type[tap_p->message_type]++;
84             break;
85         case PD_MM:
86             stat_p->dtap_mm_message_type[tap_p->message_type]++;
87             break;
88         case PD_RR:
89             stat_p->dtap_rr_message_type[tap_p->message_type]++;
90             break;
91         case PD_GMM:
92             stat_p->dtap_gmm_message_type[tap_p->message_type]++;
93             break;
94         case PD_SMS:
95             stat_p->dtap_sms_message_type[tap_p->message_type]++;
96             break;
97         case PD_SM:
98             stat_p->dtap_sm_message_type[tap_p->message_type]++;
99             break;
100         case PD_SS:
101             stat_p->dtap_ss_message_type[tap_p->message_type]++;
102             break;
103         default:
104             /*
105              * unsupported PD
106              */
107             return(0);
108         }
109         break;
110
111     default:
112         /*
113          * unknown PDU type !!!
114          */
115         return(0);
116     }
117
118     return(1);
119 }
120
121
122 static void
123 gsm_a_stat_draw(
124     void                *tapdata)
125 {
126     gsm_a_stat_t        *stat_p = tapdata;
127     guint8              i;
128
129
130     printf("\n");
131     printf("=========== GS=M A-i/f Statistics ============================\n");
132     printf("BSSMAP\n");
133     printf("Message (ID)Type                                        Number\n");
134
135     i = 0;
136     while (gsm_a_bssmap_msg_strings[i].strptr)
137     {
138         if (stat_p->bssmap_message_type[gsm_a_bssmap_msg_strings[i].value] > 0)
139         {
140             printf("0x%02x  %-50s%d\n",
141                 gsm_a_bssmap_msg_strings[i].value,
142                 gsm_a_bssmap_msg_strings[i].strptr,
143                 stat_p->bssmap_message_type[gsm_a_bssmap_msg_strings[i].value]);
144         }
145
146         i++;
147     }
148
149     printf("\nDTAP %s\n", gsm_a_pd_str[PD_MM]);
150     printf("Message (ID)Type                                        Number\n");
151
152     i = 0;
153     while (gsm_a_dtap_msg_mm_strings[i].strptr)
154     {
155         if (stat_p->dtap_mm_message_type[gsm_a_dtap_msg_mm_strings[i].value] > 0)
156         {
157             printf("0x%02x  %-50s%d\n",
158                 gsm_a_dtap_msg_mm_strings[i].value,
159                 gsm_a_dtap_msg_mm_strings[i].strptr,
160                 stat_p->dtap_mm_message_type[gsm_a_dtap_msg_mm_strings[i].value]);
161         }
162
163         i++;
164     }
165
166     printf("\nDTAP %s\n", gsm_a_pd_str[PD_RR]);
167     printf("Message (ID)Type                                        Number\n");
168
169     i = 0;
170     while (gsm_a_dtap_msg_rr_strings[i].strptr)
171     {
172         if (stat_p->dtap_rr_message_type[gsm_a_dtap_msg_rr_strings[i].value] > 0)
173         {
174             printf("0x%02x  %-50s%d\n",
175                 gsm_a_dtap_msg_rr_strings[i].value,
176                 gsm_a_dtap_msg_rr_strings[i].strptr,
177                 stat_p->dtap_rr_message_type[gsm_a_dtap_msg_rr_strings[i].value]);
178         }
179
180         i++;
181     }
182
183     printf("\nDTAP %s\n", gsm_a_pd_str[PD_CC]);
184     printf("Message (ID)Type                                        Number\n");
185
186     i = 0;
187     while (gsm_a_dtap_msg_cc_strings[i].strptr)
188     {
189         if (stat_p->dtap_cc_message_type[gsm_a_dtap_msg_cc_strings[i].value] > 0)
190         {
191             printf("0x%02x  %-50s%d\n",
192                 gsm_a_dtap_msg_cc_strings[i].value,
193                 gsm_a_dtap_msg_cc_strings[i].strptr,
194                 stat_p->dtap_cc_message_type[gsm_a_dtap_msg_cc_strings[i].value]);
195         }
196
197         i++;
198     }
199
200     printf("\nDTAP %s\n", gsm_a_pd_str[PD_GMM]);
201     printf("Message (ID)Type                                        Number\n");
202
203     i = 0;
204     while (gsm_a_dtap_msg_gmm_strings[i].strptr)
205     {
206         if (stat_p->dtap_gmm_message_type[gsm_a_dtap_msg_gmm_strings[i].value] > 0)
207         {
208             printf("0x%02x  %-50s%d\n",
209                 gsm_a_dtap_msg_gmm_strings[i].value,
210                 gsm_a_dtap_msg_gmm_strings[i].strptr,
211                 stat_p->dtap_gmm_message_type[gsm_a_dtap_msg_gmm_strings[i].value]);
212         }
213
214         i++;
215     }
216
217     printf("\nDTAP %s\n", gsm_a_pd_str[PD_SMS]);
218     printf("Message (ID)Type                                        Number\n");
219
220     i = 0;
221     while (gsm_a_dtap_msg_sms_strings[i].strptr)
222     {
223         if (stat_p->dtap_sms_message_type[gsm_a_dtap_msg_sms_strings[i].value] > 0)
224         {
225             printf("0x%02x  %-50s%d\n",
226                 gsm_a_dtap_msg_sms_strings[i].value,
227                 gsm_a_dtap_msg_sms_strings[i].strptr,
228                 stat_p->dtap_sms_message_type[gsm_a_dtap_msg_sms_strings[i].value]);
229         }
230
231         i++;
232     }
233
234     printf("\nDTAP %s\n", gsm_a_pd_str[PD_SM]);
235     printf("Message (ID)Type                                        Number\n");
236
237     i = 0;
238     while (gsm_a_dtap_msg_sm_strings[i].strptr)
239     {
240         if (stat_p->dtap_sm_message_type[gsm_a_dtap_msg_sm_strings[i].value] > 0)
241         {
242             printf("0x%02x  %-50s%d\n",
243                 gsm_a_dtap_msg_sm_strings[i].value,
244                 gsm_a_dtap_msg_sm_strings[i].strptr,
245                 stat_p->dtap_sm_message_type[gsm_a_dtap_msg_sm_strings[i].value]);
246         }
247
248         i++;
249     }
250
251     printf("\nDTAP %s\n", gsm_a_pd_str[PD_SS]);
252     printf("Message (ID)Type                                        Number\n");
253
254     i = 0;
255     while (gsm_a_dtap_msg_ss_strings[i].strptr)
256     {
257         if (stat_p->dtap_ss_message_type[gsm_a_dtap_msg_ss_strings[i].value] > 0)
258         {
259             printf("0x%02x  %-50s%d\n",
260                 gsm_a_dtap_msg_ss_strings[i].value,
261                 gsm_a_dtap_msg_ss_strings[i].strptr,
262                 stat_p->dtap_ss_message_type[gsm_a_dtap_msg_ss_strings[i].value]);
263         }
264
265         i++;
266     }
267
268     printf("==============================================================\n");
269 }
270
271
272 static void
273 gsm_a_stat_init(const char *optarg _U_,void* userdata _U_)
274 {
275     gsm_a_stat_t        *stat_p;
276     GString             *err_p;
277
278     stat_p = g_malloc(sizeof(gsm_a_stat_t));
279
280     memset(stat_p, 0, sizeof(gsm_a_stat_t));
281
282     err_p =
283         register_tap_listener("gsm_a", stat_p, NULL,
284             NULL,
285             gsm_a_stat_packet,
286             gsm_a_stat_draw);
287
288     if (err_p != NULL)
289     {
290         g_free(stat_p);
291         g_string_free(err_p, TRUE);
292
293         exit(1);
294     }
295 }
296
297
298 void
299 register_tap_listener_gsm_astat(void)
300 {
301     register_stat_cmd_arg("gsm_a,", gsm_a_stat_init,NULL);
302 }