2 * Copyright 2000, International Business Machines Corporation and others.
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
10 #include <afsconfig.h>
11 #include <afs/param.h>
16 #include <sys/types.h>
21 #include <sys/socket.h>
25 #ifdef HAVE_NETINET_IN_H
26 #include <netinet/in.h>
28 #ifdef HAVE_SYS_TIME_H
51 #include "rx_globals.h"
64 while (tc = *aport++) {
65 if (tc < '0' || tc > '9')
66 return -1; /* bad port number */
68 total += tc - (int)'0';
77 register struct servent *ts;
78 ts = getservbyname(aname, NULL);
81 return ts->s_port; /* returns it in network byte order */
85 MainCommand(as, arock)
87 struct cmd_syndesc *as;
92 struct sockaddr_in taddr;
94 struct in_addr hostAddr;
97 register afs_int32 code;
101 int onlyClient, onlyServer;
114 struct rx_debugStats tstats;
115 char *portName, *hostName;
117 struct rx_debugConn tconn;
122 afs_int32 length = 64;
124 afs_uint32 supportedDebugValues = 0;
125 afs_uint32 supportedStatValues = 0;
126 afs_uint32 supportedConnValues = 0;
127 afs_uint32 supportedPeerValues = 0;
128 afs_int32 nextconn = 0;
129 afs_int32 nextpeer = 0;
131 nodally = (as->parms[2].items ? 1 : 0);
132 allconns = (as->parms[3].items ? 1 : 0);
133 rxstats = (as->parms[4].items ? 1 : 0);
134 onlyServer = (as->parms[5].items ? 1 : 0);
135 onlyClient = (as->parms[6].items ? 1 : 0);
136 version_flag = (as->parms[10].items ? 1 : 0);
137 noConns = (as->parms[11].items ? 1 : 0);
138 showPeers = (as->parms[12].items ? 1 : 0);
140 if (as->parms[0].items)
141 hostName = as->parms[0].items->data;
145 if (as->parms[1].items)
146 portName = as->parms[1].items->data;
150 if (as->parms[7].items) {
151 char *name = as->parms[7].items->data;
152 if ((onlyPort = PortNumber(name)) == -1)
153 onlyPort = PortName(name);
154 if (onlyPort == -1) {
155 printf("rxdebug: can't resolve port name %s\n", name);
161 if (as->parms[8].items) {
162 char *name = as->parms[8].items->data;
164 th = hostutil_GetHostByName(name);
166 printf("rxdebug: host %s not found in host table\n", name);
169 memcpy(&onlyHost, th->h_addr, sizeof(afs_int32));
173 if (as->parms[9].items) {
174 char *name = as->parms[9].items->data;
175 if (strcmp(name, "clear") == 0)
177 else if (strcmp(name, "auth") == 0)
179 else if (strcmp(name, "crypt") == 0)
181 else if ((strcmp(name, "null") == 0) || (strcmp(name, "none") == 0)
182 || (strncmp(name, "noauth", 6) == 0)
183 || (strncmp(name, "unauth", 6) == 0))
186 fprintf(stderr, "Unknown authentication level: %s\n", name);
194 th = hostutil_GetHostByName(hostName);
196 printf("rxdebug: host %s not found in host table\n", hostName);
199 memcpy(&host, th->h_addr, sizeof(afs_int32));
201 host = htonl(0x7f000001); /* IP localhost */
204 port = htons(7000); /* default is fileserver */
206 if ((port = PortNumber(portName)) == -1)
207 port = PortName(portName);
209 printf("rxdebug: can't resolve port name %s\n", portName);
216 hostAddr.s_addr = host;
217 afs_inet_ntoa_r(hostAddr.s_addr, hoststr);
218 printf("Trying %s (port %d):\n", hoststr, ntohs(port));
219 s = socket(AF_INET, SOCK_DGRAM, 0);
220 taddr.sin_family = AF_INET;
222 taddr.sin_addr.s_addr = 0;
223 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
224 taddr.sin_len = sizeof(struct sockaddr_in);
226 code = bind(s, (struct sockaddr *)&taddr, sizeof(struct sockaddr_in));
234 code = rx_GetServerVersion(s, host, port, length, version);
236 printf("get version call failed with code %d, errno %d\n", code,
240 printf("AFS version: %s\n", version);
248 code = rx_GetServerDebug(s, host, port, &tstats, &supportedDebugValues);
250 printf("getstats call failed with code %d\n", code);
254 withSecStats = (supportedDebugValues & RX_SERVER_DEBUG_SEC_STATS);
255 withAllConn = (supportedDebugValues & RX_SERVER_DEBUG_ALL_CONN);
256 withRxStats = (supportedDebugValues & RX_SERVER_DEBUG_RX_STATS);
257 withWaiters = (supportedDebugValues & RX_SERVER_DEBUG_WAITER_CNT);
258 withIdleThreads = (supportedDebugValues & RX_SERVER_DEBUG_IDLE_THREADS);
259 withWaited = (supportedDebugValues & RX_SERVER_DEBUG_WAITED_CNT);
260 withPeers = (supportedDebugValues & RX_SERVER_DEBUG_ALL_PEER);
262 printf("Free packets: %d, packet reclaims: %d, calls: %d, used FDs: %d\n",
263 tstats.nFreePackets, tstats.packetReclaims, tstats.callsExecuted,
265 if (!tstats.waitingForPackets)
267 printf("waiting for packets.\n");
269 printf("%d calls waiting for a thread\n", tstats.nWaiting);
271 printf("%d threads are idle\n", tstats.idleThreads);
273 printf("%d calls have waited for a thread\n", tstats.nWaited);
280 "WARNING: Server doesn't support retrieval of Rx statistics\n");
282 struct rx_stats rxstats;
284 /* should gracefully handle the case where rx_stats grows */
286 rx_GetServerStats(s, host, port, &rxstats,
287 &supportedStatValues);
289 printf("rxstats call failed with code %d\n", code);
292 if (code != sizeof(rxstats)) {
293 if ((((struct rx_debugIn *)(&rxstats))->type ==
297 ("WARNING: returned Rx statistics of unexpected size (got %d)\n",
299 /* handle other versions?... */
302 rx_PrintTheseStats(stdout, &rxstats, sizeof(rxstats),
303 tstats.nFreePackets, tstats.version);
311 "WARNING: Server doesn't support retrieval of all connections,\n getting only interesting instead.\n");
315 printf("Showing only server connections\n");
317 printf("Showing only client connections\n");
318 if (onlyAuth != 999) {
319 static char *name[] =
320 { "unauthenticated", "rxkad_clear", "rxkad_auth",
323 printf("Showing only %s connections\n", name[onlyAuth + 1]);
325 if (onlyHost != -1) {
326 hostAddr.s_addr = onlyHost;
327 afs_inet_ntoa_r(hostAddr.s_addr, hoststr);
328 printf("Showing only connections from host %s\n",
332 printf("Showing only connections on port %u\n", ntohs(onlyPort));
336 rx_GetServerConnections(s, host, port, &nextconn, allconns,
337 supportedDebugValues, &tconn,
338 &supportedConnValues);
340 printf("getconn call failed with code %d\n", code);
343 if (tconn.cid == (afs_int32) 0xffffffff) {
348 /* see if we're in nodally mode and all calls are dallying */
351 for (j = 0; j < RX_MAXCALLS; j++) {
352 if (tconn.callState[j] != RX_STATE_NOTINIT
353 && tconn.callState[j] != RX_STATE_DALLY) {
359 /* this call looks too ordinary, bump skipped count and go
365 if ((onlyHost != -1) && (onlyHost != tconn.host))
367 if ((onlyPort != -1) && (onlyPort != tconn.port))
369 if (onlyServer && (tconn.type != RX_SERVER_CONNECTION))
371 if (onlyClient && (tconn.type != RX_CLIENT_CONNECTION))
373 if (onlyAuth != 999) {
374 if (onlyAuth == -1) {
375 if (tconn.securityIndex != 0)
378 if (tconn.securityIndex != 2)
380 if (withSecStats && (tconn.secStats.type == 3)
381 && (tconn.secStats.level != onlyAuth))
386 /* now display the connection */
387 hostAddr.s_addr = tconn.host;
388 afs_inet_ntoa_r(hostAddr.s_addr, hoststr);
389 printf("Connection from host %s, port %hu, ", hoststr,
392 printf("Cuid %x/%x", tconn.epoch, tconn.cid);
394 printf("cid %x", tconn.cid);
396 printf(", error %d", tconn.error);
397 printf("\n serial %d, ", tconn.serial);
398 printf(" natMTU %d, ", tconn.natMTU);
402 if (tconn.flags & RX_CONN_MAKECALL_WAITING)
403 printf(" MAKECALL_WAITING");
404 if (tconn.flags & RX_CONN_DESTROY_ME)
405 printf(" DESTROYED");
406 if (tconn.flags & RX_CONN_USING_PACKET_CKSUM)
410 printf("security index %d, ", tconn.securityIndex);
411 if (tconn.type == RX_CLIENT_CONNECTION)
412 printf("client conn\n");
414 printf("server conn\n");
417 switch ((int)tconn.secStats.type) {
419 if (tconn.securityIndex == 2)
421 (" no GetStats procedure for security object\n");
424 printf(" rxnull level=%d, flags=%d\n",
425 tconn.secStats.level, tconn.secStats.flags);
428 printf(" rxvab level=%d, flags=%d\n",
429 tconn.secStats.level, tconn.secStats.flags);
433 char flags = tconn.secStats.flags;
434 if (tconn.secStats.level == 0)
436 else if (tconn.secStats.level == 1)
438 else if (tconn.secStats.level == 2)
442 printf(" rxkad: level %s", level);
448 printf(" authenticated");
453 if (tconn.secStats.expires)
454 /* Apparently due to a bug in the RT compiler that
455 * prevents (afs_uint32)0xffffffff => (double) from working,
456 * this code produces negative lifetimes when run on the
458 printf(", expires in %.1f hours",
459 ((afs_uint32) tconn.secStats.expires -
462 printf("\n Received %u bytes in %u packets\n",
463 tconn.secStats.bytesReceived,
464 tconn.secStats.packetsReceived);
465 printf(" Sent %u bytes in %u packets\n",
466 tconn.secStats.bytesSent,
467 tconn.secStats.packetsSent);
474 printf(" unknown\n");
478 for (j = 0; j < RX_MAXCALLS; j++) {
479 printf(" call %d: # %d, state ", j, tconn.callNumber[j]);
480 if (tconn.callState[j] == RX_STATE_NOTINIT) {
481 printf("not initialized\n");
483 } else if (tconn.callState[j] == RX_STATE_PRECALL)
485 else if (tconn.callState[j] == RX_STATE_ACTIVE)
487 else if (tconn.callState[j] == RX_STATE_DALLY)
489 else if (tconn.callState[j] == RX_STATE_HOLD)
492 if (tconn.callMode[j] == RX_MODE_SENDING)
494 else if (tconn.callMode[j] == RX_MODE_RECEIVING)
496 else if (tconn.callMode[j] == RX_MODE_ERROR)
498 else if (tconn.callMode[j] == RX_MODE_EOF)
502 if (tconn.callFlags[j]) {
504 if (tconn.callFlags[j] & RX_CALL_READER_WAIT)
505 printf(" reader_wait");
506 if (tconn.callFlags[j] & RX_CALL_WAIT_WINDOW_ALLOC)
507 printf(" window_alloc");
508 if (tconn.callFlags[j] & RX_CALL_WAIT_WINDOW_SEND)
509 printf(" window_send");
510 if (tconn.callFlags[j] & RX_CALL_WAIT_PACKETS)
511 printf(" wait_packets");
512 if (tconn.callFlags[j] & RX_CALL_WAIT_PROC)
513 printf(" waiting_for_process");
514 if (tconn.callFlags[j] & RX_CALL_RECEIVE_DONE)
515 printf(" receive_done");
516 if (tconn.callFlags[j] & RX_CALL_CLEARED)
517 printf(" call_cleared");
519 if (tconn.callOther[j] & RX_OTHER_IN)
520 printf(", has_input_packets");
521 if (tconn.callOther[j] & RX_OTHER_OUT)
522 printf(", has_output_packets");
527 printf("Skipped %d dallying connections.\n", dallyCounter);
529 if (showPeers && withPeers) {
531 struct rx_debugPeer tpeer;
533 rx_GetServerPeers(s, host, port, &nextpeer, allconns, &tpeer,
534 &supportedPeerValues);
536 printf("getpeer call failed with code %d\n", code);
539 if (tpeer.host == 0xffffffff) {
544 if ((onlyHost != -1) && (onlyHost != tpeer.host))
546 if ((onlyPort != -1) && (onlyPort != tpeer.port))
549 /* now display the peer */
550 hostAddr.s_addr = tpeer.host;
551 afs_inet_ntoa_r(hostAddr.s_addr, hoststr);
552 printf("Peer at host %s, port %hu\n", hoststr,
554 printf("\tifMTU %hu\tnatMTU %hu\tmaxMTU %hu\n", tpeer.ifMTU,
555 tpeer.natMTU, tpeer.maxMTU);
556 printf("\tpackets sent %u\tpacket resends %u\n", tpeer.nSent,
558 printf("\tbytes sent high %u low %u\n", tpeer.bytesSent.high,
559 tpeer.bytesSent.low);
560 printf("\tbytes received high %u low %u\n",
561 tpeer.bytesReceived.high, tpeer.bytesReceived.low);
562 printf("\trtt %u msec, rtt_dev %u msec\n", tpeer.rtt >> 3,
564 printf("\ttimeout %u.%03u sec\n", tpeer.timeout.sec,
565 tpeer.timeout.usec / 1000);
571 /* simple main program */
573 #include "AFS_component_version_number.c"
580 struct cmd_syndesc *ts;
583 if (afs_winsockInit() < 0) {
584 printf("%s: Couldn't initialize winsock. Exiting...\n", argv[0]);
589 ts = cmd_CreateSyntax(NULL, MainCommand, 0, "probe RX server");
590 cmd_AddParm(ts, "-servers", CMD_SINGLE, CMD_REQUIRED, "server machine");
591 cmd_AddParm(ts, "-port", CMD_SINGLE, CMD_OPTIONAL, "IP port");
592 cmd_AddParm(ts, "-nodally", CMD_FLAG, CMD_OPTIONAL,
593 "don't show dallying conns");
594 cmd_AddParm(ts, "-allconnections", CMD_FLAG, CMD_OPTIONAL,
595 "don't filter out uninteresting connections on server");
596 cmd_AddParm(ts, "-rxstats", CMD_FLAG, CMD_OPTIONAL, "show Rx statistics");
597 cmd_AddParm(ts, "-onlyserver", CMD_FLAG, CMD_OPTIONAL,
598 "only show server conns");
599 cmd_AddParm(ts, "-onlyclient", CMD_FLAG, CMD_OPTIONAL,
600 "only show client conns");
601 cmd_AddParm(ts, "-onlyport", CMD_SINGLE, CMD_OPTIONAL,
603 cmd_AddParm(ts, "-onlyhost", CMD_SINGLE, CMD_OPTIONAL,
605 cmd_AddParm(ts, "-onlyauth", CMD_SINGLE, CMD_OPTIONAL,
606 "show only <auth level>");
608 cmd_AddParm(ts, "-version", CMD_FLAG, CMD_OPTIONAL,
609 "show AFS version id");
610 cmd_AddParm(ts, "-noconns", CMD_FLAG, CMD_OPTIONAL,
611 "show no connections");
612 cmd_AddParm(ts, "-peers", CMD_FLAG, CMD_OPTIONAL, "show peers");
614 cmd_Dispatch(argc, argv);