Commit a5082f0c authored by Patrick McHardy's avatar Patrick McHardy

Merge coreworks.de:/home/kaber/src/nf/nf-post-2.6.9

into coreworks.de:/home/kaber/src/nf/nf-2.6
parents df1f9e22 0e8b7c1c
...@@ -355,13 +355,15 @@ struct ip6t_match ...@@ -355,13 +355,15 @@ struct ip6t_match
/* Return true or false: return FALSE and set *hotdrop = 1 to /* Return true or false: return FALSE and set *hotdrop = 1 to
force immediate packet drop. */ force immediate packet drop. */
/* Arguments changed since 2.6.9, as this must now handle
non-linear skb, using skb_header_pointer and
skb_ip_make_writable. */
int (*match)(const struct sk_buff *skb, int (*match)(const struct sk_buff *skb,
const struct net_device *in, const struct net_device *in,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop); int *hotdrop);
/* Called when user tries to insert an entry of this type. */ /* Called when user tries to insert an entry of this type. */
...@@ -386,11 +388,13 @@ struct ip6t_target ...@@ -386,11 +388,13 @@ struct ip6t_target
const char name[IP6T_FUNCTION_MAXNAMELEN]; const char name[IP6T_FUNCTION_MAXNAMELEN];
/* Returns verdict. */ /* Returns verdict. Argument order changed since 2.6.9, as this
must now handle non-linear skbs, using skb_copy_bits and
skb_ip_make_writable. */
unsigned int (*target)(struct sk_buff **pskb, unsigned int (*target)(struct sk_buff **pskb,
unsigned int hooknum,
const struct net_device *in, const struct net_device *in,
const struct net_device *out, const struct net_device *out,
unsigned int hooknum,
const void *targinfo, const void *targinfo,
void *userdata); void *userdata);
......
...@@ -351,16 +351,14 @@ __ip_conntrack_find(const struct ip_conntrack_tuple *tuple, ...@@ -351,16 +351,14 @@ __ip_conntrack_find(const struct ip_conntrack_tuple *tuple,
{ {
struct ip_conntrack_tuple_hash *h; struct ip_conntrack_tuple_hash *h;
unsigned int hash = hash_conntrack(tuple); unsigned int hash = hash_conntrack(tuple);
/* use per_cpu() to avoid multiple calls to smp_processor_id() */
unsigned int cpu = smp_processor_id();
MUST_BE_READ_LOCKED(&ip_conntrack_lock); MUST_BE_READ_LOCKED(&ip_conntrack_lock);
list_for_each_entry(h, &ip_conntrack_hash[hash], list) { list_for_each_entry(h, &ip_conntrack_hash[hash], list) {
if (conntrack_tuple_cmp(h, tuple, ignored_conntrack)) { if (conntrack_tuple_cmp(h, tuple, ignored_conntrack)) {
per_cpu(ip_conntrack_stat, cpu).found++; CONNTRACK_STAT_INC(found);
return h; return h;
} }
per_cpu(ip_conntrack_stat, cpu).searched++; CONNTRACK_STAT_INC(searched);
} }
return NULL; return NULL;
......
...@@ -81,8 +81,8 @@ masquerade_target(struct sk_buff **pskb, ...@@ -81,8 +81,8 @@ masquerade_target(struct sk_buff **pskb,
enum ip_conntrack_info ctinfo; enum ip_conntrack_info ctinfo;
const struct ip_nat_multi_range *mr; const struct ip_nat_multi_range *mr;
struct ip_nat_multi_range newrange; struct ip_nat_multi_range newrange;
u_int32_t newsrc;
struct rtable *rt; struct rtable *rt;
u_int32_t newsrc;
IP_NF_ASSERT(hooknum == NF_IP_POST_ROUTING); IP_NF_ASSERT(hooknum == NF_IP_POST_ROUTING);
...@@ -96,36 +96,13 @@ masquerade_target(struct sk_buff **pskb, ...@@ -96,36 +96,13 @@ masquerade_target(struct sk_buff **pskb,
|| ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY)); || ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY));
mr = targinfo; mr = targinfo;
rt = (struct rtable *)(*pskb)->dst;
{ newsrc = inet_select_addr(out, rt->rt_gateway, RT_SCOPE_UNIVERSE);
struct flowi fl = { .nl_u = { .ip4_u = if (!newsrc) {
{ .daddr = (*pskb)->nh.iph->daddr, printk("MASQUERADE: %s ate my IP address\n", out->name);
.tos = (RT_TOS((*pskb)->nh.iph->tos) | return NF_DROP;
RTO_CONN),
#ifdef CONFIG_IP_ROUTE_FWMARK
.fwmark = (*pskb)->nfmark
#endif
} } };
if (ip_route_output_key(&rt, &fl) != 0) {
/* Funky routing can do this. */
if (net_ratelimit())
printk("MASQUERADE:"
" No route: Rusty's brain broke!\n");
return NF_DROP;
}
if (rt->u.dst.dev != out) {
if (net_ratelimit())
printk("MASQUERADE:"
" Route sent us somewhere else.\n");
ip_rt_put(rt);
return NF_DROP;
}
} }
newsrc = rt->rt_src;
DEBUGP("newsrc = %u.%u.%u.%u\n", NIPQUAD(newsrc));
ip_rt_put(rt);
WRITE_LOCK(&masq_lock); WRITE_LOCK(&masq_lock);
ct->nat.masq_index = out->ifindex; ct->nat.masq_index = out->ifindex;
WRITE_UNLOCK(&masq_lock); WRITE_UNLOCK(&masq_lock);
...@@ -157,6 +134,18 @@ device_cmp(const struct ip_conntrack *i, void *_ina) ...@@ -157,6 +134,18 @@ device_cmp(const struct ip_conntrack *i, void *_ina)
return ret; return ret;
} }
static inline int
connect_unassure(const struct ip_conntrack *i, void *_ina)
{
struct in_ifaddr *ina = _ina;
/* We reset the ASSURED bit on all connections, so they will
* get reaped under memory pressure. */
if (i->nat.masq_index == ina->ifa_dev->dev->ifindex)
clear_bit(IPS_ASSURED_BIT, (unsigned long *)&i->status);
return 0;
}
static int masq_inet_event(struct notifier_block *this, static int masq_inet_event(struct notifier_block *this,
unsigned long event, unsigned long event,
void *ptr) void *ptr)
...@@ -166,6 +155,8 @@ static int masq_inet_event(struct notifier_block *this, ...@@ -166,6 +155,8 @@ static int masq_inet_event(struct notifier_block *this,
* entries. */ * entries. */
if (event == NETDEV_UP) if (event == NETDEV_UP)
ip_ct_selective_cleanup(device_cmp, ptr); ip_ct_selective_cleanup(device_cmp, ptr);
else if (event == NETDEV_DOWN)
ip_ct_selective_cleanup(connect_unassure, ptr);
return NOTIFY_DONE; return NOTIFY_DONE;
} }
......
...@@ -158,14 +158,15 @@ ip6t_ext_hdr(u8 nexthdr) ...@@ -158,14 +158,15 @@ ip6t_ext_hdr(u8 nexthdr)
/* Returns whether matches rule or not. */ /* Returns whether matches rule or not. */
static inline int static inline int
ip6_packet_match(const struct sk_buff *skb, ip6_packet_match(const struct sk_buff *skb,
const struct ipv6hdr *ipv6,
const char *indev, const char *indev,
const char *outdev, const char *outdev,
const struct ip6t_ip6 *ip6info, const struct ip6t_ip6 *ip6info,
int isfrag) unsigned int *protoff,
int *fragoff)
{ {
size_t i; size_t i;
unsigned long ret; unsigned long ret;
const struct ipv6hdr *ipv6 = skb->nh.ipv6h;
#define FWINV(bool,invflg) ((bool) ^ !!(ip6info->invflags & invflg)) #define FWINV(bool,invflg) ((bool) ^ !!(ip6info->invflags & invflg))
...@@ -216,9 +217,10 @@ ip6_packet_match(const struct sk_buff *skb, ...@@ -216,9 +217,10 @@ ip6_packet_match(const struct sk_buff *skb,
/* look for the desired protocol header */ /* look for the desired protocol header */
if((ip6info->flags & IP6T_F_PROTO)) { if((ip6info->flags & IP6T_F_PROTO)) {
u_int8_t currenthdr = ipv6->nexthdr; u_int8_t currenthdr = ipv6->nexthdr;
struct ipv6_opt_hdr *hdrptr; struct ipv6_opt_hdr _hdr, *hp;
u_int16_t ptr; /* Header offset in skb */ u_int16_t ptr; /* Header offset in skb */
u_int16_t hdrlen; /* Header */ u_int16_t hdrlen; /* Header */
u_int16_t _fragoff = 0, *fp = NULL;
ptr = IPV6_HDR_LEN; ptr = IPV6_HDR_LEN;
...@@ -234,23 +236,41 @@ ip6_packet_match(const struct sk_buff *skb, ...@@ -234,23 +236,41 @@ ip6_packet_match(const struct sk_buff *skb,
(currenthdr == IPPROTO_ESP)) (currenthdr == IPPROTO_ESP))
return 0; return 0;
hdrptr = (struct ipv6_opt_hdr *)(skb->data + ptr); hp = skb_header_pointer(skb, ptr, sizeof(_hdr), &_hdr);
BUG_ON(hp == NULL);
/* Size calculation */ /* Size calculation */
if (currenthdr == IPPROTO_FRAGMENT) { if (currenthdr == IPPROTO_FRAGMENT) {
fp = skb_header_pointer(skb,
ptr+offsetof(struct frag_hdr,
frag_off),
sizeof(_fragoff),
&_fragoff);
if (fp == NULL)
return 0;
_fragoff = ntohs(*fp) & ~0x7;
hdrlen = 8; hdrlen = 8;
} else if (currenthdr == IPPROTO_AH) } else if (currenthdr == IPPROTO_AH)
hdrlen = (hdrptr->hdrlen+2)<<2; hdrlen = (hp->hdrlen+2)<<2;
else else
hdrlen = ipv6_optlen(hdrptr); hdrlen = ipv6_optlen(hp);
currenthdr = hdrptr->nexthdr; currenthdr = hp->nexthdr;
ptr += hdrlen; ptr += hdrlen;
/* ptr is too large */ /* ptr is too large */
if ( ptr > skb->len ) if ( ptr > skb->len )
return 0; return 0;
if (_fragoff) {
if (ip6t_ext_hdr(currenthdr))
return 0;
break;
}
} }
*protoff = ptr;
*fragoff = _fragoff;
/* currenthdr contains the protocol header */ /* currenthdr contains the protocol header */
dprintf("Packet protocol %hi ?= %s%hi.\n", dprintf("Packet protocol %hi ?= %s%hi.\n",
...@@ -292,9 +312,9 @@ ip6_checkentry(const struct ip6t_ip6 *ipv6) ...@@ -292,9 +312,9 @@ ip6_checkentry(const struct ip6t_ip6 *ipv6)
static unsigned int static unsigned int
ip6t_error(struct sk_buff **pskb, ip6t_error(struct sk_buff **pskb,
unsigned int hooknum,
const struct net_device *in, const struct net_device *in,
const struct net_device *out, const struct net_device *out,
unsigned int hooknum,
const void *targinfo, const void *targinfo,
void *userinfo) void *userinfo)
{ {
...@@ -310,13 +330,12 @@ int do_match(struct ip6t_entry_match *m, ...@@ -310,13 +330,12 @@ int do_match(struct ip6t_entry_match *m,
const struct net_device *in, const struct net_device *in,
const struct net_device *out, const struct net_device *out,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
/* Stop iteration if it doesn't match */ /* Stop iteration if it doesn't match */
if (!m->u.kernel.match->match(skb, in, out, m->data, if (!m->u.kernel.match->match(skb, in, out, m->data,
offset, hdr, datalen, hotdrop)) offset, protoff, hotdrop))
return 1; return 1;
else else
return 0; return 0;
...@@ -338,10 +357,8 @@ ip6t_do_table(struct sk_buff **pskb, ...@@ -338,10 +357,8 @@ ip6t_do_table(struct sk_buff **pskb,
void *userdata) void *userdata)
{ {
static const char nulldevname[IFNAMSIZ]; static const char nulldevname[IFNAMSIZ];
u_int16_t offset = 0; int offset = 0;
struct ipv6hdr *ipv6; unsigned int protoff = 0;
void *protohdr;
u_int16_t datalen;
int hotdrop = 0; int hotdrop = 0;
/* Initializing verdict to NF_DROP keeps gcc happy. */ /* Initializing verdict to NF_DROP keeps gcc happy. */
unsigned int verdict = NF_DROP; unsigned int verdict = NF_DROP;
...@@ -354,9 +371,6 @@ ip6t_do_table(struct sk_buff **pskb, ...@@ -354,9 +371,6 @@ ip6t_do_table(struct sk_buff **pskb,
return NF_DROP; return NF_DROP;
/* Initialization */ /* Initialization */
ipv6 = (*pskb)->nh.ipv6h;
protohdr = (u_int32_t *)((char *)ipv6 + IPV6_HDR_LEN);
datalen = (*pskb)->len - IPV6_HDR_LEN;
indev = in ? in->name : nulldevname; indev = in ? in->name : nulldevname;
outdev = out ? out->name : nulldevname; outdev = out ? out->name : nulldevname;
...@@ -393,17 +407,19 @@ ip6t_do_table(struct sk_buff **pskb, ...@@ -393,17 +407,19 @@ ip6t_do_table(struct sk_buff **pskb,
IP_NF_ASSERT(e); IP_NF_ASSERT(e);
IP_NF_ASSERT(back); IP_NF_ASSERT(back);
(*pskb)->nfcache |= e->nfcache; (*pskb)->nfcache |= e->nfcache;
if (ip6_packet_match(*pskb, ipv6, indev, outdev, if (ip6_packet_match(*pskb, indev, outdev, &e->ipv6,
&e->ipv6, offset)) { &protoff, &offset)) {
struct ip6t_entry_target *t; struct ip6t_entry_target *t;
if (IP6T_MATCH_ITERATE(e, do_match, if (IP6T_MATCH_ITERATE(e, do_match,
*pskb, in, out, *pskb, in, out,
offset, protohdr, offset, protoff, &hotdrop) != 0)
datalen, &hotdrop) != 0)
goto no_match; goto no_match;
ADD_COUNTER(e->counters, ntohs(ipv6->payload_len) + IPV6_HDR_LEN, 1); ADD_COUNTER(e->counters,
ntohs((*pskb)->nh.ipv6h->payload_len)
+ IPV6_HDR_LEN,
1);
t = ip6t_get_target(e); t = ip6t_get_target(e);
IP_NF_ASSERT(t->u.kernel.target); IP_NF_ASSERT(t->u.kernel.target);
...@@ -443,8 +459,8 @@ ip6t_do_table(struct sk_buff **pskb, ...@@ -443,8 +459,8 @@ ip6t_do_table(struct sk_buff **pskb,
= 0xeeeeeeec; = 0xeeeeeeec;
#endif #endif
verdict = t->u.kernel.target->target(pskb, verdict = t->u.kernel.target->target(pskb,
hook,
in, out, in, out,
hook,
t->data, t->data,
userdata); userdata);
...@@ -459,11 +475,6 @@ ip6t_do_table(struct sk_buff **pskb, ...@@ -459,11 +475,6 @@ ip6t_do_table(struct sk_buff **pskb,
((struct ip6t_entry *)table_base)->comefrom ((struct ip6t_entry *)table_base)->comefrom
= 0x57acc001; = 0x57acc001;
#endif #endif
/* Target might have changed stuff. */
ipv6 = (*pskb)->nh.ipv6h;
protohdr = (u_int32_t *)((void *)ipv6 + IPV6_HDR_LEN);
datalen = (*pskb)->len - IPV6_HDR_LEN;
if (verdict == IP6T_CONTINUE) if (verdict == IP6T_CONTINUE)
e = (void *)e + e->next_offset; e = (void *)e + e->next_offset;
else else
...@@ -1535,26 +1546,31 @@ port_match(u_int16_t min, u_int16_t max, u_int16_t port, int invert) ...@@ -1535,26 +1546,31 @@ port_match(u_int16_t min, u_int16_t max, u_int16_t port, int invert)
static int static int
tcp_find_option(u_int8_t option, tcp_find_option(u_int8_t option,
const struct tcphdr *tcp, const struct sk_buff *skb,
u_int16_t datalen, unsigned int tcpoff,
unsigned int optlen,
int invert, int invert,
int *hotdrop) int *hotdrop)
{ {
unsigned int i = sizeof(struct tcphdr); /* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
const u_int8_t *opt = (u_int8_t *)tcp; u_int8_t _opt[60 - sizeof(struct tcphdr)], *op;
unsigned int i;
duprintf("tcp_match: finding option\n"); duprintf("tcp_match: finding option\n");
if (!optlen)
return invert;
/* If we don't have the whole header, drop packet. */ /* If we don't have the whole header, drop packet. */
if (tcp->doff * 4 < sizeof(struct tcphdr) || op = skb_header_pointer(skb, tcpoff + sizeof(struct tcphdr), optlen,
tcp->doff * 4 > datalen) { _opt);
if (op == NULL) {
*hotdrop = 1; *hotdrop = 1;
return 0; return 0;
} }
while (i < tcp->doff * 4) { for (i = 0; i < optlen; ) {
if (opt[i] == option) return !invert; if (op[i] == option) return !invert;
if (opt[i] < 2) i++; if (op[i] < 2) i++;
else i += opt[i+1]?:1; else i += op[i+1]?:1;
} }
return invert; return invert;
...@@ -1566,27 +1582,31 @@ tcp_match(const struct sk_buff *skb, ...@@ -1566,27 +1582,31 @@ tcp_match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct tcphdr *tcp; struct tcphdr _tcph, *th;
const struct ip6t_tcp *tcpinfo = matchinfo; const struct ip6t_tcp *tcpinfo = matchinfo;
int tcpoff;
u8 nexthdr = skb->nh.ipv6h->nexthdr;
/* To quote Alan:
Don't allow a fragment of TCP 8 bytes in. Nobody normal if (offset) {
causes this. Its a cracker trying to break in by doing a /* To quote Alan:
flag overwrite to pass the direction checks.
*/
if (offset == 1) { Don't allow a fragment of TCP 8 bytes in. Nobody normal
duprintf("Dropping evil TCP offset=1 frag.\n"); causes this. Its a cracker trying to break in by doing a
*hotdrop = 1; flag overwrite to pass the direction checks.
*/
if (offset == 1) {
duprintf("Dropping evil TCP offset=1 frag.\n");
*hotdrop = 1;
}
/* Must not be a fragment. */
return 0; return 0;
} else if (offset == 0 && datalen < sizeof(struct tcphdr)) { }
#define FWINVTCP(bool,invflg) ((bool) ^ !!(tcpinfo->invflags & invflg))
th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
if (th == NULL) {
/* We've been asked to examine this packet, and we /* We've been asked to examine this packet, and we
can't. Hence, no choice but to drop. */ can't. Hence, no choice but to drop. */
duprintf("Dropping evil TCP offset=0 tinygram.\n"); duprintf("Dropping evil TCP offset=0 tinygram.\n");
...@@ -1594,45 +1614,30 @@ tcp_match(const struct sk_buff *skb, ...@@ -1594,45 +1614,30 @@ tcp_match(const struct sk_buff *skb,
return 0; return 0;
} }
tcpoff = (u8*)(skb->nh.ipv6h + 1) - skb->data; if (!port_match(tcpinfo->spts[0], tcpinfo->spts[1],
tcpoff = ipv6_skip_exthdr(skb, tcpoff, &nexthdr, skb->len - tcpoff); ntohs(th->source),
if (tcpoff < 0 || tcpoff > skb->len) { !!(tcpinfo->invflags & IP6T_TCP_INV_SRCPT)))
duprintf("tcp_match: cannot skip exthdr. Dropping.\n");
*hotdrop = 1;
return 0; return 0;
} else if (nexthdr == IPPROTO_FRAGMENT) if (!port_match(tcpinfo->dpts[0], tcpinfo->dpts[1],
ntohs(th->dest),
!!(tcpinfo->invflags & IP6T_TCP_INV_DSTPT)))
return 0; return 0;
else if (nexthdr != IPPROTO_TCP || if (!FWINVTCP((((unsigned char *)th)[13] & tcpinfo->flg_mask)
skb->len - tcpoff < sizeof(struct tcphdr)) { == tcpinfo->flg_cmp,
/* cannot be occured */ IP6T_TCP_INV_FLAGS))
duprintf("tcp_match: cannot get TCP header. Dropping.\n");
*hotdrop = 1;
return 0; return 0;
if (tcpinfo->option) {
if (th->doff * 4 < sizeof(_tcph)) {
*hotdrop = 1;
return 0;
}
if (!tcp_find_option(tcpinfo->option, skb, protoff,
th->doff*4 - sizeof(*th),
tcpinfo->invflags & IP6T_TCP_INV_OPTION,
hotdrop))
return 0;
} }
return 1;
tcp = (struct tcphdr *)(skb->data + tcpoff);
/* FIXME: Try tcp doff >> packet len against various stacks --RR */
#define FWINVTCP(bool,invflg) ((bool) ^ !!(tcpinfo->invflags & invflg))
/* Must not be a fragment. */
return !offset
&& port_match(tcpinfo->spts[0], tcpinfo->spts[1],
ntohs(tcp->source),
!!(tcpinfo->invflags & IP6T_TCP_INV_SRCPT))
&& port_match(tcpinfo->dpts[0], tcpinfo->dpts[1],
ntohs(tcp->dest),
!!(tcpinfo->invflags & IP6T_TCP_INV_DSTPT))
&& FWINVTCP((((unsigned char *)tcp)[13]
& tcpinfo->flg_mask)
== tcpinfo->flg_cmp,
IP6T_TCP_INV_FLAGS)
&& (!tcpinfo->option
|| tcp_find_option(tcpinfo->option, tcp, datalen,
tcpinfo->invflags
& IP6T_TCP_INV_OPTION,
hotdrop));
} }
/* Called when user tries to insert an entry of this type. */ /* Called when user tries to insert an entry of this type. */
...@@ -1658,16 +1663,18 @@ udp_match(const struct sk_buff *skb, ...@@ -1658,16 +1663,18 @@ udp_match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct udphdr *udp; struct udphdr _udph, *uh;
const struct ip6t_udp *udpinfo = matchinfo; const struct ip6t_udp *udpinfo = matchinfo;
int udpoff;
u8 nexthdr = skb->nh.ipv6h->nexthdr;
if (offset == 0 && datalen < sizeof(struct udphdr)) { /* Must not be a fragment. */
if (offset)
return 0;
uh = skb_header_pointer(skb, protoff, sizeof(_udph), &_udph);
if (uh == NULL) {
/* We've been asked to examine this packet, and we /* We've been asked to examine this packet, and we
can't. Hence, no choice but to drop. */ can't. Hence, no choice but to drop. */
duprintf("Dropping evil UDP tinygram.\n"); duprintf("Dropping evil UDP tinygram.\n");
...@@ -1675,30 +1682,11 @@ udp_match(const struct sk_buff *skb, ...@@ -1675,30 +1682,11 @@ udp_match(const struct sk_buff *skb,
return 0; return 0;
} }
udpoff = (u8*)(skb->nh.ipv6h + 1) - skb->data; return port_match(udpinfo->spts[0], udpinfo->spts[1],
udpoff = ipv6_skip_exthdr(skb, udpoff, &nexthdr, skb->len - udpoff); ntohs(uh->source),
if (udpoff < 0 || udpoff > skb->len) { !!(udpinfo->invflags & IP6T_UDP_INV_SRCPT))
duprintf("udp_match: cannot skip exthdr. Dropping.\n");
*hotdrop = 1;
return 0;
} else if (nexthdr == IPPROTO_FRAGMENT)
return 0;
else if (nexthdr != IPPROTO_UDP ||
skb->len - udpoff < sizeof(struct udphdr)) {
duprintf("udp_match: cannot get UDP header. Dropping.\n");
*hotdrop = 1;
return 0;
}
udp = (struct udphdr *)(skb->data + udpoff);
/* Must not be a fragment. */
return !offset
&& port_match(udpinfo->spts[0], udpinfo->spts[1],
ntohs(udp->source),
!!(udpinfo->invflags & IP6T_UDP_INV_SRCPT))
&& port_match(udpinfo->dpts[0], udpinfo->dpts[1], && port_match(udpinfo->dpts[0], udpinfo->dpts[1],
ntohs(udp->dest), ntohs(uh->dest),
!!(udpinfo->invflags & IP6T_UDP_INV_DSTPT)); !!(udpinfo->invflags & IP6T_UDP_INV_DSTPT));
} }
...@@ -1748,14 +1736,18 @@ icmp6_match(const struct sk_buff *skb, ...@@ -1748,14 +1736,18 @@ icmp6_match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct icmp6hdr *icmp = hdr; struct icmp6hdr _icmp, *ic;
const struct ip6t_icmp *icmpinfo = matchinfo; const struct ip6t_icmp *icmpinfo = matchinfo;
if (offset == 0 && datalen < 2) { /* Must not be a fragment. */
if (offset)
return 0;
ic = skb_header_pointer(skb, protoff, sizeof(_icmp), &_icmp);
if (ic == NULL) {
/* We've been asked to examine this packet, and we /* We've been asked to examine this packet, and we
can't. Hence, no choice but to drop. */ can't. Hence, no choice but to drop. */
duprintf("Dropping evil ICMP tinygram.\n"); duprintf("Dropping evil ICMP tinygram.\n");
...@@ -1763,13 +1755,11 @@ icmp6_match(const struct sk_buff *skb, ...@@ -1763,13 +1755,11 @@ icmp6_match(const struct sk_buff *skb,
return 0; return 0;
} }
/* Must not be a fragment. */ return icmp6_type_code_match(icmpinfo->type,
return !offset icmpinfo->code[0],
&& icmp6_type_code_match(icmpinfo->type, icmpinfo->code[1],
icmpinfo->code[0], ic->icmp6_type, ic->icmp6_code,
icmpinfo->code[1], !!(icmpinfo->invflags&IP6T_ICMP_INV));
icmp->icmp6_type, icmp->icmp6_code,
!!(icmpinfo->invflags&IP6T_ICMP_INV));
} }
/* Called when user tries to insert an entry of this type. */ /* Called when user tries to insert an entry of this type. */
......
...@@ -40,120 +40,166 @@ struct in_device; ...@@ -40,120 +40,166 @@ struct in_device;
#define DEBUGP(format, args...) #define DEBUGP(format, args...)
#endif #endif
struct esphdr {
__u32 spi;
}; /* FIXME evil kludge */
/* Use lock to serialize, so printks don't overlap */ /* Use lock to serialize, so printks don't overlap */
static spinlock_t log_lock = SPIN_LOCK_UNLOCKED; static spinlock_t log_lock = SPIN_LOCK_UNLOCKED;
/* takes in current header and pointer to the header */
/* if another header exists, sets hdrptr to the next header
and returns the new header value, else returns IPPROTO_NONE */
static u_int8_t ip6_nexthdr(u_int8_t currenthdr, u_int8_t **hdrptr)
{
u_int8_t hdrlen, nexthdr = IPPROTO_NONE;
switch(currenthdr){
case IPPROTO_AH:
/* whoever decided to do the length of AUTH for ipv6
in 32bit units unlike other headers should be beaten...
repeatedly...with a large stick...no, an even LARGER
stick...no, you're still not thinking big enough */
nexthdr = **hdrptr;
hdrlen = (*hdrptr)[1] * 4 + 8;
*hdrptr = *hdrptr + hdrlen;
break;
/*stupid rfc2402 */
case IPPROTO_DSTOPTS:
case IPPROTO_ROUTING:
case IPPROTO_HOPOPTS:
nexthdr = **hdrptr;
hdrlen = (*hdrptr)[1] * 8 + 8;
*hdrptr = *hdrptr + hdrlen;
break;
case IPPROTO_FRAGMENT:
nexthdr = **hdrptr;
*hdrptr = *hdrptr + 8;
break;
}
return nexthdr;
}
/* One level of recursion won't kill us */ /* One level of recursion won't kill us */
static void dump_packet(const struct ip6t_log_info *info, static void dump_packet(const struct ip6t_log_info *info,
struct ipv6hdr *ipv6h, int recurse) const struct sk_buff *skb, unsigned int ip6hoff,
int recurse)
{ {
u_int8_t currenthdr = ipv6h->nexthdr; u_int8_t currenthdr;
u_int8_t *hdrptr;
int fragment; int fragment;
struct ipv6hdr _ip6h, *ih;
unsigned int ptr;
unsigned int hdrlen = 0;
ih = skb_header_pointer(skb, ip6hoff, sizeof(_ip6h), &_ip6h);
if (ih == NULL) {
printk("TRUNCATED");
return;
}
/* Max length: 88 "SRC=0000.0000.0000.0000.0000.0000.0000.0000 DST=0000.0000.0000.0000.0000.0000.0000.0000" */ /* Max length: 88 "SRC=0000.0000.0000.0000.0000.0000.0000.0000 DST=0000.0000.0000.0000.0000.0000.0000.0000" */
printk("SRC=%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x ", NIP6(ipv6h->saddr)); printk("SRC=%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x ", NIP6(ih->saddr));
printk("DST=%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x ", NIP6(ipv6h->daddr)); printk("DST=%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x ", NIP6(ih->daddr));
/* Max length: 44 "LEN=65535 TC=255 HOPLIMIT=255 FLOWLBL=FFFFF " */ /* Max length: 44 "LEN=65535 TC=255 HOPLIMIT=255 FLOWLBL=FFFFF " */
printk("LEN=%Zu TC=%u HOPLIMIT=%u FLOWLBL=%u ", printk("LEN=%Zu TC=%u HOPLIMIT=%u FLOWLBL=%u ",
ntohs(ipv6h->payload_len) + sizeof(struct ipv6hdr), ntohs(ih->payload_len) + sizeof(struct ipv6hdr),
(ntohl(*(u_int32_t *)ipv6h) & 0x0ff00000) >> 20, (ntohl(*(u_int32_t *)ih) & 0x0ff00000) >> 20,
ipv6h->hop_limit, ih->hop_limit,
(ntohl(*(u_int32_t *)ipv6h) & 0x000fffff)); (ntohl(*(u_int32_t *)ih) & 0x000fffff));
fragment = 0; fragment = 0;
hdrptr = (u_int8_t *)(ipv6h + 1); ptr = ip6hoff + sizeof(struct ipv6hdr);
while (currenthdr != IPPROTO_NONE) { currenthdr = ih->nexthdr;
if ((currenthdr == IPPROTO_TCP) || while (currenthdr != NEXTHDR_NONE && ip6t_ext_hdr(currenthdr)) {
(currenthdr == IPPROTO_UDP) || struct ipv6_opt_hdr _hdr, *hp;
(currenthdr == IPPROTO_ICMPV6))
break; hp = skb_header_pointer(skb, ptr, sizeof(_hdr), &_hdr);
if (hp == NULL) {
printk("TRUNCATED");
return;
}
/* Max length: 48 "OPT (...) " */ /* Max length: 48 "OPT (...) " */
printk("OPT ( "); if (info->logflags & IP6T_LOG_IPOPT)
printk("OPT ( ");
switch (currenthdr) { switch (currenthdr) {
case IPPROTO_FRAGMENT: { case IPPROTO_FRAGMENT: {
struct frag_hdr *fhdr = (struct frag_hdr *)hdrptr; struct frag_hdr _fhdr, *fh;
printk("FRAG:");
fh = skb_header_pointer(skb, ptr, sizeof(_fhdr),
&_fhdr);
if (fh == NULL) {
printk("TRUNCATED ");
return;
}
/* Max length: 11 "FRAG:65535 " */ /* Max length: 6 "65535 " */
printk("FRAG:%u ", ntohs(fhdr->frag_off) & 0xFFF8); printk("%u ", ntohs(fh->frag_off) & 0xFFF8);
/* Max length: 11 "INCOMPLETE " */ /* Max length: 11 "INCOMPLETE " */
if (fhdr->frag_off & htons(0x0001)) if (fh->frag_off & htons(0x0001))
printk("INCOMPLETE "); printk("INCOMPLETE ");
printk("ID:%08x ", fhdr->identification); printk("ID:%08x ", ntohl(fh->identification));
if (ntohs(fhdr->frag_off) & 0xFFF8) if (ntohs(fh->frag_off) & 0xFFF8)
fragment = 1; fragment = 1;
hdrlen = 8;
break; break;
} }
case IPPROTO_DSTOPTS: case IPPROTO_DSTOPTS:
case IPPROTO_ROUTING: case IPPROTO_ROUTING:
case IPPROTO_HOPOPTS: case IPPROTO_HOPOPTS:
if (fragment) {
if (info->logflags & IP6T_LOG_IPOPT)
printk(")");
return;
}
hdrlen = ipv6_optlen(hp);
break; break;
/* Max Length */ /* Max Length */
case IPPROTO_AH: case IPPROTO_AH:
if (info->logflags & IP6T_LOG_IPOPT) {
struct ip_auth_hdr _ahdr, *ah;
/* Max length: 3 "AH " */
printk("AH ");
if (fragment) {
printk(")");
return;
}
ah = skb_header_pointer(skb, ptr, sizeof(_ahdr),
&_ahdr);
if (ah == NULL) {
/*
* Max length: 26 "INCOMPLETE [65535
* bytes] )"
*/
printk("INCOMPLETE [%u bytes] )",
skb->len - ptr);
return;
}
/* Length: 15 "SPI=0xF1234567 */
printk("SPI=0x%x ", ntohl(ah->spi));
}
hdrlen = (hp->hdrlen+2)<<2;
break;
case IPPROTO_ESP: case IPPROTO_ESP:
if (info->logflags & IP6T_LOG_IPOPT) { if (info->logflags & IP6T_LOG_IPOPT) {
struct esphdr *esph = (struct esphdr *)hdrptr; struct ip_esp_hdr _esph, *eh;
int esp = (currenthdr == IPPROTO_ESP);
/* Max length: 4 "ESP " */ /* Max length: 4 "ESP " */
printk("%s ",esp ? "ESP" : "AH"); printk("ESP ");
if (fragment) {
printk(")");
return;
}
/*
* Max length: 26 "INCOMPLETE [65535 bytes] )"
*/
eh = skb_header_pointer(skb, ptr, sizeof(_esph),
&_esph);
if (eh == NULL) {
printk("INCOMPLETE [%u bytes] )",
skb->len - ptr);
return;
}
/* Length: 16 "SPI=0xF1234567 )" */
printk("SPI=0x%x )", ntohl(eh->spi) );
/* Length: 15 "SPI=0xF1234567 " */
printk("SPI=0x%x ", ntohl(esph->spi) );
break;
} }
return;
default: default:
break; /* Max length: 20 "Unknown Ext Hdr 255" */
printk("Unknown Ext Hdr %u", currenthdr);
return;
} }
printk(") "); if (info->logflags & IP6T_LOG_IPOPT)
currenthdr = ip6_nexthdr(currenthdr, &hdrptr); printk(") ");
currenthdr = hp->nexthdr;
ptr += hdrlen;
} }
switch (currenthdr) { switch (currenthdr) {
case IPPROTO_TCP: { case IPPROTO_TCP: {
struct tcphdr *tcph = (struct tcphdr *)hdrptr; struct tcphdr _tcph, *th;
/* Max length: 10 "PROTO=TCP " */ /* Max length: 10 "PROTO=TCP " */
printk("PROTO=TCP "); printk("PROTO=TCP ");
...@@ -161,51 +207,69 @@ static void dump_packet(const struct ip6t_log_info *info, ...@@ -161,51 +207,69 @@ static void dump_packet(const struct ip6t_log_info *info,
if (fragment) if (fragment)
break; break;
/* Max length: 25 "INCOMPLETE [65535 bytes] " */
th = skb_header_pointer(skb, ptr, sizeof(_tcph), &_tcph);
if (th == NULL) {
printk("INCOMPLETE [%u bytes] ", skb->len - ptr);
return;
}
/* Max length: 20 "SPT=65535 DPT=65535 " */ /* Max length: 20 "SPT=65535 DPT=65535 " */
printk("SPT=%u DPT=%u ", printk("SPT=%u DPT=%u ",
ntohs(tcph->source), ntohs(tcph->dest)); ntohs(th->source), ntohs(th->dest));
/* Max length: 30 "SEQ=4294967295 ACK=4294967295 " */ /* Max length: 30 "SEQ=4294967295 ACK=4294967295 " */
if (info->logflags & IP6T_LOG_TCPSEQ) if (info->logflags & IP6T_LOG_TCPSEQ)
printk("SEQ=%u ACK=%u ", printk("SEQ=%u ACK=%u ",
ntohl(tcph->seq), ntohl(tcph->ack_seq)); ntohl(th->seq), ntohl(th->ack_seq));
/* Max length: 13 "WINDOW=65535 " */ /* Max length: 13 "WINDOW=65535 " */
printk("WINDOW=%u ", ntohs(tcph->window)); printk("WINDOW=%u ", ntohs(th->window));
/* Max length: 9 "RES=0x3F " */ /* Max length: 9 "RES=0x3C " */
printk("RES=0x%02x ", (u_int8_t)(ntohl(tcp_flag_word(tcph) & TCP_RESERVED_BITS) >> 22)); printk("RES=0x%02x ", (u_int8_t)(ntohl(tcp_flag_word(th) & TCP_RESERVED_BITS) >> 22));
/* Max length: 32 "CWR ECE URG ACK PSH RST SYN FIN " */ /* Max length: 32 "CWR ECE URG ACK PSH RST SYN FIN " */
if (tcph->cwr) if (th->cwr)
printk("CWR "); printk("CWR ");
if (tcph->ece) if (th->ece)
printk("ECE "); printk("ECE ");
if (tcph->urg) if (th->urg)
printk("URG "); printk("URG ");
if (tcph->ack) if (th->ack)
printk("ACK "); printk("ACK ");
if (tcph->psh) if (th->psh)
printk("PSH "); printk("PSH ");
if (tcph->rst) if (th->rst)
printk("RST "); printk("RST ");
if (tcph->syn) if (th->syn)
printk("SYN "); printk("SYN ");
if (tcph->fin) if (th->fin)
printk("FIN "); printk("FIN ");
/* Max length: 11 "URGP=65535 " */ /* Max length: 11 "URGP=65535 " */
printk("URGP=%u ", ntohs(tcph->urg_ptr)); printk("URGP=%u ", ntohs(th->urg_ptr));
if ((info->logflags & IP6T_LOG_TCPOPT) if ((info->logflags & IP6T_LOG_TCPOPT)
&& tcph->doff * 4 != sizeof(struct tcphdr)) { && th->doff * 4 > sizeof(struct tcphdr)) {
u_int8_t _opt[60 - sizeof(struct tcphdr)], *op;
unsigned int i; unsigned int i;
unsigned int optsize = th->doff * 4
- sizeof(struct tcphdr);
op = skb_header_pointer(skb,
ptr + sizeof(struct tcphdr),
optsize, _opt);
if (op == NULL) {
printk("OPT (TRUNCATED)");
return;
}
/* Max length: 127 "OPT (" 15*4*2chars ") " */ /* Max length: 127 "OPT (" 15*4*2chars ") " */
printk("OPT ("); printk("OPT (");
for (i =sizeof(struct tcphdr); i < tcph->doff * 4; i++) for (i =0; i < optsize; i++)
printk("%02X", ((u_int8_t *)tcph)[i]); printk("%02X", op[i]);
printk(") "); printk(") ");
} }
break; break;
} }
case IPPROTO_UDP: { case IPPROTO_UDP: {
struct udphdr *udph = (struct udphdr *)hdrptr; struct udphdr _udph, *uh;
/* Max length: 10 "PROTO=UDP " */ /* Max length: 10 "PROTO=UDP " */
printk("PROTO=UDP "); printk("PROTO=UDP ");
...@@ -213,14 +277,21 @@ static void dump_packet(const struct ip6t_log_info *info, ...@@ -213,14 +277,21 @@ static void dump_packet(const struct ip6t_log_info *info,
if (fragment) if (fragment)
break; break;
/* Max length: 25 "INCOMPLETE [65535 bytes] " */
uh = skb_header_pointer(skb, ptr, sizeof(_udph), &_udph);
if (uh == NULL) {
printk("INCOMPLETE [%u bytes] ", skb->len - ptr);
return;
}
/* Max length: 20 "SPT=65535 DPT=65535 " */ /* Max length: 20 "SPT=65535 DPT=65535 " */
printk("SPT=%u DPT=%u LEN=%u ", printk("SPT=%u DPT=%u LEN=%u ",
ntohs(udph->source), ntohs(udph->dest), ntohs(uh->source), ntohs(uh->dest),
ntohs(udph->len)); ntohs(uh->len));
break; break;
} }
case IPPROTO_ICMPV6: { case IPPROTO_ICMPV6: {
struct icmp6hdr *icmp6h = (struct icmp6hdr *)hdrptr; struct icmp6hdr _icmp6h, *ic;
/* Max length: 13 "PROTO=ICMPv6 " */ /* Max length: 13 "PROTO=ICMPv6 " */
printk("PROTO=ICMPv6 "); printk("PROTO=ICMPv6 ");
...@@ -228,16 +299,23 @@ static void dump_packet(const struct ip6t_log_info *info, ...@@ -228,16 +299,23 @@ static void dump_packet(const struct ip6t_log_info *info,
if (fragment) if (fragment)
break; break;
/* Max length: 25 "INCOMPLETE [65535 bytes] " */
ic = skb_header_pointer(skb, ptr, sizeof(_icmp6h), &_icmp6h);
if (ic == NULL) {
printk("INCOMPLETE [%u bytes] ", skb->len - ptr);
return;
}
/* Max length: 18 "TYPE=255 CODE=255 " */ /* Max length: 18 "TYPE=255 CODE=255 " */
printk("TYPE=%u CODE=%u ", icmp6h->icmp6_type, icmp6h->icmp6_code); printk("TYPE=%u CODE=%u ", ic->icmp6_type, ic->icmp6_code);
switch (icmp6h->icmp6_type) { switch (ic->icmp6_type) {
case ICMPV6_ECHO_REQUEST: case ICMPV6_ECHO_REQUEST:
case ICMPV6_ECHO_REPLY: case ICMPV6_ECHO_REPLY:
/* Max length: 19 "ID=65535 SEQ=65535 " */ /* Max length: 19 "ID=65535 SEQ=65535 " */
printk("ID=%u SEQ=%u ", printk("ID=%u SEQ=%u ",
ntohs(icmp6h->icmp6_identifier), ntohs(ic->icmp6_identifier),
ntohs(icmp6h->icmp6_sequence)); ntohs(ic->icmp6_sequence));
break; break;
case ICMPV6_MGM_QUERY: case ICMPV6_MGM_QUERY:
case ICMPV6_MGM_REPORT: case ICMPV6_MGM_REPORT:
...@@ -246,7 +324,7 @@ static void dump_packet(const struct ip6t_log_info *info, ...@@ -246,7 +324,7 @@ static void dump_packet(const struct ip6t_log_info *info,
case ICMPV6_PARAMPROB: case ICMPV6_PARAMPROB:
/* Max length: 17 "POINTER=ffffffff " */ /* Max length: 17 "POINTER=ffffffff " */
printk("POINTER=%08x ", ntohl(icmp6h->icmp6_pointer)); printk("POINTER=%08x ", ntohl(ic->icmp6_pointer));
/* Fall through */ /* Fall through */
case ICMPV6_DEST_UNREACH: case ICMPV6_DEST_UNREACH:
case ICMPV6_PKT_TOOBIG: case ICMPV6_PKT_TOOBIG:
...@@ -254,13 +332,14 @@ static void dump_packet(const struct ip6t_log_info *info, ...@@ -254,13 +332,14 @@ static void dump_packet(const struct ip6t_log_info *info,
/* Max length: 3+maxlen */ /* Max length: 3+maxlen */
if (recurse) { if (recurse) {
printk("["); printk("[");
dump_packet(info, (struct ipv6hdr *)(icmp6h + 1), 0); dump_packet(info, skb, ptr + sizeof(_icmp6h),
0);
printk("] "); printk("] ");
} }
/* Max length: 10 "MTU=65535 " */ /* Max length: 10 "MTU=65535 " */
if (icmp6h->icmp6_type == ICMPV6_PKT_TOOBIG) if (ic->icmp6_type == ICMPV6_PKT_TOOBIG)
printk("MTU=%u ", ntohl(icmp6h->icmp6_mtu)); printk("MTU=%u ", ntohl(ic->icmp6_mtu));
} }
break; break;
} }
...@@ -328,16 +407,16 @@ ip6t_log_packet(unsigned int hooknum, ...@@ -328,16 +407,16 @@ ip6t_log_packet(unsigned int hooknum,
printk(" "); printk(" ");
} }
dump_packet(loginfo, ipv6h, 1); dump_packet(loginfo, skb, (u8*)skb->nh.ipv6h - skb->data, 1);
printk("\n"); printk("\n");
spin_unlock_bh(&log_lock); spin_unlock_bh(&log_lock);
} }
static unsigned int static unsigned int
ip6t_log_target(struct sk_buff **pskb, ip6t_log_target(struct sk_buff **pskb,
unsigned int hooknum,
const struct net_device *in, const struct net_device *in,
const struct net_device *out, const struct net_device *out,
unsigned int hooknum,
const void *targinfo, const void *targinfo,
void *userinfo) void *userinfo)
{ {
......
...@@ -20,9 +20,9 @@ MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>"); ...@@ -20,9 +20,9 @@ MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
static unsigned int static unsigned int
target(struct sk_buff **pskb, target(struct sk_buff **pskb,
unsigned int hooknum,
const struct net_device *in, const struct net_device *in,
const struct net_device *out, const struct net_device *out,
unsigned int hooknum,
const void *targinfo, const void *targinfo,
void *userinfo) void *userinfo)
{ {
......
...@@ -31,12 +31,12 @@ MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>"); ...@@ -31,12 +31,12 @@ MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>");
static inline int static inline int
spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert) spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert)
{ {
int r=0; int r=0;
DEBUGP("ah spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ', DEBUGP("ah spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ',
min,spi,max); min,spi,max);
r=(spi >= min && spi <= max) ^ invert; r = (spi >= min && spi <= max) ^ invert;
DEBUGP(" result %s\n",r? "PASS\n" : "FAILED\n"); DEBUGP(" result %s\n",r? "PASS\n" : "FAILED\n");
return r; return r;
} }
static int static int
...@@ -45,125 +45,124 @@ match(const struct sk_buff *skb, ...@@ -45,125 +45,124 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *protohdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
struct ip_auth_hdr *ah = NULL; struct ip_auth_hdr *ah = NULL, _ah;
const struct ip6t_ah *ahinfo = matchinfo; const struct ip6t_ah *ahinfo = matchinfo;
unsigned int temp; unsigned int temp;
int len; int len;
u8 nexthdr; u8 nexthdr;
unsigned int ptr; unsigned int ptr;
unsigned int hdrlen = 0; unsigned int hdrlen = 0;
/*DEBUGP("IPv6 AH entered\n");*/ /*DEBUGP("IPv6 AH entered\n");*/
/* if (opt->auth == 0) return 0; /* if (opt->auth == 0) return 0;
* It does not filled on output */ * It does not filled on output */
/* type of the 1st exthdr */ /* type of the 1st exthdr */
nexthdr = skb->nh.ipv6h->nexthdr; nexthdr = skb->nh.ipv6h->nexthdr;
/* pointer to the 1st exthdr */ /* pointer to the 1st exthdr */
ptr = sizeof(struct ipv6hdr); ptr = sizeof(struct ipv6hdr);
/* available length */ /* available length */
len = skb->len - ptr; len = skb->len - ptr;
temp = 0; temp = 0;
while (ip6t_ext_hdr(nexthdr)) { while (ip6t_ext_hdr(nexthdr)) {
struct ipv6_opt_hdr *hdr; struct ipv6_opt_hdr _hdr, *hp;
DEBUGP("ipv6_ah header iteration \n"); DEBUGP("ipv6_ah header iteration \n");
/* Is there enough space for the next ext header? */ /* Is there enough space for the next ext header? */
if (len < (int)sizeof(struct ipv6_opt_hdr)) if (len < sizeof(struct ipv6_opt_hdr))
return 0; return 0;
/* No more exthdr -> evaluate */ /* No more exthdr -> evaluate */
if (nexthdr == NEXTHDR_NONE) { if (nexthdr == NEXTHDR_NONE)
break; break;
} /* ESP -> evaluate */
/* ESP -> evaluate */ if (nexthdr == NEXTHDR_ESP)
if (nexthdr == NEXTHDR_ESP) { break;
break;
} hp = skb_header_pointer(skb, ptr, sizeof(_hdr), &_hdr);
BUG_ON(hp == NULL);
hdr=(struct ipv6_opt_hdr *)skb->data+ptr;
/* Calculate the header length */
/* Calculate the header length */ if (nexthdr == NEXTHDR_FRAGMENT)
if (nexthdr == NEXTHDR_FRAGMENT) { hdrlen = 8;
hdrlen = 8; else if (nexthdr == NEXTHDR_AUTH)
} else if (nexthdr == NEXTHDR_AUTH) hdrlen = (hp->hdrlen+2)<<2;
hdrlen = (hdr->hdrlen+2)<<2; else
else hdrlen = ipv6_optlen(hp);
hdrlen = ipv6_optlen(hdr);
/* AH -> evaluate */
/* AH -> evaluate */ if (nexthdr == NEXTHDR_AUTH) {
if (nexthdr == NEXTHDR_AUTH) { temp |= MASK_AH;
temp |= MASK_AH; break;
break; }
}
/* set the flag */
/* set the flag */ switch (nexthdr) {
switch (nexthdr){ case NEXTHDR_HOP:
case NEXTHDR_HOP: case NEXTHDR_ROUTING:
case NEXTHDR_ROUTING: case NEXTHDR_FRAGMENT:
case NEXTHDR_FRAGMENT: case NEXTHDR_AUTH:
case NEXTHDR_AUTH: case NEXTHDR_DEST:
case NEXTHDR_DEST: break;
break; default:
default: DEBUGP("ipv6_ah match: unknown nextheader %u\n",nexthdr);
DEBUGP("ipv6_ah match: unknown nextheader %u\n",nexthdr); return 0;
return 0; }
break;
} nexthdr = hp->nexthdr;
len -= hdrlen;
nexthdr = hdr->nexthdr; ptr += hdrlen;
len -= hdrlen; if (ptr > skb->len) {
ptr += hdrlen;
if ( ptr > skb->len ) {
DEBUGP("ipv6_ah: new pointer too large! \n"); DEBUGP("ipv6_ah: new pointer too large! \n");
break; break;
} }
} }
/* AH header not found */ /* AH header not found */
if ( temp != MASK_AH ) return 0; if (temp != MASK_AH)
return 0;
if (len < (int)sizeof(struct ip_auth_hdr)){
*hotdrop = 1; if (len < sizeof(struct ip_auth_hdr)){
return 0; *hotdrop = 1;
} return 0;
}
ah = (struct ip_auth_hdr *) (skb->data + ptr);
ah = skb_header_pointer(skb, ptr, sizeof(_ah), &_ah);
DEBUGP("IPv6 AH LEN %u %u ", hdrlen, ah->hdrlen); BUG_ON(ah == NULL);
DEBUGP("RES %04X ", ah->reserved);
DEBUGP("SPI %u %08X\n", ntohl(ah->spi), ntohl(ah->spi)); DEBUGP("IPv6 AH LEN %u %u ", hdrlen, ah->hdrlen);
DEBUGP("RES %04X ", ah->reserved);
DEBUGP("IPv6 AH spi %02X ", DEBUGP("SPI %u %08X\n", ntohl(ah->spi), ntohl(ah->spi));
(spi_match(ahinfo->spis[0], ahinfo->spis[1],
ntohl(ah->spi), DEBUGP("IPv6 AH spi %02X ",
!!(ahinfo->invflags & IP6T_AH_INV_SPI)))); (spi_match(ahinfo->spis[0], ahinfo->spis[1],
DEBUGP("len %02X %04X %02X ", ntohl(ah->spi),
ahinfo->hdrlen, hdrlen, !!(ahinfo->invflags & IP6T_AH_INV_SPI))));
(!ahinfo->hdrlen || DEBUGP("len %02X %04X %02X ",
(ahinfo->hdrlen == hdrlen) ^ ahinfo->hdrlen, hdrlen,
!!(ahinfo->invflags & IP6T_AH_INV_LEN))); (!ahinfo->hdrlen ||
DEBUGP("res %02X %04X %02X\n", (ahinfo->hdrlen == hdrlen) ^
ahinfo->hdrres, ah->reserved, !!(ahinfo->invflags & IP6T_AH_INV_LEN)));
!(ahinfo->hdrres && ah->reserved)); DEBUGP("res %02X %04X %02X\n",
ahinfo->hdrres, ah->reserved,
return (ah != NULL) !(ahinfo->hdrres && ah->reserved));
&&
(spi_match(ahinfo->spis[0], ahinfo->spis[1], return (ah != NULL)
ntohl(ah->spi), &&
!!(ahinfo->invflags & IP6T_AH_INV_SPI))) (spi_match(ahinfo->spis[0], ahinfo->spis[1],
&& ntohl(ah->spi),
(!ahinfo->hdrlen || !!(ahinfo->invflags & IP6T_AH_INV_SPI)))
(ahinfo->hdrlen == hdrlen) ^ &&
!!(ahinfo->invflags & IP6T_AH_INV_LEN)) (!ahinfo->hdrlen ||
&& (ahinfo->hdrlen == hdrlen) ^
!(ahinfo->hdrres && ah->reserved); !!(ahinfo->invflags & IP6T_AH_INV_LEN))
&&
!(ahinfo->hdrres && ah->reserved);
} }
/* Called when user tries to insert an entry of this type. */ /* Called when user tries to insert an entry of this type. */
...@@ -174,20 +173,18 @@ checkentry(const char *tablename, ...@@ -174,20 +173,18 @@ checkentry(const char *tablename,
unsigned int matchinfosize, unsigned int matchinfosize,
unsigned int hook_mask) unsigned int hook_mask)
{ {
const struct ip6t_ah *ahinfo = matchinfo; const struct ip6t_ah *ahinfo = matchinfo;
if (matchinfosize != IP6T_ALIGN(sizeof(struct ip6t_ah))) { if (matchinfosize != IP6T_ALIGN(sizeof(struct ip6t_ah))) {
DEBUGP("ip6t_ah: matchsize %u != %u\n", DEBUGP("ip6t_ah: matchsize %u != %u\n",
matchinfosize, IP6T_ALIGN(sizeof(struct ip6t_ah))); matchinfosize, IP6T_ALIGN(sizeof(struct ip6t_ah)));
return 0; return 0;
} }
if (ahinfo->invflags & ~IP6T_AH_INV_MASK) { if (ahinfo->invflags & ~IP6T_AH_INV_MASK) {
DEBUGP("ip6t_ah: unknown flags %X\n", DEBUGP("ip6t_ah: unknown flags %X\n", ahinfo->invflags);
ahinfo->invflags); return 0;
return 0; }
} return 1;
return 1;
} }
static struct ip6t_match ah_match = { static struct ip6t_match ah_match = {
...@@ -199,12 +196,12 @@ static struct ip6t_match ah_match = { ...@@ -199,12 +196,12 @@ static struct ip6t_match ah_match = {
static int __init init(void) static int __init init(void)
{ {
return ip6t_register_match(&ah_match); return ip6t_register_match(&ah_match);
} }
static void __exit cleanup(void) static void __exit cleanup(void)
{ {
ip6t_unregister_match(&ah_match); ip6t_unregister_match(&ah_match);
} }
module_init(init); module_init(init);
......
...@@ -60,8 +60,7 @@ match(const struct sk_buff *skb, ...@@ -60,8 +60,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *protohdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
struct ipv6_opt_hdr *optsh = NULL; struct ipv6_opt_hdr *optsh = NULL;
......
...@@ -32,8 +32,8 @@ static inline int ...@@ -32,8 +32,8 @@ static inline int
spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert) spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert)
{ {
int r=0; int r=0;
DEBUGP("esp spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ', DEBUGP("esp spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ',
min,spi,max); min,spi,max);
r=(spi >= min && spi <= max) ^ invert; r=(spi >= min && spi <= max) ^ invert;
DEBUGP(" result %s\n",r? "PASS\n" : "FAILED\n"); DEBUGP(" result %s\n",r? "PASS\n" : "FAILED\n");
return r; return r;
...@@ -45,11 +45,10 @@ match(const struct sk_buff *skb, ...@@ -45,11 +45,10 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *protohdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
struct ip_esp_hdr *esp = NULL; struct ip_esp_hdr _esp, *eh = NULL;
const struct ip6t_esp *espinfo = matchinfo; const struct ip6t_esp *espinfo = matchinfo;
unsigned int temp; unsigned int temp;
int len; int len;
...@@ -67,73 +66,74 @@ match(const struct sk_buff *skb, ...@@ -67,73 +66,74 @@ match(const struct sk_buff *skb,
len = skb->len - ptr; len = skb->len - ptr;
temp = 0; temp = 0;
while (ip6t_ext_hdr(nexthdr)) { while (ip6t_ext_hdr(nexthdr)) {
struct ipv6_opt_hdr *hdr; struct ipv6_opt_hdr _hdr, *hp;
int hdrlen; int hdrlen;
DEBUGP("ipv6_esp header iteration \n"); DEBUGP("ipv6_esp header iteration \n");
/* Is there enough space for the next ext header? */ /* Is there enough space for the next ext header? */
if (len < (int)sizeof(struct ipv6_opt_hdr)) if (len < sizeof(struct ipv6_opt_hdr))
return 0; return 0;
/* No more exthdr -> evaluate */ /* No more exthdr -> evaluate */
if (nexthdr == NEXTHDR_NONE) { if (nexthdr == NEXTHDR_NONE)
break; break;
}
/* ESP -> evaluate */ /* ESP -> evaluate */
if (nexthdr == NEXTHDR_ESP) { if (nexthdr == NEXTHDR_ESP) {
temp |= MASK_ESP; temp |= MASK_ESP;
break; break;
} }
hdr=(struct ipv6_opt_hdr *)skb->data+ptr; hp = skb_header_pointer(skb, ptr, sizeof(_hdr), &_hdr);
BUG_ON(hp == NULL);
/* Calculate the header length */ /* Calculate the header length */
if (nexthdr == NEXTHDR_FRAGMENT) { if (nexthdr == NEXTHDR_FRAGMENT)
hdrlen = 8; hdrlen = 8;
} else if (nexthdr == NEXTHDR_AUTH) else if (nexthdr == NEXTHDR_AUTH)
hdrlen = (hdr->hdrlen+2)<<2; hdrlen = (hp->hdrlen+2)<<2;
else else
hdrlen = ipv6_optlen(hdr); hdrlen = ipv6_optlen(hp);
/* set the flag */ /* set the flag */
switch (nexthdr){ switch (nexthdr) {
case NEXTHDR_HOP: case NEXTHDR_HOP:
case NEXTHDR_ROUTING: case NEXTHDR_ROUTING:
case NEXTHDR_FRAGMENT: case NEXTHDR_FRAGMENT:
case NEXTHDR_AUTH: case NEXTHDR_AUTH:
case NEXTHDR_DEST: case NEXTHDR_DEST:
break; break;
default: default:
DEBUGP("ipv6_esp match: unknown nextheader %u\n",nexthdr); DEBUGP("ipv6_esp match: unknown nextheader %u\n",nexthdr);
return 0; return 0;
break;
} }
nexthdr = hdr->nexthdr; nexthdr = hp->nexthdr;
len -= hdrlen; len -= hdrlen;
ptr += hdrlen; ptr += hdrlen;
if ( ptr > skb->len ) { if (ptr > skb->len) {
DEBUGP("ipv6_esp: new pointer too large! \n"); DEBUGP("ipv6_esp: new pointer too large! \n");
break; break;
} }
} }
/* ESP header not found */ /* ESP header not found */
if ( temp != MASK_ESP ) return 0; if (temp != MASK_ESP)
return 0;
if (len < (int)sizeof(struct ip_esp_hdr)){ if (len < sizeof(struct ip_esp_hdr)) {
*hotdrop = 1; *hotdrop = 1;
return 0; return 0;
} }
esp = (struct ip_esp_hdr *) (skb->data + ptr); eh = skb_header_pointer(skb, ptr, sizeof(_esp), &_esp);
BUG_ON(eh == NULL);
DEBUGP("IPv6 ESP SPI %u %08X\n", ntohl(esp->spi), ntohl(esp->spi)); DEBUGP("IPv6 ESP SPI %u %08X\n", ntohl(eh->spi), ntohl(eh->spi));
return (esp != NULL) return (eh != NULL)
&& spi_match(espinfo->spis[0], espinfo->spis[1], && spi_match(espinfo->spis[0], espinfo->spis[1],
ntohl(esp->spi), ntohl(eh->spi),
!!(espinfo->invflags & IP6T_ESP_INV_SPI)); !!(espinfo->invflags & IP6T_ESP_INV_SPI));
} }
...@@ -157,7 +157,6 @@ checkentry(const char *tablename, ...@@ -157,7 +157,6 @@ checkentry(const char *tablename,
espinfo->invflags); espinfo->invflags);
return 0; return 0;
} }
return 1; return 1;
} }
......
...@@ -24,8 +24,7 @@ match(const struct sk_buff *skb, ...@@ -24,8 +24,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
......
...@@ -45,8 +45,7 @@ match(const struct sk_buff *skb, ...@@ -45,8 +45,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *protohdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
struct frag_hdr *frag = NULL; struct frag_hdr *frag = NULL;
......
...@@ -59,8 +59,7 @@ match(const struct sk_buff *skb, ...@@ -59,8 +59,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *protohdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
struct ipv6_opt_hdr *optsh = NULL; struct ipv6_opt_hdr *optsh = NULL;
......
...@@ -20,7 +20,7 @@ MODULE_LICENSE("GPL"); ...@@ -20,7 +20,7 @@ MODULE_LICENSE("GPL");
static int match(const struct sk_buff *skb, const struct net_device *in, static int match(const struct sk_buff *skb, const struct net_device *in,
const struct net_device *out, const void *matchinfo, const struct net_device *out, const void *matchinfo,
int offset, const void *hdr, u_int16_t datalen, int offset, unsigned int protoff,
int *hotdrop) int *hotdrop)
{ {
const struct ip6t_hl_info *info = matchinfo; const struct ip6t_hl_info *info = matchinfo;
......
...@@ -31,8 +31,7 @@ ipv6header_match(const struct sk_buff *skb, ...@@ -31,8 +31,7 @@ ipv6header_match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *protohdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct ip6t_ipv6header_info *info = matchinfo; const struct ip6t_ipv6header_info *info = matchinfo;
......
...@@ -23,8 +23,7 @@ match(const struct sk_buff *skb, ...@@ -23,8 +23,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct ip6t_length_info *info = matchinfo; const struct ip6t_length_info *info = matchinfo;
......
...@@ -57,8 +57,7 @@ ip6t_limit_match(const struct sk_buff *skb, ...@@ -57,8 +57,7 @@ ip6t_limit_match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
struct ip6t_rateinfo *r = ((struct ip6t_rateinfo *)matchinfo)->master; struct ip6t_rateinfo *r = ((struct ip6t_rateinfo *)matchinfo)->master;
......
...@@ -25,8 +25,7 @@ match(const struct sk_buff *skb, ...@@ -25,8 +25,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct ip6t_mac_info *info = matchinfo; const struct ip6t_mac_info *info = matchinfo;
......
...@@ -24,8 +24,7 @@ match(const struct sk_buff *skb, ...@@ -24,8 +24,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct ip6t_mark_info *info = matchinfo; const struct ip6t_mark_info *info = matchinfo;
......
...@@ -53,15 +53,14 @@ match(const struct sk_buff *skb, ...@@ -53,15 +53,14 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct udphdr *udp = hdr; const struct udphdr *udp = (const struct udphdr *)(skb->data + protoff);
const struct ip6t_multiport *multiinfo = matchinfo; const struct ip6t_multiport *multiinfo = matchinfo;
/* Must be big enough to read ports. */ /* Must be big enough to read ports. */
if (offset == 0 && datalen < sizeof(struct udphdr)) { if (offset == 0 && skb->len - protoff < sizeof(struct udphdr)) {
/* We've been asked to examine this packet, and we /* We've been asked to examine this packet, and we
can't. Hence, no choice but to drop. */ can't. Hence, no choice but to drop. */
duprintf("ip6t_multiport:" duprintf("ip6t_multiport:"
......
...@@ -92,8 +92,7 @@ match(const struct sk_buff *skb, ...@@ -92,8 +92,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
const struct ip6t_owner_info *info = matchinfo; const struct ip6t_owner_info *info = matchinfo;
......
...@@ -26,8 +26,7 @@ match(const struct sk_buff *skb, ...@@ -26,8 +26,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *hdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
int i; int i;
......
...@@ -47,8 +47,7 @@ match(const struct sk_buff *skb, ...@@ -47,8 +47,7 @@ match(const struct sk_buff *skb,
const struct net_device *out, const struct net_device *out,
const void *matchinfo, const void *matchinfo,
int offset, int offset,
const void *protohdr, unsigned int protoff,
u_int16_t datalen,
int *hotdrop) int *hotdrop)
{ {
struct ipv6_rt_hdr *route = NULL; struct ipv6_rt_hdr *route = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment