* 2.6.17rc1 PANIC related to IP masquerading
@ 2006-04-12 15:27 jlt_lk
2006-04-12 15:41 ` Patrick McHardy
0 siblings, 1 reply; 2+ messages in thread
From: jlt_lk @ 2006-04-12 15:27 UTC (permalink / raw)
To: linux-kernel, linux-net, netfilter
[-- Attachment #1: Type: text/plain, Size: 266 bytes --]
Hello.
Kernel 2.6.17-rc1 panics as soon as IP packets are forwarded using the
below config. ICMP packets seem to be forwarded fine.
A photograph of the panic can be found at:
http://shamrock.dyndns.org/~ln/kernel/2.6.17rc1_panic.jpg .
Best Regards
Jens Taprogge
[-- Attachment #2: config-2.6.17-rc1.gz --]
[-- Type: application/octet-stream, Size: 11071 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: 2.6.17rc1 PANIC related to IP masquerading
2006-04-12 15:27 2.6.17rc1 PANIC related to IP masquerading jlt_lk
@ 2006-04-12 15:41 ` Patrick McHardy
0 siblings, 0 replies; 2+ messages in thread
From: Patrick McHardy @ 2006-04-12 15:41 UTC (permalink / raw)
To: jlt_lk; +Cc: linux-kernel, linux-net, netfilter
[-- Attachment #1: Type: text/plain, Size: 336 bytes --]
jlt_lk@shamrock.dyndns.org wrote:
> Kernel 2.6.17-rc1 panics as soon as IP packets are forwarded using the
> below config. ICMP packets seem to be forwarded fine.
>
> A photograph of the panic can be found at:
> http://shamrock.dyndns.org/~ln/kernel/2.6.17rc1_panic.jpg .
This is already fixed in Linus' current tree by this patch.
[-- Attachment #2: x --]
[-- Type: text/plain, Size: 1138 bytes --]
commit 8bf4b8a1083694d5aac292f92705ddd3aec29be6
tree a8bbf0bb32b7e286659eae12326c54671430560f
parent 67644726317a8274be4a3d0ef85b9ccebaa90304
author Herbert Xu <herbert@gondor.apana.org.au> Wed, 05 Apr 2006 02:51:05 -0700
committer David S. Miller <davem@sunset.davemloft.net> Mon, 10 Apr 2006 12:25:22 -0700
[IPSEC]: Check x->encap before dereferencing it
We need to dereference x->encap before dereferencing it for encap_type.
If it's absent then the encap_type is zero.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/xfrm4_input.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/ipv4/xfrm4_input.c b/net/ipv4/xfrm4_input.c
index e1b8f4b..7a0b952 100644
--- a/net/ipv4/xfrm4_input.c
+++ b/net/ipv4/xfrm4_input.c
@@ -90,7 +90,7 @@ int xfrm4_rcv_encap(struct sk_buff *skb,
if (unlikely(x->km.state != XFRM_STATE_VALID))
goto drop_unlock;
- if (x->encap->encap_type != encap_type)
+ if ((x->encap ? x->encap->encap_type : 0) != encap_type)
goto drop_unlock;
if (x->props.replay_window && xfrm_replay_check(x, seq))
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-04-12 15:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-12 15:27 2.6.17rc1 PANIC related to IP masquerading jlt_lk
2006-04-12 15:41 ` Patrick McHardy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox