diff options
author | kib <kib@FreeBSD.org> | 2011-06-18 12:13:28 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2011-06-18 12:13:28 +0000 |
commit | abf14b630a1991317a3068db1a24c26daed60bcd (patch) | |
tree | 0a577def19ad14365d203aededeb7b656824f2f6 /sys/amd64/ia32 | |
parent | 3d7e5c6374fe3452da95888f2183d61f6d928f05 (diff) | |
download | FreeBSD-src-abf14b630a1991317a3068db1a24c26daed60bcd.zip FreeBSD-src-abf14b630a1991317a3068db1a24c26daed60bcd.tar.gz |
Fix vfork. Add comments.
Diffstat (limited to 'sys/amd64/ia32')
-rw-r--r-- | sys/amd64/ia32/ia32_sigtramp.S | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/sys/amd64/ia32/ia32_sigtramp.S b/sys/amd64/ia32/ia32_sigtramp.S index 7d64470..710834c 100644 --- a/sys/amd64/ia32/ia32_sigtramp.S +++ b/sys/amd64/ia32/ia32_sigtramp.S @@ -79,8 +79,20 @@ ia32_osigcode: jmp 1b +/* + * The lcall $7,$0 emulator cannot use the call gate that does an + * inter-privilege transition. The reason is that the call gate + * does not disable interrupts, and, before the swapgs is + * executed, we would have a window where the ring 0 code is + * executed with the wrong gsbase. + * + * Instead, reflect the lcall $7,$0 back to ring 3 trampoline + * which sets up the frame for int $0x80. + */ ALIGN_TEXT lcall_tramp: + cmpl $SYS_vfork,%eax + je 2f pushl %ebp movl %esp,%ebp pushl 0x24(%ebp) /* arg 6 */ @@ -91,8 +103,19 @@ lcall_tramp: pushl 0x10(%ebp) /* arg 1 */ pushl 0xc(%ebp) /* gap */ int $0x80 - leave + leavel +1: lretl +2: + /* + * vfork handling is special and relies on the libc stub saving + * the return ip in %ecx. If vfork failed, then there is no + * child which can corrupt the frame created by call gate. + */ + int $0x80 + jb 1b + addl $8,%esp + jmpl *%ecx #endif ALIGN_TEXT |