blob: 4e4d6dda5fa19aaba4c5882faf9f3c06db91be7f [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/*
2 * INETPEER - A storage for permanent information about peers
3 *
4 * This source is covered by the GNU GPL, the same as all kernel sources.
5 *
6 * Authors: Andrey V. Savochkin <saw@msu.ru>
7 */
8
9#include <linux/module.h>
10#include <linux/types.h>
11#include <linux/slab.h>
12#include <linux/interrupt.h>
13#include <linux/spinlock.h>
14#include <linux/random.h>
15#include <linux/timer.h>
16#include <linux/time.h>
17#include <linux/kernel.h>
18#include <linux/mm.h>
19#include <linux/net.h>
20#include <linux/workqueue.h>
21#include <net/ip.h>
22#include <net/inetpeer.h>
23#include <net/secure_seq.h>
24
25/*
26 * Theory of operations.
27 * We keep one entry for each peer IP address. The nodes contains long-living
28 * information about the peer which doesn't depend on routes.
29 *
30 * Nodes are removed only when reference counter goes to 0.
31 * When it's happened the node may be removed when a sufficient amount of
32 * time has been passed since its last use. The less-recently-used entry can
33 * also be removed if the pool is overloaded i.e. if the total amount of
34 * entries is greater-or-equal than the threshold.
35 *
36 * Node pool is organised as an AVL tree.
37 * Such an implementation has been chosen not just for fun. It's a way to
38 * prevent easy and efficient DoS attacks by creating hash collisions. A huge
39 * amount of long living nodes in a single hash slot would significantly delay
40 * lookups performed with disabled BHs.
41 *
42 * Serialisation issues.
43 * 1. Nodes may appear in the tree only with the pool lock held.
44 * 2. Nodes may disappear from the tree only with the pool lock held
45 * AND reference count being 0.
46 * 3. Global variable peer_total is modified under the pool lock.
47 * 4. struct inet_peer fields modification:
48 * avl_left, avl_right, avl_parent, avl_height: pool lock
49 * refcnt: atomically against modifications on other CPU;
50 * usually under some other lock to prevent node disappearing
51 * daddr: unchangeable
52 */
53
54static struct kmem_cache *peer_cachep __read_mostly;
55
56static LIST_HEAD(gc_list);
57static const int gc_delay = 60 * HZ;
58static struct delayed_work gc_work;
59static DEFINE_SPINLOCK(gc_lock);
60
61#define node_height(x) x->avl_height
62
63#define peer_avl_empty ((struct inet_peer *)&peer_fake_node)
64#define peer_avl_empty_rcu ((struct inet_peer __rcu __force *)&peer_fake_node)
65static const struct inet_peer peer_fake_node = {
66 .avl_left = peer_avl_empty_rcu,
67 .avl_right = peer_avl_empty_rcu,
68 .avl_height = 0
69};
70
71struct inet_peer_base {
72 struct inet_peer __rcu *root;
73 seqlock_t lock;
74 int total;
75};
76
77static struct inet_peer_base v4_peers = {
78 .root = peer_avl_empty_rcu,
79 .lock = __SEQLOCK_UNLOCKED(v4_peers.lock),
80 .total = 0,
81};
82
83static struct inet_peer_base v6_peers = {
84 .root = peer_avl_empty_rcu,
85 .lock = __SEQLOCK_UNLOCKED(v6_peers.lock),
86 .total = 0,
87};
88
89#define PEER_MAXDEPTH 40 /* sufficient for about 2^27 nodes */
90
91/* Exported for sysctl_net_ipv4. */
92int inet_peer_threshold __read_mostly = 65536 + 128; /* start to throw entries more
93 * aggressively at this stage */
94int inet_peer_minttl __read_mostly = 120 * HZ; /* TTL under high load: 120 sec */
95int inet_peer_maxttl __read_mostly = 10 * 60 * HZ; /* usual time to live: 10 min */
96
97
98static void inetpeer_gc_worker(struct work_struct *work)
99{
100 struct inet_peer *p, *n;
101 LIST_HEAD(list);
102
103 spin_lock_bh(&gc_lock);
104 list_replace_init(&gc_list, &list);
105 spin_unlock_bh(&gc_lock);
106
107 if (list_empty(&list))
108 return;
109
110 list_for_each_entry_safe(p, n, &list, gc_list) {
111
112 if(need_resched())
113 cond_resched();
114
115 if (p->avl_left != peer_avl_empty) {
116 list_add_tail(&p->avl_left->gc_list, &list);
117 p->avl_left = peer_avl_empty;
118 }
119
120 if (p->avl_right != peer_avl_empty) {
121 list_add_tail(&p->avl_right->gc_list, &list);
122 p->avl_right = peer_avl_empty;
123 }
124
125 n = list_entry(p->gc_list.next, struct inet_peer, gc_list);
126
127 if (!atomic_read(&p->refcnt)) {
128 list_del(&p->gc_list);
129 netslab_dec(INETPEER_SLAB);
130 kmem_cache_free(peer_cachep, p);
131 }
132 }
133
134 if (list_empty(&list))
135 return;
136
137 spin_lock_bh(&gc_lock);
138 list_splice(&list, &gc_list);
139 spin_unlock_bh(&gc_lock);
140
141 schedule_delayed_work(&gc_work, gc_delay);
142}
143
144/* Called from ip_output.c:ip_init */
145void __init inet_initpeers(void)
146{
147 struct sysinfo si;
148
149 /* Use the straight interface to information about memory. */
150 si_meminfo(&si);
151 /* The values below were suggested by Alexey Kuznetsov
152 * <kuznet@ms2.inr.ac.ru>. I don't have any opinion about the values
153 * myself. --SAW
154 */
155 if (si.totalram <= (32768*1024)/PAGE_SIZE)
156 inet_peer_threshold >>= 1; /* max pool size about 1MB on IA32 */
157 if (si.totalram <= (16384*1024)/PAGE_SIZE)
158 inet_peer_threshold >>= 1; /* about 512KB */
159 if (si.totalram <= (8192*1024)/PAGE_SIZE)
160 inet_peer_threshold >>= 2; /* about 128KB */
161
162 peer_cachep = kmem_cache_create("inet_peer_cache",
163 sizeof(struct inet_peer),
164 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC,
165 NULL);
166
167 INIT_DELAYED_WORK_DEFERRABLE(&gc_work, inetpeer_gc_worker);
168}
169
170static int addr_compare(const struct inetpeer_addr *a,
171 const struct inetpeer_addr *b)
172{
173 int i, n = (a->family == AF_INET ? 1 : 4);
174
175 for (i = 0; i < n; i++) {
176 if (a->addr.a6[i] == b->addr.a6[i])
177 continue;
178 if ((__force u32)a->addr.a6[i] < (__force u32)b->addr.a6[i])
179 return -1;
180 return 1;
181 }
182
183 return 0;
184}
185
186#define rcu_deref_locked(X, BASE) \
187 rcu_dereference_protected(X, lockdep_is_held(&(BASE)->lock.lock))
188
189/*
190 * Called with local BH disabled and the pool lock held.
191 */
192#define lookup(_daddr, _stack, _base) \
193({ \
194 struct inet_peer *u; \
195 struct inet_peer __rcu **v; \
196 \
197 stackptr = _stack; \
198 *stackptr++ = &_base->root; \
199 for (u = rcu_deref_locked(_base->root, _base); \
200 u != peer_avl_empty; ) { \
201 int cmp = addr_compare(_daddr, &u->daddr); \
202 if (cmp == 0) \
203 break; \
204 if (cmp == -1) \
205 v = &u->avl_left; \
206 else \
207 v = &u->avl_right; \
208 *stackptr++ = v; \
209 u = rcu_deref_locked(*v, _base); \
210 } \
211 u; \
212})
213
214/*
215 * Called with rcu_read_lock()
216 * Because we hold no lock against a writer, its quite possible we fall
217 * in an endless loop.
218 * But every pointer we follow is guaranteed to be valid thanks to RCU.
219 * We exit from this function if number of links exceeds PEER_MAXDEPTH
220 */
221static struct inet_peer *lookup_rcu(const struct inetpeer_addr *daddr,
222 struct inet_peer_base *base)
223{
224 struct inet_peer *u = rcu_dereference(base->root);
225 int count = 0;
226
227 while (u != peer_avl_empty) {
228 int cmp = addr_compare(daddr, &u->daddr);
229 if (cmp == 0) {
230 /* Before taking a reference, check if this entry was
231 * deleted (refcnt=-1)
232 */
233 if (!atomic_add_unless(&u->refcnt, 1, -1))
234 u = NULL;
235 return u;
236 }
237 if (cmp == -1)
238 u = rcu_dereference(u->avl_left);
239 else
240 u = rcu_dereference(u->avl_right);
241 if (unlikely(++count == PEER_MAXDEPTH))
242 break;
243 }
244 return NULL;
245}
246
247/* Called with local BH disabled and the pool lock held. */
248#define lookup_rightempty(start, base) \
249({ \
250 struct inet_peer *u; \
251 struct inet_peer __rcu **v; \
252 *stackptr++ = &start->avl_left; \
253 v = &start->avl_left; \
254 for (u = rcu_deref_locked(*v, base); \
255 u->avl_right != peer_avl_empty_rcu; ) { \
256 v = &u->avl_right; \
257 *stackptr++ = v; \
258 u = rcu_deref_locked(*v, base); \
259 } \
260 u; \
261})
262
263/* Called with local BH disabled and the pool lock held.
264 * Variable names are the proof of operation correctness.
265 * Look into mm/map_avl.c for more detail description of the ideas.
266 */
267static void peer_avl_rebalance(struct inet_peer __rcu **stack[],
268 struct inet_peer __rcu ***stackend,
269 struct inet_peer_base *base)
270{
271 struct inet_peer __rcu **nodep;
272 struct inet_peer *node, *l, *r;
273 int lh, rh;
274
275 while (stackend > stack) {
276 nodep = *--stackend;
277 node = rcu_deref_locked(*nodep, base);
278 l = rcu_deref_locked(node->avl_left, base);
279 r = rcu_deref_locked(node->avl_right, base);
280 lh = node_height(l);
281 rh = node_height(r);
282 if (lh > rh + 1) { /* l: RH+2 */
283 struct inet_peer *ll, *lr, *lrl, *lrr;
284 int lrh;
285 ll = rcu_deref_locked(l->avl_left, base);
286 lr = rcu_deref_locked(l->avl_right, base);
287 lrh = node_height(lr);
288 if (lrh <= node_height(ll)) { /* ll: RH+1 */
289 RCU_INIT_POINTER(node->avl_left, lr); /* lr: RH or RH+1 */
290 RCU_INIT_POINTER(node->avl_right, r); /* r: RH */
291 node->avl_height = lrh + 1; /* RH+1 or RH+2 */
292 RCU_INIT_POINTER(l->avl_left, ll); /* ll: RH+1 */
293 RCU_INIT_POINTER(l->avl_right, node); /* node: RH+1 or RH+2 */
294 l->avl_height = node->avl_height + 1;
295 RCU_INIT_POINTER(*nodep, l);
296 } else { /* ll: RH, lr: RH+1 */
297 lrl = rcu_deref_locked(lr->avl_left, base);/* lrl: RH or RH-1 */
298 lrr = rcu_deref_locked(lr->avl_right, base);/* lrr: RH or RH-1 */
299 RCU_INIT_POINTER(node->avl_left, lrr); /* lrr: RH or RH-1 */
300 RCU_INIT_POINTER(node->avl_right, r); /* r: RH */
301 node->avl_height = rh + 1; /* node: RH+1 */
302 RCU_INIT_POINTER(l->avl_left, ll); /* ll: RH */
303 RCU_INIT_POINTER(l->avl_right, lrl); /* lrl: RH or RH-1 */
304 l->avl_height = rh + 1; /* l: RH+1 */
305 RCU_INIT_POINTER(lr->avl_left, l); /* l: RH+1 */
306 RCU_INIT_POINTER(lr->avl_right, node); /* node: RH+1 */
307 lr->avl_height = rh + 2;
308 RCU_INIT_POINTER(*nodep, lr);
309 }
310 } else if (rh > lh + 1) { /* r: LH+2 */
311 struct inet_peer *rr, *rl, *rlr, *rll;
312 int rlh;
313 rr = rcu_deref_locked(r->avl_right, base);
314 rl = rcu_deref_locked(r->avl_left, base);
315 rlh = node_height(rl);
316 if (rlh <= node_height(rr)) { /* rr: LH+1 */
317 RCU_INIT_POINTER(node->avl_right, rl); /* rl: LH or LH+1 */
318 RCU_INIT_POINTER(node->avl_left, l); /* l: LH */
319 node->avl_height = rlh + 1; /* LH+1 or LH+2 */
320 RCU_INIT_POINTER(r->avl_right, rr); /* rr: LH+1 */
321 RCU_INIT_POINTER(r->avl_left, node); /* node: LH+1 or LH+2 */
322 r->avl_height = node->avl_height + 1;
323 RCU_INIT_POINTER(*nodep, r);
324 } else { /* rr: RH, rl: RH+1 */
325 rlr = rcu_deref_locked(rl->avl_right, base);/* rlr: LH or LH-1 */
326 rll = rcu_deref_locked(rl->avl_left, base);/* rll: LH or LH-1 */
327 RCU_INIT_POINTER(node->avl_right, rll); /* rll: LH or LH-1 */
328 RCU_INIT_POINTER(node->avl_left, l); /* l: LH */
329 node->avl_height = lh + 1; /* node: LH+1 */
330 RCU_INIT_POINTER(r->avl_right, rr); /* rr: LH */
331 RCU_INIT_POINTER(r->avl_left, rlr); /* rlr: LH or LH-1 */
332 r->avl_height = lh + 1; /* r: LH+1 */
333 RCU_INIT_POINTER(rl->avl_right, r); /* r: LH+1 */
334 RCU_INIT_POINTER(rl->avl_left, node); /* node: LH+1 */
335 rl->avl_height = lh + 2;
336 RCU_INIT_POINTER(*nodep, rl);
337 }
338 } else {
339 node->avl_height = (lh > rh ? lh : rh) + 1;
340 }
341 }
342}
343
344/* Called with local BH disabled and the pool lock held. */
345#define link_to_pool(n, base) \
346do { \
347 n->avl_height = 1; \
348 n->avl_left = peer_avl_empty_rcu; \
349 n->avl_right = peer_avl_empty_rcu; \
350 /* lockless readers can catch us now */ \
351 rcu_assign_pointer(**--stackptr, n); \
352 peer_avl_rebalance(stack, stackptr, base); \
353} while (0)
354
355static void inetpeer_free_rcu(struct rcu_head *head)
356{
357 netslab_dec(INETPEER_SLAB);
358 kmem_cache_free(peer_cachep, container_of(head, struct inet_peer, rcu));
359}
360
361static void unlink_from_pool(struct inet_peer *p, struct inet_peer_base *base,
362 struct inet_peer __rcu **stack[PEER_MAXDEPTH])
363{
364 struct inet_peer __rcu ***stackptr, ***delp;
365
366 if (lookup(&p->daddr, stack, base) != p)
367 BUG();
368 delp = stackptr - 1; /* *delp[0] == p */
369 if (p->avl_left == peer_avl_empty_rcu) {
370 *delp[0] = p->avl_right;
371 --stackptr;
372 } else {
373 /* look for a node to insert instead of p */
374 struct inet_peer *t;
375 t = lookup_rightempty(p, base);
376 BUG_ON(rcu_deref_locked(*stackptr[-1], base) != t);
377 **--stackptr = t->avl_left;
378 /* t is removed, t->daddr > x->daddr for any
379 * x in p->avl_left subtree.
380 * Put t in the old place of p. */
381 RCU_INIT_POINTER(*delp[0], t);
382 t->avl_left = p->avl_left;
383 t->avl_right = p->avl_right;
384 t->avl_height = p->avl_height;
385 BUG_ON(delp[1] != &p->avl_left);
386 delp[1] = &t->avl_left; /* was &p->avl_left */
387 }
388 peer_avl_rebalance(stack, stackptr, base);
389 base->total--;
390 call_rcu(&p->rcu, inetpeer_free_rcu);
391}
392
393static struct inet_peer_base *family_to_base(int family)
394{
395 return family == AF_INET ? &v4_peers : &v6_peers;
396}
397
398/* perform garbage collect on all items stacked during a lookup */
399static int inet_peer_gc(struct inet_peer_base *base,
400 struct inet_peer __rcu **stack[PEER_MAXDEPTH],
401 struct inet_peer __rcu ***stackptr)
402{
403 struct inet_peer *p, *gchead = NULL;
404 __u32 delta, ttl;
405 int cnt = 0;
406
407 if (base->total >= inet_peer_threshold)
408 ttl = 0; /* be aggressive */
409 else
410 ttl = inet_peer_maxttl
411 - (inet_peer_maxttl - inet_peer_minttl) / HZ *
412 base->total / inet_peer_threshold * HZ;
413 stackptr--; /* last stack slot is peer_avl_empty */
414 while (stackptr > stack) {
415 stackptr--;
416 p = rcu_deref_locked(**stackptr, base);
417 if (atomic_read(&p->refcnt) == 0) {
418 smp_rmb();
419 delta = (__u32)jiffies - p->dtime;
420 if (delta >= ttl &&
421 atomic_cmpxchg(&p->refcnt, 0, -1) == 0) {
422 p->gc_next = gchead;
423 gchead = p;
424 }
425 }
426 }
427 while ((p = gchead) != NULL) {
428 gchead = p->gc_next;
429 cnt++;
430 unlink_from_pool(p, base, stack);
431 }
432 return cnt;
433}
434
435struct inet_peer *inet_getpeer(const struct inetpeer_addr *daddr, int create)
436{
437 struct inet_peer __rcu **stack[PEER_MAXDEPTH], ***stackptr;
438 struct inet_peer_base *base = family_to_base(daddr->family);
439 struct inet_peer *p;
440 unsigned int sequence;
441 int invalidated, gccnt = 0;
442
443 /* Attempt a lockless lookup first.
444 * Because of a concurrent writer, we might not find an existing entry.
445 */
446 rcu_read_lock();
447 sequence = read_seqbegin(&base->lock);
448 p = lookup_rcu(daddr, base);
449 invalidated = read_seqretry(&base->lock, sequence);
450 rcu_read_unlock();
451
452 if (p)
453 return p;
454
455 /* If no writer did a change during our lookup, we can return early. */
456 if (!create && !invalidated)
457 return NULL;
458
459 /* retry an exact lookup, taking the lock before.
460 * At least, nodes should be hot in our cache.
461 */
462 write_seqlock_bh(&base->lock);
463relookup:
464 p = lookup(daddr, stack, base);
465 if (p != peer_avl_empty) {
466 atomic_inc(&p->refcnt);
467 write_sequnlock_bh(&base->lock);
468 return p;
469 }
470 if (!gccnt) {
471 gccnt = inet_peer_gc(base, stack, stackptr);
472 if (gccnt && create)
473 goto relookup;
474 }
475 p = create ? kmem_cache_alloc(peer_cachep, GFP_ATOMIC) : NULL;
476 if (p) {
477 netslab_inc(INETPEER_SLAB);
478 p->daddr = *daddr;
479 atomic_set(&p->refcnt, 1);
480 atomic_set(&p->rid, 0);
481 p->tcp_ts_stamp = 0;
482 p->metrics[RTAX_LOCK-1] = INETPEER_METRICS_NEW;
483 p->rate_tokens = 0;
484 p->rate_last = 0;
485 p->pmtu_expires = 0;
486 p->pmtu_orig = 0;
487 memset(&p->redirect_learned, 0, sizeof(p->redirect_learned));
488 INIT_LIST_HEAD(&p->gc_list);
489
490 /* Link the node. */
491 link_to_pool(p, base);
492 base->total++;
493 }
494 write_sequnlock_bh(&base->lock);
495
496 return p;
497}
498EXPORT_SYMBOL_GPL(inet_getpeer);
499
500void inet_putpeer(struct inet_peer *p)
501{
502 p->dtime = (__u32)jiffies;
503 smp_mb__before_atomic_dec();
504 atomic_dec(&p->refcnt);
505}
506EXPORT_SYMBOL_GPL(inet_putpeer);
507
508/*
509 * Check transmit rate limitation for given message.
510 * The rate information is held in the inet_peer entries now.
511 * This function is generic and could be used for other purposes
512 * too. It uses a Token bucket filter as suggested by Alexey Kuznetsov.
513 *
514 * Note that the same inet_peer fields are modified by functions in
515 * route.c too, but these work for packet destinations while xrlim_allow
516 * works for icmp destinations. This means the rate limiting information
517 * for one "ip object" is shared - and these ICMPs are twice limited:
518 * by source and by destination.
519 *
520 * RFC 1812: 4.3.2.8 SHOULD be able to limit error message rate
521 * SHOULD allow setting of rate limits
522 *
523 * Shared between ICMPv4 and ICMPv6.
524 */
525#define XRLIM_BURST_FACTOR 6
526bool inet_peer_xrlim_allow(struct inet_peer *peer, int timeout)
527{
528 unsigned long now, token;
529 bool rc = false;
530
531 if (!peer)
532 return true;
533
534 token = peer->rate_tokens;
535 now = jiffies;
536 token += now - peer->rate_last;
537 peer->rate_last = now;
538 if (token > XRLIM_BURST_FACTOR * timeout)
539 token = XRLIM_BURST_FACTOR * timeout;
540 if (token >= timeout) {
541 token -= timeout;
542 rc = true;
543 }
544 peer->rate_tokens = token;
545 return rc;
546}
547EXPORT_SYMBOL(inet_peer_xrlim_allow);
548
549static void inetpeer_inval_rcu(struct rcu_head *head)
550{
551 struct inet_peer *p = container_of(head, struct inet_peer, gc_rcu);
552
553 spin_lock_bh(&gc_lock);
554 list_add_tail(&p->gc_list, &gc_list);
555 spin_unlock_bh(&gc_lock);
556
557 schedule_delayed_work(&gc_work, gc_delay);
558}
559
560void inetpeer_invalidate_tree(int family)
561{
562 struct inet_peer *old, *new, *prev;
563 struct inet_peer_base *base = family_to_base(family);
564
565 write_seqlock_bh(&base->lock);
566
567 old = base->root;
568 if (old == peer_avl_empty_rcu)
569 goto out;
570
571 new = peer_avl_empty_rcu;
572
573 prev = cmpxchg(&base->root, old, new);
574 if (prev == old) {
575 base->total = 0;
576 call_rcu(&prev->gc_rcu, inetpeer_inval_rcu);
577 }
578
579out:
580 write_sequnlock_bh(&base->lock);
581}
582EXPORT_SYMBOL(inetpeer_invalidate_tree);