linux32.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  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/smp_lock.h>
  13. #include <linux/highuid.h>
  14. #include <linux/dirent.h>
  15. #include <linux/resource.h>
  16. #include <linux/highmem.h>
  17. #include <linux/time.h>
  18. #include <linux/times.h>
  19. #include <linux/poll.h>
  20. #include <linux/slab.h>
  21. #include <linux/skbuff.h>
  22. #include <linux/filter.h>
  23. #include <linux/shm.h>
  24. #include <linux/sem.h>
  25. #include <linux/msg.h>
  26. #include <linux/icmpv6.h>
  27. #include <linux/syscalls.h>
  28. #include <linux/sysctl.h>
  29. #include <linux/utime.h>
  30. #include <linux/utsname.h>
  31. #include <linux/personality.h>
  32. #include <linux/dnotify.h>
  33. #include <linux/module.h>
  34. #include <linux/binfmts.h>
  35. #include <linux/security.h>
  36. #include <linux/compat.h>
  37. #include <linux/vfs.h>
  38. #include <linux/ipc.h>
  39. #include <net/sock.h>
  40. #include <net/scm.h>
  41. #include <asm/compat-signal.h>
  42. #include <asm/sim.h>
  43. #include <asm/uaccess.h>
  44. #include <asm/mmu_context.h>
  45. #include <asm/mman.h>
  46. /* Use this to get at 32-bit user passed pointers. */
  47. /* A() macro should be used for places where you e.g.
  48. have some internal variable u32 and just want to get
  49. rid of a compiler warning. AA() has to be used in
  50. places where you want to convert a function argument
  51. to 32bit pointer or when you e.g. access pt_regs
  52. structure and want to consider 32bit registers only.
  53. */
  54. #define A(__x) ((unsigned long)(__x))
  55. #define AA(__x) ((unsigned long)((int)__x))
  56. #ifdef __MIPSEB__
  57. #define merge_64(r1, r2) ((((r1) & 0xffffffffUL) << 32) + ((r2) & 0xffffffffUL))
  58. #endif
  59. #ifdef __MIPSEL__
  60. #define merge_64(r1, r2) ((((r2) & 0xffffffffUL) << 32) + ((r1) & 0xffffffffUL))
  61. #endif
  62. /*
  63. * Revalidate the inode. This is required for proper NFS attribute caching.
  64. */
  65. int cp_compat_stat(struct kstat *stat, struct compat_stat __user *statbuf)
  66. {
  67. struct compat_stat tmp;
  68. if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
  69. return -EOVERFLOW;
  70. memset(&tmp, 0, sizeof(tmp));
  71. tmp.st_dev = new_encode_dev(stat->dev);
  72. tmp.st_ino = stat->ino;
  73. if (sizeof(tmp.st_ino) < sizeof(stat->ino) && tmp.st_ino != stat->ino)
  74. return -EOVERFLOW;
  75. tmp.st_mode = stat->mode;
  76. tmp.st_nlink = stat->nlink;
  77. SET_UID(tmp.st_uid, stat->uid);
  78. SET_GID(tmp.st_gid, stat->gid);
  79. tmp.st_rdev = new_encode_dev(stat->rdev);
  80. tmp.st_size = stat->size;
  81. tmp.st_atime = stat->atime.tv_sec;
  82. tmp.st_mtime = stat->mtime.tv_sec;
  83. tmp.st_ctime = stat->ctime.tv_sec;
  84. #ifdef STAT_HAVE_NSEC
  85. tmp.st_atime_nsec = stat->atime.tv_nsec;
  86. tmp.st_mtime_nsec = stat->mtime.tv_nsec;
  87. tmp.st_ctime_nsec = stat->ctime.tv_nsec;
  88. #endif
  89. tmp.st_blocks = stat->blocks;
  90. tmp.st_blksize = stat->blksize;
  91. return copy_to_user(statbuf, &tmp, sizeof(tmp)) ? -EFAULT : 0;
  92. }
  93. asmlinkage unsigned long
  94. sys32_mmap2(unsigned long addr, unsigned long len, unsigned long prot,
  95. unsigned long flags, unsigned long fd, unsigned long pgoff)
  96. {
  97. struct file * file = NULL;
  98. unsigned long error;
  99. error = -EINVAL;
  100. if (pgoff & (~PAGE_MASK >> 12))
  101. goto out;
  102. pgoff >>= PAGE_SHIFT-12;
  103. if (!(flags & MAP_ANONYMOUS)) {
  104. error = -EBADF;
  105. file = fget(fd);
  106. if (!file)
  107. goto out;
  108. }
  109. flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
  110. down_write(&current->mm->mmap_sem);
  111. error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
  112. up_write(&current->mm->mmap_sem);
  113. if (file)
  114. fput(file);
  115. out:
  116. return error;
  117. }
  118. asmlinkage int sys_truncate64(const char __user *path, unsigned int high,
  119. unsigned int low)
  120. {
  121. if ((int)high < 0)
  122. return -EINVAL;
  123. return sys_truncate(path, ((long) high << 32) | low);
  124. }
  125. asmlinkage int sys_ftruncate64(unsigned int fd, unsigned int high,
  126. unsigned int low)
  127. {
  128. if ((int)high < 0)
  129. return -EINVAL;
  130. return sys_ftruncate(fd, ((long) high << 32) | low);
  131. }
  132. /*
  133. * sys_execve() executes a new program.
  134. */
  135. asmlinkage int sys32_execve(nabi_no_regargs struct pt_regs regs)
  136. {
  137. int error;
  138. char * filename;
  139. filename = getname(compat_ptr(regs.regs[4]));
  140. error = PTR_ERR(filename);
  141. if (IS_ERR(filename))
  142. goto out;
  143. error = compat_do_execve(filename, compat_ptr(regs.regs[5]),
  144. compat_ptr(regs.regs[6]), &regs);
  145. putname(filename);
  146. out:
  147. return error;
  148. }
  149. #define RLIM_INFINITY32 0x7fffffff
  150. #define RESOURCE32(x) ((x > RLIM_INFINITY32) ? RLIM_INFINITY32 : x)
  151. struct rlimit32 {
  152. int rlim_cur;
  153. int rlim_max;
  154. };
  155. #ifdef __MIPSEB__
  156. asmlinkage long sys32_truncate64(const char __user * path, unsigned long __dummy,
  157. int length_hi, int length_lo)
  158. #endif
  159. #ifdef __MIPSEL__
  160. asmlinkage long sys32_truncate64(const char __user * path, unsigned long __dummy,
  161. int length_lo, int length_hi)
  162. #endif
  163. {
  164. loff_t length;
  165. length = ((unsigned long) length_hi << 32) | (unsigned int) length_lo;
  166. return sys_truncate(path, length);
  167. }
  168. #ifdef __MIPSEB__
  169. asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long __dummy,
  170. int length_hi, int length_lo)
  171. #endif
  172. #ifdef __MIPSEL__
  173. asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long __dummy,
  174. int length_lo, int length_hi)
  175. #endif
  176. {
  177. loff_t length;
  178. length = ((unsigned long) length_hi << 32) | (unsigned int) length_lo;
  179. return sys_ftruncate(fd, length);
  180. }
  181. static inline long
  182. get_tv32(struct timeval *o, struct compat_timeval __user *i)
  183. {
  184. return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
  185. (__get_user(o->tv_sec, &i->tv_sec) |
  186. __get_user(o->tv_usec, &i->tv_usec)));
  187. }
  188. static inline long
  189. put_tv32(struct compat_timeval __user *o, struct timeval *i)
  190. {
  191. return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
  192. (__put_user(i->tv_sec, &o->tv_sec) |
  193. __put_user(i->tv_usec, &o->tv_usec)));
  194. }
  195. extern struct timezone sys_tz;
  196. asmlinkage int
  197. sys32_gettimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
  198. {
  199. if (tv) {
  200. struct timeval ktv;
  201. do_gettimeofday(&ktv);
  202. if (put_tv32(tv, &ktv))
  203. return -EFAULT;
  204. }
  205. if (tz) {
  206. if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
  207. return -EFAULT;
  208. }
  209. return 0;
  210. }
  211. static inline long get_ts32(struct timespec *o, struct compat_timeval __user *i)
  212. {
  213. long usec;
  214. if (!access_ok(VERIFY_READ, i, sizeof(*i)))
  215. return -EFAULT;
  216. if (__get_user(o->tv_sec, &i->tv_sec))
  217. return -EFAULT;
  218. if (__get_user(usec, &i->tv_usec))
  219. return -EFAULT;
  220. o->tv_nsec = usec * 1000;
  221. return 0;
  222. }
  223. asmlinkage int
  224. sys32_settimeofday(struct compat_timeval __user *tv, struct timezone __user *tz)
  225. {
  226. struct timespec kts;
  227. struct timezone ktz;
  228. if (tv) {
  229. if (get_ts32(&kts, tv))
  230. return -EFAULT;
  231. }
  232. if (tz) {
  233. if (copy_from_user(&ktz, tz, sizeof(ktz)))
  234. return -EFAULT;
  235. }
  236. return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
  237. }
  238. asmlinkage int sys32_llseek(unsigned int fd, unsigned int offset_high,
  239. unsigned int offset_low, loff_t __user * result,
  240. unsigned int origin)
  241. {
  242. return sys_llseek(fd, offset_high, offset_low, result, origin);
  243. }
  244. /* From the Single Unix Spec: pread & pwrite act like lseek to pos + op +
  245. lseek back to original location. They fail just like lseek does on
  246. non-seekable files. */
  247. asmlinkage ssize_t sys32_pread(unsigned int fd, char __user * buf,
  248. size_t count, u32 unused, u64 a4, u64 a5)
  249. {
  250. return sys_pread64(fd, buf, count, merge_64(a4, a5));
  251. }
  252. asmlinkage ssize_t sys32_pwrite(unsigned int fd, const char __user * buf,
  253. size_t count, u32 unused, u64 a4, u64 a5)
  254. {
  255. return sys_pwrite64(fd, buf, count, merge_64(a4, a5));
  256. }
  257. asmlinkage int sys32_sched_rr_get_interval(compat_pid_t pid,
  258. struct compat_timespec __user *interval)
  259. {
  260. struct timespec t;
  261. int ret;
  262. mm_segment_t old_fs = get_fs();
  263. set_fs(KERNEL_DS);
  264. ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
  265. set_fs(old_fs);
  266. if (put_user (t.tv_sec, &interval->tv_sec) ||
  267. __put_user(t.tv_nsec, &interval->tv_nsec))
  268. return -EFAULT;
  269. return ret;
  270. }
  271. #ifdef CONFIG_SYSVIPC
  272. asmlinkage long
  273. sys32_ipc(u32 call, int first, int second, int third, u32 ptr, u32 fifth)
  274. {
  275. int version, err;
  276. version = call >> 16; /* hack for backward compatibility */
  277. call &= 0xffff;
  278. switch (call) {
  279. case SEMOP:
  280. /* struct sembuf is the same on 32 and 64bit :)) */
  281. err = sys_semtimedop(first, compat_ptr(ptr), second, NULL);
  282. break;
  283. case SEMTIMEDOP:
  284. err = compat_sys_semtimedop(first, compat_ptr(ptr), second,
  285. compat_ptr(fifth));
  286. break;
  287. case SEMGET:
  288. err = sys_semget(first, second, third);
  289. break;
  290. case SEMCTL:
  291. err = compat_sys_semctl(first, second, third, compat_ptr(ptr));
  292. break;
  293. case MSGSND:
  294. err = compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
  295. break;
  296. case MSGRCV:
  297. err = compat_sys_msgrcv(first, second, fifth, third,
  298. version, compat_ptr(ptr));
  299. break;
  300. case MSGGET:
  301. err = sys_msgget((key_t) first, second);
  302. break;
  303. case MSGCTL:
  304. err = compat_sys_msgctl(first, second, compat_ptr(ptr));
  305. break;
  306. case SHMAT:
  307. err = compat_sys_shmat(first, second, third, version,
  308. compat_ptr(ptr));
  309. break;
  310. case SHMDT:
  311. err = sys_shmdt(compat_ptr(ptr));
  312. break;
  313. case SHMGET:
  314. err = sys_shmget(first, (unsigned)second, third);
  315. break;
  316. case SHMCTL:
  317. err = compat_sys_shmctl(first, second, compat_ptr(ptr));
  318. break;
  319. default:
  320. err = -EINVAL;
  321. break;
  322. }
  323. return err;
  324. }
  325. #else
  326. asmlinkage long
  327. sys32_ipc(u32 call, int first, int second, int third, u32 ptr, u32 fifth)
  328. {
  329. return -ENOSYS;
  330. }
  331. #endif /* CONFIG_SYSVIPC */
  332. #ifdef CONFIG_MIPS32_N32
  333. asmlinkage long sysn32_semctl(int semid, int semnum, int cmd, u32 arg)
  334. {
  335. /* compat_sys_semctl expects a pointer to union semun */
  336. u32 __user *uptr = compat_alloc_user_space(sizeof(u32));
  337. if (put_user(arg, uptr))
  338. return -EFAULT;
  339. return compat_sys_semctl(semid, semnum, cmd, uptr);
  340. }
  341. asmlinkage long sysn32_msgsnd(int msqid, u32 msgp, unsigned msgsz, int msgflg)
  342. {
  343. return compat_sys_msgsnd(msqid, msgsz, msgflg, compat_ptr(msgp));
  344. }
  345. asmlinkage long sysn32_msgrcv(int msqid, u32 msgp, size_t msgsz, int msgtyp,
  346. int msgflg)
  347. {
  348. return compat_sys_msgrcv(msqid, msgsz, msgtyp, msgflg, IPC_64,
  349. compat_ptr(msgp));
  350. }
  351. #endif
  352. struct sysctl_args32
  353. {
  354. compat_caddr_t name;
  355. int nlen;
  356. compat_caddr_t oldval;
  357. compat_caddr_t oldlenp;
  358. compat_caddr_t newval;
  359. compat_size_t newlen;
  360. unsigned int __unused[4];
  361. };
  362. #ifdef CONFIG_SYSCTL_SYSCALL
  363. asmlinkage long sys32_sysctl(struct sysctl_args32 __user *args)
  364. {
  365. struct sysctl_args32 tmp;
  366. int error;
  367. size_t oldlen;
  368. size_t __user *oldlenp = NULL;
  369. unsigned long addr = (((unsigned long)&args->__unused[0]) + 7) & ~7;
  370. if (copy_from_user(&tmp, args, sizeof(tmp)))
  371. return -EFAULT;
  372. if (tmp.oldval && tmp.oldlenp) {
  373. /* Duh, this is ugly and might not work if sysctl_args
  374. is in read-only memory, but do_sysctl does indirectly
  375. a lot of uaccess in both directions and we'd have to
  376. basically copy the whole sysctl.c here, and
  377. glibc's __sysctl uses rw memory for the structure
  378. anyway. */
  379. if (get_user(oldlen, (u32 __user *)A(tmp.oldlenp)) ||
  380. put_user(oldlen, (size_t __user *)addr))
  381. return -EFAULT;
  382. oldlenp = (size_t __user *)addr;
  383. }
  384. lock_kernel();
  385. error = do_sysctl((int __user *)A(tmp.name), tmp.nlen, (void __user *)A(tmp.oldval),
  386. oldlenp, (void __user *)A(tmp.newval), tmp.newlen);
  387. unlock_kernel();
  388. if (oldlenp) {
  389. if (!error) {
  390. if (get_user(oldlen, (size_t __user *)addr) ||
  391. put_user(oldlen, (u32 __user *)A(tmp.oldlenp)))
  392. error = -EFAULT;
  393. }
  394. copy_to_user(args->__unused, tmp.__unused, sizeof(tmp.__unused));
  395. }
  396. return error;
  397. }
  398. #endif /* CONFIG_SYSCTL_SYSCALL */
  399. asmlinkage long sys32_newuname(struct new_utsname __user * name)
  400. {
  401. int ret = 0;
  402. down_read(&uts_sem);
  403. if (copy_to_user(name, utsname(), sizeof *name))
  404. ret = -EFAULT;
  405. up_read(&uts_sem);
  406. if (current->personality == PER_LINUX32 && !ret)
  407. if (copy_to_user(name->machine, "mips\0\0\0", 8))
  408. ret = -EFAULT;
  409. return ret;
  410. }
  411. asmlinkage int sys32_personality(unsigned long personality)
  412. {
  413. int ret;
  414. personality &= 0xffffffff;
  415. if (personality(current->personality) == PER_LINUX32 &&
  416. personality == PER_LINUX)
  417. personality = PER_LINUX32;
  418. ret = sys_personality(personality);
  419. if (ret == PER_LINUX32)
  420. ret = PER_LINUX;
  421. return ret;
  422. }
  423. /* ustat compatibility */
  424. struct ustat32 {
  425. compat_daddr_t f_tfree;
  426. compat_ino_t f_tinode;
  427. char f_fname[6];
  428. char f_fpack[6];
  429. };
  430. extern asmlinkage long sys_ustat(dev_t dev, struct ustat __user * ubuf);
  431. asmlinkage int sys32_ustat(dev_t dev, struct ustat32 __user * ubuf32)
  432. {
  433. int err;
  434. struct ustat tmp;
  435. struct ustat32 tmp32;
  436. mm_segment_t old_fs = get_fs();
  437. set_fs(KERNEL_DS);
  438. err = sys_ustat(dev, (struct ustat __user *)&tmp);
  439. set_fs(old_fs);
  440. if (err)
  441. goto out;
  442. memset(&tmp32, 0, sizeof(struct ustat32));
  443. tmp32.f_tfree = tmp.f_tfree;
  444. tmp32.f_tinode = tmp.f_tinode;
  445. err = copy_to_user(ubuf32, &tmp32, sizeof(struct ustat32)) ? -EFAULT : 0;
  446. out:
  447. return err;
  448. }
  449. asmlinkage int sys32_sendfile(int out_fd, int in_fd, compat_off_t __user *offset,
  450. s32 count)
  451. {
  452. mm_segment_t old_fs = get_fs();
  453. int ret;
  454. off_t of;
  455. if (offset && get_user(of, offset))
  456. return -EFAULT;
  457. set_fs(KERNEL_DS);
  458. ret = sys_sendfile(out_fd, in_fd, offset ? (off_t __user *)&of : NULL, count);
  459. set_fs(old_fs);
  460. if (offset && put_user(of, offset))
  461. return -EFAULT;
  462. return ret;
  463. }
  464. asmlinkage ssize_t sys32_readahead(int fd, u32 pad0, u64 a2, u64 a3,
  465. size_t count)
  466. {
  467. return sys_readahead(fd, merge_64(a2, a3), count);
  468. }
  469. asmlinkage long sys32_sync_file_range(int fd, int __pad,
  470. unsigned long a2, unsigned long a3,
  471. unsigned long a4, unsigned long a5,
  472. int flags)
  473. {
  474. return sys_sync_file_range(fd,
  475. merge_64(a2, a3), merge_64(a4, a5),
  476. flags);
  477. }
  478. asmlinkage long sys32_fadvise64_64(int fd, int __pad,
  479. unsigned long a2, unsigned long a3,
  480. unsigned long a4, unsigned long a5,
  481. int flags)
  482. {
  483. return sys_fadvise64_64(fd,
  484. merge_64(a2, a3), merge_64(a4, a5),
  485. flags);
  486. }
  487. asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_a2,
  488. unsigned offset_a3, unsigned len_a4, unsigned len_a5)
  489. {
  490. return sys_fallocate(fd, mode, merge_64(offset_a2, offset_a3),
  491. merge_64(len_a4, len_a5));
  492. }
  493. save_static_function(sys32_clone);
  494. static int noinline __used
  495. _sys32_clone(nabi_no_regargs struct pt_regs regs)
  496. {
  497. unsigned long clone_flags;
  498. unsigned long newsp;
  499. int __user *parent_tidptr, *child_tidptr;
  500. clone_flags = regs.regs[4];
  501. newsp = regs.regs[5];
  502. if (!newsp)
  503. newsp = regs.regs[29];
  504. parent_tidptr = (int __user *) regs.regs[6];
  505. /* Use __dummy4 instead of getting it off the stack, so that
  506. syscall() works. */
  507. child_tidptr = (int __user *) __dummy4;
  508. return do_fork(clone_flags, newsp, &regs, 0,
  509. parent_tidptr, child_tidptr);
  510. }