2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Copyright 2003 PathScale, Inc.
4 * Licensed under the GPL
7 #include "linux/kernel.h"
8 #include "linux/sched.h"
9 #include "linux/interrupt.h"
10 #include "linux/string.h"
12 #include "linux/slab.h"
13 #include "linux/utsname.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"
25 #include "linux/personality.h"
26 #include "asm/unistd.h"
28 #include "asm/segment.h"
30 #include "asm/pgtable.h"
31 #include "asm/processor.h"
32 #include "asm/tlbflush.h"
33 #include "asm/uaccess.h"
35 #include "kern_util.h"
36 #include "as-layout.h"
38 #include "signal_kern.h"
43 #include "frame_kern.h"
44 #include "sigcontext.h"
47 #include "mode_kern.h"
48 #include "choose-mode.h"
49 #include "um_malloc.h"
51 /* This is a per-cpu array. A processor only modifies its entry and it only
52 * cares about its entry, so it's OK if another processor is modifying its
55 struct cpu_task cpu_tasks
[NR_CPUS
] = { [0 ... NR_CPUS
- 1] = { -1, NULL
} };
57 static inline int external_pid(struct task_struct
*task
)
59 return CHOOSE_MODE_PROC(external_pid_tt
, external_pid_skas
, task
);
62 int pid_to_processor_id(int pid
)
66 for(i
= 0; i
< ncpus
; i
++){
67 if(cpu_tasks
[i
].pid
== pid
)
73 void free_stack(unsigned long stack
, int order
)
75 free_pages(stack
, order
);
78 unsigned long alloc_stack(int order
, int atomic
)
81 gfp_t flags
= GFP_KERNEL
;
85 page
= __get_free_pages(flags
, order
);
88 stack_protections(page
);
92 int kernel_thread(int (*fn
)(void *), void * arg
, unsigned long flags
)
96 current
->thread
.request
.u
.thread
.proc
= fn
;
97 current
->thread
.request
.u
.thread
.arg
= arg
;
98 pid
= do_fork(CLONE_VM
| CLONE_UNTRACED
| flags
, 0,
99 ¤t
->thread
.regs
, 0, NULL
, NULL
);
103 static inline void set_current(struct task_struct
*task
)
105 cpu_tasks
[task_thread_info(task
)->cpu
] = ((struct cpu_task
)
106 { external_pid(task
), task
});
109 void *_switch_to(void *prev
, void *next
, void *last
)
111 struct task_struct
*from
= prev
;
112 struct task_struct
*to
= next
;
114 to
->thread
.prev_sched
= from
;
118 current
->thread
.saved_task
= NULL
;
119 CHOOSE_MODE_PROC(switch_to_tt
, switch_to_skas
, prev
, next
);
120 if(current
->thread
.saved_task
)
121 show_regs(&(current
->thread
.regs
));
122 next
= current
->thread
.saved_task
;
124 } while(current
->thread
.saved_task
);
126 return current
->thread
.prev_sched
;
130 void interrupt_end(void)
134 if(test_tsk_thread_flag(current
, TIF_SIGPENDING
))
138 void release_thread(struct task_struct
*task
)
140 CHOOSE_MODE(release_thread_tt(task
), release_thread_skas(task
));
143 void exit_thread(void)
145 unprotect_stack((unsigned long) current_thread
);
148 void *get_current(void)
153 int copy_thread(int nr
, unsigned long clone_flags
, unsigned long sp
,
154 unsigned long stack_top
, struct task_struct
* p
,
155 struct pt_regs
*regs
)
159 p
->thread
= (struct thread_struct
) INIT_THREAD
;
160 ret
= CHOOSE_MODE_PROC(copy_thread_tt
, copy_thread_skas
, nr
,
161 clone_flags
, sp
, stack_top
, p
, regs
);
163 if (ret
|| !current
->thread
.forking
)
166 clear_flushed_tls(p
);
169 * Set a new TLS for the child thread?
171 if (clone_flags
& CLONE_SETTLS
)
172 ret
= arch_copy_tls(p
);
178 void initial_thread_cb(void (*proc
)(void *), void *arg
)
180 int save_kmalloc_ok
= kmalloc_ok
;
183 CHOOSE_MODE_PROC(initial_thread_cb_tt
, initial_thread_cb_skas
, proc
,
185 kmalloc_ok
= save_kmalloc_ok
;
188 #ifdef CONFIG_MODE_TT
189 unsigned long stack_sp(unsigned long page
)
191 return page
+ PAGE_SIZE
- sizeof(void *);
195 void default_idle(void)
197 CHOOSE_MODE(uml_idle_timer(), (void) 0);
200 /* endless idle loop with no priority at all */
203 * although we are an idle CPU, we do not want to
204 * get into the scheduler unnecessarily.
215 CHOOSE_MODE(init_idle_tt(), init_idle_skas());
218 void *um_virt_to_phys(struct task_struct
*task
, unsigned long addr
,
228 return ERR_PTR(-EINVAL
);
229 pgd
= pgd_offset(task
->mm
, addr
);
230 if(!pgd_present(*pgd
))
231 return ERR_PTR(-EINVAL
);
233 pud
= pud_offset(pgd
, addr
);
234 if(!pud_present(*pud
))
235 return ERR_PTR(-EINVAL
);
237 pmd
= pmd_offset(pud
, addr
);
238 if(!pmd_present(*pmd
))
239 return ERR_PTR(-EINVAL
);
241 pte
= pte_offset_kernel(pmd
, addr
);
243 if(!pte_present(ptent
))
244 return ERR_PTR(-EINVAL
);
248 return (void *) (pte_val(ptent
) & PAGE_MASK
) + (addr
& ~PAGE_MASK
);
251 char *current_cmd(void)
253 #if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM)
256 void *addr
= um_virt_to_phys(current
, current
->mm
->arg_start
, NULL
);
257 return IS_ERR(addr
) ? "(Unknown)": __va((unsigned long) addr
);
261 void dump_thread(struct pt_regs
*regs
, struct user
*u
)
265 void *um_kmalloc(int size
)
267 return kmalloc(size
, GFP_KERNEL
);
270 void *um_kmalloc_atomic(int size
)
272 return kmalloc(size
, GFP_ATOMIC
);
275 void *um_vmalloc(int size
)
277 return vmalloc(size
);
280 int __cant_sleep(void) {
281 return in_atomic() || irqs_disabled() || in_interrupt();
282 /* Is in_interrupt() really needed? */
285 int user_context(unsigned long sp
)
289 stack
= sp
& (PAGE_MASK
<< CONFIG_KERNEL_STACK_ORDER
);
290 return stack
!= (unsigned long) current_thread
;
293 extern exitcall_t __uml_exitcall_begin
, __uml_exitcall_end
;
295 void do_uml_exitcalls(void)
299 call
= &__uml_exitcall_end
;
300 while (--call
>= &__uml_exitcall_begin
)
304 char *uml_strdup(char *string
)
306 return kstrdup(string
, GFP_KERNEL
);
309 int copy_to_user_proc(void __user
*to
, void *from
, int size
)
311 return copy_to_user(to
, from
, size
);
314 int copy_from_user_proc(void *to
, void __user
*from
, int size
)
316 return copy_from_user(to
, from
, size
);
319 int clear_user_proc(void __user
*buf
, int size
)
321 return clear_user(buf
, size
);
324 int strlen_user_proc(char __user
*str
)
326 return strlen_user(str
);
329 int smp_sigio_handler(void)
332 int cpu
= current_thread
->cpu
;
342 return current_thread
->cpu
;
345 static atomic_t using_sysemu
= ATOMIC_INIT(0);
346 int sysemu_supported
;
348 void set_using_sysemu(int value
)
350 if (value
> sysemu_supported
)
352 atomic_set(&using_sysemu
, value
);
355 int get_using_sysemu(void)
357 return atomic_read(&using_sysemu
);
360 static int proc_read_sysemu(char *buf
, char **start
, off_t offset
, int size
,int *eof
, void *data
)
362 if (snprintf(buf
, size
, "%d\n", get_using_sysemu()) < size
) /*No overflow*/
368 static int proc_write_sysemu(struct file
*file
,const char __user
*buf
, unsigned long count
,void *data
)
372 if (copy_from_user(tmp
, buf
, 1))
375 if (tmp
[0] >= '0' && tmp
[0] <= '2')
376 set_using_sysemu(tmp
[0] - '0');
377 return count
; /*We use the first char, but pretend to write everything*/
380 int __init
make_proc_sysemu(void)
382 struct proc_dir_entry
*ent
;
383 if (!sysemu_supported
)
386 ent
= create_proc_entry("sysemu", 0600, &proc_root
);
390 printk(KERN_WARNING
"Failed to register /proc/sysemu\n");
394 ent
->read_proc
= proc_read_sysemu
;
395 ent
->write_proc
= proc_write_sysemu
;
400 late_initcall(make_proc_sysemu
);
402 int singlestepping(void * t
)
404 struct task_struct
*task
= t
? t
: current
;
406 if ( ! (task
->ptrace
& PT_DTRACE
) )
409 if (task
->thread
.singlestep_syscall
)
416 * Only x86 and x86_64 have an arch_align_stack().
417 * All other arches have "#define arch_align_stack(x) (x)"
418 * in their asm/system.h
419 * As this is included in UML from asm-um/system-generic.h,
420 * we can use it to behave as the subarch does.
422 #ifndef arch_align_stack
423 unsigned long arch_align_stack(unsigned long sp
)
425 if (!(current
->personality
& ADDR_NO_RANDOMIZE
) && randomize_va_space
)
426 sp
-= get_random_int() % 8192;