blob: 2517ece988209a611b324a0bb8ade2b566eeb645 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_NETFILTER_H
2#define __LINUX_NETFILTER_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/skbuff.h>
6#include <linux/net.h>
7#include <linux/if.h>
Jan Engelhardt2e3075a2008-01-14 23:40:34 -08008#include <linux/in.h>
9#include <linux/in6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/wait.h>
11#include <linux/list.h>
Zhouyi Zhoud1c85c22014-08-22 10:40:15 +080012#include <linux/static_key.h>
David Howells607ca462012-10-13 10:46:48 +010013#include <uapi/linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#ifdef CONFIG_NETFILTER
Florian Westphalf615df72011-01-18 15:52:14 +010015static inline int NF_DROP_GETERR(int verdict)
16{
17 return -(verdict >> NF_VERDICT_QBITS);
18}
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Patrick McHardyb8beedd2008-03-25 20:09:33 -070020static inline int nf_inet_addr_cmp(const union nf_inet_addr *a1,
21 const union nf_inet_addr *a2)
22{
23 return a1->all[0] == a2->all[0] &&
24 a1->all[1] == a2->all[1] &&
25 a1->all[2] == a2->all[2] &&
26 a1->all[3] == a2->all[3];
27}
28
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +030029static inline void nf_inet_addr_mask(const union nf_inet_addr *a1,
30 union nf_inet_addr *result,
31 const union nf_inet_addr *mask)
32{
33 result->all[0] = a1->all[0] & mask->all[0];
34 result->all[1] = a1->all[1] & mask->all[1];
35 result->all[2] = a1->all[2] & mask->all[2];
36 result->all[3] = a1->all[3] & mask->all[3];
37}
38
Joe Perchesa0f4ecf2013-09-26 14:48:15 -070039int netfilter_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Largest hook number + 1 */
42#define NF_MAX_HOOKS 8
43
44struct sk_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Patrick McHardy795aa6e2013-10-10 09:21:55 +020046struct nf_hook_ops;
47typedef unsigned int nf_hookfn(const struct nf_hook_ops *ops,
Herbert Xu3db05fe2007-10-15 00:53:15 -070048 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 const struct net_device *in,
50 const struct net_device *out,
51 int (*okfn)(struct sk_buff *));
52
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080053struct nf_hook_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 struct list_head list;
55
56 /* User fills in from here down. */
Patrick McHardy96518512013-10-14 11:00:02 +020057 nf_hookfn *hook;
58 struct module *owner;
59 void *priv;
60 u_int8_t pf;
61 unsigned int hooknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 /* Hooks are ordered in ascending priority. */
Patrick McHardy96518512013-10-14 11:00:02 +020063 int priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080066struct nf_sockopt_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct list_head list;
68
Jan Engelhardt76108ce2008-10-08 11:35:00 +020069 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 /* Non-inclusive ranges: use 0/0/NULL to never get called. */
72 int set_optmin;
73 int set_optmax;
74 int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +010075#ifdef CONFIG_COMPAT
Dmitry Mishin3fdadf72006-03-20 22:45:21 -080076 int (*compat_set)(struct sock *sk, int optval,
77 void __user *user, unsigned int len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +010078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int get_optmin;
80 int get_optmax;
81 int (*get)(struct sock *sk, int optval, void __user *user, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +010082#ifdef CONFIG_COMPAT
Dmitry Mishin3fdadf72006-03-20 22:45:21 -080083 int (*compat_get)(struct sock *sk, int optval,
84 void __user *user, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +010085#endif
Neil Horman16fcec32007-09-11 11:28:26 +020086 /* Use the module struct to lock set/get code in place */
87 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/* Function to register/unregister hook points. */
91int nf_register_hook(struct nf_hook_ops *reg);
92void nf_unregister_hook(struct nf_hook_ops *reg);
Patrick McHardy972d1cb2006-04-06 14:09:12 -070093int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
94void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/* Functions to register get/setsockopt ranges (non-inclusive). You
97 need to check permissions yourself! */
98int nf_register_sockopt(struct nf_sockopt_ops *reg);
99void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
100
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +0200101extern struct list_head nf_hooks[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Zhouyi Zhoud1c85c22014-08-22 10:40:15 +0800103#ifdef HAVE_JUMP_LABEL
Ingo Molnarc5905af2012-02-24 08:31:31 +0100104extern struct static_key nf_hooks_needed[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
Zhouyi Zhoud1c85c22014-08-22 10:40:15 +0800105
Eric Dumazeta2d7ec52011-11-18 17:32:46 +0000106static inline bool nf_hooks_active(u_int8_t pf, unsigned int hook)
107{
108 if (__builtin_constant_p(pf) &&
109 __builtin_constant_p(hook))
Ingo Molnarc5905af2012-02-24 08:31:31 +0100110 return static_key_false(&nf_hooks_needed[pf][hook]);
Eric Dumazeta2d7ec52011-11-18 17:32:46 +0000111
112 return !list_empty(&nf_hooks[pf][hook]);
113}
114#else
115static inline bool nf_hooks_active(u_int8_t pf, unsigned int hook)
116{
117 return !list_empty(&nf_hooks[pf][hook]);
118}
119#endif
120
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200121int nf_hook_slow(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800122 struct net_device *indev, struct net_device *outdev,
123 int (*okfn)(struct sk_buff *), int thresh);
124
125/**
126 * nf_hook_thresh - call a netfilter hook
127 *
128 * Returns 1 if the hook has allowed the packet to pass. The function
129 * okfn must be invoked by the caller in this case. Any other return
130 * value indicates the packet has been consumed by the hook.
131 */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200132static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700133 struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800134 struct net_device *indev,
135 struct net_device *outdev,
Jan Engelhardt23f37332009-06-05 17:31:46 +0200136 int (*okfn)(struct sk_buff *), int thresh)
Patrick McHardy16a66772006-01-06 23:01:48 -0800137{
Eric Dumazeta2d7ec52011-11-18 17:32:46 +0000138 if (nf_hooks_active(pf, hook))
139 return nf_hook_slow(pf, hook, skb, indev, outdev, okfn, thresh);
140 return 1;
Patrick McHardy16a66772006-01-06 23:01:48 -0800141}
142
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200143static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800144 struct net_device *indev, struct net_device *outdev,
145 int (*okfn)(struct sk_buff *))
146{
Jan Engelhardt23f37332009-06-05 17:31:46 +0200147 return nf_hook_thresh(pf, hook, skb, indev, outdev, okfn, INT_MIN);
Patrick McHardy16a66772006-01-06 23:01:48 -0800148}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150/* Activate hook; either okfn or kfree_skb called, unless a hook
151 returns NF_STOLEN (in which case, it's up to the hook to deal with
152 the consequences).
153
154 Returns -ERRNO if packet dropped. Zero means queued, stolen or
155 accepted.
156*/
157
158/* RR:
159 > I don't want nf_hook to return anything because people might forget
160 > about async and trust the return value to mean "packet was ok".
161
162 AK:
163 Just document it clearly, then you can expect some sense from kernel
164 coders :)
165*/
166
Jan Engelhardt22490652009-06-13 04:13:26 +0200167static inline int
168NF_HOOK_THRESH(uint8_t pf, unsigned int hook, struct sk_buff *skb,
169 struct net_device *in, struct net_device *out,
170 int (*okfn)(struct sk_buff *), int thresh)
171{
172 int ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, thresh);
173 if (ret == 1)
174 ret = okfn(skb);
175 return ret;
176}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Jan Engelhardt22490652009-06-13 04:13:26 +0200178static inline int
179NF_HOOK_COND(uint8_t pf, unsigned int hook, struct sk_buff *skb,
180 struct net_device *in, struct net_device *out,
181 int (*okfn)(struct sk_buff *), bool cond)
182{
Patrick McHardy4bac6b12010-02-19 08:03:28 +0100183 int ret;
184
185 if (!cond ||
Eric Parisac5aa2e2010-11-12 08:26:06 +0100186 ((ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, INT_MIN)) == 1))
Jan Engelhardt22490652009-06-13 04:13:26 +0200187 ret = okfn(skb);
188 return ret;
189}
Patrick McHardy16a66772006-01-06 23:01:48 -0800190
Jan Engelhardt22490652009-06-13 04:13:26 +0200191static inline int
192NF_HOOK(uint8_t pf, unsigned int hook, struct sk_buff *skb,
193 struct net_device *in, struct net_device *out,
194 int (*okfn)(struct sk_buff *))
195{
196 return NF_HOOK_THRESH(pf, hook, skb, in, out, okfn, INT_MIN);
197}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199/* Call setsockopt() */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200200int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
David S. Millerb7058842009-09-30 16:12:20 -0700201 unsigned int len);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200202int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100204#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200205int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval,
David S. Millerb7058842009-09-30 16:12:20 -0700206 char __user *opt, unsigned int len);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200207int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800208 char __user *opt, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100209#endif
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800210
Harald Welte089af262005-08-09 19:37:23 -0700211/* Call this before modifying an existing packet: ensures it is
212 modifiable and linear to the point you care about (writable_len).
213 Returns true or false. */
Joe Perchesa0f4ecf2013-09-26 14:48:15 -0700214int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
Harald Welte089af262005-08-09 19:37:23 -0700215
Patrick McHardy1841a4c2007-12-05 01:22:05 -0800216struct flowi;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800217struct nf_queue_entry;
Patrick McHardyc01cd422007-12-05 01:24:48 -0800218
Patrick McHardybce80322006-04-06 14:18:09 -0700219struct nf_afinfo {
220 unsigned short family;
Al Virob51655b2006-11-14 21:40:42 -0800221 __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook,
Patrick McHardy422c3462006-04-06 14:18:43 -0700222 unsigned int dataoff, u_int8_t protocol);
Patrick McHardyd63a6502008-03-20 15:15:53 +0100223 __sum16 (*checksum_partial)(struct sk_buff *skb,
224 unsigned int hook,
225 unsigned int dataoff,
226 unsigned int len,
227 u_int8_t protocol);
Florian Westphal31ad3dd2011-04-04 16:56:29 +0200228 int (*route)(struct net *net, struct dst_entry **dst,
Florian Westphal0fae2e72011-04-04 17:00:54 +0200229 struct flowi *fl, bool strict);
Patrick McHardybce80322006-04-06 14:18:09 -0700230 void (*saveroute)(const struct sk_buff *skb,
Patrick McHardy02f014d2007-12-05 01:26:33 -0800231 struct nf_queue_entry *entry);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700232 int (*reroute)(struct sk_buff *skb,
Patrick McHardy02f014d2007-12-05 01:26:33 -0800233 const struct nf_queue_entry *entry);
Patrick McHardybce80322006-04-06 14:18:09 -0700234 int route_key_size;
Harald Welte2cc7d572005-08-09 19:42:34 -0700235};
236
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100237extern const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO];
Patrick McHardy1e796fd2007-12-17 22:42:27 -0800238static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
Patrick McHardybce80322006-04-06 14:18:09 -0700239{
240 return rcu_dereference(nf_afinfo[family]);
241}
Harald Welte2cc7d572005-08-09 19:42:34 -0700242
Al Virob51655b2006-11-14 21:40:42 -0800243static inline __sum16
Patrick McHardy422c3462006-04-06 14:18:43 -0700244nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
245 u_int8_t protocol, unsigned short family)
246{
Patrick McHardy1e796fd2007-12-17 22:42:27 -0800247 const struct nf_afinfo *afinfo;
Al Virob51655b2006-11-14 21:40:42 -0800248 __sum16 csum = 0;
Patrick McHardy422c3462006-04-06 14:18:43 -0700249
250 rcu_read_lock();
251 afinfo = nf_get_afinfo(family);
252 if (afinfo)
253 csum = afinfo->checksum(skb, hook, dataoff, protocol);
254 rcu_read_unlock();
255 return csum;
256}
257
Patrick McHardyd63a6502008-03-20 15:15:53 +0100258static inline __sum16
259nf_checksum_partial(struct sk_buff *skb, unsigned int hook,
260 unsigned int dataoff, unsigned int len,
261 u_int8_t protocol, unsigned short family)
262{
263 const struct nf_afinfo *afinfo;
264 __sum16 csum = 0;
265
266 rcu_read_lock();
267 afinfo = nf_get_afinfo(family);
268 if (afinfo)
269 csum = afinfo->checksum_partial(skb, hook, dataoff, len,
270 protocol);
271 rcu_read_unlock();
272 return csum;
273}
274
Joe Perchesa0f4ecf2013-09-26 14:48:15 -0700275int nf_register_afinfo(const struct nf_afinfo *afinfo);
276void nf_unregister_afinfo(const struct nf_afinfo *afinfo);
Patrick McHardybce80322006-04-06 14:18:09 -0700277
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800278#include <net/flow.h>
Patrick McHardyc7232c92012-08-26 19:14:06 +0200279extern void (*nf_nat_decode_session_hook)(struct sk_buff *, struct flowi *);
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800280
281static inline void
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200282nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800283{
Patrick McHardy051578c2007-12-17 22:42:51 -0800284#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800285 void (*decodefn)(struct sk_buff *, struct flowi *);
286
Patrick McHardyc7232c92012-08-26 19:14:06 +0200287 rcu_read_lock();
288 decodefn = rcu_dereference(nf_nat_decode_session_hook);
289 if (decodefn)
290 decodefn(skb, fl);
291 rcu_read_unlock();
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800292#endif
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#else /* !CONFIG_NETFILTER */
296#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800297#define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200298static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700299 struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800300 struct net_device *indev,
301 struct net_device *outdev,
Jan Engelhardt23f37332009-06-05 17:31:46 +0200302 int (*okfn)(struct sk_buff *), int thresh)
David S. Millerf53b61d2006-01-07 12:50:27 -0800303{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700304 return okfn(skb);
David S. Millerf53b61d2006-01-07 12:50:27 -0800305}
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200306static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800307 struct net_device *indev, struct net_device *outdev,
308 int (*okfn)(struct sk_buff *))
309{
Patrick McHardy9c92d342006-02-15 15:18:19 -0800310 return 1;
David S. Millerf53b61d2006-01-07 12:50:27 -0800311}
David S. Millerf53b61d2006-01-07 12:50:27 -0800312struct flowi;
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800313static inline void
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200314nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
315{
316}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#endif /*CONFIG_NETFILTER*/
318
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700319#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Patrick McHardy312a0c162013-07-28 22:54:08 +0200320extern void (*ip_ct_attach)(struct sk_buff *, const struct sk_buff *) __rcu;
Joe Perchesa0f4ecf2013-09-26 14:48:15 -0700321void nf_ct_attach(struct sk_buff *, const struct sk_buff *);
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100322extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200323
324struct nf_conn;
Patrick McHardy41d73ec2013-08-27 08:50:12 +0200325enum ip_conntrack_info;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200326struct nlattr;
327
328struct nfq_ct_hook {
329 size_t (*build_size)(const struct nf_conn *ct);
330 int (*build)(struct sk_buff *skb, struct nf_conn *ct);
331 int (*parse)(const struct nlattr *attr, struct nf_conn *ct);
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200332 int (*attach_expect)(const struct nlattr *attr, struct nf_conn *ct,
333 u32 portid, u32 report);
Patrick McHardy41d73ec2013-08-27 08:50:12 +0200334 void (*seq_adjust)(struct sk_buff *skb, struct nf_conn *ct,
335 enum ip_conntrack_info ctinfo, s32 off);
Pablo Neira Ayusod584a612012-06-20 20:52:31 +0200336};
337extern struct nfq_ct_hook __rcu *nfq_ct_hook;
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700338#else
339static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
340#endif
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342#endif /*__LINUX_NETFILTER_H*/