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 66582a72daSDavid S. Miller * daddr: 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 8298158f5aSDavid S. Miller static struct inet_peer_base { 83b914c4eaSEric Dumazet struct inet_peer __rcu *root; 84aa1039e7SEric Dumazet spinlock_t lock; 85d6cc1d64SEric Dumazet int total; 8698158f5aSDavid S. Miller } v4_peers = { 87b914c4eaSEric Dumazet .root = peer_avl_empty_rcu, 8898158f5aSDavid 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 155*02663045SDavid S. Miller static int addr_compare(const inet_peer_address_t *a, 156*02663045SDavid S. Miller const inet_peer_address_t *b) 157*02663045SDavid S. Miller { 158*02663045SDavid S. Miller int i, n = (a->family == AF_INET ? 1 : 4); 159*02663045SDavid S. Miller 160*02663045SDavid S. Miller for (i = 0; i < n; i++) { 161*02663045SDavid S. Miller if (a->a6[i] == b->a6[i]) 162*02663045SDavid S. Miller continue; 163*02663045SDavid S. Miller if (a->a6[i] < b->a6[i]) 164*02663045SDavid S. Miller return -1; 165*02663045SDavid S. Miller return 1; 166*02663045SDavid S. Miller } 167*02663045SDavid S. Miller 168*02663045SDavid S. Miller return 0; 169*02663045SDavid S. Miller } 170*02663045SDavid S. Miller 171243bbcaaSEric Dumazet /* 172243bbcaaSEric Dumazet * Called with local BH disabled and the pool lock held. 173243bbcaaSEric Dumazet */ 17498158f5aSDavid S. Miller #define lookup(_daddr, _stack, _base) \ 1751da177e4SLinus Torvalds ({ \ 176b914c4eaSEric Dumazet struct inet_peer *u; \ 177b914c4eaSEric Dumazet struct inet_peer __rcu **v; \ 178aa1039e7SEric Dumazet \ 179243bbcaaSEric Dumazet stackptr = _stack; \ 18098158f5aSDavid S. Miller *stackptr++ = &_base->root; \ 18198158f5aSDavid S. Miller for (u = rcu_dereference_protected(_base->root, \ 18298158f5aSDavid S. Miller lockdep_is_held(&_base->lock)); \ 183b914c4eaSEric Dumazet u != peer_avl_empty; ) { \ 184*02663045SDavid S. Miller int cmp = addr_compare(_daddr, &u->daddr); \ 185*02663045SDavid S. Miller if (cmp == 0) \ 1861da177e4SLinus Torvalds break; \ 187*02663045SDavid S. Miller if (cmp == -1) \ 1881da177e4SLinus Torvalds v = &u->avl_left; \ 1891da177e4SLinus Torvalds else \ 1901da177e4SLinus Torvalds v = &u->avl_right; \ 1911da177e4SLinus Torvalds *stackptr++ = v; \ 192b914c4eaSEric Dumazet u = rcu_dereference_protected(*v, \ 19398158f5aSDavid S. Miller lockdep_is_held(&_base->lock)); \ 1941da177e4SLinus Torvalds } \ 1951da177e4SLinus Torvalds u; \ 1961da177e4SLinus Torvalds }) 1971da177e4SLinus Torvalds 198aa1039e7SEric Dumazet /* 199aa1039e7SEric Dumazet * Called with rcu_read_lock_bh() 200aa1039e7SEric Dumazet * Because we hold no lock against a writer, its quite possible we fall 201aa1039e7SEric Dumazet * in an endless loop. 202aa1039e7SEric Dumazet * But every pointer we follow is guaranteed to be valid thanks to RCU. 203aa1039e7SEric Dumazet * We exit from this function if number of links exceeds PEER_MAXDEPTH 204aa1039e7SEric Dumazet */ 205*02663045SDavid S. Miller static struct inet_peer *lookup_rcu_bh(const inet_peer_address_t *daddr, 206*02663045SDavid S. Miller struct inet_peer_base *base) 207aa1039e7SEric Dumazet { 20898158f5aSDavid S. Miller struct inet_peer *u = rcu_dereference_bh(base->root); 209aa1039e7SEric Dumazet int count = 0; 210aa1039e7SEric Dumazet 211aa1039e7SEric Dumazet while (u != peer_avl_empty) { 212*02663045SDavid S. Miller int cmp = addr_compare(daddr, &u->daddr); 213*02663045SDavid S. Miller if (cmp == 0) { 2145f2f8920SEric Dumazet /* Before taking a reference, check if this entry was 2155f2f8920SEric Dumazet * deleted, unlink_from_pool() sets refcnt=-1 to make 2165f2f8920SEric Dumazet * distinction between an unused entry (refcnt=0) and 2175f2f8920SEric Dumazet * a freed one. 2185f2f8920SEric Dumazet */ 2195f2f8920SEric Dumazet if (unlikely(!atomic_add_unless(&u->refcnt, 1, -1))) 220aa1039e7SEric Dumazet u = NULL; 221aa1039e7SEric Dumazet return u; 222aa1039e7SEric Dumazet } 223*02663045SDavid S. Miller if (cmp == -1) 224aa1039e7SEric Dumazet u = rcu_dereference_bh(u->avl_left); 225aa1039e7SEric Dumazet else 226aa1039e7SEric Dumazet u = rcu_dereference_bh(u->avl_right); 227aa1039e7SEric Dumazet if (unlikely(++count == PEER_MAXDEPTH)) 228aa1039e7SEric Dumazet break; 229aa1039e7SEric Dumazet } 230aa1039e7SEric Dumazet return NULL; 231aa1039e7SEric Dumazet } 232aa1039e7SEric Dumazet 233aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. */ 23498158f5aSDavid S. Miller #define lookup_rightempty(start, base) \ 2351da177e4SLinus Torvalds ({ \ 236b914c4eaSEric Dumazet struct inet_peer *u; \ 237b914c4eaSEric Dumazet struct inet_peer __rcu **v; \ 2381da177e4SLinus Torvalds *stackptr++ = &start->avl_left; \ 2391da177e4SLinus Torvalds v = &start->avl_left; \ 240b914c4eaSEric Dumazet for (u = rcu_dereference_protected(*v, \ 24198158f5aSDavid S. Miller lockdep_is_held(&base->lock)); \ 242b914c4eaSEric Dumazet u->avl_right != peer_avl_empty_rcu; ) { \ 2431da177e4SLinus Torvalds v = &u->avl_right; \ 2441da177e4SLinus Torvalds *stackptr++ = v; \ 245b914c4eaSEric Dumazet u = rcu_dereference_protected(*v, \ 24698158f5aSDavid S. Miller lockdep_is_held(&base->lock)); \ 2471da177e4SLinus Torvalds } \ 2481da177e4SLinus Torvalds u; \ 2491da177e4SLinus Torvalds }) 2501da177e4SLinus Torvalds 251aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. 2521da177e4SLinus Torvalds * Variable names are the proof of operation correctness. 253aa1039e7SEric Dumazet * Look into mm/map_avl.c for more detail description of the ideas. 254aa1039e7SEric Dumazet */ 255b914c4eaSEric Dumazet static void peer_avl_rebalance(struct inet_peer __rcu **stack[], 25698158f5aSDavid S. Miller struct inet_peer __rcu ***stackend, 25798158f5aSDavid S. Miller struct inet_peer_base *base) 2581da177e4SLinus Torvalds { 259b914c4eaSEric Dumazet struct inet_peer __rcu **nodep; 260b914c4eaSEric Dumazet struct inet_peer *node, *l, *r; 2611da177e4SLinus Torvalds int lh, rh; 2621da177e4SLinus Torvalds 2631da177e4SLinus Torvalds while (stackend > stack) { 2641da177e4SLinus Torvalds nodep = *--stackend; 265b914c4eaSEric Dumazet node = rcu_dereference_protected(*nodep, 26698158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 267b914c4eaSEric Dumazet l = rcu_dereference_protected(node->avl_left, 26898158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 269b914c4eaSEric Dumazet r = rcu_dereference_protected(node->avl_right, 27098158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 2711da177e4SLinus Torvalds lh = node_height(l); 2721da177e4SLinus Torvalds rh = node_height(r); 2731da177e4SLinus Torvalds if (lh > rh + 1) { /* l: RH+2 */ 2741da177e4SLinus Torvalds struct inet_peer *ll, *lr, *lrl, *lrr; 2751da177e4SLinus Torvalds int lrh; 276b914c4eaSEric Dumazet ll = rcu_dereference_protected(l->avl_left, 27798158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 278b914c4eaSEric Dumazet lr = rcu_dereference_protected(l->avl_right, 27998158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 2801da177e4SLinus Torvalds lrh = node_height(lr); 2811da177e4SLinus Torvalds if (lrh <= node_height(ll)) { /* ll: RH+1 */ 282b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, lr); /* lr: RH or RH+1 */ 283b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, r); /* r: RH */ 2841da177e4SLinus Torvalds node->avl_height = lrh + 1; /* RH+1 or RH+2 */ 285b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_left, ll); /* ll: RH+1 */ 286b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_right, node); /* node: RH+1 or RH+2 */ 2871da177e4SLinus Torvalds l->avl_height = node->avl_height + 1; 288b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, l); 2891da177e4SLinus Torvalds } else { /* ll: RH, lr: RH+1 */ 290b914c4eaSEric Dumazet lrl = rcu_dereference_protected(lr->avl_left, 29198158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* lrl: RH or RH-1 */ 292b914c4eaSEric Dumazet lrr = rcu_dereference_protected(lr->avl_right, 29398158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* lrr: RH or RH-1 */ 294b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, lrr); /* lrr: RH or RH-1 */ 295b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, r); /* r: RH */ 2961da177e4SLinus Torvalds node->avl_height = rh + 1; /* node: RH+1 */ 297b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_left, ll); /* ll: RH */ 298b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_right, lrl); /* lrl: RH or RH-1 */ 2991da177e4SLinus Torvalds l->avl_height = rh + 1; /* l: RH+1 */ 300b914c4eaSEric Dumazet RCU_INIT_POINTER(lr->avl_left, l); /* l: RH+1 */ 301b914c4eaSEric Dumazet RCU_INIT_POINTER(lr->avl_right, node); /* node: RH+1 */ 3021da177e4SLinus Torvalds lr->avl_height = rh + 2; 303b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, lr); 3041da177e4SLinus Torvalds } 3051da177e4SLinus Torvalds } else if (rh > lh + 1) { /* r: LH+2 */ 3061da177e4SLinus Torvalds struct inet_peer *rr, *rl, *rlr, *rll; 3071da177e4SLinus Torvalds int rlh; 308b914c4eaSEric Dumazet rr = rcu_dereference_protected(r->avl_right, 30998158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 310b914c4eaSEric Dumazet rl = rcu_dereference_protected(r->avl_left, 31198158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 3121da177e4SLinus Torvalds rlh = node_height(rl); 3131da177e4SLinus Torvalds if (rlh <= node_height(rr)) { /* rr: LH+1 */ 314b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, rl); /* rl: LH or LH+1 */ 315b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, l); /* l: LH */ 3161da177e4SLinus Torvalds node->avl_height = rlh + 1; /* LH+1 or LH+2 */ 317b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_right, rr); /* rr: LH+1 */ 318b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_left, node); /* node: LH+1 or LH+2 */ 3191da177e4SLinus Torvalds r->avl_height = node->avl_height + 1; 320b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, r); 3211da177e4SLinus Torvalds } else { /* rr: RH, rl: RH+1 */ 322b914c4eaSEric Dumazet rlr = rcu_dereference_protected(rl->avl_right, 32398158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* rlr: LH or LH-1 */ 324b914c4eaSEric Dumazet rll = rcu_dereference_protected(rl->avl_left, 32598158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* rll: LH or LH-1 */ 326b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, rll); /* rll: LH or LH-1 */ 327b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, l); /* l: LH */ 3281da177e4SLinus Torvalds node->avl_height = lh + 1; /* node: LH+1 */ 329b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_right, rr); /* rr: LH */ 330b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_left, rlr); /* rlr: LH or LH-1 */ 3311da177e4SLinus Torvalds r->avl_height = lh + 1; /* r: LH+1 */ 332b914c4eaSEric Dumazet RCU_INIT_POINTER(rl->avl_right, r); /* r: LH+1 */ 333b914c4eaSEric Dumazet RCU_INIT_POINTER(rl->avl_left, node); /* node: LH+1 */ 3341da177e4SLinus Torvalds rl->avl_height = lh + 2; 335b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, rl); 3361da177e4SLinus Torvalds } 3371da177e4SLinus Torvalds } else { 3381da177e4SLinus Torvalds node->avl_height = (lh > rh ? lh : rh) + 1; 3391da177e4SLinus Torvalds } 3401da177e4SLinus Torvalds } 3411da177e4SLinus Torvalds } 3421da177e4SLinus Torvalds 343aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. */ 34498158f5aSDavid S. Miller #define link_to_pool(n, base) \ 3451da177e4SLinus Torvalds do { \ 3461da177e4SLinus Torvalds n->avl_height = 1; \ 347b914c4eaSEric Dumazet n->avl_left = peer_avl_empty_rcu; \ 348b914c4eaSEric Dumazet n->avl_right = peer_avl_empty_rcu; \ 349b914c4eaSEric Dumazet /* lockless readers can catch us now */ \ 350b914c4eaSEric Dumazet rcu_assign_pointer(**--stackptr, n); \ 35198158f5aSDavid S. Miller peer_avl_rebalance(stack, stackptr, base); \ 3521da177e4SLinus Torvalds } while (0) 3531da177e4SLinus Torvalds 354aa1039e7SEric Dumazet static void inetpeer_free_rcu(struct rcu_head *head) 355aa1039e7SEric Dumazet { 356aa1039e7SEric Dumazet kmem_cache_free(peer_cachep, container_of(head, struct inet_peer, rcu)); 357aa1039e7SEric Dumazet } 358aa1039e7SEric Dumazet 3591da177e4SLinus Torvalds /* May be called with local BH enabled. */ 36098158f5aSDavid S. Miller static void unlink_from_pool(struct inet_peer *p, struct inet_peer_base *base) 3611da177e4SLinus Torvalds { 3621da177e4SLinus Torvalds int do_free; 3631da177e4SLinus Torvalds 3641da177e4SLinus Torvalds do_free = 0; 3651da177e4SLinus Torvalds 36698158f5aSDavid S. Miller spin_lock_bh(&base->lock); 3671da177e4SLinus Torvalds /* Check the reference counter. It was artificially incremented by 1 368aa1039e7SEric Dumazet * in cleanup() function to prevent sudden disappearing. If we can 369aa1039e7SEric Dumazet * atomically (because of lockless readers) take this last reference, 370aa1039e7SEric Dumazet * it's safe to remove the node and free it later. 3715f2f8920SEric Dumazet * We use refcnt=-1 to alert lockless readers this entry is deleted. 372aa1039e7SEric Dumazet */ 3735f2f8920SEric Dumazet if (atomic_cmpxchg(&p->refcnt, 1, -1) == 1) { 374b914c4eaSEric Dumazet struct inet_peer __rcu **stack[PEER_MAXDEPTH]; 375b914c4eaSEric Dumazet struct inet_peer __rcu ***stackptr, ***delp; 376*02663045SDavid S. Miller if (lookup(&p->daddr, stack, base) != p) 3771da177e4SLinus Torvalds BUG(); 3781da177e4SLinus Torvalds delp = stackptr - 1; /* *delp[0] == p */ 379b914c4eaSEric Dumazet if (p->avl_left == peer_avl_empty_rcu) { 3801da177e4SLinus Torvalds *delp[0] = p->avl_right; 3811da177e4SLinus Torvalds --stackptr; 3821da177e4SLinus Torvalds } else { 3831da177e4SLinus Torvalds /* look for a node to insert instead of p */ 3841da177e4SLinus Torvalds struct inet_peer *t; 38598158f5aSDavid S. Miller t = lookup_rightempty(p, base); 386b914c4eaSEric Dumazet BUG_ON(rcu_dereference_protected(*stackptr[-1], 38798158f5aSDavid S. Miller lockdep_is_held(&base->lock)) != t); 3881da177e4SLinus Torvalds **--stackptr = t->avl_left; 389582a72daSDavid S. Miller /* t is removed, t->daddr > x->daddr for any 3901da177e4SLinus Torvalds * x in p->avl_left subtree. 3911da177e4SLinus Torvalds * Put t in the old place of p. */ 392b914c4eaSEric Dumazet RCU_INIT_POINTER(*delp[0], t); 3931da177e4SLinus Torvalds t->avl_left = p->avl_left; 3941da177e4SLinus Torvalds t->avl_right = p->avl_right; 3951da177e4SLinus Torvalds t->avl_height = p->avl_height; 39609a62660SKris Katterjohn BUG_ON(delp[1] != &p->avl_left); 3971da177e4SLinus Torvalds delp[1] = &t->avl_left; /* was &p->avl_left */ 3981da177e4SLinus Torvalds } 39998158f5aSDavid S. Miller peer_avl_rebalance(stack, stackptr, base); 40098158f5aSDavid S. Miller base->total--; 4011da177e4SLinus Torvalds do_free = 1; 4021da177e4SLinus Torvalds } 40398158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 4041da177e4SLinus Torvalds 4051da177e4SLinus Torvalds if (do_free) 406aa1039e7SEric Dumazet call_rcu_bh(&p->rcu, inetpeer_free_rcu); 4071da177e4SLinus Torvalds else 4081da177e4SLinus Torvalds /* The node is used again. Decrease the reference counter 4091da177e4SLinus Torvalds * back. The loop "cleanup -> unlink_from_unused 4101da177e4SLinus Torvalds * -> unlink_from_pool -> putpeer -> link_to_unused 4111da177e4SLinus Torvalds * -> cleanup (for the same node)" 4121da177e4SLinus Torvalds * doesn't really exist because the entry will have a 413aa1039e7SEric Dumazet * recent deletion time and will not be cleaned again soon. 414aa1039e7SEric Dumazet */ 4151da177e4SLinus Torvalds inet_putpeer(p); 4161da177e4SLinus Torvalds } 4171da177e4SLinus Torvalds 41898158f5aSDavid S. Miller static struct inet_peer_base *peer_to_base(struct inet_peer *p) 41998158f5aSDavid S. Miller { 42098158f5aSDavid S. Miller return &v4_peers; 42198158f5aSDavid S. Miller } 42298158f5aSDavid S. Miller 4231da177e4SLinus Torvalds /* May be called with local BH enabled. */ 4241da177e4SLinus Torvalds static int cleanup_once(unsigned long ttl) 4251da177e4SLinus Torvalds { 426d71209deSPavel Emelyanov struct inet_peer *p = NULL; 4271da177e4SLinus Torvalds 4281da177e4SLinus Torvalds /* Remove the first entry from the list of unused nodes. */ 429d6cc1d64SEric Dumazet spin_lock_bh(&unused_peers.lock); 430d6cc1d64SEric Dumazet if (!list_empty(&unused_peers.list)) { 431d71209deSPavel Emelyanov __u32 delta; 432d71209deSPavel Emelyanov 433d6cc1d64SEric Dumazet p = list_first_entry(&unused_peers.list, struct inet_peer, unused); 434d71209deSPavel Emelyanov delta = (__u32)jiffies - p->dtime; 435d71209deSPavel Emelyanov 4364663afe2SEric Dumazet if (delta < ttl) { 4371da177e4SLinus Torvalds /* Do not prune fresh entries. */ 438d6cc1d64SEric Dumazet spin_unlock_bh(&unused_peers.lock); 4391da177e4SLinus Torvalds return -1; 4401da177e4SLinus Torvalds } 441d71209deSPavel Emelyanov 442d71209deSPavel Emelyanov list_del_init(&p->unused); 443d71209deSPavel Emelyanov 4441da177e4SLinus Torvalds /* Grab an extra reference to prevent node disappearing 4451da177e4SLinus Torvalds * before unlink_from_pool() call. */ 4461da177e4SLinus Torvalds atomic_inc(&p->refcnt); 4471da177e4SLinus Torvalds } 448d6cc1d64SEric Dumazet spin_unlock_bh(&unused_peers.lock); 4491da177e4SLinus Torvalds 4501da177e4SLinus Torvalds if (p == NULL) 4511da177e4SLinus Torvalds /* It means that the total number of USED entries has 4521da177e4SLinus Torvalds * grown over inet_peer_threshold. It shouldn't really 4531da177e4SLinus Torvalds * happen because of entry limits in route cache. */ 4541da177e4SLinus Torvalds return -1; 4551da177e4SLinus Torvalds 45698158f5aSDavid S. Miller unlink_from_pool(p, peer_to_base(p)); 4571da177e4SLinus Torvalds return 0; 4581da177e4SLinus Torvalds } 4591da177e4SLinus Torvalds 46098158f5aSDavid S. Miller static struct inet_peer_base *family_to_base(int family) 46198158f5aSDavid S. Miller { 46298158f5aSDavid S. Miller return &v4_peers; 46398158f5aSDavid S. Miller } 46498158f5aSDavid S. Miller 4651da177e4SLinus Torvalds /* Called with or without local BH being disabled. */ 466b534ecf1SDavid S. Miller struct inet_peer *inet_getpeer(inet_peer_address_t *daddr, int create) 4671da177e4SLinus Torvalds { 468b914c4eaSEric Dumazet struct inet_peer __rcu **stack[PEER_MAXDEPTH], ***stackptr; 46998158f5aSDavid S. Miller struct inet_peer_base *base = family_to_base(AF_INET); 47098158f5aSDavid S. Miller struct inet_peer *p; 4711da177e4SLinus Torvalds 472aa1039e7SEric Dumazet /* Look up for the address quickly, lockless. 473aa1039e7SEric Dumazet * Because of a concurrent writer, we might not find an existing entry. 474aa1039e7SEric Dumazet */ 475aa1039e7SEric Dumazet rcu_read_lock_bh(); 476*02663045SDavid S. Miller p = lookup_rcu_bh(daddr, base); 477aa1039e7SEric Dumazet rcu_read_unlock_bh(); 4781da177e4SLinus Torvalds 479aa1039e7SEric Dumazet if (p) { 480aa1039e7SEric Dumazet /* The existing node has been found. 481aa1039e7SEric Dumazet * Remove the entry from unused list if it was there. 482aa1039e7SEric Dumazet */ 4831da177e4SLinus Torvalds unlink_from_unused(p); 4841da177e4SLinus Torvalds return p; 4851da177e4SLinus Torvalds } 4861da177e4SLinus Torvalds 487aa1039e7SEric Dumazet /* retry an exact lookup, taking the lock before. 488aa1039e7SEric Dumazet * At least, nodes should be hot in our cache. 489aa1039e7SEric Dumazet */ 49098158f5aSDavid S. Miller spin_lock_bh(&base->lock); 491*02663045SDavid S. Miller p = lookup(daddr, stack, base); 492aa1039e7SEric Dumazet if (p != peer_avl_empty) { 493aa1039e7SEric Dumazet atomic_inc(&p->refcnt); 49498158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 495aa1039e7SEric Dumazet /* Remove the entry from unused list if it was there. */ 496aa1039e7SEric Dumazet unlink_from_unused(p); 497aa1039e7SEric Dumazet return p; 498aa1039e7SEric Dumazet } 499aa1039e7SEric Dumazet p = create ? kmem_cache_alloc(peer_cachep, GFP_ATOMIC) : NULL; 500aa1039e7SEric Dumazet if (p) { 501b534ecf1SDavid S. Miller p->daddr = *daddr; 502aa1039e7SEric Dumazet atomic_set(&p->refcnt, 1); 503aa1039e7SEric Dumazet atomic_set(&p->rid, 0); 504b534ecf1SDavid S. Miller atomic_set(&p->ip_id_count, secure_ip_id(daddr->a4)); 505aa1039e7SEric Dumazet p->tcp_ts_stamp = 0; 506aa1039e7SEric Dumazet INIT_LIST_HEAD(&p->unused); 507aa1039e7SEric Dumazet 5081da177e4SLinus Torvalds 5091da177e4SLinus Torvalds /* Link the node. */ 51098158f5aSDavid S. Miller link_to_pool(p, base); 51198158f5aSDavid S. Miller base->total++; 512aa1039e7SEric Dumazet } 51398158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 5141da177e4SLinus Torvalds 51598158f5aSDavid S. Miller if (base->total >= inet_peer_threshold) 5161da177e4SLinus Torvalds /* Remove one less-recently-used entry. */ 5171da177e4SLinus Torvalds cleanup_once(0); 5181da177e4SLinus Torvalds 5191da177e4SLinus Torvalds return p; 5201da177e4SLinus Torvalds } 5211da177e4SLinus Torvalds 52298158f5aSDavid S. Miller static int compute_total(void) 52398158f5aSDavid S. Miller { 52498158f5aSDavid S. Miller return v4_peers.total; 52598158f5aSDavid S. Miller } 52698158f5aSDavid S. Miller 5271da177e4SLinus Torvalds /* Called with local BH disabled. */ 5281da177e4SLinus Torvalds static void peer_check_expire(unsigned long dummy) 5291da177e4SLinus Torvalds { 5304663afe2SEric Dumazet unsigned long now = jiffies; 53198158f5aSDavid S. Miller int ttl, total; 5321da177e4SLinus Torvalds 53398158f5aSDavid S. Miller total = compute_total(); 53498158f5aSDavid S. Miller if (total >= inet_peer_threshold) 5351da177e4SLinus Torvalds ttl = inet_peer_minttl; 5361da177e4SLinus Torvalds else 5371da177e4SLinus Torvalds ttl = inet_peer_maxttl 5381da177e4SLinus Torvalds - (inet_peer_maxttl - inet_peer_minttl) / HZ * 53998158f5aSDavid S. Miller total / inet_peer_threshold * HZ; 5404663afe2SEric Dumazet while (!cleanup_once(ttl)) { 5414663afe2SEric Dumazet if (jiffies != now) 5424663afe2SEric Dumazet break; 5434663afe2SEric Dumazet } 5441da177e4SLinus Torvalds 5451da177e4SLinus Torvalds /* Trigger the timer after inet_peer_gc_mintime .. inet_peer_gc_maxtime 5461da177e4SLinus Torvalds * interval depending on the total number of entries (more entries, 5471da177e4SLinus Torvalds * less interval). */ 54898158f5aSDavid S. Miller total = compute_total(); 54998158f5aSDavid S. Miller if (total >= inet_peer_threshold) 5501344a416SDave Johnson peer_periodic_timer.expires = jiffies + inet_peer_gc_mintime; 5511344a416SDave Johnson else 5521da177e4SLinus Torvalds peer_periodic_timer.expires = jiffies 5531da177e4SLinus Torvalds + inet_peer_gc_maxtime 5541da177e4SLinus Torvalds - (inet_peer_gc_maxtime - inet_peer_gc_mintime) / HZ * 55598158f5aSDavid S. Miller total / inet_peer_threshold * HZ; 5561da177e4SLinus Torvalds add_timer(&peer_periodic_timer); 5571da177e4SLinus Torvalds } 5584663afe2SEric Dumazet 5594663afe2SEric Dumazet void inet_putpeer(struct inet_peer *p) 5604663afe2SEric Dumazet { 561d6cc1d64SEric Dumazet local_bh_disable(); 562d6cc1d64SEric Dumazet 563d6cc1d64SEric Dumazet if (atomic_dec_and_lock(&p->refcnt, &unused_peers.lock)) { 564d6cc1d64SEric Dumazet list_add_tail(&p->unused, &unused_peers.list); 5654663afe2SEric Dumazet p->dtime = (__u32)jiffies; 566d6cc1d64SEric Dumazet spin_unlock(&unused_peers.lock); 5674663afe2SEric Dumazet } 568d6cc1d64SEric Dumazet 569d6cc1d64SEric Dumazet local_bh_enable(); 5704663afe2SEric Dumazet } 571