linux32.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. /*
  2. * Conversion between 32-bit and 64-bit native system calls.
  3. *
  4. * Copyright (C) 2000 Silicon Graphics, Inc.
  5. * Written by Ulf Carlsson (ulfc@engr.sgi.com)
  6. * sys32_execve from ia64/ia32 code, Feb 2000, Kanoj Sarcar (kanoj@sgi.com)
  7. */
  8. #include <linux/compiler.h>
  9. #include <linux/mm.h>
  10. #include <linux/errno.h>
  11. #include <linux/file.h>
  12. #include <linux/highuid.h>
  13. #include <linux/resource.h>
  14. #include <linux/highmem.h>
  15. #include <linux/time.h>
  16. #include <linux/times.h>
  17. #include <linux/poll.h>
  18. #include <linux/skbuff.h>
  19. #include <linux/filter.h>
  20. #include <linux/shm.h>
  21. #include <linux/sem.h>
  22. #include <linux/msg.h>
  23. #include <linux/icmpv6.h>
  24. #include <linux/syscalls.h>
  25. #include <linux/sysctl.h>
  26. #include <linux/utime.h>
  27. #include <linux/utsname.h>
  28. #include <linux/personality.h>
  29. #include <linux/dnotify.h>
  30. #include <linux/module.h>
  31. #include <linux/binfmts.h>
  32. #include <linux/security.h>
  33. #include <linux/compat.h>
  34. #include <linux/vfs.h>
  35. #include <linux/ipc.h>
  36. #include <linux/slab.h>
  37. #include <net/sock.h>
  38. #include <net/scm.h>
  39. #include <asm/compat-signal.h>
  40. #include <asm/sim.h>
  41. #include <asm/uaccess.h>
  42. #include <asm/mmu_context.h>
  43. #include <asm/mman.h>
  44. /* Use this to get at 32-bit user passed pointers. */
  45. /* A() macro should be used for places where you e.g.
  46. have some internal variable u32 and just want to get
  47. rid of a compiler warning. AA() has to be used in
  48. places where you want to convert a function argument
  49. to 32bit pointer or when you e.g. access pt_regs
  50. structure and want to consider 32bit registers only.
  51. */
  52. #define A(__x) ((unsigned long)(__x))
  53. #define AA(__x) ((unsigned long)((int)__x))
  54. #ifdef __MIPSEB__
  55. #define merge_64(r1, r2) ((((r1) & 0xffffffffUL) << 32) + ((r2) & 0xffffffffUL))
  56. #endif
  57. #ifdef __MIPSEL__
  58. #define merge_64(r1, r2) ((((r2) & 0xffffffffUL) << 32) + ((r1) & 0xffffffffUL))
  59. #endif
  60. SYSCALL_DEFINE6(32_mmap2, unsigned long, addr, unsigned long, len,
  61. unsigned long, prot, unsigned long, flags, unsigned long, fd,
  62. unsigned long, pgoff)
  63. {
  64. unsigned long error;
  65. error = -EINVAL;
  66. if (pgoff & (~PAGE_MASK >> 12))
  67. goto out;
  68. error = sys_mmap_pgoff(addr, len, prot, flags, fd,
  69. pgoff >> (PAGE_SHIFT-12));
  70. out:
  71. return error;
  72. }
  73. /*
  74. * sys_execve() executes a new program.
  75. */
  76. asmlinkage int sys32_execve(nabi_no_regargs struct pt_regs regs)
  77. {
  78. int error;
  79. char * filename;
  80. filename = getname(compat_ptr(regs.regs[4]));
  81. error = PTR_ERR(filename);
  82. if (IS_ERR(filename))
  83. goto out;
  84. error = compat_do_execve(filename, compat_ptr(regs.regs[5]),
  85. compat_ptr(regs.regs[6]), &regs);
  86. putname(filename);
  87. out:
  88. return error;
  89. }
  90. #define RLIM_INFINITY32 0x7fffffff
  91. #define RESOURCE32(x) ((x > RLIM_INFINITY32) ? RLIM_INFINITY32 : x)
  92. struct rlimit32 {
  93. int rlim_cur;
  94. int rlim_max;
  95. };
  96. SYSCALL_DEFINE4(32_truncate64, const char __user *, path,
  97. unsigned long, __dummy, unsigned long, a2, unsigned long, a3)
  98. {
  99. return sys_truncate(path, merge_64(a2, a3));
  100. }
  101. SYSCALL_DEFINE4(32_ftruncate64, unsigned long, fd, unsigned long, __dummy,
  102. unsigned long, a2, unsigned long, a3)
  103. {
  104. return sys_ftruncate(fd, merge_64(a2, a3));
  105. }
  106. SYSCALL_DEFINE5(32_llseek, unsigned int, fd, unsigned int, offset_high,
  107. unsigned int, offset_low, loff_t __user *, result,
  108. unsigned int, origin)
  109. {
  110. return sys_llseek(fd, offset_high, offset_low, result, origin);
  111. }
  112. /* From the Single Unix Spec: pread & pwrite act like lseek to pos + op +
  113. lseek back to original location. They fail just like lseek does on
  114. non-seekable files. */
  115. SYSCALL_DEFINE6(32_pread, unsigned long, fd, char __user *, buf, size_t, count,
  116. unsigned long, unused, unsigned long, a4, unsigned long, a5)
  117. {
  118. return sys_pread64(fd, buf, count, merge_64(a4, a5));
  119. }
  120. SYSCALL_DEFINE6(32_pwrite, unsigned int, fd, const char __user *, buf,
  121. size_t, count, u32, unused, u64, a4, u64, a5)
  122. {
  123. return sys_pwrite64(fd, buf, count, merge_64(a4, a5));
  124. }
  125. SYSCALL_DEFINE2(32_sched_rr_get_interval, compat_pid_t, pid,
  126. struct compat_timespec __user *, interval)
  127. {
  128. struct timespec t;
  129. int ret;
  130. mm_segment_t old_fs = get_fs();
  131. set_fs(KERNEL_DS);
  132. ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
  133. set_fs(old_fs);
  134. if (put_user (t.tv_sec, &interval->tv_sec) ||
  135. __put_user(t.tv_nsec, &interval->tv_nsec))
  136. return -EFAULT;
  137. return ret;
  138. }
  139. #ifdef CONFIG_SYSVIPC
  140. SYSCALL_DEFINE6(32_ipc, u32, call, long, first, long, second, long, third,
  141. unsigned long, ptr, unsigned long, fifth)
  142. {
  143. int version, err;
  144. version = call >> 16; /* hack for backward compatibility */
  145. call &= 0xffff;
  146. switch (call) {
  147. case SEMOP:
  148. /* struct sembuf is the same on 32 and 64bit :)) */
  149. err = sys_semtimedop(first, compat_ptr(ptr), second, NULL);
  150. break;
  151. case SEMTIMEDOP:
  152. err = compat_sys_semtimedop(first, compat_ptr(ptr), second,
  153. compat_ptr(fifth));
  154. break;
  155. case SEMGET:
  156. err = sys_semget(first, second, third);
  157. break;
  158. case SEMCTL:
  159. err = compat_sys_semctl(first, second, third, compat_ptr(ptr));
  160. break;
  161. case MSGSND:
  162. err = compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
  163. break;
  164. case MSGRCV:
  165. err = compat_sys_msgrcv(first, second, fifth, third,
  166. version, compat_ptr(ptr));
  167. break;
  168. case MSGGET:
  169. err = sys_msgget((key_t) first, second);
  170. break;
  171. case MSGCTL:
  172. err = compat_sys_msgctl(first, second, compat_ptr(ptr));
  173. break;
  174. case SHMAT:
  175. err = compat_sys_shmat(first, second, third, version,
  176. compat_ptr(ptr));
  177. break;
  178. case SHMDT:
  179. err = sys_shmdt(compat_ptr(ptr));
  180. break;
  181. case SHMGET:
  182. err = sys_shmget(first, (unsigned)second, third);
  183. break;
  184. case SHMCTL:
  185. err = compat_sys_shmctl(first, second, compat_ptr(ptr));
  186. break;
  187. default:
  188. err = -EINVAL;
  189. break;
  190. }
  191. return err;
  192. }
  193. #else
  194. SYSCALL_DEFINE6(32_ipc, u32, call, int, first, int, second, int, third,
  195. u32, ptr, u32, fifth)
  196. {
  197. return -ENOSYS;
  198. }
  199. #endif /* CONFIG_SYSVIPC */
  200. #ifdef CONFIG_MIPS32_N32
  201. SYSCALL_DEFINE4(n32_semctl, int, semid, int, semnum, int, cmd, u32, arg)
  202. {
  203. /* compat_sys_semctl expects a pointer to union semun */
  204. u32 __user *uptr = compat_alloc_user_space(sizeof(u32));
  205. if (put_user(arg, uptr))
  206. return -EFAULT;
  207. return compat_sys_semctl(semid, semnum, cmd, uptr);
  208. }
  209. SYSCALL_DEFINE4(n32_msgsnd, int, msqid, u32, msgp, unsigned int, msgsz,
  210. int, msgflg)
  211. {
  212. return compat_sys_msgsnd(msqid, msgsz, msgflg, compat_ptr(msgp));
  213. }
  214. SYSCALL_DEFINE5(n32_msgrcv, int, msqid, u32, msgp, size_t, msgsz,
  215. int, msgtyp, int, msgflg)
  216. {
  217. return compat_sys_msgrcv(msqid, msgsz, msgtyp, msgflg, IPC_64,
  218. compat_ptr(msgp));
  219. }
  220. #endif
  221. SYSCALL_DEFINE1(32_personality, unsigned long, personality)
  222. {
  223. unsigned int p = personality & 0xffffffff;
  224. int ret;
  225. if (personality(current->personality) == PER_LINUX32 &&
  226. personality(p) == PER_LINUX)
  227. p = (p & ~PER_MASK) | PER_LINUX32;
  228. ret = sys_personality(p);
  229. if (ret != -1 && personality(ret) == PER_LINUX32)
  230. ret = (ret & ~PER_MASK) | PER_LINUX;
  231. return ret;
  232. }
  233. SYSCALL_DEFINE4(32_sendfile, long, out_fd, long, in_fd,
  234. compat_off_t __user *, offset, s32, count)
  235. {
  236. mm_segment_t old_fs = get_fs();
  237. int ret;
  238. off_t of;
  239. if (offset && get_user(of, offset))
  240. return -EFAULT;
  241. set_fs(KERNEL_DS);
  242. ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
  243. set_fs(old_fs);
  244. if (offset && put_user(of, offset))
  245. return -EFAULT;
  246. return ret;
  247. }
  248. asmlinkage ssize_t sys32_readahead(int fd, u32 pad0, u64 a2, u64 a3,
  249. size_t count)
  250. {
  251. return sys_readahead(fd, merge_64(a2, a3), count);
  252. }
  253. asmlinkage long sys32_sync_file_range(int fd, int __pad,
  254. unsigned long a2, unsigned long a3,
  255. unsigned long a4, unsigned long a5,
  256. int flags)
  257. {
  258. return sys_sync_file_range(fd,
  259. merge_64(a2, a3), merge_64(a4, a5),
  260. flags);
  261. }
  262. asmlinkage long sys32_fadvise64_64(int fd, int __pad,
  263. unsigned long a2, unsigned long a3,
  264. unsigned long a4, unsigned long a5,
  265. int flags)
  266. {
  267. return sys_fadvise64_64(fd,
  268. merge_64(a2, a3), merge_64(a4, a5),
  269. flags);
  270. }
  271. asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_a2,
  272. unsigned offset_a3, unsigned len_a4, unsigned len_a5)
  273. {
  274. return sys_fallocate(fd, mode, merge_64(offset_a2, offset_a3),
  275. merge_64(len_a4, len_a5));
  276. }
  277. save_static_function(sys32_clone);
  278. static int noinline __used
  279. _sys32_clone(nabi_no_regargs struct pt_regs regs)
  280. {
  281. unsigned long clone_flags;
  282. unsigned long newsp;
  283. int __user *parent_tidptr, *child_tidptr;
  284. clone_flags = regs.regs[4];
  285. newsp = regs.regs[5];
  286. if (!newsp)
  287. newsp = regs.regs[29];
  288. parent_tidptr = (int __user *) regs.regs[6];
  289. /* Use __dummy4 instead of getting it off the stack, so that
  290. syscall() works. */
  291. child_tidptr = (int __user *) __dummy4;
  292. return do_fork(clone_flags, newsp, &regs, 0,
  293. parent_tidptr, child_tidptr);
  294. }
  295. asmlinkage long sys32_lookup_dcookie(u32 a0, u32 a1, char __user *buf,
  296. size_t len)
  297. {
  298. return sys_lookup_dcookie(merge_64(a0, a1), buf, len);
  299. }
  300. SYSCALL_DEFINE6(32_fanotify_mark, int, fanotify_fd, unsigned int, flags,
  301. u64, a3, u64, a4, int, dfd, const char __user *, pathname)
  302. {
  303. return sys_fanotify_mark(fanotify_fd, flags, merge_64(a3, a4),
  304. dfd, pathname);
  305. }