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