mirror of
https://github.com/torvalds/linux.git
synced 2026-05-22 14:12:07 +02:00
netfilter: flowtable: fix NAT IPv6 offload mangling
Fix out-of-bound access in the address array.
Fixes: 5c27d8d76c ("netfilter: nf_flow_table_offload: add IPv6 support")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
9adc89af72
commit
0e07e25b48
|
|
@ -305,12 +305,12 @@ static void flow_offload_ipv6_mangle(struct nf_flow_rule *flow_rule,
|
||||||
const __be32 *addr, const __be32 *mask)
|
const __be32 *addr, const __be32 *mask)
|
||||||
{
|
{
|
||||||
struct flow_action_entry *entry;
|
struct flow_action_entry *entry;
|
||||||
int i;
|
int i, j;
|
||||||
|
|
||||||
for (i = 0; i < sizeof(struct in6_addr) / sizeof(u32); i += sizeof(u32)) {
|
for (i = 0, j = 0; i < sizeof(struct in6_addr) / sizeof(u32); i += sizeof(u32), j++) {
|
||||||
entry = flow_action_entry_next(flow_rule);
|
entry = flow_action_entry_next(flow_rule);
|
||||||
flow_offload_mangle(entry, FLOW_ACT_MANGLE_HDR_TYPE_IP6,
|
flow_offload_mangle(entry, FLOW_ACT_MANGLE_HDR_TYPE_IP6,
|
||||||
offset + i, &addr[i], mask);
|
offset + i, &addr[j], mask);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user