[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <19f34abd0902110248n22f8de12lccfa99faafafb942@mail.gmail.com>
Date: Wed, 11 Feb 2009 11:48:41 +0100
From: Vegard Nossum <vegard.nossum@...il.com>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Eric Sesterhenn <snakebyte@....de>, linux-kernel@...r.kernel.org,
David Howells <dhowells@...hat.com>,
KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>,
containers@...ts.osdl.org
Subject: Re: namespaces?: bug at mm/slub.c:2750
On Wed, Feb 11, 2009 at 9:07 AM, Andrew Morton
<akpm@...ux-foundation.org> wrote:
>> In case you missed it, KOSAKI Motohiro posted a similar stack-trace
>> (but not the same BUG) in this thread:
>> http://lkml.org/lkml/2009/2/10/7
>>
>
> Both traces include the newly-added put_cred_rcu(). Suspicious.
>
I have this test case which triggers it regularly after some minutes:
#include <sys/wait.h>
#include <sys/types.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char* argv[])
{
unsigned int i;
if (fork() == 0) {
while (1)
system("echo -n .");
}
for (i = 0; i < 2; ++i) {
if (fork() == 0) {
while (1) {
setreuid(0, 0xcafeba);
setreuid(0xcafeba, 0);
setreuid(0, 0xcafebb);
setreuid(0xcafebb, 0);
}
exit(EXIT_SUCCESS);
}
}
while (!(wait(NULL) == -1 && errno == ECHILD))
;
return 0;
}
It seems to be the combination of exec() and setreuid(), but I
couldn't get it to work with just exec() instead of system(). It is
possible that CONFIG_USER_SCHED must be =y for this to work. It can
probably be simplified too...
Vegard
--
"The animistic metaphor of the bug that maliciously sneaked in while
the programmer was not looking is intellectually dishonest as it
disguises that the error is the programmer's own creation."
-- E. W. Dijkstra, EWD1036
--
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