2014-10-05 14:55:17 +02:00
|
|
|
/****************************************************************************
|
2014-10-06 16:10:32 +02:00
|
|
|
* fs/aio/aio_signal.c
|
2014-10-05 14:55:17 +02:00
|
|
|
*
|
2015-12-30 20:28:39 +01:00
|
|
|
* Copyright (C) 2014-2015 Gregory Nutt. All rights reserved.
|
2014-10-05 14:55:17 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2014-10-06 16:10:32 +02:00
|
|
|
#include <sys/types.h>
|
2014-10-05 21:57:55 +02:00
|
|
|
#include <sched.h>
|
2014-10-05 14:55:17 +02:00
|
|
|
#include <signal.h>
|
|
|
|
#include <aio.h>
|
|
|
|
#include <assert.h>
|
2014-10-05 21:57:55 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2014-10-05 14:55:17 +02:00
|
|
|
|
2017-10-07 18:57:09 +02:00
|
|
|
#include <nuttx/signal.h>
|
|
|
|
|
2014-10-05 14:55:17 +02:00
|
|
|
#include "aio/aio.h"
|
|
|
|
|
2014-10-05 23:44:43 +02:00
|
|
|
#ifdef CONFIG_FS_AIO
|
2014-10-05 14:55:17 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
2015-12-30 20:20:31 +01:00
|
|
|
|
2014-10-05 14:55:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: aio_signal
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Signal the client that an I/O has completed.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
2014-10-06 16:10:32 +02:00
|
|
|
* pid - ID of the task to signal
|
2014-10-05 14:55:17 +02:00
|
|
|
* aiocbp - Pointer to the asynchronous I/O state structure that includes
|
|
|
|
* information about how to signal the client
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) if the client was successfully signalled. Otherwise, a
|
|
|
|
* negated errno value is returned.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function runs only in the context of the worker thread.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-10-06 16:10:32 +02:00
|
|
|
int aio_signal(pid_t pid, FAR struct aiocb *aiocbp)
|
2014-10-05 14:55:17 +02:00
|
|
|
{
|
2014-10-07 17:57:20 +02:00
|
|
|
#ifdef CONFIG_CAN_PASS_STRUCTS
|
|
|
|
union sigval value;
|
|
|
|
#endif
|
2014-10-05 19:43:42 +02:00
|
|
|
int status;
|
2014-10-05 14:55:17 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
DEBUGASSERT(aiocbp);
|
2014-10-06 16:10:32 +02:00
|
|
|
|
2014-10-05 19:43:42 +02:00
|
|
|
ret = OK; /* Assume success */
|
|
|
|
|
2014-10-05 14:55:17 +02:00
|
|
|
/* Signal the client */
|
|
|
|
|
|
|
|
if (aiocbp->aio_sigevent.sigev_notify == SIGEV_SIGNAL)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_CAN_PASS_STRUCTS
|
2017-10-07 18:57:09 +02:00
|
|
|
ret = nxsig_queue(pid, aiocbp->aio_sigevent.sigev_signo,
|
2014-10-05 19:43:42 +02:00
|
|
|
aiocbp->aio_sigevent.sigev_value);
|
2014-10-05 14:55:17 +02:00
|
|
|
#else
|
2017-10-07 18:57:09 +02:00
|
|
|
ret = nxsig_queue(pid, aiocbp->aio_sigevent.sigev_sign,
|
2014-10-05 19:43:42 +02:00
|
|
|
aiocbp->aio_sigevent.sigev_value.sival_ptr);
|
2014-10-05 14:55:17 +02:00
|
|
|
#endif
|
2017-10-07 18:57:09 +02:00
|
|
|
if (ret < 0)
|
2014-10-05 19:43:42 +02:00
|
|
|
{
|
2017-10-07 18:57:09 +02:00
|
|
|
ferr("ERROR: nxsig_queue #1 failed: %d\n", ret);
|
2014-10-05 19:43:42 +02:00
|
|
|
}
|
2014-10-05 14:55:17 +02:00
|
|
|
}
|
|
|
|
|
2015-12-30 20:20:31 +01:00
|
|
|
#ifdef CONFIG_SIG_EVTHREAD
|
|
|
|
/* Notify the client via a function call */
|
|
|
|
|
|
|
|
else if (aiocbp->aio_sigevent.sigev_notify == SIGEV_THREAD)
|
|
|
|
{
|
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
|
|
|
ret = nxsig_notification(pid, &aiocbp->aio_sigevent);
|
2015-12-30 20:20:31 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
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
|
|
|
ferr("ERROR: nxsig_notification failed: %d\n", ret);
|
2015-12-30 20:20:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-10-05 14:55:17 +02:00
|
|
|
/* Send the poll signal in any event in case the caller is waiting
|
|
|
|
* on sig_suspend();
|
|
|
|
*/
|
|
|
|
|
2014-10-07 17:57:20 +02:00
|
|
|
#ifdef CONFIG_CAN_PASS_STRUCTS
|
|
|
|
value.sival_ptr = aiocbp;
|
2017-10-07 18:57:09 +02:00
|
|
|
status = nxsig_queue(pid, SIGPOLL, value);
|
2014-10-07 17:57:20 +02:00
|
|
|
#else
|
2017-10-07 18:57:09 +02:00
|
|
|
status = nxsig_queue(pid, SIGPOLL, aiocbp);
|
2014-10-07 17:57:20 +02:00
|
|
|
#endif
|
2017-10-07 18:57:09 +02:00
|
|
|
if (status < 0)
|
2014-10-05 19:43:42 +02:00
|
|
|
{
|
2017-10-07 18:57:09 +02:00
|
|
|
ferr("ERROR: nxsig_queue #2 failed: %d\n", status);
|
|
|
|
if (ret >= OK)
|
|
|
|
{
|
|
|
|
ret = status;
|
|
|
|
}
|
2014-10-05 19:43:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure that errno is set correctly on return */
|
|
|
|
|
|
|
|
if (ret < 0)
|
2014-10-05 14:55:17 +02:00
|
|
|
{
|
2017-10-07 18:57:09 +02:00
|
|
|
set_errno(-ret);
|
2014-10-05 19:43:42 +02:00
|
|
|
return ERROR;
|
2014-10-05 14:55:17 +02:00
|
|
|
}
|
|
|
|
|
2014-10-05 19:43:42 +02:00
|
|
|
return OK;
|
2014-10-05 14:55:17 +02:00
|
|
|
}
|
|
|
|
|
2014-10-05 23:44:43 +02:00
|
|
|
#endif /* CONFIG_FS_AIO */
|