Skip to content

Commit

Permalink
netfilter: don't pull include/linux/netfilter.h from netns headers
Browse files Browse the repository at this point in the history
This pulls the full hook netfilter definitions from all those that include
net_namespace.h.

Instead let's just include the bare minimum required in the new
linux/netfilter_defs.h file, and use it from the netfilter netns header files.

I also needed to include in.h and in6.h from linux/netfilter.h otherwise we hit
this compilation error:

In file included from include/linux/netfilter_defs.h:4:0,
                 from include/net/netns/netfilter.h:4,
                 from include/net/net_namespace.h:22,
                 from include/linux/netdevice.h:43,
                 from net/netfilter/nfnetlink_queue_core.c:23:
include/uapi/linux/netfilter.h:76:17: error: field ‘in’ has incomplete type struct in_addr in;

And also explicit include linux/netfilter.h in several spots.

Signed-off-by: Pablo Neira Ayuso <[email protected]>
Signed-off-by: Eric W. Biederman <[email protected]>
  • Loading branch information
ummakynes committed Jun 18, 2015
1 parent 10c04a8 commit a263653
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
6 changes: 2 additions & 4 deletions include/linux/netfilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
#include <linux/wait.h>
#include <linux/list.h>
#include <linux/static_key.h>
#include <uapi/linux/netfilter.h>
#include <linux/netfilter_defs.h>

#ifdef CONFIG_NETFILTER
static inline int NF_DROP_GETERR(int verdict)
{
Expand Down Expand Up @@ -38,9 +39,6 @@ static inline void nf_inet_addr_mask(const union nf_inet_addr *a1,

int netfilter_init(void);

/* Largest hook number + 1 */
#define NF_MAX_HOOKS 8

struct sk_buff;

struct nf_hook_ops;
Expand Down
9 changes: 9 additions & 0 deletions include/linux/netfilter_defs.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#ifndef __LINUX_NETFILTER_CORE_H_
#define __LINUX_NETFILTER_CORE_H_

#include <uapi/linux/netfilter.h>

/* Largest hook number + 1, see uapi/linux/netfilter_decnet.h */
#define NF_MAX_HOOKS 8

#endif
2 changes: 1 addition & 1 deletion include/net/netns/netfilter.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef __NETNS_NETFILTER_H
#define __NETNS_NETFILTER_H

#include <linux/netfilter.h>
#include <linux/netfilter_defs.h>

struct proc_dir_entry;
struct nf_logger;
Expand Down
2 changes: 1 addition & 1 deletion include/net/netns/x_tables.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define __NETNS_X_TABLES_H

#include <linux/list.h>
#include <linux/netfilter.h>
#include <linux/netfilter_defs.h>

struct ebt_table;

Expand Down
3 changes: 2 additions & 1 deletion include/uapi/linux/netfilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#include <linux/types.h>
#include <linux/compiler.h>
#include <linux/sysctl.h>

#include <linux/in.h>
#include <linux/in6.h>

/* Responses from hook functions. */
#define NF_DROP 0
Expand Down
1 change: 1 addition & 0 deletions net/ipv6/output_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <net/ip6_fib.h>
#include <net/addrconf.h>
#include <net/secure_seq.h>
#include <linux/netfilter.h>

static u32 __ipv6_select_ident(struct net *net, u32 hashrnd,
const struct in6_addr *dst,
Expand Down

0 comments on commit a263653

Please sign in to comment.