2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
17 #include <asm/unistd.h>
19 #include "user_util.h"
20 #include "kern_util.h"
22 #include "signal_kern.h"
23 #include "signal_user.h"
24 #include "sysdep/ptrace.h"
25 #include "sysdep/sigcontext.h"
27 #include "ptrace_user.h"
28 #include "time_user.h"
31 #include "uml-config.h"
32 #include "choose-mode.h"
35 #ifdef UML_CONFIG_MODE_SKAS
37 #include "skas_ptrace.h"
38 #include "registers.h"
41 static int ptrace_child(void *arg)
44 int pid = os_getpid(), ppid = getppid();
47 if(ptrace(PTRACE_TRACEME, 0, 0, 0) < 0){
49 os_kill_process(pid, 0);
53 /*This syscall will be intercepted by the parent. Don't call more than
55 sc_result = os_getpid();
58 ret = 1; /*Nothing modified by the parent, we are running
60 else if (sc_result == ppid)
61 ret = 0; /*Expected in check_ptrace and check_sysemu when they
62 succeed in modifying the stack frame*/
64 ret = 2; /*Serious trouble! This could be caused by a bug in
65 host 2.6 SKAS3/2.6 patch before release -V6, together
66 with a bug in the UML code itself.*/
70 static int start_ptraced_child(void **stack_out)
76 stack = mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE | PROT_EXEC,
77 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
78 if(stack == MAP_FAILED)
79 panic("check_ptrace : mmap failed, errno = %d", errno);
80 sp = (unsigned long) stack + PAGE_SIZE - sizeof(void *);
81 pid = clone(ptrace_child, (void *) sp, SIGCHLD, NULL);
83 panic("start_ptraced_child : clone failed, errno = %d", errno);
84 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
86 panic("check_ptrace : clone failed, errno = %d", errno);
87 if(!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP))
88 panic("check_ptrace : expected SIGSTOP, got status = %d",
95 /* When testing for SYSEMU support, if it is one of the broken versions, we
96 * must just avoid using sysemu, not panic, but only if SYSEMU features are
98 * So only for SYSEMU features we test mustpanic, while normal host features
101 static int stop_ptraced_child(int pid, void *stack, int exitcode,
104 int status, n, ret = 0;
106 if(ptrace(PTRACE_CONT, pid, 0, 0) < 0)
107 panic("check_ptrace : ptrace failed, errno = %d", errno);
108 CATCH_EINTR(n = waitpid(pid, &status, 0));
109 if(!WIFEXITED(status) || (WEXITSTATUS(status) != exitcode)) {
110 int exit_with = WEXITSTATUS(status);
112 printk("check_ptrace : child exited with status 2. "
113 "Serious trouble happening! Try updating your "
114 "host skas patch!\nDisabling SYSEMU support.");
115 printk("check_ptrace : child exited with exitcode %d, while "
116 "expecting %d; status 0x%x", exit_with,
125 if(munmap(stack, PAGE_SIZE) < 0)
126 panic("check_ptrace : munmap failed, errno = %d", errno);
130 int ptrace_faultinfo = 1;
133 static int __init skas0_cmd_param(char *str, int* add)
135 ptrace_faultinfo = proc_mm = 0;
139 __uml_setup("skas0", skas0_cmd_param,
141 " Disables SKAS3 usage, so that SKAS0 is used, unless \n"
142 " you specify mode=tt.\n\n");
144 static int force_sysemu_disabled = 0;
146 static int __init nosysemu_cmd_param(char *str, int* add)
148 force_sysemu_disabled = 1;
152 __uml_setup("nosysemu", nosysemu_cmd_param,
154 " Turns off syscall emulation patch for ptrace (SYSEMU) on.\n"
155 " SYSEMU is a performance-patch introduced by Laurent Vivier. It changes\n"
156 " behaviour of ptrace() and helps reducing host context switch rate.\n"
157 " To make it working, you need a kernel patch for your host, too.\n"
158 " See http://perso.wanadoo.fr/laurent.vivier/UML/ for further \n"
159 " information.\n\n");
161 static void __init check_sysemu(void)
164 int pid, n, status, count=0;
166 printk("Checking syscall emulation patch for ptrace...");
167 sysemu_supported = 0;
168 pid = start_ptraced_child(&stack);
170 if(ptrace(PTRACE_SYSEMU, pid, 0, 0) < 0)
173 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
175 panic("check_sysemu : wait failed, errno = %d", errno);
176 if(!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGTRAP))
177 panic("check_sysemu : expected SIGTRAP, "
178 "got status = %d", status);
180 n = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_RET_OFFSET,
183 panic("check_sysemu : failed to modify system "
184 "call return, errno = %d", errno);
186 if (stop_ptraced_child(pid, stack, 0, 0) < 0)
189 sysemu_supported = 1;
191 set_using_sysemu(!force_sysemu_disabled);
193 printk("Checking advanced syscall emulation patch for ptrace...");
194 pid = start_ptraced_child(&stack);
196 if(ptrace(PTRACE_OLDSETOPTIONS, pid, 0,
197 (void *) PTRACE_O_TRACESYSGOOD) < 0)
198 panic("check_ptrace: PTRACE_OLDSETOPTIONS failed, errno = %d",
203 if(ptrace(PTRACE_SYSEMU_SINGLESTEP, pid, 0, 0) < 0)
205 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
207 panic("check_ptrace : wait failed, errno = %d", errno);
208 if(WIFSTOPPED(status) && (WSTOPSIG(status) == (SIGTRAP|0x80))){
210 panic("check_ptrace : SYSEMU_SINGLESTEP "
211 "doesn't singlestep");
212 n = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_RET_OFFSET,
215 panic("check_sysemu : failed to modify system "
216 "call return, errno = %d", errno);
219 else if(WIFSTOPPED(status) && (WSTOPSIG(status) == SIGTRAP))
222 panic("check_ptrace : expected SIGTRAP or "
223 "(SIGTRAP|0x80), got status = %d", status);
225 if (stop_ptraced_child(pid, stack, 0, 0) < 0)
228 sysemu_supported = 2;
231 if ( !force_sysemu_disabled )
232 set_using_sysemu(sysemu_supported);
236 stop_ptraced_child(pid, stack, 1, 0);
241 static void __init check_ptrace(void)
244 int pid, syscall, n, status;
246 printk("Checking that ptrace can change system call numbers...");
247 pid = start_ptraced_child(&stack);
249 if(ptrace(PTRACE_OLDSETOPTIONS, pid, 0, (void *)PTRACE_O_TRACESYSGOOD) < 0)
250 panic("check_ptrace: PTRACE_OLDSETOPTIONS failed, errno = %d", errno);
253 if(ptrace(PTRACE_SYSCALL, pid, 0, 0) < 0)
254 panic("check_ptrace : ptrace failed, errno = %d",
256 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
258 panic("check_ptrace : wait failed, errno = %d", errno);
259 if(!WIFSTOPPED(status) || (WSTOPSIG(status) != (SIGTRAP|0x80)))
260 panic("check_ptrace : expected (SIGTRAP|0x80), "
261 "got status = %d", status);
263 syscall = ptrace(PTRACE_PEEKUSR, pid, PT_SYSCALL_NR_OFFSET,
265 if(syscall == __NR_getpid){
266 n = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_NR_OFFSET,
269 panic("check_ptrace : failed to modify system "
270 "call, errno = %d", errno);
274 stop_ptraced_child(pid, stack, 0, 1);
279 void os_early_checks(void)
284 static int __init noprocmm_cmd_param(char *str, int* add)
290 __uml_setup("noprocmm", noprocmm_cmd_param,
292 " Turns off usage of /proc/mm, even if host supports it.\n"
293 " To support /proc/mm, the host needs to be patched using\n"
294 " the current skas3 patch.\n\n");
296 static int __init noptracefaultinfo_cmd_param(char *str, int* add)
298 ptrace_faultinfo = 0;
302 __uml_setup("noptracefaultinfo", noptracefaultinfo_cmd_param,
303 "noptracefaultinfo\n"
304 " Turns off usage of PTRACE_FAULTINFO, even if host supports\n"
305 " it. To support PTRACE_FAULTINFO, the host needs to be patched\n"
306 " using the current skas3 patch.\n\n");
308 #ifdef UML_CONFIG_MODE_SKAS
309 static inline void check_skas3_ptrace_support(void)
311 struct ptrace_faultinfo fi;
315 printf("Checking for the skas3 patch in the host...");
316 pid = start_ptraced_child(&stack);
318 n = ptrace(PTRACE_FAULTINFO, pid, 0, &fi);
320 ptrace_faultinfo = 0;
322 printf("not found\n");
327 if (!ptrace_faultinfo)
328 printf("found but disabled on command line\n");
334 stop_ptraced_child(pid, stack, 1, 1);
337 int can_do_skas(void)
339 printf("Checking for /proc/mm...");
340 if (os_access("/proc/mm", OS_ACC_W_OK) < 0) {
342 printf("not found\n");
346 printf("found but disabled on command line\n");
351 check_skas3_ptrace_support();
355 int can_do_skas(void)