a231cf134df5257ae537b0af9e02dce97bfae336
[openafs.git] / src / rxdebug / rxdebug.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #include <afs/param.h>
12
13
14 #include <sys/types.h>
15 #include <errno.h>
16 #ifdef AFS_NT40_ENV
17 #include <winsock2.h>
18 #else
19 #include <sys/socket.h>
20 #include <sys/file.h>
21 #include <netdb.h>
22 #include <arpa/inet.h>
23 #endif
24 #ifdef HAVE_NETINET_IN_H
25 #include <netinet/in.h>
26 #endif
27 #ifdef HAVE_SYS_TIME_H
28 #include <sys/time.h>
29 #endif
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33 #include <string.h>
34 #include <sys/stat.h>
35 #include <afs/afsutil.h>
36 #include <afs/stds.h>
37 #include <afs/cmd.h>
38
39 #include <stdio.h>
40
41 #include "rx_user.h"
42 #include "rx_clock.h"
43 #include "rx_queue.h"
44 #include "rx.h"
45 #include "rx_globals.h"
46
47
48 #define TIMEOUT     20
49
50 static short
51 PortNumber(char *aport)
52 {
53     register int tc;
54     register short total;
55
56     total = 0;
57     while ((tc = *aport++)) {
58         if (tc < '0' || tc > '9')
59             return -1;          /* bad port number */
60         total *= 10;
61         total += tc - (int)'0';
62     }
63     return htons(total);
64 }
65
66 static short
67 PortName(char *aname)
68 {
69     register struct servent *ts;
70     ts = getservbyname(aname, NULL);
71     if (!ts)
72         return -1;
73     return ts->s_port;          /* returns it in network byte order */
74 }
75
76 int
77 MainCommand(struct cmd_syndesc *as, void *arock)
78 {
79     register int i;
80     osi_socket s;
81     int j;
82     struct sockaddr_in taddr;
83     afs_int32 host;
84     struct in_addr hostAddr;
85     short port;
86     struct hostent *th;
87     register afs_int32 code;
88     int nodally;
89     int allconns;
90     int rxstats;
91     int onlyClient, onlyServer;
92     afs_int32 onlyHost;
93     short onlyPort;
94     int onlyAuth;
95     int flag;
96     int dallyCounter;
97     int withSecStats;
98     int withAllConn;
99     int withRxStats;
100     int withWaiters;
101     int withIdleThreads;
102     int withWaited;
103     int withPeers;
104     int withPackets;
105     struct rx_debugStats tstats;
106     char *portName, *hostName;
107     char hoststr[20];
108     struct rx_debugConn tconn;
109     short noConns;
110     short showPeers;
111     short showLong;
112     int version_flag;
113     char version[64];
114     afs_int32 length = 64;
115
116     afs_uint32 supportedDebugValues = 0;
117     afs_uint32 supportedStatValues = 0;
118     afs_uint32 supportedConnValues = 0;
119     afs_uint32 supportedPeerValues = 0;
120     afs_int32 nextconn = 0;
121     afs_int32 nextpeer = 0;
122
123     nodally = (as->parms[2].items ? 1 : 0);
124     allconns = (as->parms[3].items ? 1 : 0);
125     rxstats = (as->parms[4].items ? 1 : 0);
126     onlyServer = (as->parms[5].items ? 1 : 0);
127     onlyClient = (as->parms[6].items ? 1 : 0);
128     version_flag = (as->parms[10].items ? 1 : 0);
129     noConns = (as->parms[11].items ? 1 : 0);
130     showPeers = (as->parms[12].items ? 1 : 0);
131     showLong = (as->parms[13].items ? 1 : 0);
132
133     if (as->parms[0].items)
134         hostName = as->parms[0].items->data;
135     else
136         hostName = NULL;
137
138     if (as->parms[1].items)
139         portName = as->parms[1].items->data;
140     else
141         portName = NULL;
142
143     if (as->parms[7].items) {
144         char *name = as->parms[7].items->data;
145         if ((onlyPort = PortNumber(name)) == -1)
146             onlyPort = PortName(name);
147         if (onlyPort == -1) {
148             printf("rxdebug: can't resolve port name %s\n", name);
149             exit(1);
150         }
151     } else
152         onlyPort = -1;
153
154     if (as->parms[8].items) {
155         char *name = as->parms[8].items->data;
156         struct hostent *th;
157         th = hostutil_GetHostByName(name);
158         if (!th) {
159             printf("rxdebug: host %s not found in host table\n", name);
160             exit(1);
161         }
162         memcpy(&onlyHost, th->h_addr, sizeof(afs_int32));
163     } else
164         onlyHost = -1;
165
166     if (as->parms[9].items) {
167         char *name = as->parms[9].items->data;
168         if (strcmp(name, "clear") == 0)
169             onlyAuth = 0;
170         else if (strcmp(name, "auth") == 0)
171             onlyAuth = 1;
172         else if (strcmp(name, "crypt") == 0)
173             onlyAuth = 2;
174         else if ((strcmp(name, "null") == 0) || (strcmp(name, "none") == 0)
175                  || (strncmp(name, "noauth", 6) == 0)
176                  || (strncmp(name, "unauth", 6) == 0))
177             onlyAuth = -1;
178         else {
179             fprintf(stderr, "Unknown authentication level: %s\n", name);
180             exit(1);
181         }
182     } else
183         onlyAuth = 999;
184
185     /* lookup host */
186     if (hostName) {
187         th = hostutil_GetHostByName(hostName);
188         if (!th) {
189             printf("rxdebug: host %s not found in host table\n", hostName);
190             exit(1);
191         }
192         memcpy(&host, th->h_addr, sizeof(afs_int32));
193     } else
194         host = htonl(0x7f000001);       /* IP localhost */
195
196     if (!portName)
197         port = htons(7000);     /* default is fileserver */
198     else {
199         if ((port = PortNumber(portName)) == -1)
200             port = PortName(portName);
201         if (port == -1) {
202             printf("rxdebug: can't resolve port name %s\n", portName);
203             exit(1);
204         }
205     }
206
207     dallyCounter = 0;
208
209     hostAddr.s_addr = host;
210     afs_inet_ntoa_r(hostAddr.s_addr, hoststr);
211     printf("Trying %s (port %d):\n", hoststr, ntohs(port));
212     s = socket(AF_INET, SOCK_DGRAM, 0);
213     taddr.sin_family = AF_INET;
214     taddr.sin_port = 0;
215     taddr.sin_addr.s_addr = 0;
216 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
217     taddr.sin_len = sizeof(struct sockaddr_in);
218 #endif
219     code = bind(s, (struct sockaddr *)&taddr, sizeof(struct sockaddr_in));
220     if (code) {
221         perror("bind");
222         exit(1);
223     }
224
225     if (version_flag) {
226
227         code = rx_GetServerVersion(s, host, port, length, version);
228         if (code < 0) {
229             printf("get version call failed with code %d, errno %d\n", code,
230                    errno);
231             exit(1);
232         }
233         printf("AFS version: %s\n", version);
234         fflush(stdout);
235
236         exit(0);
237
238     }
239
240
241     code = rx_GetServerDebug(s, host, port, &tstats, &supportedDebugValues);
242     if (code < 0) {
243         printf("getstats call failed with code %d\n", code);
244         exit(1);
245     }
246
247     withSecStats = (supportedDebugValues & RX_SERVER_DEBUG_SEC_STATS);
248     withAllConn = (supportedDebugValues & RX_SERVER_DEBUG_ALL_CONN);
249     withRxStats = (supportedDebugValues & RX_SERVER_DEBUG_RX_STATS);
250     withWaiters = (supportedDebugValues & RX_SERVER_DEBUG_WAITER_CNT);
251     withIdleThreads = (supportedDebugValues & RX_SERVER_DEBUG_IDLE_THREADS);
252     withWaited = (supportedDebugValues & RX_SERVER_DEBUG_WAITED_CNT);
253     withPeers = (supportedDebugValues & RX_SERVER_DEBUG_ALL_PEER);
254     withPackets = (supportedDebugValues & RX_SERVER_DEBUG_PACKETS_CNT);
255
256     if (withPackets)
257         printf("Free packets: %d/%d, packet reclaims: %d, calls: %d, used FDs: %d\n",
258                tstats.nFreePackets, tstats.nPackets, tstats.packetReclaims, 
259                tstats.callsExecuted, tstats.usedFDs);
260     else
261         printf("Free packets: %d, packet reclaims: %d, calls: %d, used FDs: %d\n",
262                tstats.nFreePackets, tstats.packetReclaims, tstats.callsExecuted,
263                tstats.usedFDs);
264     if (!tstats.waitingForPackets)
265         printf("not ");
266     printf("waiting for packets.\n");
267     if (withWaiters)
268         printf("%d calls waiting for a thread\n", tstats.nWaiting);
269     if (withIdleThreads)
270         printf("%d threads are idle\n", tstats.idleThreads);
271     if (withWaited)
272         printf("%d calls have waited for a thread\n", tstats.nWaited);
273
274     if (rxstats) {
275         if (!withRxStats) {
276           noRxStats:
277             withRxStats = 0;
278             fprintf(stderr,
279                     "WARNING: Server doesn't support retrieval of Rx statistics\n");
280         } else {
281             struct rx_statistics rxstats;
282
283             /* should gracefully handle the case where rx_stats grows */
284             code =
285                 rx_GetServerStats(s, host, port, &rxstats,
286                                   &supportedStatValues);
287             if (code < 0) {
288                 printf("rxstats call failed with code %d\n", code);
289                 exit(1);
290             }
291             if (code != sizeof(rxstats)) {
292                 if ((((struct rx_debugIn *)(&rxstats))->type ==
293                      RX_DEBUGI_BADTYPE))
294                     goto noRxStats;
295                 printf
296                     ("WARNING: returned Rx statistics of unexpected size (got %d)\n",
297                      code);
298                 /* handle other versions?... */
299             }
300
301             rx_PrintTheseStats(stdout, &rxstats, sizeof(rxstats),
302                                tstats.nFreePackets, tstats.version);
303         }
304     }
305
306     if (!noConns) {
307         if (allconns) {
308             if (!withAllConn)
309                 fprintf(stderr,
310                         "WARNING: Server doesn't support retrieval of all connections,\n         getting only interesting instead.\n");
311         }
312
313         if (onlyServer)
314             printf("Showing only server connections\n");
315         if (onlyClient)
316             printf("Showing only client connections\n");
317         if (onlyAuth != 999) {
318             static char *name[] =
319                 { "unauthenticated", "rxkad_clear", "rxkad_auth",
320                 "rxkad_crypt"
321             };
322             printf("Showing only %s connections\n", name[onlyAuth + 1]);
323         }
324         if (onlyHost != -1) {
325             hostAddr.s_addr = onlyHost;
326             afs_inet_ntoa_r(hostAddr.s_addr, hoststr);
327             printf("Showing only connections from host %s\n",
328                    hoststr);
329         }
330         if (onlyPort != -1)
331             printf("Showing only connections on port %u\n", ntohs(onlyPort));
332
333         for (i = 0;; i++) {
334             code =
335                 rx_GetServerConnections(s, host, port, &nextconn, allconns,
336                                         supportedDebugValues, &tconn,
337                                         &supportedConnValues);
338             if (code < 0) {
339                 printf("getconn call failed with code %d\n", code);
340                 break;
341             }
342             if (tconn.cid == (afs_int32) 0xffffffff) {
343                 printf("Done.\n");
344                 break;
345             }
346
347             /* see if we're in nodally mode and all calls are dallying */
348             if (nodally) {
349                 flag = 0;
350                 for (j = 0; j < RX_MAXCALLS; j++) {
351                     if (tconn.callState[j] != RX_STATE_NOTINIT
352                         && tconn.callState[j] != RX_STATE_DALLY) {
353                         flag = 1;
354                         break;
355                     }
356                 }
357                 if (flag == 0) {
358                     /* this call looks too ordinary, bump skipped count and go
359                      * around again */
360                     dallyCounter++;
361                     continue;
362                 }
363             }
364             if ((onlyHost != -1) && (onlyHost != tconn.host))
365                 continue;
366             if ((onlyPort != -1) && (onlyPort != tconn.port))
367                 continue;
368             if (onlyServer && (tconn.type != RX_SERVER_CONNECTION))
369                 continue;
370             if (onlyClient && (tconn.type != RX_CLIENT_CONNECTION))
371                 continue;
372             if (onlyAuth != 999) {
373                 if (onlyAuth == -1) {
374                     if (tconn.securityIndex != 0)
375                         continue;
376                 } else {
377                     if (tconn.securityIndex != 2)
378                         continue;
379                     if (withSecStats && (tconn.secStats.type == 3)
380                         && (tconn.secStats.level != onlyAuth))
381                         continue;
382                 }
383             }
384
385             /* now display the connection */
386             hostAddr.s_addr = tconn.host;
387             afs_inet_ntoa_r(hostAddr.s_addr, hoststr);
388             printf("Connection from host %s, port %hu, ", hoststr,
389                    ntohs(tconn.port));
390             if (tconn.epoch)
391                 printf("Cuid %x/%x", tconn.epoch, tconn.cid);
392             else
393                 printf("cid %x", tconn.cid);
394             if (tconn.error)
395                 printf(", error %d", tconn.error);
396             printf("\n  serial %d, ", tconn.serial);
397             printf(" natMTU %d, ", tconn.natMTU);
398
399             if (tconn.flags) {
400                 printf("flags");
401                 if (tconn.flags & RX_CONN_MAKECALL_WAITING)
402                     printf(" MAKECALL_WAITING");
403                 if (tconn.flags & RX_CONN_DESTROY_ME)
404                     printf(" DESTROYED");
405                 if (tconn.flags & RX_CONN_USING_PACKET_CKSUM)
406                     printf(" pktCksum");
407                 if (tconn.flags & RX_CONN_KNOW_WINDOW)
408                     printf(" knowWindow");
409                 if (tconn.flags & RX_CONN_RESET)
410                     printf(" reset");
411                 if (tconn.flags & RX_CONN_BUSY)
412                     printf(" busy");
413                 if (tconn.flags & RX_CONN_ATTACHWAIT)
414                     printf(" attachWait");
415                 printf(", ");
416             }
417             printf("security index %d, ", tconn.securityIndex);
418             if (tconn.type == RX_CLIENT_CONNECTION)
419                 printf("client conn\n");
420             else
421                 printf("server conn\n");
422
423             if (withSecStats) {
424                 switch ((int)tconn.secStats.type) {
425                 case 0:
426                     if (tconn.securityIndex == 2)
427                         printf
428                             ("  no GetStats procedure for security object\n");
429                     break;
430                 case 1:
431                     printf("  rxnull level=%d, flags=%d\n",
432                            tconn.secStats.level, tconn.secStats.flags);
433                     break;
434                 case 2:
435                     printf("  rxvab level=%d, flags=%d\n",
436                            tconn.secStats.level, tconn.secStats.flags);
437                     break;
438                 case 3:{
439                         char *level;
440                         char flags = tconn.secStats.flags;
441                         if (tconn.secStats.level == 0)
442                             level = "clear";
443                         else if (tconn.secStats.level == 1)
444                             level = "auth";
445                         else if (tconn.secStats.level == 2)
446                             level = "crypt";
447                         else
448                             level = "unknown";
449                         printf("  rxkad: level %s", level);
450                         if (flags)
451                             printf(", flags");
452                         if (flags & 1)
453                             printf(" unalloc");
454                         if (flags & 2)
455                             printf(" authenticated");
456                         if (flags & 4)
457                             printf(" expired");
458                         if (flags & 8)
459                             printf(" pktCksum");
460                         if (tconn.secStats.expires)
461                             /* Apparently due to a bug in the RT compiler that
462                              * prevents (afs_uint32)0xffffffff => (double) from working,
463                              * this code produces negative lifetimes when run on the
464                              * RT. */
465                             printf(", expires in %.1f hours",
466                                    ((afs_uint32) tconn.secStats.expires -
467                                     time(0)) / 3600.0);
468                         if (!(flags & 1)) {
469                             printf("\n  Received %u bytes in %u packets\n",
470                                    tconn.secStats.bytesReceived,
471                                    tconn.secStats.packetsReceived);
472                             printf("  Sent %u bytes in %u packets\n",
473                                    tconn.secStats.bytesSent,
474                                    tconn.secStats.packetsSent);
475                         } else
476                             printf("\n");
477                         break;
478                     }
479
480                 default:
481                     printf("  unknown\n");
482                 }
483             }
484
485             for (j = 0; j < RX_MAXCALLS; j++) {
486                 printf("    call %d: # %d, state ", j, tconn.callNumber[j]);
487                 if (tconn.callState[j] == RX_STATE_NOTINIT) {
488                     printf("not initialized\n");
489                     continue;
490                 } else if (tconn.callState[j] == RX_STATE_PRECALL)
491                     printf("precall, ");
492                 else if (tconn.callState[j] == RX_STATE_ACTIVE)
493                     printf("active, ");
494                 else if (tconn.callState[j] == RX_STATE_DALLY)
495                     printf("dally, ");
496                 else if (tconn.callState[j] == RX_STATE_HOLD)
497                     printf("hold, ");
498                 printf("mode: ");
499                 if (tconn.callMode[j] == RX_MODE_SENDING)
500                     printf("sending");
501                 else if (tconn.callMode[j] == RX_MODE_RECEIVING)
502                     printf("receiving");
503                 else if (tconn.callMode[j] == RX_MODE_ERROR)
504                     printf("error");
505                 else if (tconn.callMode[j] == RX_MODE_EOF)
506                     printf("eof");
507                 else
508                     printf("unknown");
509                 if (tconn.callFlags[j]) {
510                     printf(", flags:");
511                     if (tconn.callFlags[j] & RX_CALL_READER_WAIT)
512                         printf(" reader_wait");
513                     if (tconn.callFlags[j] & RX_CALL_WAIT_WINDOW_ALLOC)
514                         printf(" window_alloc");
515                     if (tconn.callFlags[j] & RX_CALL_WAIT_WINDOW_SEND)
516                         printf(" window_send");
517                     if (tconn.callFlags[j] & RX_CALL_WAIT_PACKETS)
518                         printf(" wait_packets");
519                     if (tconn.callFlags[j] & RX_CALL_WAIT_PROC)
520                         printf(" waiting_for_process");
521                     if (tconn.callFlags[j] & RX_CALL_RECEIVE_DONE)
522                         printf(" receive_done");
523                     if (tconn.callFlags[j] & RX_CALL_CLEARED)
524                         printf(" call_cleared");
525                 }
526                 if (tconn.callOther[j] & RX_OTHER_IN)
527                     printf(", has_input_packets");
528                 if (tconn.callOther[j] & RX_OTHER_OUT)
529                     printf(", has_output_packets");
530                 printf("\n");
531             }
532         }
533         if (nodally)
534             printf("Skipped %d dallying connections.\n", dallyCounter);
535     }
536     if (showPeers && withPeers) {
537         for (i = 0;; i++) {
538             struct rx_debugPeer tpeer;
539             code =
540                 rx_GetServerPeers(s, host, port, &nextpeer, allconns, &tpeer,
541                                   &supportedPeerValues);
542             if (code < 0) {
543                 printf("getpeer call failed with code %d\n", code);
544                 break;
545             }
546             if (tpeer.host == 0xffffffff) {
547                 printf("Done.\n");
548                 break;
549             }
550
551             if ((onlyHost != -1) && (onlyHost != tpeer.host))
552                 continue;
553             if ((onlyPort != -1) && (onlyPort != tpeer.port))
554                 continue;
555
556             /* now display the peer */
557             hostAddr.s_addr = tpeer.host;
558             afs_inet_ntoa_r(hostAddr.s_addr, hoststr);
559             printf("Peer at host %s, port %hu\n", hoststr, 
560                    ntohs(tpeer.port));
561             printf("\tifMTU %hu\tnatMTU %hu\tmaxMTU %hu\n", tpeer.ifMTU,
562                    tpeer.natMTU, tpeer.maxMTU);
563             printf("\tpackets sent %u\tpacket resends %u\n", tpeer.nSent,
564                    tpeer.reSends);
565             printf("\tbytes sent high %u low %u\n", tpeer.bytesSent.high,
566                    tpeer.bytesSent.low);
567             printf("\tbytes received high %u low %u\n",
568                    tpeer.bytesReceived.high, tpeer.bytesReceived.low);
569             printf("\trtt %u msec, rtt_dev %u msec\n", tpeer.rtt >> 3,
570                    tpeer.rtt_dev >> 2);
571             printf("\ttimeout %u.%03u sec\n", tpeer.timeout.sec,
572                    tpeer.timeout.usec / 1000);
573             if (!showLong)
574                 continue;
575
576             printf("\tin/out packet skew: %d/%d\n", tpeer.inPacketSkew,
577                     tpeer.outPacketSkew);
578             printf("\tcongestion window %d, MTU %d\n", tpeer.cwind,
579                    tpeer.MTU);
580             printf("\tcurrent/if/max jumbogram size: %d/%d/%d\n",
581                    tpeer.nDgramPackets, tpeer.ifDgramPackets,
582                    tpeer.maxDgramPackets);
583         }
584     }
585     exit(0);
586 }
587
588 /* simple main program */
589 #ifndef AFS_NT40_ENV
590 #include "AFS_component_version_number.c"
591 #endif
592 int
593 main(int argc, char **argv)
594 {
595     struct cmd_syndesc *ts;
596
597 #ifdef RXDEBUG
598     rxi_DebugInit();
599 #endif
600 #ifdef AFS_NT40_ENV
601     if (afs_winsockInit() < 0) {
602         printf("%s: Couldn't initialize winsock. Exiting...\n", argv[0]);
603         return 1;
604     }
605 #endif
606
607     ts = cmd_CreateSyntax(NULL, MainCommand, NULL, "probe RX server");
608     cmd_AddParm(ts, "-servers", CMD_SINGLE, CMD_REQUIRED, "server machine");
609     cmd_AddParm(ts, "-port", CMD_SINGLE, CMD_OPTIONAL, "IP port");
610     cmd_AddParm(ts, "-nodally", CMD_FLAG, CMD_OPTIONAL,
611                 "don't show dallying conns");
612     cmd_AddParm(ts, "-allconnections", CMD_FLAG, CMD_OPTIONAL,
613                 "don't filter out uninteresting connections on server");
614     cmd_AddParm(ts, "-rxstats", CMD_FLAG, CMD_OPTIONAL, "show Rx statistics");
615     cmd_AddParm(ts, "-onlyserver", CMD_FLAG, CMD_OPTIONAL,
616                 "only show server conns");
617     cmd_AddParm(ts, "-onlyclient", CMD_FLAG, CMD_OPTIONAL,
618                 "only show client conns");
619     cmd_AddParm(ts, "-onlyport", CMD_SINGLE, CMD_OPTIONAL,
620                 "show only <port>");
621     cmd_AddParm(ts, "-onlyhost", CMD_SINGLE, CMD_OPTIONAL,
622                 "show only <host>");
623     cmd_AddParm(ts, "-onlyauth", CMD_SINGLE, CMD_OPTIONAL,
624                 "show only <auth level>");
625
626     cmd_AddParm(ts, "-version", CMD_FLAG, CMD_OPTIONAL,
627                 "show AFS version id");
628     cmd_AddParm(ts, "-noconns", CMD_FLAG, CMD_OPTIONAL,
629                 "show no connections");
630     cmd_AddParm(ts, "-peers", CMD_FLAG, CMD_OPTIONAL, "show peers");
631     cmd_AddParm(ts, "-long", CMD_FLAG, CMD_OPTIONAL, "detailed output");
632
633     cmd_Dispatch(argc, argv);
634     exit(0);
635 }