syscalls.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * Implementation of various system calls for Linux/PowerPC
  3. *
  4. * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  5. *
  6. * Derived from "arch/i386/kernel/sys_i386.c"
  7. * Adapted from the i386 version by Gary Thomas
  8. * Modified by Cort Dougan (cort@cs.nmt.edu)
  9. * and Paul Mackerras (paulus@cs.anu.edu.au).
  10. *
  11. * This file contains various random system calls that
  12. * have a non-standard calling sequence on the Linux/PPC
  13. * platform.
  14. *
  15. * This program is free software; you can redistribute it and/or
  16. * modify it under the terms of the GNU General Public License
  17. * as published by the Free Software Foundation; either version
  18. * 2 of the License, or (at your option) any later version.
  19. *
  20. */
  21. #include <linux/errno.h>
  22. #include <linux/sched.h>
  23. #include <linux/syscalls.h>
  24. #include <linux/mm.h>
  25. #include <linux/fs.h>
  26. #include <linux/smp.h>
  27. #include <linux/sem.h>
  28. #include <linux/msg.h>
  29. #include <linux/shm.h>
  30. #include <linux/stat.h>
  31. #include <linux/mman.h>
  32. #include <linux/sys.h>
  33. #include <linux/ipc.h>
  34. #include <linux/utsname.h>
  35. #include <linux/file.h>
  36. #include <linux/personality.h>
  37. #include <asm/uaccess.h>
  38. #include <asm/syscalls.h>
  39. #include <asm/time.h>
  40. #include <asm/unistd.h>
  41. static inline unsigned long do_mmap2(unsigned long addr, size_t len,
  42. unsigned long prot, unsigned long flags,
  43. unsigned long fd, unsigned long off, int shift)
  44. {
  45. unsigned long ret = -EINVAL;
  46. if (!arch_validate_prot(prot))
  47. goto out;
  48. if (shift) {
  49. if (off & ((1 << shift) - 1))
  50. goto out;
  51. off >>= shift;
  52. }
  53. ret = sys_mmap_pgoff(addr, len, prot, flags, fd, off);
  54. out:
  55. return ret;
  56. }
  57. unsigned long sys_mmap2(unsigned long addr, size_t len,
  58. unsigned long prot, unsigned long flags,
  59. unsigned long fd, unsigned long pgoff)
  60. {
  61. return do_mmap2(addr, len, prot, flags, fd, pgoff, PAGE_SHIFT-12);
  62. }
  63. unsigned long sys_mmap(unsigned long addr, size_t len,
  64. unsigned long prot, unsigned long flags,
  65. unsigned long fd, off_t offset)
  66. {
  67. return do_mmap2(addr, len, prot, flags, fd, offset, PAGE_SHIFT);
  68. }
  69. #ifdef CONFIG_PPC32
  70. /*
  71. * Due to some executables calling the wrong select we sometimes
  72. * get wrong args. This determines how the args are being passed
  73. * (a single ptr to them all args passed) then calls
  74. * sys_select() with the appropriate args. -- Cort
  75. */
  76. int
  77. ppc_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval __user *tvp)
  78. {
  79. if ( (unsigned long)n >= 4096 )
  80. {
  81. unsigned long __user *buffer = (unsigned long __user *)n;
  82. if (!access_ok(VERIFY_READ, buffer, 5*sizeof(unsigned long))
  83. || __get_user(n, buffer)
  84. || __get_user(inp, ((fd_set __user * __user *)(buffer+1)))
  85. || __get_user(outp, ((fd_set __user * __user *)(buffer+2)))
  86. || __get_user(exp, ((fd_set __user * __user *)(buffer+3)))
  87. || __get_user(tvp, ((struct timeval __user * __user *)(buffer+4))))
  88. return -EFAULT;
  89. }
  90. return sys_select(n, inp, outp, exp, tvp);
  91. }
  92. #endif
  93. #ifdef CONFIG_PPC64
  94. long ppc64_personality(unsigned long personality)
  95. {
  96. long ret;
  97. if (personality(current->personality) == PER_LINUX32
  98. && personality(personality) == PER_LINUX)
  99. personality = (personality & ~PER_MASK) | PER_LINUX32;
  100. ret = sys_personality(personality);
  101. if (personality(ret) == PER_LINUX32)
  102. ret = (ret & ~PER_MASK) | PER_LINUX;
  103. return ret;
  104. }
  105. #endif
  106. long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low,
  107. u32 len_high, u32 len_low)
  108. {
  109. return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low,
  110. (u64)len_high << 32 | len_low, advice);
  111. }
  112. long sys_switch_endian(void)
  113. {
  114. struct thread_info *ti;
  115. current->thread.regs->msr ^= MSR_LE;
  116. /*
  117. * Set TIF_RESTOREALL so that r3 isn't clobbered on return to
  118. * userspace. That also has the effect of restoring the non-volatile
  119. * GPRs, so we saved them on the way in here.
  120. */
  121. ti = current_thread_info();
  122. ti->flags |= _TIF_RESTOREALL;
  123. return 0;
  124. }