| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) | 
 | 3 |  * Copyright 2003 PathScale, Inc. | 
 | 4 |  * Licensed under the GPL | 
 | 5 |  */ | 
 | 6 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include "linux/kernel.h" | 
 | 8 | #include "linux/sched.h" | 
 | 9 | #include "linux/interrupt.h" | 
| Robert Love | dfe5224 | 2005-06-23 00:09:04 -0700 | [diff] [blame] | 10 | #include "linux/string.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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" | 
| Jeff Dike | 8f80e94 | 2006-09-25 23:33:01 -0700 | [diff] [blame] | 25 | #include "linux/personality.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "kern_util.h" | 
| Jeff Dike | 4ff83ce | 2007-05-06 14:51:08 -0700 | [diff] [blame] | 36 | #include "as-layout.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include "kern.h" | 
 | 38 | #include "signal_kern.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include "init.h" | 
 | 40 | #include "irq_user.h" | 
 | 41 | #include "mem_user.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include "tlb.h" | 
 | 43 | #include "frame_kern.h" | 
 | 44 | #include "sigcontext.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include "os.h" | 
 | 46 | #include "mode.h" | 
 | 47 | #include "mode_kern.h" | 
 | 48 | #include "choose-mode.h" | 
| Paolo 'Blaisorblade' Giarrusso | c13e569 | 2006-10-19 23:28:20 -0700 | [diff] [blame] | 49 | #include "um_malloc.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 57 | static inline int external_pid(struct task_struct *task) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 59 | 	return CHOOSE_MODE_PROC(external_pid_tt, external_pid_skas, task); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } | 
 | 61 |  | 
 | 62 | int pid_to_processor_id(int pid) | 
 | 63 | { | 
 | 64 | 	int i; | 
 | 65 |  | 
 | 66 | 	for(i = 0; i < ncpus; i++){ | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 67 | 		if(cpu_tasks[i].pid == pid) | 
 | 68 | 			return i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | 	} | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 70 | 	return -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } | 
 | 72 |  | 
 | 73 | void free_stack(unsigned long stack, int order) | 
 | 74 | { | 
 | 75 | 	free_pages(stack, order); | 
 | 76 | } | 
 | 77 |  | 
 | 78 | unsigned long alloc_stack(int order, int atomic) | 
 | 79 | { | 
 | 80 | 	unsigned long page; | 
| Al Viro | 53f9fc9 | 2005-10-21 03:22:24 -0400 | [diff] [blame] | 81 | 	gfp_t flags = GFP_KERNEL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 |  | 
| Paolo 'Blaisorblade' Giarrusso | 46db4a4 | 2005-09-22 21:44:20 -0700 | [diff] [blame] | 83 | 	if (atomic) | 
 | 84 | 		flags = GFP_ATOMIC; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | 	page = __get_free_pages(flags, order); | 
 | 86 | 	if(page == 0) | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 87 | 		return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | 	stack_protections(page); | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 89 | 	return page; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | } | 
 | 91 |  | 
 | 92 | int 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 Dike | e0877f0 | 2005-06-25 14:55:21 -0700 | [diff] [blame] | 98 | 	pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0, | 
 | 99 | 		      ¤t->thread.regs, 0, NULL, NULL); | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 100 | 	return pid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | } | 
 | 102 |  | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 103 | static inline void set_current(struct task_struct *task) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | { | 
| Al Viro | ca9bc0b | 2006-01-12 01:05:48 -0800 | [diff] [blame] | 105 | 	cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | 		{ external_pid(task), task }); | 
 | 107 | } | 
 | 108 |  | 
 | 109 | void *_switch_to(void *prev, void *next, void *last) | 
 | 110 | { | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 111 | 	struct task_struct *from = prev; | 
 | 112 | 	struct task_struct *to= next; | 
| Jeff Dike | f6e34c6 | 2005-09-16 19:27:43 -0700 | [diff] [blame] | 113 |  | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 114 | 	to->thread.prev_sched = from; | 
 | 115 | 	set_current(to); | 
| Jeff Dike | f6e34c6 | 2005-09-16 19:27:43 -0700 | [diff] [blame] | 116 |  | 
| Jeff Dike | 3eddddc | 2005-09-16 19:27:46 -0700 | [diff] [blame] | 117 | 	do { | 
 | 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; | 
 | 123 | 		prev= current; | 
 | 124 | 	} while(current->thread.saved_task); | 
| Jeff Dike | f6e34c6 | 2005-09-16 19:27:43 -0700 | [diff] [blame] | 125 |  | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 126 | 	return current->thread.prev_sched; | 
| Jeff Dike | f6e34c6 | 2005-09-16 19:27:43 -0700 | [diff] [blame] | 127 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | } | 
 | 129 |  | 
 | 130 | void interrupt_end(void) | 
 | 131 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 132 | 	if(need_resched()) | 
 | 133 | 		schedule(); | 
 | 134 | 	if(test_tsk_thread_flag(current, TIF_SIGPENDING)) | 
 | 135 | 		do_signal(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } | 
 | 137 |  | 
 | 138 | void release_thread(struct task_struct *task) | 
 | 139 | { | 
 | 140 | 	CHOOSE_MODE(release_thread_tt(task), release_thread_skas(task)); | 
 | 141 | } | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 142 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | void exit_thread(void) | 
 | 144 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | 	unprotect_stack((unsigned long) current_thread); | 
 | 146 | } | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 147 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | void *get_current(void) | 
 | 149 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 150 | 	return current; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } | 
 | 152 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | int copy_thread(int nr, unsigned long clone_flags, unsigned long sp, | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 154 | 		unsigned long stack_top, struct task_struct * p, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | 		struct pt_regs *regs) | 
 | 156 | { | 
| Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 157 | 	int ret; | 
 | 158 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | 	p->thread = (struct thread_struct) INIT_THREAD; | 
| Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 160 | 	ret = CHOOSE_MODE_PROC(copy_thread_tt, copy_thread_skas, nr, | 
 | 161 | 				clone_flags, sp, stack_top, p, regs); | 
 | 162 |  | 
 | 163 | 	if (ret || !current->thread.forking) | 
 | 164 | 		goto out; | 
 | 165 |  | 
 | 166 | 	clear_flushed_tls(p); | 
 | 167 |  | 
 | 168 | 	/* | 
 | 169 | 	 * Set a new TLS for the child thread? | 
 | 170 | 	 */ | 
 | 171 | 	if (clone_flags & CLONE_SETTLS) | 
 | 172 | 		ret = arch_copy_tls(p); | 
 | 173 |  | 
 | 174 | out: | 
 | 175 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } | 
 | 177 |  | 
 | 178 | void initial_thread_cb(void (*proc)(void *), void *arg) | 
 | 179 | { | 
 | 180 | 	int save_kmalloc_ok = kmalloc_ok; | 
 | 181 |  | 
 | 182 | 	kmalloc_ok = 0; | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 183 | 	CHOOSE_MODE_PROC(initial_thread_cb_tt, initial_thread_cb_skas, proc, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | 			 arg); | 
 | 185 | 	kmalloc_ok = save_kmalloc_ok; | 
 | 186 | } | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 187 |  | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 188 | #ifdef CONFIG_MODE_TT | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | unsigned long stack_sp(unsigned long page) | 
 | 190 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 191 | 	return page + PAGE_SIZE - sizeof(void *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 193 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 |  | 
 | 195 | void default_idle(void) | 
 | 196 | { | 
| Jeff Dike | a6f4e3c | 2005-06-25 14:55:22 -0700 | [diff] [blame] | 197 | 	CHOOSE_MODE(uml_idle_timer(), (void) 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | 	while(1){ | 
 | 200 | 		/* endless idle loop with no priority at all */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 |  | 
 | 202 | 		/* | 
 | 203 | 		 * although we are an idle CPU, we do not want to | 
 | 204 | 		 * get into the scheduler unnecessarily. | 
 | 205 | 		 */ | 
 | 206 | 		if(need_resched()) | 
 | 207 | 			schedule(); | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 208 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | 		idle_sleep(10); | 
 | 210 | 	} | 
 | 211 | } | 
 | 212 |  | 
 | 213 | void cpu_idle(void) | 
 | 214 | { | 
 | 215 | 	CHOOSE_MODE(init_idle_tt(), init_idle_skas()); | 
 | 216 | } | 
 | 217 |  | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 218 | void *um_virt_to_phys(struct task_struct *task, unsigned long addr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | 		      pte_t *pte_out) | 
 | 220 | { | 
 | 221 | 	pgd_t *pgd; | 
 | 222 | 	pud_t *pud; | 
 | 223 | 	pmd_t *pmd; | 
 | 224 | 	pte_t *pte; | 
| Hugh Dickins | 8f5cd76 | 2005-10-29 18:16:38 -0700 | [diff] [blame] | 225 | 	pte_t ptent; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 |  | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 227 | 	if(task->mm == NULL) | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 228 | 		return ERR_PTR(-EINVAL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | 	pgd = pgd_offset(task->mm, addr); | 
 | 230 | 	if(!pgd_present(*pgd)) | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 231 | 		return ERR_PTR(-EINVAL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 |  | 
 | 233 | 	pud = pud_offset(pgd, addr); | 
 | 234 | 	if(!pud_present(*pud)) | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 235 | 		return ERR_PTR(-EINVAL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 |  | 
 | 237 | 	pmd = pmd_offset(pud, addr); | 
| Jeff Dike | 995473a | 2006-09-27 01:50:40 -0700 | [diff] [blame] | 238 | 	if(!pmd_present(*pmd)) | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 239 | 		return ERR_PTR(-EINVAL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 |  | 
 | 241 | 	pte = pte_offset_kernel(pmd, addr); | 
| Hugh Dickins | 8f5cd76 | 2005-10-29 18:16:38 -0700 | [diff] [blame] | 242 | 	ptent = *pte; | 
 | 243 | 	if(!pte_present(ptent)) | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 244 | 		return ERR_PTR(-EINVAL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 |  | 
 | 246 | 	if(pte_out != NULL) | 
| Hugh Dickins | 8f5cd76 | 2005-10-29 18:16:38 -0700 | [diff] [blame] | 247 | 		*pte_out = ptent; | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 248 | 	return (void *) (pte_val(ptent) & PAGE_MASK) + (addr & ~PAGE_MASK); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } | 
 | 250 |  | 
 | 251 | char *current_cmd(void) | 
 | 252 | { | 
 | 253 | #if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM) | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 254 | 	return "(Unknown)"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | #else | 
 | 256 | 	void *addr = um_virt_to_phys(current, current->mm->arg_start, NULL); | 
 | 257 | 	return IS_ERR(addr) ? "(Unknown)": __va((unsigned long) addr); | 
 | 258 | #endif | 
 | 259 | } | 
 | 260 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | void dump_thread(struct pt_regs *regs, struct user *u) | 
 | 262 | { | 
 | 263 | } | 
 | 264 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | void *um_kmalloc(int size) | 
 | 266 | { | 
| Paolo 'Blaisorblade' Giarrusso | b631629 | 2006-01-18 17:42:58 -0800 | [diff] [blame] | 267 | 	return kmalloc(size, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } | 
 | 269 |  | 
 | 270 | void *um_kmalloc_atomic(int size) | 
 | 271 | { | 
| Paolo 'Blaisorblade' Giarrusso | b631629 | 2006-01-18 17:42:58 -0800 | [diff] [blame] | 272 | 	return kmalloc(size, GFP_ATOMIC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } | 
 | 274 |  | 
 | 275 | void *um_vmalloc(int size) | 
 | 276 | { | 
| Paolo 'Blaisorblade' Giarrusso | b631629 | 2006-01-18 17:42:58 -0800 | [diff] [blame] | 277 | 	return vmalloc(size); | 
 | 278 | } | 
 | 279 |  | 
| Paolo 'Blaisorblade' Giarrusso | b631629 | 2006-01-18 17:42:58 -0800 | [diff] [blame] | 280 | int __cant_sleep(void) { | 
 | 281 | 	return in_atomic() || irqs_disabled() || in_interrupt(); | 
 | 282 | 	/* Is in_interrupt() really needed? */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } | 
 | 284 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | int user_context(unsigned long sp) | 
 | 286 | { | 
 | 287 | 	unsigned long stack; | 
 | 288 |  | 
 | 289 | 	stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER); | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 290 | 	return stack != (unsigned long) current_thread; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } | 
 | 292 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end; | 
 | 294 |  | 
 | 295 | void do_uml_exitcalls(void) | 
 | 296 | { | 
 | 297 | 	exitcall_t *call; | 
 | 298 |  | 
 | 299 | 	call = &__uml_exitcall_end; | 
 | 300 | 	while (--call >= &__uml_exitcall_begin) | 
 | 301 | 		(*call)(); | 
 | 302 | } | 
 | 303 |  | 
 | 304 | char *uml_strdup(char *string) | 
 | 305 | { | 
| Robert Love | dfe5224 | 2005-06-23 00:09:04 -0700 | [diff] [blame] | 306 | 	return kstrdup(string, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } | 
 | 308 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | int copy_to_user_proc(void __user *to, void *from, int size) | 
 | 310 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 311 | 	return copy_to_user(to, from, size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } | 
 | 313 |  | 
 | 314 | int copy_from_user_proc(void *to, void __user *from, int size) | 
 | 315 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 316 | 	return copy_from_user(to, from, size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } | 
 | 318 |  | 
 | 319 | int clear_user_proc(void __user *buf, int size) | 
 | 320 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 321 | 	return clear_user(buf, size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } | 
 | 323 |  | 
 | 324 | int strlen_user_proc(char __user *str) | 
 | 325 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 326 | 	return strlen_user(str); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } | 
 | 328 |  | 
 | 329 | int smp_sigio_handler(void) | 
 | 330 | { | 
 | 331 | #ifdef CONFIG_SMP | 
 | 332 | 	int cpu = current_thread->cpu; | 
 | 333 | 	IPI_handler(cpu); | 
 | 334 | 	if(cpu != 0) | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 335 | 		return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | #endif | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 337 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | } | 
 | 339 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | int cpu(void) | 
 | 341 | { | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 342 | 	return current_thread->cpu; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } | 
 | 344 |  | 
 | 345 | static atomic_t using_sysemu = ATOMIC_INIT(0); | 
 | 346 | int sysemu_supported; | 
 | 347 |  | 
 | 348 | void set_using_sysemu(int value) | 
 | 349 | { | 
 | 350 | 	if (value > sysemu_supported) | 
 | 351 | 		return; | 
 | 352 | 	atomic_set(&using_sysemu, value); | 
 | 353 | } | 
 | 354 |  | 
 | 355 | int get_using_sysemu(void) | 
 | 356 | { | 
 | 357 | 	return atomic_read(&using_sysemu); | 
 | 358 | } | 
 | 359 |  | 
 | 360 | static int proc_read_sysemu(char *buf, char **start, off_t offset, int size,int *eof, void *data) | 
 | 361 | { | 
 | 362 | 	if (snprintf(buf, size, "%d\n", get_using_sysemu()) < size) /*No overflow*/ | 
 | 363 | 		*eof = 1; | 
 | 364 |  | 
 | 365 | 	return strlen(buf); | 
 | 366 | } | 
 | 367 |  | 
| Al Viro | 4d338e1 | 2006-03-31 02:30:15 -0800 | [diff] [blame] | 368 | static int proc_write_sysemu(struct file *file,const char __user *buf, unsigned long count,void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | { | 
 | 370 | 	char tmp[2]; | 
 | 371 |  | 
 | 372 | 	if (copy_from_user(tmp, buf, 1)) | 
 | 373 | 		return -EFAULT; | 
 | 374 |  | 
 | 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*/ | 
 | 378 | } | 
 | 379 |  | 
 | 380 | int __init make_proc_sysemu(void) | 
 | 381 | { | 
 | 382 | 	struct proc_dir_entry *ent; | 
 | 383 | 	if (!sysemu_supported) | 
 | 384 | 		return 0; | 
 | 385 |  | 
 | 386 | 	ent = create_proc_entry("sysemu", 0600, &proc_root); | 
 | 387 |  | 
 | 388 | 	if (ent == NULL) | 
 | 389 | 	{ | 
| Christophe Lucas | 30f417c | 2005-07-28 21:16:12 -0700 | [diff] [blame] | 390 | 		printk(KERN_WARNING "Failed to register /proc/sysemu\n"); | 
| Jeff Dike | 6e21aec | 2007-05-06 14:51:21 -0700 | [diff] [blame] | 391 | 		return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | 	} | 
 | 393 |  | 
 | 394 | 	ent->read_proc  = proc_read_sysemu; | 
 | 395 | 	ent->write_proc = proc_write_sysemu; | 
 | 396 |  | 
 | 397 | 	return 0; | 
 | 398 | } | 
 | 399 |  | 
 | 400 | late_initcall(make_proc_sysemu); | 
 | 401 |  | 
 | 402 | int singlestepping(void * t) | 
 | 403 | { | 
 | 404 | 	struct task_struct *task = t ? t : current; | 
 | 405 |  | 
 | 406 | 	if ( ! (task->ptrace & PT_DTRACE) ) | 
 | 407 | 		return(0); | 
 | 408 |  | 
 | 409 | 	if (task->thread.singlestep_syscall) | 
 | 410 | 		return(1); | 
 | 411 |  | 
 | 412 | 	return 2; | 
 | 413 | } | 
 | 414 |  | 
| Bodo Stroesser | b8bd022 | 2005-05-06 21:30:53 -0700 | [diff] [blame] | 415 | /* | 
 | 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. | 
 | 421 |  */ | 
 | 422 | #ifndef arch_align_stack | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | unsigned long arch_align_stack(unsigned long sp) | 
 | 424 | { | 
| Jeff Dike | 8f80e94 | 2006-09-25 23:33:01 -0700 | [diff] [blame] | 425 | 	if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | 		sp -= get_random_int() % 8192; | 
 | 427 | 	return sp & ~0xf; | 
 | 428 | } | 
| Bodo Stroesser | b8bd022 | 2005-05-06 21:30:53 -0700 | [diff] [blame] | 429 | #endif |