2008-02-01 22:23:19 +01:00
|
|
|
/****************************************************************************
|
2014-08-08 20:55:02 +02:00
|
|
|
* sched/signal/sig_deliver.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2020-05-07 22:15:09 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2020-05-07 22:15:09 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2020-05-07 22:15:09 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-02-01 22:23:19 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-02-01 22:23:19 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-02-01 22:23:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sched.h>
|
2013-03-22 00:37:11 +01:00
|
|
|
#include <string.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <debug.h>
|
2016-02-14 15:17:46 +01:00
|
|
|
|
|
|
|
#include <nuttx/irq.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <nuttx/arch.h>
|
2008-02-01 22:23:19 +01:00
|
|
|
|
2014-08-08 20:44:44 +02:00
|
|
|
#include "signal/signal.h"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-02-01 22:23:19 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2008-02-01 22:23:19 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-02-01 22:23:19 +01:00
|
|
|
/****************************************************************************
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
* Name: nxsig_deliver
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2012-07-14 21:30:31 +02:00
|
|
|
* This function is called on the thread of execution of the signal
|
|
|
|
* receiving task. It processes all queued signals then returns.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-02-01 22:23:19 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
void nxsig_deliver(FAR struct tcb_s *stcb)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2007-02-27 22:17:21 +01:00
|
|
|
FAR sigq_t *sigq;
|
|
|
|
sigset_t savesigprocmask;
|
2019-02-03 17:39:41 +01:00
|
|
|
sigset_t newsigprocmask;
|
|
|
|
sigset_t altsigprocmask;
|
2016-02-14 15:17:46 +01:00
|
|
|
irqstate_t flags;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
/* Loop while there are signals to be delivered */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
for (; ; )
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2019-02-28 18:32:31 +01:00
|
|
|
/* Test if this task is already handling a signal (we don't permit
|
|
|
|
* nested signals on the same thread).
|
|
|
|
*/
|
2019-02-03 17:39:41 +01:00
|
|
|
|
|
|
|
flags = enter_critical_section();
|
2019-02-03 22:29:47 +01:00
|
|
|
if ((stcb->flags & TCB_FLAG_SIGNAL_ACTION) != 0)
|
|
|
|
{
|
|
|
|
/* Yes.. then we must wait for the signal handler to return */
|
|
|
|
|
|
|
|
leave_critical_section(flags);
|
|
|
|
break;
|
|
|
|
}
|
2019-02-03 17:39:41 +01:00
|
|
|
|
2019-02-03 22:29:47 +01:00
|
|
|
/* Remove the signal structure from the head of the sigpendactionq. */
|
|
|
|
|
|
|
|
sigq = (FAR sigq_t *)sq_remfirst(&stcb->sigpendactionq);
|
2019-02-03 17:39:41 +01:00
|
|
|
if (sigq == NULL)
|
|
|
|
{
|
|
|
|
/* All queued signal actions have been dispatched */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
leave_critical_section(flags);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-02-03 22:29:47 +01:00
|
|
|
/* Indicate that a signal is being delivered */
|
|
|
|
|
|
|
|
stcb->flags |= TCB_FLAG_SIGNAL_ACTION;
|
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
sinfo("Deliver signal %d to PID %d\n",
|
|
|
|
sigq->info.si_signo, stcb->pid);
|
|
|
|
|
|
|
|
/* Add the signal structure to the sigpostedq. NOTE: Since signals
|
|
|
|
* are processed one at a time, there should never be more than one
|
|
|
|
* signal in the sigpostedq
|
2007-02-18 00:21:28 +01:00
|
|
|
*/
|
|
|
|
|
2015-10-08 03:59:14 +02:00
|
|
|
sq_addlast((FAR sq_entry_t *)sigq, &(stcb->sigpostedq));
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
/* Save a copy of the old sigprocmask and install the new
|
2007-02-18 00:21:28 +01:00
|
|
|
* (temporary) sigprocmask. The new sigprocmask is the union
|
|
|
|
* of the current sigprocmask and the sa_mask for the signal being
|
|
|
|
* delivered plus the signal being delivered.
|
|
|
|
*/
|
|
|
|
|
2017-06-14 21:42:56 +02:00
|
|
|
savesigprocmask = stcb->sigprocmask;
|
2021-03-26 11:15:17 +01:00
|
|
|
newsigprocmask = savesigprocmask | sigq->mask;
|
2019-02-03 17:39:41 +01:00
|
|
|
stcb->sigprocmask = newsigprocmask;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-04-29 21:21:23 +02:00
|
|
|
#ifndef CONFIG_BUILD_FLAT
|
2018-08-27 19:40:09 +02:00
|
|
|
/* In the kernel build this has to be handled differently if we are
|
|
|
|
* dispatching to a signal handler in a user-space task or thread; we
|
|
|
|
* have to switch to user-mode before calling the task.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_SIG_DEFAULT
|
|
|
|
/* The default signal action handlers, however always reside in the
|
|
|
|
* kernel address space, regardless of configuration.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (nxsig_isdefault(stcb, sigq->info.si_signo))
|
|
|
|
{
|
2020-02-23 09:50:23 +01:00
|
|
|
/* Leave the critical section before calling the handler */
|
2019-02-03 17:39:41 +01:00
|
|
|
|
|
|
|
leave_critical_section(flags);
|
|
|
|
(*sigq->action.sighandler)(sigq->info.si_signo, &sigq->info,
|
|
|
|
NULL);
|
2018-08-27 19:40:09 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2013-03-17 01:40:49 +01:00
|
|
|
if ((stcb->flags & TCB_FLAG_TTYPE_MASK) != TCB_FLAG_TTYPE_KERNEL)
|
|
|
|
{
|
2019-02-03 17:39:41 +01:00
|
|
|
siginfo_t info;
|
|
|
|
|
2013-03-21 21:02:14 +01:00
|
|
|
/* The sigq_t pointed to by sigq resides in kernel space. So we
|
2013-03-22 00:37:11 +01:00
|
|
|
* cannot pass a reference to sigq->info to the user application.
|
|
|
|
* Instead, we will copy the siginfo_t structure onto the stack.
|
2013-03-21 21:02:14 +01:00
|
|
|
* We are currently executing on the stack of the user thread
|
|
|
|
* (albeit temporarily in kernel mode), so the copy of the
|
|
|
|
* siginfo_t structure will be accessible by the user thread.
|
|
|
|
*/
|
|
|
|
|
2013-03-22 00:37:11 +01:00
|
|
|
memcpy(&info, &sigq->info, sizeof(siginfo_t));
|
2013-03-21 21:02:14 +01:00
|
|
|
|
2020-02-23 09:50:23 +01:00
|
|
|
/* Leave the critical section before calling the handler */
|
2019-02-03 17:39:41 +01:00
|
|
|
|
|
|
|
leave_critical_section(flags);
|
2013-03-23 15:46:02 +01:00
|
|
|
up_signal_dispatch(sigq->action.sighandler, sigq->info.si_signo,
|
|
|
|
&info, NULL);
|
2013-03-17 01:40:49 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2013-03-21 21:02:14 +01:00
|
|
|
/* The kernel thread signal handler is much simpler. */
|
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
leave_critical_section(flags);
|
2013-03-17 01:40:49 +01:00
|
|
|
(*sigq->action.sighandler)(sigq->info.si_signo, &sigq->info,
|
|
|
|
NULL);
|
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-02-03 22:29:47 +01:00
|
|
|
/* Indicate that a signal has been delivered */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
flags = enter_critical_section();
|
2019-02-03 22:29:47 +01:00
|
|
|
stcb->flags &= ~TCB_FLAG_SIGNAL_ACTION;
|
|
|
|
|
2020-05-07 22:15:09 +02:00
|
|
|
/* Restore the original sigprocmask.
|
|
|
|
*
|
|
|
|
* What if the signal handler changed the sigprocmask? Try to retain
|
2019-02-03 17:39:41 +01:00
|
|
|
* any such changes here.
|
|
|
|
*
|
|
|
|
* REVISIT: This logic is imperfect. It will fail to detect bits set
|
|
|
|
* in the current sigprocmask that were already set by newsigprocmask.
|
2007-02-18 00:21:28 +01:00
|
|
|
*/
|
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
altsigprocmask = stcb->sigprocmask ^ newsigprocmask;
|
|
|
|
stcb->sigprocmask = (stcb->sigprocmask & altsigprocmask) |
|
|
|
|
(savesigprocmask & ~altsigprocmask);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
/* Remove the signal structure from the sigpostedq */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-08 03:59:14 +02:00
|
|
|
sq_rem((FAR sq_entry_t *)sigq, &(stcb->sigpostedq));
|
2016-02-14 15:17:46 +01:00
|
|
|
leave_critical_section(flags);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2019-02-03 17:39:41 +01:00
|
|
|
/* Now, handle the (rare?) case where (a) a blocked signal was
|
|
|
|
* received while the signal handling executed but (b) restoring the
|
|
|
|
* original sigprocmask will unblock the signal.
|
|
|
|
*/
|
|
|
|
|
|
|
|
nxsig_unmask_pendingsignal();
|
|
|
|
|
|
|
|
/* Then deallocate the signal structure */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
This change renames all internal, private NuttX signal-related functions to use the prefix nxsig_ so that they cannot be confused with application interfaces that begin, primarily, with sig_
This is analogous to similar renaming that was done previously for semaphores.
Squashed commit of the following:
sched/signal: Fix a few compile warnings introduced by naming changes.
sched/signal: Rename all private, internal signl functions to use the nxsig_ prefix.
sched/signal: Rename sig_removependingsignal, sig_unmaskpendingsignal, and sig_mqnotempty to nxsig_remove_pendingsignal, nxsig_unmask_pendingsignal, and nxsig_mqnotempty to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_findaction and sig_lowest to nxsig_find_action and nxsig_lowest to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_allocatepingsigaction and sig_deliver to nxsig_alloc_pendingsigaction and nxsig_deliver to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_cleanup, sig_release, sig_releasependingaction, and sig_releasependingsignal to nxsig_cleanup, nxsig_release, nxsig_release_pendingaction, and nxsig_release_pendingsignal to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_tcbdispatch and sig_dispatch to nxsig_tcbdispatch and nxsig_dispatch to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_releaseaction and sig_pendingset to nxsig_release_action and nxsig_pendingset to make it clear that these are OS internal interfaces.
sched/signal: Rename sig_initialize and sig_allocateactionblock to nxsig_initialize and nxsig_alloc_actionblock to make it clear that these are OS internal interfaces.
2017-10-05 21:25:25 +02:00
|
|
|
nxsig_release_pendingsigaction(sigq);
|
2015-10-08 03:59:14 +02:00
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|