blob: 2077489f98873bcbe4ca083cd1f0eb1b99eeab5e [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>
David Howells607ca462012-10-13 10:46:48 +010012#include <uapi/linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#ifdef CONFIG_NETFILTER
Florian Westphalf615df72011-01-18 15:52:14 +010014static inline int NF_DROP_GETERR(int verdict)
15{
16 return -(verdict >> NF_VERDICT_QBITS);
17}
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Patrick McHardyb8beedd2008-03-25 20:09:33 -070019static inline int nf_inet_addr_cmp(const union nf_inet_addr *a1,
20 const union nf_inet_addr *a2)
21{
22 return a1->all[0] == a2->all[0] &&
23 a1->all[1] == a2->all[1] &&
24 a1->all[2] == a2->all[2] &&
25 a1->all[3] == a2->all[3];
26}
27
Denys Fedoryshchenkoefdedd52012-05-17 23:08:57 +030028static inline void nf_inet_addr_mask(const union nf_inet_addr *a1,
29 union nf_inet_addr *result,
30 const union nf_inet_addr *mask)
31{
32 result->all[0] = a1->all[0] & mask->all[0];
33 result->all[1] = a1->all[1] & mask->all[1];
34 result->all[2] = a1->all[2] & mask->all[2];
35 result->all[3] = a1->all[3] & mask->all[3];
36}
37
Joe Perchesa0f4ecf2013-09-26 14:48:15 -070038int netfilter_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/* Largest hook number + 1 */
41#define NF_MAX_HOOKS 8
42
43struct sk_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Patrick McHardy795aa6e2013-10-10 09:21:55 +020045struct nf_hook_ops;
46typedef unsigned int nf_hookfn(const struct nf_hook_ops *ops,
Herbert Xu3db05fe2007-10-15 00:53:15 -070047 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 const struct net_device *in,
49 const struct net_device *out,
50 int (*okfn)(struct sk_buff *));
51
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080052struct nf_hook_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 struct list_head list;
54
55 /* User fills in from here down. */
Patrick McHardy96518512013-10-14 11:00:02 +020056 nf_hookfn *hook;
57 struct module *owner;
58 void *priv;
59 u_int8_t pf;
60 unsigned int hooknum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 /* Hooks are ordered in ascending priority. */
Patrick McHardy96518512013-10-14 11:00:02 +020062 int priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080065struct nf_sockopt_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct list_head list;
67
Jan Engelhardt76108ce2008-10-08 11:35:00 +020068 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 /* Non-inclusive ranges: use 0/0/NULL to never get called. */
71 int set_optmin;
72 int set_optmax;
73 int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +010074#ifdef CONFIG_COMPAT
Dmitry Mishin3fdadf72006-03-20 22:45:21 -080075 int (*compat_set)(struct sock *sk, int optval,
76 void __user *user, unsigned int len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +010077#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 int get_optmin;
79 int get_optmax;
80 int (*get)(struct sock *sk, int optval, void __user *user, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +010081#ifdef CONFIG_COMPAT
Dmitry Mishin3fdadf72006-03-20 22:45:21 -080082 int (*compat_get)(struct sock *sk, int optval,
83 void __user *user, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +010084#endif
Neil Horman16fcec32007-09-11 11:28:26 +020085 /* Use the module struct to lock set/get code in place */
86 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* Function to register/unregister hook points. */
90int nf_register_hook(struct nf_hook_ops *reg);
91void nf_unregister_hook(struct nf_hook_ops *reg);
Patrick McHardy972d1cb2006-04-06 14:09:12 -070092int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
93void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/* Functions to register get/setsockopt ranges (non-inclusive). You
96 need to check permissions yourself! */
97int nf_register_sockopt(struct nf_sockopt_ops *reg);
98void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
99
Jan Engelhardt7e9c6ee2008-10-08 11:35:00 +0200100extern struct list_head nf_hooks[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Eric Dumazeta2d7ec52011-11-18 17:32:46 +0000102#if defined(CONFIG_JUMP_LABEL)
Ingo Molnarc5905af2012-02-24 08:31:31 +0100103#include <linux/static_key.h>
104extern struct static_key nf_hooks_needed[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
Eric Dumazeta2d7ec52011-11-18 17:32:46 +0000105static inline bool nf_hooks_active(u_int8_t pf, unsigned int hook)
106{
107 if (__builtin_constant_p(pf) &&
108 __builtin_constant_p(hook))
Ingo Molnarc5905af2012-02-24 08:31:31 +0100109 return static_key_false(&nf_hooks_needed[pf][hook]);
Eric Dumazeta2d7ec52011-11-18 17:32:46 +0000110
111 return !list_empty(&nf_hooks[pf][hook]);
112}
113#else
114static inline bool nf_hooks_active(u_int8_t pf, unsigned int hook)
115{
116 return !list_empty(&nf_hooks[pf][hook]);
117}
118#endif
119
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200120int nf_hook_slow(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800121 struct net_device *indev, struct net_device *outdev,
122 int (*okfn)(struct sk_buff *), int thresh);
123
124/**
125 * nf_hook_thresh - call a netfilter hook
126 *
127 * Returns 1 if the hook has allowed the packet to pass. The function
128 * okfn must be invoked by the caller in this case. Any other return
129 * value indicates the packet has been consumed by the hook.
130 */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200131static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700132 struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800133 struct net_device *indev,
134 struct net_device *outdev,
Jan Engelhardt23f37332009-06-05 17:31:46 +0200135 int (*okfn)(struct sk_buff *), int thresh)
Patrick McHardy16a66772006-01-06 23:01:48 -0800136{
Eric Dumazeta2d7ec52011-11-18 17:32:46 +0000137 if (nf_hooks_active(pf, hook))
138 return nf_hook_slow(pf, hook, skb, indev, outdev, okfn, thresh);
139 return 1;
Patrick McHardy16a66772006-01-06 23:01:48 -0800140}
141
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200142static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800143 struct net_device *indev, struct net_device *outdev,
144 int (*okfn)(struct sk_buff *))
145{
Jan Engelhardt23f37332009-06-05 17:31:46 +0200146 return nf_hook_thresh(pf, hook, skb, indev, outdev, okfn, INT_MIN);
Patrick McHardy16a66772006-01-06 23:01:48 -0800147}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149/* Activate hook; either okfn or kfree_skb called, unless a hook
150 returns NF_STOLEN (in which case, it's up to the hook to deal with
151 the consequences).
152
153 Returns -ERRNO if packet dropped. Zero means queued, stolen or
154 accepted.
155*/
156
157/* RR:
158 > I don't want nf_hook to return anything because people might forget
159 > about async and trust the return value to mean "packet was ok".
160
161 AK:
162 Just document it clearly, then you can expect some sense from kernel
163 coders :)
164*/
165
Jan Engelhardt22490652009-06-13 04:13:26 +0200166static inline int
167NF_HOOK_THRESH(uint8_t pf, unsigned int hook, struct sk_buff *skb,
168 struct net_device *in, struct net_device *out,
169 int (*okfn)(struct sk_buff *), int thresh)
170{
171 int ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, thresh);
172 if (ret == 1)
173 ret = okfn(skb);
174 return ret;
175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Jan Engelhardt22490652009-06-13 04:13:26 +0200177static inline int
178NF_HOOK_COND(uint8_t pf, unsigned int hook, struct sk_buff *skb,
179 struct net_device *in, struct net_device *out,
180 int (*okfn)(struct sk_buff *), bool cond)
181{
Patrick McHardy4bac6b12010-02-19 08:03:28 +0100182 int ret;
183
184 if (!cond ||
Eric Parisac5aa2e2010-11-12 08:26:06 +0100185 ((ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, INT_MIN)) == 1))
Jan Engelhardt22490652009-06-13 04:13:26 +0200186 ret = okfn(skb);
187 return ret;
188}
Patrick McHardy16a66772006-01-06 23:01:48 -0800189
Jan Engelhardt22490652009-06-13 04:13:26 +0200190static inline int
191NF_HOOK(uint8_t pf, unsigned int hook, struct sk_buff *skb,
192 struct net_device *in, struct net_device *out,
193 int (*okfn)(struct sk_buff *))
194{
195 return NF_HOOK_THRESH(pf, hook, skb, in, out, okfn, INT_MIN);
196}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198/* Call setsockopt() */
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200199int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
David S. Millerb7058842009-09-30 16:12:20 -0700200 unsigned int len);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200201int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100203#ifdef CONFIG_COMPAT
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200204int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval,
David S. Millerb7058842009-09-30 16:12:20 -0700205 char __user *opt, unsigned int len);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200206int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800207 char __user *opt, int *len);
Alexey Dobriyanc30f5402010-02-02 15:03:24 +0100208#endif
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800209
Harald Welte089af262005-08-09 19:37:23 -0700210/* Call this before modifying an existing packet: ensures it is
211 modifiable and linear to the point you care about (writable_len).
212 Returns true or false. */
Joe Perchesa0f4ecf2013-09-26 14:48:15 -0700213int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
Harald Welte089af262005-08-09 19:37:23 -0700214
Patrick McHardy1841a4c2007-12-05 01:22:05 -0800215struct flowi;
Patrick McHardy02f014d2007-12-05 01:26:33 -0800216struct nf_queue_entry;
Patrick McHardyc01cd422007-12-05 01:24:48 -0800217
Patrick McHardybce80322006-04-06 14:18:09 -0700218struct nf_afinfo {
219 unsigned short family;
Al Virob51655b2006-11-14 21:40:42 -0800220 __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook,
Patrick McHardy422c3462006-04-06 14:18:43 -0700221 unsigned int dataoff, u_int8_t protocol);
Patrick McHardyd63a6502008-03-20 15:15:53 +0100222 __sum16 (*checksum_partial)(struct sk_buff *skb,
223 unsigned int hook,
224 unsigned int dataoff,
225 unsigned int len,
226 u_int8_t protocol);
Florian Westphal31ad3dd2011-04-04 16:56:29 +0200227 int (*route)(struct net *net, struct dst_entry **dst,
Florian Westphal0fae2e72011-04-04 17:00:54 +0200228 struct flowi *fl, bool strict);
Patrick McHardybce80322006-04-06 14:18:09 -0700229 void (*saveroute)(const struct sk_buff *skb,
Patrick McHardy02f014d2007-12-05 01:26:33 -0800230 struct nf_queue_entry *entry);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700231 int (*reroute)(struct sk_buff *skb,
Patrick McHardy02f014d2007-12-05 01:26:33 -0800232 const struct nf_queue_entry *entry);
Patrick McHardybce80322006-04-06 14:18:09 -0700233 int route_key_size;
Harald Welte2cc7d572005-08-09 19:42:34 -0700234};
235
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100236extern const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO];
Patrick McHardy1e796fd2007-12-17 22:42:27 -0800237static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
Patrick McHardybce80322006-04-06 14:18:09 -0700238{
239 return rcu_dereference(nf_afinfo[family]);
240}
Harald Welte2cc7d572005-08-09 19:42:34 -0700241
Al Virob51655b2006-11-14 21:40:42 -0800242static inline __sum16
Patrick McHardy422c3462006-04-06 14:18:43 -0700243nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
244 u_int8_t protocol, unsigned short family)
245{
Patrick McHardy1e796fd2007-12-17 22:42:27 -0800246 const struct nf_afinfo *afinfo;
Al Virob51655b2006-11-14 21:40:42 -0800247 __sum16 csum = 0;
Patrick McHardy422c3462006-04-06 14:18:43 -0700248
249 rcu_read_lock();
250 afinfo = nf_get_afinfo(family);
251 if (afinfo)
252 csum = afinfo->checksum(skb, hook, dataoff, protocol);
253 rcu_read_unlock();
254 return csum;
255}
256
Patrick McHardyd63a6502008-03-20 15:15:53 +0100257static inline __sum16
258nf_checksum_partial(struct sk_buff *skb, unsigned int hook,
259 unsigned int dataoff, unsigned int len,
260 u_int8_t protocol, unsigned short family)
261{
262 const struct nf_afinfo *afinfo;
263 __sum16 csum = 0;
264
265 rcu_read_lock();
266 afinfo = nf_get_afinfo(family);
267 if (afinfo)
268 csum = afinfo->checksum_partial(skb, hook, dataoff, len,
269 protocol);
270 rcu_read_unlock();
271 return csum;
272}
273
Joe Perchesa0f4ecf2013-09-26 14:48:15 -0700274int nf_register_afinfo(const struct nf_afinfo *afinfo);
275void nf_unregister_afinfo(const struct nf_afinfo *afinfo);
Patrick McHardybce80322006-04-06 14:18:09 -0700276
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800277#include <net/flow.h>
Patrick McHardyc7232c92012-08-26 19:14:06 +0200278extern void (*nf_nat_decode_session_hook)(struct sk_buff *, struct flowi *);
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800279
280static inline void
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200281nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800282{
Patrick McHardy051578c2007-12-17 22:42:51 -0800283#ifdef CONFIG_NF_NAT_NEEDED
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800284 void (*decodefn)(struct sk_buff *, struct flowi *);
285
Patrick McHardyc7232c92012-08-26 19:14:06 +0200286 rcu_read_lock();
287 decodefn = rcu_dereference(nf_nat_decode_session_hook);
288 if (decodefn)
289 decodefn(skb, fl);
290 rcu_read_unlock();
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800291#endif
292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#else /* !CONFIG_NETFILTER */
295#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800296#define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200297static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700298 struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800299 struct net_device *indev,
300 struct net_device *outdev,
Jan Engelhardt23f37332009-06-05 17:31:46 +0200301 int (*okfn)(struct sk_buff *), int thresh)
David S. Millerf53b61d2006-01-07 12:50:27 -0800302{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700303 return okfn(skb);
David S. Millerf53b61d2006-01-07 12:50:27 -0800304}
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200305static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800306 struct net_device *indev, struct net_device *outdev,
307 int (*okfn)(struct sk_buff *))
308{
Patrick McHardy9c92d342006-02-15 15:18:19 -0800309 return 1;
David S. Millerf53b61d2006-01-07 12:50:27 -0800310}
David S. Millerf53b61d2006-01-07 12:50:27 -0800311struct flowi;
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800312static inline void
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200313nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
314{
315}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316#endif /*CONFIG_NETFILTER*/
317
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700318#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Patrick McHardy312a0c162013-07-28 22:54:08 +0200319extern void (*ip_ct_attach)(struct sk_buff *, const struct sk_buff *) __rcu;
Joe Perchesa0f4ecf2013-09-26 14:48:15 -0700320void nf_ct_attach(struct sk_buff *, const struct sk_buff *);
Eric Dumazet0e60ebe2010-11-15 18:17:21 +0100321extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200322
323struct nf_conn;
Patrick McHardy41d73ec2013-08-27 08:50:12 +0200324enum ip_conntrack_info;
Pablo Neira Ayuso9cb01762012-06-07 12:13:39 +0200325struct nlattr;
326
327struct nfq_ct_hook {
328 size_t (*build_size)(const struct nf_conn *ct);
329 int (*build)(struct sk_buff *skb, struct nf_conn *ct);
330 int (*parse)(const struct nlattr *attr, struct nf_conn *ct);
Pablo Neira Ayusobd077932013-08-07 18:13:20 +0200331 int (*attach_expect)(const struct nlattr *attr, struct nf_conn *ct,
332 u32 portid, u32 report);
Patrick McHardy41d73ec2013-08-27 08:50:12 +0200333 void (*seq_adjust)(struct sk_buff *skb, struct nf_conn *ct,
334 enum ip_conntrack_info ctinfo, s32 off);
Pablo Neira Ayusod584a612012-06-20 20:52:31 +0200335};
336extern struct nfq_ct_hook __rcu *nfq_ct_hook;
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700337#else
338static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
339#endif
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#endif /*__LINUX_NETFILTER_H*/