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