diff options
| author | Jeff Dike <jdike@addtoit.com> | 2005-05-07 00:30:55 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-07 01:09:31 -0400 |
| commit | 2d58cc9a437f3833d242e9d1617ec9b4044e26f3 (patch) | |
| tree | e5c5f2b57b178a66fe880c0f534cbc791cf09147 | |
| parent | 0f7e663dea7f0e22f3b2d07156c5e9d2e8656610 (diff) | |
[PATCH] uml: x86_64 fixes
This fixes some x86_64 bugs -
- maybe_map returns -1 on error instead of 0, which is interpreted as
physical address 0
- removed an include of ipc.h, which isn't needed
- fixed the calculation of signal frame location
- the signal delivery code is now immune to the stack expansion check
- added a missing include
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | arch/um/kernel/skas/uaccess.c | 7 | ||||
| -rw-r--r-- | arch/um/kernel/syscall_kern.c | 1 | ||||
| -rw-r--r-- | arch/um/kernel/trap_kern.c | 2 | ||||
| -rw-r--r-- | arch/um/sys-x86_64/signal.c | 2 | ||||
| -rw-r--r-- | arch/um/sys-x86_64/syscalls.c | 2 |
5 files changed, 9 insertions, 5 deletions
diff --git a/arch/um/kernel/skas/uaccess.c b/arch/um/kernel/skas/uaccess.c index f7da9d027672..75195281081e 100644 --- a/arch/um/kernel/skas/uaccess.c +++ b/arch/um/kernel/skas/uaccess.c | |||
| @@ -29,9 +29,12 @@ static unsigned long maybe_map(unsigned long virt, int is_write) | |||
| 29 | if(IS_ERR(phys) || (is_write && !pte_write(pte))){ | 29 | if(IS_ERR(phys) || (is_write && !pte_write(pte))){ |
| 30 | err = handle_page_fault(virt, 0, is_write, 1, &dummy_code); | 30 | err = handle_page_fault(virt, 0, is_write, 1, &dummy_code); |
| 31 | if(err) | 31 | if(err) |
| 32 | return(0); | 32 | return(-1UL); |
| 33 | phys = um_virt_to_phys(current, virt, NULL); | 33 | phys = um_virt_to_phys(current, virt, NULL); |
| 34 | } | 34 | } |
| 35 | if(IS_ERR(phys)) | ||
| 36 | phys = (void *) -1; | ||
| 37 | |||
| 35 | return((unsigned long) phys); | 38 | return((unsigned long) phys); |
| 36 | } | 39 | } |
| 37 | 40 | ||
| @@ -42,7 +45,7 @@ static int do_op(unsigned long addr, int len, int is_write, | |||
| 42 | int n; | 45 | int n; |
| 43 | 46 | ||
| 44 | addr = maybe_map(addr, is_write); | 47 | addr = maybe_map(addr, is_write); |
| 45 | if(addr == -1) | 48 | if(addr == -1UL) |
| 46 | return(-1); | 49 | return(-1); |
| 47 | 50 | ||
| 48 | page = phys_to_page(addr); | 51 | page = phys_to_page(addr); |
diff --git a/arch/um/kernel/syscall_kern.c b/arch/um/kernel/syscall_kern.c index 42731e04f50f..b7a55251e897 100644 --- a/arch/um/kernel/syscall_kern.c +++ b/arch/um/kernel/syscall_kern.c | |||
| @@ -17,7 +17,6 @@ | |||
| 17 | #include "linux/utime.h" | 17 | #include "linux/utime.h" |
| 18 | #include "asm/mman.h" | 18 | #include "asm/mman.h" |
| 19 | #include "asm/uaccess.h" | 19 | #include "asm/uaccess.h" |
| 20 | #include "asm/ipc.h" | ||
| 21 | #include "kern_util.h" | 20 | #include "kern_util.h" |
| 22 | #include "user_util.h" | 21 | #include "user_util.h" |
| 23 | #include "sysdep/syscalls.h" | 22 | #include "sysdep/syscalls.h" |
diff --git a/arch/um/kernel/trap_kern.c b/arch/um/kernel/trap_kern.c index 54e2ec33a43c..5fca2c61eb98 100644 --- a/arch/um/kernel/trap_kern.c +++ b/arch/um/kernel/trap_kern.c | |||
| @@ -48,7 +48,7 @@ int handle_page_fault(unsigned long address, unsigned long ip, | |||
| 48 | goto good_area; | 48 | goto good_area; |
| 49 | else if(!(vma->vm_flags & VM_GROWSDOWN)) | 49 | else if(!(vma->vm_flags & VM_GROWSDOWN)) |
| 50 | goto out; | 50 | goto out; |
| 51 | else if(!ARCH_IS_STACKGROW(address)) | 51 | else if(is_user && !ARCH_IS_STACKGROW(address)) |
| 52 | goto out; | 52 | goto out; |
| 53 | else if(expand_stack(vma, address)) | 53 | else if(expand_stack(vma, address)) |
| 54 | goto out; | 54 | goto out; |
diff --git a/arch/um/sys-x86_64/signal.c b/arch/um/sys-x86_64/signal.c index b740177066a0..73a7926f7370 100644 --- a/arch/um/sys-x86_64/signal.c +++ b/arch/um/sys-x86_64/signal.c | |||
| @@ -168,7 +168,7 @@ int setup_signal_stack_si(unsigned long stack_top, int sig, | |||
| 168 | 168 | ||
| 169 | frame = (struct rt_sigframe __user *) | 169 | frame = (struct rt_sigframe __user *) |
| 170 | round_down(stack_top - sizeof(struct rt_sigframe), 16) - 8; | 170 | round_down(stack_top - sizeof(struct rt_sigframe), 16) - 8; |
| 171 | frame -= 128; | 171 | ((unsigned char *) frame) -= 128; |
| 172 | 172 | ||
| 173 | if (!access_ok(VERIFY_WRITE, fp, sizeof(struct _fpstate))) | 173 | if (!access_ok(VERIFY_WRITE, fp, sizeof(struct _fpstate))) |
| 174 | goto out; | 174 | goto out; |
diff --git a/arch/um/sys-x86_64/syscalls.c b/arch/um/sys-x86_64/syscalls.c index 2a575ef52bba..dd9914642b8e 100644 --- a/arch/um/sys-x86_64/syscalls.c +++ b/arch/um/sys-x86_64/syscalls.c | |||
| @@ -44,6 +44,8 @@ long sys_modify_ldt_tt(int func, void *ptr, unsigned long bytecount) | |||
| 44 | #ifdef CONFIG_MODE_SKAS | 44 | #ifdef CONFIG_MODE_SKAS |
| 45 | extern int userspace_pid[]; | 45 | extern int userspace_pid[]; |
| 46 | 46 | ||
| 47 | #include "skas_ptrace.h" | ||
| 48 | |||
| 47 | long sys_modify_ldt_skas(int func, void *ptr, unsigned long bytecount) | 49 | long sys_modify_ldt_skas(int func, void *ptr, unsigned long bytecount) |
| 48 | { | 50 | { |
| 49 | struct ptrace_ldt ldt; | 51 | struct ptrace_ldt ldt; |
