From: jjs <jjs@tmsusa.com>
To: Martin Josefsson <gandalf@wlug.westbo.se>
Cc: linux-kernel@vger.kernel.org
Subject: Re: An oops while running 2.5.65-mm2
Date: Fri, 21 Mar 2003 10:33:50 -0800 [thread overview]
Message-ID: <3E7B5B0E.9080808@tmsusa.com> (raw)
In-Reply-To: 1048209554.1103.21.camel@tux.rsn.bth.se
We have 12 hours uptime so far with this
patch, and everything is good so far -
Will report any change in status -
Joe
Martin Josefsson wrote:
>You are correct. It was a list_del() that caused it (at least I think
>so, it's 2am right now).
>
>1. conntrack helper adds an expectation and adds that to a list hanging
>of off a connection.
>
>2. the expected connection arrives. the expectation is still on the
>list.
>
>3. the original connection that caused the expectation terminates but
>the expectation still thinks it's added to the list.
>
>4. the expected connection terminates and list_del() is called to remove
>it from the list which doesn't exist anymore. boom!
>
>
>
>------------------------------------------------------------------------
>
>--- linux-2.5.64-bk10/net/ipv4/netfilter/ip_conntrack_core.c.orig 2003-03-21 01:42:57.000000000 +0100
>+++ linux-2.5.64-bk10/net/ipv4/netfilter/ip_conntrack_core.c 2003-03-21 01:44:11.000000000 +0100
>@@ -274,6 +274,7 @@
> * the un-established ones only */
> if (exp->sibling) {
> DEBUGP("remove_expectations: skipping established %p of %p\n", exp->sibling, ct);
>+ exp->sibling = NULL;
> continue;
> }
>
>@@ -327,9 +328,11 @@
> WRITE_LOCK(&ip_conntrack_lock);
> /* Delete our master expectation */
> if (ct->master) {
>- /* can't call __unexpect_related here,
>- * since it would screw up expect_list */
>- list_del(&ct->master->expected_list);
>+ if (ct->master->sibling) {
>+ /* can't call __unexpect_related here,
>+ * since it would screw up expect_list */
>+ list_del(&ct->master->expected_list);
>+ }
> kfree(ct->master);
> }
> WRITE_UNLOCK(&ip_conntrack_lock);
>
>
next prev parent reply other threads:[~2003-03-21 18:24 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-03-20 19:47 An oops while running 2.5.65-mm2 jjs
2003-03-20 20:29 ` Andrew Morton
2003-03-21 1:19 ` Martin Josefsson
2003-03-21 18:33 ` jjs [this message]
2003-03-21 23:59 ` Martin Josefsson
2003-03-24 4:43 ` J Sloan
2003-03-24 13:27 ` Martin Josefsson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3E7B5B0E.9080808@tmsusa.com \
--to=jjs@tmsusa.com \
--cc=gandalf@wlug.westbo.se \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.