blob: 22ad46fd2c0833d430b6480c67be2c4c85d67d89 [file] [log] [blame]
Jeff Dike995473a2006-09-27 01:50:40 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Copyright 2003 PathScale, Inc.
4 * Licensed under the GPL
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "linux/kernel.h"
8#include "linux/sched.h"
9#include "linux/interrupt.h"
Robert Lovedfe52242005-06-23 00:09:04 -070010#include "linux/string.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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 Dike8f80e942006-09-25 23:33:01 -070025#include "linux/personality.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "kern_util.h"
Jeff Dike4ff83ce2007-05-06 14:51:08 -070036#include "as-layout.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/* This is a per-cpu array. A processor only modifies its entry and it only
50 * cares about its entry, so it's OK if another processor is modifying its
51 * entry.
52 */
53struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } };
54
Jeff Dike6e21aec2007-05-06 14:51:21 -070055static inline int external_pid(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Jeff Dike6aa802c2007-10-16 01:26:56 -070057 return external_pid_skas(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60int pid_to_processor_id(int pid)
61{
62 int i;
63
64 for(i = 0; i < ncpus; i++){
Jeff Dike6e21aec2007-05-06 14:51:21 -070065 if(cpu_tasks[i].pid == pid)
66 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 }
Jeff Dike6e21aec2007-05-06 14:51:21 -070068 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71void free_stack(unsigned long stack, int order)
72{
73 free_pages(stack, order);
74}
75
76unsigned long alloc_stack(int order, int atomic)
77{
78 unsigned long page;
Al Viro53f9fc92005-10-21 03:22:24 -040079 gfp_t flags = GFP_KERNEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Paolo 'Blaisorblade' Giarrusso46db4a42005-09-22 21:44:20 -070081 if (atomic)
82 flags = GFP_ATOMIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 page = __get_free_pages(flags, order);
Jeff Dike5c8aace2007-10-16 01:26:46 -070084 if (page == 0)
Jeff Dike6e21aec2007-05-06 14:51:21 -070085 return 0;
Jeff Dike5c8aace2007-10-16 01:26:46 -070086
Jeff Dike6e21aec2007-05-06 14:51:21 -070087 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
91{
92 int pid;
93
94 current->thread.request.u.thread.proc = fn;
95 current->thread.request.u.thread.arg = arg;
Jeff Dikee0877f02005-06-25 14:55:21 -070096 pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0,
97 &current->thread.regs, 0, NULL, NULL);
Jeff Dike6e21aec2007-05-06 14:51:21 -070098 return pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Jeff Dike6e21aec2007-05-06 14:51:21 -0700101static inline void set_current(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Al Viroca9bc0b2006-01-12 01:05:48 -0800103 cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 { external_pid(task), task });
105}
106
107void *_switch_to(void *prev, void *next, void *last)
108{
Jeff Dike995473a2006-09-27 01:50:40 -0700109 struct task_struct *from = prev;
110 struct task_struct *to= next;
Jeff Dikef6e34c62005-09-16 19:27:43 -0700111
Jeff Dike995473a2006-09-27 01:50:40 -0700112 to->thread.prev_sched = from;
113 set_current(to);
Jeff Dikef6e34c62005-09-16 19:27:43 -0700114
Jeff Dike3eddddc2005-09-16 19:27:46 -0700115 do {
Jeff Dike6aa802c2007-10-16 01:26:56 -0700116 current->thread.saved_task = NULL;
117 switch_to_skas(prev, next);
Jeff Dike3eddddc2005-09-16 19:27:46 -0700118 if(current->thread.saved_task)
119 show_regs(&(current->thread.regs));
120 next= current->thread.saved_task;
121 prev= current;
122 } while(current->thread.saved_task);
Jeff Dikef6e34c62005-09-16 19:27:43 -0700123
Jeff Dike6e21aec2007-05-06 14:51:21 -0700124 return current->thread.prev_sched;
Jeff Dikef6e34c62005-09-16 19:27:43 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128void interrupt_end(void)
129{
Jeff Dike6e21aec2007-05-06 14:51:21 -0700130 if(need_resched())
131 schedule();
132 if(test_tsk_thread_flag(current, TIF_SIGPENDING))
133 do_signal();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136void release_thread(struct task_struct *task)
137{
Jeff Dike6aa802c2007-10-16 01:26:56 -0700138 release_thread_skas(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
Jeff Dike995473a2006-09-27 01:50:40 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141void exit_thread(void)
142{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
Jeff Dike995473a2006-09-27 01:50:40 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145void *get_current(void)
146{
Jeff Dike6e21aec2007-05-06 14:51:21 -0700147 return current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
Jeff Dike995473a2006-09-27 01:50:40 -0700151 unsigned long stack_top, struct task_struct * p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 struct pt_regs *regs)
153{
Paolo 'Blaisorblade' Giarrussoaa6758d2006-03-31 02:30:22 -0800154 int ret;
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 p->thread = (struct thread_struct) INIT_THREAD;
Jeff Dike6aa802c2007-10-16 01:26:56 -0700157 ret = copy_thread_skas(nr, clone_flags, sp, stack_top, p, regs);
Paolo 'Blaisorblade' Giarrussoaa6758d2006-03-31 02:30:22 -0800158
159 if (ret || !current->thread.forking)
160 goto out;
161
162 clear_flushed_tls(p);
163
164 /*
165 * Set a new TLS for the child thread?
166 */
167 if (clone_flags & CLONE_SETTLS)
168 ret = arch_copy_tls(p);
169
170out:
171 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174void initial_thread_cb(void (*proc)(void *), void *arg)
175{
176 int save_kmalloc_ok = kmalloc_ok;
177
178 kmalloc_ok = 0;
Jeff Dike6aa802c2007-10-16 01:26:56 -0700179 initial_thread_cb_skas(proc, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 kmalloc_ok = save_kmalloc_ok;
181}
Jeff Dike995473a2006-09-27 01:50:40 -0700182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183void default_idle(void)
184{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 while(1){
186 /* endless idle loop with no priority at all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 /*
189 * although we are an idle CPU, we do not want to
190 * get into the scheduler unnecessarily.
191 */
192 if(need_resched())
193 schedule();
Jeff Dike995473a2006-09-27 01:50:40 -0700194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 idle_sleep(10);
196 }
197}
198
199void cpu_idle(void)
200{
Jeff Dike6aa802c2007-10-16 01:26:56 -0700201 init_idle_skas();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Jeff Dike995473a2006-09-27 01:50:40 -0700204void *um_virt_to_phys(struct task_struct *task, unsigned long addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 pte_t *pte_out)
206{
207 pgd_t *pgd;
208 pud_t *pud;
209 pmd_t *pmd;
210 pte_t *pte;
Hugh Dickins8f5cd762005-10-29 18:16:38 -0700211 pte_t ptent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Jeff Dike995473a2006-09-27 01:50:40 -0700213 if(task->mm == NULL)
Jeff Dike6e21aec2007-05-06 14:51:21 -0700214 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 pgd = pgd_offset(task->mm, addr);
216 if(!pgd_present(*pgd))
Jeff Dike6e21aec2007-05-06 14:51:21 -0700217 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 pud = pud_offset(pgd, addr);
220 if(!pud_present(*pud))
Jeff Dike6e21aec2007-05-06 14:51:21 -0700221 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 pmd = pmd_offset(pud, addr);
Jeff Dike995473a2006-09-27 01:50:40 -0700224 if(!pmd_present(*pmd))
Jeff Dike6e21aec2007-05-06 14:51:21 -0700225 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 pte = pte_offset_kernel(pmd, addr);
Hugh Dickins8f5cd762005-10-29 18:16:38 -0700228 ptent = *pte;
229 if(!pte_present(ptent))
Jeff Dike6e21aec2007-05-06 14:51:21 -0700230 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 if(pte_out != NULL)
Hugh Dickins8f5cd762005-10-29 18:16:38 -0700233 *pte_out = ptent;
Jeff Dike6e21aec2007-05-06 14:51:21 -0700234 return (void *) (pte_val(ptent) & PAGE_MASK) + (addr & ~PAGE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237char *current_cmd(void)
238{
239#if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM)
Jeff Dike6e21aec2007-05-06 14:51:21 -0700240 return "(Unknown)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#else
242 void *addr = um_virt_to_phys(current, current->mm->arg_start, NULL);
243 return IS_ERR(addr) ? "(Unknown)": __va((unsigned long) addr);
244#endif
245}
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247void dump_thread(struct pt_regs *regs, struct user *u)
248{
249}
250
Paolo 'Blaisorblade' Giarrussob6316292006-01-18 17:42:58 -0800251int __cant_sleep(void) {
252 return in_atomic() || irqs_disabled() || in_interrupt();
253 /* Is in_interrupt() really needed? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256int user_context(unsigned long sp)
257{
258 unsigned long stack;
259
260 stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER);
Jeff Dike6e21aec2007-05-06 14:51:21 -0700261 return stack != (unsigned long) current_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end;
265
266void do_uml_exitcalls(void)
267{
268 exitcall_t *call;
269
270 call = &__uml_exitcall_end;
271 while (--call >= &__uml_exitcall_begin)
272 (*call)();
273}
274
275char *uml_strdup(char *string)
276{
Robert Lovedfe52242005-06-23 00:09:04 -0700277 return kstrdup(string, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280int copy_to_user_proc(void __user *to, void *from, int size)
281{
Jeff Dike6e21aec2007-05-06 14:51:21 -0700282 return copy_to_user(to, from, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285int copy_from_user_proc(void *to, void __user *from, int size)
286{
Jeff Dike6e21aec2007-05-06 14:51:21 -0700287 return copy_from_user(to, from, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290int clear_user_proc(void __user *buf, int size)
291{
Jeff Dike6e21aec2007-05-06 14:51:21 -0700292 return clear_user(buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295int strlen_user_proc(char __user *str)
296{
Jeff Dike6e21aec2007-05-06 14:51:21 -0700297 return strlen_user(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300int smp_sigio_handler(void)
301{
302#ifdef CONFIG_SMP
303 int cpu = current_thread->cpu;
304 IPI_handler(cpu);
305 if(cpu != 0)
Jeff Dike6e21aec2007-05-06 14:51:21 -0700306 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#endif
Jeff Dike6e21aec2007-05-06 14:51:21 -0700308 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311int cpu(void)
312{
Jeff Dike6e21aec2007-05-06 14:51:21 -0700313 return current_thread->cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316static atomic_t using_sysemu = ATOMIC_INIT(0);
317int sysemu_supported;
318
319void set_using_sysemu(int value)
320{
321 if (value > sysemu_supported)
322 return;
323 atomic_set(&using_sysemu, value);
324}
325
326int get_using_sysemu(void)
327{
328 return atomic_read(&using_sysemu);
329}
330
331static int proc_read_sysemu(char *buf, char **start, off_t offset, int size,int *eof, void *data)
332{
333 if (snprintf(buf, size, "%d\n", get_using_sysemu()) < size) /*No overflow*/
334 *eof = 1;
335
336 return strlen(buf);
337}
338
Al Viro4d338e12006-03-31 02:30:15 -0800339static int proc_write_sysemu(struct file *file,const char __user *buf, unsigned long count,void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 char tmp[2];
342
343 if (copy_from_user(tmp, buf, 1))
344 return -EFAULT;
345
346 if (tmp[0] >= '0' && tmp[0] <= '2')
347 set_using_sysemu(tmp[0] - '0');
348 return count; /*We use the first char, but pretend to write everything*/
349}
350
351int __init make_proc_sysemu(void)
352{
353 struct proc_dir_entry *ent;
354 if (!sysemu_supported)
355 return 0;
356
357 ent = create_proc_entry("sysemu", 0600, &proc_root);
358
359 if (ent == NULL)
360 {
Christophe Lucas30f417c2005-07-28 21:16:12 -0700361 printk(KERN_WARNING "Failed to register /proc/sysemu\n");
Jeff Dike6e21aec2007-05-06 14:51:21 -0700362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364
365 ent->read_proc = proc_read_sysemu;
366 ent->write_proc = proc_write_sysemu;
367
368 return 0;
369}
370
371late_initcall(make_proc_sysemu);
372
373int singlestepping(void * t)
374{
375 struct task_struct *task = t ? t : current;
376
377 if ( ! (task->ptrace & PT_DTRACE) )
378 return(0);
379
380 if (task->thread.singlestep_syscall)
381 return(1);
382
383 return 2;
384}
385
Bodo Stroesserb8bd0222005-05-06 21:30:53 -0700386/*
387 * Only x86 and x86_64 have an arch_align_stack().
388 * All other arches have "#define arch_align_stack(x) (x)"
389 * in their asm/system.h
390 * As this is included in UML from asm-um/system-generic.h,
391 * we can use it to behave as the subarch does.
392 */
393#ifndef arch_align_stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394unsigned long arch_align_stack(unsigned long sp)
395{
Jeff Dike8f80e942006-09-25 23:33:01 -0700396 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 sp -= get_random_int() % 8192;
398 return sp & ~0xf;
399}
Bodo Stroesserb8bd0222005-05-06 21:30:53 -0700400#endif