blob: be8449d48a8e648d1208116a48d27844f50cf871 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/ipc/msg.c
Ingo Molnar5a06a362006-07-30 03:04:11 -07003 * Copyright (C) 1992 Krishna Balasubramanian
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Removed all the remaining kerneld mess
6 * Catch the -EFAULT stuff properly
7 * Use GFP_KERNEL for messages as in 1.2
8 * Fixed up the unchecked user space derefs
9 * Copyright (C) 1998 Alan Cox & Andi Kleen
10 *
11 * /proc/sysvipc/msg support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
12 *
13 * mostly rewritten, threaded and wake-one semantics added
14 * MSGMAX limit removed, sysctl's added
Christian Kujau624dffc2006-01-15 02:43:54 +010015 * (c) 1999 Manfred Spraul <manfred@colorfullife.com>
Steve Grubb073115d2006-04-02 17:07:33 -040016 *
17 * support for audit of ipc object properties and permission changes
18 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
Kirill Korotaev1e786932006-10-02 02:18:21 -070019 *
20 * namespaces support
21 * OpenVZ, SWsoft Inc.
22 * Pavel Emelianov <xemul@openvz.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Randy.Dunlapc59ede72006-01-11 12:17:46 -080025#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/slab.h>
27#include <linux/msg.h>
28#include <linux/spinlock.h>
29#include <linux/init.h>
Nadia Derbeyf7bf3df2008-04-29 01:00:39 -070030#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/proc_fs.h>
32#include <linux/list.h>
33#include <linux/security.h>
34#include <linux/sched.h>
35#include <linux/syscalls.h>
36#include <linux/audit.h>
Mike Waychison19b49462005-09-06 15:17:10 -070037#include <linux/seq_file.h>
Nadia Derbey3e148c72007-10-18 23:40:54 -070038#include <linux/rwsem.h>
Kirill Korotaev1e786932006-10-02 02:18:21 -070039#include <linux/nsproxy.h>
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080040#include <linux/ipc_namespace.h>
Ingo Molnar5f921ae2006-03-26 01:37:17 -080041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/current.h>
43#include <asm/uaccess.h>
44#include "util.h"
45
Ingo Molnar5a06a362006-07-30 03:04:11 -070046/*
47 * one msg_receiver structure for each sleeping receiver:
48 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049struct msg_receiver {
Ingo Molnar5a06a362006-07-30 03:04:11 -070050 struct list_head r_list;
51 struct task_struct *r_tsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Ingo Molnar5a06a362006-07-30 03:04:11 -070053 int r_mode;
54 long r_msgtype;
55 long r_maxsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds80491eb2006-11-04 09:55:00 -080057 struct msg_msg *volatile r_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
60/* one msg_sender for each sleeping sender */
61struct msg_sender {
Ingo Molnar5a06a362006-07-30 03:04:11 -070062 struct list_head list;
63 struct task_struct *tsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66#define SEARCH_ANY 1
67#define SEARCH_EQUAL 2
68#define SEARCH_NOTEQUAL 3
69#define SEARCH_LESSEQUAL 4
70
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080071#define msg_ids(ns) ((ns)->ids[IPC_MSG_IDS])
Kirill Korotaev1e786932006-10-02 02:18:21 -070072
Ingo Molnar5a06a362006-07-30 03:04:11 -070073#define msg_unlock(msq) ipc_unlock(&(msq)->q_perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Pierre Peiffer01b8b072008-02-08 04:18:57 -080075static void freeque(struct ipc_namespace *, struct kern_ipc_perm *);
Nadia Derbey7748dbf2007-10-18 23:40:49 -070076static int newque(struct ipc_namespace *, struct ipc_params *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -070078static int sysvipc_msg_proc_show(struct seq_file *s, void *it);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#endif
80
Nadia Derbeyf7bf3df2008-04-29 01:00:39 -070081/*
82 * Scale msgmni with the available lowmem size: the memory dedicated to msg
83 * queues should occupy at most 1/MSG_MEM_SCALE of lowmem.
Nadia Derbey4d89dc62008-04-29 01:00:40 -070084 * Also take into account the number of nsproxies created so far.
85 * This should be done staying within the (MSGMNI , IPCMNI/nr_ipc_ns) range.
Nadia Derbeyf7bf3df2008-04-29 01:00:39 -070086 */
87static void recompute_msgmni(struct ipc_namespace *ns)
88{
89 struct sysinfo i;
90 unsigned long allowed;
Nadia Derbey4d89dc62008-04-29 01:00:40 -070091 int nb_ns;
Nadia Derbeyf7bf3df2008-04-29 01:00:39 -070092
93 si_meminfo(&i);
94 allowed = (((i.totalram - i.totalhigh) / MSG_MEM_SCALE) * i.mem_unit)
95 / MSGMNB;
Nadia Derbey4d89dc62008-04-29 01:00:40 -070096 nb_ns = atomic_read(&nr_ipc_ns);
97 allowed /= nb_ns;
Nadia Derbeyf7bf3df2008-04-29 01:00:39 -070098
99 if (allowed < MSGMNI) {
100 ns->msg_ctlmni = MSGMNI;
101 goto out_callback;
102 }
103
Nadia Derbey4d89dc62008-04-29 01:00:40 -0700104 if (allowed > IPCMNI / nb_ns) {
105 ns->msg_ctlmni = IPCMNI / nb_ns;
Nadia Derbeyf7bf3df2008-04-29 01:00:39 -0700106 goto out_callback;
107 }
108
109 ns->msg_ctlmni = allowed;
110
111out_callback:
112
113 printk(KERN_INFO "msgmni has been set to %d for ipc namespace %p\n",
114 ns->msg_ctlmni, ns);
115}
116
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800117void msg_init_ns(struct ipc_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Kirill Korotaev1e786932006-10-02 02:18:21 -0700119 ns->msg_ctlmax = MSGMAX;
120 ns->msg_ctlmnb = MSGMNB;
Nadia Derbeyf7bf3df2008-04-29 01:00:39 -0700121
122 recompute_msgmni(ns);
123
Kirill Korotaev3ac88a42007-10-18 23:40:56 -0700124 atomic_set(&ns->msg_bytes, 0);
125 atomic_set(&ns->msg_hdrs, 0);
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800126 ipc_init_ids(&ns->ids[IPC_MSG_IDS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800129#ifdef CONFIG_IPC_NS
Kirill Korotaev1e786932006-10-02 02:18:21 -0700130void msg_exit_ns(struct ipc_namespace *ns)
131{
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800132 free_ipcs(ns, &msg_ids(ns), freeque);
Kirill Korotaev1e786932006-10-02 02:18:21 -0700133}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800134#endif
Kirill Korotaev1e786932006-10-02 02:18:21 -0700135
136void __init msg_init(void)
137{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800138 msg_init_ns(&init_ipc_ns);
Kirill Korotaev1e786932006-10-02 02:18:21 -0700139 ipc_init_proc_interface("sysvipc/msg",
140 " key msqid perms cbytes qnum lspid lrpid uid gid cuid cgid stime rtime ctime\n",
141 IPC_MSG_IDS, sysvipc_msg_proc_show);
142}
143
Nadia Derbey3e148c72007-10-18 23:40:54 -0700144/*
145 * This routine is called in the paths where the rw_mutex is held to protect
146 * access to the idr tree.
147 */
148static inline struct msg_queue *msg_lock_check_down(struct ipc_namespace *ns,
149 int id)
150{
151 struct kern_ipc_perm *ipcp = ipc_lock_check_down(&msg_ids(ns), id);
152
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800153 if (IS_ERR(ipcp))
154 return (struct msg_queue *)ipcp;
155
Nadia Derbey3e148c72007-10-18 23:40:54 -0700156 return container_of(ipcp, struct msg_queue, q_perm);
157}
158
159/*
160 * msg_lock_(check_) routines are called in the paths where the rw_mutex
161 * is not held.
162 */
Nadia Derbey023a5352007-10-18 23:40:51 -0700163static inline struct msg_queue *msg_lock(struct ipc_namespace *ns, int id)
164{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700165 struct kern_ipc_perm *ipcp = ipc_lock(&msg_ids(ns), id);
166
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800167 if (IS_ERR(ipcp))
168 return (struct msg_queue *)ipcp;
169
Nadia Derbey03f02c72007-10-18 23:40:51 -0700170 return container_of(ipcp, struct msg_queue, q_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700171}
172
173static inline struct msg_queue *msg_lock_check(struct ipc_namespace *ns,
174 int id)
175{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700176 struct kern_ipc_perm *ipcp = ipc_lock_check(&msg_ids(ns), id);
177
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800178 if (IS_ERR(ipcp))
179 return (struct msg_queue *)ipcp;
180
Nadia Derbey03f02c72007-10-18 23:40:51 -0700181 return container_of(ipcp, struct msg_queue, q_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700182}
183
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700184static inline void msg_rmid(struct ipc_namespace *ns, struct msg_queue *s)
185{
186 ipc_rmid(&msg_ids(ns), &s->q_perm);
187}
188
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700189/**
190 * newque - Create a new msg queue
191 * @ns: namespace
192 * @params: ptr to the structure that contains the key and msgflg
193 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700194 * Called with msg_ids.rw_mutex held (writer)
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700195 */
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700196static int newque(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 struct msg_queue *msq;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700199 int id, retval;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700200 key_t key = params->key;
201 int msgflg = params->flg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Ingo Molnar5a06a362006-07-30 03:04:11 -0700203 msq = ipc_rcu_alloc(sizeof(*msq));
204 if (!msq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return -ENOMEM;
206
Ingo Molnar5a06a362006-07-30 03:04:11 -0700207 msq->q_perm.mode = msgflg & S_IRWXUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 msq->q_perm.key = key;
209
210 msq->q_perm.security = NULL;
211 retval = security_msg_queue_alloc(msq);
212 if (retval) {
213 ipc_rcu_putref(msq);
214 return retval;
215 }
216
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700217 /*
218 * ipc_addid() locks msq
219 */
Kirill Korotaev1e786932006-10-02 02:18:21 -0700220 id = ipc_addid(&msg_ids(ns), &msq->q_perm, ns->msg_ctlmni);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700221 if (id < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 security_msg_queue_free(msq);
223 ipc_rcu_putref(msq);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700224 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
227 msq->q_stime = msq->q_rtime = 0;
228 msq->q_ctime = get_seconds();
229 msq->q_cbytes = msq->q_qnum = 0;
Kirill Korotaev1e786932006-10-02 02:18:21 -0700230 msq->q_qbytes = ns->msg_ctlmnb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 msq->q_lspid = msq->q_lrpid = 0;
232 INIT_LIST_HEAD(&msq->q_messages);
233 INIT_LIST_HEAD(&msq->q_receivers);
234 INIT_LIST_HEAD(&msq->q_senders);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 msg_unlock(msq);
237
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700238 return msq->q_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Ingo Molnar5a06a362006-07-30 03:04:11 -0700241static inline void ss_add(struct msg_queue *msq, struct msg_sender *mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Ingo Molnar5a06a362006-07-30 03:04:11 -0700243 mss->tsk = current;
244 current->state = TASK_INTERRUPTIBLE;
245 list_add_tail(&mss->list, &msq->q_senders);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Ingo Molnar5a06a362006-07-30 03:04:11 -0700248static inline void ss_del(struct msg_sender *mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Ingo Molnar5a06a362006-07-30 03:04:11 -0700250 if (mss->list.next != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 list_del(&mss->list);
252}
253
Ingo Molnar5a06a362006-07-30 03:04:11 -0700254static void ss_wakeup(struct list_head *h, int kill)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct list_head *tmp;
257
258 tmp = h->next;
259 while (tmp != h) {
Ingo Molnar5a06a362006-07-30 03:04:11 -0700260 struct msg_sender *mss;
261
262 mss = list_entry(tmp, struct msg_sender, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 tmp = tmp->next;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700264 if (kill)
265 mss->list.next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 wake_up_process(mss->tsk);
267 }
268}
269
Ingo Molnar5a06a362006-07-30 03:04:11 -0700270static void expunge_all(struct msg_queue *msq, int res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 struct list_head *tmp;
273
274 tmp = msq->q_receivers.next;
275 while (tmp != &msq->q_receivers) {
Ingo Molnar5a06a362006-07-30 03:04:11 -0700276 struct msg_receiver *msr;
277
278 msr = list_entry(tmp, struct msg_receiver, r_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 tmp = tmp->next;
280 msr->r_msg = NULL;
281 wake_up_process(msr->r_tsk);
282 smp_mb();
283 msr->r_msg = ERR_PTR(res);
284 }
285}
Ingo Molnar5a06a362006-07-30 03:04:11 -0700286
287/*
288 * freeque() wakes up waiters on the sender and receiver waiting queue,
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700289 * removes the message queue from message queue ID IDR, and cleans up all the
290 * messages associated with this queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700292 * msg_ids.rw_mutex (writer) and the spinlock for this message queue are held
293 * before freeque() is called. msg_ids.rw_mutex remains locked on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800295static void freeque(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct list_head *tmp;
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800298 struct msg_queue *msq = container_of(ipcp, struct msg_queue, q_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Ingo Molnar5a06a362006-07-30 03:04:11 -0700300 expunge_all(msq, -EIDRM);
301 ss_wakeup(&msq->q_senders, 1);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700302 msg_rmid(ns, msq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 msg_unlock(msq);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 tmp = msq->q_messages.next;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700306 while (tmp != &msq->q_messages) {
307 struct msg_msg *msg = list_entry(tmp, struct msg_msg, m_list);
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 tmp = tmp->next;
Kirill Korotaev3ac88a42007-10-18 23:40:56 -0700310 atomic_dec(&ns->msg_hdrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 free_msg(msg);
312 }
Kirill Korotaev3ac88a42007-10-18 23:40:56 -0700313 atomic_sub(msq->q_cbytes, &ns->msg_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 security_msg_queue_free(msq);
315 ipc_rcu_putref(msq);
316}
317
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700318/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700319 * Called with msg_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700320 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700321static inline int msg_security(struct kern_ipc_perm *ipcp, int msgflg)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700322{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700323 struct msg_queue *msq = container_of(ipcp, struct msg_queue, q_perm);
324
325 return security_msg_queue_associate(msq, msgflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700326}
327
Ingo Molnar5a06a362006-07-30 03:04:11 -0700328asmlinkage long sys_msgget(key_t key, int msgflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Kirill Korotaev1e786932006-10-02 02:18:21 -0700330 struct ipc_namespace *ns;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700331 struct ipc_ops msg_ops;
332 struct ipc_params msg_params;
Kirill Korotaev1e786932006-10-02 02:18:21 -0700333
334 ns = current->nsproxy->ipc_ns;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700335
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700336 msg_ops.getnew = newque;
337 msg_ops.associate = msg_security;
338 msg_ops.more_checks = NULL;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700339
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700340 msg_params.key = key;
341 msg_params.flg = msgflg;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700342
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700343 return ipcget(ns, &msg_ids(ns), &msg_ops, &msg_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Ingo Molnar5a06a362006-07-30 03:04:11 -0700346static inline unsigned long
347copy_msqid_to_user(void __user *buf, struct msqid64_ds *in, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 switch(version) {
350 case IPC_64:
Ingo Molnar5a06a362006-07-30 03:04:11 -0700351 return copy_to_user(buf, in, sizeof(*in));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 case IPC_OLD:
Ingo Molnar5a06a362006-07-30 03:04:11 -0700353 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 struct msqid_ds out;
355
Ingo Molnar5a06a362006-07-30 03:04:11 -0700356 memset(&out, 0, sizeof(out));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 ipc64_perm_to_ipc_perm(&in->msg_perm, &out.msg_perm);
359
360 out.msg_stime = in->msg_stime;
361 out.msg_rtime = in->msg_rtime;
362 out.msg_ctime = in->msg_ctime;
363
Ingo Molnar5a06a362006-07-30 03:04:11 -0700364 if (in->msg_cbytes > USHRT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 out.msg_cbytes = USHRT_MAX;
366 else
367 out.msg_cbytes = in->msg_cbytes;
368 out.msg_lcbytes = in->msg_cbytes;
369
Ingo Molnar5a06a362006-07-30 03:04:11 -0700370 if (in->msg_qnum > USHRT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 out.msg_qnum = USHRT_MAX;
372 else
373 out.msg_qnum = in->msg_qnum;
374
Ingo Molnar5a06a362006-07-30 03:04:11 -0700375 if (in->msg_qbytes > USHRT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 out.msg_qbytes = USHRT_MAX;
377 else
378 out.msg_qbytes = in->msg_qbytes;
379 out.msg_lqbytes = in->msg_qbytes;
380
381 out.msg_lspid = in->msg_lspid;
382 out.msg_lrpid = in->msg_lrpid;
383
Ingo Molnar5a06a362006-07-30 03:04:11 -0700384 return copy_to_user(buf, &out, sizeof(out));
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 default:
387 return -EINVAL;
388 }
389}
390
391struct msq_setbuf {
392 unsigned long qbytes;
393 uid_t uid;
394 gid_t gid;
395 mode_t mode;
396};
397
Ingo Molnar5a06a362006-07-30 03:04:11 -0700398static inline unsigned long
399copy_msqid_from_user(struct msq_setbuf *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 switch(version) {
402 case IPC_64:
Ingo Molnar5a06a362006-07-30 03:04:11 -0700403 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct msqid64_ds tbuf;
405
Ingo Molnar5a06a362006-07-30 03:04:11 -0700406 if (copy_from_user(&tbuf, buf, sizeof(tbuf)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return -EFAULT;
408
409 out->qbytes = tbuf.msg_qbytes;
410 out->uid = tbuf.msg_perm.uid;
411 out->gid = tbuf.msg_perm.gid;
412 out->mode = tbuf.msg_perm.mode;
413
414 return 0;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 case IPC_OLD:
Ingo Molnar5a06a362006-07-30 03:04:11 -0700417 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 struct msqid_ds tbuf_old;
419
Ingo Molnar5a06a362006-07-30 03:04:11 -0700420 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -EFAULT;
422
423 out->uid = tbuf_old.msg_perm.uid;
424 out->gid = tbuf_old.msg_perm.gid;
425 out->mode = tbuf_old.msg_perm.mode;
426
Ingo Molnar5a06a362006-07-30 03:04:11 -0700427 if (tbuf_old.msg_qbytes == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 out->qbytes = tbuf_old.msg_lqbytes;
429 else
430 out->qbytes = tbuf_old.msg_qbytes;
431
432 return 0;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 default:
435 return -EINVAL;
436 }
437}
438
Ingo Molnar5a06a362006-07-30 03:04:11 -0700439asmlinkage long sys_msgctl(int msqid, int cmd, struct msqid_ds __user *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 struct kern_ipc_perm *ipcp;
Jeff Garzik8e1c0912007-07-17 05:40:59 -0400442 struct msq_setbuf uninitialized_var(setbuf);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700443 struct msg_queue *msq;
444 int err, version;
Kirill Korotaev1e786932006-10-02 02:18:21 -0700445 struct ipc_namespace *ns;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (msqid < 0 || cmd < 0)
448 return -EINVAL;
449
450 version = ipc_parse_version(&cmd);
Kirill Korotaev1e786932006-10-02 02:18:21 -0700451 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 switch (cmd) {
Ingo Molnar5a06a362006-07-30 03:04:11 -0700454 case IPC_INFO:
455 case MSG_INFO:
456 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 struct msginfo msginfo;
458 int max_id;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (!buf)
461 return -EFAULT;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700462 /*
463 * We must not return kernel stack data.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * due to padding, it's not enough
465 * to set all member fields.
466 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 err = security_msg_queue_msgctl(NULL, cmd);
468 if (err)
469 return err;
470
Ingo Molnar5a06a362006-07-30 03:04:11 -0700471 memset(&msginfo, 0, sizeof(msginfo));
Kirill Korotaev1e786932006-10-02 02:18:21 -0700472 msginfo.msgmni = ns->msg_ctlmni;
473 msginfo.msgmax = ns->msg_ctlmax;
474 msginfo.msgmnb = ns->msg_ctlmnb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 msginfo.msgssz = MSGSSZ;
476 msginfo.msgseg = MSGSEG;
Nadia Derbey3e148c72007-10-18 23:40:54 -0700477 down_read(&msg_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (cmd == MSG_INFO) {
Kirill Korotaev1e786932006-10-02 02:18:21 -0700479 msginfo.msgpool = msg_ids(ns).in_use;
Kirill Korotaev3ac88a42007-10-18 23:40:56 -0700480 msginfo.msgmap = atomic_read(&ns->msg_hdrs);
481 msginfo.msgtql = atomic_read(&ns->msg_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 } else {
483 msginfo.msgmap = MSGMAP;
484 msginfo.msgpool = MSGPOOL;
485 msginfo.msgtql = MSGTQL;
486 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700487 max_id = ipc_get_maxid(&msg_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700488 up_read(&msg_ids(ns).rw_mutex);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700489 if (copy_to_user(buf, &msginfo, sizeof(struct msginfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return -EFAULT;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700491 return (max_id < 0) ? 0 : max_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700493 case MSG_STAT: /* msqid is an index rather than a msg queue id */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 case IPC_STAT:
495 {
496 struct msqid64_ds tbuf;
497 int success_return;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (!buf)
500 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Ingo Molnar5a06a362006-07-30 03:04:11 -0700502 if (cmd == MSG_STAT) {
Nadia Derbey023a5352007-10-18 23:40:51 -0700503 msq = msg_lock(ns, msqid);
504 if (IS_ERR(msq))
505 return PTR_ERR(msq);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700506 success_return = msq->q_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 } else {
Nadia Derbey023a5352007-10-18 23:40:51 -0700508 msq = msg_lock_check(ns, msqid);
509 if (IS_ERR(msq))
510 return PTR_ERR(msq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 success_return = 0;
512 }
513 err = -EACCES;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700514 if (ipcperms(&msq->q_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 goto out_unlock;
516
517 err = security_msg_queue_msgctl(msq, cmd);
518 if (err)
519 goto out_unlock;
520
Nadia Derbey023a5352007-10-18 23:40:51 -0700521 memset(&tbuf, 0, sizeof(tbuf));
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 kernel_to_ipc64_perm(&msq->q_perm, &tbuf.msg_perm);
524 tbuf.msg_stime = msq->q_stime;
525 tbuf.msg_rtime = msq->q_rtime;
526 tbuf.msg_ctime = msq->q_ctime;
527 tbuf.msg_cbytes = msq->q_cbytes;
528 tbuf.msg_qnum = msq->q_qnum;
529 tbuf.msg_qbytes = msq->q_qbytes;
530 tbuf.msg_lspid = msq->q_lspid;
531 tbuf.msg_lrpid = msq->q_lrpid;
532 msg_unlock(msq);
533 if (copy_msqid_to_user(buf, &tbuf, version))
534 return -EFAULT;
535 return success_return;
536 }
537 case IPC_SET:
538 if (!buf)
539 return -EFAULT;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700540 if (copy_msqid_from_user(&setbuf, buf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 break;
543 case IPC_RMID:
544 break;
545 default:
546 return -EINVAL;
547 }
548
Nadia Derbey3e148c72007-10-18 23:40:54 -0700549 down_write(&msg_ids(ns).rw_mutex);
550 msq = msg_lock_check_down(ns, msqid);
Nadia Derbey023a5352007-10-18 23:40:51 -0700551 if (IS_ERR(msq)) {
552 err = PTR_ERR(msq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 goto out_up;
Nadia Derbey023a5352007-10-18 23:40:51 -0700554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 ipcp = &msq->q_perm;
Steve Grubb073115d2006-04-02 17:07:33 -0400557
558 err = audit_ipc_obj(ipcp);
559 if (err)
560 goto out_unlock_up;
Jeff Garzik8e1c0912007-07-17 05:40:59 -0400561 if (cmd == IPC_SET) {
Ingo Molnar5a06a362006-07-30 03:04:11 -0700562 err = audit_ipc_set_perm(setbuf.qbytes, setbuf.uid, setbuf.gid,
563 setbuf.mode);
Linda Knippersac032212006-05-16 22:03:48 -0400564 if (err)
565 goto out_unlock_up;
566 }
Steve Grubb073115d2006-04-02 17:07:33 -0400567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 err = -EPERM;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700569 if (current->euid != ipcp->cuid &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 current->euid != ipcp->uid && !capable(CAP_SYS_ADMIN))
Ingo Molnar5a06a362006-07-30 03:04:11 -0700571 /* We _could_ check for CAP_CHOWN above, but we don't */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 goto out_unlock_up;
573
574 err = security_msg_queue_msgctl(msq, cmd);
575 if (err)
576 goto out_unlock_up;
577
578 switch (cmd) {
579 case IPC_SET:
580 {
581 err = -EPERM;
Kirill Korotaev1e786932006-10-02 02:18:21 -0700582 if (setbuf.qbytes > ns->msg_ctlmnb && !capable(CAP_SYS_RESOURCE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 goto out_unlock_up;
584
585 msq->q_qbytes = setbuf.qbytes;
586
587 ipcp->uid = setbuf.uid;
588 ipcp->gid = setbuf.gid;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700589 ipcp->mode = (ipcp->mode & ~S_IRWXUGO) |
590 (S_IRWXUGO & setbuf.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 msq->q_ctime = get_seconds();
592 /* sleeping receivers might be excluded by
593 * stricter permissions.
594 */
Ingo Molnar5a06a362006-07-30 03:04:11 -0700595 expunge_all(msq, -EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* sleeping senders might be able to send
597 * due to a larger queue size.
598 */
Ingo Molnar5a06a362006-07-30 03:04:11 -0700599 ss_wakeup(&msq->q_senders, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 msg_unlock(msq);
601 break;
602 }
603 case IPC_RMID:
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800604 freeque(ns, &msq->q_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 break;
606 }
607 err = 0;
608out_up:
Nadia Derbey3e148c72007-10-18 23:40:54 -0700609 up_write(&msg_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return err;
611out_unlock_up:
612 msg_unlock(msq);
613 goto out_up;
614out_unlock:
615 msg_unlock(msq);
616 return err;
617}
618
Ingo Molnar5a06a362006-07-30 03:04:11 -0700619static int testmsg(struct msg_msg *msg, long type, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
621 switch(mode)
622 {
623 case SEARCH_ANY:
624 return 1;
625 case SEARCH_LESSEQUAL:
Ingo Molnar5a06a362006-07-30 03:04:11 -0700626 if (msg->m_type <=type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return 1;
628 break;
629 case SEARCH_EQUAL:
Ingo Molnar5a06a362006-07-30 03:04:11 -0700630 if (msg->m_type == type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return 1;
632 break;
633 case SEARCH_NOTEQUAL:
Ingo Molnar5a06a362006-07-30 03:04:11 -0700634 if (msg->m_type != type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 1;
636 break;
637 }
638 return 0;
639}
640
Ingo Molnar5a06a362006-07-30 03:04:11 -0700641static inline int pipelined_send(struct msg_queue *msq, struct msg_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Ingo Molnar5a06a362006-07-30 03:04:11 -0700643 struct list_head *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 tmp = msq->q_receivers.next;
646 while (tmp != &msq->q_receivers) {
Ingo Molnar5a06a362006-07-30 03:04:11 -0700647 struct msg_receiver *msr;
648
649 msr = list_entry(tmp, struct msg_receiver, r_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 tmp = tmp->next;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700651 if (testmsg(msg, msr->r_msgtype, msr->r_mode) &&
652 !security_msg_queue_msgrcv(msq, msg, msr->r_tsk,
653 msr->r_msgtype, msr->r_mode)) {
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 list_del(&msr->r_list);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700656 if (msr->r_maxsize < msg->m_ts) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 msr->r_msg = NULL;
658 wake_up_process(msr->r_tsk);
659 smp_mb();
660 msr->r_msg = ERR_PTR(-E2BIG);
661 } else {
662 msr->r_msg = NULL;
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700663 msq->q_lrpid = task_pid_vnr(msr->r_tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 msq->q_rtime = get_seconds();
665 wake_up_process(msr->r_tsk);
666 smp_mb();
667 msr->r_msg = msg;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return 1;
670 }
671 }
672 }
673 return 0;
674}
675
suzuki651971c2006-12-06 20:37:48 -0800676long do_msgsnd(int msqid, long mtype, void __user *mtext,
677 size_t msgsz, int msgflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679 struct msg_queue *msq;
680 struct msg_msg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 int err;
Kirill Korotaev1e786932006-10-02 02:18:21 -0700682 struct ipc_namespace *ns;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700683
Kirill Korotaev1e786932006-10-02 02:18:21 -0700684 ns = current->nsproxy->ipc_ns;
685
686 if (msgsz > ns->msg_ctlmax || (long) msgsz < 0 || msqid < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (mtype < 1)
689 return -EINVAL;
690
suzuki651971c2006-12-06 20:37:48 -0800691 msg = load_msg(mtext, msgsz);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700692 if (IS_ERR(msg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return PTR_ERR(msg);
694
695 msg->m_type = mtype;
696 msg->m_ts = msgsz;
697
Nadia Derbey023a5352007-10-18 23:40:51 -0700698 msq = msg_lock_check(ns, msqid);
699 if (IS_ERR(msq)) {
700 err = PTR_ERR(msq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 goto out_free;
Nadia Derbey023a5352007-10-18 23:40:51 -0700702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 for (;;) {
705 struct msg_sender s;
706
Ingo Molnar5a06a362006-07-30 03:04:11 -0700707 err = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (ipcperms(&msq->q_perm, S_IWUGO))
709 goto out_unlock_free;
710
711 err = security_msg_queue_msgsnd(msq, msg, msgflg);
712 if (err)
713 goto out_unlock_free;
714
Ingo Molnar5a06a362006-07-30 03:04:11 -0700715 if (msgsz + msq->q_cbytes <= msq->q_qbytes &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 1 + msq->q_qnum <= msq->q_qbytes) {
717 break;
718 }
719
720 /* queue full, wait: */
Ingo Molnar5a06a362006-07-30 03:04:11 -0700721 if (msgflg & IPC_NOWAIT) {
722 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 goto out_unlock_free;
724 }
725 ss_add(msq, &s);
726 ipc_rcu_getref(msq);
727 msg_unlock(msq);
728 schedule();
729
730 ipc_lock_by_ptr(&msq->q_perm);
731 ipc_rcu_putref(msq);
732 if (msq->q_perm.deleted) {
733 err = -EIDRM;
734 goto out_unlock_free;
735 }
736 ss_del(&s);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (signal_pending(current)) {
Ingo Molnar5a06a362006-07-30 03:04:11 -0700739 err = -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 goto out_unlock_free;
741 }
742 }
743
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700744 msq->q_lspid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 msq->q_stime = get_seconds();
746
Ingo Molnar5a06a362006-07-30 03:04:11 -0700747 if (!pipelined_send(msq, msg)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* noone is waiting for this message, enqueue it */
Ingo Molnar5a06a362006-07-30 03:04:11 -0700749 list_add_tail(&msg->m_list, &msq->q_messages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 msq->q_cbytes += msgsz;
751 msq->q_qnum++;
Kirill Korotaev3ac88a42007-10-18 23:40:56 -0700752 atomic_add(msgsz, &ns->msg_bytes);
753 atomic_inc(&ns->msg_hdrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Ingo Molnar5a06a362006-07-30 03:04:11 -0700755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 err = 0;
757 msg = NULL;
758
759out_unlock_free:
760 msg_unlock(msq);
761out_free:
Ingo Molnar5a06a362006-07-30 03:04:11 -0700762 if (msg != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 free_msg(msg);
764 return err;
765}
766
suzuki651971c2006-12-06 20:37:48 -0800767asmlinkage long
768sys_msgsnd(int msqid, struct msgbuf __user *msgp, size_t msgsz, int msgflg)
769{
770 long mtype;
771
772 if (get_user(mtype, &msgp->mtype))
773 return -EFAULT;
774 return do_msgsnd(msqid, mtype, msgp->mtext, msgsz, msgflg);
775}
776
Ingo Molnar5a06a362006-07-30 03:04:11 -0700777static inline int convert_mode(long *msgtyp, int msgflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Ingo Molnar5a06a362006-07-30 03:04:11 -0700779 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 * find message of correct type.
781 * msgtyp = 0 => get first.
782 * msgtyp > 0 => get first message of matching type.
Ingo Molnar5a06a362006-07-30 03:04:11 -0700783 * msgtyp < 0 => get message with least type must be < abs(msgtype).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 */
Ingo Molnar5a06a362006-07-30 03:04:11 -0700785 if (*msgtyp == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return SEARCH_ANY;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700787 if (*msgtyp < 0) {
788 *msgtyp = -*msgtyp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return SEARCH_LESSEQUAL;
790 }
Ingo Molnar5a06a362006-07-30 03:04:11 -0700791 if (msgflg & MSG_EXCEPT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return SEARCH_NOTEQUAL;
793 return SEARCH_EQUAL;
794}
795
suzuki651971c2006-12-06 20:37:48 -0800796long do_msgrcv(int msqid, long *pmtype, void __user *mtext,
797 size_t msgsz, long msgtyp, int msgflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 struct msg_queue *msq;
800 struct msg_msg *msg;
801 int mode;
Kirill Korotaev1e786932006-10-02 02:18:21 -0700802 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (msqid < 0 || (long) msgsz < 0)
805 return -EINVAL;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700806 mode = convert_mode(&msgtyp, msgflg);
Kirill Korotaev1e786932006-10-02 02:18:21 -0700807 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Nadia Derbey023a5352007-10-18 23:40:51 -0700809 msq = msg_lock_check(ns, msqid);
810 if (IS_ERR(msq))
811 return PTR_ERR(msq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 for (;;) {
814 struct msg_receiver msr_d;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700815 struct list_head *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 msg = ERR_PTR(-EACCES);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700818 if (ipcperms(&msq->q_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 goto out_unlock;
820
821 msg = ERR_PTR(-EAGAIN);
822 tmp = msq->q_messages.next;
823 while (tmp != &msq->q_messages) {
824 struct msg_msg *walk_msg;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700825
826 walk_msg = list_entry(tmp, struct msg_msg, m_list);
827 if (testmsg(walk_msg, msgtyp, mode) &&
828 !security_msg_queue_msgrcv(msq, walk_msg, current,
829 msgtyp, mode)) {
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 msg = walk_msg;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700832 if (mode == SEARCH_LESSEQUAL &&
833 walk_msg->m_type != 1) {
834 msg = walk_msg;
835 msgtyp = walk_msg->m_type - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 } else {
Ingo Molnar5a06a362006-07-30 03:04:11 -0700837 msg = walk_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 break;
839 }
840 }
841 tmp = tmp->next;
842 }
Ingo Molnar5a06a362006-07-30 03:04:11 -0700843 if (!IS_ERR(msg)) {
844 /*
845 * Found a suitable message.
846 * Unlink it from the queue.
847 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if ((msgsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) {
849 msg = ERR_PTR(-E2BIG);
850 goto out_unlock;
851 }
852 list_del(&msg->m_list);
853 msq->q_qnum--;
854 msq->q_rtime = get_seconds();
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700855 msq->q_lrpid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 msq->q_cbytes -= msg->m_ts;
Kirill Korotaev3ac88a42007-10-18 23:40:56 -0700857 atomic_sub(msg->m_ts, &ns->msg_bytes);
858 atomic_dec(&ns->msg_hdrs);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700859 ss_wakeup(&msq->q_senders, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 msg_unlock(msq);
861 break;
862 }
863 /* No message waiting. Wait for a message */
864 if (msgflg & IPC_NOWAIT) {
865 msg = ERR_PTR(-ENOMSG);
866 goto out_unlock;
867 }
Ingo Molnar5a06a362006-07-30 03:04:11 -0700868 list_add_tail(&msr_d.r_list, &msq->q_receivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 msr_d.r_tsk = current;
870 msr_d.r_msgtype = msgtyp;
871 msr_d.r_mode = mode;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700872 if (msgflg & MSG_NOERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 msr_d.r_maxsize = INT_MAX;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700874 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 msr_d.r_maxsize = msgsz;
876 msr_d.r_msg = ERR_PTR(-EAGAIN);
877 current->state = TASK_INTERRUPTIBLE;
878 msg_unlock(msq);
879
880 schedule();
881
882 /* Lockless receive, part 1:
883 * Disable preemption. We don't hold a reference to the queue
884 * and getting a reference would defeat the idea of a lockless
885 * operation, thus the code relies on rcu to guarantee the
886 * existance of msq:
887 * Prior to destruction, expunge_all(-EIRDM) changes r_msg.
888 * Thus if r_msg is -EAGAIN, then the queue not yet destroyed.
889 * rcu_read_lock() prevents preemption between reading r_msg
890 * and the spin_lock() inside ipc_lock_by_ptr().
891 */
892 rcu_read_lock();
893
894 /* Lockless receive, part 2:
895 * Wait until pipelined_send or expunge_all are outside of
896 * wake_up_process(). There is a race with exit(), see
897 * ipc/mqueue.c for the details.
898 */
Ingo Molnar5a06a362006-07-30 03:04:11 -0700899 msg = (struct msg_msg*)msr_d.r_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 while (msg == NULL) {
901 cpu_relax();
Ingo Molnar5a06a362006-07-30 03:04:11 -0700902 msg = (struct msg_msg *)msr_d.r_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904
905 /* Lockless receive, part 3:
906 * If there is a message or an error then accept it without
907 * locking.
908 */
Ingo Molnar5a06a362006-07-30 03:04:11 -0700909 if (msg != ERR_PTR(-EAGAIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 rcu_read_unlock();
911 break;
912 }
913
914 /* Lockless receive, part 3:
915 * Acquire the queue spinlock.
916 */
917 ipc_lock_by_ptr(&msq->q_perm);
918 rcu_read_unlock();
919
920 /* Lockless receive, part 4:
921 * Repeat test after acquiring the spinlock.
922 */
923 msg = (struct msg_msg*)msr_d.r_msg;
Ingo Molnar5a06a362006-07-30 03:04:11 -0700924 if (msg != ERR_PTR(-EAGAIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 goto out_unlock;
926
927 list_del(&msr_d.r_list);
928 if (signal_pending(current)) {
929 msg = ERR_PTR(-ERESTARTNOHAND);
930out_unlock:
931 msg_unlock(msq);
932 break;
933 }
934 }
935 if (IS_ERR(msg))
Ingo Molnar5a06a362006-07-30 03:04:11 -0700936 return PTR_ERR(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 msgsz = (msgsz > msg->m_ts) ? msg->m_ts : msgsz;
suzuki651971c2006-12-06 20:37:48 -0800939 *pmtype = msg->m_type;
940 if (store_msg(mtext, msg, msgsz))
Ingo Molnar5a06a362006-07-30 03:04:11 -0700941 msgsz = -EFAULT;
suzuki651971c2006-12-06 20:37:48 -0800942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 free_msg(msg);
Ingo Molnar5a06a362006-07-30 03:04:11 -0700944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return msgsz;
946}
947
suzuki651971c2006-12-06 20:37:48 -0800948asmlinkage long sys_msgrcv(int msqid, struct msgbuf __user *msgp, size_t msgsz,
949 long msgtyp, int msgflg)
950{
951 long err, mtype;
952
953 err = do_msgrcv(msqid, &mtype, msgp->mtext, msgsz, msgtyp, msgflg);
954 if (err < 0)
955 goto out;
956
957 if (put_user(mtype, &msgp->mtype))
958 err = -EFAULT;
959out:
960 return err;
961}
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -0700964static int sysvipc_msg_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Mike Waychison19b49462005-09-06 15:17:10 -0700966 struct msg_queue *msq = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Mike Waychison19b49462005-09-06 15:17:10 -0700968 return seq_printf(s,
Ingo Molnar5a06a362006-07-30 03:04:11 -0700969 "%10d %10d %4o %10lu %10lu %5u %5u %5u %5u %5u %5u %10lu %10lu %10lu\n",
970 msq->q_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700971 msq->q_perm.id,
Ingo Molnar5a06a362006-07-30 03:04:11 -0700972 msq->q_perm.mode,
973 msq->q_cbytes,
974 msq->q_qnum,
975 msq->q_lspid,
976 msq->q_lrpid,
977 msq->q_perm.uid,
978 msq->q_perm.gid,
979 msq->q_perm.cuid,
980 msq->q_perm.cgid,
981 msq->q_stime,
982 msq->q_rtime,
983 msq->q_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985#endif