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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/kernel/signal.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  *
  6.  *  1997-11-02  Modified for POSIX.1b signals by Richard Henderson
  7.  */
  8. #include <linux/config.h>
  9. #include <linux/slab.h>
  10. #include <linux/module.h>
  11. #include <linux/unistd.h>
  12. #include <linux/smp_lock.h>
  13. #include <linux/init.h>
  14. #include <linux/sched.h>
  15. #include <asm/uaccess.h>
  16. /*
  17.  * SLAB caches for signal bits.
  18.  */
  19. #define DEBUG_SIG 0
  20. #if DEBUG_SIG
  21. #define SIG_SLAB_DEBUG (SLAB_DEBUG_FREE | SLAB_RED_ZONE /* | SLAB_POISON */)
  22. #else
  23. #define SIG_SLAB_DEBUG 0
  24. #endif
  25. static kmem_cache_t *sigqueue_cachep;
  26. atomic_t nr_queued_signals;
  27. int max_queued_signals = 1024;
  28. void __init signals_init(void)
  29. {
  30. sigqueue_cachep =
  31. kmem_cache_create("sigqueue",
  32.   sizeof(struct sigqueue),
  33.   __alignof__(struct sigqueue),
  34.   SIG_SLAB_DEBUG, NULL, NULL);
  35. if (!sigqueue_cachep)
  36. panic("signals_init(): cannot create sigqueue SLAB cache");
  37. }
  38. /* Given the mask, find the first available signal that should be serviced. */
  39. static int
  40. next_signal(struct task_struct *tsk, sigset_t *mask)
  41. {
  42. unsigned long i, *s, *m, x;
  43. int sig = 0;
  44. s = tsk->pending.signal.sig;
  45. m = mask->sig;
  46. switch (_NSIG_WORDS) {
  47. default:
  48. for (i = 0; i < _NSIG_WORDS; ++i, ++s, ++m)
  49. if ((x = *s &~ *m) != 0) {
  50. sig = ffz(~x) + i*_NSIG_BPW + 1;
  51. break;
  52. }
  53. break;
  54. case 2: if ((x = s[0] &~ m[0]) != 0)
  55. sig = 1;
  56. else if ((x = s[1] &~ m[1]) != 0)
  57. sig = _NSIG_BPW + 1;
  58. else
  59. break;
  60. sig += ffz(~x);
  61. break;
  62. case 1: if ((x = *s &~ *m) != 0)
  63. sig = ffz(~x) + 1;
  64. break;
  65. }
  66. return sig;
  67. }
  68. static void flush_sigqueue(struct sigpending *queue)
  69. {
  70. struct sigqueue *q, *n;
  71. sigemptyset(&queue->signal);
  72. q = queue->head;
  73. queue->head = NULL;
  74. queue->tail = &queue->head;
  75. while (q) {
  76. n = q->next;
  77. kmem_cache_free(sigqueue_cachep, q);
  78. atomic_dec(&nr_queued_signals);
  79. q = n;
  80. }
  81. }
  82. /*
  83.  * Flush all pending signals for a task.
  84.  */
  85. void
  86. flush_signals(struct task_struct *t)
  87. {
  88. t->sigpending = 0;
  89. flush_sigqueue(&t->pending);
  90. }
  91. void exit_sighand(struct task_struct *tsk)
  92. {
  93. struct signal_struct * sig = tsk->sig;
  94. spin_lock_irq(&tsk->sigmask_lock);
  95. if (sig) {
  96. tsk->sig = NULL;
  97. if (atomic_dec_and_test(&sig->count))
  98. kmem_cache_free(sigact_cachep, sig);
  99. }
  100. tsk->sigpending = 0;
  101. flush_sigqueue(&tsk->pending);
  102. spin_unlock_irq(&tsk->sigmask_lock);
  103. }
  104. /*
  105.  * Flush all handlers for a task.
  106.  */
  107. void
  108. flush_signal_handlers(struct task_struct *t)
  109. {
  110. int i;
  111. struct k_sigaction *ka = &t->sig->action[0];
  112. for (i = _NSIG ; i != 0 ; i--) {
  113. if (ka->sa.sa_handler != SIG_IGN)
  114. ka->sa.sa_handler = SIG_DFL;
  115. ka->sa.sa_flags = 0;
  116. sigemptyset(&ka->sa.sa_mask);
  117. ka++;
  118. }
  119. }
  120. /* Notify the system that a driver wants to block all signals for this
  121.  * process, and wants to be notified if any signals at all were to be
  122.  * sent/acted upon.  If the notifier routine returns non-zero, then the
  123.  * signal will be acted upon after all.  If the notifier routine returns 0,
  124.  * then then signal will be blocked.  Only one block per process is
  125.  * allowed.  priv is a pointer to private data that the notifier routine
  126.  * can use to determine if the signal should be blocked or not.  */
  127. void
  128. block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
  129. {
  130. unsigned long flags;
  131. spin_lock_irqsave(&current->sigmask_lock, flags);
  132. current->notifier_mask = mask;
  133. current->notifier_data = priv;
  134. current->notifier = notifier;
  135. spin_unlock_irqrestore(&current->sigmask_lock, flags);
  136. }
  137. /* Notify the system that blocking has ended. */
  138. void
  139. unblock_all_signals(void)
  140. {
  141. unsigned long flags;
  142. spin_lock_irqsave(&current->sigmask_lock, flags);
  143. current->notifier = NULL;
  144. current->notifier_data = NULL;
  145. recalc_sigpending(current);
  146. spin_unlock_irqrestore(&current->sigmask_lock, flags);
  147. }
  148. static int collect_signal(int sig, struct sigpending *list, siginfo_t *info)
  149. {
  150. if (sigismember(&list->signal, sig)) {
  151. /* Collect the siginfo appropriate to this signal.  */
  152. struct sigqueue *q, **pp;
  153. pp = &list->head;
  154. while ((q = *pp) != NULL) {
  155. if (q->info.si_signo == sig)
  156. goto found_it;
  157. pp = &q->next;
  158. }
  159. /* Ok, it wasn't in the queue.  We must have
  160.    been out of queue space.  So zero out the
  161.    info.  */
  162. sigdelset(&list->signal, sig);
  163. info->si_signo = sig;
  164. info->si_errno = 0;
  165. info->si_code = 0;
  166. info->si_pid = 0;
  167. info->si_uid = 0;
  168. return 1;
  169. found_it:
  170. if ((*pp = q->next) == NULL)
  171. list->tail = pp;
  172. /* Copy the sigqueue information and free the queue entry */
  173. copy_siginfo(info, &q->info);
  174. kmem_cache_free(sigqueue_cachep,q);
  175. atomic_dec(&nr_queued_signals);
  176. /* Non-RT signals can exist multiple times.. */
  177. if (sig >= SIGRTMIN) {
  178. while ((q = *pp) != NULL) {
  179. if (q->info.si_signo == sig)
  180. goto found_another;
  181. pp = &q->next;
  182. }
  183. }
  184. sigdelset(&list->signal, sig);
  185. found_another:
  186. return 1;
  187. }
  188. return 0;
  189. }
  190. /*
  191.  * Dequeue a signal and return the element to the caller, which is 
  192.  * expected to free it.
  193.  *
  194.  * All callers must be holding current->sigmask_lock.
  195.  */
  196. int
  197. dequeue_signal(sigset_t *mask, siginfo_t *info)
  198. {
  199. int sig = 0;
  200. #if DEBUG_SIG
  201. printk("SIG dequeue (%s:%d): %d ", current->comm, current->pid,
  202. signal_pending(current));
  203. #endif
  204. sig = next_signal(current, mask);
  205. if (sig) {
  206. if (current->notifier) {
  207. if (sigismember(current->notifier_mask, sig)) {
  208. if (!(current->notifier)(current->notifier_data)) {
  209. current->sigpending = 0;
  210. return 0;
  211. }
  212. }
  213. }
  214. if (!collect_signal(sig, &current->pending, info))
  215. sig = 0;
  216. /* XXX: Once POSIX.1b timers are in, if si_code == SI_TIMER,
  217.    we need to xchg out the timer overrun values.  */
  218. }
  219. recalc_sigpending(current);
  220. #if DEBUG_SIG
  221. printk(" %d -> %dn", signal_pending(current), sig);
  222. #endif
  223. return sig;
  224. }
  225. static int rm_from_queue(int sig, struct sigpending *s)
  226. {
  227. struct sigqueue *q, **pp;
  228. if (!sigismember(&s->signal, sig))
  229. return 0;
  230. sigdelset(&s->signal, sig);
  231. pp = &s->head;
  232. while ((q = *pp) != NULL) {
  233. if (q->info.si_signo == sig) {
  234. if ((*pp = q->next) == NULL)
  235. s->tail = pp;
  236. kmem_cache_free(sigqueue_cachep,q);
  237. atomic_dec(&nr_queued_signals);
  238. continue;
  239. }
  240. pp = &q->next;
  241. }
  242. return 1;
  243. }
  244. /*
  245.  * Remove signal sig from t->pending.
  246.  * Returns 1 if sig was found.
  247.  *
  248.  * All callers must be holding t->sigmask_lock.
  249.  */
  250. static int rm_sig_from_queue(int sig, struct task_struct *t)
  251. {
  252. return rm_from_queue(sig, &t->pending);
  253. }
  254. /*
  255.  * Bad permissions for sending the signal
  256.  */
  257. int bad_signal(int sig, struct siginfo *info, struct task_struct *t)
  258. {
  259. return (!info || ((unsigned long)info != 1 && SI_FROMUSER(info)))
  260.     && ((sig != SIGCONT) || (current->session != t->session))
  261.     && (current->euid ^ t->suid) && (current->euid ^ t->uid)
  262.     && (current->uid ^ t->suid) && (current->uid ^ t->uid)
  263.     && !capable(CAP_KILL);
  264. }
  265. /*
  266.  * Signal type:
  267.  *    < 0 : global action (kill - spread to all non-blocked threads)
  268.  *    = 0 : ignored
  269.  *    > 0 : wake up.
  270.  */
  271. static int signal_type(int sig, struct signal_struct *signals)
  272. {
  273. unsigned long handler;
  274. if (!signals)
  275. return 0;
  276. handler = (unsigned long) signals->action[sig-1].sa.sa_handler;
  277. if (handler > 1)
  278. return 1;
  279. /* "Ignore" handler.. Illogical, but that has an implicit handler for SIGCHLD */
  280. if (handler == 1)
  281. return sig == SIGCHLD;
  282. /* Default handler. Normally lethal, but.. */
  283. switch (sig) {
  284. /* Ignored */
  285. case SIGCONT: case SIGWINCH:
  286. case SIGCHLD: case SIGURG:
  287. return 0;
  288. /* Implicit behaviour */
  289. case SIGTSTP: case SIGTTIN: case SIGTTOU:
  290. return 1;
  291. /* Implicit actions (kill or do special stuff) */
  292. default:
  293. return -1;
  294. }
  295. }
  296. /*
  297.  * Determine whether a signal should be posted or not.
  298.  *
  299.  * Signals with SIG_IGN can be ignored, except for the
  300.  * special case of a SIGCHLD. 
  301.  *
  302.  * Some signals with SIG_DFL default to a non-action.
  303.  */
  304. static int ignored_signal(int sig, struct task_struct *t)
  305. {
  306. /* Don't ignore traced or blocked signals */
  307. if ((t->ptrace & PT_PTRACED) || sigismember(&t->blocked, sig))
  308. return 0;
  309. return signal_type(sig, t->sig) == 0;
  310. }
  311. /*
  312.  * Handle TASK_STOPPED cases etc implicit behaviour
  313.  * of certain magical signals.
  314.  *
  315.  * SIGKILL gets spread out to every thread. 
  316.  */
  317. static void handle_stop_signal(int sig, struct task_struct *t)
  318. {
  319. switch (sig) {
  320. case SIGKILL: case SIGCONT:
  321. /* Wake up the process if stopped.  */
  322. if (t->state == TASK_STOPPED)
  323. wake_up_process(t);
  324. t->exit_code = 0;
  325. rm_sig_from_queue(SIGSTOP, t);
  326. rm_sig_from_queue(SIGTSTP, t);
  327. rm_sig_from_queue(SIGTTOU, t);
  328. rm_sig_from_queue(SIGTTIN, t);
  329. break;
  330. case SIGSTOP: case SIGTSTP:
  331. case SIGTTIN: case SIGTTOU:
  332. /* If we're stopping again, cancel SIGCONT */
  333. rm_sig_from_queue(SIGCONT, t);
  334. break;
  335. }
  336. }
  337. static int send_signal(int sig, struct siginfo *info, struct sigpending *signals)
  338. {
  339. struct sigqueue * q = NULL;
  340. /* Real-time signals must be queued if sent by sigqueue, or
  341.    some other real-time mechanism.  It is implementation
  342.    defined whether kill() does so.  We attempt to do so, on
  343.    the principle of least surprise, but since kill is not
  344.    allowed to fail with EAGAIN when low on memory we just
  345.    make sure at least one signal gets delivered and don't
  346.    pass on the info struct.  */
  347. if (atomic_read(&nr_queued_signals) < max_queued_signals) {
  348. q = kmem_cache_alloc(sigqueue_cachep, GFP_ATOMIC);
  349. }
  350. if (q) {
  351. atomic_inc(&nr_queued_signals);
  352. q->next = NULL;
  353. *signals->tail = q;
  354. signals->tail = &q->next;
  355. switch ((unsigned long) info) {
  356. case 0:
  357. q->info.si_signo = sig;
  358. q->info.si_errno = 0;
  359. q->info.si_code = SI_USER;
  360. q->info.si_pid = current->pid;
  361. q->info.si_uid = current->uid;
  362. break;
  363. case 1:
  364. q->info.si_signo = sig;
  365. q->info.si_errno = 0;
  366. q->info.si_code = SI_KERNEL;
  367. q->info.si_pid = 0;
  368. q->info.si_uid = 0;
  369. break;
  370. default:
  371. copy_siginfo(&q->info, info);
  372. break;
  373. }
  374. } else if (sig >= SIGRTMIN && info && (unsigned long)info != 1
  375.    && info->si_code != SI_USER) {
  376. /*
  377.  * Queue overflow, abort.  We may abort if the signal was rt
  378.  * and sent by user using something other than kill().
  379.  */
  380. return -EAGAIN;
  381. }
  382. sigaddset(&signals->signal, sig);
  383. return 0;
  384. }
  385. /*
  386.  * Tell a process that it has a new active signal..
  387.  *
  388.  * NOTE! we rely on the previous spin_lock to
  389.  * lock interrupts for us! We can only be called with
  390.  * "sigmask_lock" held, and the local interrupt must
  391.  * have been disabled when that got acquired!
  392.  *
  393.  * No need to set need_resched since signal event passing
  394.  * goes through ->blocked
  395.  */
  396. static inline void signal_wake_up(struct task_struct *t)
  397. {
  398. t->sigpending = 1;
  399. #ifdef CONFIG_SMP
  400. /*
  401.  * If the task is running on a different CPU 
  402.  * force a reschedule on the other CPU to make
  403.  * it notice the new signal quickly.
  404.  *
  405.  * The code below is a tad loose and might occasionally
  406.  * kick the wrong CPU if we catch the process in the
  407.  * process of changing - but no harm is done by that
  408.  * other than doing an extra (lightweight) IPI interrupt.
  409.  */
  410. spin_lock(&runqueue_lock);
  411. if (task_has_cpu(t) && t->processor != smp_processor_id())
  412. smp_send_reschedule(t->processor);
  413. spin_unlock(&runqueue_lock);
  414. #endif /* CONFIG_SMP */
  415. if (t->state & TASK_INTERRUPTIBLE) {
  416. wake_up_process(t);
  417. return;
  418. }
  419. }
  420. static int deliver_signal(int sig, struct siginfo *info, struct task_struct *t)
  421. {
  422. int retval = send_signal(sig, info, &t->pending);
  423. if (!retval && !sigismember(&t->blocked, sig))
  424. signal_wake_up(t);
  425. return retval;
  426. }
  427. int
  428. send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
  429. {
  430. unsigned long flags;
  431. int ret;
  432. #if DEBUG_SIG
  433. printk("SIG queue (%s:%d): %d ", t->comm, t->pid, sig);
  434. #endif
  435. ret = -EINVAL;
  436. if (sig < 0 || sig > _NSIG)
  437. goto out_nolock;
  438. /* The somewhat baroque permissions check... */
  439. ret = -EPERM;
  440. if (bad_signal(sig, info, t))
  441. goto out_nolock;
  442. /* The null signal is a permissions and process existance probe.
  443.    No signal is actually delivered.  Same goes for zombies. */
  444. ret = 0;
  445. if (!sig || !t->sig)
  446. goto out_nolock;
  447. spin_lock_irqsave(&t->sigmask_lock, flags);
  448. handle_stop_signal(sig, t);
  449. /* Optimize away the signal, if it's a signal that can be
  450.    handled immediately (ie non-blocked and untraced) and
  451.    that is ignored (either explicitly or by default).  */
  452. if (ignored_signal(sig, t))
  453. goto out;
  454. /* Support queueing exactly one non-rt signal, so that we
  455.    can get more detailed information about the cause of
  456.    the signal. */
  457. if (sig < SIGRTMIN && sigismember(&t->pending.signal, sig))
  458. goto out;
  459. ret = deliver_signal(sig, info, t);
  460. out:
  461. spin_unlock_irqrestore(&t->sigmask_lock, flags);
  462. out_nolock:
  463. #if DEBUG_SIG
  464. printk(" %d -> %dn", signal_pending(t), ret);
  465. #endif
  466. return ret;
  467. }
  468. /*
  469.  * Force a signal that the process can't ignore: if necessary
  470.  * we unblock the signal and change any SIG_IGN to SIG_DFL.
  471.  */
  472. int
  473. force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
  474. {
  475. unsigned long int flags;
  476. spin_lock_irqsave(&t->sigmask_lock, flags);
  477. if (t->sig == NULL) {
  478. spin_unlock_irqrestore(&t->sigmask_lock, flags);
  479. return -ESRCH;
  480. }
  481. if (t->sig->action[sig-1].sa.sa_handler == SIG_IGN)
  482. t->sig->action[sig-1].sa.sa_handler = SIG_DFL;
  483. sigdelset(&t->blocked, sig);
  484. recalc_sigpending(t);
  485. spin_unlock_irqrestore(&t->sigmask_lock, flags);
  486. return send_sig_info(sig, info, t);
  487. }
  488. /*
  489.  * kill_pg_info() sends a signal to a process group: this is what the tty
  490.  * control characters do (^C, ^Z etc)
  491.  */
  492. int
  493. kill_pg_info(int sig, struct siginfo *info, pid_t pgrp)
  494. {
  495. int retval = -EINVAL;
  496. if (pgrp > 0) {
  497. struct task_struct *p;
  498. retval = -ESRCH;
  499. read_lock(&tasklist_lock);
  500. for_each_task(p) {
  501. if (p->pgrp == pgrp) {
  502. int err = send_sig_info(sig, info, p);
  503. if (retval)
  504. retval = err;
  505. }
  506. }
  507. read_unlock(&tasklist_lock);
  508. }
  509. return retval;
  510. }
  511. /*
  512.  * kill_sl_info() sends a signal to the session leader: this is used
  513.  * to send SIGHUP to the controlling process of a terminal when
  514.  * the connection is lost.
  515.  */
  516. int
  517. kill_sl_info(int sig, struct siginfo *info, pid_t sess)
  518. {
  519. int retval = -EINVAL;
  520. if (sess > 0) {
  521. struct task_struct *p;
  522. retval = -ESRCH;
  523. read_lock(&tasklist_lock);
  524. for_each_task(p) {
  525. if (p->leader && p->session == sess) {
  526. int err = send_sig_info(sig, info, p);
  527. if (retval)
  528. retval = err;
  529. }
  530. }
  531. read_unlock(&tasklist_lock);
  532. }
  533. return retval;
  534. }
  535. inline int
  536. kill_proc_info(int sig, struct siginfo *info, pid_t pid)
  537. {
  538. int error;
  539. struct task_struct *p;
  540. read_lock(&tasklist_lock);
  541. p = find_task_by_pid(pid);
  542. error = -ESRCH;
  543. if (p)
  544. error = send_sig_info(sig, info, p);
  545. read_unlock(&tasklist_lock);
  546. return error;
  547. }
  548. /*
  549.  * kill_something_info() interprets pid in interesting ways just like kill(2).
  550.  *
  551.  * POSIX specifies that kill(-1,sig) is unspecified, but what we have
  552.  * is probably wrong.  Should make it like BSD or SYSV.
  553.  */
  554. static int kill_something_info(int sig, struct siginfo *info, int pid)
  555. {
  556. if (!pid) {
  557. return kill_pg_info(sig, info, current->pgrp);
  558. } else if (pid == -1) {
  559. int retval = 0, count = 0;
  560. struct task_struct * p;
  561. read_lock(&tasklist_lock);
  562. for_each_task(p) {
  563. if (p->pid > 1 && p != current) {
  564. int err = send_sig_info(sig, info, p);
  565. ++count;
  566. if (err != -EPERM)
  567. retval = err;
  568. }
  569. }
  570. read_unlock(&tasklist_lock);
  571. return count ? retval : -ESRCH;
  572. } else if (pid < 0) {
  573. return kill_pg_info(sig, info, -pid);
  574. } else {
  575. return kill_proc_info(sig, info, pid);
  576. }
  577. }
  578. /*
  579.  * These are for backward compatibility with the rest of the kernel source.
  580.  */
  581. int
  582. send_sig(int sig, struct task_struct *p, int priv)
  583. {
  584. return send_sig_info(sig, (void*)(long)(priv != 0), p);
  585. }
  586. void
  587. force_sig(int sig, struct task_struct *p)
  588. {
  589. force_sig_info(sig, (void*)1L, p);
  590. }
  591. int
  592. kill_pg(pid_t pgrp, int sig, int priv)
  593. {
  594. return kill_pg_info(sig, (void *)(long)(priv != 0), pgrp);
  595. }
  596. int
  597. kill_sl(pid_t sess, int sig, int priv)
  598. {
  599. return kill_sl_info(sig, (void *)(long)(priv != 0), sess);
  600. }
  601. int
  602. kill_proc(pid_t pid, int sig, int priv)
  603. {
  604. return kill_proc_info(sig, (void *)(long)(priv != 0), pid);
  605. }
  606. /*
  607.  * Joy. Or not. Pthread wants us to wake up every thread
  608.  * in our parent group.
  609.  */
  610. static void wake_up_parent(struct task_struct *parent)
  611. {
  612. struct task_struct *tsk = parent;
  613. do {
  614. wake_up_interruptible(&tsk->wait_chldexit);
  615. tsk = next_thread(tsk);
  616. } while (tsk != parent);
  617. }
  618. /*
  619.  * Let a parent know about a status change of a child.
  620.  */
  621. void do_notify_parent(struct task_struct *tsk, int sig)
  622. {
  623. struct siginfo info;
  624. int why, status;
  625. info.si_signo = sig;
  626. info.si_errno = 0;
  627. info.si_pid = tsk->pid;
  628. info.si_uid = tsk->uid;
  629. /* FIXME: find out whether or not this is supposed to be c*time. */
  630. info.si_utime = hz_to_std(tsk->times.tms_utime);
  631. info.si_stime = hz_to_std(tsk->times.tms_stime);
  632. status = tsk->exit_code & 0x7f;
  633. why = SI_KERNEL; /* shouldn't happen */
  634. switch (tsk->state) {
  635. case TASK_STOPPED:
  636. /* FIXME -- can we deduce CLD_TRAPPED or CLD_CONTINUED? */
  637. if (tsk->ptrace & PT_PTRACED)
  638. why = CLD_TRAPPED;
  639. else
  640. why = CLD_STOPPED;
  641. break;
  642. default:
  643. if (tsk->exit_code & 0x80)
  644. why = CLD_DUMPED;
  645. else if (tsk->exit_code & 0x7f)
  646. why = CLD_KILLED;
  647. else {
  648. why = CLD_EXITED;
  649. status = tsk->exit_code >> 8;
  650. }
  651. break;
  652. }
  653. info.si_code = why;
  654. info.si_status = status;
  655. send_sig_info(sig, &info, tsk->p_pptr);
  656. wake_up_parent(tsk->p_pptr);
  657. }
  658. /*
  659.  * We need the tasklist lock because it's the only
  660.  * thing that protects out "parent" pointer.
  661.  *
  662.  * exit.c calls "do_notify_parent()" directly, because
  663.  * it already has the tasklist lock.
  664.  */
  665. void
  666. notify_parent(struct task_struct *tsk, int sig)
  667. {
  668. read_lock(&tasklist_lock);
  669. do_notify_parent(tsk, sig);
  670. read_unlock(&tasklist_lock);
  671. }
  672. EXPORT_SYMBOL(dequeue_signal);
  673. EXPORT_SYMBOL(flush_signals);
  674. EXPORT_SYMBOL(force_sig);
  675. EXPORT_SYMBOL(force_sig_info);
  676. EXPORT_SYMBOL(kill_pg);
  677. EXPORT_SYMBOL(kill_pg_info);
  678. EXPORT_SYMBOL(kill_proc);
  679. EXPORT_SYMBOL(kill_proc_info);
  680. EXPORT_SYMBOL(kill_sl);
  681. EXPORT_SYMBOL(kill_sl_info);
  682. EXPORT_SYMBOL(notify_parent);
  683. EXPORT_SYMBOL(recalc_sigpending);
  684. EXPORT_SYMBOL(send_sig);
  685. EXPORT_SYMBOL(send_sig_info);
  686. EXPORT_SYMBOL(block_all_signals);
  687. EXPORT_SYMBOL(unblock_all_signals);
  688. /*
  689.  * System call entry points.
  690.  */
  691. /*
  692.  * We don't need to get the kernel lock - this is all local to this
  693.  * particular thread.. (and that's good, because this is _heavily_
  694.  * used by various programs)
  695.  */
  696. asmlinkage long
  697. sys_rt_sigprocmask(int how, sigset_t *set, sigset_t *oset, size_t sigsetsize)
  698. {
  699. int error = -EINVAL;
  700. sigset_t old_set, new_set;
  701. /* XXX: Don't preclude handling different sized sigset_t's.  */
  702. if (sigsetsize != sizeof(sigset_t))
  703. goto out;
  704. if (set) {
  705. error = -EFAULT;
  706. if (copy_from_user(&new_set, set, sizeof(*set)))
  707. goto out;
  708. sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
  709. spin_lock_irq(&current->sigmask_lock);
  710. old_set = current->blocked;
  711. error = 0;
  712. switch (how) {
  713. default:
  714. error = -EINVAL;
  715. break;
  716. case SIG_BLOCK:
  717. sigorsets(&new_set, &old_set, &new_set);
  718. break;
  719. case SIG_UNBLOCK:
  720. signandsets(&new_set, &old_set, &new_set);
  721. break;
  722. case SIG_SETMASK:
  723. break;
  724. }
  725. current->blocked = new_set;
  726. recalc_sigpending(current);
  727. spin_unlock_irq(&current->sigmask_lock);
  728. if (error)
  729. goto out;
  730. if (oset)
  731. goto set_old;
  732. } else if (oset) {
  733. spin_lock_irq(&current->sigmask_lock);
  734. old_set = current->blocked;
  735. spin_unlock_irq(&current->sigmask_lock);
  736. set_old:
  737. error = -EFAULT;
  738. if (copy_to_user(oset, &old_set, sizeof(*oset)))
  739. goto out;
  740. }
  741. error = 0;
  742. out:
  743. return error;
  744. }
  745. long do_sigpending(void *set, unsigned long sigsetsize)
  746. {
  747. long error = -EINVAL;
  748. sigset_t pending;
  749. if (sigsetsize > sizeof(sigset_t))
  750. goto out;
  751. spin_lock_irq(&current->sigmask_lock);
  752. sigandsets(&pending, &current->blocked, &current->pending.signal);
  753. spin_unlock_irq(&current->sigmask_lock);
  754. error = -EFAULT;
  755. if (!copy_to_user(set, &pending, sigsetsize))
  756. error = 0;
  757. out:
  758. return error;
  759. }
  760. asmlinkage long
  761. sys_rt_sigpending(sigset_t *set, size_t sigsetsize)
  762. {
  763. return do_sigpending(set, sigsetsize);
  764. }
  765. asmlinkage long
  766. sys_rt_sigtimedwait(const sigset_t *uthese, siginfo_t *uinfo,
  767.     const struct timespec *uts, size_t sigsetsize)
  768. {
  769. int ret, sig;
  770. sigset_t these;
  771. struct timespec ts;
  772. siginfo_t info;
  773. long timeout = 0;
  774. /* XXX: Don't preclude handling different sized sigset_t's.  */
  775. if (sigsetsize != sizeof(sigset_t))
  776. return -EINVAL;
  777. if (copy_from_user(&these, uthese, sizeof(these)))
  778. return -EFAULT;
  779. /*
  780.  * Invert the set of allowed signals to get those we
  781.  * want to block.
  782.  */
  783. sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP));
  784. signotset(&these);
  785. if (uts) {
  786. if (copy_from_user(&ts, uts, sizeof(ts)))
  787. return -EFAULT;
  788. if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0
  789.     || ts.tv_sec < 0)
  790. return -EINVAL;
  791. }
  792. spin_lock_irq(&current->sigmask_lock);
  793. sig = dequeue_signal(&these, &info);
  794. if (!sig) {
  795. timeout = MAX_SCHEDULE_TIMEOUT;
  796. if (uts)
  797. timeout = (timespec_to_jiffies(&ts)
  798.    + (ts.tv_sec || ts.tv_nsec));
  799. if (timeout) {
  800. /* None ready -- temporarily unblock those we're
  801.  * interested while we are sleeping in so that we'll
  802.  * be awakened when they arrive.  */
  803. sigset_t oldblocked = current->blocked;
  804. sigandsets(&current->blocked, &current->blocked, &these);
  805. recalc_sigpending(current);
  806. spin_unlock_irq(&current->sigmask_lock);
  807. current->state = TASK_INTERRUPTIBLE;
  808. timeout = schedule_timeout(timeout);
  809. spin_lock_irq(&current->sigmask_lock);
  810. sig = dequeue_signal(&these, &info);
  811. current->blocked = oldblocked;
  812. recalc_sigpending(current);
  813. }
  814. }
  815. spin_unlock_irq(&current->sigmask_lock);
  816. if (sig) {
  817. ret = sig;
  818. if (uinfo) {
  819. if (copy_siginfo_to_user(uinfo, &info))
  820. ret = -EFAULT;
  821. }
  822. } else {
  823. ret = -EAGAIN;
  824. if (timeout)
  825. ret = -EINTR;
  826. }
  827. return ret;
  828. }
  829. asmlinkage long
  830. sys_kill(int pid, int sig)
  831. {
  832. struct siginfo info;
  833. info.si_signo = sig;
  834. info.si_errno = 0;
  835. info.si_code = SI_USER;
  836. info.si_pid = current->pid;
  837. info.si_uid = current->uid;
  838. return kill_something_info(sig, &info, pid);
  839. }
  840. asmlinkage long
  841. sys_rt_sigqueueinfo(int pid, int sig, siginfo_t *uinfo)
  842. {
  843. siginfo_t info;
  844. if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
  845. return -EFAULT;
  846. /* Not even root can pretend to send signals from the kernel.
  847.    Nor can they impersonate a kill(), which adds source info.  */
  848. if (info.si_code >= 0)
  849. return -EPERM;
  850. info.si_signo = sig;
  851. /* POSIX.1b doesn't mention process groups.  */
  852. return kill_proc_info(sig, &info, pid);
  853. }
  854. int
  855. do_sigaction(int sig, const struct k_sigaction *act, struct k_sigaction *oact)
  856. {
  857. struct k_sigaction *k;
  858. if (sig < 1 || sig > _NSIG ||
  859.     (act && (sig == SIGKILL || sig == SIGSTOP)))
  860. return -EINVAL;
  861. k = &current->sig->action[sig-1];
  862. spin_lock(&current->sig->siglock);
  863. if (oact)
  864. *oact = *k;
  865. if (act) {
  866. *k = *act;
  867. sigdelsetmask(&k->sa.sa_mask, sigmask(SIGKILL) | sigmask(SIGSTOP));
  868. /*
  869.  * POSIX 3.3.1.3:
  870.  *  "Setting a signal action to SIG_IGN for a signal that is
  871.  *   pending shall cause the pending signal to be discarded,
  872.  *   whether or not it is blocked."
  873.  *
  874.  *  "Setting a signal action to SIG_DFL for a signal that is
  875.  *   pending and whose default action is to ignore the signal
  876.  *   (for example, SIGCHLD), shall cause the pending signal to
  877.  *   be discarded, whether or not it is blocked"
  878.  *
  879.  * Note the silly behaviour of SIGCHLD: SIG_IGN means that the
  880.  * signal isn't actually ignored, but does automatic child
  881.  * reaping, while SIG_DFL is explicitly said by POSIX to force
  882.  * the signal to be ignored.
  883.  */
  884. if (k->sa.sa_handler == SIG_IGN
  885.     || (k->sa.sa_handler == SIG_DFL
  886. && (sig == SIGCONT ||
  887.     sig == SIGCHLD ||
  888.     sig == SIGWINCH))) {
  889. spin_lock_irq(&current->sigmask_lock);
  890. if (rm_sig_from_queue(sig, current))
  891. recalc_sigpending(current);
  892. spin_unlock_irq(&current->sigmask_lock);
  893. }
  894. }
  895. spin_unlock(&current->sig->siglock);
  896. return 0;
  897. }
  898. int 
  899. do_sigaltstack (const stack_t *uss, stack_t *uoss, unsigned long sp)
  900. {
  901. stack_t oss;
  902. int error;
  903. if (uoss) {
  904. oss.ss_sp = (void *) current->sas_ss_sp;
  905. oss.ss_size = current->sas_ss_size;
  906. oss.ss_flags = sas_ss_flags(sp);
  907. }
  908. if (uss) {
  909. void *ss_sp;
  910. size_t ss_size;
  911. int ss_flags;
  912. error = -EFAULT;
  913. if (verify_area(VERIFY_READ, uss, sizeof(*uss))
  914.     || __get_user(ss_sp, &uss->ss_sp)
  915.     || __get_user(ss_flags, &uss->ss_flags)
  916.     || __get_user(ss_size, &uss->ss_size))
  917. goto out;
  918. error = -EPERM;
  919. if (on_sig_stack (sp))
  920. goto out;
  921. error = -EINVAL;
  922. /*
  923.  *
  924.  * Note - this code used to test ss_flags incorrectly
  925.  *     old code may have been written using ss_flags==0
  926.  *   to mean ss_flags==SS_ONSTACK (as this was the only
  927.  *   way that worked) - this fix preserves that older
  928.  *   mechanism
  929.  */
  930. if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
  931. goto out;
  932. if (ss_flags == SS_DISABLE) {
  933. ss_size = 0;
  934. ss_sp = NULL;
  935. } else {
  936. error = -ENOMEM;
  937. if (ss_size < MINSIGSTKSZ)
  938. goto out;
  939. }
  940. current->sas_ss_sp = (unsigned long) ss_sp;
  941. current->sas_ss_size = ss_size;
  942. }
  943. if (uoss) {
  944. error = -EFAULT;
  945. if (copy_to_user(uoss, &oss, sizeof(oss)))
  946. goto out;
  947. }
  948. error = 0;
  949. out:
  950. return error;
  951. }
  952. asmlinkage long
  953. sys_sigpending(old_sigset_t *set)
  954. {
  955. return do_sigpending(set, sizeof(*set));
  956. }
  957. #if !defined(__alpha__)
  958. /* Alpha has its own versions with special arguments.  */
  959. asmlinkage long
  960. sys_sigprocmask(int how, old_sigset_t *set, old_sigset_t *oset)
  961. {
  962. int error;
  963. old_sigset_t old_set, new_set;
  964. if (set) {
  965. error = -EFAULT;
  966. if (copy_from_user(&new_set, set, sizeof(*set)))
  967. goto out;
  968. new_set &= ~(sigmask(SIGKILL)|sigmask(SIGSTOP));
  969. spin_lock_irq(&current->sigmask_lock);
  970. old_set = current->blocked.sig[0];
  971. error = 0;
  972. switch (how) {
  973. default:
  974. error = -EINVAL;
  975. break;
  976. case SIG_BLOCK:
  977. sigaddsetmask(&current->blocked, new_set);
  978. break;
  979. case SIG_UNBLOCK:
  980. sigdelsetmask(&current->blocked, new_set);
  981. break;
  982. case SIG_SETMASK:
  983. current->blocked.sig[0] = new_set;
  984. break;
  985. }
  986. recalc_sigpending(current);
  987. spin_unlock_irq(&current->sigmask_lock);
  988. if (error)
  989. goto out;
  990. if (oset)
  991. goto set_old;
  992. } else if (oset) {
  993. old_set = current->blocked.sig[0];
  994. set_old:
  995. error = -EFAULT;
  996. if (copy_to_user(oset, &old_set, sizeof(*oset)))
  997. goto out;
  998. }
  999. error = 0;
  1000. out:
  1001. return error;
  1002. }
  1003. #ifndef __sparc__
  1004. asmlinkage long
  1005. sys_rt_sigaction(int sig, const struct sigaction *act, struct sigaction *oact,
  1006.  size_t sigsetsize)
  1007. {
  1008. struct k_sigaction new_sa, old_sa;
  1009. int ret = -EINVAL;
  1010. /* XXX: Don't preclude handling different sized sigset_t's.  */
  1011. if (sigsetsize != sizeof(sigset_t))
  1012. goto out;
  1013. if (act) {
  1014. if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
  1015. return -EFAULT;
  1016. }
  1017. ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
  1018. if (!ret && oact) {
  1019. if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
  1020. return -EFAULT;
  1021. }
  1022. out:
  1023. return ret;
  1024. }
  1025. #endif /* __sparc__ */
  1026. #endif
  1027. #if !defined(__alpha__) && !defined(__ia64__) && !defined(__arm__)
  1028. /*
  1029.  * For backwards compatibility.  Functionality superseded by sigprocmask.
  1030.  */
  1031. asmlinkage long
  1032. sys_sgetmask(void)
  1033. {
  1034. /* SMP safe */
  1035. return current->blocked.sig[0];
  1036. }
  1037. asmlinkage long
  1038. sys_ssetmask(int newmask)
  1039. {
  1040. int old;
  1041. spin_lock_irq(&current->sigmask_lock);
  1042. old = current->blocked.sig[0];
  1043. siginitset(&current->blocked, newmask & ~(sigmask(SIGKILL)|
  1044.   sigmask(SIGSTOP)));
  1045. recalc_sigpending(current);
  1046. spin_unlock_irq(&current->sigmask_lock);
  1047. return old;
  1048. }
  1049. #endif /* !defined(__alpha__) */
  1050. #if !defined(__alpha__) && !defined(__ia64__) && !defined(__mips__) && 
  1051.     !defined(__arm__)
  1052. /*
  1053.  * For backwards compatibility.  Functionality superseded by sigaction.
  1054.  */
  1055. asmlinkage unsigned long
  1056. sys_signal(int sig, __sighandler_t handler)
  1057. {
  1058. struct k_sigaction new_sa, old_sa;
  1059. int ret;
  1060. new_sa.sa.sa_handler = handler;
  1061. new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
  1062. ret = do_sigaction(sig, &new_sa, &old_sa);
  1063. return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
  1064. }
  1065. #endif /* !alpha && !__ia64__ && !defined(__mips__) && !defined(__arm__) */