blob: 5df5e4c90e4d3ddce675a3aa14656b8ab13b9aa1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Derived from sys_sparc32.c.
3 *
4 * Copyright (C) 2000 VA Linux Co
5 * Copyright (C) 2000 Don Dugger <n0ano@valinux.com>
6 * Copyright (C) 1999 Arun Sharma <arun.sharma@intel.com>
7 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
8 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
9 * Copyright (C) 2000-2003, 2005 Hewlett-Packard Co
10 * David Mosberger-Tang <davidm@hpl.hp.com>
11 * Copyright (C) 2004 Gordon Jin <gordon.jin@intel.com>
12 *
13 * These routines maintain argument size conversion between 32bit and 64bit
14 * environment.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
18#include <linux/syscalls.h>
19#include <linux/sysctl.h>
20#include <linux/sched.h>
21#include <linux/fs.h>
22#include <linux/file.h>
23#include <linux/signal.h>
24#include <linux/resource.h>
25#include <linux/times.h>
26#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/smp.h>
28#include <linux/smp_lock.h>
29#include <linux/sem.h>
30#include <linux/msg.h>
31#include <linux/mm.h>
32#include <linux/shm.h>
33#include <linux/slab.h>
34#include <linux/uio.h>
KOSAKI Motohiro2d9b06c2008-03-04 15:45:42 -080035#include <linux/socket.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/quota.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/poll.h>
38#include <linux/eventpoll.h>
39#include <linux/personality.h>
40#include <linux/ptrace.h>
Shaohua Li75529212008-02-28 16:09:33 +080041#include <linux/regset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/stat.h>
43#include <linux/ipc.h>
Randy Dunlapa9415642006-01-11 12:17:48 -080044#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/compat.h>
46#include <linux/vfs.h>
47#include <linux/mman.h>
Jes Sorensen92ff2ec2006-01-18 23:46:51 -080048#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <asm/intrinsics.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/types.h>
52#include <asm/uaccess.h>
53#include <asm/unistd.h>
54
55#include "ia32priv.h"
56
57#include <net/scm.h>
58#include <net/sock.h>
59
60#define DEBUG 0
61
62#if DEBUG
63# define DBG(fmt...) printk(KERN_DEBUG fmt)
64#else
65# define DBG(fmt...)
66#endif
67
68#define ROUND_UP(x,a) ((__typeof__(x))(((unsigned long)(x) + ((a) - 1)) & ~((a) - 1)))
69
70#define OFFSET4K(a) ((a) & 0xfff)
71#define PAGE_START(addr) ((addr) & PAGE_MASK)
72#define MINSIGSTKSZ_IA32 2048
73
74#define high2lowuid(uid) ((uid) > 65535 ? 65534 : (uid))
75#define high2lowgid(gid) ((gid) > 65535 ? 65534 : (gid))
76
77/*
78 * Anything that modifies or inspects ia32 user virtual memory must hold this semaphore
79 * while doing so.
80 */
81/* XXX make per-mm: */
Jes Sorensen92ff2ec2006-01-18 23:46:51 -080082static DEFINE_MUTEX(ia32_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84asmlinkage long
85sys32_execve (char __user *name, compat_uptr_t __user *argv, compat_uptr_t __user *envp,
86 struct pt_regs *regs)
87{
88 long error;
89 char *filename;
90 unsigned long old_map_base, old_task_size, tssd;
91
92 filename = getname(name);
93 error = PTR_ERR(filename);
94 if (IS_ERR(filename))
95 return error;
96
97 old_map_base = current->thread.map_base;
98 old_task_size = current->thread.task_size;
99 tssd = ia64_get_kr(IA64_KR_TSSD);
100
101 /* we may be exec'ing a 64-bit process: reset map base, task-size, and io-base: */
102 current->thread.map_base = DEFAULT_MAP_BASE;
103 current->thread.task_size = DEFAULT_TASK_SIZE;
104 ia64_set_kr(IA64_KR_IO_BASE, current->thread.old_iob);
105 ia64_set_kr(IA64_KR_TSSD, current->thread.old_k1);
106
107 error = compat_do_execve(filename, argv, envp, regs);
108 putname(filename);
109
110 if (error < 0) {
111 /* oops, execve failed, switch back to old values... */
112 ia64_set_kr(IA64_KR_IO_BASE, IA32_IOBASE);
113 ia64_set_kr(IA64_KR_TSSD, tssd);
114 current->thread.map_base = old_map_base;
115 current->thread.task_size = old_task_size;
116 }
117
118 return error;
119}
120
121int cp_compat_stat(struct kstat *stat, struct compat_stat __user *ubuf)
122{
David Howellsafefdbb2006-10-03 01:13:46 -0700123 compat_ino_t ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 int err;
125
126 if ((u64) stat->size > MAX_NON_LFS ||
127 !old_valid_dev(stat->dev) ||
128 !old_valid_dev(stat->rdev))
129 return -EOVERFLOW;
130
David Howellsafefdbb2006-10-03 01:13:46 -0700131 ino = stat->ino;
132 if (sizeof(ino) < sizeof(stat->ino) && ino != stat->ino)
133 return -EOVERFLOW;
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (clear_user(ubuf, sizeof(*ubuf)))
136 return -EFAULT;
137
138 err = __put_user(old_encode_dev(stat->dev), &ubuf->st_dev);
David Howellsafefdbb2006-10-03 01:13:46 -0700139 err |= __put_user(ino, &ubuf->st_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 err |= __put_user(stat->mode, &ubuf->st_mode);
141 err |= __put_user(stat->nlink, &ubuf->st_nlink);
142 err |= __put_user(high2lowuid(stat->uid), &ubuf->st_uid);
143 err |= __put_user(high2lowgid(stat->gid), &ubuf->st_gid);
144 err |= __put_user(old_encode_dev(stat->rdev), &ubuf->st_rdev);
145 err |= __put_user(stat->size, &ubuf->st_size);
146 err |= __put_user(stat->atime.tv_sec, &ubuf->st_atime);
147 err |= __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec);
148 err |= __put_user(stat->mtime.tv_sec, &ubuf->st_mtime);
149 err |= __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec);
150 err |= __put_user(stat->ctime.tv_sec, &ubuf->st_ctime);
151 err |= __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec);
152 err |= __put_user(stat->blksize, &ubuf->st_blksize);
153 err |= __put_user(stat->blocks, &ubuf->st_blocks);
154 return err;
155}
156
157#if PAGE_SHIFT > IA32_PAGE_SHIFT
158
159
160static int
161get_page_prot (struct vm_area_struct *vma, unsigned long addr)
162{
163 int prot = 0;
164
165 if (!vma || vma->vm_start > addr)
166 return 0;
167
168 if (vma->vm_flags & VM_READ)
169 prot |= PROT_READ;
170 if (vma->vm_flags & VM_WRITE)
171 prot |= PROT_WRITE;
172 if (vma->vm_flags & VM_EXEC)
173 prot |= PROT_EXEC;
174 return prot;
175}
176
177/*
178 * Map a subpage by creating an anonymous page that contains the union of the old page and
179 * the subpage.
180 */
181static unsigned long
182mmap_subpage (struct file *file, unsigned long start, unsigned long end, int prot, int flags,
183 loff_t off)
184{
185 void *page = NULL;
186 struct inode *inode;
187 unsigned long ret = 0;
188 struct vm_area_struct *vma = find_vma(current->mm, start);
189 int old_prot = get_page_prot(vma, start);
190
191 DBG("mmap_subpage(file=%p,start=0x%lx,end=0x%lx,prot=%x,flags=%x,off=0x%llx)\n",
192 file, start, end, prot, flags, off);
193
194
195 /* Optimize the case where the old mmap and the new mmap are both anonymous */
196 if ((old_prot & PROT_WRITE) && (flags & MAP_ANONYMOUS) && !vma->vm_file) {
197 if (clear_user((void __user *) start, end - start)) {
198 ret = -EFAULT;
199 goto out;
200 }
201 goto skip_mmap;
202 }
203
204 page = (void *) get_zeroed_page(GFP_KERNEL);
205 if (!page)
206 return -ENOMEM;
207
208 if (old_prot)
209 copy_from_user(page, (void __user *) PAGE_START(start), PAGE_SIZE);
210
211 down_write(&current->mm->mmap_sem);
212 {
213 ret = do_mmap(NULL, PAGE_START(start), PAGE_SIZE, prot | PROT_WRITE,
214 flags | MAP_FIXED | MAP_ANONYMOUS, 0);
215 }
216 up_write(&current->mm->mmap_sem);
217
218 if (IS_ERR((void *) ret))
219 goto out;
220
221 if (old_prot) {
222 /* copy back the old page contents. */
223 if (offset_in_page(start))
224 copy_to_user((void __user *) PAGE_START(start), page,
225 offset_in_page(start));
226 if (offset_in_page(end))
227 copy_to_user((void __user *) end, page + offset_in_page(end),
228 PAGE_SIZE - offset_in_page(end));
229 }
230
231 if (!(flags & MAP_ANONYMOUS)) {
232 /* read the file contents */
Josef Sipekb66ffad2006-12-08 02:37:09 -0800233 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!inode->i_fop || !file->f_op->read
235 || ((*file->f_op->read)(file, (char __user *) start, end - start, &off) < 0))
236 {
237 ret = -EINVAL;
238 goto out;
239 }
240 }
241
242 skip_mmap:
243 if (!(prot & PROT_WRITE))
244 ret = sys_mprotect(PAGE_START(start), PAGE_SIZE, prot | old_prot);
245 out:
246 if (page)
247 free_page((unsigned long) page);
248 return ret;
249}
250
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700251/* SLAB cache for ia64_partial_page structures */
252struct kmem_cache *ia64_partial_page_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254/*
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700255 * init ia64_partial_page_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 * return 0 means kmalloc fail.
257 */
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700258struct ia64_partial_page_list*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259ia32_init_pp_list(void)
260{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700261 struct ia64_partial_page_list *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 if ((p = kmalloc(sizeof(*p), GFP_KERNEL)) == NULL)
264 return p;
265 p->pp_head = NULL;
266 p->ppl_rb = RB_ROOT;
267 p->pp_hint = NULL;
268 atomic_set(&p->pp_count, 1);
269 return p;
270}
271
272/*
273 * Search for the partial page with @start in partial page list @ppl.
274 * If finds the partial page, return the found partial page.
275 * Else, return 0 and provide @pprev, @rb_link, @rb_parent to
276 * be used by later __ia32_insert_pp().
277 */
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700278static struct ia64_partial_page *
279__ia32_find_pp(struct ia64_partial_page_list *ppl, unsigned int start,
280 struct ia64_partial_page **pprev, struct rb_node ***rb_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct rb_node **rb_parent)
282{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700283 struct ia64_partial_page *pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct rb_node **__rb_link, *__rb_parent, *rb_prev;
285
286 pp = ppl->pp_hint;
287 if (pp && pp->base == start)
288 return pp;
289
290 __rb_link = &ppl->ppl_rb.rb_node;
291 rb_prev = __rb_parent = NULL;
292
293 while (*__rb_link) {
294 __rb_parent = *__rb_link;
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700295 pp = rb_entry(__rb_parent, struct ia64_partial_page, pp_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 if (pp->base == start) {
298 ppl->pp_hint = pp;
299 return pp;
300 } else if (pp->base < start) {
301 rb_prev = __rb_parent;
302 __rb_link = &__rb_parent->rb_right;
303 } else {
304 __rb_link = &__rb_parent->rb_left;
305 }
306 }
307
308 *rb_link = __rb_link;
309 *rb_parent = __rb_parent;
310 *pprev = NULL;
311 if (rb_prev)
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700312 *pprev = rb_entry(rb_prev, struct ia64_partial_page, pp_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return NULL;
314}
315
316/*
317 * insert @pp into @ppl.
318 */
319static void
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700320__ia32_insert_pp(struct ia64_partial_page_list *ppl,
321 struct ia64_partial_page *pp, struct ia64_partial_page *prev,
322 struct rb_node **rb_link, struct rb_node *rb_parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 /* link list */
325 if (prev) {
326 pp->next = prev->next;
327 prev->next = pp;
328 } else {
329 ppl->pp_head = pp;
330 if (rb_parent)
331 pp->next = rb_entry(rb_parent,
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700332 struct ia64_partial_page, pp_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 else
334 pp->next = NULL;
335 }
336
337 /* link rb */
338 rb_link_node(&pp->pp_rb, rb_parent, rb_link);
339 rb_insert_color(&pp->pp_rb, &ppl->ppl_rb);
340
341 ppl->pp_hint = pp;
342}
343
344/*
345 * delete @pp from partial page list @ppl.
346 */
347static void
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700348__ia32_delete_pp(struct ia64_partial_page_list *ppl,
349 struct ia64_partial_page *pp, struct ia64_partial_page *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 if (prev) {
352 prev->next = pp->next;
353 if (ppl->pp_hint == pp)
354 ppl->pp_hint = prev;
355 } else {
356 ppl->pp_head = pp->next;
357 if (ppl->pp_hint == pp)
358 ppl->pp_hint = pp->next;
359 }
360 rb_erase(&pp->pp_rb, &ppl->ppl_rb);
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700361 kmem_cache_free(ia64_partial_page_cachep, pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700364static struct ia64_partial_page *
365__pp_prev(struct ia64_partial_page *pp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct rb_node *prev = rb_prev(&pp->pp_rb);
368 if (prev)
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700369 return rb_entry(prev, struct ia64_partial_page, pp_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 else
371 return NULL;
372}
373
374/*
375 * Delete partial pages with address between @start and @end.
376 * @start and @end are page aligned.
377 */
378static void
379__ia32_delete_pp_range(unsigned int start, unsigned int end)
380{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700381 struct ia64_partial_page *pp, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct rb_node **rb_link, *rb_parent;
383
384 if (start >= end)
385 return;
386
387 pp = __ia32_find_pp(current->thread.ppl, start, &prev,
388 &rb_link, &rb_parent);
389 if (pp)
390 prev = __pp_prev(pp);
391 else {
392 if (prev)
393 pp = prev->next;
394 else
395 pp = current->thread.ppl->pp_head;
396 }
397
398 while (pp && pp->base < end) {
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700399 struct ia64_partial_page *tmp = pp->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 __ia32_delete_pp(current->thread.ppl, pp, prev);
401 pp = tmp;
402 }
403}
404
405/*
406 * Set the range between @start and @end in bitmap.
407 * @start and @end should be IA32 page aligned and in the same IA64 page.
408 */
409static int
410__ia32_set_pp(unsigned int start, unsigned int end, int flags)
411{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700412 struct ia64_partial_page *pp, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct rb_node ** rb_link, *rb_parent;
414 unsigned int pstart, start_bit, end_bit, i;
415
416 pstart = PAGE_START(start);
417 start_bit = (start % PAGE_SIZE) / IA32_PAGE_SIZE;
418 end_bit = (end % PAGE_SIZE) / IA32_PAGE_SIZE;
419 if (end_bit == 0)
420 end_bit = PAGE_SIZE / IA32_PAGE_SIZE;
421 pp = __ia32_find_pp(current->thread.ppl, pstart, &prev,
422 &rb_link, &rb_parent);
423 if (pp) {
424 for (i = start_bit; i < end_bit; i++)
425 set_bit(i, &pp->bitmap);
426 /*
427 * Check: if this partial page has been set to a full page,
428 * then delete it.
429 */
430 if (find_first_zero_bit(&pp->bitmap, sizeof(pp->bitmap)*8) >=
431 PAGE_SIZE/IA32_PAGE_SIZE) {
432 __ia32_delete_pp(current->thread.ppl, pp, __pp_prev(pp));
433 }
434 return 0;
435 }
436
437 /*
438 * MAP_FIXED may lead to overlapping mmap.
439 * In this case, the requested mmap area may already mmaped as a full
440 * page. So check vma before adding a new partial page.
441 */
442 if (flags & MAP_FIXED) {
443 struct vm_area_struct *vma = find_vma(current->mm, pstart);
444 if (vma && vma->vm_start <= pstart)
445 return 0;
446 }
447
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700448 /* new a ia64_partial_page */
449 pp = kmem_cache_alloc(ia64_partial_page_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (!pp)
451 return -ENOMEM;
452 pp->base = pstart;
453 pp->bitmap = 0;
454 for (i=start_bit; i<end_bit; i++)
455 set_bit(i, &(pp->bitmap));
456 pp->next = NULL;
457 __ia32_insert_pp(current->thread.ppl, pp, prev, rb_link, rb_parent);
458 return 0;
459}
460
461/*
462 * @start and @end should be IA32 page aligned, but don't need to be in the
463 * same IA64 page. Split @start and @end to make sure they're in the same IA64
464 * page, then call __ia32_set_pp().
465 */
466static void
467ia32_set_pp(unsigned int start, unsigned int end, int flags)
468{
469 down_write(&current->mm->mmap_sem);
470 if (flags & MAP_FIXED) {
471 /*
472 * MAP_FIXED may lead to overlapping mmap. When this happens,
473 * a series of complete IA64 pages results in deletion of
474 * old partial pages in that range.
475 */
476 __ia32_delete_pp_range(PAGE_ALIGN(start), PAGE_START(end));
477 }
478
479 if (end < PAGE_ALIGN(start)) {
480 __ia32_set_pp(start, end, flags);
481 } else {
482 if (offset_in_page(start))
483 __ia32_set_pp(start, PAGE_ALIGN(start), flags);
484 if (offset_in_page(end))
485 __ia32_set_pp(PAGE_START(end), end, flags);
486 }
487 up_write(&current->mm->mmap_sem);
488}
489
490/*
491 * Unset the range between @start and @end in bitmap.
492 * @start and @end should be IA32 page aligned and in the same IA64 page.
493 * After doing that, if the bitmap is 0, then free the page and return 1,
494 * else return 0;
495 * If not find the partial page in the list, then
496 * If the vma exists, then the full page is set to a partial page;
497 * Else return -ENOMEM.
498 */
499static int
500__ia32_unset_pp(unsigned int start, unsigned int end)
501{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700502 struct ia64_partial_page *pp, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct rb_node ** rb_link, *rb_parent;
504 unsigned int pstart, start_bit, end_bit, i;
505 struct vm_area_struct *vma;
506
507 pstart = PAGE_START(start);
508 start_bit = (start % PAGE_SIZE) / IA32_PAGE_SIZE;
509 end_bit = (end % PAGE_SIZE) / IA32_PAGE_SIZE;
510 if (end_bit == 0)
511 end_bit = PAGE_SIZE / IA32_PAGE_SIZE;
512
513 pp = __ia32_find_pp(current->thread.ppl, pstart, &prev,
514 &rb_link, &rb_parent);
515 if (pp) {
516 for (i = start_bit; i < end_bit; i++)
517 clear_bit(i, &pp->bitmap);
518 if (pp->bitmap == 0) {
519 __ia32_delete_pp(current->thread.ppl, pp, __pp_prev(pp));
520 return 1;
521 }
522 return 0;
523 }
524
525 vma = find_vma(current->mm, pstart);
526 if (!vma || vma->vm_start > pstart) {
527 return -ENOMEM;
528 }
529
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700530 /* new a ia64_partial_page */
531 pp = kmem_cache_alloc(ia64_partial_page_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (!pp)
533 return -ENOMEM;
534 pp->base = pstart;
535 pp->bitmap = 0;
536 for (i = 0; i < start_bit; i++)
537 set_bit(i, &(pp->bitmap));
538 for (i = end_bit; i < PAGE_SIZE / IA32_PAGE_SIZE; i++)
539 set_bit(i, &(pp->bitmap));
540 pp->next = NULL;
541 __ia32_insert_pp(current->thread.ppl, pp, prev, rb_link, rb_parent);
542 return 0;
543}
544
545/*
546 * Delete pp between PAGE_ALIGN(start) and PAGE_START(end) by calling
547 * __ia32_delete_pp_range(). Unset possible partial pages by calling
548 * __ia32_unset_pp().
549 * The returned value see __ia32_unset_pp().
550 */
551static int
552ia32_unset_pp(unsigned int *startp, unsigned int *endp)
553{
554 unsigned int start = *startp, end = *endp;
555 int ret = 0;
556
557 down_write(&current->mm->mmap_sem);
558
559 __ia32_delete_pp_range(PAGE_ALIGN(start), PAGE_START(end));
560
561 if (end < PAGE_ALIGN(start)) {
562 ret = __ia32_unset_pp(start, end);
563 if (ret == 1) {
564 *startp = PAGE_START(start);
565 *endp = PAGE_ALIGN(end);
566 }
567 if (ret == 0) {
568 /* to shortcut sys_munmap() in sys32_munmap() */
569 *startp = PAGE_START(start);
570 *endp = PAGE_START(end);
571 }
572 } else {
573 if (offset_in_page(start)) {
574 ret = __ia32_unset_pp(start, PAGE_ALIGN(start));
575 if (ret == 1)
576 *startp = PAGE_START(start);
577 if (ret == 0)
578 *startp = PAGE_ALIGN(start);
579 if (ret < 0)
580 goto out;
581 }
582 if (offset_in_page(end)) {
583 ret = __ia32_unset_pp(PAGE_START(end), end);
584 if (ret == 1)
585 *endp = PAGE_ALIGN(end);
586 if (ret == 0)
587 *endp = PAGE_START(end);
588 }
589 }
590
591 out:
592 up_write(&current->mm->mmap_sem);
593 return ret;
594}
595
596/*
597 * Compare the range between @start and @end with bitmap in partial page.
598 * @start and @end should be IA32 page aligned and in the same IA64 page.
599 */
600static int
601__ia32_compare_pp(unsigned int start, unsigned int end)
602{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700603 struct ia64_partial_page *pp, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct rb_node ** rb_link, *rb_parent;
605 unsigned int pstart, start_bit, end_bit, size;
606 unsigned int first_bit, next_zero_bit; /* the first range in bitmap */
607
608 pstart = PAGE_START(start);
609
610 pp = __ia32_find_pp(current->thread.ppl, pstart, &prev,
611 &rb_link, &rb_parent);
612 if (!pp)
613 return 1;
614
615 start_bit = (start % PAGE_SIZE) / IA32_PAGE_SIZE;
616 end_bit = (end % PAGE_SIZE) / IA32_PAGE_SIZE;
617 size = sizeof(pp->bitmap) * 8;
618 first_bit = find_first_bit(&pp->bitmap, size);
619 next_zero_bit = find_next_zero_bit(&pp->bitmap, size, first_bit);
620 if ((start_bit < first_bit) || (end_bit > next_zero_bit)) {
621 /* exceeds the first range in bitmap */
622 return -ENOMEM;
623 } else if ((start_bit == first_bit) && (end_bit == next_zero_bit)) {
624 first_bit = find_next_bit(&pp->bitmap, size, next_zero_bit);
625 if ((next_zero_bit < first_bit) && (first_bit < size))
626 return 1; /* has next range */
627 else
628 return 0; /* no next range */
629 } else
630 return 1;
631}
632
633/*
634 * @start and @end should be IA32 page aligned, but don't need to be in the
635 * same IA64 page. Split @start and @end to make sure they're in the same IA64
636 * page, then call __ia32_compare_pp().
637 *
638 * Take this as example: the range is the 1st and 2nd 4K page.
639 * Return 0 if they fit bitmap exactly, i.e. bitmap = 00000011;
640 * Return 1 if the range doesn't cover whole bitmap, e.g. bitmap = 00001111;
641 * Return -ENOMEM if the range exceeds the bitmap, e.g. bitmap = 00000001 or
642 * bitmap = 00000101.
643 */
644static int
645ia32_compare_pp(unsigned int *startp, unsigned int *endp)
646{
647 unsigned int start = *startp, end = *endp;
648 int retval = 0;
649
650 down_write(&current->mm->mmap_sem);
651
652 if (end < PAGE_ALIGN(start)) {
653 retval = __ia32_compare_pp(start, end);
654 if (retval == 0) {
655 *startp = PAGE_START(start);
656 *endp = PAGE_ALIGN(end);
657 }
658 } else {
659 if (offset_in_page(start)) {
660 retval = __ia32_compare_pp(start,
661 PAGE_ALIGN(start));
662 if (retval == 0)
663 *startp = PAGE_START(start);
664 if (retval < 0)
665 goto out;
666 }
667 if (offset_in_page(end)) {
668 retval = __ia32_compare_pp(PAGE_START(end), end);
669 if (retval == 0)
670 *endp = PAGE_ALIGN(end);
671 }
672 }
673
674 out:
675 up_write(&current->mm->mmap_sem);
676 return retval;
677}
678
679static void
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700680__ia32_drop_pp_list(struct ia64_partial_page_list *ppl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700682 struct ia64_partial_page *pp = ppl->pp_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 while (pp) {
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700685 struct ia64_partial_page *next = pp->next;
686 kmem_cache_free(ia64_partial_page_cachep, pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 pp = next;
688 }
689
690 kfree(ppl);
691}
692
693void
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700694ia32_drop_ia64_partial_page_list(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700696 struct ia64_partial_page_list* ppl = task->thread.ppl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 if (ppl && atomic_dec_and_test(&ppl->pp_count))
699 __ia32_drop_pp_list(ppl);
700}
701
702/*
703 * Copy current->thread.ppl to ppl (already initialized).
704 */
705static int
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700706__ia32_copy_pp_list(struct ia64_partial_page_list *ppl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700708 struct ia64_partial_page *pp, *tmp, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 struct rb_node **rb_link, *rb_parent;
710
711 ppl->pp_head = NULL;
712 ppl->pp_hint = NULL;
713 ppl->ppl_rb = RB_ROOT;
714 rb_link = &ppl->ppl_rb.rb_node;
715 rb_parent = NULL;
716 prev = NULL;
717
718 for (pp = current->thread.ppl->pp_head; pp; pp = pp->next) {
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700719 tmp = kmem_cache_alloc(ia64_partial_page_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (!tmp)
721 return -ENOMEM;
722 *tmp = *pp;
723 __ia32_insert_pp(ppl, tmp, prev, rb_link, rb_parent);
724 prev = tmp;
725 rb_link = &tmp->pp_rb.rb_right;
726 rb_parent = &tmp->pp_rb;
727 }
728 return 0;
729}
730
731int
akpm@linux-foundation.org3b74d182007-07-24 19:44:55 -0700732ia32_copy_ia64_partial_page_list(struct task_struct *p,
733 unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 int retval = 0;
736
737 if (clone_flags & CLONE_VM) {
738 atomic_inc(&current->thread.ppl->pp_count);
739 p->thread.ppl = current->thread.ppl;
740 } else {
741 p->thread.ppl = ia32_init_pp_list();
742 if (!p->thread.ppl)
743 return -ENOMEM;
744 down_write(&current->mm->mmap_sem);
745 {
746 retval = __ia32_copy_pp_list(p->thread.ppl);
747 }
748 up_write(&current->mm->mmap_sem);
749 }
750
751 return retval;
752}
753
754static unsigned long
755emulate_mmap (struct file *file, unsigned long start, unsigned long len, int prot, int flags,
756 loff_t off)
757{
758 unsigned long tmp, end, pend, pstart, ret, is_congruent, fudge = 0;
759 struct inode *inode;
760 loff_t poff;
761
762 end = start + len;
763 pstart = PAGE_START(start);
764 pend = PAGE_ALIGN(end);
765
766 if (flags & MAP_FIXED) {
767 ia32_set_pp((unsigned int)start, (unsigned int)end, flags);
768 if (start > pstart) {
769 if (flags & MAP_SHARED)
770 printk(KERN_INFO
771 "%s(%d): emulate_mmap() can't share head (addr=0x%lx)\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700772 current->comm, task_pid_nr(current), start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 ret = mmap_subpage(file, start, min(PAGE_ALIGN(start), end), prot, flags,
774 off);
775 if (IS_ERR((void *) ret))
776 return ret;
777 pstart += PAGE_SIZE;
778 if (pstart >= pend)
779 goto out; /* done */
780 }
781 if (end < pend) {
782 if (flags & MAP_SHARED)
783 printk(KERN_INFO
784 "%s(%d): emulate_mmap() can't share tail (end=0x%lx)\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700785 current->comm, task_pid_nr(current), end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 ret = mmap_subpage(file, max(start, PAGE_START(end)), end, prot, flags,
787 (off + len) - offset_in_page(end));
788 if (IS_ERR((void *) ret))
789 return ret;
790 pend -= PAGE_SIZE;
791 if (pstart >= pend)
792 goto out; /* done */
793 }
794 } else {
795 /*
796 * If a start address was specified, use it if the entire rounded out area
797 * is available.
798 */
799 if (start && !pstart)
800 fudge = 1; /* handle case of mapping to range (0,PAGE_SIZE) */
801 tmp = arch_get_unmapped_area(file, pstart - fudge, pend - pstart, 0, flags);
802 if (tmp != pstart) {
803 pstart = tmp;
804 start = pstart + offset_in_page(off); /* make start congruent with off */
805 end = start + len;
806 pend = PAGE_ALIGN(end);
807 }
808 }
809
810 poff = off + (pstart - start); /* note: (pstart - start) may be negative */
811 is_congruent = (flags & MAP_ANONYMOUS) || (offset_in_page(poff) == 0);
812
813 if ((flags & MAP_SHARED) && !is_congruent)
814 printk(KERN_INFO "%s(%d): emulate_mmap() can't share contents of incongruent mmap "
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700815 "(addr=0x%lx,off=0x%llx)\n", current->comm, task_pid_nr(current), start, off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 DBG("mmap_body: mapping [0x%lx-0x%lx) %s with poff 0x%llx\n", pstart, pend,
818 is_congruent ? "congruent" : "not congruent", poff);
819
820 down_write(&current->mm->mmap_sem);
821 {
822 if (!(flags & MAP_ANONYMOUS) && is_congruent)
823 ret = do_mmap(file, pstart, pend - pstart, prot, flags | MAP_FIXED, poff);
824 else
825 ret = do_mmap(NULL, pstart, pend - pstart,
826 prot | ((flags & MAP_ANONYMOUS) ? 0 : PROT_WRITE),
827 flags | MAP_FIXED | MAP_ANONYMOUS, 0);
828 }
829 up_write(&current->mm->mmap_sem);
830
831 if (IS_ERR((void *) ret))
832 return ret;
833
834 if (!is_congruent) {
835 /* read the file contents */
Josef Sipekb66ffad2006-12-08 02:37:09 -0800836 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (!inode->i_fop || !file->f_op->read
838 || ((*file->f_op->read)(file, (char __user *) pstart, pend - pstart, &poff)
839 < 0))
840 {
841 sys_munmap(pstart, pend - pstart);
842 return -EINVAL;
843 }
844 if (!(prot & PROT_WRITE) && sys_mprotect(pstart, pend - pstart, prot) < 0)
845 return -EINVAL;
846 }
847
848 if (!(flags & MAP_FIXED))
849 ia32_set_pp((unsigned int)start, (unsigned int)end, flags);
850out:
851 return start;
852}
853
854#endif /* PAGE_SHIFT > IA32_PAGE_SHIFT */
855
856static inline unsigned int
857get_prot32 (unsigned int prot)
858{
859 if (prot & PROT_WRITE)
860 /* on x86, PROT_WRITE implies PROT_READ which implies PROT_EEC */
861 prot |= PROT_READ | PROT_WRITE | PROT_EXEC;
862 else if (prot & (PROT_READ | PROT_EXEC))
863 /* on x86, there is no distinction between PROT_READ and PROT_EXEC */
864 prot |= (PROT_READ | PROT_EXEC);
865
866 return prot;
867}
868
869unsigned long
870ia32_do_mmap (struct file *file, unsigned long addr, unsigned long len, int prot, int flags,
871 loff_t offset)
872{
873 DBG("ia32_do_mmap(file=%p,addr=0x%lx,len=0x%lx,prot=%x,flags=%x,offset=0x%llx)\n",
874 file, addr, len, prot, flags, offset);
875
876 if (file && (!file->f_op || !file->f_op->mmap))
877 return -ENODEV;
878
879 len = IA32_PAGE_ALIGN(len);
880 if (len == 0)
881 return addr;
882
883 if (len > IA32_PAGE_OFFSET || addr > IA32_PAGE_OFFSET - len)
884 {
885 if (flags & MAP_FIXED)
886 return -ENOMEM;
887 else
888 return -EINVAL;
889 }
890
891 if (OFFSET4K(offset))
892 return -EINVAL;
893
894 prot = get_prot32(prot);
895
896#if PAGE_SHIFT > IA32_PAGE_SHIFT
Jes Sorensen92ff2ec2006-01-18 23:46:51 -0800897 mutex_lock(&ia32_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 {
899 addr = emulate_mmap(file, addr, len, prot, flags, offset);
900 }
Jes Sorensen92ff2ec2006-01-18 23:46:51 -0800901 mutex_unlock(&ia32_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902#else
903 down_write(&current->mm->mmap_sem);
904 {
905 addr = do_mmap(file, addr, len, prot, flags, offset);
906 }
907 up_write(&current->mm->mmap_sem);
908#endif
909 DBG("ia32_do_mmap: returning 0x%lx\n", addr);
910 return addr;
911}
912
913/*
914 * Linux/i386 didn't use to be able to handle more than 4 system call parameters, so these
915 * system calls used a memory block for parameter passing..
916 */
917
918struct mmap_arg_struct {
919 unsigned int addr;
920 unsigned int len;
921 unsigned int prot;
922 unsigned int flags;
923 unsigned int fd;
924 unsigned int offset;
925};
926
927asmlinkage long
928sys32_mmap (struct mmap_arg_struct __user *arg)
929{
930 struct mmap_arg_struct a;
931 struct file *file = NULL;
932 unsigned long addr;
933 int flags;
934
935 if (copy_from_user(&a, arg, sizeof(a)))
936 return -EFAULT;
937
938 if (OFFSET4K(a.offset))
939 return -EINVAL;
940
941 flags = a.flags;
942
943 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
944 if (!(flags & MAP_ANONYMOUS)) {
945 file = fget(a.fd);
946 if (!file)
947 return -EBADF;
948 }
949
950 addr = ia32_do_mmap(file, a.addr, a.len, a.prot, flags, a.offset);
951
952 if (file)
953 fput(file);
954 return addr;
955}
956
957asmlinkage long
958sys32_mmap2 (unsigned int addr, unsigned int len, unsigned int prot, unsigned int flags,
959 unsigned int fd, unsigned int pgoff)
960{
961 struct file *file = NULL;
962 unsigned long retval;
963
964 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
965 if (!(flags & MAP_ANONYMOUS)) {
966 file = fget(fd);
967 if (!file)
968 return -EBADF;
969 }
970
971 retval = ia32_do_mmap(file, addr, len, prot, flags,
972 (unsigned long) pgoff << IA32_PAGE_SHIFT);
973
974 if (file)
975 fput(file);
976 return retval;
977}
978
979asmlinkage long
980sys32_munmap (unsigned int start, unsigned int len)
981{
982 unsigned int end = start + len;
983 long ret;
984
985#if PAGE_SHIFT <= IA32_PAGE_SHIFT
986 ret = sys_munmap(start, end - start);
987#else
988 if (OFFSET4K(start))
989 return -EINVAL;
990
991 end = IA32_PAGE_ALIGN(end);
992 if (start >= end)
993 return -EINVAL;
994
995 ret = ia32_unset_pp(&start, &end);
996 if (ret < 0)
997 return ret;
998
999 if (start >= end)
1000 return 0;
1001
Jes Sorensen92ff2ec2006-01-18 23:46:51 -08001002 mutex_lock(&ia32_mmap_mutex);
1003 ret = sys_munmap(start, end - start);
1004 mutex_unlock(&ia32_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005#endif
1006 return ret;
1007}
1008
1009#if PAGE_SHIFT > IA32_PAGE_SHIFT
1010
1011/*
1012 * When mprotect()ing a partial page, we set the permission to the union of the old
1013 * settings and the new settings. In other words, it's only possible to make access to a
1014 * partial page less restrictive.
1015 */
1016static long
1017mprotect_subpage (unsigned long address, int new_prot)
1018{
1019 int old_prot;
1020 struct vm_area_struct *vma;
1021
1022 if (new_prot == PROT_NONE)
1023 return 0; /* optimize case where nothing changes... */
1024 vma = find_vma(current->mm, address);
1025 old_prot = get_page_prot(vma, address);
1026 return sys_mprotect(address, PAGE_SIZE, new_prot | old_prot);
1027}
1028
1029#endif /* PAGE_SHIFT > IA32_PAGE_SHIFT */
1030
1031asmlinkage long
1032sys32_mprotect (unsigned int start, unsigned int len, int prot)
1033{
1034 unsigned int end = start + len;
1035#if PAGE_SHIFT > IA32_PAGE_SHIFT
1036 long retval = 0;
1037#endif
1038
1039 prot = get_prot32(prot);
1040
1041#if PAGE_SHIFT <= IA32_PAGE_SHIFT
1042 return sys_mprotect(start, end - start, prot);
1043#else
1044 if (OFFSET4K(start))
1045 return -EINVAL;
1046
1047 end = IA32_PAGE_ALIGN(end);
1048 if (end < start)
1049 return -EINVAL;
1050
1051 retval = ia32_compare_pp(&start, &end);
1052
1053 if (retval < 0)
1054 return retval;
1055
Jes Sorensen92ff2ec2006-01-18 23:46:51 -08001056 mutex_lock(&ia32_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 {
1058 if (offset_in_page(start)) {
1059 /* start address is 4KB aligned but not page aligned. */
1060 retval = mprotect_subpage(PAGE_START(start), prot);
1061 if (retval < 0)
1062 goto out;
1063
1064 start = PAGE_ALIGN(start);
1065 if (start >= end)
1066 goto out; /* retval is already zero... */
1067 }
1068
1069 if (offset_in_page(end)) {
1070 /* end address is 4KB aligned but not page aligned. */
1071 retval = mprotect_subpage(PAGE_START(end), prot);
1072 if (retval < 0)
1073 goto out;
1074
1075 end = PAGE_START(end);
1076 }
1077 retval = sys_mprotect(start, end - start, prot);
1078 }
1079 out:
Jes Sorensen92ff2ec2006-01-18 23:46:51 -08001080 mutex_unlock(&ia32_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return retval;
1082#endif
1083}
1084
1085asmlinkage long
1086sys32_mremap (unsigned int addr, unsigned int old_len, unsigned int new_len,
1087 unsigned int flags, unsigned int new_addr)
1088{
1089 long ret;
1090
1091#if PAGE_SHIFT <= IA32_PAGE_SHIFT
1092 ret = sys_mremap(addr, old_len, new_len, flags, new_addr);
1093#else
1094 unsigned int old_end, new_end;
1095
1096 if (OFFSET4K(addr))
1097 return -EINVAL;
1098
1099 old_len = IA32_PAGE_ALIGN(old_len);
1100 new_len = IA32_PAGE_ALIGN(new_len);
1101 old_end = addr + old_len;
1102 new_end = addr + new_len;
1103
1104 if (!new_len)
1105 return -EINVAL;
1106
1107 if ((flags & MREMAP_FIXED) && (OFFSET4K(new_addr)))
1108 return -EINVAL;
1109
1110 if (old_len >= new_len) {
1111 ret = sys32_munmap(addr + new_len, old_len - new_len);
1112 if (ret && old_len != new_len)
1113 return ret;
1114 ret = addr;
1115 if (!(flags & MREMAP_FIXED) || (new_addr == addr))
1116 return ret;
1117 old_len = new_len;
1118 }
1119
1120 addr = PAGE_START(addr);
1121 old_len = PAGE_ALIGN(old_end) - addr;
1122 new_len = PAGE_ALIGN(new_end) - addr;
1123
Jes Sorensen92ff2ec2006-01-18 23:46:51 -08001124 mutex_lock(&ia32_mmap_mutex);
1125 ret = sys_mremap(addr, old_len, new_len, flags, new_addr);
1126 mutex_unlock(&ia32_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 if ((ret >= 0) && (old_len < new_len)) {
1129 /* mremap expanded successfully */
1130 ia32_set_pp(old_end, new_end, flags);
1131 }
1132#endif
1133 return ret;
1134}
1135
1136asmlinkage long
1137sys32_pipe (int __user *fd)
1138{
1139 int retval;
1140 int fds[2];
1141
Ulrich Dreppered8cae82008-07-23 21:29:30 -07001142 retval = do_pipe_flags(fds, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (retval)
1144 goto out;
1145 if (copy_to_user(fd, fds, sizeof(fds)))
1146 retval = -EFAULT;
1147 out:
1148 return retval;
1149}
1150
1151static inline long
1152get_tv32 (struct timeval *o, struct compat_timeval __user *i)
1153{
1154 return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
1155 (__get_user(o->tv_sec, &i->tv_sec) | __get_user(o->tv_usec, &i->tv_usec)));
1156}
1157
1158static inline long
1159put_tv32 (struct compat_timeval __user *o, struct timeval *i)
1160{
1161 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
1162 (__put_user(i->tv_sec, &o->tv_sec) | __put_user(i->tv_usec, &o->tv_usec)));
1163}
1164
1165asmlinkage unsigned long
1166sys32_alarm (unsigned int seconds)
1167{
Thomas Gleixnerc08b8a42006-03-25 03:06:33 -08001168 return alarm_setitimer(seconds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
1170
1171/* Translations due to time_t size differences. Which affects all
1172 sorts of things, like timeval and itimerval. */
1173
1174extern struct timezone sys_tz;
1175
1176asmlinkage long
1177sys32_gettimeofday (struct compat_timeval __user *tv, struct timezone __user *tz)
1178{
1179 if (tv) {
1180 struct timeval ktv;
1181 do_gettimeofday(&ktv);
1182 if (put_tv32(tv, &ktv))
1183 return -EFAULT;
1184 }
1185 if (tz) {
1186 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
1187 return -EFAULT;
1188 }
1189 return 0;
1190}
1191
1192asmlinkage long
1193sys32_settimeofday (struct compat_timeval __user *tv, struct timezone __user *tz)
1194{
1195 struct timeval ktv;
1196 struct timespec kts;
1197 struct timezone ktz;
1198
1199 if (tv) {
1200 if (get_tv32(&ktv, tv))
1201 return -EFAULT;
1202 kts.tv_sec = ktv.tv_sec;
1203 kts.tv_nsec = ktv.tv_usec * 1000;
1204 }
1205 if (tz) {
1206 if (copy_from_user(&ktz, tz, sizeof(ktz)))
1207 return -EFAULT;
1208 }
1209
1210 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
1211}
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213struct sel_arg_struct {
1214 unsigned int n;
1215 unsigned int inp;
1216 unsigned int outp;
1217 unsigned int exp;
1218 unsigned int tvp;
1219};
1220
1221asmlinkage long
1222sys32_old_select (struct sel_arg_struct __user *arg)
1223{
1224 struct sel_arg_struct a;
1225
1226 if (copy_from_user(&a, arg, sizeof(a)))
1227 return -EFAULT;
1228 return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp),
1229 compat_ptr(a.exp), compat_ptr(a.tvp));
1230}
1231
1232#define SEMOP 1
1233#define SEMGET 2
1234#define SEMCTL 3
1235#define SEMTIMEDOP 4
1236#define MSGSND 11
1237#define MSGRCV 12
1238#define MSGGET 13
1239#define MSGCTL 14
1240#define SHMAT 21
1241#define SHMDT 22
1242#define SHMGET 23
1243#define SHMCTL 24
1244
1245asmlinkage long
1246sys32_ipc(u32 call, int first, int second, int third, u32 ptr, u32 fifth)
1247{
1248 int version;
1249
1250 version = call >> 16; /* hack for backward compatibility */
1251 call &= 0xffff;
1252
1253 switch (call) {
1254 case SEMTIMEDOP:
1255 if (fifth)
1256 return compat_sys_semtimedop(first, compat_ptr(ptr),
1257 second, compat_ptr(fifth));
1258 /* else fall through for normal semop() */
1259 case SEMOP:
1260 /* struct sembuf is the same on 32 and 64bit :)) */
1261 return sys_semtimedop(first, compat_ptr(ptr), second,
1262 NULL);
1263 case SEMGET:
1264 return sys_semget(first, second, third);
1265 case SEMCTL:
1266 return compat_sys_semctl(first, second, third, compat_ptr(ptr));
1267
1268 case MSGSND:
1269 return compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
1270 case MSGRCV:
1271 return compat_sys_msgrcv(first, second, fifth, third, version, compat_ptr(ptr));
1272 case MSGGET:
1273 return sys_msgget((key_t) first, second);
1274 case MSGCTL:
1275 return compat_sys_msgctl(first, second, compat_ptr(ptr));
1276
1277 case SHMAT:
1278 return compat_sys_shmat(first, second, third, version, compat_ptr(ptr));
1279 break;
1280 case SHMDT:
1281 return sys_shmdt(compat_ptr(ptr));
1282 case SHMGET:
1283 return sys_shmget(first, (unsigned)second, third);
1284 case SHMCTL:
1285 return compat_sys_shmctl(first, second, compat_ptr(ptr));
1286
1287 default:
1288 return -ENOSYS;
1289 }
1290 return -EINVAL;
1291}
1292
1293asmlinkage long
1294compat_sys_wait4 (compat_pid_t pid, compat_uint_t * stat_addr, int options,
1295 struct compat_rusage *ru);
1296
1297asmlinkage long
1298sys32_waitpid (int pid, unsigned int *stat_addr, int options)
1299{
1300 return compat_sys_wait4(pid, stat_addr, options, NULL);
1301}
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303/*
1304 * The order in which registers are stored in the ptrace regs structure
1305 */
1306#define PT_EBX 0
1307#define PT_ECX 1
1308#define PT_EDX 2
1309#define PT_ESI 3
1310#define PT_EDI 4
1311#define PT_EBP 5
1312#define PT_EAX 6
1313#define PT_DS 7
1314#define PT_ES 8
1315#define PT_FS 9
1316#define PT_GS 10
1317#define PT_ORIG_EAX 11
1318#define PT_EIP 12
1319#define PT_CS 13
1320#define PT_EFL 14
1321#define PT_UESP 15
1322#define PT_SS 16
1323
1324static unsigned int
1325getreg (struct task_struct *child, int regno)
1326{
1327 struct pt_regs *child_regs;
1328
Al Viro64505782006-01-12 01:06:06 -08001329 child_regs = task_pt_regs(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 switch (regno / sizeof(int)) {
1331 case PT_EBX: return child_regs->r11;
1332 case PT_ECX: return child_regs->r9;
1333 case PT_EDX: return child_regs->r10;
1334 case PT_ESI: return child_regs->r14;
1335 case PT_EDI: return child_regs->r15;
1336 case PT_EBP: return child_regs->r13;
1337 case PT_EAX: return child_regs->r8;
1338 case PT_ORIG_EAX: return child_regs->r1; /* see dispatch_to_ia32_handler() */
1339 case PT_EIP: return child_regs->cr_iip;
1340 case PT_UESP: return child_regs->r12;
1341 case PT_EFL: return child->thread.eflag;
1342 case PT_DS: case PT_ES: case PT_FS: case PT_GS: case PT_SS:
1343 return __USER_DS;
1344 case PT_CS: return __USER_CS;
1345 default:
1346 printk(KERN_ERR "ia32.getreg(): unknown register %d\n", regno);
1347 break;
1348 }
1349 return 0;
1350}
1351
1352static void
1353putreg (struct task_struct *child, int regno, unsigned int value)
1354{
1355 struct pt_regs *child_regs;
1356
Al Viro64505782006-01-12 01:06:06 -08001357 child_regs = task_pt_regs(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 switch (regno / sizeof(int)) {
1359 case PT_EBX: child_regs->r11 = value; break;
1360 case PT_ECX: child_regs->r9 = value; break;
1361 case PT_EDX: child_regs->r10 = value; break;
1362 case PT_ESI: child_regs->r14 = value; break;
1363 case PT_EDI: child_regs->r15 = value; break;
1364 case PT_EBP: child_regs->r13 = value; break;
1365 case PT_EAX: child_regs->r8 = value; break;
1366 case PT_ORIG_EAX: child_regs->r1 = value; break;
1367 case PT_EIP: child_regs->cr_iip = value; break;
1368 case PT_UESP: child_regs->r12 = value; break;
1369 case PT_EFL: child->thread.eflag = value; break;
1370 case PT_DS: case PT_ES: case PT_FS: case PT_GS: case PT_SS:
1371 if (value != __USER_DS)
1372 printk(KERN_ERR
1373 "ia32.putreg: attempt to set invalid segment register %d = %x\n",
1374 regno, value);
1375 break;
1376 case PT_CS:
1377 if (value != __USER_CS)
1378 printk(KERN_ERR
1379 "ia32.putreg: attempt to to set invalid segment register %d = %x\n",
1380 regno, value);
1381 break;
1382 default:
1383 printk(KERN_ERR "ia32.putreg: unknown register %d\n", regno);
1384 break;
1385 }
1386}
1387
1388static void
1389put_fpreg (int regno, struct _fpreg_ia32 __user *reg, struct pt_regs *ptp,
1390 struct switch_stack *swp, int tos)
1391{
1392 struct _fpreg_ia32 *f;
1393 char buf[32];
1394
1395 f = (struct _fpreg_ia32 *)(((unsigned long)buf + 15) & ~15);
1396 if ((regno += tos) >= 8)
1397 regno -= 8;
1398 switch (regno) {
1399 case 0:
1400 ia64f2ia32f(f, &ptp->f8);
1401 break;
1402 case 1:
1403 ia64f2ia32f(f, &ptp->f9);
1404 break;
1405 case 2:
1406 ia64f2ia32f(f, &ptp->f10);
1407 break;
1408 case 3:
1409 ia64f2ia32f(f, &ptp->f11);
1410 break;
1411 case 4:
1412 case 5:
1413 case 6:
1414 case 7:
1415 ia64f2ia32f(f, &swp->f12 + (regno - 4));
1416 break;
1417 }
1418 copy_to_user(reg, f, sizeof(*reg));
1419}
1420
1421static void
1422get_fpreg (int regno, struct _fpreg_ia32 __user *reg, struct pt_regs *ptp,
1423 struct switch_stack *swp, int tos)
1424{
1425
1426 if ((regno += tos) >= 8)
1427 regno -= 8;
1428 switch (regno) {
1429 case 0:
1430 copy_from_user(&ptp->f8, reg, sizeof(*reg));
1431 break;
1432 case 1:
1433 copy_from_user(&ptp->f9, reg, sizeof(*reg));
1434 break;
1435 case 2:
1436 copy_from_user(&ptp->f10, reg, sizeof(*reg));
1437 break;
1438 case 3:
1439 copy_from_user(&ptp->f11, reg, sizeof(*reg));
1440 break;
1441 case 4:
1442 case 5:
1443 case 6:
1444 case 7:
1445 copy_from_user(&swp->f12 + (regno - 4), reg, sizeof(*reg));
1446 break;
1447 }
1448 return;
1449}
1450
1451int
1452save_ia32_fpstate (struct task_struct *tsk, struct ia32_user_i387_struct __user *save)
1453{
1454 struct switch_stack *swp;
1455 struct pt_regs *ptp;
1456 int i, tos;
1457
1458 if (!access_ok(VERIFY_WRITE, save, sizeof(*save)))
1459 return -EFAULT;
1460
1461 __put_user(tsk->thread.fcr & 0xffff, &save->cwd);
1462 __put_user(tsk->thread.fsr & 0xffff, &save->swd);
1463 __put_user((tsk->thread.fsr>>16) & 0xffff, &save->twd);
1464 __put_user(tsk->thread.fir, &save->fip);
1465 __put_user((tsk->thread.fir>>32) & 0xffff, &save->fcs);
1466 __put_user(tsk->thread.fdr, &save->foo);
1467 __put_user((tsk->thread.fdr>>32) & 0xffff, &save->fos);
1468
1469 /*
1470 * Stack frames start with 16-bytes of temp space
1471 */
1472 swp = (struct switch_stack *)(tsk->thread.ksp + 16);
Al Viro64505782006-01-12 01:06:06 -08001473 ptp = task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 tos = (tsk->thread.fsr >> 11) & 7;
1475 for (i = 0; i < 8; i++)
1476 put_fpreg(i, &save->st_space[i], ptp, swp, tos);
1477 return 0;
1478}
1479
1480static int
1481restore_ia32_fpstate (struct task_struct *tsk, struct ia32_user_i387_struct __user *save)
1482{
1483 struct switch_stack *swp;
1484 struct pt_regs *ptp;
1485 int i, tos;
1486 unsigned int fsrlo, fsrhi, num32;
1487
1488 if (!access_ok(VERIFY_READ, save, sizeof(*save)))
1489 return(-EFAULT);
1490
1491 __get_user(num32, (unsigned int __user *)&save->cwd);
1492 tsk->thread.fcr = (tsk->thread.fcr & (~0x1f3f)) | (num32 & 0x1f3f);
1493 __get_user(fsrlo, (unsigned int __user *)&save->swd);
1494 __get_user(fsrhi, (unsigned int __user *)&save->twd);
1495 num32 = (fsrhi << 16) | fsrlo;
1496 tsk->thread.fsr = (tsk->thread.fsr & (~0xffffffff)) | num32;
1497 __get_user(num32, (unsigned int __user *)&save->fip);
1498 tsk->thread.fir = (tsk->thread.fir & (~0xffffffff)) | num32;
1499 __get_user(num32, (unsigned int __user *)&save->foo);
1500 tsk->thread.fdr = (tsk->thread.fdr & (~0xffffffff)) | num32;
1501
1502 /*
1503 * Stack frames start with 16-bytes of temp space
1504 */
1505 swp = (struct switch_stack *)(tsk->thread.ksp + 16);
Al Viro64505782006-01-12 01:06:06 -08001506 ptp = task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 tos = (tsk->thread.fsr >> 11) & 7;
1508 for (i = 0; i < 8; i++)
1509 get_fpreg(i, &save->st_space[i], ptp, swp, tos);
1510 return 0;
1511}
1512
1513int
1514save_ia32_fpxstate (struct task_struct *tsk, struct ia32_user_fxsr_struct __user *save)
1515{
1516 struct switch_stack *swp;
1517 struct pt_regs *ptp;
1518 int i, tos;
1519 unsigned long mxcsr=0;
1520 unsigned long num128[2];
1521
1522 if (!access_ok(VERIFY_WRITE, save, sizeof(*save)))
1523 return -EFAULT;
1524
1525 __put_user(tsk->thread.fcr & 0xffff, &save->cwd);
1526 __put_user(tsk->thread.fsr & 0xffff, &save->swd);
1527 __put_user((tsk->thread.fsr>>16) & 0xffff, &save->twd);
1528 __put_user(tsk->thread.fir, &save->fip);
1529 __put_user((tsk->thread.fir>>32) & 0xffff, &save->fcs);
1530 __put_user(tsk->thread.fdr, &save->foo);
1531 __put_user((tsk->thread.fdr>>32) & 0xffff, &save->fos);
1532
1533 /*
1534 * Stack frames start with 16-bytes of temp space
1535 */
1536 swp = (struct switch_stack *)(tsk->thread.ksp + 16);
Al Viro64505782006-01-12 01:06:06 -08001537 ptp = task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 tos = (tsk->thread.fsr >> 11) & 7;
1539 for (i = 0; i < 8; i++)
1540 put_fpreg(i, (struct _fpreg_ia32 __user *)&save->st_space[4*i], ptp, swp, tos);
1541
1542 mxcsr = ((tsk->thread.fcr>>32) & 0xff80) | ((tsk->thread.fsr>>32) & 0x3f);
1543 __put_user(mxcsr & 0xffff, &save->mxcsr);
1544 for (i = 0; i < 8; i++) {
1545 memcpy(&(num128[0]), &(swp->f16) + i*2, sizeof(unsigned long));
1546 memcpy(&(num128[1]), &(swp->f17) + i*2, sizeof(unsigned long));
1547 copy_to_user(&save->xmm_space[0] + 4*i, num128, sizeof(struct _xmmreg_ia32));
1548 }
1549 return 0;
1550}
1551
1552static int
1553restore_ia32_fpxstate (struct task_struct *tsk, struct ia32_user_fxsr_struct __user *save)
1554{
1555 struct switch_stack *swp;
1556 struct pt_regs *ptp;
1557 int i, tos;
1558 unsigned int fsrlo, fsrhi, num32;
1559 int mxcsr;
1560 unsigned long num64;
1561 unsigned long num128[2];
1562
1563 if (!access_ok(VERIFY_READ, save, sizeof(*save)))
1564 return(-EFAULT);
1565
1566 __get_user(num32, (unsigned int __user *)&save->cwd);
1567 tsk->thread.fcr = (tsk->thread.fcr & (~0x1f3f)) | (num32 & 0x1f3f);
1568 __get_user(fsrlo, (unsigned int __user *)&save->swd);
1569 __get_user(fsrhi, (unsigned int __user *)&save->twd);
1570 num32 = (fsrhi << 16) | fsrlo;
1571 tsk->thread.fsr = (tsk->thread.fsr & (~0xffffffff)) | num32;
1572 __get_user(num32, (unsigned int __user *)&save->fip);
1573 tsk->thread.fir = (tsk->thread.fir & (~0xffffffff)) | num32;
1574 __get_user(num32, (unsigned int __user *)&save->foo);
1575 tsk->thread.fdr = (tsk->thread.fdr & (~0xffffffff)) | num32;
1576
1577 /*
1578 * Stack frames start with 16-bytes of temp space
1579 */
1580 swp = (struct switch_stack *)(tsk->thread.ksp + 16);
Al Viro64505782006-01-12 01:06:06 -08001581 ptp = task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 tos = (tsk->thread.fsr >> 11) & 7;
1583 for (i = 0; i < 8; i++)
1584 get_fpreg(i, (struct _fpreg_ia32 __user *)&save->st_space[4*i], ptp, swp, tos);
1585
1586 __get_user(mxcsr, (unsigned int __user *)&save->mxcsr);
1587 num64 = mxcsr & 0xff10;
1588 tsk->thread.fcr = (tsk->thread.fcr & (~0xff1000000000UL)) | (num64<<32);
1589 num64 = mxcsr & 0x3f;
1590 tsk->thread.fsr = (tsk->thread.fsr & (~0x3f00000000UL)) | (num64<<32);
1591
1592 for (i = 0; i < 8; i++) {
1593 copy_from_user(num128, &save->xmm_space[0] + 4*i, sizeof(struct _xmmreg_ia32));
1594 memcpy(&(swp->f16) + i*2, &(num128[0]), sizeof(unsigned long));
1595 memcpy(&(swp->f17) + i*2, &(num128[1]), sizeof(unsigned long));
1596 }
1597 return 0;
1598}
1599
Shaohua Li680973e2008-09-18 15:50:26 +08001600long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
1601 compat_ulong_t caddr, compat_ulong_t cdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Shaohua Li680973e2008-09-18 15:50:26 +08001603 unsigned long addr = caddr;
1604 unsigned long data = cdata;
1605 unsigned int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 long i, ret;
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 switch (request) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 case PTRACE_PEEKUSR: /* read word at addr in USER area */
1610 ret = -EIO;
1611 if ((addr & 3) || addr > 17*sizeof(int))
1612 break;
1613
1614 tmp = getreg(child, addr);
1615 if (!put_user(tmp, (unsigned int __user *) compat_ptr(data)))
1616 ret = 0;
1617 break;
1618
1619 case PTRACE_POKEUSR: /* write word at addr in USER area */
1620 ret = -EIO;
1621 if ((addr & 3) || addr > 17*sizeof(int))
1622 break;
1623
1624 putreg(child, addr, data);
1625 ret = 0;
1626 break;
1627
1628 case IA32_PTRACE_GETREGS:
1629 if (!access_ok(VERIFY_WRITE, compat_ptr(data), 17*sizeof(int))) {
1630 ret = -EIO;
1631 break;
1632 }
1633 for (i = 0; i < (int) (17*sizeof(int)); i += sizeof(int) ) {
1634 put_user(getreg(child, i), (unsigned int __user *) compat_ptr(data));
1635 data += sizeof(int);
1636 }
1637 ret = 0;
1638 break;
1639
1640 case IA32_PTRACE_SETREGS:
1641 if (!access_ok(VERIFY_READ, compat_ptr(data), 17*sizeof(int))) {
1642 ret = -EIO;
1643 break;
1644 }
1645 for (i = 0; i < (int) (17*sizeof(int)); i += sizeof(int) ) {
1646 get_user(tmp, (unsigned int __user *) compat_ptr(data));
1647 putreg(child, i, tmp);
1648 data += sizeof(int);
1649 }
1650 ret = 0;
1651 break;
1652
1653 case IA32_PTRACE_GETFPREGS:
1654 ret = save_ia32_fpstate(child, (struct ia32_user_i387_struct __user *)
1655 compat_ptr(data));
1656 break;
1657
1658 case IA32_PTRACE_GETFPXREGS:
1659 ret = save_ia32_fpxstate(child, (struct ia32_user_fxsr_struct __user *)
1660 compat_ptr(data));
1661 break;
1662
1663 case IA32_PTRACE_SETFPREGS:
1664 ret = restore_ia32_fpstate(child, (struct ia32_user_i387_struct __user *)
1665 compat_ptr(data));
1666 break;
1667
1668 case IA32_PTRACE_SETFPXREGS:
1669 ret = restore_ia32_fpxstate(child, (struct ia32_user_fxsr_struct __user *)
1670 compat_ptr(data));
1671 break;
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 default:
Shaohua Li680973e2008-09-18 15:50:26 +08001674 return compat_ptrace_request(child, request, caddr, cdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return ret;
1677}
1678
1679typedef struct {
1680 unsigned int ss_sp;
1681 unsigned int ss_flags;
1682 unsigned int ss_size;
1683} ia32_stack_t;
1684
1685asmlinkage long
1686sys32_sigaltstack (ia32_stack_t __user *uss32, ia32_stack_t __user *uoss32,
1687 long arg2, long arg3, long arg4, long arg5, long arg6,
1688 long arg7, struct pt_regs pt)
1689{
1690 stack_t uss, uoss;
1691 ia32_stack_t buf32;
1692 int ret;
1693 mm_segment_t old_fs = get_fs();
1694
1695 if (uss32) {
1696 if (copy_from_user(&buf32, uss32, sizeof(ia32_stack_t)))
1697 return -EFAULT;
1698 uss.ss_sp = (void __user *) (long) buf32.ss_sp;
1699 uss.ss_flags = buf32.ss_flags;
1700 /* MINSIGSTKSZ is different for ia32 vs ia64. We lie here to pass the
1701 check and set it to the user requested value later */
1702 if ((buf32.ss_flags != SS_DISABLE) && (buf32.ss_size < MINSIGSTKSZ_IA32)) {
1703 ret = -ENOMEM;
1704 goto out;
1705 }
1706 uss.ss_size = MINSIGSTKSZ;
1707 }
1708 set_fs(KERNEL_DS);
1709 ret = do_sigaltstack(uss32 ? (stack_t __user *) &uss : NULL,
1710 (stack_t __user *) &uoss, pt.r12);
1711 current->sas_ss_size = buf32.ss_size;
1712 set_fs(old_fs);
1713out:
1714 if (ret < 0)
1715 return(ret);
1716 if (uoss32) {
1717 buf32.ss_sp = (long __user) uoss.ss_sp;
1718 buf32.ss_flags = uoss.ss_flags;
1719 buf32.ss_size = uoss.ss_size;
1720 if (copy_to_user(uoss32, &buf32, sizeof(ia32_stack_t)))
1721 return -EFAULT;
1722 }
1723 return ret;
1724}
1725
1726asmlinkage int
1727sys32_pause (void)
1728{
1729 current->state = TASK_INTERRUPTIBLE;
1730 schedule();
1731 return -ERESTARTNOHAND;
1732}
1733
1734asmlinkage int
1735sys32_msync (unsigned int start, unsigned int len, int flags)
1736{
1737 unsigned int addr;
1738
1739 if (OFFSET4K(start))
1740 return -EINVAL;
1741 addr = PAGE_START(start);
1742 return sys_msync(addr, len + (start - addr), flags);
1743}
1744
1745struct sysctl32 {
1746 unsigned int name;
1747 int nlen;
1748 unsigned int oldval;
1749 unsigned int oldlenp;
1750 unsigned int newval;
1751 unsigned int newlen;
1752 unsigned int __unused[4];
1753};
1754
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001755#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756asmlinkage long
1757sys32_sysctl (struct sysctl32 __user *args)
1758{
1759 struct sysctl32 a32;
1760 mm_segment_t old_fs = get_fs ();
1761 void __user *oldvalp, *newvalp;
1762 size_t oldlen;
1763 int __user *namep;
1764 long ret;
1765
1766 if (copy_from_user(&a32, args, sizeof(a32)))
1767 return -EFAULT;
1768
1769 /*
1770 * We need to pre-validate these because we have to disable address checking
1771 * before calling do_sysctl() because of OLDLEN but we can't run the risk of the
1772 * user specifying bad addresses here. Well, since we're dealing with 32 bit
1773 * addresses, we KNOW that access_ok() will always succeed, so this is an
1774 * expensive NOP, but so what...
1775 */
1776 namep = (int __user *) compat_ptr(a32.name);
1777 oldvalp = compat_ptr(a32.oldval);
1778 newvalp = compat_ptr(a32.newval);
1779
1780 if ((oldvalp && get_user(oldlen, (int __user *) compat_ptr(a32.oldlenp)))
1781 || !access_ok(VERIFY_WRITE, namep, 0)
1782 || !access_ok(VERIFY_WRITE, oldvalp, 0)
1783 || !access_ok(VERIFY_WRITE, newvalp, 0))
1784 return -EFAULT;
1785
1786 set_fs(KERNEL_DS);
1787 lock_kernel();
1788 ret = do_sysctl(namep, a32.nlen, oldvalp, (size_t __user *) &oldlen,
1789 newvalp, (size_t) a32.newlen);
1790 unlock_kernel();
1791 set_fs(old_fs);
1792
1793 if (oldvalp && put_user (oldlen, (int __user *) compat_ptr(a32.oldlenp)))
1794 return -EFAULT;
1795
1796 return ret;
1797}
1798#endif
1799
1800asmlinkage long
1801sys32_newuname (struct new_utsname __user *name)
1802{
1803 int ret = sys_newuname(name);
1804
1805 if (!ret)
1806 if (copy_to_user(name->machine, "i686\0\0\0", 8))
1807 ret = -EFAULT;
1808 return ret;
1809}
1810
1811asmlinkage long
1812sys32_getresuid16 (u16 __user *ruid, u16 __user *euid, u16 __user *suid)
1813{
1814 uid_t a, b, c;
1815 int ret;
1816 mm_segment_t old_fs = get_fs();
1817
1818 set_fs(KERNEL_DS);
1819 ret = sys_getresuid((uid_t __user *) &a, (uid_t __user *) &b, (uid_t __user *) &c);
1820 set_fs(old_fs);
1821
1822 if (put_user(a, ruid) || put_user(b, euid) || put_user(c, suid))
1823 return -EFAULT;
1824 return ret;
1825}
1826
1827asmlinkage long
1828sys32_getresgid16 (u16 __user *rgid, u16 __user *egid, u16 __user *sgid)
1829{
1830 gid_t a, b, c;
1831 int ret;
1832 mm_segment_t old_fs = get_fs();
1833
1834 set_fs(KERNEL_DS);
1835 ret = sys_getresgid((gid_t __user *) &a, (gid_t __user *) &b, (gid_t __user *) &c);
1836 set_fs(old_fs);
1837
1838 if (ret)
1839 return ret;
1840
1841 return put_user(a, rgid) | put_user(b, egid) | put_user(c, sgid);
1842}
1843
1844asmlinkage long
1845sys32_lseek (unsigned int fd, int offset, unsigned int whence)
1846{
1847 /* Sign-extension of "offset" is important here... */
1848 return sys_lseek(fd, offset, whence);
1849}
1850
1851static int
1852groups16_to_user(short __user *grouplist, struct group_info *group_info)
1853{
1854 int i;
1855 short group;
1856
1857 for (i = 0; i < group_info->ngroups; i++) {
1858 group = (short)GROUP_AT(group_info, i);
1859 if (put_user(group, grouplist+i))
1860 return -EFAULT;
1861 }
1862
1863 return 0;
1864}
1865
1866static int
1867groups16_from_user(struct group_info *group_info, short __user *grouplist)
1868{
1869 int i;
1870 short group;
1871
1872 for (i = 0; i < group_info->ngroups; i++) {
1873 if (get_user(group, grouplist+i))
1874 return -EFAULT;
1875 GROUP_AT(group_info, i) = (gid_t)group;
1876 }
1877
1878 return 0;
1879}
1880
1881asmlinkage long
1882sys32_getgroups16 (int gidsetsize, short __user *grouplist)
1883{
1884 int i;
1885
1886 if (gidsetsize < 0)
1887 return -EINVAL;
1888
1889 get_group_info(current->group_info);
1890 i = current->group_info->ngroups;
1891 if (gidsetsize) {
1892 if (i > gidsetsize) {
1893 i = -EINVAL;
1894 goto out;
1895 }
1896 if (groups16_to_user(grouplist, current->group_info)) {
1897 i = -EFAULT;
1898 goto out;
1899 }
1900 }
1901out:
1902 put_group_info(current->group_info);
1903 return i;
1904}
1905
1906asmlinkage long
1907sys32_setgroups16 (int gidsetsize, short __user *grouplist)
1908{
1909 struct group_info *group_info;
1910 int retval;
1911
1912 if (!capable(CAP_SETGID))
1913 return -EPERM;
1914 if ((unsigned)gidsetsize > NGROUPS_MAX)
1915 return -EINVAL;
1916
1917 group_info = groups_alloc(gidsetsize);
1918 if (!group_info)
1919 return -ENOMEM;
1920 retval = groups16_from_user(group_info, grouplist);
1921 if (retval) {
1922 put_group_info(group_info);
1923 return retval;
1924 }
1925
1926 retval = set_current_groups(group_info);
1927 put_group_info(group_info);
1928
1929 return retval;
1930}
1931
1932asmlinkage long
1933sys32_truncate64 (unsigned int path, unsigned int len_lo, unsigned int len_hi)
1934{
1935 return sys_truncate(compat_ptr(path), ((unsigned long) len_hi << 32) | len_lo);
1936}
1937
1938asmlinkage long
1939sys32_ftruncate64 (int fd, unsigned int len_lo, unsigned int len_hi)
1940{
1941 return sys_ftruncate(fd, ((unsigned long) len_hi << 32) | len_lo);
1942}
1943
1944static int
1945putstat64 (struct stat64 __user *ubuf, struct kstat *kbuf)
1946{
1947 int err;
1948 u64 hdev;
1949
1950 if (clear_user(ubuf, sizeof(*ubuf)))
1951 return -EFAULT;
1952
1953 hdev = huge_encode_dev(kbuf->dev);
1954 err = __put_user(hdev, (u32 __user*)&ubuf->st_dev);
1955 err |= __put_user(hdev >> 32, ((u32 __user*)&ubuf->st_dev) + 1);
1956 err |= __put_user(kbuf->ino, &ubuf->__st_ino);
1957 err |= __put_user(kbuf->ino, &ubuf->st_ino_lo);
1958 err |= __put_user(kbuf->ino >> 32, &ubuf->st_ino_hi);
1959 err |= __put_user(kbuf->mode, &ubuf->st_mode);
1960 err |= __put_user(kbuf->nlink, &ubuf->st_nlink);
1961 err |= __put_user(kbuf->uid, &ubuf->st_uid);
1962 err |= __put_user(kbuf->gid, &ubuf->st_gid);
1963 hdev = huge_encode_dev(kbuf->rdev);
1964 err = __put_user(hdev, (u32 __user*)&ubuf->st_rdev);
1965 err |= __put_user(hdev >> 32, ((u32 __user*)&ubuf->st_rdev) + 1);
1966 err |= __put_user(kbuf->size, &ubuf->st_size_lo);
1967 err |= __put_user((kbuf->size >> 32), &ubuf->st_size_hi);
1968 err |= __put_user(kbuf->atime.tv_sec, &ubuf->st_atime);
1969 err |= __put_user(kbuf->atime.tv_nsec, &ubuf->st_atime_nsec);
1970 err |= __put_user(kbuf->mtime.tv_sec, &ubuf->st_mtime);
1971 err |= __put_user(kbuf->mtime.tv_nsec, &ubuf->st_mtime_nsec);
1972 err |= __put_user(kbuf->ctime.tv_sec, &ubuf->st_ctime);
1973 err |= __put_user(kbuf->ctime.tv_nsec, &ubuf->st_ctime_nsec);
1974 err |= __put_user(kbuf->blksize, &ubuf->st_blksize);
1975 err |= __put_user(kbuf->blocks, &ubuf->st_blocks);
1976 return err;
1977}
1978
1979asmlinkage long
1980sys32_stat64 (char __user *filename, struct stat64 __user *statbuf)
1981{
1982 struct kstat s;
1983 long ret = vfs_stat(filename, &s);
1984 if (!ret)
1985 ret = putstat64(statbuf, &s);
1986 return ret;
1987}
1988
1989asmlinkage long
1990sys32_lstat64 (char __user *filename, struct stat64 __user *statbuf)
1991{
1992 struct kstat s;
1993 long ret = vfs_lstat(filename, &s);
1994 if (!ret)
1995 ret = putstat64(statbuf, &s);
1996 return ret;
1997}
1998
1999asmlinkage long
2000sys32_fstat64 (unsigned int fd, struct stat64 __user *statbuf)
2001{
2002 struct kstat s;
2003 long ret = vfs_fstat(fd, &s);
2004 if (!ret)
2005 ret = putstat64(statbuf, &s);
2006 return ret;
2007}
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009asmlinkage long
2010sys32_sched_rr_get_interval (pid_t pid, struct compat_timespec __user *interval)
2011{
2012 mm_segment_t old_fs = get_fs();
2013 struct timespec t;
2014 long ret;
2015
2016 set_fs(KERNEL_DS);
2017 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *) &t);
2018 set_fs(old_fs);
2019 if (put_compat_timespec(&t, interval))
2020 return -EFAULT;
2021 return ret;
2022}
2023
2024asmlinkage long
2025sys32_pread (unsigned int fd, void __user *buf, unsigned int count, u32 pos_lo, u32 pos_hi)
2026{
2027 return sys_pread64(fd, buf, count, ((unsigned long) pos_hi << 32) | pos_lo);
2028}
2029
2030asmlinkage long
2031sys32_pwrite (unsigned int fd, void __user *buf, unsigned int count, u32 pos_lo, u32 pos_hi)
2032{
2033 return sys_pwrite64(fd, buf, count, ((unsigned long) pos_hi << 32) | pos_lo);
2034}
2035
2036asmlinkage long
2037sys32_sendfile (int out_fd, int in_fd, int __user *offset, unsigned int count)
2038{
2039 mm_segment_t old_fs = get_fs();
2040 long ret;
2041 off_t of;
2042
2043 if (offset && get_user(of, offset))
2044 return -EFAULT;
2045
2046 set_fs(KERNEL_DS);
2047 ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *) &of : NULL, count);
2048 set_fs(old_fs);
2049
Tsuneo.Yoshioka@f-secure.com83b942b2005-09-12 18:49:24 +02002050 if (offset && put_user(of, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return -EFAULT;
2052
2053 return ret;
2054}
2055
2056asmlinkage long
2057sys32_personality (unsigned int personality)
2058{
2059 long ret;
2060
2061 if (current->personality == PER_LINUX32 && personality == PER_LINUX)
2062 personality = PER_LINUX32;
2063 ret = sys_personality(personality);
2064 if (ret == PER_LINUX32)
2065 ret = PER_LINUX;
2066 return ret;
2067}
2068
2069asmlinkage unsigned long
2070sys32_brk (unsigned int brk)
2071{
2072 unsigned long ret, obrk;
2073 struct mm_struct *mm = current->mm;
2074
2075 obrk = mm->brk;
2076 ret = sys_brk(brk);
2077 if (ret < obrk)
2078 clear_user(compat_ptr(ret), PAGE_ALIGN(ret) - ret);
2079 return ret;
2080}
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082/* Structure for ia32 emulation on ia64 */
2083struct epoll_event32
2084{
2085 u32 events;
2086 u32 data[2];
2087};
2088
2089asmlinkage long
2090sys32_epoll_ctl(int epfd, int op, int fd, struct epoll_event32 __user *event)
2091{
2092 mm_segment_t old_fs = get_fs();
2093 struct epoll_event event64;
2094 int error;
2095 u32 data_halfword;
2096
2097 if (!access_ok(VERIFY_READ, event, sizeof(struct epoll_event32)))
2098 return -EFAULT;
2099
2100 __get_user(event64.events, &event->events);
2101 __get_user(data_halfword, &event->data[0]);
2102 event64.data = data_halfword;
2103 __get_user(data_halfword, &event->data[1]);
2104 event64.data |= (u64)data_halfword << 32;
2105
2106 set_fs(KERNEL_DS);
2107 error = sys_epoll_ctl(epfd, op, fd, (struct epoll_event __user *) &event64);
2108 set_fs(old_fs);
2109
2110 return error;
2111}
2112
2113asmlinkage long
2114sys32_epoll_wait(int epfd, struct epoll_event32 __user * events, int maxevents,
2115 int timeout)
2116{
2117 struct epoll_event *events64 = NULL;
2118 mm_segment_t old_fs = get_fs();
Peter Chubbd8caebd2005-05-31 22:37:00 -07002119 int numevents, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 int evt_idx;
2121 int do_free_pages = 0;
2122
2123 if (maxevents <= 0) {
2124 return -EINVAL;
2125 }
2126
2127 /* Verify that the area passed by the user is writeable */
2128 if (!access_ok(VERIFY_WRITE, events, maxevents * sizeof(struct epoll_event32)))
2129 return -EFAULT;
2130
2131 /*
2132 * Allocate space for the intermediate copy. If the space needed
2133 * is large enough to cause kmalloc to fail, then try again with
2134 * __get_free_pages.
2135 */
2136 size = maxevents * sizeof(struct epoll_event);
2137 events64 = kmalloc(size, GFP_KERNEL);
2138 if (events64 == NULL) {
2139 events64 = (struct epoll_event *)
2140 __get_free_pages(GFP_KERNEL, get_order(size));
2141 if (events64 == NULL)
2142 return -ENOMEM;
2143 do_free_pages = 1;
2144 }
2145
2146 /* Do the system call */
2147 set_fs(KERNEL_DS); /* copy_to/from_user should work on kernel mem*/
2148 numevents = sys_epoll_wait(epfd, (struct epoll_event __user *) events64,
2149 maxevents, timeout);
2150 set_fs(old_fs);
2151
2152 /* Don't modify userspace memory if we're returning an error */
2153 if (numevents > 0) {
2154 /* Translate the 64-bit structures back into the 32-bit
2155 structures */
2156 for (evt_idx = 0; evt_idx < numevents; evt_idx++) {
2157 __put_user(events64[evt_idx].events,
2158 &events[evt_idx].events);
2159 __put_user((u32)events64[evt_idx].data,
2160 &events[evt_idx].data[0]);
2161 __put_user((u32)(events64[evt_idx].data >> 32),
2162 &events[evt_idx].data[1]);
2163 }
2164 }
2165
2166 if (do_free_pages)
2167 free_pages((unsigned long) events64, get_order(size));
2168 else
2169 kfree(events64);
2170 return numevents;
2171}
2172
2173/*
2174 * Get a yet unused TLS descriptor index.
2175 */
2176static int
2177get_free_idx (void)
2178{
2179 struct thread_struct *t = &current->thread;
2180 int idx;
2181
2182 for (idx = 0; idx < GDT_ENTRY_TLS_ENTRIES; idx++)
2183 if (desc_empty(t->tls_array + idx))
2184 return idx + GDT_ENTRY_TLS_MIN;
2185 return -ESRCH;
2186}
2187
Shaohua Li75529212008-02-28 16:09:33 +08002188static void set_tls_desc(struct task_struct *p, int idx,
2189 const struct ia32_user_desc *info, int n)
2190{
2191 struct thread_struct *t = &p->thread;
2192 struct desc_struct *desc = &t->tls_array[idx - GDT_ENTRY_TLS_MIN];
2193 int cpu;
2194
2195 /*
2196 * We must not get preempted while modifying the TLS.
2197 */
2198 cpu = get_cpu();
2199
2200 while (n-- > 0) {
2201 if (LDT_empty(info)) {
2202 desc->a = 0;
2203 desc->b = 0;
2204 } else {
2205 desc->a = LDT_entry_a(info);
2206 desc->b = LDT_entry_b(info);
2207 }
2208
2209 ++info;
2210 ++desc;
2211 }
2212
2213 if (t == &current->thread)
2214 load_TLS(t, cpu);
2215
2216 put_cpu();
2217}
2218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219/*
2220 * Set a given TLS descriptor:
2221 */
2222asmlinkage int
2223sys32_set_thread_area (struct ia32_user_desc __user *u_info)
2224{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 struct ia32_user_desc info;
Shaohua Li75529212008-02-28 16:09:33 +08002226 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 if (copy_from_user(&info, u_info, sizeof(info)))
2229 return -EFAULT;
2230 idx = info.entry_number;
2231
2232 /*
2233 * index -1 means the kernel should try to find and allocate an empty descriptor:
2234 */
2235 if (idx == -1) {
2236 idx = get_free_idx();
2237 if (idx < 0)
2238 return idx;
2239 if (put_user(idx, &u_info->entry_number))
2240 return -EFAULT;
2241 }
2242
2243 if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
2244 return -EINVAL;
2245
Shaohua Li75529212008-02-28 16:09:33 +08002246 set_tls_desc(current, idx, &info, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 return 0;
2248}
2249
2250/*
2251 * Get the current Thread-Local Storage area:
2252 */
2253
2254#define GET_BASE(desc) ( \
2255 (((desc)->a >> 16) & 0x0000ffff) | \
2256 (((desc)->b << 16) & 0x00ff0000) | \
2257 ( (desc)->b & 0xff000000) )
2258
2259#define GET_LIMIT(desc) ( \
2260 ((desc)->a & 0x0ffff) | \
2261 ((desc)->b & 0xf0000) )
2262
2263#define GET_32BIT(desc) (((desc)->b >> 22) & 1)
2264#define GET_CONTENTS(desc) (((desc)->b >> 10) & 3)
2265#define GET_WRITABLE(desc) (((desc)->b >> 9) & 1)
2266#define GET_LIMIT_PAGES(desc) (((desc)->b >> 23) & 1)
2267#define GET_PRESENT(desc) (((desc)->b >> 15) & 1)
2268#define GET_USEABLE(desc) (((desc)->b >> 20) & 1)
2269
Shaohua Li75529212008-02-28 16:09:33 +08002270static void fill_user_desc(struct ia32_user_desc *info, int idx,
2271 const struct desc_struct *desc)
2272{
2273 info->entry_number = idx;
2274 info->base_addr = GET_BASE(desc);
2275 info->limit = GET_LIMIT(desc);
2276 info->seg_32bit = GET_32BIT(desc);
2277 info->contents = GET_CONTENTS(desc);
2278 info->read_exec_only = !GET_WRITABLE(desc);
2279 info->limit_in_pages = GET_LIMIT_PAGES(desc);
2280 info->seg_not_present = !GET_PRESENT(desc);
2281 info->useable = GET_USEABLE(desc);
2282}
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284asmlinkage int
2285sys32_get_thread_area (struct ia32_user_desc __user *u_info)
2286{
2287 struct ia32_user_desc info;
2288 struct desc_struct *desc;
2289 int idx;
2290
2291 if (get_user(idx, &u_info->entry_number))
2292 return -EFAULT;
2293 if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
2294 return -EINVAL;
2295
2296 desc = current->thread.tls_array + idx - GDT_ENTRY_TLS_MIN;
Shaohua Li75529212008-02-28 16:09:33 +08002297 fill_user_desc(&info, idx, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 if (copy_to_user(u_info, &info, sizeof(info)))
2300 return -EFAULT;
2301 return 0;
2302}
2303
Shaohua Li75529212008-02-28 16:09:33 +08002304struct regset_get {
2305 void *kbuf;
2306 void __user *ubuf;
2307};
2308
2309struct regset_set {
2310 const void *kbuf;
2311 const void __user *ubuf;
2312};
2313
2314struct regset_getset {
2315 struct task_struct *target;
2316 const struct user_regset *regset;
2317 union {
2318 struct regset_get get;
2319 struct regset_set set;
2320 } u;
2321 unsigned int pos;
2322 unsigned int count;
2323 int ret;
2324};
2325
2326static void getfpreg(struct task_struct *task, int regno, int *val)
2327{
2328 switch (regno / sizeof(int)) {
2329 case 0:
2330 *val = task->thread.fcr & 0xffff;
2331 break;
2332 case 1:
2333 *val = task->thread.fsr & 0xffff;
2334 break;
2335 case 2:
2336 *val = (task->thread.fsr>>16) & 0xffff;
2337 break;
2338 case 3:
2339 *val = task->thread.fir;
2340 break;
2341 case 4:
2342 *val = (task->thread.fir>>32) & 0xffff;
2343 break;
2344 case 5:
2345 *val = task->thread.fdr;
2346 break;
2347 case 6:
2348 *val = (task->thread.fdr >> 32) & 0xffff;
2349 break;
2350 }
2351}
2352
2353static void setfpreg(struct task_struct *task, int regno, int val)
2354{
2355 switch (regno / sizeof(int)) {
2356 case 0:
2357 task->thread.fcr = (task->thread.fcr & (~0x1f3f))
2358 | (val & 0x1f3f);
2359 break;
2360 case 1:
2361 task->thread.fsr = (task->thread.fsr & (~0xffff)) | val;
2362 break;
2363 case 2:
2364 task->thread.fsr = (task->thread.fsr & (~0xffff0000))
2365 | (val << 16);
2366 break;
2367 case 3:
2368 task->thread.fir = (task->thread.fir & (~0xffffffff)) | val;
2369 break;
2370 case 5:
2371 task->thread.fdr = (task->thread.fdr & (~0xffffffff)) | val;
2372 break;
2373 }
2374}
2375
2376static void access_fpreg_ia32(int regno, void *reg,
2377 struct pt_regs *pt, struct switch_stack *sw,
2378 int tos, int write)
2379{
2380 void *f;
2381
2382 if ((regno += tos) >= 8)
2383 regno -= 8;
2384 if (regno < 4)
2385 f = &pt->f8 + regno;
2386 else if (regno <= 7)
2387 f = &sw->f12 + (regno - 4);
2388 else {
2389 printk(KERN_ERR "regno must be less than 7 \n");
2390 return;
2391 }
2392
2393 if (write)
2394 memcpy(f, reg, sizeof(struct _fpreg_ia32));
2395 else
2396 memcpy(reg, f, sizeof(struct _fpreg_ia32));
2397}
2398
2399static void do_fpregs_get(struct unw_frame_info *info, void *arg)
2400{
2401 struct regset_getset *dst = arg;
2402 struct task_struct *task = dst->target;
2403 struct pt_regs *pt;
2404 int start, end, tos;
2405 char buf[80];
2406
2407 if (dst->count == 0 || unw_unwind_to_user(info) < 0)
2408 return;
2409 if (dst->pos < 7 * sizeof(int)) {
2410 end = min((dst->pos + dst->count),
2411 (unsigned int)(7 * sizeof(int)));
2412 for (start = dst->pos; start < end; start += sizeof(int))
2413 getfpreg(task, start, (int *)(buf + start));
2414 dst->ret = user_regset_copyout(&dst->pos, &dst->count,
2415 &dst->u.get.kbuf, &dst->u.get.ubuf, buf,
2416 0, 7 * sizeof(int));
2417 if (dst->ret || dst->count == 0)
2418 return;
2419 }
2420 if (dst->pos < sizeof(struct ia32_user_i387_struct)) {
2421 pt = task_pt_regs(task);
2422 tos = (task->thread.fsr >> 11) & 7;
2423 end = min(dst->pos + dst->count,
2424 (unsigned int)(sizeof(struct ia32_user_i387_struct)));
2425 start = (dst->pos - 7 * sizeof(int)) /
2426 sizeof(struct _fpreg_ia32);
2427 end = (end - 7 * sizeof(int)) / sizeof(struct _fpreg_ia32);
2428 for (; start < end; start++)
2429 access_fpreg_ia32(start,
2430 (struct _fpreg_ia32 *)buf + start,
2431 pt, info->sw, tos, 0);
2432 dst->ret = user_regset_copyout(&dst->pos, &dst->count,
2433 &dst->u.get.kbuf, &dst->u.get.ubuf,
2434 buf, 7 * sizeof(int),
2435 sizeof(struct ia32_user_i387_struct));
2436 if (dst->ret || dst->count == 0)
2437 return;
2438 }
2439}
2440
2441static void do_fpregs_set(struct unw_frame_info *info, void *arg)
2442{
2443 struct regset_getset *dst = arg;
2444 struct task_struct *task = dst->target;
2445 struct pt_regs *pt;
2446 char buf[80];
2447 int end, start, tos;
2448
2449 if (dst->count == 0 || unw_unwind_to_user(info) < 0)
2450 return;
2451
2452 if (dst->pos < 7 * sizeof(int)) {
2453 start = dst->pos;
2454 dst->ret = user_regset_copyin(&dst->pos, &dst->count,
2455 &dst->u.set.kbuf, &dst->u.set.ubuf, buf,
2456 0, 7 * sizeof(int));
2457 if (dst->ret)
2458 return;
2459 for (; start < dst->pos; start += sizeof(int))
2460 setfpreg(task, start, *((int *)(buf + start)));
2461 if (dst->count == 0)
2462 return;
2463 }
2464 if (dst->pos < sizeof(struct ia32_user_i387_struct)) {
2465 start = (dst->pos - 7 * sizeof(int)) /
2466 sizeof(struct _fpreg_ia32);
2467 dst->ret = user_regset_copyin(&dst->pos, &dst->count,
2468 &dst->u.set.kbuf, &dst->u.set.ubuf,
2469 buf, 7 * sizeof(int),
2470 sizeof(struct ia32_user_i387_struct));
2471 if (dst->ret)
2472 return;
2473 pt = task_pt_regs(task);
2474 tos = (task->thread.fsr >> 11) & 7;
2475 end = (dst->pos - 7 * sizeof(int)) / sizeof(struct _fpreg_ia32);
2476 for (; start < end; start++)
2477 access_fpreg_ia32(start,
2478 (struct _fpreg_ia32 *)buf + start,
2479 pt, info->sw, tos, 1);
2480 if (dst->count == 0)
2481 return;
2482 }
2483}
2484
2485#define OFFSET(member) ((int)(offsetof(struct ia32_user_fxsr_struct, member)))
2486static void getfpxreg(struct task_struct *task, int start, int end, char *buf)
2487{
2488 int min_val;
2489
2490 min_val = min(end, OFFSET(fop));
2491 while (start < min_val) {
2492 if (start == OFFSET(cwd))
2493 *((short *)buf) = task->thread.fcr & 0xffff;
2494 else if (start == OFFSET(swd))
2495 *((short *)buf) = task->thread.fsr & 0xffff;
2496 else if (start == OFFSET(twd))
2497 *((short *)buf) = (task->thread.fsr>>16) & 0xffff;
2498 buf += 2;
2499 start += 2;
2500 }
2501 /* skip fop element */
2502 if (start == OFFSET(fop)) {
2503 start += 2;
2504 buf += 2;
2505 }
2506 while (start < end) {
2507 if (start == OFFSET(fip))
2508 *((int *)buf) = task->thread.fir;
2509 else if (start == OFFSET(fcs))
2510 *((int *)buf) = (task->thread.fir>>32) & 0xffff;
2511 else if (start == OFFSET(foo))
2512 *((int *)buf) = task->thread.fdr;
2513 else if (start == OFFSET(fos))
2514 *((int *)buf) = (task->thread.fdr>>32) & 0xffff;
2515 else if (start == OFFSET(mxcsr))
2516 *((int *)buf) = ((task->thread.fcr>>32) & 0xff80)
2517 | ((task->thread.fsr>>32) & 0x3f);
2518 buf += 4;
2519 start += 4;
2520 }
2521}
2522
2523static void setfpxreg(struct task_struct *task, int start, int end, char *buf)
2524{
2525 int min_val, num32;
2526 short num;
2527 unsigned long num64;
2528
2529 min_val = min(end, OFFSET(fop));
2530 while (start < min_val) {
2531 num = *((short *)buf);
2532 if (start == OFFSET(cwd)) {
2533 task->thread.fcr = (task->thread.fcr & (~0x1f3f))
2534 | (num & 0x1f3f);
2535 } else if (start == OFFSET(swd)) {
2536 task->thread.fsr = (task->thread.fsr & (~0xffff)) | num;
2537 } else if (start == OFFSET(twd)) {
2538 task->thread.fsr = (task->thread.fsr & (~0xffff0000))
2539 | (((int)num) << 16);
2540 }
2541 buf += 2;
2542 start += 2;
2543 }
2544 /* skip fop element */
2545 if (start == OFFSET(fop)) {
2546 start += 2;
2547 buf += 2;
2548 }
2549 while (start < end) {
2550 num32 = *((int *)buf);
2551 if (start == OFFSET(fip))
2552 task->thread.fir = (task->thread.fir & (~0xffffffff))
2553 | num32;
2554 else if (start == OFFSET(foo))
2555 task->thread.fdr = (task->thread.fdr & (~0xffffffff))
2556 | num32;
2557 else if (start == OFFSET(mxcsr)) {
2558 num64 = num32 & 0xff10;
2559 task->thread.fcr = (task->thread.fcr &
2560 (~0xff1000000000UL)) | (num64<<32);
2561 num64 = num32 & 0x3f;
2562 task->thread.fsr = (task->thread.fsr &
2563 (~0x3f00000000UL)) | (num64<<32);
2564 }
2565 buf += 4;
2566 start += 4;
2567 }
2568}
2569
2570static void do_fpxregs_get(struct unw_frame_info *info, void *arg)
2571{
2572 struct regset_getset *dst = arg;
2573 struct task_struct *task = dst->target;
2574 struct pt_regs *pt;
2575 char buf[128];
2576 int start, end, tos;
2577
2578 if (dst->count == 0 || unw_unwind_to_user(info) < 0)
2579 return;
2580 if (dst->pos < OFFSET(st_space[0])) {
2581 end = min(dst->pos + dst->count, (unsigned int)32);
2582 getfpxreg(task, dst->pos, end, buf);
2583 dst->ret = user_regset_copyout(&dst->pos, &dst->count,
2584 &dst->u.get.kbuf, &dst->u.get.ubuf, buf,
2585 0, OFFSET(st_space[0]));
2586 if (dst->ret || dst->count == 0)
2587 return;
2588 }
2589 if (dst->pos < OFFSET(xmm_space[0])) {
2590 pt = task_pt_regs(task);
2591 tos = (task->thread.fsr >> 11) & 7;
2592 end = min(dst->pos + dst->count,
2593 (unsigned int)OFFSET(xmm_space[0]));
2594 start = (dst->pos - OFFSET(st_space[0])) / 16;
2595 end = (end - OFFSET(st_space[0])) / 16;
2596 for (; start < end; start++)
2597 access_fpreg_ia32(start, buf + 16 * start, pt,
2598 info->sw, tos, 0);
2599 dst->ret = user_regset_copyout(&dst->pos, &dst->count,
2600 &dst->u.get.kbuf, &dst->u.get.ubuf,
2601 buf, OFFSET(st_space[0]), OFFSET(xmm_space[0]));
2602 if (dst->ret || dst->count == 0)
2603 return;
2604 }
2605 if (dst->pos < OFFSET(padding[0]))
2606 dst->ret = user_regset_copyout(&dst->pos, &dst->count,
2607 &dst->u.get.kbuf, &dst->u.get.ubuf,
2608 &info->sw->f16, OFFSET(xmm_space[0]),
2609 OFFSET(padding[0]));
2610}
2611
2612static void do_fpxregs_set(struct unw_frame_info *info, void *arg)
2613{
2614 struct regset_getset *dst = arg;
2615 struct task_struct *task = dst->target;
2616 char buf[128];
2617 int start, end;
2618
2619 if (dst->count == 0 || unw_unwind_to_user(info) < 0)
2620 return;
2621
2622 if (dst->pos < OFFSET(st_space[0])) {
2623 start = dst->pos;
2624 dst->ret = user_regset_copyin(&dst->pos, &dst->count,
2625 &dst->u.set.kbuf, &dst->u.set.ubuf,
2626 buf, 0, OFFSET(st_space[0]));
2627 if (dst->ret)
2628 return;
2629 setfpxreg(task, start, dst->pos, buf);
2630 if (dst->count == 0)
2631 return;
2632 }
2633 if (dst->pos < OFFSET(xmm_space[0])) {
2634 struct pt_regs *pt;
2635 int tos;
2636 pt = task_pt_regs(task);
2637 tos = (task->thread.fsr >> 11) & 7;
2638 start = (dst->pos - OFFSET(st_space[0])) / 16;
2639 dst->ret = user_regset_copyin(&dst->pos, &dst->count,
2640 &dst->u.set.kbuf, &dst->u.set.ubuf,
2641 buf, OFFSET(st_space[0]), OFFSET(xmm_space[0]));
2642 if (dst->ret)
2643 return;
2644 end = (dst->pos - OFFSET(st_space[0])) / 16;
2645 for (; start < end; start++)
2646 access_fpreg_ia32(start, buf + 16 * start, pt, info->sw,
2647 tos, 1);
2648 if (dst->count == 0)
2649 return;
2650 }
2651 if (dst->pos < OFFSET(padding[0]))
2652 dst->ret = user_regset_copyin(&dst->pos, &dst->count,
2653 &dst->u.set.kbuf, &dst->u.set.ubuf,
2654 &info->sw->f16, OFFSET(xmm_space[0]),
2655 OFFSET(padding[0]));
2656}
2657#undef OFFSET
2658
2659static int do_regset_call(void (*call)(struct unw_frame_info *, void *),
2660 struct task_struct *target,
2661 const struct user_regset *regset,
2662 unsigned int pos, unsigned int count,
2663 const void *kbuf, const void __user *ubuf)
2664{
2665 struct regset_getset info = { .target = target, .regset = regset,
2666 .pos = pos, .count = count,
2667 .u.set = { .kbuf = kbuf, .ubuf = ubuf },
2668 .ret = 0 };
2669
2670 if (target == current)
2671 unw_init_running(call, &info);
2672 else {
2673 struct unw_frame_info ufi;
2674 memset(&ufi, 0, sizeof(ufi));
2675 unw_init_from_blocked_task(&ufi, target);
2676 (*call)(&ufi, &info);
2677 }
2678
2679 return info.ret;
2680}
2681
2682static int ia32_fpregs_get(struct task_struct *target,
2683 const struct user_regset *regset,
2684 unsigned int pos, unsigned int count,
2685 void *kbuf, void __user *ubuf)
2686{
2687 return do_regset_call(do_fpregs_get, target, regset, pos, count,
2688 kbuf, ubuf);
2689}
2690
2691static int ia32_fpregs_set(struct task_struct *target,
2692 const struct user_regset *regset,
2693 unsigned int pos, unsigned int count,
2694 const void *kbuf, const void __user *ubuf)
2695{
2696 return do_regset_call(do_fpregs_set, target, regset, pos, count,
2697 kbuf, ubuf);
2698}
2699
2700static int ia32_fpxregs_get(struct task_struct *target,
2701 const struct user_regset *regset,
2702 unsigned int pos, unsigned int count,
2703 void *kbuf, void __user *ubuf)
2704{
2705 return do_regset_call(do_fpxregs_get, target, regset, pos, count,
2706 kbuf, ubuf);
2707}
2708
2709static int ia32_fpxregs_set(struct task_struct *target,
2710 const struct user_regset *regset,
2711 unsigned int pos, unsigned int count,
2712 const void *kbuf, const void __user *ubuf)
2713{
2714 return do_regset_call(do_fpxregs_set, target, regset, pos, count,
2715 kbuf, ubuf);
2716}
2717
2718static int ia32_genregs_get(struct task_struct *target,
2719 const struct user_regset *regset,
2720 unsigned int pos, unsigned int count,
2721 void *kbuf, void __user *ubuf)
2722{
2723 if (kbuf) {
2724 u32 *kp = kbuf;
2725 while (count > 0) {
2726 *kp++ = getreg(target, pos);
2727 pos += 4;
2728 count -= 4;
2729 }
2730 } else {
2731 u32 __user *up = ubuf;
2732 while (count > 0) {
2733 if (__put_user(getreg(target, pos), up++))
2734 return -EFAULT;
2735 pos += 4;
2736 count -= 4;
2737 }
2738 }
2739 return 0;
2740}
2741
2742static int ia32_genregs_set(struct task_struct *target,
2743 const struct user_regset *regset,
2744 unsigned int pos, unsigned int count,
2745 const void *kbuf, const void __user *ubuf)
2746{
2747 int ret = 0;
2748
2749 if (kbuf) {
2750 const u32 *kp = kbuf;
2751 while (!ret && count > 0) {
2752 putreg(target, pos, *kp++);
2753 pos += 4;
2754 count -= 4;
2755 }
2756 } else {
2757 const u32 __user *up = ubuf;
2758 u32 val;
2759 while (!ret && count > 0) {
2760 ret = __get_user(val, up++);
2761 if (!ret)
2762 putreg(target, pos, val);
2763 pos += 4;
2764 count -= 4;
2765 }
2766 }
2767 return ret;
2768}
2769
2770static int ia32_tls_active(struct task_struct *target,
2771 const struct user_regset *regset)
2772{
2773 struct thread_struct *t = &target->thread;
2774 int n = GDT_ENTRY_TLS_ENTRIES;
2775 while (n > 0 && desc_empty(&t->tls_array[n -1]))
2776 --n;
2777 return n;
2778}
2779
2780static int ia32_tls_get(struct task_struct *target,
2781 const struct user_regset *regset, unsigned int pos,
2782 unsigned int count, void *kbuf, void __user *ubuf)
2783{
2784 const struct desc_struct *tls;
2785
2786 if (pos > GDT_ENTRY_TLS_ENTRIES * sizeof(struct ia32_user_desc) ||
2787 (pos % sizeof(struct ia32_user_desc)) != 0 ||
2788 (count % sizeof(struct ia32_user_desc)) != 0)
2789 return -EINVAL;
2790
2791 pos /= sizeof(struct ia32_user_desc);
2792 count /= sizeof(struct ia32_user_desc);
2793
2794 tls = &target->thread.tls_array[pos];
2795
2796 if (kbuf) {
2797 struct ia32_user_desc *info = kbuf;
2798 while (count-- > 0)
2799 fill_user_desc(info++, GDT_ENTRY_TLS_MIN + pos++,
2800 tls++);
2801 } else {
2802 struct ia32_user_desc __user *u_info = ubuf;
2803 while (count-- > 0) {
2804 struct ia32_user_desc info;
2805 fill_user_desc(&info, GDT_ENTRY_TLS_MIN + pos++, tls++);
2806 if (__copy_to_user(u_info++, &info, sizeof(info)))
2807 return -EFAULT;
2808 }
2809 }
2810
2811 return 0;
2812}
2813
2814static int ia32_tls_set(struct task_struct *target,
2815 const struct user_regset *regset, unsigned int pos,
2816 unsigned int count, const void *kbuf, const void __user *ubuf)
2817{
2818 struct ia32_user_desc infobuf[GDT_ENTRY_TLS_ENTRIES];
2819 const struct ia32_user_desc *info;
2820
2821 if (pos > GDT_ENTRY_TLS_ENTRIES * sizeof(struct ia32_user_desc) ||
2822 (pos % sizeof(struct ia32_user_desc)) != 0 ||
2823 (count % sizeof(struct ia32_user_desc)) != 0)
2824 return -EINVAL;
2825
2826 if (kbuf)
2827 info = kbuf;
2828 else if (__copy_from_user(infobuf, ubuf, count))
2829 return -EFAULT;
2830 else
2831 info = infobuf;
2832
2833 set_tls_desc(target,
2834 GDT_ENTRY_TLS_MIN + (pos / sizeof(struct ia32_user_desc)),
2835 info, count / sizeof(struct ia32_user_desc));
2836
2837 return 0;
2838}
2839
2840/*
2841 * This should match arch/i386/kernel/ptrace.c:native_regsets.
2842 * XXX ioperm? vm86?
2843 */
2844static const struct user_regset ia32_regsets[] = {
2845 {
2846 .core_note_type = NT_PRSTATUS,
2847 .n = sizeof(struct user_regs_struct32)/4,
2848 .size = 4, .align = 4,
2849 .get = ia32_genregs_get, .set = ia32_genregs_set
2850 },
2851 {
2852 .core_note_type = NT_PRFPREG,
2853 .n = sizeof(struct ia32_user_i387_struct) / 4,
2854 .size = 4, .align = 4,
2855 .get = ia32_fpregs_get, .set = ia32_fpregs_set
2856 },
2857 {
2858 .core_note_type = NT_PRXFPREG,
2859 .n = sizeof(struct ia32_user_fxsr_struct) / 4,
2860 .size = 4, .align = 4,
2861 .get = ia32_fpxregs_get, .set = ia32_fpxregs_set
2862 },
2863 {
2864 .core_note_type = NT_386_TLS,
2865 .n = GDT_ENTRY_TLS_ENTRIES,
2866 .bias = GDT_ENTRY_TLS_MIN,
2867 .size = sizeof(struct ia32_user_desc),
2868 .align = sizeof(struct ia32_user_desc),
2869 .active = ia32_tls_active,
2870 .get = ia32_tls_get, .set = ia32_tls_set,
2871 },
2872};
2873
2874const struct user_regset_view user_ia32_view = {
2875 .name = "i386", .e_machine = EM_386,
2876 .regsets = ia32_regsets, .n = ARRAY_SIZE(ia32_regsets)
2877};
2878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high,
2880 __u32 len_low, __u32 len_high, int advice)
2881{
2882 return sys_fadvise64_64(fd,
2883 (((u64)offset_high)<<32) | offset_low,
2884 (((u64)len_high)<<32) | len_low,
2885 advice);
2886}
2887
2888#ifdef NOTYET /* UNTESTED FOR IA64 FROM HERE DOWN */
2889
2890asmlinkage long sys32_setreuid(compat_uid_t ruid, compat_uid_t euid)
2891{
2892 uid_t sruid, seuid;
2893
2894 sruid = (ruid == (compat_uid_t)-1) ? ((uid_t)-1) : ((uid_t)ruid);
2895 seuid = (euid == (compat_uid_t)-1) ? ((uid_t)-1) : ((uid_t)euid);
2896 return sys_setreuid(sruid, seuid);
2897}
2898
2899asmlinkage long
2900sys32_setresuid(compat_uid_t ruid, compat_uid_t euid,
2901 compat_uid_t suid)
2902{
2903 uid_t sruid, seuid, ssuid;
2904
2905 sruid = (ruid == (compat_uid_t)-1) ? ((uid_t)-1) : ((uid_t)ruid);
2906 seuid = (euid == (compat_uid_t)-1) ? ((uid_t)-1) : ((uid_t)euid);
2907 ssuid = (suid == (compat_uid_t)-1) ? ((uid_t)-1) : ((uid_t)suid);
2908 return sys_setresuid(sruid, seuid, ssuid);
2909}
2910
2911asmlinkage long
2912sys32_setregid(compat_gid_t rgid, compat_gid_t egid)
2913{
2914 gid_t srgid, segid;
2915
2916 srgid = (rgid == (compat_gid_t)-1) ? ((gid_t)-1) : ((gid_t)rgid);
2917 segid = (egid == (compat_gid_t)-1) ? ((gid_t)-1) : ((gid_t)egid);
2918 return sys_setregid(srgid, segid);
2919}
2920
2921asmlinkage long
2922sys32_setresgid(compat_gid_t rgid, compat_gid_t egid,
2923 compat_gid_t sgid)
2924{
2925 gid_t srgid, segid, ssgid;
2926
2927 srgid = (rgid == (compat_gid_t)-1) ? ((gid_t)-1) : ((gid_t)rgid);
2928 segid = (egid == (compat_gid_t)-1) ? ((gid_t)-1) : ((gid_t)egid);
2929 ssgid = (sgid == (compat_gid_t)-1) ? ((gid_t)-1) : ((gid_t)sgid);
2930 return sys_setresgid(srgid, segid, ssgid);
2931}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932#endif /* NOTYET */