syscalls.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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/init.h>
  37. #include <linux/personality.h>
  38. #include <asm/uaccess.h>
  39. #include <asm/syscalls.h>
  40. #include <asm/time.h>
  41. #include <asm/unistd.h>
  42. static inline unsigned long do_mmap2(unsigned long addr, size_t len,
  43. unsigned long prot, unsigned long flags,
  44. unsigned long fd, unsigned long off, int shift)
  45. {
  46. unsigned long ret = -EINVAL;
  47. if (!arch_validate_prot(prot))
  48. goto out;
  49. if (shift) {
  50. if (off & ((1 << shift) - 1))
  51. goto out;
  52. off >>= shift;
  53. }
  54. ret = sys_mmap_pgoff(addr, len, prot, flags, fd, off);
  55. out:
  56. return ret;
  57. }
  58. unsigned long sys_mmap2(unsigned long addr, size_t len,
  59. unsigned long prot, unsigned long flags,
  60. unsigned long fd, unsigned long pgoff)
  61. {
  62. return do_mmap2(addr, len, prot, flags, fd, pgoff, PAGE_SHIFT-12);
  63. }
  64. unsigned long sys_mmap(unsigned long addr, size_t len,
  65. unsigned long prot, unsigned long flags,
  66. unsigned long fd, off_t offset)
  67. {
  68. return do_mmap2(addr, len, prot, flags, fd, offset, PAGE_SHIFT);
  69. }
  70. #ifdef CONFIG_PPC32
  71. /*
  72. * Due to some executables calling the wrong select we sometimes
  73. * get wrong args. This determines how the args are being passed
  74. * (a single ptr to them all args passed) then calls
  75. * sys_select() with the appropriate args. -- Cort
  76. */
  77. int
  78. ppc_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval __user *tvp)
  79. {
  80. if ( (unsigned long)n >= 4096 )
  81. {
  82. unsigned long __user *buffer = (unsigned long __user *)n;
  83. if (!access_ok(VERIFY_READ, buffer, 5*sizeof(unsigned long))
  84. || __get_user(n, buffer)
  85. || __get_user(inp, ((fd_set __user * __user *)(buffer+1)))
  86. || __get_user(outp, ((fd_set __user * __user *)(buffer+2)))
  87. || __get_user(exp, ((fd_set __user * __user *)(buffer+3)))
  88. || __get_user(tvp, ((struct timeval __user * __user *)(buffer+4))))
  89. return -EFAULT;
  90. }
  91. return sys_select(n, inp, outp, exp, tvp);
  92. }
  93. #endif
  94. #ifdef CONFIG_PPC64
  95. long ppc64_personality(unsigned long personality)
  96. {
  97. long ret;
  98. if (personality(current->personality) == PER_LINUX32
  99. && personality == PER_LINUX)
  100. personality = PER_LINUX32;
  101. ret = sys_personality(personality);
  102. if (ret == PER_LINUX32)
  103. ret = PER_LINUX;
  104. return ret;
  105. }
  106. #endif
  107. #ifdef CONFIG_PPC64
  108. #define OVERRIDE_MACHINE (personality(current->personality) == PER_LINUX32)
  109. #else
  110. #define OVERRIDE_MACHINE 0
  111. #endif
  112. static inline int override_machine(char __user *mach)
  113. {
  114. if (OVERRIDE_MACHINE) {
  115. /* change ppc64 to ppc */
  116. if (__put_user(0, mach+3) || __put_user(0, mach+4))
  117. return -EFAULT;
  118. }
  119. return 0;
  120. }
  121. long ppc_newuname(struct new_utsname __user * name)
  122. {
  123. int err = 0;
  124. down_read(&uts_sem);
  125. if (copy_to_user(name, utsname(), sizeof(*name)))
  126. err = -EFAULT;
  127. up_read(&uts_sem);
  128. if (!err)
  129. err = override_machine(name->machine);
  130. return err;
  131. }
  132. int sys_uname(struct old_utsname __user *name)
  133. {
  134. int err = 0;
  135. down_read(&uts_sem);
  136. if (copy_to_user(name, utsname(), sizeof(*name)))
  137. err = -EFAULT;
  138. up_read(&uts_sem);
  139. if (!err)
  140. err = override_machine(name->machine);
  141. return err;
  142. }
  143. int sys_olduname(struct oldold_utsname __user *name)
  144. {
  145. int error;
  146. if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
  147. return -EFAULT;
  148. down_read(&uts_sem);
  149. error = __copy_to_user(&name->sysname, &utsname()->sysname,
  150. __OLD_UTS_LEN);
  151. error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
  152. error |= __copy_to_user(&name->nodename, &utsname()->nodename,
  153. __OLD_UTS_LEN);
  154. error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
  155. error |= __copy_to_user(&name->release, &utsname()->release,
  156. __OLD_UTS_LEN);
  157. error |= __put_user(0, name->release + __OLD_UTS_LEN);
  158. error |= __copy_to_user(&name->version, &utsname()->version,
  159. __OLD_UTS_LEN);
  160. error |= __put_user(0, name->version + __OLD_UTS_LEN);
  161. error |= __copy_to_user(&name->machine, &utsname()->machine,
  162. __OLD_UTS_LEN);
  163. error |= override_machine(name->machine);
  164. up_read(&uts_sem);
  165. return error? -EFAULT: 0;
  166. }
  167. long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low,
  168. u32 len_high, u32 len_low)
  169. {
  170. return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low,
  171. (u64)len_high << 32 | len_low, advice);
  172. }
  173. void do_show_syscall(unsigned long r3, unsigned long r4, unsigned long r5,
  174. unsigned long r6, unsigned long r7, unsigned long r8,
  175. struct pt_regs *regs)
  176. {
  177. printk("syscall %ld(%lx, %lx, %lx, %lx, %lx, %lx) regs=%p current=%p"
  178. " cpu=%d\n", regs->gpr[0], r3, r4, r5, r6, r7, r8, regs,
  179. current, smp_processor_id());
  180. }
  181. void do_show_syscall_exit(unsigned long r3)
  182. {
  183. printk(" -> %lx, current=%p cpu=%d\n", r3, current, smp_processor_id());
  184. }