blob: 5fe4ef401cc8597eba8538fedbdf8b23ac4b010d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_NETFILTER_H
2#define __LINUX_NETFILTER_H
3
4#ifdef __KERNEL__
5#include <linux/init.h>
6#include <linux/types.h>
7#include <linux/skbuff.h>
8#include <linux/net.h>
9#include <linux/if.h>
10#include <linux/wait.h>
11#include <linux/list.h>
12#endif
13#include <linux/compiler.h>
14
15/* Responses from hook functions. */
16#define NF_DROP 0
17#define NF_ACCEPT 1
18#define NF_STOLEN 2
19#define NF_QUEUE 3
20#define NF_REPEAT 4
21#define NF_STOP 5
22#define NF_MAX_VERDICT NF_STOP
23
Harald Welte0ab43f82005-08-09 19:43:44 -070024/* we overload the higher bits for encoding auxiliary data such as the queue
25 * number. Not nice, but better than additional function arguments. */
26#define NF_VERDICT_MASK 0x0000ffff
27#define NF_VERDICT_BITS 16
28
29#define NF_VERDICT_QMASK 0xffff0000
30#define NF_VERDICT_QBITS 16
31
Harald Welteb766b302005-08-12 11:36:44 -070032#define NF_QUEUE_NR(x) (((x << NF_VERDICT_QBITS) & NF_VERDICT_QMASK) | NF_QUEUE)
Harald Welte0ab43f82005-08-09 19:43:44 -070033
Harald Welte6869c4d2005-08-09 19:24:19 -070034/* only for userspace compatibility */
35#ifndef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* Generic cache responses from hook functions.
37 <= 0x2000 is used for protocol-flags. */
38#define NFC_UNKNOWN 0x4000
39#define NFC_ALTERED 0x8000
Harald Welte6869c4d2005-08-09 19:24:19 -070040#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Patrick McHardy6e23ae22007-11-19 18:53:30 -080042enum nf_inet_hooks {
43 NF_INET_PRE_ROUTING,
44 NF_INET_LOCAL_IN,
45 NF_INET_FORWARD,
46 NF_INET_LOCAL_OUT,
47 NF_INET_POST_ROUTING,
48 NF_INET_NUMHOOKS
49};
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#ifdef CONFIG_NETFILTER
53
54extern void netfilter_init(void);
55
56/* Largest hook number + 1 */
57#define NF_MAX_HOOKS 8
58
59struct sk_buff;
60struct net_device;
61
62typedef unsigned int nf_hookfn(unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -070063 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 const struct net_device *in,
65 const struct net_device *out,
66 int (*okfn)(struct sk_buff *));
67
68struct nf_hook_ops
69{
70 struct list_head list;
71
72 /* User fills in from here down. */
73 nf_hookfn *hook;
74 struct module *owner;
75 int pf;
76 int hooknum;
77 /* Hooks are ordered in ascending priority. */
78 int priority;
79};
80
81struct nf_sockopt_ops
82{
83 struct list_head list;
84
85 int pf;
86
87 /* Non-inclusive ranges: use 0/0/NULL to never get called. */
88 int set_optmin;
89 int set_optmax;
90 int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -080091 int (*compat_set)(struct sock *sk, int optval,
92 void __user *user, unsigned int len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 int get_optmin;
95 int get_optmax;
96 int (*get)(struct sock *sk, int optval, void __user *user, int *len);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -080097 int (*compat_get)(struct sock *sk, int optval,
98 void __user *user, int *len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Neil Horman16fcec32007-09-11 11:28:26 +0200100 /* Use the module struct to lock set/get code in place */
101 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* Function to register/unregister hook points. */
105int nf_register_hook(struct nf_hook_ops *reg);
106void nf_unregister_hook(struct nf_hook_ops *reg);
Patrick McHardy972d1cb2006-04-06 14:09:12 -0700107int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
108void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/* Functions to register get/setsockopt ranges (non-inclusive). You
111 need to check permissions yourself! */
112int nf_register_sockopt(struct nf_sockopt_ops *reg);
113void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
114
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100115#ifdef CONFIG_SYSCTL
116/* Sysctl registration */
117struct ctl_table_header *nf_register_sysctl_table(struct ctl_table *path,
118 struct ctl_table *table);
119void nf_unregister_sysctl_table(struct ctl_table_header *header,
120 struct ctl_table *table);
121extern struct ctl_table nf_net_netfilter_sysctl_path[];
122extern struct ctl_table nf_net_ipv4_netfilter_sysctl_path[];
123#endif /* CONFIG_SYSCTL */
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125extern struct list_head nf_hooks[NPROTO][NF_MAX_HOOKS];
126
Harald Welte608c8e42005-08-09 19:58:27 -0700127/* those NF_LOG_* defines and struct nf_loginfo are legacy definitios that will
128 * disappear once iptables is replaced with pkttables. Please DO NOT use them
129 * for any new code! */
130#define NF_LOG_TCPSEQ 0x01 /* Log TCP sequence numbers */
131#define NF_LOG_TCPOPT 0x02 /* Log TCP options */
132#define NF_LOG_IPOPT 0x04 /* Log IP options */
133#define NF_LOG_UID 0x08 /* Log UID owning local socket */
134#define NF_LOG_MASK 0x0f
135
136#define NF_LOG_TYPE_LOG 0x01
137#define NF_LOG_TYPE_ULOG 0x02
138
139struct nf_loginfo {
140 u_int8_t type;
141 union {
142 struct {
143 u_int32_t copy_len;
144 u_int16_t group;
145 u_int16_t qthreshold;
146 } ulog;
147 struct {
148 u_int8_t level;
149 u_int8_t logflags;
150 } log;
151 } u;
152};
153
154typedef void nf_logfn(unsigned int pf,
155 unsigned int hooknum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 const struct sk_buff *skb,
157 const struct net_device *in,
158 const struct net_device *out,
Harald Welte608c8e42005-08-09 19:58:27 -0700159 const struct nf_loginfo *li,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 const char *prefix);
161
Harald Welte608c8e42005-08-09 19:58:27 -0700162struct nf_logger {
163 struct module *me;
164 nf_logfn *logfn;
165 char *name;
166};
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/* Function to register/unregister log function. */
Harald Welte608c8e42005-08-09 19:58:27 -0700169int nf_log_register(int pf, struct nf_logger *logger);
Patrick McHardye92ad992007-02-12 11:11:55 -0800170void nf_log_unregister(struct nf_logger *logger);
Patrick McHardy9dc6aa52007-02-12 11:11:24 -0800171void nf_log_unregister_pf(int pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/* Calls the registered backend logging function */
174void nf_log_packet(int pf,
175 unsigned int hooknum,
176 const struct sk_buff *skb,
177 const struct net_device *in,
178 const struct net_device *out,
Harald Welte608c8e42005-08-09 19:58:27 -0700179 struct nf_loginfo *li,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 const char *fmt, ...);
Patrick McHardy16a66772006-01-06 23:01:48 -0800181
Herbert Xu3db05fe2007-10-15 00:53:15 -0700182int nf_hook_slow(int pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800183 struct net_device *indev, struct net_device *outdev,
184 int (*okfn)(struct sk_buff *), int thresh);
185
186/**
187 * nf_hook_thresh - call a netfilter hook
188 *
189 * Returns 1 if the hook has allowed the packet to pass. The function
190 * okfn must be invoked by the caller in this case. Any other return
191 * value indicates the packet has been consumed by the hook.
192 */
193static inline int nf_hook_thresh(int pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700194 struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800195 struct net_device *indev,
196 struct net_device *outdev,
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800197 int (*okfn)(struct sk_buff *), int thresh,
198 int cond)
Patrick McHardy16a66772006-01-06 23:01:48 -0800199{
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800200 if (!cond)
201 return 1;
Patrick McHardy16a66772006-01-06 23:01:48 -0800202#ifndef CONFIG_NETFILTER_DEBUG
203 if (list_empty(&nf_hooks[pf][hook]))
204 return 1;
205#endif
Herbert Xu3db05fe2007-10-15 00:53:15 -0700206 return nf_hook_slow(pf, hook, skb, indev, outdev, okfn, thresh);
Patrick McHardy16a66772006-01-06 23:01:48 -0800207}
208
Herbert Xu3db05fe2007-10-15 00:53:15 -0700209static inline int nf_hook(int pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800210 struct net_device *indev, struct net_device *outdev,
211 int (*okfn)(struct sk_buff *))
212{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700213 return nf_hook_thresh(pf, hook, skb, indev, outdev, okfn, INT_MIN, 1);
Patrick McHardy16a66772006-01-06 23:01:48 -0800214}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216/* Activate hook; either okfn or kfree_skb called, unless a hook
217 returns NF_STOLEN (in which case, it's up to the hook to deal with
218 the consequences).
219
220 Returns -ERRNO if packet dropped. Zero means queued, stolen or
221 accepted.
222*/
223
224/* RR:
225 > I don't want nf_hook to return anything because people might forget
226 > about async and trust the return value to mean "packet was ok".
227
228 AK:
229 Just document it clearly, then you can expect some sense from kernel
230 coders :)
231*/
232
233/* This is gross, but inline doesn't cut it for avoiding the function
234 call in fast path: gcc doesn't inline (needs value tracking?). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Patrick McHardy16a66772006-01-06 23:01:48 -0800236/* HX: It's slightly less gross now. */
237
238#define NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, thresh) \
239({int __ret; \
Herbert Xu3db05fe2007-10-15 00:53:15 -0700240if ((__ret=nf_hook_thresh(pf, hook, (skb), indev, outdev, okfn, thresh, 1)) == 1)\
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800241 __ret = (okfn)(skb); \
242__ret;})
243
244#define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) \
245({int __ret; \
Herbert Xu3db05fe2007-10-15 00:53:15 -0700246if ((__ret=nf_hook_thresh(pf, hook, (skb), indev, outdev, okfn, INT_MIN, cond)) == 1)\
Patrick McHardy16a66772006-01-06 23:01:48 -0800247 __ret = (okfn)(skb); \
248__ret;})
249
250#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) \
251 NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, INT_MIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/* Call setsockopt() */
254int nf_setsockopt(struct sock *sk, int pf, int optval, char __user *opt,
255 int len);
256int nf_getsockopt(struct sock *sk, int pf, int optval, char __user *opt,
257 int *len);
258
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800259int compat_nf_setsockopt(struct sock *sk, int pf, int optval,
260 char __user *opt, int len);
261int compat_nf_getsockopt(struct sock *sk, int pf, int optval,
262 char __user *opt, int *len);
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/* FIXME: Before cache is ever used, this must be implemented for real. */
265extern void nf_invalidate_cache(int pf);
266
Harald Welte089af262005-08-09 19:37:23 -0700267/* Call this before modifying an existing packet: ensures it is
268 modifiable and linear to the point you care about (writable_len).
269 Returns true or false. */
Herbert Xu37d41872007-10-14 00:39:18 -0700270extern int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
Harald Welte089af262005-08-09 19:37:23 -0700271
Patrick McHardy1841a4c2007-12-05 01:22:05 -0800272struct flowi;
Patrick McHardyc01cd422007-12-05 01:24:48 -0800273struct nf_info;
274
Patrick McHardybce80322006-04-06 14:18:09 -0700275struct nf_afinfo {
276 unsigned short family;
Al Virob51655b2006-11-14 21:40:42 -0800277 __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook,
Patrick McHardy422c3462006-04-06 14:18:43 -0700278 unsigned int dataoff, u_int8_t protocol);
Patrick McHardy1841a4c2007-12-05 01:22:05 -0800279 int (*route)(struct dst_entry **dst, struct flowi *fl);
Patrick McHardybce80322006-04-06 14:18:09 -0700280 void (*saveroute)(const struct sk_buff *skb,
281 struct nf_info *info);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700282 int (*reroute)(struct sk_buff *skb,
Patrick McHardybce80322006-04-06 14:18:09 -0700283 const struct nf_info *info);
284 int route_key_size;
Harald Welte2cc7d572005-08-09 19:42:34 -0700285};
286
Patrick McHardybce80322006-04-06 14:18:09 -0700287extern struct nf_afinfo *nf_afinfo[];
288static inline struct nf_afinfo *nf_get_afinfo(unsigned short family)
289{
290 return rcu_dereference(nf_afinfo[family]);
291}
Harald Welte2cc7d572005-08-09 19:42:34 -0700292
Al Virob51655b2006-11-14 21:40:42 -0800293static inline __sum16
Patrick McHardy422c3462006-04-06 14:18:43 -0700294nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
295 u_int8_t protocol, unsigned short family)
296{
297 struct nf_afinfo *afinfo;
Al Virob51655b2006-11-14 21:40:42 -0800298 __sum16 csum = 0;
Patrick McHardy422c3462006-04-06 14:18:43 -0700299
300 rcu_read_lock();
301 afinfo = nf_get_afinfo(family);
302 if (afinfo)
303 csum = afinfo->checksum(skb, hook, dataoff, protocol);
304 rcu_read_unlock();
305 return csum;
306}
307
Patrick McHardybce80322006-04-06 14:18:09 -0700308extern int nf_register_afinfo(struct nf_afinfo *afinfo);
309extern void nf_unregister_afinfo(struct nf_afinfo *afinfo);
310
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800311#include <net/flow.h>
312extern void (*ip_nat_decode_session)(struct sk_buff *, struct flowi *);
313
314static inline void
315nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, int family)
316{
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800317#if defined(CONFIG_IP_NF_NAT_NEEDED) || defined(CONFIG_NF_NAT_NEEDED)
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800318 void (*decodefn)(struct sk_buff *, struct flowi *);
319
320 if (family == AF_INET && (decodefn = ip_nat_decode_session) != NULL)
321 decodefn(skb, fl);
322#endif
323}
324
Harald Welte608c8e42005-08-09 19:58:27 -0700325#ifdef CONFIG_PROC_FS
326#include <linux/proc_fs.h>
327extern struct proc_dir_entry *proc_net_netfilter;
328#endif
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#else /* !CONFIG_NETFILTER */
331#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800332#define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
David S. Millerf53b61d2006-01-07 12:50:27 -0800333static inline int nf_hook_thresh(int pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700334 struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800335 struct net_device *indev,
336 struct net_device *outdev,
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800337 int (*okfn)(struct sk_buff *), int thresh,
338 int cond)
David S. Millerf53b61d2006-01-07 12:50:27 -0800339{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700340 return okfn(skb);
David S. Millerf53b61d2006-01-07 12:50:27 -0800341}
Herbert Xu3db05fe2007-10-15 00:53:15 -0700342static inline int nf_hook(int pf, unsigned int hook, struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800343 struct net_device *indev, struct net_device *outdev,
344 int (*okfn)(struct sk_buff *))
345{
Patrick McHardy9c92d342006-02-15 15:18:19 -0800346 return 1;
David S. Millerf53b61d2006-01-07 12:50:27 -0800347}
David S. Millerf53b61d2006-01-07 12:50:27 -0800348struct flowi;
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800349static inline void
350nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, int family) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351#endif /*CONFIG_NETFILTER*/
352
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700353#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
354extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *);
355extern void nf_ct_attach(struct sk_buff *, struct sk_buff *);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -0700356extern void (*nf_ct_destroy)(struct nf_conntrack *);
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700357#else
358static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
359#endif
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#endif /*__KERNEL__*/
362#endif /*__LINUX_NETFILTER_H*/