netfilter: af_info: add network namespace parameter to route hook
[deliverable/linux.git] / include / linux / netfilter.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX_NETFILTER_H
2#define __LINUX_NETFILTER_H
3
4#ifdef __KERNEL__
5#include <linux/init.h>
1da177e4
LT
6#include <linux/skbuff.h>
7#include <linux/net.h>
8#include <linux/if.h>
2e3075a2
JE
9#include <linux/in.h>
10#include <linux/in6.h>
1da177e4
LT
11#include <linux/wait.h>
12#include <linux/list.h>
13#endif
c8942f1f 14#include <linux/types.h>
1da177e4
LT
15#include <linux/compiler.h>
16
17/* Responses from hook functions. */
18#define NF_DROP 0
19#define NF_ACCEPT 1
20#define NF_STOLEN 2
21#define NF_QUEUE 3
22#define NF_REPEAT 4
23#define NF_STOP 5
24#define NF_MAX_VERDICT NF_STOP
25
0ab43f84 26/* we overload the higher bits for encoding auxiliary data such as the queue
f615df76
FW
27 * number or errno values. Not nice, but better than additional function
28 * arguments. */
29#define NF_VERDICT_MASK 0x000000ff
30
31/* extra verdict flags have mask 0x0000ff00 */
94b27cc3 32#define NF_VERDICT_FLAG_QUEUE_BYPASS 0x00008000
0ab43f84 33
f615df76 34/* queue number (NF_QUEUE) or errno (NF_DROP) */
0ab43f84
HW
35#define NF_VERDICT_QMASK 0xffff0000
36#define NF_VERDICT_QBITS 16
37
f615df76 38#define NF_QUEUE_NR(x) ((((x) << 16) & NF_VERDICT_QMASK) | NF_QUEUE)
0ab43f84 39
f615df76 40#define NF_DROP_ERR(x) (((-x) << 16) | NF_DROP)
da683650 41
6869c4d8
HW
42/* only for userspace compatibility */
43#ifndef __KERNEL__
1da177e4
LT
44/* Generic cache responses from hook functions.
45 <= 0x2000 is used for protocol-flags. */
46#define NFC_UNKNOWN 0x4000
47#define NFC_ALTERED 0x8000
f615df76
FW
48
49/* NF_VERDICT_BITS should be 8 now, but userspace might break if this changes */
50#define NF_VERDICT_BITS 16
6869c4d8 51#endif
1da177e4 52
6e23ae2a
PM
53enum nf_inet_hooks {
54 NF_INET_PRE_ROUTING,
55 NF_INET_LOCAL_IN,
56 NF_INET_FORWARD,
57 NF_INET_LOCAL_OUT,
58 NF_INET_POST_ROUTING,
59 NF_INET_NUMHOOKS
60};
61
7e9c6eeb
JE
62enum {
63 NFPROTO_UNSPEC = 0,
64 NFPROTO_IPV4 = 2,
65 NFPROTO_ARP = 3,
66 NFPROTO_BRIDGE = 7,
67 NFPROTO_IPV6 = 10,
68 NFPROTO_DECNET = 12,
69 NFPROTO_NUMPROTO,
70};
71
643a2c15 72union nf_inet_addr {
7b33ed22 73 __u32 all[4];
643a2c15
JE
74 __be32 ip;
75 __be32 ip6[4];
2e3075a2
JE
76 struct in_addr in;
77 struct in6_addr in6;
643a2c15
JE
78};
79
1da177e4 80#ifdef __KERNEL__
1da177e4 81#ifdef CONFIG_NETFILTER
f615df76
FW
82static inline int NF_DROP_GETERR(int verdict)
83{
84 return -(verdict >> NF_VERDICT_QBITS);
85}
1da177e4 86
b8beedd2
PM
87static inline int nf_inet_addr_cmp(const union nf_inet_addr *a1,
88 const union nf_inet_addr *a2)
89{
90 return a1->all[0] == a2->all[0] &&
91 a1->all[1] == a2->all[1] &&
92 a1->all[2] == a2->all[2] &&
93 a1->all[3] == a2->all[3];
94}
95
1da177e4
LT
96extern void netfilter_init(void);
97
98/* Largest hook number + 1 */
99#define NF_MAX_HOOKS 8
100
101struct sk_buff;
1da177e4
LT
102
103typedef unsigned int nf_hookfn(unsigned int hooknum,
3db05fea 104 struct sk_buff *skb,
1da177e4
LT
105 const struct net_device *in,
106 const struct net_device *out,
107 int (*okfn)(struct sk_buff *));
108
d94d9fee 109struct nf_hook_ops {
1da177e4
LT
110 struct list_head list;
111
112 /* User fills in from here down. */
113 nf_hookfn *hook;
114 struct module *owner;
76108cea
JE
115 u_int8_t pf;
116 unsigned int hooknum;
1da177e4
LT
117 /* Hooks are ordered in ascending priority. */
118 int priority;
119};
120
d94d9fee 121struct nf_sockopt_ops {
1da177e4
LT
122 struct list_head list;
123
76108cea 124 u_int8_t pf;
1da177e4
LT
125
126 /* Non-inclusive ranges: use 0/0/NULL to never get called. */
127 int set_optmin;
128 int set_optmax;
129 int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
c30f540b 130#ifdef CONFIG_COMPAT
3fdadf7d
DM
131 int (*compat_set)(struct sock *sk, int optval,
132 void __user *user, unsigned int len);
c30f540b 133#endif
1da177e4
LT
134 int get_optmin;
135 int get_optmax;
136 int (*get)(struct sock *sk, int optval, void __user *user, int *len);
c30f540b 137#ifdef CONFIG_COMPAT
3fdadf7d
DM
138 int (*compat_get)(struct sock *sk, int optval,
139 void __user *user, int *len);
c30f540b 140#endif
16fcec35
NH
141 /* Use the module struct to lock set/get code in place */
142 struct module *owner;
1da177e4
LT
143};
144
1da177e4
LT
145/* Function to register/unregister hook points. */
146int nf_register_hook(struct nf_hook_ops *reg);
147void nf_unregister_hook(struct nf_hook_ops *reg);
972d1cb1
PM
148int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
149void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
1da177e4
LT
150
151/* Functions to register get/setsockopt ranges (non-inclusive). You
152 need to check permissions yourself! */
153int nf_register_sockopt(struct nf_sockopt_ops *reg);
154void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
155
d62f9ed4
PM
156#ifdef CONFIG_SYSCTL
157/* Sysctl registration */
b3fd3ffe
PE
158extern struct ctl_path nf_net_netfilter_sysctl_path[];
159extern struct ctl_path nf_net_ipv4_netfilter_sysctl_path[];
d62f9ed4
PM
160#endif /* CONFIG_SYSCTL */
161
7e9c6eeb 162extern struct list_head nf_hooks[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
1da177e4 163
76108cea 164int nf_hook_slow(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
16a6677f
PM
165 struct net_device *indev, struct net_device *outdev,
166 int (*okfn)(struct sk_buff *), int thresh);
167
168/**
169 * nf_hook_thresh - call a netfilter hook
170 *
171 * Returns 1 if the hook has allowed the packet to pass. The function
172 * okfn must be invoked by the caller in this case. Any other return
173 * value indicates the packet has been consumed by the hook.
174 */
76108cea 175static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
3db05fea 176 struct sk_buff *skb,
16a6677f
PM
177 struct net_device *indev,
178 struct net_device *outdev,
23f3733d 179 int (*okfn)(struct sk_buff *), int thresh)
16a6677f
PM
180{
181#ifndef CONFIG_NETFILTER_DEBUG
182 if (list_empty(&nf_hooks[pf][hook]))
183 return 1;
184#endif
3db05fea 185 return nf_hook_slow(pf, hook, skb, indev, outdev, okfn, thresh);
16a6677f
PM
186}
187
76108cea 188static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
16a6677f
PM
189 struct net_device *indev, struct net_device *outdev,
190 int (*okfn)(struct sk_buff *))
191{
23f3733d 192 return nf_hook_thresh(pf, hook, skb, indev, outdev, okfn, INT_MIN);
16a6677f 193}
1da177e4
LT
194
195/* Activate hook; either okfn or kfree_skb called, unless a hook
196 returns NF_STOLEN (in which case, it's up to the hook to deal with
197 the consequences).
198
199 Returns -ERRNO if packet dropped. Zero means queued, stolen or
200 accepted.
201*/
202
203/* RR:
204 > I don't want nf_hook to return anything because people might forget
205 > about async and trust the return value to mean "packet was ok".
206
207 AK:
208 Just document it clearly, then you can expect some sense from kernel
209 coders :)
210*/
211
2249065f
JE
212static inline int
213NF_HOOK_THRESH(uint8_t pf, unsigned int hook, struct sk_buff *skb,
214 struct net_device *in, struct net_device *out,
215 int (*okfn)(struct sk_buff *), int thresh)
216{
217 int ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, thresh);
218 if (ret == 1)
219 ret = okfn(skb);
220 return ret;
221}
48d5cad8 222
2249065f
JE
223static inline int
224NF_HOOK_COND(uint8_t pf, unsigned int hook, struct sk_buff *skb,
225 struct net_device *in, struct net_device *out,
226 int (*okfn)(struct sk_buff *), bool cond)
227{
4bac6b18
PM
228 int ret;
229
230 if (!cond ||
ac5aa2e3 231 ((ret = nf_hook_thresh(pf, hook, skb, in, out, okfn, INT_MIN)) == 1))
2249065f
JE
232 ret = okfn(skb);
233 return ret;
234}
1da177e4 235
2249065f
JE
236static inline int
237NF_HOOK(uint8_t pf, unsigned int hook, struct sk_buff *skb,
238 struct net_device *in, struct net_device *out,
239 int (*okfn)(struct sk_buff *))
240{
241 return NF_HOOK_THRESH(pf, hook, skb, in, out, okfn, INT_MIN);
242}
1da177e4
LT
243
244/* Call setsockopt() */
76108cea 245int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
b7058842 246 unsigned int len);
76108cea 247int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
1da177e4 248 int *len);
c30f540b 249#ifdef CONFIG_COMPAT
76108cea 250int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval,
b7058842 251 char __user *opt, unsigned int len);
76108cea 252int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval,
3fdadf7d 253 char __user *opt, int *len);
c30f540b 254#endif
3fdadf7d 255
089af26c
HW
256/* Call this before modifying an existing packet: ensures it is
257 modifiable and linear to the point you care about (writable_len).
258 Returns true or false. */
37d41879 259extern int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
089af26c 260
1841a4c7 261struct flowi;
02f014d8 262struct nf_queue_entry;
c01cd429 263
bce8032e
PM
264struct nf_afinfo {
265 unsigned short family;
b51655b9 266 __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook,
422c346f 267 unsigned int dataoff, u_int8_t protocol);
d63a6507
PM
268 __sum16 (*checksum_partial)(struct sk_buff *skb,
269 unsigned int hook,
270 unsigned int dataoff,
271 unsigned int len,
272 u_int8_t protocol);
31ad3dd6
FW
273 int (*route)(struct net *net, struct dst_entry **dst,
274 struct flowi *fl);
bce8032e 275 void (*saveroute)(const struct sk_buff *skb,
02f014d8 276 struct nf_queue_entry *entry);
3db05fea 277 int (*reroute)(struct sk_buff *skb,
02f014d8 278 const struct nf_queue_entry *entry);
bce8032e 279 int route_key_size;
2cc7d573
HW
280};
281
0e60ebe0 282extern const struct nf_afinfo __rcu *nf_afinfo[NFPROTO_NUMPROTO];
1e796fda 283static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
bce8032e
PM
284{
285 return rcu_dereference(nf_afinfo[family]);
286}
2cc7d573 287
b51655b9 288static inline __sum16
422c346f
PM
289nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
290 u_int8_t protocol, unsigned short family)
291{
1e796fda 292 const struct nf_afinfo *afinfo;
b51655b9 293 __sum16 csum = 0;
422c346f
PM
294
295 rcu_read_lock();
296 afinfo = nf_get_afinfo(family);
297 if (afinfo)
298 csum = afinfo->checksum(skb, hook, dataoff, protocol);
299 rcu_read_unlock();
300 return csum;
301}
302
d63a6507
PM
303static inline __sum16
304nf_checksum_partial(struct sk_buff *skb, unsigned int hook,
305 unsigned int dataoff, unsigned int len,
306 u_int8_t protocol, unsigned short family)
307{
308 const struct nf_afinfo *afinfo;
309 __sum16 csum = 0;
310
311 rcu_read_lock();
312 afinfo = nf_get_afinfo(family);
313 if (afinfo)
314 csum = afinfo->checksum_partial(skb, hook, dataoff, len,
315 protocol);
316 rcu_read_unlock();
317 return csum;
318}
319
1e796fda
PM
320extern int nf_register_afinfo(const struct nf_afinfo *afinfo);
321extern void nf_unregister_afinfo(const struct nf_afinfo *afinfo);
bce8032e 322
eb9c7ebe
PM
323#include <net/flow.h>
324extern void (*ip_nat_decode_session)(struct sk_buff *, struct flowi *);
325
326static inline void
76108cea 327nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
eb9c7ebe 328{
051578cc 329#ifdef CONFIG_NF_NAT_NEEDED
eb9c7ebe
PM
330 void (*decodefn)(struct sk_buff *, struct flowi *);
331
051578cc
PM
332 if (family == AF_INET) {
333 rcu_read_lock();
334 decodefn = rcu_dereference(ip_nat_decode_session);
335 if (decodefn)
336 decodefn(skb, fl);
337 rcu_read_unlock();
338 }
eb9c7ebe
PM
339#endif
340}
341
608c8e4f
HW
342#ifdef CONFIG_PROC_FS
343#include <linux/proc_fs.h>
344extern struct proc_dir_entry *proc_net_netfilter;
345#endif
346
1da177e4
LT
347#else /* !CONFIG_NETFILTER */
348#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
48d5cad8 349#define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
76108cea 350static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
3db05fea 351 struct sk_buff *skb,
f53b61d8
DM
352 struct net_device *indev,
353 struct net_device *outdev,
23f3733d 354 int (*okfn)(struct sk_buff *), int thresh)
f53b61d8 355{
3db05fea 356 return okfn(skb);
f53b61d8 357}
76108cea 358static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
f53b61d8
DM
359 struct net_device *indev, struct net_device *outdev,
360 int (*okfn)(struct sk_buff *))
361{
9c92d348 362 return 1;
f53b61d8 363}
f53b61d8 364struct flowi;
eb9c7ebe 365static inline void
76108cea
JE
366nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
367{
368}
1da177e4
LT
369#endif /*CONFIG_NETFILTER*/
370
5f79e0f9 371#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
0e60ebe0 372extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *) __rcu;
5f79e0f9 373extern void nf_ct_attach(struct sk_buff *, struct sk_buff *);
0e60ebe0 374extern void (*nf_ct_destroy)(struct nf_conntrack *) __rcu;
5f79e0f9
YK
375#else
376static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
377#endif
378
1da177e4
LT
379#endif /*__KERNEL__*/
380#endif /*__LINUX_NETFILTER_H*/
This page took 0.826838 seconds and 5 git commands to generate.