Home | History | Annotate | Line # | Download | only in kern
sys_mqueue.c revision 1.7
      1  1.7     ad /*	$NetBSD: sys_mqueue.c,v 1.7 2008/03/21 21:55:00 ad Exp $	*/
      2  1.1  rmind 
      3  1.1  rmind /*
      4  1.1  rmind  * Copyright (c) 2007, Mindaugas Rasiukevicius <rmind at NetBSD org>
      5  1.5  rmind  * All rights reserved.
      6  1.1  rmind  *
      7  1.1  rmind  * Redistribution and use in source and binary forms, with or without
      8  1.1  rmind  * modification, are permitted provided that the following conditions
      9  1.1  rmind  * are met:
     10  1.1  rmind  * 1. Redistributions of source code must retain the above copyright
     11  1.1  rmind  *    notice, this list of conditions and the following disclaimer.
     12  1.1  rmind  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  rmind  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  rmind  *    documentation and/or other materials provided with the distribution.
     15  1.1  rmind  *
     16  1.1  rmind  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     17  1.1  rmind  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  1.1  rmind  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  1.1  rmind  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  1.1  rmind  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  1.1  rmind  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  1.1  rmind  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  1.1  rmind  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  1.1  rmind  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  1.1  rmind  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  1.1  rmind  * POSSIBILITY OF SUCH DAMAGE.
     27  1.1  rmind  */
     28  1.1  rmind 
     29  1.1  rmind /*
     30  1.1  rmind  * Implementation of POSIX message queues.
     31  1.1  rmind  * Defined in the Base Definitions volume of IEEE Std 1003.1-2001.
     32  1.1  rmind  *
     33  1.1  rmind  * Locking
     34  1.1  rmind  *  Global list of message queues and proc::p_mqueue_cnt counter are protected
     35  1.1  rmind  *  by mqlist_mtx lock.  Concrete message queue and its members are protected
     36  1.1  rmind  *  by mqueue::mq_mtx.
     37  1.1  rmind  *
     38  1.1  rmind  * Lock order:
     39  1.1  rmind  * 	mqlist_mtx
     40  1.1  rmind  * 	  -> mqueue::mq_mtx
     41  1.1  rmind  *
     42  1.1  rmind  * TODO:
     43  1.1  rmind  *  - Hashing or RB-tree for the global list.
     44  1.1  rmind  *  - Support for select(), poll() and perhaps kqueue().
     45  1.1  rmind  */
     46  1.1  rmind 
     47  1.1  rmind #include <sys/cdefs.h>
     48  1.7     ad __KERNEL_RCSID(0, "$NetBSD: sys_mqueue.c,v 1.7 2008/03/21 21:55:00 ad Exp $");
     49  1.1  rmind 
     50  1.1  rmind #include <sys/param.h>
     51  1.1  rmind #include <sys/types.h>
     52  1.1  rmind #include <sys/condvar.h>
     53  1.1  rmind #include <sys/errno.h>
     54  1.1  rmind #include <sys/fcntl.h>
     55  1.1  rmind #include <sys/file.h>
     56  1.1  rmind #include <sys/filedesc.h>
     57  1.1  rmind #include <sys/kauth.h>
     58  1.1  rmind #include <sys/kernel.h>
     59  1.1  rmind #include <sys/kmem.h>
     60  1.1  rmind #include <sys/lwp.h>
     61  1.1  rmind #include <sys/mqueue.h>
     62  1.1  rmind #include <sys/mutex.h>
     63  1.1  rmind #include <sys/pool.h>
     64  1.1  rmind #include <sys/proc.h>
     65  1.1  rmind #include <sys/queue.h>
     66  1.1  rmind #include <sys/signal.h>
     67  1.1  rmind #include <sys/signalvar.h>
     68  1.1  rmind #include <sys/sysctl.h>
     69  1.1  rmind #include <sys/syscallargs.h>
     70  1.1  rmind #include <sys/systm.h>
     71  1.1  rmind #include <sys/unistd.h>
     72  1.1  rmind #include <sys/vnode.h>
     73  1.1  rmind 
     74  1.1  rmind /* System-wide limits. */
     75  1.1  rmind static u_int			mq_open_max = MQ_OPEN_MAX;
     76  1.1  rmind static u_int			mq_prio_max = MQ_PRIO_MAX;
     77  1.1  rmind 
     78  1.1  rmind static u_int			mq_max_msgsize = 16 * MQ_DEF_MSGSIZE;
     79  1.1  rmind static u_int			mq_def_maxmsg = 32;
     80  1.1  rmind 
     81  1.1  rmind static kmutex_t			mqlist_mtx;
     82  1.1  rmind static struct pool		mqmsg_poll;
     83  1.4   matt static LIST_HEAD(, mqueue)	mqueue_head =
     84  1.4   matt 	LIST_HEAD_INITIALIZER(mqueue_head);
     85  1.1  rmind 
     86  1.7     ad static int	mq_close_fop(file_t *);
     87  1.1  rmind 
     88  1.1  rmind static const struct fileops mqops = {
     89  1.1  rmind 	fbadop_read, fbadop_write, fbadop_ioctl, fnullop_fcntl, fnullop_poll,
     90  1.1  rmind 	fbadop_stat, mq_close_fop, fnullop_kqfilter
     91  1.1  rmind };
     92  1.1  rmind 
     93  1.1  rmind /*
     94  1.1  rmind  * Initialize POSIX message queue subsystem.
     95  1.1  rmind  */
     96  1.1  rmind void
     97  1.1  rmind mqueue_sysinit(void)
     98  1.1  rmind {
     99  1.1  rmind 
    100  1.1  rmind 	pool_init(&mqmsg_poll, MQ_DEF_MSGSIZE, 0, 0, 0,
    101  1.1  rmind 	    "mqmsg_poll", &pool_allocator_nointr, IPL_NONE);
    102  1.1  rmind 	mutex_init(&mqlist_mtx, MUTEX_DEFAULT, IPL_NONE);
    103  1.1  rmind }
    104  1.1  rmind 
    105  1.1  rmind /*
    106  1.1  rmind  * Free the message.
    107  1.1  rmind  */
    108  1.1  rmind static void
    109  1.1  rmind mqueue_freemsg(struct mq_msg *msg, const size_t size)
    110  1.1  rmind {
    111  1.1  rmind 
    112  1.1  rmind 	if (size > MQ_DEF_MSGSIZE)
    113  1.1  rmind 		kmem_free(msg, size);
    114  1.1  rmind 	else
    115  1.1  rmind 		pool_put(&mqmsg_poll, msg);
    116  1.1  rmind }
    117  1.1  rmind 
    118  1.1  rmind /*
    119  1.1  rmind  * Destroy the message queue.
    120  1.1  rmind  */
    121  1.1  rmind static void
    122  1.1  rmind mqueue_destroy(struct mqueue *mq)
    123  1.1  rmind {
    124  1.1  rmind 	struct mq_msg *msg;
    125  1.1  rmind 
    126  1.1  rmind 	while ((msg = TAILQ_FIRST(&mq->mq_head)) != NULL) {
    127  1.1  rmind 		TAILQ_REMOVE(&mq->mq_head, msg, msg_queue);
    128  1.1  rmind 		mqueue_freemsg(msg, sizeof(struct mq_msg) + msg->msg_len);
    129  1.1  rmind 	}
    130  1.1  rmind 	cv_destroy(&mq->mq_send_cv);
    131  1.1  rmind 	cv_destroy(&mq->mq_recv_cv);
    132  1.1  rmind 	mutex_destroy(&mq->mq_mtx);
    133  1.1  rmind 	kmem_free(mq, sizeof(struct mqueue));
    134  1.1  rmind }
    135  1.1  rmind 
    136  1.1  rmind /*
    137  1.1  rmind  * Lookup for file name in general list of message queues.
    138  1.1  rmind  *  => locks the message queue
    139  1.1  rmind  */
    140  1.1  rmind static void *
    141  1.1  rmind mqueue_lookup(char *name)
    142  1.1  rmind {
    143  1.1  rmind 	struct mqueue *mq;
    144  1.1  rmind 	KASSERT(mutex_owned(&mqlist_mtx));
    145  1.1  rmind 
    146  1.1  rmind 	LIST_FOREACH(mq, &mqueue_head, mq_list) {
    147  1.1  rmind 		if (strncmp(mq->mq_name, name, MQ_NAMELEN) == 0) {
    148  1.1  rmind 			mutex_enter(&mq->mq_mtx);
    149  1.1  rmind 			return mq;
    150  1.1  rmind 		}
    151  1.1  rmind 	}
    152  1.1  rmind 
    153  1.1  rmind 	return NULL;
    154  1.1  rmind }
    155  1.1  rmind 
    156  1.1  rmind /*
    157  1.1  rmind  * Check access against message queue.
    158  1.1  rmind  */
    159  1.1  rmind static inline int
    160  1.1  rmind mqueue_access(struct lwp *l, struct mqueue *mq, mode_t acc_mode)
    161  1.1  rmind {
    162  1.1  rmind 
    163  1.1  rmind 	KASSERT(mutex_owned(&mq->mq_mtx));
    164  1.1  rmind 	return vaccess(VNON, mq->mq_mode, mq->mq_euid, mq->mq_egid,
    165  1.1  rmind 	    acc_mode, l->l_cred);
    166  1.1  rmind }
    167  1.1  rmind 
    168  1.1  rmind /*
    169  1.1  rmind  * Get the mqueue from the descriptor.
    170  1.1  rmind  *  => locks the message queue
    171  1.1  rmind  *  => increments the reference on file entry
    172  1.1  rmind  */
    173  1.1  rmind static int
    174  1.7     ad mqueue_get(struct lwp *l, mqd_t mqd, mode_t acc_mode, file_t **fpr)
    175  1.1  rmind {
    176  1.7     ad 	file_t *fp;
    177  1.1  rmind 	struct mqueue *mq;
    178  1.1  rmind 
    179  1.1  rmind 	/* Get the file and descriptor */
    180  1.7     ad 	fp = fd_getfile((int)mqd);
    181  1.1  rmind 	if (fp == NULL)
    182  1.1  rmind 		return EBADF;
    183  1.1  rmind 
    184  1.1  rmind 	/* Increment the reference of file entry, and lock the mqueue */
    185  1.1  rmind 	mq = fp->f_data;
    186  1.1  rmind 	*fpr = fp;
    187  1.1  rmind 	mutex_enter(&mq->mq_mtx);
    188  1.1  rmind 
    189  1.1  rmind 	/* Check the access mode and permission if needed */
    190  1.1  rmind 	if (acc_mode == VNOVAL)
    191  1.1  rmind 		return 0;
    192  1.1  rmind 	if ((acc_mode & fp->f_flag) == 0 || mqueue_access(l, mq, acc_mode)) {
    193  1.1  rmind 		mutex_exit(&mq->mq_mtx);
    194  1.7     ad 		fd_putfile((int)mqd);
    195  1.1  rmind 		return EPERM;
    196  1.1  rmind 	}
    197  1.1  rmind 
    198  1.1  rmind 	return 0;
    199  1.1  rmind }
    200  1.1  rmind 
    201  1.1  rmind /*
    202  1.1  rmind  * Converter from struct timespec to the ticks.
    203  1.1  rmind  * Used by mq_timedreceive(), mq_timedsend().
    204  1.1  rmind  */
    205  1.1  rmind static int
    206  1.1  rmind abstimeout2timo(const void *uaddr, int *timo)
    207  1.1  rmind {
    208  1.1  rmind 	struct timespec ts;
    209  1.1  rmind 	int error;
    210  1.1  rmind 
    211  1.1  rmind 	error = copyin(uaddr, &ts, sizeof(struct timespec));
    212  1.1  rmind 	if (error)
    213  1.1  rmind 		return error;
    214  1.1  rmind 
    215  1.1  rmind 	/*
    216  1.1  rmind 	 * According to POSIX, validation check is needed only in case of
    217  1.1  rmind 	 * blocking.  Thus, set the invalid value right now, and fail latter.
    218  1.1  rmind 	 */
    219  1.1  rmind 	error = itimespecfix(&ts);
    220  1.1  rmind 	*timo = (error == 0) ? tstohz(&ts) : -1;
    221  1.1  rmind 
    222  1.1  rmind 	return 0;
    223  1.1  rmind }
    224  1.1  rmind 
    225  1.1  rmind static int
    226  1.7     ad mq_close_fop(file_t *fp)
    227  1.1  rmind {
    228  1.7     ad 	struct proc *p = curproc;
    229  1.1  rmind 	struct mqueue *mq = fp->f_data;
    230  1.1  rmind 	bool destroy;
    231  1.1  rmind 
    232  1.1  rmind 	mutex_enter(&mqlist_mtx);
    233  1.1  rmind 	mutex_enter(&mq->mq_mtx);
    234  1.1  rmind 
    235  1.1  rmind 	/* Decrease the counters */
    236  1.1  rmind 	p->p_mqueue_cnt--;
    237  1.1  rmind 	mq->mq_refcnt--;
    238  1.1  rmind 
    239  1.1  rmind 	/* Remove notification if registered for this process */
    240  1.1  rmind 	if (mq->mq_notify_proc == p)
    241  1.1  rmind 		mq->mq_notify_proc = NULL;
    242  1.1  rmind 
    243  1.1  rmind 	/*
    244  1.1  rmind 	 * If this is the last reference and mqueue is marked for unlink,
    245  1.1  rmind 	 * remove and later destroy the message queue.
    246  1.1  rmind 	 */
    247  1.1  rmind 	if (mq->mq_refcnt == 0 && (mq->mq_attrib.mq_flags & MQ_UNLINK)) {
    248  1.1  rmind 		LIST_REMOVE(mq, mq_list);
    249  1.1  rmind 		destroy = true;
    250  1.1  rmind 	} else
    251  1.1  rmind 		destroy = false;
    252  1.1  rmind 
    253  1.1  rmind 	mutex_exit(&mq->mq_mtx);
    254  1.1  rmind 	mutex_exit(&mqlist_mtx);
    255  1.1  rmind 
    256  1.1  rmind 	if (destroy)
    257  1.1  rmind 		mqueue_destroy(mq);
    258  1.1  rmind 
    259  1.1  rmind 	return 0;
    260  1.1  rmind }
    261  1.1  rmind 
    262  1.1  rmind /*
    263  1.1  rmind  * General mqueue system calls.
    264  1.1  rmind  */
    265  1.1  rmind 
    266  1.1  rmind int
    267  1.6    dsl sys_mq_open(struct lwp *l, const struct sys_mq_open_args *uap, register_t *retval)
    268  1.1  rmind {
    269  1.6    dsl 	/* {
    270  1.1  rmind 		syscallarg(const char *) name;
    271  1.1  rmind 		syscallarg(int) oflag;
    272  1.1  rmind 		syscallarg(mode_t) mode;
    273  1.1  rmind 		syscallarg(struct mq_attr) attr;
    274  1.6    dsl 	} */
    275  1.1  rmind 	struct proc *p = l->l_proc;
    276  1.1  rmind 	struct mqueue *mq, *mq_new = NULL;
    277  1.7     ad 	file_t *fp;
    278  1.1  rmind 	char *name;
    279  1.1  rmind 	int mqd, error, oflag;
    280  1.1  rmind 
    281  1.1  rmind 	/* Check access mode flags */
    282  1.1  rmind 	oflag = SCARG(uap, oflag);
    283  1.1  rmind 	if ((oflag & (O_RDWR | O_RDONLY | O_WRONLY)) == 0)
    284  1.1  rmind 		return EINVAL;
    285  1.1  rmind 
    286  1.1  rmind 	/* Get the name from the user-space */
    287  1.1  rmind 	name = kmem_zalloc(MQ_NAMELEN, KM_SLEEP);
    288  1.1  rmind 	error = copyinstr(SCARG(uap, name), name, MQ_NAMELEN - 1, NULL);
    289  1.1  rmind 	if (error) {
    290  1.1  rmind 		kmem_free(name, MQ_NAMELEN);
    291  1.1  rmind 		return error;
    292  1.1  rmind 	}
    293  1.1  rmind 
    294  1.1  rmind 	if (oflag & O_CREAT) {
    295  1.1  rmind 		struct mq_attr attr;
    296  1.1  rmind 
    297  1.1  rmind 		/* Check the limit */
    298  1.1  rmind 		if (p->p_mqueue_cnt == mq_open_max) {
    299  1.1  rmind 			kmem_free(name, MQ_NAMELEN);
    300  1.1  rmind 			return EMFILE;
    301  1.1  rmind 		}
    302  1.1  rmind 
    303  1.1  rmind 		/* Check for mqueue attributes */
    304  1.1  rmind 		if (SCARG(uap, attr)) {
    305  1.1  rmind 			error = copyin(SCARG(uap, attr), &attr,
    306  1.1  rmind 				sizeof(struct mq_attr));
    307  1.1  rmind 			if (error) {
    308  1.1  rmind 				kmem_free(name, MQ_NAMELEN);
    309  1.1  rmind 				return error;
    310  1.1  rmind 			}
    311  1.1  rmind 			if (attr.mq_maxmsg <= 0 || attr.mq_msgsize <= 0 ||
    312  1.1  rmind 			    attr.mq_msgsize > mq_max_msgsize) {
    313  1.1  rmind 				kmem_free(name, MQ_NAMELEN);
    314  1.1  rmind 				return EINVAL;
    315  1.1  rmind 			}
    316  1.1  rmind 			attr.mq_curmsgs = 0;
    317  1.1  rmind 		} else {
    318  1.1  rmind 			memset(&attr, 0, sizeof(struct mq_attr));
    319  1.1  rmind 			attr.mq_maxmsg = mq_def_maxmsg;
    320  1.1  rmind 			attr.mq_msgsize =
    321  1.1  rmind 			    MQ_DEF_MSGSIZE - sizeof(struct mq_msg);
    322  1.1  rmind 		}
    323  1.1  rmind 
    324  1.1  rmind 		/*
    325  1.1  rmind 		 * Allocate new mqueue, initialize data structures,
    326  1.1  rmind 		 * copy the name, attributes and set the flag.
    327  1.1  rmind 		 */
    328  1.1  rmind 		mq_new = kmem_zalloc(sizeof(struct mqueue), KM_SLEEP);
    329  1.1  rmind 
    330  1.1  rmind 		mutex_init(&mq_new->mq_mtx, MUTEX_DEFAULT, IPL_NONE);
    331  1.1  rmind 		cv_init(&mq_new->mq_send_cv, "mqsendcv");
    332  1.1  rmind 		cv_init(&mq_new->mq_recv_cv, "mqrecvcv");
    333  1.1  rmind 		TAILQ_INIT(&mq_new->mq_head);
    334  1.1  rmind 
    335  1.1  rmind 		strlcpy(mq_new->mq_name, name, MQ_NAMELEN);
    336  1.1  rmind 		memcpy(&mq_new->mq_attrib, &attr, sizeof(struct mq_attr));
    337  1.1  rmind 		mq_new->mq_attrib.mq_flags = oflag;
    338  1.1  rmind 
    339  1.1  rmind 		/* Store mode and effective UID with GID */
    340  1.1  rmind 		mq_new->mq_mode = SCARG(uap, mode);
    341  1.1  rmind 		mq_new->mq_euid = kauth_cred_geteuid(l->l_cred);
    342  1.1  rmind 		mq_new->mq_egid = kauth_cred_getegid(l->l_cred);
    343  1.1  rmind 	}
    344  1.1  rmind 
    345  1.1  rmind 	/* Allocate file structure and descriptor */
    346  1.7     ad 	error = fd_allocfile(&fp, &mqd);
    347  1.1  rmind 	if (error) {
    348  1.1  rmind 		if (mq_new)
    349  1.1  rmind 			mqueue_destroy(mq_new);
    350  1.1  rmind 		kmem_free(name, MQ_NAMELEN);
    351  1.1  rmind 		return error;
    352  1.1  rmind 	}
    353  1.1  rmind 	fp->f_type = DTYPE_MQUEUE;
    354  1.1  rmind 	fp->f_flag = (oflag & O_RDWR) ? (VREAD | VWRITE) :
    355  1.1  rmind 	    ((oflag & O_RDONLY) ? VREAD : VWRITE);
    356  1.1  rmind 	fp->f_ops = &mqops;
    357  1.1  rmind 
    358  1.1  rmind 	/* Look up for mqueue with such name */
    359  1.1  rmind 	mutex_enter(&mqlist_mtx);
    360  1.1  rmind 	mq = mqueue_lookup(name);
    361  1.1  rmind 	if (mq) {
    362  1.1  rmind 		KASSERT(mutex_owned(&mq->mq_mtx));
    363  1.1  rmind 		/* Check if mqueue is not marked as unlinking */
    364  1.1  rmind 		if (mq->mq_attrib.mq_flags & MQ_UNLINK) {
    365  1.1  rmind 			error = EACCES;
    366  1.1  rmind 			goto exit;
    367  1.1  rmind 		}
    368  1.1  rmind 		/* Fail if O_EXCL is set, and mqueue already exists */
    369  1.1  rmind 		if ((oflag & O_CREAT) && (oflag & O_EXCL)) {
    370  1.1  rmind 			error = EEXIST;
    371  1.1  rmind 			goto exit;
    372  1.1  rmind 		}
    373  1.1  rmind 		/* Check the permission */
    374  1.1  rmind 		if (mqueue_access(l, mq, fp->f_flag)) {
    375  1.1  rmind 			error = EACCES;
    376  1.1  rmind 			goto exit;
    377  1.1  rmind 		}
    378  1.1  rmind 	} else {
    379  1.1  rmind 		/* Fail if mqueue neither exists, nor we create it */
    380  1.1  rmind 		if ((oflag & O_CREAT) == 0) {
    381  1.1  rmind 			mutex_exit(&mqlist_mtx);
    382  1.1  rmind 			KASSERT(mq_new == NULL);
    383  1.7     ad 			fd_abort(p, fp, mqd);
    384  1.1  rmind 			kmem_free(name, MQ_NAMELEN);
    385  1.1  rmind 			return ENOENT;
    386  1.1  rmind 		}
    387  1.1  rmind 
    388  1.1  rmind 		/* Check the limit */
    389  1.1  rmind 		if (p->p_mqueue_cnt == mq_open_max) {
    390  1.1  rmind 			error = EMFILE;
    391  1.1  rmind 			goto exit;
    392  1.1  rmind 		}
    393  1.1  rmind 
    394  1.1  rmind 		/* Insert the queue to the list */
    395  1.1  rmind 		mq = mq_new;
    396  1.1  rmind 		mutex_enter(&mq->mq_mtx);
    397  1.1  rmind 		LIST_INSERT_HEAD(&mqueue_head, mq, mq_list);
    398  1.1  rmind 		mq_new = NULL;
    399  1.1  rmind 	}
    400  1.1  rmind 
    401  1.1  rmind 	/* Increase the counters, and make descriptor ready */
    402  1.1  rmind 	p->p_mqueue_cnt++;
    403  1.1  rmind 	mq->mq_refcnt++;
    404  1.1  rmind 	fp->f_data = mq;
    405  1.1  rmind exit:
    406  1.1  rmind 	mutex_exit(&mq->mq_mtx);
    407  1.1  rmind 	mutex_exit(&mqlist_mtx);
    408  1.1  rmind 
    409  1.1  rmind 	if (mq_new)
    410  1.1  rmind 		mqueue_destroy(mq_new);
    411  1.1  rmind 	if (error) {
    412  1.7     ad 		fd_abort(p, fp, mqd);
    413  1.7     ad 	} else {
    414  1.7     ad 		fd_affix(p, fp, mqd);
    415  1.1  rmind 		*retval = mqd;
    416  1.7     ad 	}
    417  1.1  rmind 	kmem_free(name, MQ_NAMELEN);
    418  1.1  rmind 
    419  1.1  rmind 	return error;
    420  1.1  rmind }
    421  1.1  rmind 
    422  1.1  rmind int
    423  1.6    dsl sys_mq_close(struct lwp *l, const struct sys_mq_close_args *uap, register_t *retval)
    424  1.1  rmind {
    425  1.1  rmind 
    426  1.6    dsl 	return sys_close(l, (const void *)uap, retval);
    427  1.1  rmind }
    428  1.1  rmind 
    429  1.1  rmind /*
    430  1.1  rmind  * Primary mq_receive1() function.
    431  1.1  rmind  */
    432  1.1  rmind static int
    433  1.1  rmind mq_receive1(struct lwp *l, mqd_t mqdes, void *msg_ptr, size_t msg_len,
    434  1.1  rmind     unsigned *msg_prio, int t, ssize_t *mlen)
    435  1.1  rmind {
    436  1.7     ad 	file_t *fp = NULL;
    437  1.1  rmind 	struct mqueue *mq;
    438  1.1  rmind 	struct mq_msg *msg = NULL;
    439  1.1  rmind 	int error;
    440  1.1  rmind 
    441  1.1  rmind 	/* Get the message queue */
    442  1.1  rmind 	error = mqueue_get(l, mqdes, VREAD, &fp);
    443  1.1  rmind 	if (error)
    444  1.1  rmind 		return error;
    445  1.1  rmind 	mq = fp->f_data;
    446  1.1  rmind 
    447  1.1  rmind 	/* Check the message size limits */
    448  1.1  rmind 	if (msg_len < mq->mq_attrib.mq_msgsize) {
    449  1.1  rmind 		error = EMSGSIZE;
    450  1.1  rmind 		goto error;
    451  1.1  rmind 	}
    452  1.1  rmind 
    453  1.1  rmind 	/* Check if queue is empty */
    454  1.2     ad 	while (TAILQ_EMPTY(&mq->mq_head)) {
    455  1.1  rmind 		if (mq->mq_attrib.mq_flags & O_NONBLOCK) {
    456  1.1  rmind 			error = EAGAIN;
    457  1.1  rmind 			goto error;
    458  1.1  rmind 		}
    459  1.1  rmind 		if (t < 0) {
    460  1.1  rmind 			error = EINVAL;
    461  1.1  rmind 			goto error;
    462  1.1  rmind 		}
    463  1.1  rmind 		/*
    464  1.1  rmind 		 * Block until someone sends the message.
    465  1.1  rmind 		 * While doing this, notification should not be sent.
    466  1.1  rmind 		 */
    467  1.1  rmind 		mq->mq_attrib.mq_flags |= MQ_RECEIVE;
    468  1.1  rmind 		error = cv_timedwait_sig(&mq->mq_send_cv, &mq->mq_mtx, t);
    469  1.1  rmind 		mq->mq_attrib.mq_flags &= ~MQ_RECEIVE;
    470  1.1  rmind 		if (error || (mq->mq_attrib.mq_flags & MQ_UNLINK)) {
    471  1.3  rmind 			error = (error == EWOULDBLOCK) ? ETIMEDOUT : EINTR;
    472  1.1  rmind 			goto error;
    473  1.1  rmind 		}
    474  1.1  rmind 	}
    475  1.1  rmind 
    476  1.1  rmind 	/* Remove the message from the queue */
    477  1.1  rmind 	msg = TAILQ_FIRST(&mq->mq_head);
    478  1.1  rmind 	KASSERT(msg != NULL);
    479  1.1  rmind 	TAILQ_REMOVE(&mq->mq_head, msg, msg_queue);
    480  1.1  rmind 
    481  1.1  rmind 	/* Decrement the counter and signal waiter, if any */
    482  1.1  rmind 	mq->mq_attrib.mq_curmsgs--;
    483  1.1  rmind 	cv_signal(&mq->mq_recv_cv);
    484  1.1  rmind error:
    485  1.1  rmind 	mutex_exit(&mq->mq_mtx);
    486  1.7     ad 	fd_putfile((int)mqdes);
    487  1.1  rmind 	if (error)
    488  1.1  rmind 		return error;
    489  1.1  rmind 
    490  1.1  rmind 	/*
    491  1.1  rmind 	 * Copy the data to the user-space.
    492  1.1  rmind 	 * Note: According to POSIX, no message should be removed from the
    493  1.1  rmind 	 * queue in case of fail - this would be violated.
    494  1.1  rmind 	 */
    495  1.1  rmind 	*mlen = msg->msg_len;
    496  1.1  rmind 	error = copyout(msg->msg_ptr, msg_ptr, msg->msg_len);
    497  1.1  rmind 	if (error == 0 && msg_prio)
    498  1.1  rmind 		error = copyout(&msg->msg_prio, msg_prio, sizeof(unsigned));
    499  1.1  rmind 	mqueue_freemsg(msg, sizeof(struct mq_msg) + msg->msg_len);
    500  1.1  rmind 
    501  1.1  rmind 	return error;
    502  1.1  rmind }
    503  1.1  rmind 
    504  1.1  rmind int
    505  1.6    dsl sys_mq_receive(struct lwp *l, const struct sys_mq_receive_args *uap, register_t *retval)
    506  1.1  rmind {
    507  1.6    dsl 	/* {
    508  1.1  rmind 		syscallarg(mqd_t) mqdes;
    509  1.1  rmind 		syscallarg(char *) msg_ptr;
    510  1.1  rmind 		syscallarg(size_t) msg_len;
    511  1.1  rmind 		syscallarg(unsigned *) msg_prio;
    512  1.6    dsl 	} */
    513  1.1  rmind 	int error;
    514  1.1  rmind 	ssize_t mlen;
    515  1.1  rmind 
    516  1.1  rmind 	error = mq_receive1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
    517  1.1  rmind 	    SCARG(uap, msg_len), SCARG(uap, msg_prio), 0, &mlen);
    518  1.1  rmind 	if (error == 0)
    519  1.1  rmind 		*retval = mlen;
    520  1.1  rmind 
    521  1.1  rmind 	return error;
    522  1.1  rmind }
    523  1.1  rmind 
    524  1.1  rmind int
    525  1.6    dsl sys_mq_timedreceive(struct lwp *l, const struct sys_mq_timedreceive_args *uap, register_t *retval)
    526  1.1  rmind {
    527  1.6    dsl 	/* {
    528  1.1  rmind 		syscallarg(mqd_t) mqdes;
    529  1.1  rmind 		syscallarg(char *) msg_ptr;
    530  1.1  rmind 		syscallarg(size_t) msg_len;
    531  1.1  rmind 		syscallarg(unsigned *) msg_prio;
    532  1.1  rmind 		syscallarg(const struct timespec *) abs_timeout;
    533  1.6    dsl 	} */
    534  1.1  rmind 	int error, t;
    535  1.1  rmind 	ssize_t mlen;
    536  1.1  rmind 
    537  1.1  rmind 	/* Get and convert time value */
    538  1.1  rmind 	if (SCARG(uap, abs_timeout)) {
    539  1.1  rmind 		error = abstimeout2timo(SCARG(uap, abs_timeout), &t);
    540  1.1  rmind 		if (error)
    541  1.1  rmind 			return error;
    542  1.1  rmind 	} else
    543  1.1  rmind 		t = 0;
    544  1.1  rmind 
    545  1.1  rmind 	error = mq_receive1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
    546  1.1  rmind 	    SCARG(uap, msg_len), SCARG(uap, msg_prio), t, &mlen);
    547  1.1  rmind 	if (error == 0)
    548  1.1  rmind 		*retval = mlen;
    549  1.1  rmind 
    550  1.1  rmind 	return error;
    551  1.1  rmind }
    552  1.1  rmind 
    553  1.1  rmind /*
    554  1.1  rmind  * Primary mq_send1() function.
    555  1.1  rmind  */
    556  1.1  rmind static int
    557  1.1  rmind mq_send1(struct lwp *l, mqd_t mqdes, const char *msg_ptr, size_t msg_len,
    558  1.1  rmind     unsigned msg_prio, int t)
    559  1.1  rmind {
    560  1.7     ad 	file_t *fp = NULL;
    561  1.1  rmind 	struct mqueue *mq;
    562  1.1  rmind 	struct mq_msg *msg, *pos_msg;
    563  1.1  rmind 	struct proc *notify = NULL;
    564  1.1  rmind 	ksiginfo_t ksi;
    565  1.1  rmind 	size_t size;
    566  1.1  rmind 	int error;
    567  1.1  rmind 
    568  1.1  rmind 	/* Check the priority range */
    569  1.1  rmind 	if (msg_prio >= mq_prio_max)
    570  1.1  rmind 		return EINVAL;
    571  1.1  rmind 
    572  1.1  rmind 	/* Allocate a new message */
    573  1.1  rmind 	size = sizeof(struct mq_msg) + msg_len;
    574  1.1  rmind 	if (size > mq_max_msgsize)
    575  1.1  rmind 		return EMSGSIZE;
    576  1.1  rmind 
    577  1.1  rmind 	if (size > MQ_DEF_MSGSIZE)
    578  1.1  rmind 		msg = kmem_alloc(size, KM_SLEEP);
    579  1.1  rmind 	else
    580  1.1  rmind 		msg = pool_get(&mqmsg_poll, PR_WAITOK);
    581  1.1  rmind 
    582  1.1  rmind 	/* Get the data from user-space */
    583  1.1  rmind 	error = copyin(msg_ptr, msg->msg_ptr, msg_len);
    584  1.1  rmind 	if (error) {
    585  1.1  rmind 		mqueue_freemsg(msg, size);
    586  1.1  rmind 		return error;
    587  1.1  rmind 	}
    588  1.1  rmind 	msg->msg_len = msg_len;
    589  1.1  rmind 	msg->msg_prio = msg_prio;
    590  1.1  rmind 
    591  1.1  rmind 	/* Get the mqueue */
    592  1.1  rmind 	error = mqueue_get(l, mqdes, VWRITE, &fp);
    593  1.1  rmind 	if (error) {
    594  1.1  rmind 		mqueue_freemsg(msg, size);
    595  1.1  rmind 		return error;
    596  1.1  rmind 	}
    597  1.1  rmind 	mq = fp->f_data;
    598  1.1  rmind 
    599  1.1  rmind 	/* Check the message size limit */
    600  1.1  rmind 	if (msg_len <= 0 || msg_len > mq->mq_attrib.mq_msgsize) {
    601  1.1  rmind 		error = EMSGSIZE;
    602  1.1  rmind 		goto error;
    603  1.1  rmind 	}
    604  1.1  rmind 
    605  1.1  rmind 	/* Check if queue is full */
    606  1.2     ad 	while (mq->mq_attrib.mq_curmsgs >= mq->mq_attrib.mq_maxmsg) {
    607  1.1  rmind 		if (mq->mq_attrib.mq_flags & O_NONBLOCK) {
    608  1.1  rmind 			error = EAGAIN;
    609  1.1  rmind 			goto error;
    610  1.1  rmind 		}
    611  1.1  rmind 		if (t < 0) {
    612  1.1  rmind 			error = EINVAL;
    613  1.1  rmind 			goto error;
    614  1.1  rmind 		}
    615  1.1  rmind 		/* Block until queue becomes available */
    616  1.1  rmind 		error = cv_timedwait_sig(&mq->mq_recv_cv, &mq->mq_mtx, t);
    617  1.1  rmind 		if (error || (mq->mq_attrib.mq_flags & MQ_UNLINK)) {
    618  1.1  rmind 			error = (error == EWOULDBLOCK) ? ETIMEDOUT : error;
    619  1.1  rmind 			goto error;
    620  1.1  rmind 		}
    621  1.1  rmind 	}
    622  1.1  rmind 	KASSERT(mq->mq_attrib.mq_curmsgs < mq->mq_attrib.mq_maxmsg);
    623  1.1  rmind 
    624  1.1  rmind 	/* Insert message into the queue, according to the priority */
    625  1.1  rmind 	TAILQ_FOREACH(pos_msg, &mq->mq_head, msg_queue)
    626  1.1  rmind 		if (msg->msg_prio > pos_msg->msg_prio)
    627  1.1  rmind 			break;
    628  1.1  rmind 	if (pos_msg == NULL)
    629  1.1  rmind 		TAILQ_INSERT_TAIL(&mq->mq_head, msg, msg_queue);
    630  1.1  rmind 	else
    631  1.1  rmind 		TAILQ_INSERT_BEFORE(pos_msg, msg, msg_queue);
    632  1.1  rmind 
    633  1.1  rmind 	/* Check for the notify */
    634  1.1  rmind 	if (mq->mq_attrib.mq_curmsgs == 0 && mq->mq_notify_proc &&
    635  1.1  rmind 	    (mq->mq_attrib.mq_flags & MQ_RECEIVE) == 0) {
    636  1.1  rmind 		/* Initialize the signal */
    637  1.1  rmind 		KSI_INIT(&ksi);
    638  1.1  rmind 		ksi.ksi_signo = mq->mq_sig_notify.sigev_signo;
    639  1.1  rmind 		ksi.ksi_code = SI_MESGQ;
    640  1.1  rmind 		ksi.ksi_value = mq->mq_sig_notify.sigev_value;
    641  1.1  rmind 		/* Unregister the process */
    642  1.1  rmind 		notify = mq->mq_notify_proc;
    643  1.1  rmind 		mq->mq_notify_proc = NULL;
    644  1.1  rmind 	}
    645  1.1  rmind 
    646  1.1  rmind 	/* Increment the counter and signal waiter, if any */
    647  1.1  rmind 	mq->mq_attrib.mq_curmsgs++;
    648  1.1  rmind 	cv_signal(&mq->mq_send_cv);
    649  1.1  rmind error:
    650  1.1  rmind 	mutex_exit(&mq->mq_mtx);
    651  1.7     ad 	fd_putfile((int)mqdes);
    652  1.1  rmind 
    653  1.1  rmind 	if (error) {
    654  1.1  rmind 		mqueue_freemsg(msg, size);
    655  1.1  rmind 	} else if (notify) {
    656  1.1  rmind 		/* Send the notify, if needed */
    657  1.1  rmind 		mutex_enter(&proclist_mutex);
    658  1.1  rmind 		kpsignal(notify, &ksi, NULL);
    659  1.1  rmind 		mutex_exit(&proclist_mutex);
    660  1.1  rmind 	}
    661  1.1  rmind 
    662  1.1  rmind 	return error;
    663  1.1  rmind }
    664  1.1  rmind 
    665  1.1  rmind int
    666  1.6    dsl sys_mq_send(struct lwp *l, const struct sys_mq_send_args *uap, register_t *retval)
    667  1.1  rmind {
    668  1.6    dsl 	/* {
    669  1.1  rmind 		syscallarg(mqd_t) mqdes;
    670  1.1  rmind 		syscallarg(const char *) msg_ptr;
    671  1.1  rmind 		syscallarg(size_t) msg_len;
    672  1.1  rmind 		syscallarg(unsigned) msg_prio;
    673  1.6    dsl 	} */
    674  1.1  rmind 
    675  1.1  rmind 	return mq_send1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
    676  1.1  rmind 	    SCARG(uap, msg_len), SCARG(uap, msg_prio), 0);
    677  1.1  rmind }
    678  1.1  rmind 
    679  1.1  rmind int
    680  1.6    dsl sys_mq_timedsend(struct lwp *l, const struct sys_mq_timedsend_args *uap, register_t *retval)
    681  1.1  rmind {
    682  1.6    dsl 	/* {
    683  1.1  rmind 		syscallarg(mqd_t) mqdes;
    684  1.1  rmind 		syscallarg(const char *) msg_ptr;
    685  1.1  rmind 		syscallarg(size_t) msg_len;
    686  1.1  rmind 		syscallarg(unsigned) msg_prio;
    687  1.1  rmind 		syscallarg(const struct timespec *) abs_timeout;
    688  1.6    dsl 	} */
    689  1.1  rmind 	int t;
    690  1.1  rmind 
    691  1.1  rmind 	/* Get and convert time value */
    692  1.1  rmind 	if (SCARG(uap, abs_timeout)) {
    693  1.1  rmind 		int error = abstimeout2timo(SCARG(uap, abs_timeout), &t);
    694  1.1  rmind 		if (error)
    695  1.1  rmind 			return error;
    696  1.1  rmind 	} else
    697  1.1  rmind 		t = 0;
    698  1.1  rmind 
    699  1.1  rmind 	return mq_send1(l, SCARG(uap, mqdes), SCARG(uap, msg_ptr),
    700  1.1  rmind 	    SCARG(uap, msg_len), SCARG(uap, msg_prio), t);
    701  1.1  rmind }
    702  1.1  rmind 
    703  1.1  rmind int
    704  1.6    dsl sys_mq_notify(struct lwp *l, const struct sys_mq_notify_args *uap, register_t *retval)
    705  1.1  rmind {
    706  1.6    dsl 	/* {
    707  1.1  rmind 		syscallarg(mqd_t) mqdes;
    708  1.1  rmind 		syscallarg(const struct sigevent *) notification;
    709  1.6    dsl 	} */
    710  1.7     ad 	file_t *fp = NULL;
    711  1.1  rmind 	struct mqueue *mq;
    712  1.1  rmind 	struct sigevent sig;
    713  1.1  rmind 	int error;
    714  1.1  rmind 
    715  1.1  rmind 	if (SCARG(uap, notification)) {
    716  1.1  rmind 		/* Get the signal from user-space */
    717  1.1  rmind 		error = copyin(SCARG(uap, notification), &sig,
    718  1.1  rmind 		    sizeof(struct sigevent));
    719  1.1  rmind 		if (error)
    720  1.1  rmind 			return error;
    721  1.1  rmind 	}
    722  1.1  rmind 
    723  1.1  rmind 	error = mqueue_get(l, SCARG(uap, mqdes), VNOVAL, &fp);
    724  1.1  rmind 	if (error)
    725  1.1  rmind 		return error;
    726  1.1  rmind 	mq = fp->f_data;
    727  1.1  rmind 
    728  1.1  rmind 	if (SCARG(uap, notification)) {
    729  1.1  rmind 		/* Register notification: set the signal and target process */
    730  1.1  rmind 		if (mq->mq_notify_proc == NULL) {
    731  1.1  rmind 			memcpy(&mq->mq_sig_notify, &sig,
    732  1.1  rmind 			    sizeof(struct sigevent));
    733  1.1  rmind 			mq->mq_notify_proc = l->l_proc;
    734  1.1  rmind 		} else {
    735  1.1  rmind 			/* Fail if someone else already registered */
    736  1.1  rmind 			error = EBUSY;
    737  1.1  rmind 		}
    738  1.1  rmind 	} else {
    739  1.1  rmind 		/* Unregister the notification */
    740  1.1  rmind 		mq->mq_notify_proc = NULL;
    741  1.1  rmind 	}
    742  1.1  rmind 	mutex_exit(&mq->mq_mtx);
    743  1.7     ad 	fd_putfile((int)SCARG(uap, mqdes));
    744  1.1  rmind 
    745  1.1  rmind 	return error;
    746  1.1  rmind }
    747  1.1  rmind 
    748  1.1  rmind int
    749  1.6    dsl sys_mq_getattr(struct lwp *l, const struct sys_mq_getattr_args *uap, register_t *retval)
    750  1.1  rmind {
    751  1.6    dsl 	/* {
    752  1.1  rmind 		syscallarg(mqd_t) mqdes;
    753  1.1  rmind 		syscallarg(struct mq_attr *) mqstat;
    754  1.6    dsl 	} */
    755  1.7     ad 	file_t *fp = NULL;
    756  1.1  rmind 	struct mqueue *mq;
    757  1.1  rmind 	struct mq_attr attr;
    758  1.1  rmind 	int error;
    759  1.1  rmind 
    760  1.1  rmind 	/* Get the message queue */
    761  1.1  rmind 	error = mqueue_get(l, SCARG(uap, mqdes), VNOVAL, &fp);
    762  1.1  rmind 	if (error)
    763  1.1  rmind 		return error;
    764  1.1  rmind 	mq = fp->f_data;
    765  1.1  rmind 	memcpy(&attr, &mq->mq_attrib, sizeof(struct mq_attr));
    766  1.1  rmind 	mutex_exit(&mq->mq_mtx);
    767  1.7     ad 	fd_putfile((int)SCARG(uap, mqdes));
    768  1.1  rmind 
    769  1.1  rmind 	return copyout(&attr, SCARG(uap, mqstat), sizeof(struct mq_attr));
    770  1.1  rmind }
    771  1.1  rmind 
    772  1.1  rmind int
    773  1.6    dsl sys_mq_setattr(struct lwp *l, const struct sys_mq_setattr_args *uap, register_t *retval)
    774  1.1  rmind {
    775  1.6    dsl 	/* {
    776  1.1  rmind 		syscallarg(mqd_t) mqdes;
    777  1.1  rmind 		syscallarg(const struct mq_attr *) mqstat;
    778  1.1  rmind 		syscallarg(struct mq_attr *) omqstat;
    779  1.6    dsl 	} */
    780  1.7     ad 	file_t *fp = NULL;
    781  1.1  rmind 	struct mqueue *mq;
    782  1.1  rmind 	struct mq_attr attr;
    783  1.1  rmind 	int error, nonblock;
    784  1.1  rmind 
    785  1.1  rmind 	error = copyin(SCARG(uap, mqstat), &attr, sizeof(struct mq_attr));
    786  1.1  rmind 	if (error)
    787  1.1  rmind 		return error;
    788  1.1  rmind 	nonblock = (attr.mq_flags & O_NONBLOCK);
    789  1.1  rmind 
    790  1.1  rmind 	/* Get the message queue */
    791  1.1  rmind 	error = mqueue_get(l, SCARG(uap, mqdes), VNOVAL, &fp);
    792  1.1  rmind 	if (error)
    793  1.1  rmind 		return error;
    794  1.1  rmind 	mq = fp->f_data;
    795  1.1  rmind 
    796  1.1  rmind 	/* Copy the old attributes, if needed */
    797  1.1  rmind 	if (SCARG(uap, omqstat))
    798  1.1  rmind 		memcpy(&attr, &mq->mq_attrib, sizeof(struct mq_attr));
    799  1.1  rmind 
    800  1.1  rmind 	/* Ignore everything, except O_NONBLOCK */
    801  1.1  rmind 	if (nonblock)
    802  1.1  rmind 		mq->mq_attrib.mq_flags |= O_NONBLOCK;
    803  1.1  rmind 	else
    804  1.1  rmind 		mq->mq_attrib.mq_flags &= ~O_NONBLOCK;
    805  1.1  rmind 
    806  1.1  rmind 	mutex_exit(&mq->mq_mtx);
    807  1.7     ad 	fd_putfile((int)SCARG(uap, mqdes));
    808  1.1  rmind 
    809  1.1  rmind 	/*
    810  1.1  rmind 	 * Copy the data to the user-space.
    811  1.1  rmind 	 * Note: According to POSIX, the new attributes should not be set in
    812  1.1  rmind 	 * case of fail - this would be violated.
    813  1.1  rmind 	 */
    814  1.1  rmind 	if (SCARG(uap, omqstat))
    815  1.1  rmind 		error = copyout(&attr, SCARG(uap, omqstat),
    816  1.1  rmind 		    sizeof(struct mq_attr));
    817  1.1  rmind 
    818  1.1  rmind 	return error;
    819  1.1  rmind }
    820  1.1  rmind 
    821  1.1  rmind int
    822  1.6    dsl sys_mq_unlink(struct lwp *l, const struct sys_mq_unlink_args *uap, register_t *retval)
    823  1.1  rmind {
    824  1.6    dsl 	/* {
    825  1.1  rmind 		syscallarg(const char *) name;
    826  1.6    dsl 	} */
    827  1.1  rmind 	struct mqueue *mq;
    828  1.1  rmind 	char *name;
    829  1.1  rmind 	int error, refcnt = 0;
    830  1.1  rmind 
    831  1.1  rmind 	/* Get the name from the user-space */
    832  1.1  rmind 	name = kmem_zalloc(MQ_NAMELEN, KM_SLEEP);
    833  1.1  rmind 	error = copyinstr(SCARG(uap, name), name, MQ_NAMELEN - 1, NULL);
    834  1.1  rmind 	if (error) {
    835  1.1  rmind 		kmem_free(name, MQ_NAMELEN);
    836  1.1  rmind 		return error;
    837  1.1  rmind 	}
    838  1.1  rmind 
    839  1.1  rmind 	/* Lookup for this file */
    840  1.1  rmind 	mutex_enter(&mqlist_mtx);
    841  1.1  rmind 	mq = mqueue_lookup(name);
    842  1.1  rmind 	if (mq == NULL) {
    843  1.1  rmind 		error = ENOENT;
    844  1.1  rmind 		goto error;
    845  1.1  rmind 	}
    846  1.1  rmind 
    847  1.1  rmind 	/* Check the permissions */
    848  1.1  rmind 	if (mqueue_access(l, mq, VWRITE)) {
    849  1.1  rmind 		mutex_exit(&mq->mq_mtx);
    850  1.1  rmind 		error = EACCES;
    851  1.1  rmind 		goto error;
    852  1.1  rmind 	}
    853  1.1  rmind 
    854  1.1  rmind 	/* Mark message queue as unlinking, before leaving the window */
    855  1.1  rmind 	mq->mq_attrib.mq_flags |= MQ_UNLINK;
    856  1.1  rmind 
    857  1.1  rmind 	/* Wake up all waiters, if there are such */
    858  1.1  rmind 	cv_broadcast(&mq->mq_send_cv);
    859  1.1  rmind 	cv_broadcast(&mq->mq_recv_cv);
    860  1.1  rmind 
    861  1.1  rmind 	refcnt = mq->mq_refcnt;
    862  1.1  rmind 	if (refcnt == 0)
    863  1.1  rmind 		LIST_REMOVE(mq, mq_list);
    864  1.1  rmind 
    865  1.1  rmind 	mutex_exit(&mq->mq_mtx);
    866  1.1  rmind error:
    867  1.1  rmind 	mutex_exit(&mqlist_mtx);
    868  1.1  rmind 
    869  1.1  rmind 	/*
    870  1.1  rmind 	 * If there are no references - destroy the message
    871  1.1  rmind 	 * queue, otherwise, the last mq_close() will do that.
    872  1.1  rmind 	 */
    873  1.1  rmind 	if (error == 0 && refcnt == 0)
    874  1.1  rmind 		mqueue_destroy(mq);
    875  1.1  rmind 
    876  1.1  rmind 	kmem_free(name, MQ_NAMELEN);
    877  1.1  rmind 	return error;
    878  1.1  rmind }
    879  1.1  rmind 
    880  1.1  rmind /*
    881  1.1  rmind  * SysCtl.
    882  1.1  rmind  */
    883  1.1  rmind 
    884  1.1  rmind SYSCTL_SETUP(sysctl_mqueue_setup, "sysctl mqueue setup")
    885  1.1  rmind {
    886  1.1  rmind 	const struct sysctlnode *node = NULL;
    887  1.1  rmind 
    888  1.1  rmind 	sysctl_createv(clog, 0, NULL, NULL,
    889  1.1  rmind 		CTLFLAG_PERMANENT,
    890  1.1  rmind 		CTLTYPE_NODE, "kern", NULL,
    891  1.1  rmind 		NULL, 0, NULL, 0,
    892  1.1  rmind 		CTL_KERN, CTL_EOL);
    893  1.1  rmind 	sysctl_createv(clog, 0, NULL, NULL,
    894  1.1  rmind 		CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
    895  1.1  rmind 		CTLTYPE_INT, "posix_msg",
    896  1.1  rmind 		SYSCTL_DESCR("Version of IEEE Std 1003.1 and its "
    897  1.1  rmind 			     "Message Passing option to which the "
    898  1.1  rmind 			     "system attempts to conform"),
    899  1.1  rmind 		NULL, _POSIX_MESSAGE_PASSING, NULL, 0,
    900  1.1  rmind 		CTL_KERN, CTL_CREATE, CTL_EOL);
    901  1.1  rmind 	sysctl_createv(clog, 0, NULL, &node,
    902  1.1  rmind 		CTLFLAG_PERMANENT,
    903  1.1  rmind 		CTLTYPE_NODE, "mqueue",
    904  1.1  rmind 		SYSCTL_DESCR("Message queue options"),
    905  1.1  rmind 		NULL, 0, NULL, 0,
    906  1.1  rmind 		CTL_KERN, CTL_CREATE, CTL_EOL);
    907  1.1  rmind 
    908  1.1  rmind 	if (node == NULL)
    909  1.1  rmind 		return;
    910  1.1  rmind 
    911  1.1  rmind 	sysctl_createv(clog, 0, &node, NULL,
    912  1.1  rmind 		CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
    913  1.1  rmind 		CTLTYPE_INT, "mq_open_max",
    914  1.1  rmind 		SYSCTL_DESCR("Maximal number of message queue descriptors "
    915  1.1  rmind 			     "that process could open"),
    916  1.1  rmind 		NULL, 0, &mq_open_max, 0,
    917  1.1  rmind 		CTL_CREATE, CTL_EOL);
    918  1.1  rmind 	sysctl_createv(clog, 0, &node, NULL,
    919  1.1  rmind 		CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
    920  1.1  rmind 		CTLTYPE_INT, "mq_prio_max",
    921  1.1  rmind 		SYSCTL_DESCR("Maximal priority of the message"),
    922  1.1  rmind 		NULL, 0, &mq_prio_max, 0,
    923  1.1  rmind 		CTL_CREATE, CTL_EOL);
    924  1.1  rmind 	sysctl_createv(clog, 0, &node, NULL,
    925  1.1  rmind 		CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
    926  1.1  rmind 		CTLTYPE_INT, "mq_max_msgsize",
    927  1.1  rmind 		SYSCTL_DESCR("Maximal allowed size of the message"),
    928  1.1  rmind 		NULL, 0, &mq_max_msgsize, 0,
    929  1.1  rmind 		CTL_CREATE, CTL_EOL);
    930  1.1  rmind 	sysctl_createv(clog, 0, &node, NULL,
    931  1.1  rmind 		CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
    932  1.1  rmind 		CTLTYPE_INT, "mq_def_maxmsg",
    933  1.1  rmind 		SYSCTL_DESCR("Default maximal message count"),
    934  1.1  rmind 		NULL, 0, &mq_def_maxmsg, 0,
    935  1.1  rmind 		CTL_CREATE, CTL_EOL);
    936  1.1  rmind }
    937  1.1  rmind 
    938  1.1  rmind /*
    939  1.1  rmind  * Debugging.
    940  1.1  rmind  */
    941  1.1  rmind #if defined(DDB)
    942  1.1  rmind 
    943  1.1  rmind void
    944  1.1  rmind mqueue_print_list(void (*pr)(const char *, ...))
    945  1.1  rmind {
    946  1.1  rmind 	struct mqueue *mq;
    947  1.1  rmind 
    948  1.1  rmind 	(*pr)("Global list of the message queues:\n");
    949  1.1  rmind 	(*pr)("%20s %10s %8s %8s %3s %4s %4s %4s\n",
    950  1.1  rmind 	    "Name", "Ptr", "Mode", "Flags",  "Ref",
    951  1.1  rmind 	    "MaxMsg", "MsgSze", "CurMsg");
    952  1.1  rmind 	LIST_FOREACH(mq, &mqueue_head, mq_list) {
    953  1.1  rmind 		(*pr)("%20s %10p %8x %8x %3u %6lu %6lu %6lu\n",
    954  1.1  rmind 		    mq->mq_name, mq, mq->mq_mode,
    955  1.1  rmind 		    mq->mq_attrib.mq_flags, mq->mq_refcnt,
    956  1.1  rmind 		    mq->mq_attrib.mq_maxmsg, mq->mq_attrib.mq_msgsize,
    957  1.1  rmind 		    mq->mq_attrib.mq_curmsgs);
    958  1.1  rmind 	}
    959  1.1  rmind }
    960  1.1  rmind 
    961  1.1  rmind #endif /* defined(DDB) */
    962