blob: 90015c47b447df0beec44b3c613ec0456dd64c01 [file] [log] [blame]
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -07001#ifndef __NET_FRAG_H__
2#define __NET_FRAG_H__
3
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +00004#include <linux/percpu_counter.h>
5
Pavel Emelyanovac18e752008-01-22 06:02:14 -08006struct netns_frags {
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +00007 /* The percpu_counter "mem" need to be cacheline aligned.
8 * mem.count must not share cacheline with other writers
Jesper Dangaard Brouercd39a782013-01-28 23:44:14 +00009 */
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +000010 struct percpu_counter mem ____cacheline_aligned_in_smp;
11
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -080012 /* sysctls */
13 int timeout;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -080014 int high_thresh;
15 int low_thresh;
Pavel Emelyanovac18e752008-01-22 06:02:14 -080016};
17
Nikolay Aleksandrov1ab19342014-08-01 12:29:45 +020018/**
19 * fragment queue flags
20 *
21 * @INET_FRAG_FIRST_IN: first fragment has arrived
22 * @INET_FRAG_LAST_IN: final fragment has arrived
23 * @INET_FRAG_COMPLETE: frag queue has been processed and is due for destruction
24 * @INET_FRAG_EVICTED: frag queue is being evicted
25 */
26enum {
27 INET_FRAG_FIRST_IN = BIT(0),
28 INET_FRAG_LAST_IN = BIT(1),
29 INET_FRAG_COMPLETE = BIT(2),
30 INET_FRAG_EVICTED = BIT(3)
31};
32
33/**
34 * struct inet_frag_queue - fragment queue
35 *
36 * @lock: spinlock protecting the queue
37 * @timer: queue expiration timer
38 * @list: hash bucket list
39 * @refcnt: reference count of the queue
40 * @fragments: received fragments head
41 * @fragments_tail: received fragments tail
42 * @stamp: timestamp of the last received fragment
43 * @len: total length of the original datagram
44 * @meat: length of received fragments so far
45 * @flags: fragment queue flags
46 * @max_size: (ipv4 only) maximum received fragment size with IP_DF set
47 * @net: namespace that this frag belongs to
48 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070049struct inet_frag_queue {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070050 spinlock_t lock;
Nikolay Aleksandrov1ab19342014-08-01 12:29:45 +020051 struct timer_list timer;
Jesper Dangaard Brouer6e34a8b2013-01-28 23:44:49 +000052 struct hlist_node list;
53 atomic_t refcnt;
Nikolay Aleksandrov1ab19342014-08-01 12:29:45 +020054 struct sk_buff *fragments;
Changli Gaod6bebca2010-06-29 04:39:37 +000055 struct sk_buff *fragments_tail;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070056 ktime_t stamp;
Nikolay Aleksandrov1ab19342014-08-01 12:29:45 +020057 int len;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070058 int meat;
Nikolay Aleksandrov1ab19342014-08-01 12:29:45 +020059 __u8 flags;
Patrick McHardy5f2d04f2012-08-26 19:13:55 +020060 u16 max_size;
Jesper Dangaard Brouer6e34a8b2013-01-28 23:44:49 +000061 struct netns_frags *net;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070062};
63
Jesper Dangaard Brouera4c40092013-04-25 09:52:25 +000064#define INETFRAGS_HASHSZ 1024
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070065
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +000066/* averaged:
67 * max_depth = default ipfrag_high_thresh / INETFRAGS_HASHSZ /
68 * rounded up (SKB_TRUELEN(0) + sizeof(struct ipq or
69 * struct frag_queue))
70 */
Florian Westphalb13d3cb2014-07-24 16:50:32 +020071#define INETFRAGS_MAXDEPTH 128
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +000072
Jesper Dangaard Brouer19952cc42013-04-03 23:38:16 +000073struct inet_frag_bucket {
74 struct hlist_head chain;
75 spinlock_t chain_lock;
76};
77
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070078struct inet_frags {
Jesper Dangaard Brouer19952cc42013-04-03 23:38:16 +000079 struct inet_frag_bucket hash[INETFRAGS_HASHSZ];
Hannes Frederic Sowa7088ad72013-10-23 11:06:57 +020080
Florian Westphalb13d3cb2014-07-24 16:50:32 +020081 struct work_struct frags_work;
82 unsigned int next_bucket;
Florian Westphale3a57d12014-07-24 16:50:35 +020083 unsigned long last_rebuild_jiffies;
84 bool rebuild;
Florian Westphalb13d3cb2014-07-24 16:50:32 +020085
Hannes Frederic Sowa7088ad72013-10-23 11:06:57 +020086 /* The first call to hashfn is responsible to initialize
87 * rnd. This is best done with net_get_random_once.
Florian Westphalab1c7242014-07-24 16:50:36 +020088 *
89 * rnd_seqlock is used to let hash insertion detect
90 * when it needs to re-lookup the hash chain to use.
Hannes Frederic Sowa7088ad72013-10-23 11:06:57 +020091 */
Jesper Dangaard Brouer5f8e1e82013-01-28 23:44:37 +000092 u32 rnd;
Florian Westphalab1c7242014-07-24 16:50:36 +020093 seqlock_t rnd_seqlock;
Jesper Dangaard Brouer5f8e1e82013-01-28 23:44:37 +000094 int qsize;
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070095
Florian Westphal36c77782014-07-24 16:50:29 +020096 unsigned int (*hashfn)(const struct inet_frag_queue *);
97 bool (*match)(const struct inet_frag_queue *q,
98 const void *arg);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070099 void (*constructor)(struct inet_frag_queue *q,
Florian Westphal36c77782014-07-24 16:50:29 +0200100 const void *arg);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700101 void (*destructor)(struct inet_frag_queue *);
102 void (*skb_free)(struct sk_buff *);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700103 void (*frag_expire)(unsigned long data);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700104};
105
106void inet_frags_init(struct inet_frags *);
107void inet_frags_fini(struct inet_frags *);
108
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800109void inet_frags_init_net(struct netns_frags *nf);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800110void inet_frags_exit_net(struct netns_frags *nf, struct inet_frags *f);
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800111
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700112void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f);
Florian Westphal3fd588e2014-07-24 16:50:34 +0200113void inet_frag_destroy(struct inet_frag_queue *q, struct inet_frags *f);
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800114struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
Florian Westphalab1c7242014-07-24 16:50:36 +0200115 struct inet_frags *f, void *key, unsigned int hash);
116
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000117void inet_frag_maybe_warn_overflow(struct inet_frag_queue *q,
118 const char *prefix);
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700119
Pavel Emelyanov762cc402007-10-15 02:41:56 -0700120static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f)
121{
122 if (atomic_dec_and_test(&q->refcnt))
Florian Westphal3fd588e2014-07-24 16:50:34 +0200123 inet_frag_destroy(q, f);
Pavel Emelyanov762cc402007-10-15 02:41:56 -0700124}
125
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000126/* Memory Tracking Functions. */
127
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +0000128/* The default percpu_counter batch size is not big enough to scale to
129 * fragmentation mem acct sizes.
130 * The mem size of a 64K fragment is approx:
131 * (44 fragments * 2944 truesize) + frag_queue struct(200) = 129736 bytes
132 */
133static unsigned int frag_percpu_counter_batch = 130000;
134
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000135static inline int frag_mem_limit(struct netns_frags *nf)
136{
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +0000137 return percpu_counter_read(&nf->mem);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000138}
139
140static inline void sub_frag_mem_limit(struct inet_frag_queue *q, int i)
141{
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +0000142 __percpu_counter_add(&q->net->mem, -i, frag_percpu_counter_batch);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000143}
144
145static inline void add_frag_mem_limit(struct inet_frag_queue *q, int i)
146{
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +0000147 __percpu_counter_add(&q->net->mem, i, frag_percpu_counter_batch);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000148}
149
150static inline void init_frag_mem_limit(struct netns_frags *nf)
151{
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +0000152 percpu_counter_init(&nf->mem, 0);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000153}
154
Florian Westphal36c77782014-07-24 16:50:29 +0200155static inline unsigned int sum_frag_mem_limit(struct netns_frags *nf)
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000156{
Florian Westphal36c77782014-07-24 16:50:29 +0200157 unsigned int res;
Eric Dumazet4cfb0482013-02-22 07:43:35 +0000158
159 local_bh_disable();
160 res = percpu_counter_sum_positive(&nf->mem);
161 local_bh_enable();
162
163 return res;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000164}
165
Hannes Frederic Sowabe991972013-03-22 08:24:37 +0000166/* RFC 3168 support :
167 * We want to check ECN values of all fragments, do detect invalid combinations.
168 * In ipq->ecn, we store the OR value of each ip4_frag_ecn() fragment value.
169 */
170#define IPFRAG_ECN_NOT_ECT 0x01 /* one frag had ECN_NOT_ECT */
171#define IPFRAG_ECN_ECT_1 0x02 /* one frag had ECN_ECT_1 */
172#define IPFRAG_ECN_ECT_0 0x04 /* one frag had ECN_ECT_0 */
173#define IPFRAG_ECN_CE 0x08 /* one frag had ECN_CE */
174
175extern const u8 ip_frag_ecn_table[16];
176
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700177#endif