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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * irixsig.c: WHEEE, IRIX signals!  YOW, am I compatable or what?!?!
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5.  * Copyright (C) 1997 - 2000 Ralf Baechle (ralf@gnu.org)
  6.  * Copyright (C) 2000 Silicon Graphics, Inc.
  7.  */
  8. #include <linux/kernel.h>
  9. #include <linux/sched.h>
  10. #include <linux/mm.h>
  11. #include <linux/errno.h>
  12. #include <linux/smp.h>
  13. #include <linux/smp_lock.h>
  14. #include <linux/time.h>
  15. #include <asm/ptrace.h>
  16. #include <asm/uaccess.h>
  17. extern asmlinkage void syscall_trace(void);
  18. #undef DEBUG_SIG
  19. #define _S(nr) (1<<((nr)-1))
  20. #define _BLOCKABLE (~(_S(SIGKILL) | _S(SIGSTOP)))
  21. typedef struct {
  22. unsigned long sig[4];
  23. } irix_sigset_t;
  24. struct sigctx_irix5 {
  25. u32 rmask, cp0_status;
  26. u64 pc;
  27. u64 regs[32];
  28. u64 fpregs[32];
  29. u32 usedfp, fpcsr, fpeir, sstk_flags;
  30. u64 hi, lo;
  31. u64 cp0_cause, cp0_badvaddr, _unused0;
  32. irix_sigset_t sigset;
  33. u64 weird_fpu_thing;
  34. u64 _unused1[31];
  35. };
  36. #ifdef DEBUG_SIG
  37. /* Debugging */
  38. static inline void dump_irix5_sigctx(struct sigctx_irix5 *c)
  39. {
  40. int i;
  41. printk("misc: rmask[%08lx] status[%08lx] pc[%08lx]n",
  42.        (unsigned long) c->rmask,
  43.        (unsigned long) c->cp0_status,
  44.        (unsigned long) c->pc);
  45. printk("regs: ");
  46. for(i = 0; i < 16; i++)
  47. printk("[%d]<%08lx> ", i, (unsigned long) c->regs[i]);
  48. printk("nregs: ");
  49. for(i = 16; i < 32; i++)
  50. printk("[%d]<%08lx> ", i, (unsigned long) c->regs[i]);
  51. printk("nfpregs: ");
  52. for(i = 0; i < 16; i++)
  53. printk("[%d]<%08lx> ", i, (unsigned long) c->fpregs[i]);
  54. printk("nfpregs: ");
  55. for(i = 16; i < 32; i++)
  56. printk("[%d]<%08lx> ", i, (unsigned long) c->fpregs[i]);
  57. printk("misc: usedfp[%d] fpcsr[%08lx] fpeir[%08lx] stk_flgs[%08lx]n",
  58.        (int) c->usedfp, (unsigned long) c->fpcsr,
  59.        (unsigned long) c->fpeir, (unsigned long) c->sstk_flags);
  60. printk("misc: hi[%08lx] lo[%08lx] cause[%08lx] badvaddr[%08lx]n",
  61.        (unsigned long) c->hi, (unsigned long) c->lo,
  62.        (unsigned long) c->cp0_cause, (unsigned long) c->cp0_badvaddr);
  63. printk("misc: sigset<0>[%08lx] sigset<1>[%08lx] sigset<2>[%08lx] "
  64.        "sigset<3>[%08lx]n", (unsigned long) c->sigset.sig[0],
  65.        (unsigned long) c->sigset.sig[1],
  66.        (unsigned long) c->sigset.sig[2],
  67.        (unsigned long) c->sigset.sig[3]);
  68. }
  69. #endif
  70. static void setup_irix_frame(struct k_sigaction *ka, struct pt_regs *regs,
  71.      int signr, sigset_t *oldmask)
  72. {
  73. unsigned long sp;
  74. struct sigctx_irix5 *ctx;
  75. int i;
  76. sp = regs->regs[29];
  77. sp -= sizeof(struct sigctx_irix5);
  78. sp &= ~(0xf);
  79. ctx = (struct sigctx_irix5 *) sp;
  80. if (!access_ok(VERIFY_WRITE, ctx, sizeof(*ctx)))
  81. goto segv_and_exit;
  82. __put_user(0, &ctx->weird_fpu_thing);
  83. __put_user(~(0x00000001), &ctx->rmask);
  84. __put_user(0, &ctx->regs[0]);
  85. for(i = 1; i < 32; i++)
  86. __put_user((u64) regs->regs[i], &ctx->regs[i]);
  87. __put_user((u64) regs->hi, &ctx->hi);
  88. __put_user((u64) regs->lo, &ctx->lo);
  89. __put_user((u64) regs->cp0_epc, &ctx->pc);
  90. __put_user(current->used_math, &ctx->usedfp);
  91. __put_user((u64) regs->cp0_cause, &ctx->cp0_cause);
  92. __put_user((u64) regs->cp0_badvaddr, &ctx->cp0_badvaddr);
  93. __put_user(0, &ctx->sstk_flags); /* XXX sigstack unimp... todo... */
  94. __copy_to_user(&ctx->sigset, oldmask, sizeof(irix_sigset_t));
  95. #ifdef DEBUG_SIG
  96. dump_irix5_sigctx(ctx);
  97. #endif
  98. regs->regs[4] = (unsigned long) signr;
  99. regs->regs[5] = 0; /* XXX sigcode XXX */
  100. regs->regs[6] = regs->regs[29] = sp;
  101. regs->regs[7] = (unsigned long) ka->sa.sa_handler;
  102. regs->regs[25] = regs->cp0_epc = (unsigned long) ka->sa.sa_restorer;
  103. return;
  104. segv_and_exit:
  105. if (signr == SIGSEGV)
  106. ka->sa.sa_handler = SIG_DFL;
  107. force_sig(SIGSEGV, current);
  108. }
  109. static void inline
  110. setup_irix_rt_frame(struct k_sigaction * ka, struct pt_regs *regs,
  111.                int signr, sigset_t *oldmask, siginfo_t *info)
  112. {
  113. printk("Aiee: setup_tr_frame wants to be written");
  114. do_exit(SIGSEGV);
  115. }
  116. static inline void handle_signal(unsigned long sig, struct k_sigaction *ka,
  117.         siginfo_t *info, sigset_t *oldset, struct pt_regs * regs)
  118. {
  119. if (ka->sa.sa_flags & SA_SIGINFO)
  120. setup_irix_rt_frame(ka, regs, sig, oldset, info);
  121. else
  122. setup_irix_frame(ka, regs, sig, oldset);
  123. if (ka->sa.sa_flags & SA_ONESHOT)
  124. ka->sa.sa_handler = SIG_DFL;
  125. if (!(ka->sa.sa_flags & SA_NODEFER)) {
  126. spin_lock_irq(&current->sigmask_lock);
  127. sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
  128. sigaddset(&current->blocked,sig);
  129. recalc_sigpending(current);
  130. spin_unlock_irq(&current->sigmask_lock);
  131. }
  132. }
  133. static inline void syscall_restart(struct pt_regs *regs, struct k_sigaction *ka)
  134. {
  135. switch(regs->regs[0]) {
  136. case ERESTARTNOHAND:
  137. regs->regs[2] = EINTR;
  138. break;
  139. case ERESTARTSYS:
  140. if(!(ka->sa.sa_flags & SA_RESTART)) {
  141. regs->regs[2] = EINTR;
  142. break;
  143. }
  144. /* fallthrough */
  145. case ERESTARTNOINTR: /* Userland will reload $v0.  */
  146. regs->cp0_epc -= 8;
  147. }
  148. regs->regs[0] = 0; /* Don't deal with this again.  */
  149. }
  150. asmlinkage int do_irix_signal(sigset_t *oldset, struct pt_regs *regs)
  151. {
  152. struct k_sigaction *ka;
  153. siginfo_t info;
  154. if (!oldset)
  155. oldset = &current->blocked;
  156. for (;;) {
  157. unsigned long signr;
  158. spin_lock_irq(&current->sigmask_lock);
  159. signr = dequeue_signal(&current->blocked, &info);
  160. spin_unlock_irq(&current->sigmask_lock);
  161. if (!signr)
  162. break;
  163. if ((current->ptrace & PT_PTRACED) && signr != SIGKILL) {
  164. /* Let the debugger run.  */
  165. current->exit_code = signr;
  166. current->state = TASK_STOPPED;
  167. notify_parent(current, SIGCHLD);
  168. schedule();
  169. /* We're back.  Did the debugger cancel the sig?  */
  170. if (!(signr = current->exit_code))
  171. continue;
  172. current->exit_code = 0;
  173. /* The debugger continued.  Ignore SIGSTOP.  */
  174. if (signr == SIGSTOP)
  175. continue;
  176. /* Update the siginfo structure.  Is this good?  */
  177. if (signr != info.si_signo) {
  178. info.si_signo = signr;
  179. info.si_errno = 0;
  180. info.si_code = SI_USER;
  181. info.si_pid = current->p_pptr->pid;
  182. info.si_uid = current->p_pptr->uid;
  183. }
  184. /* If the (new) signal is now blocked, requeue it.  */
  185. if (sigismember(&current->blocked, signr)) {
  186. send_sig_info(signr, &info, current);
  187. continue;
  188. }
  189. }
  190. ka = &current->sig->action[signr-1];
  191. if (ka->sa.sa_handler == SIG_IGN) {
  192. if (signr != SIGCHLD)
  193. continue;
  194. /* Check for SIGCHLD: it's special.  */
  195. while (sys_wait4(-1, NULL, WNOHANG, NULL) > 0)
  196. /* nothing */;
  197. continue;
  198. }
  199. if (ka->sa.sa_handler == SIG_DFL) {
  200. int exit_code = signr;
  201. /* Init gets no signals it doesn't want.  */
  202. if (current->pid == 1)
  203. continue;
  204. switch (signr) {
  205. case SIGCONT: case SIGCHLD: case SIGWINCH:
  206. continue;
  207. case SIGTSTP: case SIGTTIN: case SIGTTOU:
  208. if (is_orphaned_pgrp(current->pgrp))
  209. continue;
  210. /* FALLTHRU */
  211. case SIGSTOP:
  212. current->state = TASK_STOPPED;
  213. current->exit_code = signr;
  214. if (!(current->p_pptr->sig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
  215. notify_parent(current, SIGCHLD);
  216. schedule();
  217. continue;
  218. case SIGQUIT: case SIGILL: case SIGTRAP:
  219. case SIGABRT: case SIGFPE: case SIGSEGV:
  220. if (do_coredump(signr, regs))
  221. exit_code |= 0x80;
  222. /* FALLTHRU */
  223. default:
  224. sigaddset(&current->pending.signal, signr);
  225. recalc_sigpending(current);
  226. current->flags |= PF_SIGNALED;
  227. do_exit(exit_code);
  228. /* NOTREACHED */
  229. }
  230. }
  231. if (regs->regs[0])
  232. syscall_restart(regs, ka);
  233. /* Whee!  Actually deliver the signal.  */
  234. handle_signal(signr, ka, &info, oldset, regs);
  235. return 1;
  236. }
  237. /*
  238.  * Who's code doesn't conform to the restartable syscall convention
  239.  * dies here!!!  The li instruction, a single machine instruction,
  240.  * must directly be followed by the syscall instruction.
  241.  */
  242. if (regs->regs[0]) {
  243. if (regs->regs[2] == ERESTARTNOHAND ||
  244.     regs->regs[2] == ERESTARTSYS ||
  245.     regs->regs[2] == ERESTARTNOINTR) {
  246. regs->cp0_epc -= 8;
  247. }
  248. }
  249. return 0;
  250. }
  251. asmlinkage void
  252. irix_sigreturn(struct pt_regs *regs)
  253. {
  254. struct sigctx_irix5 *context, *magic;
  255. unsigned long umask, mask;
  256. u64 *fregs;
  257. int sig, i, base = 0;
  258. sigset_t blocked;
  259. if(regs->regs[2] == 1000)
  260. base = 1;
  261. context = (struct sigctx_irix5 *) regs->regs[base + 4];
  262. magic = (struct sigctx_irix5 *) regs->regs[base + 5];
  263. sig = (int) regs->regs[base + 6];
  264. #ifdef DEBUG_SIG
  265. printk("[%s:%d] IRIX sigreturn(scp[%p],ucp[%p],sig[%d])n",
  266.        current->comm, current->pid, context, magic, sig);
  267. #endif
  268. if (!context)
  269. context = magic;
  270. if (!access_ok(VERIFY_READ, context, sizeof(struct sigctx_irix5)))
  271. goto badframe;
  272. #ifdef DEBUG_SIG
  273. dump_irix5_sigctx(context);
  274. #endif
  275. __get_user(regs->cp0_epc, &context->pc);
  276. umask = context->rmask; mask = 2;
  277. for (i = 1; i < 32; i++, mask <<= 1) {
  278. if(umask & mask)
  279. __get_user(regs->regs[i], &context->regs[i]);
  280. }
  281. __get_user(regs->hi, &context->hi);
  282. __get_user(regs->lo, &context->lo);
  283. if ((umask & 1) && context->usedfp) {
  284. fregs = (u64 *) &current->thread.fpu;
  285. for(i = 0; i < 32; i++)
  286. fregs[i] = (u64) context->fpregs[i];
  287. __get_user(current->thread.fpu.hard.control, &context->fpcsr);
  288. }
  289. /* XXX do sigstack crapola here... XXX */
  290. if (__copy_from_user(&blocked, &context->sigset, sizeof(blocked)))
  291. goto badframe;
  292. sigdelsetmask(&blocked, ~_BLOCKABLE);
  293. spin_lock_irq(&current->sigmask_lock);
  294. current->blocked = blocked;
  295. recalc_sigpending(current);
  296. spin_unlock_irq(&current->sigmask_lock);
  297. /*
  298.  * Don't let your children do this ...
  299.  */
  300. if (current->ptrace & PT_TRACESYS)
  301. syscall_trace();
  302. __asm__ __volatile__(
  303. "movet$29,%0nt"
  304. "jtret_from_sys_call"
  305. :/* no outputs */
  306. :"r" (&regs));
  307. /* Unreached */
  308. badframe:
  309. force_sig(SIGSEGV, current);
  310. }
  311. struct sigact_irix5 {
  312. int flags;
  313. void (*handler)(int);
  314. u32 sigset[4];
  315. int _unused0[2];
  316. };
  317. #ifdef DEBUG_SIG
  318. static inline void dump_sigact_irix5(struct sigact_irix5 *p)
  319. {
  320. printk("<f[%d] hndlr[%08lx] msk[%08lx]>", p->flags,
  321.        (unsigned long) p->handler,
  322.        (unsigned long) p->sigset[0]);
  323. }
  324. #endif
  325. asmlinkage int 
  326. irix_sigaction(int sig, const struct sigaction *act,
  327.       struct sigaction *oact, void *trampoline)
  328. {
  329. struct k_sigaction new_ka, old_ka;
  330. int ret;
  331. #ifdef DEBUG_SIG
  332. printk(" (%d,%s,%s,%08lx) ", sig, (!new ? "0" : "NEW"),
  333.        (!old ? "0" : "OLD"), trampoline);
  334. if(new) {
  335. dump_sigact_irix5(new); printk(" ");
  336. }
  337. #endif
  338. if (act) {
  339. sigset_t mask;
  340. if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
  341.     __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
  342.     __get_user(new_ka.sa.sa_flags, &act->sa_flags))
  343. return -EFAULT;
  344. __copy_from_user(&mask, &act->sa_mask, sizeof(sigset_t));
  345. /*
  346.  * Hmmm... methinks IRIX libc always passes a valid trampoline
  347.  * value for all invocations of sigaction.  Will have to
  348.  * investigate.  POSIX POSIX, die die die...
  349.  */
  350. new_ka.sa.sa_restorer = trampoline;
  351. }
  352. /* XXX Implement SIG_SETMASK32 for IRIX compatibility */
  353. ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
  354. if (!ret && oact) {
  355. if (verify_area(VERIFY_WRITE, oact, sizeof(*oact)) ||
  356.     __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
  357.     __put_user(old_ka.sa.sa_flags, &oact->sa_flags))
  358. return -EFAULT;
  359. __copy_to_user(&old_ka.sa.sa_mask, &oact->sa_mask,
  360.                sizeof(sigset_t));
  361. }
  362. return ret;
  363. }
  364. asmlinkage int irix_sigpending(irix_sigset_t *set)
  365. {
  366. return do_sigpending(set, sizeof(*set));
  367. }
  368. asmlinkage int irix_sigprocmask(int how, irix_sigset_t *new, irix_sigset_t *old)
  369. {
  370. sigset_t oldbits, newbits;
  371. int error;
  372. if (new) {
  373. error = verify_area(VERIFY_READ, new, sizeof(*new));
  374. if (error)
  375. return error;
  376. __copy_from_user(&newbits, new, sizeof(unsigned long)*4);
  377. sigdelsetmask(&newbits, ~_BLOCKABLE);
  378. spin_lock_irq(&current->sigmask_lock);
  379. oldbits = current->blocked;
  380. switch(how) {
  381. case 1:
  382. sigorsets(&newbits, &oldbits, &newbits);
  383. break;
  384. case 2:
  385. sigandsets(&newbits, &oldbits, &newbits);
  386. break;
  387. case 3:
  388. break;
  389. case 256:
  390. siginitset(&newbits, newbits.sig[0]);
  391. break;
  392. default:
  393. return -EINVAL;
  394. }
  395. recalc_sigpending(current);
  396. spin_unlock_irq(&current->sigmask_lock);
  397. }
  398. if(old) {
  399. error = verify_area(VERIFY_WRITE, old, sizeof(*old));
  400. if(error)
  401. return error;
  402. __copy_to_user(old, &current->blocked, sizeof(unsigned long)*4);
  403. }
  404. return 0;
  405. }
  406. asmlinkage int irix_sigsuspend(struct pt_regs *regs)
  407. {
  408. sigset_t *uset, saveset, newset;
  409. uset = (sigset_t *) regs->regs[4];
  410. if (copy_from_user(&newset, uset, sizeof(sigset_t)))
  411. return -EFAULT;
  412. sigdelsetmask(&newset, ~_BLOCKABLE);
  413. spin_lock_irq(&current->sigmask_lock);
  414. saveset = current->blocked;
  415. current->blocked = newset;
  416. recalc_sigpending(current);
  417. spin_unlock_irq(&current->sigmask_lock);
  418. regs->regs[2] = -EINTR;
  419. while (1) {
  420. current->state = TASK_INTERRUPTIBLE;
  421. schedule();
  422. if (do_irix_signal(&saveset, regs))
  423. return -EINTR;
  424. }
  425. }
  426. /* hate hate hate... */
  427. struct irix5_siginfo {
  428. int sig, code, error;
  429. union {
  430. char unused[128 - (3 * 4)]; /* Safety net. */
  431. struct {
  432. int pid;
  433. union {
  434. int uid;
  435. struct {
  436. int utime, status, stime;
  437. } child;
  438. } procdata;
  439. } procinfo;
  440. unsigned long fault_addr;
  441. struct {
  442. int fd;
  443. long band;
  444. } fileinfo;
  445. unsigned long sigval;
  446. } stuff;
  447. };
  448. static inline unsigned long timespectojiffies(struct timespec *value)
  449. {
  450. unsigned long sec = (unsigned) value->tv_sec;
  451. long nsec = value->tv_nsec;
  452. if (sec > (LONG_MAX / HZ))
  453. return LONG_MAX;
  454. nsec += 1000000000L / HZ - 1;
  455. nsec /= 1000000000L / HZ;
  456. return HZ * sec + nsec;
  457. }
  458. asmlinkage int irix_sigpoll_sys(unsigned long *set, struct irix5_siginfo *info,
  459. struct timespec *tp)
  460. {
  461. long expire = MAX_SCHEDULE_TIMEOUT;
  462. sigset_t kset;
  463. int i, sig, error, timeo = 0;
  464. #ifdef DEBUG_SIG
  465. printk("[%s:%d] irix_sigpoll_sys(%p,%p,%p)n",
  466.        current->comm, current->pid, set, info, tp);
  467. #endif
  468. /* Must always specify the signal set. */
  469. if(!set)
  470. return -EINVAL;
  471. error = verify_area(VERIFY_READ, set, sizeof(kset));
  472. if (error)
  473. goto out;
  474. __copy_from_user(&kset, set, sizeof(set));
  475. if (error)
  476. goto out;
  477. if (info && clear_user(info, sizeof(*info))) {
  478. error = -EFAULT;
  479. goto out;
  480. }
  481. if(tp) {
  482. error = verify_area(VERIFY_READ, tp, sizeof(*tp));
  483. if(error)
  484. return error;
  485. if(!tp->tv_sec && !tp->tv_nsec) {
  486. error = -EINVAL;
  487. goto out;
  488. }
  489. expire = timespectojiffies(tp)+(tp->tv_sec||tp->tv_nsec);
  490. }
  491. while(1) {
  492. long tmp = 0;
  493. current->state = TASK_INTERRUPTIBLE;
  494. expire = schedule_timeout(expire);
  495. for (i=0; i<=4; i++)
  496. tmp |= (current->pending.signal.sig[i] & kset.sig[i]);
  497. if (tmp)
  498. break;
  499. if (!expire) {
  500. timeo = 1;
  501. break;
  502. }
  503. if (signal_pending(current))
  504. return -EINTR;
  505. }
  506. if (timeo)
  507. return -EAGAIN;
  508. for(sig = 1; i <= 65 /* IRIX_NSIG */; sig++) {
  509. if (sigismember (&kset, sig))
  510. continue;
  511. if (sigismember (&current->pending.signal, sig)) {
  512. /* XXX need more than this... */
  513. if (info)
  514. info->sig = sig;
  515. error = 0;
  516. goto out;
  517. }
  518. }
  519. /* Should not get here, but do something sane if we do. */
  520. error = -EINTR;
  521. out:
  522. return error;
  523. }
  524. /* This is here because of irix5_siginfo definition. */
  525. #define P_PID    0
  526. #define P_PGID   2
  527. #define P_ALL    7
  528. extern int getrusage(struct task_struct *, int, struct rusage *);
  529. #define W_EXITED     1
  530. #define W_TRAPPED    2
  531. #define W_STOPPED    4
  532. #define W_CONT       8
  533. #define W_NOHANG    64
  534. #define W_MASK      (W_EXITED | W_TRAPPED | W_STOPPED | W_CONT | W_NOHANG)
  535. asmlinkage int irix_waitsys(int type, int pid, struct irix5_siginfo *info,
  536.     int options, struct rusage *ru)
  537. {
  538. int flag, retval;
  539. DECLARE_WAITQUEUE(wait, current);
  540. struct task_struct *p;
  541. if (!info) {
  542. retval = -EINVAL;
  543. goto out;
  544. }
  545. retval = verify_area(VERIFY_WRITE, info, sizeof(*info));
  546. if(retval)
  547. goto out;
  548. if (ru) {
  549. retval = verify_area(VERIFY_WRITE, ru, sizeof(*ru));
  550. if(retval)
  551. goto out;
  552. }
  553. if (options & ~(W_MASK)) {
  554. retval = -EINVAL;
  555. goto out;
  556. }
  557. if (type != P_PID && type != P_PGID && type != P_ALL) {
  558. retval = -EINVAL;
  559. goto out;
  560. }
  561. add_wait_queue(&current->wait_chldexit, &wait);
  562. repeat:
  563. flag = 0;
  564. current->state = TASK_INTERRUPTIBLE;
  565. read_lock(&tasklist_lock);
  566. for (p = current->p_cptr; p; p = p->p_osptr) {
  567. if ((type == P_PID) && p->pid != pid)
  568. continue;
  569. if ((type == P_PGID) && p->pgrp != pid)
  570. continue;
  571. if ((p->exit_signal != SIGCHLD))
  572. continue;
  573. flag = 1;
  574. switch (p->state) {
  575. case TASK_STOPPED:
  576. if (!p->exit_code)
  577. continue;
  578. if (!(options & (W_TRAPPED|W_STOPPED)) &&
  579.     !(p->ptrace & PT_PTRACED))
  580. continue;
  581. if (ru != NULL)
  582. getrusage(p, RUSAGE_BOTH, ru);
  583. __put_user(SIGCHLD, &info->sig);
  584. __put_user(0, &info->code);
  585. __put_user(p->pid, &info->stuff.procinfo.pid);
  586. __put_user((p->exit_code >> 8) & 0xff,
  587.            &info->stuff.procinfo.procdata.child.status);
  588. __put_user(p->times.tms_utime, &info->stuff.procinfo.procdata.child.utime);
  589. __put_user(p->times.tms_stime, &info->stuff.procinfo.procdata.child.stime);
  590. p->exit_code = 0;
  591. retval = 0;
  592. goto end_waitsys;
  593. case TASK_ZOMBIE:
  594. current->times.tms_cutime += p->times.tms_utime + p->times.tms_cutime;
  595. current->times.tms_cstime += p->times.tms_stime + p->times.tms_cstime;
  596. if (ru != NULL)
  597. getrusage(p, RUSAGE_BOTH, ru);
  598. __put_user(SIGCHLD, &info->sig);
  599. __put_user(1, &info->code);      /* CLD_EXITED */
  600. __put_user(p->pid, &info->stuff.procinfo.pid);
  601. __put_user((p->exit_code >> 8) & 0xff,
  602.            &info->stuff.procinfo.procdata.child.status);
  603. __put_user(p->times.tms_utime,
  604.            &info->stuff.procinfo.procdata.child.utime);
  605. __put_user(p->times.tms_stime,
  606.            &info->stuff.procinfo.procdata.child.stime);
  607. retval = 0;
  608. if (p->p_opptr != p->p_pptr) {
  609. REMOVE_LINKS(p);
  610. p->p_pptr = p->p_opptr;
  611. SET_LINKS(p);
  612. notify_parent(p, SIGCHLD);
  613. } else
  614. release_task(p);
  615. goto end_waitsys;
  616. default:
  617. continue;
  618. }
  619. }
  620. read_unlock(&tasklist_lock);
  621. if (flag) {
  622. retval = 0;
  623. if (options & W_NOHANG)
  624. goto end_waitsys;
  625. retval = -ERESTARTSYS;
  626. if (signal_pending(current))
  627. goto end_waitsys;
  628. current->state = TASK_INTERRUPTIBLE;
  629. schedule();
  630. goto repeat;
  631. }
  632. retval = -ECHILD;
  633. end_waitsys:
  634. current->state = TASK_RUNNING;
  635. remove_wait_queue(&current->wait_chldexit, &wait);
  636. out:
  637. return retval;
  638. }
  639. struct irix5_context {
  640. u32 flags;
  641. u32 link;
  642. u32 sigmask[4];
  643. struct { u32 sp, size, flags; } stack;
  644. int regs[36];
  645. u32 fpregs[32];
  646. u32 fpcsr;
  647. u32 _unused0;
  648. u32 _unused1[47];
  649. u32 weird_graphics_thing;
  650. };
  651. asmlinkage int irix_getcontext(struct pt_regs *regs)
  652. {
  653. int error, i, base = 0;
  654. struct irix5_context *ctx;
  655. unsigned long flags;
  656. if (regs->regs[2] == 1000)
  657. base = 1;
  658. ctx = (struct irix5_context *) regs->regs[base + 4];
  659. #ifdef DEBUG_SIG
  660. printk("[%s:%d] irix_getcontext(%p)n",
  661.        current->comm, current->pid, ctx);
  662. #endif
  663. error = verify_area(VERIFY_WRITE, ctx, sizeof(*ctx));
  664. if(error)
  665. goto out;
  666. __put_user(current->thread.irix_oldctx, &ctx->link);
  667. __copy_to_user(&ctx->sigmask, &current->blocked, sizeof(irix_sigset_t));
  668. /* XXX Do sigstack stuff someday... */
  669. __put_user(0, &ctx->stack.sp);
  670. __put_user(0, &ctx->stack.size);
  671. __put_user(0, &ctx->stack.flags);
  672. __put_user(0, &ctx->weird_graphics_thing);
  673. __put_user(0, &ctx->regs[0]);
  674. for (i = 1; i < 32; i++)
  675. __put_user(regs->regs[i], &ctx->regs[i]);
  676. __put_user(regs->lo, &ctx->regs[32]);
  677. __put_user(regs->hi, &ctx->regs[33]);
  678. __put_user(regs->cp0_cause, &ctx->regs[34]);
  679. __put_user(regs->cp0_epc, &ctx->regs[35]);
  680. flags = 0x0f;
  681. if(!current->used_math) {
  682. flags &= ~(0x08);
  683. } else {
  684. /* XXX wheee... */
  685. printk("Wheee, no code for saving IRIX FPU context yet.n");
  686. }
  687. __put_user(flags, &ctx->flags);
  688. error = 0;
  689. out:
  690. return error;
  691. }
  692. asmlinkage unsigned long irix_setcontext(struct pt_regs *regs)
  693. {
  694. int error, base = 0;
  695. struct irix5_context *ctx;
  696. if(regs->regs[2] == 1000)
  697. base = 1;
  698. ctx = (struct irix5_context *) regs->regs[base + 4];
  699. #ifdef DEBUG_SIG
  700. printk("[%s:%d] irix_setcontext(%p)n",
  701.        current->comm, current->pid, ctx);
  702. #endif
  703. error = verify_area(VERIFY_READ, ctx, sizeof(*ctx));
  704. if (error)
  705. goto out;
  706. if (ctx->flags & 0x02) {
  707. /* XXX sigstack garbage, todo... */
  708. printk("Wheee, cannot do sigstack stuff in setcontextn");
  709. }
  710. if (ctx->flags & 0x04) {
  711. int i;
  712. /* XXX extra control block stuff... todo... */
  713. for(i = 1; i < 32; i++)
  714. regs->regs[i] = ctx->regs[i];
  715. regs->lo = ctx->regs[32];
  716. regs->hi = ctx->regs[33];
  717. regs->cp0_epc = ctx->regs[35];
  718. }
  719. if (ctx->flags & 0x08) {
  720. /* XXX fpu context, blah... */
  721. printk("Wheee, cannot restore FPU context yet...n");
  722. }
  723. current->thread.irix_oldctx = ctx->link;
  724. error = regs->regs[2];
  725. out:
  726. return error;
  727. }
  728. struct irix_sigstack { unsigned long sp; int status; };
  729. asmlinkage int irix_sigstack(struct irix_sigstack *new, struct irix_sigstack *old)
  730. {
  731. int error;
  732. #ifdef DEBUG_SIG
  733. printk("[%s:%d] irix_sigstack(%p,%p)n",
  734.        current->comm, current->pid, new, old);
  735. #endif
  736. if(new) {
  737. error = verify_area(VERIFY_READ, new, sizeof(*new));
  738. if(error)
  739. goto out;
  740. }
  741. if(old) {
  742. error = verify_area(VERIFY_WRITE, old, sizeof(*old));
  743. if(error)
  744. goto out;
  745. }
  746. error = 0;
  747. out:
  748. return error;
  749. }
  750. struct irix_sigaltstack { unsigned long sp; int size; int status; };
  751. asmlinkage int irix_sigaltstack(struct irix_sigaltstack *new,
  752. struct irix_sigaltstack *old)
  753. {
  754. int error;
  755. #ifdef DEBUG_SIG
  756. printk("[%s:%d] irix_sigaltstack(%p,%p)n",
  757.        current->comm, current->pid, new, old);
  758. #endif
  759. if (new) {
  760. error = verify_area(VERIFY_READ, new, sizeof(*new));
  761. if(error)
  762. goto out;
  763. }
  764. if (old) {
  765. error = verify_area(VERIFY_WRITE, old, sizeof(*old));
  766. if(error)
  767. goto out;
  768. }
  769. error = 0;
  770. out:
  771. error = 0;
  772. return error;
  773. }
  774. struct irix_procset {
  775. int cmd, ltype, lid, rtype, rid;
  776. };
  777. asmlinkage int irix_sigsendset(struct irix_procset *pset, int sig)
  778. {
  779. int error;
  780. error = verify_area(VERIFY_READ, pset, sizeof(*pset));
  781. if(error)
  782. goto out;
  783. #ifdef DEBUG_SIG
  784. printk("[%s:%d] irix_sigsendset([%d,%d,%d,%d,%d],%d)n",
  785.        current->comm, current->pid,
  786.        pset->cmd, pset->ltype, pset->lid, pset->rtype, pset->rid,
  787.        sig);
  788. #endif
  789. error = -EINVAL;
  790. out:
  791. return error;
  792. }