* [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes
@ 2004-11-03 11:37 Chris Wedgwood
2004-11-03 11:47 ` Anton Altaparmakov
[not found] ` <200411040113.27747.blaisorblade_spam@yahoo.it>
0 siblings, 2 replies; 15+ messages in thread
From: Chris Wedgwood @ 2004-11-03 11:37 UTC (permalink / raw)
To: Jeff Dike; +Cc: Blaisorblade, user-mode-linux-devel, Andrew Morton, LKML
kill(..., SIGKILL) doesn't work to kill host-OS processes created in
the exec path in TT mode --- for this we need PTRACE_KILL (it did work
in previous kernels, but not by design). Without this process will
accumulate on the host-OS (although the won't be visible inside UML).
Signed-off-by: Chris Wedgwood <cw@f00f.org>
---
Yes, there are other fixes along these lines which are needed but one
at a time as we test these...
Index: cw-current/arch/um/kernel/tt/exec_user.c
===================================================================
--- cw-current.orig/arch/um/kernel/tt/exec_user.c 2004-11-03 02:10:18.064830204 -0800
+++ cw-current/arch/um/kernel/tt/exec_user.c 2004-11-03 02:12:10.447716745 -0800
@@ -35,7 +35,8 @@
tracer_panic("do_exec failed to get registers - errno = %d",
errno);
- kill(old_pid, SIGKILL);
+ if (ptrace(PTRACE_KILL, old_pid, NULL, NULL))
+ printk("Warning: ptrace(PTRACE_KILL, %d, ...) saw %d\n", errno);
if(ptrace_setregs(new_pid, regs) < 0)
tracer_panic("do_exec failed to start new proc - errno = %d",
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes 2004-11-03 11:37 [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes Chris Wedgwood @ 2004-11-03 11:47 ` Anton Altaparmakov 2004-11-03 12:08 ` [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) Chris Wedgwood [not found] ` <200411040113.27747.blaisorblade_spam@yahoo.it> 1 sibling, 1 reply; 15+ messages in thread From: Anton Altaparmakov @ 2004-11-03 11:47 UTC (permalink / raw) To: Chris Wedgwood Cc: Jeff Dike, Blaisorblade, user-mode-linux-devel, Andrew Morton, lkml On Wed, 2004-11-03 at 11:37, Chris Wedgwood wrote: > kill(..., SIGKILL) doesn't work to kill host-OS processes created in > the exec path in TT mode --- for this we need PTRACE_KILL (it did work > in previous kernels, but not by design). Without this process will > accumulate on the host-OS (although the won't be visible inside UML). > > Signed-off-by: Chris Wedgwood <cw@f00f.org> > --- > > Yes, there are other fixes along these lines which are needed but one > at a time as we test these... > > Index: cw-current/arch/um/kernel/tt/exec_user.c > =================================================================== > --- cw-current.orig/arch/um/kernel/tt/exec_user.c 2004-11-03 02:10:18.064830204 -0800 > +++ cw-current/arch/um/kernel/tt/exec_user.c 2004-11-03 02:12:10.447716745 -0800 > @@ -35,7 +35,8 @@ > tracer_panic("do_exec failed to get registers - errno = %d", > errno); > > - kill(old_pid, SIGKILL); > + if (ptrace(PTRACE_KILL, old_pid, NULL, NULL)) > + printk("Warning: ptrace(PTRACE_KILL, %d, ...) saw %d\n", errno); You have two %d but only one argument. You seem to have forgotten an "old_pid, " in there. > > if(ptrace_setregs(new_pid, regs) < 0) > tracer_panic("do_exec failed to start new proc - errno = %d", Best regards, Anton -- Anton Altaparmakov <aia21 at cam.ac.uk> (replace at with @) Unix Support, Computing Service, University of Cambridge, CB2 3QH, UK Linux NTFS maintainer / IRC: #ntfs on irc.freenode.net WWW: http://linux-ntfs.sf.net/, http://www-stu.christs.cam.ac.uk/~aia21/ ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) 2004-11-03 11:47 ` Anton Altaparmakov @ 2004-11-03 12:08 ` Chris Wedgwood 2004-11-03 19:28 ` [uml-devel] " Blaisorblade 0 siblings, 1 reply; 15+ messages in thread From: Chris Wedgwood @ 2004-11-03 12:08 UTC (permalink / raw) To: Jeff Dike Cc: Anton Altaparmakov, Blaisorblade, user-mode-linux-devel, Andrew Morton, lkml On Wed, Nov 03, 2004 at 11:47:38AM +0000, Anton Altaparmakov wrote: > You have two %d but only one argument. You seem to have forgotten > an "old_pid, " in there. doh! it's a warning if something iffy happens (which so far for me it hasn't) which explains why i missed it... not sure why i didn't get a build warning though... thanks! --- kill(..., SIGKILL) doesn't work to kill host-OS processes created in the exec path in TT mode --- for this we need PTRACE_KILL (it did work in previous kernels, but not by design). Without this process will accumulate on the host-OS (although the won't be visible inside UML). Signed-off-by: Chris Wedgwood <cw@f00f.org> --- Index: cw-current/arch/um/kernel/tt/exec_user.c =================================================================== --- cw-current.orig/arch/um/kernel/tt/exec_user.c 2004-11-03 02:10:18.064830204 -0800 +++ cw-current/arch/um/kernel/tt/exec_user.c 2004-11-03 04:05:00.435843464 -0800 @@ -35,7 +35,8 @@ tracer_panic("do_exec failed to get registers - errno = %d", errno); - kill(old_pid, SIGKILL); + if (ptrace(PTRACE_KILL, old_pid, NULL, NULL)) + printk("Warning: ptrace(PTRACE_KILL, %d, ...) saw %d\n", old_pid, errno); if(ptrace_setregs(new_pid, regs) < 0) tracer_panic("do_exec failed to start new proc - errno = %d", ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) 2004-11-03 12:08 ` [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) Chris Wedgwood @ 2004-11-03 19:28 ` Blaisorblade 2004-11-03 20:09 ` Chris Wedgwood 2004-11-03 20:18 ` Gerd Knorr 0 siblings, 2 replies; 15+ messages in thread From: Blaisorblade @ 2004-11-03 19:28 UTC (permalink / raw) To: user-mode-linux-devel Cc: Chris Wedgwood, Jeff Dike, Anton Altaparmakov, Andrew Morton, lkml, Gerd Knorr On Wednesday 03 November 2004 13:08, Chris Wedgwood wrote: > On Wed, Nov 03, 2004 at 11:47:38AM +0000, Anton Altaparmakov wrote: > > You have two %d but only one argument. You seem to have forgotten > > an "old_pid, " in there. > kill(..., SIGKILL) doesn't work to kill host-OS processes created in > the exec path in TT mode --- for this we need PTRACE_KILL (it did work > in previous kernels, but not by design). Without this process will > accumulate on the host-OS (although the won't be visible inside UML). > Signed-off-by: Chris Wedgwood <cw@f00f.org> > --- > > Index: cw-current/arch/um/kernel/tt/exec_user.c > =================================================================== > --- cw-current.orig/arch/um/kernel/tt/exec_user.c 2004-11-03 > 02:10:18.064830204 -0800 +++ > cw-current/arch/um/kernel/tt/exec_user.c 2004-11-03 04:05:00.435843464 > -0800 @@ -35,7 +35,8 @@ > tracer_panic("do_exec failed to get registers - errno = %d", > errno); > > - kill(old_pid, SIGKILL); > + if (ptrace(PTRACE_KILL, old_pid, NULL, NULL)) > + printk("Warning: ptrace(PTRACE_KILL, %d, ...) saw %d\n", old_pid, > errno); > > if(ptrace_setregs(new_pid, regs) < 0) > tracer_panic("do_exec failed to start new proc - errno = %d", I'm going to test this. I thought that Gerd Knorr patch (which I sent cc'ing LKML and most of you) already solved this (I actually modified that one, replacing his SIGCONT kill()ing with a PTRACE_KILL, but I did this in the places he identified). I guess that old_pid should either already be dead there or going to die after a little, but I'm going to check (after I get UML to run in the current snapshot...) For now, please hold on this. -- Paolo Giarrusso, aka Blaisorblade Linux registered user n. 292729 ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) 2004-11-03 19:28 ` [uml-devel] " Blaisorblade @ 2004-11-03 20:09 ` Chris Wedgwood 2004-11-03 22:51 ` Blaisorblade 2004-11-03 20:18 ` Gerd Knorr 1 sibling, 1 reply; 15+ messages in thread From: Chris Wedgwood @ 2004-11-03 20:09 UTC (permalink / raw) To: Blaisorblade Cc: user-mode-linux-devel, Jeff Dike, Anton Altaparmakov, Andrew Morton, lkml, Gerd Knorr On Wed, Nov 03, 2004 at 08:28:44PM +0100, Blaisorblade wrote: > I'm going to test this. please do > I thought that Gerd Knorr patch (which I sent cc'ing LKML and most > of you) already solved this (I actually modified that one, replacing > his SIGCONT kill()ing with a PTRACE_KILL, but I did this in the > places he identified). it might, i'm going to check soon what worries me is that two very different code paths might be fixing the same problem which makes me think the flow of execution here is very vague and needs cleaninng up also, check your return values for errors --- i bet you will see some. os_kill_process has this problem too --- many invocations of it are pointless and fail, especially those from relase_thread_tt (i need to check the details here, this is all from memory and im getting old) > I guess that old_pid should either already be dead there or going to > die after a little, but I'm going to check (after I get UML to run > in the current snapshot...) it should build pretty close to as-is, if not let me know and i'll sent you what i have ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) 2004-11-03 20:09 ` Chris Wedgwood @ 2004-11-03 22:51 ` Blaisorblade 0 siblings, 0 replies; 15+ messages in thread From: Blaisorblade @ 2004-11-03 22:51 UTC (permalink / raw) To: user-mode-linux-devel Cc: Chris Wedgwood, Jeff Dike, Anton Altaparmakov, Andrew Morton, lkml, Gerd Knorr On Wednesday 03 November 2004 21:09, Chris Wedgwood wrote: > On Wed, Nov 03, 2004 at 08:28:44PM +0100, Blaisorblade wrote: > > I'm going to test this. > > please do The Gerd / mine patch seem to work nicely. No thread is left over. > > I thought that Gerd Knorr patch (which I sent cc'ing LKML and most > > of you) already solved this (I actually modified that one, replacing > > his SIGCONT kill()ing with a PTRACE_KILL, but I did this in the > > places he identified). > it might, i'm going to check soon > what worries me is that two very different code paths might be fixing > the same problem which makes me think the flow of execution here is > very vague and needs cleaninng up Yes, but the cleanup should first be revierwed by Jeff Dike and put in his tree. I too don't understand the code. Don't CC Andrew on the first release of the cleanup at least. To go to the actual fact, the code path I'm fixing didn't exist till a few releases ago. Follows is the patch containing this fix against 2.4.27, with the changelog, from Jeff Dike. This fixes a use-after-free bug in the context switching. A process going out of context after exiting wakes up the next process and then kills itself. The problem is that when it gets around to killing itself is up to the host and can happen a long time later, including after the incoming process has freed its stack, and that memory is possibly being used for something else. The fix is to have the incoming process kill the exiting process just to make sure it can't be running at the point that its stack is freed. um-linux-2.4.27-paolo/arch/um/kernel/tt/process_kern.c | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletion(-) diff -puN arch/um/kernel/tt/process_kern.c~scheduler arch/um/kernel/tt/process_kern.c --- um-linux-2.4.27/arch/um/kernel/tt/process_kern.c~scheduler 2004-11-02 11:12:28.805815264 +0100 +++ um-linux-2.4.27-paolo/arch/um/kernel/tt/process_kern.c 2004-11-02 11:12:28.807814960 +0100 @@ -25,7 +25,7 @@ void *_switch_to_tt(void *prev, void *next) { - struct task_struct *from, *to; + struct task_struct *from, *to, *prev_sched; unsigned long flags; int err, vtalrm, alrm, prof, cpu; char c; @@ -67,6 +67,17 @@ void *_switch_to_tt(void *prev, void *ne if(err != sizeof(c)) panic("read of switch_pipe failed, errno = %d", -err); + /* If the process that we have just scheduled away from has exited, + * then it needs to be killed here. The reason is that, even though + * it will kill itself when it next runs, that may be too late. Its + * stack will be freed, possibly before then, and if that happens, + * we have a use-after-free situation. So, it gets killed here + * in case it has not already killed itself. + */ + prev_sched = current->thread.prev_sched; + if(prev_sched->state == TASK_ZOMBIE) + os_kill_process(prev_sched->thread.mode.tt.extern_pid, 1); + /* This works around a nasty race with 'jail'. If we are switching * between two threads of a threaded app and the incoming process * runs before the outgoing process reaches the read, and it makes > also, check your return values for errors --- i bet you will see > some. That is a separate, on-top of this patch. > os_kill_process has this problem too --- many invocations of it > are pointless and fail, especially those from relase_thread_tt (i need > to check the details here, this is all from memory and im getting old) > > I guess that old_pid should either already be dead there or going to > > die after a little, but I'm going to check (after I get UML to run > > in the current snapshot...) > it should build pretty close to as-is, if not let me know and i'll > sent you what i have No problem actually in UML, the build environment instead is very complicate. It refuses to work with NPTL, so I must build it in my old Mandrake chroot (it was a distro, now I keep it just for compilation). Now, I must also run it on the Gentoo, or it gives problems... however, don't worry. I'm also going to merge some patches (21 it should be). Bye -- Paolo Giarrusso, aka Blaisorblade Linux registered user n. 292729 ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) 2004-11-03 19:28 ` [uml-devel] " Blaisorblade 2004-11-03 20:09 ` Chris Wedgwood @ 2004-11-03 20:18 ` Gerd Knorr 2004-11-03 20:48 ` Chris Wedgwood 2004-11-03 23:19 ` Blaisorblade 1 sibling, 2 replies; 15+ messages in thread From: Gerd Knorr @ 2004-11-03 20:18 UTC (permalink / raw) To: Blaisorblade Cc: user-mode-linux-devel, Chris Wedgwood, Jeff Dike, Anton Altaparmakov, Andrew Morton, lkml > I'm going to test this. I thought that Gerd Knorr patch (which I sent cc'ing > LKML and most of you) already solved this (I actually modified that one, Not sure whenever tt is fixed with my patch, I've tested skas only (I'm building skas-only dynamically linked kernels these days because due to working on x11 framebuffer stuff which needs dynamically linked libX11). So if Chris actually tested TT then his patch probably is ok and needed as well ... Gerd -- #define printk(args...) fprintf(stderr, ## args) ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) 2004-11-03 20:18 ` Gerd Knorr @ 2004-11-03 20:48 ` Chris Wedgwood 2004-11-04 0:23 ` Blaisorblade 2004-11-03 23:19 ` Blaisorblade 1 sibling, 1 reply; 15+ messages in thread From: Chris Wedgwood @ 2004-11-03 20:48 UTC (permalink / raw) To: Gerd Knorr Cc: Blaisorblade, user-mode-linux-devel, Jeff Dike, Anton Altaparmakov, Andrew Morton, lkml On Wed, Nov 03, 2004 at 09:18:36PM +0100, Gerd Knorr wrote: > Not sure whenever tt is fixed with my patch, I've tested skas only > (I'm building skas-only dynamically linked kernels these days > because due to working on x11 framebuffer stuff which needs > dynamically linked libX11). it would be nice to find a way to make this work TT mode for you > So if Chris actually tested TT then his patch probably is ok and > needed as well ... i'm only using TT mode at present, i don't check esoteric modes that require host-OS patches at present ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) 2004-11-03 20:48 ` Chris Wedgwood @ 2004-11-04 0:23 ` Blaisorblade 0 siblings, 0 replies; 15+ messages in thread From: Blaisorblade @ 2004-11-04 0:23 UTC (permalink / raw) To: Chris Wedgwood Cc: Gerd Knorr, user-mode-linux-devel, Jeff Dike, Anton Altaparmakov, Andrew Morton, lkml On Wednesday 03 November 2004 21:48, Chris Wedgwood wrote: > On Wed, Nov 03, 2004 at 09:18:36PM +0100, Gerd Knorr wrote: > > Not sure whenever tt is fixed with my patch, I've tested skas only > > (I'm building skas-only dynamically linked kernels these days > > because due to working on x11 framebuffer stuff which needs > > dynamically linked libX11). > it would be nice to find a way to make this work TT mode for you > > So if Chris actually tested TT then his patch probably is ok and > > needed as well ... > i'm only using TT mode at present, i don't check esoteric modes that > require host-OS patches at present SKAS mode is currently more used and tested than TT mode. And the SKAS patch is included at least in WOLK, the SuSE kernel, and the -cko patchset (Con Kolivas Overloaded). That said, feel free not to use it, but at least test that it compiles in SKAS mode. Bye -- Paolo Giarrusso, aka Blaisorblade Linux registered user n. 292729 ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) 2004-11-03 20:18 ` Gerd Knorr 2004-11-03 20:48 ` Chris Wedgwood @ 2004-11-03 23:19 ` Blaisorblade 1 sibling, 0 replies; 15+ messages in thread From: Blaisorblade @ 2004-11-03 23:19 UTC (permalink / raw) To: user-mode-linux-devel Cc: Gerd Knorr, Chris Wedgwood, Jeff Dike, Anton Altaparmakov, Andrew Morton, lkml On Wednesday 03 November 2004 21:18, Gerd Knorr wrote: > > I'm going to test this. I thought that Gerd Knorr patch (which I sent > > cc'ing LKML and most of you) already solved this (I actually modified > > that one, > Not sure whenever tt is fixed with my patch, I've tested skas only I've tested it, and it works in fact. > (I'm > building skas-only dynamically linked kernels these days because due to > working on x11 framebuffer stuff which needs dynamically linked libX11). > So if Chris actually tested TT then his patch probably is ok and needed > as well ... Actually, from looking at Jeff Dike comment, it seem that the new kill (the one you've changed) is executed earlier and more reliably than the 1st one, the one Chris identified. So we could ask Jeff to see if he can remove the earlier kill, the one affected by the Chris Wedgwood. -- Paolo Giarrusso, aka Blaisorblade Linux registered user n. 292729 ^ permalink raw reply [flat|nested] 15+ messages in thread
[parent not found: <200411040113.27747.blaisorblade_spam@yahoo.it>]
[parent not found: <20041104003943.GB17467@taniwha.stupidest.org>]
* Fixing UML against NPTL (was: Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2)) [not found] ` <20041104003943.GB17467@taniwha.stupidest.org> @ 2004-11-04 4:31 ` Blaisorblade 2004-11-11 17:45 ` Daniel Jacobowitz 0 siblings, 1 reply; 15+ messages in thread From: Blaisorblade @ 2004-11-04 4:31 UTC (permalink / raw) To: Chris Wedgwood; +Cc: LKML [-- Attachment #1: Type: text/plain, Size: 1571 bytes --] On Thursday 04 November 2004 01:39, Chris Wedgwood wrote: > On Thu, Nov 04, 2004 at 01:13:27AM +0100, Blaisorblade wrote: > > Well, not a lot of new work should go there. > > agreed > > > Not always. Do you think I'm a luser? Or what? > > no, not at all > > i was asking what break to see if i can help Intimate Linking Script and NPTL knowledge would help a lot. The issues are 2 ones: 1) LKML does not link because the linker does not like it's linker script, which defines a special thread_private section (give a look at switcheroo() and you could maybe realize the issue of copying the .text to a tmpfs file and replacing the mapping to the executable with the tmpfs file mapping). 2) getpid() on a child clone returns the process's pid when run with a NPTL-enabled glibc, while it returns the thread pid with a LinuxThreads one; this causes tons of problems with UML, which uses signals as inter-thread and intra-thread communication. Note UML is not using pthread_create() to create the threads, where this behaviour is an improvement. I'm using a plain clone() call without the CLONE_THREAD flag (which is not even added in by glibc, according to strace). I've not yet checked if glibc is hijacking getpid() or not, but that would be strange anyway. Also, this behaviour has been reported the first time about at the time of 2.6.0, but actually UML has almost never runs against NPTL glibc, because it's statically linked most times. -- Paolo Giarrusso, aka Blaisorblade Linux registered user n. 292729 [-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Fixing UML against NPTL (was: Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2)) 2004-11-04 4:31 ` Fixing UML against NPTL (was: Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2)) Blaisorblade @ 2004-11-11 17:45 ` Daniel Jacobowitz 2004-11-11 18:31 ` Christophe Saout 0 siblings, 1 reply; 15+ messages in thread From: Daniel Jacobowitz @ 2004-11-11 17:45 UTC (permalink / raw) To: Blaisorblade; +Cc: Chris Wedgwood, LKML On Thu, Nov 04, 2004 at 05:31:21AM +0100, Blaisorblade wrote: > 2) getpid() on a child clone returns the process's pid when run with a > NPTL-enabled glibc, while it returns the thread pid with a LinuxThreads one; > this causes tons of problems with UML, which uses signals as inter-thread and > intra-thread communication. > > Note UML is not using pthread_create() to create the threads, where this > behaviour is an improvement. I'm using a plain clone() call without the > CLONE_THREAD flag (which is not even added in by glibc, according to strace). > > I've not yet checked if glibc is hijacking getpid() or not, but that would be > strange anyway. Glibc caches the PID. If you're going to use clone directly, use the gettid/getpid syscall directly. It's kind of rude that glibc breaks getpid in this way; I recommend filing a bug in the glibc bugzilla at sources.redhat.com. -- Daniel Jacobowitz ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Fixing UML against NPTL (was: Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2)) 2004-11-11 17:45 ` Daniel Jacobowitz @ 2004-11-11 18:31 ` Christophe Saout 2004-11-11 18:45 ` Daniel Jacobowitz 0 siblings, 1 reply; 15+ messages in thread From: Christophe Saout @ 2004-11-11 18:31 UTC (permalink / raw) To: Daniel Jacobowitz; +Cc: Blaisorblade, Chris Wedgwood, LKML [-- Attachment #1: Type: text/plain, Size: 426 bytes --] Am Donnerstag, den 11.11.2004, 12:45 -0500 schrieb Daniel Jacobowitz: > Glibc caches the PID. If you're going to use clone directly, use the > gettid/getpid syscall directly. It's kind of rude that glibc breaks > getpid in this way; I recommend filing a bug in the glibc bugzilla at > sources.redhat.com. If glibc insists on caching the pid, it could also simply invalidate the pid cache in the clone function. [-- Attachment #2: Dies ist ein digital signierter Nachrichtenteil --] [-- Type: application/pgp-signature, Size: 189 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Fixing UML against NPTL (was: Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2)) 2004-11-11 18:31 ` Christophe Saout @ 2004-11-11 18:45 ` Daniel Jacobowitz 2004-11-12 0:09 ` Blaisorblade 0 siblings, 1 reply; 15+ messages in thread From: Daniel Jacobowitz @ 2004-11-11 18:45 UTC (permalink / raw) To: Christophe Saout; +Cc: Blaisorblade, Chris Wedgwood, LKML On Thu, Nov 11, 2004 at 07:31:51PM +0100, Christophe Saout wrote: > Am Donnerstag, den 11.11.2004, 12:45 -0500 schrieb Daniel Jacobowitz: > > > Glibc caches the PID. If you're going to use clone directly, use the > > gettid/getpid syscall directly. It's kind of rude that glibc breaks > > getpid in this way; I recommend filing a bug in the glibc bugzilla at > > sources.redhat.com. ... but, thinking about it, they'll probably close it as INVALID. > If glibc insists on caching the pid, it could also simply invalidate the > pid cache in the clone function. It currently does this for vfork, but not clone. Basically, you can't call into glibc at all if you use clone. If you aren't using POSIX threads, then the POSIX-compliant library is going to fall to pieces around you. For instance, all the file locking will break, and anything else that, like the PID cache, relies on either global or per-_thread_ data. -- Daniel Jacobowitz ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: Fixing UML against NPTL (was: Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2)) 2004-11-11 18:45 ` Daniel Jacobowitz @ 2004-11-12 0:09 ` Blaisorblade 0 siblings, 0 replies; 15+ messages in thread From: Blaisorblade @ 2004-11-12 0:09 UTC (permalink / raw) To: Daniel Jacobowitz; +Cc: Christophe Saout, Chris Wedgwood, LKML On Thursday 11 November 2004 19:45, Daniel Jacobowitz wrote: > On Thu, Nov 11, 2004 at 07:31:51PM +0100, Christophe Saout wrote: > > Am Donnerstag, den 11.11.2004, 12:45 -0500 schrieb Daniel Jacobowitz: > > > Glibc caches the PID. If you're going to use clone directly, use the > > > gettid/getpid syscall directly. It's kind of rude that glibc breaks > > > getpid in this way; I recommend filing a bug in the glibc bugzilla at > > > sources.redhat.com. > > ... but, thinking about it, they'll probably close it as INVALID. > > > If glibc insists on caching the pid, it could also simply invalidate the > > pid cache in the clone function. > It currently does this for vfork, but not clone. Basically, you can't > call into glibc at all if you use clone. If you aren't using POSIX > threads, then the POSIX-compliant library is going to fall to pieces > around you. For instance, all the file locking will break, and > anything else that, like the PID cache, relies on either global or > per-_thread_ data. Yes, in fact I guess that the problem is for any _thread variable. And as fork() is not a raw syscall, so clone() shouldn't be. I'll file a bugreport when I have time to do it properly - I don't want to hear that "if I go into dirty things using clone(), I get to keep the pieces and setup a different TLS for the new process" -- Paolo Giarrusso, aka Blaisorblade Linux registered user n. 292729 ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2004-11-12 0:35 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-03 11:37 [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes Chris Wedgwood
2004-11-03 11:47 ` Anton Altaparmakov
2004-11-03 12:08 ` [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2) Chris Wedgwood
2004-11-03 19:28 ` [uml-devel] " Blaisorblade
2004-11-03 20:09 ` Chris Wedgwood
2004-11-03 22:51 ` Blaisorblade
2004-11-03 20:18 ` Gerd Knorr
2004-11-03 20:48 ` Chris Wedgwood
2004-11-04 0:23 ` Blaisorblade
2004-11-03 23:19 ` Blaisorblade
[not found] ` <200411040113.27747.blaisorblade_spam@yahoo.it>
[not found] ` <20041104003943.GB17467@taniwha.stupidest.org>
2004-11-04 4:31 ` Fixing UML against NPTL (was: Re: [uml-devel] [PATCH] UML: Use PTRACE_KILL instead of SIGKILL to kill host-OS processes (take #2)) Blaisorblade
2004-11-11 17:45 ` Daniel Jacobowitz
2004-11-11 18:31 ` Christophe Saout
2004-11-11 18:45 ` Daniel Jacobowitz
2004-11-12 0:09 ` Blaisorblade
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox