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