netfilter: inline xt_hashlimit, ebt_802_3 and xt_physdev headers
Three netfilter headers are only included once. Inline their contents at those sites and remove them. Signed-off-by: Jeremy Sowden <jeremy@azazel.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
committed by
Pablo Neira Ayuso
parent
f5d65c1975
commit
85cfbc25e5
@@ -1,11 +0,0 @@
|
|||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
|
||||||
#ifndef _XT_HASHLIMIT_H
|
|
||||||
#define _XT_HASHLIMIT_H
|
|
||||||
|
|
||||||
#include <uapi/linux/netfilter/xt_hashlimit.h>
|
|
||||||
|
|
||||||
#define XT_HASHLIMIT_ALL (XT_HASHLIMIT_HASH_DIP | XT_HASHLIMIT_HASH_DPT | \
|
|
||||||
XT_HASHLIMIT_HASH_SIP | XT_HASHLIMIT_HASH_SPT | \
|
|
||||||
XT_HASHLIMIT_INVERT | XT_HASHLIMIT_BYTES |\
|
|
||||||
XT_HASHLIMIT_RATE_MATCH)
|
|
||||||
#endif /*_XT_HASHLIMIT_H*/
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
|
||||||
#ifndef _XT_PHYSDEV_H
|
|
||||||
#define _XT_PHYSDEV_H
|
|
||||||
|
|
||||||
#include <linux/if.h>
|
|
||||||
#include <uapi/linux/netfilter/xt_physdev.h>
|
|
||||||
|
|
||||||
#endif /*_XT_PHYSDEV_H*/
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
|
||||||
#ifndef __LINUX_BRIDGE_EBT_802_3_H
|
|
||||||
#define __LINUX_BRIDGE_EBT_802_3_H
|
|
||||||
|
|
||||||
#include <linux/skbuff.h>
|
|
||||||
#include <uapi/linux/netfilter_bridge/ebt_802_3.h>
|
|
||||||
|
|
||||||
static inline struct ebt_802_3_hdr *ebt_802_3_hdr(const struct sk_buff *skb)
|
|
||||||
{
|
|
||||||
return (struct ebt_802_3_hdr *)skb_mac_header(skb);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@@ -11,7 +11,13 @@
|
|||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/netfilter/x_tables.h>
|
#include <linux/netfilter/x_tables.h>
|
||||||
#include <linux/netfilter_bridge/ebtables.h>
|
#include <linux/netfilter_bridge/ebtables.h>
|
||||||
#include <linux/netfilter_bridge/ebt_802_3.h>
|
#include <linux/skbuff.h>
|
||||||
|
#include <uapi/linux/netfilter_bridge/ebt_802_3.h>
|
||||||
|
|
||||||
|
static struct ebt_802_3_hdr *ebt_802_3_hdr(const struct sk_buff *skb)
|
||||||
|
{
|
||||||
|
return (struct ebt_802_3_hdr *)skb_mac_header(skb);
|
||||||
|
}
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
ebt_802_3_mt(const struct sk_buff *skb, struct xt_action_param *par)
|
ebt_802_3_mt(const struct sk_buff *skb, struct xt_action_param *par)
|
||||||
|
|||||||
@@ -34,9 +34,14 @@
|
|||||||
#include <linux/netfilter/x_tables.h>
|
#include <linux/netfilter/x_tables.h>
|
||||||
#include <linux/netfilter_ipv4/ip_tables.h>
|
#include <linux/netfilter_ipv4/ip_tables.h>
|
||||||
#include <linux/netfilter_ipv6/ip6_tables.h>
|
#include <linux/netfilter_ipv6/ip6_tables.h>
|
||||||
#include <linux/netfilter/xt_hashlimit.h>
|
|
||||||
#include <linux/mutex.h>
|
#include <linux/mutex.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
|
#include <uapi/linux/netfilter/xt_hashlimit.h>
|
||||||
|
|
||||||
|
#define XT_HASHLIMIT_ALL (XT_HASHLIMIT_HASH_DIP | XT_HASHLIMIT_HASH_DPT | \
|
||||||
|
XT_HASHLIMIT_HASH_SIP | XT_HASHLIMIT_HASH_SPT | \
|
||||||
|
XT_HASHLIMIT_INVERT | XT_HASHLIMIT_BYTES |\
|
||||||
|
XT_HASHLIMIT_RATE_MATCH)
|
||||||
|
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
|
MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
|
||||||
|
|||||||
@@ -5,12 +5,13 @@
|
|||||||
/* (C) 2001-2003 Bart De Schuymer <bdschuym@pandora.be>
|
/* (C) 2001-2003 Bart De Schuymer <bdschuym@pandora.be>
|
||||||
*/
|
*/
|
||||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||||
|
|
||||||
|
#include <linux/if.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/skbuff.h>
|
#include <linux/skbuff.h>
|
||||||
#include <linux/netfilter_bridge.h>
|
#include <linux/netfilter_bridge.h>
|
||||||
#include <linux/netfilter/xt_physdev.h>
|
|
||||||
#include <linux/netfilter/x_tables.h>
|
#include <linux/netfilter/x_tables.h>
|
||||||
#include <net/netfilter/br_netfilter.h>
|
#include <uapi/linux/netfilter/xt_physdev.h>
|
||||||
|
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
|
MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
|
||||||
|
|||||||
Reference in New Issue
Block a user