]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - ipc/mqueue.c
leds: add led driver for Bachmann's ot200
[mirror_ubuntu-zesty-kernel.git] / ipc / mqueue.c
CommitLineData
1da177e4
LT
1/*
2 * POSIX message queues filesystem for Linux.
3 *
4 * Copyright (C) 2003,2004 Krzysztof Benedyczak (golbi@mat.uni.torun.pl)
f66e928b 5 * Michal Wronski (michal.wronski@gmail.com)
1da177e4
LT
6 *
7 * Spinlocks: Mohamed Abbas (abbas.mohamed@intel.com)
8 * Lockless receive & send, fd based notify:
9 * Manfred Spraul (manfred@colorfullife.com)
10 *
20ca73bc
GW
11 * Audit: George Wilson (ltcgcw@us.ibm.com)
12 *
1da177e4
LT
13 * This file is released under the GPL.
14 */
15
c59ede7b 16#include <linux/capability.h>
1da177e4
LT
17#include <linux/init.h>
18#include <linux/pagemap.h>
19#include <linux/file.h>
20#include <linux/mount.h>
21#include <linux/namei.h>
22#include <linux/sysctl.h>
23#include <linux/poll.h>
24#include <linux/mqueue.h>
25#include <linux/msg.h>
26#include <linux/skbuff.h>
27#include <linux/netlink.h>
28#include <linux/syscalls.h>
20ca73bc 29#include <linux/audit.h>
7ed20e1a 30#include <linux/signal.h>
5f921ae9 31#include <linux/mutex.h>
b488893a
PE
32#include <linux/nsproxy.h>
33#include <linux/pid.h>
614b84cf 34#include <linux/ipc_namespace.h>
6b550f94 35#include <linux/user_namespace.h>
5a0e3ad6 36#include <linux/slab.h>
5f921ae9 37
1da177e4
LT
38#include <net/sock.h>
39#include "util.h"
40
41#define MQUEUE_MAGIC 0x19800202
42#define DIRENT_SIZE 20
43#define FILENT_SIZE 80
44
45#define SEND 0
46#define RECV 1
47
48#define STATE_NONE 0
49#define STATE_PENDING 1
50#define STATE_READY 2
51
1da177e4
LT
52struct ext_wait_queue { /* queue of sleeping tasks */
53 struct task_struct *task;
54 struct list_head list;
55 struct msg_msg *msg; /* ptr of loaded message */
56 int state; /* one of STATE_* values */
57};
58
59struct mqueue_inode_info {
60 spinlock_t lock;
61 struct inode vfs_inode;
62 wait_queue_head_t wait_q;
63
64 struct msg_msg **messages;
65 struct mq_attr attr;
66
67 struct sigevent notify;
a03fcb73 68 struct pid* notify_owner;
338cec32 69 struct user_struct *user; /* user who created, for accounting */
1da177e4
LT
70 struct sock *notify_sock;
71 struct sk_buff *notify_cookie;
72
73 /* for tasks waiting for free space and messages, respectively */
74 struct ext_wait_queue e_wait_q[2];
75
76 unsigned long qsize; /* size of queue in memory (sum of all msgs) */
77};
78
92e1d5be 79static const struct inode_operations mqueue_dir_inode_operations;
9a32144e 80static const struct file_operations mqueue_file_operations;
b87221de 81static const struct super_operations mqueue_super_ops;
1da177e4
LT
82static void remove_notification(struct mqueue_inode_info *info);
83
e18b890b 84static struct kmem_cache *mqueue_inode_cachep;
1da177e4
LT
85
86static struct ctl_table_header * mq_sysctl_table;
87
88static inline struct mqueue_inode_info *MQUEUE_I(struct inode *inode)
89{
90 return container_of(inode, struct mqueue_inode_info, vfs_inode);
91}
92
7eafd7c7
SH
93/*
94 * This routine should be called with the mq_lock held.
95 */
96static inline struct ipc_namespace *__get_ns_from_inode(struct inode *inode)
614b84cf 97{
7eafd7c7 98 return get_ipc_ns(inode->i_sb->s_fs_info);
614b84cf
SH
99}
100
7eafd7c7 101static struct ipc_namespace *get_ns_from_inode(struct inode *inode)
614b84cf 102{
7eafd7c7
SH
103 struct ipc_namespace *ns;
104
105 spin_lock(&mq_lock);
106 ns = __get_ns_from_inode(inode);
107 spin_unlock(&mq_lock);
108 return ns;
614b84cf
SH
109}
110
7eafd7c7 111static struct inode *mqueue_get_inode(struct super_block *sb,
1b9d5ff7 112 struct ipc_namespace *ipc_ns, umode_t mode,
7eafd7c7 113 struct mq_attr *attr)
1da177e4 114{
86a264ab 115 struct user_struct *u = current_user();
1da177e4 116 struct inode *inode;
d40dcdb0 117 int ret = -ENOMEM;
1da177e4
LT
118
119 inode = new_inode(sb);
04715206
JS
120 if (!inode)
121 goto err;
122
123 inode->i_ino = get_next_ino();
124 inode->i_mode = mode;
125 inode->i_uid = current_fsuid();
126 inode->i_gid = current_fsgid();
127 inode->i_mtime = inode->i_ctime = inode->i_atime = CURRENT_TIME;
128
129 if (S_ISREG(mode)) {
130 struct mqueue_inode_info *info;
131 struct task_struct *p = current;
132 unsigned long mq_bytes, mq_msg_tblsz;
133
134 inode->i_fop = &mqueue_file_operations;
135 inode->i_size = FILENT_SIZE;
136 /* mqueue specific info */
137 info = MQUEUE_I(inode);
138 spin_lock_init(&info->lock);
139 init_waitqueue_head(&info->wait_q);
140 INIT_LIST_HEAD(&info->e_wait_q[0].list);
141 INIT_LIST_HEAD(&info->e_wait_q[1].list);
142 info->notify_owner = NULL;
143 info->qsize = 0;
144 info->user = NULL; /* set when all is ok */
145 memset(&info->attr, 0, sizeof(info->attr));
146 info->attr.mq_maxmsg = ipc_ns->mq_msg_max;
147 info->attr.mq_msgsize = ipc_ns->mq_msgsize_max;
148 if (attr) {
149 info->attr.mq_maxmsg = attr->mq_maxmsg;
150 info->attr.mq_msgsize = attr->mq_msgsize;
151 }
152 mq_msg_tblsz = info->attr.mq_maxmsg * sizeof(struct msg_msg *);
153 info->messages = kmalloc(mq_msg_tblsz, GFP_KERNEL);
154 if (!info->messages)
155 goto out_inode;
156
157 mq_bytes = (mq_msg_tblsz +
158 (info->attr.mq_maxmsg * info->attr.mq_msgsize));
1da177e4 159
04715206
JS
160 spin_lock(&mq_lock);
161 if (u->mq_bytes + mq_bytes < u->mq_bytes ||
162 u->mq_bytes + mq_bytes > task_rlimit(p, RLIMIT_MSGQUEUE)) {
163 spin_unlock(&mq_lock);
164 /* mqueue_evict_inode() releases info->messages */
d40dcdb0 165 ret = -EMFILE;
04715206 166 goto out_inode;
1da177e4 167 }
04715206
JS
168 u->mq_bytes += mq_bytes;
169 spin_unlock(&mq_lock);
170
171 /* all is ok */
172 info->user = get_uid(u);
173 } else if (S_ISDIR(mode)) {
174 inc_nlink(inode);
175 /* Some things misbehave if size == 0 on a directory */
176 inode->i_size = 2 * DIRENT_SIZE;
177 inode->i_op = &mqueue_dir_inode_operations;
178 inode->i_fop = &simple_dir_operations;
1da177e4 179 }
04715206 180
1da177e4
LT
181 return inode;
182out_inode:
1da177e4 183 iput(inode);
04715206 184err:
d40dcdb0 185 return ERR_PTR(ret);
1da177e4
LT
186}
187
188static int mqueue_fill_super(struct super_block *sb, void *data, int silent)
189{
190 struct inode *inode;
7eafd7c7 191 struct ipc_namespace *ns = data;
8d8ffefa 192 int error;
1da177e4
LT
193
194 sb->s_blocksize = PAGE_CACHE_SIZE;
195 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
196 sb->s_magic = MQUEUE_MAGIC;
197 sb->s_op = &mqueue_super_ops;
198
7eafd7c7
SH
199 inode = mqueue_get_inode(sb, ns, S_IFDIR | S_ISVTX | S_IRWXUGO,
200 NULL);
d40dcdb0
JS
201 if (IS_ERR(inode)) {
202 error = PTR_ERR(inode);
7eafd7c7
SH
203 goto out;
204 }
1da177e4
LT
205
206 sb->s_root = d_alloc_root(inode);
207 if (!sb->s_root) {
208 iput(inode);
7eafd7c7 209 error = -ENOMEM;
8d8ffefa 210 goto out;
1da177e4 211 }
8d8ffefa 212 error = 0;
1da177e4 213
7eafd7c7
SH
214out:
215 return error;
1da177e4
LT
216}
217
ceefda69 218static struct dentry *mqueue_mount(struct file_system_type *fs_type,
454e2398 219 int flags, const char *dev_name,
ceefda69 220 void *data)
1da177e4 221{
7eafd7c7
SH
222 if (!(flags & MS_KERNMOUNT))
223 data = current->nsproxy->ipc_ns;
ceefda69 224 return mount_ns(fs_type, flags, data, mqueue_fill_super);
1da177e4
LT
225}
226
51cc5068 227static void init_once(void *foo)
1da177e4
LT
228{
229 struct mqueue_inode_info *p = (struct mqueue_inode_info *) foo;
230
a35afb83 231 inode_init_once(&p->vfs_inode);
1da177e4
LT
232}
233
234static struct inode *mqueue_alloc_inode(struct super_block *sb)
235{
236 struct mqueue_inode_info *ei;
237
e94b1766 238 ei = kmem_cache_alloc(mqueue_inode_cachep, GFP_KERNEL);
1da177e4
LT
239 if (!ei)
240 return NULL;
241 return &ei->vfs_inode;
242}
243
fa0d7e3d 244static void mqueue_i_callback(struct rcu_head *head)
1da177e4 245{
fa0d7e3d 246 struct inode *inode = container_of(head, struct inode, i_rcu);
1da177e4
LT
247 kmem_cache_free(mqueue_inode_cachep, MQUEUE_I(inode));
248}
249
fa0d7e3d
NP
250static void mqueue_destroy_inode(struct inode *inode)
251{
252 call_rcu(&inode->i_rcu, mqueue_i_callback);
253}
254
6d8af64c 255static void mqueue_evict_inode(struct inode *inode)
1da177e4
LT
256{
257 struct mqueue_inode_info *info;
258 struct user_struct *user;
259 unsigned long mq_bytes;
260 int i;
7eafd7c7 261 struct ipc_namespace *ipc_ns;
1da177e4 262
6d8af64c
AV
263 end_writeback(inode);
264
265 if (S_ISDIR(inode->i_mode))
1da177e4 266 return;
6d8af64c 267
7eafd7c7 268 ipc_ns = get_ns_from_inode(inode);
1da177e4
LT
269 info = MQUEUE_I(inode);
270 spin_lock(&info->lock);
271 for (i = 0; i < info->attr.mq_curmsgs; i++)
272 free_msg(info->messages[i]);
273 kfree(info->messages);
274 spin_unlock(&info->lock);
275
8834cf79
AGR
276 /* Total amount of bytes accounted for the mqueue */
277 mq_bytes = info->attr.mq_maxmsg * (sizeof(struct msg_msg *)
278 + info->attr.mq_msgsize);
1da177e4
LT
279 user = info->user;
280 if (user) {
281 spin_lock(&mq_lock);
282 user->mq_bytes -= mq_bytes;
7eafd7c7
SH
283 /*
284 * get_ns_from_inode() ensures that the
285 * (ipc_ns = sb->s_fs_info) is either a valid ipc_ns
286 * to which we now hold a reference, or it is NULL.
287 * We can't put it here under mq_lock, though.
288 */
289 if (ipc_ns)
290 ipc_ns->mq_queues_count--;
1da177e4
LT
291 spin_unlock(&mq_lock);
292 free_uid(user);
293 }
7eafd7c7
SH
294 if (ipc_ns)
295 put_ipc_ns(ipc_ns);
1da177e4
LT
296}
297
298static int mqueue_create(struct inode *dir, struct dentry *dentry,
4acdaf27 299 umode_t mode, struct nameidata *nd)
1da177e4
LT
300{
301 struct inode *inode;
302 struct mq_attr *attr = dentry->d_fsdata;
303 int error;
7eafd7c7 304 struct ipc_namespace *ipc_ns;
1da177e4
LT
305
306 spin_lock(&mq_lock);
7eafd7c7
SH
307 ipc_ns = __get_ns_from_inode(dir);
308 if (!ipc_ns) {
309 error = -EACCES;
310 goto out_unlock;
311 }
614b84cf
SH
312 if (ipc_ns->mq_queues_count >= ipc_ns->mq_queues_max &&
313 !capable(CAP_SYS_RESOURCE)) {
1da177e4 314 error = -ENOSPC;
614b84cf 315 goto out_unlock;
1da177e4 316 }
614b84cf 317 ipc_ns->mq_queues_count++;
1da177e4
LT
318 spin_unlock(&mq_lock);
319
7eafd7c7 320 inode = mqueue_get_inode(dir->i_sb, ipc_ns, mode, attr);
d40dcdb0
JS
321 if (IS_ERR(inode)) {
322 error = PTR_ERR(inode);
1da177e4 323 spin_lock(&mq_lock);
614b84cf
SH
324 ipc_ns->mq_queues_count--;
325 goto out_unlock;
1da177e4
LT
326 }
327
7eafd7c7 328 put_ipc_ns(ipc_ns);
1da177e4
LT
329 dir->i_size += DIRENT_SIZE;
330 dir->i_ctime = dir->i_mtime = dir->i_atime = CURRENT_TIME;
331
332 d_instantiate(dentry, inode);
333 dget(dentry);
334 return 0;
614b84cf 335out_unlock:
1da177e4 336 spin_unlock(&mq_lock);
7eafd7c7
SH
337 if (ipc_ns)
338 put_ipc_ns(ipc_ns);
1da177e4
LT
339 return error;
340}
341
342static int mqueue_unlink(struct inode *dir, struct dentry *dentry)
343{
344 struct inode *inode = dentry->d_inode;
345
346 dir->i_ctime = dir->i_mtime = dir->i_atime = CURRENT_TIME;
347 dir->i_size -= DIRENT_SIZE;
9a53c3a7 348 drop_nlink(inode);
1da177e4
LT
349 dput(dentry);
350 return 0;
351}
352
353/*
354* This is routine for system read from queue file.
355* To avoid mess with doing here some sort of mq_receive we allow
356* to read only queue size & notification info (the only values
357* that are interesting from user point of view and aren't accessible
358* through std routines)
359*/
360static ssize_t mqueue_read_file(struct file *filp, char __user *u_data,
f1a43f93 361 size_t count, loff_t *off)
1da177e4 362{
6d63079a 363 struct mqueue_inode_info *info = MQUEUE_I(filp->f_path.dentry->d_inode);
1da177e4 364 char buffer[FILENT_SIZE];
f1a43f93 365 ssize_t ret;
1da177e4
LT
366
367 spin_lock(&info->lock);
368 snprintf(buffer, sizeof(buffer),
369 "QSIZE:%-10lu NOTIFY:%-5d SIGNO:%-5d NOTIFY_PID:%-6d\n",
370 info->qsize,
371 info->notify_owner ? info->notify.sigev_notify : 0,
372 (info->notify_owner &&
373 info->notify.sigev_notify == SIGEV_SIGNAL) ?
374 info->notify.sigev_signo : 0,
6c5f3e7b 375 pid_vnr(info->notify_owner));
1da177e4
LT
376 spin_unlock(&info->lock);
377 buffer[sizeof(buffer)-1] = '\0';
1da177e4 378
f1a43f93
AM
379 ret = simple_read_from_buffer(u_data, count, off, buffer,
380 strlen(buffer));
381 if (ret <= 0)
382 return ret;
1da177e4 383
6d63079a 384 filp->f_path.dentry->d_inode->i_atime = filp->f_path.dentry->d_inode->i_ctime = CURRENT_TIME;
f1a43f93 385 return ret;
1da177e4
LT
386}
387
75e1fcc0 388static int mqueue_flush_file(struct file *filp, fl_owner_t id)
1da177e4 389{
6d63079a 390 struct mqueue_inode_info *info = MQUEUE_I(filp->f_path.dentry->d_inode);
1da177e4
LT
391
392 spin_lock(&info->lock);
a03fcb73 393 if (task_tgid(current) == info->notify_owner)
1da177e4
LT
394 remove_notification(info);
395
396 spin_unlock(&info->lock);
397 return 0;
398}
399
400static unsigned int mqueue_poll_file(struct file *filp, struct poll_table_struct *poll_tab)
401{
6d63079a 402 struct mqueue_inode_info *info = MQUEUE_I(filp->f_path.dentry->d_inode);
1da177e4
LT
403 int retval = 0;
404
405 poll_wait(filp, &info->wait_q, poll_tab);
406
407 spin_lock(&info->lock);
408 if (info->attr.mq_curmsgs)
409 retval = POLLIN | POLLRDNORM;
410
411 if (info->attr.mq_curmsgs < info->attr.mq_maxmsg)
412 retval |= POLLOUT | POLLWRNORM;
413 spin_unlock(&info->lock);
414
415 return retval;
416}
417
418/* Adds current to info->e_wait_q[sr] before element with smaller prio */
419static void wq_add(struct mqueue_inode_info *info, int sr,
420 struct ext_wait_queue *ewp)
421{
422 struct ext_wait_queue *walk;
423
424 ewp->task = current;
425
426 list_for_each_entry(walk, &info->e_wait_q[sr].list, list) {
427 if (walk->task->static_prio <= current->static_prio) {
428 list_add_tail(&ewp->list, &walk->list);
429 return;
430 }
431 }
432 list_add_tail(&ewp->list, &info->e_wait_q[sr].list);
433}
434
435/*
436 * Puts current task to sleep. Caller must hold queue lock. After return
437 * lock isn't held.
438 * sr: SEND or RECV
439 */
440static int wq_sleep(struct mqueue_inode_info *info, int sr,
9ca7d8e6 441 ktime_t *timeout, struct ext_wait_queue *ewp)
1da177e4
LT
442{
443 int retval;
444 signed long time;
445
446 wq_add(info, sr, ewp);
447
448 for (;;) {
449 set_current_state(TASK_INTERRUPTIBLE);
450
451 spin_unlock(&info->lock);
32ea845d
WG
452 time = schedule_hrtimeout_range_clock(timeout, 0,
453 HRTIMER_MODE_ABS, CLOCK_REALTIME);
1da177e4
LT
454
455 while (ewp->state == STATE_PENDING)
456 cpu_relax();
457
458 if (ewp->state == STATE_READY) {
459 retval = 0;
460 goto out;
461 }
462 spin_lock(&info->lock);
463 if (ewp->state == STATE_READY) {
464 retval = 0;
465 goto out_unlock;
466 }
467 if (signal_pending(current)) {
468 retval = -ERESTARTSYS;
469 break;
470 }
471 if (time == 0) {
472 retval = -ETIMEDOUT;
473 break;
474 }
475 }
476 list_del(&ewp->list);
477out_unlock:
478 spin_unlock(&info->lock);
479out:
480 return retval;
481}
482
483/*
484 * Returns waiting task that should be serviced first or NULL if none exists
485 */
486static struct ext_wait_queue *wq_get_first_waiter(
487 struct mqueue_inode_info *info, int sr)
488{
489 struct list_head *ptr;
490
491 ptr = info->e_wait_q[sr].list.prev;
492 if (ptr == &info->e_wait_q[sr].list)
493 return NULL;
494 return list_entry(ptr, struct ext_wait_queue, list);
495}
496
497/* Auxiliary functions to manipulate messages' list */
498static void msg_insert(struct msg_msg *ptr, struct mqueue_inode_info *info)
499{
500 int k;
501
502 k = info->attr.mq_curmsgs - 1;
503 while (k >= 0 && info->messages[k]->m_type >= ptr->m_type) {
504 info->messages[k + 1] = info->messages[k];
505 k--;
506 }
507 info->attr.mq_curmsgs++;
508 info->qsize += ptr->m_ts;
509 info->messages[k + 1] = ptr;
510}
511
512static inline struct msg_msg *msg_get(struct mqueue_inode_info *info)
513{
514 info->qsize -= info->messages[--info->attr.mq_curmsgs]->m_ts;
515 return info->messages[info->attr.mq_curmsgs];
516}
517
518static inline void set_cookie(struct sk_buff *skb, char code)
519{
520 ((char*)skb->data)[NOTIFY_COOKIE_LEN-1] = code;
521}
522
523/*
524 * The next function is only to split too long sys_mq_timedsend
525 */
526static void __do_notify(struct mqueue_inode_info *info)
527{
528 /* notification
529 * invoked when there is registered process and there isn't process
530 * waiting synchronously for message AND state of queue changed from
531 * empty to not empty. Here we are sure that no one is waiting
532 * synchronously. */
533 if (info->notify_owner &&
534 info->attr.mq_curmsgs == 1) {
535 struct siginfo sig_i;
536 switch (info->notify.sigev_notify) {
537 case SIGEV_NONE:
538 break;
539 case SIGEV_SIGNAL:
540 /* sends signal */
541
542 sig_i.si_signo = info->notify.sigev_signo;
543 sig_i.si_errno = 0;
544 sig_i.si_code = SI_MESGQ;
545 sig_i.si_value = info->notify.sigev_value;
6b550f94
SH
546 /* map current pid/uid into info->owner's namespaces */
547 rcu_read_lock();
a6684999
SB
548 sig_i.si_pid = task_tgid_nr_ns(current,
549 ns_of_pid(info->notify_owner));
6b550f94
SH
550 sig_i.si_uid = user_ns_map_uid(info->user->user_ns,
551 current_cred(), current_uid());
552 rcu_read_unlock();
1da177e4 553
a03fcb73
CLG
554 kill_pid_info(info->notify.sigev_signo,
555 &sig_i, info->notify_owner);
1da177e4
LT
556 break;
557 case SIGEV_THREAD:
558 set_cookie(info->notify_cookie, NOTIFY_WOKENUP);
7ee015e0 559 netlink_sendskb(info->notify_sock, info->notify_cookie);
1da177e4
LT
560 break;
561 }
562 /* after notification unregisters process */
a03fcb73
CLG
563 put_pid(info->notify_owner);
564 info->notify_owner = NULL;
1da177e4
LT
565 }
566 wake_up(&info->wait_q);
567}
568
9ca7d8e6
CE
569static int prepare_timeout(const struct timespec __user *u_abs_timeout,
570 ktime_t *expires, struct timespec *ts)
1da177e4 571{
9ca7d8e6
CE
572 if (copy_from_user(ts, u_abs_timeout, sizeof(struct timespec)))
573 return -EFAULT;
574 if (!timespec_valid(ts))
575 return -EINVAL;
1da177e4 576
9ca7d8e6
CE
577 *expires = timespec_to_ktime(*ts);
578 return 0;
1da177e4
LT
579}
580
581static void remove_notification(struct mqueue_inode_info *info)
582{
a03fcb73 583 if (info->notify_owner != NULL &&
1da177e4
LT
584 info->notify.sigev_notify == SIGEV_THREAD) {
585 set_cookie(info->notify_cookie, NOTIFY_REMOVED);
7ee015e0 586 netlink_sendskb(info->notify_sock, info->notify_cookie);
1da177e4 587 }
a03fcb73
CLG
588 put_pid(info->notify_owner);
589 info->notify_owner = NULL;
1da177e4
LT
590}
591
614b84cf 592static int mq_attr_ok(struct ipc_namespace *ipc_ns, struct mq_attr *attr)
1da177e4
LT
593{
594 if (attr->mq_maxmsg <= 0 || attr->mq_msgsize <= 0)
595 return 0;
596 if (capable(CAP_SYS_RESOURCE)) {
597 if (attr->mq_maxmsg > HARD_MSGMAX)
598 return 0;
599 } else {
614b84cf
SH
600 if (attr->mq_maxmsg > ipc_ns->mq_msg_max ||
601 attr->mq_msgsize > ipc_ns->mq_msgsize_max)
1da177e4
LT
602 return 0;
603 }
604 /* check for overflow */
605 if (attr->mq_msgsize > ULONG_MAX/attr->mq_maxmsg)
606 return 0;
8834cf79
AGR
607 if ((unsigned long)(attr->mq_maxmsg * (attr->mq_msgsize
608 + sizeof (struct msg_msg *))) <
1da177e4
LT
609 (unsigned long)(attr->mq_maxmsg * attr->mq_msgsize))
610 return 0;
611 return 1;
612}
613
614/*
615 * Invoked when creating a new queue via sys_mq_open
616 */
614b84cf 617static struct file *do_create(struct ipc_namespace *ipc_ns, struct dentry *dir,
4acdaf27 618 struct dentry *dentry, int oflag, umode_t mode,
614b84cf 619 struct mq_attr *attr)
1da177e4 620{
745ca247 621 const struct cred *cred = current_cred();
4a3fd211 622 struct file *result;
1da177e4
LT
623 int ret;
624
564f6993 625 if (attr) {
8d8ffefa
AGR
626 if (!mq_attr_ok(ipc_ns, attr)) {
627 ret = -EINVAL;
7c7dce92 628 goto out;
8d8ffefa 629 }
1da177e4 630 /* store for use during create */
564f6993 631 dentry->d_fsdata = attr;
1da177e4
LT
632 }
633
ce3b0f8d 634 mode &= ~current_umask();
614b84cf 635 ret = mnt_want_write(ipc_ns->mq_mnt);
4a3fd211
DH
636 if (ret)
637 goto out;
1da177e4
LT
638 ret = vfs_create(dir->d_inode, dentry, mode, NULL);
639 dentry->d_fsdata = NULL;
640 if (ret)
4a3fd211
DH
641 goto out_drop_write;
642
614b84cf 643 result = dentry_open(dentry, ipc_ns->mq_mnt, oflag, cred);
4a3fd211
DH
644 /*
645 * dentry_open() took a persistent mnt_want_write(),
646 * so we can now drop this one.
647 */
614b84cf 648 mnt_drop_write(ipc_ns->mq_mnt);
4a3fd211
DH
649 return result;
650
651out_drop_write:
614b84cf 652 mnt_drop_write(ipc_ns->mq_mnt);
7c7dce92
AV
653out:
654 dput(dentry);
614b84cf 655 mntput(ipc_ns->mq_mnt);
7c7dce92 656 return ERR_PTR(ret);
1da177e4
LT
657}
658
659/* Opens existing queue */
614b84cf
SH
660static struct file *do_open(struct ipc_namespace *ipc_ns,
661 struct dentry *dentry, int oflag)
1da177e4 662{
04db0dde 663 int ret;
745ca247
DH
664 const struct cred *cred = current_cred();
665
666 static const int oflag2acc[O_ACCMODE] = { MAY_READ, MAY_WRITE,
667 MAY_READ | MAY_WRITE };
1da177e4 668
7c7dce92 669 if ((oflag & O_ACCMODE) == (O_RDWR | O_WRONLY)) {
04db0dde
AGR
670 ret = -EINVAL;
671 goto err;
7c7dce92 672 }
1da177e4 673
f419a2e3 674 if (inode_permission(dentry->d_inode, oflag2acc[oflag & O_ACCMODE])) {
04db0dde
AGR
675 ret = -EACCES;
676 goto err;
7c7dce92 677 }
1da177e4 678
614b84cf 679 return dentry_open(dentry, ipc_ns->mq_mnt, oflag, cred);
04db0dde
AGR
680
681err:
682 dput(dentry);
683 mntput(ipc_ns->mq_mnt);
684 return ERR_PTR(ret);
1da177e4
LT
685}
686
df0a4283 687SYSCALL_DEFINE4(mq_open, const char __user *, u_name, int, oflag, umode_t, mode,
d5460c99 688 struct mq_attr __user *, u_attr)
1da177e4
LT
689{
690 struct dentry *dentry;
691 struct file *filp;
692 char *name;
564f6993 693 struct mq_attr attr;
1da177e4 694 int fd, error;
7eafd7c7 695 struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
1da177e4 696
564f6993
AV
697 if (u_attr && copy_from_user(&attr, u_attr, sizeof(struct mq_attr)))
698 return -EFAULT;
699
700 audit_mq_open(oflag, mode, u_attr ? &attr : NULL);
20ca73bc 701
1da177e4
LT
702 if (IS_ERR(name = getname(u_name)))
703 return PTR_ERR(name);
704
269f2134 705 fd = get_unused_fd_flags(O_CLOEXEC);
1da177e4
LT
706 if (fd < 0)
707 goto out_putname;
708
614b84cf
SH
709 mutex_lock(&ipc_ns->mq_mnt->mnt_root->d_inode->i_mutex);
710 dentry = lookup_one_len(name, ipc_ns->mq_mnt->mnt_root, strlen(name));
1da177e4
LT
711 if (IS_ERR(dentry)) {
712 error = PTR_ERR(dentry);
4294a8ee 713 goto out_putfd;
1da177e4 714 }
614b84cf 715 mntget(ipc_ns->mq_mnt);
1da177e4
LT
716
717 if (oflag & O_CREAT) {
718 if (dentry->d_inode) { /* entry already exists */
5a190ae6 719 audit_inode(name, dentry);
8d8ffefa
AGR
720 if (oflag & O_EXCL) {
721 error = -EEXIST;
7c7dce92 722 goto out;
8d8ffefa 723 }
614b84cf 724 filp = do_open(ipc_ns, dentry, oflag);
1da177e4 725 } else {
614b84cf
SH
726 filp = do_create(ipc_ns, ipc_ns->mq_mnt->mnt_root,
727 dentry, oflag, mode,
564f6993 728 u_attr ? &attr : NULL);
1da177e4 729 }
7c7dce92 730 } else {
8d8ffefa
AGR
731 if (!dentry->d_inode) {
732 error = -ENOENT;
7c7dce92 733 goto out;
8d8ffefa 734 }
5a190ae6 735 audit_inode(name, dentry);
614b84cf 736 filp = do_open(ipc_ns, dentry, oflag);
7c7dce92 737 }
1da177e4
LT
738
739 if (IS_ERR(filp)) {
740 error = PTR_ERR(filp);
741 goto out_putfd;
742 }
743
1da177e4
LT
744 fd_install(fd, filp);
745 goto out_upsem;
746
7c7dce92
AV
747out:
748 dput(dentry);
614b84cf 749 mntput(ipc_ns->mq_mnt);
7c7dce92 750out_putfd:
1da177e4 751 put_unused_fd(fd);
1da177e4
LT
752 fd = error;
753out_upsem:
614b84cf 754 mutex_unlock(&ipc_ns->mq_mnt->mnt_root->d_inode->i_mutex);
1da177e4
LT
755out_putname:
756 putname(name);
757 return fd;
758}
759
d5460c99 760SYSCALL_DEFINE1(mq_unlink, const char __user *, u_name)
1da177e4
LT
761{
762 int err;
763 char *name;
764 struct dentry *dentry;
765 struct inode *inode = NULL;
7eafd7c7 766 struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
1da177e4
LT
767
768 name = getname(u_name);
769 if (IS_ERR(name))
770 return PTR_ERR(name);
771
614b84cf 772 mutex_lock_nested(&ipc_ns->mq_mnt->mnt_root->d_inode->i_mutex,
7a434814 773 I_MUTEX_PARENT);
614b84cf 774 dentry = lookup_one_len(name, ipc_ns->mq_mnt->mnt_root, strlen(name));
1da177e4
LT
775 if (IS_ERR(dentry)) {
776 err = PTR_ERR(dentry);
777 goto out_unlock;
778 }
779
780 if (!dentry->d_inode) {
781 err = -ENOENT;
782 goto out_err;
783 }
784
785 inode = dentry->d_inode;
786 if (inode)
7de9c6ee 787 ihold(inode);
614b84cf 788 err = mnt_want_write(ipc_ns->mq_mnt);
0622753b
DH
789 if (err)
790 goto out_err;
1da177e4 791 err = vfs_unlink(dentry->d_parent->d_inode, dentry);
614b84cf 792 mnt_drop_write(ipc_ns->mq_mnt);
1da177e4
LT
793out_err:
794 dput(dentry);
795
796out_unlock:
614b84cf 797 mutex_unlock(&ipc_ns->mq_mnt->mnt_root->d_inode->i_mutex);
1da177e4
LT
798 putname(name);
799 if (inode)
800 iput(inode);
801
802 return err;
803}
804
805/* Pipelined send and receive functions.
806 *
807 * If a receiver finds no waiting message, then it registers itself in the
808 * list of waiting receivers. A sender checks that list before adding the new
809 * message into the message array. If there is a waiting receiver, then it
810 * bypasses the message array and directly hands the message over to the
811 * receiver.
812 * The receiver accepts the message and returns without grabbing the queue
813 * spinlock. Therefore an intermediate STATE_PENDING state and memory barriers
814 * are necessary. The same algorithm is used for sysv semaphores, see
7b7a317c 815 * ipc/sem.c for more details.
1da177e4
LT
816 *
817 * The same algorithm is used for senders.
818 */
819
820/* pipelined_send() - send a message directly to the task waiting in
821 * sys_mq_timedreceive() (without inserting message into a queue).
822 */
823static inline void pipelined_send(struct mqueue_inode_info *info,
824 struct msg_msg *message,
825 struct ext_wait_queue *receiver)
826{
827 receiver->msg = message;
828 list_del(&receiver->list);
829 receiver->state = STATE_PENDING;
830 wake_up_process(receiver->task);
d59dd462 831 smp_wmb();
1da177e4
LT
832 receiver->state = STATE_READY;
833}
834
835/* pipelined_receive() - if there is task waiting in sys_mq_timedsend()
836 * gets its message and put to the queue (we have one free place for sure). */
837static inline void pipelined_receive(struct mqueue_inode_info *info)
838{
839 struct ext_wait_queue *sender = wq_get_first_waiter(info, SEND);
840
841 if (!sender) {
842 /* for poll */
843 wake_up_interruptible(&info->wait_q);
844 return;
845 }
846 msg_insert(sender->msg, info);
847 list_del(&sender->list);
848 sender->state = STATE_PENDING;
849 wake_up_process(sender->task);
d59dd462 850 smp_wmb();
1da177e4
LT
851 sender->state = STATE_READY;
852}
853
c4ea37c2
HC
854SYSCALL_DEFINE5(mq_timedsend, mqd_t, mqdes, const char __user *, u_msg_ptr,
855 size_t, msg_len, unsigned int, msg_prio,
856 const struct timespec __user *, u_abs_timeout)
1da177e4
LT
857{
858 struct file *filp;
859 struct inode *inode;
860 struct ext_wait_queue wait;
861 struct ext_wait_queue *receiver;
862 struct msg_msg *msg_ptr;
863 struct mqueue_inode_info *info;
9ca7d8e6
CE
864 ktime_t expires, *timeout = NULL;
865 struct timespec ts;
1da177e4
LT
866 int ret;
867
c32c8af4 868 if (u_abs_timeout) {
9ca7d8e6
CE
869 int res = prepare_timeout(u_abs_timeout, &expires, &ts);
870 if (res)
871 return res;
872 timeout = &expires;
c32c8af4 873 }
20ca73bc 874
1da177e4
LT
875 if (unlikely(msg_prio >= (unsigned long) MQ_PRIO_MAX))
876 return -EINVAL;
877
9ca7d8e6 878 audit_mq_sendrecv(mqdes, msg_len, msg_prio, timeout ? &ts : NULL);
1da177e4 879
1da177e4 880 filp = fget(mqdes);
8d8ffefa
AGR
881 if (unlikely(!filp)) {
882 ret = -EBADF;
1da177e4 883 goto out;
8d8ffefa 884 }
1da177e4 885
6d63079a 886 inode = filp->f_path.dentry->d_inode;
8d8ffefa
AGR
887 if (unlikely(filp->f_op != &mqueue_file_operations)) {
888 ret = -EBADF;
1da177e4 889 goto out_fput;
8d8ffefa 890 }
1da177e4 891 info = MQUEUE_I(inode);
5a190ae6 892 audit_inode(NULL, filp->f_path.dentry);
1da177e4 893
8d8ffefa
AGR
894 if (unlikely(!(filp->f_mode & FMODE_WRITE))) {
895 ret = -EBADF;
1da177e4 896 goto out_fput;
8d8ffefa 897 }
1da177e4
LT
898
899 if (unlikely(msg_len > info->attr.mq_msgsize)) {
900 ret = -EMSGSIZE;
901 goto out_fput;
902 }
903
904 /* First try to allocate memory, before doing anything with
905 * existing queues. */
906 msg_ptr = load_msg(u_msg_ptr, msg_len);
907 if (IS_ERR(msg_ptr)) {
908 ret = PTR_ERR(msg_ptr);
909 goto out_fput;
910 }
911 msg_ptr->m_ts = msg_len;
912 msg_ptr->m_type = msg_prio;
913
914 spin_lock(&info->lock);
915
916 if (info->attr.mq_curmsgs == info->attr.mq_maxmsg) {
917 if (filp->f_flags & O_NONBLOCK) {
918 spin_unlock(&info->lock);
919 ret = -EAGAIN;
1da177e4
LT
920 } else {
921 wait.task = current;
922 wait.msg = (void *) msg_ptr;
923 wait.state = STATE_NONE;
924 ret = wq_sleep(info, SEND, timeout, &wait);
925 }
926 if (ret < 0)
927 free_msg(msg_ptr);
928 } else {
929 receiver = wq_get_first_waiter(info, RECV);
930 if (receiver) {
931 pipelined_send(info, msg_ptr, receiver);
932 } else {
933 /* adds message to the queue */
934 msg_insert(msg_ptr, info);
935 __do_notify(info);
936 }
937 inode->i_atime = inode->i_mtime = inode->i_ctime =
938 CURRENT_TIME;
939 spin_unlock(&info->lock);
940 ret = 0;
941 }
942out_fput:
943 fput(filp);
944out:
945 return ret;
946}
947
c4ea37c2
HC
948SYSCALL_DEFINE5(mq_timedreceive, mqd_t, mqdes, char __user *, u_msg_ptr,
949 size_t, msg_len, unsigned int __user *, u_msg_prio,
950 const struct timespec __user *, u_abs_timeout)
1da177e4 951{
1da177e4
LT
952 ssize_t ret;
953 struct msg_msg *msg_ptr;
954 struct file *filp;
955 struct inode *inode;
956 struct mqueue_inode_info *info;
957 struct ext_wait_queue wait;
9ca7d8e6
CE
958 ktime_t expires, *timeout = NULL;
959 struct timespec ts;
1da177e4 960
c32c8af4 961 if (u_abs_timeout) {
9ca7d8e6
CE
962 int res = prepare_timeout(u_abs_timeout, &expires, &ts);
963 if (res)
964 return res;
965 timeout = &expires;
c32c8af4 966 }
20ca73bc 967
9ca7d8e6 968 audit_mq_sendrecv(mqdes, msg_len, 0, timeout ? &ts : NULL);
1da177e4 969
1da177e4 970 filp = fget(mqdes);
8d8ffefa
AGR
971 if (unlikely(!filp)) {
972 ret = -EBADF;
1da177e4 973 goto out;
8d8ffefa 974 }
1da177e4 975
6d63079a 976 inode = filp->f_path.dentry->d_inode;
8d8ffefa
AGR
977 if (unlikely(filp->f_op != &mqueue_file_operations)) {
978 ret = -EBADF;
1da177e4 979 goto out_fput;
8d8ffefa 980 }
1da177e4 981 info = MQUEUE_I(inode);
5a190ae6 982 audit_inode(NULL, filp->f_path.dentry);
1da177e4 983
8d8ffefa
AGR
984 if (unlikely(!(filp->f_mode & FMODE_READ))) {
985 ret = -EBADF;
1da177e4 986 goto out_fput;
8d8ffefa 987 }
1da177e4
LT
988
989 /* checks if buffer is big enough */
990 if (unlikely(msg_len < info->attr.mq_msgsize)) {
991 ret = -EMSGSIZE;
992 goto out_fput;
993 }
994
995 spin_lock(&info->lock);
996 if (info->attr.mq_curmsgs == 0) {
997 if (filp->f_flags & O_NONBLOCK) {
998 spin_unlock(&info->lock);
999 ret = -EAGAIN;
1da177e4
LT
1000 } else {
1001 wait.task = current;
1002 wait.state = STATE_NONE;
1003 ret = wq_sleep(info, RECV, timeout, &wait);
1004 msg_ptr = wait.msg;
1005 }
1006 } else {
1007 msg_ptr = msg_get(info);
1008
1009 inode->i_atime = inode->i_mtime = inode->i_ctime =
1010 CURRENT_TIME;
1011
1012 /* There is now free space in queue. */
1013 pipelined_receive(info);
1014 spin_unlock(&info->lock);
1015 ret = 0;
1016 }
1017 if (ret == 0) {
1018 ret = msg_ptr->m_ts;
1019
1020 if ((u_msg_prio && put_user(msg_ptr->m_type, u_msg_prio)) ||
1021 store_msg(u_msg_ptr, msg_ptr, msg_ptr->m_ts)) {
1022 ret = -EFAULT;
1023 }
1024 free_msg(msg_ptr);
1025 }
1026out_fput:
1027 fput(filp);
1028out:
1029 return ret;
1030}
1031
1032/*
1033 * Notes: the case when user wants us to deregister (with NULL as pointer)
1034 * and he isn't currently owner of notification, will be silently discarded.
1035 * It isn't explicitly defined in the POSIX.
1036 */
c4ea37c2
HC
1037SYSCALL_DEFINE2(mq_notify, mqd_t, mqdes,
1038 const struct sigevent __user *, u_notification)
1da177e4
LT
1039{
1040 int ret;
1041 struct file *filp;
1042 struct sock *sock;
1043 struct inode *inode;
1044 struct sigevent notification;
1045 struct mqueue_inode_info *info;
1046 struct sk_buff *nc;
1047
20114f71 1048 if (u_notification) {
1da177e4
LT
1049 if (copy_from_user(&notification, u_notification,
1050 sizeof(struct sigevent)))
1051 return -EFAULT;
20114f71
AV
1052 }
1053
1054 audit_mq_notify(mqdes, u_notification ? &notification : NULL);
1da177e4 1055
20114f71
AV
1056 nc = NULL;
1057 sock = NULL;
1058 if (u_notification != NULL) {
1da177e4
LT
1059 if (unlikely(notification.sigev_notify != SIGEV_NONE &&
1060 notification.sigev_notify != SIGEV_SIGNAL &&
1061 notification.sigev_notify != SIGEV_THREAD))
1062 return -EINVAL;
1063 if (notification.sigev_notify == SIGEV_SIGNAL &&
7ed20e1a 1064 !valid_signal(notification.sigev_signo)) {
1da177e4
LT
1065 return -EINVAL;
1066 }
1067 if (notification.sigev_notify == SIGEV_THREAD) {
c3d8d1e3
PM
1068 long timeo;
1069
1da177e4
LT
1070 /* create the notify skb */
1071 nc = alloc_skb(NOTIFY_COOKIE_LEN, GFP_KERNEL);
8d8ffefa
AGR
1072 if (!nc) {
1073 ret = -ENOMEM;
1da177e4 1074 goto out;
8d8ffefa 1075 }
1da177e4
LT
1076 if (copy_from_user(nc->data,
1077 notification.sigev_value.sival_ptr,
1078 NOTIFY_COOKIE_LEN)) {
8d8ffefa 1079 ret = -EFAULT;
1da177e4
LT
1080 goto out;
1081 }
1082
1083 /* TODO: add a header? */
1084 skb_put(nc, NOTIFY_COOKIE_LEN);
1085 /* and attach it to the socket */
1086retry:
1087 filp = fget(notification.sigev_signo);
8d8ffefa
AGR
1088 if (!filp) {
1089 ret = -EBADF;
1da177e4 1090 goto out;
8d8ffefa 1091 }
1da177e4
LT
1092 sock = netlink_getsockbyfilp(filp);
1093 fput(filp);
1094 if (IS_ERR(sock)) {
1095 ret = PTR_ERR(sock);
1096 sock = NULL;
1097 goto out;
1098 }
1099
c3d8d1e3 1100 timeo = MAX_SCHEDULE_TIMEOUT;
9457afee 1101 ret = netlink_attachskb(sock, nc, &timeo, NULL);
1da177e4 1102 if (ret == 1)
8d8ffefa 1103 goto retry;
1da177e4
LT
1104 if (ret) {
1105 sock = NULL;
1106 nc = NULL;
1107 goto out;
1108 }
1109 }
1110 }
1111
1da177e4 1112 filp = fget(mqdes);
8d8ffefa
AGR
1113 if (!filp) {
1114 ret = -EBADF;
1da177e4 1115 goto out;
8d8ffefa 1116 }
1da177e4 1117
6d63079a 1118 inode = filp->f_path.dentry->d_inode;
8d8ffefa
AGR
1119 if (unlikely(filp->f_op != &mqueue_file_operations)) {
1120 ret = -EBADF;
1da177e4 1121 goto out_fput;
8d8ffefa 1122 }
1da177e4
LT
1123 info = MQUEUE_I(inode);
1124
1125 ret = 0;
1126 spin_lock(&info->lock);
1127 if (u_notification == NULL) {
a03fcb73 1128 if (info->notify_owner == task_tgid(current)) {
1da177e4
LT
1129 remove_notification(info);
1130 inode->i_atime = inode->i_ctime = CURRENT_TIME;
1131 }
a03fcb73 1132 } else if (info->notify_owner != NULL) {
1da177e4
LT
1133 ret = -EBUSY;
1134 } else {
1135 switch (notification.sigev_notify) {
1136 case SIGEV_NONE:
1137 info->notify.sigev_notify = SIGEV_NONE;
1138 break;
1139 case SIGEV_THREAD:
1140 info->notify_sock = sock;
1141 info->notify_cookie = nc;
1142 sock = NULL;
1143 nc = NULL;
1144 info->notify.sigev_notify = SIGEV_THREAD;
1145 break;
1146 case SIGEV_SIGNAL:
1147 info->notify.sigev_signo = notification.sigev_signo;
1148 info->notify.sigev_value = notification.sigev_value;
1149 info->notify.sigev_notify = SIGEV_SIGNAL;
1150 break;
1151 }
a03fcb73
CLG
1152
1153 info->notify_owner = get_pid(task_tgid(current));
1da177e4
LT
1154 inode->i_atime = inode->i_ctime = CURRENT_TIME;
1155 }
1156 spin_unlock(&info->lock);
1157out_fput:
1158 fput(filp);
1159out:
1160 if (sock) {
1161 netlink_detachskb(sock, nc);
1162 } else if (nc) {
1163 dev_kfree_skb(nc);
1164 }
1165 return ret;
1166}
1167
c4ea37c2
HC
1168SYSCALL_DEFINE3(mq_getsetattr, mqd_t, mqdes,
1169 const struct mq_attr __user *, u_mqstat,
1170 struct mq_attr __user *, u_omqstat)
1da177e4
LT
1171{
1172 int ret;
1173 struct mq_attr mqstat, omqstat;
1174 struct file *filp;
1175 struct inode *inode;
1176 struct mqueue_inode_info *info;
1177
1178 if (u_mqstat != NULL) {
1179 if (copy_from_user(&mqstat, u_mqstat, sizeof(struct mq_attr)))
1180 return -EFAULT;
1181 if (mqstat.mq_flags & (~O_NONBLOCK))
1182 return -EINVAL;
1183 }
1184
1da177e4 1185 filp = fget(mqdes);
8d8ffefa
AGR
1186 if (!filp) {
1187 ret = -EBADF;
1da177e4 1188 goto out;
8d8ffefa 1189 }
1da177e4 1190
6d63079a 1191 inode = filp->f_path.dentry->d_inode;
8d8ffefa
AGR
1192 if (unlikely(filp->f_op != &mqueue_file_operations)) {
1193 ret = -EBADF;
1da177e4 1194 goto out_fput;
8d8ffefa 1195 }
1da177e4
LT
1196 info = MQUEUE_I(inode);
1197
1198 spin_lock(&info->lock);
1199
1200 omqstat = info->attr;
1201 omqstat.mq_flags = filp->f_flags & O_NONBLOCK;
1202 if (u_mqstat) {
7392906e 1203 audit_mq_getsetattr(mqdes, &mqstat);
db1dd4d3 1204 spin_lock(&filp->f_lock);
1da177e4
LT
1205 if (mqstat.mq_flags & O_NONBLOCK)
1206 filp->f_flags |= O_NONBLOCK;
1207 else
1208 filp->f_flags &= ~O_NONBLOCK;
db1dd4d3 1209 spin_unlock(&filp->f_lock);
1da177e4
LT
1210
1211 inode->i_atime = inode->i_ctime = CURRENT_TIME;
1212 }
1213
1214 spin_unlock(&info->lock);
1215
1216 ret = 0;
1217 if (u_omqstat != NULL && copy_to_user(u_omqstat, &omqstat,
1218 sizeof(struct mq_attr)))
1219 ret = -EFAULT;
1220
1221out_fput:
1222 fput(filp);
1223out:
1224 return ret;
1225}
1226
92e1d5be 1227static const struct inode_operations mqueue_dir_inode_operations = {
1da177e4
LT
1228 .lookup = simple_lookup,
1229 .create = mqueue_create,
1230 .unlink = mqueue_unlink,
1231};
1232
9a32144e 1233static const struct file_operations mqueue_file_operations = {
1da177e4
LT
1234 .flush = mqueue_flush_file,
1235 .poll = mqueue_poll_file,
1236 .read = mqueue_read_file,
6038f373 1237 .llseek = default_llseek,
1da177e4
LT
1238};
1239
b87221de 1240static const struct super_operations mqueue_super_ops = {
1da177e4
LT
1241 .alloc_inode = mqueue_alloc_inode,
1242 .destroy_inode = mqueue_destroy_inode,
6d8af64c 1243 .evict_inode = mqueue_evict_inode,
1da177e4 1244 .statfs = simple_statfs,
1da177e4
LT
1245};
1246
1247static struct file_system_type mqueue_fs_type = {
1248 .name = "mqueue",
ceefda69 1249 .mount = mqueue_mount,
1da177e4
LT
1250 .kill_sb = kill_litter_super,
1251};
1252
7eafd7c7
SH
1253int mq_init_ns(struct ipc_namespace *ns)
1254{
1255 ns->mq_queues_count = 0;
1256 ns->mq_queues_max = DFLT_QUEUESMAX;
1257 ns->mq_msg_max = DFLT_MSGMAX;
1258 ns->mq_msgsize_max = DFLT_MSGSIZEMAX;
1259
1260 ns->mq_mnt = kern_mount_data(&mqueue_fs_type, ns);
1261 if (IS_ERR(ns->mq_mnt)) {
1262 int err = PTR_ERR(ns->mq_mnt);
1263 ns->mq_mnt = NULL;
1264 return err;
1265 }
1266 return 0;
1267}
1268
1269void mq_clear_sbinfo(struct ipc_namespace *ns)
1270{
1271 ns->mq_mnt->mnt_sb->s_fs_info = NULL;
1272}
1273
1274void mq_put_mnt(struct ipc_namespace *ns)
1275{
6f686574 1276 kern_unmount(ns->mq_mnt);
7eafd7c7
SH
1277}
1278
1da177e4
LT
1279static int __init init_mqueue_fs(void)
1280{
1281 int error;
1282
1283 mqueue_inode_cachep = kmem_cache_create("mqueue_inode_cache",
1284 sizeof(struct mqueue_inode_info), 0,
20c2df83 1285 SLAB_HWCACHE_ALIGN, init_once);
1da177e4
LT
1286 if (mqueue_inode_cachep == NULL)
1287 return -ENOMEM;
1288
2329e392 1289 /* ignore failures - they are not fatal */
bdc8e5f8 1290 mq_sysctl_table = mq_register_sysctl_table();
1da177e4
LT
1291
1292 error = register_filesystem(&mqueue_fs_type);
1293 if (error)
1294 goto out_sysctl;
1295
7eafd7c7
SH
1296 spin_lock_init(&mq_lock);
1297
6f686574
AV
1298 error = mq_init_ns(&init_ipc_ns);
1299 if (error)
1da177e4 1300 goto out_filesystem;
1da177e4 1301
1da177e4
LT
1302 return 0;
1303
1304out_filesystem:
1305 unregister_filesystem(&mqueue_fs_type);
1306out_sysctl:
1307 if (mq_sysctl_table)
1308 unregister_sysctl_table(mq_sysctl_table);
1a1d92c1 1309 kmem_cache_destroy(mqueue_inode_cachep);
1da177e4
LT
1310 return error;
1311}
1312
1313__initcall(init_mqueue_fs);