blob: ba8a52c1f7aec814f63e70ab405fcba1a06fa508 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Copyright 2003 PathScale, Inc.
4 * Licensed under the GPL
5 */
6
7#include "linux/config.h"
8#include "linux/kernel.h"
9#include "linux/sched.h"
10#include "linux/interrupt.h"
Robert Lovedfe52242005-06-23 00:09:04 -070011#include "linux/string.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "linux/mm.h"
13#include "linux/slab.h"
14#include "linux/utsname.h"
15#include "linux/fs.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"
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"
37#include "kern.h"
38#include "signal_kern.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "init.h"
40#include "irq_user.h"
41#include "mem_user.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "tlb.h"
43#include "frame_kern.h"
44#include "sigcontext.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "os.h"
46#include "mode.h"
47#include "mode_kern.h"
48#include "choose-mode.h"
49
50/* This is a per-cpu array. A processor only modifies its entry and it only
51 * cares about its entry, so it's OK if another processor is modifying its
52 * entry.
53 */
54struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } };
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056int external_pid(void *t)
57{
58 struct task_struct *task = t ? t : current;
59
60 return(CHOOSE_MODE_PROC(external_pid_tt, external_pid_skas, task));
61}
62
63int pid_to_processor_id(int pid)
64{
65 int i;
66
67 for(i = 0; i < ncpus; i++){
68 if(cpu_tasks[i].pid == pid) return(i);
69 }
70 return(-1);
71}
72
73void free_stack(unsigned long stack, int order)
74{
75 free_pages(stack, order);
76}
77
78unsigned long alloc_stack(int order, int atomic)
79{
80 unsigned long page;
Al Viro53f9fc92005-10-21 03:22:24 -040081 gfp_t flags = GFP_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Paolo 'Blaisorblade' Giarrusso46db4a42005-09-22 21:44:20 -070083 if (atomic)
84 flags = GFP_ATOMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 page = __get_free_pages(flags, order);
86 if(page == 0)
87 return(0);
88 stack_protections(page);
89 return(page);
90}
91
92int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
93{
94 int pid;
95
96 current->thread.request.u.thread.proc = fn;
97 current->thread.request.u.thread.arg = arg;
Jeff Dikee0877f02005-06-25 14:55:21 -070098 pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0,
99 &current->thread.regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if(pid < 0)
101 panic("do_fork failed in kernel_thread, errno = %d", pid);
102 return(pid);
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105void set_current(void *t)
106{
107 struct task_struct *task = t;
108
Al Viroca9bc0b2006-01-12 01:05:48 -0800109 cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 { external_pid(task), task });
111}
112
113void *_switch_to(void *prev, void *next, void *last)
114{
Jeff Dikef6e34c62005-09-16 19:27:43 -0700115 struct task_struct *from = prev;
116 struct task_struct *to= next;
117
118 to->thread.prev_sched = from;
119 set_current(to);
120
Jeff Dike3eddddc2005-09-16 19:27:46 -0700121 do {
122 current->thread.saved_task = NULL ;
123 CHOOSE_MODE_PROC(switch_to_tt, switch_to_skas, prev, next);
124 if(current->thread.saved_task)
125 show_regs(&(current->thread.regs));
126 next= current->thread.saved_task;
127 prev= current;
128 } while(current->thread.saved_task);
Jeff Dikef6e34c62005-09-16 19:27:43 -0700129
130 return(current->thread.prev_sched);
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134void interrupt_end(void)
135{
136 if(need_resched()) schedule();
137 if(test_tsk_thread_flag(current, TIF_SIGPENDING)) do_signal();
138}
139
140void release_thread(struct task_struct *task)
141{
142 CHOOSE_MODE(release_thread_tt(task), release_thread_skas(task));
143}
144
145void exit_thread(void)
146{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 unprotect_stack((unsigned long) current_thread);
148}
149
150void *get_current(void)
151{
152 return(current);
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
156 unsigned long stack_top, struct task_struct * p,
157 struct pt_regs *regs)
158{
159 p->thread = (struct thread_struct) INIT_THREAD;
160 return(CHOOSE_MODE_PROC(copy_thread_tt, copy_thread_skas, nr,
161 clone_flags, sp, stack_top, p, regs));
162}
163
164void initial_thread_cb(void (*proc)(void *), void *arg)
165{
166 int save_kmalloc_ok = kmalloc_ok;
167
168 kmalloc_ok = 0;
169 CHOOSE_MODE_PROC(initial_thread_cb_tt, initial_thread_cb_skas, proc,
170 arg);
171 kmalloc_ok = save_kmalloc_ok;
172}
173
174unsigned long stack_sp(unsigned long page)
175{
176 return(page + PAGE_SIZE - sizeof(void *));
177}
178
179int current_pid(void)
180{
181 return(current->pid);
182}
183
184void default_idle(void)
185{
Jeff Dikea6f4e3c2005-06-25 14:55:22 -0700186 CHOOSE_MODE(uml_idle_timer(), (void) 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 while(1){
189 /* endless idle loop with no priority at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 /*
192 * although we are an idle CPU, we do not want to
193 * get into the scheduler unnecessarily.
194 */
195 if(need_resched())
196 schedule();
197
198 idle_sleep(10);
199 }
200}
201
202void cpu_idle(void)
203{
204 CHOOSE_MODE(init_idle_tt(), init_idle_skas());
205}
206
207int page_size(void)
208{
209 return(PAGE_SIZE);
210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212void *um_virt_to_phys(struct task_struct *task, unsigned long addr,
213 pte_t *pte_out)
214{
215 pgd_t *pgd;
216 pud_t *pud;
217 pmd_t *pmd;
218 pte_t *pte;
Hugh Dickins8f5cd762005-10-29 18:16:38 -0700219 pte_t ptent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 if(task->mm == NULL)
222 return(ERR_PTR(-EINVAL));
223 pgd = pgd_offset(task->mm, addr);
224 if(!pgd_present(*pgd))
225 return(ERR_PTR(-EINVAL));
226
227 pud = pud_offset(pgd, addr);
228 if(!pud_present(*pud))
229 return(ERR_PTR(-EINVAL));
230
231 pmd = pmd_offset(pud, addr);
232 if(!pmd_present(*pmd))
233 return(ERR_PTR(-EINVAL));
234
235 pte = pte_offset_kernel(pmd, addr);
Hugh Dickins8f5cd762005-10-29 18:16:38 -0700236 ptent = *pte;
237 if(!pte_present(ptent))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return(ERR_PTR(-EINVAL));
239
240 if(pte_out != NULL)
Hugh Dickins8f5cd762005-10-29 18:16:38 -0700241 *pte_out = ptent;
242 return((void *) (pte_val(ptent) & PAGE_MASK) + (addr & ~PAGE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245char *current_cmd(void)
246{
247#if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM)
248 return("(Unknown)");
249#else
250 void *addr = um_virt_to_phys(current, current->mm->arg_start, NULL);
251 return IS_ERR(addr) ? "(Unknown)": __va((unsigned long) addr);
252#endif
253}
254
255void force_sigbus(void)
256{
257 printk(KERN_ERR "Killing pid %d because of a lack of memory\n",
258 current->pid);
259 lock_kernel();
260 sigaddset(&current->pending.signal, SIGBUS);
261 recalc_sigpending();
262 current->flags |= PF_SIGNALED;
263 do_exit(SIGBUS | 0x80);
264}
265
266void dump_thread(struct pt_regs *regs, struct user *u)
267{
268}
269
270void enable_hlt(void)
271{
272 panic("enable_hlt");
273}
274
275EXPORT_SYMBOL(enable_hlt);
276
277void disable_hlt(void)
278{
279 panic("disable_hlt");
280}
281
282EXPORT_SYMBOL(disable_hlt);
283
284void *um_kmalloc(int size)
285{
Paolo 'Blaisorblade' Giarrussob6316292006-01-18 17:42:58 -0800286 return kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289void *um_kmalloc_atomic(int size)
290{
Paolo 'Blaisorblade' Giarrussob6316292006-01-18 17:42:58 -0800291 return kmalloc(size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294void *um_vmalloc(int size)
295{
Paolo 'Blaisorblade' Giarrussob6316292006-01-18 17:42:58 -0800296 return vmalloc(size);
297}
298
299void *um_vmalloc_atomic(int size)
300{
301 return __vmalloc(size, GFP_ATOMIC | __GFP_HIGHMEM, PAGE_KERNEL);
302}
303
304int __cant_sleep(void) {
305 return in_atomic() || irqs_disabled() || in_interrupt();
306 /* Is in_interrupt() really needed? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309unsigned long get_fault_addr(void)
310{
311 return((unsigned long) current->thread.fault_addr);
312}
313
314EXPORT_SYMBOL(get_fault_addr);
315
316void not_implemented(void)
317{
318 printk(KERN_DEBUG "Something isn't implemented in here\n");
319}
320
321EXPORT_SYMBOL(not_implemented);
322
323int user_context(unsigned long sp)
324{
325 unsigned long stack;
326
327 stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER);
328 return(stack != (unsigned long) current_thread);
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end;
332
333void do_uml_exitcalls(void)
334{
335 exitcall_t *call;
336
337 call = &__uml_exitcall_end;
338 while (--call >= &__uml_exitcall_begin)
339 (*call)();
340}
341
342char *uml_strdup(char *string)
343{
Robert Lovedfe52242005-06-23 00:09:04 -0700344 return kstrdup(string, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347int copy_to_user_proc(void __user *to, void *from, int size)
348{
349 return(copy_to_user(to, from, size));
350}
351
352int copy_from_user_proc(void *to, void __user *from, int size)
353{
354 return(copy_from_user(to, from, size));
355}
356
357int clear_user_proc(void __user *buf, int size)
358{
359 return(clear_user(buf, size));
360}
361
362int strlen_user_proc(char __user *str)
363{
364 return(strlen_user(str));
365}
366
367int smp_sigio_handler(void)
368{
369#ifdef CONFIG_SMP
370 int cpu = current_thread->cpu;
371 IPI_handler(cpu);
372 if(cpu != 0)
373 return(1);
374#endif
375 return(0);
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378int cpu(void)
379{
380 return(current_thread->cpu);
381}
382
383static atomic_t using_sysemu = ATOMIC_INIT(0);
384int sysemu_supported;
385
386void set_using_sysemu(int value)
387{
388 if (value > sysemu_supported)
389 return;
390 atomic_set(&using_sysemu, value);
391}
392
393int get_using_sysemu(void)
394{
395 return atomic_read(&using_sysemu);
396}
397
398static int proc_read_sysemu(char *buf, char **start, off_t offset, int size,int *eof, void *data)
399{
400 if (snprintf(buf, size, "%d\n", get_using_sysemu()) < size) /*No overflow*/
401 *eof = 1;
402
403 return strlen(buf);
404}
405
Al Viro4d338e12006-03-31 02:30:15 -0800406static int proc_write_sysemu(struct file *file,const char __user *buf, unsigned long count,void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 char tmp[2];
409
410 if (copy_from_user(tmp, buf, 1))
411 return -EFAULT;
412
413 if (tmp[0] >= '0' && tmp[0] <= '2')
414 set_using_sysemu(tmp[0] - '0');
415 return count; /*We use the first char, but pretend to write everything*/
416}
417
418int __init make_proc_sysemu(void)
419{
420 struct proc_dir_entry *ent;
421 if (!sysemu_supported)
422 return 0;
423
424 ent = create_proc_entry("sysemu", 0600, &proc_root);
425
426 if (ent == NULL)
427 {
Christophe Lucas30f417c2005-07-28 21:16:12 -0700428 printk(KERN_WARNING "Failed to register /proc/sysemu\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return(0);
430 }
431
432 ent->read_proc = proc_read_sysemu;
433 ent->write_proc = proc_write_sysemu;
434
435 return 0;
436}
437
438late_initcall(make_proc_sysemu);
439
440int singlestepping(void * t)
441{
442 struct task_struct *task = t ? t : current;
443
444 if ( ! (task->ptrace & PT_DTRACE) )
445 return(0);
446
447 if (task->thread.singlestep_syscall)
448 return(1);
449
450 return 2;
451}
452
Bodo Stroesserb8bd0222005-05-06 21:30:53 -0700453/*
454 * Only x86 and x86_64 have an arch_align_stack().
455 * All other arches have "#define arch_align_stack(x) (x)"
456 * in their asm/system.h
457 * As this is included in UML from asm-um/system-generic.h,
458 * we can use it to behave as the subarch does.
459 */
460#ifndef arch_align_stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461unsigned long arch_align_stack(unsigned long sp)
462{
463 if (randomize_va_space)
464 sp -= get_random_int() % 8192;
465 return sp & ~0xf;
466}
Bodo Stroesserb8bd0222005-05-06 21:30:53 -0700467#endif