1 #ifndef __LINUX_NETFILTER_H
2 #define __LINUX_NETFILTER_H
5 #include <linux/init.h>
6 #include <linux/skbuff.h>
10 #include <linux/in6.h>
11 #include <linux/wait.h>
12 #include <linux/list.h>
14 #include <linux/types.h>
15 #include <linux/compiler.h>
17 /* Responses from hook functions. */
24 #define NF_MAX_VERDICT NF_STOP
26 /* we overload the higher bits for encoding auxiliary data such as the queue
27 * number. Not nice, but better than additional function arguments. */
28 #define NF_VERDICT_MASK 0x0000ffff
29 #define NF_VERDICT_BITS 16
31 #define NF_VERDICT_QMASK 0xffff0000
32 #define NF_VERDICT_QBITS 16
34 #define NF_QUEUE_NR(x) ((((x) << NF_VERDICT_BITS) & NF_VERDICT_QMASK) | NF_QUEUE)
36 /* only for userspace compatibility */
38 /* Generic cache responses from hook functions.
39 <= 0x2000 is used for protocol-flags. */
40 #define NFC_UNKNOWN 0x4000
41 #define NFC_ALTERED 0x8000
72 #ifdef CONFIG_NETFILTER
74 static inline int nf_inet_addr_cmp(const union nf_inet_addr *a1,
75 const union nf_inet_addr *a2)
77 return a1->all[0] == a2->all[0] &&
78 a1->all[1] == a2->all[1] &&
79 a1->all[2] == a2->all[2] &&
80 a1->all[3] == a2->all[3];
83 extern void netfilter_init(void);
85 /* Largest hook number + 1 */
86 #define NF_MAX_HOOKS 8
90 typedef unsigned int nf_hookfn(unsigned int hooknum,
92 const struct net_device *in,
93 const struct net_device *out,
94 int (*okfn)(struct sk_buff *));
98 struct list_head list;
100 /* User fills in from here down. */
102 struct module *owner;
104 unsigned int hooknum;
105 /* Hooks are ordered in ascending priority. */
109 struct nf_sockopt_ops
111 struct list_head list;
115 /* Non-inclusive ranges: use 0/0/NULL to never get called. */
118 int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len);
119 int (*compat_set)(struct sock *sk, int optval,
120 void __user *user, unsigned int len);
124 int (*get)(struct sock *sk, int optval, void __user *user, int *len);
125 int (*compat_get)(struct sock *sk, int optval,
126 void __user *user, int *len);
128 /* Use the module struct to lock set/get code in place */
129 struct module *owner;
132 /* Function to register/unregister hook points. */
133 int nf_register_hook(struct nf_hook_ops *reg);
134 void nf_unregister_hook(struct nf_hook_ops *reg);
135 int nf_register_hooks(struct nf_hook_ops *reg, unsigned int n);
136 void nf_unregister_hooks(struct nf_hook_ops *reg, unsigned int n);
138 /* Functions to register get/setsockopt ranges (non-inclusive). You
139 need to check permissions yourself! */
140 int nf_register_sockopt(struct nf_sockopt_ops *reg);
141 void nf_unregister_sockopt(struct nf_sockopt_ops *reg);
144 /* Sysctl registration */
145 extern struct ctl_path nf_net_netfilter_sysctl_path[];
146 extern struct ctl_path nf_net_ipv4_netfilter_sysctl_path[];
147 #endif /* CONFIG_SYSCTL */
149 extern struct list_head nf_hooks[NFPROTO_NUMPROTO][NF_MAX_HOOKS];
151 int nf_hook_slow(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
152 struct net_device *indev, struct net_device *outdev,
153 int (*okfn)(struct sk_buff *), int thresh);
156 * nf_hook_thresh - call a netfilter hook
158 * Returns 1 if the hook has allowed the packet to pass. The function
159 * okfn must be invoked by the caller in this case. Any other return
160 * value indicates the packet has been consumed by the hook.
162 static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
164 struct net_device *indev,
165 struct net_device *outdev,
166 int (*okfn)(struct sk_buff *), int thresh,
171 #ifndef CONFIG_NETFILTER_DEBUG
172 if (list_empty(&nf_hooks[pf][hook]))
175 return nf_hook_slow(pf, hook, skb, indev, outdev, okfn, thresh);
178 static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
179 struct net_device *indev, struct net_device *outdev,
180 int (*okfn)(struct sk_buff *))
182 return nf_hook_thresh(pf, hook, skb, indev, outdev, okfn, INT_MIN, 1);
185 /* Activate hook; either okfn or kfree_skb called, unless a hook
186 returns NF_STOLEN (in which case, it's up to the hook to deal with
189 Returns -ERRNO if packet dropped. Zero means queued, stolen or
194 > I don't want nf_hook to return anything because people might forget
195 > about async and trust the return value to mean "packet was ok".
198 Just document it clearly, then you can expect some sense from kernel
202 /* This is gross, but inline doesn't cut it for avoiding the function
203 call in fast path: gcc doesn't inline (needs value tracking?). --RR */
205 /* HX: It's slightly less gross now. */
207 #define NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, thresh) \
209 if ((__ret=nf_hook_thresh(pf, hook, (skb), indev, outdev, okfn, thresh, 1)) == 1)\
210 __ret = (okfn)(skb); \
213 #define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) \
215 if ((__ret=nf_hook_thresh(pf, hook, (skb), indev, outdev, okfn, INT_MIN, cond)) == 1)\
216 __ret = (okfn)(skb); \
219 #define NF_HOOK(pf, hook, skb, indev, outdev, okfn) \
220 NF_HOOK_THRESH(pf, hook, skb, indev, outdev, okfn, INT_MIN)
222 /* Call setsockopt() */
223 int nf_setsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
225 int nf_getsockopt(struct sock *sk, u_int8_t pf, int optval, char __user *opt,
228 int compat_nf_setsockopt(struct sock *sk, u_int8_t pf, int optval,
229 char __user *opt, int len);
230 int compat_nf_getsockopt(struct sock *sk, u_int8_t pf, int optval,
231 char __user *opt, int *len);
233 /* Call this before modifying an existing packet: ensures it is
234 modifiable and linear to the point you care about (writable_len).
235 Returns true or false. */
236 extern int skb_make_writable(struct sk_buff *skb, unsigned int writable_len);
239 struct nf_queue_entry;
242 unsigned short family;
243 __sum16 (*checksum)(struct sk_buff *skb, unsigned int hook,
244 unsigned int dataoff, u_int8_t protocol);
245 __sum16 (*checksum_partial)(struct sk_buff *skb,
247 unsigned int dataoff,
250 int (*route)(struct dst_entry **dst, struct flowi *fl);
251 void (*saveroute)(const struct sk_buff *skb,
252 struct nf_queue_entry *entry);
253 int (*reroute)(struct sk_buff *skb,
254 const struct nf_queue_entry *entry);
258 extern const struct nf_afinfo *nf_afinfo[NFPROTO_NUMPROTO];
259 static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
261 return rcu_dereference(nf_afinfo[family]);
264 static inline __sum16
265 nf_checksum(struct sk_buff *skb, unsigned int hook, unsigned int dataoff,
266 u_int8_t protocol, unsigned short family)
268 const struct nf_afinfo *afinfo;
272 afinfo = nf_get_afinfo(family);
274 csum = afinfo->checksum(skb, hook, dataoff, protocol);
279 static inline __sum16
280 nf_checksum_partial(struct sk_buff *skb, unsigned int hook,
281 unsigned int dataoff, unsigned int len,
282 u_int8_t protocol, unsigned short family)
284 const struct nf_afinfo *afinfo;
288 afinfo = nf_get_afinfo(family);
290 csum = afinfo->checksum_partial(skb, hook, dataoff, len,
296 extern int nf_register_afinfo(const struct nf_afinfo *afinfo);
297 extern void nf_unregister_afinfo(const struct nf_afinfo *afinfo);
299 #include <net/flow.h>
300 extern void (*ip_nat_decode_session)(struct sk_buff *, struct flowi *);
303 nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
305 #ifdef CONFIG_NF_NAT_NEEDED
306 void (*decodefn)(struct sk_buff *, struct flowi *);
308 if (family == AF_INET) {
310 decodefn = rcu_dereference(ip_nat_decode_session);
318 #ifdef CONFIG_PROC_FS
319 #include <linux/proc_fs.h>
320 extern struct proc_dir_entry *proc_net_netfilter;
323 #else /* !CONFIG_NETFILTER */
324 #define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
325 #define NF_HOOK_COND(pf, hook, skb, indev, outdev, okfn, cond) (okfn)(skb)
326 static inline int nf_hook_thresh(u_int8_t pf, unsigned int hook,
328 struct net_device *indev,
329 struct net_device *outdev,
330 int (*okfn)(struct sk_buff *), int thresh,
335 static inline int nf_hook(u_int8_t pf, unsigned int hook, struct sk_buff *skb,
336 struct net_device *indev, struct net_device *outdev,
337 int (*okfn)(struct sk_buff *))
343 nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
346 #endif /*CONFIG_NETFILTER*/
348 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
349 extern void (*ip_ct_attach)(struct sk_buff *, struct sk_buff *);
350 extern void nf_ct_attach(struct sk_buff *, struct sk_buff *);
351 extern void (*nf_ct_destroy)(struct nf_conntrack *);
353 static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
356 #endif /*__KERNEL__*/
357 #endif /*__LINUX_NETFILTER_H*/