mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
[NETFILTER]: nf_conntrack: use bool type in struct nf_conntrack_l3proto
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
This commit is contained in:
parent
9dbae79178
commit
8ce8439a31
4 changed files with 24 additions and 24 deletions
|
@ -28,15 +28,15 @@ struct nf_conntrack_l3proto
|
||||||
* Try to fill in the third arg: nhoff is offset of l3 proto
|
* Try to fill in the third arg: nhoff is offset of l3 proto
|
||||||
* hdr. Return true if possible.
|
* hdr. Return true if possible.
|
||||||
*/
|
*/
|
||||||
int (*pkt_to_tuple)(const struct sk_buff *skb, unsigned int nhoff,
|
bool (*pkt_to_tuple)(const struct sk_buff *skb, unsigned int nhoff,
|
||||||
struct nf_conntrack_tuple *tuple);
|
struct nf_conntrack_tuple *tuple);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Invert the per-proto part of the tuple: ie. turn xmit into reply.
|
* Invert the per-proto part of the tuple: ie. turn xmit into reply.
|
||||||
* Some packets can't be inverted: return 0 in that case.
|
* Some packets can't be inverted: return 0 in that case.
|
||||||
*/
|
*/
|
||||||
int (*invert_tuple)(struct nf_conntrack_tuple *inverse,
|
bool (*invert_tuple)(struct nf_conntrack_tuple *inverse,
|
||||||
const struct nf_conntrack_tuple *orig);
|
const struct nf_conntrack_tuple *orig);
|
||||||
|
|
||||||
/* Print out the per-protocol part of the tuple. */
|
/* Print out the per-protocol part of the tuple. */
|
||||||
int (*print_tuple)(struct seq_file *s,
|
int (*print_tuple)(struct seq_file *s,
|
||||||
|
|
|
@ -30,29 +30,29 @@ int (*nf_nat_seq_adjust_hook)(struct sk_buff *skb,
|
||||||
enum ip_conntrack_info ctinfo);
|
enum ip_conntrack_info ctinfo);
|
||||||
EXPORT_SYMBOL_GPL(nf_nat_seq_adjust_hook);
|
EXPORT_SYMBOL_GPL(nf_nat_seq_adjust_hook);
|
||||||
|
|
||||||
static int ipv4_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
|
static bool ipv4_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
|
||||||
struct nf_conntrack_tuple *tuple)
|
struct nf_conntrack_tuple *tuple)
|
||||||
{
|
{
|
||||||
const __be32 *ap;
|
const __be32 *ap;
|
||||||
__be32 _addrs[2];
|
__be32 _addrs[2];
|
||||||
ap = skb_header_pointer(skb, nhoff + offsetof(struct iphdr, saddr),
|
ap = skb_header_pointer(skb, nhoff + offsetof(struct iphdr, saddr),
|
||||||
sizeof(u_int32_t) * 2, _addrs);
|
sizeof(u_int32_t) * 2, _addrs);
|
||||||
if (ap == NULL)
|
if (ap == NULL)
|
||||||
return 0;
|
return false;
|
||||||
|
|
||||||
tuple->src.u3.ip = ap[0];
|
tuple->src.u3.ip = ap[0];
|
||||||
tuple->dst.u3.ip = ap[1];
|
tuple->dst.u3.ip = ap[1];
|
||||||
|
|
||||||
return 1;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ipv4_invert_tuple(struct nf_conntrack_tuple *tuple,
|
static bool ipv4_invert_tuple(struct nf_conntrack_tuple *tuple,
|
||||||
const struct nf_conntrack_tuple *orig)
|
const struct nf_conntrack_tuple *orig)
|
||||||
{
|
{
|
||||||
tuple->src.u3.ip = orig->dst.u3.ip;
|
tuple->src.u3.ip = orig->dst.u3.ip;
|
||||||
tuple->dst.u3.ip = orig->src.u3.ip;
|
tuple->dst.u3.ip = orig->src.u3.ip;
|
||||||
|
|
||||||
return 1;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ipv4_print_tuple(struct seq_file *s,
|
static int ipv4_print_tuple(struct seq_file *s,
|
||||||
|
|
|
@ -27,8 +27,8 @@
|
||||||
#include <net/netfilter/nf_conntrack_l3proto.h>
|
#include <net/netfilter/nf_conntrack_l3proto.h>
|
||||||
#include <net/netfilter/nf_conntrack_core.h>
|
#include <net/netfilter/nf_conntrack_core.h>
|
||||||
|
|
||||||
static int ipv6_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
|
static bool ipv6_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
|
||||||
struct nf_conntrack_tuple *tuple)
|
struct nf_conntrack_tuple *tuple)
|
||||||
{
|
{
|
||||||
const u_int32_t *ap;
|
const u_int32_t *ap;
|
||||||
u_int32_t _addrs[8];
|
u_int32_t _addrs[8];
|
||||||
|
@ -36,21 +36,21 @@ static int ipv6_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
|
||||||
ap = skb_header_pointer(skb, nhoff + offsetof(struct ipv6hdr, saddr),
|
ap = skb_header_pointer(skb, nhoff + offsetof(struct ipv6hdr, saddr),
|
||||||
sizeof(_addrs), _addrs);
|
sizeof(_addrs), _addrs);
|
||||||
if (ap == NULL)
|
if (ap == NULL)
|
||||||
return 0;
|
return false;
|
||||||
|
|
||||||
memcpy(tuple->src.u3.ip6, ap, sizeof(tuple->src.u3.ip6));
|
memcpy(tuple->src.u3.ip6, ap, sizeof(tuple->src.u3.ip6));
|
||||||
memcpy(tuple->dst.u3.ip6, ap + 4, sizeof(tuple->dst.u3.ip6));
|
memcpy(tuple->dst.u3.ip6, ap + 4, sizeof(tuple->dst.u3.ip6));
|
||||||
|
|
||||||
return 1;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ipv6_invert_tuple(struct nf_conntrack_tuple *tuple,
|
static bool ipv6_invert_tuple(struct nf_conntrack_tuple *tuple,
|
||||||
const struct nf_conntrack_tuple *orig)
|
const struct nf_conntrack_tuple *orig)
|
||||||
{
|
{
|
||||||
memcpy(tuple->src.u3.ip6, orig->dst.u3.ip6, sizeof(tuple->src.u3.ip6));
|
memcpy(tuple->src.u3.ip6, orig->dst.u3.ip6, sizeof(tuple->src.u3.ip6));
|
||||||
memcpy(tuple->dst.u3.ip6, orig->src.u3.ip6, sizeof(tuple->dst.u3.ip6));
|
memcpy(tuple->dst.u3.ip6, orig->src.u3.ip6, sizeof(tuple->dst.u3.ip6));
|
||||||
|
|
||||||
return 1;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ipv6_print_tuple(struct seq_file *s,
|
static int ipv6_print_tuple(struct seq_file *s,
|
||||||
|
|
|
@ -31,22 +31,22 @@
|
||||||
#include <net/netfilter/nf_conntrack_core.h>
|
#include <net/netfilter/nf_conntrack_core.h>
|
||||||
#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
|
#include <net/netfilter/ipv4/nf_conntrack_ipv4.h>
|
||||||
|
|
||||||
static int generic_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
|
static bool generic_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
|
||||||
struct nf_conntrack_tuple *tuple)
|
struct nf_conntrack_tuple *tuple)
|
||||||
{
|
{
|
||||||
memset(&tuple->src.u3, 0, sizeof(tuple->src.u3));
|
memset(&tuple->src.u3, 0, sizeof(tuple->src.u3));
|
||||||
memset(&tuple->dst.u3, 0, sizeof(tuple->dst.u3));
|
memset(&tuple->dst.u3, 0, sizeof(tuple->dst.u3));
|
||||||
|
|
||||||
return 1;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int generic_invert_tuple(struct nf_conntrack_tuple *tuple,
|
static bool generic_invert_tuple(struct nf_conntrack_tuple *tuple,
|
||||||
const struct nf_conntrack_tuple *orig)
|
const struct nf_conntrack_tuple *orig)
|
||||||
{
|
{
|
||||||
memset(&tuple->src.u3, 0, sizeof(tuple->src.u3));
|
memset(&tuple->src.u3, 0, sizeof(tuple->src.u3));
|
||||||
memset(&tuple->dst.u3, 0, sizeof(tuple->dst.u3));
|
memset(&tuple->dst.u3, 0, sizeof(tuple->dst.u3));
|
||||||
|
|
||||||
return 1;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int generic_print_tuple(struct seq_file *s,
|
static int generic_print_tuple(struct seq_file *s,
|
||||||
|
|
Loading…
Reference in a new issue