]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/netfilter_ipv6.h
mm/hotplug: invalid PFNs from pfn_to_online_page()
[mirror_ubuntu-bionic-kernel.git] / include / linux / netfilter_ipv6.h
CommitLineData
1da177e4
LT
1/* IPv6-specific defines for netfilter.
2 * (C)1998 Rusty Russell -- This code is GPL.
3 * (C)1999 David Jeffery
4 * this header was blatantly ripped from netfilter_ipv4.h
5 * it's amazing what adding a bunch of 6s can do =8^)
6 */
607ca46e
DH
7#ifndef __LINUX_IP6_NETFILTER_H
8#define __LINUX_IP6_NETFILTER_H
1da177e4 9
607ca46e 10#include <uapi/linux/netfilter_ipv6.h>
1da177e4 11
2a7851bf
FW
12/*
13 * Hook functions for ipv6 to allow xt_* modules to be built-in even
14 * if IPv6 is a module.
15 */
16struct nf_ipv6_ops {
17 int (*chk_addr)(struct net *net, const struct in6_addr *addr,
18 const struct net_device *dev, int strict);
72b31f72 19 void (*route_input)(struct sk_buff *skb);
7d8c6e39
EB
20 int (*fragment)(struct net *net, struct sock *sk, struct sk_buff *skb,
21 int (*output)(struct net *, struct sock *, struct sk_buff *));
2a7851bf
FW
22};
23
2e4cfae2 24#ifdef CONFIG_NETFILTER
5f5d74d7 25int ip6_route_me_harder(struct net *net, struct sk_buff *skb);
2e4cfae2
JS
26__sum16 nf_ip6_checksum(struct sk_buff *skb, unsigned int hook,
27 unsigned int dataoff, u_int8_t protocol);
28
29int ipv6_netfilter_init(void);
30void ipv6_netfilter_fini(void);
31
2a7851bf
FW
32extern const struct nf_ipv6_ops __rcu *nf_ipv6_ops;
33static inline const struct nf_ipv6_ops *nf_get_ipv6_ops(void)
34{
35 return rcu_dereference(nf_ipv6_ops);
36}
37
bb94aa16
PM
38#else /* CONFIG_NETFILTER */
39static inline int ipv6_netfilter_init(void) { return 0; }
40static inline void ipv6_netfilter_fini(void) { return; }
2e4cfae2 41static inline const struct nf_ipv6_ops *nf_get_ipv6_ops(void) { return NULL; }
bb94aa16 42#endif /* CONFIG_NETFILTER */
2cc7d573 43
1da177e4 44#endif /*__LINUX_IP6_NETFILTER_H*/