blob: 5178eba9afa54fa779ab3af327e82259768d7fbf [file] [log] [blame]
Gennady Sharapov60d339f62005-09-03 15:57:47 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
Jeff Dike8e367062006-03-27 01:14:32 -08006#include <pty.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <stdio.h>
Jeff Dike0f80bc82005-09-16 19:27:50 -07008#include <stddef.h>
9#include <stdarg.h>
10#include <stdlib.h>
11#include <string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <unistd.h>
13#include <signal.h>
14#include <sched.h>
Jeff Dike0f80bc82005-09-16 19:27:50 -070015#include <fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <sys/time.h>
18#include <sys/wait.h>
19#include <sys/mman.h>
20#include <asm/unistd.h>
21#include <asm/page.h>
Jeff Dike0f80bc82005-09-16 19:27:50 -070022#include <sys/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "user_util.h"
24#include "kern_util.h"
25#include "user.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "signal_kern.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "sysdep/ptrace.h"
28#include "sysdep/sigcontext.h"
29#include "irq_user.h"
30#include "ptrace_user.h"
Jeff Dike0f80bc82005-09-16 19:27:50 -070031#include "mem_user.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "init.h"
33#include "os.h"
34#include "uml-config.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "choose-mode.h"
36#include "mode.h"
Jeff Diked67b5692005-07-07 17:56:49 -070037#include "tempfile.h"
Jeff Dike0f80bc82005-09-16 19:27:50 -070038#include "kern_constants.h"
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#ifdef UML_CONFIG_MODE_SKAS
41#include "skas.h"
42#include "skas_ptrace.h"
43#include "registers.h"
44#endif
45
Jeff Dikeb85e9682005-07-28 21:16:01 -070046static int ptrace_child(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 int ret;
49 int pid = os_getpid(), ppid = getppid();
50 int sc_result;
51
Jeff Dike43b00fd2006-02-07 12:58:42 -080052 change_sig(SIGWINCH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if(ptrace(PTRACE_TRACEME, 0, 0, 0) < 0){
54 perror("ptrace");
55 os_kill_process(pid, 0);
56 }
Jeff Dike73c8f4442007-02-10 01:44:20 -080057 kill(pid, SIGSTOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 /*This syscall will be intercepted by the parent. Don't call more than
60 * once, please.*/
61 sc_result = os_getpid();
62
63 if (sc_result == pid)
64 ret = 1; /*Nothing modified by the parent, we are running
65 normally.*/
66 else if (sc_result == ppid)
67 ret = 0; /*Expected in check_ptrace and check_sysemu when they
68 succeed in modifying the stack frame*/
69 else
70 ret = 2; /*Serious trouble! This could be caused by a bug in
71 host 2.6 SKAS3/2.6 patch before release -V6, together
72 with a bug in the UML code itself.*/
73 _exit(ret);
74}
75
Jeff Dike3a150e12007-02-10 01:44:28 -080076static void fatal_perror(char *str)
77{
78 perror(str);
79 exit(1);
80}
81
82static void fatal(char *fmt, ...)
83{
84 va_list list;
85
86 va_start(list, fmt);
87 vprintf(fmt, list);
88 va_end(list);
89 fflush(stdout);
90
91 exit(1);
92}
93
94static void non_fatal(char *fmt, ...)
95{
96 va_list list;
97
98 va_start(list, fmt);
99 vprintf(fmt, list);
100 va_end(list);
101 fflush(stdout);
102}
103
Jeff Dikeb85e9682005-07-28 21:16:01 -0700104static int start_ptraced_child(void **stack_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Jeff Dikeb85e9682005-07-28 21:16:01 -0700106 void *stack;
107 unsigned long sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 int pid, n, status;
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700109
Jeff Dikeb85e9682005-07-28 21:16:01 -0700110 stack = mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE | PROT_EXEC,
111 MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
112 if(stack == MAP_FAILED)
Jeff Dike3a150e12007-02-10 01:44:28 -0800113 fatal_perror("check_ptrace : mmap failed");
Jeff Dikeb85e9682005-07-28 21:16:01 -0700114 sp = (unsigned long) stack + PAGE_SIZE - sizeof(void *);
115 pid = clone(ptrace_child, (void *) sp, SIGCHLD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if(pid < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800117 fatal_perror("start_ptraced_child : clone failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
119 if(n < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800120 fatal_perror("check_ptrace : clone failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if(!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP))
Jeff Dike3a150e12007-02-10 01:44:28 -0800122 fatal("check_ptrace : expected SIGSTOP, got status = %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 status);
124
Jeff Dikeb85e9682005-07-28 21:16:01 -0700125 *stack_out = stack;
Jeff Dike9eae9b12007-02-10 01:44:20 -0800126 return pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700129/* When testing for SYSEMU support, if it is one of the broken versions, we
130 * must just avoid using sysemu, not panic, but only if SYSEMU features are
131 * broken.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * So only for SYSEMU features we test mustpanic, while normal host features
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700133 * must work anyway!
134 */
135static int stop_ptraced_child(int pid, void *stack, int exitcode,
Jeff Dike3a150e12007-02-10 01:44:28 -0800136 int mustexit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 int status, n, ret = 0;
139
140 if(ptrace(PTRACE_CONT, pid, 0, 0) < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800141 fatal_perror("stop_ptraced_child : ptrace failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 CATCH_EINTR(n = waitpid(pid, &status, 0));
143 if(!WIFEXITED(status) || (WEXITSTATUS(status) != exitcode)) {
144 int exit_with = WEXITSTATUS(status);
145 if (exit_with == 2)
Jeff Dike3a150e12007-02-10 01:44:28 -0800146 non_fatal("check_ptrace : child exited with status 2. "
147 "Serious trouble happening! Try updating "
148 "your host skas patch!\nDisabling SYSEMU "
149 "support.");
150 non_fatal("check_ptrace : child exited with exitcode %d, while "
151 "expecting %d; status 0x%x\n", exit_with,
152 exitcode, status);
153 if (mustexit)
154 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 ret = -1;
156 }
157
Jeff Dikeb85e9682005-07-28 21:16:01 -0700158 if(munmap(stack, PAGE_SIZE) < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800159 fatal_perror("check_ptrace : munmap failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return ret;
161}
162
Jeff Dike7242a402007-02-10 01:44:19 -0800163/* Changed only during early boot */
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700164int ptrace_faultinfo = 1;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800165int ptrace_ldt = 1;
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700166int proc_mm = 1;
Bodo Stroesser858259c2005-11-07 00:58:55 -0800167int skas_needs_stub = 0;
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700168
169static int __init skas0_cmd_param(char *str, int* add)
170{
171 ptrace_faultinfo = proc_mm = 0;
172 return 0;
173}
174
Paolo 'Blaisorblade' Giarrusso9e3d8622005-10-09 21:37:18 +0200175/* The two __uml_setup would conflict, without this stupid alias. */
176
177static int __init mode_skas0_cmd_param(char *str, int* add)
178 __attribute__((alias("skas0_cmd_param")));
179
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700180__uml_setup("skas0", skas0_cmd_param,
181 "skas0\n"
182 " Disables SKAS3 usage, so that SKAS0 is used, unless \n"
183 " you specify mode=tt.\n\n");
184
Paolo 'Blaisorblade' Giarrusso9e3d8622005-10-09 21:37:18 +0200185__uml_setup("mode=skas0", mode_skas0_cmd_param,
186 "mode=skas0\n"
187 " Disables SKAS3 usage, so that SKAS0 is used, unless you \n"
188 " specify mode=tt. Note that this was recently added - on \n"
189 " older kernels you must use simply \"skas0\".\n\n");
190
Jeff Dike7242a402007-02-10 01:44:19 -0800191/* Changed only during early boot */
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700192static int force_sysemu_disabled = 0;
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static int __init nosysemu_cmd_param(char *str, int* add)
195{
196 force_sysemu_disabled = 1;
197 return 0;
198}
199
200__uml_setup("nosysemu", nosysemu_cmd_param,
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700201"nosysemu\n"
202" Turns off syscall emulation patch for ptrace (SYSEMU) on.\n"
203" SYSEMU is a performance-patch introduced by Laurent Vivier. It changes\n"
204" behaviour of ptrace() and helps reducing host context switch rate.\n"
205" To make it working, you need a kernel patch for your host, too.\n"
206" See http://perso.wanadoo.fr/laurent.vivier/UML/ for further \n"
207" information.\n\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209static void __init check_sysemu(void)
210{
Jeff Dikeb85e9682005-07-28 21:16:01 -0700211 void *stack;
Jeff Dike9eae9b12007-02-10 01:44:20 -0800212 int pid, n, status, count=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Jeff Dike3a150e12007-02-10 01:44:28 -0800214 non_fatal("Checking syscall emulation patch for ptrace...");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 sysemu_supported = 0;
Jeff Dikeb85e9682005-07-28 21:16:01 -0700216 pid = start_ptraced_child(&stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 if(ptrace(PTRACE_SYSEMU, pid, 0, 0) < 0)
219 goto fail;
220
221 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
222 if (n < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800223 fatal_perror("check_sysemu : wait failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if(!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGTRAP))
Jeff Dike3a150e12007-02-10 01:44:28 -0800225 fatal("check_sysemu : expected SIGTRAP, got status = %d",
226 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 n = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_RET_OFFSET,
229 os_getpid());
230 if(n < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800231 fatal_perror("check_sysemu : failed to modify system call "
232 "return");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Jeff Dikeb85e9682005-07-28 21:16:01 -0700234 if (stop_ptraced_child(pid, stack, 0, 0) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 goto fail_stopped;
236
237 sysemu_supported = 1;
Jeff Dike3a150e12007-02-10 01:44:28 -0800238 non_fatal("OK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 set_using_sysemu(!force_sysemu_disabled);
240
Jeff Dike3a150e12007-02-10 01:44:28 -0800241 non_fatal("Checking advanced syscall emulation patch for ptrace...");
Jeff Dikeb85e9682005-07-28 21:16:01 -0700242 pid = start_ptraced_child(&stack);
Bodo Stroesserf9dfefe2005-09-03 15:57:51 -0700243
Jeff Dike3a150e12007-02-10 01:44:28 -0800244 if((ptrace(PTRACE_OLDSETOPTIONS, pid, 0,
245 (void *) PTRACE_O_TRACESYSGOOD) < 0))
246 fatal_perror("check_ptrace: PTRACE_OLDSETOPTIONS failed");
Bodo Stroesserf9dfefe2005-09-03 15:57:51 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 while(1){
249 count++;
250 if(ptrace(PTRACE_SYSEMU_SINGLESTEP, pid, 0, 0) < 0)
251 goto fail;
252 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
253 if(n < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800254 fatal_perror("check_ptrace : wait failed");
255
Bodo Stroesserf9dfefe2005-09-03 15:57:51 -0700256 if(WIFSTOPPED(status) && (WSTOPSIG(status) == (SIGTRAP|0x80))){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (!count)
Jeff Dike3a150e12007-02-10 01:44:28 -0800258 fatal("check_ptrace : SYSEMU_SINGLESTEP "
Bodo Stroesserf9dfefe2005-09-03 15:57:51 -0700259 "doesn't singlestep");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 n = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_RET_OFFSET,
261 os_getpid());
262 if(n < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800263 fatal_perror("check_sysemu : failed to modify "
264 "system call return");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 break;
266 }
Bodo Stroesserf9dfefe2005-09-03 15:57:51 -0700267 else if(WIFSTOPPED(status) && (WSTOPSIG(status) == SIGTRAP))
268 count++;
269 else
Jeff Dike3a150e12007-02-10 01:44:28 -0800270 fatal("check_ptrace : expected SIGTRAP or "
271 "(SIGTRAP | 0x80), got status = %d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Jeff Dikeb85e9682005-07-28 21:16:01 -0700273 if (stop_ptraced_child(pid, stack, 0, 0) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 goto fail_stopped;
275
276 sysemu_supported = 2;
Jeff Dike3a150e12007-02-10 01:44:28 -0800277 non_fatal("OK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 if ( !force_sysemu_disabled )
280 set_using_sysemu(sysemu_supported);
281 return;
282
283fail:
Jeff Dikeb85e9682005-07-28 21:16:01 -0700284 stop_ptraced_child(pid, stack, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285fail_stopped:
Jeff Dike3a150e12007-02-10 01:44:28 -0800286 non_fatal("missing\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700289static void __init check_ptrace(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Jeff Dikeb85e9682005-07-28 21:16:01 -0700291 void *stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int pid, syscall, n, status;
293
Jeff Dike3a150e12007-02-10 01:44:28 -0800294 non_fatal("Checking that ptrace can change system call numbers...");
Jeff Dikeb85e9682005-07-28 21:16:01 -0700295 pid = start_ptraced_child(&stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Jeff Dike3a150e12007-02-10 01:44:28 -0800297 if((ptrace(PTRACE_OLDSETOPTIONS, pid, 0,
298 (void *) PTRACE_O_TRACESYSGOOD) < 0))
299 fatal_perror("check_ptrace: PTRACE_OLDSETOPTIONS failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 while(1){
302 if(ptrace(PTRACE_SYSCALL, pid, 0, 0) < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800303 fatal_perror("check_ptrace : ptrace failed");
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
306 if(n < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800307 fatal_perror("check_ptrace : wait failed");
308
309 if(!WIFSTOPPED(status) ||
310 (WSTOPSIG(status) != (SIGTRAP | 0x80)))
311 fatal("check_ptrace : expected (SIGTRAP|0x80), "
312 "got status = %d", status);
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 syscall = ptrace(PTRACE_PEEKUSR, pid, PT_SYSCALL_NR_OFFSET,
315 0);
316 if(syscall == __NR_getpid){
317 n = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_NR_OFFSET,
318 __NR_getppid);
319 if(n < 0)
Jeff Dike3a150e12007-02-10 01:44:28 -0800320 fatal_perror("check_ptrace : failed to modify "
321 "system call");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 break;
323 }
324 }
Jeff Dikeb85e9682005-07-28 21:16:01 -0700325 stop_ptraced_child(pid, stack, 0, 1);
Jeff Dike3a150e12007-02-10 01:44:28 -0800326 non_fatal("OK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 check_sysemu();
328}
329
Rob Landley966a082f2006-04-18 22:21:43 -0700330extern void check_tmpexec(void);
Jeff Dike0f80bc82005-09-16 19:27:50 -0700331
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700332void os_early_checks(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700334 check_ptrace();
Jeff Dike0f80bc82005-09-16 19:27:50 -0700335
336 /* Need to check this early because mmapping happens before the
337 * kernel is running.
338 */
339 check_tmpexec();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Bodo Stroesserd9838d82005-09-03 15:57:51 -0700342static int __init noprocmm_cmd_param(char *str, int* add)
343{
344 proc_mm = 0;
345 return 0;
346}
347
348__uml_setup("noprocmm", noprocmm_cmd_param,
349"noprocmm\n"
350" Turns off usage of /proc/mm, even if host supports it.\n"
351" To support /proc/mm, the host needs to be patched using\n"
352" the current skas3 patch.\n\n");
353
354static int __init noptracefaultinfo_cmd_param(char *str, int* add)
355{
356 ptrace_faultinfo = 0;
357 return 0;
358}
359
360__uml_setup("noptracefaultinfo", noptracefaultinfo_cmd_param,
361"noptracefaultinfo\n"
362" Turns off usage of PTRACE_FAULTINFO, even if host supports\n"
363" it. To support PTRACE_FAULTINFO, the host needs to be patched\n"
364" using the current skas3 patch.\n\n");
365
Bodo Stroesser858259c2005-11-07 00:58:55 -0800366static int __init noptraceldt_cmd_param(char *str, int* add)
367{
368 ptrace_ldt = 0;
369 return 0;
370}
371
372__uml_setup("noptraceldt", noptraceldt_cmd_param,
373"noptraceldt\n"
374" Turns off usage of PTRACE_LDT, even if host supports it.\n"
375" To support PTRACE_LDT, the host needs to be patched using\n"
376" the current skas3 patch.\n\n");
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#ifdef UML_CONFIG_MODE_SKAS
Bodo Stroesser858259c2005-11-07 00:58:55 -0800379static inline void check_skas3_ptrace_faultinfo(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 struct ptrace_faultinfo fi;
Jeff Dikeb85e9682005-07-28 21:16:01 -0700382 void *stack;
Jeff Diked67b5692005-07-07 17:56:49 -0700383 int pid, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Jeff Dike3a150e12007-02-10 01:44:28 -0800385 non_fatal(" - PTRACE_FAULTINFO...");
Jeff Dikeb85e9682005-07-28 21:16:01 -0700386 pid = start_ptraced_child(&stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 n = ptrace(PTRACE_FAULTINFO, pid, 0, &fi);
389 if (n < 0) {
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700390 ptrace_faultinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if(errno == EIO)
Jeff Dike3a150e12007-02-10 01:44:28 -0800392 non_fatal("not found\n");
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700393 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 perror("not found");
Jeff Diked67b5692005-07-07 17:56:49 -0700395 }
396 else {
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700397 if (!ptrace_faultinfo)
Jeff Dike3a150e12007-02-10 01:44:28 -0800398 non_fatal("found but disabled on command line\n");
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700399 else
Jeff Dike3a150e12007-02-10 01:44:28 -0800400 non_fatal("found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
403 init_registers(pid);
Jeff Dikeb85e9682005-07-28 21:16:01 -0700404 stop_ptraced_child(pid, stack, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Bodo Stroesser858259c2005-11-07 00:58:55 -0800407static inline void check_skas3_ptrace_ldt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Bodo Stroesser858259c2005-11-07 00:58:55 -0800409#ifdef PTRACE_LDT
410 void *stack;
411 int pid, n;
412 unsigned char ldtbuf[40];
413 struct ptrace_ldt ldt_op = (struct ptrace_ldt) {
414 .func = 2, /* read default ldt */
415 .ptr = ldtbuf,
416 .bytecount = sizeof(ldtbuf)};
417
Jeff Dike3a150e12007-02-10 01:44:28 -0800418 non_fatal(" - PTRACE_LDT...");
Bodo Stroesser858259c2005-11-07 00:58:55 -0800419 pid = start_ptraced_child(&stack);
420
421 n = ptrace(PTRACE_LDT, pid, 0, (unsigned long) &ldt_op);
422 if (n < 0) {
423 if(errno == EIO)
Jeff Dike3a150e12007-02-10 01:44:28 -0800424 non_fatal("not found\n");
Bodo Stroesser858259c2005-11-07 00:58:55 -0800425 else {
426 perror("not found");
427 }
428 ptrace_ldt = 0;
429 }
430 else {
431 if(ptrace_ldt)
Jeff Dike3a150e12007-02-10 01:44:28 -0800432 non_fatal("found\n");
Bodo Stroesser858259c2005-11-07 00:58:55 -0800433 else
Jeff Dike3a150e12007-02-10 01:44:28 -0800434 non_fatal("found, but use is disabled\n");
Bodo Stroesser858259c2005-11-07 00:58:55 -0800435 }
436
437 stop_ptraced_child(pid, stack, 1, 1);
438#else
439 /* PTRACE_LDT might be disabled via cmdline option.
440 * We want to override this, else we might use the stub
441 * without real need
442 */
443 ptrace_ldt = 1;
444#endif
445}
446
447static inline void check_skas3_proc_mm(void)
448{
Jeff Dike3a150e12007-02-10 01:44:28 -0800449 non_fatal(" - /proc/mm...");
Jeff Dike73c8f4442007-02-10 01:44:20 -0800450 if (access("/proc/mm", W_OK) < 0) {
Jeff Dike9eae9b12007-02-10 01:44:20 -0800451 proc_mm = 0;
Jeff Dike3a150e12007-02-10 01:44:28 -0800452 perror("not found");
Gennady Sharapov60d339f62005-09-03 15:57:47 -0700453 }
454 else {
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700455 if (!proc_mm)
Jeff Dike3a150e12007-02-10 01:44:28 -0800456 non_fatal("found but disabled on command line\n");
Paolo 'Blaisorblade' Giarrussocb665042005-07-27 11:43:31 -0700457 else
Jeff Dike3a150e12007-02-10 01:44:28 -0800458 non_fatal("found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
Bodo Stroesser858259c2005-11-07 00:58:55 -0800460}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Bodo Stroesser858259c2005-11-07 00:58:55 -0800462int can_do_skas(void)
463{
Jeff Dike3a150e12007-02-10 01:44:28 -0800464 non_fatal("Checking for the skas3 patch in the host:\n");
Bodo Stroesser858259c2005-11-07 00:58:55 -0800465
466 check_skas3_proc_mm();
467 check_skas3_ptrace_faultinfo();
468 check_skas3_ptrace_ldt();
469
470 if(!proc_mm || !ptrace_faultinfo || !ptrace_ldt)
471 skas_needs_stub = 1;
472
Jeff Diked67b5692005-07-07 17:56:49 -0700473 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475#else
476int can_do_skas(void)
477{
Jeff Dike9eae9b12007-02-10 01:44:20 -0800478 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480#endif
Jeff Dike0f80bc82005-09-16 19:27:50 -0700481
Jeff Dike0f80bc82005-09-16 19:27:50 -0700482int __init parse_iomem(char *str, int *add)
483{
484 struct iomem_region *new;
Jeff Dike73c8f4442007-02-10 01:44:20 -0800485 struct stat64 buf;
Jeff Dike0f80bc82005-09-16 19:27:50 -0700486 char *file, *driver;
Jeff Dike73c8f4442007-02-10 01:44:20 -0800487 int fd, size;
Jeff Dike0f80bc82005-09-16 19:27:50 -0700488
489 driver = str;
490 file = strchr(str,',');
491 if(file == NULL){
492 printf("parse_iomem : failed to parse iomem\n");
493 goto out;
494 }
495 *file = '\0';
496 file++;
Jeff Dike73c8f4442007-02-10 01:44:20 -0800497 fd = open(file, O_RDWR, 0);
Jeff Dike0f80bc82005-09-16 19:27:50 -0700498 if(fd < 0){
499 os_print_error(fd, "parse_iomem - Couldn't open io file");
500 goto out;
501 }
502
Jeff Dike73c8f4442007-02-10 01:44:20 -0800503 if(fstat64(fd, &buf) < 0){
504 perror("parse_iomem - cannot stat_fd file");
Jeff Dike0f80bc82005-09-16 19:27:50 -0700505 goto out_close;
506 }
507
508 new = malloc(sizeof(*new));
509 if(new == NULL){
510 perror("Couldn't allocate iomem_region struct");
511 goto out_close;
512 }
513
Jeff Dike73c8f4442007-02-10 01:44:20 -0800514 size = (buf.st_size + UM_KERN_PAGE_SIZE) & ~(UM_KERN_PAGE_SIZE - 1);
Jeff Dike0f80bc82005-09-16 19:27:50 -0700515
516 *new = ((struct iomem_region) { .next = iomem_regions,
517 .driver = driver,
518 .fd = fd,
519 .size = size,
520 .phys = 0,
521 .virt = 0 });
522 iomem_regions = new;
523 iomem_size += new->size + UM_KERN_PAGE_SIZE;
524
Jeff Dike9eae9b12007-02-10 01:44:20 -0800525 return 0;
Jeff Dike0f80bc82005-09-16 19:27:50 -0700526 out_close:
Jeff Dike73c8f4442007-02-10 01:44:20 -0800527 close(fd);
Jeff Dike0f80bc82005-09-16 19:27:50 -0700528 out:
Jeff Dike9eae9b12007-02-10 01:44:20 -0800529 return 1;
Jeff Dike0f80bc82005-09-16 19:27:50 -0700530}
531
Jeff Dike8e367062006-03-27 01:14:32 -0800532
533/* Changed during early boot */
534int pty_output_sigio = 0;
535int pty_close_sigio = 0;
536
537/* Used as a flag during SIGIO testing early in boot */
538static volatile int got_sigio = 0;
539
540static void __init handler(int sig)
541{
542 got_sigio = 1;
543}
544
545struct openpty_arg {
546 int master;
547 int slave;
548 int err;
549};
550
551static void openpty_cb(void *arg)
552{
553 struct openpty_arg *info = arg;
554
555 info->err = 0;
556 if(openpty(&info->master, &info->slave, NULL, NULL, NULL))
557 info->err = -errno;
558}
559
Jeff Dike73c8f4442007-02-10 01:44:20 -0800560static int async_pty(int master, int slave)
561{
562 int flags;
563
564 flags = fcntl(master, F_GETFL);
565 if(flags < 0)
566 return -errno;
567
568 if((fcntl(master, F_SETFL, flags | O_NONBLOCK | O_ASYNC) < 0) ||
569 (fcntl(master, F_SETOWN, os_getpid()) < 0))
570 return -errno;
571
572 if((fcntl(slave, F_SETFL, flags | O_NONBLOCK) < 0))
573 return -errno;
574
575 return(0);
576}
577
Jeff Dike8e367062006-03-27 01:14:32 -0800578static void __init check_one_sigio(void (*proc)(int, int))
579{
580 struct sigaction old, new;
581 struct openpty_arg pty = { .master = -1, .slave = -1 };
582 int master, slave, err;
583
584 initial_thread_cb(openpty_cb, &pty);
585 if(pty.err){
586 printk("openpty failed, errno = %d\n", -pty.err);
587 return;
588 }
589
590 master = pty.master;
591 slave = pty.slave;
592
593 if((master == -1) || (slave == -1)){
594 printk("openpty failed to allocate a pty\n");
595 return;
596 }
597
598 /* Not now, but complain so we now where we failed. */
599 err = raw(master);
600 if (err < 0)
601 panic("check_sigio : __raw failed, errno = %d\n", -err);
602
Jeff Dike73c8f4442007-02-10 01:44:20 -0800603 err = async_pty(master, slave);
Jeff Dike8e367062006-03-27 01:14:32 -0800604 if(err < 0)
605 panic("tty_fds : sigio_async failed, err = %d\n", -err);
606
607 if(sigaction(SIGIO, NULL, &old) < 0)
608 panic("check_sigio : sigaction 1 failed, errno = %d\n", errno);
609 new = old;
610 new.sa_handler = handler;
611 if(sigaction(SIGIO, &new, NULL) < 0)
612 panic("check_sigio : sigaction 2 failed, errno = %d\n", errno);
613
614 got_sigio = 0;
615 (*proc)(master, slave);
616
617 close(master);
618 close(slave);
619
620 if(sigaction(SIGIO, &old, NULL) < 0)
621 panic("check_sigio : sigaction 3 failed, errno = %d\n", errno);
622}
623
624static void tty_output(int master, int slave)
625{
626 int n;
627 char buf[512];
628
629 printk("Checking that host ptys support output SIGIO...");
630
631 memset(buf, 0, sizeof(buf));
632
633 while(os_write_file(master, buf, sizeof(buf)) > 0) ;
634 if(errno != EAGAIN)
635 panic("check_sigio : write failed, errno = %d\n", errno);
636 while(((n = os_read_file(slave, buf, sizeof(buf))) > 0) && !got_sigio) ;
637
638 if(got_sigio){
639 printk("Yes\n");
640 pty_output_sigio = 1;
641 }
642 else if(n == -EAGAIN) printk("No, enabling workaround\n");
643 else panic("check_sigio : read failed, err = %d\n", n);
644}
645
646static void tty_close(int master, int slave)
647{
648 printk("Checking that host ptys support SIGIO on close...");
649
650 close(slave);
651 if(got_sigio){
652 printk("Yes\n");
653 pty_close_sigio = 1;
654 }
655 else printk("No, enabling workaround\n");
656}
657
658void __init check_sigio(void)
659{
660 if((os_access("/dev/ptmx", OS_ACC_R_OK) < 0) &&
661 (os_access("/dev/ptyp0", OS_ACC_R_OK) < 0)){
662 printk("No pseudo-terminals available - skipping pty SIGIO "
663 "check\n");
664 return;
665 }
666 check_one_sigio(tty_output);
667 check_one_sigio(tty_close);
668}
669
670void os_check_bugs(void)
671{
672 check_ptrace();
673 check_sigio();
Jeff Dike8e367062006-03-27 01:14:32 -0800674}
675