2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
13 #include <asm/unistd.h>
20 #include "ptrace_user.h"
21 #include "kern_util.h"
23 #include "registers.h"
24 #include "uml-config.h"
25 #include "sysdep/ptrace.h"
26 #include "sysdep/stub.h"
29 extern unsigned long batch_syscall_stub, __syscall_stub_start;
31 extern void wait_stub_done(int pid);
33 static inline unsigned long *check_init_stack(struct mm_id * mm_idp,
37 stack = (unsigned long *) mm_idp->stack + 2;
43 static unsigned long syscall_regs[MAX_REG_NR];
45 static int __init init_syscall_regs(void)
47 get_safe_registers(syscall_regs, NULL);
48 syscall_regs[REGS_IP_INDEX] = UML_CONFIG_STUB_CODE +
49 ((unsigned long) &batch_syscall_stub -
50 (unsigned long) &__syscall_stub_start);
54 __initcall(init_syscall_regs);
60 int multi_op_count = 0;
62 static inline long do_syscall_stub(struct mm_id * mm_idp, void **addr)
67 unsigned long * syscall;
68 int err, pid = mm_idp->u.pid;
71 /* FIXME: Need to look up userspace_pid by cpu */
72 pid = userspace_pid[0];
76 n = ptrace_setregs(pid, syscall_regs);
78 printk("Registers - \n");
79 for(i = 0; i < MAX_REG_NR; i++)
80 printk("\t%d\t0x%lx\n", i, syscall_regs[i]);
81 panic("do_syscall_stub : PTRACE_SETREGS failed, errno = %d\n",
85 err = ptrace(PTRACE_CONT, pid, 0, 0);
87 panic("Failed to continue stub, pid = %d, errno = %d\n", pid,
92 /* When the stub stops, we find the following values on the
93 * beginning of the stack:
95 * (long )offset to failed sycall-data (0, if no error)
97 ret = *((unsigned long *) mm_idp->stack);
98 offset = *((unsigned long *) mm_idp->stack + 1);
100 data = (unsigned long *)(mm_idp->stack +
101 offset - UML_CONFIG_STUB_DATA);
102 printk("do_syscall_stub : ret = %ld, offset = %ld, "
103 "data = %p\n", ret, offset, data);
104 syscall = (unsigned long *)((unsigned long)data + data[0]);
105 printk("do_syscall_stub: syscall %ld failed, return value = "
106 "0x%lx, expected return value = 0x%lx\n",
107 syscall[0], ret, syscall[7]);
108 printk(" syscall parameters: "
109 "0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
110 syscall[1], syscall[2], syscall[3],
111 syscall[4], syscall[5], syscall[6]);
112 for(n = 1; n < data[0]/sizeof(long); n++) {
114 printk(" additional syscall data:");
117 printk(" 0x%lx", data[n]);
124 *addr = check_init_stack(mm_idp, NULL);
129 long run_syscall_stub(struct mm_id * mm_idp, int syscall,
130 unsigned long *args, long expected, void **addr,
133 unsigned long *stack = check_init_stack(mm_idp, *addr);
135 if(done && *addr == NULL)
138 *stack += sizeof(long);
139 stack += *stack / sizeof(long);
152 if(!done && ((((unsigned long) stack) & ~PAGE_MASK) <
153 PAGE_SIZE - 10 * sizeof(long))){
158 return do_syscall_stub(mm_idp, addr);
161 long syscall_stub_data(struct mm_id * mm_idp,
162 unsigned long *data, int data_count,
163 void **addr, void **stub_addr)
165 unsigned long *stack;
168 /* If *addr still is uninitialized, it *must* contain NULL.
169 * Thus in this case do_syscall_stub correctly won't be called.
171 if((((unsigned long) *addr) & ~PAGE_MASK) >=
172 PAGE_SIZE - (10 + data_count) * sizeof(long)) {
173 ret = do_syscall_stub(mm_idp, addr);
174 /* in case of error, don't overwrite data on stack */
179 stack = check_init_stack(mm_idp, *addr);
182 *stack = data_count * sizeof(long);
184 memcpy(stack + 1, data, data_count * sizeof(long));
186 *stub_addr = (void *)(((unsigned long)(stack + 1) & ~PAGE_MASK) +
187 UML_CONFIG_STUB_DATA);
192 int map(struct mm_id * mm_idp, unsigned long virt, unsigned long len, int prot,
193 int phys_fd, unsigned long long offset, int done, void **data)
198 struct proc_mm_op map;
199 int fd = mm_idp->u.mm_fd;
201 map = ((struct proc_mm_op) { .op = MM_MMAP,
207 .flags = MAP_SHARED |
212 CATCH_EINTR(ret = write(fd, &map, sizeof(map)));
213 if(ret != sizeof(map)){
215 printk("map : /proc/mm map failed, err = %d\n", -ret);
220 unsigned long args[] = { virt, len, prot,
221 MAP_SHARED | MAP_FIXED, phys_fd,
222 MMAP_OFFSET(offset) };
224 ret = run_syscall_stub(mm_idp, STUB_MMAP_NR, args, virt,
231 int unmap(struct mm_id * mm_idp, unsigned long addr, unsigned long len,
232 int done, void **data)
237 struct proc_mm_op unmap;
238 int fd = mm_idp->u.mm_fd;
240 unmap = ((struct proc_mm_op) { .op = MM_MUNMAP,
244 (unsigned long) addr,
246 CATCH_EINTR(ret = write(fd, &unmap, sizeof(unmap)));
247 if(ret != sizeof(unmap)){
249 printk("unmap - proc_mm write returned %d\n", ret);
254 unsigned long args[] = { (unsigned long) addr, len, 0, 0, 0,
257 ret = run_syscall_stub(mm_idp, __NR_munmap, args, 0,
264 int protect(struct mm_id * mm_idp, unsigned long addr, unsigned long len,
265 unsigned int prot, int done, void **data)
267 struct proc_mm_op protect;
271 int fd = mm_idp->u.mm_fd;
273 protect = ((struct proc_mm_op) { .op = MM_MPROTECT,
277 (unsigned long) addr,
279 .prot = prot } } } );
281 CATCH_EINTR(ret = write(fd, &protect, sizeof(protect)));
282 if(ret != sizeof(protect)){
284 printk("protect failed, err = %d", -ret);
289 unsigned long args[] = { addr, len, prot, 0, 0, 0 };
291 ret = run_syscall_stub(mm_idp, __NR_mprotect, args, 0,
298 void before_mem_skas(unsigned long unused)