netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2.6]: Fix oops in ipt action error path
@ 2004-12-08 23:07 Patrick McHardy
  2004-12-09  4:57 ` David S. Miller
  2004-12-09 12:14 ` jamal
  0 siblings, 2 replies; 4+ messages in thread
From: Patrick McHardy @ 2004-12-08 23:07 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, jamal

[-- Attachment #1: Type: text/plain, Size: 1494 bytes --]

This patch fixes an oops when the ipt action is used with a
non-existant iptables target. It tries to log
t->u.kernel.target->name, u.kernel.target is part of a union
and as long as the target wasn't successfully loaded contains
the name of the target, using it as a pointer results in a
crash.

Oops captured in UML:

EIP: 0023:[<a01056e1>] CPU: 0 Not tainted ESP: 002b:a14b7514 EFLAGS: 
00010297
    Not tainted
EAX: 414d4e56 EBX: 0000000a ECX: 414d4e56 EDX: fffffffe
ESI: a036acba EDI: 00000000 EBP: a036b09f DS: 002b ES: 002b
Call Trace:
 [<a004b96d>] notifier_call_chain+0x2d/0x50
 [<a0101186>] bust_spinlocks+0x46/0x50
 [<a0035cc1>] panic+0x71/0x120
 [<a01056e1>] vsnprintf+0x331/0x4d0
 [<a001ad6a>] segv+0x1fa/0x230
 [<a01056e1>] vsnprintf+0x331/0x4d0
 [<a01eaeb4>] sigemptyset+0x24/0x40
 [<a0018c65>] change_signals+0x65/0x90
 [<a001b1c0>] segv_handler+0xe0/0xf0
 [<a01056e1>] vsnprintf+0x331/0x4d0
 [<a001eccd>] sig_handler_common_tt+0x8d/0x120
 [<a001b1f7>] sig_handler+0x17/0x20
 [<a01ead88>] __restore+0x0/0x8
 [<a01056e1>] vsnprintf+0x331/0x4d0
 [<a01058ab>] vscnprintf+0x2b/0x40
 [<a0036df2>] vprintk+0xb2/0x320
 [<a0036d37>] printk+0x17/0x20
 [<a0163653>] tcf_ipt_init+0x533/0x750
 [<a015ea22>] tcf_action_init_1+0x92/0x1a0
 [<a0069219>] kmem_cache_alloc+0x39/0x60
 [<a01eaeb4>] sigemptyset+0x24/0x40
 [<a015ebd7>] tcf_action_init+0xa7/0x140
...

Not very important right now since ipt support isn't merged in iproute
yet, but still should be fixed for 2.6.10.

Regards
Patrick


[-- Attachment #2: x --]
[-- Type: text/plain, Size: 816 bytes --]

# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
#   2004/12/08 23:59:19+01:00 kaber@coreworks.de 
#   [PKT_SCHED]: Fix oops in ipt action error path
#   
#   Signed-off-by: Patrick McHardy <kaber@trash.net>
# 
# net/sched/ipt.c
#   2004/12/08 23:59:13+01:00 kaber@coreworks.de +1 -2
#   [PKT_SCHED]: Fix oops in ipt action error path
#   
#   Signed-off-by: Patrick McHardy <kaber@trash.net>
# 
diff -Nru a/net/sched/ipt.c b/net/sched/ipt.c
--- a/net/sched/ipt.c	2004-12-08 23:59:51 +01:00
+++ b/net/sched/ipt.c	2004-12-08 23:59:51 +01:00
@@ -63,8 +63,7 @@
 	target = __ipt_find_target_lock(t->u.user.name, &ret);
 
 	if (!target) {
-		printk("init_targ: Failed to find %s\n",
-		       t->u.kernel.target->name);
+		printk("init_targ: Failed to find %s\n", t->u.user.name);
 		return -1;
 	}
 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2.6]: Fix oops in ipt action error path
  2004-12-08 23:07 [PATCH 2.6]: Fix oops in ipt action error path Patrick McHardy
@ 2004-12-09  4:57 ` David S. Miller
  2004-12-09 12:14 ` jamal
  1 sibling, 0 replies; 4+ messages in thread
From: David S. Miller @ 2004-12-09  4:57 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: netdev, hadi

On Thu, 09 Dec 2004 00:07:26 +0100
Patrick McHardy <kaber@trash.net> wrote:

> This patch fixes an oops when the ipt action is used with a
> non-existant iptables target. It tries to log
> t->u.kernel.target->name, u.kernel.target is part of a union
> and as long as the target wasn't successfully loaded contains
> the name of the target, using it as a pointer results in a
> crash.

Applied, thanks Patrick.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2.6]: Fix oops in ipt action error path
  2004-12-08 23:07 [PATCH 2.6]: Fix oops in ipt action error path Patrick McHardy
  2004-12-09  4:57 ` David S. Miller
@ 2004-12-09 12:14 ` jamal
  2004-12-09 23:46   ` Patrick McHardy
  1 sibling, 1 reply; 4+ messages in thread
From: jamal @ 2004-12-09 12:14 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: David S. Miller, netdev

On Wed, 2004-12-08 at 18:07, Patrick McHardy wrote:
> This patch fixes an oops when the ipt action is used with a
> non-existant iptables target. It tries to log
> t->u.kernel.target->name, u.kernel.target is part of a union
> and as long as the target wasn't successfully loaded contains
> the name of the target, using it as a pointer results in a
> crash.
> 
> Oops captured in UML:
> 
> EIP: 0023:[<a01056e1>] CPU: 0 Not tainted ESP: 002b:a14b7514 EFLAGS: 
> 00010297
>     Not tainted
> EAX: 414d4e56 EBX: 0000000a ECX: 414d4e56 EDX: fffffffe
> ESI: a036acba EDI: 00000000 EBP: a036b09f DS: 002b ES: 002b
> Call Trace:
>  [<a004b96d>] notifier_call_chain+0x2d/0x50
>  [<a0101186>] bust_spinlocks+0x46/0x50
>  [<a0035cc1>] panic+0x71/0x120
>  [<a01056e1>] vsnprintf+0x331/0x4d0
>  [<a001ad6a>] segv+0x1fa/0x230
>  [<a01056e1>] vsnprintf+0x331/0x4d0
>  [<a01eaeb4>] sigemptyset+0x24/0x40
>  [<a0018c65>] change_signals+0x65/0x90
>  [<a001b1c0>] segv_handler+0xe0/0xf0
>  [<a01056e1>] vsnprintf+0x331/0x4d0
>  [<a001eccd>] sig_handler_common_tt+0x8d/0x120
>  [<a001b1f7>] sig_handler+0x17/0x20
>  [<a01ead88>] __restore+0x0/0x8
>  [<a01056e1>] vsnprintf+0x331/0x4d0
>  [<a01058ab>] vscnprintf+0x2b/0x40
>  [<a0036df2>] vprintk+0xb2/0x320
>  [<a0036d37>] printk+0x17/0x20
>  [<a0163653>] tcf_ipt_init+0x533/0x750
>  [<a015ea22>] tcf_action_init_1+0x92/0x1a0
>  [<a0069219>] kmem_cache_alloc+0x39/0x60
>  [<a01eaeb4>] sigemptyset+0x24/0x40
>  [<a015ebd7>] tcf_action_init+0xa7/0x140
> ...
> 
> Not very important right now since ipt support isn't merged in iproute
> yet, but still should be fixed for 2.6.10.
> 

I think it is valid to apply now; 
Thanks Patrick. If you have more cleanups on ipt, please shoot them in
as well. 
I am going to resend the ipt iproute2 patch to Stephen now that he is
awake.
 
cheers,
jamal

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2.6]: Fix oops in ipt action error path
  2004-12-09 12:14 ` jamal
@ 2004-12-09 23:46   ` Patrick McHardy
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick McHardy @ 2004-12-09 23:46 UTC (permalink / raw)
  To: hadi; +Cc: David S. Miller, netdev

jamal wrote:

>Thanks Patrick. If you have more cleanups on ipt, please shoot them in
>as well. 
>  
>
I didn't get to it yet, but I'll have more free time at christmas.

Regards
Patrick

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-12-09 23:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-08 23:07 [PATCH 2.6]: Fix oops in ipt action error path Patrick McHardy
2004-12-09  4:57 ` David S. Miller
2004-12-09 12:14 ` jamal
2004-12-09 23:46   ` Patrick McHardy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).