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
9 * Portions Copyright (c) 2006 Sine Nomine Associates
12 #include <afsconfig.h>
13 #include <afs/param.h>
27 #include <netinet/in.h>
32 #include <afs/assert.h>
35 #include <afs/afsint.h>
36 #include <afs/rxgen_consts.h>
38 #include <afs/errors.h>
39 #include <afs/ihandle.h>
40 #include <afs/vnode.h>
41 #include <afs/volume.h>
42 #ifdef AFS_ATHENA_STDENV
46 #include <afs/ptclient.h>
47 #include <afs/ptuser.h>
48 #include <afs/prs_fs.h>
50 #include <afs/afsutil.h>
51 #include <afs/com_err.h>
53 #include <afs/cellconfig.h>
55 #include "viced_prototypes.h"
59 #ifdef AFS_DEMAND_ATTACH_FS
60 #include "../util/afsutil_prototypes.h"
61 #include "../tviced/serialize_state.h"
62 #endif /* AFS_DEMAND_ATTACH_FS */
64 #ifdef AFS_PTHREAD_ENV
65 pthread_mutex_t host_glock_mutex;
66 #endif /* AFS_PTHREAD_ENV */
69 extern int CurrentConnections;
71 extern int AnonymousID;
72 extern prlist AnonCPS;
74 extern struct afsconf_dir *confDir; /* config dir object */
75 extern int lwps; /* the max number of server threads */
76 extern afsUUID FS_HostUUID;
79 int CEs = 0; /* active clients */
80 int CEBlocks = 0; /* number of blocks of CEs */
81 struct client *CEFree = 0; /* first free client */
82 struct host *hostList = 0; /* linked list of all hosts */
83 int hostCount = 0; /* number of hosts in hostList */
87 static struct rx_securityClass *sc = NULL;
89 static void h_SetupCallbackConn_r(struct host * host);
91 #define CESPERBLOCK 73
92 struct CEBlock { /* block of CESPERBLOCK file entries */
93 struct client entry[CESPERBLOCK];
96 static void h_TossStuff_r(register struct host *host);
99 * Make sure the subnet macros have been defined.
102 #define IN_SUBNETA(i) ((((afs_int32)(i))&0x80800000)==0x00800000)
105 #ifndef IN_CLASSA_SUBNET
106 #define IN_CLASSA_SUBNET 0xffff0000
110 #define IN_SUBNETB(i) ((((afs_int32)(i))&0xc0008000)==0x80008000)
113 #ifndef IN_CLASSB_SUBNET
114 #define IN_CLASSB_SUBNET 0xffffff00
118 /* get a new block of CEs and chain it on CEFree */
122 register struct CEBlock *block;
125 block = (struct CEBlock *)malloc(sizeof(struct CEBlock));
127 ViceLog(0, ("Failed malloc in GetCEBlock\n"));
128 ShutDownAndCore(PANIC);
131 for (i = 0; i < (CESPERBLOCK - 1); i++) {
132 Lock_Init(&block->entry[i].lock);
133 block->entry[i].next = &(block->entry[i + 1]);
135 block->entry[CESPERBLOCK - 1].next = 0;
136 Lock_Init(&block->entry[CESPERBLOCK - 1].lock);
137 CEFree = (struct client *)block;
143 /* get the next available CE */
144 static struct client *
147 register struct client *entry;
152 ViceLog(0, ("CEFree NULL in GetCE\n"));
153 ShutDownAndCore(PANIC);
157 CEFree = entry->next;
159 memset((char *)entry, 0, CLIENT_TO_ZERO(entry));
165 /* return an entry to the free list */
167 FreeCE(register struct client *entry)
169 entry->VenusEpoch = 0;
171 entry->next = CEFree;
178 * The HTs and HTBlocks variables were formerly static, but they are
179 * now referenced elsewhere in the FileServer.
181 int HTs = 0; /* active file entries */
182 int HTBlocks = 0; /* number of blocks of HTs */
183 static struct host *HTFree = 0; /* first free file entry */
186 * Hash tables of host pointers. We need two tables, one
187 * to map IP addresses onto host pointers, and another
188 * to map host UUIDs onto host pointers.
190 static struct h_AddrHashChain *hostAddrHashTable[h_HASHENTRIES];
191 static struct h_UuidHashChain *hostUuidHashTable[h_HASHENTRIES];
192 #define h_HashIndex(hostip) ((hostip) & (h_HASHENTRIES-1))
193 #define h_UuidHashIndex(uuidp) (((int)(afs_uuid_hash(uuidp))) & (h_HASHENTRIES-1))
195 struct HTBlock { /* block of HTSPERBLOCK file entries */
196 struct host entry[h_HTSPERBLOCK];
200 /* get a new block of HTs and chain it on HTFree */
204 register struct HTBlock *block;
206 static int index = 0;
208 if (HTBlocks == h_MAXHOSTTABLES) {
209 ViceLog(0, ("h_MAXHOSTTABLES reached\n"));
210 ShutDownAndCore(PANIC);
213 block = (struct HTBlock *)malloc(sizeof(struct HTBlock));
215 ViceLog(0, ("Failed malloc in GetHTBlock\n"));
216 ShutDownAndCore(PANIC);
218 #ifdef AFS_PTHREAD_ENV
219 for (i = 0; i < (h_HTSPERBLOCK); i++)
220 assert(pthread_cond_init(&block->entry[i].cond, NULL) == 0);
221 #endif /* AFS_PTHREAD_ENV */
222 for (i = 0; i < (h_HTSPERBLOCK); i++)
223 Lock_Init(&block->entry[i].lock);
224 for (i = 0; i < (h_HTSPERBLOCK - 1); i++)
225 block->entry[i].next = &(block->entry[i + 1]);
226 for (i = 0; i < (h_HTSPERBLOCK); i++)
227 block->entry[i].index = index++;
228 block->entry[h_HTSPERBLOCK - 1].next = 0;
229 HTFree = (struct host *)block;
230 hosttableptrs[HTBlocks++] = block->entry;
235 /* get the next available HT */
239 register struct host *entry;
243 assert(HTFree != NULL);
245 HTFree = entry->next;
247 memset((char *)entry, 0, HOST_TO_ZERO(entry));
253 /* return an entry to the free list */
255 FreeHT(register struct host *entry)
257 entry->next = HTFree;
264 hpr_Initialize(struct ubik_client **uclient)
267 struct rx_connection *serverconns[MAXSERVERS];
268 struct rx_securityClass *sc[3];
269 struct afsconf_dir *tdir;
270 char tconfDir[100] = "";
272 struct ktc_token ttoken;
274 struct afsconf_cell info;
278 tdir = afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH);
280 ViceLog(0, ("hpr_Initialize: Could not open configuration directory: %s", AFSDIR_SERVER_ETC_DIRPATH));
284 code = afsconf_GetLocalCell(tdir, cellstr, sizeof(cellstr));
286 ViceLog(0, ("hpr_Initialize: Could not get local cell. [%d]", code));
291 code = afsconf_GetCellInfo(tdir, cellstr, "afsprot", &info);
293 ViceLog(0, ("hpr_Initialize: Could not locate cell %s in %s/%s", cellstr, confDir, AFSDIR_CELLSERVDB_FILE));
300 ViceLog(0, ("hpr_Initialize: Could not initialize rx."));
309 /* Most callers use secLevel==1, however, the fileserver uses secLevel==2
310 * to force use of the KeyFile. secLevel == 0 implies -noauth was
312 if ((afsconf_GetLatestKey(tdir, 0, 0) == 0)) {
313 code = afsconf_ClientAuthSecure(tdir, &sc[2], &scIndex);
315 ViceLog(0, ("hpr_Initialize: clientauthsecure returns %d %s (so trying noauth)", code, afs_error_message(code)));
317 scIndex = 0; /* use noauth */
319 /* if there was a problem, an unauthenticated conn is returned */
322 struct ktc_principal sname;
323 strcpy(sname.cell, info.name);
324 sname.instance[0] = 0;
325 strcpy(sname.name, "afs");
326 code = ktc_GetToken(&sname, &ttoken, sizeof(ttoken), NULL);
330 if (ttoken.kvno >= 0 && ttoken.kvno <= 256)
331 /* this is a kerberos ticket, set scIndex accordingly */
334 ViceLog(0, ("hpr_Initialize: funny kvno (%d) in ticket, proceeding", ttoken.kvno));
338 rxkad_NewClientSecurityObject(rxkad_clear, &ttoken.sessionKey,
339 ttoken.kvno, ttoken.ticketLen,
343 if ((scIndex == 0) && (sc[0] == 0))
344 sc[0] = rxnull_NewClientSecurityObject();
346 ViceLog(0, ("hpr_Initialize: Could not get afs tokens, running unauthenticated. [%d]", code));
348 memset(serverconns, 0, sizeof(serverconns)); /* terminate list!!! */
349 for (i = 0; i < info.numServers; i++) {
351 rx_NewConnection(info.hostAddr[i].sin_addr.s_addr,
352 info.hostAddr[i].sin_port, PRSRV, sc[scIndex],
356 code = ubik_ClientInit(serverconns, uclient);
358 ViceLog(0, ("hpr_Initialize: ubik client init failed. [%d]", code));
361 code = rxs_Release(sc[scIndex]);
366 hpr_End(struct ubik_client *uclient)
371 code = ubik_ClientDestroy(uclient);
377 hpr_GetHostCPS(afs_int32 host, prlist *CPS)
379 #ifdef AFS_PTHREAD_ENV
380 register afs_int32 code;
382 struct ubik_client *uclient =
383 (struct ubik_client *)pthread_getspecific(viced_uclient_key);
386 code = hpr_Initialize(&uclient);
387 assert(pthread_setspecific(viced_uclient_key, (void *)uclient) == 0);
391 code = ubik_PR_GetHostCPS(uclient, 0, host, CPS, &over);
392 if (code != PRSUCCESS)
395 /* do something about this, probably make a new call */
396 /* don't forget there's a hard limit in the interface */
398 "membership list for host id %d exceeds display limit\n",
403 return pr_GetHostCPS(host, CPS);
408 hpr_NameToId(namelist *names, idlist *ids)
410 #ifdef AFS_PTHREAD_ENV
411 register afs_int32 code;
412 register afs_int32 i;
413 struct ubik_client *uclient =
414 (struct ubik_client *)pthread_getspecific(viced_uclient_key);
417 code = hpr_Initialize(&uclient);
418 assert(pthread_setspecific(viced_uclient_key, (void *)uclient) == 0);
421 for (i = 0; i < names->namelist_len; i++)
422 stolower(names->namelist_val[i]);
423 code = ubik_PR_NameToID(uclient, 0, names, ids);
426 return pr_NameToId(names, ids);
431 hpr_IdToName(idlist *ids, namelist *names)
433 #ifdef AFS_PTHREAD_ENV
434 register afs_int32 code;
435 struct ubik_client *uclient =
436 (struct ubik_client *)pthread_getspecific(viced_uclient_key);
439 code = hpr_Initialize(&uclient);
440 assert(pthread_setspecific(viced_uclient_key, (void *)uclient) == 0);
443 code = ubik_PR_IDToName(uclient, 0, ids, names);
446 return pr_IdToName(ids, names);
451 hpr_GetCPS(afs_int32 id, prlist *CPS)
453 #ifdef AFS_PTHREAD_ENV
454 register afs_int32 code;
456 struct ubik_client *uclient =
457 (struct ubik_client *)pthread_getspecific(viced_uclient_key);
460 code = hpr_Initialize(&uclient);
461 assert(pthread_setspecific(viced_uclient_key, (void *)uclient) == 0);
465 code = ubik_PR_GetCPS(uclient, 0, id, CPS, &over);
466 if (code != PRSUCCESS)
469 /* do something about this, probably make a new call */
470 /* don't forget there's a hard limit in the interface */
471 fprintf(stderr, "membership list for id %d exceeds display limit\n",
476 return pr_GetCPS(id, CPS);
480 static short consolePort = 0;
483 h_Release(register struct host *host)
492 * If this thread does not have a hold on this host AND
493 * if other threads also dont have any holds on this host AND
494 * If either the HOSTDELETED or CLIENTDELETED flags are set
498 h_Release_r(register struct host *host)
501 if (!((host)->holds[h_holdSlot()] & ~h_holdbit())) {
502 if (!h_OtherHolds_r(host)) {
503 /* must avoid masking this until after h_OtherHolds_r runs
504 * but it should be run before h_TossStuff_r */
505 (host)->holds[h_holdSlot()] &= ~h_holdbit();
506 if ((host->hostFlags & HOSTDELETED)
507 || (host->hostFlags & CLIENTDELETED)) {
511 (host)->holds[h_holdSlot()] &= ~h_holdbit();
513 (host)->holds[h_holdSlot()] &= ~h_holdbit();
519 h_OtherHolds_r(register struct host *host)
521 register int i, bit, slot;
524 for (i = 0; i < h_maxSlots; i++) {
525 if (host->holds[i] != ((i == slot) ? bit : 0)) {
533 h_Lock_r(register struct host *host)
543 * returns 1 if already locked
544 * else returns locks and returns 0
548 h_NBLock_r(register struct host *host)
550 struct Lock *hostLock = &host->lock;
555 if (!(hostLock->excl_locked) && !(hostLock->readers_reading))
556 hostLock->excl_locked = WRITE_LOCK;
560 LOCK_UNLOCK(hostLock);
569 #if FS_STATS_DETAILED
570 /*------------------------------------------------------------------------
571 * PRIVATE h_AddrInSameNetwork
574 * Given a target IP address and a candidate IP address (both
575 * in host byte order), return a non-zero value (1) if the
576 * candidate address is in a different network from the target
580 * a_targetAddr : Target address.
581 * a_candAddr : Candidate address.
584 * 1 if the candidate address is in the same net as the target,
588 * The target and candidate addresses are both in host byte
589 * order, NOT network byte order, when passed in. We return
590 * our value as a character, since that's the type of field in
591 * the host structure, where this info will be stored.
595 *------------------------------------------------------------------------*/
598 h_AddrInSameNetwork(afs_uint32 a_targetAddr, afs_uint32 a_candAddr)
599 { /*h_AddrInSameNetwork */
601 afs_uint32 targetNet;
605 * Pull out the network and subnetwork numbers from the target
606 * and candidate addresses. We can short-circuit this whole
607 * affair if the target and candidate addresses are not of the
610 if (IN_CLASSA(a_targetAddr)) {
611 if (!(IN_CLASSA(a_candAddr))) {
614 targetNet = a_targetAddr & IN_CLASSA_NET;
615 candNet = a_candAddr & IN_CLASSA_NET;
616 } else if (IN_CLASSB(a_targetAddr)) {
617 if (!(IN_CLASSB(a_candAddr))) {
620 targetNet = a_targetAddr & IN_CLASSB_NET;
621 candNet = a_candAddr & IN_CLASSB_NET;
622 } /*Class B target */
623 else if (IN_CLASSC(a_targetAddr)) {
624 if (!(IN_CLASSC(a_candAddr))) {
627 targetNet = a_targetAddr & IN_CLASSC_NET;
628 candNet = a_candAddr & IN_CLASSC_NET;
629 } /*Class C target */
631 targetNet = a_targetAddr;
632 candNet = a_candAddr;
633 } /*Class D address */
636 * Now, simply compare the extracted net values for the two addresses
637 * (which at this point are known to be of the same class)
639 if (targetNet == candNet)
644 } /*h_AddrInSameNetwork */
645 #endif /* FS_STATS_DETAILED */
648 /* Assumptions: called with held host */
650 h_gethostcps_r(register struct host *host, register afs_int32 now)
655 /* wait if somebody else is already doing the getCPS call */
656 while (host->hostFlags & HCPS_INPROGRESS) {
657 slept = 1; /* I did sleep */
658 host->hostFlags |= HCPS_WAITING; /* I am sleeping now */
659 #ifdef AFS_PTHREAD_ENV
660 pthread_cond_wait(&host->cond, &host_glock_mutex);
661 #else /* AFS_PTHREAD_ENV */
662 if ((code = LWP_WaitProcess(&(host->hostFlags))) != LWP_SUCCESS)
663 ViceLog(0, ("LWP_WaitProcess returned %d\n", code));
664 #endif /* AFS_PTHREAD_ENV */
668 host->hostFlags |= HCPS_INPROGRESS; /* mark as CPSCall in progress */
669 if (host->hcps.prlist_val)
670 free(host->hcps.prlist_val); /* this is for hostaclRefresh */
671 host->hcps.prlist_val = NULL;
672 host->hcps.prlist_len = 0;
673 host->cpsCall = slept ? (FT_ApproxTime()) : (now);
676 code = hpr_GetHostCPS(ntohl(host->host), &host->hcps);
681 * Although ubik_Call (called by pr_GetHostCPS) traverses thru all protection servers
682 * and reevaluates things if no sync server or quorum is found we could still end up
683 * with one of these errors. In such case we would like to reevaluate the rpc call to
684 * find if there's cps for this guy. We treat other errors (except network failures
685 * ones - i.e. code < 0) as an indication that there is no CPS for this host. Ideally
686 * we could like to deal this problem the other way around (i.e. if code == NOCPS
687 * ignore else retry next time) but the problem is that there're other errors (i.e.
688 * EPERM) for which we don't want to retry and we don't know the whole code list!
690 if (code < 0 || code == UNOQUORUM || code == UNOTSYNC) {
692 * We would have preferred to use a while loop and try again since ops in protected
693 * acls for this host will fail now but they'll be reevaluated on any subsequent
694 * call. The attempt to wait for a quorum/sync site or network error won't work
695 * since this problems really should only occurs during a complete fileserver
696 * restart. Since the fileserver will start before the ptservers (and thus before
697 * quorums are complete) clients will be utilizing all the fileserver's lwps!!
699 host->hcpsfailed = 1;
701 ("Warning: GetHostCPS failed (%d) for %x (%s:%d); will retry\n",
702 code, host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
704 host->hcpsfailed = 0;
706 ("gethost: GetHostCPS failed (%d) for %x (%s:%d); ignored\n",
707 code, host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
709 if (host->hcps.prlist_val)
710 free(host->hcps.prlist_val);
711 host->hcps.prlist_val = NULL;
712 host->hcps.prlist_len = 0; /* Make sure it's zero */
714 host->hcpsfailed = 0;
716 host->hostFlags &= ~HCPS_INPROGRESS;
717 /* signal all who are waiting */
718 if (host->hostFlags & HCPS_WAITING) { /* somebody is waiting */
719 host->hostFlags &= ~HCPS_WAITING;
720 #ifdef AFS_PTHREAD_ENV
721 assert(pthread_cond_broadcast(&host->cond) == 0);
722 #else /* AFS_PTHREAD_ENV */
723 if ((code = LWP_NoYieldSignal(&(host->hostFlags))) != LWP_SUCCESS)
724 ViceLog(0, ("LWP_NoYieldSignal returns %d\n", code));
725 #endif /* AFS_PTHREAD_ENV */
729 /* args in net byte order */
731 h_flushhostcps(register afs_uint32 hostaddr, register afs_uint16 hport)
733 register struct host *host;
737 host = h_Lookup_r(hostaddr, hport, &held);
739 host->hcpsfailed = 1;
749 * Allocate a host. It will be identified by the peer (ip,port) info in the
750 * rx connection provided. The host is returned held and locked
752 #define DEF_ROPCONS 2115
755 h_Alloc_r(register struct rx_connection *r_con)
757 struct servent *serverentry;
760 #if FS_STATS_DETAILED
761 afs_uint32 newHostAddr_HBO; /*New host IP addr, in host byte order */
762 #endif /* FS_STATS_DETAILED */
766 host->host = rxr_HostOf(r_con);
767 host->port = rxr_PortOf(r_con);
769 h_AddHostToAddrHashTable_r(host->host, host->port, host);
771 if (consolePort == 0) { /* find the portal number for console */
772 #if defined(AFS_OSF_ENV)
773 serverentry = getservbyname("ropcons", "");
775 serverentry = getservbyname("ropcons", 0);
778 consolePort = serverentry->s_port;
780 consolePort = htons(DEF_ROPCONS); /* Use a default */
782 if (host->port == consolePort)
784 /* Make a callback channel even for the console, on the off chance that it
785 * makes a request that causes a break call back. It shouldn't. */
786 h_SetupCallbackConn_r(host);
787 now = host->LastCall = host->cpsCall = host->ActiveCall = FT_ApproxTime();
789 host->hcps.prlist_val = NULL;
790 host->hcps.prlist_len = 0;
791 host->interface = NULL;
793 host->hcpsfailed = 0; /* save cycles */
794 h_gethostcps(host); /* do this under host hold/lock */
796 host->FirstClient = NULL;
799 h_InsertList_r(host); /* update global host List */
800 #if FS_STATS_DETAILED
802 * Compare the new host's IP address (in host byte order) with ours
803 * (the File Server's), remembering if they are in the same network.
805 newHostAddr_HBO = (afs_uint32) ntohl(host->host);
806 host->InSameNetwork =
807 h_AddrInSameNetwork(FS_HostAddr_HBO, newHostAddr_HBO);
808 #endif /* FS_STATS_DETAILED */
815 /* Make a callback channel even for the console, on the off chance that it
816 * makes a request that causes a break call back. It shouldn't. */
818 h_SetupCallbackConn_r(struct host * host)
821 sc = rxnull_NewClientSecurityObject();
822 host->callback_rxcon =
823 rx_NewConnection(host->host, host->port, 1, sc, 0);
824 rx_SetConnDeadTime(host->callback_rxcon, 50);
825 rx_SetConnHardDeadTime(host->callback_rxcon, AFS_HARDDEADTIME);
828 /* Lookup a host given an IP address and UDP port number. */
829 /* hostaddr and hport are in network order */
830 /* Note: host should be released by caller if 0 == *heldp and non-null */
831 /* hostaddr and hport are in network order */
833 h_Lookup_r(afs_uint32 haddr, afs_uint16 hport, int *heldp)
836 struct host *host = NULL;
837 struct h_AddrHashChain *chain;
838 int index = h_HashIndex(haddr);
839 extern int hostaclRefresh;
842 for (chain = hostAddrHashTable[index]; chain; chain = chain->next) {
843 host = chain->hostPtr;
845 if (!(host->hostFlags & HOSTDELETED) && chain->addr == haddr
846 && chain->port == hport) {
847 *heldp = h_Held_r(host);
851 if (host->hostFlags & HOSTDELETED) {
858 now = FT_ApproxTime(); /* always evaluate "now" */
859 if (host->hcpsfailed || (host->cpsCall + hostaclRefresh < now)) {
861 * Every hostaclRefresh period (def 2 hrs) get the new
862 * membership list for the host. Note this could be the
863 * first time that the host is added to a group. Also
864 * here we also retry on previous legitimate hcps failures.
866 * If we get here we still have a host hold.
868 h_gethostcps_r(host, now);
878 /* Lookup a host given its UUID. */
880 h_LookupUuid_r(afsUUID * uuidp)
882 struct host *host = 0;
883 struct h_UuidHashChain *chain;
884 int index = h_UuidHashIndex(uuidp);
886 for (chain = hostUuidHashTable[index]; chain; chain = chain->next) {
887 host = chain->hostPtr;
889 if (!(host->hostFlags & HOSTDELETED) && host->interface
890 && afs_uuid_equal(&host->interface->uuid, uuidp)) {
901 * h_Hold_r: Establish a hold by the current LWP on this host--the host
902 * or its clients will not be physically deleted until all holds have
904 * NOTE: h_Hold_r is a macro defined in host.h.
907 /* h_TossStuff_r: Toss anything in the host structure (the host or
908 * clients marked for deletion. Called from h_Release_r ONLY.
909 * To be called, there must be no holds, and either host->deleted
910 * or host->clientDeleted must be set.
913 h_TossStuff_r(register struct host *host)
915 register struct client **cp, *client;
918 /* if somebody still has this host held */
919 for (i = 0; (i < h_maxSlots) && (!(host)->holds[i]); i++);
923 /* if somebody still has this host locked */
924 if (h_NBLock_r(host) != 0) {
927 ("Warning: h_TossStuff_r failed; Host %x (%s:%d) was locked.\n",
928 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
934 /* ASSUMPTION: rxi_FreeConnection() does not yield */
935 for (cp = &host->FirstClient; (client = *cp);) {
936 if ((host->hostFlags & HOSTDELETED) || client->deleted) {
938 ObtainWriteLockNoBlock(&client->lock, code);
942 ("Warning: h_TossStuff_r failed: Host %x (%s:%d) client %x was locked.\n",
943 host, afs_inet_ntoa_r(host->host, hoststr),
944 ntohs(host->port), client));
948 if (client->refCount) {
951 ("Warning: h_TossStuff_r failed: Host %x (%s:%d) client %x refcount %d.\n",
952 host, afs_inet_ntoa_r(host->host, hoststr),
953 ntohs(host->port), client, client->refCount));
954 /* This is the same thing we do if the host is locked */
955 ReleaseWriteLock(&client->lock);
958 client->CPS.prlist_len = 0;
959 if ((client->ViceId != ANONYMOUSID) && client->CPS.prlist_val)
960 free(client->CPS.prlist_val);
961 client->CPS.prlist_val = NULL;
962 CurrentConnections--;
964 ReleaseWriteLock(&client->lock);
970 /* We've just cleaned out all the deleted clients; clear the flag */
971 host->hostFlags &= ~CLIENTDELETED;
973 if (host->hostFlags & HOSTDELETED) {
974 register struct h_AddrHashChain **ahp, *ath;
975 register struct rx_connection *rxconn;
977 struct AddrPort hostAddrPort;
980 if (host->Console & 1)
982 if ((rxconn = host->callback_rxcon)) {
983 host->callback_rxcon = (struct rx_connection *)0;
984 rx_DestroyConnection(rxconn);
986 if (host->hcps.prlist_val)
987 free(host->hcps.prlist_val);
988 host->hcps.prlist_val = NULL;
989 host->hcps.prlist_len = 0;
990 DeleteAllCallBacks_r(host, 1);
991 host->hostFlags &= ~RESETDONE; /* just to be safe */
993 /* if alternate addresses do not exist */
994 if (!(host->interface)) {
995 for (ahp = &hostAddrHashTable[h_HashIndex(host->host)]; (ath = *ahp);
997 assert(ath->hostPtr);
998 if (ath->hostPtr == host) {
1005 register struct h_UuidHashChain **uhp, *uth;
1006 /* delete the hash entry for the UUID */
1007 uuidp = &host->interface->uuid;
1008 for (uhp = &hostUuidHashTable[h_UuidHashIndex(uuidp)]; (uth = *uhp);
1010 assert(uth->hostPtr);
1011 if (uth->hostPtr == host) {
1017 /* delete the hash entry for each alternate addresses */
1018 for (i = 0; i < host->interface->numberOfInterfaces; i++) {
1019 hostAddrPort = host->interface->interface[i];
1021 if (!hostAddrPort.valid)
1024 for (ahp = &hostAddrHashTable[h_HashIndex(hostAddrPort.addr)]; (ath = *ahp);
1026 assert(ath->hostPtr);
1027 if (ath->hostPtr == host) {
1034 free(host->interface);
1035 host->interface = NULL;
1036 } /* if alternate address exists */
1038 h_DeleteList_r(host); /* remove host from global host List */
1041 } /*h_TossStuff_r */
1044 /* h_Enumerate: Calls (*proc)(host, held, param) for at least each host in the
1045 * system at the start of the enumeration (perhaps more). Hosts may be deleted
1046 * (have delete flag set); ditto for clients. (*proc) is always called with
1047 * host h_held(). The hold state of the host with respect to this lwp is passed
1048 * to (*proc) as the param held. The proc should return 0 if the host should be
1049 * released, 1 if it should be held after enumeration.
1052 h_Enumerate(int (*proc) (), char *param)
1054 register struct host *host, **list;
1056 register int i, count;
1059 if (hostCount == 0) {
1063 list = (struct host **)malloc(hostCount * sizeof(struct host *));
1065 ViceLog(0, ("Failed malloc in h_Enumerate\n"));
1068 held = (int *)malloc(hostCount * sizeof(int));
1070 ViceLog(0, ("Failed malloc in h_Enumerate\n"));
1073 for (count = 0, host = hostList; host; host = host->next, count++) {
1075 if (!(held[count] = h_Held_r(host)))
1078 assert(count == hostCount);
1080 for (i = 0; i < count; i++) {
1081 held[i] = (*proc) (list[i], held[i], param);
1082 if (!H_ENUMERATE_ISSET_HELD(held[i]))
1083 h_Release(list[i]); /* this might free up the host */
1084 /* bail out of the enumeration early */
1085 if (H_ENUMERATE_ISSET_BAIL(held[i]))
1092 /* h_Enumerate_r (revised):
1093 * Calls (*proc)(host, held, param) for each host in hostList, starting
1095 * Hosts may be deleted (have delete flag set); ditto for clients.
1096 * (*proc) is always called with
1097 * host h_held() and the global host lock (H_LOCK) locked.The hold state of the
1098 * host with respect to this lwp is passed to (*proc) as the param held.
1099 * The proc should return 0 if the host should be released, 1 if it should
1100 * be held after enumeration.
1103 h_Enumerate_r(int (*proc) (), struct host *enumstart, char *param)
1105 register struct host *host, *next;
1106 register int held, nheld;
1108 if (hostCount == 0) {
1111 if (enumstart && !(held = h_Held_r(enumstart)))
1112 h_Hold_r(enumstart);
1113 for (host = enumstart; host; host = next, held = nheld) {
1115 if (next && !(nheld = h_Held_r(next)) && !H_ENUMERATE_ISSET_BAIL(held))
1117 held = (*proc) (host, held, param);
1118 if (!H_ENUMERATE_ISSET_HELD(held))
1119 h_Release_r(host); /* this might free up the host */
1120 if (H_ENUMERATE_ISSET_BAIL(held)) {
1121 if (!H_ENUMERATE_ISSET_HELD(nheld))
1122 h_Release_r(next); /* this might free up the host */
1126 } /*h_Enumerate_r */
1128 /* inserts a new HashChain structure corresponding to this UUID */
1130 h_AddHostToUuidHashTable_r(struct afsUUID *uuid, struct host *host)
1133 struct h_UuidHashChain *chain;
1135 /* hash into proper bucket */
1136 index = h_UuidHashIndex(uuid);
1138 /* don't add the same entry multiple times */
1139 for (chain = hostUuidHashTable[index]; chain; chain = chain->next) {
1140 if (host->interface && afs_uuid_equal(&host->interface->uuid, uuid))
1144 /* insert into beginning of list for this bucket */
1145 chain = (struct h_UuidHashChain *)malloc(sizeof(struct h_UuidHashChain));
1147 ViceLog(0, ("Failed malloc in h_AddHostToUuidHashTable_r\n"));
1151 chain->hostPtr = host;
1152 chain->next = hostUuidHashTable[index];
1153 hostUuidHashTable[index] = chain;
1157 /* inserts a new HashChain structure corresponding to this address */
1159 h_AddHostToAddrHashTable_r(afs_uint32 addr, afs_uint16 port, struct host *host)
1162 struct h_AddrHashChain *chain;
1166 /* hash into proper bucket */
1167 index = h_HashIndex(addr);
1169 /* don't add the same entry multiple times */
1170 for (chain = hostAddrHashTable[index]; chain; chain = chain->next) {
1171 if (chain->addr == addr && chain->port == port) {
1172 if (chain->hostPtr == host)
1174 else if (!(host->hostFlags & HOSTDELETED))
1175 ViceLog(125, ("Addr %s:%d assigned to %x and %x.\n",
1176 afs_inet_ntoa_r(addr, hoststr), ntohs(port),
1184 /* insert into beginning of list for this bucket */
1185 chain = (struct h_AddrHashChain *)malloc(sizeof(struct h_AddrHashChain));
1187 ViceLog(0, ("Failed malloc in h_AddHostToAddrHashTable_r\n"));
1190 chain->hostPtr = host;
1191 chain->next = hostAddrHashTable[index];
1194 hostAddrHashTable[index] = chain;
1198 * This is called with host locked and held. At this point, the
1199 * hostAddrHashTable should not have entries for the alternate
1200 * interfaces. This function has to insert these entries in the
1201 * hostAddrHashTable.
1203 * All addresses are in network byte order.
1206 addInterfaceAddr_r(struct host *host, afs_uint32 addr, afs_uint16 port)
1211 struct Interface *interface;
1212 char hoststr[16], hoststr2[16];
1215 assert(host->interface);
1218 * Make sure this address is on the list of known addresses
1221 number = host->interface->numberOfInterfaces;
1222 for (i = 0, found = 0; i < number && !found; i++) {
1223 if (host->interface->interface[i].addr == addr &&
1224 host->interface->interface[i].port == port) {
1226 host->interface->interface[i].valid = 1;
1230 ViceLog(125, ("addInterfaceAddr : host %s:%d addr %s:%d : found:%d\n",
1231 afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port),
1232 afs_inet_ntoa_r(addr, hoststr2), ntohs(port), found));
1235 interface = (struct Interface *)
1236 malloc(sizeof(struct Interface) + (sizeof(struct AddrPort) * number));
1238 ViceLog(0, ("Failed malloc in addInterfaceAddr_r\n"));
1241 interface->numberOfInterfaces = number + 1;
1242 interface->uuid = host->interface->uuid;
1243 for (i = 0; i < number; i++)
1244 interface->interface[i] = host->interface->interface[i];
1245 interface->interface[number].addr = addr;
1246 interface->interface[number].port = port;
1247 interface->interface[number].valid = 1;
1248 free(host->interface);
1249 host->interface = interface;
1257 * This is called with host locked and held. At this point, the
1258 * hostAddrHashTable should not be having entries for the alternate
1259 * interfaces. This function has to insert these entries in the
1260 * hostAddrHashTable.
1262 * All addresses are in network byte order.
1265 removeInterfaceAddr_r(struct host *host, afs_uint32 addr, afs_uint16 port)
1270 struct Interface *interface;
1271 char hoststr[16], hoststr2[16];
1274 assert(host->interface);
1276 ViceLog(125, ("removeInterfaceAddr : host %s:%d addr %s:%d\n",
1277 afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port),
1278 afs_inet_ntoa_r(addr, hoststr2), ntohs(port)));
1281 * Make sure this address is on the list of known addresses
1284 interface = host->interface;
1285 number = host->interface->numberOfInterfaces;
1286 for (i = 0, found = 0; i < number && !found; i++) {
1287 if (interface->interface[i].addr == addr &&
1288 interface->interface[i].port == port) {
1290 interface->interface[i].valid = 0;
1295 for (; i < number; i++) {
1296 interface->interface[i] = interface->interface[i+1];
1298 interface->numberOfInterfaces = number;
1302 * Remove the hash table entry for this address
1304 h_DeleteHostFromAddrHashTable_r(addr, port, host);
1310 * This is called with host locked and held. This function differs
1311 * from removeInterfaceAddr_r in that it is called when the address
1312 * is being removed from the host regardless of whether or not there
1313 * is an interface list for the host. This function will delete the
1314 * host if there are no addresses left on it.
1316 * All addresses are in network byte order.
1319 removeAddress_r(struct host *host, afs_uint32 addr, afs_uint16 port)
1322 char hoststr[16], hoststr2[16];
1324 if (!host->interface) {
1325 if (host->host == addr && host->port == port) {
1327 ("Removing only address for host %x (%s:%d), deleting host.\n",
1328 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
1329 host->hostFlags |= HOSTDELETED;
1332 removeInterfaceAddr_r(host, host->host, host->port);
1333 if (host->interface->numberOfInterfaces == 0) {
1335 ("Removed only address for host %x (%s:%d), no alternate interfaces, deleting host.\n",
1336 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
1337 host->hostFlags |= HOSTDELETED;
1339 struct rx_connection *rxconn;
1341 rxconn = host->callback_rxcon;
1342 host->callback_rxcon = NULL;
1345 struct client *client;
1347 * If rx_DestroyConnection calls h_FreeConnection we will
1348 * deadlock on the host_glock_mutex. Work around the problem
1349 * by unhooking the client from the connection before
1350 * destroying the connection.
1352 client = rx_GetSpecific(rxconn, rxcon_client_key);
1353 rx_SetSpecific(rxconn, rxcon_client_key, (void *)0);
1354 rx_DestroyConnection(rxconn);
1357 for (i=0; i < host->interface->numberOfInterfaces; i++) {
1358 if (host->interface->interface[i].valid) {
1360 ("Removed address for host %x (%s:%d), new primary interface %s:%d.\n",
1361 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port),
1362 afs_inet_ntoa_r(host->interface->interface[i].addr, hoststr2),
1363 ntohs(host->interface->interface[i].port)));
1364 host->host = host->interface->interface[i].addr;
1365 host->port = host->interface->interface[i].port;
1366 h_AddHostToAddrHashTable_r(host->host, host->port, host);
1371 if (i == host->interface->numberOfInterfaces) {
1373 ("Removed only address for host %x (%s:%d), no valid alternate interfaces, deleting host.\n",
1374 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
1375 host->hostFlags |= HOSTDELETED;
1378 sc = rxnull_NewClientSecurityObject();
1379 host->callback_rxcon =
1380 rx_NewConnection(host->host, host->port, 1, sc, 0);
1381 rx_SetConnDeadTime(host->callback_rxcon, 50);
1382 rx_SetConnHardDeadTime(host->callback_rxcon, AFS_HARDDEADTIME);
1390 h_threadquota(int waiting)
1395 } else if (lwps > 32) {
1398 } else if (lwps > 16) {
1408 /* Host is returned held */
1410 h_GetHost_r(struct rx_connection *tcon)
1413 struct host *oldHost;
1416 struct interfaceAddr interf;
1417 int interfValid = 0;
1418 struct Identity *identP = NULL;
1421 char hoststr[16], hoststr2[16];
1423 struct rx_connection *cb_conn = NULL;
1425 caps.Capabilities_val = NULL;
1427 haddr = rxr_HostOf(tcon);
1428 hport = rxr_PortOf(tcon);
1430 if (caps.Capabilities_val)
1431 free(caps.Capabilities_val);
1432 caps.Capabilities_val = NULL;
1433 caps.Capabilities_len = 0;
1436 host = h_Lookup_r(haddr, hport, &held);
1437 identP = (struct Identity *)rx_GetSpecific(tcon, rxcon_ident_key);
1438 if (host && !identP && !(host->Console & 1)) {
1439 /* This is a new connection, and we already have a host
1440 * structure for this address. Verify that the identity
1441 * of the caller matches the identity in the host structure.
1443 if ((host->hostFlags & HWHO_INPROGRESS) &&
1444 h_threadquota(host->lock.num_waiting))
1447 if (!(host->hostFlags & ALTADDR)) {
1448 host->hostFlags &= ~HWHO_INPROGRESS;
1449 /* Another thread is doing initialization */
1454 ("Host %x (%s:%d) starting h_Lookup again\n",
1455 host, afs_inet_ntoa_r(host->host, hoststr),
1456 ntohs(host->port)));
1459 host->hostFlags &= ~ALTADDR;
1460 cb_conn = host->callback_rxcon;
1461 rx_GetConnection(cb_conn);
1464 RXAFSCB_TellMeAboutYourself(cb_conn, &interf, &caps);
1465 if (code == RXGEN_OPCODE)
1466 code = RXAFSCB_WhoAreYou(cb_conn, &interf);
1467 rx_PutConnection(cb_conn);
1470 if ((code == RXGEN_OPCODE) ||
1471 (afs_uuid_equal(&interf.uuid, &nulluuid))) {
1472 identP = (struct Identity *)malloc(sizeof(struct Identity));
1474 ViceLog(0, ("Failed malloc in h_GetHost_r\n"));
1478 rx_SetSpecific(tcon, rxcon_ident_key, identP);
1479 /* The host on this connection was unable to respond to
1480 * the WhoAreYou. We will treat this as a new connection
1481 * from the existing host. The worst that can happen is
1482 * that we maintain some extra callback state information */
1483 if (host->interface) {
1485 ("Host %x (%s:%d) used to support WhoAreYou, deleting.\n",
1487 afs_inet_ntoa_r(host->host, hoststr),
1488 ntohs(host->port)));
1489 host->hostFlags |= HOSTDELETED;
1490 host->hostFlags &= ~HWHO_INPROGRESS;
1497 } else if (code == 0) {
1499 identP = (struct Identity *)malloc(sizeof(struct Identity));
1501 ViceLog(0, ("Failed malloc in h_GetHost_r\n"));
1505 identP->uuid = interf.uuid;
1506 rx_SetSpecific(tcon, rxcon_ident_key, identP);
1507 /* Check whether the UUID on this connection matches
1508 * the UUID in the host structure. If they don't match
1509 * then this is not the same host as before. */
1510 if (!host->interface
1511 || !afs_uuid_equal(&interf.uuid, &host->interface->uuid)) {
1513 ("Uuid doesn't match host %x (%s:%d).\n",
1514 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
1516 removeAddress_r(host, host->host, host->port);
1517 host->hostFlags &= ~HWHO_INPROGRESS;
1526 ("CB: WhoAreYou failed for host %x (%s:%d), error %d\n",
1527 host, afs_inet_ntoa_r(host->host, hoststr),
1528 ntohs(host->port), code));
1529 host->hostFlags |= VENUSDOWN;
1531 if (caps.Capabilities_val
1532 && (caps.Capabilities_val[0] & CLIENT_CAPABILITY_ERRORTRANS))
1533 host->hostFlags |= HERRORTRANS;
1535 host->hostFlags &= ~(HERRORTRANS);
1536 host->hostFlags |= ALTADDR;
1537 host->hostFlags &= ~HWHO_INPROGRESS;
1540 if (!(host->hostFlags & ALTADDR)) {
1541 /* another thread is doing the initialisation */
1543 ("Host %x (%s:%d) waiting for host-init to complete\n",
1544 host, afs_inet_ntoa_r(host->host, hoststr),
1545 ntohs(host->port)));
1547 host->hostFlags &= ~HWHO_INPROGRESS;
1552 ("Host %x (%s:%d) starting h_Lookup again\n",
1553 host, afs_inet_ntoa_r(host->host, hoststr),
1554 ntohs(host->port)));
1557 /* We need to check whether the identity in the host structure
1558 * matches the identity on the connection. If they don't match
1559 * then treat this a new host. */
1560 if (!(host->Console & 1)
1561 && ((!identP->valid && host->interface)
1562 || (identP->valid && !host->interface)
1564 && !afs_uuid_equal(&identP->uuid,
1565 &host->interface->uuid)))) {
1566 char uuid1[128], uuid2[128];
1568 afsUUID_to_string(&identP->uuid, uuid1, 127);
1569 if (host->interface)
1570 afsUUID_to_string(&host->interface->uuid, uuid2, 127);
1572 ("CB: new identity for host %x (%s:%d), deleting(%x %x %s %s)\n",
1573 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port),
1574 identP->valid, host->interface,
1575 identP->valid ? uuid1 : "no_uuid",
1576 host->interface ? uuid2 : "no_uuid"));
1578 /* The host in the cache is not the host for this connection */
1580 host->hostFlags |= HOSTDELETED;
1581 host->hostFlags &= ~HWHO_INPROGRESS;
1588 host = h_Alloc_r(tcon); /* returned held and locked */
1589 h_gethostcps_r(host, FT_ApproxTime());
1590 if (!(host->Console & 1)) {
1592 cb_conn = host->callback_rxcon;
1593 rx_GetConnection(cb_conn);
1596 RXAFSCB_TellMeAboutYourself(cb_conn, &interf, &caps);
1597 if (code == RXGEN_OPCODE)
1598 code = RXAFSCB_WhoAreYou(cb_conn, &interf);
1599 rx_PutConnection(cb_conn);
1602 if ((code == RXGEN_OPCODE) ||
1603 afs_uuid_equal(&interf.uuid, &nulluuid)) {
1606 (struct Identity *)malloc(sizeof(struct Identity));
1611 ViceLog(0, ("Failed malloc in h_GetHost_r\n"));
1616 rx_SetSpecific(tcon, rxcon_ident_key, identP);
1618 ("Host %x (%s:%d) does not support WhoAreYou.\n",
1619 host, afs_inet_ntoa_r(host->host, hoststr),
1620 ntohs(host->port)));
1622 } else if (code == 0) {
1625 (struct Identity *)malloc(sizeof(struct Identity));
1630 ViceLog(0, ("Failed malloc in h_GetHost_r\n"));
1635 identP->uuid = interf.uuid;
1637 rx_SetSpecific(tcon, rxcon_ident_key, identP);
1639 ("WhoAreYou success on host %x (%s:%d)\n",
1640 host, afs_inet_ntoa_r(host->host, hoststr),
1641 ntohs(host->port)));
1643 if (code == 0 && !identP->valid) {
1644 cb_conn = host->callback_rxcon;
1645 rx_GetConnection(cb_conn);
1647 code = RXAFSCB_InitCallBackState(cb_conn);
1648 rx_PutConnection(cb_conn);
1651 } else if (code == 0) {
1652 oldHost = h_LookupUuid_r(&identP->uuid);
1656 if (!h_Held_r(oldHost))
1659 oldHost->hostFlags |= HWHO_INPROGRESS;
1661 if (oldHost->interface) {
1663 afsUUID uuid = oldHost->interface->uuid;
1664 cb_conn = oldHost->callback_rxcon;
1665 rx_GetConnection(cb_conn);
1666 rx_SetConnDeadTime(cb_conn, 2);
1667 rx_SetConnHardDeadTime(cb_conn, AFS_HARDDEADTIME);
1669 code2 = RXAFSCB_ProbeUuid(cb_conn, &uuid);
1671 rx_SetConnDeadTime(cb_conn, 50);
1672 rx_SetConnHardDeadTime(cb_conn, AFS_HARDDEADTIME);
1673 rx_PutConnection(cb_conn);
1676 /* The primary address is either not responding or
1677 * is not the client we are looking for.
1678 * MultiProbeAlternateAddress_r() will remove the
1679 * alternate interfaces that do not have the same
1681 ViceLog(0,("CB: ProbeUuid for host %x (%s:%d) failed %d\n",
1683 afs_inet_ntoa_r(oldHost->host, hoststr),
1684 ntohs(oldHost->port),code2));
1685 MultiProbeAlternateAddress_r(oldHost);
1692 /* This is a new address for an existing host. Update
1693 * the list of interfaces for the existing host and
1694 * delete the host structure we just allocated. */
1696 /* prevent warnings while manipulating interface lists */
1697 host->hostFlags |= HOSTDELETED;
1699 if (oldHost->host != haddr || oldHost->port != hport) {
1700 struct rx_connection *rxconn;
1703 ("CB: Host %x (%s:%d) has new addr %s:%d\n",
1705 afs_inet_ntoa_r(oldHost->host, hoststr2),
1706 ntohs(oldHost->port),
1707 afs_inet_ntoa_r(haddr, hoststr),
1709 if (probefail || oldHost->host == haddr) {
1710 /* The probe failed which means that the old address is
1711 * either unreachable or is not the same host we were just
1712 * contacted by. We will also remove addresses if only
1713 * the port has changed because that indicates the client
1716 removeInterfaceAddr_r(oldHost, oldHost->host, oldHost->port);
1719 struct Interface *interface = oldHost->interface;
1720 int number = oldHost->interface->numberOfInterfaces;
1721 for (i = 0, found = 0; i < number; i++) {
1722 if (interface->interface[i].addr == haddr &&
1723 interface->interface[i].port != hport) {
1729 /* We have just been contacted by a client that has been
1730 * seen from behind a NAT and at least one other address.
1732 removeInterfaceAddr_r(oldHost, haddr, interface->interface[i].port);
1735 addInterfaceAddr_r(oldHost, haddr, hport);
1736 oldHost->host = haddr;
1737 oldHost->port = hport;
1738 rxconn = oldHost->callback_rxcon;
1739 oldHost->callback_rxcon = host->callback_rxcon;
1740 host->callback_rxcon = NULL;
1743 struct client *client;
1745 * If rx_DestroyConnection calls h_FreeConnection we will
1746 * deadlock on the host_glock_mutex. Work around the problem
1747 * by unhooking the client from the connection before
1748 * destroying the connection.
1750 client = rx_GetSpecific(rxconn, rxcon_client_key);
1751 rx_SetSpecific(rxconn, rxcon_client_key, (void *)0);
1752 rx_DestroyConnection(rxconn);
1755 host->hostFlags &= ~HWHO_INPROGRESS;
1757 /* release host because it was allocated by h_Alloc_r */
1760 /* the new host is held and locked */
1762 /* This really is a new host */
1763 h_AddHostToUuidHashTable_r(&identP->uuid, host);
1764 cb_conn = host->callback_rxcon;
1765 rx_GetConnection(cb_conn);
1768 RXAFSCB_InitCallBackState3(cb_conn,
1770 rx_PutConnection(cb_conn);
1775 ("InitCallBackState3 success on host %x (%s:%d)\n",
1776 host, afs_inet_ntoa_r(host->host, hoststr),
1777 ntohs(host->port)));
1778 assert(interfValid == 1);
1779 initInterfaceAddr_r(host, &interf);
1785 ("CB: RCallBackConnectBack failed for %x (%s:%d)\n",
1786 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
1787 host->hostFlags |= VENUSDOWN;
1790 ("CB: RCallBackConnectBack succeeded for %x (%s:%d)\n",
1791 host, afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port)));
1792 host->hostFlags |= RESETDONE;
1795 if (caps.Capabilities_val
1796 && (caps.Capabilities_val[0] & CLIENT_CAPABILITY_ERRORTRANS))
1797 host->hostFlags |= HERRORTRANS;
1799 host->hostFlags &= ~(HERRORTRANS);
1800 host->hostFlags |= ALTADDR; /* host structure initialization complete */
1801 host->hostFlags &= ~HWHO_INPROGRESS;
1804 if (caps.Capabilities_val)
1805 free(caps.Capabilities_val);
1806 caps.Capabilities_val = NULL;
1807 caps.Capabilities_len = 0;
1813 static char localcellname[PR_MAXNAMELEN + 1];
1814 char local_realms[AFS_NUM_LREALMS][AFS_REALM_SZ];
1815 int num_lrealms = -1;
1821 memset(&nulluuid, 0, sizeof(afsUUID));
1822 afsconf_GetLocalCell(confDir, localcellname, PR_MAXNAMELEN);
1823 if (num_lrealms == -1) {
1825 for (i=0; i<AFS_NUM_LREALMS; i++) {
1826 if (afs_krb_get_lrealm(local_realms[i], i) != 0 /*KSUCCESS*/)
1832 ("afs_krb_get_lrealm failed, using %s.\n",
1834 strncpy(local_realms[0], localcellname, AFS_REALM_SZ);
1840 /* initialize the rest of the local realms to nullstring for debugging */
1841 for (; i<AFS_NUM_LREALMS; i++)
1842 local_realms[i][0] = '\0';
1844 rxcon_ident_key = rx_KeyCreate((rx_destructor_t) free);
1845 rxcon_client_key = rx_KeyCreate((rx_destructor_t) 0);
1846 #ifdef AFS_PTHREAD_ENV
1847 assert(pthread_mutex_init(&host_glock_mutex, NULL) == 0);
1848 #endif /* AFS_PTHREAD_ENV */
1852 MapName_r(char *aname, char *acell, afs_int32 * aval)
1857 afs_int32 anamelen, cnamelen;
1861 anamelen = strlen(aname);
1862 if (anamelen >= PR_MAXNAMELEN)
1863 return -1; /* bad name -- caller interprets this as anonymous, but retries later */
1865 lnames.namelist_len = 1;
1866 lnames.namelist_val = (prname *) aname; /* don't malloc in the common case */
1867 lids.idlist_len = 0;
1868 lids.idlist_val = NULL;
1870 cnamelen = strlen(acell);
1872 if (afs_is_foreign_ticket_name(aname, NULL, acell, localcellname)) {
1874 ("MapName: cell is foreign. cell=%s, localcell=%s, localrealms={%s,%s,%s,%s}\n",
1875 acell, localcellname, local_realms[0],local_realms[1],local_realms[2],local_realms[3]));
1876 if ((anamelen + cnamelen + 1) >= PR_MAXNAMELEN) {
1878 ("MapName: Name too long, using AnonymousID for %s@%s\n",
1880 *aval = AnonymousID;
1883 foreign = 1; /* attempt cross-cell authentication */
1884 tname = (char *)malloc(PR_MAXNAMELEN);
1886 ViceLog(0, ("Failed malloc in MapName_r\n"));
1889 strcpy(tname, aname);
1890 tname[anamelen] = '@';
1891 strcpy(tname + anamelen + 1, acell);
1892 lnames.namelist_val = (prname *) tname;
1897 code = hpr_NameToId(&lnames, &lids);
1900 if (lids.idlist_val) {
1901 *aval = lids.idlist_val[0];
1902 if (*aval == AnonymousID) {
1904 ("MapName: NameToId on %s returns anonymousID\n",
1905 lnames.namelist_val));
1907 free(lids.idlist_val); /* return parms are not malloced in stub if server proc aborts */
1910 ("MapName: NameToId on '%s' is unknown\n",
1911 lnames.namelist_val));
1917 free(lnames.namelist_val); /* We allocated this above, so we must free it now. */
1925 /* NOTE: this returns the client with a Write lock and a refCount */
1927 h_ID2Client(afs_int32 vid)
1929 register struct client *client;
1930 register struct host *host;
1933 for (host = hostList; host; host = host->next) {
1934 if (host->hostFlags & HOSTDELETED)
1936 for (client = host->FirstClient; client; client = client->next) {
1937 if (!client->deleted && client->ViceId == vid) {
1940 ObtainWriteLock(&client->lock);
1951 * Called by the server main loop. Returns a h_Held client, which must be
1952 * released later the main loop. Allocates a client if the matching one
1953 * isn't around. The client is returned with its reference count incremented
1954 * by one. The caller must call h_ReleaseClient_r when finished with
1957 * the client->host is returned held. h_ReleaseClient_r does not release
1958 * the hold on client->host.
1961 h_FindClient_r(struct rx_connection *tcon)
1963 register struct client *client;
1964 register struct host *host;
1965 struct client *oldClient;
1970 #if (64-MAXKTCNAMELEN)
1971 ticket name length != 64
1975 char uname[PR_MAXNAMELEN];
1976 char tcell[MAXKTCREALMLEN];
1980 client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
1981 if (client && client->sid == rxr_CidOf(tcon)
1982 && client->VenusEpoch == rxr_GetEpoch(tcon)) {
1984 h_Hold_r(client->host);
1985 if (!client->deleted && client->prfail != 2) {
1986 /* Could add shared lock on client here */
1987 /* note that we don't have to lock entry in this path to
1988 * ensure CPS is initialized, since we don't call rx_SetSpecific
1989 * until initialization is done, and we only get here if
1990 * rx_GetSpecific located the client structure.
1995 ObtainWriteLock(&client->lock); /* released at end */
2001 authClass = rx_SecurityClassOf((struct rx_connection *)tcon);
2003 ("FindClient: authenticating connection: authClass=%d\n",
2005 if (authClass == 1) {
2006 /* A bcrypt tickets, no longer supported */
2007 ViceLog(1, ("FindClient: bcrypt ticket, using AnonymousID\n"));
2008 viceid = AnonymousID;
2009 expTime = 0x7fffffff;
2010 } else if (authClass == 2) {
2013 /* kerberos ticket */
2014 code = rxkad_GetServerInfo(tcon, /*level */ 0, &expTime,
2015 tname, tinst, tcell, &kvno);
2017 ViceLog(1, ("Failed to get rxkad ticket info\n"));
2018 viceid = AnonymousID;
2019 expTime = 0x7fffffff;
2021 int ilen = strlen(tinst);
2023 ("FindClient: rxkad conn: name=%s,inst=%s,cell=%s,exp=%d,kvno=%d\n",
2024 tname, tinst, tcell, expTime, kvno));
2025 strncpy(uname, tname, sizeof(uname));
2027 if (strlen(uname) + 1 + ilen >= sizeof(uname))
2030 strcat(uname, tinst);
2032 /* translate the name to a vice id */
2033 code = MapName_r(uname, tcell, &viceid);
2037 ("failed to map name=%s, cell=%s -> code=%d\n", uname,
2040 viceid = AnonymousID;
2041 expTime = 0x7fffffff;
2045 viceid = AnonymousID; /* unknown security class */
2046 expTime = 0x7fffffff;
2049 if (!client) { /* loop */
2050 host = h_GetHost_r(tcon); /* Returns it h_Held */
2056 /* First try to find the client structure */
2057 for (client = host->FirstClient; client; client = client->next) {
2058 if (!client->deleted && (client->sid == rxr_CidOf(tcon))
2059 && (client->VenusEpoch == rxr_GetEpoch(tcon))) {
2062 ObtainWriteLock(&client->lock);
2068 /* Still no client structure - get one */
2071 /* Retry to find the client structure */
2072 for (client = host->FirstClient; client; client = client->next) {
2073 if (!client->deleted && (client->sid == rxr_CidOf(tcon))
2074 && (client->VenusEpoch == rxr_GetEpoch(tcon))) {
2076 goto retryfirstclient;
2081 ObtainWriteLock(&client->lock);
2082 client->refCount = 1;
2083 client->host = host;
2084 #if FS_STATS_DETAILED
2085 client->InSameNetwork = host->InSameNetwork;
2086 #endif /* FS_STATS_DETAILED */
2087 client->ViceId = viceid;
2088 client->expTime = expTime; /* rx only */
2089 client->authClass = authClass; /* rx only */
2090 client->sid = rxr_CidOf(tcon);
2091 client->VenusEpoch = rxr_GetEpoch(tcon);
2092 client->CPS.prlist_val = NULL;
2093 client->CPS.prlist_len = 0;
2097 client->prfail = fail;
2099 if (!(client->CPS.prlist_val) || (viceid != client->ViceId)) {
2100 client->CPS.prlist_len = 0;
2101 if (client->CPS.prlist_val && (client->ViceId != ANONYMOUSID))
2102 free(client->CPS.prlist_val);
2103 client->CPS.prlist_val = NULL;
2104 client->ViceId = viceid;
2105 client->expTime = expTime;
2107 if (viceid == ANONYMOUSID) {
2108 client->CPS.prlist_len = AnonCPS.prlist_len;
2109 client->CPS.prlist_val = AnonCPS.prlist_val;
2112 code = hpr_GetCPS(viceid, &client->CPS);
2117 ("pr_GetCPS failed(%d) for user %d, host %x (%s:%d)\n",
2118 code, viceid, client->host,
2119 afs_inet_ntoa_r(client->host->host,hoststr),
2120 ntohs(client->host->port)));
2122 /* Although ubik_Call (called by pr_GetCPS) traverses thru
2123 * all protection servers and reevaluates things if no
2124 * sync server or quorum is found we could still end up
2125 * with one of these errors. In such case we would like to
2126 * reevaluate the rpc call to find if there's cps for this
2127 * guy. We treat other errors (except network failures
2128 * ones - i.e. code < 0) as an indication that there is no
2129 * CPS for this host. Ideally we could like to deal this
2130 * problem the other way around (i.e. if code == NOCPS
2131 * ignore else retry next time) but the problem is that
2132 * there're other errors (i.e. EPERM) for which we don't
2133 * want to retry and we don't know the whole code list!
2135 if (code < 0 || code == UNOQUORUM || code == UNOTSYNC)
2139 /* the disabling of system:administrators is so iffy and has so many
2140 * possible failure modes that we will disable it again */
2141 /* Turn off System:Administrator for safety
2142 * if (AL_IsAMember(SystemId, client->CPS) == 0)
2143 * assert(AL_DisableGroup(SystemId, client->CPS) == 0); */
2146 /* Now, tcon may already be set to a rock, since we blocked with no host
2147 * or client locks set above in pr_GetCPS (XXXX some locking is probably
2148 * required). So, before setting the RPC's rock, we should disconnect
2149 * the RPC from the other client structure's rock.
2151 oldClient = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
2152 if (oldClient && oldClient != client && oldClient->sid == rxr_CidOf(tcon)
2153 && oldClient->VenusEpoch == rxr_GetEpoch(tcon)) {
2155 if (!oldClient->deleted) {
2156 /* if we didn't create it, it's not ours to put back */
2158 ViceLog(0, ("FindClient: stillborn client %x(%x); conn %x (host %s:%d) had client %x(%x)\n",
2159 client, client->sid, tcon,
2160 afs_inet_ntoa_r(rxr_HostOf(tcon), hoststr),
2161 ntohs(rxr_PortOf(tcon)),
2162 oldClient, oldClient->sid));
2163 if ((client->ViceId != ANONYMOUSID) && client->CPS.prlist_val)
2164 free(client->CPS.prlist_val);
2165 client->CPS.prlist_val = NULL;
2166 client->CPS.prlist_len = 0;
2168 /* We should perhaps check for 0 here */
2170 ReleaseWriteLock(&client->lock);
2175 oldClient->refCount++;
2177 ObtainWriteLock(&oldClient->lock);
2181 ViceLog(0, ("FindClient: deleted client %x(%x) already had conn %x (host %s:%d), stolen by client %x(%x)\n",
2182 oldClient, oldClient->sid, tcon,
2183 afs_inet_ntoa_r(rxr_HostOf(tcon), hoststr),
2184 ntohs(rxr_PortOf(tcon)),
2185 client, client->sid));
2186 /* rx_SetSpecific will be done immediately below */
2189 /* Avoid chaining in more than once. */
2192 client->next = host->FirstClient;
2193 host->FirstClient = client;
2195 CurrentConnections++; /* increment number of connections */
2197 rx_SetSpecific(tcon, rxcon_client_key, client);
2198 ReleaseWriteLock(&client->lock);
2202 } /*h_FindClient_r */
2205 h_ReleaseClient_r(struct client *client)
2207 assert(client->refCount > 0);
2214 * Sigh: this one is used to get the client AGAIN within the individual
2215 * server routines. This does not bother h_Holding the host, since
2216 * this is assumed already have been done by the server main loop.
2217 * It does check tokens, since only the server routines can return the
2218 * VICETOKENDEAD error code
2221 GetClient(struct rx_connection *tcon, struct client **cp)
2223 register struct client *client;
2228 client = (struct client *)rx_GetSpecific(tcon, rxcon_client_key);
2229 if (client == NULL) {
2231 ("GetClient: no client in conn %x (host %s:%d), VBUSYING\n",
2232 tcon, afs_inet_ntoa_r(rxr_HostOf(tcon), hoststr),
2233 ntohs(rxr_PortOf(tcon))));
2237 if (rxr_CidOf(tcon) != client->sid || rxr_GetEpoch(tcon) != client->VenusEpoch) {
2239 ("GetClient: tcon %x tcon sid %d client sid %d\n",
2240 tcon, rxr_CidOf(tcon), client->sid));
2244 if (client && client->LastCall > client->expTime && client->expTime) {
2246 ("Token for %s at %s:%d expired %d\n", h_UserName(client),
2247 afs_inet_ntoa_r(client->host->host, hoststr),
2248 ntohs(client->host->port), client->expTime));
2250 return VICETOKENDEAD;
2260 PutClient(struct client **cp)
2266 h_ReleaseClient_r(*cp);
2273 /* Client user name for short term use. Note that this is NOT inexpensive */
2275 h_UserName(struct client *client)
2277 static char User[PR_MAXNAMELEN + 1];
2281 lids.idlist_len = 1;
2282 lids.idlist_val = (afs_int32 *) malloc(1 * sizeof(afs_int32));
2283 if (!lids.idlist_val) {
2284 ViceLog(0, ("Failed malloc in h_UserName\n"));
2287 lnames.namelist_len = 0;
2288 lnames.namelist_val = (prname *) 0;
2289 lids.idlist_val[0] = client->ViceId;
2290 if (hpr_IdToName(&lids, &lnames)) {
2291 /* We need to free id we alloced above! */
2292 free(lids.idlist_val);
2293 return "*UNKNOWN USER NAME*";
2295 strncpy(User, lnames.namelist_val[0], PR_MAXNAMELEN);
2296 free(lids.idlist_val);
2297 free(lnames.namelist_val);
2306 ("Total Client entries = %d, blocks = %d; Host entries = %d, blocks = %d\n",
2307 CEs, CEBlocks, HTs, HTBlocks));
2313 h_PrintClient(register struct host *host, int held, StreamHandle_t * file)
2315 register struct client *client;
2320 time_t LastCall, expTime;
2323 LastCall = host->LastCall;
2324 if (host->hostFlags & HOSTDELETED) {
2328 (void)afs_snprintf(tmpStr, sizeof tmpStr,
2329 "Host %s:%d down = %d, LastCall %s",
2330 afs_inet_ntoa_r(host->host, hoststr),
2331 ntohs(host->port), (host->hostFlags & VENUSDOWN),
2332 afs_ctime(&LastCall, tbuffer,
2334 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2335 for (client = host->FirstClient; client; client = client->next) {
2336 if (!client->deleted) {
2337 expTime = client->expTime;
2338 (void)afs_snprintf(tmpStr, sizeof tmpStr,
2339 " user id=%d, name=%s, sl=%s till %s",
2340 client->ViceId, h_UserName(client),
2342 authClass ? "Authenticated" :
2343 "Not authenticated",
2345 authClass ? afs_ctime(&expTime, tbuffer,
2348 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2349 (void)afs_snprintf(tmpStr, sizeof tmpStr, " CPS-%d is [",
2350 client->CPS.prlist_len);
2351 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2352 if (client->CPS.prlist_val) {
2353 for (i = 0; i > client->CPS.prlist_len; i++) {
2354 (void)afs_snprintf(tmpStr, sizeof tmpStr, " %d",
2355 client->CPS.prlist_val[i]);
2356 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2359 sprintf(tmpStr, "]\n");
2360 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2366 } /*h_PrintClient */
2371 * Print a list of clients, with last security level and token value seen,
2381 StreamHandle_t *file = STREAM_OPEN(AFSDIR_SERVER_CLNTDUMP_FILEPATH, "w");
2385 ("Couldn't create client dump file %s\n",
2386 AFSDIR_SERVER_CLNTDUMP_FILEPATH));
2389 now = FT_ApproxTime();
2390 (void)afs_snprintf(tmpStr, sizeof tmpStr, "List of active users at %s\n",
2391 afs_ctime(&now, tbuffer, sizeof(tbuffer)));
2392 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2393 h_Enumerate(h_PrintClient, (char *)file);
2394 STREAM_REALLYCLOSE(file);
2395 ViceLog(0, ("Created client dump %s\n", AFSDIR_SERVER_CLNTDUMP_FILEPATH));
2402 h_DumpHost(register struct host *host, int held, StreamHandle_t * file)
2409 (void)afs_snprintf(tmpStr, sizeof tmpStr,
2410 "ip:%s port:%d hidx:%d cbid:%d lock:%x last:%u active:%u down:%d del:%d cons:%d cldel:%d\n\t hpfailed:%d hcpsCall:%u hcps [",
2411 afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port), host->index,
2412 host->cblist, CheckLock(&host->lock), host->LastCall,
2413 host->ActiveCall, (host->hostFlags & VENUSDOWN),
2414 host->hostFlags & HOSTDELETED, host->Console,
2415 host->hostFlags & CLIENTDELETED, host->hcpsfailed,
2417 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2418 if (host->hcps.prlist_val)
2419 for (i = 0; i < host->hcps.prlist_len; i++) {
2420 (void)afs_snprintf(tmpStr, sizeof tmpStr, " %d",
2421 host->hcps.prlist_val[i]);
2422 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2424 sprintf(tmpStr, "] [");
2425 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2426 if (host->interface)
2427 for (i = 0; i < host->interface->numberOfInterfaces; i++) {
2429 sprintf(tmpStr, " %s:%d",
2430 afs_inet_ntoa_r(host->interface->interface[i].addr, hoststr),
2431 ntohs(host->interface->interface[i].port));
2432 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2434 sprintf(tmpStr, "] holds: ");
2435 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2437 for (i = 0; i < h_maxSlots; i++) {
2438 sprintf(tmpStr, "%04x", host->holds[i]);
2439 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2441 sprintf(tmpStr, " slot/bit: %d/%d\n", h_holdSlot(), h_holdbit());
2442 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2454 StreamHandle_t *file = STREAM_OPEN(AFSDIR_SERVER_HOSTDUMP_FILEPATH, "w");
2460 ("Couldn't create host dump file %s\n",
2461 AFSDIR_SERVER_HOSTDUMP_FILEPATH));
2464 now = FT_ApproxTime();
2465 (void)afs_snprintf(tmpStr, sizeof tmpStr, "List of active hosts at %s\n",
2466 afs_ctime(&now, tbuffer, sizeof(tbuffer)));
2467 (void)STREAM_WRITE(tmpStr, strlen(tmpStr), 1, file);
2468 h_Enumerate(h_DumpHost, (char *)file);
2469 STREAM_REALLYCLOSE(file);
2470 ViceLog(0, ("Created host dump %s\n", AFSDIR_SERVER_HOSTDUMP_FILEPATH));
2474 #ifdef AFS_DEMAND_ATTACH_FS
2477 * host state serialization
2479 static int h_stateFillHeader(struct host_state_header * hdr);
2480 static int h_stateCheckHeader(struct host_state_header * hdr);
2481 static int h_stateAllocMap(struct fs_dump_state * state);
2482 static int h_stateSaveHost(register struct host * host, int held, struct fs_dump_state * state);
2483 static int h_stateRestoreHost(struct fs_dump_state * state);
2484 static int h_stateRestoreIndex(struct host * h, int held, struct fs_dump_state * state);
2485 static int h_stateVerifyHost(struct host * h, int held, struct fs_dump_state * state);
2486 static int h_stateVerifyAddrHash(struct fs_dump_state * state, struct host * h, afs_uint32 addr, afs_uint16 port);
2487 static int h_stateVerifyUuidHash(struct fs_dump_state * state, struct host * h);
2488 static void h_hostToDiskEntry_r(struct host * in, struct hostDiskEntry * out);
2489 static void h_diskEntryToHost_r(struct hostDiskEntry * in, struct host * out);
2492 /* this procedure saves all host state to disk for fast startup */
2494 h_stateSave(struct fs_dump_state * state)
2496 AssignInt64(state->eof_offset, &state->hdr->h_offset);
2499 ViceLog(0, ("h_stateSave: hostCount=%d\n", hostCount));
2501 /* invalidate host state header */
2502 memset(state->h_hdr, 0, sizeof(struct host_state_header));
2504 if (fs_stateWriteHeader(state, &state->hdr->h_offset, state->h_hdr,
2505 sizeof(struct host_state_header))) {
2510 fs_stateIncEOF(state, sizeof(struct host_state_header));
2512 h_Enumerate_r(h_stateSaveHost, hostList, (char *)state);
2517 h_stateFillHeader(state->h_hdr);
2519 /* write the real header to disk */
2520 state->bail = fs_stateWriteHeader(state, &state->hdr->h_offset, state->h_hdr,
2521 sizeof(struct host_state_header));
2528 * host state serialization
2530 * this procedure restores all host state from a disk for fast startup
2533 h_stateRestore(struct fs_dump_state * state)
2537 /* seek to the right position and read in the host state header */
2538 if (fs_stateReadHeader(state, &state->hdr->h_offset, state->h_hdr,
2539 sizeof(struct host_state_header))) {
2544 /* check the validity of the header */
2545 if (h_stateCheckHeader(state->h_hdr)) {
2550 records = state->h_hdr->records;
2552 if (h_stateAllocMap(state)) {
2557 /* iterate over records restoring host state */
2558 for (i=0; i < records; i++) {
2559 if (h_stateRestoreHost(state) != 0) {
2570 h_stateRestoreIndices(struct fs_dump_state * state)
2572 h_Enumerate_r(h_stateRestoreIndex, hostList, (char *)state);
2577 h_stateRestoreIndex(struct host * h, int held, struct fs_dump_state * state)
2579 if (cb_OldToNew(state, h->cblist, &h->cblist)) {
2580 return H_ENUMERATE_BAIL(held);
2586 h_stateVerify(struct fs_dump_state * state)
2588 h_Enumerate_r(h_stateVerifyHost, hostList, (char *)state);
2593 h_stateVerifyHost(struct host * h, int held, struct fs_dump_state * state)
2598 ViceLog(0, ("h_stateVerifyHost: error: NULL host pointer in linked list\n"));
2599 return H_ENUMERATE_BAIL(held);
2603 for (i = h->interface->numberOfInterfaces-1; i >= 0; i--) {
2604 if (h_stateVerifyAddrHash(state, h, h->interface->interface[i].addr,
2605 h->interface->interface[i].port)) {
2609 if (h_stateVerifyUuidHash(state, h)) {
2612 } else if (h_stateVerifyAddrHash(state, h, h->host, h->port)) {
2616 if (cb_stateVerifyHCBList(state, h)) {
2625 h_stateVerifyAddrHash(struct fs_dump_state * state, struct host * h, afs_uint32 addr, afs_uint16 port)
2627 int ret = 0, found = 0;
2628 struct host *host = NULL;
2629 struct h_AddrHashChain *chain;
2630 int index = h_HashIndex(addr);
2634 for (chain = hostAddrHashTable[index]; chain; chain = chain->next) {
2635 host = chain->hostPtr;
2637 afs_inet_ntoa_r(addr, tmp);
2638 ViceLog(0, ("h_stateVerifyAddrHash: error: addr hash chain has NULL host ptr (lookup addr %s)\n", tmp));
2642 if ((chain->addr == addr) && (chain->port == port)) {
2644 ViceLog(0, ("h_stateVerifyAddrHash: warning: addr hash entry points to different host struct (%d, %d)\n",
2645 h->index, host->index));
2646 state->flags.warnings_generated = 1;
2651 if (chain_len > FS_STATE_H_MAX_ADDR_HASH_CHAIN_LEN) {
2652 ViceLog(0, ("h_stateVerifyAddrHash: error: hash chain length exceeds %d; assuming there's a loop\n",
2653 FS_STATE_H_MAX_ADDR_HASH_CHAIN_LEN));
2661 afs_inet_ntoa_r(addr, tmp);
2662 if (state->mode == FS_STATE_LOAD_MODE) {
2663 ViceLog(0, ("h_stateVerifyAddrHash: error: addr %s not found in hash\n", tmp));
2667 ViceLog(0, ("h_stateVerifyAddrHash: warning: addr %s not found in hash\n", tmp));
2668 state->flags.warnings_generated = 1;
2677 h_stateVerifyUuidHash(struct fs_dump_state * state, struct host * h)
2679 int ret = 0, found = 0;
2680 struct host *host = NULL;
2681 struct h_UuidHashChain *chain;
2682 afsUUID * uuidp = &h->interface->uuid;
2683 int index = h_UuidHashIndex(uuidp);
2687 for (chain = hostUuidHashTable[index]; chain; chain = chain->next) {
2688 host = chain->hostPtr;
2690 afsUUID_to_string(uuidp, tmp, sizeof(tmp));
2691 ViceLog(0, ("h_stateVerifyUuidHash: error: uuid hash chain has NULL host ptr (lookup uuid %s)\n", tmp));
2695 if (host->interface &&
2696 afs_uuid_equal(&host->interface->uuid, uuidp)) {
2698 ViceLog(0, ("h_stateVerifyUuidHash: warning: uuid hash entry points to different host struct (%d, %d)\n",
2699 h->index, host->index));
2700 state->flags.warnings_generated = 1;
2705 if (chain_len > FS_STATE_H_MAX_UUID_HASH_CHAIN_LEN) {
2706 ViceLog(0, ("h_stateVerifyUuidHash: error: hash chain length exceeds %d; assuming there's a loop\n",
2707 FS_STATE_H_MAX_UUID_HASH_CHAIN_LEN));
2715 afsUUID_to_string(uuidp, tmp, sizeof(tmp));
2716 if (state->mode == FS_STATE_LOAD_MODE) {
2717 ViceLog(0, ("h_stateVerifyUuidHash: error: uuid %s not found in hash\n", tmp));
2721 ViceLog(0, ("h_stateVerifyUuidHash: warning: uuid %s not found in hash\n", tmp));
2722 state->flags.warnings_generated = 1;
2730 /* create the host state header structure */
2732 h_stateFillHeader(struct host_state_header * hdr)
2734 hdr->stamp.magic = HOST_STATE_MAGIC;
2735 hdr->stamp.version = HOST_STATE_VERSION;
2738 /* check the contents of the host state header structure */
2740 h_stateCheckHeader(struct host_state_header * hdr)
2744 if (hdr->stamp.magic != HOST_STATE_MAGIC) {
2745 ViceLog(0, ("check_host_state_header: invalid state header\n"));
2748 else if (hdr->stamp.version != HOST_STATE_VERSION) {
2749 ViceLog(0, ("check_host_state_header: unknown version number\n"));
2755 /* allocate the host id mapping table */
2757 h_stateAllocMap(struct fs_dump_state * state)
2759 state->h_map.len = state->h_hdr->index_max + 1;
2760 state->h_map.entries = (struct idx_map_entry_t *)
2761 calloc(state->h_map.len, sizeof(struct idx_map_entry_t));
2762 return (state->h_map.entries != NULL) ? 0 : 1;
2765 /* function called by h_Enumerate to save a host to disk */
2767 h_stateSaveHost(register struct host * host, int held, struct fs_dump_state * state)
2769 int i, if_len=0, hcps_len=0;
2770 struct hostDiskEntry hdsk;
2771 struct host_state_entry_header hdr;
2772 struct Interface * ifp = NULL;
2773 afs_int32 * hcps = NULL;
2774 struct iovec iov[4];
2777 memset(&hdr, 0, sizeof(hdr));
2779 if (state->h_hdr->index_max < host->index) {
2780 state->h_hdr->index_max = host->index;
2783 h_hostToDiskEntry_r(host, &hdsk);
2784 if (host->interface) {
2785 if_len = sizeof(struct Interface) +
2786 ((host->interface->numberOfInterfaces-1) * sizeof(struct AddrPort));
2787 ifp = (struct Interface *) malloc(if_len);
2788 assert(ifp != NULL);
2789 memcpy(ifp, host->interface, if_len);
2790 hdr.interfaces = host->interface->numberOfInterfaces;
2791 iov[iovcnt].iov_base = (char *) ifp;
2792 iov[iovcnt].iov_len = if_len;
2795 if (host->hcps.prlist_val) {
2796 hdr.hcps = host->hcps.prlist_len;
2797 hcps_len = hdr.hcps * sizeof(afs_int32);
2798 hcps = (afs_int32 *) malloc(hcps_len);
2799 assert(hcps != NULL);
2800 memcpy(hcps, host->hcps.prlist_val, hcps_len);
2801 iov[iovcnt].iov_base = (char *) hcps;
2802 iov[iovcnt].iov_len = hcps_len;
2806 if (hdsk.index > state->h_hdr->index_max)
2807 state->h_hdr->index_max = hdsk.index;
2809 hdr.len = sizeof(struct host_state_entry_header) +
2810 sizeof(struct hostDiskEntry) + if_len + hcps_len;
2811 hdr.magic = HOST_STATE_ENTRY_MAGIC;
2813 iov[0].iov_base = (char *) &hdr;
2814 iov[0].iov_len = sizeof(hdr);
2815 iov[1].iov_base = (char *) &hdsk;
2816 iov[1].iov_len = sizeof(struct hostDiskEntry);
2818 if (fs_stateWriteV(state, iov, iovcnt)) {
2819 ViceLog(0, ("h_stateSaveHost: failed to save host %d", host->index));
2823 fs_stateIncEOF(state, hdr.len);
2825 state->h_hdr->records++;
2833 return H_ENUMERATE_BAIL(held);
2838 /* restores a host from disk */
2840 h_stateRestoreHost(struct fs_dump_state * state)
2842 int ifp_len=0, hcps_len=0, bail=0;
2843 struct host_state_entry_header hdr;
2844 struct hostDiskEntry hdsk;
2845 struct host *host = NULL;
2846 struct Interface *ifp = NULL;
2847 afs_int32 * hcps = NULL;
2848 struct iovec iov[3];
2851 if (fs_stateRead(state, &hdr, sizeof(hdr))) {
2852 ViceLog(0, ("h_stateRestoreHost: failed to read host entry header from dump file '%s'\n",
2858 if (hdr.magic != HOST_STATE_ENTRY_MAGIC) {
2859 ViceLog(0, ("h_stateRestoreHost: fileserver state dump file '%s' is corrupt.\n",
2865 iov[0].iov_base = (char *) &hdsk;
2866 iov[0].iov_len = sizeof(struct hostDiskEntry);
2868 if (hdr.interfaces) {
2869 ifp_len = sizeof(struct Interface) +
2870 ((hdr.interfaces-1) * sizeof(struct AddrPort));
2871 ifp = (struct Interface *) malloc(ifp_len);
2872 assert(ifp != NULL);
2873 iov[iovcnt].iov_base = (char *) ifp;
2874 iov[iovcnt].iov_len = ifp_len;
2878 hcps_len = hdr.hcps * sizeof(afs_int32);
2879 hcps = (afs_int32 *) malloc(hcps_len);
2880 assert(hcps != NULL);
2881 iov[iovcnt].iov_base = (char *) hcps;
2882 iov[iovcnt].iov_len = hcps_len;
2886 if ((ifp_len + hcps_len + sizeof(hdsk) + sizeof(hdr)) != hdr.len) {
2887 ViceLog(0, ("h_stateRestoreHost: host entry header length fields are inconsistent\n"));
2892 if (fs_stateReadV(state, iov, iovcnt)) {
2893 ViceLog(0, ("h_stateRestoreHost: failed to read host entry\n"));
2898 if (!hdr.hcps && hdsk.hcps_valid) {
2899 /* valid, zero-length host cps ; does this ever happen? */
2900 hcps = (afs_int32 *) malloc(sizeof(afs_int32));
2901 assert(hcps != NULL);
2905 assert(host != NULL);
2908 host->interface = ifp;
2911 host->hcps.prlist_val = hcps;
2912 host->hcps.prlist_len = hdr.hcps;
2915 h_diskEntryToHost_r(&hdsk, host);
2916 h_SetupCallbackConn_r(host);
2920 for (i = ifp->numberOfInterfaces-1; i >= 0; i--) {
2922 h_AddHostToUuidHashTable_r(&ifp->uuid, host);
2924 h_AddHostToAddrHashTable_r(host->host, host->port, host);
2925 h_InsertList_r(host);
2927 /* setup host id map entry */
2928 state->h_map.entries[hdsk.index].old_idx = hdsk.index;
2929 state->h_map.entries[hdsk.index].new_idx = host->index;
2941 /* serialize a host structure to disk */
2943 h_hostToDiskEntry_r(struct host * in, struct hostDiskEntry * out)
2945 out->host = in->host;
2946 out->port = in->port;
2947 out->hostFlags = in->hostFlags;
2948 out->Console = in->Console;
2949 out->hcpsfailed = in->hcpsfailed;
2950 out->LastCall = in->LastCall;
2951 out->ActiveCall = in->ActiveCall;
2952 out->cpsCall = in->cpsCall;
2953 out->cblist = in->cblist;
2954 #ifdef FS_STATS_DETAILED
2955 out->InSameNetwork = in->InSameNetwork;
2958 /* special fields we save, but are not memcpy'd back on restore */
2959 out->index = in->index;
2960 out->hcps_len = in->hcps.prlist_len;
2961 out->hcps_valid = (in->hcps.prlist_val == NULL) ? 0 : 1;
2964 /* restore a host structure from disk */
2966 h_diskEntryToHost_r(struct hostDiskEntry * in, struct host * out)
2968 out->host = in->host;
2969 out->port = in->port;
2970 out->hostFlags = in->hostFlags;
2971 out->Console = in->Console;
2972 out->hcpsfailed = in->hcpsfailed;
2973 out->LastCall = in->LastCall;
2974 out->ActiveCall = in->ActiveCall;
2975 out->cpsCall = in->cpsCall;
2976 out->cblist = in->cblist;
2977 #ifdef FS_STATS_DETAILED
2978 out->InSameNetwork = in->InSameNetwork;
2982 /* index translation routines */
2984 h_OldToNew(struct fs_dump_state * state, afs_uint32 old, afs_uint32 * new)
2988 /* hosts use a zero-based index, so old==0 is valid */
2990 if (old >= state->h_map.len) {
2991 ViceLog(0, ("h_OldToNew: index %d is out of range\n", old));
2993 } else if (state->h_map.entries[old].old_idx != old) { /* sanity check */
2994 ViceLog(0, ("h_OldToNew: index %d points to an invalid host record\n", old));
2997 *new = state->h_map.entries[old].new_idx;
3003 #endif /* AFS_DEMAND_ATTACH_FS */
3007 * This counts the number of workstations, the number of active workstations,
3008 * and the number of workstations declared "down" (i.e. not heard from
3009 * recently). An active workstation has received a call since the cutoff
3010 * time argument passed.
3013 h_GetWorkStats(int *nump, int *activep, int *delp, afs_int32 cutofftime)
3015 register struct host *host;
3016 register int num = 0, active = 0, del = 0;
3019 for (host = hostList; host; host = host->next) {
3020 if (!(host->hostFlags & HOSTDELETED)) {
3022 if (host->ActiveCall > cutofftime)
3024 if (host->hostFlags & VENUSDOWN)
3036 } /*h_GetWorkStats */
3039 /*------------------------------------------------------------------------
3040 * PRIVATE h_ClassifyAddress
3043 * Given a target IP address and a candidate IP address (both
3044 * in host byte order), classify the candidate into one of three
3045 * buckets in relation to the target by bumping the counters passed
3049 * a_targetAddr : Target address.
3050 * a_candAddr : Candidate address.
3051 * a_sameNetOrSubnetP : Ptr to counter to bump when the two
3052 * addresses are either in the same network
3053 * or the same subnet.
3054 * a_diffSubnetP : ...when the candidate is in a different
3056 * a_diffNetworkP : ...when the candidate is in a different
3063 * The target and candidate addresses are both in host byte
3064 * order, NOT network byte order, when passed in.
3068 *------------------------------------------------------------------------*/
3071 h_ClassifyAddress(afs_uint32 a_targetAddr, afs_uint32 a_candAddr,
3072 afs_int32 * a_sameNetOrSubnetP, afs_int32 * a_diffSubnetP,
3073 afs_int32 * a_diffNetworkP)
3074 { /*h_ClassifyAddress */
3076 afs_uint32 targetNet;
3077 afs_uint32 targetSubnet;
3079 afs_uint32 candSubnet;
3082 * Put bad values into the subnet info to start with.
3084 targetSubnet = (afs_uint32) 0;
3085 candSubnet = (afs_uint32) 0;
3088 * Pull out the network and subnetwork numbers from the target
3089 * and candidate addresses. We can short-circuit this whole
3090 * affair if the target and candidate addresses are not of the
3093 if (IN_CLASSA(a_targetAddr)) {
3094 if (!(IN_CLASSA(a_candAddr))) {
3095 (*a_diffNetworkP)++;
3098 targetNet = a_targetAddr & IN_CLASSA_NET;
3099 candNet = a_candAddr & IN_CLASSA_NET;
3100 if (IN_SUBNETA(a_targetAddr))
3101 targetSubnet = a_targetAddr & IN_CLASSA_SUBNET;
3102 if (IN_SUBNETA(a_candAddr))
3103 candSubnet = a_candAddr & IN_CLASSA_SUBNET;
3104 } else if (IN_CLASSB(a_targetAddr)) {
3105 if (!(IN_CLASSB(a_candAddr))) {
3106 (*a_diffNetworkP)++;
3109 targetNet = a_targetAddr & IN_CLASSB_NET;
3110 candNet = a_candAddr & IN_CLASSB_NET;
3111 if (IN_SUBNETB(a_targetAddr))
3112 targetSubnet = a_targetAddr & IN_CLASSB_SUBNET;
3113 if (IN_SUBNETB(a_candAddr))
3114 candSubnet = a_candAddr & IN_CLASSB_SUBNET;
3115 } /*Class B target */
3116 else if (IN_CLASSC(a_targetAddr)) {
3117 if (!(IN_CLASSC(a_candAddr))) {
3118 (*a_diffNetworkP)++;
3121 targetNet = a_targetAddr & IN_CLASSC_NET;
3122 candNet = a_candAddr & IN_CLASSC_NET;
3125 * Note that class C addresses can't have subnets,
3126 * so we leave the defaults untouched.
3128 } /*Class C target */
3130 targetNet = a_targetAddr;
3131 candNet = a_candAddr;
3132 } /*Class D address */
3135 * Now, simply compare the extracted net and subnet values for
3136 * the two addresses (which at this point are known to be of the
3139 if (targetNet == candNet) {
3140 if (targetSubnet == candSubnet)
3141 (*a_sameNetOrSubnetP)++;
3145 (*a_diffNetworkP)++;
3147 } /*h_ClassifyAddress */
3150 /*------------------------------------------------------------------------
3151 * EXPORTED h_GetHostNetStats
3154 * Iterate through the host table, and classify each (non-deleted)
3155 * host entry into ``proximity'' categories (same net or subnet,
3156 * different subnet, different network).
3159 * a_numHostsP : Set to total number of (non-deleted) hosts.
3160 * a_sameNetOrSubnetP : Set to # hosts on same net/subnet as server.
3161 * a_diffSubnetP : Set to # hosts on diff subnet as server.
3162 * a_diffNetworkP : Set to # hosts on diff network as server.
3168 * We only count non-deleted hosts. The storage pointed to by our
3169 * parameters is zeroed upon entry.
3173 *------------------------------------------------------------------------*/
3176 h_GetHostNetStats(afs_int32 * a_numHostsP, afs_int32 * a_sameNetOrSubnetP,
3177 afs_int32 * a_diffSubnetP, afs_int32 * a_diffNetworkP)
3178 { /*h_GetHostNetStats */
3180 register struct host *hostP; /*Ptr to current host entry */
3181 register afs_uint32 currAddr_HBO; /*Curr host addr, host byte order */
3184 * Clear out the storage pointed to by our parameters.
3186 *a_numHostsP = (afs_int32) 0;
3187 *a_sameNetOrSubnetP = (afs_int32) 0;
3188 *a_diffSubnetP = (afs_int32) 0;
3189 *a_diffNetworkP = (afs_int32) 0;
3192 for (hostP = hostList; hostP; hostP = hostP->next) {
3193 if (!(hostP->hostFlags & HOSTDELETED)) {
3195 * Bump the number of undeleted host entries found.
3196 * In classifying the current entry's address, make
3197 * sure to first convert to host byte order.
3200 currAddr_HBO = (afs_uint32) ntohl(hostP->host);
3201 h_ClassifyAddress(FS_HostAddr_HBO, currAddr_HBO,
3202 a_sameNetOrSubnetP, a_diffSubnetP,
3204 } /*Only look at non-deleted hosts */
3205 } /*For each host record hashed to this index */
3207 } /*h_GetHostNetStats */
3209 static afs_uint32 checktime;
3210 static afs_uint32 clientdeletetime;
3211 static struct AFSFid zerofid;
3215 * XXXX: This routine could use Multi-Rx to avoid serializing the timeouts.
3216 * Since it can serialize them, and pile up, it should be a separate LWP
3217 * from other events.
3220 CheckHost(register struct host *host, int held)
3222 register struct client *client;
3223 struct rx_connection *cb_conn = NULL;
3226 #ifdef AFS_DEMAND_ATTACH_FS
3227 /* kill the checkhost lwp ASAP during shutdown */
3229 if (fs_state.mode == FS_MODE_SHUTDOWN) {
3231 return H_ENUMERATE_BAIL(held);
3236 /* Host is held by h_Enumerate */
3238 for (client = host->FirstClient; client; client = client->next) {
3239 if (client->refCount == 0 && client->LastCall < clientdeletetime) {
3240 client->deleted = 1;
3241 host->hostFlags |= CLIENTDELETED;
3244 if (host->LastCall < checktime) {
3246 host->hostFlags |= HWHO_INPROGRESS;
3247 if (!(host->hostFlags & HOSTDELETED)) {
3248 cb_conn = host->callback_rxcon;
3249 rx_GetConnection(cb_conn);
3250 if (host->LastCall < clientdeletetime) {
3251 host->hostFlags |= HOSTDELETED;
3252 if (!(host->hostFlags & VENUSDOWN)) {
3253 host->hostFlags &= ~ALTADDR; /* alternate address invalid */
3254 if (host->interface) {
3257 RXAFSCB_InitCallBackState3(cb_conn,
3263 RXAFSCB_InitCallBackState(cb_conn);
3266 host->hostFlags |= ALTADDR; /* alternate addresses valid */
3269 (void)afs_inet_ntoa_r(host->host, hoststr);
3271 ("CB: RCallBackConnectBack (host.c) failed for host %s:%d\n",
3272 hoststr, ntohs(host->port)));
3273 host->hostFlags |= VENUSDOWN;
3275 /* Note: it's safe to delete hosts even if they have call
3276 * back state, because break delayed callbacks (called when a
3277 * message is received from the workstation) will always send a
3278 * break all call backs to the workstation if there is no
3283 if (!(host->hostFlags & VENUSDOWN) && host->cblist) {
3285 (void)afs_inet_ntoa_r(host->host, hoststr);
3286 if (host->interface) {
3287 afsUUID uuid = host->interface->uuid;
3289 code = RXAFSCB_ProbeUuid(cb_conn, &uuid);
3292 if (MultiProbeAlternateAddress_r(host)) {
3293 ViceLog(0,("CheckHost: Probing all interfaces of host %s:%d failed, code %d\n",
3294 hoststr, ntohs(host->port), code));
3295 host->hostFlags |= VENUSDOWN;
3300 code = RXAFSCB_Probe(cb_conn);
3304 ("CheckHost: Probe failed for host %s:%d, code %d\n",
3305 hoststr, ntohs(host->port), code));
3306 host->hostFlags |= VENUSDOWN;
3312 rx_PutConnection(cb_conn);
3316 host->hostFlags &= ~HWHO_INPROGRESS;
3325 CheckHost_r(register struct host *host, int held, char *dummy)
3327 register struct client *client;
3328 struct rx_connection *cb_conn = NULL;
3331 /* Host is held by h_Enumerate_r */
3332 for (client = host->FirstClient; client; client = client->next) {
3333 if (client->refCount == 0 && client->LastCall < clientdeletetime) {
3334 client->deleted = 1;
3335 host->hostFlags |= CLIENTDELETED;
3338 if (host->LastCall < checktime) {
3340 if (!(host->hostFlags & HOSTDELETED)) {
3341 cb_conn = host->callback_rxcon;
3342 rx_GetConnection(cb_conn);
3343 if (host->LastCall < clientdeletetime) {
3344 host->hostFlags |= HOSTDELETED;
3345 if (!(host->hostFlags & VENUSDOWN)) {
3346 host->hostFlags &= ~ALTADDR; /* alternate address invalid */
3347 if (host->interface) {
3350 RXAFSCB_InitCallBackState3(cb_conn,
3356 RXAFSCB_InitCallBackState(cb_conn);
3359 host->hostFlags |= ALTADDR; /* alternate addresses valid */
3362 (void)afs_inet_ntoa_r(host->host, hoststr);
3364 ("CB: RCallBackConnectBack (host.c) failed for host %s:%d\n",
3365 hoststr, ntohs(host->port)));
3366 host->hostFlags |= VENUSDOWN;
3368 /* Note: it's safe to delete hosts even if they have call
3369 * back state, because break delayed callbacks (called when a
3370 * message is received from the workstation) will always send a
3371 * break all call backs to the workstation if there is no
3376 if (!(host->hostFlags & VENUSDOWN) && host->cblist) {
3378 (void)afs_inet_ntoa_r(host->host, hoststr);
3379 if (host->interface) {
3380 afsUUID uuid = host->interface->uuid;
3382 code = RXAFSCB_ProbeUuid(cb_conn, &uuid);
3385 if (MultiProbeAlternateAddress_r(host)) {
3386 ViceLog(0,("CheckHost_r: Probing all interfaces of host %s:%d failed, code %d\n",
3387 hoststr, ntohs(host->port), code));
3388 host->hostFlags |= VENUSDOWN;
3393 code = RXAFSCB_Probe(cb_conn);
3397 ("CheckHost_r: Probe failed for host %s:%d, code %d\n",
3398 hoststr, ntohs(host->port), code));
3399 host->hostFlags |= VENUSDOWN;
3405 rx_PutConnection(cb_conn);
3417 * Set VenusDown for any hosts that have not had a call in 15 minutes and
3418 * don't respond to a probe. Note that VenusDown can only be cleared if
3419 * a message is received from the host (see ServerLWP in file.c).
3420 * Delete hosts that have not had any calls in 1 hour, clients that
3421 * have not had any calls in 15 minutes.
3423 * This routine is called roughly every 5 minutes.
3428 afs_uint32 now = FT_ApproxTime();
3430 memset((char *)&zerofid, 0, sizeof(zerofid));
3432 * Send a probe to the workstation if it hasn't been heard from in
3435 checktime = now - 15 * 60;
3436 clientdeletetime = now - 120 * 60; /* 2 hours ago */
3439 h_Enumerate_r(CheckHost_r, hostList, NULL);
3444 * This is called with host locked and held. At this point, the
3445 * hostAddrHashTable should not have any entries for the alternate
3446 * interfaces. This function has to insert these entries in the
3447 * hostAddrHashTable.
3449 * The addresses in the interfaceAddr list are in host byte order.
3452 initInterfaceAddr_r(struct host *host, struct interfaceAddr *interf)
3459 struct Interface *interface;
3462 afs_uint16 port7001 = htons(7001);
3467 number = interf->numberOfInterfaces;
3468 myAddr = host->host; /* current interface address */
3469 myPort = host->port; /* current port */
3472 ("initInterfaceAddr : host %s:%d numAddr %d\n",
3473 afs_inet_ntoa_r(myAddr, hoststr), ntohs(myPort), number));
3475 /* validation checks */
3476 if (number < 0 || number > AFS_MAX_INTERFACE_ADDR) {
3478 ("Invalid number of alternate addresses is %d\n", number));
3483 * The client's notion of its own IP addresses is not reliable.
3485 * 1. The client list might contain private address ranges which
3486 * are likely to be re-used by many clients allocated addresses
3489 * 2. The client list will not include any public addresses that
3490 * are hidden by a NAT.
3492 * 3. Private address ranges that are exposed to the server will
3493 * be obtained from the rx connections that use them.
3495 * 4. Lists provided by the client are not necessarily truthful.
3496 * Many existing clients (UNIX) do not refresh the IP address
3497 * list as the actual assigned addresses change. The end result
3498 * is that they report the initial address list for the lifetime
3499 * of the process. In other words, a client can report addresses
3500 * that they are in fact not using. Adding these addresses to
3501 * the host interface list without verification is not only
3502 * pointless, it is downright dangerous.
3504 * We therefore do not add alternate addresses to the addr hash table.
3505 * We only use them for multi-rx callback breaks.
3509 * Convert IP addresses to network byte order, and remove
3510 * duplicate IP addresses from the interface list, and
3511 * determine whether or not the incoming addr/port is
3512 * listed. Note that if the address matches it is not
3513 * truly a match because the port number for the entries
3514 * in the interface list are port 7001 and the port number
3515 * for this connection might not be 7001.
3517 for (i = 0, count = 0, found = 0; i < number; i++) {
3518 interf->addr_in[i] = htonl(interf->addr_in[i]);
3519 for (j = 0; j < count; j++) {
3520 if (interf->addr_in[j] == interf->addr_in[i])
3524 interf->addr_in[count] = interf->addr_in[i];
3525 if (interf->addr_in[count] == myAddr &&
3533 * Allocate and initialize an interface structure for this host.
3536 interface = (struct Interface *)
3537 malloc(sizeof(struct Interface) +
3538 (sizeof(struct AddrPort) * (count - 1)));
3540 ViceLog(0, ("Failed malloc in initInterfaceAddr_r 1\n"));
3543 interface->numberOfInterfaces = count;
3545 interface = (struct Interface *)
3546 malloc(sizeof(struct Interface) + (sizeof(struct AddrPort) * count));
3548 ViceLog(0, ("Failed malloc in initInterfaceAddr_r 2\n"));
3551 interface->numberOfInterfaces = count + 1;
3552 interface->interface[count].addr = myAddr;
3553 interface->interface[count].port = myPort;
3554 interface->interface[count].valid = 1;
3557 for (i = 0; i < count; i++) {
3559 interface->interface[i].addr = interf->addr_in[i];
3560 /* We store the port as 7001 because the addresses reported by
3561 * TellMeAboutYourself and WhoAreYou RPCs are only valid if they
3562 * are coming from fully connected hosts (no NAT/PATs)
3564 interface->interface[i].port = port7001;
3565 interface->interface[i].valid = 1; /* valid until a conflict is found */
3568 interface->uuid = interf->uuid;
3570 assert(!host->interface);
3571 host->interface = interface;
3573 afsUUID_to_string(&interface->uuid, uuidstr, 127);
3575 ViceLog(125, ("--- uuid %s\n", uuidstr));
3576 for (i = 0; i < host->interface->numberOfInterfaces; i++) {
3577 ViceLog(125, ("--- alt address %s:%d\n",
3578 afs_inet_ntoa_r(host->interface->interface[i].addr, hoststr),
3579 ntohs(host->interface->interface[i].port)));
3585 /* deleted a HashChain structure for this address and host */
3586 /* returns 1 on success */
3588 h_DeleteHostFromAddrHashTable_r(afs_uint32 addr, afs_uint16 port, struct host *host)
3591 register struct h_AddrHashChain **hp, *th;
3593 for (hp = &hostAddrHashTable[h_HashIndex(addr)]; (th = *hp);) {
3594 assert(th->hostPtr);