]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/um/os-Linux/start_up.c
um: move sysrq.h out of include/shared
[mirror_ubuntu-artful-kernel.git] / arch / um / os-Linux / start_up.c
CommitLineData
60d339f6 1/*
ba180fd4 2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
3 * Licensed under the GPL
4 */
5
6#include <stdio.h>
0f80bc85 7#include <stdlib.h>
ba180fd4 8#include <stdarg.h>
1da177e4 9#include <unistd.h>
1da177e4 10#include <errno.h>
ba180fd4
JD
11#include <fcntl.h>
12#include <sched.h>
13#include <signal.h>
14#include <string.h>
1da177e4 15#include <sys/mman.h>
ba180fd4
JD
16#include <sys/stat.h>
17#include <sys/wait.h>
1da177e4 18#include <asm/unistd.h>
1da177e4 19#include "init.h"
ba180fd4
JD
20#include "os.h"
21#include "mem_user.h"
22#include "ptrace_user.h"
1da177e4 23#include "registers.h"
53c25878 24#include "skas.h"
ba180fd4 25#include "skas_ptrace.h"
1da177e4 26
626c59f5 27static void ptrace_child(void)
1da177e4
LT
28{
29 int ret;
512b6fb1 30 /* Calling os_getpid because some libcs cached getpid incorrectly */
1da177e4
LT
31 int pid = os_getpid(), ppid = getppid();
32 int sc_result;
33
626c59f5
WC
34 if (change_sig(SIGWINCH, 0) < 0 ||
35 ptrace(PTRACE_TRACEME, 0, 0, 0) < 0) {
1da177e4 36 perror("ptrace");
512b6fb1 37 kill(pid, SIGKILL);
1da177e4 38 }
73c8f444 39 kill(pid, SIGSTOP);
1da177e4 40
ba180fd4
JD
41 /*
42 * This syscall will be intercepted by the parent. Don't call more than
43 * once, please.
44 */
1da177e4
LT
45 sc_result = os_getpid();
46
47 if (sc_result == pid)
ba180fd4
JD
48 /* Nothing modified by the parent, we are running normally. */
49 ret = 1;
1da177e4 50 else if (sc_result == ppid)
ba180fd4
JD
51 /*
52 * Expected in check_ptrace and check_sysemu when they succeed
53 * in modifying the stack frame
54 */
55 ret = 0;
1da177e4 56 else
ba180fd4
JD
57 /* Serious trouble! This could be caused by a bug in host 2.6
58 * SKAS3/2.6 patch before release -V6, together with a bug in
59 * the UML code itself.
60 */
61 ret = 2;
bf8fde78
JD
62
63 exit(ret);
1da177e4
LT
64}
65
c9a3072d 66static void fatal_perror(const char *str)
3a150e1d
JD
67{
68 perror(str);
69 exit(1);
70}
71
72static void fatal(char *fmt, ...)
73{
74 va_list list;
75
76 va_start(list, fmt);
626c59f5 77 vfprintf(stderr, fmt, list);
3a150e1d 78 va_end(list);
3a150e1d
JD
79
80 exit(1);
81}
82
83static void non_fatal(char *fmt, ...)
84{
85 va_list list;
86
87 va_start(list, fmt);
626c59f5 88 vfprintf(stderr, fmt, list);
3a150e1d 89 va_end(list);
3a150e1d
JD
90}
91
3cdaf455 92static int start_ptraced_child(void)
1da177e4 93{
1da177e4 94 int pid, n, status;
60d339f6 95
3cdaf455
JD
96 pid = fork();
97 if (pid == 0)
98 ptrace_child();
99 else if (pid < 0)
100 fatal_perror("start_ptraced_child : fork failed");
ba180fd4 101
1da177e4 102 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
ba180fd4 103 if (n < 0)
3cdaf455 104 fatal_perror("check_ptrace : waitpid failed");
ba180fd4 105 if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP))
3a150e1d 106 fatal("check_ptrace : expected SIGSTOP, got status = %d",
1da177e4
LT
107 status);
108
9eae9b13 109 return pid;
1da177e4
LT
110}
111
60d339f6
GS
112/* When testing for SYSEMU support, if it is one of the broken versions, we
113 * must just avoid using sysemu, not panic, but only if SYSEMU features are
114 * broken.
1da177e4 115 * So only for SYSEMU features we test mustpanic, while normal host features
60d339f6
GS
116 * must work anyway!
117 */
3cdaf455 118static int stop_ptraced_child(int pid, int exitcode, int mustexit)
1da177e4
LT
119{
120 int status, n, ret = 0;
121
f1ef9167
JD
122 if (ptrace(PTRACE_CONT, pid, 0, 0) < 0) {
123 perror("stop_ptraced_child : ptrace failed");
124 return -1;
125 }
1da177e4 126 CATCH_EINTR(n = waitpid(pid, &status, 0));
ba180fd4 127 if (!WIFEXITED(status) || (WEXITSTATUS(status) != exitcode)) {
1da177e4
LT
128 int exit_with = WEXITSTATUS(status);
129 if (exit_with == 2)
3a150e1d 130 non_fatal("check_ptrace : child exited with status 2. "
cf6acedb 131 "\nDisabling SYSEMU support.\n");
3a150e1d
JD
132 non_fatal("check_ptrace : child exited with exitcode %d, while "
133 "expecting %d; status 0x%x\n", exit_with,
134 exitcode, status);
135 if (mustexit)
136 exit(1);
1da177e4
LT
137 ret = -1;
138 }
139
1da177e4
LT
140 return ret;
141}
142
7242a400 143/* Changed only during early boot */
53c25878
JD
144int ptrace_faultinfo;
145static int disable_ptrace_faultinfo;
146
147int ptrace_ldt;
148static int disable_ptrace_ldt;
149
150int proc_mm;
151static int disable_proc_mm;
152
153int have_switch_mm;
154static int disable_switch_mm;
155
156int skas_needs_stub;
cb66504d
PBG
157
158static int __init skas0_cmd_param(char *str, int* add)
159{
53c25878
JD
160 disable_ptrace_faultinfo = 1;
161 disable_ptrace_ldt = 1;
162 disable_proc_mm = 1;
163 disable_switch_mm = 1;
164
cb66504d
PBG
165 return 0;
166}
167
9e3d862e
PBG
168/* The two __uml_setup would conflict, without this stupid alias. */
169
170static int __init mode_skas0_cmd_param(char *str, int* add)
171 __attribute__((alias("skas0_cmd_param")));
172
60d339f6 173__uml_setup("skas0", skas0_cmd_param,
53c25878
JD
174"skas0\n"
175" Disables SKAS3 and SKAS4 usage, so that SKAS0 is used\n\n");
60d339f6 176
9e3d862e 177__uml_setup("mode=skas0", mode_skas0_cmd_param,
53c25878
JD
178"mode=skas0\n"
179" Disables SKAS3 and SKAS4 usage, so that SKAS0 is used.\n\n");
9e3d862e 180
7242a400 181/* Changed only during early boot */
60d339f6
GS
182static int force_sysemu_disabled = 0;
183
1da177e4
LT
184static int __init nosysemu_cmd_param(char *str, int* add)
185{
186 force_sysemu_disabled = 1;
187 return 0;
188}
189
190__uml_setup("nosysemu", nosysemu_cmd_param,
60d339f6
GS
191"nosysemu\n"
192" Turns off syscall emulation patch for ptrace (SYSEMU) on.\n"
193" SYSEMU is a performance-patch introduced by Laurent Vivier. It changes\n"
194" behaviour of ptrace() and helps reducing host context switch rate.\n"
195" To make it working, you need a kernel patch for your host, too.\n"
196" See http://perso.wanadoo.fr/laurent.vivier/UML/ for further \n"
197" information.\n\n");
1da177e4
LT
198
199static void __init check_sysemu(void)
200{
cf6acedb 201 unsigned long regs[MAX_REG_NR];
9eae9b13 202 int pid, n, status, count=0;
1da177e4 203
3a150e1d 204 non_fatal("Checking syscall emulation patch for ptrace...");
1da177e4 205 sysemu_supported = 0;
3cdaf455 206 pid = start_ptraced_child();
1da177e4 207
ba180fd4 208 if (ptrace(PTRACE_SYSEMU, pid, 0, 0) < 0)
1da177e4
LT
209 goto fail;
210
211 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
212 if (n < 0)
3a150e1d 213 fatal_perror("check_sysemu : wait failed");
ba180fd4 214 if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGTRAP))
f1ef9167 215 fatal("check_sysemu : expected SIGTRAP, got status = %d\n",
3a150e1d 216 status);
1da177e4 217
ba180fd4 218 if (ptrace(PTRACE_GETREGS, pid, 0, regs) < 0)
cf6acedb 219 fatal_perror("check_sysemu : PTRACE_GETREGS failed");
ba180fd4 220 if (PT_SYSCALL_NR(regs) != __NR_getpid) {
cf6acedb
JD
221 non_fatal("check_sysemu got system call number %d, "
222 "expected %d...", PT_SYSCALL_NR(regs), __NR_getpid);
223 goto fail;
224 }
225
966e803a 226 n = ptrace(PTRACE_POKEUSER, pid, PT_SYSCALL_RET_OFFSET, os_getpid());
ba180fd4 227 if (n < 0) {
cf6acedb
JD
228 non_fatal("check_sysemu : failed to modify system call "
229 "return");
230 goto fail;
231 }
1da177e4 232
3cdaf455 233 if (stop_ptraced_child(pid, 0, 0) < 0)
1da177e4
LT
234 goto fail_stopped;
235
236 sysemu_supported = 1;
3a150e1d 237 non_fatal("OK\n");
1da177e4
LT
238 set_using_sysemu(!force_sysemu_disabled);
239
3a150e1d 240 non_fatal("Checking advanced syscall emulation patch for ptrace...");
3cdaf455 241 pid = start_ptraced_child();
f9dfefe4 242
ba180fd4 243 if ((ptrace(PTRACE_OLDSETOPTIONS, pid, 0,
3a150e1d 244 (void *) PTRACE_O_TRACESYSGOOD) < 0))
5062910a 245 fatal_perror("check_sysemu: PTRACE_OLDSETOPTIONS failed");
f9dfefe4 246
ba180fd4 247 while (1) {
1da177e4 248 count++;
ba180fd4 249 if (ptrace(PTRACE_SYSEMU_SINGLESTEP, pid, 0, 0) < 0)
1da177e4
LT
250 goto fail;
251 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
ba180fd4 252 if (n < 0)
5062910a 253 fatal_perror("check_sysemu: wait failed");
3a150e1d 254
ba180fd4
JD
255 if (WIFSTOPPED(status) &&
256 (WSTOPSIG(status) == (SIGTRAP|0x80))) {
f1ef9167 257 if (!count) {
5062910a 258 non_fatal("check_sysemu: SYSEMU_SINGLESTEP "
f1ef9167
JD
259 "doesn't singlestep");
260 goto fail;
261 }
966e803a 262 n = ptrace(PTRACE_POKEUSER, pid, PT_SYSCALL_RET_OFFSET,
1da177e4 263 os_getpid());
ba180fd4 264 if (n < 0)
3a150e1d
JD
265 fatal_perror("check_sysemu : failed to modify "
266 "system call return");
1da177e4
LT
267 break;
268 }
ba180fd4 269 else if (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGTRAP))
f9dfefe4 270 count++;
f1ef9167 271 else {
5062910a 272 non_fatal("check_sysemu: expected SIGTRAP or "
f1ef9167
JD
273 "(SIGTRAP | 0x80), got status = %d\n",
274 status);
275 goto fail;
276 }
1da177e4 277 }
3cdaf455 278 if (stop_ptraced_child(pid, 0, 0) < 0)
1da177e4
LT
279 goto fail_stopped;
280
281 sysemu_supported = 2;
3a150e1d 282 non_fatal("OK\n");
1da177e4 283
ba180fd4 284 if (!force_sysemu_disabled)
1da177e4
LT
285 set_using_sysemu(sysemu_supported);
286 return;
287
288fail:
3cdaf455 289 stop_ptraced_child(pid, 1, 0);
1da177e4 290fail_stopped:
3a150e1d 291 non_fatal("missing\n");
1da177e4
LT
292}
293
60d339f6 294static void __init check_ptrace(void)
1da177e4 295{
1da177e4
LT
296 int pid, syscall, n, status;
297
3a150e1d 298 non_fatal("Checking that ptrace can change system call numbers...");
3cdaf455 299 pid = start_ptraced_child();
1da177e4 300
ba180fd4 301 if ((ptrace(PTRACE_OLDSETOPTIONS, pid, 0,
3a150e1d
JD
302 (void *) PTRACE_O_TRACESYSGOOD) < 0))
303 fatal_perror("check_ptrace: PTRACE_OLDSETOPTIONS failed");
1da177e4 304
ba180fd4
JD
305 while (1) {
306 if (ptrace(PTRACE_SYSCALL, pid, 0, 0) < 0)
3a150e1d
JD
307 fatal_perror("check_ptrace : ptrace failed");
308
1da177e4 309 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
ba180fd4 310 if (n < 0)
3a150e1d
JD
311 fatal_perror("check_ptrace : wait failed");
312
ba180fd4 313 if (!WIFSTOPPED(status) ||
3a150e1d
JD
314 (WSTOPSIG(status) != (SIGTRAP | 0x80)))
315 fatal("check_ptrace : expected (SIGTRAP|0x80), "
316 "got status = %d", status);
60d339f6 317
966e803a 318 syscall = ptrace(PTRACE_PEEKUSER, pid, PT_SYSCALL_NR_OFFSET,
1da177e4 319 0);
ba180fd4 320 if (syscall == __NR_getpid) {
966e803a 321 n = ptrace(PTRACE_POKEUSER, pid, PT_SYSCALL_NR_OFFSET,
1da177e4 322 __NR_getppid);
ba180fd4 323 if (n < 0)
3a150e1d
JD
324 fatal_perror("check_ptrace : failed to modify "
325 "system call");
1da177e4
LT
326 break;
327 }
328 }
3cdaf455 329 stop_ptraced_child(pid, 0, 1);
3a150e1d 330 non_fatal("OK\n");
1da177e4
LT
331 check_sysemu();
332}
333
966a082f 334extern void check_tmpexec(void);
0f80bc85 335
36e45463 336static void __init check_coredump_limit(void)
1d94cda0
JD
337{
338 struct rlimit lim;
339 int err = getrlimit(RLIMIT_CORE, &lim);
340
ba180fd4 341 if (err) {
1d94cda0
JD
342 perror("Getting core dump limit");
343 return;
344 }
345
346 printf("Core dump limits :\n\tsoft - ");
ba180fd4 347 if (lim.rlim_cur == RLIM_INFINITY)
1d94cda0
JD
348 printf("NONE\n");
349 else printf("%lu\n", lim.rlim_cur);
350
351 printf("\thard - ");
ba180fd4 352 if (lim.rlim_max == RLIM_INFINITY)
1d94cda0
JD
353 printf("NONE\n");
354 else printf("%lu\n", lim.rlim_max);
355}
356
36e45463 357void __init os_early_checks(void)
1da177e4 358{
576c013d
JD
359 int pid;
360
1d94cda0
JD
361 /* Print out the core dump limits early */
362 check_coredump_limit();
363
60d339f6 364 check_ptrace();
0f80bc85
JD
365
366 /* Need to check this early because mmapping happens before the
367 * kernel is running.
368 */
369 check_tmpexec();
576c013d
JD
370
371 pid = start_ptraced_child();
372 if (init_registers(pid))
373 fatal("Failed to initialize default registers");
374 stop_ptraced_child(pid, 1, 1);
1da177e4
LT
375}
376
d9838d86
BS
377static int __init noprocmm_cmd_param(char *str, int* add)
378{
53c25878 379 disable_proc_mm = 1;
d9838d86
BS
380 return 0;
381}
382
383__uml_setup("noprocmm", noprocmm_cmd_param,
384"noprocmm\n"
385" Turns off usage of /proc/mm, even if host supports it.\n"
386" To support /proc/mm, the host needs to be patched using\n"
387" the current skas3 patch.\n\n");
388
389static int __init noptracefaultinfo_cmd_param(char *str, int* add)
390{
53c25878 391 disable_ptrace_faultinfo = 1;
d9838d86
BS
392 return 0;
393}
394
395__uml_setup("noptracefaultinfo", noptracefaultinfo_cmd_param,
396"noptracefaultinfo\n"
397" Turns off usage of PTRACE_FAULTINFO, even if host supports\n"
398" it. To support PTRACE_FAULTINFO, the host needs to be patched\n"
399" using the current skas3 patch.\n\n");
400
858259cf
BS
401static int __init noptraceldt_cmd_param(char *str, int* add)
402{
53c25878 403 disable_ptrace_ldt = 1;
858259cf
BS
404 return 0;
405}
406
407__uml_setup("noptraceldt", noptraceldt_cmd_param,
408"noptraceldt\n"
409" Turns off usage of PTRACE_LDT, even if host supports it.\n"
410" To support PTRACE_LDT, the host needs to be patched using\n"
411" the current skas3 patch.\n\n");
412
858259cf 413static inline void check_skas3_ptrace_faultinfo(void)
1da177e4
LT
414{
415 struct ptrace_faultinfo fi;
d67b569f 416 int pid, n;
1da177e4 417
3a150e1d 418 non_fatal(" - PTRACE_FAULTINFO...");
3cdaf455 419 pid = start_ptraced_child();
1da177e4
LT
420
421 n = ptrace(PTRACE_FAULTINFO, pid, 0, &fi);
422 if (n < 0) {
ba180fd4 423 if (errno == EIO)
3a150e1d 424 non_fatal("not found\n");
60d339f6 425 else
1da177e4 426 perror("not found");
53c25878
JD
427 } else if (disable_ptrace_faultinfo)
428 non_fatal("found but disabled on command line\n");
d67b569f 429 else {
53c25878
JD
430 ptrace_faultinfo = 1;
431 non_fatal("found\n");
1da177e4
LT
432 }
433
3cdaf455 434 stop_ptraced_child(pid, 1, 1);
1da177e4
LT
435}
436
858259cf
BS
437static inline void check_skas3_ptrace_ldt(void)
438{
439#ifdef PTRACE_LDT
858259cf
BS
440 int pid, n;
441 unsigned char ldtbuf[40];
442 struct ptrace_ldt ldt_op = (struct ptrace_ldt) {
443 .func = 2, /* read default ldt */
444 .ptr = ldtbuf,
445 .bytecount = sizeof(ldtbuf)};
446
3a150e1d 447 non_fatal(" - PTRACE_LDT...");
3cdaf455 448 pid = start_ptraced_child();
858259cf
BS
449
450 n = ptrace(PTRACE_LDT, pid, 0, (unsigned long) &ldt_op);
451 if (n < 0) {
ba180fd4 452 if (errno == EIO)
3a150e1d 453 non_fatal("not found\n");
53c25878 454 else
858259cf 455 perror("not found");
53c25878
JD
456 } else if (disable_ptrace_ldt)
457 non_fatal("found, but use is disabled\n");
858259cf 458 else {
53c25878
JD
459 ptrace_ldt = 1;
460 non_fatal("found\n");
858259cf
BS
461 }
462
3cdaf455 463 stop_ptraced_child(pid, 1, 1);
858259cf
BS
464#endif
465}
466
467static inline void check_skas3_proc_mm(void)
1da177e4 468{
3a150e1d 469 non_fatal(" - /proc/mm...");
53c25878 470 if (access("/proc/mm", W_OK) < 0)
3a150e1d 471 perror("not found");
53c25878 472 else if (disable_proc_mm)
ba180fd4 473 non_fatal("found but disabled on command line\n");
53c25878
JD
474 else {
475 proc_mm = 1;
476 non_fatal("found\n");
477 }
858259cf
BS
478}
479
6b7e9674 480void can_do_skas(void)
858259cf 481{
3a150e1d 482 non_fatal("Checking for the skas3 patch in the host:\n");
858259cf
BS
483
484 check_skas3_proc_mm();
485 check_skas3_ptrace_faultinfo();
486 check_skas3_ptrace_ldt();
487
ba180fd4 488 if (!proc_mm || !ptrace_faultinfo || !ptrace_ldt)
858259cf 489 skas_needs_stub = 1;
1da177e4 490}
0f80bc85 491
0f80bc85
JD
492int __init parse_iomem(char *str, int *add)
493{
494 struct iomem_region *new;
73c8f444 495 struct stat64 buf;
0f80bc85 496 char *file, *driver;
73c8f444 497 int fd, size;
0f80bc85
JD
498
499 driver = str;
500 file = strchr(str,',');
ba180fd4 501 if (file == NULL) {
626c59f5 502 fprintf(stderr, "parse_iomem : failed to parse iomem\n");
0f80bc85
JD
503 goto out;
504 }
505 *file = '\0';
506 file++;
73c8f444 507 fd = open(file, O_RDWR, 0);
ba180fd4 508 if (fd < 0) {
512b6fb1 509 perror("parse_iomem - Couldn't open io file");
0f80bc85
JD
510 goto out;
511 }
512
ba180fd4 513 if (fstat64(fd, &buf) < 0) {
73c8f444 514 perror("parse_iomem - cannot stat_fd file");
0f80bc85
JD
515 goto out_close;
516 }
517
518 new = malloc(sizeof(*new));
ba180fd4 519 if (new == NULL) {
0f80bc85
JD
520 perror("Couldn't allocate iomem_region struct");
521 goto out_close;
522 }
523
73c8f444 524 size = (buf.st_size + UM_KERN_PAGE_SIZE) & ~(UM_KERN_PAGE_SIZE - 1);
0f80bc85
JD
525
526 *new = ((struct iomem_region) { .next = iomem_regions,
527 .driver = driver,
528 .fd = fd,
529 .size = size,
530 .phys = 0,
531 .virt = 0 });
532 iomem_regions = new;
533 iomem_size += new->size + UM_KERN_PAGE_SIZE;
534
9eae9b13 535 return 0;
0f80bc85 536 out_close:
73c8f444 537 close(fd);
0f80bc85 538 out:
9eae9b13 539 return 1;
0f80bc85 540}