mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
Correct build errors when CONFIG_ENABLE_ALL_SIGNALS is not defined - sched makefiles: Move pending-signal helpers from the ENABLE_ALL_SIGNALS-only list to the !DISABLE_ALL_SIGNALS list so signal dispatch is available in PARTIAL builds sched: make SIG_PREALLOC_ACTIONS, SIG_ALLOC_ACTIONS and SIG_DEFAULT depend on ENABLE_ALL_SIGNALS - sched: fix ifdefs around pending-signal queue access and signal-mask for PARTIAL/DISABLE modes - arch: gate SYS_signal_handler / _return calls and SYSCALL_LOOKUP(signal) with ENABLE_ALL_SIGNALS Signed-off-by: Jukka Laitinen <jukka.laitinen@tii.ae>
301 lines
9.8 KiB
C
301 lines
9.8 KiB
C
/****************************************************************************
|
|
* sched/signal/sig_timedwait.c
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
#include <nuttx/compiler.h>
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <signal.h>
|
|
#include <time.h>
|
|
#include <assert.h>
|
|
#include <nuttx/debug.h>
|
|
#include <sched.h>
|
|
#include <errno.h>
|
|
|
|
#include <nuttx/irq.h>
|
|
#include <nuttx/arch.h>
|
|
#include <nuttx/wdog.h>
|
|
#include <nuttx/signal.h>
|
|
#include <nuttx/cancelpt.h>
|
|
#include <nuttx/queue.h>
|
|
|
|
#include "sched/sched.h"
|
|
#include "signal/signal.h"
|
|
#include "clock/clock.h"
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: nxsig_timedwait
|
|
*
|
|
* Description:
|
|
* This function selects the pending signal set specified by the argument
|
|
* set. If multiple signals are pending in set, it will remove and return
|
|
* the lowest numbered one. If no signals in set are pending at the time
|
|
* of the call, the calling process will be suspended until one of the
|
|
* signals in set becomes pending, OR until the process is interrupted by
|
|
* an unblocked signal, OR until the time interval specified by timeout
|
|
* (if any), has expired. If timeout is NULL, then the timeout interval
|
|
* is forever.
|
|
*
|
|
* If the info argument is non-NULL, the selected signal number is stored
|
|
* in the si_signo member and the cause of the signal is stored in the
|
|
* si_code member. The content of si_value is only meaningful if the
|
|
* signal was generated by sigqueue() (or nxsig_queue).
|
|
*
|
|
* This is an internal OS interface. It is functionally equivalent to
|
|
* sigtimedwait() except that:
|
|
*
|
|
* - It is not a cancellation point, and
|
|
* - It does not modify the errno value.
|
|
*
|
|
* Input Parameters:
|
|
* set - The pending signal set.
|
|
* info - The returned value (may be NULL).
|
|
* timeout - The amount of time to wait (may be NULL)
|
|
*
|
|
* Returned Value:
|
|
* This is an internal OS interface and should not be used by applications.
|
|
* It follows the NuttX internal error return policy: Zero (OK) is
|
|
* returned on success. A negated errno value is returned on failure.
|
|
*
|
|
* EAGAIN - No signal specified by set was generated within the specified
|
|
* timeout period.
|
|
* EINTR - The wait was interrupted by an unblocked, caught signal.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int nxsig_timedwait(FAR const sigset_t *set, FAR struct siginfo *info,
|
|
FAR const struct timespec *timeout)
|
|
{
|
|
FAR struct tcb_s *rtcb;
|
|
sigset_t intersection;
|
|
FAR sigpendq_t *sigpend;
|
|
irqstate_t flags;
|
|
siginfo_t unbinfo;
|
|
int ret;
|
|
|
|
DEBUGASSERT(set != NULL && up_interrupt_context() == false);
|
|
|
|
/* Several operations must be performed below: We must determine if any
|
|
* signal is pending and, if not, wait for the signal. Since signals can
|
|
* be posted from the interrupt level, there is a race condition that
|
|
* can only be eliminated by disabling interrupts!
|
|
*/
|
|
|
|
flags = enter_critical_section();
|
|
rtcb = this_task();
|
|
|
|
/* Check if there is a pending signal corresponding to one of the
|
|
* signals in the pending signal set argument.
|
|
*/
|
|
|
|
intersection = nxsig_pendingset(rtcb);
|
|
sigandset(&intersection, &intersection, set);
|
|
if (!sigisemptyset(&intersection))
|
|
{
|
|
/* One or more of the signals in intersections is sufficient to cause
|
|
* us to not wait. Pick the lowest numbered signal and mark it not
|
|
* pending.
|
|
*/
|
|
|
|
sigpend = nxsig_remove_pendingsignal(rtcb,
|
|
nxsig_lowest(&intersection));
|
|
DEBUGASSERT(sigpend);
|
|
|
|
/* Return the signal info to the caller if so requested */
|
|
|
|
if (info != NULL)
|
|
{
|
|
memcpy(info, &sigpend->info, sizeof(struct siginfo));
|
|
}
|
|
|
|
/* The return value is the number of the signal that awakened us */
|
|
|
|
ret = sigpend->info.si_signo;
|
|
|
|
/* Then dispose of the pending signal structure properly */
|
|
|
|
nxsig_release_pendingsignal(sigpend);
|
|
}
|
|
|
|
/* We will have to wait for a signal to be posted to this task. */
|
|
|
|
else
|
|
{
|
|
rtcb->sigunbinfo = (info == NULL) ? &unbinfo : info;
|
|
|
|
/* Save the set of pending signals to wait for */
|
|
|
|
rtcb->sigwaitmask = *set;
|
|
|
|
leave_critical_section(flags);
|
|
|
|
ret = nxsig_clockwait(CLOCK_REALTIME, 0, timeout, NULL);
|
|
if (ret < 0)
|
|
{
|
|
rtcb->sigunbinfo = NULL;
|
|
return ret;
|
|
}
|
|
|
|
flags = enter_critical_section();
|
|
|
|
/* We are running again, clear the sigwaitmask */
|
|
|
|
sigemptyset(&rtcb->sigwaitmask);
|
|
|
|
/* When we awaken, the cause will be in the TCB. Get the signal number
|
|
* or timeout) that awakened us.
|
|
*/
|
|
|
|
if (GOOD_SIGNO(rtcb->sigunbinfo->si_signo))
|
|
{
|
|
/* We were awakened by a signal... but is it one of the signals
|
|
* that we were waiting for?
|
|
*/
|
|
|
|
if (nxsig_ismember(set, rtcb->sigunbinfo->si_signo) == 1)
|
|
{
|
|
/* Yes.. the return value is the number of the signal that
|
|
* awakened us.
|
|
*/
|
|
|
|
ret = rtcb->sigunbinfo->si_signo;
|
|
}
|
|
else
|
|
{
|
|
/* No... then report the EINTR error */
|
|
|
|
ret = -EINTR;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* Otherwise, we must have been awakened by the timeout or,
|
|
* perhaps, the wait was cancelled.
|
|
*/
|
|
|
|
#ifdef CONFIG_CANCELLATION_POINTS
|
|
if (rtcb->sigunbinfo->si_signo == SIG_CANCEL_TIMEOUT)
|
|
{
|
|
/* The wait was canceled */
|
|
|
|
ret = -rtcb->sigunbinfo->si_errno;
|
|
DEBUGASSERT(ret < 0);
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
/* We were awakened by a timeout. Set EAGAIN and return an
|
|
* error.
|
|
*/
|
|
|
|
DEBUGASSERT(rtcb->sigunbinfo->si_signo == SIG_WAIT_TIMEOUT);
|
|
ret = -EAGAIN;
|
|
}
|
|
}
|
|
|
|
rtcb->sigunbinfo = NULL;
|
|
}
|
|
|
|
leave_critical_section(flags);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: sigtimedwait
|
|
*
|
|
* Description:
|
|
* This function selects the pending signal set specified by the argument
|
|
* set. If multiple signals are pending in set, it will remove and return
|
|
* the lowest numbered one. If no signals in set are pending at the time
|
|
* of the call, the calling process will be suspended until one of the
|
|
* signals in set becomes pending, OR until the process is interrupted by
|
|
* an unblocked signal, OR until the time interval specified by timeout
|
|
* (if any), has expired. If timeout is NULL, then the timeout interval
|
|
* is forever.
|
|
*
|
|
* If the info argument is non-NULL, the selected signal number is stored
|
|
* in the si_signo member and the cause of the signal is stored in the
|
|
* si_code member. The content of si_value is only meaningful if the
|
|
* signal was generated by sigqueue().
|
|
*
|
|
* The following values for si_code are defined in signal.h:
|
|
* SI_USER - Signal sent from kill, raise, or abort
|
|
* SI_QUEUE - Signal sent from sigqueue
|
|
* SI_TIMER - Signal is result of timer expiration
|
|
* SI_ASYNCIO - Signal is the result of asynch IO completion
|
|
* SI_MESGQ - Signal generated by arrival of a message on an
|
|
* empty message queue.
|
|
*
|
|
* Input Parameters:
|
|
* set - The pending signal set.
|
|
* info - The returned value (may be NULL).
|
|
* timeout - The amount of time to wait (may be NULL)
|
|
*
|
|
* Returned Value:
|
|
* Signal number that cause the wait to be terminated, otherwise -1 (ERROR)
|
|
* is returned with errno set to either:
|
|
*
|
|
* EAGAIN - No signal specified by set was generated within the specified
|
|
* timeout period.
|
|
* EINTR - The wait was interrupted by an unblocked, caught signal.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int sigtimedwait(FAR const sigset_t *set, FAR struct siginfo *info,
|
|
FAR const struct timespec *timeout)
|
|
{
|
|
int ret;
|
|
|
|
/* sigtimedwait() is a cancellation point */
|
|
|
|
enter_cancellation_point();
|
|
|
|
/* Let nxsig_timedwait() do the work. */
|
|
|
|
ret = nxsig_timedwait(set, info, timeout);
|
|
if (ret < 0)
|
|
{
|
|
set_errno(-ret);
|
|
ret = ERROR;
|
|
}
|
|
|
|
leave_cancellation_point();
|
|
return ret;
|
|
}
|