compat.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. */
  14. /* Adjust unistd.h to provide 32-bit numbers and functions. */
  15. #define __SYSCALL_COMPAT
  16. #include <linux/compat.h>
  17. #include <linux/syscalls.h>
  18. #include <linux/kdev_t.h>
  19. #include <linux/fs.h>
  20. #include <linux/fcntl.h>
  21. #include <linux/uaccess.h>
  22. #include <linux/signal.h>
  23. #include <asm/syscalls.h>
  24. #include <asm/byteorder.h>
  25. /*
  26. * Syscalls that take 64-bit numbers traditionally take them in 32-bit
  27. * "high" and "low" value parts on 32-bit architectures.
  28. * In principle, one could imagine passing some register arguments as
  29. * fully 64-bit on TILE-Gx in 32-bit mode, but it seems easier to
  30. * adopt the usual convention.
  31. */
  32. #ifdef __BIG_ENDIAN
  33. #define SYSCALL_PAIR(name) u32, name ## _hi, u32, name ## _lo
  34. #else
  35. #define SYSCALL_PAIR(name) u32, name ## _lo, u32, name ## _hi
  36. #endif
  37. COMPAT_SYSCALL_DEFINE4(truncate64, char __user *, filename, u32, dummy,
  38. SYSCALL_PAIR(length))
  39. {
  40. return sys_truncate(filename, ((loff_t)length_hi << 32) | length_lo);
  41. }
  42. COMPAT_SYSCALL_DEFINE4(ftruncate64, unsigned int, fd, u32, dummy,
  43. SYSCALL_PAIR(length))
  44. {
  45. return sys_ftruncate(fd, ((loff_t)length_hi << 32) | length_lo);
  46. }
  47. COMPAT_SYSCALL_DEFINE6(pread64, unsigned int, fd, char __user *, ubuf,
  48. size_t, count, u32, dummy, SYSCALL_PAIR(offset))
  49. {
  50. return sys_pread64(fd, ubuf, count,
  51. ((loff_t)offset_hi << 32) | offset_lo);
  52. }
  53. COMPAT_SYSCALL_DEFINE6(pwrite64, unsigned int, fd, char __user *, ubuf,
  54. size_t, count, u32, dummy, SYSCALL_PAIR(offset))
  55. {
  56. return sys_pwrite64(fd, ubuf, count,
  57. ((loff_t)offset_hi << 32) | offset_lo);
  58. }
  59. COMPAT_SYSCALL_DEFINE6(sync_file_range2, int, fd, unsigned int, flags,
  60. SYSCALL_PAIR(offset), SYSCALL_PAIR(nbytes))
  61. {
  62. return sys_sync_file_range(fd, ((loff_t)offset_hi << 32) | offset_lo,
  63. ((loff_t)nbytes_hi << 32) | nbytes_lo,
  64. flags);
  65. }
  66. COMPAT_SYSCALL_DEFINE6(fallocate, int, fd, int, mode,
  67. SYSCALL_PAIR(offset), SYSCALL_PAIR(len))
  68. {
  69. return sys_fallocate(fd, mode, ((loff_t)offset_hi << 32) | offset_lo,
  70. ((loff_t)len_hi << 32) | len_lo);
  71. }
  72. /*
  73. * Avoid bug in generic sys_llseek() that specifies offset_high and
  74. * offset_low as "unsigned long", thus making it possible to pass
  75. * a sign-extended high 32 bits in offset_low.
  76. * Note that we do not use SYSCALL_PAIR here since glibc passes the
  77. * high and low parts explicitly in that order.
  78. */
  79. COMPAT_SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned int, offset_high,
  80. unsigned int, offset_low, loff_t __user *, result,
  81. unsigned int, origin)
  82. {
  83. return sys_llseek(fd, offset_high, offset_low, result, origin);
  84. }
  85. /* Provide the compat syscall number to call mapping. */
  86. #undef __SYSCALL
  87. #define __SYSCALL(nr, call) [nr] = (call),
  88. /* See comments in sys.c */
  89. #define compat_sys_fadvise64_64 sys32_fadvise64_64
  90. #define compat_sys_readahead sys32_readahead
  91. #define sys_llseek compat_sys_llseek
  92. /* Call the assembly trampolines where necessary. */
  93. #define compat_sys_rt_sigreturn _compat_sys_rt_sigreturn
  94. #define sys_clone _sys_clone
  95. /*
  96. * Note that we can't include <linux/unistd.h> here since the header
  97. * guard will defeat us; <asm/unistd.h> checks for __SYSCALL as well.
  98. */
  99. void *compat_sys_call_table[__NR_syscalls] = {
  100. [0 ... __NR_syscalls-1] = sys_ni_syscall,
  101. #include <asm/unistd.h>
  102. };