blob: 9bfc7d4f58682d15ab0fec6c283d4e39f662bc60 [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
104/* Each queued (to userspace) skbuff has one of these. */
105struct nf_info
106{
107 /* The ops struct which sent us to userspace. */
108 struct nf_hook_ops *elem;
109
110 /* If we're sent to userspace, this keeps housekeeping info */
111 int pf;
112 unsigned int hook;
113 struct net_device *indev, *outdev;
114 int (*okfn)(struct sk_buff *);
115};
116
117/* Function to register/unregister hook points. */
118int nf_register_hook(struct nf_hook_ops *reg);
119void nf_unregister_hook(struct nf_hook_ops *reg);
Patrick McHardy972d1cb2006-04-06 14:09:12 -0700120int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
121void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/* Functions to register get/setsockopt ranges (non-inclusive). You
124 need to check permissions yourself! */
125int nf_register_sockopt(struct nf_sockopt_ops *reg);
126void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
127
Patrick McHardyd62f9ed2006-11-29 02:35:17 +0100128#ifdef CONFIG_SYSCTL
129/* Sysctl registration */
130struct ctl_table_header *nf_register_sysctl_table(struct ctl_table *path,
131 struct ctl_table *table);
132void nf_unregister_sysctl_table(struct ctl_table_header *header,
133 struct ctl_table *table);
134extern struct ctl_table nf_net_netfilter_sysctl_path[];
135extern struct ctl_table nf_net_ipv4_netfilter_sysctl_path[];
136#endif /* CONFIG_SYSCTL */
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138extern struct list_head nf_hooks[NPROTO][NF_MAX_HOOKS];
139
Harald Welte608c8e42005-08-09 19:58:27 -0700140/* those NF_LOG_* defines and struct nf_loginfo are legacy definitios that will
141 * disappear once iptables is replaced with pkttables. Please DO NOT use them
142 * for any new code! */
143#define NF_LOG_TCPSEQ 0x01 /* Log TCP sequence numbers */
144#define NF_LOG_TCPOPT 0x02 /* Log TCP options */
145#define NF_LOG_IPOPT 0x04 /* Log IP options */
146#define NF_LOG_UID 0x08 /* Log UID owning local socket */
147#define NF_LOG_MASK 0x0f
148
149#define NF_LOG_TYPE_LOG 0x01
150#define NF_LOG_TYPE_ULOG 0x02
151
152struct nf_loginfo {
153 u_int8_t type;
154 union {
155 struct {
156 u_int32_t copy_len;
157 u_int16_t group;
158 u_int16_t qthreshold;
159 } ulog;
160 struct {
161 u_int8_t level;
162 u_int8_t logflags;
163 } log;
164 } u;
165};
166
167typedef void nf_logfn(unsigned int pf,
168 unsigned int hooknum,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 const struct sk_buff *skb,
170 const struct net_device *in,
171 const struct net_device *out,
Harald Welte608c8e42005-08-09 19:58:27 -0700172 const struct nf_loginfo *li,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 const char *prefix);
174
Harald Welte608c8e42005-08-09 19:58:27 -0700175struct nf_logger {
176 struct module *me;
177 nf_logfn *logfn;
178 char *name;
179};
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/* Function to register/unregister log function. */
Harald Welte608c8e42005-08-09 19:58:27 -0700182int nf_log_register(int pf, struct nf_logger *logger);
Patrick McHardye92ad992007-02-12 11:11:55 -0800183void nf_log_unregister(struct nf_logger *logger);
Patrick McHardy9dc6aa52007-02-12 11:11:24 -0800184void nf_log_unregister_pf(int pf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186/* Calls the registered backend logging function */
187void nf_log_packet(int pf,
188 unsigned int hooknum,
189 const struct sk_buff *skb,
190 const struct net_device *in,
191 const struct net_device *out,
Harald Welte608c8e42005-08-09 19:58:27 -0700192 struct nf_loginfo *li,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 const char *fmt, ...);
Patrick McHardy16a66772006-01-06 23:01:48 -0800194
Herbert Xu3db05fe2007-10-15 00:53:15 -0700195int nf_hook_slow(int pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800196 struct net_device *indev, struct net_device *outdev,
197 int (*okfn)(struct sk_buff *), int thresh);
198
199/**
200 * nf_hook_thresh - call a netfilter hook
201 *
202 * Returns 1 if the hook has allowed the packet to pass. The function
203 * okfn must be invoked by the caller in this case. Any other return
204 * value indicates the packet has been consumed by the hook.
205 */
206static inline int nf_hook_thresh(int pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700207 struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800208 struct net_device *indev,
209 struct net_device *outdev,
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800210 int (*okfn)(struct sk_buff *), int thresh,
211 int cond)
Patrick McHardy16a66772006-01-06 23:01:48 -0800212{
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800213 if (!cond)
214 return 1;
Patrick McHardy16a66772006-01-06 23:01:48 -0800215#ifndef CONFIG_NETFILTER_DEBUG
216 if (list_empty(&nf_hooks[pf][hook]))
217 return 1;
218#endif
Herbert Xu3db05fe2007-10-15 00:53:15 -0700219 return nf_hook_slow(pf, hook, skb, indev, outdev, okfn, thresh);
Patrick McHardy16a66772006-01-06 23:01:48 -0800220}
221
Herbert Xu3db05fe2007-10-15 00:53:15 -0700222static inline int nf_hook(int pf, unsigned int hook, struct sk_buff *skb,
Patrick McHardy16a66772006-01-06 23:01:48 -0800223 struct net_device *indev, struct net_device *outdev,
224 int (*okfn)(struct sk_buff *))
225{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700226 return nf_hook_thresh(pf, hook, skb, indev, outdev, okfn, INT_MIN, 1);
Patrick McHardy16a66772006-01-06 23:01:48 -0800227}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229/* Activate hook; either okfn or kfree_skb called, unless a hook
230 returns NF_STOLEN (in which case, it's up to the hook to deal with
231 the consequences).
232
233 Returns -ERRNO if packet dropped. Zero means queued, stolen or
234 accepted.
235*/
236
237/* RR:
238 > I don't want nf_hook to return anything because people might forget
239 > about async and trust the return value to mean "packet was ok".
240
241 AK:
242 Just document it clearly, then you can expect some sense from kernel
243 coders :)
244*/
245
246/* This is gross, but inline doesn't cut it for avoiding the function
247 call in fast path: gcc doesn't inline (needs value tracking?). --RR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Patrick McHardy16a66772006-01-06 23:01:48 -0800249/* HX: It's slightly less gross now. */
250
251#define NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, thresh) \
252({int __ret; \
Herbert Xu3db05fe2007-10-15 00:53:15 -0700253if ((__ret=nf_hook_thresh(pf, hook, (skb), indev, outdev, okfn, thresh, 1)) == 1)\
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800254 __ret = (okfn)(skb); \
255__ret;})
256
257#define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) \
258({int __ret; \
Herbert Xu3db05fe2007-10-15 00:53:15 -0700259if ((__ret=nf_hook_thresh(pf, hook, (skb), indev, outdev, okfn, INT_MIN, cond)) == 1)\
Patrick McHardy16a66772006-01-06 23:01:48 -0800260 __ret = (okfn)(skb); \
261__ret;})
262
263#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) \
264 NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, INT_MIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266/* Call setsockopt() */
267int nf_setsockopt(struct sock *sk, int pf, int optval, char __user *opt,
268 int len);
269int nf_getsockopt(struct sock *sk, int pf, int optval, char __user *opt,
270 int *len);
271
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800272int compat_nf_setsockopt(struct sock *sk, int pf, int optval,
273 char __user *opt, int len);
274int compat_nf_getsockopt(struct sock *sk, int pf, int optval,
275 char __user *opt, int *len);
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/* Packet queuing */
Harald Weltebbd86b9f2005-08-09 20:23:11 -0700278struct nf_queue_handler {
279 int (*outfn)(struct sk_buff *skb, struct nf_info *info,
280 unsigned int queuenum, void *data);
281 void *data;
282 char *name;
283};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284extern int nf_register_queue_handler(int pf,
Harald Weltebbd86b9f2005-08-09 20:23:11 -0700285 struct nf_queue_handler *qh);
Yasuyuki Kozakaice7663d2007-07-07 22:40:08 -0700286extern int nf_unregister_queue_handler(int pf,
287 struct nf_queue_handler *qh);
Harald Weltebbd86b9f2005-08-09 20:23:11 -0700288extern void nf_unregister_queue_handlers(struct nf_queue_handler *qh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289extern void nf_reinject(struct sk_buff *skb,
290 struct nf_info *info,
291 unsigned int verdict);
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/* FIXME: Before cache is ever used, this must be implemented for real. */
294extern void nf_invalidate_cache(int pf);
295
Harald Welte089af262005-08-09 19:37:23 -0700296/* Call this before modifying an existing packet: ensures it is
297 modifiable and linear to the point you care about (writable_len).
298 Returns true or false. */
Herbert Xu37d41872007-10-14 00:39:18 -0700299extern int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
Harald Welte089af262005-08-09 19:37:23 -0700300
Patrick McHardy1841a4c2007-12-05 01:22:05 -0800301struct flowi;
Patrick McHardybce80322006-04-06 14:18:09 -0700302struct nf_afinfo {
303 unsigned short family;
Al Virob51655b2006-11-14 21:40:42 -0800304 __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook,
Patrick McHardy422c3462006-04-06 14:18:43 -0700305 unsigned int dataoff, u_int8_t protocol);
Patrick McHardy1841a4c2007-12-05 01:22:05 -0800306 int (*route)(struct dst_entry **dst, struct flowi *fl);
Patrick McHardybce80322006-04-06 14:18:09 -0700307 void (*saveroute)(const struct sk_buff *skb,
308 struct nf_info *info);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700309 int (*reroute)(struct sk_buff *skb,
Patrick McHardybce80322006-04-06 14:18:09 -0700310 const struct nf_info *info);
311 int route_key_size;
Harald Welte2cc7d572005-08-09 19:42:34 -0700312};
313
Patrick McHardybce80322006-04-06 14:18:09 -0700314extern struct nf_afinfo *nf_afinfo[];
315static inline struct nf_afinfo *nf_get_afinfo(unsigned short family)
316{
317 return rcu_dereference(nf_afinfo[family]);
318}
Harald Welte2cc7d572005-08-09 19:42:34 -0700319
Al Virob51655b2006-11-14 21:40:42 -0800320static inline __sum16
Patrick McHardy422c3462006-04-06 14:18:43 -0700321nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
322 u_int8_t protocol, unsigned short family)
323{
324 struct nf_afinfo *afinfo;
Al Virob51655b2006-11-14 21:40:42 -0800325 __sum16 csum = 0;
Patrick McHardy422c3462006-04-06 14:18:43 -0700326
327 rcu_read_lock();
328 afinfo = nf_get_afinfo(family);
329 if (afinfo)
330 csum = afinfo->checksum(skb, hook, dataoff, protocol);
331 rcu_read_unlock();
332 return csum;
333}
334
Patrick McHardybce80322006-04-06 14:18:09 -0700335extern int nf_register_afinfo(struct nf_afinfo *afinfo);
336extern void nf_unregister_afinfo(struct nf_afinfo *afinfo);
337
338#define nf_info_reroute(x) ((void *)x + sizeof(struct nf_info))
Harald Welte2cc7d572005-08-09 19:42:34 -0700339
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800340#include <net/flow.h>
341extern void (*ip_nat_decode_session)(struct sk_buff *, struct flowi *);
342
343static inline void
344nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, int family)
345{
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800346#if defined(CONFIG_IP_NF_NAT_NEEDED) || defined(CONFIG_NF_NAT_NEEDED)
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800347 void (*decodefn)(struct sk_buff *, struct flowi *);
348
349 if (family == AF_INET && (decodefn = ip_nat_decode_session) != NULL)
350 decodefn(skb, fl);
351#endif
352}
353
Harald Welte608c8e42005-08-09 19:58:27 -0700354#ifdef CONFIG_PROC_FS
355#include <linux/proc_fs.h>
356extern struct proc_dir_entry *proc_net_netfilter;
357#endif
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#else /* !CONFIG_NETFILTER */
360#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800361#define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
David S. Millerf53b61d2006-01-07 12:50:27 -0800362static inline int nf_hook_thresh(int pf, unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700363 struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800364 struct net_device *indev,
365 struct net_device *outdev,
Patrick McHardy48d5cad2006-02-15 15:10:22 -0800366 int (*okfn)(struct sk_buff *), int thresh,
367 int cond)
David S. Millerf53b61d2006-01-07 12:50:27 -0800368{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700369 return okfn(skb);
David S. Millerf53b61d2006-01-07 12:50:27 -0800370}
Herbert Xu3db05fe2007-10-15 00:53:15 -0700371static inline int nf_hook(int pf, unsigned int hook, struct sk_buff *skb,
David S. Millerf53b61d2006-01-07 12:50:27 -0800372 struct net_device *indev, struct net_device *outdev,
373 int (*okfn)(struct sk_buff *))
374{
Patrick McHardy9c92d342006-02-15 15:18:19 -0800375 return 1;
David S. Millerf53b61d2006-01-07 12:50:27 -0800376}
David S. Millerf53b61d2006-01-07 12:50:27 -0800377struct flowi;
Patrick McHardyeb9c7eb2006-01-06 23:06:30 -0800378static inline void
379nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, int family) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#endif /*CONFIG_NETFILTER*/
381
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700382#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
383extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *);
384extern void nf_ct_attach(struct sk_buff *, struct sk_buff *);
Yasuyuki Kozakaide6e05c2007-03-23 11:17:27 -0700385extern void (*nf_ct_destroy)(struct nf_conntrack *);
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700386#else
387static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
388#endif
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#endif /*__KERNEL__*/
391#endif /*__LINUX_NETFILTER_H*/