2 * POSIX message queues filesystem for Linux.
4 * Copyright (C) 2003,2004 Krzysztof Benedyczak (golbi@mat.uni.torun.pl)
5 * Michal Wronski (michal.wronski@gmail.com)
7 * Spinlocks: Mohamed Abbas (abbas.mohamed@intel.com)
8 * Lockless receive & send, fd based notify:
9 * Manfred Spraul (manfred@colorfullife.com)
11 * Audit: George Wilson (ltcgcw@us.ibm.com)
13 * This file is released under the GPL.
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/netlink.h>
28 #include <linux/syscalls.h>
29 #include <linux/audit.h>
30 #include <linux/signal.h>
31 #include <linux/mutex.h>
32 #include <linux/nsproxy.h>
33 #include <linux/pid.h>
34 #include <linux/ipc_namespace.h>
35 #include <linux/slab.h>
40 #define MQUEUE_MAGIC 0x19800202
41 #define DIRENT_SIZE 20
42 #define FILENT_SIZE 80
48 #define STATE_PENDING 1
51 struct ext_wait_queue
{ /* queue of sleeping tasks */
52 struct task_struct
*task
;
53 struct list_head list
;
54 struct msg_msg
*msg
; /* ptr of loaded message */
55 int state
; /* one of STATE_* values */
58 struct mqueue_inode_info
{
60 struct inode vfs_inode
;
61 wait_queue_head_t wait_q
;
63 struct msg_msg
**messages
;
66 struct sigevent notify
;
67 struct pid
* notify_owner
;
68 struct user_struct
*user
; /* user who created, for accounting */
69 struct sock
*notify_sock
;
70 struct sk_buff
*notify_cookie
;
72 /* for tasks waiting for free space and messages, respectively */
73 struct ext_wait_queue e_wait_q
[2];
75 unsigned long qsize
; /* size of queue in memory (sum of all msgs) */
78 static const struct inode_operations mqueue_dir_inode_operations
;
79 static const struct file_operations mqueue_file_operations
;
80 static const struct super_operations mqueue_super_ops
;
81 static void remove_notification(struct mqueue_inode_info
*info
);
83 static struct kmem_cache
*mqueue_inode_cachep
;
85 static struct ctl_table_header
* mq_sysctl_table
;
87 static inline struct mqueue_inode_info
*MQUEUE_I(struct inode
*inode
)
89 return container_of(inode
, struct mqueue_inode_info
, vfs_inode
);
93 * This routine should be called with the mq_lock held.
95 static inline struct ipc_namespace
*__get_ns_from_inode(struct inode
*inode
)
97 return get_ipc_ns(inode
->i_sb
->s_fs_info
);
100 static struct ipc_namespace
*get_ns_from_inode(struct inode
*inode
)
102 struct ipc_namespace
*ns
;
105 ns
= __get_ns_from_inode(inode
);
106 spin_unlock(&mq_lock
);
110 static struct inode
*mqueue_get_inode(struct super_block
*sb
,
111 struct ipc_namespace
*ipc_ns
, int mode
,
112 struct mq_attr
*attr
)
114 struct user_struct
*u
= current_user();
117 inode
= new_inode(sb
);
119 inode
->i_ino
= get_next_ino();
120 inode
->i_mode
= mode
;
121 inode
->i_uid
= current_fsuid();
122 inode
->i_gid
= current_fsgid();
123 inode
->i_mtime
= inode
->i_ctime
= inode
->i_atime
=
127 struct mqueue_inode_info
*info
;
128 struct task_struct
*p
= current
;
129 unsigned long mq_bytes
, mq_msg_tblsz
;
131 inode
->i_fop
= &mqueue_file_operations
;
132 inode
->i_size
= FILENT_SIZE
;
133 /* mqueue specific info */
134 info
= MQUEUE_I(inode
);
135 spin_lock_init(&info
->lock
);
136 init_waitqueue_head(&info
->wait_q
);
137 INIT_LIST_HEAD(&info
->e_wait_q
[0].list
);
138 INIT_LIST_HEAD(&info
->e_wait_q
[1].list
);
139 info
->notify_owner
= NULL
;
141 info
->user
= NULL
; /* set when all is ok */
142 memset(&info
->attr
, 0, sizeof(info
->attr
));
143 info
->attr
.mq_maxmsg
= ipc_ns
->mq_msg_max
;
144 info
->attr
.mq_msgsize
= ipc_ns
->mq_msgsize_max
;
146 info
->attr
.mq_maxmsg
= attr
->mq_maxmsg
;
147 info
->attr
.mq_msgsize
= attr
->mq_msgsize
;
149 mq_msg_tblsz
= info
->attr
.mq_maxmsg
* sizeof(struct msg_msg
*);
150 info
->messages
= kmalloc(mq_msg_tblsz
, GFP_KERNEL
);
154 mq_bytes
= (mq_msg_tblsz
+
155 (info
->attr
.mq_maxmsg
* info
->attr
.mq_msgsize
));
158 if (u
->mq_bytes
+ mq_bytes
< u
->mq_bytes
||
159 u
->mq_bytes
+ mq_bytes
>
160 task_rlimit(p
, RLIMIT_MSGQUEUE
)) {
161 spin_unlock(&mq_lock
);
162 /* mqueue_evict_inode() releases info->messages */
165 u
->mq_bytes
+= mq_bytes
;
166 spin_unlock(&mq_lock
);
169 info
->user
= get_uid(u
);
170 } else if (S_ISDIR(mode
)) {
172 /* Some things misbehave if size == 0 on a directory */
173 inode
->i_size
= 2 * DIRENT_SIZE
;
174 inode
->i_op
= &mqueue_dir_inode_operations
;
175 inode
->i_fop
= &simple_dir_operations
;
184 static int mqueue_fill_super(struct super_block
*sb
, void *data
, int silent
)
187 struct ipc_namespace
*ns
= data
;
190 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
191 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
192 sb
->s_magic
= MQUEUE_MAGIC
;
193 sb
->s_op
= &mqueue_super_ops
;
195 inode
= mqueue_get_inode(sb
, ns
, S_IFDIR
| S_ISVTX
| S_IRWXUGO
,
202 sb
->s_root
= d_alloc_root(inode
);
214 static struct dentry
*mqueue_mount(struct file_system_type
*fs_type
,
215 int flags
, const char *dev_name
,
218 if (!(flags
& MS_KERNMOUNT
))
219 data
= current
->nsproxy
->ipc_ns
;
220 return mount_ns(fs_type
, flags
, data
, mqueue_fill_super
);
223 static void init_once(void *foo
)
225 struct mqueue_inode_info
*p
= (struct mqueue_inode_info
*) foo
;
227 inode_init_once(&p
->vfs_inode
);
230 static struct inode
*mqueue_alloc_inode(struct super_block
*sb
)
232 struct mqueue_inode_info
*ei
;
234 ei
= kmem_cache_alloc(mqueue_inode_cachep
, GFP_KERNEL
);
237 return &ei
->vfs_inode
;
240 static void mqueue_i_callback(struct rcu_head
*head
)
242 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
243 INIT_LIST_HEAD(&inode
->i_dentry
);
244 kmem_cache_free(mqueue_inode_cachep
, MQUEUE_I(inode
));
247 static void mqueue_destroy_inode(struct inode
*inode
)
249 call_rcu(&inode
->i_rcu
, mqueue_i_callback
);
252 static void mqueue_evict_inode(struct inode
*inode
)
254 struct mqueue_inode_info
*info
;
255 struct user_struct
*user
;
256 unsigned long mq_bytes
;
258 struct ipc_namespace
*ipc_ns
;
260 end_writeback(inode
);
262 if (S_ISDIR(inode
->i_mode
))
265 ipc_ns
= get_ns_from_inode(inode
);
266 info
= MQUEUE_I(inode
);
267 spin_lock(&info
->lock
);
268 for (i
= 0; i
< info
->attr
.mq_curmsgs
; i
++)
269 free_msg(info
->messages
[i
]);
270 kfree(info
->messages
);
271 spin_unlock(&info
->lock
);
273 /* Total amount of bytes accounted for the mqueue */
274 mq_bytes
= info
->attr
.mq_maxmsg
* (sizeof(struct msg_msg
*)
275 + info
->attr
.mq_msgsize
);
279 user
->mq_bytes
-= mq_bytes
;
281 * get_ns_from_inode() ensures that the
282 * (ipc_ns = sb->s_fs_info) is either a valid ipc_ns
283 * to which we now hold a reference, or it is NULL.
284 * We can't put it here under mq_lock, though.
287 ipc_ns
->mq_queues_count
--;
288 spin_unlock(&mq_lock
);
295 static int mqueue_create(struct inode
*dir
, struct dentry
*dentry
,
296 int mode
, struct nameidata
*nd
)
299 struct mq_attr
*attr
= dentry
->d_fsdata
;
301 struct ipc_namespace
*ipc_ns
;
304 ipc_ns
= __get_ns_from_inode(dir
);
309 if (ipc_ns
->mq_queues_count
>= ipc_ns
->mq_queues_max
&&
310 !capable(CAP_SYS_RESOURCE
)) {
314 ipc_ns
->mq_queues_count
++;
315 spin_unlock(&mq_lock
);
317 inode
= mqueue_get_inode(dir
->i_sb
, ipc_ns
, mode
, attr
);
321 ipc_ns
->mq_queues_count
--;
326 dir
->i_size
+= DIRENT_SIZE
;
327 dir
->i_ctime
= dir
->i_mtime
= dir
->i_atime
= CURRENT_TIME
;
329 d_instantiate(dentry
, inode
);
333 spin_unlock(&mq_lock
);
339 static int mqueue_unlink(struct inode
*dir
, struct dentry
*dentry
)
341 struct inode
*inode
= dentry
->d_inode
;
343 dir
->i_ctime
= dir
->i_mtime
= dir
->i_atime
= CURRENT_TIME
;
344 dir
->i_size
-= DIRENT_SIZE
;
351 * This is routine for system read from queue file.
352 * To avoid mess with doing here some sort of mq_receive we allow
353 * to read only queue size & notification info (the only values
354 * that are interesting from user point of view and aren't accessible
355 * through std routines)
357 static ssize_t
mqueue_read_file(struct file
*filp
, char __user
*u_data
,
358 size_t count
, loff_t
*off
)
360 struct mqueue_inode_info
*info
= MQUEUE_I(filp
->f_path
.dentry
->d_inode
);
361 char buffer
[FILENT_SIZE
];
364 spin_lock(&info
->lock
);
365 snprintf(buffer
, sizeof(buffer
),
366 "QSIZE:%-10lu NOTIFY:%-5d SIGNO:%-5d NOTIFY_PID:%-6d\n",
368 info
->notify_owner
? info
->notify
.sigev_notify
: 0,
369 (info
->notify_owner
&&
370 info
->notify
.sigev_notify
== SIGEV_SIGNAL
) ?
371 info
->notify
.sigev_signo
: 0,
372 pid_vnr(info
->notify_owner
));
373 spin_unlock(&info
->lock
);
374 buffer
[sizeof(buffer
)-1] = '\0';
376 ret
= simple_read_from_buffer(u_data
, count
, off
, buffer
,
381 filp
->f_path
.dentry
->d_inode
->i_atime
= filp
->f_path
.dentry
->d_inode
->i_ctime
= CURRENT_TIME
;
385 static int mqueue_flush_file(struct file
*filp
, fl_owner_t id
)
387 struct mqueue_inode_info
*info
= MQUEUE_I(filp
->f_path
.dentry
->d_inode
);
389 spin_lock(&info
->lock
);
390 if (task_tgid(current
) == info
->notify_owner
)
391 remove_notification(info
);
393 spin_unlock(&info
->lock
);
397 static unsigned int mqueue_poll_file(struct file
*filp
, struct poll_table_struct
*poll_tab
)
399 struct mqueue_inode_info
*info
= MQUEUE_I(filp
->f_path
.dentry
->d_inode
);
402 poll_wait(filp
, &info
->wait_q
, poll_tab
);
404 spin_lock(&info
->lock
);
405 if (info
->attr
.mq_curmsgs
)
406 retval
= POLLIN
| POLLRDNORM
;
408 if (info
->attr
.mq_curmsgs
< info
->attr
.mq_maxmsg
)
409 retval
|= POLLOUT
| POLLWRNORM
;
410 spin_unlock(&info
->lock
);
415 /* Adds current to info->e_wait_q[sr] before element with smaller prio */
416 static void wq_add(struct mqueue_inode_info
*info
, int sr
,
417 struct ext_wait_queue
*ewp
)
419 struct ext_wait_queue
*walk
;
423 list_for_each_entry(walk
, &info
->e_wait_q
[sr
].list
, list
) {
424 if (walk
->task
->static_prio
<= current
->static_prio
) {
425 list_add_tail(&ewp
->list
, &walk
->list
);
429 list_add_tail(&ewp
->list
, &info
->e_wait_q
[sr
].list
);
433 * Puts current task to sleep. Caller must hold queue lock. After return
437 static int wq_sleep(struct mqueue_inode_info
*info
, int sr
,
438 ktime_t
*timeout
, struct ext_wait_queue
*ewp
)
443 wq_add(info
, sr
, ewp
);
446 set_current_state(TASK_INTERRUPTIBLE
);
448 spin_unlock(&info
->lock
);
449 time
= schedule_hrtimeout_range_clock(timeout
,
450 HRTIMER_MODE_ABS
, 0, CLOCK_REALTIME
);
452 while (ewp
->state
== STATE_PENDING
)
455 if (ewp
->state
== STATE_READY
) {
459 spin_lock(&info
->lock
);
460 if (ewp
->state
== STATE_READY
) {
464 if (signal_pending(current
)) {
465 retval
= -ERESTARTSYS
;
473 list_del(&ewp
->list
);
475 spin_unlock(&info
->lock
);
481 * Returns waiting task that should be serviced first or NULL if none exists
483 static struct ext_wait_queue
*wq_get_first_waiter(
484 struct mqueue_inode_info
*info
, int sr
)
486 struct list_head
*ptr
;
488 ptr
= info
->e_wait_q
[sr
].list
.prev
;
489 if (ptr
== &info
->e_wait_q
[sr
].list
)
491 return list_entry(ptr
, struct ext_wait_queue
, list
);
494 /* Auxiliary functions to manipulate messages' list */
495 static void msg_insert(struct msg_msg
*ptr
, struct mqueue_inode_info
*info
)
499 k
= info
->attr
.mq_curmsgs
- 1;
500 while (k
>= 0 && info
->messages
[k
]->m_type
>= ptr
->m_type
) {
501 info
->messages
[k
+ 1] = info
->messages
[k
];
504 info
->attr
.mq_curmsgs
++;
505 info
->qsize
+= ptr
->m_ts
;
506 info
->messages
[k
+ 1] = ptr
;
509 static inline struct msg_msg
*msg_get(struct mqueue_inode_info
*info
)
511 info
->qsize
-= info
->messages
[--info
->attr
.mq_curmsgs
]->m_ts
;
512 return info
->messages
[info
->attr
.mq_curmsgs
];
515 static inline void set_cookie(struct sk_buff
*skb
, char code
)
517 ((char*)skb
->data
)[NOTIFY_COOKIE_LEN
-1] = code
;
521 * The next function is only to split too long sys_mq_timedsend
523 static void __do_notify(struct mqueue_inode_info
*info
)
526 * invoked when there is registered process and there isn't process
527 * waiting synchronously for message AND state of queue changed from
528 * empty to not empty. Here we are sure that no one is waiting
530 if (info
->notify_owner
&&
531 info
->attr
.mq_curmsgs
== 1) {
532 struct siginfo sig_i
;
533 switch (info
->notify
.sigev_notify
) {
539 sig_i
.si_signo
= info
->notify
.sigev_signo
;
541 sig_i
.si_code
= SI_MESGQ
;
542 sig_i
.si_value
= info
->notify
.sigev_value
;
543 sig_i
.si_pid
= task_tgid_nr_ns(current
,
544 ns_of_pid(info
->notify_owner
));
545 sig_i
.si_uid
= current_uid();
547 kill_pid_info(info
->notify
.sigev_signo
,
548 &sig_i
, info
->notify_owner
);
551 set_cookie(info
->notify_cookie
, NOTIFY_WOKENUP
);
552 netlink_sendskb(info
->notify_sock
, info
->notify_cookie
);
555 /* after notification unregisters process */
556 put_pid(info
->notify_owner
);
557 info
->notify_owner
= NULL
;
559 wake_up(&info
->wait_q
);
562 static int prepare_timeout(const struct timespec __user
*u_abs_timeout
,
563 ktime_t
*expires
, struct timespec
*ts
)
565 if (copy_from_user(ts
, u_abs_timeout
, sizeof(struct timespec
)))
567 if (!timespec_valid(ts
))
570 *expires
= timespec_to_ktime(*ts
);
574 static void remove_notification(struct mqueue_inode_info
*info
)
576 if (info
->notify_owner
!= NULL
&&
577 info
->notify
.sigev_notify
== SIGEV_THREAD
) {
578 set_cookie(info
->notify_cookie
, NOTIFY_REMOVED
);
579 netlink_sendskb(info
->notify_sock
, info
->notify_cookie
);
581 put_pid(info
->notify_owner
);
582 info
->notify_owner
= NULL
;
585 static int mq_attr_ok(struct ipc_namespace
*ipc_ns
, struct mq_attr
*attr
)
587 if (attr
->mq_maxmsg
<= 0 || attr
->mq_msgsize
<= 0)
589 if (capable(CAP_SYS_RESOURCE
)) {
590 if (attr
->mq_maxmsg
> HARD_MSGMAX
)
593 if (attr
->mq_maxmsg
> ipc_ns
->mq_msg_max
||
594 attr
->mq_msgsize
> ipc_ns
->mq_msgsize_max
)
597 /* check for overflow */
598 if (attr
->mq_msgsize
> ULONG_MAX
/attr
->mq_maxmsg
)
600 if ((unsigned long)(attr
->mq_maxmsg
* (attr
->mq_msgsize
601 + sizeof (struct msg_msg
*))) <
602 (unsigned long)(attr
->mq_maxmsg
* attr
->mq_msgsize
))
608 * Invoked when creating a new queue via sys_mq_open
610 static struct file
*do_create(struct ipc_namespace
*ipc_ns
, struct dentry
*dir
,
611 struct dentry
*dentry
, int oflag
, mode_t mode
,
612 struct mq_attr
*attr
)
614 const struct cred
*cred
= current_cred();
619 if (!mq_attr_ok(ipc_ns
, attr
)) {
623 /* store for use during create */
624 dentry
->d_fsdata
= attr
;
627 mode
&= ~current_umask();
628 ret
= mnt_want_write(ipc_ns
->mq_mnt
);
631 ret
= vfs_create(dir
->d_inode
, dentry
, mode
, NULL
);
632 dentry
->d_fsdata
= NULL
;
636 result
= dentry_open(dentry
, ipc_ns
->mq_mnt
, oflag
, cred
);
638 * dentry_open() took a persistent mnt_want_write(),
639 * so we can now drop this one.
641 mnt_drop_write(ipc_ns
->mq_mnt
);
645 mnt_drop_write(ipc_ns
->mq_mnt
);
648 mntput(ipc_ns
->mq_mnt
);
652 /* Opens existing queue */
653 static struct file
*do_open(struct ipc_namespace
*ipc_ns
,
654 struct dentry
*dentry
, int oflag
)
657 const struct cred
*cred
= current_cred();
659 static const int oflag2acc
[O_ACCMODE
] = { MAY_READ
, MAY_WRITE
,
660 MAY_READ
| MAY_WRITE
};
662 if ((oflag
& O_ACCMODE
) == (O_RDWR
| O_WRONLY
)) {
667 if (inode_permission(dentry
->d_inode
, oflag2acc
[oflag
& O_ACCMODE
])) {
672 return dentry_open(dentry
, ipc_ns
->mq_mnt
, oflag
, cred
);
676 mntput(ipc_ns
->mq_mnt
);
680 SYSCALL_DEFINE4(mq_open
, const char __user
*, u_name
, int, oflag
, mode_t
, mode
,
681 struct mq_attr __user
*, u_attr
)
683 struct dentry
*dentry
;
688 struct ipc_namespace
*ipc_ns
= current
->nsproxy
->ipc_ns
;
690 if (u_attr
&& copy_from_user(&attr
, u_attr
, sizeof(struct mq_attr
)))
693 audit_mq_open(oflag
, mode
, u_attr
? &attr
: NULL
);
695 if (IS_ERR(name
= getname(u_name
)))
696 return PTR_ERR(name
);
698 fd
= get_unused_fd_flags(O_CLOEXEC
);
702 mutex_lock(&ipc_ns
->mq_mnt
->mnt_root
->d_inode
->i_mutex
);
703 dentry
= lookup_one_len(name
, ipc_ns
->mq_mnt
->mnt_root
, strlen(name
));
704 if (IS_ERR(dentry
)) {
705 error
= PTR_ERR(dentry
);
708 mntget(ipc_ns
->mq_mnt
);
710 if (oflag
& O_CREAT
) {
711 if (dentry
->d_inode
) { /* entry already exists */
712 audit_inode(name
, dentry
);
713 if (oflag
& O_EXCL
) {
717 filp
= do_open(ipc_ns
, dentry
, oflag
);
719 filp
= do_create(ipc_ns
, ipc_ns
->mq_mnt
->mnt_root
,
721 u_attr
? &attr
: NULL
);
724 if (!dentry
->d_inode
) {
728 audit_inode(name
, dentry
);
729 filp
= do_open(ipc_ns
, dentry
, oflag
);
733 error
= PTR_ERR(filp
);
737 fd_install(fd
, filp
);
742 mntput(ipc_ns
->mq_mnt
);
747 mutex_unlock(&ipc_ns
->mq_mnt
->mnt_root
->d_inode
->i_mutex
);
753 SYSCALL_DEFINE1(mq_unlink
, const char __user
*, u_name
)
757 struct dentry
*dentry
;
758 struct inode
*inode
= NULL
;
759 struct ipc_namespace
*ipc_ns
= current
->nsproxy
->ipc_ns
;
761 name
= getname(u_name
);
763 return PTR_ERR(name
);
765 mutex_lock_nested(&ipc_ns
->mq_mnt
->mnt_root
->d_inode
->i_mutex
,
767 dentry
= lookup_one_len(name
, ipc_ns
->mq_mnt
->mnt_root
, strlen(name
));
768 if (IS_ERR(dentry
)) {
769 err
= PTR_ERR(dentry
);
773 if (!dentry
->d_inode
) {
778 inode
= dentry
->d_inode
;
781 err
= mnt_want_write(ipc_ns
->mq_mnt
);
784 err
= vfs_unlink(dentry
->d_parent
->d_inode
, dentry
);
785 mnt_drop_write(ipc_ns
->mq_mnt
);
790 mutex_unlock(&ipc_ns
->mq_mnt
->mnt_root
->d_inode
->i_mutex
);
798 /* Pipelined send and receive functions.
800 * If a receiver finds no waiting message, then it registers itself in the
801 * list of waiting receivers. A sender checks that list before adding the new
802 * message into the message array. If there is a waiting receiver, then it
803 * bypasses the message array and directly hands the message over to the
805 * The receiver accepts the message and returns without grabbing the queue
806 * spinlock. Therefore an intermediate STATE_PENDING state and memory barriers
807 * are necessary. The same algorithm is used for sysv semaphores, see
808 * ipc/sem.c for more details.
810 * The same algorithm is used for senders.
813 /* pipelined_send() - send a message directly to the task waiting in
814 * sys_mq_timedreceive() (without inserting message into a queue).
816 static inline void pipelined_send(struct mqueue_inode_info
*info
,
817 struct msg_msg
*message
,
818 struct ext_wait_queue
*receiver
)
820 receiver
->msg
= message
;
821 list_del(&receiver
->list
);
822 receiver
->state
= STATE_PENDING
;
823 wake_up_process(receiver
->task
);
825 receiver
->state
= STATE_READY
;
828 /* pipelined_receive() - if there is task waiting in sys_mq_timedsend()
829 * gets its message and put to the queue (we have one free place for sure). */
830 static inline void pipelined_receive(struct mqueue_inode_info
*info
)
832 struct ext_wait_queue
*sender
= wq_get_first_waiter(info
, SEND
);
836 wake_up_interruptible(&info
->wait_q
);
839 msg_insert(sender
->msg
, info
);
840 list_del(&sender
->list
);
841 sender
->state
= STATE_PENDING
;
842 wake_up_process(sender
->task
);
844 sender
->state
= STATE_READY
;
847 SYSCALL_DEFINE5(mq_timedsend
, mqd_t
, mqdes
, const char __user
*, u_msg_ptr
,
848 size_t, msg_len
, unsigned int, msg_prio
,
849 const struct timespec __user
*, u_abs_timeout
)
853 struct ext_wait_queue wait
;
854 struct ext_wait_queue
*receiver
;
855 struct msg_msg
*msg_ptr
;
856 struct mqueue_inode_info
*info
;
857 ktime_t expires
, *timeout
= NULL
;
862 int res
= prepare_timeout(u_abs_timeout
, &expires
, &ts
);
868 if (unlikely(msg_prio
>= (unsigned long) MQ_PRIO_MAX
))
871 audit_mq_sendrecv(mqdes
, msg_len
, msg_prio
, timeout
? &ts
: NULL
);
874 if (unlikely(!filp
)) {
879 inode
= filp
->f_path
.dentry
->d_inode
;
880 if (unlikely(filp
->f_op
!= &mqueue_file_operations
)) {
884 info
= MQUEUE_I(inode
);
885 audit_inode(NULL
, filp
->f_path
.dentry
);
887 if (unlikely(!(filp
->f_mode
& FMODE_WRITE
))) {
892 if (unlikely(msg_len
> info
->attr
.mq_msgsize
)) {
897 /* First try to allocate memory, before doing anything with
898 * existing queues. */
899 msg_ptr
= load_msg(u_msg_ptr
, msg_len
);
900 if (IS_ERR(msg_ptr
)) {
901 ret
= PTR_ERR(msg_ptr
);
904 msg_ptr
->m_ts
= msg_len
;
905 msg_ptr
->m_type
= msg_prio
;
907 spin_lock(&info
->lock
);
909 if (info
->attr
.mq_curmsgs
== info
->attr
.mq_maxmsg
) {
910 if (filp
->f_flags
& O_NONBLOCK
) {
911 spin_unlock(&info
->lock
);
915 wait
.msg
= (void *) msg_ptr
;
916 wait
.state
= STATE_NONE
;
917 ret
= wq_sleep(info
, SEND
, timeout
, &wait
);
922 receiver
= wq_get_first_waiter(info
, RECV
);
924 pipelined_send(info
, msg_ptr
, receiver
);
926 /* adds message to the queue */
927 msg_insert(msg_ptr
, info
);
930 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
=
932 spin_unlock(&info
->lock
);
941 SYSCALL_DEFINE5(mq_timedreceive
, mqd_t
, mqdes
, char __user
*, u_msg_ptr
,
942 size_t, msg_len
, unsigned int __user
*, u_msg_prio
,
943 const struct timespec __user
*, u_abs_timeout
)
946 struct msg_msg
*msg_ptr
;
949 struct mqueue_inode_info
*info
;
950 struct ext_wait_queue wait
;
951 ktime_t expires
, *timeout
= NULL
;
955 int res
= prepare_timeout(u_abs_timeout
, &expires
, &ts
);
961 audit_mq_sendrecv(mqdes
, msg_len
, 0, timeout
? &ts
: NULL
);
964 if (unlikely(!filp
)) {
969 inode
= filp
->f_path
.dentry
->d_inode
;
970 if (unlikely(filp
->f_op
!= &mqueue_file_operations
)) {
974 info
= MQUEUE_I(inode
);
975 audit_inode(NULL
, filp
->f_path
.dentry
);
977 if (unlikely(!(filp
->f_mode
& FMODE_READ
))) {
982 /* checks if buffer is big enough */
983 if (unlikely(msg_len
< info
->attr
.mq_msgsize
)) {
988 spin_lock(&info
->lock
);
989 if (info
->attr
.mq_curmsgs
== 0) {
990 if (filp
->f_flags
& O_NONBLOCK
) {
991 spin_unlock(&info
->lock
);
995 wait
.state
= STATE_NONE
;
996 ret
= wq_sleep(info
, RECV
, timeout
, &wait
);
1000 msg_ptr
= msg_get(info
);
1002 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
=
1005 /* There is now free space in queue. */
1006 pipelined_receive(info
);
1007 spin_unlock(&info
->lock
);
1011 ret
= msg_ptr
->m_ts
;
1013 if ((u_msg_prio
&& put_user(msg_ptr
->m_type
, u_msg_prio
)) ||
1014 store_msg(u_msg_ptr
, msg_ptr
, msg_ptr
->m_ts
)) {
1026 * Notes: the case when user wants us to deregister (with NULL as pointer)
1027 * and he isn't currently owner of notification, will be silently discarded.
1028 * It isn't explicitly defined in the POSIX.
1030 SYSCALL_DEFINE2(mq_notify
, mqd_t
, mqdes
,
1031 const struct sigevent __user
*, u_notification
)
1036 struct inode
*inode
;
1037 struct sigevent notification
;
1038 struct mqueue_inode_info
*info
;
1041 if (u_notification
) {
1042 if (copy_from_user(¬ification
, u_notification
,
1043 sizeof(struct sigevent
)))
1047 audit_mq_notify(mqdes
, u_notification
? ¬ification
: NULL
);
1051 if (u_notification
!= NULL
) {
1052 if (unlikely(notification
.sigev_notify
!= SIGEV_NONE
&&
1053 notification
.sigev_notify
!= SIGEV_SIGNAL
&&
1054 notification
.sigev_notify
!= SIGEV_THREAD
))
1056 if (notification
.sigev_notify
== SIGEV_SIGNAL
&&
1057 !valid_signal(notification
.sigev_signo
)) {
1060 if (notification
.sigev_notify
== SIGEV_THREAD
) {
1063 /* create the notify skb */
1064 nc
= alloc_skb(NOTIFY_COOKIE_LEN
, GFP_KERNEL
);
1069 if (copy_from_user(nc
->data
,
1070 notification
.sigev_value
.sival_ptr
,
1071 NOTIFY_COOKIE_LEN
)) {
1076 /* TODO: add a header? */
1077 skb_put(nc
, NOTIFY_COOKIE_LEN
);
1078 /* and attach it to the socket */
1080 filp
= fget(notification
.sigev_signo
);
1085 sock
= netlink_getsockbyfilp(filp
);
1088 ret
= PTR_ERR(sock
);
1093 timeo
= MAX_SCHEDULE_TIMEOUT
;
1094 ret
= netlink_attachskb(sock
, nc
, &timeo
, NULL
);
1111 inode
= filp
->f_path
.dentry
->d_inode
;
1112 if (unlikely(filp
->f_op
!= &mqueue_file_operations
)) {
1116 info
= MQUEUE_I(inode
);
1119 spin_lock(&info
->lock
);
1120 if (u_notification
== NULL
) {
1121 if (info
->notify_owner
== task_tgid(current
)) {
1122 remove_notification(info
);
1123 inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
1125 } else if (info
->notify_owner
!= NULL
) {
1128 switch (notification
.sigev_notify
) {
1130 info
->notify
.sigev_notify
= SIGEV_NONE
;
1133 info
->notify_sock
= sock
;
1134 info
->notify_cookie
= nc
;
1137 info
->notify
.sigev_notify
= SIGEV_THREAD
;
1140 info
->notify
.sigev_signo
= notification
.sigev_signo
;
1141 info
->notify
.sigev_value
= notification
.sigev_value
;
1142 info
->notify
.sigev_notify
= SIGEV_SIGNAL
;
1146 info
->notify_owner
= get_pid(task_tgid(current
));
1147 inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
1149 spin_unlock(&info
->lock
);
1154 netlink_detachskb(sock
, nc
);
1161 SYSCALL_DEFINE3(mq_getsetattr
, mqd_t
, mqdes
,
1162 const struct mq_attr __user
*, u_mqstat
,
1163 struct mq_attr __user
*, u_omqstat
)
1166 struct mq_attr mqstat
, omqstat
;
1168 struct inode
*inode
;
1169 struct mqueue_inode_info
*info
;
1171 if (u_mqstat
!= NULL
) {
1172 if (copy_from_user(&mqstat
, u_mqstat
, sizeof(struct mq_attr
)))
1174 if (mqstat
.mq_flags
& (~O_NONBLOCK
))
1184 inode
= filp
->f_path
.dentry
->d_inode
;
1185 if (unlikely(filp
->f_op
!= &mqueue_file_operations
)) {
1189 info
= MQUEUE_I(inode
);
1191 spin_lock(&info
->lock
);
1193 omqstat
= info
->attr
;
1194 omqstat
.mq_flags
= filp
->f_flags
& O_NONBLOCK
;
1196 audit_mq_getsetattr(mqdes
, &mqstat
);
1197 spin_lock(&filp
->f_lock
);
1198 if (mqstat
.mq_flags
& O_NONBLOCK
)
1199 filp
->f_flags
|= O_NONBLOCK
;
1201 filp
->f_flags
&= ~O_NONBLOCK
;
1202 spin_unlock(&filp
->f_lock
);
1204 inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME
;
1207 spin_unlock(&info
->lock
);
1210 if (u_omqstat
!= NULL
&& copy_to_user(u_omqstat
, &omqstat
,
1211 sizeof(struct mq_attr
)))
1220 static const struct inode_operations mqueue_dir_inode_operations
= {
1221 .lookup
= simple_lookup
,
1222 .create
= mqueue_create
,
1223 .unlink
= mqueue_unlink
,
1226 static const struct file_operations mqueue_file_operations
= {
1227 .flush
= mqueue_flush_file
,
1228 .poll
= mqueue_poll_file
,
1229 .read
= mqueue_read_file
,
1230 .llseek
= default_llseek
,
1233 static const struct super_operations mqueue_super_ops
= {
1234 .alloc_inode
= mqueue_alloc_inode
,
1235 .destroy_inode
= mqueue_destroy_inode
,
1236 .evict_inode
= mqueue_evict_inode
,
1237 .statfs
= simple_statfs
,
1240 static struct file_system_type mqueue_fs_type
= {
1242 .mount
= mqueue_mount
,
1243 .kill_sb
= kill_litter_super
,
1246 int mq_init_ns(struct ipc_namespace
*ns
)
1248 ns
->mq_queues_count
= 0;
1249 ns
->mq_queues_max
= DFLT_QUEUESMAX
;
1250 ns
->mq_msg_max
= DFLT_MSGMAX
;
1251 ns
->mq_msgsize_max
= DFLT_MSGSIZEMAX
;
1253 ns
->mq_mnt
= kern_mount_data(&mqueue_fs_type
, ns
);
1254 if (IS_ERR(ns
->mq_mnt
)) {
1255 int err
= PTR_ERR(ns
->mq_mnt
);
1262 void mq_clear_sbinfo(struct ipc_namespace
*ns
)
1264 ns
->mq_mnt
->mnt_sb
->s_fs_info
= NULL
;
1267 void mq_put_mnt(struct ipc_namespace
*ns
)
1272 static int __init
init_mqueue_fs(void)
1276 mqueue_inode_cachep
= kmem_cache_create("mqueue_inode_cache",
1277 sizeof(struct mqueue_inode_info
), 0,
1278 SLAB_HWCACHE_ALIGN
, init_once
);
1279 if (mqueue_inode_cachep
== NULL
)
1282 /* ignore failures - they are not fatal */
1283 mq_sysctl_table
= mq_register_sysctl_table();
1285 error
= register_filesystem(&mqueue_fs_type
);
1289 spin_lock_init(&mq_lock
);
1291 init_ipc_ns
.mq_mnt
= kern_mount_data(&mqueue_fs_type
, &init_ipc_ns
);
1292 if (IS_ERR(init_ipc_ns
.mq_mnt
)) {
1293 error
= PTR_ERR(init_ipc_ns
.mq_mnt
);
1294 goto out_filesystem
;
1300 unregister_filesystem(&mqueue_fs_type
);
1302 if (mq_sysctl_table
)
1303 unregister_sysctl_table(mq_sysctl_table
);
1304 kmem_cache_destroy(mqueue_inode_cachep
);
1308 __initcall(init_mqueue_fs
);