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