drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / um / os-Linux / skas / process.c
CommitLineData
abaf6977 1/*
ba180fd4 2 * Copyright (C) 2002- 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
abaf6977
GS
3 * Licensed under the GPL
4 */
5
6#include <stdlib.h>
abaf6977 7#include <unistd.h>
abaf6977 8#include <sched.h>
ba180fd4
JD
9#include <errno.h>
10#include <string.h>
abaf6977 11#include <sys/mman.h>
ba180fd4
JD
12#include <sys/wait.h>
13#include <asm/unistd.h>
37185b33
AV
14#include <as-layout.h>
15#include <init.h>
16#include <kern_util.h>
17#include <mem.h>
18#include <os.h>
19#include <proc_mm.h>
20#include <ptrace_user.h>
21#include <registers.h>
22#include <skas.h>
23#include <skas_ptrace.h>
24#include <sysdep/stub.h>
abaf6977
GS
25
26int is_skas_winch(int pid, int fd, void *data)
27{
17e05209 28 return pid == getpgrp();
abaf6977
GS
29}
30
f30c2c98
JD
31static int ptrace_dump_regs(int pid)
32{
3e6f2ac4
JD
33 unsigned long regs[MAX_REG_NR];
34 int i;
f30c2c98 35
3e6f2ac4
JD
36 if (ptrace(PTRACE_GETREGS, pid, 0, regs) < 0)
37 return -errno;
ba180fd4
JD
38
39 printk(UM_KERN_ERR "Stub registers -\n");
40 for (i = 0; i < ARRAY_SIZE(regs); i++)
41 printk(UM_KERN_ERR "\t%d - %lx\n", i, regs[i]);
f30c2c98 42
3e6f2ac4 43 return 0;
f30c2c98
JD
44}
45
16dd07bc
JD
46/*
47 * Signals that are OK to receive in the stub - we'll just continue it.
48 * SIGWINCH will happen when UML is inside a detached screen.
49 */
3d5ede6f 50#define STUB_SIG_MASK ((1 << SIGVTALRM) | (1 << SIGWINCH))
16dd07bc
JD
51
52/* Signals that the stub will finish with - anything else is an error */
ee3d9bd4 53#define STUB_DONE_MASK (1 << SIGTRAP)
16dd07bc
JD
54
55void wait_stub_done(int pid)
abaf6977
GS
56{
57 int n, status, err;
58
ba180fd4 59 while (1) {
4dbed85a 60 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED | __WALL));
ba180fd4 61 if ((n < 0) || !WIFSTOPPED(status))
16dd07bc
JD
62 goto bad_wait;
63
ba180fd4 64 if (((1 << WSTOPSIG(status)) & STUB_SIG_MASK) == 0)
16dd07bc
JD
65 break;
66
67 err = ptrace(PTRACE_CONT, pid, 0, 0);
3e6f2ac4
JD
68 if (err) {
69 printk(UM_KERN_ERR "wait_stub_done : continue failed, "
70 "errno = %d\n", errno);
71 fatal_sigsegv();
72 }
abaf6977 73 }
16dd07bc 74
ba180fd4 75 if (((1 << WSTOPSIG(status)) & STUB_DONE_MASK) != 0)
16dd07bc
JD
76 return;
77
78bad_wait:
79 err = ptrace_dump_regs(pid);
ba180fd4
JD
80 if (err)
81 printk(UM_KERN_ERR "Failed to get registers from stub, "
82 "errno = %d\n", -err);
3e6f2ac4
JD
83 printk(UM_KERN_ERR "wait_stub_done : failed to wait for SIGTRAP, "
84 "pid = %d, n = %d, errno = %d, status = 0x%x\n", pid, n, errno,
85 status);
86 fatal_sigsegv();
abaf6977
GS
87}
88
89extern unsigned long current_stub_stack(void);
90
99764fa4 91static void get_skas_faultinfo(int pid, struct faultinfo *fi)
abaf6977
GS
92{
93 int err;
94
ba180fd4 95 if (ptrace_faultinfo) {
abaf6977 96 err = ptrace(PTRACE_FAULTINFO, pid, 0, fi);
3e6f2ac4
JD
97 if (err) {
98 printk(UM_KERN_ERR "get_skas_faultinfo - "
99 "PTRACE_FAULTINFO failed, errno = %d\n", errno);
100 fatal_sigsegv();
101 }
abaf6977
GS
102
103 /* Special handling for i386, which has different structs */
104 if (sizeof(struct ptrace_faultinfo) < sizeof(struct faultinfo))
105 memset((char *)fi + sizeof(struct ptrace_faultinfo), 0,
106 sizeof(struct faultinfo) -
107 sizeof(struct ptrace_faultinfo));
108 }
109 else {
2f56debd
JD
110 unsigned long fpregs[FP_SIZE];
111
112 err = get_fp_registers(pid, fpregs);
113 if (err < 0) {
114 printk(UM_KERN_ERR "save_fp_registers returned %d\n",
115 err);
116 fatal_sigsegv();
117 }
16dd07bc 118 err = ptrace(PTRACE_CONT, pid, 0, SIGSEGV);
3e6f2ac4
JD
119 if (err) {
120 printk(UM_KERN_ERR "Failed to continue stub, pid = %d, "
121 "errno = %d\n", pid, errno);
122 fatal_sigsegv();
123 }
16dd07bc 124 wait_stub_done(pid);
abaf6977 125
ba180fd4
JD
126 /*
127 * faultinfo is prepared by the stub-segv-handler at start of
abaf6977
GS
128 * the stub stack page. We just have to copy it.
129 */
130 memcpy(fi, (void *)current_stub_stack(), sizeof(*fi));
2f56debd
JD
131
132 err = put_fp_registers(pid, fpregs);
133 if (err < 0) {
134 printk(UM_KERN_ERR "put_fp_registers returned %d\n",
135 err);
136 fatal_sigsegv();
137 }
abaf6977
GS
138 }
139}
140
77bf4400 141static void handle_segv(int pid, struct uml_pt_regs * regs)
abaf6977 142{
77bf4400
JD
143 get_skas_faultinfo(pid, &regs->faultinfo);
144 segv(regs->faultinfo, 0, 1, NULL);
abaf6977
GS
145}
146
ba180fd4
JD
147/*
148 * To use the same value of using_sysemu as the caller, ask it that value
149 * (in local_using_sysemu
150 */
151static void handle_trap(int pid, struct uml_pt_regs *regs,
152 int local_using_sysemu)
abaf6977
GS
153{
154 int err, status;
155
e06173bd
JD
156 if ((UPT_IP(regs) >= STUB_START) && (UPT_IP(regs) < STUB_END))
157 fatal_sigsegv();
158
abaf6977 159 /* Mark this as a syscall */
18baddda 160 UPT_SYSCALL_NR(regs) = PT_SYSCALL_NR(regs->gp);
abaf6977
GS
161
162 if (!local_using_sysemu)
163 {
966e803a 164 err = ptrace(PTRACE_POKEUSER, pid, PT_SYSCALL_NR_OFFSET,
abaf6977 165 __NR_getpid);
3e6f2ac4
JD
166 if (err < 0) {
167 printk(UM_KERN_ERR "handle_trap - nullifying syscall "
168 "failed, errno = %d\n", errno);
169 fatal_sigsegv();
170 }
abaf6977
GS
171
172 err = ptrace(PTRACE_SYSCALL, pid, 0, 0);
3e6f2ac4
JD
173 if (err < 0) {
174 printk(UM_KERN_ERR "handle_trap - continuing to end of "
175 "syscall failed, errno = %d\n", errno);
176 fatal_sigsegv();
177 }
abaf6977 178
4dbed85a 179 CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED | __WALL));
ba180fd4 180 if ((err < 0) || !WIFSTOPPED(status) ||
3e6f2ac4
JD
181 (WSTOPSIG(status) != SIGTRAP + 0x80)) {
182 err = ptrace_dump_regs(pid);
183 if (err)
184 printk(UM_KERN_ERR "Failed to get registers "
ba180fd4 185 "from process, errno = %d\n", -err);
3e6f2ac4
JD
186 printk(UM_KERN_ERR "handle_trap - failed to wait at "
187 "end of syscall, errno = %d, status = %d\n",
188 errno, status);
189 fatal_sigsegv();
190 }
abaf6977
GS
191 }
192
193 handle_syscall(regs);
194}
195
196extern int __syscall_stub_start;
abaf6977
GS
197
198static int userspace_tramp(void *stack)
199{
200 void *addr;
537ae946 201 int err;
abaf6977
GS
202
203 ptrace(PTRACE_TRACEME, 0, 0, 0);
204
a24864a1 205 signal(SIGTERM, SIG_DFL);
ee3d9bd4 206 signal(SIGWINCH, SIG_IGN);
a2f018bf 207 err = set_interval();
3e6f2ac4
JD
208 if (err) {
209 printk(UM_KERN_ERR "userspace_tramp - setting timer failed, "
210 "errno = %d\n", err);
211 exit(1);
212 }
abaf6977 213
ba180fd4
JD
214 if (!proc_mm) {
215 /*
216 * This has a pte, but it can't be mapped in with the usual
abaf6977
GS
217 * tlb_flush mechanism because this is part of that mechanism
218 */
09ee011e 219 int fd;
ba180fd4 220 unsigned long long offset;
09ee011e 221 fd = phys_mapping(to_phys(&__syscall_stub_start), &offset);
54ae36f2 222 addr = mmap64((void *) STUB_CODE, UM_KERN_PAGE_SIZE,
09ee011e 223 PROT_EXEC, MAP_FIXED | MAP_PRIVATE, fd, offset);
ba180fd4 224 if (addr == MAP_FAILED) {
54ae36f2
JD
225 printk(UM_KERN_ERR "mapping mmap stub at 0x%lx failed, "
226 "errno = %d\n", STUB_CODE, errno);
abaf6977
GS
227 exit(1);
228 }
229
ba180fd4 230 if (stack != NULL) {
abaf6977 231 fd = phys_mapping(to_phys(stack), &offset);
54ae36f2 232 addr = mmap((void *) STUB_DATA,
1ffb9164 233 UM_KERN_PAGE_SIZE, PROT_READ | PROT_WRITE,
abaf6977 234 MAP_FIXED | MAP_SHARED, fd, offset);
ba180fd4
JD
235 if (addr == MAP_FAILED) {
236 printk(UM_KERN_ERR "mapping segfault stack "
54ae36f2
JD
237 "at 0x%lx failed, errno = %d\n",
238 STUB_DATA, errno);
abaf6977
GS
239 exit(1);
240 }
241 }
242 }
ba180fd4 243 if (!ptrace_faultinfo && (stack != NULL)) {
4b84c69b
JD
244 struct sigaction sa;
245
54ae36f2 246 unsigned long v = STUB_CODE +
abaf6977
GS
247 (unsigned long) stub_segv_handler -
248 (unsigned long) &__syscall_stub_start;
249
54ae36f2 250 set_sigstack((void *) STUB_DATA, UM_KERN_PAGE_SIZE);
4b84c69b 251 sigemptyset(&sa.sa_mask);
9b25fcbd
AV
252 sa.sa_flags = SA_ONSTACK | SA_NODEFER | SA_SIGINFO;
253 sa.sa_sigaction = (void *) v;
4b84c69b 254 sa.sa_restorer = NULL;
3e6f2ac4
JD
255 if (sigaction(SIGSEGV, &sa, NULL) < 0) {
256 printk(UM_KERN_ERR "userspace_tramp - setting SIGSEGV "
257 "handler failed - errno = %d\n", errno);
258 exit(1);
259 }
abaf6977
GS
260 }
261
512b6fb1 262 kill(os_getpid(), SIGSTOP);
ba180fd4 263 return 0;
abaf6977
GS
264}
265
266/* Each element set once, and only accessed by a single processor anyway */
267#undef NR_CPUS
268#define NR_CPUS 1
269int userspace_pid[NR_CPUS];
270
271int start_userspace(unsigned long stub_stack)
272{
273 void *stack;
274 unsigned long sp;
3e6f2ac4 275 int pid, status, n, flags, err;
abaf6977 276
c539ab73
JD
277 stack = mmap(NULL, UM_KERN_PAGE_SIZE,
278 PROT_READ | PROT_WRITE | PROT_EXEC,
abaf6977 279 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
3e6f2ac4
JD
280 if (stack == MAP_FAILED) {
281 err = -errno;
282 printk(UM_KERN_ERR "start_userspace : mmap failed, "
b5498832 283 "errno = %d\n", errno);
3e6f2ac4
JD
284 return err;
285 }
286
c539ab73 287 sp = (unsigned long) stack + UM_KERN_PAGE_SIZE - sizeof(void *);
abaf6977 288
4dbed85a 289 flags = CLONE_FILES;
ba180fd4
JD
290 if (proc_mm)
291 flags |= CLONE_VM;
4dbed85a
SG
292 else
293 flags |= SIGCHLD;
ba180fd4 294
abaf6977 295 pid = clone(userspace_tramp, (void *) sp, flags, (void *) stub_stack);
3e6f2ac4
JD
296 if (pid < 0) {
297 err = -errno;
298 printk(UM_KERN_ERR "start_userspace : clone failed, "
b5498832 299 "errno = %d\n", errno);
3e6f2ac4
JD
300 return err;
301 }
abaf6977
GS
302
303 do {
4dbed85a 304 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED | __WALL));
3e6f2ac4
JD
305 if (n < 0) {
306 err = -errno;
307 printk(UM_KERN_ERR "start_userspace : wait failed, "
b5498832 308 "errno = %d\n", errno);
3e6f2ac4
JD
309 goto out_kill;
310 }
ba180fd4 311 } while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM));
abaf6977 312
3e6f2ac4
JD
313 if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP)) {
314 err = -EINVAL;
315 printk(UM_KERN_ERR "start_userspace : expected SIGSTOP, got "
b5498832 316 "status = %d\n", status);
3e6f2ac4
JD
317 goto out_kill;
318 }
abaf6977 319
ba180fd4 320 if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL,
3e6f2ac4
JD
321 (void *) PTRACE_O_TRACESYSGOOD) < 0) {
322 err = -errno;
323 printk(UM_KERN_ERR "start_userspace : PTRACE_OLDSETOPTIONS "
324 "failed, errno = %d\n", errno);
325 goto out_kill;
326 }
abaf6977 327
3e6f2ac4
JD
328 if (munmap(stack, UM_KERN_PAGE_SIZE) < 0) {
329 err = -errno;
330 printk(UM_KERN_ERR "start_userspace : munmap failed, "
331 "errno = %d\n", errno);
332 goto out_kill;
333 }
abaf6977 334
ba180fd4 335 return pid;
3e6f2ac4
JD
336
337 out_kill:
338 os_kill_ptraced_process(pid, 1);
339 return err;
abaf6977
GS
340}
341
77bf4400 342void userspace(struct uml_pt_regs *regs)
abaf6977 343{
d2753a6d
JD
344 struct itimerval timer;
345 unsigned long long nsecs, now;
abaf6977 346 int err, status, op, pid = userspace_pid[0];
2ea5bc5e
JD
347 /* To prevent races if using_sysemu changes under us.*/
348 int local_using_sysemu;
d3c1cfcd 349 siginfo_t si;
abaf6977 350
b8a42095
AV
351 /* Handle any immediate reschedules or signals */
352 interrupt_end();
353
d2753a6d 354 if (getitimer(ITIMER_VIRTUAL, &timer))
5134d8fe 355 printk(UM_KERN_ERR "Failed to get itimer, errno = %d\n", errno);
1a805219
JD
356 nsecs = timer.it_value.tv_sec * UM_NSEC_PER_SEC +
357 timer.it_value.tv_usec * UM_NSEC_PER_USEC;
d2753a6d
JD
358 nsecs += os_nsecs();
359
ba180fd4 360 while (1) {
3e6f2ac4
JD
361 /*
362 * This can legitimately fail if the process loads a
363 * bogus value into a segment register. It will
364 * segfault and PTRACE_GETREGS will read that value
365 * out of the process. However, PTRACE_SETREGS will
366 * fail. In this case, there is nothing to do but
367 * just kill the process.
368 */
d25f2e12 369 if (ptrace(PTRACE_SETREGS, pid, 0, regs->gp))
3e6f2ac4 370 fatal_sigsegv();
abaf6977 371
fbfe9c84
IL
372 if (put_fp_registers(pid, regs->fp))
373 fatal_sigsegv();
374
abaf6977
GS
375 /* Now we set local_using_sysemu to be used for one loop */
376 local_using_sysemu = get_using_sysemu();
377
2ea5bc5e
JD
378 op = SELECT_PTRACE_OPERATION(local_using_sysemu,
379 singlestepping(NULL));
abaf6977 380
3e6f2ac4
JD
381 if (ptrace(op, pid, 0, 0)) {
382 printk(UM_KERN_ERR "userspace - ptrace continue "
383 "failed, op = %d, errno = %d\n", op, errno);
384 fatal_sigsegv();
385 }
abaf6977 386
4dbed85a 387 CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED | __WALL));
3e6f2ac4
JD
388 if (err < 0) {
389 printk(UM_KERN_ERR "userspace - wait failed, "
390 "errno = %d\n", errno);
391 fatal_sigsegv();
392 }
abaf6977 393
77bf4400 394 regs->is_user = 1;
3e6f2ac4
JD
395 if (ptrace(PTRACE_GETREGS, pid, 0, regs->gp)) {
396 printk(UM_KERN_ERR "userspace - PTRACE_GETREGS failed, "
397 "errno = %d\n", errno);
398 fatal_sigsegv();
399 }
d25f2e12 400
fbfe9c84
IL
401 if (get_fp_registers(pid, regs->fp)) {
402 printk(UM_KERN_ERR "userspace - get_fp_registers failed, "
403 "errno = %d\n", errno);
404 fatal_sigsegv();
405 }
406
abaf6977
GS
407 UPT_SYSCALL_NR(regs) = -1; /* Assume: It's not a syscall */
408
ba180fd4 409 if (WIFSTOPPED(status)) {
16dd07bc 410 int sig = WSTOPSIG(status);
d3c1cfcd
MP
411
412 ptrace(PTRACE_GETSIGINFO, pid, 0, &si);
413
5134d8fe 414 switch (sig) {
abaf6977 415 case SIGSEGV:
ba180fd4
JD
416 if (PTRACE_FULL_FAULTINFO ||
417 !ptrace_faultinfo) {
418 get_skas_faultinfo(pid,
419 &regs->faultinfo);
d3c1cfcd
MP
420 (*sig_info[SIGSEGV])(SIGSEGV, &si,
421 regs);
16dd07bc 422 }
abaf6977
GS
423 else handle_segv(pid, regs);
424 break;
425 case SIGTRAP + 0x80:
426 handle_trap(pid, regs, local_using_sysemu);
427 break;
428 case SIGTRAP:
d3c1cfcd 429 relay_signal(SIGTRAP, &si, regs);
abaf6977 430 break;
abaf6977 431 case SIGVTALRM:
d2753a6d 432 now = os_nsecs();
d25f2e12 433 if (now < nsecs)
d2753a6d
JD
434 break;
435 block_signals();
d3c1cfcd 436 (*sig_info[sig])(sig, &si, regs);
d2753a6d 437 unblock_signals();
1a805219
JD
438 nsecs = timer.it_value.tv_sec *
439 UM_NSEC_PER_SEC +
440 timer.it_value.tv_usec *
441 UM_NSEC_PER_USEC;
d2753a6d
JD
442 nsecs += os_nsecs();
443 break;
444 case SIGIO:
abaf6977
GS
445 case SIGILL:
446 case SIGBUS:
447 case SIGFPE:
448 case SIGWINCH:
16dd07bc 449 block_signals();
d3c1cfcd 450 (*sig_info[sig])(sig, &si, regs);
16dd07bc 451 unblock_signals();
abaf6977
GS
452 break;
453 default:
96cee304 454 printk(UM_KERN_ERR "userspace - child stopped "
ba180fd4 455 "with signal %d\n", sig);
3e6f2ac4 456 fatal_sigsegv();
abaf6977 457 }
abaf6977
GS
458 pid = userspace_pid[0];
459 interrupt_end();
460
461 /* Avoid -ERESTARTSYS handling in host */
ba180fd4 462 if (PT_SYSCALL_NR_OFFSET != PT_SYSCALL_RET_OFFSET)
18baddda 463 PT_SYSCALL_NR(regs->gp) = -1;
abaf6977
GS
464 }
465 }
466}
abaf6977 467
16dd07bc 468static unsigned long thread_regs[MAX_REG_NR];
fbfe9c84 469static unsigned long thread_fp_regs[FP_SIZE];
16dd07bc
JD
470
471static int __init init_thread_regs(void)
472{
fbfe9c84 473 get_safe_registers(thread_regs, thread_fp_regs);
16dd07bc 474 /* Set parent's instruction pointer to start of clone-stub */
54ae36f2 475 thread_regs[REGS_IP_INDEX] = STUB_CODE +
16dd07bc
JD
476 (unsigned long) stub_clone_handler -
477 (unsigned long) &__syscall_stub_start;
54ae36f2 478 thread_regs[REGS_SP_INDEX] = STUB_DATA + UM_KERN_PAGE_SIZE -
16dd07bc
JD
479 sizeof(void *);
480#ifdef __SIGNAL_FRAMESIZE
481 thread_regs[REGS_SP_INDEX] -= __SIGNAL_FRAMESIZE;
482#endif
483 return 0;
484}
485
486__initcall(init_thread_regs);
487
abaf6977
GS
488int copy_context_skas0(unsigned long new_stack, int pid)
489{
1a805219 490 struct timeval tv = { .tv_sec = 0, .tv_usec = UM_USEC_PER_SEC / UM_HZ };
abaf6977 491 int err;
abaf6977
GS
492 unsigned long current_stack = current_stub_stack();
493 struct stub_data *data = (struct stub_data *) current_stack;
494 struct stub_data *child_data = (struct stub_data *) new_stack;
0a7675aa 495 unsigned long long new_offset;
abaf6977
GS
496 int new_fd = phys_mapping(to_phys((void *)new_stack), &new_offset);
497
ba180fd4
JD
498 /*
499 * prepare offset and fd of child's stack as argument for parent's
abaf6977
GS
500 * and child's mmap2 calls
501 */
502 *data = ((struct stub_data) { .offset = MMAP_OFFSET(new_offset),
503 .fd = new_fd,
504 .timer = ((struct itimerval)
d2753a6d
JD
505 { .it_value = tv,
506 .it_interval = tv }) });
507
16dd07bc 508 err = ptrace_setregs(pid, thread_regs);
3e6f2ac4
JD
509 if (err < 0) {
510 err = -errno;
511 printk(UM_KERN_ERR "copy_context_skas0 : PTRACE_SETREGS "
512 "failed, pid = %d, errno = %d\n", pid, -err);
513 return err;
514 }
abaf6977 515
fbfe9c84
IL
516 err = put_fp_registers(pid, thread_fp_regs);
517 if (err < 0) {
518 printk(UM_KERN_ERR "copy_context_skas0 : put_fp_registers "
519 "failed, pid = %d, err = %d\n", pid, err);
520 return err;
521 }
522
abaf6977
GS
523 /* set a well known return code for detection of child write failure */
524 child_data->err = 12345678;
525
ba180fd4
JD
526 /*
527 * Wait, until parent has finished its work: read child's pid from
abaf6977
GS
528 * parent's stack, and check, if bad result.
529 */
16dd07bc 530 err = ptrace(PTRACE_CONT, pid, 0, 0);
3e6f2ac4
JD
531 if (err) {
532 err = -errno;
533 printk(UM_KERN_ERR "Failed to continue new process, pid = %d, "
534 "errno = %d\n", pid, errno);
535 return err;
536 }
537
16dd07bc 538 wait_stub_done(pid);
abaf6977
GS
539
540 pid = data->err;
3e6f2ac4
JD
541 if (pid < 0) {
542 printk(UM_KERN_ERR "copy_context_skas0 - stub-parent reports "
543 "error %d\n", -pid);
544 return pid;
545 }
abaf6977 546
ba180fd4
JD
547 /*
548 * Wait, until child has finished too: read child's result from
abaf6977
GS
549 * child's stack and check it.
550 */
16dd07bc 551 wait_stub_done(pid);
3e6f2ac4
JD
552 if (child_data->err != STUB_DATA) {
553 printk(UM_KERN_ERR "copy_context_skas0 - stub-child reports "
554 "error %ld\n", child_data->err);
555 err = child_data->err;
556 goto out_kill;
557 }
abaf6977
GS
558
559 if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL,
3e6f2ac4
JD
560 (void *)PTRACE_O_TRACESYSGOOD) < 0) {
561 err = -errno;
562 printk(UM_KERN_ERR "copy_context_skas0 : PTRACE_OLDSETOPTIONS "
563 "failed, errno = %d\n", errno);
564 goto out_kill;
565 }
abaf6977
GS
566
567 return pid;
3e6f2ac4
JD
568
569 out_kill:
570 os_kill_ptraced_process(pid, 1);
571 return err;
abaf6977
GS
572}
573
574/*
575 * This is used only, if stub pages are needed, while proc_mm is
ef0470c0 576 * available. Opening /proc/mm creates a new mm_context, which lacks
abaf6977
GS
577 * the stub-pages. Thus, we map them using /proc/mm-fd
578 */
3e6f2ac4
JD
579int map_stub_pages(int fd, unsigned long code, unsigned long data,
580 unsigned long stack)
abaf6977
GS
581{
582 struct proc_mm_op mmop;
583 int n;
0a7675aa 584 unsigned long long code_offset;
09ee011e
JD
585 int code_fd = phys_mapping(to_phys((void *) &__syscall_stub_start),
586 &code_offset);
abaf6977
GS
587
588 mmop = ((struct proc_mm_op) { .op = MM_MMAP,
589 .u =
590 { .mmap =
591 { .addr = code,
c539ab73 592 .len = UM_KERN_PAGE_SIZE,
abaf6977
GS
593 .prot = PROT_EXEC,
594 .flags = MAP_FIXED | MAP_PRIVATE,
09ee011e
JD
595 .fd = code_fd,
596 .offset = code_offset
abaf6977 597 } } });
a61f334f 598 CATCH_EINTR(n = write(fd, &mmop, sizeof(mmop)));
ba180fd4 599 if (n != sizeof(mmop)) {
a61f334f 600 n = errno;
ba180fd4
JD
601 printk(UM_KERN_ERR "mmap args - addr = 0x%lx, fd = %d, "
602 "offset = %llx\n", code, code_fd,
603 (unsigned long long) code_offset);
3e6f2ac4
JD
604 printk(UM_KERN_ERR "map_stub_pages : /proc/mm map for code "
605 "failed, err = %d\n", n);
606 return -n;
b4cf95c6 607 }
abaf6977 608
ba180fd4 609 if (stack) {
0a7675aa 610 unsigned long long map_offset;
abaf6977
GS
611 int map_fd = phys_mapping(to_phys((void *)stack), &map_offset);
612 mmop = ((struct proc_mm_op)
613 { .op = MM_MMAP,
614 .u =
615 { .mmap =
616 { .addr = data,
c539ab73 617 .len = UM_KERN_PAGE_SIZE,
abaf6977
GS
618 .prot = PROT_READ | PROT_WRITE,
619 .flags = MAP_FIXED | MAP_SHARED,
620 .fd = map_fd,
621 .offset = map_offset
622 } } });
a61f334f 623 CATCH_EINTR(n = write(fd, &mmop, sizeof(mmop)));
3e6f2ac4
JD
624 if (n != sizeof(mmop)) {
625 n = errno;
626 printk(UM_KERN_ERR "map_stub_pages : /proc/mm map for "
627 "data failed, err = %d\n", n);
628 return -n;
629 }
abaf6977 630 }
3e6f2ac4
JD
631
632 return 0;
abaf6977
GS
633}
634
3c917350 635void new_thread(void *stack, jmp_buf *buf, void (*handler)(void))
abaf6977 636{
3c917350 637 (*buf)[0].JB_IP = (unsigned long) handler;
e1a79c40
JD
638 (*buf)[0].JB_SP = (unsigned long) stack + UM_THREAD_SIZE -
639 sizeof(void *);
abaf6977
GS
640}
641
e2216feb 642#define INIT_JMP_NEW_THREAD 0
3c917350
JD
643#define INIT_JMP_CALLBACK 1
644#define INIT_JMP_HALT 2
645#define INIT_JMP_REBOOT 3
abaf6977 646
3c917350 647void switch_threads(jmp_buf *me, jmp_buf *you)
abaf6977 648{
ba180fd4 649 if (UML_SETJMP(me) == 0)
3c917350 650 UML_LONGJMP(you, 1);
abaf6977
GS
651}
652
ad28e029 653static jmp_buf initial_jmpbuf;
abaf6977
GS
654
655/* XXX Make these percpu */
656static void (*cb_proc)(void *arg);
657static void *cb_arg;
ad28e029 658static jmp_buf *cb_back;
abaf6977 659
3c917350 660int start_idle_thread(void *stack, jmp_buf *switch_buf)
abaf6977 661{
a5df0d1a 662 int n;
abaf6977 663
00361683 664 set_handler(SIGWINCH);
abaf6977 665
77f6af77
JD
666 /*
667 * Can't use UML_SETJMP or UML_LONGJMP here because they save
668 * and restore signals, with the possible side-effect of
669 * trying to handle any signals which came when they were
670 * blocked, which can't be done on this stack.
671 * Signals must be blocked when jumping back here and restored
672 * after returning to the jumper.
673 */
674 n = setjmp(initial_jmpbuf);
5134d8fe 675 switch (n) {
abaf6977 676 case INIT_JMP_NEW_THREAD:
3c917350
JD
677 (*switch_buf)[0].JB_IP = (unsigned long) new_thread_handler;
678 (*switch_buf)[0].JB_SP = (unsigned long) stack +
e1a79c40 679 UM_THREAD_SIZE - sizeof(void *);
abaf6977
GS
680 break;
681 case INIT_JMP_CALLBACK:
682 (*cb_proc)(cb_arg);
77f6af77 683 longjmp(*cb_back, 1);
abaf6977
GS
684 break;
685 case INIT_JMP_HALT:
686 kmalloc_ok = 0;
ba180fd4 687 return 0;
abaf6977
GS
688 case INIT_JMP_REBOOT:
689 kmalloc_ok = 0;
ba180fd4 690 return 1;
abaf6977 691 default:
3e6f2ac4
JD
692 printk(UM_KERN_ERR "Bad sigsetjmp return in "
693 "start_idle_thread - %d\n", n);
694 fatal_sigsegv();
abaf6977 695 }
77f6af77 696 longjmp(*switch_buf, 1);
abaf6977
GS
697}
698
699void initial_thread_cb_skas(void (*proc)(void *), void *arg)
700{
ad28e029 701 jmp_buf here;
abaf6977
GS
702
703 cb_proc = proc;
704 cb_arg = arg;
705 cb_back = &here;
706
707 block_signals();
ba180fd4 708 if (UML_SETJMP(&here) == 0)
ad28e029 709 UML_LONGJMP(&initial_jmpbuf, INIT_JMP_CALLBACK);
abaf6977
GS
710 unblock_signals();
711
712 cb_proc = NULL;
713 cb_arg = NULL;
714 cb_back = NULL;
715}
716
717void halt_skas(void)
718{
719 block_signals();
ad28e029 720 UML_LONGJMP(&initial_jmpbuf, INIT_JMP_HALT);
abaf6977
GS
721}
722
723void reboot_skas(void)
724{
725 block_signals();
ad28e029 726 UML_LONGJMP(&initial_jmpbuf, INIT_JMP_REBOOT);
abaf6977
GS
727}
728
77bf4400 729void __switch_mm(struct mm_id *mm_idp)
abaf6977
GS
730{
731 int err;
732
77bf4400 733 /* FIXME: need cpu pid in __switch_mm */
ba180fd4 734 if (proc_mm) {
abaf6977
GS
735 err = ptrace(PTRACE_SWITCH_MM, userspace_pid[0], 0,
736 mm_idp->u.mm_fd);
3e6f2ac4
JD
737 if (err) {
738 printk(UM_KERN_ERR "__switch_mm - PTRACE_SWITCH_MM "
739 "failed, errno = %d\n", errno);
740 fatal_sigsegv();
741 }
abaf6977
GS
742 }
743 else userspace_pid[0] = mm_idp->u.pid;
744}