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 82021e9299SDavid S. Miller struct inet_peer_base { 83b914c4eaSEric Dumazet struct inet_peer __rcu *root; 84aa1039e7SEric Dumazet spinlock_t lock; 85d6cc1d64SEric Dumazet int total; 86021e9299SDavid S. Miller }; 87021e9299SDavid S. Miller 88021e9299SDavid S. Miller static struct inet_peer_base v4_peers = { 89b914c4eaSEric Dumazet .root = peer_avl_empty_rcu, 9098158f5aSDavid S. Miller .lock = __SPIN_LOCK_UNLOCKED(v4_peers.lock), 91d6cc1d64SEric Dumazet .total = 0, 92d6cc1d64SEric Dumazet }; 93021e9299SDavid S. Miller 94021e9299SDavid S. Miller static struct inet_peer_base v6_peers = { 95021e9299SDavid S. Miller .root = peer_avl_empty_rcu, 96021e9299SDavid S. Miller .lock = __SPIN_LOCK_UNLOCKED(v6_peers.lock), 97021e9299SDavid S. Miller .total = 0, 98021e9299SDavid S. Miller }; 99021e9299SDavid S. Miller 1001da177e4SLinus Torvalds #define PEER_MAXDEPTH 40 /* sufficient for about 2^27 nodes */ 1011da177e4SLinus Torvalds 1021da177e4SLinus Torvalds /* Exported for sysctl_net_ipv4. */ 103243bbcaaSEric Dumazet int inet_peer_threshold __read_mostly = 65536 + 128; /* start to throw entries more 1041da177e4SLinus Torvalds * aggressively at this stage */ 105243bbcaaSEric Dumazet int inet_peer_minttl __read_mostly = 120 * HZ; /* TTL under high load: 120 sec */ 106243bbcaaSEric Dumazet int inet_peer_maxttl __read_mostly = 10 * 60 * HZ; /* usual time to live: 10 min */ 107243bbcaaSEric Dumazet int inet_peer_gc_mintime __read_mostly = 10 * HZ; 108243bbcaaSEric Dumazet int inet_peer_gc_maxtime __read_mostly = 120 * HZ; 1091da177e4SLinus Torvalds 110d6cc1d64SEric Dumazet static struct { 111d6cc1d64SEric Dumazet struct list_head list; 112d6cc1d64SEric Dumazet spinlock_t lock; 113d6cc1d64SEric Dumazet } unused_peers = { 114d6cc1d64SEric Dumazet .list = LIST_HEAD_INIT(unused_peers.list), 115d6cc1d64SEric Dumazet .lock = __SPIN_LOCK_UNLOCKED(unused_peers.lock), 116d6cc1d64SEric Dumazet }; 1171da177e4SLinus Torvalds 1181da177e4SLinus Torvalds static void peer_check_expire(unsigned long dummy); 1198d06afabSIngo Molnar static DEFINE_TIMER(peer_periodic_timer, peer_check_expire, 0, 0); 1201da177e4SLinus Torvalds 1211da177e4SLinus Torvalds 1221da177e4SLinus Torvalds /* Called from ip_output.c:ip_init */ 1231da177e4SLinus Torvalds void __init inet_initpeers(void) 1241da177e4SLinus Torvalds { 1251da177e4SLinus Torvalds struct sysinfo si; 1261da177e4SLinus Torvalds 1271da177e4SLinus Torvalds /* Use the straight interface to information about memory. */ 1281da177e4SLinus Torvalds si_meminfo(&si); 1291da177e4SLinus Torvalds /* The values below were suggested by Alexey Kuznetsov 1301da177e4SLinus Torvalds * <kuznet@ms2.inr.ac.ru>. I don't have any opinion about the values 1311da177e4SLinus Torvalds * myself. --SAW 1321da177e4SLinus Torvalds */ 1331da177e4SLinus Torvalds if (si.totalram <= (32768*1024)/PAGE_SIZE) 1341da177e4SLinus Torvalds inet_peer_threshold >>= 1; /* max pool size about 1MB on IA32 */ 1351da177e4SLinus Torvalds if (si.totalram <= (16384*1024)/PAGE_SIZE) 1361da177e4SLinus Torvalds inet_peer_threshold >>= 1; /* about 512KB */ 1371da177e4SLinus Torvalds if (si.totalram <= (8192*1024)/PAGE_SIZE) 1381da177e4SLinus Torvalds inet_peer_threshold >>= 2; /* about 128KB */ 1391da177e4SLinus Torvalds 1401da177e4SLinus Torvalds peer_cachep = kmem_cache_create("inet_peer_cache", 1411da177e4SLinus Torvalds sizeof(struct inet_peer), 142317fe0e6SEric Dumazet 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, 14320c2df83SPaul Mundt NULL); 1441da177e4SLinus Torvalds 1451da177e4SLinus Torvalds /* All the timers, started at system startup tend 1461da177e4SLinus Torvalds to synchronize. Perturb it a bit. 1471da177e4SLinus Torvalds */ 1481da177e4SLinus Torvalds peer_periodic_timer.expires = jiffies 1491da177e4SLinus Torvalds + net_random() % inet_peer_gc_maxtime 1501da177e4SLinus Torvalds + inet_peer_gc_maxtime; 1511da177e4SLinus Torvalds add_timer(&peer_periodic_timer); 1521da177e4SLinus Torvalds } 1531da177e4SLinus Torvalds 1541da177e4SLinus Torvalds /* Called with or without local BH being disabled. */ 1551da177e4SLinus Torvalds static void unlink_from_unused(struct inet_peer *p) 1561da177e4SLinus Torvalds { 157d6cc1d64SEric Dumazet if (!list_empty(&p->unused)) { 158d6cc1d64SEric Dumazet spin_lock_bh(&unused_peers.lock); 159d71209deSPavel Emelyanov list_del_init(&p->unused); 160d6cc1d64SEric Dumazet spin_unlock_bh(&unused_peers.lock); 161d6cc1d64SEric Dumazet } 1621da177e4SLinus Torvalds } 1631da177e4SLinus Torvalds 1648790ca17SDavid S. Miller static int addr_compare(const struct inetpeer_addr *a, 1658790ca17SDavid S. Miller const struct inetpeer_addr *b) 16602663045SDavid S. Miller { 16702663045SDavid S. Miller int i, n = (a->family == AF_INET ? 1 : 4); 16802663045SDavid S. Miller 16902663045SDavid S. Miller for (i = 0; i < n; i++) { 170*7a71ed89SDavid S. Miller if (a->addr.a6[i] == b->addr.a6[i]) 17102663045SDavid S. Miller continue; 172*7a71ed89SDavid S. Miller if (a->addr.a6[i] < b->addr.a6[i]) 17302663045SDavid S. Miller return -1; 17402663045SDavid S. Miller return 1; 17502663045SDavid S. Miller } 17602663045SDavid S. Miller 17702663045SDavid S. Miller return 0; 17802663045SDavid S. Miller } 17902663045SDavid S. Miller 180243bbcaaSEric Dumazet /* 181243bbcaaSEric Dumazet * Called with local BH disabled and the pool lock held. 182243bbcaaSEric Dumazet */ 18398158f5aSDavid S. Miller #define lookup(_daddr, _stack, _base) \ 1841da177e4SLinus Torvalds ({ \ 185b914c4eaSEric Dumazet struct inet_peer *u; \ 186b914c4eaSEric Dumazet struct inet_peer __rcu **v; \ 187aa1039e7SEric Dumazet \ 188243bbcaaSEric Dumazet stackptr = _stack; \ 18998158f5aSDavid S. Miller *stackptr++ = &_base->root; \ 19098158f5aSDavid S. Miller for (u = rcu_dereference_protected(_base->root, \ 19198158f5aSDavid S. Miller lockdep_is_held(&_base->lock)); \ 192b914c4eaSEric Dumazet u != peer_avl_empty; ) { \ 19302663045SDavid S. Miller int cmp = addr_compare(_daddr, &u->daddr); \ 19402663045SDavid S. Miller if (cmp == 0) \ 1951da177e4SLinus Torvalds break; \ 19602663045SDavid S. Miller if (cmp == -1) \ 1971da177e4SLinus Torvalds v = &u->avl_left; \ 1981da177e4SLinus Torvalds else \ 1991da177e4SLinus Torvalds v = &u->avl_right; \ 2001da177e4SLinus Torvalds *stackptr++ = v; \ 201b914c4eaSEric Dumazet u = rcu_dereference_protected(*v, \ 20298158f5aSDavid S. Miller lockdep_is_held(&_base->lock)); \ 2031da177e4SLinus Torvalds } \ 2041da177e4SLinus Torvalds u; \ 2051da177e4SLinus Torvalds }) 2061da177e4SLinus Torvalds 207aa1039e7SEric Dumazet /* 208aa1039e7SEric Dumazet * Called with rcu_read_lock_bh() 209aa1039e7SEric Dumazet * Because we hold no lock against a writer, its quite possible we fall 210aa1039e7SEric Dumazet * in an endless loop. 211aa1039e7SEric Dumazet * But every pointer we follow is guaranteed to be valid thanks to RCU. 212aa1039e7SEric Dumazet * We exit from this function if number of links exceeds PEER_MAXDEPTH 213aa1039e7SEric Dumazet */ 2148790ca17SDavid S. Miller static struct inet_peer *lookup_rcu_bh(const struct inetpeer_addr *daddr, 21502663045SDavid S. Miller struct inet_peer_base *base) 216aa1039e7SEric Dumazet { 21798158f5aSDavid S. Miller struct inet_peer *u = rcu_dereference_bh(base->root); 218aa1039e7SEric Dumazet int count = 0; 219aa1039e7SEric Dumazet 220aa1039e7SEric Dumazet while (u != peer_avl_empty) { 22102663045SDavid S. Miller int cmp = addr_compare(daddr, &u->daddr); 22202663045SDavid S. Miller if (cmp == 0) { 2235f2f8920SEric Dumazet /* Before taking a reference, check if this entry was 2245f2f8920SEric Dumazet * deleted, unlink_from_pool() sets refcnt=-1 to make 2255f2f8920SEric Dumazet * distinction between an unused entry (refcnt=0) and 2265f2f8920SEric Dumazet * a freed one. 2275f2f8920SEric Dumazet */ 2285f2f8920SEric Dumazet if (unlikely(!atomic_add_unless(&u->refcnt, 1, -1))) 229aa1039e7SEric Dumazet u = NULL; 230aa1039e7SEric Dumazet return u; 231aa1039e7SEric Dumazet } 23202663045SDavid S. Miller if (cmp == -1) 233aa1039e7SEric Dumazet u = rcu_dereference_bh(u->avl_left); 234aa1039e7SEric Dumazet else 235aa1039e7SEric Dumazet u = rcu_dereference_bh(u->avl_right); 236aa1039e7SEric Dumazet if (unlikely(++count == PEER_MAXDEPTH)) 237aa1039e7SEric Dumazet break; 238aa1039e7SEric Dumazet } 239aa1039e7SEric Dumazet return NULL; 240aa1039e7SEric Dumazet } 241aa1039e7SEric Dumazet 242aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. */ 24398158f5aSDavid S. Miller #define lookup_rightempty(start, base) \ 2441da177e4SLinus Torvalds ({ \ 245b914c4eaSEric Dumazet struct inet_peer *u; \ 246b914c4eaSEric Dumazet struct inet_peer __rcu **v; \ 2471da177e4SLinus Torvalds *stackptr++ = &start->avl_left; \ 2481da177e4SLinus Torvalds v = &start->avl_left; \ 249b914c4eaSEric Dumazet for (u = rcu_dereference_protected(*v, \ 25098158f5aSDavid S. Miller lockdep_is_held(&base->lock)); \ 251b914c4eaSEric Dumazet u->avl_right != peer_avl_empty_rcu; ) { \ 2521da177e4SLinus Torvalds v = &u->avl_right; \ 2531da177e4SLinus Torvalds *stackptr++ = v; \ 254b914c4eaSEric Dumazet u = rcu_dereference_protected(*v, \ 25598158f5aSDavid S. Miller lockdep_is_held(&base->lock)); \ 2561da177e4SLinus Torvalds } \ 2571da177e4SLinus Torvalds u; \ 2581da177e4SLinus Torvalds }) 2591da177e4SLinus Torvalds 260aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. 2611da177e4SLinus Torvalds * Variable names are the proof of operation correctness. 262aa1039e7SEric Dumazet * Look into mm/map_avl.c for more detail description of the ideas. 263aa1039e7SEric Dumazet */ 264b914c4eaSEric Dumazet static void peer_avl_rebalance(struct inet_peer __rcu **stack[], 26598158f5aSDavid S. Miller struct inet_peer __rcu ***stackend, 26698158f5aSDavid S. Miller struct inet_peer_base *base) 2671da177e4SLinus Torvalds { 268b914c4eaSEric Dumazet struct inet_peer __rcu **nodep; 269b914c4eaSEric Dumazet struct inet_peer *node, *l, *r; 2701da177e4SLinus Torvalds int lh, rh; 2711da177e4SLinus Torvalds 2721da177e4SLinus Torvalds while (stackend > stack) { 2731da177e4SLinus Torvalds nodep = *--stackend; 274b914c4eaSEric Dumazet node = rcu_dereference_protected(*nodep, 27598158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 276b914c4eaSEric Dumazet l = rcu_dereference_protected(node->avl_left, 27798158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 278b914c4eaSEric Dumazet r = rcu_dereference_protected(node->avl_right, 27998158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 2801da177e4SLinus Torvalds lh = node_height(l); 2811da177e4SLinus Torvalds rh = node_height(r); 2821da177e4SLinus Torvalds if (lh > rh + 1) { /* l: RH+2 */ 2831da177e4SLinus Torvalds struct inet_peer *ll, *lr, *lrl, *lrr; 2841da177e4SLinus Torvalds int lrh; 285b914c4eaSEric Dumazet ll = rcu_dereference_protected(l->avl_left, 28698158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 287b914c4eaSEric Dumazet lr = rcu_dereference_protected(l->avl_right, 28898158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 2891da177e4SLinus Torvalds lrh = node_height(lr); 2901da177e4SLinus Torvalds if (lrh <= node_height(ll)) { /* ll: RH+1 */ 291b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, lr); /* lr: RH or RH+1 */ 292b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, r); /* r: RH */ 2931da177e4SLinus Torvalds node->avl_height = lrh + 1; /* RH+1 or RH+2 */ 294b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_left, ll); /* ll: RH+1 */ 295b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_right, node); /* node: RH+1 or RH+2 */ 2961da177e4SLinus Torvalds l->avl_height = node->avl_height + 1; 297b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, l); 2981da177e4SLinus Torvalds } else { /* ll: RH, lr: RH+1 */ 299b914c4eaSEric Dumazet lrl = rcu_dereference_protected(lr->avl_left, 30098158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* lrl: RH or RH-1 */ 301b914c4eaSEric Dumazet lrr = rcu_dereference_protected(lr->avl_right, 30298158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* lrr: RH or RH-1 */ 303b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, lrr); /* lrr: RH or RH-1 */ 304b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, r); /* r: RH */ 3051da177e4SLinus Torvalds node->avl_height = rh + 1; /* node: RH+1 */ 306b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_left, ll); /* ll: RH */ 307b914c4eaSEric Dumazet RCU_INIT_POINTER(l->avl_right, lrl); /* lrl: RH or RH-1 */ 3081da177e4SLinus Torvalds l->avl_height = rh + 1; /* l: RH+1 */ 309b914c4eaSEric Dumazet RCU_INIT_POINTER(lr->avl_left, l); /* l: RH+1 */ 310b914c4eaSEric Dumazet RCU_INIT_POINTER(lr->avl_right, node); /* node: RH+1 */ 3111da177e4SLinus Torvalds lr->avl_height = rh + 2; 312b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, lr); 3131da177e4SLinus Torvalds } 3141da177e4SLinus Torvalds } else if (rh > lh + 1) { /* r: LH+2 */ 3151da177e4SLinus Torvalds struct inet_peer *rr, *rl, *rlr, *rll; 3161da177e4SLinus Torvalds int rlh; 317b914c4eaSEric Dumazet rr = rcu_dereference_protected(r->avl_right, 31898158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 319b914c4eaSEric Dumazet rl = rcu_dereference_protected(r->avl_left, 32098158f5aSDavid S. Miller lockdep_is_held(&base->lock)); 3211da177e4SLinus Torvalds rlh = node_height(rl); 3221da177e4SLinus Torvalds if (rlh <= node_height(rr)) { /* rr: LH+1 */ 323b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, rl); /* rl: LH or LH+1 */ 324b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, l); /* l: LH */ 3251da177e4SLinus Torvalds node->avl_height = rlh + 1; /* LH+1 or LH+2 */ 326b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_right, rr); /* rr: LH+1 */ 327b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_left, node); /* node: LH+1 or LH+2 */ 3281da177e4SLinus Torvalds r->avl_height = node->avl_height + 1; 329b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, r); 3301da177e4SLinus Torvalds } else { /* rr: RH, rl: RH+1 */ 331b914c4eaSEric Dumazet rlr = rcu_dereference_protected(rl->avl_right, 33298158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* rlr: LH or LH-1 */ 333b914c4eaSEric Dumazet rll = rcu_dereference_protected(rl->avl_left, 33498158f5aSDavid S. Miller lockdep_is_held(&base->lock)); /* rll: LH or LH-1 */ 335b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_right, rll); /* rll: LH or LH-1 */ 336b914c4eaSEric Dumazet RCU_INIT_POINTER(node->avl_left, l); /* l: LH */ 3371da177e4SLinus Torvalds node->avl_height = lh + 1; /* node: LH+1 */ 338b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_right, rr); /* rr: LH */ 339b914c4eaSEric Dumazet RCU_INIT_POINTER(r->avl_left, rlr); /* rlr: LH or LH-1 */ 3401da177e4SLinus Torvalds r->avl_height = lh + 1; /* r: LH+1 */ 341b914c4eaSEric Dumazet RCU_INIT_POINTER(rl->avl_right, r); /* r: LH+1 */ 342b914c4eaSEric Dumazet RCU_INIT_POINTER(rl->avl_left, node); /* node: LH+1 */ 3431da177e4SLinus Torvalds rl->avl_height = lh + 2; 344b914c4eaSEric Dumazet RCU_INIT_POINTER(*nodep, rl); 3451da177e4SLinus Torvalds } 3461da177e4SLinus Torvalds } else { 3471da177e4SLinus Torvalds node->avl_height = (lh > rh ? lh : rh) + 1; 3481da177e4SLinus Torvalds } 3491da177e4SLinus Torvalds } 3501da177e4SLinus Torvalds } 3511da177e4SLinus Torvalds 352aa1039e7SEric Dumazet /* Called with local BH disabled and the pool lock held. */ 35398158f5aSDavid S. Miller #define link_to_pool(n, base) \ 3541da177e4SLinus Torvalds do { \ 3551da177e4SLinus Torvalds n->avl_height = 1; \ 356b914c4eaSEric Dumazet n->avl_left = peer_avl_empty_rcu; \ 357b914c4eaSEric Dumazet n->avl_right = peer_avl_empty_rcu; \ 358b914c4eaSEric Dumazet /* lockless readers can catch us now */ \ 359b914c4eaSEric Dumazet rcu_assign_pointer(**--stackptr, n); \ 36098158f5aSDavid S. Miller peer_avl_rebalance(stack, stackptr, base); \ 3611da177e4SLinus Torvalds } while (0) 3621da177e4SLinus Torvalds 363aa1039e7SEric Dumazet static void inetpeer_free_rcu(struct rcu_head *head) 364aa1039e7SEric Dumazet { 365aa1039e7SEric Dumazet kmem_cache_free(peer_cachep, container_of(head, struct inet_peer, rcu)); 366aa1039e7SEric Dumazet } 367aa1039e7SEric Dumazet 3681da177e4SLinus Torvalds /* May be called with local BH enabled. */ 36998158f5aSDavid S. Miller static void unlink_from_pool(struct inet_peer *p, struct inet_peer_base *base) 3701da177e4SLinus Torvalds { 3711da177e4SLinus Torvalds int do_free; 3721da177e4SLinus Torvalds 3731da177e4SLinus Torvalds do_free = 0; 3741da177e4SLinus Torvalds 37598158f5aSDavid S. Miller spin_lock_bh(&base->lock); 3761da177e4SLinus Torvalds /* Check the reference counter. It was artificially incremented by 1 377aa1039e7SEric Dumazet * in cleanup() function to prevent sudden disappearing. If we can 378aa1039e7SEric Dumazet * atomically (because of lockless readers) take this last reference, 379aa1039e7SEric Dumazet * it's safe to remove the node and free it later. 3805f2f8920SEric Dumazet * We use refcnt=-1 to alert lockless readers this entry is deleted. 381aa1039e7SEric Dumazet */ 3825f2f8920SEric Dumazet if (atomic_cmpxchg(&p->refcnt, 1, -1) == 1) { 383b914c4eaSEric Dumazet struct inet_peer __rcu **stack[PEER_MAXDEPTH]; 384b914c4eaSEric Dumazet struct inet_peer __rcu ***stackptr, ***delp; 38502663045SDavid S. Miller if (lookup(&p->daddr, stack, base) != p) 3861da177e4SLinus Torvalds BUG(); 3871da177e4SLinus Torvalds delp = stackptr - 1; /* *delp[0] == p */ 388b914c4eaSEric Dumazet if (p->avl_left == peer_avl_empty_rcu) { 3891da177e4SLinus Torvalds *delp[0] = p->avl_right; 3901da177e4SLinus Torvalds --stackptr; 3911da177e4SLinus Torvalds } else { 3921da177e4SLinus Torvalds /* look for a node to insert instead of p */ 3931da177e4SLinus Torvalds struct inet_peer *t; 39498158f5aSDavid S. Miller t = lookup_rightempty(p, base); 395b914c4eaSEric Dumazet BUG_ON(rcu_dereference_protected(*stackptr[-1], 39698158f5aSDavid S. Miller lockdep_is_held(&base->lock)) != t); 3971da177e4SLinus Torvalds **--stackptr = t->avl_left; 398582a72daSDavid S. Miller /* t is removed, t->daddr > x->daddr for any 3991da177e4SLinus Torvalds * x in p->avl_left subtree. 4001da177e4SLinus Torvalds * Put t in the old place of p. */ 401b914c4eaSEric Dumazet RCU_INIT_POINTER(*delp[0], t); 4021da177e4SLinus Torvalds t->avl_left = p->avl_left; 4031da177e4SLinus Torvalds t->avl_right = p->avl_right; 4041da177e4SLinus Torvalds t->avl_height = p->avl_height; 40509a62660SKris Katterjohn BUG_ON(delp[1] != &p->avl_left); 4061da177e4SLinus Torvalds delp[1] = &t->avl_left; /* was &p->avl_left */ 4071da177e4SLinus Torvalds } 40898158f5aSDavid S. Miller peer_avl_rebalance(stack, stackptr, base); 40998158f5aSDavid S. Miller base->total--; 4101da177e4SLinus Torvalds do_free = 1; 4111da177e4SLinus Torvalds } 41298158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 4131da177e4SLinus Torvalds 4141da177e4SLinus Torvalds if (do_free) 415aa1039e7SEric Dumazet call_rcu_bh(&p->rcu, inetpeer_free_rcu); 4161da177e4SLinus Torvalds else 4171da177e4SLinus Torvalds /* The node is used again. Decrease the reference counter 4181da177e4SLinus Torvalds * back. The loop "cleanup -> unlink_from_unused 4191da177e4SLinus Torvalds * -> unlink_from_pool -> putpeer -> link_to_unused 4201da177e4SLinus Torvalds * -> cleanup (for the same node)" 4211da177e4SLinus Torvalds * doesn't really exist because the entry will have a 422aa1039e7SEric Dumazet * recent deletion time and will not be cleaned again soon. 423aa1039e7SEric Dumazet */ 4241da177e4SLinus Torvalds inet_putpeer(p); 4251da177e4SLinus Torvalds } 4261da177e4SLinus Torvalds 427021e9299SDavid S. Miller static struct inet_peer_base *family_to_base(int family) 428021e9299SDavid S. Miller { 429021e9299SDavid S. Miller return (family == AF_INET ? &v4_peers : &v6_peers); 430021e9299SDavid S. Miller } 431021e9299SDavid S. Miller 43298158f5aSDavid S. Miller static struct inet_peer_base *peer_to_base(struct inet_peer *p) 43398158f5aSDavid S. Miller { 434021e9299SDavid S. Miller return family_to_base(p->daddr.family); 43598158f5aSDavid S. Miller } 43698158f5aSDavid S. Miller 4371da177e4SLinus Torvalds /* May be called with local BH enabled. */ 4381da177e4SLinus Torvalds static int cleanup_once(unsigned long ttl) 4391da177e4SLinus Torvalds { 440d71209deSPavel Emelyanov struct inet_peer *p = NULL; 4411da177e4SLinus Torvalds 4421da177e4SLinus Torvalds /* Remove the first entry from the list of unused nodes. */ 443d6cc1d64SEric Dumazet spin_lock_bh(&unused_peers.lock); 444d6cc1d64SEric Dumazet if (!list_empty(&unused_peers.list)) { 445d71209deSPavel Emelyanov __u32 delta; 446d71209deSPavel Emelyanov 447d6cc1d64SEric Dumazet p = list_first_entry(&unused_peers.list, struct inet_peer, unused); 448d71209deSPavel Emelyanov delta = (__u32)jiffies - p->dtime; 449d71209deSPavel Emelyanov 4504663afe2SEric Dumazet if (delta < ttl) { 4511da177e4SLinus Torvalds /* Do not prune fresh entries. */ 452d6cc1d64SEric Dumazet spin_unlock_bh(&unused_peers.lock); 4531da177e4SLinus Torvalds return -1; 4541da177e4SLinus Torvalds } 455d71209deSPavel Emelyanov 456d71209deSPavel Emelyanov list_del_init(&p->unused); 457d71209deSPavel Emelyanov 4581da177e4SLinus Torvalds /* Grab an extra reference to prevent node disappearing 4591da177e4SLinus Torvalds * before unlink_from_pool() call. */ 4601da177e4SLinus Torvalds atomic_inc(&p->refcnt); 4611da177e4SLinus Torvalds } 462d6cc1d64SEric Dumazet spin_unlock_bh(&unused_peers.lock); 4631da177e4SLinus Torvalds 4641da177e4SLinus Torvalds if (p == NULL) 4651da177e4SLinus Torvalds /* It means that the total number of USED entries has 4661da177e4SLinus Torvalds * grown over inet_peer_threshold. It shouldn't really 4671da177e4SLinus Torvalds * happen because of entry limits in route cache. */ 4681da177e4SLinus Torvalds return -1; 4691da177e4SLinus Torvalds 47098158f5aSDavid S. Miller unlink_from_pool(p, peer_to_base(p)); 4711da177e4SLinus Torvalds return 0; 4721da177e4SLinus Torvalds } 4731da177e4SLinus Torvalds 4741da177e4SLinus Torvalds /* Called with or without local BH being disabled. */ 4758790ca17SDavid S. Miller struct inet_peer *inet_getpeer(struct inetpeer_addr *daddr, int create) 4761da177e4SLinus Torvalds { 477b914c4eaSEric Dumazet struct inet_peer __rcu **stack[PEER_MAXDEPTH], ***stackptr; 4783408404aSDavid S. Miller struct inet_peer_base *base = family_to_base(daddr->family); 47998158f5aSDavid S. Miller struct inet_peer *p; 4801da177e4SLinus Torvalds 481aa1039e7SEric Dumazet /* Look up for the address quickly, lockless. 482aa1039e7SEric Dumazet * Because of a concurrent writer, we might not find an existing entry. 483aa1039e7SEric Dumazet */ 484aa1039e7SEric Dumazet rcu_read_lock_bh(); 48502663045SDavid S. Miller p = lookup_rcu_bh(daddr, base); 486aa1039e7SEric Dumazet rcu_read_unlock_bh(); 4871da177e4SLinus Torvalds 488aa1039e7SEric Dumazet if (p) { 489aa1039e7SEric Dumazet /* The existing node has been found. 490aa1039e7SEric Dumazet * Remove the entry from unused list if it was there. 491aa1039e7SEric Dumazet */ 4921da177e4SLinus Torvalds unlink_from_unused(p); 4931da177e4SLinus Torvalds return p; 4941da177e4SLinus Torvalds } 4951da177e4SLinus Torvalds 496aa1039e7SEric Dumazet /* retry an exact lookup, taking the lock before. 497aa1039e7SEric Dumazet * At least, nodes should be hot in our cache. 498aa1039e7SEric Dumazet */ 49998158f5aSDavid S. Miller spin_lock_bh(&base->lock); 50002663045SDavid S. Miller p = lookup(daddr, stack, base); 501aa1039e7SEric Dumazet if (p != peer_avl_empty) { 502aa1039e7SEric Dumazet atomic_inc(&p->refcnt); 50398158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 504aa1039e7SEric Dumazet /* Remove the entry from unused list if it was there. */ 505aa1039e7SEric Dumazet unlink_from_unused(p); 506aa1039e7SEric Dumazet return p; 507aa1039e7SEric Dumazet } 508aa1039e7SEric Dumazet p = create ? kmem_cache_alloc(peer_cachep, GFP_ATOMIC) : NULL; 509aa1039e7SEric Dumazet if (p) { 510b534ecf1SDavid S. Miller p->daddr = *daddr; 511aa1039e7SEric Dumazet atomic_set(&p->refcnt, 1); 512aa1039e7SEric Dumazet atomic_set(&p->rid, 0); 513*7a71ed89SDavid S. Miller atomic_set(&p->ip_id_count, secure_ip_id(daddr->addr.a4)); 514aa1039e7SEric Dumazet p->tcp_ts_stamp = 0; 515144001bdSDavid S. Miller p->metrics[RTAX_LOCK-1] = INETPEER_METRICS_NEW; 51692d86829SDavid S. Miller p->rate_tokens = 0; 51792d86829SDavid S. Miller p->rate_last = 0; 518aa1039e7SEric Dumazet INIT_LIST_HEAD(&p->unused); 519aa1039e7SEric Dumazet 5201da177e4SLinus Torvalds 5211da177e4SLinus Torvalds /* Link the node. */ 52298158f5aSDavid S. Miller link_to_pool(p, base); 52398158f5aSDavid S. Miller base->total++; 524aa1039e7SEric Dumazet } 52598158f5aSDavid S. Miller spin_unlock_bh(&base->lock); 5261da177e4SLinus Torvalds 52798158f5aSDavid S. Miller if (base->total >= inet_peer_threshold) 5281da177e4SLinus Torvalds /* Remove one less-recently-used entry. */ 5291da177e4SLinus Torvalds cleanup_once(0); 5301da177e4SLinus Torvalds 5311da177e4SLinus Torvalds return p; 5321da177e4SLinus Torvalds } 5331da177e4SLinus Torvalds 53498158f5aSDavid S. Miller static int compute_total(void) 53598158f5aSDavid S. Miller { 536021e9299SDavid S. Miller return v4_peers.total + v6_peers.total; 53798158f5aSDavid S. Miller } 538b3419363SDavid S. Miller EXPORT_SYMBOL_GPL(inet_getpeer); 53998158f5aSDavid S. Miller 5401da177e4SLinus Torvalds /* Called with local BH disabled. */ 5411da177e4SLinus Torvalds static void peer_check_expire(unsigned long dummy) 5421da177e4SLinus Torvalds { 5434663afe2SEric Dumazet unsigned long now = jiffies; 54498158f5aSDavid S. Miller int ttl, total; 5451da177e4SLinus Torvalds 54698158f5aSDavid S. Miller total = compute_total(); 54798158f5aSDavid S. Miller if (total >= inet_peer_threshold) 5481da177e4SLinus Torvalds ttl = inet_peer_minttl; 5491da177e4SLinus Torvalds else 5501da177e4SLinus Torvalds ttl = inet_peer_maxttl 5511da177e4SLinus Torvalds - (inet_peer_maxttl - inet_peer_minttl) / HZ * 55298158f5aSDavid S. Miller total / inet_peer_threshold * HZ; 5534663afe2SEric Dumazet while (!cleanup_once(ttl)) { 5544663afe2SEric Dumazet if (jiffies != now) 5554663afe2SEric Dumazet break; 5564663afe2SEric Dumazet } 5571da177e4SLinus Torvalds 5581da177e4SLinus Torvalds /* Trigger the timer after inet_peer_gc_mintime .. inet_peer_gc_maxtime 5591da177e4SLinus Torvalds * interval depending on the total number of entries (more entries, 5601da177e4SLinus Torvalds * less interval). */ 56198158f5aSDavid S. Miller total = compute_total(); 56298158f5aSDavid S. Miller if (total >= inet_peer_threshold) 5631344a416SDave Johnson peer_periodic_timer.expires = jiffies + inet_peer_gc_mintime; 5641344a416SDave Johnson else 5651da177e4SLinus Torvalds peer_periodic_timer.expires = jiffies 5661da177e4SLinus Torvalds + inet_peer_gc_maxtime 5671da177e4SLinus Torvalds - (inet_peer_gc_maxtime - inet_peer_gc_mintime) / HZ * 56898158f5aSDavid S. Miller total / inet_peer_threshold * HZ; 5691da177e4SLinus Torvalds add_timer(&peer_periodic_timer); 5701da177e4SLinus Torvalds } 5714663afe2SEric Dumazet 5724663afe2SEric Dumazet void inet_putpeer(struct inet_peer *p) 5734663afe2SEric Dumazet { 574d6cc1d64SEric Dumazet local_bh_disable(); 575d6cc1d64SEric Dumazet 576d6cc1d64SEric Dumazet if (atomic_dec_and_lock(&p->refcnt, &unused_peers.lock)) { 577d6cc1d64SEric Dumazet list_add_tail(&p->unused, &unused_peers.list); 5784663afe2SEric Dumazet p->dtime = (__u32)jiffies; 579d6cc1d64SEric Dumazet spin_unlock(&unused_peers.lock); 5804663afe2SEric Dumazet } 581d6cc1d64SEric Dumazet 582d6cc1d64SEric Dumazet local_bh_enable(); 5834663afe2SEric Dumazet } 584b3419363SDavid S. Miller EXPORT_SYMBOL_GPL(inet_putpeer); 58592d86829SDavid S. Miller 58692d86829SDavid S. Miller /* 58792d86829SDavid S. Miller * Check transmit rate limitation for given message. 58892d86829SDavid S. Miller * The rate information is held in the inet_peer entries now. 58992d86829SDavid S. Miller * This function is generic and could be used for other purposes 59092d86829SDavid S. Miller * too. It uses a Token bucket filter as suggested by Alexey Kuznetsov. 59192d86829SDavid S. Miller * 59292d86829SDavid S. Miller * Note that the same inet_peer fields are modified by functions in 59392d86829SDavid S. Miller * route.c too, but these work for packet destinations while xrlim_allow 59492d86829SDavid S. Miller * works for icmp destinations. This means the rate limiting information 59592d86829SDavid S. Miller * for one "ip object" is shared - and these ICMPs are twice limited: 59692d86829SDavid S. Miller * by source and by destination. 59792d86829SDavid S. Miller * 59892d86829SDavid S. Miller * RFC 1812: 4.3.2.8 SHOULD be able to limit error message rate 59992d86829SDavid S. Miller * SHOULD allow setting of rate limits 60092d86829SDavid S. Miller * 60192d86829SDavid S. Miller * Shared between ICMPv4 and ICMPv6. 60292d86829SDavid S. Miller */ 60392d86829SDavid S. Miller #define XRLIM_BURST_FACTOR 6 60492d86829SDavid S. Miller bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout) 60592d86829SDavid S. Miller { 60692d86829SDavid S. Miller unsigned long now, token; 60792d86829SDavid S. Miller bool rc = false; 60892d86829SDavid S. Miller 60992d86829SDavid S. Miller if (!peer) 61092d86829SDavid S. Miller return true; 61192d86829SDavid S. Miller 61292d86829SDavid S. Miller token = peer->rate_tokens; 61392d86829SDavid S. Miller now = jiffies; 61492d86829SDavid S. Miller token += now - peer->rate_last; 61592d86829SDavid S. Miller peer->rate_last = now; 61692d86829SDavid S. Miller if (token > XRLIM_BURST_FACTOR * timeout) 61792d86829SDavid S. Miller token = XRLIM_BURST_FACTOR * timeout; 61892d86829SDavid S. Miller if (token >= timeout) { 61992d86829SDavid S. Miller token -= timeout; 62092d86829SDavid S. Miller rc = true; 62192d86829SDavid S. Miller } 62292d86829SDavid S. Miller peer->rate_tokens = token; 62392d86829SDavid S. Miller return rc; 62492d86829SDavid S. Miller } 62592d86829SDavid S. Miller EXPORT_SYMBOL(inet_peer_xrlim_allow); 626