OSDN Git Service

Merge 4.4.185 into android-4.4
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / ipc / mqueue.c
1 /*
2  * POSIX message queues filesystem for Linux.
3  *
4  * Copyright (C) 2003,2004  Krzysztof Benedyczak    (golbi@mat.uni.torun.pl)
5  *                          Michal Wronski          (michal.wronski@gmail.com)
6  *
7  * Spinlocks:               Mohamed Abbas           (abbas.mohamed@intel.com)
8  * Lockless receive & send, fd based notify:
9  *                          Manfred Spraul          (manfred@colorfullife.com)
10  *
11  * Audit:                   George Wilson           (ltcgcw@us.ibm.com)
12  *
13  * This file is released under the GPL.
14  */
15
16 #include <linux/capability.h>
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/vmalloc.h>
28 #include <linux/netlink.h>
29 #include <linux/syscalls.h>
30 #include <linux/audit.h>
31 #include <linux/signal.h>
32 #include <linux/mutex.h>
33 #include <linux/nsproxy.h>
34 #include <linux/pid.h>
35 #include <linux/ipc_namespace.h>
36 #include <linux/user_namespace.h>
37 #include <linux/slab.h>
38
39 #include <net/sock.h>
40 #include "util.h"
41
42 #define MQUEUE_MAGIC    0x19800202
43 #define DIRENT_SIZE     20
44 #define FILENT_SIZE     80
45
46 #define SEND            0
47 #define RECV            1
48
49 #define STATE_NONE      0
50 #define STATE_READY     1
51
52 struct posix_msg_tree_node {
53         struct rb_node          rb_node;
54         struct list_head        msg_list;
55         int                     priority;
56 };
57
58 struct ext_wait_queue {         /* queue of sleeping tasks */
59         struct task_struct *task;
60         struct list_head list;
61         struct msg_msg *msg;    /* ptr of loaded message */
62         int state;              /* one of STATE_* values */
63 };
64
65 struct mqueue_inode_info {
66         spinlock_t lock;
67         struct inode vfs_inode;
68         wait_queue_head_t wait_q;
69
70         struct rb_root msg_tree;
71         struct posix_msg_tree_node *node_cache;
72         struct mq_attr attr;
73
74         struct sigevent notify;
75         struct pid *notify_owner;
76         struct user_namespace *notify_user_ns;
77         struct user_struct *user;       /* user who created, for accounting */
78         struct sock *notify_sock;
79         struct sk_buff *notify_cookie;
80
81         /* for tasks waiting for free space and messages, respectively */
82         struct ext_wait_queue e_wait_q[2];
83
84         unsigned long qsize; /* size of queue in memory (sum of all msgs) */
85 };
86
87 static const struct inode_operations mqueue_dir_inode_operations;
88 static const struct file_operations mqueue_file_operations;
89 static const struct super_operations mqueue_super_ops;
90 static void remove_notification(struct mqueue_inode_info *info);
91
92 static struct kmem_cache *mqueue_inode_cachep;
93
94 static struct ctl_table_header *mq_sysctl_table;
95
96 static inline struct mqueue_inode_info *MQUEUE_I(struct inode *inode)
97 {
98         return container_of(inode, struct mqueue_inode_info, vfs_inode);
99 }
100
101 /*
102  * This routine should be called with the mq_lock held.
103  */
104 static inline struct ipc_namespace *__get_ns_from_inode(struct inode *inode)
105 {
106         return get_ipc_ns(inode->i_sb->s_fs_info);
107 }
108
109 static struct ipc_namespace *get_ns_from_inode(struct inode *inode)
110 {
111         struct ipc_namespace *ns;
112
113         spin_lock(&mq_lock);
114         ns = __get_ns_from_inode(inode);
115         spin_unlock(&mq_lock);
116         return ns;
117 }
118
119 /* Auxiliary functions to manipulate messages' list */
120 static int msg_insert(struct msg_msg *msg, struct mqueue_inode_info *info)
121 {
122         struct rb_node **p, *parent = NULL;
123         struct posix_msg_tree_node *leaf;
124
125         p = &info->msg_tree.rb_node;
126         while (*p) {
127                 parent = *p;
128                 leaf = rb_entry(parent, struct posix_msg_tree_node, rb_node);
129
130                 if (likely(leaf->priority == msg->m_type))
131                         goto insert_msg;
132                 else if (msg->m_type < leaf->priority)
133                         p = &(*p)->rb_left;
134                 else
135                         p = &(*p)->rb_right;
136         }
137         if (info->node_cache) {
138                 leaf = info->node_cache;
139                 info->node_cache = NULL;
140         } else {
141                 leaf = kmalloc(sizeof(*leaf), GFP_ATOMIC);
142                 if (!leaf)
143                         return -ENOMEM;
144                 INIT_LIST_HEAD(&leaf->msg_list);
145         }
146         leaf->priority = msg->m_type;
147         rb_link_node(&leaf->rb_node, parent, p);
148         rb_insert_color(&leaf->rb_node, &info->msg_tree);
149 insert_msg:
150         info->attr.mq_curmsgs++;
151         info->qsize += msg->m_ts;
152         list_add_tail(&msg->m_list, &leaf->msg_list);
153         return 0;
154 }
155
156 static inline struct msg_msg *msg_get(struct mqueue_inode_info *info)
157 {
158         struct rb_node **p, *parent = NULL;
159         struct posix_msg_tree_node *leaf;
160         struct msg_msg *msg;
161
162 try_again:
163         p = &info->msg_tree.rb_node;
164         while (*p) {
165                 parent = *p;
166                 /*
167                  * During insert, low priorities go to the left and high to the
168                  * right.  On receive, we want the highest priorities first, so
169                  * walk all the way to the right.
170                  */
171                 p = &(*p)->rb_right;
172         }
173         if (!parent) {
174                 if (info->attr.mq_curmsgs) {
175                         pr_warn_once("Inconsistency in POSIX message queue, "
176                                      "no tree element, but supposedly messages "
177                                      "should exist!\n");
178                         info->attr.mq_curmsgs = 0;
179                 }
180                 return NULL;
181         }
182         leaf = rb_entry(parent, struct posix_msg_tree_node, rb_node);
183         if (unlikely(list_empty(&leaf->msg_list))) {
184                 pr_warn_once("Inconsistency in POSIX message queue, "
185                              "empty leaf node but we haven't implemented "
186                              "lazy leaf delete!\n");
187                 rb_erase(&leaf->rb_node, &info->msg_tree);
188                 if (info->node_cache) {
189                         kfree(leaf);
190                 } else {
191                         info->node_cache = leaf;
192                 }
193                 goto try_again;
194         } else {
195                 msg = list_first_entry(&leaf->msg_list,
196                                        struct msg_msg, m_list);
197                 list_del(&msg->m_list);
198                 if (list_empty(&leaf->msg_list)) {
199                         rb_erase(&leaf->rb_node, &info->msg_tree);
200                         if (info->node_cache) {
201                                 kfree(leaf);
202                         } else {
203                                 info->node_cache = leaf;
204                         }
205                 }
206         }
207         info->attr.mq_curmsgs--;
208         info->qsize -= msg->m_ts;
209         return msg;
210 }
211
212 static struct inode *mqueue_get_inode(struct super_block *sb,
213                 struct ipc_namespace *ipc_ns, umode_t mode,
214                 struct mq_attr *attr)
215 {
216         struct user_struct *u = current_user();
217         struct inode *inode;
218         int ret = -ENOMEM;
219
220         inode = new_inode(sb);
221         if (!inode)
222                 goto err;
223
224         inode->i_ino = get_next_ino();
225         inode->i_mode = mode;
226         inode->i_uid = current_fsuid();
227         inode->i_gid = current_fsgid();
228         inode->i_mtime = inode->i_ctime = inode->i_atime = CURRENT_TIME;
229
230         if (S_ISREG(mode)) {
231                 struct mqueue_inode_info *info;
232                 unsigned long mq_bytes, mq_treesize;
233
234                 inode->i_fop = &mqueue_file_operations;
235                 inode->i_size = FILENT_SIZE;
236                 /* mqueue specific info */
237                 info = MQUEUE_I(inode);
238                 spin_lock_init(&info->lock);
239                 init_waitqueue_head(&info->wait_q);
240                 INIT_LIST_HEAD(&info->e_wait_q[0].list);
241                 INIT_LIST_HEAD(&info->e_wait_q[1].list);
242                 info->notify_owner = NULL;
243                 info->notify_user_ns = NULL;
244                 info->qsize = 0;
245                 info->user = NULL;      /* set when all is ok */
246                 info->msg_tree = RB_ROOT;
247                 info->node_cache = NULL;
248                 memset(&info->attr, 0, sizeof(info->attr));
249                 info->attr.mq_maxmsg = min(ipc_ns->mq_msg_max,
250                                            ipc_ns->mq_msg_default);
251                 info->attr.mq_msgsize = min(ipc_ns->mq_msgsize_max,
252                                             ipc_ns->mq_msgsize_default);
253                 if (attr) {
254                         info->attr.mq_maxmsg = attr->mq_maxmsg;
255                         info->attr.mq_msgsize = attr->mq_msgsize;
256                 }
257                 /*
258                  * We used to allocate a static array of pointers and account
259                  * the size of that array as well as one msg_msg struct per
260                  * possible message into the queue size. That's no longer
261                  * accurate as the queue is now an rbtree and will grow and
262                  * shrink depending on usage patterns.  We can, however, still
263                  * account one msg_msg struct per message, but the nodes are
264                  * allocated depending on priority usage, and most programs
265                  * only use one, or a handful, of priorities.  However, since
266                  * this is pinned memory, we need to assume worst case, so
267                  * that means the min(mq_maxmsg, max_priorities) * struct
268                  * posix_msg_tree_node.
269                  */
270                 mq_treesize = info->attr.mq_maxmsg * sizeof(struct msg_msg) +
271                         min_t(unsigned int, info->attr.mq_maxmsg, MQ_PRIO_MAX) *
272                         sizeof(struct posix_msg_tree_node);
273
274                 mq_bytes = mq_treesize + (info->attr.mq_maxmsg *
275                                           info->attr.mq_msgsize);
276
277                 spin_lock(&mq_lock);
278                 if (u->mq_bytes + mq_bytes < u->mq_bytes ||
279                     u->mq_bytes + mq_bytes > rlimit(RLIMIT_MSGQUEUE)) {
280                         spin_unlock(&mq_lock);
281                         /* mqueue_evict_inode() releases info->messages */
282                         ret = -EMFILE;
283                         goto out_inode;
284                 }
285                 u->mq_bytes += mq_bytes;
286                 spin_unlock(&mq_lock);
287
288                 /* all is ok */
289                 info->user = get_uid(u);
290         } else if (S_ISDIR(mode)) {
291                 inc_nlink(inode);
292                 /* Some things misbehave if size == 0 on a directory */
293                 inode->i_size = 2 * DIRENT_SIZE;
294                 inode->i_op = &mqueue_dir_inode_operations;
295                 inode->i_fop = &simple_dir_operations;
296         }
297
298         return inode;
299 out_inode:
300         iput(inode);
301 err:
302         return ERR_PTR(ret);
303 }
304
305 static int mqueue_fill_super(struct super_block *sb, void *data, int silent)
306 {
307         struct inode *inode;
308         struct ipc_namespace *ns = data;
309
310         sb->s_blocksize = PAGE_CACHE_SIZE;
311         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
312         sb->s_magic = MQUEUE_MAGIC;
313         sb->s_op = &mqueue_super_ops;
314
315         inode = mqueue_get_inode(sb, ns, S_IFDIR | S_ISVTX | S_IRWXUGO, NULL);
316         if (IS_ERR(inode))
317                 return PTR_ERR(inode);
318
319         sb->s_root = d_make_root(inode);
320         if (!sb->s_root)
321                 return -ENOMEM;
322         return 0;
323 }
324
325 static struct dentry *mqueue_mount(struct file_system_type *fs_type,
326                          int flags, const char *dev_name,
327                          void *data)
328 {
329         if (!(flags & MS_KERNMOUNT)) {
330                 struct ipc_namespace *ns = current->nsproxy->ipc_ns;
331                 /* Don't allow mounting unless the caller has CAP_SYS_ADMIN
332                  * over the ipc namespace.
333                  */
334                 if (!ns_capable(ns->user_ns, CAP_SYS_ADMIN))
335                         return ERR_PTR(-EPERM);
336
337                 data = ns;
338         }
339         return mount_ns(fs_type, flags, data, mqueue_fill_super);
340 }
341
342 static void init_once(void *foo)
343 {
344         struct mqueue_inode_info *p = (struct mqueue_inode_info *) foo;
345
346         inode_init_once(&p->vfs_inode);
347 }
348
349 static struct inode *mqueue_alloc_inode(struct super_block *sb)
350 {
351         struct mqueue_inode_info *ei;
352
353         ei = kmem_cache_alloc(mqueue_inode_cachep, GFP_KERNEL);
354         if (!ei)
355                 return NULL;
356         return &ei->vfs_inode;
357 }
358
359 static void mqueue_i_callback(struct rcu_head *head)
360 {
361         struct inode *inode = container_of(head, struct inode, i_rcu);
362         kmem_cache_free(mqueue_inode_cachep, MQUEUE_I(inode));
363 }
364
365 static void mqueue_destroy_inode(struct inode *inode)
366 {
367         call_rcu(&inode->i_rcu, mqueue_i_callback);
368 }
369
370 static void mqueue_evict_inode(struct inode *inode)
371 {
372         struct mqueue_inode_info *info;
373         struct user_struct *user;
374         unsigned long mq_bytes, mq_treesize;
375         struct ipc_namespace *ipc_ns;
376         struct msg_msg *msg, *nmsg;
377         LIST_HEAD(tmp_msg);
378
379         clear_inode(inode);
380
381         if (S_ISDIR(inode->i_mode))
382                 return;
383
384         ipc_ns = get_ns_from_inode(inode);
385         info = MQUEUE_I(inode);
386         spin_lock(&info->lock);
387         while ((msg = msg_get(info)) != NULL)
388                 list_add_tail(&msg->m_list, &tmp_msg);
389         kfree(info->node_cache);
390         spin_unlock(&info->lock);
391
392         list_for_each_entry_safe(msg, nmsg, &tmp_msg, m_list) {
393                 list_del(&msg->m_list);
394                 free_msg(msg);
395         }
396
397         /* Total amount of bytes accounted for the mqueue */
398         mq_treesize = info->attr.mq_maxmsg * sizeof(struct msg_msg) +
399                 min_t(unsigned int, info->attr.mq_maxmsg, MQ_PRIO_MAX) *
400                 sizeof(struct posix_msg_tree_node);
401
402         mq_bytes = mq_treesize + (info->attr.mq_maxmsg *
403                                   info->attr.mq_msgsize);
404
405         user = info->user;
406         if (user) {
407                 spin_lock(&mq_lock);
408                 user->mq_bytes -= mq_bytes;
409                 /*
410                  * get_ns_from_inode() ensures that the
411                  * (ipc_ns = sb->s_fs_info) is either a valid ipc_ns
412                  * to which we now hold a reference, or it is NULL.
413                  * We can't put it here under mq_lock, though.
414                  */
415                 if (ipc_ns)
416                         ipc_ns->mq_queues_count--;
417                 spin_unlock(&mq_lock);
418                 free_uid(user);
419         }
420         if (ipc_ns)
421                 put_ipc_ns(ipc_ns);
422 }
423
424 static int mqueue_create(struct inode *dir, struct dentry *dentry,
425                                 umode_t mode, bool excl)
426 {
427         struct inode *inode;
428         struct mq_attr *attr = dentry->d_fsdata;
429         int error;
430         struct ipc_namespace *ipc_ns;
431
432         spin_lock(&mq_lock);
433         ipc_ns = __get_ns_from_inode(dir);
434         if (!ipc_ns) {
435                 error = -EACCES;
436                 goto out_unlock;
437         }
438
439         if (ipc_ns->mq_queues_count >= ipc_ns->mq_queues_max &&
440             !capable(CAP_SYS_RESOURCE)) {
441                 error = -ENOSPC;
442                 goto out_unlock;
443         }
444         ipc_ns->mq_queues_count++;
445         spin_unlock(&mq_lock);
446
447         inode = mqueue_get_inode(dir->i_sb, ipc_ns, mode, attr);
448         if (IS_ERR(inode)) {
449                 error = PTR_ERR(inode);
450                 spin_lock(&mq_lock);
451                 ipc_ns->mq_queues_count--;
452                 goto out_unlock;
453         }
454
455         put_ipc_ns(ipc_ns);
456         dir->i_size += DIRENT_SIZE;
457         dir->i_ctime = dir->i_mtime = dir->i_atime = CURRENT_TIME;
458
459         d_instantiate(dentry, inode);
460         dget(dentry);
461         return 0;
462 out_unlock:
463         spin_unlock(&mq_lock);
464         if (ipc_ns)
465                 put_ipc_ns(ipc_ns);
466         return error;
467 }
468
469 static int mqueue_unlink(struct inode *dir, struct dentry *dentry)
470 {
471         struct inode *inode = d_inode(dentry);
472
473         dir->i_ctime = dir->i_mtime = dir->i_atime = CURRENT_TIME;
474         dir->i_size -= DIRENT_SIZE;
475         drop_nlink(inode);
476         dput(dentry);
477         return 0;
478 }
479
480 /*
481 *       This is routine for system read from queue file.
482 *       To avoid mess with doing here some sort of mq_receive we allow
483 *       to read only queue size & notification info (the only values
484 *       that are interesting from user point of view and aren't accessible
485 *       through std routines)
486 */
487 static ssize_t mqueue_read_file(struct file *filp, char __user *u_data,
488                                 size_t count, loff_t *off)
489 {
490         struct mqueue_inode_info *info = MQUEUE_I(file_inode(filp));
491         char buffer[FILENT_SIZE];
492         ssize_t ret;
493
494         spin_lock(&info->lock);
495         snprintf(buffer, sizeof(buffer),
496                         "QSIZE:%-10lu NOTIFY:%-5d SIGNO:%-5d NOTIFY_PID:%-6d\n",
497                         info->qsize,
498                         info->notify_owner ? info->notify.sigev_notify : 0,
499                         (info->notify_owner &&
500                          info->notify.sigev_notify == SIGEV_SIGNAL) ?
501                                 info->notify.sigev_signo : 0,
502                         pid_vnr(info->notify_owner));
503         spin_unlock(&info->lock);
504         buffer[sizeof(buffer)-1] = '\0';
505
506         ret = simple_read_from_buffer(u_data, count, off, buffer,
507                                 strlen(buffer));
508         if (ret <= 0)
509                 return ret;
510
511         file_inode(filp)->i_atime = file_inode(filp)->i_ctime = CURRENT_TIME;
512         return ret;
513 }
514
515 static int mqueue_flush_file(struct file *filp, fl_owner_t id)
516 {
517         struct mqueue_inode_info *info = MQUEUE_I(file_inode(filp));
518
519         spin_lock(&info->lock);
520         if (task_tgid(current) == info->notify_owner)
521                 remove_notification(info);
522
523         spin_unlock(&info->lock);
524         return 0;
525 }
526
527 static unsigned int mqueue_poll_file(struct file *filp, struct poll_table_struct *poll_tab)
528 {
529         struct mqueue_inode_info *info = MQUEUE_I(file_inode(filp));
530         int retval = 0;
531
532         poll_wait(filp, &info->wait_q, poll_tab);
533
534         spin_lock(&info->lock);
535         if (info->attr.mq_curmsgs)
536                 retval = POLLIN | POLLRDNORM;
537
538         if (info->attr.mq_curmsgs < info->attr.mq_maxmsg)
539                 retval |= POLLOUT | POLLWRNORM;
540         spin_unlock(&info->lock);
541
542         return retval;
543 }
544
545 /* Adds current to info->e_wait_q[sr] before element with smaller prio */
546 static void wq_add(struct mqueue_inode_info *info, int sr,
547                         struct ext_wait_queue *ewp)
548 {
549         struct ext_wait_queue *walk;
550
551         ewp->task = current;
552
553         list_for_each_entry(walk, &info->e_wait_q[sr].list, list) {
554                 if (walk->task->static_prio <= current->static_prio) {
555                         list_add_tail(&ewp->list, &walk->list);
556                         return;
557                 }
558         }
559         list_add_tail(&ewp->list, &info->e_wait_q[sr].list);
560 }
561
562 /*
563  * Puts current task to sleep. Caller must hold queue lock. After return
564  * lock isn't held.
565  * sr: SEND or RECV
566  */
567 static int wq_sleep(struct mqueue_inode_info *info, int sr,
568                     ktime_t *timeout, struct ext_wait_queue *ewp)
569 {
570         int retval;
571         signed long time;
572
573         wq_add(info, sr, ewp);
574
575         for (;;) {
576                 __set_current_state(TASK_INTERRUPTIBLE);
577
578                 spin_unlock(&info->lock);
579                 time = schedule_hrtimeout_range_clock(timeout, 0,
580                         HRTIMER_MODE_ABS, CLOCK_REALTIME);
581
582                 if (ewp->state == STATE_READY) {
583                         retval = 0;
584                         goto out;
585                 }
586                 spin_lock(&info->lock);
587                 if (ewp->state == STATE_READY) {
588                         retval = 0;
589                         goto out_unlock;
590                 }
591                 if (signal_pending(current)) {
592                         retval = -ERESTARTSYS;
593                         break;
594                 }
595                 if (time == 0) {
596                         retval = -ETIMEDOUT;
597                         break;
598                 }
599         }
600         list_del(&ewp->list);
601 out_unlock:
602         spin_unlock(&info->lock);
603 out:
604         return retval;
605 }
606
607 /*
608  * Returns waiting task that should be serviced first or NULL if none exists
609  */
610 static struct ext_wait_queue *wq_get_first_waiter(
611                 struct mqueue_inode_info *info, int sr)
612 {
613         struct list_head *ptr;
614
615         ptr = info->e_wait_q[sr].list.prev;
616         if (ptr == &info->e_wait_q[sr].list)
617                 return NULL;
618         return list_entry(ptr, struct ext_wait_queue, list);
619 }
620
621
622 static inline void set_cookie(struct sk_buff *skb, char code)
623 {
624         ((char *)skb->data)[NOTIFY_COOKIE_LEN-1] = code;
625 }
626
627 /*
628  * The next function is only to split too long sys_mq_timedsend
629  */
630 static void __do_notify(struct mqueue_inode_info *info)
631 {
632         /* notification
633          * invoked when there is registered process and there isn't process
634          * waiting synchronously for message AND state of queue changed from
635          * empty to not empty. Here we are sure that no one is waiting
636          * synchronously. */
637         if (info->notify_owner &&
638             info->attr.mq_curmsgs == 1) {
639                 struct siginfo sig_i;
640                 switch (info->notify.sigev_notify) {
641                 case SIGEV_NONE:
642                         break;
643                 case SIGEV_SIGNAL:
644                         /* sends signal */
645
646                         sig_i.si_signo = info->notify.sigev_signo;
647                         sig_i.si_errno = 0;
648                         sig_i.si_code = SI_MESGQ;
649                         sig_i.si_value = info->notify.sigev_value;
650                         /* map current pid/uid into info->owner's namespaces */
651                         rcu_read_lock();
652                         sig_i.si_pid = task_tgid_nr_ns(current,
653                                                 ns_of_pid(info->notify_owner));
654                         sig_i.si_uid = from_kuid_munged(info->notify_user_ns, current_uid());
655                         rcu_read_unlock();
656
657                         kill_pid_info(info->notify.sigev_signo,
658                                       &sig_i, info->notify_owner);
659                         break;
660                 case SIGEV_THREAD:
661                         set_cookie(info->notify_cookie, NOTIFY_WOKENUP);
662                         netlink_sendskb(info->notify_sock, info->notify_cookie);
663                         break;
664                 }
665                 /* after notification unregisters process */
666                 put_pid(info->notify_owner);
667                 put_user_ns(info->notify_user_ns);
668                 info->notify_owner = NULL;
669                 info->notify_user_ns = NULL;
670         }
671         wake_up(&info->wait_q);
672 }
673
674 static int prepare_timeout(const struct timespec __user *u_abs_timeout,
675                            ktime_t *expires, struct timespec *ts)
676 {
677         if (copy_from_user(ts, u_abs_timeout, sizeof(struct timespec)))
678                 return -EFAULT;
679         if (!timespec_valid(ts))
680                 return -EINVAL;
681
682         *expires = timespec_to_ktime(*ts);
683         return 0;
684 }
685
686 static void remove_notification(struct mqueue_inode_info *info)
687 {
688         if (info->notify_owner != NULL &&
689             info->notify.sigev_notify == SIGEV_THREAD) {
690                 set_cookie(info->notify_cookie, NOTIFY_REMOVED);
691                 netlink_sendskb(info->notify_sock, info->notify_cookie);
692         }
693         put_pid(info->notify_owner);
694         put_user_ns(info->notify_user_ns);
695         info->notify_owner = NULL;
696         info->notify_user_ns = NULL;
697 }
698
699 static int mq_attr_ok(struct ipc_namespace *ipc_ns, struct mq_attr *attr)
700 {
701         int mq_treesize;
702         unsigned long total_size;
703
704         if (attr->mq_maxmsg <= 0 || attr->mq_msgsize <= 0)
705                 return -EINVAL;
706         if (capable(CAP_SYS_RESOURCE)) {
707                 if (attr->mq_maxmsg > HARD_MSGMAX ||
708                     attr->mq_msgsize > HARD_MSGSIZEMAX)
709                         return -EINVAL;
710         } else {
711                 if (attr->mq_maxmsg > ipc_ns->mq_msg_max ||
712                                 attr->mq_msgsize > ipc_ns->mq_msgsize_max)
713                         return -EINVAL;
714         }
715         /* check for overflow */
716         if (attr->mq_msgsize > ULONG_MAX/attr->mq_maxmsg)
717                 return -EOVERFLOW;
718         mq_treesize = attr->mq_maxmsg * sizeof(struct msg_msg) +
719                 min_t(unsigned int, attr->mq_maxmsg, MQ_PRIO_MAX) *
720                 sizeof(struct posix_msg_tree_node);
721         total_size = attr->mq_maxmsg * attr->mq_msgsize;
722         if (total_size + mq_treesize < total_size)
723                 return -EOVERFLOW;
724         return 0;
725 }
726
727 /*
728  * Invoked when creating a new queue via sys_mq_open
729  */
730 static struct file *do_create(struct ipc_namespace *ipc_ns, struct inode *dir,
731                         struct path *path, int oflag, umode_t mode,
732                         struct mq_attr *attr)
733 {
734         const struct cred *cred = current_cred();
735         int ret;
736
737         if (attr) {
738                 ret = mq_attr_ok(ipc_ns, attr);
739                 if (ret)
740                         return ERR_PTR(ret);
741                 /* store for use during create */
742                 path->dentry->d_fsdata = attr;
743         } else {
744                 struct mq_attr def_attr;
745
746                 def_attr.mq_maxmsg = min(ipc_ns->mq_msg_max,
747                                          ipc_ns->mq_msg_default);
748                 def_attr.mq_msgsize = min(ipc_ns->mq_msgsize_max,
749                                           ipc_ns->mq_msgsize_default);
750                 ret = mq_attr_ok(ipc_ns, &def_attr);
751                 if (ret)
752                         return ERR_PTR(ret);
753         }
754
755         mode &= ~current_umask();
756         ret = vfs_create2(path->mnt, dir, path->dentry, mode, true);
757         path->dentry->d_fsdata = NULL;
758         if (ret)
759                 return ERR_PTR(ret);
760         return dentry_open(path, oflag, cred);
761 }
762
763 /* Opens existing queue */
764 static struct file *do_open(struct path *path, int oflag)
765 {
766         static const int oflag2acc[O_ACCMODE] = { MAY_READ, MAY_WRITE,
767                                                   MAY_READ | MAY_WRITE };
768         int acc;
769         if ((oflag & O_ACCMODE) == (O_RDWR | O_WRONLY))
770                 return ERR_PTR(-EINVAL);
771         acc = oflag2acc[oflag & O_ACCMODE];
772         if (inode_permission2(path->mnt, d_inode(path->dentry), acc))
773                 return ERR_PTR(-EACCES);
774         return dentry_open(path, oflag, current_cred());
775 }
776
777 SYSCALL_DEFINE4(mq_open, const char __user *, u_name, int, oflag, umode_t, mode,
778                 struct mq_attr __user *, u_attr)
779 {
780         struct path path;
781         struct file *filp;
782         struct filename *name;
783         struct mq_attr attr;
784         int fd, error;
785         struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
786         struct vfsmount *mnt = ipc_ns->mq_mnt;
787         struct dentry *root = mnt->mnt_root;
788         int ro;
789
790         if (u_attr && copy_from_user(&attr, u_attr, sizeof(struct mq_attr)))
791                 return -EFAULT;
792
793         audit_mq_open(oflag, mode, u_attr ? &attr : NULL);
794
795         if (IS_ERR(name = getname(u_name)))
796                 return PTR_ERR(name);
797
798         fd = get_unused_fd_flags(O_CLOEXEC);
799         if (fd < 0)
800                 goto out_putname;
801
802         ro = mnt_want_write(mnt);       /* we'll drop it in any case */
803         error = 0;
804         mutex_lock(&d_inode(root)->i_mutex);
805         path.dentry = lookup_one_len2(name->name, mnt, root, strlen(name->name));
806         if (IS_ERR(path.dentry)) {
807                 error = PTR_ERR(path.dentry);
808                 goto out_putfd;
809         }
810         path.mnt = mntget(mnt);
811
812         if (oflag & O_CREAT) {
813                 if (d_really_is_positive(path.dentry)) {        /* entry already exists */
814                         audit_inode(name, path.dentry, 0);
815                         if (oflag & O_EXCL) {
816                                 error = -EEXIST;
817                                 goto out;
818                         }
819                         filp = do_open(&path, oflag);
820                 } else {
821                         if (ro) {
822                                 error = ro;
823                                 goto out;
824                         }
825                         audit_inode_parent_hidden(name, root);
826                         filp = do_create(ipc_ns, d_inode(root),
827                                                 &path, oflag, mode,
828                                                 u_attr ? &attr : NULL);
829                 }
830         } else {
831                 if (d_really_is_negative(path.dentry)) {
832                         error = -ENOENT;
833                         goto out;
834                 }
835                 audit_inode(name, path.dentry, 0);
836                 filp = do_open(&path, oflag);
837         }
838
839         if (!IS_ERR(filp))
840                 fd_install(fd, filp);
841         else
842                 error = PTR_ERR(filp);
843 out:
844         path_put(&path);
845 out_putfd:
846         if (error) {
847                 put_unused_fd(fd);
848                 fd = error;
849         }
850         mutex_unlock(&d_inode(root)->i_mutex);
851         if (!ro)
852                 mnt_drop_write(mnt);
853 out_putname:
854         putname(name);
855         return fd;
856 }
857
858 SYSCALL_DEFINE1(mq_unlink, const char __user *, u_name)
859 {
860         int err;
861         struct filename *name;
862         struct dentry *dentry;
863         struct inode *inode = NULL;
864         struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
865         struct vfsmount *mnt = ipc_ns->mq_mnt;
866
867         name = getname(u_name);
868         if (IS_ERR(name))
869                 return PTR_ERR(name);
870
871         audit_inode_parent_hidden(name, mnt->mnt_root);
872         err = mnt_want_write(mnt);
873         if (err)
874                 goto out_name;
875         mutex_lock_nested(&d_inode(mnt->mnt_root)->i_mutex, I_MUTEX_PARENT);
876         dentry = lookup_one_len2(name->name, mnt, mnt->mnt_root,
877                                 strlen(name->name));
878         if (IS_ERR(dentry)) {
879                 err = PTR_ERR(dentry);
880                 goto out_unlock;
881         }
882
883         inode = d_inode(dentry);
884         if (!inode) {
885                 err = -ENOENT;
886         } else {
887                 ihold(inode);
888                 err = vfs_unlink2(mnt, d_inode(dentry->d_parent), dentry, NULL);
889         }
890         dput(dentry);
891
892 out_unlock:
893         mutex_unlock(&d_inode(mnt->mnt_root)->i_mutex);
894         if (inode)
895                 iput(inode);
896         mnt_drop_write(mnt);
897 out_name:
898         putname(name);
899
900         return err;
901 }
902
903 /* Pipelined send and receive functions.
904  *
905  * If a receiver finds no waiting message, then it registers itself in the
906  * list of waiting receivers. A sender checks that list before adding the new
907  * message into the message array. If there is a waiting receiver, then it
908  * bypasses the message array and directly hands the message over to the
909  * receiver. The receiver accepts the message and returns without grabbing the
910  * queue spinlock:
911  *
912  * - Set pointer to message.
913  * - Queue the receiver task for later wakeup (without the info->lock).
914  * - Update its state to STATE_READY. Now the receiver can continue.
915  * - Wake up the process after the lock is dropped. Should the process wake up
916  *   before this wakeup (due to a timeout or a signal) it will either see
917  *   STATE_READY and continue or acquire the lock to check the state again.
918  *
919  * The same algorithm is used for senders.
920  */
921
922 /* pipelined_send() - send a message directly to the task waiting in
923  * sys_mq_timedreceive() (without inserting message into a queue).
924  */
925 static inline void pipelined_send(struct wake_q_head *wake_q,
926                                   struct mqueue_inode_info *info,
927                                   struct msg_msg *message,
928                                   struct ext_wait_queue *receiver)
929 {
930         receiver->msg = message;
931         list_del(&receiver->list);
932         wake_q_add(wake_q, receiver->task);
933         /*
934          * Rely on the implicit cmpxchg barrier from wake_q_add such
935          * that we can ensure that updating receiver->state is the last
936          * write operation: As once set, the receiver can continue,
937          * and if we don't have the reference count from the wake_q,
938          * yet, at that point we can later have a use-after-free
939          * condition and bogus wakeup.
940          */
941         receiver->state = STATE_READY;
942 }
943
944 /* pipelined_receive() - if there is task waiting in sys_mq_timedsend()
945  * gets its message and put to the queue (we have one free place for sure). */
946 static inline void pipelined_receive(struct wake_q_head *wake_q,
947                                      struct mqueue_inode_info *info)
948 {
949         struct ext_wait_queue *sender = wq_get_first_waiter(info, SEND);
950
951         if (!sender) {
952                 /* for poll */
953                 wake_up_interruptible(&info->wait_q);
954                 return;
955         }
956         if (msg_insert(sender->msg, info))
957                 return;
958
959         list_del(&sender->list);
960         wake_q_add(wake_q, sender->task);
961         sender->state = STATE_READY;
962 }
963
964 SYSCALL_DEFINE5(mq_timedsend, mqd_t, mqdes, const char __user *, u_msg_ptr,
965                 size_t, msg_len, unsigned int, msg_prio,
966                 const struct timespec __user *, u_abs_timeout)
967 {
968         struct fd f;
969         struct inode *inode;
970         struct ext_wait_queue wait;
971         struct ext_wait_queue *receiver;
972         struct msg_msg *msg_ptr;
973         struct mqueue_inode_info *info;
974         ktime_t expires, *timeout = NULL;
975         struct timespec ts;
976         struct posix_msg_tree_node *new_leaf = NULL;
977         int ret = 0;
978         WAKE_Q(wake_q);
979
980         if (u_abs_timeout) {
981                 int res = prepare_timeout(u_abs_timeout, &expires, &ts);
982                 if (res)
983                         return res;
984                 timeout = &expires;
985         }
986
987         if (unlikely(msg_prio >= (unsigned long) MQ_PRIO_MAX))
988                 return -EINVAL;
989
990         audit_mq_sendrecv(mqdes, msg_len, msg_prio, timeout ? &ts : NULL);
991
992         f = fdget(mqdes);
993         if (unlikely(!f.file)) {
994                 ret = -EBADF;
995                 goto out;
996         }
997
998         inode = file_inode(f.file);
999         if (unlikely(f.file->f_op != &mqueue_file_operations)) {
1000                 ret = -EBADF;
1001                 goto out_fput;
1002         }
1003         info = MQUEUE_I(inode);
1004         audit_file(f.file);
1005
1006         if (unlikely(!(f.file->f_mode & FMODE_WRITE))) {
1007                 ret = -EBADF;
1008                 goto out_fput;
1009         }
1010
1011         if (unlikely(msg_len > info->attr.mq_msgsize)) {
1012                 ret = -EMSGSIZE;
1013                 goto out_fput;
1014         }
1015
1016         /* First try to allocate memory, before doing anything with
1017          * existing queues. */
1018         msg_ptr = load_msg(u_msg_ptr, msg_len);
1019         if (IS_ERR(msg_ptr)) {
1020                 ret = PTR_ERR(msg_ptr);
1021                 goto out_fput;
1022         }
1023         msg_ptr->m_ts = msg_len;
1024         msg_ptr->m_type = msg_prio;
1025
1026         /*
1027          * msg_insert really wants us to have a valid, spare node struct so
1028          * it doesn't have to kmalloc a GFP_ATOMIC allocation, but it will
1029          * fall back to that if necessary.
1030          */
1031         if (!info->node_cache)
1032                 new_leaf = kmalloc(sizeof(*new_leaf), GFP_KERNEL);
1033
1034         spin_lock(&info->lock);
1035
1036         if (!info->node_cache && new_leaf) {
1037                 /* Save our speculative allocation into the cache */
1038                 INIT_LIST_HEAD(&new_leaf->msg_list);
1039                 info->node_cache = new_leaf;
1040                 new_leaf = NULL;
1041         } else {
1042                 kfree(new_leaf);
1043         }
1044
1045         if (info->attr.mq_curmsgs == info->attr.mq_maxmsg) {
1046                 if (f.file->f_flags & O_NONBLOCK) {
1047                         ret = -EAGAIN;
1048                 } else {
1049                         wait.task = current;
1050                         wait.msg = (void *) msg_ptr;
1051                         wait.state = STATE_NONE;
1052                         ret = wq_sleep(info, SEND, timeout, &wait);
1053                         /*
1054                          * wq_sleep must be called with info->lock held, and
1055                          * returns with the lock released
1056                          */
1057                         goto out_free;
1058                 }
1059         } else {
1060                 receiver = wq_get_first_waiter(info, RECV);
1061                 if (receiver) {
1062                         pipelined_send(&wake_q, info, msg_ptr, receiver);
1063                 } else {
1064                         /* adds message to the queue */
1065                         ret = msg_insert(msg_ptr, info);
1066                         if (ret)
1067                                 goto out_unlock;
1068                         __do_notify(info);
1069                 }
1070                 inode->i_atime = inode->i_mtime = inode->i_ctime =
1071                                 CURRENT_TIME;
1072         }
1073 out_unlock:
1074         spin_unlock(&info->lock);
1075         wake_up_q(&wake_q);
1076 out_free:
1077         if (ret)
1078                 free_msg(msg_ptr);
1079 out_fput:
1080         fdput(f);
1081 out:
1082         return ret;
1083 }
1084
1085 SYSCALL_DEFINE5(mq_timedreceive, mqd_t, mqdes, char __user *, u_msg_ptr,
1086                 size_t, msg_len, unsigned int __user *, u_msg_prio,
1087                 const struct timespec __user *, u_abs_timeout)
1088 {
1089         ssize_t ret;
1090         struct msg_msg *msg_ptr;
1091         struct fd f;
1092         struct inode *inode;
1093         struct mqueue_inode_info *info;
1094         struct ext_wait_queue wait;
1095         ktime_t expires, *timeout = NULL;
1096         struct timespec ts;
1097         struct posix_msg_tree_node *new_leaf = NULL;
1098
1099         if (u_abs_timeout) {
1100                 int res = prepare_timeout(u_abs_timeout, &expires, &ts);
1101                 if (res)
1102                         return res;
1103                 timeout = &expires;
1104         }
1105
1106         audit_mq_sendrecv(mqdes, msg_len, 0, timeout ? &ts : NULL);
1107
1108         f = fdget(mqdes);
1109         if (unlikely(!f.file)) {
1110                 ret = -EBADF;
1111                 goto out;
1112         }
1113
1114         inode = file_inode(f.file);
1115         if (unlikely(f.file->f_op != &mqueue_file_operations)) {
1116                 ret = -EBADF;
1117                 goto out_fput;
1118         }
1119         info = MQUEUE_I(inode);
1120         audit_file(f.file);
1121
1122         if (unlikely(!(f.file->f_mode & FMODE_READ))) {
1123                 ret = -EBADF;
1124                 goto out_fput;
1125         }
1126
1127         /* checks if buffer is big enough */
1128         if (unlikely(msg_len < info->attr.mq_msgsize)) {
1129                 ret = -EMSGSIZE;
1130                 goto out_fput;
1131         }
1132
1133         /*
1134          * msg_insert really wants us to have a valid, spare node struct so
1135          * it doesn't have to kmalloc a GFP_ATOMIC allocation, but it will
1136          * fall back to that if necessary.
1137          */
1138         if (!info->node_cache)
1139                 new_leaf = kmalloc(sizeof(*new_leaf), GFP_KERNEL);
1140
1141         spin_lock(&info->lock);
1142
1143         if (!info->node_cache && new_leaf) {
1144                 /* Save our speculative allocation into the cache */
1145                 INIT_LIST_HEAD(&new_leaf->msg_list);
1146                 info->node_cache = new_leaf;
1147         } else {
1148                 kfree(new_leaf);
1149         }
1150
1151         if (info->attr.mq_curmsgs == 0) {
1152                 if (f.file->f_flags & O_NONBLOCK) {
1153                         spin_unlock(&info->lock);
1154                         ret = -EAGAIN;
1155                 } else {
1156                         wait.task = current;
1157                         wait.state = STATE_NONE;
1158                         ret = wq_sleep(info, RECV, timeout, &wait);
1159                         msg_ptr = wait.msg;
1160                 }
1161         } else {
1162                 WAKE_Q(wake_q);
1163
1164                 msg_ptr = msg_get(info);
1165
1166                 inode->i_atime = inode->i_mtime = inode->i_ctime =
1167                                 CURRENT_TIME;
1168
1169                 /* There is now free space in queue. */
1170                 pipelined_receive(&wake_q, info);
1171                 spin_unlock(&info->lock);
1172                 wake_up_q(&wake_q);
1173                 ret = 0;
1174         }
1175         if (ret == 0) {
1176                 ret = msg_ptr->m_ts;
1177
1178                 if ((u_msg_prio && put_user(msg_ptr->m_type, u_msg_prio)) ||
1179                         store_msg(u_msg_ptr, msg_ptr, msg_ptr->m_ts)) {
1180                         ret = -EFAULT;
1181                 }
1182                 free_msg(msg_ptr);
1183         }
1184 out_fput:
1185         fdput(f);
1186 out:
1187         return ret;
1188 }
1189
1190 /*
1191  * Notes: the case when user wants us to deregister (with NULL as pointer)
1192  * and he isn't currently owner of notification, will be silently discarded.
1193  * It isn't explicitly defined in the POSIX.
1194  */
1195 SYSCALL_DEFINE2(mq_notify, mqd_t, mqdes,
1196                 const struct sigevent __user *, u_notification)
1197 {
1198         int ret;
1199         struct fd f;
1200         struct sock *sock;
1201         struct inode *inode;
1202         struct sigevent notification;
1203         struct mqueue_inode_info *info;
1204         struct sk_buff *nc;
1205
1206         if (u_notification) {
1207                 if (copy_from_user(&notification, u_notification,
1208                                         sizeof(struct sigevent)))
1209                         return -EFAULT;
1210         }
1211
1212         audit_mq_notify(mqdes, u_notification ? &notification : NULL);
1213
1214         nc = NULL;
1215         sock = NULL;
1216         if (u_notification != NULL) {
1217                 if (unlikely(notification.sigev_notify != SIGEV_NONE &&
1218                              notification.sigev_notify != SIGEV_SIGNAL &&
1219                              notification.sigev_notify != SIGEV_THREAD))
1220                         return -EINVAL;
1221                 if (notification.sigev_notify == SIGEV_SIGNAL &&
1222                         !valid_signal(notification.sigev_signo)) {
1223                         return -EINVAL;
1224                 }
1225                 if (notification.sigev_notify == SIGEV_THREAD) {
1226                         long timeo;
1227
1228                         /* create the notify skb */
1229                         nc = alloc_skb(NOTIFY_COOKIE_LEN, GFP_KERNEL);
1230                         if (!nc) {
1231                                 ret = -ENOMEM;
1232                                 goto out;
1233                         }
1234                         if (copy_from_user(nc->data,
1235                                         notification.sigev_value.sival_ptr,
1236                                         NOTIFY_COOKIE_LEN)) {
1237                                 ret = -EFAULT;
1238                                 goto out;
1239                         }
1240
1241                         /* TODO: add a header? */
1242                         skb_put(nc, NOTIFY_COOKIE_LEN);
1243                         /* and attach it to the socket */
1244 retry:
1245                         f = fdget(notification.sigev_signo);
1246                         if (!f.file) {
1247                                 ret = -EBADF;
1248                                 goto out;
1249                         }
1250                         sock = netlink_getsockbyfilp(f.file);
1251                         fdput(f);
1252                         if (IS_ERR(sock)) {
1253                                 ret = PTR_ERR(sock);
1254                                 sock = NULL;
1255                                 goto out;
1256                         }
1257
1258                         timeo = MAX_SCHEDULE_TIMEOUT;
1259                         ret = netlink_attachskb(sock, nc, &timeo, NULL);
1260                         if (ret == 1) {
1261                                 sock = NULL;
1262                                 goto retry;
1263                         }
1264                         if (ret) {
1265                                 sock = NULL;
1266                                 nc = NULL;
1267                                 goto out;
1268                         }
1269                 }
1270         }
1271
1272         f = fdget(mqdes);
1273         if (!f.file) {
1274                 ret = -EBADF;
1275                 goto out;
1276         }
1277
1278         inode = file_inode(f.file);
1279         if (unlikely(f.file->f_op != &mqueue_file_operations)) {
1280                 ret = -EBADF;
1281                 goto out_fput;
1282         }
1283         info = MQUEUE_I(inode);
1284
1285         ret = 0;
1286         spin_lock(&info->lock);
1287         if (u_notification == NULL) {
1288                 if (info->notify_owner == task_tgid(current)) {
1289                         remove_notification(info);
1290                         inode->i_atime = inode->i_ctime = CURRENT_TIME;
1291                 }
1292         } else if (info->notify_owner != NULL) {
1293                 ret = -EBUSY;
1294         } else {
1295                 switch (notification.sigev_notify) {
1296                 case SIGEV_NONE:
1297                         info->notify.sigev_notify = SIGEV_NONE;
1298                         break;
1299                 case SIGEV_THREAD:
1300                         info->notify_sock = sock;
1301                         info->notify_cookie = nc;
1302                         sock = NULL;
1303                         nc = NULL;
1304                         info->notify.sigev_notify = SIGEV_THREAD;
1305                         break;
1306                 case SIGEV_SIGNAL:
1307                         info->notify.sigev_signo = notification.sigev_signo;
1308                         info->notify.sigev_value = notification.sigev_value;
1309                         info->notify.sigev_notify = SIGEV_SIGNAL;
1310                         break;
1311                 }
1312
1313                 info->notify_owner = get_pid(task_tgid(current));
1314                 info->notify_user_ns = get_user_ns(current_user_ns());
1315                 inode->i_atime = inode->i_ctime = CURRENT_TIME;
1316         }
1317         spin_unlock(&info->lock);
1318 out_fput:
1319         fdput(f);
1320 out:
1321         if (sock)
1322                 netlink_detachskb(sock, nc);
1323         else if (nc)
1324                 dev_kfree_skb(nc);
1325
1326         return ret;
1327 }
1328
1329 SYSCALL_DEFINE3(mq_getsetattr, mqd_t, mqdes,
1330                 const struct mq_attr __user *, u_mqstat,
1331                 struct mq_attr __user *, u_omqstat)
1332 {
1333         int ret;
1334         struct mq_attr mqstat, omqstat;
1335         struct fd f;
1336         struct inode *inode;
1337         struct mqueue_inode_info *info;
1338
1339         if (u_mqstat != NULL) {
1340                 if (copy_from_user(&mqstat, u_mqstat, sizeof(struct mq_attr)))
1341                         return -EFAULT;
1342                 if (mqstat.mq_flags & (~O_NONBLOCK))
1343                         return -EINVAL;
1344         }
1345
1346         f = fdget(mqdes);
1347         if (!f.file) {
1348                 ret = -EBADF;
1349                 goto out;
1350         }
1351
1352         inode = file_inode(f.file);
1353         if (unlikely(f.file->f_op != &mqueue_file_operations)) {
1354                 ret = -EBADF;
1355                 goto out_fput;
1356         }
1357         info = MQUEUE_I(inode);
1358
1359         spin_lock(&info->lock);
1360
1361         omqstat = info->attr;
1362         omqstat.mq_flags = f.file->f_flags & O_NONBLOCK;
1363         if (u_mqstat) {
1364                 audit_mq_getsetattr(mqdes, &mqstat);
1365                 spin_lock(&f.file->f_lock);
1366                 if (mqstat.mq_flags & O_NONBLOCK)
1367                         f.file->f_flags |= O_NONBLOCK;
1368                 else
1369                         f.file->f_flags &= ~O_NONBLOCK;
1370                 spin_unlock(&f.file->f_lock);
1371
1372                 inode->i_atime = inode->i_ctime = CURRENT_TIME;
1373         }
1374
1375         spin_unlock(&info->lock);
1376
1377         ret = 0;
1378         if (u_omqstat != NULL && copy_to_user(u_omqstat, &omqstat,
1379                                                 sizeof(struct mq_attr)))
1380                 ret = -EFAULT;
1381
1382 out_fput:
1383         fdput(f);
1384 out:
1385         return ret;
1386 }
1387
1388 static const struct inode_operations mqueue_dir_inode_operations = {
1389         .lookup = simple_lookup,
1390         .create = mqueue_create,
1391         .unlink = mqueue_unlink,
1392 };
1393
1394 static const struct file_operations mqueue_file_operations = {
1395         .flush = mqueue_flush_file,
1396         .poll = mqueue_poll_file,
1397         .read = mqueue_read_file,
1398         .llseek = default_llseek,
1399 };
1400
1401 static const struct super_operations mqueue_super_ops = {
1402         .alloc_inode = mqueue_alloc_inode,
1403         .destroy_inode = mqueue_destroy_inode,
1404         .evict_inode = mqueue_evict_inode,
1405         .statfs = simple_statfs,
1406 };
1407
1408 static struct file_system_type mqueue_fs_type = {
1409         .name = "mqueue",
1410         .mount = mqueue_mount,
1411         .kill_sb = kill_litter_super,
1412         .fs_flags = FS_USERNS_MOUNT,
1413 };
1414
1415 int mq_init_ns(struct ipc_namespace *ns)
1416 {
1417         ns->mq_queues_count  = 0;
1418         ns->mq_queues_max    = DFLT_QUEUESMAX;
1419         ns->mq_msg_max       = DFLT_MSGMAX;
1420         ns->mq_msgsize_max   = DFLT_MSGSIZEMAX;
1421         ns->mq_msg_default   = DFLT_MSG;
1422         ns->mq_msgsize_default  = DFLT_MSGSIZE;
1423
1424         ns->mq_mnt = kern_mount_data(&mqueue_fs_type, ns);
1425         if (IS_ERR(ns->mq_mnt)) {
1426                 int err = PTR_ERR(ns->mq_mnt);
1427                 ns->mq_mnt = NULL;
1428                 return err;
1429         }
1430         return 0;
1431 }
1432
1433 void mq_clear_sbinfo(struct ipc_namespace *ns)
1434 {
1435         ns->mq_mnt->mnt_sb->s_fs_info = NULL;
1436 }
1437
1438 void mq_put_mnt(struct ipc_namespace *ns)
1439 {
1440         kern_unmount(ns->mq_mnt);
1441 }
1442
1443 static int __init init_mqueue_fs(void)
1444 {
1445         int error;
1446
1447         mqueue_inode_cachep = kmem_cache_create("mqueue_inode_cache",
1448                                 sizeof(struct mqueue_inode_info), 0,
1449                                 SLAB_HWCACHE_ALIGN, init_once);
1450         if (mqueue_inode_cachep == NULL)
1451                 return -ENOMEM;
1452
1453         /* ignore failures - they are not fatal */
1454         mq_sysctl_table = mq_register_sysctl_table();
1455
1456         error = register_filesystem(&mqueue_fs_type);
1457         if (error)
1458                 goto out_sysctl;
1459
1460         spin_lock_init(&mq_lock);
1461
1462         error = mq_init_ns(&init_ipc_ns);
1463         if (error)
1464                 goto out_filesystem;
1465
1466         return 0;
1467
1468 out_filesystem:
1469         unregister_filesystem(&mqueue_fs_type);
1470 out_sysctl:
1471         if (mq_sysctl_table)
1472                 unregister_sysctl_table(mq_sysctl_table);
1473         kmem_cache_destroy(mqueue_inode_cachep);
1474         return error;
1475 }
1476
1477 device_initcall(init_mqueue_fs);