[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20070508144237.GB6130@localhost.sw.ru>
Date: Tue, 8 May 2007 18:42:37 +0400
From: Alexey Dobriyan <adobriyan@...ru>
To: Christoph Hellwig <hch@....de>, Roland McGrath <roland@...hat.com>
Cc: linux-kernel@...r.kernel.org, devel@...nvz.org
Subject: Re: [PATCH -utrace] Move utrace into task_struct
Regardless of future of "struct utrace utrace;" patch looks like there
is another race: engine's flags and ops settings in utrace_detach() and
acting on them in report_quiescent():
utrace_detach() report_quiescent()
--------------- ------------------
[utrace lock held] [utrace lock is not held]
engine->flags = UTRACE_EVENT(QUIESCE) |
UTRACE_ACTION_QUIESCE;
if (engine->flags & UTRACE_EVENT(QUIESCE))
REPORT(report_quiesce);
rcu_assign_pointer(engine->ops, &dead_engine_ops);
At the moment of REPORT call engine's ops are still "live" ptrace ops
which do not have ->report_quiesce callback. So, there will oops while
calling function at NULL address. "Dead" ptrace engine ops do have dummy
callback but it wasn't yet glued.
I hit this once with "struct utrace utrace;" patch applied, but this
bug is also present in stock utrace, I'm sure.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists