/**************************************************************************** * sched/mqueue/mq_rcvinternal.c * * 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 #include #include #include #include #include #include #include #include #include #include #include #include #include "sched/sched.h" #include "mqueue/mqueue.h" /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: nxmq_verify_receive * * Description: * This is internal, common logic shared by both [nx]mq_receive and * [nx]mq_timedreceive. This function verifies the input parameters that * are common to both functions. * * Input Parameters: * msgq - Message queue descriptor * msg - Buffer to receive the message * msglen - Size of the buffer in bytes * * Returned Value: * On success, zero (OK) is returned. A negated errno value is returned * on any failure: * * EBADF Message queue opened not opened for reading. * EMSGSIZE 'msglen' was less than the maxmsgsize attribute of the message * queue. * EINVAL Invalid 'msg' or 'msgq' * ****************************************************************************/ #ifdef CONFIG_DEBUG_FEATURES int nxmq_verify_receive(FAR struct file *mq, FAR char *msg, size_t msglen) { FAR struct inode *inode = mq->f_inode; FAR struct mqueue_inode_s *msgq; if (inode == NULL) { return -EBADF; } msgq = inode->i_private; /* Verify the input parameters */ if (!msg || !msgq) { return -EINVAL; } if ((mq->f_oflags & O_RDOK) == 0) { return -EBADF; } if (msglen < (size_t)msgq->maxmsgsize) { return -EMSGSIZE; } return OK; } #endif /**************************************************************************** * Name: nxmq_wait_receive * * Description: * This is internal, common logic shared by both [nx]mq_receive and * [nx]mq_timedreceive. This function waits for a message to be received * on the specified message queue, removes the message from the queue, and * returns it. * * Input Parameters: * msgq - Message queue descriptor * oflags - flags from user set * rcvmsg - The caller-provided location in which to return the newly * received message. * * Returned Value: * On success, zero (OK) is returned. A negated errno value is returned * on any failure. * * Assumptions: * - The caller has provided all validity checking of the input parameters * using nxmq_verify_receive. * - Interrupts should be disabled throughout this call. This is necessary * because messages can be sent from interrupt level processing. * - For mq_timedreceive, setting of the timer and this wait must be atomic. * ****************************************************************************/ int nxmq_wait_receive(FAR struct mqueue_inode_s *msgq, int oflags, FAR struct mqueue_msg_s **rcvmsg) { FAR struct mqueue_msg_s *newmsg; FAR struct tcb_s *rtcb; bool switch_needed; DEBUGASSERT(rcvmsg != NULL); #ifdef CONFIG_CANCELLATION_POINTS /* nxmq_wait_receive() is not a cancellation point, but it may be called * from mq_receive() or mq_timedreceive() which are cancellation point. */ if (check_cancellation_point()) { /* If there is a pending cancellation, then do not perform * the wait. Exit now with ECANCELED. */ return -ECANCELED; } #endif /* Get the message from the head of the queue */ while ((newmsg = (FAR struct mqueue_msg_s *) list_remove_head(&msgq->msglist)) == NULL) { /* The queue is empty! Should we block until there the above condition * has been satisfied? */ if ((oflags & O_NONBLOCK) == 0) { /* Yes.. Block and try again */ rtcb = this_task(); rtcb->waitobj = msgq; msgq->cmn.nwaitnotempty++; /* Initialize the 'errcode" used to communication wake-up error * conditions. */ rtcb->errcode = OK; /* Make sure this is not the idle task, descheduling that * isn't going to end well. */ DEBUGASSERT(!is_idle_task(rtcb)); /* Remove the tcb task from the ready-to-run list. */ switch_needed = nxsched_remove_readytorun(rtcb, true); /* Add the task to the specified blocked task list */ rtcb->task_state = TSTATE_WAIT_MQNOTEMPTY; nxsched_add_prioritized(rtcb, MQ_WNELIST(msgq->cmn)); /* Now, perform the context switch if one is needed */ if (switch_needed) { up_switch_context(this_task(), rtcb); } /* When we resume at this point, either (1) the message queue * is no longer empty, or (2) the wait has been interrupted by * a signal. We can detect the latter case be examining the * errno value (should be either EINTR or ETIMEDOUT). */ if (rtcb->errcode != OK) { return -rtcb->errcode; } } else { /* The queue was empty, and the O_NONBLOCK flag was set for the * message queue description. */ return -EAGAIN; } } /* If we got message, then decrement the number of messages in * the queue while we are still in the critical section */ if (newmsg) { if (msgq->nmsgs-- == msgq->maxmsgs) { nxmq_pollnotify(msgq, POLLOUT); } } *rcvmsg = newmsg; return OK; } /**************************************************************************** * Name: nxmq_do_receive * * Description: * This is internal, common logic shared by both [nx]mq_receive and * [nx]mq_timedreceive. This function accepts the message obtained by * mq_waitmsg, provides the message content to the user, notifies any * threads that were waiting for the message queue to become non-full, * and disposes of the message structure * * Input Parameters: * msgq - Message queue descriptor * mqmsg - The message obtained by mq_waitmsg() * ubuffer - The address of the user provided buffer to receive the message * prio - The user-provided location to return the message priority. * * Returned Value: * Returns the length of the received message. This function does not * fail. * * Assumptions: * - The caller has provided all validity checking of the input parameters * using nxmq_verify_receive. * - The user buffer, ubuffer, is known to be large enough to accept the * largest message that an be sent on this message queue * - Pre-emption should be disabled throughout this call. * ****************************************************************************/ ssize_t nxmq_do_receive(FAR struct mqueue_inode_s *msgq, FAR struct mqueue_msg_s *mqmsg, FAR char *ubuffer, FAR unsigned int *prio) { FAR struct tcb_s *btcb; ssize_t rcvmsglen; /* Get the length of the message (also the return value) */ rcvmsglen = mqmsg->msglen; /* Copy the message into the caller's buffer */ memcpy(ubuffer, (FAR const void *)mqmsg->mail, rcvmsglen); /* Copy the message priority as well (if a buffer is provided) */ if (prio) { *prio = mqmsg->priority; } /* We are done with the message. Deallocate it now. */ nxmq_free_msg(mqmsg); /* Check if any tasks are waiting for the MQ not full event. */ if (msgq->cmn.nwaitnotfull > 0) { FAR struct tcb_s *rtcb = this_task(); /* Find the highest priority task that is waiting for * this queue to be not-full in waitfornotfull list. * This must be performed in a critical section because * messages can be sent from interrupt handlers. */ btcb = (FAR struct tcb_s *)dq_remfirst(MQ_WNFLIST(msgq->cmn)); /* If one was found, unblock it. NOTE: There is a race * condition here: the queue might be full again by the * time the task is unblocked */ DEBUGASSERT(btcb != NULL); if (WDOG_ISACTIVE(&btcb->waitdog)) { wd_cancel(&btcb->waitdog); } msgq->cmn.nwaitnotfull--; /* Indicate that the wait is over. */ btcb->waitobj = NULL; /* Add the task to ready-to-run task list and * perform the context switch if one is needed */ if (nxsched_add_readytorun(btcb)) { up_switch_context(btcb, rtcb); } } /* Return the length of the message transferred to the user buffer */ return rcvmsglen; }