2 * Copyright (C) 2002- 2004 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL
17 #include <asm/unistd.h>
18 #include <asm/types.h>
20 #include "ptrace_user.h"
21 #include "time_user.h"
22 #include "sysdep/ptrace.h"
23 #include "user_util.h"
24 #include "kern_util.h"
26 #include "stub-data.h"
28 #include "sysdep/sigcontext.h"
29 #include "sysdep/stub.h"
32 #include "skas_ptrace.h"
33 #include "chan_user.h"
34 #include "signal_user.h"
35 #include "registers.h"
37 #include "uml-config.h"
40 int is_skas_winch(int pid, int fd, void *data)
42 if(pid != os_getpgrp())
45 register_winch_irq(-1, fd, -1, data);
49 void wait_stub_done(int pid, int sig, char * fname)
55 err = ptrace(PTRACE_CONT, pid, 0, sig);
57 panic("%s : continue failed, errno = %d\n",
62 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
63 } while((n >= 0) && WIFSTOPPED(status) &&
64 ((WSTOPSIG(status) == SIGVTALRM) ||
65 /* running UML inside a detached screen can cause
68 (WSTOPSIG(status) == SIGWINCH)));
70 if((n < 0) || !WIFSTOPPED(status) ||
71 (WSTOPSIG(status) != SIGUSR1 && WSTOPSIG(status) != SIGTRAP)){
72 unsigned long regs[FRAME_SIZE];
73 if(ptrace(PTRACE_GETREGS, pid, 0, regs) < 0)
74 printk("Failed to get registers from stub, "
75 "errno = %d\n", errno);
79 printk("Stub registers -\n");
80 for(i = 0; i < FRAME_SIZE; i++)
81 printk("\t%d - %lx\n", i, regs[i]);
83 panic("%s : failed to wait for SIGUSR1/SIGTRAP, "
84 "pid = %d, n = %d, errno = %d, status = 0x%x\n",
85 fname, pid, n, errno, status);
89 void get_skas_faultinfo(int pid, struct faultinfo * fi)
94 err = ptrace(PTRACE_FAULTINFO, pid, 0, fi);
96 panic("get_skas_faultinfo - PTRACE_FAULTINFO failed, "
97 "errno = %d\n", errno);
99 /* Special handling for i386, which has different structs */
100 if (sizeof(struct ptrace_faultinfo) < sizeof(struct faultinfo))
101 memset((char *)fi + sizeof(struct ptrace_faultinfo), 0,
102 sizeof(struct faultinfo) -
103 sizeof(struct ptrace_faultinfo));
106 wait_stub_done(pid, SIGSEGV, "get_skas_faultinfo");
108 /* faultinfo is prepared by the stub-segv-handler at start of
109 * the stub stack page. We just have to copy it.
111 memcpy(fi, (void *)current_stub_stack(), sizeof(*fi));
115 static void handle_segv(int pid, union uml_pt_regs * regs)
117 get_skas_faultinfo(pid, ®s->skas.faultinfo);
118 segv(regs->skas.faultinfo, 0, 1, NULL);
121 /*To use the same value of using_sysemu as the caller, ask it that value (in local_using_sysemu)*/
122 static void handle_trap(int pid, union uml_pt_regs *regs, int local_using_sysemu)
126 /* Mark this as a syscall */
127 UPT_SYSCALL_NR(regs) = PT_SYSCALL_NR(regs->skas.regs);
129 if (!local_using_sysemu)
131 err = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_NR_OFFSET, __NR_getpid);
133 panic("handle_trap - nullifying syscall failed errno = %d\n",
136 err = ptrace(PTRACE_SYSCALL, pid, 0, 0);
138 panic("handle_trap - continuing to end of syscall failed, "
139 "errno = %d\n", errno);
141 CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED));
142 if((err < 0) || !WIFSTOPPED(status) ||
143 (WSTOPSIG(status) != SIGTRAP + 0x80))
144 panic("handle_trap - failed to wait at end of syscall, "
145 "errno = %d, status = %d\n", errno, status);
148 handle_syscall(regs);
151 extern int __syscall_stub_start;
152 int stub_code_fd = -1;
153 __u64 stub_code_offset;
155 static int userspace_tramp(void *stack)
159 ptrace(PTRACE_TRACEME, 0, 0, 0);
161 init_new_thread_signals(1);
165 /* This has a pte, but it can't be mapped in with the usual
166 * tlb_flush mechanism because this is part of that mechanism
168 addr = mmap64((void *) UML_CONFIG_STUB_CODE, page_size(),
169 PROT_EXEC, MAP_FIXED | MAP_PRIVATE,
170 stub_code_fd, stub_code_offset);
171 if(addr == MAP_FAILED){
172 printk("mapping stub code failed, errno = %d\n",
181 fd = phys_mapping(to_phys(stack), &offset);
182 addr = mmap((void *) UML_CONFIG_STUB_DATA, page_size(),
183 PROT_READ | PROT_WRITE,
184 MAP_FIXED | MAP_SHARED, fd, offset);
185 if(addr == MAP_FAILED){
186 printk("mapping stub stack failed, "
187 "errno = %d\n", errno);
192 if(!ptrace_faultinfo){
193 unsigned long v = UML_CONFIG_STUB_CODE +
194 (unsigned long) stub_segv_handler -
195 (unsigned long) &__syscall_stub_start;
197 set_sigstack((void *) UML_CONFIG_STUB_DATA, page_size());
198 set_handler(SIGSEGV, (void *) v, SA_ONSTACK,
199 SIGIO, SIGWINCH, SIGALRM, SIGVTALRM,
203 os_stop_process(os_getpid());
207 /* Each element set once, and only accessed by a single processor anyway */
210 int userspace_pid[NR_CPUS];
212 int start_userspace(unsigned long stub_stack)
216 int pid, status, n, flags;
218 if ( stub_code_fd == -1 )
219 stub_code_fd = phys_mapping(to_phys(&__syscall_stub_start),
222 stack = mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE | PROT_EXEC,
223 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
224 if(stack == MAP_FAILED)
225 panic("start_userspace : mmap failed, errno = %d", errno);
226 sp = (unsigned long) stack + PAGE_SIZE - sizeof(void *);
228 flags = CLONE_FILES | SIGCHLD;
229 if(proc_mm) flags |= CLONE_VM;
230 pid = clone(userspace_tramp, (void *) sp, flags, (void *) stub_stack);
232 panic("start_userspace : clone failed, errno = %d", errno);
235 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
237 panic("start_userspace : wait failed, errno = %d",
239 } while(WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM));
241 if(!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP))
242 panic("start_userspace : expected SIGSTOP, got status = %d",
245 if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL, (void *)PTRACE_O_TRACESYSGOOD) < 0)
246 panic("start_userspace : PTRACE_SETOPTIONS failed, errno=%d\n",
249 if(munmap(stack, PAGE_SIZE) < 0)
250 panic("start_userspace : munmap failed, errno = %d\n", errno);
255 void userspace(union uml_pt_regs *regs)
257 int err, status, op, pid = userspace_pid[0];
258 int local_using_sysemu; /*To prevent races if using_sysemu changes under us.*/
261 restore_registers(pid, regs);
263 /* Now we set local_using_sysemu to be used for one loop */
264 local_using_sysemu = get_using_sysemu();
266 op = SELECT_PTRACE_OPERATION(local_using_sysemu, singlestepping(NULL));
268 err = ptrace(op, pid, 0, 0);
270 panic("userspace - could not resume userspace process, "
271 "pid=%d, ptrace operation = %d, errno = %d\n",
274 CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED));
276 panic("userspace - waitpid failed, errno = %d\n",
279 regs->skas.is_user = 1;
280 save_registers(pid, regs);
281 UPT_SYSCALL_NR(regs) = -1; /* Assume: It's not a syscall */
283 if(WIFSTOPPED(status)){
284 switch(WSTOPSIG(status)){
286 if(PTRACE_FULL_FAULTINFO || !ptrace_faultinfo)
287 user_signal(SIGSEGV, regs, pid);
288 else handle_segv(pid, regs);
291 handle_trap(pid, regs, local_using_sysemu);
294 relay_signal(SIGTRAP, regs);
302 user_signal(WSTOPSIG(status), regs, pid);
305 printk("userspace - child stopped with signal "
306 "%d\n", WSTOPSIG(status));
308 pid = userspace_pid[0];
311 /* Avoid -ERESTARTSYS handling in host */
312 PT_SYSCALL_NR(regs->skas.regs) = -1;
316 #define INIT_JMP_NEW_THREAD 0
317 #define INIT_JMP_REMOVE_SIGSTACK 1
318 #define INIT_JMP_CALLBACK 2
319 #define INIT_JMP_HALT 3
320 #define INIT_JMP_REBOOT 4
323 int copy_context_skas0(unsigned long new_stack, int pid)
326 unsigned long regs[MAX_REG_NR];
327 unsigned long current_stack = current_stub_stack();
328 struct stub_data *data = (struct stub_data *) current_stack;
329 struct stub_data *child_data = (struct stub_data *) new_stack;
331 int new_fd = phys_mapping(to_phys((void *)new_stack), &new_offset);
333 /* prepare offset and fd of child's stack as argument for parent's
334 * and child's mmap2 calls
336 *data = ((struct stub_data) { .offset = MMAP_OFFSET(new_offset),
338 .timer = ((struct itimerval)
339 { { 0, 1000000 / hz() },
340 { 0, 1000000 / hz() }})});
341 get_safe_registers(regs);
343 /* Set parent's instruction pointer to start of clone-stub */
344 regs[REGS_IP_INDEX] = UML_CONFIG_STUB_CODE +
345 (unsigned long) stub_clone_handler -
346 (unsigned long) &__syscall_stub_start;
347 regs[REGS_SP_INDEX] = UML_CONFIG_STUB_DATA + PAGE_SIZE -
349 err = ptrace_setregs(pid, regs);
351 panic("copy_context_skas0 : PTRACE_SETREGS failed, "
352 "pid = %d, errno = %d\n", pid, errno);
354 /* set a well known return code for detection of child write failure */
355 child_data->err = 12345678;
357 /* Wait, until parent has finished its work: read child's pid from
358 * parent's stack, and check, if bad result.
360 wait_stub_done(pid, 0, "copy_context_skas0");
364 panic("copy_context_skas0 - stub-parent reports error %d\n",
367 /* Wait, until child has finished too: read child's result from
368 * child's stack and check it.
370 wait_stub_done(pid, -1, "copy_context_skas0");
371 if (child_data->err != UML_CONFIG_STUB_DATA)
372 panic("copy_context_skas0 - stub-child reports error %d\n",
375 if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL,
376 (void *)PTRACE_O_TRACESYSGOOD) < 0)
377 panic("copy_context_skas0 : PTRACE_SETOPTIONS failed, "
378 "errno = %d\n", errno);
384 * This is used only, if stub pages are needed, while proc_mm is
385 * availabl. Opening /proc/mm creates a new mm_context, which lacks
386 * the stub-pages. Thus, we map them using /proc/mm-fd
388 void map_stub_pages(int fd, unsigned long code,
389 unsigned long data, unsigned long stack)
391 struct proc_mm_op mmop;
394 mmop = ((struct proc_mm_op) { .op = MM_MMAP,
400 .flags = MAP_FIXED | MAP_PRIVATE,
402 .offset = stub_code_offset
404 n = os_write_file(fd, &mmop, sizeof(mmop));
405 if(n != sizeof(mmop))
406 panic("map_stub_pages : /proc/mm map for code failed, "
411 int map_fd = phys_mapping(to_phys((void *)stack), &map_offset);
412 mmop = ((struct proc_mm_op)
418 .prot = PROT_READ | PROT_WRITE,
419 .flags = MAP_FIXED | MAP_SHARED,
423 n = os_write_file(fd, &mmop, sizeof(mmop));
424 if(n != sizeof(mmop))
425 panic("map_stub_pages : /proc/mm map for data failed, "
430 void new_thread(void *stack, void **switch_buf_ptr, void **fork_buf_ptr,
431 void (*handler)(int))
434 sigjmp_buf switch_buf, fork_buf;
436 *switch_buf_ptr = &switch_buf;
437 *fork_buf_ptr = &fork_buf;
439 /* Somewhat subtle - siglongjmp restores the signal mask before doing
440 * the longjmp. This means that when jumping from one stack to another
441 * when the target stack has interrupts enabled, an interrupt may occur
442 * on the source stack. This is bad when starting up a process because
443 * it's not supposed to get timer ticks until it has been scheduled.
444 * So, we disable interrupts around the sigsetjmp to ensure that
445 * they can't happen until we get back here where they are safe.
447 flags = get_signals();
449 if(sigsetjmp(fork_buf, 1) == 0)
450 new_thread_proc(stack, handler);
457 void thread_wait(void *sw, void *fb)
459 sigjmp_buf buf, **switch_buf = sw, *fork_buf;
463 if(sigsetjmp(buf, 1) == 0)
464 siglongjmp(*fork_buf, INIT_JMP_REMOVE_SIGSTACK);
467 void switch_threads(void *me, void *next)
469 sigjmp_buf my_buf, **me_ptr = me, *next_buf = next;
472 if(sigsetjmp(my_buf, 1) == 0)
473 siglongjmp(*next_buf, 1);
476 static sigjmp_buf initial_jmpbuf;
478 /* XXX Make these percpu */
479 static void (*cb_proc)(void *arg);
481 static sigjmp_buf *cb_back;
483 int start_idle_thread(void *stack, void *switch_buf_ptr, void **fork_buf_ptr)
485 sigjmp_buf **switch_buf = switch_buf_ptr;
488 set_handler(SIGWINCH, (__sighandler_t) sig_handler,
489 SA_ONSTACK | SA_RESTART, SIGUSR1, SIGIO, SIGALRM,
492 *fork_buf_ptr = &initial_jmpbuf;
493 n = sigsetjmp(initial_jmpbuf, 1);
495 case INIT_JMP_NEW_THREAD:
496 new_thread_proc((void *) stack, new_thread_handler);
498 case INIT_JMP_REMOVE_SIGSTACK:
501 case INIT_JMP_CALLBACK:
503 siglongjmp(*cb_back, 1);
508 case INIT_JMP_REBOOT:
512 panic("Bad sigsetjmp return in start_idle_thread - %d\n", n);
514 siglongjmp(**switch_buf, 1);
517 void remove_sigstack(void)
519 stack_t stack = ((stack_t) { .ss_flags = SS_DISABLE,
523 if(sigaltstack(&stack, NULL) != 0)
524 panic("disabling signal stack failed, errno = %d\n", errno);
527 void initial_thread_cb_skas(void (*proc)(void *), void *arg)
536 if(sigsetjmp(here, 1) == 0)
537 siglongjmp(initial_jmpbuf, INIT_JMP_CALLBACK);
548 siglongjmp(initial_jmpbuf, INIT_JMP_HALT);
551 void reboot_skas(void)
554 siglongjmp(initial_jmpbuf, INIT_JMP_REBOOT);
557 void switch_mm_skas(struct mm_id *mm_idp)
561 #warning need cpu pid in switch_mm_skas
563 err = ptrace(PTRACE_SWITCH_MM, userspace_pid[0], 0,
566 panic("switch_mm_skas - PTRACE_SWITCH_MM failed, "
567 "errno = %d\n", errno);
569 else userspace_pid[0] = mm_idp->u.pid;
573 * Overrides for Emacs so that we follow Linus's tabbing style.
574 * Emacs will notice this stuff at the end of the file and automatically
575 * adjust the settings for this buffer only. This must remain at the end
577 * ---------------------------------------------------------------------------
579 * c-file-style: "linux"