From Mark C. Brown: add EISA 100BaseTX, EISA FDDI, and HSC FDDI support,
[obnox/wireshark/wip.git] / tap-dcerpcstat.c
1 /* tap-dcerpcstat.c
2  * dcerpcstat   2002 Ronnie Sahlberg
3  *
4  * $Id$
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
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
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <stdio.h>
30
31 #ifdef HAVE_SYS_TYPES_H
32 # include <sys/types.h>
33 #endif
34
35 #include <string.h>
36 #include "epan/packet_info.h"
37 #include <epan/tap.h>
38 #include <epan/dissectors/packet-dcerpc.h>
39 #include "register.h"
40
41 /* used to keep track of statistics for a specific procedure */
42 typedef struct _rpc_procedure_t {
43         char *proc;
44         int num;
45         nstime_t min;
46         nstime_t max;
47         nstime_t tot;
48 } rpc_procedure_t;
49
50 /* used to keep track of the statistics for an entire program interface */
51 typedef struct _rpcstat_t {
52         char *prog;
53         char *filter;
54         e_uuid_t uuid;
55         guint16 ver;
56         guint32 num_procedures;
57         rpc_procedure_t *procedures;
58 } rpcstat_t;
59
60
61
62 static int
63 dcerpcstat_packet(void *prs, packet_info *pinfo, epan_dissect_t *edt _U_, void *pri)
64 {
65         dcerpc_info *ri=pri;
66         rpcstat_t *rs=prs;
67         nstime_t delta;
68         rpc_procedure_t *rp;
69
70         if(!ri->call_data){
71                 return 0;
72         }
73         if(!ri->call_data->req_frame){
74                 /* we have not seen the request so we dont know the delta*/
75                 return 0;
76         }
77         if(ri->call_data->opnum>=rs->num_procedures){
78                 /* dont handle this since its outside of known table */
79                 return 0;
80         }
81
82         /* we are only interested in reply packets */
83         if(ri->ptype != PDU_RESP){
84                 return 0;
85         }
86
87         /* we are only interested in certain program/versions */
88         if( (ri->call_data->uuid.Data1!=rs->uuid.Data1)
89           ||(ri->call_data->uuid.Data2!=rs->uuid.Data2)
90           ||(ri->call_data->uuid.Data3!=rs->uuid.Data3)
91           ||(ri->call_data->uuid.Data4[0]!=rs->uuid.Data4[0])
92           ||(ri->call_data->uuid.Data4[1]!=rs->uuid.Data4[1])
93           ||(ri->call_data->uuid.Data4[2]!=rs->uuid.Data4[2])
94           ||(ri->call_data->uuid.Data4[3]!=rs->uuid.Data4[3])
95           ||(ri->call_data->uuid.Data4[4]!=rs->uuid.Data4[4])
96           ||(ri->call_data->uuid.Data4[5]!=rs->uuid.Data4[5])
97           ||(ri->call_data->uuid.Data4[6]!=rs->uuid.Data4[6])
98           ||(ri->call_data->uuid.Data4[7]!=rs->uuid.Data4[7])
99           ||(ri->call_data->ver!=rs->ver)){
100                 return 0;
101         }
102
103         rp=&(rs->procedures[ri->call_data->opnum]);
104
105         /* calculate time delta between request and reply */
106         delta.secs=pinfo->fd->abs_secs-ri->call_data->req_time.secs;
107         delta.nsecs=pinfo->fd->abs_usecs*1000-ri->call_data->req_time.nsecs;
108         if(delta.nsecs<0){
109                 delta.nsecs+=1000000000;
110                 delta.secs--;
111         }
112
113         if(rp->num==0){
114                 rp->max.secs=delta.secs;
115                 rp->max.nsecs=delta.nsecs;
116         }
117
118         if(rp->num==0){
119                 rp->min.secs=delta.secs;
120                 rp->min.nsecs=delta.nsecs;
121         }
122
123         if( (delta.secs<rp->min.secs)
124         ||( (delta.secs==rp->min.secs)
125           &&(delta.nsecs<rp->min.nsecs) ) ){
126                 rp->min.secs=delta.secs;
127                 rp->min.nsecs=delta.nsecs;
128         }
129
130         if( (delta.secs>rp->max.secs)
131         ||( (delta.secs==rp->max.secs)
132           &&(delta.nsecs>rp->max.nsecs) ) ){
133                 rp->max.secs=delta.secs;
134                 rp->max.nsecs=delta.nsecs;
135         }
136         
137         rp->tot.secs += delta.secs;
138         rp->tot.nsecs += delta.nsecs;
139         if(rp->tot.nsecs>1000000000){
140                 rp->tot.nsecs-=1000000000;
141                 rp->tot.secs++;
142         }
143
144         rp->num++;
145
146         return 1;
147 }
148
149 static void
150 dcerpcstat_draw(void *prs)
151 {
152         rpcstat_t *rs=prs;
153         guint32 i;
154 #ifdef G_HAVE_UINT64
155         guint64 td;
156 #else
157         guint32 td;
158 #endif
159         printf("\n");
160         printf("===================================================================\n");
161         printf("%s Major Version %u RTT Statistics:\n", rs->prog, rs->ver);
162         printf("Filter: %s\n",rs->filter?rs->filter:"");
163         printf("Procedure                  Calls   Min RTT   Max RTT   Avg RTT\n");
164         for(i=0;i<rs->num_procedures;i++){
165                 /* scale it to units of 10us.*/
166                 /* for long captures with a large tot time, this can overflow on 32bit */
167                 td=(int)rs->procedures[i].tot.secs;
168                 td=td*100000+(int)rs->procedures[i].tot.nsecs/10000;
169                 if(rs->procedures[i].num){
170                         td/=rs->procedures[i].num;
171                 } else {
172                         td=0;
173                 }
174
175                 printf("%-25s %6d %3d.%05d %3d.%05d %3d.%05d\n",
176                         rs->procedures[i].proc,
177                         rs->procedures[i].num,
178                         (int)rs->procedures[i].min.secs,rs->procedures[i].min.nsecs/10000,
179                         (int)rs->procedures[i].max.secs,rs->procedures[i].max.nsecs/10000,
180                         td/100000, td%100000
181                 );
182         }
183         printf("===================================================================\n");
184 }
185
186
187
188 static void
189 dcerpcstat_init(char *optarg)
190 {
191         rpcstat_t *rs;
192         guint32 i, max_procs;
193         dcerpc_sub_dissector *procs;
194         e_uuid_t uuid;
195         guint d1,d2,d3,d40,d41,d42,d43,d44,d45,d46,d47;
196         int major, minor;
197         guint16 ver;
198         int pos=0;
199         char *filter=NULL;
200         GString *error_string;
201     
202         /*
203          * XXX - DCE RPC statistics are maintained only by major version,
204          * not by major and minor version, so the minor version number is
205          * ignored.
206          *
207          * Should we just stop supporting minor version numbers here?
208          * Or should we allow it to be omitted?  Or should we keep
209          * separate statistics for different minor version numbers,
210          * and allow the minor version number to be omitted, and
211          * report aggregate statistics for all minor version numbers
212          * if it's omitted?
213          *
214          * XXX - should this be called "srt" rather than "rtt"?  The
215          * equivalent tap for Ethereal calls it "srt", for "Service
216          * Response Time", rather than "rtt" for "Round-Trip Time".
217          */
218         if(sscanf(optarg,"dcerpc,rtt,%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x,%d.%d%n", &d1,&d2,&d3,&d40,&d41,&d42,&d43,&d44,&d45,&d46,&d47,&major,&minor,&pos)==13){
219                 uuid.Data1=d1;
220                 uuid.Data2=d2;
221                 uuid.Data3=d3;
222                 uuid.Data4[0]=d40;
223                 uuid.Data4[1]=d41;
224                 uuid.Data4[2]=d42;
225                 uuid.Data4[3]=d43;
226                 uuid.Data4[4]=d44;
227                 uuid.Data4[5]=d45;
228                 uuid.Data4[6]=d46;
229                 uuid.Data4[7]=d47;
230                 if(pos){
231                         filter=optarg+pos;
232                 } else {
233                         filter=NULL;
234                 }
235         } else {
236                 fprintf(stderr, "tethereal: invalid \"-z dcerpc,rtt,<uuid>,<major version>.<minor version>[,<filter>]\" argument\n");
237                 exit(1);
238         }
239         if (major < 0 || major > 65535) {
240                 fprintf(stderr,"tethereal: dcerpcstat_init() Major version number %d is invalid - must be positive and <= 65535\n", major);
241                 exit(1);
242         }
243         if (minor < 0 || minor > 65535) {
244                 fprintf(stderr,"tethereal: dcerpcstat_init() Minor version number %d is invalid - must be positive and <= 65535\n", minor);
245                 exit(1);
246         }
247         ver = major;
248
249         rs=g_malloc(sizeof(rpcstat_t));
250         rs->prog=dcerpc_get_proto_name(&uuid, ver);
251         if(!rs->prog){
252                 g_free(rs);
253                 fprintf(stderr,"tethereal: dcerpcstat_init() Protocol with uuid:%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x v%u not supported\n",uuid.Data1,uuid.Data2,uuid.Data3,uuid.Data4[0],uuid.Data4[1],uuid.Data4[2],uuid.Data4[3],uuid.Data4[4],uuid.Data4[5],uuid.Data4[6],uuid.Data4[7],ver);
254                 exit(1);
255         }
256         procs=dcerpc_get_proto_sub_dissector(&uuid, ver);
257         rs->uuid=uuid;
258         rs->ver=ver;
259
260         if(filter){
261                 rs->filter=g_malloc(strlen(filter)+1);
262                 strcpy(rs->filter, filter);
263         } else {
264                 rs->filter=NULL;
265         }
266
267         for(i=0,max_procs=0;procs[i].name;i++){
268                 if(procs[i].num>max_procs){
269                         max_procs=procs[i].num;
270                 }
271         }
272         rs->num_procedures=max_procs+1;
273         rs->procedures=g_malloc(sizeof(rpc_procedure_t)*(rs->num_procedures+1));
274         for(i=0;i<rs->num_procedures;i++){
275                 int j;
276                 rs->procedures[i].proc="unknown";
277                 for(j=0;procs[j].name;j++){
278                         if(procs[j].num==i){
279                                 rs->procedures[i].proc=procs[j].name;
280                         }
281                 }
282                 rs->procedures[i].num=0;        
283                 rs->procedures[i].min.secs=0;
284                 rs->procedures[i].min.nsecs=0;
285                 rs->procedures[i].max.secs=0;
286                 rs->procedures[i].max.nsecs=0;
287                 rs->procedures[i].tot.secs=0;
288                 rs->procedures[i].tot.nsecs=0;
289         }
290
291         error_string=register_tap_listener("dcerpc", rs, filter, NULL, dcerpcstat_packet, dcerpcstat_draw);
292         if(error_string){
293                 /* error, we failed to attach to the tap. clean up */
294                 g_free(rs->procedures);
295                 g_free(rs->filter);
296                 g_free(rs);
297
298                 fprintf(stderr, "tethereal: Couldn't register dcerpc,rtt tap: %s\n",
299                     error_string->str);
300                 g_string_free(error_string, TRUE);
301                 exit(1);
302         }
303 }
304
305 void
306 register_tap_listener_dcerpcstat(void)
307 {
308         register_ethereal_tap("dcerpc,rtt,", dcerpcstat_init);
309 }