2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2014-08-08 12:31:23 -06:00
|
|
|
* sched/mqueue/mq_open.c
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2011-04-03 20:41:49 +00:00
|
|
|
* Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved.
|
2012-07-14 19:30:31 +00:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
2008-01-30 14:01:22 +00:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-17 23:21:28 +00:00
|
|
|
* 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.
|
|
|
|
|
*
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Included Files
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2009-12-14 18:39:29 +00:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2009-12-14 19:30:18 +00:00
|
|
|
#include <stdint.h>
|
2009-12-14 18:39:29 +00:00
|
|
|
#include <stdarg.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <mqueue.h>
|
2007-03-20 16:51:12 +00:00
|
|
|
#include <fcntl.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <sched.h>
|
2007-02-21 21:55:16 +00:00
|
|
|
#include <errno.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <debug.h>
|
2009-12-14 19:30:18 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <nuttx/kmalloc.h>
|
2009-12-14 19:30:18 +00:00
|
|
|
|
2014-08-08 17:53:55 -06:00
|
|
|
#include "sched/sched.h"
|
2014-08-08 12:31:23 -06:00
|
|
|
#include "mqueue/mqueue.h"
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2014-09-29 14:09:31 -06:00
|
|
|
* Pre-procesor Definitions
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Private Type Declarations
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2014-09-29 14:09:31 -06:00
|
|
|
* Public Variables
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Private Variables
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Private Functions
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Public Functions
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
/****************************************************************************
|
2012-07-14 19:30:31 +00:00
|
|
|
* Name: mq_open
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
|
* Description:
|
2012-07-14 19:30:31 +00:00
|
|
|
* This function establish a connection between a named message queue and
|
|
|
|
|
* the calling task. After a successful call of mq_open(), the task can
|
|
|
|
|
* reference the message queue using the address returned by the call. The
|
|
|
|
|
* message queue remains usable until it is closed by a successful call to
|
|
|
|
|
* mq_close().
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
|
* Parameters:
|
|
|
|
|
* mq_name - Name of the queue to open
|
|
|
|
|
* oflags - open flags
|
2012-07-14 19:30:31 +00:00
|
|
|
* Optional parameters. When the O_CREAT flag is specified, two optional
|
|
|
|
|
* parameters are expected:
|
|
|
|
|
*
|
2007-02-17 23:21:28 +00:00
|
|
|
* 1. mode_t mode (ignored), and
|
|
|
|
|
* 2. struct mq_attr *attr. The mq_maxmsg attribute
|
|
|
|
|
* is used at the time that the message queue is
|
|
|
|
|
* created to determine the maximum number of
|
|
|
|
|
* messages that may be placed in the message queue.
|
|
|
|
|
*
|
|
|
|
|
* Return Value:
|
|
|
|
|
* A message queue descriptor or -1 (ERROR)
|
|
|
|
|
*
|
|
|
|
|
* Assumptions:
|
|
|
|
|
*
|
2008-01-30 14:01:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
|
mqd_t mq_open(const char *mq_name, int oflags, ...)
|
|
|
|
|
{
|
2013-02-04 18:46:28 +00:00
|
|
|
FAR struct tcb_s *rtcb = (FAR struct tcb_s*)g_readytorun.head;
|
2014-09-29 13:19:11 -06:00
|
|
|
FAR struct mqueue_inode_s *msgq;
|
2013-02-04 18:46:28 +00:00
|
|
|
mqd_t mqdes = NULL;
|
2014-09-29 14:09:31 -06:00
|
|
|
va_list arg;
|
|
|
|
|
struct mq_attr *attr;
|
|
|
|
|
mode_t mode;
|
|
|
|
|
int namelen;
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
|
/* Make sure that a non-NULL name is supplied */
|
|
|
|
|
|
|
|
|
|
if (mq_name)
|
|
|
|
|
{
|
|
|
|
|
sched_lock();
|
|
|
|
|
namelen = strlen(mq_name);
|
|
|
|
|
if (namelen > 0)
|
|
|
|
|
{
|
|
|
|
|
/* See if the message queue already exists */
|
|
|
|
|
|
|
|
|
|
msgq = mq_findnamed(mq_name);
|
|
|
|
|
if (msgq)
|
|
|
|
|
{
|
2008-01-30 14:01:22 +00:00
|
|
|
/* It does. Check if the caller wanted to create a new
|
|
|
|
|
* message queue with this name (i.e., O_CREAT|O_EXCL)
|
2007-02-17 23:21:28 +00:00
|
|
|
*/
|
|
|
|
|
|
2008-01-30 14:01:22 +00:00
|
|
|
if ((oflags & O_CREAT) == 0 || (oflags & O_EXCL) == 0)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
|
|
|
|
/* Create a message queue descriptor for the TCB */
|
|
|
|
|
|
|
|
|
|
mqdes = mq_descreate(rtcb, msgq, oflags);
|
|
|
|
|
if (mqdes)
|
|
|
|
|
{
|
|
|
|
|
/* Allow a new connection to the message queue */
|
|
|
|
|
|
|
|
|
|
msgq->nconnect++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* It doesn't exist. Should we create one? */
|
|
|
|
|
|
|
|
|
|
else if ((oflags & O_CREAT) != 0)
|
|
|
|
|
{
|
2014-09-29 14:09:31 -06:00
|
|
|
/* Yes.. Get the optional arguments needed to create a message
|
|
|
|
|
* queue.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
va_start(arg, oflags);
|
|
|
|
|
mode = va_arg(arg, mode_t);
|
|
|
|
|
attr = va_arg(arg, struct mq_attr*);
|
|
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
/* Allocate memory for the new message queue. The size to
|
2014-09-29 13:19:11 -06:00
|
|
|
* allocate is the size of the struct mqueue_inode_s header
|
|
|
|
|
* plus the size of the message queue name+1.
|
2007-02-17 23:21:28 +00:00
|
|
|
*/
|
|
|
|
|
|
2014-09-29 14:09:31 -06:00
|
|
|
msgq = (FAR struct mqueue_inode_s*)mq_msgqalloc(oflags, mode, attr);
|
2007-02-17 23:21:28 +00:00
|
|
|
if (msgq)
|
|
|
|
|
{
|
2014-09-29 14:09:31 -06:00
|
|
|
#warning Missing logic
|
|
|
|
|
}
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2014-09-29 14:09:31 -06:00
|
|
|
/* Clean-up variable argument stuff */
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2014-09-29 14:09:31 -06:00
|
|
|
va_end(arg);
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
|
|
|
|
}
|
2012-07-14 19:30:31 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
sched_unlock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mqdes == NULL)
|
|
|
|
|
{
|
|
|
|
|
return (mqd_t)ERROR;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return mqdes;
|
|
|
|
|
}
|
|
|
|
|
}
|