Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) |
| 3 | * Copyright 2003 PathScale, Inc. |
| 4 | * Licensed under the GPL |
| 5 | */ |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include "linux/kernel.h" |
| 8 | #include "linux/sched.h" |
| 9 | #include "linux/interrupt.h" |
Robert Love | dfe5224 | 2005-06-23 00:09:04 -0700 | [diff] [blame] | 10 | #include "linux/string.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include "linux/mm.h" |
| 12 | #include "linux/slab.h" |
| 13 | #include "linux/utsname.h" |
| 14 | #include "linux/fs.h" |
| 15 | #include "linux/utime.h" |
| 16 | #include "linux/smp_lock.h" |
| 17 | #include "linux/module.h" |
| 18 | #include "linux/init.h" |
| 19 | #include "linux/capability.h" |
| 20 | #include "linux/vmalloc.h" |
| 21 | #include "linux/spinlock.h" |
| 22 | #include "linux/proc_fs.h" |
| 23 | #include "linux/ptrace.h" |
| 24 | #include "linux/random.h" |
Jeff Dike | 8f80e94 | 2006-09-25 23:33:01 -0700 | [diff] [blame] | 25 | #include "linux/personality.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "asm/unistd.h" |
| 27 | #include "asm/mman.h" |
| 28 | #include "asm/segment.h" |
| 29 | #include "asm/stat.h" |
| 30 | #include "asm/pgtable.h" |
| 31 | #include "asm/processor.h" |
| 32 | #include "asm/tlbflush.h" |
| 33 | #include "asm/uaccess.h" |
| 34 | #include "asm/user.h" |
| 35 | #include "user_util.h" |
| 36 | #include "kern_util.h" |
Jeff Dike | 4ff83ce | 2007-05-06 14:51:08 -0700 | [diff] [blame^] | 37 | #include "as-layout.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "kern.h" |
| 39 | #include "signal_kern.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include "init.h" |
| 41 | #include "irq_user.h" |
| 42 | #include "mem_user.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include "tlb.h" |
| 44 | #include "frame_kern.h" |
| 45 | #include "sigcontext.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include "os.h" |
| 47 | #include "mode.h" |
| 48 | #include "mode_kern.h" |
| 49 | #include "choose-mode.h" |
Paolo 'Blaisorblade' Giarrusso | c13e569 | 2006-10-19 23:28:20 -0700 | [diff] [blame] | 50 | #include "um_malloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | /* This is a per-cpu array. A processor only modifies its entry and it only |
| 53 | * cares about its entry, so it's OK if another processor is modifying its |
| 54 | * entry. |
| 55 | */ |
| 56 | struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } }; |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | int external_pid(void *t) |
| 59 | { |
| 60 | struct task_struct *task = t ? t : current; |
| 61 | |
| 62 | return(CHOOSE_MODE_PROC(external_pid_tt, external_pid_skas, task)); |
| 63 | } |
| 64 | |
| 65 | int pid_to_processor_id(int pid) |
| 66 | { |
| 67 | int i; |
| 68 | |
| 69 | for(i = 0; i < ncpus; i++){ |
| 70 | if(cpu_tasks[i].pid == pid) return(i); |
| 71 | } |
| 72 | return(-1); |
| 73 | } |
| 74 | |
| 75 | void free_stack(unsigned long stack, int order) |
| 76 | { |
| 77 | free_pages(stack, order); |
| 78 | } |
| 79 | |
| 80 | unsigned long alloc_stack(int order, int atomic) |
| 81 | { |
| 82 | unsigned long page; |
Al Viro | 53f9fc9 | 2005-10-21 03:22:24 -0400 | [diff] [blame] | 83 | gfp_t flags = GFP_KERNEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Paolo 'Blaisorblade' Giarrusso | 46db4a4 | 2005-09-22 21:44:20 -0700 | [diff] [blame] | 85 | if (atomic) |
| 86 | flags = GFP_ATOMIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | page = __get_free_pages(flags, order); |
| 88 | if(page == 0) |
| 89 | return(0); |
| 90 | stack_protections(page); |
| 91 | return(page); |
| 92 | } |
| 93 | |
| 94 | int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) |
| 95 | { |
| 96 | int pid; |
| 97 | |
| 98 | current->thread.request.u.thread.proc = fn; |
| 99 | current->thread.request.u.thread.arg = arg; |
Jeff Dike | e0877f0 | 2005-06-25 14:55:21 -0700 | [diff] [blame] | 100 | pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0, |
| 101 | ¤t->thread.regs, 0, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | if(pid < 0) |
| 103 | panic("do_fork failed in kernel_thread, errno = %d", pid); |
| 104 | return(pid); |
| 105 | } |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | void set_current(void *t) |
| 108 | { |
| 109 | struct task_struct *task = t; |
| 110 | |
Al Viro | ca9bc0b | 2006-01-12 01:05:48 -0800 | [diff] [blame] | 111 | cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { external_pid(task), task }); |
| 113 | } |
| 114 | |
| 115 | void *_switch_to(void *prev, void *next, void *last) |
| 116 | { |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 117 | struct task_struct *from = prev; |
| 118 | struct task_struct *to= next; |
Jeff Dike | f6e34c6 | 2005-09-16 19:27:43 -0700 | [diff] [blame] | 119 | |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 120 | to->thread.prev_sched = from; |
| 121 | set_current(to); |
Jeff Dike | f6e34c6 | 2005-09-16 19:27:43 -0700 | [diff] [blame] | 122 | |
Jeff Dike | 3eddddc | 2005-09-16 19:27:46 -0700 | [diff] [blame] | 123 | do { |
| 124 | current->thread.saved_task = NULL ; |
| 125 | CHOOSE_MODE_PROC(switch_to_tt, switch_to_skas, prev, next); |
| 126 | if(current->thread.saved_task) |
| 127 | show_regs(&(current->thread.regs)); |
| 128 | next= current->thread.saved_task; |
| 129 | prev= current; |
| 130 | } while(current->thread.saved_task); |
Jeff Dike | f6e34c6 | 2005-09-16 19:27:43 -0700 | [diff] [blame] | 131 | |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 132 | return(current->thread.prev_sched); |
Jeff Dike | f6e34c6 | 2005-09-16 19:27:43 -0700 | [diff] [blame] | 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | void interrupt_end(void) |
| 137 | { |
| 138 | if(need_resched()) schedule(); |
| 139 | if(test_tsk_thread_flag(current, TIF_SIGPENDING)) do_signal(); |
| 140 | } |
| 141 | |
| 142 | void release_thread(struct task_struct *task) |
| 143 | { |
| 144 | CHOOSE_MODE(release_thread_tt(task), release_thread_skas(task)); |
| 145 | } |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | void exit_thread(void) |
| 148 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | unprotect_stack((unsigned long) current_thread); |
| 150 | } |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | void *get_current(void) |
| 153 | { |
| 154 | return(current); |
| 155 | } |
| 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | int copy_thread(int nr, unsigned long clone_flags, unsigned long sp, |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 158 | unsigned long stack_top, struct task_struct * p, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | struct pt_regs *regs) |
| 160 | { |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 161 | int ret; |
| 162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | p->thread = (struct thread_struct) INIT_THREAD; |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 164 | ret = CHOOSE_MODE_PROC(copy_thread_tt, copy_thread_skas, nr, |
| 165 | clone_flags, sp, stack_top, p, regs); |
| 166 | |
| 167 | if (ret || !current->thread.forking) |
| 168 | goto out; |
| 169 | |
| 170 | clear_flushed_tls(p); |
| 171 | |
| 172 | /* |
| 173 | * Set a new TLS for the child thread? |
| 174 | */ |
| 175 | if (clone_flags & CLONE_SETTLS) |
| 176 | ret = arch_copy_tls(p); |
| 177 | |
| 178 | out: |
| 179 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | void initial_thread_cb(void (*proc)(void *), void *arg) |
| 183 | { |
| 184 | int save_kmalloc_ok = kmalloc_ok; |
| 185 | |
| 186 | kmalloc_ok = 0; |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 187 | CHOOSE_MODE_PROC(initial_thread_cb_tt, initial_thread_cb_skas, proc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | arg); |
| 189 | kmalloc_ok = save_kmalloc_ok; |
| 190 | } |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | unsigned long stack_sp(unsigned long page) |
| 193 | { |
| 194 | return(page + PAGE_SIZE - sizeof(void *)); |
| 195 | } |
| 196 | |
| 197 | int current_pid(void) |
| 198 | { |
| 199 | return(current->pid); |
| 200 | } |
| 201 | |
| 202 | void default_idle(void) |
| 203 | { |
Jeff Dike | a6f4e3c | 2005-06-25 14:55:22 -0700 | [diff] [blame] | 204 | CHOOSE_MODE(uml_idle_timer(), (void) 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | while(1){ |
| 207 | /* endless idle loop with no priority at all */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
| 209 | /* |
| 210 | * although we are an idle CPU, we do not want to |
| 211 | * get into the scheduler unnecessarily. |
| 212 | */ |
| 213 | if(need_resched()) |
| 214 | schedule(); |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | idle_sleep(10); |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | void cpu_idle(void) |
| 221 | { |
| 222 | CHOOSE_MODE(init_idle_tt(), init_idle_skas()); |
| 223 | } |
| 224 | |
| 225 | int page_size(void) |
| 226 | { |
| 227 | return(PAGE_SIZE); |
| 228 | } |
| 229 | |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 230 | void *um_virt_to_phys(struct task_struct *task, unsigned long addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | pte_t *pte_out) |
| 232 | { |
| 233 | pgd_t *pgd; |
| 234 | pud_t *pud; |
| 235 | pmd_t *pmd; |
| 236 | pte_t *pte; |
Hugh Dickins | 8f5cd76 | 2005-10-29 18:16:38 -0700 | [diff] [blame] | 237 | pte_t ptent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 239 | if(task->mm == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | return(ERR_PTR(-EINVAL)); |
| 241 | pgd = pgd_offset(task->mm, addr); |
| 242 | if(!pgd_present(*pgd)) |
| 243 | return(ERR_PTR(-EINVAL)); |
| 244 | |
| 245 | pud = pud_offset(pgd, addr); |
| 246 | if(!pud_present(*pud)) |
| 247 | return(ERR_PTR(-EINVAL)); |
| 248 | |
| 249 | pmd = pmd_offset(pud, addr); |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 250 | if(!pmd_present(*pmd)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | return(ERR_PTR(-EINVAL)); |
| 252 | |
| 253 | pte = pte_offset_kernel(pmd, addr); |
Hugh Dickins | 8f5cd76 | 2005-10-29 18:16:38 -0700 | [diff] [blame] | 254 | ptent = *pte; |
| 255 | if(!pte_present(ptent)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | return(ERR_PTR(-EINVAL)); |
| 257 | |
| 258 | if(pte_out != NULL) |
Hugh Dickins | 8f5cd76 | 2005-10-29 18:16:38 -0700 | [diff] [blame] | 259 | *pte_out = ptent; |
| 260 | return((void *) (pte_val(ptent) & PAGE_MASK) + (addr & ~PAGE_MASK)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | char *current_cmd(void) |
| 264 | { |
| 265 | #if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM) |
| 266 | return("(Unknown)"); |
| 267 | #else |
| 268 | void *addr = um_virt_to_phys(current, current->mm->arg_start, NULL); |
| 269 | return IS_ERR(addr) ? "(Unknown)": __va((unsigned long) addr); |
| 270 | #endif |
| 271 | } |
| 272 | |
| 273 | void force_sigbus(void) |
| 274 | { |
Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 275 | printk(KERN_ERR "Killing pid %d because of a lack of memory\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | current->pid); |
| 277 | lock_kernel(); |
| 278 | sigaddset(¤t->pending.signal, SIGBUS); |
| 279 | recalc_sigpending(); |
| 280 | current->flags |= PF_SIGNALED; |
| 281 | do_exit(SIGBUS | 0x80); |
| 282 | } |
| 283 | |
| 284 | void dump_thread(struct pt_regs *regs, struct user *u) |
| 285 | { |
| 286 | } |
| 287 | |
| 288 | void enable_hlt(void) |
| 289 | { |
| 290 | panic("enable_hlt"); |
| 291 | } |
| 292 | |
| 293 | EXPORT_SYMBOL(enable_hlt); |
| 294 | |
| 295 | void disable_hlt(void) |
| 296 | { |
| 297 | panic("disable_hlt"); |
| 298 | } |
| 299 | |
| 300 | EXPORT_SYMBOL(disable_hlt); |
| 301 | |
| 302 | void *um_kmalloc(int size) |
| 303 | { |
Paolo 'Blaisorblade' Giarrusso | b631629 | 2006-01-18 17:42:58 -0800 | [diff] [blame] | 304 | return kmalloc(size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | void *um_kmalloc_atomic(int size) |
| 308 | { |
Paolo 'Blaisorblade' Giarrusso | b631629 | 2006-01-18 17:42:58 -0800 | [diff] [blame] | 309 | return kmalloc(size, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | void *um_vmalloc(int size) |
| 313 | { |
Paolo 'Blaisorblade' Giarrusso | b631629 | 2006-01-18 17:42:58 -0800 | [diff] [blame] | 314 | return vmalloc(size); |
| 315 | } |
| 316 | |
| 317 | void *um_vmalloc_atomic(int size) |
| 318 | { |
| 319 | return __vmalloc(size, GFP_ATOMIC | __GFP_HIGHMEM, PAGE_KERNEL); |
| 320 | } |
| 321 | |
| 322 | int __cant_sleep(void) { |
| 323 | return in_atomic() || irqs_disabled() || in_interrupt(); |
| 324 | /* Is in_interrupt() really needed? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | unsigned long get_fault_addr(void) |
| 328 | { |
| 329 | return((unsigned long) current->thread.fault_addr); |
| 330 | } |
| 331 | |
| 332 | EXPORT_SYMBOL(get_fault_addr); |
| 333 | |
| 334 | void not_implemented(void) |
| 335 | { |
| 336 | printk(KERN_DEBUG "Something isn't implemented in here\n"); |
| 337 | } |
| 338 | |
| 339 | EXPORT_SYMBOL(not_implemented); |
| 340 | |
| 341 | int user_context(unsigned long sp) |
| 342 | { |
| 343 | unsigned long stack; |
| 344 | |
| 345 | stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER); |
| 346 | return(stack != (unsigned long) current_thread); |
| 347 | } |
| 348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end; |
| 350 | |
| 351 | void do_uml_exitcalls(void) |
| 352 | { |
| 353 | exitcall_t *call; |
| 354 | |
| 355 | call = &__uml_exitcall_end; |
| 356 | while (--call >= &__uml_exitcall_begin) |
| 357 | (*call)(); |
| 358 | } |
| 359 | |
| 360 | char *uml_strdup(char *string) |
| 361 | { |
Robert Love | dfe5224 | 2005-06-23 00:09:04 -0700 | [diff] [blame] | 362 | return kstrdup(string, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | } |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | int copy_to_user_proc(void __user *to, void *from, int size) |
| 366 | { |
| 367 | return(copy_to_user(to, from, size)); |
| 368 | } |
| 369 | |
| 370 | int copy_from_user_proc(void *to, void __user *from, int size) |
| 371 | { |
| 372 | return(copy_from_user(to, from, size)); |
| 373 | } |
| 374 | |
| 375 | int clear_user_proc(void __user *buf, int size) |
| 376 | { |
| 377 | return(clear_user(buf, size)); |
| 378 | } |
| 379 | |
| 380 | int strlen_user_proc(char __user *str) |
| 381 | { |
| 382 | return(strlen_user(str)); |
| 383 | } |
| 384 | |
| 385 | int smp_sigio_handler(void) |
| 386 | { |
| 387 | #ifdef CONFIG_SMP |
| 388 | int cpu = current_thread->cpu; |
| 389 | IPI_handler(cpu); |
| 390 | if(cpu != 0) |
| 391 | return(1); |
| 392 | #endif |
| 393 | return(0); |
| 394 | } |
| 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | int cpu(void) |
| 397 | { |
| 398 | return(current_thread->cpu); |
| 399 | } |
| 400 | |
| 401 | static atomic_t using_sysemu = ATOMIC_INIT(0); |
| 402 | int sysemu_supported; |
| 403 | |
| 404 | void set_using_sysemu(int value) |
| 405 | { |
| 406 | if (value > sysemu_supported) |
| 407 | return; |
| 408 | atomic_set(&using_sysemu, value); |
| 409 | } |
| 410 | |
| 411 | int get_using_sysemu(void) |
| 412 | { |
| 413 | return atomic_read(&using_sysemu); |
| 414 | } |
| 415 | |
| 416 | static int proc_read_sysemu(char *buf, char **start, off_t offset, int size,int *eof, void *data) |
| 417 | { |
| 418 | if (snprintf(buf, size, "%d\n", get_using_sysemu()) < size) /*No overflow*/ |
| 419 | *eof = 1; |
| 420 | |
| 421 | return strlen(buf); |
| 422 | } |
| 423 | |
Al Viro | 4d338e1 | 2006-03-31 02:30:15 -0800 | [diff] [blame] | 424 | static int proc_write_sysemu(struct file *file,const char __user *buf, unsigned long count,void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | { |
| 426 | char tmp[2]; |
| 427 | |
| 428 | if (copy_from_user(tmp, buf, 1)) |
| 429 | return -EFAULT; |
| 430 | |
| 431 | if (tmp[0] >= '0' && tmp[0] <= '2') |
| 432 | set_using_sysemu(tmp[0] - '0'); |
| 433 | return count; /*We use the first char, but pretend to write everything*/ |
| 434 | } |
| 435 | |
| 436 | int __init make_proc_sysemu(void) |
| 437 | { |
| 438 | struct proc_dir_entry *ent; |
| 439 | if (!sysemu_supported) |
| 440 | return 0; |
| 441 | |
| 442 | ent = create_proc_entry("sysemu", 0600, &proc_root); |
| 443 | |
| 444 | if (ent == NULL) |
| 445 | { |
Christophe Lucas | 30f417c | 2005-07-28 21:16:12 -0700 | [diff] [blame] | 446 | printk(KERN_WARNING "Failed to register /proc/sysemu\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | return(0); |
| 448 | } |
| 449 | |
| 450 | ent->read_proc = proc_read_sysemu; |
| 451 | ent->write_proc = proc_write_sysemu; |
| 452 | |
| 453 | return 0; |
| 454 | } |
| 455 | |
| 456 | late_initcall(make_proc_sysemu); |
| 457 | |
| 458 | int singlestepping(void * t) |
| 459 | { |
| 460 | struct task_struct *task = t ? t : current; |
| 461 | |
| 462 | if ( ! (task->ptrace & PT_DTRACE) ) |
| 463 | return(0); |
| 464 | |
| 465 | if (task->thread.singlestep_syscall) |
| 466 | return(1); |
| 467 | |
| 468 | return 2; |
| 469 | } |
| 470 | |
Bodo Stroesser | b8bd022 | 2005-05-06 21:30:53 -0700 | [diff] [blame] | 471 | /* |
| 472 | * Only x86 and x86_64 have an arch_align_stack(). |
| 473 | * All other arches have "#define arch_align_stack(x) (x)" |
| 474 | * in their asm/system.h |
| 475 | * As this is included in UML from asm-um/system-generic.h, |
| 476 | * we can use it to behave as the subarch does. |
| 477 | */ |
| 478 | #ifndef arch_align_stack |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | unsigned long arch_align_stack(unsigned long sp) |
| 480 | { |
Jeff Dike | 8f80e94 | 2006-09-25 23:33:01 -0700 | [diff] [blame] | 481 | if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | sp -= get_random_int() % 8192; |
| 483 | return sp & ~0xf; |
| 484 | } |
Bodo Stroesser | b8bd022 | 2005-05-06 21:30:53 -0700 | [diff] [blame] | 485 | #endif |