1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Connection state tracking for netfilter. This is separated from,
4 * but required by, the (future) NAT layer; it can also be used by an iptables
5 * extension.
6 *
7 * 16 Dec 2003: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
8 * - generalize L3 protocol dependent part.
9 *
10 * Derived from include/linux/netfiter_ipv4/ip_conntrack.h
11 */
12
13 #ifndef _NF_CONNTRACK_H
14 #define _NF_CONNTRACK_H
15
16 #include <linux/bitops.h>
17 #include <linux/compiler.h>
18
19 #include <net/netns/generic.h>
20 #include <linux/netfilter/nf_conntrack_common.h>
21 #include <linux/netfilter/nf_conntrack_tcp.h>
22 #include <linux/netfilter/nf_conntrack_sctp.h>
23 #include <linux/netfilter/nf_conntrack_proto_gre.h>
24
25 #include <net/netfilter/nf_conntrack_tuple.h>
26
27 struct nf_ct_udp {
28 unsigned long stream_ts;
29 };
30
31 /* per conntrack: protocol private data */
32 union nf_conntrack_proto {
33 /* insert conntrack proto private data here */
34 struct ip_ct_sctp sctp;
35 struct ip_ct_tcp tcp;
36 struct nf_ct_udp udp;
37 struct nf_ct_gre gre;
38 unsigned int tmpl_padto;
39 };
40
41 union nf_conntrack_expect_proto {
42 /* insert expect proto private data here */
43 };
44
45 struct nf_conntrack_net_ecache {
46 struct delayed_work dwork;
47 spinlock_t dying_lock;
48 struct hlist_nulls_head dying_list;
49 };
50
51 struct nf_conntrack_net {
52 /* only used when new connection is allocated: */
53 atomic_t count;
54 unsigned int expect_count;
55
56 /* only used from work queues, configuration plane, and so on: */
57 unsigned int users4;
58 unsigned int users6;
59 unsigned int users_bridge;
60 #ifdef CONFIG_SYSCTL
61 struct ctl_table_header *sysctl_header;
62 #endif
63 #ifdef CONFIG_NF_CONNTRACK_EVENTS
64 struct nf_conntrack_net_ecache ecache;
65 #endif
66 };
67
68 #include <linux/types.h>
69 #include <linux/skbuff.h>
70
71 #include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
72 #include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
73
74 struct nf_conn {
75 /* Usage count in here is 1 for hash table, 1 per skb,
76 * plus 1 for any connection(s) we are `master' for
77 *
78 * Hint, SKB address this struct and refcnt via skb->_nfct and
79 * helpers nf_conntrack_get() and nf_conntrack_put().
80 * Helper nf_ct_put() equals nf_conntrack_put() by dec refcnt,
81 * except that the latter uses internal indirection and does not
82 * result in a conntrack module dependency.
83 * beware nf_ct_get() is different and don't inc refcnt.
84 */
85 struct nf_conntrack ct_general;
86
87 spinlock_t lock;
88 /* jiffies32 when this ct is considered dead */
89 u32 timeout;
90
91 #ifdef CONFIG_NF_CONNTRACK_ZONES
92 struct nf_conntrack_zone zone;
93 #endif
94 /* XXX should I move this to the tail ? - Y.K */
95 /* These are my tuples; original and reply */
96 struct nf_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX];
97
98 /* Have we seen traffic both ways yet? (bitset) */
99 unsigned long status;
100
101 possible_net_t ct_net;
102
103 #if IS_ENABLED(CONFIG_NF_NAT)
104 struct hlist_node nat_bysource;
105 #endif
106 /* all members below initialized via memset */
107 struct { } __nfct_init_offset;
108
109 /* If we were expected by an expectation, this will be it */
110 struct nf_conn *master;
111
112 #if defined(CONFIG_NF_CONNTRACK_MARK)
113 u_int32_t mark;
114 #endif
115
116 #ifdef CONFIG_NF_CONNTRACK_SECMARK
117 u_int32_t secmark;
118 #endif
119
120 /* Extensions */
121 struct nf_ct_ext *ext;
122
123 /* Storage reserved for other modules, must be the last member */
124 union nf_conntrack_proto proto;
125 };
126
127 static inline struct nf_conn *
nf_ct_to_nf_conn(const struct nf_conntrack * nfct)128 nf_ct_to_nf_conn(const struct nf_conntrack *nfct)
129 {
130 return container_of(nfct, struct nf_conn, ct_general);
131 }
132
133 static inline struct nf_conn *
nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash * hash)134 nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash)
135 {
136 return container_of(hash, struct nf_conn,
137 tuplehash[hash->tuple.dst.dir]);
138 }
139
nf_ct_l3num(const struct nf_conn * ct)140 static inline u_int16_t nf_ct_l3num(const struct nf_conn *ct)
141 {
142 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num;
143 }
144
nf_ct_protonum(const struct nf_conn * ct)145 static inline u_int8_t nf_ct_protonum(const struct nf_conn *ct)
146 {
147 return ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum;
148 }
149
150 #define nf_ct_tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
151
152 /* get master conntrack via master expectation */
153 #define master_ct(conntr) (conntr->master)
154
155 extern struct net init_net;
156
nf_ct_net(const struct nf_conn * ct)157 static inline struct net *nf_ct_net(const struct nf_conn *ct)
158 {
159 return read_pnet(&ct->ct_net);
160 }
161
162 /* Is this tuple taken? (ignoring any belonging to the given
163 conntrack). */
164 int nf_conntrack_tuple_taken(const struct nf_conntrack_tuple *tuple,
165 const struct nf_conn *ignored_conntrack);
166
167 /* Return conntrack_info and tuple hash for given skb. */
168 static inline struct nf_conn *
nf_ct_get(const struct sk_buff * skb,enum ip_conntrack_info * ctinfo)169 nf_ct_get(const struct sk_buff *skb, enum ip_conntrack_info *ctinfo)
170 {
171 unsigned long nfct = skb_get_nfct(skb);
172
173 *ctinfo = nfct & NFCT_INFOMASK;
174 return (struct nf_conn *)(nfct & NFCT_PTRMASK);
175 }
176
177 void nf_ct_destroy(struct nf_conntrack *nfct);
178
179 void nf_conntrack_tcp_set_closing(struct nf_conn *ct);
180
181 /* decrement reference count on a conntrack */
nf_ct_put(struct nf_conn * ct)182 static inline void nf_ct_put(struct nf_conn *ct)
183 {
184 if (ct && refcount_dec_and_test(&ct->ct_general.use))
185 nf_ct_destroy(&ct->ct_general);
186 }
187
nf_ct_shared(const struct nf_conn * ct)188 static inline bool nf_ct_shared(const struct nf_conn *ct)
189 {
190 return refcount_read(&ct->ct_general.use) > 1;
191 }
192
193 /* load module; enable/disable conntrack in this namespace */
194 int nf_ct_netns_get(struct net *net, u8 nfproto);
195 void nf_ct_netns_put(struct net *net, u8 nfproto);
196
197 /*
198 * Allocate a hashtable of hlist_head (if nulls == 0),
199 * or hlist_nulls_head (if nulls == 1)
200 */
201 void *nf_ct_alloc_hashtable(unsigned int *sizep, int nulls);
202
203 int nf_conntrack_hash_check_insert(struct nf_conn *ct);
204 bool nf_ct_delete(struct nf_conn *ct, u32 pid, int report);
205
206 bool nf_ct_get_tuplepr(const struct sk_buff *skb, unsigned int nhoff,
207 u_int16_t l3num, struct net *net,
208 struct nf_conntrack_tuple *tuple);
209
210 void __nf_ct_refresh_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
211 u32 extra_jiffies, unsigned int bytes);
212
213 /* Refresh conntrack for this many jiffies and do accounting */
nf_ct_refresh_acct(struct nf_conn * ct,enum ip_conntrack_info ctinfo,const struct sk_buff * skb,u32 extra_jiffies)214 static inline void nf_ct_refresh_acct(struct nf_conn *ct,
215 enum ip_conntrack_info ctinfo,
216 const struct sk_buff *skb,
217 u32 extra_jiffies)
218 {
219 __nf_ct_refresh_acct(ct, ctinfo, extra_jiffies, skb->len);
220 }
221
222 /* Refresh conntrack for this many jiffies */
nf_ct_refresh(struct nf_conn * ct,u32 extra_jiffies)223 static inline void nf_ct_refresh(struct nf_conn *ct,
224 u32 extra_jiffies)
225 {
226 __nf_ct_refresh_acct(ct, 0, extra_jiffies, 0);
227 }
228
229 /* kill conntrack and do accounting */
230 bool nf_ct_kill_acct(struct nf_conn *ct, enum ip_conntrack_info ctinfo,
231 const struct sk_buff *skb);
232
233 /* kill conntrack without accounting */
nf_ct_kill(struct nf_conn * ct)234 static inline bool nf_ct_kill(struct nf_conn *ct)
235 {
236 return nf_ct_delete(ct, 0, 0);
237 }
238
239 struct nf_ct_iter_data {
240 struct net *net;
241 void *data;
242 u32 portid;
243 int report;
244 };
245
246 /* Iterate over all conntracks: if iter returns true, it's deleted. */
247 void nf_ct_iterate_cleanup_net(int (*iter)(struct nf_conn *i, void *data),
248 const struct nf_ct_iter_data *iter_data);
249
250 /* also set unconfirmed conntracks as dying. Only use in module exit path. */
251 void nf_ct_iterate_destroy(int (*iter)(struct nf_conn *i, void *data),
252 void *data);
253
254 struct nf_conntrack_zone;
255
256 void nf_conntrack_free(struct nf_conn *ct);
257 struct nf_conn *nf_conntrack_alloc(struct net *net,
258 const struct nf_conntrack_zone *zone,
259 const struct nf_conntrack_tuple *orig,
260 const struct nf_conntrack_tuple *repl,
261 gfp_t gfp);
262
nf_ct_is_template(const struct nf_conn * ct)263 static inline int nf_ct_is_template(const struct nf_conn *ct)
264 {
265 return test_bit(IPS_TEMPLATE_BIT, &ct->status);
266 }
267
268 /* It's confirmed if it is, or has been in the hash table. */
nf_ct_is_confirmed(const struct nf_conn * ct)269 static inline int nf_ct_is_confirmed(const struct nf_conn *ct)
270 {
271 return test_bit(IPS_CONFIRMED_BIT, &ct->status);
272 }
273
nf_ct_is_dying(const struct nf_conn * ct)274 static inline int nf_ct_is_dying(const struct nf_conn *ct)
275 {
276 return test_bit(IPS_DYING_BIT, &ct->status);
277 }
278
279 /* Packet is received from loopback */
nf_is_loopback_packet(const struct sk_buff * skb)280 static inline bool nf_is_loopback_packet(const struct sk_buff *skb)
281 {
282 return skb->dev && skb->skb_iif && skb->dev->flags & IFF_LOOPBACK;
283 }
284
nf_conntrack_alter_reply(struct nf_conn * ct,const struct nf_conntrack_tuple * newreply)285 static inline void nf_conntrack_alter_reply(struct nf_conn *ct,
286 const struct nf_conntrack_tuple *newreply)
287 {
288 /* Must be unconfirmed, so not in hash table yet */
289 if (WARN_ON(nf_ct_is_confirmed(ct)))
290 return;
291
292 ct->tuplehash[IP_CT_DIR_REPLY].tuple = *newreply;
293 }
294
295 #define nfct_time_stamp ((u32)(jiffies))
296
297 /* jiffies until ct expires, 0 if already expired */
nf_ct_expires(const struct nf_conn * ct)298 static inline unsigned long nf_ct_expires(const struct nf_conn *ct)
299 {
300 s32 timeout = READ_ONCE(ct->timeout) - nfct_time_stamp;
301
302 return max(timeout, 0);
303 }
304
nf_ct_is_expired(const struct nf_conn * ct)305 static inline bool nf_ct_is_expired(const struct nf_conn *ct)
306 {
307 return (__s32)(READ_ONCE(ct->timeout) - nfct_time_stamp) <= 0;
308 }
309
310 /* use after obtaining a reference count */
nf_ct_should_gc(const struct nf_conn * ct)311 static inline bool nf_ct_should_gc(const struct nf_conn *ct)
312 {
313 if (!nf_ct_is_confirmed(ct))
314 return false;
315
316 /* load ct->timeout after is_confirmed() test.
317 * Pairs with __nf_conntrack_confirm() which:
318 * 1. Increases ct->timeout value
319 * 2. Inserts ct into rcu hlist
320 * 3. Sets the confirmed bit
321 * 4. Unlocks the hlist lock
322 */
323 smp_acquire__after_ctrl_dep();
324
325 return nf_ct_is_expired(ct) && !nf_ct_is_dying(ct);
326 }
327
328 #define NF_CT_DAY (86400 * HZ)
329
330 struct kernel_param;
331
332 int nf_conntrack_set_hashsize(const char *val, const struct kernel_param *kp);
333 int nf_conntrack_hash_resize(unsigned int hashsize);
334
335 extern struct hlist_nulls_head *nf_conntrack_hash;
336 extern unsigned int nf_conntrack_htable_size;
337 extern seqcount_spinlock_t nf_conntrack_generation;
338 extern unsigned int nf_conntrack_max;
339
340 /* must be called with rcu read lock held */
341 static inline void
nf_conntrack_get_ht(struct hlist_nulls_head ** hash,unsigned int * hsize)342 nf_conntrack_get_ht(struct hlist_nulls_head **hash, unsigned int *hsize)
343 {
344 struct hlist_nulls_head *hptr;
345 unsigned int sequence, hsz;
346
347 do {
348 sequence = read_seqcount_begin(&nf_conntrack_generation);
349 hsz = nf_conntrack_htable_size;
350 hptr = nf_conntrack_hash;
351 } while (read_seqcount_retry(&nf_conntrack_generation, sequence));
352
353 *hash = hptr;
354 *hsize = hsz;
355 }
356
357 struct nf_conn *nf_ct_tmpl_alloc(struct net *net,
358 const struct nf_conntrack_zone *zone,
359 gfp_t flags);
360 void nf_ct_tmpl_free(struct nf_conn *tmpl);
361
362 u32 nf_ct_get_id(const struct nf_conn *ct);
363 u32 nf_conntrack_count(const struct net *net);
364
365 static inline void
nf_ct_set(struct sk_buff * skb,struct nf_conn * ct,enum ip_conntrack_info info)366 nf_ct_set(struct sk_buff *skb, struct nf_conn *ct, enum ip_conntrack_info info)
367 {
368 skb_set_nfct(skb, (unsigned long)ct | info);
369 }
370
371 extern unsigned int nf_conntrack_net_id;
372
nf_ct_pernet(const struct net * net)373 static inline struct nf_conntrack_net *nf_ct_pernet(const struct net *net)
374 {
375 return net_generic(net, nf_conntrack_net_id);
376 }
377
378 int nf_ct_skb_network_trim(struct sk_buff *skb, int family);
379 int nf_ct_handle_fragments(struct net *net, struct sk_buff *skb,
380 u16 zone, u8 family, u8 *proto, u16 *mru);
381
382 #define NF_CT_STAT_INC(net, count) __this_cpu_inc((net)->ct.stat->count)
383 #define NF_CT_STAT_INC_ATOMIC(net, count) this_cpu_inc((net)->ct.stat->count)
384 #define NF_CT_STAT_ADD_ATOMIC(net, count, v) this_cpu_add((net)->ct.stat->count, (v))
385
386 #define MODULE_ALIAS_NFCT_HELPER(helper) \
387 MODULE_ALIAS("nfct-helper-" helper)
388
389 #endif /* _NF_CONNTRACK_H */
390