1 /* SPDX-License-Identifier: GPL-2.0 */
6 /* Keep atomic mem on separate cachelines in structs that include it */
7 atomic_t mem ____cacheline_aligned_in_smp
;
16 * fragment queue flags
18 * @INET_FRAG_FIRST_IN: first fragment has arrived
19 * @INET_FRAG_LAST_IN: final fragment has arrived
20 * @INET_FRAG_COMPLETE: frag queue has been processed and is due for destruction
23 INET_FRAG_FIRST_IN
= BIT(0),
24 INET_FRAG_LAST_IN
= BIT(1),
25 INET_FRAG_COMPLETE
= BIT(2),
29 * struct inet_frag_queue - fragment queue
31 * @lock: spinlock protecting the queue
32 * @timer: queue expiration timer
33 * @list: hash bucket list
34 * @refcnt: reference count of the queue
35 * @fragments: received fragments head
36 * @fragments_tail: received fragments tail
37 * @stamp: timestamp of the last received fragment
38 * @len: total length of the original datagram
39 * @meat: length of received fragments so far
40 * @flags: fragment queue flags
41 * @max_size: maximum received fragment size
42 * @net: namespace that this frag belongs to
43 * @list_evictor: list of queues to forcefully evict (e.g. due to low memory)
45 struct inet_frag_queue
{
47 struct timer_list timer
;
48 struct hlist_node list
;
50 struct sk_buff
*fragments
;
51 struct sk_buff
*fragments_tail
;
57 struct netns_frags
*net
;
58 struct hlist_node list_evictor
;
61 #define INETFRAGS_HASHSZ 1024
64 * max_depth = default ipfrag_high_thresh / INETFRAGS_HASHSZ /
65 * rounded up (SKB_TRUELEN(0) + sizeof(struct ipq or
68 #define INETFRAGS_MAXDEPTH 128
70 struct inet_frag_bucket
{
71 struct hlist_head chain
;
72 spinlock_t chain_lock
;
76 struct inet_frag_bucket hash
[INETFRAGS_HASHSZ
];
78 struct work_struct frags_work
;
79 unsigned int next_bucket
;
80 unsigned long last_rebuild_jiffies
;
83 /* The first call to hashfn is responsible to initialize
84 * rnd. This is best done with net_get_random_once.
86 * rnd_seqlock is used to let hash insertion detect
87 * when it needs to re-lookup the hash chain to use.
90 seqlock_t rnd_seqlock
;
93 unsigned int (*hashfn
)(const struct inet_frag_queue
*);
94 bool (*match
)(const struct inet_frag_queue
*q
,
96 void (*constructor
)(struct inet_frag_queue
*q
,
98 void (*destructor
)(struct inet_frag_queue
*);
99 void (*frag_expire
)(struct timer_list
*t
);
100 struct kmem_cache
*frags_cachep
;
101 const char *frags_cache_name
;
104 int inet_frags_init(struct inet_frags
*);
105 void inet_frags_fini(struct inet_frags
*);
107 static inline void inet_frags_init_net(struct netns_frags
*nf
)
109 atomic_set(&nf
->mem
, 0);
111 void inet_frags_exit_net(struct netns_frags
*nf
, struct inet_frags
*f
);
113 void inet_frag_kill(struct inet_frag_queue
*q
, struct inet_frags
*f
);
114 void inet_frag_destroy(struct inet_frag_queue
*q
, struct inet_frags
*f
);
115 struct inet_frag_queue
*inet_frag_find(struct netns_frags
*nf
,
116 struct inet_frags
*f
, void *key
, unsigned int hash
);
118 void inet_frag_maybe_warn_overflow(struct inet_frag_queue
*q
,
121 static inline void inet_frag_put(struct inet_frag_queue
*q
, struct inet_frags
*f
)
123 if (refcount_dec_and_test(&q
->refcnt
))
124 inet_frag_destroy(q
, f
);
127 static inline bool inet_frag_evicting(struct inet_frag_queue
*q
)
129 return !hlist_unhashed(&q
->list_evictor
);
132 /* Memory Tracking Functions. */
134 static inline int frag_mem_limit(struct netns_frags
*nf
)
136 return atomic_read(&nf
->mem
);
139 static inline void sub_frag_mem_limit(struct netns_frags
*nf
, int i
)
141 atomic_sub(i
, &nf
->mem
);
144 static inline void add_frag_mem_limit(struct netns_frags
*nf
, int i
)
146 atomic_add(i
, &nf
->mem
);
149 static inline int sum_frag_mem_limit(struct netns_frags
*nf
)
151 return atomic_read(&nf
->mem
);
154 /* RFC 3168 support :
155 * We want to check ECN values of all fragments, do detect invalid combinations.
156 * In ipq->ecn, we store the OR value of each ip4_frag_ecn() fragment value.
158 #define IPFRAG_ECN_NOT_ECT 0x01 /* one frag had ECN_NOT_ECT */
159 #define IPFRAG_ECN_ECT_1 0x02 /* one frag had ECN_ECT_1 */
160 #define IPFRAG_ECN_ECT_0 0x04 /* one frag had ECN_ECT_0 */
161 #define IPFRAG_ECN_CE 0x08 /* one frag had ECN_CE */
163 extern const u8 ip_frag_ecn_table
[16];