Merge remote-tracking branches 'regulator/topic/lp8788', 'regulator/topic/mt6311...
[deliverable/linux.git] / include / linux / netfilter.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX_NETFILTER_H
2#define __LINUX_NETFILTER_H
3
1da177e4 4#include <linux/init.h>
1da177e4
LT
5#include <linux/skbuff.h>
6#include <linux/net.h>
7#include <linux/if.h>
2e3075a2
JE
8#include <linux/in.h>
9#include <linux/in6.h>
1da177e4
LT
10#include <linux/wait.h>
11#include <linux/list.h>
d1c85c2e 12#include <linux/static_key.h>
a263653e 13#include <linux/netfilter_defs.h>
085db2c0
EB
14#include <linux/netdevice.h>
15#include <net/net_namespace.h>
a263653e 16
1da177e4 17#ifdef CONFIG_NETFILTER
f615df76
FW
18static inline int NF_DROP_GETERR(int verdict)
19{
20 return -(verdict >> NF_VERDICT_QBITS);
21}
1da177e4 22
b8beedd2
PM
23static inline int nf_inet_addr_cmp(const union nf_inet_addr *a1,
24 const union nf_inet_addr *a2)
25{
26 return a1->all[0] == a2->all[0] &&
27 a1->all[1] == a2->all[1] &&
28 a1->all[2] == a2->all[2] &&
29 a1->all[3] == a2->all[3];
30}
31
efdedd54
DF
32static inline void nf_inet_addr_mask(const union nf_inet_addr *a1,
33 union nf_inet_addr *result,
34 const union nf_inet_addr *mask)
35{
36 result->all[0] = a1->all[0] & mask->all[0];
37 result->all[1] = a1->all[1] & mask->all[1];
38 result->all[2] = a1->all[2] & mask->all[2];
39 result->all[3] = a1->all[3] & mask->all[3];
40}
41
a0f4ecf3 42int netfilter_init(void);
1da177e4 43
1da177e4 44struct sk_buff;
1da177e4 45
795aa6ef 46struct nf_hook_ops;
cfdfab31 47
1c984f8a
DM
48struct sock;
49
cfdfab31
DM
50struct nf_hook_state {
51 unsigned int hook;
52 int thresh;
53 u_int8_t pf;
54 struct net_device *in;
55 struct net_device *out;
1c984f8a 56 struct sock *sk;
b11b1f65 57 struct net *net;
f7191483 58 struct list_head *hook_list;
0c4b51f0 59 int (*okfn)(struct net *, struct sock *, struct sk_buff *);
cfdfab31
DM
60};
61
107a9f4d 62static inline void nf_hook_state_init(struct nf_hook_state *p,
f7191483 63 struct list_head *hook_list,
107a9f4d
DM
64 unsigned int hook,
65 int thresh, u_int8_t pf,
66 struct net_device *indev,
67 struct net_device *outdev,
1c984f8a 68 struct sock *sk,
b11b1f65 69 struct net *net,
0c4b51f0 70 int (*okfn)(struct net *, struct sock *, struct sk_buff *))
107a9f4d
DM
71{
72 p->hook = hook;
73 p->thresh = thresh;
74 p->pf = pf;
75 p->in = indev;
76 p->out = outdev;
1c984f8a 77 p->sk = sk;
b11b1f65 78 p->net = net;
f7191483 79 p->hook_list = hook_list;
107a9f4d
DM
80 p->okfn = okfn;
81}
82
06198b34 83typedef unsigned int nf_hookfn(void *priv,
3db05fea 84 struct sk_buff *skb,
238e54c9 85 const struct nf_hook_state *state);
1da177e4 86
d94d9fee 87struct nf_hook_ops {
87d5c18c 88 struct list_head list;
1da177e4
LT
89
90 /* User fills in from here down. */
87d5c18c 91 nf_hookfn *hook;
e687ad60 92 struct net_device *dev;
87d5c18c
PN
93 void *priv;
94 u_int8_t pf;
95 unsigned int hooknum;
1da177e4 96 /* Hooks are ordered in ascending priority. */
87d5c18c 97 int priority;
1da177e4
LT
98};
99
d94d9fee 100struct nf_sockopt_ops {
1da177e4
LT
101 struct list_head list;
102
76108cea 103 u_int8_t pf;
1da177e4
LT
104
105 /* Non-inclusive ranges: use 0/0/NULL to never get called. */
106 int set_optmin;
107 int set_optmax;
108 int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
c30f540b 109#ifdef CONFIG_COMPAT
3fdadf7d
DM
110 int (*compat_set)(struct sock *sk, int optval,
111 void __user *user, unsigned int len);
c30f540b 112#endif
1da177e4
LT
113 int get_optmin;
114 int get_optmax;
115 int (*get)(struct sock *sk, int optval, void __user *user, int *len);
c30f540b 116#ifdef CONFIG_COMPAT
3fdadf7d
DM
117 int (*compat_get)(struct sock *sk, int optval,
118 void __user *user, int *len);
c30f540b 119#endif
16fcec35
NH
120 /* Use the module struct to lock set/get code in place */
121 struct module *owner;
1da177e4
LT
122};
123
1da177e4 124/* Function to register/unregister hook points. */
085db2c0
EB
125int nf_register_net_hook(struct net *net, const struct nf_hook_ops *ops);
126void nf_unregister_net_hook(struct net *net, const struct nf_hook_ops *ops);
127int nf_register_net_hooks(struct net *net, const struct nf_hook_ops *reg,
128 unsigned int n);
129void nf_unregister_net_hooks(struct net *net, const struct nf_hook_ops *reg,
130 unsigned int n);
131
1da177e4
LT
132int nf_register_hook(struct nf_hook_ops *reg);
133void nf_unregister_hook(struct nf_hook_ops *reg);
972d1cb1
PM
134int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
135void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
1da177e4
LT
136
137/* Functions to register get/setsockopt ranges (non-inclusive). You
138 need to check permissions yourself! */
139int nf_register_sockopt(struct nf_sockopt_ops *reg);
140void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
141
d1c85c2e 142#ifdef HAVE_JUMP_LABEL
c5905afb 143extern struct static_key nf_hooks_needed[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
d1c85c2e 144
3bbd14e0 145static inline bool nf_hook_list_active(struct list_head *hook_list,
b8d0aad0 146 u_int8_t pf, unsigned int hook)
a2d7ec58
ED
147{
148 if (__builtin_constant_p(pf) &&
149 __builtin_constant_p(hook))
c5905afb 150 return static_key_false(&nf_hooks_needed[pf][hook]);
a2d7ec58 151
3bbd14e0 152 return !list_empty(hook_list);
a2d7ec58
ED
153}
154#else
3bbd14e0 155static inline bool nf_hook_list_active(struct list_head *hook_list,
b8d0aad0 156 u_int8_t pf, unsigned int hook)
a2d7ec58 157{
3bbd14e0 158 return !list_empty(hook_list);
a2d7ec58
ED
159}
160#endif
161
cfdfab31 162int nf_hook_slow(struct sk_buff *skb, struct nf_hook_state *state);
16a6677f
PM
163
164/**
165 * nf_hook_thresh - call a netfilter hook
b8d0aad0 166 *
16a6677f
PM
167 * Returns 1 if the hook has allowed the packet to pass. The function
168 * okfn must be invoked by the caller in this case. Any other return
169 * value indicates the packet has been consumed by the hook.
170 */
76108cea 171static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
7a773504 172 struct net *net,
7026b1dd 173 struct sock *sk,
3db05fea 174 struct sk_buff *skb,
16a6677f
PM
175 struct net_device *indev,
176 struct net_device *outdev,
0c4b51f0 177 int (*okfn)(struct net *, struct sock *, struct sk_buff *),
7026b1dd 178 int thresh)
16a6677f 179{
3bbd14e0 180 struct list_head *hook_list = &net->nf.hooks[pf][hook];
70aa9966 181
3bbd14e0 182 if (nf_hook_list_active(hook_list, pf, hook)) {
107a9f4d 183 struct nf_hook_state state;
cfdfab31 184
3bbd14e0 185 nf_hook_state_init(&state, hook_list, hook, thresh,
b11b1f65 186 pf, indev, outdev, sk, net, okfn);
cfdfab31
DM
187 return nf_hook_slow(skb, &state);
188 }
a2d7ec58 189 return 1;
16a6677f
PM
190}
191
29a26a56
EB
192static inline int nf_hook(u_int8_t pf, unsigned int hook, struct net *net,
193 struct sock *sk, struct sk_buff *skb,
194 struct net_device *indev, struct net_device *outdev,
0c4b51f0 195 int (*okfn)(struct net *, struct sock *, struct sk_buff *))
16a6677f 196{
7a773504 197 return nf_hook_thresh(pf, hook, net, sk, skb, indev, outdev, okfn, INT_MIN);
16a6677f 198}
1da177e4
LT
199
200/* Activate hook; either okfn or kfree_skb called, unless a hook
201 returns NF_STOLEN (in which case, it's up to the hook to deal with
202 the consequences).
203
204 Returns -ERRNO if packet dropped. Zero means queued, stolen or
205 accepted.
206*/
207
208/* RR:
209 > I don't want nf_hook to return anything because people might forget
210 > about async and trust the return value to mean "packet was ok".
211
212 AK:
213 Just document it clearly, then you can expect some sense from kernel
214 coders :)
215*/
216
2249065f 217static inline int
29a26a56 218NF_HOOK_THRESH(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
7026b1dd
DM
219 struct sk_buff *skb, struct net_device *in,
220 struct net_device *out,
0c4b51f0
EB
221 int (*okfn)(struct net *, struct sock *, struct sk_buff *),
222 int thresh)
2249065f 223{
7a773504 224 int ret = nf_hook_thresh(pf, hook, net, sk, skb, in, out, okfn, thresh);
2249065f 225 if (ret == 1)
0c4b51f0 226 ret = okfn(net, sk, skb);
2249065f
JE
227 return ret;
228}
48d5cad8 229
2249065f 230static inline int
29a26a56 231NF_HOOK_COND(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
7026b1dd 232 struct sk_buff *skb, struct net_device *in, struct net_device *out,
0c4b51f0
EB
233 int (*okfn)(struct net *, struct sock *, struct sk_buff *),
234 bool cond)
2249065f 235{
4bac6b18
PM
236 int ret;
237
238 if (!cond ||
7a773504 239 ((ret = nf_hook_thresh(pf, hook, net, sk, skb, in, out, okfn, INT_MIN)) == 1))
0c4b51f0 240 ret = okfn(net, sk, skb);
2249065f
JE
241 return ret;
242}
1da177e4 243
2249065f 244static inline int
29a26a56 245NF_HOOK(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk, struct sk_buff *skb,
2249065f 246 struct net_device *in, struct net_device *out,
0c4b51f0 247 int (*okfn)(struct net *, struct sock *, struct sk_buff *))
2249065f 248{
29a26a56 249 return NF_HOOK_THRESH(pf, hook, net, sk, skb, in, out, okfn, INT_MIN);
2249065f 250}
1da177e4
LT
251
252/* Call setsockopt() */
76108cea 253int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
b7058842 254 unsigned int len);
76108cea 255int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
1da177e4 256 int *len);
c30f540b 257#ifdef CONFIG_COMPAT
76108cea 258int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval,
b7058842 259 char __user *opt, unsigned int len);
76108cea 260int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval,
3fdadf7d 261 char __user *opt, int *len);
c30f540b 262#endif
3fdadf7d 263
089af26c
HW
264/* Call this before modifying an existing packet: ensures it is
265 modifiable and linear to the point you care about (writable_len).
266 Returns true or false. */
a0f4ecf3 267int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
089af26c 268
1841a4c7 269struct flowi;
02f014d8 270struct nf_queue_entry;
c01cd429 271
bce8032e
PM
272struct nf_afinfo {
273 unsigned short family;
b51655b9 274 __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook,
422c346f 275 unsigned int dataoff, u_int8_t protocol);
d63a6507
PM
276 __sum16 (*checksum_partial)(struct sk_buff *skb,
277 unsigned int hook,
278 unsigned int dataoff,
279 unsigned int len,
280 u_int8_t protocol);
31ad3dd6 281 int (*route)(struct net *net, struct dst_entry **dst,
0fae2e77 282 struct flowi *fl, bool strict);
bce8032e 283 void (*saveroute)(const struct sk_buff *skb,
02f014d8 284 struct nf_queue_entry *entry);
d815d90b 285 int (*reroute)(struct net *net, struct sk_buff *skb,
02f014d8 286 const struct nf_queue_entry *entry);
bce8032e 287 int route_key_size;
2cc7d573
HW
288};
289
0e60ebe0 290extern const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO];
1e796fda 291static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
bce8032e
PM
292{
293 return rcu_dereference(nf_afinfo[family]);
294}
2cc7d573 295
b51655b9 296static inline __sum16
422c346f
PM
297nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
298 u_int8_t protocol, unsigned short family)
299{
1e796fda 300 const struct nf_afinfo *afinfo;
b51655b9 301 __sum16 csum = 0;
422c346f
PM
302
303 rcu_read_lock();
304 afinfo = nf_get_afinfo(family);
305 if (afinfo)
306 csum = afinfo->checksum(skb, hook, dataoff, protocol);
307 rcu_read_unlock();
308 return csum;
309}
310
d63a6507
PM
311static inline __sum16
312nf_checksum_partial(struct sk_buff *skb, unsigned int hook,
313 unsigned int dataoff, unsigned int len,
314 u_int8_t protocol, unsigned short family)
315{
316 const struct nf_afinfo *afinfo;
317 __sum16 csum = 0;
318
319 rcu_read_lock();
320 afinfo = nf_get_afinfo(family);
321 if (afinfo)
322 csum = afinfo->checksum_partial(skb, hook, dataoff, len,
323 protocol);
324 rcu_read_unlock();
325 return csum;
326}
327
a0f4ecf3
JP
328int nf_register_afinfo(const struct nf_afinfo *afinfo);
329void nf_unregister_afinfo(const struct nf_afinfo *afinfo);
bce8032e 330
eb9c7ebe 331#include <net/flow.h>
c7232c99 332extern void (*nf_nat_decode_session_hook)(struct sk_buff *, struct flowi *);
eb9c7ebe
PM
333
334static inline void
76108cea 335nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
eb9c7ebe 336{
051578cc 337#ifdef CONFIG_NF_NAT_NEEDED
eb9c7ebe
PM
338 void (*decodefn)(struct sk_buff *, struct flowi *);
339
c7232c99
PM
340 rcu_read_lock();
341 decodefn = rcu_dereference(nf_nat_decode_session_hook);
342 if (decodefn)
343 decodefn(skb, fl);
344 rcu_read_unlock();
eb9c7ebe
PM
345#endif
346}
347
1da177e4 348#else /* !CONFIG_NETFILTER */
008027c3
AB
349static inline int
350NF_HOOK_COND(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
351 struct sk_buff *skb, struct net_device *in, struct net_device *out,
352 int (*okfn)(struct net *, struct sock *, struct sk_buff *),
353 bool cond)
354{
355 return okfn(net, sk, skb);
356}
357
358static inline int
359NF_HOOK(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk,
360 struct sk_buff *skb, struct net_device *in, struct net_device *out,
361 int (*okfn)(struct net *, struct sock *, struct sk_buff *))
362{
363 return okfn(net, sk, skb);
364}
365
29a26a56
EB
366static inline int nf_hook(u_int8_t pf, unsigned int hook, struct net *net,
367 struct sock *sk, struct sk_buff *skb,
368 struct net_device *indev, struct net_device *outdev,
0c4b51f0 369 int (*okfn)(struct net *, struct sock *, struct sk_buff *))
f53b61d8 370{
9c92d348 371 return 1;
f53b61d8 372}
f53b61d8 373struct flowi;
eb9c7ebe 374static inline void
76108cea
JE
375nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
376{
377}
1da177e4
LT
378#endif /*CONFIG_NETFILTER*/
379
5f79e0f9 380#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
62da9865
DB
381#include <linux/netfilter/nf_conntrack_zones_common.h>
382
312a0c16 383extern void (*ip_ct_attach)(struct sk_buff *, const struct sk_buff *) __rcu;
a0f4ecf3 384void nf_ct_attach(struct sk_buff *, const struct sk_buff *);
0e60ebe0 385extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu;
b7bd1809
PNA
386#else
387static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
388#endif
9cb01766
PNA
389
390struct nf_conn;
41d73ec0 391enum ip_conntrack_info;
9cb01766
PNA
392struct nlattr;
393
a4b4766c 394struct nfnl_ct_hook {
224a0597 395 struct nf_conn *(*get_ct)(const struct sk_buff *skb,
b7bd1809 396 enum ip_conntrack_info *ctinfo);
9cb01766 397 size_t (*build_size)(const struct nf_conn *ct);
b7bd1809
PNA
398 int (*build)(struct sk_buff *skb, struct nf_conn *ct,
399 enum ip_conntrack_info ctinfo,
400 u_int16_t ct_attr, u_int16_t ct_info_attr);
9cb01766 401 int (*parse)(const struct nlattr *attr, struct nf_conn *ct);
bd077937
PNA
402 int (*attach_expect)(const struct nlattr *attr, struct nf_conn *ct,
403 u32 portid, u32 report);
8c88f87c 404 void (*seq_adjust)(struct sk_buff *skb, struct nf_conn *ct,
41d73ec0 405 enum ip_conntrack_info ctinfo, s32 off);
9cb01766 406};
a4b4766c 407extern struct nfnl_ct_hook __rcu *nfnl_ct_hook;
5f79e0f9 408
e7c8899f
FW
409/**
410 * nf_skb_duplicated - TEE target has sent a packet
411 *
412 * When a xtables target sends a packet, the OUTPUT and POSTROUTING
413 * hooks are traversed again, i.e. nft and xtables are invoked recursively.
414 *
415 * This is used by xtables TEE target to prevent the duplicated skb from
416 * being duplicated again.
417 */
418DECLARE_PER_CPU(bool, nf_skb_duplicated);
419
1da177e4 420#endif /*__LINUX_NETFILTER_H*/
This page took 1.254356 seconds and 5 git commands to generate.