compat.c 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. /*
  25. * Syscalls that take 64-bit numbers traditionally take them in 32-bit
  26. * "high" and "low" value parts on 32-bit architectures.
  27. * In principle, one could imagine passing some register arguments as
  28. * fully 64-bit on TILE-Gx in 32-bit mode, but it seems easier to
  29. * adapt the usual convention.
  30. */
  31. long compat_sys_truncate64(char __user *filename, u32 dummy, u32 low, u32 high)
  32. {
  33. return sys_truncate(filename, ((loff_t)high << 32) | low);
  34. }
  35. long compat_sys_ftruncate64(unsigned int fd, u32 dummy, u32 low, u32 high)
  36. {
  37. return sys_ftruncate(fd, ((loff_t)high << 32) | low);
  38. }
  39. long compat_sys_pread64(unsigned int fd, char __user *ubuf, size_t count,
  40. u32 dummy, u32 low, u32 high)
  41. {
  42. return sys_pread64(fd, ubuf, count, ((loff_t)high << 32) | low);
  43. }
  44. long compat_sys_pwrite64(unsigned int fd, char __user *ubuf, size_t count,
  45. u32 dummy, u32 low, u32 high)
  46. {
  47. return sys_pwrite64(fd, ubuf, count, ((loff_t)high << 32) | low);
  48. }
  49. long compat_sys_lookup_dcookie(u32 low, u32 high, char __user *buf, size_t len)
  50. {
  51. return sys_lookup_dcookie(((loff_t)high << 32) | low, buf, len);
  52. }
  53. long compat_sys_sync_file_range2(int fd, unsigned int flags,
  54. u32 offset_lo, u32 offset_hi,
  55. u32 nbytes_lo, u32 nbytes_hi)
  56. {
  57. return sys_sync_file_range(fd, ((loff_t)offset_hi << 32) | offset_lo,
  58. ((loff_t)nbytes_hi << 32) | nbytes_lo,
  59. flags);
  60. }
  61. long compat_sys_fallocate(int fd, int mode,
  62. u32 offset_lo, u32 offset_hi,
  63. u32 len_lo, u32 len_hi)
  64. {
  65. return sys_fallocate(fd, mode, ((loff_t)offset_hi << 32) | offset_lo,
  66. ((loff_t)len_hi << 32) | len_lo);
  67. }
  68. /* Provide the compat syscall number to call mapping. */
  69. #undef __SYSCALL
  70. #define __SYSCALL(nr, call) [nr] = (call),
  71. /* See comments in sys.c */
  72. #define compat_sys_fadvise64_64 sys32_fadvise64_64
  73. #define compat_sys_readahead sys32_readahead
  74. /* Call the assembly trampolines where necessary. */
  75. #define compat_sys_rt_sigreturn _compat_sys_rt_sigreturn
  76. #define sys_clone _sys_clone
  77. /*
  78. * Note that we can't include <linux/unistd.h> here since the header
  79. * guard will defeat us; <asm/unistd.h> checks for __SYSCALL as well.
  80. */
  81. void *compat_sys_call_table[__NR_syscalls] = {
  82. [0 ... __NR_syscalls-1] = sys_ni_syscall,
  83. #include <asm/unistd.h>
  84. };