]>
Commit | Line | Data |
---|---|---|
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 |
18 | static inline int NF_DROP_GETERR(int verdict) |
19 | { | |
20 | return -(verdict >> NF_VERDICT_QBITS); | |
21 | } | |
1da177e4 | 22 | |
b8beedd2 PM |
23 | static 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 |
32 | static 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 | 42 | int netfilter_init(void); |
1da177e4 | 43 | |
1da177e4 | 44 | struct sk_buff; |
1da177e4 | 45 | |
795aa6ef | 46 | struct nf_hook_ops; |
cfdfab31 | 47 | |
1c984f8a DM |
48 | struct sock; |
49 | ||
cfdfab31 DM |
50 | struct 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 | 62 | static 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 | 83 | typedef unsigned int nf_hookfn(void *priv, |
3db05fea | 84 | struct sk_buff *skb, |
238e54c9 | 85 | const struct nf_hook_state *state); |
1da177e4 | 86 | |
d94d9fee | 87 | struct 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 | 100 | struct 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 |
125 | int nf_register_net_hook(struct net *net, const struct nf_hook_ops *ops); |
126 | void nf_unregister_net_hook(struct net *net, const struct nf_hook_ops *ops); | |
127 | int nf_register_net_hooks(struct net *net, const struct nf_hook_ops *reg, | |
128 | unsigned int n); | |
129 | void nf_unregister_net_hooks(struct net *net, const struct nf_hook_ops *reg, | |
130 | unsigned int n); | |
131 | ||
1da177e4 LT |
132 | int nf_register_hook(struct nf_hook_ops *reg); |
133 | void nf_unregister_hook(struct nf_hook_ops *reg); | |
972d1cb1 PM |
134 | int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n); |
135 | void 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! */ | |
139 | int nf_register_sockopt(struct nf_sockopt_ops *reg); | |
140 | void nf_unregister_sockopt(struct nf_sockopt_ops *reg); | |
141 | ||
d1c85c2e | 142 | #ifdef HAVE_JUMP_LABEL |
c5905afb | 143 | extern struct static_key nf_hooks_needed[NFPROTO_NUMPROTO][NF_MAX_HOOKS]; |
a2d7ec58 ED |
144 | #endif |
145 | ||
cfdfab31 | 146 | int nf_hook_slow(struct sk_buff *skb, struct nf_hook_state *state); |
16a6677f PM |
147 | |
148 | /** | |
149 | * nf_hook_thresh - call a netfilter hook | |
b8d0aad0 | 150 | * |
16a6677f PM |
151 | * Returns 1 if the hook has allowed the packet to pass. The function |
152 | * okfn must be invoked by the caller in this case. Any other return | |
153 | * value indicates the packet has been consumed by the hook. | |
154 | */ | |
76108cea | 155 | static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook, |
7a773504 | 156 | struct net *net, |
7026b1dd | 157 | struct sock *sk, |
3db05fea | 158 | struct sk_buff *skb, |
16a6677f PM |
159 | struct net_device *indev, |
160 | struct net_device *outdev, | |
0c4b51f0 | 161 | int (*okfn)(struct net *, struct sock *, struct sk_buff *), |
7026b1dd | 162 | int thresh) |
16a6677f | 163 | { |
af4610c3 FW |
164 | struct list_head *hook_list; |
165 | ||
166 | #ifdef HAVE_JUMP_LABEL | |
167 | if (__builtin_constant_p(pf) && | |
168 | __builtin_constant_p(hook) && | |
169 | !static_key_false(&nf_hooks_needed[pf][hook])) | |
170 | return 1; | |
171 | #endif | |
172 | ||
173 | hook_list = &net->nf.hooks[pf][hook]; | |
70aa9966 | 174 | |
af4610c3 | 175 | if (!list_empty(hook_list)) { |
107a9f4d | 176 | struct nf_hook_state state; |
cfdfab31 | 177 | |
3bbd14e0 | 178 | nf_hook_state_init(&state, hook_list, hook, thresh, |
b11b1f65 | 179 | pf, indev, outdev, sk, net, okfn); |
cfdfab31 DM |
180 | return nf_hook_slow(skb, &state); |
181 | } | |
a2d7ec58 | 182 | return 1; |
16a6677f PM |
183 | } |
184 | ||
29a26a56 EB |
185 | static inline int nf_hook(u_int8_t pf, unsigned int hook, struct net *net, |
186 | struct sock *sk, struct sk_buff *skb, | |
187 | struct net_device *indev, struct net_device *outdev, | |
0c4b51f0 | 188 | int (*okfn)(struct net *, struct sock *, struct sk_buff *)) |
16a6677f | 189 | { |
7a773504 | 190 | return nf_hook_thresh(pf, hook, net, sk, skb, indev, outdev, okfn, INT_MIN); |
16a6677f | 191 | } |
1da177e4 LT |
192 | |
193 | /* Activate hook; either okfn or kfree_skb called, unless a hook | |
194 | returns NF_STOLEN (in which case, it's up to the hook to deal with | |
195 | the consequences). | |
196 | ||
197 | Returns -ERRNO if packet dropped. Zero means queued, stolen or | |
198 | accepted. | |
199 | */ | |
200 | ||
201 | /* RR: | |
202 | > I don't want nf_hook to return anything because people might forget | |
203 | > about async and trust the return value to mean "packet was ok". | |
204 | ||
205 | AK: | |
206 | Just document it clearly, then you can expect some sense from kernel | |
207 | coders :) | |
208 | */ | |
209 | ||
2249065f | 210 | static inline int |
29a26a56 | 211 | NF_HOOK_THRESH(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk, |
7026b1dd DM |
212 | struct sk_buff *skb, struct net_device *in, |
213 | struct net_device *out, | |
0c4b51f0 EB |
214 | int (*okfn)(struct net *, struct sock *, struct sk_buff *), |
215 | int thresh) | |
2249065f | 216 | { |
7a773504 | 217 | int ret = nf_hook_thresh(pf, hook, net, sk, skb, in, out, okfn, thresh); |
2249065f | 218 | if (ret == 1) |
0c4b51f0 | 219 | ret = okfn(net, sk, skb); |
2249065f JE |
220 | return ret; |
221 | } | |
48d5cad8 | 222 | |
2249065f | 223 | static inline int |
29a26a56 | 224 | NF_HOOK_COND(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk, |
7026b1dd | 225 | struct sk_buff *skb, struct net_device *in, struct net_device *out, |
0c4b51f0 EB |
226 | int (*okfn)(struct net *, struct sock *, struct sk_buff *), |
227 | bool cond) | |
2249065f | 228 | { |
4bac6b18 PM |
229 | int ret; |
230 | ||
231 | if (!cond || | |
7a773504 | 232 | ((ret = nf_hook_thresh(pf, hook, net, sk, skb, in, out, okfn, INT_MIN)) == 1)) |
0c4b51f0 | 233 | ret = okfn(net, sk, skb); |
2249065f JE |
234 | return ret; |
235 | } | |
1da177e4 | 236 | |
2249065f | 237 | static inline int |
29a26a56 | 238 | NF_HOOK(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk, struct sk_buff *skb, |
2249065f | 239 | struct net_device *in, struct net_device *out, |
0c4b51f0 | 240 | int (*okfn)(struct net *, struct sock *, struct sk_buff *)) |
2249065f | 241 | { |
29a26a56 | 242 | return NF_HOOK_THRESH(pf, hook, net, sk, skb, in, out, okfn, INT_MIN); |
2249065f | 243 | } |
1da177e4 LT |
244 | |
245 | /* Call setsockopt() */ | |
76108cea | 246 | int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt, |
b7058842 | 247 | unsigned int len); |
76108cea | 248 | int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt, |
1da177e4 | 249 | int *len); |
c30f540b | 250 | #ifdef CONFIG_COMPAT |
76108cea | 251 | int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, |
b7058842 | 252 | char __user *opt, unsigned int len); |
76108cea | 253 | int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, |
3fdadf7d | 254 | char __user *opt, int *len); |
c30f540b | 255 | #endif |
3fdadf7d | 256 | |
089af26c HW |
257 | /* Call this before modifying an existing packet: ensures it is |
258 | modifiable and linear to the point you care about (writable_len). | |
259 | Returns true or false. */ | |
a0f4ecf3 | 260 | int skb_make_writable(struct sk_buff *skb, unsigned int writable_len); |
089af26c | 261 | |
1841a4c7 | 262 | struct flowi; |
02f014d8 | 263 | struct nf_queue_entry; |
c01cd429 | 264 | |
bce8032e PM |
265 | struct nf_afinfo { |
266 | unsigned short family; | |
b51655b9 | 267 | __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook, |
422c346f | 268 | unsigned int dataoff, u_int8_t protocol); |
d63a6507 PM |
269 | __sum16 (*checksum_partial)(struct sk_buff *skb, |
270 | unsigned int hook, | |
271 | unsigned int dataoff, | |
272 | unsigned int len, | |
273 | u_int8_t protocol); | |
31ad3dd6 | 274 | int (*route)(struct net *net, struct dst_entry **dst, |
0fae2e77 | 275 | struct flowi *fl, bool strict); |
bce8032e | 276 | void (*saveroute)(const struct sk_buff *skb, |
02f014d8 | 277 | struct nf_queue_entry *entry); |
d815d90b | 278 | int (*reroute)(struct net *net, struct sk_buff *skb, |
02f014d8 | 279 | const struct nf_queue_entry *entry); |
bce8032e | 280 | int route_key_size; |
2cc7d573 HW |
281 | }; |
282 | ||
0e60ebe0 | 283 | extern const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO]; |
1e796fda | 284 | static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family) |
bce8032e PM |
285 | { |
286 | return rcu_dereference(nf_afinfo[family]); | |
287 | } | |
2cc7d573 | 288 | |
b51655b9 | 289 | static inline __sum16 |
422c346f PM |
290 | nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff, |
291 | u_int8_t protocol, unsigned short family) | |
292 | { | |
1e796fda | 293 | const struct nf_afinfo *afinfo; |
b51655b9 | 294 | __sum16 csum = 0; |
422c346f PM |
295 | |
296 | rcu_read_lock(); | |
297 | afinfo = nf_get_afinfo(family); | |
298 | if (afinfo) | |
299 | csum = afinfo->checksum(skb, hook, dataoff, protocol); | |
300 | rcu_read_unlock(); | |
301 | return csum; | |
302 | } | |
303 | ||
d63a6507 PM |
304 | static inline __sum16 |
305 | nf_checksum_partial(struct sk_buff *skb, unsigned int hook, | |
306 | unsigned int dataoff, unsigned int len, | |
307 | u_int8_t protocol, unsigned short family) | |
308 | { | |
309 | const struct nf_afinfo *afinfo; | |
310 | __sum16 csum = 0; | |
311 | ||
312 | rcu_read_lock(); | |
313 | afinfo = nf_get_afinfo(family); | |
314 | if (afinfo) | |
315 | csum = afinfo->checksum_partial(skb, hook, dataoff, len, | |
316 | protocol); | |
317 | rcu_read_unlock(); | |
318 | return csum; | |
319 | } | |
320 | ||
a0f4ecf3 JP |
321 | int nf_register_afinfo(const struct nf_afinfo *afinfo); |
322 | void nf_unregister_afinfo(const struct nf_afinfo *afinfo); | |
bce8032e | 323 | |
eb9c7ebe | 324 | #include <net/flow.h> |
c7232c99 | 325 | extern void (*nf_nat_decode_session_hook)(struct sk_buff *, struct flowi *); |
eb9c7ebe PM |
326 | |
327 | static inline void | |
76108cea | 328 | nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family) |
eb9c7ebe | 329 | { |
051578cc | 330 | #ifdef CONFIG_NF_NAT_NEEDED |
eb9c7ebe PM |
331 | void (*decodefn)(struct sk_buff *, struct flowi *); |
332 | ||
c7232c99 PM |
333 | rcu_read_lock(); |
334 | decodefn = rcu_dereference(nf_nat_decode_session_hook); | |
335 | if (decodefn) | |
336 | decodefn(skb, fl); | |
337 | rcu_read_unlock(); | |
eb9c7ebe PM |
338 | #endif |
339 | } | |
340 | ||
1da177e4 | 341 | #else /* !CONFIG_NETFILTER */ |
008027c3 AB |
342 | static inline int |
343 | NF_HOOK_COND(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk, | |
344 | struct sk_buff *skb, struct net_device *in, struct net_device *out, | |
345 | int (*okfn)(struct net *, struct sock *, struct sk_buff *), | |
346 | bool cond) | |
347 | { | |
348 | return okfn(net, sk, skb); | |
349 | } | |
350 | ||
351 | static inline int | |
352 | NF_HOOK(uint8_t pf, unsigned int hook, struct net *net, struct sock *sk, | |
353 | struct sk_buff *skb, struct net_device *in, struct net_device *out, | |
354 | int (*okfn)(struct net *, struct sock *, struct sk_buff *)) | |
355 | { | |
356 | return okfn(net, sk, skb); | |
357 | } | |
358 | ||
29a26a56 EB |
359 | static inline int nf_hook(u_int8_t pf, unsigned int hook, struct net *net, |
360 | struct sock *sk, struct sk_buff *skb, | |
361 | struct net_device *indev, struct net_device *outdev, | |
0c4b51f0 | 362 | int (*okfn)(struct net *, struct sock *, struct sk_buff *)) |
f53b61d8 | 363 | { |
9c92d348 | 364 | return 1; |
f53b61d8 | 365 | } |
f53b61d8 | 366 | struct flowi; |
eb9c7ebe | 367 | static inline void |
76108cea JE |
368 | nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family) |
369 | { | |
370 | } | |
1da177e4 LT |
371 | #endif /*CONFIG_NETFILTER*/ |
372 | ||
5f79e0f9 | 373 | #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE) |
62da9865 DB |
374 | #include <linux/netfilter/nf_conntrack_zones_common.h> |
375 | ||
312a0c16 | 376 | extern void (*ip_ct_attach)(struct sk_buff *, const struct sk_buff *) __rcu; |
a0f4ecf3 | 377 | void nf_ct_attach(struct sk_buff *, const struct sk_buff *); |
0e60ebe0 | 378 | extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu; |
b7bd1809 PNA |
379 | #else |
380 | static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {} | |
381 | #endif | |
9cb01766 PNA |
382 | |
383 | struct nf_conn; | |
41d73ec0 | 384 | enum ip_conntrack_info; |
9cb01766 PNA |
385 | struct nlattr; |
386 | ||
a4b4766c | 387 | struct nfnl_ct_hook { |
224a0597 | 388 | struct nf_conn *(*get_ct)(const struct sk_buff *skb, |
b7bd1809 | 389 | enum ip_conntrack_info *ctinfo); |
9cb01766 | 390 | size_t (*build_size)(const struct nf_conn *ct); |
b7bd1809 PNA |
391 | int (*build)(struct sk_buff *skb, struct nf_conn *ct, |
392 | enum ip_conntrack_info ctinfo, | |
393 | u_int16_t ct_attr, u_int16_t ct_info_attr); | |
9cb01766 | 394 | int (*parse)(const struct nlattr *attr, struct nf_conn *ct); |
bd077937 PNA |
395 | int (*attach_expect)(const struct nlattr *attr, struct nf_conn *ct, |
396 | u32 portid, u32 report); | |
8c88f87c | 397 | void (*seq_adjust)(struct sk_buff *skb, struct nf_conn *ct, |
41d73ec0 | 398 | enum ip_conntrack_info ctinfo, s32 off); |
9cb01766 | 399 | }; |
a4b4766c | 400 | extern struct nfnl_ct_hook __rcu *nfnl_ct_hook; |
5f79e0f9 | 401 | |
e7c8899f FW |
402 | /** |
403 | * nf_skb_duplicated - TEE target has sent a packet | |
404 | * | |
405 | * When a xtables target sends a packet, the OUTPUT and POSTROUTING | |
406 | * hooks are traversed again, i.e. nft and xtables are invoked recursively. | |
407 | * | |
408 | * This is used by xtables TEE target to prevent the duplicated skb from | |
409 | * being duplicated again. | |
410 | */ | |
411 | DECLARE_PER_CPU(bool, nf_skb_duplicated); | |
412 | ||
1da177e4 | 413 | #endif /*__LINUX_NETFILTER_H*/ |