sys_sparc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: sys_sparc.c,v 1.70 2001/04/14 01:12:02 davem Exp $
  2.  * linux/arch/sparc/kernel/sys_sparc.c
  3.  *
  4.  * This file contains various random system calls that
  5.  * have a non-standard calling sequence on the Linux/sparc
  6.  * platform.
  7.  */
  8. #include <linux/errno.h>
  9. #include <linux/types.h>
  10. #include <linux/sched.h>
  11. #include <linux/mm.h>
  12. #include <linux/fs.h>
  13. #include <linux/file.h>
  14. #include <linux/sem.h>
  15. #include <linux/msg.h>
  16. #include <linux/shm.h>
  17. #include <linux/stat.h>
  18. #include <linux/mman.h>
  19. #include <linux/utsname.h>
  20. #include <linux/smp.h>
  21. #include <linux/smp_lock.h>
  22. #include <asm/uaccess.h>
  23. #include <asm/ipc.h>
  24. /* #define DEBUG_UNIMP_SYSCALL */
  25. /* XXX Make this per-binary type, this way we can detect the type of
  26.  * XXX a binary.  Every Sparc executable calls this very early on.
  27.  */
  28. asmlinkage unsigned long sys_getpagesize(void)
  29. {
  30. return PAGE_SIZE; /* Possibly older binaries want 8192 on sun4's? */
  31. }
  32. #define COLOUR_ALIGN(addr)      (((addr)+SHMLBA-1)&~(SHMLBA-1))
  33. unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags)
  34. {
  35. struct vm_area_struct * vmm;
  36. if (flags & MAP_FIXED) {
  37. /* We do not accept a shared mapping if it would violate
  38.  * cache aliasing constraints.
  39.  */
  40. if ((flags & MAP_SHARED) && (addr & (SHMLBA - 1)))
  41. return -EINVAL;
  42. return addr;
  43. }
  44. /* See asm-sparc/uaccess.h */
  45. if (len > TASK_SIZE - PAGE_SIZE)
  46. return -ENOMEM;
  47. if (ARCH_SUN4C_SUN4 && len > 0x20000000)
  48. return -ENOMEM;
  49. if (!addr)
  50. addr = TASK_UNMAPPED_BASE;
  51. if (flags & MAP_SHARED)
  52. addr = COLOUR_ALIGN(addr);
  53. else
  54. addr = PAGE_ALIGN(addr);
  55. for (vmm = find_vma(current->mm, addr); ; vmm = vmm->vm_next) {
  56. /* At this point:  (!vmm || addr < vmm->vm_end). */
  57. if (ARCH_SUN4C_SUN4 && addr < 0xe0000000 && 0x20000000 - len < addr) {
  58. addr = PAGE_OFFSET;
  59. vmm = find_vma(current->mm, PAGE_OFFSET);
  60. }
  61. if (TASK_SIZE - PAGE_SIZE - len < addr)
  62. return -ENOMEM;
  63. if (!vmm || addr + len <= vmm->vm_start)
  64. return addr;
  65. addr = vmm->vm_end;
  66. if (flags & MAP_SHARED)
  67. addr = COLOUR_ALIGN(addr);
  68. }
  69. }
  70. extern asmlinkage unsigned long sys_brk(unsigned long brk);
  71. asmlinkage unsigned long sparc_brk(unsigned long brk)
  72. {
  73. if(ARCH_SUN4C_SUN4) {
  74. if ((brk & 0xe0000000) != (current->mm->brk & 0xe0000000))
  75. return current->mm->brk;
  76. }
  77. return sys_brk(brk);
  78. }
  79. /*
  80.  * sys_pipe() is the normal C calling standard for creating
  81.  * a pipe. It's not the way unix traditionally does this, though.
  82.  */
  83. asmlinkage int sparc_pipe(struct pt_regs *regs)
  84. {
  85. int fd[2];
  86. int error;
  87. error = do_pipe(fd);
  88. if (error)
  89. goto out;
  90. regs->u_regs[UREG_I1] = fd[1];
  91. error = fd[0];
  92. out:
  93. return error;
  94. }
  95. /*
  96.  * sys_ipc() is the de-multiplexer for the SysV IPC calls..
  97.  *
  98.  * This is really horribly ugly.
  99.  */
  100. asmlinkage int sys_ipc (uint call, int first, int second, int third, void *ptr, long fifth)
  101. {
  102. int version, err;
  103. version = call >> 16; /* hack for backward compatibility */
  104. call &= 0xffff;
  105. if (call <= SEMCTL)
  106. switch (call) {
  107. case SEMOP:
  108. err = sys_semop (first, (struct sembuf *)ptr, second);
  109. goto out;
  110. case SEMGET:
  111. err = sys_semget (first, second, third);
  112. goto out;
  113. case SEMCTL: {
  114. union semun fourth;
  115. err = -EINVAL;
  116. if (!ptr)
  117. goto out;
  118. err = -EFAULT;
  119. if(get_user(fourth.__pad, (void **)ptr))
  120. goto out;
  121. err = sys_semctl (first, second, third, fourth);
  122. goto out;
  123. }
  124. default:
  125. err = -EINVAL;
  126. goto out;
  127. }
  128. if (call <= MSGCTL) 
  129. switch (call) {
  130. case MSGSND:
  131. err = sys_msgsnd (first, (struct msgbuf *) ptr, 
  132.   second, third);
  133. goto out;
  134. case MSGRCV:
  135. switch (version) {
  136. case 0: {
  137. struct ipc_kludge tmp;
  138. err = -EINVAL;
  139. if (!ptr)
  140. goto out;
  141. err = -EFAULT;
  142. if(copy_from_user(&tmp,(struct ipc_kludge *) ptr, sizeof (tmp)))
  143. goto out;
  144. err = sys_msgrcv (first, tmp.msgp, second, tmp.msgtyp, third);
  145. goto out;
  146. }
  147. case 1: default:
  148. err = sys_msgrcv (first, (struct msgbuf *) ptr, second, fifth, third);
  149. goto out;
  150. }
  151. case MSGGET:
  152. err = sys_msgget ((key_t) first, second);
  153. goto out;
  154. case MSGCTL:
  155. err = sys_msgctl (first, second, (struct msqid_ds *) ptr);
  156. goto out;
  157. default:
  158. err = -EINVAL;
  159. goto out;
  160. }
  161. if (call <= SHMCTL) 
  162. switch (call) {
  163. case SHMAT:
  164. switch (version) {
  165. case 0: default: {
  166. ulong raddr;
  167. err = sys_shmat (first, (char *) ptr, second, &raddr);
  168. if (err)
  169. goto out;
  170. err = -EFAULT;
  171. if(put_user (raddr, (ulong *) third))
  172. goto out;
  173. err = 0;
  174. goto out;
  175. }
  176. case 1: /* iBCS2 emulator entry point */
  177. err = sys_shmat (first, (char *) ptr, second, (ulong *) third);
  178. goto out;
  179. }
  180. case SHMDT: 
  181. err = sys_shmdt ((char *)ptr);
  182. goto out;
  183. case SHMGET:
  184. err = sys_shmget (first, second, third);
  185. goto out;
  186. case SHMCTL:
  187. err = sys_shmctl (first, second, (struct shmid_ds *) ptr);
  188. goto out;
  189. default:
  190. err = -EINVAL;
  191. goto out;
  192. }
  193. else
  194. err = -EINVAL;
  195. out:
  196. return err;
  197. }
  198. /* Linux version of mmap */
  199. static unsigned long do_mmap2(unsigned long addr, unsigned long len,
  200. unsigned long prot, unsigned long flags, unsigned long fd,
  201. unsigned long pgoff)
  202. {
  203. struct file * file = NULL;
  204. unsigned long retval = -EBADF;
  205. if (!(flags & MAP_ANONYMOUS)) {
  206. file = fget(fd);
  207. if (!file)
  208. goto out;
  209. }
  210. retval = -EINVAL;
  211. len = PAGE_ALIGN(len);
  212. if (ARCH_SUN4C_SUN4 &&
  213.     (len > 0x20000000 ||
  214.      ((flags & MAP_FIXED) &&
  215.       addr < 0xe0000000 && addr + len > 0x20000000)))
  216. goto out_putf;
  217. /* See asm-sparc/uaccess.h */
  218. if (len > TASK_SIZE - PAGE_SIZE || addr + len > TASK_SIZE - PAGE_SIZE)
  219. goto out_putf;
  220. flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
  221. down_write(&current->mm->mmap_sem);
  222. retval = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
  223. up_write(&current->mm->mmap_sem);
  224. out_putf:
  225. if (file)
  226. fput(file);
  227. out:
  228. return retval;
  229. }
  230. asmlinkage unsigned long sys_mmap2(unsigned long addr, unsigned long len,
  231. unsigned long prot, unsigned long flags, unsigned long fd,
  232. unsigned long pgoff)
  233. {
  234. /* Make sure the shift for mmap2 is constant (12), no matter what PAGE_SIZE
  235.    we have. */
  236. return do_mmap2(addr, len, prot, flags, fd, pgoff >> (PAGE_SHIFT - 12));
  237. }
  238. asmlinkage unsigned long sys_mmap(unsigned long addr, unsigned long len,
  239. unsigned long prot, unsigned long flags, unsigned long fd,
  240. unsigned long off)
  241. {
  242. return do_mmap2(addr, len, prot, flags, fd, off >> PAGE_SHIFT);
  243. }
  244. extern unsigned long do_mremap(unsigned long addr,
  245. unsigned long old_len, unsigned long new_len,
  246. unsigned long flags, unsigned long new_addr);
  247.                 
  248. asmlinkage unsigned long sparc_mremap(unsigned long addr,
  249. unsigned long old_len, unsigned long new_len,
  250. unsigned long flags, unsigned long new_addr)
  251. {
  252. struct vm_area_struct *vma;
  253. unsigned long ret = -EINVAL;
  254. if (ARCH_SUN4C_SUN4) {
  255. if (old_len > 0x20000000 || new_len > 0x20000000)
  256. goto out;
  257. if (addr < 0xe0000000 && addr + old_len > 0x20000000)
  258. goto out;
  259. }
  260. if (old_len > TASK_SIZE - PAGE_SIZE ||
  261.     new_len > TASK_SIZE - PAGE_SIZE)
  262. goto out;
  263. down_write(&current->mm->mmap_sem);
  264. if (flags & MREMAP_FIXED) {
  265. if (ARCH_SUN4C_SUN4 &&
  266.     new_addr < 0xe0000000 &&
  267.     new_addr + new_len > 0x20000000)
  268. goto out_sem;
  269. if (new_addr + new_len > TASK_SIZE - PAGE_SIZE)
  270. goto out_sem;
  271. } else if ((ARCH_SUN4C_SUN4 && addr < 0xe0000000 &&
  272.     addr + new_len > 0x20000000) ||
  273.    addr + new_len > TASK_SIZE - PAGE_SIZE) {
  274. unsigned long map_flags = 0;
  275. struct file *file = NULL;
  276. ret = -ENOMEM;
  277. if (!(flags & MREMAP_MAYMOVE))
  278. goto out_sem;
  279. vma = find_vma(current->mm, addr);
  280. if (vma) {
  281. if (vma->vm_flags & VM_SHARED)
  282. map_flags |= MAP_SHARED;
  283. file = vma->vm_file;
  284. }
  285. new_addr = get_unmapped_area(file, addr, new_len,
  286.      vma ? vma->vm_pgoff : 0,
  287.      map_flags);
  288. ret = new_addr;
  289. if (new_addr & ~PAGE_MASK)
  290. goto out_sem;
  291. flags |= MREMAP_FIXED;
  292. }
  293. ret = do_mremap(addr, old_len, new_len, flags, new_addr);
  294. out_sem:
  295. up_write(&current->mm->mmap_sem);
  296. out:
  297. return ret;       
  298. }
  299. /* we come to here via sys_nis_syscall so it can setup the regs argument */
  300. asmlinkage unsigned long
  301. c_sys_nis_syscall (struct pt_regs *regs)
  302. {
  303. static int count = 0;
  304. if (count++ > 5) return -ENOSYS;
  305. printk ("%s[%d]: Unimplemented SPARC system call %dn", current->comm, current->pid, (int)regs->u_regs[1]);
  306. #ifdef DEBUG_UNIMP_SYSCALL
  307. show_regs (regs);
  308. #endif
  309. return -ENOSYS;
  310. }
  311. /* #define DEBUG_SPARC_BREAKPOINT */
  312. asmlinkage void
  313. sparc_breakpoint (struct pt_regs *regs)
  314. {
  315. siginfo_t info;
  316. lock_kernel();
  317. #ifdef DEBUG_SPARC_BREAKPOINT
  318.         printk ("TRAP: Entering kernel PC=%x, nPC=%xn", regs->pc, regs->npc);
  319. #endif
  320. info.si_signo = SIGTRAP;
  321. info.si_errno = 0;
  322. info.si_code = TRAP_BRKPT;
  323. info.si_addr = (void *)regs->pc;
  324. info.si_trapno = 0;
  325. force_sig_info(SIGTRAP, &info, current);
  326. #ifdef DEBUG_SPARC_BREAKPOINT
  327. printk ("TRAP: Returning to space: PC=%x nPC=%xn", regs->pc, regs->npc);
  328. #endif
  329. unlock_kernel();
  330. }
  331. asmlinkage int
  332. sparc_sigaction (int sig, const struct old_sigaction *act,
  333.  struct old_sigaction *oact)
  334. {
  335. struct k_sigaction new_ka, old_ka;
  336. int ret;
  337. if (sig < 0) {
  338. current->thread.new_signal = 1;
  339. sig = -sig;
  340. }
  341. if (act) {
  342. unsigned long mask;
  343. if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
  344.     __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
  345.     __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
  346. return -EFAULT;
  347. __get_user(new_ka.sa.sa_flags, &act->sa_flags);
  348. __get_user(mask, &act->sa_mask);
  349. siginitset(&new_ka.sa.sa_mask, mask);
  350. new_ka.ka_restorer = NULL;
  351. }
  352. ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
  353. if (!ret && oact) {
  354. /* In the clone() case we could copy half consistant
  355.  * state to the user, however this could sleep and
  356.  * deadlock us if we held the signal lock on SMP.  So for
  357.  * now I take the easy way out and do no locking.
  358.  */
  359. if (verify_area(VERIFY_WRITE, oact, sizeof(*oact)) ||
  360.     __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
  361.     __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
  362. return -EFAULT;
  363. __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
  364. __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
  365. }
  366. return ret;
  367. }
  368. asmlinkage int
  369. sys_rt_sigaction(int sig, const struct sigaction *act, struct sigaction *oact,
  370.  void *restorer, size_t sigsetsize)
  371. {
  372. struct k_sigaction new_ka, old_ka;
  373. int ret;
  374. /* XXX: Don't preclude handling different sized sigset_t's.  */
  375. if (sigsetsize != sizeof(sigset_t))
  376. return -EINVAL;
  377. /* All tasks which use RT signals (effectively) use
  378.  * new style signals.
  379.  */
  380. current->thread.new_signal = 1;
  381. if (act) {
  382. new_ka.ka_restorer = restorer;
  383. if (copy_from_user(&new_ka.sa, act, sizeof(*act)))
  384. return -EFAULT;
  385. }
  386. ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
  387. if (!ret && oact) {
  388. if (copy_to_user(oact, &old_ka.sa, sizeof(*oact)))
  389. return -EFAULT;
  390. }
  391. return ret;
  392. }
  393. /* Just in case some old old binary calls this. */
  394. asmlinkage int sys_pause(void)
  395. {
  396. current->state = TASK_INTERRUPTIBLE;
  397. schedule();
  398. return -ERESTARTNOHAND;
  399. }
  400. asmlinkage int sys_getdomainname(char *name, int len)
  401. {
  402.   int nlen;
  403.   int err = -EFAULT;
  404.  
  405.   down_read(&uts_sem);
  406.  
  407. nlen = strlen(system_utsname.domainname) + 1;
  408. if (nlen < len)
  409. len = nlen;
  410. if(len > __NEW_UTS_LEN)
  411. goto done;
  412. if(copy_to_user(name, system_utsname.domainname, len))
  413. goto done;
  414. err = 0;
  415. done:
  416. up_read(&uts_sem);
  417. return err;
  418. }