mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-06 12:45:13 +02:00
build: remove support for Linux 2.6.32
This commit is contained in:
2
INSTALL
2
INSTALL
@@ -14,7 +14,7 @@ Supported configurations for this release
|
|||||||
|
|
||||||
* iptables >= 1.4.5
|
* iptables >= 1.4.5
|
||||||
|
|
||||||
* kernel-devel >= 2.6.32
|
* kernel-devel >= 2.6.33
|
||||||
with prepared build/output directory
|
with prepared build/output directory
|
||||||
- CONFIG_NF_CONNTRACK or CONFIG_IP_NF_CONNTRACK
|
- CONFIG_NF_CONNTRACK or CONFIG_IP_NF_CONNTRACK
|
||||||
- CONFIG_NF_CONNTRACK_MARK or CONFIG_IP_NF_CONNTRACK_MARK
|
- CONFIG_NF_CONNTRACK_MARK or CONFIG_IP_NF_CONNTRACK_MARK
|
||||||
|
@@ -67,7 +67,7 @@ if test -n "$kbuilddir"; then
|
|||||||
echo "WARNING: That kernel version is not officially supported.";
|
echo "WARNING: That kernel version is not officially supported.";
|
||||||
elif test "$kmajor" -eq 3; then
|
elif test "$kmajor" -eq 3; then
|
||||||
:;
|
:;
|
||||||
elif test "$kmajor" -eq 2 -a "$kminor" -eq 6 -a "$kmicro" -ge 32; then
|
elif test "$kmajor" -eq 2 -a "$kminor" -eq 6 -a "$kmicro" -ge 33; then
|
||||||
:;
|
:;
|
||||||
else
|
else
|
||||||
echo "WARNING: That kernel version is not officially supported.";
|
echo "WARNING: That kernel version is not officially supported.";
|
||||||
|
@@ -1,64 +0,0 @@
|
|||||||
match:
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
int
|
|
||||||
(*match)(
|
|
||||||
const struct sk_buff *skb,
|
|
||||||
const struct net_device *in,
|
|
||||||
const struct net_device *out,
|
|
||||||
const struct xt_match *match,
|
|
||||||
const void *matchinfo,
|
|
||||||
int offset,
|
|
||||||
unsigned int protoff,
|
|
||||||
int *hotdrop,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
int
|
|
||||||
(*checkentry)(
|
|
||||||
const char *tablename,
|
|
||||||
const void *ip,
|
|
||||||
const struct xt_match *match,
|
|
||||||
void *matchinfo,
|
|
||||||
unsigned int matchinfosize,
|
|
||||||
unsigned int hook_mask,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_match *match,
|
|
||||||
void *matchinfo,
|
|
||||||
unsigned int matchinfosize,
|
|
||||||
);
|
|
||||||
|
|
||||||
target:
|
|
||||||
|
|
||||||
/* verdict */
|
|
||||||
unsigned int
|
|
||||||
(*target)(
|
|
||||||
struct sk_buff **pskb,
|
|
||||||
const struct net_device *in,
|
|
||||||
const struct net_device *out,
|
|
||||||
unsigned int hooknum,
|
|
||||||
const struct xt_target *target,
|
|
||||||
const void *targinfo,
|
|
||||||
void *userdata,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
int
|
|
||||||
(*checkentry)(
|
|
||||||
const char *tablename,
|
|
||||||
const void *entry,
|
|
||||||
const struct xt_target *target,
|
|
||||||
void *targinfo,
|
|
||||||
unsigned int targinfosize,
|
|
||||||
unsigned int hook_mask,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_target *target,
|
|
||||||
void *targinfo,
|
|
||||||
unsigned int targinfosize,
|
|
||||||
);
|
|
@@ -1,59 +0,0 @@
|
|||||||
match:
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
int
|
|
||||||
(*match)(
|
|
||||||
const struct sk_buff *skb,
|
|
||||||
const struct net_device *in,
|
|
||||||
const struct net_device *out,
|
|
||||||
const struct xt_match *match,
|
|
||||||
const void *matchinfo,
|
|
||||||
int offset,
|
|
||||||
unsigned int protoff,
|
|
||||||
int *hotdrop,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
int
|
|
||||||
(*checkentry)(
|
|
||||||
const char *tablename,
|
|
||||||
const void *ip,
|
|
||||||
const struct xt_match *match,
|
|
||||||
void *matchinfo,
|
|
||||||
unsigned int hook_mask,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_match *match,
|
|
||||||
void *matchinfo,
|
|
||||||
);
|
|
||||||
|
|
||||||
target:
|
|
||||||
|
|
||||||
/* verdict */
|
|
||||||
unsigned int
|
|
||||||
(*target)(
|
|
||||||
struct sk_buff **pskb,
|
|
||||||
const struct net_device *in,
|
|
||||||
const struct net_device *out,
|
|
||||||
unsigned int hooknum,
|
|
||||||
const struct xt_target *target,
|
|
||||||
const void *targinfo,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
int
|
|
||||||
(*checkentry)(
|
|
||||||
const char *tablename,
|
|
||||||
const void *entry,
|
|
||||||
const struct xt_target *target,
|
|
||||||
void *targinfo,
|
|
||||||
unsigned int hook_mask,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_target *target,
|
|
||||||
void *targinfo,
|
|
||||||
);
|
|
@@ -1,59 +0,0 @@
|
|||||||
match:
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*match)(
|
|
||||||
const struct sk_buff *skb,
|
|
||||||
const struct net_device *in,
|
|
||||||
const struct net_device *out,
|
|
||||||
const struct xt_match *match,
|
|
||||||
const void *matchinfo,
|
|
||||||
int offset,
|
|
||||||
unsigned int protoff,
|
|
||||||
bool *hotdrop,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const char *tablename,
|
|
||||||
const void *ip,
|
|
||||||
const struct xt_match *match,
|
|
||||||
void *matchinfo,
|
|
||||||
unsigned int hook_mask,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_match *match,
|
|
||||||
void *matchinfo,
|
|
||||||
);
|
|
||||||
|
|
||||||
target:
|
|
||||||
|
|
||||||
/* verdict */
|
|
||||||
unsigned int
|
|
||||||
(*target)(
|
|
||||||
struct sk_buff **pskb,
|
|
||||||
const struct net_device *in,
|
|
||||||
const struct net_device *out,
|
|
||||||
unsigned int hooknum,
|
|
||||||
const struct xt_target *target,
|
|
||||||
const void *targinfo,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const char *tablename,
|
|
||||||
const void *entry,
|
|
||||||
const struct xt_target *target,
|
|
||||||
void *targinfo,
|
|
||||||
unsigned int hook_mask,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_target *target,
|
|
||||||
void *targinfo,
|
|
||||||
);
|
|
@@ -1,59 +0,0 @@
|
|||||||
match:
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*match)(
|
|
||||||
const struct sk_buff *skb,
|
|
||||||
const struct net_device *in,
|
|
||||||
const struct net_device *out,
|
|
||||||
const struct xt_match *match,
|
|
||||||
const void *matchinfo,
|
|
||||||
int offset,
|
|
||||||
unsigned int protoff,
|
|
||||||
bool *hotdrop,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const char *tablename,
|
|
||||||
const void *ip,
|
|
||||||
const struct xt_match *match,
|
|
||||||
void *matchinfo,
|
|
||||||
unsigned int hook_mask,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_match *match,
|
|
||||||
void *matchinfo,
|
|
||||||
);
|
|
||||||
|
|
||||||
target:
|
|
||||||
|
|
||||||
/* verdict */
|
|
||||||
unsigned int
|
|
||||||
(*target)(
|
|
||||||
struct sk_buff *skb,
|
|
||||||
const struct net_device *in,
|
|
||||||
const struct net_device *out,
|
|
||||||
unsigned int hooknum,
|
|
||||||
const struct xt_target *target,
|
|
||||||
const void *targinfo,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const char *tablename,
|
|
||||||
const void *entry,
|
|
||||||
const struct xt_target *target,
|
|
||||||
void *targinfo,
|
|
||||||
unsigned int hook_mask,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_target *target,
|
|
||||||
void *targinfo,
|
|
||||||
);
|
|
@@ -1,39 +0,0 @@
|
|||||||
match:
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*match)(
|
|
||||||
const struct sk_buff *skb,
|
|
||||||
const struct xt_match_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const struct xt_mtchk_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_mtdtor_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
target:
|
|
||||||
|
|
||||||
/* verdict */
|
|
||||||
unsigned int
|
|
||||||
(*target)(
|
|
||||||
struct sk_buff *skb,
|
|
||||||
const struct xt_target_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const struct xt_tgchk_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_tgdtor_param *,
|
|
||||||
);
|
|
@@ -1,38 +0,0 @@
|
|||||||
match:
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*match)(
|
|
||||||
const struct sk_buff *skb,
|
|
||||||
const struct xt_match_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const struct xt_mtchk_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_mtdtor_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
target:
|
|
||||||
|
|
||||||
unsigned int
|
|
||||||
(*target)(
|
|
||||||
struct sk_buff *skb,
|
|
||||||
const struct xt_target_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const struct xt_tgchk_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_tgdtor_param *,
|
|
||||||
);
|
|
@@ -1,39 +0,0 @@
|
|||||||
match:
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*match)(
|
|
||||||
const struct sk_buff *skb,
|
|
||||||
const struct xt_match_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const struct xt_mtchk_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_mtdtor_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
target:
|
|
||||||
|
|
||||||
/* verdict */
|
|
||||||
unsigned int
|
|
||||||
(*target)(
|
|
||||||
struct sk_buff *skb,
|
|
||||||
const struct xt_target_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
/* true/false */
|
|
||||||
bool
|
|
||||||
(*checkentry)(
|
|
||||||
const struct xt_tgchk_param *,
|
|
||||||
);
|
|
||||||
|
|
||||||
void
|
|
||||||
(*destroy)(
|
|
||||||
const struct xt_tgdtor_param *,
|
|
||||||
);
|
|
@@ -2,7 +2,7 @@
|
|||||||
HEAD
|
HEAD
|
||||||
====
|
====
|
||||||
Changes:
|
Changes:
|
||||||
- remove support for Linux 2.6.17--2.6.31
|
- remove support for Linux 2.6.17--2.6.32
|
||||||
|
|
||||||
|
|
||||||
v1.47.1 (2010-10-15)
|
v1.47.1 (2010-10-15)
|
||||||
|
@@ -4,13 +4,8 @@
|
|||||||
struct tcphdr;
|
struct tcphdr;
|
||||||
struct udphdr;
|
struct udphdr;
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 32)
|
#define skb_ifindex(skb) (skb)->skb_iif
|
||||||
# define skb_ifindex(skb) (skb)->iif
|
#define skb_nfmark(skb) (((struct sk_buff *)(skb))->mark)
|
||||||
# define skb_nfmark(skb) (((struct sk_buff *)(skb))->mark)
|
|
||||||
#else
|
|
||||||
# define skb_ifindex(skb) (skb)->skb_iif
|
|
||||||
# define skb_nfmark(skb) (((struct sk_buff *)(skb))->mark)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_NETWORK_SECMARK
|
#ifdef CONFIG_NETWORK_SECMARK
|
||||||
# define skb_secmark(skb) ((skb)->secmark)
|
# define skb_secmark(skb) ((skb)->secmark)
|
||||||
|
@@ -30,7 +30,7 @@
|
|||||||
# define WITH_IPV6 1
|
# define WITH_IPV6 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 32) && \
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33) && \
|
||||||
LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
|
LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
|
||||||
static bool xtnu_match_run(const struct sk_buff *skb,
|
static bool xtnu_match_run(const struct sk_buff *skb,
|
||||||
const struct xt_match_param *par)
|
const struct xt_match_param *par)
|
||||||
@@ -56,7 +56,7 @@ static bool xtnu_match_run(const struct sk_buff *skb,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 32) && \
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33) && \
|
||||||
LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
|
LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
|
||||||
static bool xtnu_match_check(const struct xt_mtchk_param *par)
|
static bool xtnu_match_check(const struct xt_mtchk_param *par)
|
||||||
{
|
{
|
||||||
@@ -146,7 +146,7 @@ void xtnu_unregister_matches(struct xtnu_match *nt, unsigned int num)
|
|||||||
EXPORT_SYMBOL_GPL(xtnu_unregister_matches);
|
EXPORT_SYMBOL_GPL(xtnu_unregister_matches);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 32) && \
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33) && \
|
||||||
LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
|
LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
|
||||||
static unsigned int
|
static unsigned int
|
||||||
xtnu_target_run(struct sk_buff *skb, const struct xt_target_param *par)
|
xtnu_target_run(struct sk_buff *skb, const struct xt_target_param *par)
|
||||||
@@ -174,7 +174,7 @@ xtnu_target_run(struct sk_buff *skb, const struct xt_action_param *par)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 32) && \
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33) && \
|
||||||
LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
|
LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 34)
|
||||||
static bool xtnu_target_check(const struct xt_tgchk_param *par)
|
static bool xtnu_target_check(const struct xt_tgchk_param *par)
|
||||||
{
|
{
|
||||||
|
@@ -8,8 +8,8 @@
|
|||||||
|
|
||||||
#define DEBUGP Use__pr_debug__instead
|
#define DEBUGP Use__pr_debug__instead
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 32)
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 33)
|
||||||
# warning Kernels below 2.6.32 not supported.
|
# warning Kernels below 2.6.33 not supported.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
|
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
|
||||||
|
Reference in New Issue
Block a user