mirror of https://gitee.com/openkylin/linux.git
Merge branch 'master' of ../nf-2.6
This commit is contained in:
commit
e8a96f6938
|
@ -1,8 +1,7 @@
|
||||||
#ifndef _NF_CONNTRACK_TUPLE_COMMON_H
|
#ifndef _NF_CONNTRACK_TUPLE_COMMON_H
|
||||||
#define _NF_CONNTRACK_TUPLE_COMMON_H
|
#define _NF_CONNTRACK_TUPLE_COMMON_H
|
||||||
|
|
||||||
enum ip_conntrack_dir
|
enum ip_conntrack_dir {
|
||||||
{
|
|
||||||
IP_CT_DIR_ORIGINAL,
|
IP_CT_DIR_ORIGINAL,
|
||||||
IP_CT_DIR_REPLY,
|
IP_CT_DIR_REPLY,
|
||||||
IP_CT_DIR_MAX
|
IP_CT_DIR_MAX
|
||||||
|
|
|
@ -316,10 +316,6 @@ extern int ip6t_ext_hdr(u8 nexthdr);
|
||||||
extern int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
|
extern int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
|
||||||
int target, unsigned short *fragoff);
|
int target, unsigned short *fragoff);
|
||||||
|
|
||||||
extern int ip6_masked_addrcmp(const struct in6_addr *addr1,
|
|
||||||
const struct in6_addr *mask,
|
|
||||||
const struct in6_addr *addr2);
|
|
||||||
|
|
||||||
#define IP6T_ALIGN(s) XT_ALIGN(s)
|
#define IP6T_ALIGN(s) XT_ALIGN(s)
|
||||||
|
|
||||||
#ifdef CONFIG_COMPAT
|
#ifdef CONFIG_COMPAT
|
||||||
|
|
|
@ -35,8 +35,6 @@ ebt_ip6_mt(const struct sk_buff *skb, const struct xt_match_param *par)
|
||||||
struct ipv6hdr _ip6h;
|
struct ipv6hdr _ip6h;
|
||||||
const struct tcpudphdr *pptr;
|
const struct tcpudphdr *pptr;
|
||||||
struct tcpudphdr _ports;
|
struct tcpudphdr _ports;
|
||||||
struct in6_addr tmp_addr;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
ih6 = skb_header_pointer(skb, 0, sizeof(_ip6h), &_ip6h);
|
ih6 = skb_header_pointer(skb, 0, sizeof(_ip6h), &_ip6h);
|
||||||
if (ih6 == NULL)
|
if (ih6 == NULL)
|
||||||
|
@ -44,18 +42,10 @@ ebt_ip6_mt(const struct sk_buff *skb, const struct xt_match_param *par)
|
||||||
if (info->bitmask & EBT_IP6_TCLASS &&
|
if (info->bitmask & EBT_IP6_TCLASS &&
|
||||||
FWINV(info->tclass != ipv6_get_dsfield(ih6), EBT_IP6_TCLASS))
|
FWINV(info->tclass != ipv6_get_dsfield(ih6), EBT_IP6_TCLASS))
|
||||||
return false;
|
return false;
|
||||||
for (i = 0; i < 4; i++)
|
if (FWINV(ipv6_masked_addr_cmp(&ih6->saddr, &info->smsk,
|
||||||
tmp_addr.in6_u.u6_addr32[i] = ih6->saddr.in6_u.u6_addr32[i] &
|
&info->saddr), EBT_IP6_SOURCE) ||
|
||||||
info->smsk.in6_u.u6_addr32[i];
|
FWINV(ipv6_masked_addr_cmp(&ih6->daddr, &info->dmsk,
|
||||||
if (info->bitmask & EBT_IP6_SOURCE &&
|
&info->daddr), EBT_IP6_DEST))
|
||||||
FWINV((ipv6_addr_cmp(&tmp_addr, &info->saddr) != 0),
|
|
||||||
EBT_IP6_SOURCE))
|
|
||||||
return false;
|
|
||||||
for (i = 0; i < 4; i++)
|
|
||||||
tmp_addr.in6_u.u6_addr32[i] = ih6->daddr.in6_u.u6_addr32[i] &
|
|
||||||
info->dmsk.in6_u.u6_addr32[i];
|
|
||||||
if (info->bitmask & EBT_IP6_DEST &&
|
|
||||||
FWINV((ipv6_addr_cmp(&tmp_addr, &info->daddr) != 0), EBT_IP6_DEST))
|
|
||||||
return false;
|
return false;
|
||||||
if (info->bitmask & EBT_IP6_PROTO) {
|
if (info->bitmask & EBT_IP6_PROTO) {
|
||||||
uint8_t nexthdr = ih6->nexthdr;
|
uint8_t nexthdr = ih6->nexthdr;
|
||||||
|
|
|
@ -208,8 +208,14 @@ static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp,
|
||||||
*/
|
*/
|
||||||
from.ip = n_cp->vaddr.ip;
|
from.ip = n_cp->vaddr.ip;
|
||||||
port = n_cp->vport;
|
port = n_cp->vport;
|
||||||
sprintf(buf, "%u,%u,%u,%u,%u,%u", NIPQUAD(from.ip),
|
snprintf(buf, sizeof(buf), "%u,%u,%u,%u,%u,%u",
|
||||||
(ntohs(port)>>8)&255, ntohs(port)&255);
|
((unsigned char *)&from.ip)[0],
|
||||||
|
((unsigned char *)&from.ip)[1],
|
||||||
|
((unsigned char *)&from.ip)[2],
|
||||||
|
((unsigned char *)&from.ip)[3],
|
||||||
|
ntohs(port) >> 8,
|
||||||
|
ntohs(port) & 0xFF);
|
||||||
|
|
||||||
buf_len = strlen(buf);
|
buf_len = strlen(buf);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue