sys_parisc32.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*
  2. * sys_parisc32.c: Conversion between 32bit and 64bit native syscalls.
  3. *
  4. * Copyright (C) 2000-2001 Hewlett Packard Company
  5. * Copyright (C) 2000 John Marvin
  6. * Copyright (C) 2001 Matthew Wilcox
  7. *
  8. * These routines maintain argument size conversion between 32bit and 64bit
  9. * environment. Based heavily on sys_ia32.c and sys_sparc32.c.
  10. */
  11. #include <linux/compat.h>
  12. #include <linux/kernel.h>
  13. #include <linux/sched.h>
  14. #include <linux/fs.h>
  15. #include <linux/mm.h>
  16. #include <linux/file.h>
  17. #include <linux/signal.h>
  18. #include <linux/resource.h>
  19. #include <linux/times.h>
  20. #include <linux/time.h>
  21. #include <linux/smp.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/sem.h>
  24. #include <linux/msg.h>
  25. #include <linux/shm.h>
  26. #include <linux/slab.h>
  27. #include <linux/uio.h>
  28. #include <linux/ncp_fs.h>
  29. #include <linux/poll.h>
  30. #include <linux/personality.h>
  31. #include <linux/stat.h>
  32. #include <linux/highmem.h>
  33. #include <linux/highuid.h>
  34. #include <linux/mman.h>
  35. #include <linux/binfmts.h>
  36. #include <linux/namei.h>
  37. #include <linux/vfs.h>
  38. #include <linux/ptrace.h>
  39. #include <linux/swap.h>
  40. #include <linux/syscalls.h>
  41. #include <asm/types.h>
  42. #include <asm/uaccess.h>
  43. #include <asm/mmu_context.h>
  44. #include "sys32.h"
  45. #undef DEBUG
  46. #ifdef DEBUG
  47. #define DBG(x) printk x
  48. #else
  49. #define DBG(x)
  50. #endif
  51. /*
  52. * sys32_execve() executes a new program.
  53. */
  54. asmlinkage int sys32_execve(struct pt_regs *regs)
  55. {
  56. int error;
  57. char *filename;
  58. DBG(("sys32_execve(%p) r26 = 0x%lx\n", regs, regs->gr[26]));
  59. filename = getname((const char __user *) regs->gr[26]);
  60. error = PTR_ERR(filename);
  61. if (IS_ERR(filename))
  62. goto out;
  63. error = compat_do_execve(filename, compat_ptr(regs->gr[25]),
  64. compat_ptr(regs->gr[24]), regs);
  65. putname(filename);
  66. out:
  67. return error;
  68. }
  69. asmlinkage long sys32_unimplemented(int r26, int r25, int r24, int r23,
  70. int r22, int r21, int r20)
  71. {
  72. printk(KERN_ERR "%s(%d): Unimplemented 32 on 64 syscall #%d!\n",
  73. current->comm, current->pid, r20);
  74. return -ENOSYS;
  75. }
  76. asmlinkage long sys32_sched_rr_get_interval(pid_t pid,
  77. struct compat_timespec __user *interval)
  78. {
  79. struct timespec t;
  80. int ret;
  81. KERNEL_SYSCALL(ret, sys_sched_rr_get_interval, pid, (struct timespec __user *)&t);
  82. if (put_compat_timespec(&t, interval))
  83. return -EFAULT;
  84. return ret;
  85. }
  86. struct msgbuf32 {
  87. int mtype;
  88. char mtext[1];
  89. };
  90. asmlinkage long sys32_msgsnd(int msqid,
  91. struct msgbuf32 __user *umsgp32,
  92. size_t msgsz, int msgflg)
  93. {
  94. struct msgbuf *mb;
  95. struct msgbuf32 mb32;
  96. int err;
  97. if ((mb = kmalloc(msgsz + sizeof *mb + 4, GFP_KERNEL)) == NULL)
  98. return -ENOMEM;
  99. err = get_user(mb32.mtype, &umsgp32->mtype);
  100. mb->mtype = mb32.mtype;
  101. err |= copy_from_user(mb->mtext, &umsgp32->mtext, msgsz);
  102. if (err)
  103. err = -EFAULT;
  104. else
  105. KERNEL_SYSCALL(err, sys_msgsnd, msqid, (struct msgbuf __user *)mb, msgsz, msgflg);
  106. kfree(mb);
  107. return err;
  108. }
  109. asmlinkage long sys32_msgrcv(int msqid,
  110. struct msgbuf32 __user *umsgp32,
  111. size_t msgsz, long msgtyp, int msgflg)
  112. {
  113. struct msgbuf *mb;
  114. struct msgbuf32 mb32;
  115. int err, len;
  116. if ((mb = kmalloc(msgsz + sizeof *mb + 4, GFP_KERNEL)) == NULL)
  117. return -ENOMEM;
  118. KERNEL_SYSCALL(err, sys_msgrcv, msqid, (struct msgbuf __user *)mb, msgsz, msgtyp, msgflg);
  119. if (err >= 0) {
  120. len = err;
  121. mb32.mtype = mb->mtype;
  122. err = put_user(mb32.mtype, &umsgp32->mtype);
  123. err |= copy_to_user(&umsgp32->mtext, mb->mtext, len);
  124. if (err)
  125. err = -EFAULT;
  126. else
  127. err = len;
  128. }
  129. kfree(mb);
  130. return err;
  131. }
  132. asmlinkage int sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset, s32 count)
  133. {
  134. mm_segment_t old_fs = get_fs();
  135. int ret;
  136. off_t of;
  137. if (offset && get_user(of, offset))
  138. return -EFAULT;
  139. set_fs(KERNEL_DS);
  140. ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
  141. set_fs(old_fs);
  142. if (offset && put_user(of, offset))
  143. return -EFAULT;
  144. return ret;
  145. }
  146. asmlinkage int sys32_sendfile64(int out_fd, int in_fd, compat_loff_t __user *offset, s32 count)
  147. {
  148. mm_segment_t old_fs = get_fs();
  149. int ret;
  150. loff_t lof;
  151. if (offset && get_user(lof, offset))
  152. return -EFAULT;
  153. set_fs(KERNEL_DS);
  154. ret = sys_sendfile64(out_fd, in_fd, offset ? (loff_t __user *)&lof : NULL, count);
  155. set_fs(old_fs);
  156. if (offset && put_user(lof, offset))
  157. return -EFAULT;
  158. return ret;
  159. }
  160. /* lseek() needs a wrapper because 'offset' can be negative, but the top
  161. * half of the argument has been zeroed by syscall.S.
  162. */
  163. asmlinkage int sys32_lseek(unsigned int fd, int offset, unsigned int origin)
  164. {
  165. return sys_lseek(fd, offset, origin);
  166. }
  167. asmlinkage long sys32_semctl(int semid, int semnum, int cmd, union semun arg)
  168. {
  169. union semun u;
  170. if (cmd == SETVAL) {
  171. /* Ugh. arg is a union of int,ptr,ptr,ptr, so is 8 bytes.
  172. * The int should be in the first 4, but our argument
  173. * frobbing has left it in the last 4.
  174. */
  175. u.val = *((int *)&arg + 1);
  176. return sys_semctl (semid, semnum, cmd, u);
  177. }
  178. return sys_semctl (semid, semnum, cmd, arg);
  179. }
  180. long sys32_lookup_dcookie(u32 cookie_high, u32 cookie_low, char __user *buf,
  181. size_t len)
  182. {
  183. return sys_lookup_dcookie((u64)cookie_high << 32 | cookie_low,
  184. buf, len);
  185. }
  186. asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo,
  187. u32 lenhi, u32 lenlo)
  188. {
  189. return sys_fallocate(fd, mode, ((loff_t)offhi << 32) | offlo,
  190. ((loff_t)lenhi << 32) | lenlo);
  191. }