/* * Copyright 2000, International Business Machines Corporation and others. * All Rights Reserved. * * This software has been released under the terms of the IBM Public * License. For details, see the LICENSE file in the top-level source * directory or online at http://www.openafs.org/dl/license10.html */ #include #include #include #ifdef AFS_NT40_ENV #include #else #include #include #include #include #endif #include #include #include #include #include #include #define UBIK_INTERNALS #include "ubik.h" #include "ubik_int.h" extern struct hostent *hostutil_GetHostByName(); static short PortNumber(aport) register char *aport; { register int tc; register afs_int32 total; total = 0; while (tc = *aport++) { if (tc < '0' || tc > '9') return -1; /* bad port number */ total *= 10; total += tc - (int) '0'; } return(total); } static short PortName(aname) char *aname; { struct servent *ts; int len; ts = getservbyname(aname, (char *) 0); if (ts) return ntohs(ts->s_port); /* returns it in host byte order */ len = strlen(aname); if (strncmp(aname,"vlserver",len) == 0) { return 7003; } else if (strncmp(aname,"ptserver",len) == 0) { return 7002; } else if (strncmp(aname,"kaserver",len) == 0) { return 7004; } else if (strncmp(aname,"buserver",len) == 0) { return 7021; } return(-1); } static CommandProc(as, arock) char *arock; struct cmd_syndesc *as; { char *hostName, *portName, *times; afs_int32 hostAddr; struct in_addr inhostAddr; register afs_int32 i, j, code; short port; int int32p; afs_int32 now, diff, newtime; struct hostent *th; struct rx_connection *tconn; struct rx_securityClass *sc; struct ubik_debug udebug; struct ubik_sdebug usdebug; int oldServer =0; /* are we talking to a pre 3.5 server? */ afs_int32 isClone = 0; int32p = (as->parms[2].items ? 1 : 0); if (as->parms[0].items) hostName = as->parms[0].items->data; else hostName = (char *) 0; if (as->parms[1].items) portName = as->parms[1].items->data; else portName = (char *) 0; /* lookup host */ if (hostName) { th = hostutil_GetHostByName(hostName); if (!th) { printf("udebug: host %s not found in host table\n", hostName); exit(1); } bcopy(th->h_addr, &hostAddr, sizeof(afs_int32)); } else hostAddr = htonl(0x7f000001); /* IP localhost */ if (!portName) port = htons(3000); /* default */ else { port = PortNumber(portName); if (port < 0) port = PortName(portName); if (port < 0) { printf("udebug: can't resolve port name %s\n", portName); exit(1); } port = htons(port); } rx_Init(0); sc = (struct rx_securityClass *) rxnull_NewClientSecurityObject(); tconn = rx_NewConnection(hostAddr, port, VOTE_SERVICE_ID, sc, 0); /* now do the main call */ code = VOTE_XDebug(tconn, &udebug, &isClone); if (code) code = VOTE_Debug(tconn, &udebug); if ( code == RXGEN_OPCODE ) { oldServer = 1; /* talking to a pre 3.5 server */ memset(&udebug, 0, sizeof(udebug)); code = VOTE_DebugOld(tconn, &udebug); } if (code) { printf("return code %d from VOTE_Debug\n", code); exit(0); } now = time(0); /* now print the main info */ times = ctime((time_t *)&udebug.now); times[24] = 0; inhostAddr.s_addr = hostAddr; if ( !oldServer ) { printf("Host's addresses are: "); for ( j=0; udebug.interfaceAddr[j] && ( j= MAXSKEW) printf("****clock may be bad\n"); /* UBIK skips the voting if 1 server - so we fudge it here */ if (udebug.amSyncSite && (udebug.nServers == 1)) { udebug.lastYesHost = hostAddr; udebug.lastYesTime = udebug.now; udebug.lastYesState = 1; udebug.lastYesClaim = udebug.now; udebug.syncVersion.epoch = udebug.localVersion.epoch; udebug.syncVersion.counter = udebug.localVersion.counter; } /* sockaddr is always in net-order */ if (udebug.lastYesHost == 0xffffffff) { printf("Last yes vote not cast yet \n"); } else { inhostAddr.s_addr = htonl(udebug.lastYesHost); diff = udebug.now - udebug.lastYesTime; printf("Last yes vote for %s was %d secs ago (%ssync site); \n", inet_ntoa(inhostAddr), diff, ((udebug.lastYesState)?"":"not ")); diff = udebug.now - udebug.lastYesClaim; newtime = now - diff; times = ctime(&newtime); times[24] = 0; printf("Last vote started %d secs ago (at %s)\n", diff, times); } printf("Local db version is %d.%d\n", udebug.localVersion.epoch, udebug.localVersion.counter); if (udebug.amSyncSite) { if (udebug.syncSiteUntil == 0x7fffffff) { printf("I am sync site forever (%d server%s)\n", udebug.nServers, ((udebug.nServers>1)?"s":"")); } else { diff = udebug.syncSiteUntil - udebug.now; newtime = now + diff; times = ctime(&newtime); times[24] = 0; printf("I am sync site until %d secs from now (at %s) (%d server%s)\n", diff, times, udebug.nServers, ((udebug.nServers>1)?"s":"")); } printf("Recovery state %x\n", udebug.recoveryState); if (udebug.activeWrite) { printf("I am currently managing write trans %d.%d\n", udebug.epochTime, udebug.tidCounter); } } else { if (isClone) printf("I am a clone and never can become sync site\n"); else printf("I am not sync site\n"); inhostAddr.s_addr = htonl(udebug.lowestHost); diff = udebug.now - udebug.lowestTime; printf("Lowest host %s was set %d secs ago\n", inet_ntoa(inhostAddr), diff); inhostAddr.s_addr = htonl(udebug.syncHost); diff = udebug.now - udebug.syncTime; printf("Sync host %s was set %d secs ago\n", inet_ntoa(inhostAddr), diff); } printf("Sync site's db version is %d.%d\n", udebug.syncVersion.epoch, udebug.syncVersion.counter); printf("%d locked pages, %d of them for write\n", udebug.lockedPages, udebug.writeLockedPages); if (udebug.anyReadLocks) printf("There are read locks held\n"); if (udebug.anyWriteLocks) printf("There are write locks held\n"); if (udebug.currentTrans) { if (udebug.writeTrans) printf("There is an active write transaction\n"); else printf("There is at least one active read transaction\n"); printf("Transaction tid is %d.%d\n", udebug.syncTid.epoch, udebug.syncTid.counter); } if (udebug.epochTime) { diff = udebug.now - udebug.epochTime; newtime = now - diff; times = ctime(&newtime); times[24] = 0; printf("Last time a new db version was labelled was:\n\t %d secs ago (at %s)\n", diff, times); } if (int32p || udebug.amSyncSite) { /* now do the subcalls */ for(i=0;;i++) { isClone = 0; code = VOTE_XSDebug(tconn, i, &usdebug, &isClone); if (code < 0) { if ( oldServer ) { /* pre 3.5 server */ memset(&usdebug, 0, sizeof(usdebug)); code = VOTE_SDebugOld(tconn, i, &usdebug); } else code = VOTE_SDebug(tconn, i, &usdebug); } if (code > 0) break; /* done */ if (code < 0) { printf("error code %d from VOTE_SDebug\n", code); break; } inhostAddr.s_addr = htonl(usdebug.addr); /* otherwise print the structure */ printf("\nServer (%s", afs_inet_ntoa(htonl(usdebug.addr))); for ( j=0;((usdebug.altAddr[j]) && (j