1c398230bSWarner Losh /*- 297d8d152SAndre Oppermann * Copyright (c) 2002 Andre Oppermann, Internet Business Solutions AG 397d8d152SAndre Oppermann * All rights reserved. 497d8d152SAndre Oppermann * 597d8d152SAndre Oppermann * Redistribution and use in source and binary forms, with or without 697d8d152SAndre Oppermann * modification, are permitted provided that the following conditions 797d8d152SAndre Oppermann * are met: 897d8d152SAndre Oppermann * 1. Redistributions of source code must retain the above copyright 997d8d152SAndre Oppermann * notice, this list of conditions and the following disclaimer. 1097d8d152SAndre Oppermann * 2. Redistributions in binary form must reproduce the above copyright 1197d8d152SAndre Oppermann * notice, this list of conditions and the following disclaimer in the 1297d8d152SAndre Oppermann * documentation and/or other materials provided with the distribution. 1397d8d152SAndre Oppermann * 3. The name of the author may not be used to endorse or promote 1497d8d152SAndre Oppermann * products derived from this software without specific prior written 1597d8d152SAndre Oppermann * permission. 1697d8d152SAndre Oppermann * 1797d8d152SAndre Oppermann * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 1897d8d152SAndre Oppermann * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1997d8d152SAndre Oppermann * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2097d8d152SAndre Oppermann * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 2197d8d152SAndre Oppermann * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2297d8d152SAndre Oppermann * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2397d8d152SAndre Oppermann * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2497d8d152SAndre Oppermann * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2597d8d152SAndre Oppermann * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2697d8d152SAndre Oppermann * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2797d8d152SAndre Oppermann * SUCH DAMAGE. 2897d8d152SAndre Oppermann */ 2997d8d152SAndre Oppermann 3097d8d152SAndre Oppermann /* 31e487a5e2SRobert Watson * The tcp_hostcache moves the tcp-specific cached metrics from the routing 32e487a5e2SRobert Watson * table to a dedicated structure indexed by the remote IP address. It keeps 33e487a5e2SRobert Watson * information on the measured TCP parameters of past TCP sessions to allow 34e487a5e2SRobert Watson * better initial start values to be used with later connections to/from the 3597d8d152SAndre Oppermann * same source. Depending on the network parameters (delay, bandwidth, max 36e487a5e2SRobert Watson * MTU, congestion window) between local and remote sites, this can lead to 37e487a5e2SRobert Watson * significant speed-ups for new TCP connections after the first one. 3897d8d152SAndre Oppermann * 39e487a5e2SRobert Watson * Due to the tcp_hostcache, all TCP-specific metrics information in the 40003c7e36SRui Paulo * routing table have been removed. The inpcb no longer keeps a pointer to 41e487a5e2SRobert Watson * the routing entry, and protocol-initiated route cloning has been removed 42e487a5e2SRobert Watson * as well. With these changes, the routing table has gone back to being 43e487a5e2SRobert Watson * more lightwight and only carries information related to packet forwarding. 4497d8d152SAndre Oppermann * 45e487a5e2SRobert Watson * tcp_hostcache is designed for multiple concurrent access in SMP 46e487a5e2SRobert Watson * environments and high contention. All bucket rows have their own lock and 47e487a5e2SRobert Watson * thus multiple lookups and modifies can be done at the same time as long as 48e487a5e2SRobert Watson * they are in different bucket rows. If a request for insertion of a new 49e487a5e2SRobert Watson * record can't be satisfied, it simply returns an empty structure. Nobody 50e487a5e2SRobert Watson * and nothing outside of tcp_hostcache.c will ever point directly to any 51e487a5e2SRobert Watson * entry in the tcp_hostcache. All communication is done in an 52e487a5e2SRobert Watson * object-oriented way and only functions of tcp_hostcache will manipulate 53e487a5e2SRobert Watson * hostcache entries. Otherwise, we are unable to achieve good behaviour in 54e487a5e2SRobert Watson * concurrent access situations. Since tcp_hostcache is only caching 55e487a5e2SRobert Watson * information, there are no fatal consequences if we either can't satisfy 56e487a5e2SRobert Watson * any particular request or have to drop/overwrite an existing entry because 57e487a5e2SRobert Watson * of bucket limit memory constrains. 5897d8d152SAndre Oppermann */ 5997d8d152SAndre Oppermann 6097d8d152SAndre Oppermann /* 6197d8d152SAndre Oppermann * Many thanks to jlemon for basic structure of tcp_syncache which is being 6297d8d152SAndre Oppermann * followed here. 6397d8d152SAndre Oppermann */ 6497d8d152SAndre Oppermann 654b421e2dSMike Silbersack #include <sys/cdefs.h> 664b421e2dSMike Silbersack __FBSDID("$FreeBSD$"); 674b421e2dSMike Silbersack 6897d8d152SAndre Oppermann #include "opt_inet6.h" 6997d8d152SAndre Oppermann 7097d8d152SAndre Oppermann #include <sys/param.h> 7197d8d152SAndre Oppermann #include <sys/systm.h> 7297d8d152SAndre Oppermann #include <sys/kernel.h> 7397d8d152SAndre Oppermann #include <sys/lock.h> 7497d8d152SAndre Oppermann #include <sys/mutex.h> 7597d8d152SAndre Oppermann #include <sys/malloc.h> 76002d4558SJohn Baldwin #include <sys/sbuf.h> 7797d8d152SAndre Oppermann #include <sys/socket.h> 7897d8d152SAndre Oppermann #include <sys/socketvar.h> 7997d8d152SAndre Oppermann #include <sys/sysctl.h> 8097d8d152SAndre Oppermann 8197d8d152SAndre Oppermann #include <net/if.h> 8276039bc8SGleb Smirnoff #include <net/if_var.h> 835736e6fbSBjoern A. Zeeb #include <net/route.h> 84530c0060SRobert Watson #include <net/vnet.h> 8597d8d152SAndre Oppermann 8697d8d152SAndre Oppermann #include <netinet/in.h> 8797d8d152SAndre Oppermann #include <netinet/in_systm.h> 8897d8d152SAndre Oppermann #include <netinet/ip.h> 8997d8d152SAndre Oppermann #include <netinet/in_var.h> 9097d8d152SAndre Oppermann #include <netinet/in_pcb.h> 9197d8d152SAndre Oppermann #include <netinet/ip_var.h> 9297d8d152SAndre Oppermann #ifdef INET6 9397d8d152SAndre Oppermann #include <netinet/ip6.h> 9497d8d152SAndre Oppermann #include <netinet6/ip6_var.h> 9597d8d152SAndre Oppermann #endif 9697d8d152SAndre Oppermann #include <netinet/tcp.h> 9797d8d152SAndre Oppermann #include <netinet/tcp_var.h> 984b79449eSBjoern A. Zeeb #include <netinet/tcp_hostcache.h> 9997d8d152SAndre Oppermann #ifdef INET6 10097d8d152SAndre Oppermann #include <netinet6/tcp6_var.h> 10197d8d152SAndre Oppermann #endif 10297d8d152SAndre Oppermann 10397d8d152SAndre Oppermann #include <vm/uma.h> 10497d8d152SAndre Oppermann 10597d8d152SAndre Oppermann /* Arbitrary values */ 10697d8d152SAndre Oppermann #define TCP_HOSTCACHE_HASHSIZE 512 10797d8d152SAndre Oppermann #define TCP_HOSTCACHE_BUCKETLIMIT 30 10897d8d152SAndre Oppermann #define TCP_HOSTCACHE_EXPIRE 60*60 /* one hour */ 10997d8d152SAndre Oppermann #define TCP_HOSTCACHE_PRUNE 5*60 /* every 5 minutes */ 11097d8d152SAndre Oppermann 1113e288e62SDimitry Andric static VNET_DEFINE(struct tcp_hostcache, tcp_hostcache); 1121e77c105SRobert Watson #define V_tcp_hostcache VNET(tcp_hostcache) 11382cea7e6SBjoern A. Zeeb 1143e288e62SDimitry Andric static VNET_DEFINE(struct callout, tcp_hc_callout); 1151e77c105SRobert Watson #define V_tcp_hc_callout VNET(tcp_hc_callout) 11697d8d152SAndre Oppermann 11797d8d152SAndre Oppermann static struct hc_metrics *tcp_hc_lookup(struct in_conninfo *); 11897d8d152SAndre Oppermann static struct hc_metrics *tcp_hc_insert(struct in_conninfo *); 11997d8d152SAndre Oppermann static int sysctl_tcp_hc_list(SYSCTL_HANDLER_ARGS); 120fffb9f1dSBjoern A. Zeeb static void tcp_hc_purge_internal(int); 12197d8d152SAndre Oppermann static void tcp_hc_purge(void *); 12297d8d152SAndre Oppermann 1236472ac3dSEd Schouten static SYSCTL_NODE(_net_inet_tcp, OID_AUTO, hostcache, CTLFLAG_RW, 0, 1240eb7cf4dSBrooks Davis "TCP Host cache"); 12597d8d152SAndre Oppermann 1266df8a710SGleb Smirnoff SYSCTL_UINT(_net_inet_tcp_hostcache, OID_AUTO, cachelimit, CTLFLAG_VNET | CTLFLAG_RDTUN, 127eddfbb76SRobert Watson &VNET_NAME(tcp_hostcache.cache_limit), 0, 1288b615593SMarko Zec "Overall entry limit for hostcache"); 12997d8d152SAndre Oppermann 1306df8a710SGleb Smirnoff SYSCTL_UINT(_net_inet_tcp_hostcache, OID_AUTO, hashsize, CTLFLAG_VNET | CTLFLAG_RDTUN, 131eddfbb76SRobert Watson &VNET_NAME(tcp_hostcache.hashsize), 0, 1328b615593SMarko Zec "Size of TCP hostcache hashtable"); 13397d8d152SAndre Oppermann 1346df8a710SGleb Smirnoff SYSCTL_UINT(_net_inet_tcp_hostcache, OID_AUTO, bucketlimit, 1356df8a710SGleb Smirnoff CTLFLAG_VNET | CTLFLAG_RDTUN, &VNET_NAME(tcp_hostcache.bucket_limit), 0, 1368b615593SMarko Zec "Per-bucket hash limit for hostcache"); 13797d8d152SAndre Oppermann 1386df8a710SGleb Smirnoff SYSCTL_UINT(_net_inet_tcp_hostcache, OID_AUTO, count, CTLFLAG_VNET | CTLFLAG_RD, 139eddfbb76SRobert Watson &VNET_NAME(tcp_hostcache.cache_count), 0, 1408b615593SMarko Zec "Current number of entries in hostcache"); 14197d8d152SAndre Oppermann 1426df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp_hostcache, OID_AUTO, expire, CTLFLAG_VNET | CTLFLAG_RW, 143eddfbb76SRobert Watson &VNET_NAME(tcp_hostcache.expire), 0, 1448b615593SMarko Zec "Expire time of TCP hostcache entries"); 14597d8d152SAndre Oppermann 1466df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp_hostcache, OID_AUTO, prune, CTLFLAG_VNET | CTLFLAG_RW, 147eddfbb76SRobert Watson &VNET_NAME(tcp_hostcache.prune), 0, 148eddfbb76SRobert Watson "Time between purge runs"); 149dba3c508SYaroslav Tykhiy 1506df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_tcp_hostcache, OID_AUTO, purge, CTLFLAG_VNET | CTLFLAG_RW, 151eddfbb76SRobert Watson &VNET_NAME(tcp_hostcache.purgeall), 0, 1528b615593SMarko Zec "Expire all entires on next purge run"); 15397d8d152SAndre Oppermann 15497d8d152SAndre Oppermann SYSCTL_PROC(_net_inet_tcp_hostcache, OID_AUTO, list, 15597d8d152SAndre Oppermann CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_SKIP, 0, 0, 15697d8d152SAndre Oppermann sysctl_tcp_hc_list, "A", "List of all hostcache entries"); 15797d8d152SAndre Oppermann 15897d8d152SAndre Oppermann 15997d8d152SAndre Oppermann static MALLOC_DEFINE(M_HOSTCACHE, "hostcache", "TCP hostcache"); 16097d8d152SAndre Oppermann 16197d8d152SAndre Oppermann #define HOSTCACHE_HASH(ip) \ 16297d8d152SAndre Oppermann (((ip)->s_addr ^ ((ip)->s_addr >> 7) ^ ((ip)->s_addr >> 17)) & \ 163603724d3SBjoern A. Zeeb V_tcp_hostcache.hashmask) 16497d8d152SAndre Oppermann 16597d8d152SAndre Oppermann /* XXX: What is the recommended hash to get good entropy for IPv6 addresses? */ 16697d8d152SAndre Oppermann #define HOSTCACHE_HASH6(ip6) \ 16797d8d152SAndre Oppermann (((ip6)->s6_addr32[0] ^ \ 16897d8d152SAndre Oppermann (ip6)->s6_addr32[1] ^ \ 16997d8d152SAndre Oppermann (ip6)->s6_addr32[2] ^ \ 17097d8d152SAndre Oppermann (ip6)->s6_addr32[3]) & \ 171603724d3SBjoern A. Zeeb V_tcp_hostcache.hashmask) 17297d8d152SAndre Oppermann 17397d8d152SAndre Oppermann #define THC_LOCK(lp) mtx_lock(lp) 17497d8d152SAndre Oppermann #define THC_UNLOCK(lp) mtx_unlock(lp) 17597d8d152SAndre Oppermann 17697d8d152SAndre Oppermann void 17797d8d152SAndre Oppermann tcp_hc_init(void) 17897d8d152SAndre Oppermann { 17932fe38f1SAndrey Zonov u_int cache_limit; 18097d8d152SAndre Oppermann int i; 18197d8d152SAndre Oppermann 18297d8d152SAndre Oppermann /* 183e487a5e2SRobert Watson * Initialize hostcache structures. 18497d8d152SAndre Oppermann */ 185603724d3SBjoern A. Zeeb V_tcp_hostcache.cache_count = 0; 186603724d3SBjoern A. Zeeb V_tcp_hostcache.hashsize = TCP_HOSTCACHE_HASHSIZE; 187603724d3SBjoern A. Zeeb V_tcp_hostcache.bucket_limit = TCP_HOSTCACHE_BUCKETLIMIT; 188603724d3SBjoern A. Zeeb V_tcp_hostcache.expire = TCP_HOSTCACHE_EXPIRE; 189603724d3SBjoern A. Zeeb V_tcp_hostcache.prune = TCP_HOSTCACHE_PRUNE; 19097d8d152SAndre Oppermann 19197d8d152SAndre Oppermann TUNABLE_INT_FETCH("net.inet.tcp.hostcache.hashsize", 192603724d3SBjoern A. Zeeb &V_tcp_hostcache.hashsize); 193603724d3SBjoern A. Zeeb if (!powerof2(V_tcp_hostcache.hashsize)) { 19497d8d152SAndre Oppermann printf("WARNING: hostcache hash size is not a power of 2.\n"); 195603724d3SBjoern A. Zeeb V_tcp_hostcache.hashsize = TCP_HOSTCACHE_HASHSIZE; /* default */ 19697d8d152SAndre Oppermann } 197603724d3SBjoern A. Zeeb V_tcp_hostcache.hashmask = V_tcp_hostcache.hashsize - 1; 19897d8d152SAndre Oppermann 19932fe38f1SAndrey Zonov TUNABLE_INT_FETCH("net.inet.tcp.hostcache.bucketlimit", 20032fe38f1SAndrey Zonov &V_tcp_hostcache.bucket_limit); 20132fe38f1SAndrey Zonov 20232fe38f1SAndrey Zonov cache_limit = V_tcp_hostcache.hashsize * V_tcp_hostcache.bucket_limit; 20332fe38f1SAndrey Zonov V_tcp_hostcache.cache_limit = cache_limit; 20432fe38f1SAndrey Zonov TUNABLE_INT_FETCH("net.inet.tcp.hostcache.cachelimit", 20532fe38f1SAndrey Zonov &V_tcp_hostcache.cache_limit); 20632fe38f1SAndrey Zonov if (V_tcp_hostcache.cache_limit > cache_limit) 20732fe38f1SAndrey Zonov V_tcp_hostcache.cache_limit = cache_limit; 20832fe38f1SAndrey Zonov 20997d8d152SAndre Oppermann /* 210e487a5e2SRobert Watson * Allocate the hash table. 21197d8d152SAndre Oppermann */ 212603724d3SBjoern A. Zeeb V_tcp_hostcache.hashbase = (struct hc_head *) 213603724d3SBjoern A. Zeeb malloc(V_tcp_hostcache.hashsize * sizeof(struct hc_head), 21497d8d152SAndre Oppermann M_HOSTCACHE, M_WAITOK | M_ZERO); 21597d8d152SAndre Oppermann 21697d8d152SAndre Oppermann /* 217e487a5e2SRobert Watson * Initialize the hash buckets. 21897d8d152SAndre Oppermann */ 219603724d3SBjoern A. Zeeb for (i = 0; i < V_tcp_hostcache.hashsize; i++) { 220603724d3SBjoern A. Zeeb TAILQ_INIT(&V_tcp_hostcache.hashbase[i].hch_bucket); 221603724d3SBjoern A. Zeeb V_tcp_hostcache.hashbase[i].hch_length = 0; 222603724d3SBjoern A. Zeeb mtx_init(&V_tcp_hostcache.hashbase[i].hch_mtx, "tcp_hc_entry", 22397d8d152SAndre Oppermann NULL, MTX_DEF); 22497d8d152SAndre Oppermann } 22597d8d152SAndre Oppermann 22697d8d152SAndre Oppermann /* 22797d8d152SAndre Oppermann * Allocate the hostcache entries. 22897d8d152SAndre Oppermann */ 229ac957cd2SJulian Elischer V_tcp_hostcache.zone = 230ac957cd2SJulian Elischer uma_zcreate("hostcache", sizeof(struct hc_metrics), 2314efb805cSAndre Oppermann NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); 232603724d3SBjoern A. Zeeb uma_zone_set_max(V_tcp_hostcache.zone, V_tcp_hostcache.cache_limit); 23397d8d152SAndre Oppermann 23497d8d152SAndre Oppermann /* 23597d8d152SAndre Oppermann * Set up periodic cache cleanup. 23697d8d152SAndre Oppermann */ 237603724d3SBjoern A. Zeeb callout_init(&V_tcp_hc_callout, CALLOUT_MPSAFE); 238ac957cd2SJulian Elischer callout_reset(&V_tcp_hc_callout, V_tcp_hostcache.prune * hz, 23921ca7b57SMarko Zec tcp_hc_purge, curvnet); 24097d8d152SAndre Oppermann } 24197d8d152SAndre Oppermann 242bc29160dSMarko Zec #ifdef VIMAGE 243bc29160dSMarko Zec void 244bc29160dSMarko Zec tcp_hc_destroy(void) 245bc29160dSMarko Zec { 246fffb9f1dSBjoern A. Zeeb int i; 247bc29160dSMarko Zec 248bc29160dSMarko Zec callout_drain(&V_tcp_hc_callout); 249fffb9f1dSBjoern A. Zeeb 250fffb9f1dSBjoern A. Zeeb /* Purge all hc entries. */ 251fffb9f1dSBjoern A. Zeeb tcp_hc_purge_internal(1); 252fffb9f1dSBjoern A. Zeeb 253fffb9f1dSBjoern A. Zeeb /* Free the uma zone and the allocated hash table. */ 254fffb9f1dSBjoern A. Zeeb uma_zdestroy(V_tcp_hostcache.zone); 255fffb9f1dSBjoern A. Zeeb 256fffb9f1dSBjoern A. Zeeb for (i = 0; i < V_tcp_hostcache.hashsize; i++) 257fffb9f1dSBjoern A. Zeeb mtx_destroy(&V_tcp_hostcache.hashbase[i].hch_mtx); 258fffb9f1dSBjoern A. Zeeb free(V_tcp_hostcache.hashbase, M_HOSTCACHE); 259bc29160dSMarko Zec } 260bc29160dSMarko Zec #endif 261bc29160dSMarko Zec 26297d8d152SAndre Oppermann /* 26397d8d152SAndre Oppermann * Internal function: look up an entry in the hostcache or return NULL. 26497d8d152SAndre Oppermann * 26597d8d152SAndre Oppermann * If an entry has been returned, the caller becomes responsible for 26697d8d152SAndre Oppermann * unlocking the bucket row after he is done reading/modifying the entry. 26797d8d152SAndre Oppermann */ 26897d8d152SAndre Oppermann static struct hc_metrics * 26997d8d152SAndre Oppermann tcp_hc_lookup(struct in_conninfo *inc) 27097d8d152SAndre Oppermann { 27197d8d152SAndre Oppermann int hash; 27297d8d152SAndre Oppermann struct hc_head *hc_head; 27397d8d152SAndre Oppermann struct hc_metrics *hc_entry; 27497d8d152SAndre Oppermann 27597d8d152SAndre Oppermann KASSERT(inc != NULL, ("tcp_hc_lookup with NULL in_conninfo pointer")); 27697d8d152SAndre Oppermann 27797d8d152SAndre Oppermann /* 27897d8d152SAndre Oppermann * Hash the foreign ip address. 27997d8d152SAndre Oppermann */ 280dcdb4371SBjoern A. Zeeb if (inc->inc_flags & INC_ISIPV6) 28197d8d152SAndre Oppermann hash = HOSTCACHE_HASH6(&inc->inc6_faddr); 28297d8d152SAndre Oppermann else 28397d8d152SAndre Oppermann hash = HOSTCACHE_HASH(&inc->inc_faddr); 28497d8d152SAndre Oppermann 285603724d3SBjoern A. Zeeb hc_head = &V_tcp_hostcache.hashbase[hash]; 28697d8d152SAndre Oppermann 28797d8d152SAndre Oppermann /* 288e487a5e2SRobert Watson * Acquire lock for this bucket row; we release the lock if we don't 289e487a5e2SRobert Watson * find an entry, otherwise the caller has to unlock after he is 290e487a5e2SRobert Watson * done. 29197d8d152SAndre Oppermann */ 29297d8d152SAndre Oppermann THC_LOCK(&hc_head->hch_mtx); 29397d8d152SAndre Oppermann 29497d8d152SAndre Oppermann /* 295e487a5e2SRobert Watson * Iterate through entries in bucket row looking for a match. 29697d8d152SAndre Oppermann */ 29797d8d152SAndre Oppermann TAILQ_FOREACH(hc_entry, &hc_head->hch_bucket, rmx_q) { 298dcdb4371SBjoern A. Zeeb if (inc->inc_flags & INC_ISIPV6) { 299028bdf28SAndrey V. Elsukov /* XXX: check ip6_zoneid */ 30097d8d152SAndre Oppermann if (memcmp(&inc->inc6_faddr, &hc_entry->ip6, 30197d8d152SAndre Oppermann sizeof(inc->inc6_faddr)) == 0) 30297d8d152SAndre Oppermann return hc_entry; 30397d8d152SAndre Oppermann } else { 30497d8d152SAndre Oppermann if (memcmp(&inc->inc_faddr, &hc_entry->ip4, 30597d8d152SAndre Oppermann sizeof(inc->inc_faddr)) == 0) 30697d8d152SAndre Oppermann return hc_entry; 30797d8d152SAndre Oppermann } 30897d8d152SAndre Oppermann } 30997d8d152SAndre Oppermann 31097d8d152SAndre Oppermann /* 311e487a5e2SRobert Watson * We were unsuccessful and didn't find anything. 31297d8d152SAndre Oppermann */ 31397d8d152SAndre Oppermann THC_UNLOCK(&hc_head->hch_mtx); 31497d8d152SAndre Oppermann return NULL; 31597d8d152SAndre Oppermann } 31697d8d152SAndre Oppermann 31797d8d152SAndre Oppermann /* 318e487a5e2SRobert Watson * Internal function: insert an entry into the hostcache or return NULL if 319e487a5e2SRobert Watson * unable to allocate a new one. 32097d8d152SAndre Oppermann * 32197d8d152SAndre Oppermann * If an entry has been returned, the caller becomes responsible for 32297d8d152SAndre Oppermann * unlocking the bucket row after he is done reading/modifying the entry. 32397d8d152SAndre Oppermann */ 32497d8d152SAndre Oppermann static struct hc_metrics * 32597d8d152SAndre Oppermann tcp_hc_insert(struct in_conninfo *inc) 32697d8d152SAndre Oppermann { 32797d8d152SAndre Oppermann int hash; 32897d8d152SAndre Oppermann struct hc_head *hc_head; 32997d8d152SAndre Oppermann struct hc_metrics *hc_entry; 33097d8d152SAndre Oppermann 33197d8d152SAndre Oppermann KASSERT(inc != NULL, ("tcp_hc_insert with NULL in_conninfo pointer")); 33297d8d152SAndre Oppermann 33397d8d152SAndre Oppermann /* 334e487a5e2SRobert Watson * Hash the foreign ip address. 33597d8d152SAndre Oppermann */ 336dcdb4371SBjoern A. Zeeb if (inc->inc_flags & INC_ISIPV6) 33797d8d152SAndre Oppermann hash = HOSTCACHE_HASH6(&inc->inc6_faddr); 33897d8d152SAndre Oppermann else 33997d8d152SAndre Oppermann hash = HOSTCACHE_HASH(&inc->inc_faddr); 34097d8d152SAndre Oppermann 341603724d3SBjoern A. Zeeb hc_head = &V_tcp_hostcache.hashbase[hash]; 34297d8d152SAndre Oppermann 34397d8d152SAndre Oppermann /* 344e487a5e2SRobert Watson * Acquire lock for this bucket row; we release the lock if we don't 345e487a5e2SRobert Watson * find an entry, otherwise the caller has to unlock after he is 346e487a5e2SRobert Watson * done. 34797d8d152SAndre Oppermann */ 34897d8d152SAndre Oppermann THC_LOCK(&hc_head->hch_mtx); 34997d8d152SAndre Oppermann 35097d8d152SAndre Oppermann /* 351e487a5e2SRobert Watson * If the bucket limit is reached, reuse the least-used element. 35297d8d152SAndre Oppermann */ 353603724d3SBjoern A. Zeeb if (hc_head->hch_length >= V_tcp_hostcache.bucket_limit || 354603724d3SBjoern A. Zeeb V_tcp_hostcache.cache_count >= V_tcp_hostcache.cache_limit) { 35597d8d152SAndre Oppermann hc_entry = TAILQ_LAST(&hc_head->hch_bucket, hc_qhead); 35697d8d152SAndre Oppermann /* 35797d8d152SAndre Oppermann * At first we were dropping the last element, just to 358e487a5e2SRobert Watson * reacquire it in the next two lines again, which isn't very 359e487a5e2SRobert Watson * efficient. Instead just reuse the least used element. 360e487a5e2SRobert Watson * We may drop something that is still "in-use" but we can be 361e487a5e2SRobert Watson * "lossy". 36245024be0SAndre Oppermann * Just give up if this bucket row is empty and we don't have 36345024be0SAndre Oppermann * anything to replace. 36497d8d152SAndre Oppermann */ 36545024be0SAndre Oppermann if (hc_entry == NULL) { 36645024be0SAndre Oppermann THC_UNLOCK(&hc_head->hch_mtx); 36745024be0SAndre Oppermann return NULL; 36845024be0SAndre Oppermann } 36997d8d152SAndre Oppermann TAILQ_REMOVE(&hc_head->hch_bucket, hc_entry, rmx_q); 370603724d3SBjoern A. Zeeb V_tcp_hostcache.hashbase[hash].hch_length--; 371603724d3SBjoern A. Zeeb V_tcp_hostcache.cache_count--; 37278b50714SRobert Watson TCPSTAT_INC(tcps_hc_bucketoverflow); 373cd6c4060SAndre Oppermann #if 0 374603724d3SBjoern A. Zeeb uma_zfree(V_tcp_hostcache.zone, hc_entry); 375cd6c4060SAndre Oppermann #endif 37697d8d152SAndre Oppermann } else { 37797d8d152SAndre Oppermann /* 378e487a5e2SRobert Watson * Allocate a new entry, or balk if not possible. 37997d8d152SAndre Oppermann */ 380603724d3SBjoern A. Zeeb hc_entry = uma_zalloc(V_tcp_hostcache.zone, M_NOWAIT); 38197d8d152SAndre Oppermann if (hc_entry == NULL) { 38297d8d152SAndre Oppermann THC_UNLOCK(&hc_head->hch_mtx); 38397d8d152SAndre Oppermann return NULL; 38497d8d152SAndre Oppermann } 38597d8d152SAndre Oppermann } 38697d8d152SAndre Oppermann 38797d8d152SAndre Oppermann /* 388e487a5e2SRobert Watson * Initialize basic information of hostcache entry. 38997d8d152SAndre Oppermann */ 39097d8d152SAndre Oppermann bzero(hc_entry, sizeof(*hc_entry)); 391028bdf28SAndrey V. Elsukov if (inc->inc_flags & INC_ISIPV6) { 392028bdf28SAndrey V. Elsukov hc_entry->ip6 = inc->inc6_faddr; 393028bdf28SAndrey V. Elsukov hc_entry->ip6_zoneid = inc->inc6_zoneid; 394028bdf28SAndrey V. Elsukov } else 39597d8d152SAndre Oppermann hc_entry->ip4 = inc->inc_faddr; 39697d8d152SAndre Oppermann hc_entry->rmx_head = hc_head; 397603724d3SBjoern A. Zeeb hc_entry->rmx_expire = V_tcp_hostcache.expire; 39897d8d152SAndre Oppermann 39997d8d152SAndre Oppermann /* 400e487a5e2SRobert Watson * Put it upfront. 40197d8d152SAndre Oppermann */ 40297d8d152SAndre Oppermann TAILQ_INSERT_HEAD(&hc_head->hch_bucket, hc_entry, rmx_q); 403603724d3SBjoern A. Zeeb V_tcp_hostcache.hashbase[hash].hch_length++; 404603724d3SBjoern A. Zeeb V_tcp_hostcache.cache_count++; 40578b50714SRobert Watson TCPSTAT_INC(tcps_hc_added); 40697d8d152SAndre Oppermann 40797d8d152SAndre Oppermann return hc_entry; 40897d8d152SAndre Oppermann } 40997d8d152SAndre Oppermann 41097d8d152SAndre Oppermann /* 41197d8d152SAndre Oppermann * External function: look up an entry in the hostcache and fill out the 412e487a5e2SRobert Watson * supplied TCP metrics structure. Fills in NULL when no entry was found or 413e487a5e2SRobert Watson * a value is not set. 41497d8d152SAndre Oppermann */ 41597d8d152SAndre Oppermann void 41697d8d152SAndre Oppermann tcp_hc_get(struct in_conninfo *inc, struct hc_metrics_lite *hc_metrics_lite) 41797d8d152SAndre Oppermann { 41897d8d152SAndre Oppermann struct hc_metrics *hc_entry; 41997d8d152SAndre Oppermann 42097d8d152SAndre Oppermann /* 421e487a5e2SRobert Watson * Find the right bucket. 42297d8d152SAndre Oppermann */ 42397d8d152SAndre Oppermann hc_entry = tcp_hc_lookup(inc); 42497d8d152SAndre Oppermann 42597d8d152SAndre Oppermann /* 426e487a5e2SRobert Watson * If we don't have an existing object. 42797d8d152SAndre Oppermann */ 42897d8d152SAndre Oppermann if (hc_entry == NULL) { 42997d8d152SAndre Oppermann bzero(hc_metrics_lite, sizeof(*hc_metrics_lite)); 43097d8d152SAndre Oppermann return; 43197d8d152SAndre Oppermann } 43297d8d152SAndre Oppermann hc_entry->rmx_hits++; 433603724d3SBjoern A. Zeeb hc_entry->rmx_expire = V_tcp_hostcache.expire; /* start over again */ 43497d8d152SAndre Oppermann 43597d8d152SAndre Oppermann hc_metrics_lite->rmx_mtu = hc_entry->rmx_mtu; 43697d8d152SAndre Oppermann hc_metrics_lite->rmx_ssthresh = hc_entry->rmx_ssthresh; 43797d8d152SAndre Oppermann hc_metrics_lite->rmx_rtt = hc_entry->rmx_rtt; 43897d8d152SAndre Oppermann hc_metrics_lite->rmx_rttvar = hc_entry->rmx_rttvar; 43997d8d152SAndre Oppermann hc_metrics_lite->rmx_bandwidth = hc_entry->rmx_bandwidth; 44097d8d152SAndre Oppermann hc_metrics_lite->rmx_cwnd = hc_entry->rmx_cwnd; 44197d8d152SAndre Oppermann hc_metrics_lite->rmx_sendpipe = hc_entry->rmx_sendpipe; 44297d8d152SAndre Oppermann hc_metrics_lite->rmx_recvpipe = hc_entry->rmx_recvpipe; 44397d8d152SAndre Oppermann 44497d8d152SAndre Oppermann /* 445e487a5e2SRobert Watson * Unlock bucket row. 44697d8d152SAndre Oppermann */ 44797d8d152SAndre Oppermann THC_UNLOCK(&hc_entry->rmx_head->hch_mtx); 44897d8d152SAndre Oppermann } 44997d8d152SAndre Oppermann 45097d8d152SAndre Oppermann /* 45197d8d152SAndre Oppermann * External function: look up an entry in the hostcache and return the 452e487a5e2SRobert Watson * discovered path MTU. Returns NULL if no entry is found or value is not 4536fbed4afSRobert Watson * set. 45497d8d152SAndre Oppermann */ 45597d8d152SAndre Oppermann u_long 45697d8d152SAndre Oppermann tcp_hc_getmtu(struct in_conninfo *inc) 45797d8d152SAndre Oppermann { 45897d8d152SAndre Oppermann struct hc_metrics *hc_entry; 45997d8d152SAndre Oppermann u_long mtu; 46097d8d152SAndre Oppermann 46197d8d152SAndre Oppermann hc_entry = tcp_hc_lookup(inc); 46297d8d152SAndre Oppermann if (hc_entry == NULL) { 46397d8d152SAndre Oppermann return 0; 46497d8d152SAndre Oppermann } 46597d8d152SAndre Oppermann hc_entry->rmx_hits++; 466603724d3SBjoern A. Zeeb hc_entry->rmx_expire = V_tcp_hostcache.expire; /* start over again */ 46797d8d152SAndre Oppermann 46897d8d152SAndre Oppermann mtu = hc_entry->rmx_mtu; 46997d8d152SAndre Oppermann THC_UNLOCK(&hc_entry->rmx_head->hch_mtx); 47097d8d152SAndre Oppermann return mtu; 47197d8d152SAndre Oppermann } 47297d8d152SAndre Oppermann 47397d8d152SAndre Oppermann /* 474e487a5e2SRobert Watson * External function: update the MTU value of an entry in the hostcache. 47597d8d152SAndre Oppermann * Creates a new entry if none was found. 47697d8d152SAndre Oppermann */ 47797d8d152SAndre Oppermann void 47897d8d152SAndre Oppermann tcp_hc_updatemtu(struct in_conninfo *inc, u_long mtu) 47997d8d152SAndre Oppermann { 48097d8d152SAndre Oppermann struct hc_metrics *hc_entry; 48197d8d152SAndre Oppermann 48297d8d152SAndre Oppermann /* 483e487a5e2SRobert Watson * Find the right bucket. 48497d8d152SAndre Oppermann */ 48597d8d152SAndre Oppermann hc_entry = tcp_hc_lookup(inc); 48697d8d152SAndre Oppermann 48797d8d152SAndre Oppermann /* 488e487a5e2SRobert Watson * If we don't have an existing object, try to insert a new one. 48997d8d152SAndre Oppermann */ 49097d8d152SAndre Oppermann if (hc_entry == NULL) { 49197d8d152SAndre Oppermann hc_entry = tcp_hc_insert(inc); 49297d8d152SAndre Oppermann if (hc_entry == NULL) 49397d8d152SAndre Oppermann return; 49497d8d152SAndre Oppermann } 49597d8d152SAndre Oppermann hc_entry->rmx_updates++; 496603724d3SBjoern A. Zeeb hc_entry->rmx_expire = V_tcp_hostcache.expire; /* start over again */ 49797d8d152SAndre Oppermann 49897d8d152SAndre Oppermann hc_entry->rmx_mtu = mtu; 49997d8d152SAndre Oppermann 50097d8d152SAndre Oppermann /* 501e487a5e2SRobert Watson * Put it upfront so we find it faster next time. 50297d8d152SAndre Oppermann */ 50397d8d152SAndre Oppermann TAILQ_REMOVE(&hc_entry->rmx_head->hch_bucket, hc_entry, rmx_q); 50497d8d152SAndre Oppermann TAILQ_INSERT_HEAD(&hc_entry->rmx_head->hch_bucket, hc_entry, rmx_q); 50597d8d152SAndre Oppermann 50697d8d152SAndre Oppermann /* 507e487a5e2SRobert Watson * Unlock bucket row. 50897d8d152SAndre Oppermann */ 50997d8d152SAndre Oppermann THC_UNLOCK(&hc_entry->rmx_head->hch_mtx); 51097d8d152SAndre Oppermann } 51197d8d152SAndre Oppermann 51297d8d152SAndre Oppermann /* 513e487a5e2SRobert Watson * External function: update the TCP metrics of an entry in the hostcache. 51497d8d152SAndre Oppermann * Creates a new entry if none was found. 51597d8d152SAndre Oppermann */ 51697d8d152SAndre Oppermann void 51797d8d152SAndre Oppermann tcp_hc_update(struct in_conninfo *inc, struct hc_metrics_lite *hcml) 51897d8d152SAndre Oppermann { 51997d8d152SAndre Oppermann struct hc_metrics *hc_entry; 52097d8d152SAndre Oppermann 52197d8d152SAndre Oppermann hc_entry = tcp_hc_lookup(inc); 52297d8d152SAndre Oppermann if (hc_entry == NULL) { 52397d8d152SAndre Oppermann hc_entry = tcp_hc_insert(inc); 52497d8d152SAndre Oppermann if (hc_entry == NULL) 52597d8d152SAndre Oppermann return; 52697d8d152SAndre Oppermann } 52797d8d152SAndre Oppermann hc_entry->rmx_updates++; 528603724d3SBjoern A. Zeeb hc_entry->rmx_expire = V_tcp_hostcache.expire; /* start over again */ 52997d8d152SAndre Oppermann 53097d8d152SAndre Oppermann if (hcml->rmx_rtt != 0) { 53197d8d152SAndre Oppermann if (hc_entry->rmx_rtt == 0) 53297d8d152SAndre Oppermann hc_entry->rmx_rtt = hcml->rmx_rtt; 53397d8d152SAndre Oppermann else 53497d8d152SAndre Oppermann hc_entry->rmx_rtt = 53597d8d152SAndre Oppermann (hc_entry->rmx_rtt + hcml->rmx_rtt) / 2; 53678b50714SRobert Watson TCPSTAT_INC(tcps_cachedrtt); 53797d8d152SAndre Oppermann } 53897d8d152SAndre Oppermann if (hcml->rmx_rttvar != 0) { 53997d8d152SAndre Oppermann if (hc_entry->rmx_rttvar == 0) 54097d8d152SAndre Oppermann hc_entry->rmx_rttvar = hcml->rmx_rttvar; 54197d8d152SAndre Oppermann else 54297d8d152SAndre Oppermann hc_entry->rmx_rttvar = 54397d8d152SAndre Oppermann (hc_entry->rmx_rttvar + hcml->rmx_rttvar) / 2; 54478b50714SRobert Watson TCPSTAT_INC(tcps_cachedrttvar); 54597d8d152SAndre Oppermann } 54697d8d152SAndre Oppermann if (hcml->rmx_ssthresh != 0) { 54797d8d152SAndre Oppermann if (hc_entry->rmx_ssthresh == 0) 54897d8d152SAndre Oppermann hc_entry->rmx_ssthresh = hcml->rmx_ssthresh; 54997d8d152SAndre Oppermann else 55097d8d152SAndre Oppermann hc_entry->rmx_ssthresh = 55197d8d152SAndre Oppermann (hc_entry->rmx_ssthresh + hcml->rmx_ssthresh) / 2; 55278b50714SRobert Watson TCPSTAT_INC(tcps_cachedssthresh); 55397d8d152SAndre Oppermann } 55497d8d152SAndre Oppermann if (hcml->rmx_bandwidth != 0) { 55597d8d152SAndre Oppermann if (hc_entry->rmx_bandwidth == 0) 55697d8d152SAndre Oppermann hc_entry->rmx_bandwidth = hcml->rmx_bandwidth; 55797d8d152SAndre Oppermann else 55897d8d152SAndre Oppermann hc_entry->rmx_bandwidth = 55997d8d152SAndre Oppermann (hc_entry->rmx_bandwidth + hcml->rmx_bandwidth) / 2; 56078b50714SRobert Watson /* TCPSTAT_INC(tcps_cachedbandwidth); */ 56197d8d152SAndre Oppermann } 56297d8d152SAndre Oppermann if (hcml->rmx_cwnd != 0) { 56397d8d152SAndre Oppermann if (hc_entry->rmx_cwnd == 0) 56497d8d152SAndre Oppermann hc_entry->rmx_cwnd = hcml->rmx_cwnd; 56597d8d152SAndre Oppermann else 56697d8d152SAndre Oppermann hc_entry->rmx_cwnd = 56797d8d152SAndre Oppermann (hc_entry->rmx_cwnd + hcml->rmx_cwnd) / 2; 56878b50714SRobert Watson /* TCPSTAT_INC(tcps_cachedcwnd); */ 56997d8d152SAndre Oppermann } 57097d8d152SAndre Oppermann if (hcml->rmx_sendpipe != 0) { 57197d8d152SAndre Oppermann if (hc_entry->rmx_sendpipe == 0) 57297d8d152SAndre Oppermann hc_entry->rmx_sendpipe = hcml->rmx_sendpipe; 57397d8d152SAndre Oppermann else 57497d8d152SAndre Oppermann hc_entry->rmx_sendpipe = 57597d8d152SAndre Oppermann (hc_entry->rmx_sendpipe + hcml->rmx_sendpipe) /2; 57678b50714SRobert Watson /* TCPSTAT_INC(tcps_cachedsendpipe); */ 57797d8d152SAndre Oppermann } 57897d8d152SAndre Oppermann if (hcml->rmx_recvpipe != 0) { 57997d8d152SAndre Oppermann if (hc_entry->rmx_recvpipe == 0) 58097d8d152SAndre Oppermann hc_entry->rmx_recvpipe = hcml->rmx_recvpipe; 58197d8d152SAndre Oppermann else 58297d8d152SAndre Oppermann hc_entry->rmx_recvpipe = 58397d8d152SAndre Oppermann (hc_entry->rmx_recvpipe + hcml->rmx_recvpipe) /2; 58478b50714SRobert Watson /* TCPSTAT_INC(tcps_cachedrecvpipe); */ 58597d8d152SAndre Oppermann } 58697d8d152SAndre Oppermann 58797d8d152SAndre Oppermann TAILQ_REMOVE(&hc_entry->rmx_head->hch_bucket, hc_entry, rmx_q); 58897d8d152SAndre Oppermann TAILQ_INSERT_HEAD(&hc_entry->rmx_head->hch_bucket, hc_entry, rmx_q); 58997d8d152SAndre Oppermann THC_UNLOCK(&hc_entry->rmx_head->hch_mtx); 59097d8d152SAndre Oppermann } 59197d8d152SAndre Oppermann 59297d8d152SAndre Oppermann /* 59397d8d152SAndre Oppermann * Sysctl function: prints the list and values of all hostcache entries in 59497d8d152SAndre Oppermann * unsorted order. 59597d8d152SAndre Oppermann */ 59697d8d152SAndre Oppermann static int 59797d8d152SAndre Oppermann sysctl_tcp_hc_list(SYSCTL_HANDLER_ARGS) 59897d8d152SAndre Oppermann { 599*751ccc42SIan Lepore const int linesize = 128; 600002d4558SJohn Baldwin struct sbuf sb; 601002d4558SJohn Baldwin int i, error; 60297d8d152SAndre Oppermann struct hc_metrics *hc_entry; 6031d54aa3bSBjoern A. Zeeb #ifdef INET6 6041d54aa3bSBjoern A. Zeeb char ip6buf[INET6_ADDRSTRLEN]; 6051d54aa3bSBjoern A. Zeeb #endif 60697d8d152SAndre Oppermann 607*751ccc42SIan Lepore sbuf_new_for_sysctl(&sb, NULL, linesize, req); 60897d8d152SAndre Oppermann 609002d4558SJohn Baldwin sbuf_printf(&sb, 61097d8d152SAndre Oppermann "\nIP address MTU SSTRESH RTT RTTVAR BANDWIDTH " 61197d8d152SAndre Oppermann " CWND SENDPIPE RECVPIPE HITS UPD EXP\n"); 61297d8d152SAndre Oppermann 61397d8d152SAndre Oppermann #define msec(u) (((u) + 500) / 1000) 614603724d3SBjoern A. Zeeb for (i = 0; i < V_tcp_hostcache.hashsize; i++) { 615603724d3SBjoern A. Zeeb THC_LOCK(&V_tcp_hostcache.hashbase[i].hch_mtx); 616603724d3SBjoern A. Zeeb TAILQ_FOREACH(hc_entry, &V_tcp_hostcache.hashbase[i].hch_bucket, 61797d8d152SAndre Oppermann rmx_q) { 618002d4558SJohn Baldwin sbuf_printf(&sb, 61997d8d152SAndre Oppermann "%-15s %5lu %8lu %6lums %6lums %9lu %8lu %8lu %8lu " 62097d8d152SAndre Oppermann "%4lu %4lu %4i\n", 62197d8d152SAndre Oppermann hc_entry->ip4.s_addr ? inet_ntoa(hc_entry->ip4) : 62297d8d152SAndre Oppermann #ifdef INET6 6231d54aa3bSBjoern A. Zeeb ip6_sprintf(ip6buf, &hc_entry->ip6), 62497d8d152SAndre Oppermann #else 62597d8d152SAndre Oppermann "IPv6?", 62697d8d152SAndre Oppermann #endif 62797d8d152SAndre Oppermann hc_entry->rmx_mtu, 62897d8d152SAndre Oppermann hc_entry->rmx_ssthresh, 62997d8d152SAndre Oppermann msec(hc_entry->rmx_rtt * 63097d8d152SAndre Oppermann (RTM_RTTUNIT / (hz * TCP_RTT_SCALE))), 63197d8d152SAndre Oppermann msec(hc_entry->rmx_rttvar * 6323a288e90SMikolaj Golub (RTM_RTTUNIT / (hz * TCP_RTTVAR_SCALE))), 6332f6e6e9bSAndre Oppermann hc_entry->rmx_bandwidth * 8, 63497d8d152SAndre Oppermann hc_entry->rmx_cwnd, 63597d8d152SAndre Oppermann hc_entry->rmx_sendpipe, 63697d8d152SAndre Oppermann hc_entry->rmx_recvpipe, 63797d8d152SAndre Oppermann hc_entry->rmx_hits, 63897d8d152SAndre Oppermann hc_entry->rmx_updates, 63997d8d152SAndre Oppermann hc_entry->rmx_expire); 64097d8d152SAndre Oppermann } 641603724d3SBjoern A. Zeeb THC_UNLOCK(&V_tcp_hostcache.hashbase[i].hch_mtx); 64297d8d152SAndre Oppermann } 64397d8d152SAndre Oppermann #undef msec 644*751ccc42SIan Lepore error = sbuf_finish(&sb); 645002d4558SJohn Baldwin sbuf_delete(&sb); 64697d8d152SAndre Oppermann return(error); 64797d8d152SAndre Oppermann } 64897d8d152SAndre Oppermann 64997d8d152SAndre Oppermann /* 650fffb9f1dSBjoern A. Zeeb * Caller has to make sure the curvnet is set properly. 65197d8d152SAndre Oppermann */ 65297d8d152SAndre Oppermann static void 653fffb9f1dSBjoern A. Zeeb tcp_hc_purge_internal(int all) 65497d8d152SAndre Oppermann { 655b62dccc7SAndre Oppermann struct hc_metrics *hc_entry, *hc_next; 65697d8d152SAndre Oppermann int i; 65797d8d152SAndre Oppermann 658603724d3SBjoern A. Zeeb for (i = 0; i < V_tcp_hostcache.hashsize; i++) { 659603724d3SBjoern A. Zeeb THC_LOCK(&V_tcp_hostcache.hashbase[i].hch_mtx); 660ac957cd2SJulian Elischer TAILQ_FOREACH_SAFE(hc_entry, 6615ed3800eSJulian Elischer &V_tcp_hostcache.hashbase[i].hch_bucket, rmx_q, hc_next) { 66297d8d152SAndre Oppermann if (all || hc_entry->rmx_expire <= 0) { 663603724d3SBjoern A. Zeeb TAILQ_REMOVE(&V_tcp_hostcache.hashbase[i].hch_bucket, 66497d8d152SAndre Oppermann hc_entry, rmx_q); 665603724d3SBjoern A. Zeeb uma_zfree(V_tcp_hostcache.zone, hc_entry); 666603724d3SBjoern A. Zeeb V_tcp_hostcache.hashbase[i].hch_length--; 667603724d3SBjoern A. Zeeb V_tcp_hostcache.cache_count--; 66897d8d152SAndre Oppermann } else 669603724d3SBjoern A. Zeeb hc_entry->rmx_expire -= V_tcp_hostcache.prune; 67097d8d152SAndre Oppermann } 671603724d3SBjoern A. Zeeb THC_UNLOCK(&V_tcp_hostcache.hashbase[i].hch_mtx); 67297d8d152SAndre Oppermann } 673fffb9f1dSBjoern A. Zeeb } 674fffb9f1dSBjoern A. Zeeb 675fffb9f1dSBjoern A. Zeeb /* 676fffb9f1dSBjoern A. Zeeb * Expire and purge (old|all) entries in the tcp_hostcache. Runs 677fffb9f1dSBjoern A. Zeeb * periodically from the callout. 678fffb9f1dSBjoern A. Zeeb */ 679fffb9f1dSBjoern A. Zeeb static void 680fffb9f1dSBjoern A. Zeeb tcp_hc_purge(void *arg) 681fffb9f1dSBjoern A. Zeeb { 682fffb9f1dSBjoern A. Zeeb CURVNET_SET((struct vnet *) arg); 683fffb9f1dSBjoern A. Zeeb int all = 0; 684fffb9f1dSBjoern A. Zeeb 685fffb9f1dSBjoern A. Zeeb if (V_tcp_hostcache.purgeall) { 686fffb9f1dSBjoern A. Zeeb all = 1; 687fffb9f1dSBjoern A. Zeeb V_tcp_hostcache.purgeall = 0; 688fffb9f1dSBjoern A. Zeeb } 689fffb9f1dSBjoern A. Zeeb 690fffb9f1dSBjoern A. Zeeb tcp_hc_purge_internal(all); 691ac957cd2SJulian Elischer 692ac957cd2SJulian Elischer callout_reset(&V_tcp_hc_callout, V_tcp_hostcache.prune * hz, 693ac957cd2SJulian Elischer tcp_hc_purge, arg); 69421ca7b57SMarko Zec CURVNET_RESTORE(); 69597d8d152SAndre Oppermann } 696