2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Copyright 2003 PathScale, Inc.
4 * Licensed under the GPL
7 #include "linux/config.h"
8 #include "linux/kernel.h"
9 #include "linux/sched.h"
10 #include "linux/interrupt.h"
11 #include "linux/string.h"
13 #include "linux/slab.h"
14 #include "linux/utsname.h"
16 #include "linux/utime.h"
17 #include "linux/smp_lock.h"
18 #include "linux/module.h"
19 #include "linux/init.h"
20 #include "linux/capability.h"
21 #include "linux/vmalloc.h"
22 #include "linux/spinlock.h"
23 #include "linux/proc_fs.h"
24 #include "linux/ptrace.h"
25 #include "linux/random.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 "user_util.h"
36 #include "kern_util.h"
38 #include "signal_kern.h"
39 #include "signal_user.h"
43 #include "time_user.h"
45 #include "frame_kern.h"
46 #include "sigcontext.h"
49 #include "mode_kern.h"
50 #include "choose-mode.h"
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
56 struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } };
58 int external_pid(void *t)
60 struct task_struct *task = t ? t : current;
62 return(CHOOSE_MODE_PROC(external_pid_tt, external_pid_skas, task));
65 int pid_to_processor_id(int pid)
69 for(i = 0; i < ncpus; i++){
70 if(cpu_tasks[i].pid == pid) return(i);
75 void free_stack(unsigned long stack, int order)
77 free_pages(stack, order);
80 unsigned long alloc_stack(int order, int atomic)
83 int flags = GFP_KERNEL;
85 if(atomic) flags |= GFP_ATOMIC;
86 page = __get_free_pages(flags, order);
89 stack_protections(page);
93 int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
97 current->thread.request.u.thread.proc = fn;
98 current->thread.request.u.thread.arg = arg;
99 pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0,
100 ¤t->thread.regs, 0, NULL, NULL);
102 panic("do_fork failed in kernel_thread, errno = %d", pid);
106 void set_current(void *t)
108 struct task_struct *task = t;
110 cpu_tasks[task->thread_info->cpu] = ((struct cpu_task)
111 { external_pid(task), task });
114 void *_switch_to(void *prev, void *next, void *last)
116 return(CHOOSE_MODE(switch_to_tt(prev, next),
117 switch_to_skas(prev, next)));
120 void interrupt_end(void)
122 if(need_resched()) schedule();
123 if(test_tsk_thread_flag(current, TIF_SIGPENDING)) do_signal();
126 void release_thread(struct task_struct *task)
128 CHOOSE_MODE(release_thread_tt(task), release_thread_skas(task));
131 void exit_thread(void)
133 unprotect_stack((unsigned long) current_thread);
136 void *get_current(void)
141 int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
142 unsigned long stack_top, struct task_struct * p,
143 struct pt_regs *regs)
145 p->thread = (struct thread_struct) INIT_THREAD;
146 return(CHOOSE_MODE_PROC(copy_thread_tt, copy_thread_skas, nr,
147 clone_flags, sp, stack_top, p, regs));
150 void initial_thread_cb(void (*proc)(void *), void *arg)
152 int save_kmalloc_ok = kmalloc_ok;
155 CHOOSE_MODE_PROC(initial_thread_cb_tt, initial_thread_cb_skas, proc,
157 kmalloc_ok = save_kmalloc_ok;
160 unsigned long stack_sp(unsigned long page)
162 return(page + PAGE_SIZE - sizeof(void *));
165 int current_pid(void)
167 return(current->pid);
170 void default_idle(void)
172 CHOOSE_MODE(uml_idle_timer(), (void) 0);
174 atomic_inc(&init_mm.mm_count);
175 current->mm = &init_mm;
176 current->active_mm = &init_mm;
179 /* endless idle loop with no priority at all */
182 * although we are an idle CPU, we do not want to
183 * get into the scheduler unnecessarily.
194 CHOOSE_MODE(init_idle_tt(), init_idle_skas());
202 void *um_virt_to_phys(struct task_struct *task, unsigned long addr,
211 return(ERR_PTR(-EINVAL));
212 pgd = pgd_offset(task->mm, addr);
213 if(!pgd_present(*pgd))
214 return(ERR_PTR(-EINVAL));
216 pud = pud_offset(pgd, addr);
217 if(!pud_present(*pud))
218 return(ERR_PTR(-EINVAL));
220 pmd = pmd_offset(pud, addr);
221 if(!pmd_present(*pmd))
222 return(ERR_PTR(-EINVAL));
224 pte = pte_offset_kernel(pmd, addr);
225 if(!pte_present(*pte))
226 return(ERR_PTR(-EINVAL));
230 return((void *) (pte_val(*pte) & PAGE_MASK) + (addr & ~PAGE_MASK));
233 char *current_cmd(void)
235 #if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM)
238 void *addr = um_virt_to_phys(current, current->mm->arg_start, NULL);
239 return IS_ERR(addr) ? "(Unknown)": __va((unsigned long) addr);
243 void force_sigbus(void)
245 printk(KERN_ERR "Killing pid %d because of a lack of memory\n",
248 sigaddset(¤t->pending.signal, SIGBUS);
250 current->flags |= PF_SIGNALED;
251 do_exit(SIGBUS | 0x80);
254 void dump_thread(struct pt_regs *regs, struct user *u)
258 void enable_hlt(void)
263 EXPORT_SYMBOL(enable_hlt);
265 void disable_hlt(void)
267 panic("disable_hlt");
270 EXPORT_SYMBOL(disable_hlt);
272 void *um_kmalloc(int size)
274 return(kmalloc(size, GFP_KERNEL));
277 void *um_kmalloc_atomic(int size)
279 return(kmalloc(size, GFP_ATOMIC));
282 void *um_vmalloc(int size)
284 return(vmalloc(size));
287 unsigned long get_fault_addr(void)
289 return((unsigned long) current->thread.fault_addr);
292 EXPORT_SYMBOL(get_fault_addr);
294 void not_implemented(void)
296 printk(KERN_DEBUG "Something isn't implemented in here\n");
299 EXPORT_SYMBOL(not_implemented);
301 int user_context(unsigned long sp)
305 stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER);
306 return(stack != (unsigned long) current_thread);
309 extern void remove_umid_dir(void);
311 __uml_exitcall(remove_umid_dir);
313 extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end;
315 void do_uml_exitcalls(void)
319 call = &__uml_exitcall_end;
320 while (--call >= &__uml_exitcall_begin)
324 char *uml_strdup(char *string)
326 return kstrdup(string, GFP_KERNEL);
329 int copy_to_user_proc(void __user *to, void *from, int size)
331 return(copy_to_user(to, from, size));
334 int copy_from_user_proc(void *to, void __user *from, int size)
336 return(copy_from_user(to, from, size));
339 int clear_user_proc(void __user *buf, int size)
341 return(clear_user(buf, size));
344 int strlen_user_proc(char __user *str)
346 return(strlen_user(str));
349 int smp_sigio_handler(void)
352 int cpu = current_thread->cpu;
360 int um_in_interrupt(void)
362 return(in_interrupt());
367 return(current_thread->cpu);
370 static atomic_t using_sysemu = ATOMIC_INIT(0);
371 int sysemu_supported;
373 void set_using_sysemu(int value)
375 if (value > sysemu_supported)
377 atomic_set(&using_sysemu, value);
380 int get_using_sysemu(void)
382 return atomic_read(&using_sysemu);
385 static int proc_read_sysemu(char *buf, char **start, off_t offset, int size,int *eof, void *data)
387 if (snprintf(buf, size, "%d\n", get_using_sysemu()) < size) /*No overflow*/
393 static int proc_write_sysemu(struct file *file,const char *buf, unsigned long count,void *data)
397 if (copy_from_user(tmp, buf, 1))
400 if (tmp[0] >= '0' && tmp[0] <= '2')
401 set_using_sysemu(tmp[0] - '0');
402 return count; /*We use the first char, but pretend to write everything*/
405 int __init make_proc_sysemu(void)
407 struct proc_dir_entry *ent;
408 if (!sysemu_supported)
411 ent = create_proc_entry("sysemu", 0600, &proc_root);
415 printk(KERN_WARNING "Failed to register /proc/sysemu\n");
419 ent->read_proc = proc_read_sysemu;
420 ent->write_proc = proc_write_sysemu;
425 late_initcall(make_proc_sysemu);
427 int singlestepping(void * t)
429 struct task_struct *task = t ? t : current;
431 if ( ! (task->ptrace & PT_DTRACE) )
434 if (task->thread.singlestep_syscall)
441 * Only x86 and x86_64 have an arch_align_stack().
442 * All other arches have "#define arch_align_stack(x) (x)"
443 * in their asm/system.h
444 * As this is included in UML from asm-um/system-generic.h,
445 * we can use it to behave as the subarch does.
447 #ifndef arch_align_stack
448 unsigned long arch_align_stack(unsigned long sp)
450 if (randomize_va_space)
451 sp -= get_random_int() % 8192;