]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/inet_frag.h
inet: frags: rename last_in to flags
[mirror_ubuntu-bionic-kernel.git] / include / net / inet_frag.h
CommitLineData
5ab11c98
PE
1#ifndef __NET_FRAG_H__
2#define __NET_FRAG_H__
3
6d7b857d
JDB
4#include <linux/percpu_counter.h>
5
ac18e750 6struct netns_frags {
6d7b857d
JDB
7 /* The percpu_counter "mem" need to be cacheline aligned.
8 * mem.count must not share cacheline with other writers
cd39a789 9 */
6d7b857d
JDB
10 struct percpu_counter mem ____cacheline_aligned_in_smp;
11
b2fd5321
PE
12 /* sysctls */
13 int timeout;
e31e0bdc
PE
14 int high_thresh;
15 int low_thresh;
ac18e750
PE
16};
17
5ab11c98 18struct inet_frag_queue {
5ab11c98 19 spinlock_t lock;
5ab11c98 20 struct timer_list timer; /* when will this queue expire? */
6e34a8b3
JDB
21 struct hlist_node list;
22 atomic_t refcnt;
5ab11c98 23 struct sk_buff *fragments; /* list of received fragments */
d6bebca9 24 struct sk_buff *fragments_tail;
5ab11c98
PE
25 ktime_t stamp;
26 int len; /* total length of orig datagram */
27 int meat;
06aa8b8a 28 __u8 flags; /* first/last segment arrived? */
5ab11c98 29
b13d3cbf 30#define INET_FRAG_EVICTED 8
bc578a54
JP
31#define INET_FRAG_COMPLETE 4
32#define INET_FRAG_FIRST_IN 2
33#define INET_FRAG_LAST_IN 1
5f2d04f1
PM
34
35 u16 max_size;
6e34a8b3
JDB
36
37 struct netns_frags *net;
5ab11c98
PE
38};
39
a4c4009f 40#define INETFRAGS_HASHSZ 1024
7eb95156 41
5a3da1fe
HFS
42/* averaged:
43 * max_depth = default ipfrag_high_thresh / INETFRAGS_HASHSZ /
44 * rounded up (SKB_TRUELEN(0) + sizeof(struct ipq or
45 * struct frag_queue))
46 */
b13d3cbf 47#define INETFRAGS_MAXDEPTH 128
5a3da1fe 48
19952cc4
JDB
49struct inet_frag_bucket {
50 struct hlist_head chain;
51 spinlock_t chain_lock;
52};
53
7eb95156 54struct inet_frags {
19952cc4 55 struct inet_frag_bucket hash[INETFRAGS_HASHSZ];
7088ad74 56
b13d3cbf
FW
57 struct work_struct frags_work;
58 unsigned int next_bucket;
e3a57d18
FW
59 unsigned long last_rebuild_jiffies;
60 bool rebuild;
b13d3cbf 61
7088ad74
HFS
62 /* The first call to hashfn is responsible to initialize
63 * rnd. This is best done with net_get_random_once.
ab1c724f
FW
64 *
65 * rnd_seqlock is used to let hash insertion detect
66 * when it needs to re-lookup the hash chain to use.
7088ad74 67 */
5f8e1e8b 68 u32 rnd;
ab1c724f 69 seqlock_t rnd_seqlock;
5f8e1e8b 70 int qsize;
321a3a99 71
36c77782
FW
72 unsigned int (*hashfn)(const struct inet_frag_queue *);
73 bool (*match)(const struct inet_frag_queue *q,
74 const void *arg);
c6fda282 75 void (*constructor)(struct inet_frag_queue *q,
36c77782 76 const void *arg);
1e4b8287
PE
77 void (*destructor)(struct inet_frag_queue *);
78 void (*skb_free)(struct sk_buff *);
e521db9d 79 void (*frag_expire)(unsigned long data);
7eb95156
PE
80};
81
82void inet_frags_init(struct inet_frags *);
83void inet_frags_fini(struct inet_frags *);
84
e5a2bb84 85void inet_frags_init_net(struct netns_frags *nf);
81566e83 86void inet_frags_exit_net(struct netns_frags *nf, struct inet_frags *f);
e5a2bb84 87
277e650d 88void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f);
3fd588eb 89void inet_frag_destroy(struct inet_frag_queue *q, struct inet_frags *f);
ac18e750 90struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
ab1c724f
FW
91 struct inet_frags *f, void *key, unsigned int hash);
92
5a3da1fe
HFS
93void inet_frag_maybe_warn_overflow(struct inet_frag_queue *q,
94 const char *prefix);
277e650d 95
762cc408
PE
96static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f)
97{
98 if (atomic_dec_and_test(&q->refcnt))
3fd588eb 99 inet_frag_destroy(q, f);
762cc408
PE
100}
101
d433673e
JDB
102/* Memory Tracking Functions. */
103
6d7b857d
JDB
104/* The default percpu_counter batch size is not big enough to scale to
105 * fragmentation mem acct sizes.
106 * The mem size of a 64K fragment is approx:
107 * (44 fragments * 2944 truesize) + frag_queue struct(200) = 129736 bytes
108 */
109static unsigned int frag_percpu_counter_batch = 130000;
110
d433673e
JDB
111static inline int frag_mem_limit(struct netns_frags *nf)
112{
6d7b857d 113 return percpu_counter_read(&nf->mem);
d433673e
JDB
114}
115
116static inline void sub_frag_mem_limit(struct inet_frag_queue *q, int i)
117{
6d7b857d 118 __percpu_counter_add(&q->net->mem, -i, frag_percpu_counter_batch);
d433673e
JDB
119}
120
121static inline void add_frag_mem_limit(struct inet_frag_queue *q, int i)
122{
6d7b857d 123 __percpu_counter_add(&q->net->mem, i, frag_percpu_counter_batch);
d433673e
JDB
124}
125
126static inline void init_frag_mem_limit(struct netns_frags *nf)
127{
6d7b857d 128 percpu_counter_init(&nf->mem, 0);
d433673e
JDB
129}
130
36c77782 131static inline unsigned int sum_frag_mem_limit(struct netns_frags *nf)
d433673e 132{
36c77782 133 unsigned int res;
4cfb0485
ED
134
135 local_bh_disable();
136 res = percpu_counter_sum_positive(&nf->mem);
137 local_bh_enable();
138
139 return res;
d433673e
JDB
140}
141
be991971
HFS
142/* RFC 3168 support :
143 * We want to check ECN values of all fragments, do detect invalid combinations.
144 * In ipq->ecn, we store the OR value of each ip4_frag_ecn() fragment value.
145 */
146#define IPFRAG_ECN_NOT_ECT 0x01 /* one frag had ECN_NOT_ECT */
147#define IPFRAG_ECN_ECT_1 0x02 /* one frag had ECN_ECT_1 */
148#define IPFRAG_ECN_ECT_0 0x04 /* one frag had ECN_ECT_0 */
149#define IPFRAG_ECN_CE 0x08 /* one frag had ECN_CE */
150
151extern const u8 ip_frag_ecn_table[16];
152
5ab11c98 153#endif