sys_ia32.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * sys_ia32.c: Conversion between 32bit and 64bit native syscalls. Based on
  4. * sys_sparc32
  5. *
  6. * Copyright (C) 2000 VA Linux Co
  7. * Copyright (C) 2000 Don Dugger <n0ano@valinux.com>
  8. * Copyright (C) 1999 Arun Sharma <arun.sharma@intel.com>
  9. * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  10. * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
  11. * Copyright (C) 2000 Hewlett-Packard Co.
  12. * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com>
  13. * Copyright (C) 2000,2001,2002 Andi Kleen, SuSE Labs (x86-64 port)
  14. *
  15. * These routines maintain argument size conversion between 32bit and 64bit
  16. * environment. In 2.5 most of this should be moved to a generic directory.
  17. *
  18. * This file assumes that there is a hole at the end of user address space.
  19. *
  20. * Some of the functions are LE specific currently. These are
  21. * hopefully all marked. This should be fixed.
  22. */
  23. #include <linux/kernel.h>
  24. #include <linux/sched.h>
  25. #include <linux/fs.h>
  26. #include <linux/file.h>
  27. #include <linux/signal.h>
  28. #include <linux/syscalls.h>
  29. #include <linux/times.h>
  30. #include <linux/utsname.h>
  31. #include <linux/mm.h>
  32. #include <linux/uio.h>
  33. #include <linux/poll.h>
  34. #include <linux/personality.h>
  35. #include <linux/stat.h>
  36. #include <linux/rwsem.h>
  37. #include <linux/compat.h>
  38. #include <linux/vfs.h>
  39. #include <linux/ptrace.h>
  40. #include <linux/highuid.h>
  41. #include <linux/sysctl.h>
  42. #include <linux/slab.h>
  43. #include <linux/sched/task.h>
  44. #include <asm/mman.h>
  45. #include <asm/types.h>
  46. #include <linux/uaccess.h>
  47. #include <linux/atomic.h>
  48. #include <asm/vgtod.h>
  49. #include <asm/ia32.h>
  50. #define AA(__x) ((unsigned long)(__x))
  51. COMPAT_SYSCALL_DEFINE3(x86_truncate64, const char __user *, filename,
  52. unsigned long, offset_low, unsigned long, offset_high)
  53. {
  54. return ksys_truncate(filename,
  55. ((loff_t) offset_high << 32) | offset_low);
  56. }
  57. COMPAT_SYSCALL_DEFINE3(x86_ftruncate64, unsigned int, fd,
  58. unsigned long, offset_low, unsigned long, offset_high)
  59. {
  60. return ksys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low);
  61. }
  62. /*
  63. * Another set for IA32/LFS -- x86_64 struct stat is different due to
  64. * support for 64bit inode numbers.
  65. */
  66. static int cp_stat64(struct stat64 __user *ubuf, struct kstat *stat)
  67. {
  68. typeof(ubuf->st_uid) uid = 0;
  69. typeof(ubuf->st_gid) gid = 0;
  70. SET_UID(uid, from_kuid_munged(current_user_ns(), stat->uid));
  71. SET_GID(gid, from_kgid_munged(current_user_ns(), stat->gid));
  72. if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) ||
  73. __put_user(huge_encode_dev(stat->dev), &ubuf->st_dev) ||
  74. __put_user(stat->ino, &ubuf->__st_ino) ||
  75. __put_user(stat->ino, &ubuf->st_ino) ||
  76. __put_user(stat->mode, &ubuf->st_mode) ||
  77. __put_user(stat->nlink, &ubuf->st_nlink) ||
  78. __put_user(uid, &ubuf->st_uid) ||
  79. __put_user(gid, &ubuf->st_gid) ||
  80. __put_user(huge_encode_dev(stat->rdev), &ubuf->st_rdev) ||
  81. __put_user(stat->size, &ubuf->st_size) ||
  82. __put_user(stat->atime.tv_sec, &ubuf->st_atime) ||
  83. __put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec) ||
  84. __put_user(stat->mtime.tv_sec, &ubuf->st_mtime) ||
  85. __put_user(stat->mtime.tv_nsec, &ubuf->st_mtime_nsec) ||
  86. __put_user(stat->ctime.tv_sec, &ubuf->st_ctime) ||
  87. __put_user(stat->ctime.tv_nsec, &ubuf->st_ctime_nsec) ||
  88. __put_user(stat->blksize, &ubuf->st_blksize) ||
  89. __put_user(stat->blocks, &ubuf->st_blocks))
  90. return -EFAULT;
  91. return 0;
  92. }
  93. COMPAT_SYSCALL_DEFINE2(x86_stat64, const char __user *, filename,
  94. struct stat64 __user *, statbuf)
  95. {
  96. struct kstat stat;
  97. int ret = vfs_stat(filename, &stat);
  98. if (!ret)
  99. ret = cp_stat64(statbuf, &stat);
  100. return ret;
  101. }
  102. COMPAT_SYSCALL_DEFINE2(x86_lstat64, const char __user *, filename,
  103. struct stat64 __user *, statbuf)
  104. {
  105. struct kstat stat;
  106. int ret = vfs_lstat(filename, &stat);
  107. if (!ret)
  108. ret = cp_stat64(statbuf, &stat);
  109. return ret;
  110. }
  111. COMPAT_SYSCALL_DEFINE2(x86_fstat64, unsigned int, fd,
  112. struct stat64 __user *, statbuf)
  113. {
  114. struct kstat stat;
  115. int ret = vfs_fstat(fd, &stat);
  116. if (!ret)
  117. ret = cp_stat64(statbuf, &stat);
  118. return ret;
  119. }
  120. COMPAT_SYSCALL_DEFINE4(x86_fstatat, unsigned int, dfd,
  121. const char __user *, filename,
  122. struct stat64 __user *, statbuf, int, flag)
  123. {
  124. struct kstat stat;
  125. int error;
  126. error = vfs_fstatat(dfd, filename, &stat, flag);
  127. if (error)
  128. return error;
  129. return cp_stat64(statbuf, &stat);
  130. }
  131. /*
  132. * Linux/i386 didn't use to be able to handle more than
  133. * 4 system call parameters, so these system calls used a memory
  134. * block for parameter passing..
  135. */
  136. struct mmap_arg_struct32 {
  137. unsigned int addr;
  138. unsigned int len;
  139. unsigned int prot;
  140. unsigned int flags;
  141. unsigned int fd;
  142. unsigned int offset;
  143. };
  144. COMPAT_SYSCALL_DEFINE1(x86_mmap, struct mmap_arg_struct32 __user *, arg)
  145. {
  146. struct mmap_arg_struct32 a;
  147. if (copy_from_user(&a, arg, sizeof(a)))
  148. return -EFAULT;
  149. if (a.offset & ~PAGE_MASK)
  150. return -EINVAL;
  151. return ksys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
  152. a.offset>>PAGE_SHIFT);
  153. }
  154. /* warning: next two assume little endian */
  155. COMPAT_SYSCALL_DEFINE5(x86_pread, unsigned int, fd, char __user *, ubuf,
  156. u32, count, u32, poslo, u32, poshi)
  157. {
  158. return ksys_pread64(fd, ubuf, count,
  159. ((loff_t)AA(poshi) << 32) | AA(poslo));
  160. }
  161. COMPAT_SYSCALL_DEFINE5(x86_pwrite, unsigned int, fd, const char __user *, ubuf,
  162. u32, count, u32, poslo, u32, poshi)
  163. {
  164. return ksys_pwrite64(fd, ubuf, count,
  165. ((loff_t)AA(poshi) << 32) | AA(poslo));
  166. }
  167. /*
  168. * Some system calls that need sign extended arguments. This could be
  169. * done by a generic wrapper.
  170. */
  171. COMPAT_SYSCALL_DEFINE6(x86_fadvise64_64, int, fd, __u32, offset_low,
  172. __u32, offset_high, __u32, len_low, __u32, len_high,
  173. int, advice)
  174. {
  175. return ksys_fadvise64_64(fd,
  176. (((u64)offset_high)<<32) | offset_low,
  177. (((u64)len_high)<<32) | len_low,
  178. advice);
  179. }
  180. COMPAT_SYSCALL_DEFINE4(x86_readahead, int, fd, unsigned int, off_lo,
  181. unsigned int, off_hi, size_t, count)
  182. {
  183. return ksys_readahead(fd, ((u64)off_hi << 32) | off_lo, count);
  184. }
  185. COMPAT_SYSCALL_DEFINE6(x86_sync_file_range, int, fd, unsigned int, off_low,
  186. unsigned int, off_hi, unsigned int, n_low,
  187. unsigned int, n_hi, int, flags)
  188. {
  189. return ksys_sync_file_range(fd,
  190. ((u64)off_hi << 32) | off_low,
  191. ((u64)n_hi << 32) | n_low, flags);
  192. }
  193. COMPAT_SYSCALL_DEFINE5(x86_fadvise64, int, fd, unsigned int, offset_lo,
  194. unsigned int, offset_hi, size_t, len, int, advice)
  195. {
  196. return ksys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
  197. len, advice);
  198. }
  199. COMPAT_SYSCALL_DEFINE6(x86_fallocate, int, fd, int, mode,
  200. unsigned int, offset_lo, unsigned int, offset_hi,
  201. unsigned int, len_lo, unsigned int, len_hi)
  202. {
  203. return ksys_fallocate(fd, mode, ((u64)offset_hi << 32) | offset_lo,
  204. ((u64)len_hi << 32) | len_lo);
  205. }
  206. /*
  207. * The 32-bit clone ABI is CONFIG_CLONE_BACKWARDS
  208. */
  209. COMPAT_SYSCALL_DEFINE5(x86_clone, unsigned long, clone_flags,
  210. unsigned long, newsp, int __user *, parent_tidptr,
  211. unsigned long, tls_val, int __user *, child_tidptr)
  212. {
  213. return _do_fork(clone_flags, newsp, 0, parent_tidptr, child_tidptr,
  214. tls_val);
  215. }