/* BLURB lgpl Coda File System Release 5 Copyright (c) 1987-1999 Carnegie Mellon University Additional copyrights listed below This code is distributed "AS IS" without warranty of any kind under the terms of the GNU Library General Public Licence Version 2, as shown in the file LICENSE. The technical and financial contributors to Coda are listed in the file CREDITS. Additional copyrights #*/ /* IBM COPYRIGHT NOTICE Copyright (C) 1986 International Business Machines Corporation All Rights Reserved This file contains some code identical to or derived from the 1986 version of the Andrew File System ("AFS"), which is owned by the IBM Corporation. This code is provided "AS IS" and IBM does not warrant that it is free of infringement of any intellectual rights of any third party. IBM disclaims liability of any kind for any damages whatsoever resulting directly or indirectly from use of this software or of any derivative work. Carnegie Mellon University has obtained permission to modify, distribute and sublicense this code, which is based on Version 2 of AFS and does not contain the features and enhancements that are part of Version 3 of AFS. Version 3 of AFS is commercially available and supported by Transarc Corporation, Pittsburgh, PA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include "rpc2.private.h" /* HASHLENGTH should be a power of two, because we use modulo HASHLENGTH-1 to * find the appropriate hash bucket */ #define HASHLENGTH 512 /* the hash table of size HASHLEN buckets */ static struct dllist_head HashTable[HASHLENGTH]; /* The basic connection abstraction */ DLLIST_HEAD(rpc2_ConnList); /* active connections */ DLLIST_HEAD(rpc2_ConnFreeList); /* free connection blocks */ int rpc2_InitConn(void) { int i; /* safety check, never initialize twice */ if (rpc2_ConnCount != -1) return 0; for (i = 0; i < HASHLENGTH; i++) { list_head_init(&HashTable[i]); } rpc2_ConnCount = rpc2_ConnFreeCount = rpc2_ConnCreationCount = 0; return 1; } /* Returns pointer to the connection data structure corresponding to whichHandle. Returns NULL if whichHandle does not refer to an existing connection. */ struct CEntry *__rpc2_GetConn(RPC2_Handle handle) { uint32_t i; struct dllist_head *ptr; struct CEntry *ceaddr; if (handle == 0) return(NULL); /* bucket is handle modulo HASHLENGTH */ i = handle & (HASHLENGTH-1); /* and walk the chain */ for (ptr = HashTable[i].next; ptr != &HashTable[i]; ptr = ptr->next) { /* compare the entry to our handle */ ceaddr = list_entry(ptr, struct CEntry, Chain); assert(ceaddr->MagicNumber == OBJ_CENTRY); if (ceaddr->UniqueCID == handle) return ceaddr; } return (NULL); } static void __rehash_ce(struct CEntry *ce) { uint32_t i = ce->UniqueCID & (HASHLENGTH-1); list_del(&ce->Chain); list_add(&ce->Chain, &HashTable[i]); /* keep the grim reaper out */ ce->LastRef = time(NULL); } struct CEntry *rpc2_GetConn(RPC2_Handle handle) { struct CEntry *ceaddr = __rpc2_GetConn(handle); /* we are likely to see more lookups for this CEntry, so put it at * the front of the hash lookup chain */ if (ceaddr) __rehash_ce(ceaddr); return (ceaddr); } /* Allocates a new handle corresponding to ceaddr, and sets the UniqueCID field of ceaddr. */ static void Uniquefy(IN struct CEntry *ceaddr) { RPC2_Integer handle; uint32_t index; /* secure_random_bytes will return int's up to 2^32 and effectively we will * have broken down before we use this many entries on either the time it * takes to find an available handle, or the memory usage. Still, I don't * want this function to get stuck into an endless search. --JH */ assert(rpc2_ConnCount < (INT_MAX >> 1)); /* 50% utilization */ /* this might take some time once we get a lot of used handles. But even * with a `full' table (within the constraint above), we should, on * average, find a free handle after walking two chains. Advice for those * who are afraid of long bucket chain lookups: increase HASHLENGTH */ while(1) { secure_random_bytes(&handle, sizeof(handle)); /* ignore any handles < 256 which have special meaning */ handle = abs(handle); if (handle < 256) continue; if (__rpc2_GetConn(handle) == NULL) break; } /* set the handle */ ceaddr->UniqueCID = handle; /* add to the bucket */ index = handle & (HASHLENGTH-1); list_add(&ceaddr->Chain, &HashTable[index]); } struct CEntry *rpc2_getFreeConn() { struct CEntry *ce; if (list_empty(&rpc2_ConnFreeList)) { /* allocate a new conn entry */ ce = (struct CEntry *)malloc(sizeof(struct CEntry)); assert(ce || "failed to allocate conn entry"); rpc2_ConnCreationCount++; } else { /* grab a conn entry off the freelist */ struct dllist_head *tmp = rpc2_ConnFreeList.prev; ce = list_entry(tmp, struct CEntry, connlist); list_del(tmp); rpc2_ConnFreeCount--; assert(ce->MagicNumber == OBJ_FREE_CENTRY); } ce->MagicNumber = OBJ_CENTRY; list_add(&ce->connlist, &rpc2_ConnList); rpc2_ConnCount++; return ce; } struct CEntry *rpc2_AllocConn(struct RPC2_addrinfo *addr) { struct CEntry *ce; rpc2_AllocConns++; ce = rpc2_getFreeConn(); /* Initialize */ ce->State = 0; ce->UniqueCID = 0; ce->NextSeqNumber = 0; ce->SubsysId = 0; list_head_init(&ce->Chain); ce->Flags = 0; ce->SecurityLevel = 0; memset(&ce->SessionKey, 0, sizeof(RPC2_EncryptionKey)); ce->EncryptionType = 0; ce->PeerHandle = 0; ce->PeerUnique = 0; ce->LastRef = time(NULL); ce->SEProcs = NULL; ce->sebroken = 0; ce->Mgrp = (struct MEntry *)NULL; ce->PrivatePtr = NULL; ce->SideEffectPtr = NULL; ce->Color = 0; ce->KeepAlive = KeepAlive; ce->SaveResponse.tv_usec = (2 * KeepAlive.tv_usec) % 1000000; ce->SaveResponse.tv_sec = (2 * KeepAlive.tv_usec) / 1000000; ce->SaveResponse.tv_sec += 2 * KeepAlive.tv_sec; ce->MySl = NULL; ce->HeldPacket = NULL; ce->reqsize = 0; ce->HostInfo = rpc2_GetHost(addr); assert(ce->HostInfo); ce->Filter.FromWhom = ANY; ce->Filter.OldOrNew = OLDORNEW; /* initialize security association */ memset(&ce->sa, 0, sizeof(struct security_association)); memcpy(&ce->sa.peer, addr->ai_addr, addr->ai_addrlen); ce->sa.peerlen = addr->ai_addrlen; /* Then make it unique */ Uniquefy(ce); ce->sa.recv_spi = ce->UniqueCID; return(ce); } /* Frees the connection whichConn */ void rpc2_FreeConn(RPC2_Handle whichConn) { long i; RPC2_PacketBuffer *pb; struct CEntry *ce; ce = __rpc2_GetConn(whichConn); assert(ce && ce->MagicNumber == OBJ_CENTRY); rpc2_FreeConns++; if (ce->HeldPacket != NULL) RPC2_FreeBuffer(&ce->HeldPacket); if (ce->MySl != NULL) { rpc2_DeactivateSle(ce->MySl); rpc2_FreeSle(&ce->MySl); } /* Scan the hold queue and purge the request for this connection */ pb=rpc2_PBHoldList; for (i = 0; i < rpc2_PBHoldCount; i++) { if (pb->Header.RemoteHandle == ce->UniqueCID) { say(9, RPC2_DebugLevel, "Purging request from hold queue\n"); rpc2_UnholdPacket(pb); RPC2_FreeBuffer(&pb); break; /* there can be at most one in hold queue (RPC) */ } } list_del(&ce->Chain); rpc2_FreeHost(&ce->HostInfo); SetRole(ce, FREE); /* clear encryption state */ secure_setup_encrypt(0, &ce->sa, NULL, NULL, NULL, 0); secure_setup_decrypt(0, &ce->sa, NULL, NULL, NULL, 0); /* move the conn entry over to the freelist */ list_del(&ce->connlist); assert(ce->MagicNumber == OBJ_CENTRY); ce->MagicNumber = OBJ_FREE_CENTRY; list_add(&ce->connlist, &rpc2_ConnFreeList); rpc2_ConnCount--; rpc2_ConnFreeCount++; } /* Reap connections that have not seen any activity in the past 15 minutes */ #define RPC2_DEAD_CONN_TIMEOUT 900 void rpc2_ReapDeadConns(void) { struct dllist_head *entry, *next; struct CEntry *ce; time_t now; now = time(NULL); for (entry = rpc2_ConnList.next; entry != &rpc2_ConnList; entry = next) { next = entry->next; ce = list_entry(entry, struct CEntry, connlist); assert(ce->MagicNumber == OBJ_CENTRY); if (!ce->PrivatePtr && TestRole(ce, SERVER) && ce->LastRef + RPC2_DEAD_CONN_TIMEOUT < now) { say(1, RPC2_DebugLevel, "Reaping dead connection %#x\n", ce->UniqueCID); RPC2_Unbind(ce->UniqueCID); } } } void rpc2_SetConnError(IN struct CEntry *ce) { assert (ce->MagicNumber == OBJ_CENTRY); if (TestRole(ce, SERVER)) SetState(ce, S_HARDERROR); else SetState(ce, C_HARDERROR); /* RC should be LWP_SUCCESS or LWP_ENOWAIT */ LWP_NoYieldSignal((char *)ce); } /* Code to Map Retried Bind Requests to Existing Connections */ /* All packets other than Init1 requests have a LocalHandle field which is valid. On Init1 we do not have a local handle yet. Each Init1 packet and its retries have a truly random Uniquefier, generated by the client. The retries also have the RETRY bit set in the packet headers. The triple (Host,Port,Uniquefier) is totally unique even across client reboots. In the worst case the mapping involves a linear search of the connection list. With 1000 connections this took about 60 milliseconds on a SUN2. In practice, many of these connections will not be server-end connections so the test will be shorter. However, to speed up the lookup we use a trivial LRU cache of recent bind completions. The RBCache is essentially a way to focus attention on a small subset of the entire connection list. To conserve storage we allocate the RBCache only if the number of connections exceeds a certain threshold. Setting RPC2_Small suppresses the RBCache mechanism altogether. If this doesn't work well enough we may have to go to a hash table data structure that maps each (host, port, uniquefier) triple to a connection handle. That will almost certainly be more complex to build and maintain. */ struct RecentBind { struct RPC2_addrinfo *addr; /* Remote Host */ RPC2_Integer Unique; /* Uniquefier value in Init1 packet */ RPC2_Handle RemoteHandle; /* Remote handle for this connection */ RPC2_Handle MyConn; /* Local handle allocated for this connection */ }; #define RBSIZE 300 /* max size of RBCache for large RPC */ #define RBCACHE_THRESHOLD 50 /* RBCache never used for less than RBCACHE_TRESHOLD connections */ static struct RecentBind *RBCache; /* Wraps around; reused in LRU order. Conditionally allocated. */ static int RBWrapped = 0; /* RBCache is full and has wrapped around */ static int NextRB = 0; /* Index of entry to be used for the next bind */ static int RBCacheOn = 0; /* 0 = RBCacheOff, 1 = RBCacheOn */ /* Adds information about a new bind to the RBCache; throws out the oldest entry if needed */ void rpc2_NoteBinding(struct RPC2_addrinfo *addr, RPC2_Handle RemoteHandle, RPC2_Integer whichUnique, RPC2_Handle whichConn) { if (rpc2_ConnCount <= RBCACHE_THRESHOLD) return; if (!RBCacheOn) { /* first use of RBCache- must allocate cache */ RBCache = (struct RecentBind *) malloc(RBSIZE * sizeof(struct RecentBind)); memset(RBCache, 0, RBSIZE * sizeof(struct RecentBind)); RBCacheOn = 1; } if (RBCache[NextRB].addr) RPC2_freeaddrinfo(RBCache[NextRB].addr); RBCache[NextRB].addr = RPC2_copyaddrinfo(addr); RBCache[NextRB].Unique = whichUnique; RBCache[NextRB].RemoteHandle = RemoteHandle; RBCache[NextRB].MyConn = whichConn; NextRB++; if (NextRB >= RBSIZE) { RBWrapped = 1; NextRB = 0; } } /* Identifies the connection corr to (whichHost, whichPort) with uniquefier whichUnique, if it exists. Returns the address of the connection block, or NULL if no such binding exists. The code first looks in RBCache[] and if that fails, it walks the connection list. */ struct CEntry * rpc2_ConnFromBindInfo(struct RPC2_addrinfo *addr, RPC2_Handle RemoteHandle, RPC2_Integer whichUnique) { struct RecentBind *rbn; int next, count; struct CEntry *ce; struct dllist_head *ptr; int i, j = 0; /* If RBCache is being used, check it first; search it backwards, * to increase chances of hit on recent binds. */ if (RBCacheOn) { next = (NextRB == 0) ? RBSIZE - 1 : NextRB - 1; if (RBWrapped) count = RBSIZE; else count = NextRB; i = 0; while (i < count) { rbn = &RBCache[next]; /* do cheapest tests first */ if (rbn->RemoteHandle == RemoteHandle && rbn->Unique == whichUnique && RPC2_cmpaddrinfo(rbn->addr, addr)) { say(1, RPC2_DebugLevel, "RBCache hit after %d tries\n", i+1); ce = rpc2_GetConn(rbn->MyConn); /* can't test the state because OPENKIMONO connections * will already be in S_AWAITREQUEST state */ if (ce /* && TestState(ce, SERVER, S_STARTBIND) */) return ce; } /* Else bump counters and try previous one */ i++; if (next == 0) next = RBSIZE - 1; else next--; } say(1, RPC2_DebugLevel, "RBCache miss after %d tries\n", RBSIZE); } /* It was not in the RBCache; scan all the connections */ /* XXX what we probably want to do is first find a host matching the * current addr, and then drill down to the right connection entry. * However, this code just walks all connections -JH */ for (ptr = rpc2_ConnList.next; ptr != &rpc2_ConnList; ptr = ptr->next) { ce = list_entry(ptr, struct CEntry, connlist); assert(ce->MagicNumber == OBJ_CENTRY); j++; /* count # searched connections */ /* do cheapest test first */ if (ce->PeerHandle == RemoteHandle && ce->PeerUnique == whichUnique && (TestState(ce, SERVER, S_STARTBIND) || TestState(ce, SERVER, S_AWAITINIT3)) && RPC2_cmpaddrinfo(ce->HostInfo->Addr, addr)) { say(1, RPC2_DebugLevel, "Match after searching %d connection entries\n", j); /* and put the CE at the head of it's hashbucket */ __rehash_ce(ce); return(ce); } } say(1, RPC2_DebugLevel, "No match after searching %ld connections\n", rpc2_ConnCount); return(NULL); }