sys_sparc.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947
  1. /* $Id: sys_sparc.c,v 1.57 2002/02/09 19:49:30 davem Exp $
  2. * linux/arch/sparc64/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/config.h>
  9. #include <linux/errno.h>
  10. #include <linux/types.h>
  11. #include <linux/sched.h>
  12. #include <linux/fs.h>
  13. #include <linux/file.h>
  14. #include <linux/mm.h>
  15. #include <linux/sem.h>
  16. #include <linux/msg.h>
  17. #include <linux/shm.h>
  18. #include <linux/stat.h>
  19. #include <linux/mman.h>
  20. #include <linux/utsname.h>
  21. #include <linux/smp.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/slab.h>
  24. #include <linux/syscalls.h>
  25. #include <linux/ipc.h>
  26. #include <linux/personality.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/ipc.h>
  29. #include <asm/utrap.h>
  30. #include <asm/perfctr.h>
  31. /* #define DEBUG_UNIMP_SYSCALL */
  32. asmlinkage unsigned long sys_getpagesize(void)
  33. {
  34. return PAGE_SIZE;
  35. }
  36. #define VA_EXCLUDE_START (0x0000080000000000UL - (1UL << 32UL))
  37. #define VA_EXCLUDE_END (0xfffff80000000000UL + (1UL << 32UL))
  38. /* Does addr --> addr+len fall within 4GB of the VA-space hole or
  39. * overflow past the end of the 64-bit address space?
  40. */
  41. static inline int invalid_64bit_range(unsigned long addr, unsigned long len)
  42. {
  43. unsigned long va_exclude_start, va_exclude_end;
  44. va_exclude_start = VA_EXCLUDE_START;
  45. va_exclude_end = VA_EXCLUDE_END;
  46. if (unlikely(len >= va_exclude_start))
  47. return 1;
  48. if (unlikely((addr + len) < addr))
  49. return 1;
  50. if (unlikely((addr >= va_exclude_start && addr < va_exclude_end) ||
  51. ((addr + len) >= va_exclude_start &&
  52. (addr + len) < va_exclude_end)))
  53. return 1;
  54. return 0;
  55. }
  56. /* Does start,end straddle the VA-space hole? */
  57. static inline int straddles_64bit_va_hole(unsigned long start, unsigned long end)
  58. {
  59. unsigned long va_exclude_start, va_exclude_end;
  60. va_exclude_start = VA_EXCLUDE_START;
  61. va_exclude_end = VA_EXCLUDE_END;
  62. if (likely(start < va_exclude_start && end < va_exclude_start))
  63. return 0;
  64. if (likely(start >= va_exclude_end && end >= va_exclude_end))
  65. return 0;
  66. return 1;
  67. }
  68. /* These functions differ from the default implementations in
  69. * mm/mmap.c in two ways:
  70. *
  71. * 1) For file backed MAP_SHARED mmap()'s we D-cache color align,
  72. * for fixed such mappings we just validate what the user gave us.
  73. * 2) For 64-bit tasks we avoid mapping anything within 4GB of
  74. * the spitfire/niagara VA-hole.
  75. */
  76. static inline unsigned long COLOUR_ALIGN(unsigned long addr,
  77. unsigned long pgoff)
  78. {
  79. unsigned long base = (addr+SHMLBA-1)&~(SHMLBA-1);
  80. unsigned long off = (pgoff<<PAGE_SHIFT) & (SHMLBA-1);
  81. return base + off;
  82. }
  83. static inline unsigned long COLOUR_ALIGN_DOWN(unsigned long addr,
  84. unsigned long pgoff)
  85. {
  86. unsigned long base = addr & ~(SHMLBA-1);
  87. unsigned long off = (pgoff<<PAGE_SHIFT) & (SHMLBA-1);
  88. if (base + off <= addr)
  89. return base + off;
  90. return base - off;
  91. }
  92. unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags)
  93. {
  94. struct mm_struct *mm = current->mm;
  95. struct vm_area_struct * vma;
  96. unsigned long task_size = TASK_SIZE;
  97. unsigned long start_addr;
  98. int do_color_align;
  99. if (flags & MAP_FIXED) {
  100. /* We do not accept a shared mapping if it would violate
  101. * cache aliasing constraints.
  102. */
  103. if ((flags & MAP_SHARED) &&
  104. ((addr - (pgoff << PAGE_SHIFT)) & (SHMLBA - 1)))
  105. return -EINVAL;
  106. return addr;
  107. }
  108. if (test_thread_flag(TIF_32BIT))
  109. task_size = 0xf0000000UL;
  110. if (unlikely(len > task_size || len >= VA_EXCLUDE_START))
  111. return -ENOMEM;
  112. do_color_align = 0;
  113. if (filp || (flags & MAP_SHARED))
  114. do_color_align = 1;
  115. if (addr) {
  116. if (do_color_align)
  117. addr = COLOUR_ALIGN(addr, pgoff);
  118. else
  119. addr = PAGE_ALIGN(addr);
  120. vma = find_vma(mm, addr);
  121. if (task_size - len >= addr &&
  122. (!vma || addr + len <= vma->vm_start))
  123. return addr;
  124. }
  125. if (len > mm->cached_hole_size) {
  126. start_addr = addr = mm->free_area_cache;
  127. } else {
  128. start_addr = addr = TASK_UNMAPPED_BASE;
  129. mm->cached_hole_size = 0;
  130. }
  131. task_size -= len;
  132. full_search:
  133. if (do_color_align)
  134. addr = COLOUR_ALIGN(addr, pgoff);
  135. else
  136. addr = PAGE_ALIGN(addr);
  137. for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
  138. /* At this point: (!vma || addr < vma->vm_end). */
  139. if (addr < VA_EXCLUDE_START &&
  140. (addr + len) >= VA_EXCLUDE_START) {
  141. addr = VA_EXCLUDE_END;
  142. vma = find_vma(mm, VA_EXCLUDE_END);
  143. }
  144. if (unlikely(task_size < addr)) {
  145. if (start_addr != TASK_UNMAPPED_BASE) {
  146. start_addr = addr = TASK_UNMAPPED_BASE;
  147. mm->cached_hole_size = 0;
  148. goto full_search;
  149. }
  150. return -ENOMEM;
  151. }
  152. if (likely(!vma || addr + len <= vma->vm_start)) {
  153. /*
  154. * Remember the place where we stopped the search:
  155. */
  156. mm->free_area_cache = addr + len;
  157. return addr;
  158. }
  159. if (addr + mm->cached_hole_size < vma->vm_start)
  160. mm->cached_hole_size = vma->vm_start - addr;
  161. addr = vma->vm_end;
  162. if (do_color_align)
  163. addr = COLOUR_ALIGN(addr, pgoff);
  164. }
  165. }
  166. unsigned long
  167. arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
  168. const unsigned long len, const unsigned long pgoff,
  169. const unsigned long flags)
  170. {
  171. struct vm_area_struct *vma;
  172. struct mm_struct *mm = current->mm;
  173. unsigned long task_size = 0xf0000000UL;
  174. unsigned long addr = addr0;
  175. int do_color_align;
  176. /* This should only ever run for 32-bit processes. */
  177. BUG_ON(!test_thread_flag(TIF_32BIT));
  178. if (flags & MAP_FIXED) {
  179. /* We do not accept a shared mapping if it would violate
  180. * cache aliasing constraints.
  181. */
  182. if ((flags & MAP_SHARED) &&
  183. ((addr - (pgoff << PAGE_SHIFT)) & (SHMLBA - 1)))
  184. return -EINVAL;
  185. return addr;
  186. }
  187. if (unlikely(len > task_size))
  188. return -ENOMEM;
  189. do_color_align = 0;
  190. if (filp || (flags & MAP_SHARED))
  191. do_color_align = 1;
  192. /* requesting a specific address */
  193. if (addr) {
  194. if (do_color_align)
  195. addr = COLOUR_ALIGN(addr, pgoff);
  196. else
  197. addr = PAGE_ALIGN(addr);
  198. vma = find_vma(mm, addr);
  199. if (task_size - len >= addr &&
  200. (!vma || addr + len <= vma->vm_start))
  201. return addr;
  202. }
  203. /* check if free_area_cache is useful for us */
  204. if (len <= mm->cached_hole_size) {
  205. mm->cached_hole_size = 0;
  206. mm->free_area_cache = mm->mmap_base;
  207. }
  208. /* either no address requested or can't fit in requested address hole */
  209. addr = mm->free_area_cache;
  210. if (do_color_align) {
  211. unsigned long base = COLOUR_ALIGN_DOWN(addr-len, pgoff);
  212. addr = base + len;
  213. }
  214. /* make sure it can fit in the remaining address space */
  215. if (likely(addr > len)) {
  216. vma = find_vma(mm, addr-len);
  217. if (!vma || addr <= vma->vm_start) {
  218. /* remember the address as a hint for next time */
  219. return (mm->free_area_cache = addr-len);
  220. }
  221. }
  222. if (unlikely(mm->mmap_base < len))
  223. goto bottomup;
  224. addr = mm->mmap_base-len;
  225. if (do_color_align)
  226. addr = COLOUR_ALIGN_DOWN(addr, pgoff);
  227. do {
  228. /*
  229. * Lookup failure means no vma is above this address,
  230. * else if new region fits below vma->vm_start,
  231. * return with success:
  232. */
  233. vma = find_vma(mm, addr);
  234. if (likely(!vma || addr+len <= vma->vm_start)) {
  235. /* remember the address as a hint for next time */
  236. return (mm->free_area_cache = addr);
  237. }
  238. /* remember the largest hole we saw so far */
  239. if (addr + mm->cached_hole_size < vma->vm_start)
  240. mm->cached_hole_size = vma->vm_start - addr;
  241. /* try just below the current vma->vm_start */
  242. addr = vma->vm_start-len;
  243. if (do_color_align)
  244. addr = COLOUR_ALIGN_DOWN(addr, pgoff);
  245. } while (likely(len < vma->vm_start));
  246. bottomup:
  247. /*
  248. * A failed mmap() very likely causes application failure,
  249. * so fall back to the bottom-up function here. This scenario
  250. * can happen with large stack limits and large mmap()
  251. * allocations.
  252. */
  253. mm->cached_hole_size = ~0UL;
  254. mm->free_area_cache = TASK_UNMAPPED_BASE;
  255. addr = arch_get_unmapped_area(filp, addr0, len, pgoff, flags);
  256. /*
  257. * Restore the topdown base:
  258. */
  259. mm->free_area_cache = mm->mmap_base;
  260. mm->cached_hole_size = ~0UL;
  261. return addr;
  262. }
  263. /* Try to align mapping such that we align it as much as possible. */
  264. unsigned long get_fb_unmapped_area(struct file *filp, unsigned long orig_addr, unsigned long len, unsigned long pgoff, unsigned long flags)
  265. {
  266. unsigned long align_goal, addr = -ENOMEM;
  267. if (flags & MAP_FIXED) {
  268. /* Ok, don't mess with it. */
  269. return get_unmapped_area(NULL, addr, len, pgoff, flags);
  270. }
  271. flags &= ~MAP_SHARED;
  272. align_goal = PAGE_SIZE;
  273. if (len >= (4UL * 1024 * 1024))
  274. align_goal = (4UL * 1024 * 1024);
  275. else if (len >= (512UL * 1024))
  276. align_goal = (512UL * 1024);
  277. else if (len >= (64UL * 1024))
  278. align_goal = (64UL * 1024);
  279. do {
  280. addr = get_unmapped_area(NULL, orig_addr, len + (align_goal - PAGE_SIZE), pgoff, flags);
  281. if (!(addr & ~PAGE_MASK)) {
  282. addr = (addr + (align_goal - 1UL)) & ~(align_goal - 1UL);
  283. break;
  284. }
  285. if (align_goal == (4UL * 1024 * 1024))
  286. align_goal = (512UL * 1024);
  287. else if (align_goal == (512UL * 1024))
  288. align_goal = (64UL * 1024);
  289. else
  290. align_goal = PAGE_SIZE;
  291. } while ((addr & ~PAGE_MASK) && align_goal > PAGE_SIZE);
  292. /* Mapping is smaller than 64K or larger areas could not
  293. * be obtained.
  294. */
  295. if (addr & ~PAGE_MASK)
  296. addr = get_unmapped_area(NULL, orig_addr, len, pgoff, flags);
  297. return addr;
  298. }
  299. /* Essentially the same as PowerPC... */
  300. void arch_pick_mmap_layout(struct mm_struct *mm)
  301. {
  302. /*
  303. * Fall back to the standard layout if the personality
  304. * bit is set, or if the expected stack growth is unlimited:
  305. */
  306. if (!test_thread_flag(TIF_32BIT) ||
  307. (current->personality & ADDR_COMPAT_LAYOUT) ||
  308. current->signal->rlim[RLIMIT_STACK].rlim_cur == RLIM_INFINITY ||
  309. sysctl_legacy_va_layout) {
  310. mm->mmap_base = TASK_UNMAPPED_BASE;
  311. mm->get_unmapped_area = arch_get_unmapped_area;
  312. mm->unmap_area = arch_unmap_area;
  313. } else {
  314. /* We know it's 32-bit */
  315. unsigned long task_size = 0xf0000000UL;
  316. unsigned long gap;
  317. gap = current->signal->rlim[RLIMIT_STACK].rlim_cur;
  318. if (gap < 128 * 1024 * 1024)
  319. gap = 128 * 1024 * 1024;
  320. if (gap > (task_size / 6 * 5))
  321. gap = (task_size / 6 * 5);
  322. mm->mmap_base = task_size - (gap & PAGE_MASK);
  323. mm->get_unmapped_area = arch_get_unmapped_area_topdown;
  324. mm->unmap_area = arch_unmap_area_topdown;
  325. }
  326. }
  327. asmlinkage unsigned long sparc_brk(unsigned long brk)
  328. {
  329. /* People could try to be nasty and use ta 0x6d in 32bit programs */
  330. if (test_thread_flag(TIF_32BIT) && brk >= 0xf0000000UL)
  331. return current->mm->brk;
  332. if (unlikely(straddles_64bit_va_hole(current->mm->brk, brk)))
  333. return current->mm->brk;
  334. return sys_brk(brk);
  335. }
  336. /*
  337. * sys_pipe() is the normal C calling standard for creating
  338. * a pipe. It's not the way unix traditionally does this, though.
  339. */
  340. asmlinkage long sparc_pipe(struct pt_regs *regs)
  341. {
  342. int fd[2];
  343. int error;
  344. error = do_pipe(fd);
  345. if (error)
  346. goto out;
  347. regs->u_regs[UREG_I1] = fd[1];
  348. error = fd[0];
  349. out:
  350. return error;
  351. }
  352. /*
  353. * sys_ipc() is the de-multiplexer for the SysV IPC calls..
  354. *
  355. * This is really horribly ugly.
  356. */
  357. asmlinkage long sys_ipc(unsigned int call, int first, unsigned long second,
  358. unsigned long third, void __user *ptr, long fifth)
  359. {
  360. int err;
  361. /* No need for backward compatibility. We can start fresh... */
  362. if (call <= SEMCTL) {
  363. switch (call) {
  364. case SEMOP:
  365. err = sys_semtimedop(first, ptr,
  366. (unsigned)second, NULL);
  367. goto out;
  368. case SEMTIMEDOP:
  369. err = sys_semtimedop(first, ptr, (unsigned)second,
  370. (const struct timespec __user *) fifth);
  371. goto out;
  372. case SEMGET:
  373. err = sys_semget(first, (int)second, (int)third);
  374. goto out;
  375. case SEMCTL: {
  376. union semun fourth;
  377. err = -EINVAL;
  378. if (!ptr)
  379. goto out;
  380. err = -EFAULT;
  381. if (get_user(fourth.__pad,
  382. (void __user * __user *) ptr))
  383. goto out;
  384. err = sys_semctl(first, (int)second | IPC_64,
  385. (int)third, fourth);
  386. goto out;
  387. }
  388. default:
  389. err = -ENOSYS;
  390. goto out;
  391. };
  392. }
  393. if (call <= MSGCTL) {
  394. switch (call) {
  395. case MSGSND:
  396. err = sys_msgsnd(first, ptr, (size_t)second,
  397. (int)third);
  398. goto out;
  399. case MSGRCV:
  400. err = sys_msgrcv(first, ptr, (size_t)second, fifth,
  401. (int)third);
  402. goto out;
  403. case MSGGET:
  404. err = sys_msgget((key_t)first, (int)second);
  405. goto out;
  406. case MSGCTL:
  407. err = sys_msgctl(first, (int)second | IPC_64, ptr);
  408. goto out;
  409. default:
  410. err = -ENOSYS;
  411. goto out;
  412. };
  413. }
  414. if (call <= SHMCTL) {
  415. switch (call) {
  416. case SHMAT: {
  417. ulong raddr;
  418. err = do_shmat(first, ptr, (int)second, &raddr);
  419. if (!err) {
  420. if (put_user(raddr,
  421. (ulong __user *) third))
  422. err = -EFAULT;
  423. }
  424. goto out;
  425. }
  426. case SHMDT:
  427. err = sys_shmdt(ptr);
  428. goto out;
  429. case SHMGET:
  430. err = sys_shmget(first, (size_t)second, (int)third);
  431. goto out;
  432. case SHMCTL:
  433. err = sys_shmctl(first, (int)second | IPC_64, ptr);
  434. goto out;
  435. default:
  436. err = -ENOSYS;
  437. goto out;
  438. };
  439. } else {
  440. err = -ENOSYS;
  441. }
  442. out:
  443. return err;
  444. }
  445. asmlinkage long sparc64_newuname(struct new_utsname __user *name)
  446. {
  447. int ret = sys_newuname(name);
  448. if (current->personality == PER_LINUX32 && !ret) {
  449. ret = (copy_to_user(name->machine, "sparc\0\0", 8)
  450. ? -EFAULT : 0);
  451. }
  452. return ret;
  453. }
  454. asmlinkage long sparc64_personality(unsigned long personality)
  455. {
  456. int ret;
  457. if (current->personality == PER_LINUX32 &&
  458. personality == PER_LINUX)
  459. personality = PER_LINUX32;
  460. ret = sys_personality(personality);
  461. if (ret == PER_LINUX32)
  462. ret = PER_LINUX;
  463. return ret;
  464. }
  465. /* Linux version of mmap */
  466. asmlinkage unsigned long sys_mmap(unsigned long addr, unsigned long len,
  467. unsigned long prot, unsigned long flags, unsigned long fd,
  468. unsigned long off)
  469. {
  470. struct file * file = NULL;
  471. unsigned long retval = -EBADF;
  472. if (!(flags & MAP_ANONYMOUS)) {
  473. file = fget(fd);
  474. if (!file)
  475. goto out;
  476. }
  477. flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
  478. len = PAGE_ALIGN(len);
  479. retval = -EINVAL;
  480. if (test_thread_flag(TIF_32BIT)) {
  481. if (len >= 0xf0000000UL)
  482. goto out_putf;
  483. if ((flags & MAP_FIXED) && addr > 0xf0000000UL - len)
  484. goto out_putf;
  485. } else {
  486. if (len >= VA_EXCLUDE_START)
  487. goto out_putf;
  488. if ((flags & MAP_FIXED) && invalid_64bit_range(addr, len))
  489. goto out_putf;
  490. }
  491. down_write(&current->mm->mmap_sem);
  492. retval = do_mmap(file, addr, len, prot, flags, off);
  493. up_write(&current->mm->mmap_sem);
  494. out_putf:
  495. if (file)
  496. fput(file);
  497. out:
  498. return retval;
  499. }
  500. asmlinkage long sys64_munmap(unsigned long addr, size_t len)
  501. {
  502. long ret;
  503. if (invalid_64bit_range(addr, len))
  504. return -EINVAL;
  505. down_write(&current->mm->mmap_sem);
  506. ret = do_munmap(current->mm, addr, len);
  507. up_write(&current->mm->mmap_sem);
  508. return ret;
  509. }
  510. extern unsigned long do_mremap(unsigned long addr,
  511. unsigned long old_len, unsigned long new_len,
  512. unsigned long flags, unsigned long new_addr);
  513. asmlinkage unsigned long sys64_mremap(unsigned long addr,
  514. unsigned long old_len, unsigned long new_len,
  515. unsigned long flags, unsigned long new_addr)
  516. {
  517. struct vm_area_struct *vma;
  518. unsigned long ret = -EINVAL;
  519. if (test_thread_flag(TIF_32BIT))
  520. goto out;
  521. if (unlikely(new_len >= VA_EXCLUDE_START))
  522. goto out;
  523. if (unlikely(invalid_64bit_range(addr, old_len)))
  524. goto out;
  525. down_write(&current->mm->mmap_sem);
  526. if (flags & MREMAP_FIXED) {
  527. if (invalid_64bit_range(new_addr, new_len))
  528. goto out_sem;
  529. } else if (invalid_64bit_range(addr, new_len)) {
  530. unsigned long map_flags = 0;
  531. struct file *file = NULL;
  532. ret = -ENOMEM;
  533. if (!(flags & MREMAP_MAYMOVE))
  534. goto out_sem;
  535. vma = find_vma(current->mm, addr);
  536. if (vma) {
  537. if (vma->vm_flags & VM_SHARED)
  538. map_flags |= MAP_SHARED;
  539. file = vma->vm_file;
  540. }
  541. /* MREMAP_FIXED checked above. */
  542. new_addr = get_unmapped_area(file, addr, new_len,
  543. vma ? vma->vm_pgoff : 0,
  544. map_flags);
  545. ret = new_addr;
  546. if (new_addr & ~PAGE_MASK)
  547. goto out_sem;
  548. flags |= MREMAP_FIXED;
  549. }
  550. ret = do_mremap(addr, old_len, new_len, flags, new_addr);
  551. out_sem:
  552. up_write(&current->mm->mmap_sem);
  553. out:
  554. return ret;
  555. }
  556. /* we come to here via sys_nis_syscall so it can setup the regs argument */
  557. asmlinkage unsigned long c_sys_nis_syscall(struct pt_regs *regs)
  558. {
  559. static int count;
  560. /* Don't make the system unusable, if someone goes stuck */
  561. if (count++ > 5)
  562. return -ENOSYS;
  563. printk ("Unimplemented SPARC system call %ld\n",regs->u_regs[1]);
  564. #ifdef DEBUG_UNIMP_SYSCALL
  565. show_regs (regs);
  566. #endif
  567. return -ENOSYS;
  568. }
  569. /* #define DEBUG_SPARC_BREAKPOINT */
  570. asmlinkage void sparc_breakpoint(struct pt_regs *regs)
  571. {
  572. siginfo_t info;
  573. if (test_thread_flag(TIF_32BIT)) {
  574. regs->tpc &= 0xffffffff;
  575. regs->tnpc &= 0xffffffff;
  576. }
  577. #ifdef DEBUG_SPARC_BREAKPOINT
  578. printk ("TRAP: Entering kernel PC=%lx, nPC=%lx\n", regs->tpc, regs->tnpc);
  579. #endif
  580. info.si_signo = SIGTRAP;
  581. info.si_errno = 0;
  582. info.si_code = TRAP_BRKPT;
  583. info.si_addr = (void __user *)regs->tpc;
  584. info.si_trapno = 0;
  585. force_sig_info(SIGTRAP, &info, current);
  586. #ifdef DEBUG_SPARC_BREAKPOINT
  587. printk ("TRAP: Returning to space: PC=%lx nPC=%lx\n", regs->tpc, regs->tnpc);
  588. #endif
  589. }
  590. extern void check_pending(int signum);
  591. asmlinkage long sys_getdomainname(char __user *name, int len)
  592. {
  593. int nlen;
  594. int err = -EFAULT;
  595. down_read(&uts_sem);
  596. nlen = strlen(system_utsname.domainname) + 1;
  597. if (nlen < len)
  598. len = nlen;
  599. if (len > __NEW_UTS_LEN)
  600. goto done;
  601. if (copy_to_user(name, system_utsname.domainname, len))
  602. goto done;
  603. err = 0;
  604. done:
  605. up_read(&uts_sem);
  606. return err;
  607. }
  608. asmlinkage long solaris_syscall(struct pt_regs *regs)
  609. {
  610. static int count;
  611. regs->tpc = regs->tnpc;
  612. regs->tnpc += 4;
  613. if (test_thread_flag(TIF_32BIT)) {
  614. regs->tpc &= 0xffffffff;
  615. regs->tnpc &= 0xffffffff;
  616. }
  617. if (++count <= 5) {
  618. printk ("For Solaris binary emulation you need solaris module loaded\n");
  619. show_regs (regs);
  620. }
  621. send_sig(SIGSEGV, current, 1);
  622. return -ENOSYS;
  623. }
  624. #ifndef CONFIG_SUNOS_EMUL
  625. asmlinkage long sunos_syscall(struct pt_regs *regs)
  626. {
  627. static int count;
  628. regs->tpc = regs->tnpc;
  629. regs->tnpc += 4;
  630. if (test_thread_flag(TIF_32BIT)) {
  631. regs->tpc &= 0xffffffff;
  632. regs->tnpc &= 0xffffffff;
  633. }
  634. if (++count <= 20)
  635. printk ("SunOS binary emulation not compiled in\n");
  636. force_sig(SIGSEGV, current);
  637. return -ENOSYS;
  638. }
  639. #endif
  640. asmlinkage long sys_utrap_install(utrap_entry_t type,
  641. utrap_handler_t new_p,
  642. utrap_handler_t new_d,
  643. utrap_handler_t __user *old_p,
  644. utrap_handler_t __user *old_d)
  645. {
  646. if (type < UT_INSTRUCTION_EXCEPTION || type > UT_TRAP_INSTRUCTION_31)
  647. return -EINVAL;
  648. if (new_p == (utrap_handler_t)(long)UTH_NOCHANGE) {
  649. if (old_p) {
  650. if (!current_thread_info()->utraps) {
  651. if (put_user(NULL, old_p))
  652. return -EFAULT;
  653. } else {
  654. if (put_user((utrap_handler_t)(current_thread_info()->utraps[type]), old_p))
  655. return -EFAULT;
  656. }
  657. }
  658. if (old_d) {
  659. if (put_user(NULL, old_d))
  660. return -EFAULT;
  661. }
  662. return 0;
  663. }
  664. if (!current_thread_info()->utraps) {
  665. current_thread_info()->utraps =
  666. kzalloc((UT_TRAP_INSTRUCTION_31+1)*sizeof(long), GFP_KERNEL);
  667. if (!current_thread_info()->utraps)
  668. return -ENOMEM;
  669. current_thread_info()->utraps[0] = 1;
  670. } else {
  671. if ((utrap_handler_t)current_thread_info()->utraps[type] != new_p &&
  672. current_thread_info()->utraps[0] > 1) {
  673. long *p = current_thread_info()->utraps;
  674. current_thread_info()->utraps =
  675. kmalloc((UT_TRAP_INSTRUCTION_31+1)*sizeof(long),
  676. GFP_KERNEL);
  677. if (!current_thread_info()->utraps) {
  678. current_thread_info()->utraps = p;
  679. return -ENOMEM;
  680. }
  681. p[0]--;
  682. current_thread_info()->utraps[0] = 1;
  683. memcpy(current_thread_info()->utraps+1, p+1,
  684. UT_TRAP_INSTRUCTION_31*sizeof(long));
  685. }
  686. }
  687. if (old_p) {
  688. if (put_user((utrap_handler_t)(current_thread_info()->utraps[type]), old_p))
  689. return -EFAULT;
  690. }
  691. if (old_d) {
  692. if (put_user(NULL, old_d))
  693. return -EFAULT;
  694. }
  695. current_thread_info()->utraps[type] = (long)new_p;
  696. return 0;
  697. }
  698. long sparc_memory_ordering(unsigned long model, struct pt_regs *regs)
  699. {
  700. if (model >= 3)
  701. return -EINVAL;
  702. regs->tstate = (regs->tstate & ~TSTATE_MM) | (model << 14);
  703. return 0;
  704. }
  705. asmlinkage long sys_rt_sigaction(int sig,
  706. const struct sigaction __user *act,
  707. struct sigaction __user *oact,
  708. void __user *restorer,
  709. size_t sigsetsize)
  710. {
  711. struct k_sigaction new_ka, old_ka;
  712. int ret;
  713. /* XXX: Don't preclude handling different sized sigset_t's. */
  714. if (sigsetsize != sizeof(sigset_t))
  715. return -EINVAL;
  716. if (act) {
  717. new_ka.ka_restorer = restorer;
  718. if (copy_from_user(&new_ka.sa, act, sizeof(*act)))
  719. return -EFAULT;
  720. }
  721. ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
  722. if (!ret && oact) {
  723. if (copy_to_user(oact, &old_ka.sa, sizeof(*oact)))
  724. return -EFAULT;
  725. }
  726. return ret;
  727. }
  728. /* Invoked by rtrap code to update performance counters in
  729. * user space.
  730. */
  731. asmlinkage void update_perfctrs(void)
  732. {
  733. unsigned long pic, tmp;
  734. read_pic(pic);
  735. tmp = (current_thread_info()->kernel_cntd0 += (unsigned int)pic);
  736. __put_user(tmp, current_thread_info()->user_cntd0);
  737. tmp = (current_thread_info()->kernel_cntd1 += (pic >> 32));
  738. __put_user(tmp, current_thread_info()->user_cntd1);
  739. reset_pic();
  740. }
  741. asmlinkage long sys_perfctr(int opcode, unsigned long arg0, unsigned long arg1, unsigned long arg2)
  742. {
  743. int err = 0;
  744. switch(opcode) {
  745. case PERFCTR_ON:
  746. current_thread_info()->pcr_reg = arg2;
  747. current_thread_info()->user_cntd0 = (u64 __user *) arg0;
  748. current_thread_info()->user_cntd1 = (u64 __user *) arg1;
  749. current_thread_info()->kernel_cntd0 =
  750. current_thread_info()->kernel_cntd1 = 0;
  751. write_pcr(arg2);
  752. reset_pic();
  753. set_thread_flag(TIF_PERFCTR);
  754. break;
  755. case PERFCTR_OFF:
  756. err = -EINVAL;
  757. if (test_thread_flag(TIF_PERFCTR)) {
  758. current_thread_info()->user_cntd0 =
  759. current_thread_info()->user_cntd1 = NULL;
  760. current_thread_info()->pcr_reg = 0;
  761. write_pcr(0);
  762. clear_thread_flag(TIF_PERFCTR);
  763. err = 0;
  764. }
  765. break;
  766. case PERFCTR_READ: {
  767. unsigned long pic, tmp;
  768. if (!test_thread_flag(TIF_PERFCTR)) {
  769. err = -EINVAL;
  770. break;
  771. }
  772. read_pic(pic);
  773. tmp = (current_thread_info()->kernel_cntd0 += (unsigned int)pic);
  774. err |= __put_user(tmp, current_thread_info()->user_cntd0);
  775. tmp = (current_thread_info()->kernel_cntd1 += (pic >> 32));
  776. err |= __put_user(tmp, current_thread_info()->user_cntd1);
  777. reset_pic();
  778. break;
  779. }
  780. case PERFCTR_CLRPIC:
  781. if (!test_thread_flag(TIF_PERFCTR)) {
  782. err = -EINVAL;
  783. break;
  784. }
  785. current_thread_info()->kernel_cntd0 =
  786. current_thread_info()->kernel_cntd1 = 0;
  787. reset_pic();
  788. break;
  789. case PERFCTR_SETPCR: {
  790. u64 __user *user_pcr = (u64 __user *)arg0;
  791. if (!test_thread_flag(TIF_PERFCTR)) {
  792. err = -EINVAL;
  793. break;
  794. }
  795. err |= __get_user(current_thread_info()->pcr_reg, user_pcr);
  796. write_pcr(current_thread_info()->pcr_reg);
  797. current_thread_info()->kernel_cntd0 =
  798. current_thread_info()->kernel_cntd1 = 0;
  799. reset_pic();
  800. break;
  801. }
  802. case PERFCTR_GETPCR: {
  803. u64 __user *user_pcr = (u64 __user *)arg0;
  804. if (!test_thread_flag(TIF_PERFCTR)) {
  805. err = -EINVAL;
  806. break;
  807. }
  808. err |= __put_user(current_thread_info()->pcr_reg, user_pcr);
  809. break;
  810. }
  811. default:
  812. err = -EINVAL;
  813. break;
  814. };
  815. return err;
  816. }