Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 2 | #ifndef __NET_FRAG_H__ |
| 3 | #define __NET_FRAG_H__ |
| 4 | |
NeilBrown | 0eb71a9 | 2018-06-18 12:52:50 +1000 | [diff] [blame] | 5 | #include <linux/rhashtable-types.h> |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 6 | |
Pavel Emelyanov | ac18e75 | 2008-01-22 06:02:14 -0800 | [diff] [blame] | 7 | struct netns_frags { |
Pavel Emelyanov | b2fd532 | 2008-01-22 06:09:37 -0800 | [diff] [blame] | 8 | /* sysctls */ |
Eric Dumazet | 3e67f10 | 2018-03-31 12:58:53 -0700 | [diff] [blame] | 9 | long high_thresh; |
| 10 | long low_thresh; |
Pavel Emelyanov | b2fd532 | 2008-01-22 06:09:37 -0800 | [diff] [blame] | 11 | int timeout; |
Nikolay Borisov | 0fbf4cb | 2016-02-15 12:11:31 +0200 | [diff] [blame] | 12 | int max_dist; |
Eric Dumazet | 093ba72 | 2018-03-31 12:58:44 -0700 | [diff] [blame] | 13 | struct inet_frags *f; |
Eric Dumazet | c2615cf | 2018-03-31 12:58:57 -0700 | [diff] [blame] | 14 | |
| 15 | struct rhashtable rhashtable ____cacheline_aligned_in_smp; |
| 16 | |
| 17 | /* Keep atomic mem on separate cachelines in structs that include it */ |
| 18 | atomic_long_t mem ____cacheline_aligned_in_smp; |
Pavel Emelyanov | ac18e75 | 2008-01-22 06:02:14 -0800 | [diff] [blame] | 19 | }; |
| 20 | |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 21 | /** |
| 22 | * fragment queue flags |
| 23 | * |
| 24 | * @INET_FRAG_FIRST_IN: first fragment has arrived |
| 25 | * @INET_FRAG_LAST_IN: final fragment has arrived |
| 26 | * @INET_FRAG_COMPLETE: frag queue has been processed and is due for destruction |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 27 | */ |
| 28 | enum { |
| 29 | INET_FRAG_FIRST_IN = BIT(0), |
| 30 | INET_FRAG_LAST_IN = BIT(1), |
| 31 | INET_FRAG_COMPLETE = BIT(2), |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 32 | }; |
| 33 | |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 34 | struct frag_v4_compare_key { |
| 35 | __be32 saddr; |
| 36 | __be32 daddr; |
| 37 | u32 user; |
| 38 | u32 vif; |
| 39 | __be16 id; |
| 40 | u16 protocol; |
| 41 | }; |
| 42 | |
| 43 | struct frag_v6_compare_key { |
| 44 | struct in6_addr saddr; |
| 45 | struct in6_addr daddr; |
| 46 | u32 user; |
| 47 | __be32 id; |
| 48 | u32 iif; |
| 49 | }; |
| 50 | |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 51 | /** |
| 52 | * struct inet_frag_queue - fragment queue |
| 53 | * |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 54 | * @node: rhash node |
| 55 | * @key: keys identifying this frag. |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 56 | * @timer: queue expiration timer |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 57 | * @lock: spinlock protecting this frag |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 58 | * @refcnt: reference count of the queue |
| 59 | * @fragments: received fragments head |
| 60 | * @fragments_tail: received fragments tail |
| 61 | * @stamp: timestamp of the last received fragment |
| 62 | * @len: total length of the original datagram |
| 63 | * @meat: length of received fragments so far |
| 64 | * @flags: fragment queue flags |
Florian Westphal | d6b915e | 2015-05-22 16:32:51 +0200 | [diff] [blame] | 65 | * @max_size: maximum received fragment size |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 66 | * @net: namespace that this frag belongs to |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 67 | * @rcu: rcu head for freeing deferall |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 68 | */ |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 69 | struct inet_frag_queue { |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 70 | struct rhash_head node; |
| 71 | union { |
| 72 | struct frag_v4_compare_key v4; |
| 73 | struct frag_v6_compare_key v6; |
| 74 | } key; |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 75 | struct timer_list timer; |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 76 | spinlock_t lock; |
Reshetova, Elena | edcb691 | 2017-06-30 13:08:07 +0300 | [diff] [blame] | 77 | refcount_t refcnt; |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 78 | struct sk_buff *fragments; |
Changli Gao | d6bebca | 2010-06-29 04:39:37 +0000 | [diff] [blame] | 79 | struct sk_buff *fragments_tail; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 80 | ktime_t stamp; |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 81 | int len; |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 82 | int meat; |
Nikolay Aleksandrov | 1ab1934 | 2014-08-01 12:29:45 +0200 | [diff] [blame] | 83 | __u8 flags; |
Patrick McHardy | 5f2d04f | 2012-08-26 19:13:55 +0200 | [diff] [blame] | 84 | u16 max_size; |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 85 | struct netns_frags *net; |
| 86 | struct rcu_head rcu; |
Jesper Dangaard Brouer | 19952cc | 2013-04-03 23:38:16 +0000 | [diff] [blame] | 87 | }; |
| 88 | |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 89 | struct inet_frags { |
Alexey Dobriyan | 4c0ebd6 | 2017-05-23 00:20:26 +0300 | [diff] [blame] | 90 | unsigned int qsize; |
Pavel Emelyanov | 321a3a9 | 2007-10-15 02:38:08 -0700 | [diff] [blame] | 91 | |
Pavel Emelyanov | c6fda28 | 2007-10-17 19:46:47 -0700 | [diff] [blame] | 92 | void (*constructor)(struct inet_frag_queue *q, |
Florian Westphal | 36c7778 | 2014-07-24 16:50:29 +0200 | [diff] [blame] | 93 | const void *arg); |
Pavel Emelyanov | 1e4b828 | 2007-10-15 02:39:14 -0700 | [diff] [blame] | 94 | void (*destructor)(struct inet_frag_queue *); |
Kees Cook | 7880201 | 2017-10-16 17:29:20 -0700 | [diff] [blame] | 95 | void (*frag_expire)(struct timer_list *t); |
Nikolay Aleksandrov | d4ad4d2 | 2014-08-01 12:29:48 +0200 | [diff] [blame] | 96 | struct kmem_cache *frags_cachep; |
| 97 | const char *frags_cache_name; |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 98 | struct rhashtable_params rhash_params; |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 99 | }; |
| 100 | |
Nikolay Aleksandrov | d4ad4d2 | 2014-08-01 12:29:48 +0200 | [diff] [blame] | 101 | int inet_frags_init(struct inet_frags *); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 102 | void inet_frags_fini(struct inet_frags *); |
| 103 | |
Eric Dumazet | 787bea7 | 2018-03-31 12:58:43 -0700 | [diff] [blame] | 104 | static inline int inet_frags_init_net(struct netns_frags *nf) |
Eric Dumazet | 1d6119b | 2015-11-02 09:03:11 -0800 | [diff] [blame] | 105 | { |
Eric Dumazet | 3e67f10 | 2018-03-31 12:58:53 -0700 | [diff] [blame] | 106 | atomic_long_set(&nf->mem, 0); |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 107 | return rhashtable_init(&nf->rhashtable, &nf->f->rhash_params); |
Eric Dumazet | 1d6119b | 2015-11-02 09:03:11 -0800 | [diff] [blame] | 108 | } |
Eric Dumazet | 093ba72 | 2018-03-31 12:58:44 -0700 | [diff] [blame] | 109 | void inet_frags_exit_net(struct netns_frags *nf); |
Pavel Emelyanov | e5a2bb8 | 2008-01-22 06:06:23 -0800 | [diff] [blame] | 110 | |
Eric Dumazet | 093ba72 | 2018-03-31 12:58:44 -0700 | [diff] [blame] | 111 | void inet_frag_kill(struct inet_frag_queue *q); |
| 112 | void inet_frag_destroy(struct inet_frag_queue *q); |
Eric Dumazet | 648700f | 2018-03-31 12:58:49 -0700 | [diff] [blame] | 113 | struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, void *key); |
Pavel Emelyanov | 277e650 | 2007-10-15 02:37:18 -0700 | [diff] [blame] | 114 | |
Eric Dumazet | 093ba72 | 2018-03-31 12:58:44 -0700 | [diff] [blame] | 115 | static inline void inet_frag_put(struct inet_frag_queue *q) |
Pavel Emelyanov | 762cc40 | 2007-10-15 02:41:56 -0700 | [diff] [blame] | 116 | { |
Reshetova, Elena | edcb691 | 2017-06-30 13:08:07 +0300 | [diff] [blame] | 117 | if (refcount_dec_and_test(&q->refcnt)) |
Eric Dumazet | 093ba72 | 2018-03-31 12:58:44 -0700 | [diff] [blame] | 118 | inet_frag_destroy(q); |
Pavel Emelyanov | 762cc40 | 2007-10-15 02:41:56 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 121 | /* Memory Tracking Functions. */ |
| 122 | |
Eric Dumazet | 3e67f10 | 2018-03-31 12:58:53 -0700 | [diff] [blame] | 123 | static inline long frag_mem_limit(const struct netns_frags *nf) |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 124 | { |
Eric Dumazet | 3e67f10 | 2018-03-31 12:58:53 -0700 | [diff] [blame] | 125 | return atomic_long_read(&nf->mem); |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 126 | } |
| 127 | |
Eric Dumazet | 3e67f10 | 2018-03-31 12:58:53 -0700 | [diff] [blame] | 128 | static inline void sub_frag_mem_limit(struct netns_frags *nf, long val) |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 129 | { |
Eric Dumazet | 3e67f10 | 2018-03-31 12:58:53 -0700 | [diff] [blame] | 130 | atomic_long_sub(val, &nf->mem); |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Eric Dumazet | 3e67f10 | 2018-03-31 12:58:53 -0700 | [diff] [blame] | 133 | static inline void add_frag_mem_limit(struct netns_frags *nf, long val) |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 134 | { |
Eric Dumazet | 3e67f10 | 2018-03-31 12:58:53 -0700 | [diff] [blame] | 135 | atomic_long_add(val, &nf->mem); |
Jesper Dangaard Brouer | d433673 | 2013-01-28 23:45:12 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Hannes Frederic Sowa | be99197 | 2013-03-22 08:24:37 +0000 | [diff] [blame] | 138 | /* RFC 3168 support : |
| 139 | * We want to check ECN values of all fragments, do detect invalid combinations. |
| 140 | * In ipq->ecn, we store the OR value of each ip4_frag_ecn() fragment value. |
| 141 | */ |
| 142 | #define IPFRAG_ECN_NOT_ECT 0x01 /* one frag had ECN_NOT_ECT */ |
| 143 | #define IPFRAG_ECN_ECT_1 0x02 /* one frag had ECN_ECT_1 */ |
| 144 | #define IPFRAG_ECN_ECT_0 0x04 /* one frag had ECN_ECT_0 */ |
| 145 | #define IPFRAG_ECN_CE 0x08 /* one frag had ECN_CE */ |
| 146 | |
| 147 | extern const u8 ip_frag_ecn_table[16]; |
| 148 | |
Pavel Emelyanov | 5ab11c9 | 2007-10-15 02:24:19 -0700 | [diff] [blame] | 149 | #endif |