11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * INETPEER - A storage for permanent information about peers 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * This source is covered by the GNU GPL, the same as all kernel sources. 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * Authors: Andrey V. Savochkin <saw@msu.ru> 71da177e4SLinus Torvalds */ 81da177e4SLinus Torvalds 91da177e4SLinus Torvalds #include <linux/module.h> 101da177e4SLinus Torvalds #include <linux/types.h> 111da177e4SLinus Torvalds #include <linux/slab.h> 121da177e4SLinus Torvalds #include <linux/interrupt.h> 131da177e4SLinus Torvalds #include <linux/spinlock.h> 141da177e4SLinus Torvalds #include <linux/random.h> 151da177e4SLinus Torvalds #include <linux/timer.h> 161da177e4SLinus Torvalds #include <linux/time.h> 171da177e4SLinus Torvalds #include <linux/kernel.h> 181da177e4SLinus Torvalds #include <linux/mm.h> 191da177e4SLinus Torvalds #include <linux/net.h> 2020380731SArnaldo Carvalho de Melo #include <net/ip.h> 211da177e4SLinus Torvalds #include <net/inetpeer.h> 221da177e4SLinus Torvalds 231da177e4SLinus Torvalds /* 241da177e4SLinus Torvalds * Theory of operations. 251da177e4SLinus Torvalds * We keep one entry for each peer IP address. The nodes contains long-living 261da177e4SLinus Torvalds * information about the peer which doesn't depend on routes. 271da177e4SLinus Torvalds * At this moment this information consists only of ID field for the next 281da177e4SLinus Torvalds * outgoing IP packet. This field is incremented with each packet as encoded 291da177e4SLinus Torvalds * in inet_getid() function (include/net/inetpeer.h). 301da177e4SLinus Torvalds * At the moment of writing this notes identifier of IP packets is generated 311da177e4SLinus Torvalds * to be unpredictable using this code only for packets subjected 321da177e4SLinus Torvalds * (actually or potentially) to defragmentation. I.e. DF packets less than 331da177e4SLinus Torvalds * PMTU in size uses a constant ID and do not use this code (see 341da177e4SLinus Torvalds * ip_select_ident() in include/net/ip.h). 351da177e4SLinus Torvalds * 361da177e4SLinus Torvalds * Route cache entries hold references to our nodes. 371da177e4SLinus Torvalds * New cache entries get references via lookup by destination IP address in 381da177e4SLinus Torvalds * the avl tree. The reference is grabbed only when it's needed i.e. only 391da177e4SLinus Torvalds * when we try to output IP packet which needs an unpredictable ID (see 401da177e4SLinus Torvalds * __ip_select_ident() in net/ipv4/route.c). 411da177e4SLinus Torvalds * Nodes are removed only when reference counter goes to 0. 421da177e4SLinus Torvalds * When it's happened the node may be removed when a sufficient amount of 431da177e4SLinus Torvalds * time has been passed since its last use. The less-recently-used entry can 441da177e4SLinus Torvalds * also be removed if the pool is overloaded i.e. if the total amount of 451da177e4SLinus Torvalds * entries is greater-or-equal than the threshold. 461da177e4SLinus Torvalds * 471da177e4SLinus Torvalds * Node pool is organised as an AVL tree. 481da177e4SLinus Torvalds * Such an implementation has been chosen not just for fun. It's a way to 491da177e4SLinus Torvalds * prevent easy and efficient DoS attacks by creating hash collisions. A huge 501da177e4SLinus Torvalds * amount of long living nodes in a single hash slot would significantly delay 511da177e4SLinus Torvalds * lookups performed with disabled BHs. 521da177e4SLinus Torvalds * 531da177e4SLinus Torvalds * Serialisation issues. 54aa1039e7SEric Dumazet * 1. Nodes may appear in the tree only with the pool lock held. 55aa1039e7SEric Dumazet * 2. Nodes may disappear from the tree only with the pool lock held 561da177e4SLinus Torvalds * AND reference count being 0. 571da177e4SLinus Torvalds * 3. Nodes appears and disappears from unused node list only under 581da177e4SLinus Torvalds * "inet_peer_unused_lock". 591da177e4SLinus Torvalds * 4. Global variable peer_total is modified under the pool lock. 601da177e4SLinus Torvalds * 5. struct inet_peer fields modification: 611da177e4SLinus Torvalds * avl_left, avl_right, avl_parent, avl_height: pool lock 62d71209deSPavel Emelyanov * unused: unused node list lock 631da177e4SLinus Torvalds * refcnt: atomically against modifications on other CPU; 641da177e4SLinus Torvalds * usually under some other lock to prevent node disappearing 651da177e4SLinus Torvalds * dtime: unused node list lock 661da177e4SLinus Torvalds * v4daddr: unchangeable 67317fe0e6SEric Dumazet * ip_id_count: atomic value (no lock needed) 681da177e4SLinus Torvalds */ 691da177e4SLinus Torvalds 70e18b890bSChristoph Lameter static struct kmem_cache *peer_cachep __read_mostly; 711da177e4SLinus Torvalds 721da177e4SLinus Torvalds #define node_height(x) x->avl_height 73d6cc1d64SEric Dumazet 74d6cc1d64SEric Dumazet #define peer_avl_empty ((struct inet_peer *)&peer_fake_node) 75b914c4eaSEric Dumazet #define peer_avl_empty_rcu ((struct inet_peer __rcu __force *)&peer_fake_node) 76d6cc1d64SEric Dumazet static const struct inet_peer peer_fake_node = { 77b914c4eaSEric Dumazet .avl_left = peer_avl_empty_rcu, 78b914c4eaSEric Dumazet .avl_right = peer_avl_empty_rcu, 791da177e4SLinus Torvalds .avl_height = 0 801da177e4SLinus Torvalds }; 81d6cc1d64SEric Dumazet 82*98158f5aSDavid S. Miller static struct inet_peer_base { 83b914c4eaSEric Dumazet struct inet_peer __rcu *root; 84aa1039e7SEric Dumazet spinlock_t lock; 85d6cc1d64SEric Dumazet int total; 86*98158f5aSDavid S. Miller } v4_peers = { 87b914c4eaSEric Dumazet .root = peer_avl_empty_rcu, 88*98158f5aSDavid S. Miller .lock = __SPIN_LOCK_UNLOCKED(v4_peers.lock), 89d6cc1d64SEric Dumazet .total = 0, 90d6cc1d64SEric Dumazet }; 911da177e4SLinus Torvalds #define PEER_MAXDEPTH 40 /* sufficient for about 2^27 nodes */ 921da177e4SLinus Torvalds 931da177e4SLinus Torvalds /* Exported for sysctl_net_ipv4. */ 94243bbcaaSEric Dumazet int inet_peer_threshold __read_mostly = 65536 + 128; /* start to throw entries more 951da177e4SLinus Torvalds * aggressively at this stage */ 96243bbcaaSEric Dumazet int inet_peer_minttl __read_mostly = 120 * HZ; /* TTL under high load: 120 sec */ 97243bbcaaSEric Dumazet int inet_peer_maxttl __read_mostly = 10 * 60 * HZ; /* usual time to live: 10 min */ 98243bbcaaSEric Dumazet int inet_peer_gc_mintime __read_mostly = 10 * HZ; 99243bbcaaSEric Dumazet int inet_peer_gc_maxtime __read_mostly = 120 * HZ; 1001da177e4SLinus Torvalds 101d6cc1d64SEric Dumazet static struct { 102d6cc1d64SEric Dumazet struct list_head list; 103d6cc1d64SEric Dumazet spinlock_t lock; 104d6cc1d64SEric Dumazet } unused_peers = { 105d6cc1d64SEric Dumazet .list = LIST_HEAD_INIT(unused_peers.list), 106d6cc1d64SEric Dumazet .lock = __SPIN_LOCK_UNLOCKED(unused_peers.lock), 107d6cc1d64SEric Dumazet }; 1081da177e4SLinus Torvalds 1091da177e4SLinus Torvalds static void peer_check_expire(unsigned long dummy); 1108d06afabSIngo Molnar static DEFINE_TIMER(peer_periodic_timer, peer_check_expire, 0, 0); 1111da177e4SLinus Torvalds 1121da177e4SLinus Torvalds 1131da177e4SLinus Torvalds /* Called from ip_output.c:ip_init */ 1141da177e4SLinus Torvalds void __init inet_initpeers(void) 1151da177e4SLinus Torvalds { 1161da177e4SLinus Torvalds struct sysinfo si; 1171da177e4SLinus Torvalds 1181da177e4SLinus Torvalds /* Use the straight interface to information about memory. */ 1191da177e4SLinus Torvalds si_meminfo(&si); 1201da177e4SLinus Torvalds /* The values below were suggested by Alexey Kuznetsov 1211da177e4SLinus Torvalds * <kuznet@ms2.inr.ac.ru>. I don't have any opinion about the values 1221da177e4SLinus Torvalds * myself. --SAW 1231da177e4SLinus Torvalds */ 1241da177e4SLinus Torvalds if (si.totalram <= (32768*1024)/PAGE_SIZE) 1251da177e4SLinus Torvalds inet_peer_threshold >>= 1; /* max pool size about 1MB on IA32 */ 1261da177e4SLinus Torvalds if (si.totalram <= (16384*1024)/PAGE_SIZE) 1271da177e4SLinus Torvalds inet_peer_threshold >>= 1; /* about 512KB */ 1281da177e4SLinus Torvalds if (si.totalram <= (8192*1024)/PAGE_SIZE) 1291da177e4SLinus Torvalds inet_peer_threshold >>= 2; /* about 128KB */ 1301da177e4SLinus Torvalds 1311da177e4SLinus Torvalds peer_cachep = kmem_cache_create("inet_peer_cache", 1321da177e4SLinus Torvalds sizeof(struct inet_peer), 133317fe0e6SEric Dumazet 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, 13420c2df83SPaul Mundt NULL); 1351da177e4SLinus Torvalds 1361da177e4SLinus Torvalds /* All the timers, started at system startup tend 1371da177e4SLinus Torvalds to synchronize. Perturb it a bit. 1381da177e4SLinus Torvalds */ 1391da177e4SLinus Torvalds peer_periodic_timer.expires = jiffies 1401da177e4SLinus Torvalds + net_random() % inet_peer_gc_maxtime 1411da177e4SLinus Torvalds + inet_peer_gc_maxtime; 1421da177e4SLinus Torvalds add_timer(&peer_periodic_timer); 1431da177e4SLinus Torvalds } 1441da177e4SLinus Torvalds 1451da177e4SLinus Torvalds /* Called with or without local BH being disabled. */ 1461da177e4SLinus Torvalds static void unlink_from_unused(struct inet_peer *p) 1471da177e4SLinus Torvalds { 148d6cc1d64SEric Dumazet if (!list_empty(&p->unused)) { 149d6cc1d64SEric Dumazet spin_lock_bh(&unused_peers.lock); 150d71209deSPavel Emelyanov list_del_init(&p->unused); 151d6cc1d64SEric Dumazet spin_unlock_bh(&unused_peers.lock); 152d6cc1d64SEric Dumazet } 1531da177e4SLinus Torvalds } 1541da177e4SLinus Torvalds 155243bbcaaSEric Dumazet /* 156243bbcaaSEric Dumazet * Called with local BH disabled and the pool lock held. 157243bbcaaSEric Dumazet */ 158*98158f5aSDavid S. Miller #define lookup(_daddr, _stack, _base) \ 1591da177e4SLinus Torvalds ({ \ 160b914c4eaSEric Dumazet struct inet_peer *u; \ 161b914c4eaSEric Dumazet struct inet_peer __rcu **v; \ 162aa1039e7SEric Dumazet \ 163243bbcaaSEric Dumazet stackptr = _stack; \ 164*98158f5aSDavid S. Miller *stackptr++ = &_base->root; \ 165*98158f5aSDavid S. Miller for (u = rcu_dereference_protected(_base->root, \ 166*98158f5aSDavid S. Miller lockdep_is_held(&_base->lock)); \ 167b914c4eaSEric Dumazet u != peer_avl_empty; ) { \ 168243bbcaaSEric Dumazet if (_daddr == u->v4daddr) \ 1691da177e4SLinus Torvalds break; \ 170243bbcaaSEric Dumazet if ((__force __u32)_daddr < (__force __u32)u->v4daddr) \ 1711da177e4SLinus Torvalds v = &u->avl_left; \ 1721da177e4SLinus Torvalds else \ 1731da177e4SLinus Torvalds v = &u->avl_right; \ 1741da177e4SLinus Torvalds *stackptr++ = v; \ 175b914c4eaSEric Dumazet u = rcu_dereference_protected(*v, \ 176*98158f5aSDavid S. Miller lockdep_is_held(&_base->lock)); \ 1771da177e4SLinus Torvalds } \ 1781da177e4SLinus Torvalds u; \ 1791da177e4SLinus Torvalds }) 1801da177e4SLinus Torvalds 181aa1039e7SEric Dumazet /* 182aa1039e7SEric Dumazet * Called with rcu_read_lock_bh() 183aa1039e7SEric Dumazet * Because we hold no lock against a writer, its quite possible we fall 184aa1039e7SEric Dumazet * in an endless loop. 185aa1039e7SEric Dumazet * But every pointer we follow is guaranteed to be valid thanks to RCU. 186aa1039e7SEric Dumazet * We exit from this function if number of links exceeds PEER_MAXDEPTH 187aa1039e7SEric Dumazet */ 188*98158f5aSDavid S. Miller static struct inet_peer *lookup_rcu_bh(__be32 daddr, struct inet_peer_base *base) 189aa1039e7SEric Dumazet { 190*98158f5aSDavid S. Miller struct inet_peer *u = rcu_dereference_bh(base->root); 191aa1039e7SEric Dumazet int count = 0; 192aa1039e7SEric Dumazet 193aa1039e7SEric Dumazet while (u != peer_avl_empty) { 194aa1039e7SEric Dumazet if (daddr == u->v4daddr) { 1955f2f8920SEric Dumazet /* Before taking a reference, check if this entry was 1965f2f8920SEric Dumazet * deleted, unlink_from_pool() sets refcnt=-1 to make 1975f2f8920SEric Dumazet * distinction between an unused entry (refcnt=0) and 1985f2f8920SEric Dumazet * a freed one. 1995f2f8920SEric Dumazet */ 2005f2f8920SEric Dumazet if (unlikely(!atomic_add_unless(&u->refcnt, 1, -1))) 201aa1039e7SEric Dumazet u = NULL; 202aa1039e7SEric Dumazet return u; 203aa1039e7SEric Dumazet } 204aa1039e7SEric Dumazet if ((__force __u32)daddr < (__force __u32)u->v4daddr) 205aa1039e7SEric Dumazet u = rcu_dereference_bh(u->avl_left); 206aa1039e7SEric Dumazet else 207aa1039e7SEric Dumazet u = rcu_dereference_bh(u->avl_right); 208aa1039e7SEric Dumazet if (unlikely(++count == PEER_MAXDEPTH)) 209aa1039e7SEric Dumazet break; 210aa1039e7SEric Dumazet } 211aa1039e7SEric Dumazet return NULL; 212aa1039e7SEric Dumazet } 213aa1039e7SEric Dumazet 214aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. */ 215*98158f5aSDavid S. Miller #define lookup_rightempty(start, base) \ 2161da177e4SLinus Torvalds ({ \ 217b914c4eaSEric Dumazet struct inet_peer *u; \ 218b914c4eaSEric Dumazet struct inet_peer __rcu **v; \ 2191da177e4SLinus Torvalds *stackptr++ = &start->avl_left; \ 2201da177e4SLinus Torvalds v = &start->avl_left; \ 221b914c4eaSEric Dumazet for (u = rcu_dereference_protected(*v, \ 222*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); \ 223b914c4eaSEric Dumazet u->avl_right != peer_avl_empty_rcu; ) { \ 2241da177e4SLinus Torvalds v = &u->avl_right; \ 2251da177e4SLinus Torvalds *stackptr++ = v; \ 226b914c4eaSEric Dumazet u = rcu_dereference_protected(*v, \ 227*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); \ 2281da177e4SLinus Torvalds } \ 2291da177e4SLinus Torvalds u; \ 2301da177e4SLinus Torvalds }) 2311da177e4SLinus Torvalds 232aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. 2331da177e4SLinus Torvalds * Variable names are the proof of operation correctness. 234aa1039e7SEric Dumazet * Look into mm/map_avl.c for more detail description of the ideas. 235aa1039e7SEric Dumazet */ 236b914c4eaSEric Dumazet static void peer_avl_rebalance(struct inet_peer __rcu **stack[], 237*98158f5aSDavid S. Miller struct inet_peer __rcu ***stackend, 238*98158f5aSDavid S. Miller struct inet_peer_base *base) 2391da177e4SLinus Torvalds { 240b914c4eaSEric Dumazet struct inet_peer __rcu **nodep; 241b914c4eaSEric Dumazet struct inet_peer *node, *l, *r; 2421da177e4SLinus Torvalds int lh, rh; 2431da177e4SLinus Torvalds 2441da177e4SLinus Torvalds while (stackend > stack) { 2451da177e4SLinus Torvalds nodep = *--stackend; 246b914c4eaSEric Dumazet node = rcu_dereference_protected(*nodep, 247*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 248b914c4eaSEric Dumazet l = rcu_dereference_protected(node->avl_left, 249*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 250b914c4eaSEric Dumazet r = rcu_dereference_protected(node->avl_right, 251*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 2521da177e4SLinus Torvalds lh = node_height(l); 2531da177e4SLinus Torvalds rh = node_height(r); 2541da177e4SLinus Torvalds if (lh > rh + 1) { /* l: RH+2 */ 2551da177e4SLinus Torvalds struct inet_peer *ll, *lr, *lrl, *lrr; 2561da177e4SLinus Torvalds int lrh; 257b914c4eaSEric Dumazet ll = rcu_dereference_protected(l->avl_left, 258*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 259b914c4eaSEric Dumazet lr = rcu_dereference_protected(l->avl_right, 260*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 2611da177e4SLinus Torvalds lrh = node_height(lr); 2621da177e4SLinus Torvalds if (lrh <= node_height(ll)) { /* ll: RH+1 */ 263b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, lr); /* lr: RH or RH+1 */ 264b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, r); /* r: RH */ 2651da177e4SLinus Torvalds node->avl_height = lrh + 1; /* RH+1 or RH+2 */ 266b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_left, ll); /* ll: RH+1 */ 267b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_right, node); /* node: RH+1 or RH+2 */ 2681da177e4SLinus Torvalds l->avl_height = node->avl_height + 1; 269b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, l); 2701da177e4SLinus Torvalds } else { /* ll: RH, lr: RH+1 */ 271b914c4eaSEric Dumazet lrl = rcu_dereference_protected(lr->avl_left, 272*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* lrl: RH or RH-1 */ 273b914c4eaSEric Dumazet lrr = rcu_dereference_protected(lr->avl_right, 274*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* lrr: RH or RH-1 */ 275b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, lrr); /* lrr: RH or RH-1 */ 276b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, r); /* r: RH */ 2771da177e4SLinus Torvalds node->avl_height = rh + 1; /* node: RH+1 */ 278b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_left, ll); /* ll: RH */ 279b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_right, lrl); /* lrl: RH or RH-1 */ 2801da177e4SLinus Torvalds l->avl_height = rh + 1; /* l: RH+1 */ 281b914c4eaSEric Dumazet RCU_INIT_POINTER(lr->avl_left, l); /* l: RH+1 */ 282b914c4eaSEric Dumazet RCU_INIT_POINTER(lr->avl_right, node); /* node: RH+1 */ 2831da177e4SLinus Torvalds lr->avl_height = rh + 2; 284b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, lr); 2851da177e4SLinus Torvalds } 2861da177e4SLinus Torvalds } else if (rh > lh + 1) { /* r: LH+2 */ 2871da177e4SLinus Torvalds struct inet_peer *rr, *rl, *rlr, *rll; 2881da177e4SLinus Torvalds int rlh; 289b914c4eaSEric Dumazet rr = rcu_dereference_protected(r->avl_right, 290*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 291b914c4eaSEric Dumazet rl = rcu_dereference_protected(r->avl_left, 292*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 2931da177e4SLinus Torvalds rlh = node_height(rl); 2941da177e4SLinus Torvalds if (rlh <= node_height(rr)) { /* rr: LH+1 */ 295b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, rl); /* rl: LH or LH+1 */ 296b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, l); /* l: LH */ 2971da177e4SLinus Torvalds node->avl_height = rlh + 1; /* LH+1 or LH+2 */ 298b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_right, rr); /* rr: LH+1 */ 299b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_left, node); /* node: LH+1 or LH+2 */ 3001da177e4SLinus Torvalds r->avl_height = node->avl_height + 1; 301b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, r); 3021da177e4SLinus Torvalds } else { /* rr: RH, rl: RH+1 */ 303b914c4eaSEric Dumazet rlr = rcu_dereference_protected(rl->avl_right, 304*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* rlr: LH or LH-1 */ 305b914c4eaSEric Dumazet rll = rcu_dereference_protected(rl->avl_left, 306*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* rll: LH or LH-1 */ 307b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, rll); /* rll: LH or LH-1 */ 308b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, l); /* l: LH */ 3091da177e4SLinus Torvalds node->avl_height = lh + 1; /* node: LH+1 */ 310b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_right, rr); /* rr: LH */ 311b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_left, rlr); /* rlr: LH or LH-1 */ 3121da177e4SLinus Torvalds r->avl_height = lh + 1; /* r: LH+1 */ 313b914c4eaSEric Dumazet RCU_INIT_POINTER(rl->avl_right, r); /* r: LH+1 */ 314b914c4eaSEric Dumazet RCU_INIT_POINTER(rl->avl_left, node); /* node: LH+1 */ 3151da177e4SLinus Torvalds rl->avl_height = lh + 2; 316b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, rl); 3171da177e4SLinus Torvalds } 3181da177e4SLinus Torvalds } else { 3191da177e4SLinus Torvalds node->avl_height = (lh > rh ? lh : rh) + 1; 3201da177e4SLinus Torvalds } 3211da177e4SLinus Torvalds } 3221da177e4SLinus Torvalds } 3231da177e4SLinus Torvalds 324aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. */ 325*98158f5aSDavid S. Miller #define link_to_pool(n, base) \ 3261da177e4SLinus Torvalds do { \ 3271da177e4SLinus Torvalds n->avl_height = 1; \ 328b914c4eaSEric Dumazet n->avl_left = peer_avl_empty_rcu; \ 329b914c4eaSEric Dumazet n->avl_right = peer_avl_empty_rcu; \ 330b914c4eaSEric Dumazet /* lockless readers can catch us now */ \ 331b914c4eaSEric Dumazet rcu_assign_pointer(**--stackptr, n); \ 332*98158f5aSDavid S. Miller peer_avl_rebalance(stack, stackptr, base); \ 3331da177e4SLinus Torvalds } while (0) 3341da177e4SLinus Torvalds 335aa1039e7SEric Dumazet static void inetpeer_free_rcu(struct rcu_head *head) 336aa1039e7SEric Dumazet { 337aa1039e7SEric Dumazet kmem_cache_free(peer_cachep, container_of(head, struct inet_peer, rcu)); 338aa1039e7SEric Dumazet } 339aa1039e7SEric Dumazet 3401da177e4SLinus Torvalds /* May be called with local BH enabled. */ 341*98158f5aSDavid S. Miller static void unlink_from_pool(struct inet_peer *p, struct inet_peer_base *base) 3421da177e4SLinus Torvalds { 3431da177e4SLinus Torvalds int do_free; 3441da177e4SLinus Torvalds 3451da177e4SLinus Torvalds do_free = 0; 3461da177e4SLinus Torvalds 347*98158f5aSDavid S. Miller spin_lock_bh(&base->lock); 3481da177e4SLinus Torvalds /* Check the reference counter. It was artificially incremented by 1 349aa1039e7SEric Dumazet * in cleanup() function to prevent sudden disappearing. If we can 350aa1039e7SEric Dumazet * atomically (because of lockless readers) take this last reference, 351aa1039e7SEric Dumazet * it's safe to remove the node and free it later. 3525f2f8920SEric Dumazet * We use refcnt=-1 to alert lockless readers this entry is deleted. 353aa1039e7SEric Dumazet */ 3545f2f8920SEric Dumazet if (atomic_cmpxchg(&p->refcnt, 1, -1) == 1) { 355b914c4eaSEric Dumazet struct inet_peer __rcu **stack[PEER_MAXDEPTH]; 356b914c4eaSEric Dumazet struct inet_peer __rcu ***stackptr, ***delp; 357*98158f5aSDavid S. Miller if (lookup(p->v4daddr, stack, base) != p) 3581da177e4SLinus Torvalds BUG(); 3591da177e4SLinus Torvalds delp = stackptr - 1; /* *delp[0] == p */ 360b914c4eaSEric Dumazet if (p->avl_left == peer_avl_empty_rcu) { 3611da177e4SLinus Torvalds *delp[0] = p->avl_right; 3621da177e4SLinus Torvalds --stackptr; 3631da177e4SLinus Torvalds } else { 3641da177e4SLinus Torvalds /* look for a node to insert instead of p */ 3651da177e4SLinus Torvalds struct inet_peer *t; 366*98158f5aSDavid S. Miller t = lookup_rightempty(p, base); 367b914c4eaSEric Dumazet BUG_ON(rcu_dereference_protected(*stackptr[-1], 368*98158f5aSDavid S. Miller lockdep_is_held(&base->lock)) != t); 3691da177e4SLinus Torvalds **--stackptr = t->avl_left; 3701da177e4SLinus Torvalds /* t is removed, t->v4daddr > x->v4daddr for any 3711da177e4SLinus Torvalds * x in p->avl_left subtree. 3721da177e4SLinus Torvalds * Put t in the old place of p. */ 373b914c4eaSEric Dumazet RCU_INIT_POINTER(*delp[0], t); 3741da177e4SLinus Torvalds t->avl_left = p->avl_left; 3751da177e4SLinus Torvalds t->avl_right = p->avl_right; 3761da177e4SLinus Torvalds t->avl_height = p->avl_height; 37709a62660SKris Katterjohn BUG_ON(delp[1] != &p->avl_left); 3781da177e4SLinus Torvalds delp[1] = &t->avl_left; /* was &p->avl_left */ 3791da177e4SLinus Torvalds } 380*98158f5aSDavid S. Miller peer_avl_rebalance(stack, stackptr, base); 381*98158f5aSDavid S. Miller base->total--; 3821da177e4SLinus Torvalds do_free = 1; 3831da177e4SLinus Torvalds } 384*98158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 3851da177e4SLinus Torvalds 3861da177e4SLinus Torvalds if (do_free) 387aa1039e7SEric Dumazet call_rcu_bh(&p->rcu, inetpeer_free_rcu); 3881da177e4SLinus Torvalds else 3891da177e4SLinus Torvalds /* The node is used again. Decrease the reference counter 3901da177e4SLinus Torvalds * back. The loop "cleanup -> unlink_from_unused 3911da177e4SLinus Torvalds * -> unlink_from_pool -> putpeer -> link_to_unused 3921da177e4SLinus Torvalds * -> cleanup (for the same node)" 3931da177e4SLinus Torvalds * doesn't really exist because the entry will have a 394aa1039e7SEric Dumazet * recent deletion time and will not be cleaned again soon. 395aa1039e7SEric Dumazet */ 3961da177e4SLinus Torvalds inet_putpeer(p); 3971da177e4SLinus Torvalds } 3981da177e4SLinus Torvalds 399*98158f5aSDavid S. Miller static struct inet_peer_base *peer_to_base(struct inet_peer *p) 400*98158f5aSDavid S. Miller { 401*98158f5aSDavid S. Miller return &v4_peers; 402*98158f5aSDavid S. Miller } 403*98158f5aSDavid S. Miller 4041da177e4SLinus Torvalds /* May be called with local BH enabled. */ 4051da177e4SLinus Torvalds static int cleanup_once(unsigned long ttl) 4061da177e4SLinus Torvalds { 407d71209deSPavel Emelyanov struct inet_peer *p = NULL; 4081da177e4SLinus Torvalds 4091da177e4SLinus Torvalds /* Remove the first entry from the list of unused nodes. */ 410d6cc1d64SEric Dumazet spin_lock_bh(&unused_peers.lock); 411d6cc1d64SEric Dumazet if (!list_empty(&unused_peers.list)) { 412d71209deSPavel Emelyanov __u32 delta; 413d71209deSPavel Emelyanov 414d6cc1d64SEric Dumazet p = list_first_entry(&unused_peers.list, struct inet_peer, unused); 415d71209deSPavel Emelyanov delta = (__u32)jiffies - p->dtime; 416d71209deSPavel Emelyanov 4174663afe2SEric Dumazet if (delta < ttl) { 4181da177e4SLinus Torvalds /* Do not prune fresh entries. */ 419d6cc1d64SEric Dumazet spin_unlock_bh(&unused_peers.lock); 4201da177e4SLinus Torvalds return -1; 4211da177e4SLinus Torvalds } 422d71209deSPavel Emelyanov 423d71209deSPavel Emelyanov list_del_init(&p->unused); 424d71209deSPavel Emelyanov 4251da177e4SLinus Torvalds /* Grab an extra reference to prevent node disappearing 4261da177e4SLinus Torvalds * before unlink_from_pool() call. */ 4271da177e4SLinus Torvalds atomic_inc(&p->refcnt); 4281da177e4SLinus Torvalds } 429d6cc1d64SEric Dumazet spin_unlock_bh(&unused_peers.lock); 4301da177e4SLinus Torvalds 4311da177e4SLinus Torvalds if (p == NULL) 4321da177e4SLinus Torvalds /* It means that the total number of USED entries has 4331da177e4SLinus Torvalds * grown over inet_peer_threshold. It shouldn't really 4341da177e4SLinus Torvalds * happen because of entry limits in route cache. */ 4351da177e4SLinus Torvalds return -1; 4361da177e4SLinus Torvalds 437*98158f5aSDavid S. Miller unlink_from_pool(p, peer_to_base(p)); 4381da177e4SLinus Torvalds return 0; 4391da177e4SLinus Torvalds } 4401da177e4SLinus Torvalds 441*98158f5aSDavid S. Miller static struct inet_peer_base *family_to_base(int family) 442*98158f5aSDavid S. Miller { 443*98158f5aSDavid S. Miller return &v4_peers; 444*98158f5aSDavid S. Miller } 445*98158f5aSDavid S. Miller 4461da177e4SLinus Torvalds /* Called with or without local BH being disabled. */ 44753576d9bSAl Viro struct inet_peer *inet_getpeer(__be32 daddr, int create) 4481da177e4SLinus Torvalds { 449b914c4eaSEric Dumazet struct inet_peer __rcu **stack[PEER_MAXDEPTH], ***stackptr; 450*98158f5aSDavid S. Miller struct inet_peer_base *base = family_to_base(AF_INET); 451*98158f5aSDavid S. Miller struct inet_peer *p; 4521da177e4SLinus Torvalds 453aa1039e7SEric Dumazet /* Look up for the address quickly, lockless. 454aa1039e7SEric Dumazet * Because of a concurrent writer, we might not find an existing entry. 455aa1039e7SEric Dumazet */ 456aa1039e7SEric Dumazet rcu_read_lock_bh(); 457*98158f5aSDavid S. Miller p = lookup_rcu_bh(daddr, base); 458aa1039e7SEric Dumazet rcu_read_unlock_bh(); 4591da177e4SLinus Torvalds 460aa1039e7SEric Dumazet if (p) { 461aa1039e7SEric Dumazet /* The existing node has been found. 462aa1039e7SEric Dumazet * Remove the entry from unused list if it was there. 463aa1039e7SEric Dumazet */ 4641da177e4SLinus Torvalds unlink_from_unused(p); 4651da177e4SLinus Torvalds return p; 4661da177e4SLinus Torvalds } 4671da177e4SLinus Torvalds 468aa1039e7SEric Dumazet /* retry an exact lookup, taking the lock before. 469aa1039e7SEric Dumazet * At least, nodes should be hot in our cache. 470aa1039e7SEric Dumazet */ 471*98158f5aSDavid S. Miller spin_lock_bh(&base->lock); 472*98158f5aSDavid S. Miller p = lookup(daddr, stack, base); 473aa1039e7SEric Dumazet if (p != peer_avl_empty) { 474aa1039e7SEric Dumazet atomic_inc(&p->refcnt); 475*98158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 476aa1039e7SEric Dumazet /* Remove the entry from unused list if it was there. */ 477aa1039e7SEric Dumazet unlink_from_unused(p); 478aa1039e7SEric Dumazet return p; 479aa1039e7SEric Dumazet } 480aa1039e7SEric Dumazet p = create ? kmem_cache_alloc(peer_cachep, GFP_ATOMIC) : NULL; 481aa1039e7SEric Dumazet if (p) { 482aa1039e7SEric Dumazet p->v4daddr = daddr; 483aa1039e7SEric Dumazet atomic_set(&p->refcnt, 1); 484aa1039e7SEric Dumazet atomic_set(&p->rid, 0); 485aa1039e7SEric Dumazet atomic_set(&p->ip_id_count, secure_ip_id(daddr)); 486aa1039e7SEric Dumazet p->tcp_ts_stamp = 0; 487aa1039e7SEric Dumazet INIT_LIST_HEAD(&p->unused); 488aa1039e7SEric Dumazet 4891da177e4SLinus Torvalds 4901da177e4SLinus Torvalds /* Link the node. */ 491*98158f5aSDavid S. Miller link_to_pool(p, base); 492*98158f5aSDavid S. Miller base->total++; 493aa1039e7SEric Dumazet } 494*98158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 4951da177e4SLinus Torvalds 496*98158f5aSDavid S. Miller if (base->total >= inet_peer_threshold) 4971da177e4SLinus Torvalds /* Remove one less-recently-used entry. */ 4981da177e4SLinus Torvalds cleanup_once(0); 4991da177e4SLinus Torvalds 5001da177e4SLinus Torvalds return p; 5011da177e4SLinus Torvalds } 5021da177e4SLinus Torvalds 503*98158f5aSDavid S. Miller static int compute_total(void) 504*98158f5aSDavid S. Miller { 505*98158f5aSDavid S. Miller return v4_peers.total; 506*98158f5aSDavid S. Miller } 507*98158f5aSDavid S. Miller 5081da177e4SLinus Torvalds /* Called with local BH disabled. */ 5091da177e4SLinus Torvalds static void peer_check_expire(unsigned long dummy) 5101da177e4SLinus Torvalds { 5114663afe2SEric Dumazet unsigned long now = jiffies; 512*98158f5aSDavid S. Miller int ttl, total; 5131da177e4SLinus Torvalds 514*98158f5aSDavid S. Miller total = compute_total(); 515*98158f5aSDavid S. Miller if (total >= inet_peer_threshold) 5161da177e4SLinus Torvalds ttl = inet_peer_minttl; 5171da177e4SLinus Torvalds else 5181da177e4SLinus Torvalds ttl = inet_peer_maxttl 5191da177e4SLinus Torvalds - (inet_peer_maxttl - inet_peer_minttl) / HZ * 520*98158f5aSDavid S. Miller total / inet_peer_threshold * HZ; 5214663afe2SEric Dumazet while (!cleanup_once(ttl)) { 5224663afe2SEric Dumazet if (jiffies != now) 5234663afe2SEric Dumazet break; 5244663afe2SEric Dumazet } 5251da177e4SLinus Torvalds 5261da177e4SLinus Torvalds /* Trigger the timer after inet_peer_gc_mintime .. inet_peer_gc_maxtime 5271da177e4SLinus Torvalds * interval depending on the total number of entries (more entries, 5281da177e4SLinus Torvalds * less interval). */ 529*98158f5aSDavid S. Miller total = compute_total(); 530*98158f5aSDavid S. Miller if (total >= inet_peer_threshold) 5311344a416SDave Johnson peer_periodic_timer.expires = jiffies + inet_peer_gc_mintime; 5321344a416SDave Johnson else 5331da177e4SLinus Torvalds peer_periodic_timer.expires = jiffies 5341da177e4SLinus Torvalds + inet_peer_gc_maxtime 5351da177e4SLinus Torvalds - (inet_peer_gc_maxtime - inet_peer_gc_mintime) / HZ * 536*98158f5aSDavid S. Miller total / inet_peer_threshold * HZ; 5371da177e4SLinus Torvalds add_timer(&peer_periodic_timer); 5381da177e4SLinus Torvalds } 5394663afe2SEric Dumazet 5404663afe2SEric Dumazet void inet_putpeer(struct inet_peer *p) 5414663afe2SEric Dumazet { 542d6cc1d64SEric Dumazet local_bh_disable(); 543d6cc1d64SEric Dumazet 544d6cc1d64SEric Dumazet if (atomic_dec_and_lock(&p->refcnt, &unused_peers.lock)) { 545d6cc1d64SEric Dumazet list_add_tail(&p->unused, &unused_peers.list); 5464663afe2SEric Dumazet p->dtime = (__u32)jiffies; 547d6cc1d64SEric Dumazet spin_unlock(&unused_peers.lock); 5484663afe2SEric Dumazet } 549d6cc1d64SEric Dumazet 550d6cc1d64SEric Dumazet local_bh_enable(); 5514663afe2SEric Dumazet } 552