msg.c 23.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * linux/ipc/msg.c
3
 * Copyright (C) 1992 Krishna Balasubramanian
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14
 *
 * Removed all the remaining kerneld mess
 * Catch the -EFAULT stuff properly
 * Use GFP_KERNEL for messages as in 1.2
 * Fixed up the unchecked user space derefs
 * Copyright (C) 1998 Alan Cox & Andi Kleen
 *
 * /proc/sysvipc/msg support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
 *
 * mostly rewritten, threaded and wake-one semantics added
 * MSGMAX limit removed, sysctl's added
15
 * (c) 1999 Manfred Spraul <manfred@colorfullife.com>
S
Steve Grubb 已提交
16 17 18
 *
 * support for audit of ipc object properties and permission changes
 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
K
Kirill Korotaev 已提交
19 20 21 22
 *
 * namespaces support
 * OpenVZ, SWsoft Inc.
 * Pavel Emelianov <xemul@openvz.org>
L
Linus Torvalds 已提交
23 24
 */

25
#include <linux/capability.h>
L
Linus Torvalds 已提交
26 27 28
#include <linux/msg.h>
#include <linux/spinlock.h>
#include <linux/init.h>
29
#include <linux/mm.h>
L
Linus Torvalds 已提交
30 31 32 33 34 35
#include <linux/proc_fs.h>
#include <linux/list.h>
#include <linux/security.h>
#include <linux/sched.h>
#include <linux/syscalls.h>
#include <linux/audit.h>
36
#include <linux/seq_file.h>
N
Nadia Derbey 已提交
37
#include <linux/rwsem.h>
K
Kirill Korotaev 已提交
38
#include <linux/nsproxy.h>
39
#include <linux/ipc_namespace.h>
I
Ingo Molnar 已提交
40

L
Linus Torvalds 已提交
41 42 43 44
#include <asm/current.h>
#include <asm/uaccess.h>
#include "util.h"

45 46 47
/*
 * one msg_receiver structure for each sleeping receiver:
 */
L
Linus Torvalds 已提交
48
struct msg_receiver {
49 50
	struct list_head	r_list;
	struct task_struct	*r_tsk;
L
Linus Torvalds 已提交
51

52 53 54
	int			r_mode;
	long			r_msgtype;
	long			r_maxsize;
L
Linus Torvalds 已提交
55

56
	struct msg_msg		*volatile r_msg;
L
Linus Torvalds 已提交
57 58 59 60
};

/* one msg_sender for each sleeping sender */
struct msg_sender {
61 62
	struct list_head	list;
	struct task_struct	*tsk;
L
Linus Torvalds 已提交
63 64 65 66 67 68
};

#define SEARCH_ANY		1
#define SEARCH_EQUAL		2
#define SEARCH_NOTEQUAL		3
#define SEARCH_LESSEQUAL	4
69
#define SEARCH_NUMBER		5
L
Linus Torvalds 已提交
70

71
#define msg_ids(ns)	((ns)->ids[IPC_MSG_IDS])
L
Linus Torvalds 已提交
72

K
Kirill Korotaev 已提交
73 74
#define msg_unlock(msq)		ipc_unlock(&(msq)->q_perm)

75
static void freeque(struct ipc_namespace *, struct kern_ipc_perm *);
N
Nadia Derbey 已提交
76
static int newque(struct ipc_namespace *, struct ipc_params *);
L
Linus Torvalds 已提交
77
#ifdef CONFIG_PROC_FS
78
static int sysvipc_msg_proc_show(struct seq_file *s, void *it);
L
Linus Torvalds 已提交
79 80
#endif

81 82 83
/*
 * Scale msgmni with the available lowmem size: the memory dedicated to msg
 * queues should occupy at most 1/MSG_MEM_SCALE of lowmem.
84 85
 * Also take into account the number of nsproxies created so far.
 * This should be done staying within the (MSGMNI , IPCMNI/nr_ipc_ns) range.
86
 */
87
void recompute_msgmni(struct ipc_namespace *ns)
88 89 90
{
	struct sysinfo i;
	unsigned long allowed;
91
	int nb_ns;
92 93 94 95

	si_meminfo(&i);
	allowed = (((i.totalram - i.totalhigh) / MSG_MEM_SCALE) * i.mem_unit)
		/ MSGMNB;
96 97
	nb_ns = atomic_read(&nr_ipc_ns);
	allowed /= nb_ns;
98 99 100

	if (allowed < MSGMNI) {
		ns->msg_ctlmni = MSGMNI;
101
		return;
102 103
	}

104 105
	if (allowed > IPCMNI / nb_ns) {
		ns->msg_ctlmni = IPCMNI / nb_ns;
106
		return;
107 108 109 110 111
	}

	ns->msg_ctlmni = allowed;
}

112
void msg_init_ns(struct ipc_namespace *ns)
K
Kirill Korotaev 已提交
113 114 115
{
	ns->msg_ctlmax = MSGMAX;
	ns->msg_ctlmnb = MSGMNB;
116 117 118

	recompute_msgmni(ns);

119 120
	atomic_set(&ns->msg_bytes, 0);
	atomic_set(&ns->msg_hdrs, 0);
121
	ipc_init_ids(&ns->ids[IPC_MSG_IDS]);
K
Kirill Korotaev 已提交
122 123
}

124
#ifdef CONFIG_IPC_NS
K
Kirill Korotaev 已提交
125 126
void msg_exit_ns(struct ipc_namespace *ns)
{
127
	free_ipcs(ns, &msg_ids(ns), freeque);
S
Serge E. Hallyn 已提交
128
	idr_destroy(&ns->ids[IPC_MSG_IDS].ipcs_idr);
K
Kirill Korotaev 已提交
129
}
130
#endif
K
Kirill Korotaev 已提交
131

132
void __init msg_init(void)
L
Linus Torvalds 已提交
133
{
134
	msg_init_ns(&init_ipc_ns);
135 136 137 138

	printk(KERN_INFO "msgmni has been set to %d\n",
		init_ipc_ns.msg_ctlmni);

139 140
	ipc_init_proc_interface("sysvipc/msg",
				"       key      msqid perms      cbytes       qnum lspid lrpid   uid   gid  cuid  cgid      stime      rtime      ctime\n",
K
Kirill Korotaev 已提交
141
				IPC_MSG_IDS, sysvipc_msg_proc_show);
L
Linus Torvalds 已提交
142 143
}

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
static inline struct msg_queue *msq_obtain_object(struct ipc_namespace *ns, int id)
{
	struct kern_ipc_perm *ipcp = ipc_obtain_object(&msg_ids(ns), id);

	if (IS_ERR(ipcp))
		return ERR_CAST(ipcp);

	return container_of(ipcp, struct msg_queue, q_perm);
}

static inline struct msg_queue *msq_obtain_object_check(struct ipc_namespace *ns,
							int id)
{
	struct kern_ipc_perm *ipcp = ipc_obtain_object_check(&msg_ids(ns), id);

	if (IS_ERR(ipcp))
		return ERR_CAST(ipcp);

	return container_of(ipcp, struct msg_queue, q_perm);
}

N
Nadia Derbey 已提交
165 166 167 168 169
static inline void msg_rmid(struct ipc_namespace *ns, struct msg_queue *s)
{
	ipc_rmid(&msg_ids(ns), &s->q_perm);
}

N
Nadia Derbey 已提交
170 171 172 173 174
/**
 * newque - Create a new msg queue
 * @ns: namespace
 * @params: ptr to the structure that contains the key and msgflg
 *
N
Nadia Derbey 已提交
175
 * Called with msg_ids.rw_mutex held (writer)
N
Nadia Derbey 已提交
176
 */
N
Nadia Derbey 已提交
177
static int newque(struct ipc_namespace *ns, struct ipc_params *params)
L
Linus Torvalds 已提交
178 179
{
	struct msg_queue *msq;
180
	int id, retval;
N
Nadia Derbey 已提交
181 182
	key_t key = params->key;
	int msgflg = params->flg;
L
Linus Torvalds 已提交
183

184 185
	msq = ipc_rcu_alloc(sizeof(*msq));
	if (!msq)
L
Linus Torvalds 已提交
186 187
		return -ENOMEM;

188
	msq->q_perm.mode = msgflg & S_IRWXUGO;
L
Linus Torvalds 已提交
189 190 191 192 193 194 195 196 197
	msq->q_perm.key = key;

	msq->q_perm.security = NULL;
	retval = security_msg_queue_alloc(msq);
	if (retval) {
		ipc_rcu_putref(msq);
		return retval;
	}

198
	/* ipc_addid() locks msq upon success. */
K
Kirill Korotaev 已提交
199
	id = ipc_addid(&msg_ids(ns), &msq->q_perm, ns->msg_ctlmni);
200
	if (id < 0) {
L
Linus Torvalds 已提交
201 202
		security_msg_queue_free(msq);
		ipc_rcu_putref(msq);
203
		return id;
L
Linus Torvalds 已提交
204 205 206 207 208
	}

	msq->q_stime = msq->q_rtime = 0;
	msq->q_ctime = get_seconds();
	msq->q_cbytes = msq->q_qnum = 0;
K
Kirill Korotaev 已提交
209
	msq->q_qbytes = ns->msg_ctlmnb;
L
Linus Torvalds 已提交
210 211 212 213
	msq->q_lspid = msq->q_lrpid = 0;
	INIT_LIST_HEAD(&msq->q_messages);
	INIT_LIST_HEAD(&msq->q_receivers);
	INIT_LIST_HEAD(&msq->q_senders);
N
Nadia Derbey 已提交
214

215
	ipc_unlock_object(&msq->q_perm);
216
	rcu_read_unlock();
L
Linus Torvalds 已提交
217

N
Nadia Derbey 已提交
218
	return msq->q_perm.id;
L
Linus Torvalds 已提交
219 220
}

221
static inline void ss_add(struct msg_queue *msq, struct msg_sender *mss)
L
Linus Torvalds 已提交
222
{
223 224 225
	mss->tsk = current;
	current->state = TASK_INTERRUPTIBLE;
	list_add_tail(&mss->list, &msq->q_senders);
L
Linus Torvalds 已提交
226 227
}

228
static inline void ss_del(struct msg_sender *mss)
L
Linus Torvalds 已提交
229
{
230
	if (mss->list.next != NULL)
L
Linus Torvalds 已提交
231 232 233
		list_del(&mss->list);
}

234
static void ss_wakeup(struct list_head *h, int kill)
L
Linus Torvalds 已提交
235
{
236
	struct msg_sender *mss, *t;
L
Linus Torvalds 已提交
237

238
	list_for_each_entry_safe(mss, t, h, list) {
239 240
		if (kill)
			mss->list.next = NULL;
L
Linus Torvalds 已提交
241 242 243 244
		wake_up_process(mss->tsk);
	}
}

245
static void expunge_all(struct msg_queue *msq, int res)
L
Linus Torvalds 已提交
246
{
247
	struct msg_receiver *msr, *t;
248

249
	list_for_each_entry_safe(msr, t, &msq->q_receivers, r_list) {
L
Linus Torvalds 已提交
250 251 252 253 254 255
		msr->r_msg = NULL;
		wake_up_process(msr->r_tsk);
		smp_mb();
		msr->r_msg = ERR_PTR(res);
	}
}
256 257 258

/*
 * freeque() wakes up waiters on the sender and receiver waiting queue,
N
Nadia Derbey 已提交
259 260
 * removes the message queue from message queue ID IDR, and cleans up all the
 * messages associated with this queue.
L
Linus Torvalds 已提交
261
 *
N
Nadia Derbey 已提交
262 263
 * msg_ids.rw_mutex (writer) and the spinlock for this message queue are held
 * before freeque() is called. msg_ids.rw_mutex remains locked on exit.
L
Linus Torvalds 已提交
264
 */
265
static void freeque(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
L
Linus Torvalds 已提交
266
{
267
	struct msg_msg *msg, *t;
268
	struct msg_queue *msq = container_of(ipcp, struct msg_queue, q_perm);
L
Linus Torvalds 已提交
269

270 271
	expunge_all(msq, -EIDRM);
	ss_wakeup(&msq->q_senders, 1);
N
Nadia Derbey 已提交
272
	msg_rmid(ns, msq);
L
Linus Torvalds 已提交
273
	msg_unlock(msq);
274

275
	list_for_each_entry_safe(msg, t, &msq->q_messages, m_list) {
276
		atomic_dec(&ns->msg_hdrs);
L
Linus Torvalds 已提交
277 278
		free_msg(msg);
	}
279
	atomic_sub(msq->q_cbytes, &ns->msg_bytes);
L
Linus Torvalds 已提交
280 281 282 283
	security_msg_queue_free(msq);
	ipc_rcu_putref(msq);
}

N
Nadia Derbey 已提交
284
/*
N
Nadia Derbey 已提交
285
 * Called with msg_ids.rw_mutex and ipcp locked.
N
Nadia Derbey 已提交
286
 */
N
Nadia Derbey 已提交
287
static inline int msg_security(struct kern_ipc_perm *ipcp, int msgflg)
N
Nadia Derbey 已提交
288
{
N
Nadia Derbey 已提交
289 290 291
	struct msg_queue *msq = container_of(ipcp, struct msg_queue, q_perm);

	return security_msg_queue_associate(msq, msgflg);
N
Nadia Derbey 已提交
292 293
}

294
SYSCALL_DEFINE2(msgget, key_t, key, int, msgflg)
L
Linus Torvalds 已提交
295
{
K
Kirill Korotaev 已提交
296
	struct ipc_namespace *ns;
N
Nadia Derbey 已提交
297 298
	struct ipc_ops msg_ops;
	struct ipc_params msg_params;
K
Kirill Korotaev 已提交
299 300

	ns = current->nsproxy->ipc_ns;
N
Nadia Derbey 已提交
301

N
Nadia Derbey 已提交
302 303 304 305 306 307
	msg_ops.getnew = newque;
	msg_ops.associate = msg_security;
	msg_ops.more_checks = NULL;

	msg_params.key = key;
	msg_params.flg = msgflg;
308

N
Nadia Derbey 已提交
309
	return ipcget(ns, &msg_ids(ns), &msg_ops, &msg_params);
L
Linus Torvalds 已提交
310 311
}

312 313
static inline unsigned long
copy_msqid_to_user(void __user *buf, struct msqid64_ds *in, int version)
L
Linus Torvalds 已提交
314 315 316
{
	switch(version) {
	case IPC_64:
317
		return copy_to_user(buf, in, sizeof(*in));
L
Linus Torvalds 已提交
318
	case IPC_OLD:
319
	{
L
Linus Torvalds 已提交
320 321
		struct msqid_ds out;

322
		memset(&out, 0, sizeof(out));
L
Linus Torvalds 已提交
323 324 325 326 327 328 329

		ipc64_perm_to_ipc_perm(&in->msg_perm, &out.msg_perm);

		out.msg_stime		= in->msg_stime;
		out.msg_rtime		= in->msg_rtime;
		out.msg_ctime		= in->msg_ctime;

330 331
		if (in->msg_cbytes > USHRT_MAX)
			out.msg_cbytes	= USHRT_MAX;
L
Linus Torvalds 已提交
332 333 334 335
		else
			out.msg_cbytes	= in->msg_cbytes;
		out.msg_lcbytes		= in->msg_cbytes;

336 337
		if (in->msg_qnum > USHRT_MAX)
			out.msg_qnum	= USHRT_MAX;
L
Linus Torvalds 已提交
338 339 340
		else
			out.msg_qnum	= in->msg_qnum;

341 342
		if (in->msg_qbytes > USHRT_MAX)
			out.msg_qbytes	= USHRT_MAX;
L
Linus Torvalds 已提交
343 344 345 346 347 348 349
		else
			out.msg_qbytes	= in->msg_qbytes;
		out.msg_lqbytes		= in->msg_qbytes;

		out.msg_lspid		= in->msg_lspid;
		out.msg_lrpid		= in->msg_lrpid;

350 351
		return copy_to_user(buf, &out, sizeof(out));
	}
L
Linus Torvalds 已提交
352 353 354 355 356
	default:
		return -EINVAL;
	}
}

357
static inline unsigned long
358
copy_msqid_from_user(struct msqid64_ds *out, void __user *buf, int version)
L
Linus Torvalds 已提交
359 360 361
{
	switch(version) {
	case IPC_64:
362
		if (copy_from_user(out, buf, sizeof(*out)))
L
Linus Torvalds 已提交
363 364 365
			return -EFAULT;
		return 0;
	case IPC_OLD:
366
	{
L
Linus Torvalds 已提交
367 368
		struct msqid_ds tbuf_old;

369
		if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
L
Linus Torvalds 已提交
370 371
			return -EFAULT;

372 373 374
		out->msg_perm.uid      	= tbuf_old.msg_perm.uid;
		out->msg_perm.gid      	= tbuf_old.msg_perm.gid;
		out->msg_perm.mode     	= tbuf_old.msg_perm.mode;
L
Linus Torvalds 已提交
375

376
		if (tbuf_old.msg_qbytes == 0)
377
			out->msg_qbytes	= tbuf_old.msg_lqbytes;
L
Linus Torvalds 已提交
378
		else
379
			out->msg_qbytes	= tbuf_old.msg_qbytes;
L
Linus Torvalds 已提交
380 381

		return 0;
382
	}
L
Linus Torvalds 已提交
383 384 385 386 387
	default:
		return -EINVAL;
	}
}

388 389 390 391 392 393 394
/*
 * This function handles some msgctl commands which require the rw_mutex
 * to be held in write mode.
 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
 */
static int msgctl_down(struct ipc_namespace *ns, int msqid, int cmd,
		       struct msqid_ds __user *buf, int version)
L
Linus Torvalds 已提交
395 396
{
	struct kern_ipc_perm *ipcp;
397
	struct msqid64_ds uninitialized_var(msqid64);
398 399 400 401
	struct msg_queue *msq;
	int err;

	if (cmd == IPC_SET) {
402
		if (copy_msqid_from_user(&msqid64, buf, version))
403 404 405
			return -EFAULT;
	}

406 407 408
	down_write(&msg_ids(ns).rw_mutex);
	rcu_read_lock();

409 410
	ipcp = ipcctl_pre_down_nolock(ns, &msg_ids(ns), msqid, cmd,
				      &msqid64.msg_perm, msqid64.msg_qbytes);
411 412 413 414
	if (IS_ERR(ipcp)) {
		err = PTR_ERR(ipcp);
		goto out_unlock1;
	}
415

416
	msq = container_of(ipcp, struct msg_queue, q_perm);
417 418 419

	err = security_msg_queue_msgctl(msq, cmd);
	if (err)
420
		goto out_unlock1;
421 422 423

	switch (cmd) {
	case IPC_RMID:
424
		ipc_lock_object(&msq->q_perm);
425
		/* freeque unlocks the ipc object and rcu */
426 427 428
		freeque(ns, ipcp);
		goto out_up;
	case IPC_SET:
429
		if (msqid64.msg_qbytes > ns->msg_ctlmnb &&
430 431
		    !capable(CAP_SYS_RESOURCE)) {
			err = -EPERM;
432
			goto out_unlock1;
433 434
		}

435
		ipc_lock_object(&msq->q_perm);
436 437
		err = ipc_update_perm(&msqid64.msg_perm, ipcp);
		if (err)
438
			goto out_unlock0;
439

440
		msq->q_qbytes = msqid64.msg_qbytes;
441 442 443 444 445 446 447 448 449 450 451 452 453

		msq->q_ctime = get_seconds();
		/* sleeping receivers might be excluded by
		 * stricter permissions.
		 */
		expunge_all(msq, -EAGAIN);
		/* sleeping senders might be able to send
		 * due to a larger queue size.
		 */
		ss_wakeup(&msq->q_senders, 0);
		break;
	default:
		err = -EINVAL;
454
		goto out_unlock1;
455
	}
456 457 458 459 460

out_unlock0:
	ipc_unlock_object(&msq->q_perm);
out_unlock1:
	rcu_read_unlock();
461 462 463 464 465
out_up:
	up_write(&msg_ids(ns).rw_mutex);
	return err;
}

466 467
static int msgctl_nolock(struct ipc_namespace *ns, int msqid,
			 int cmd, int version, void __user *buf)
468
{
469
	int err;
470
	struct msg_queue *msq;
L
Linus Torvalds 已提交
471 472

	switch (cmd) {
473 474 475
	case IPC_INFO:
	case MSG_INFO:
	{
L
Linus Torvalds 已提交
476 477
		struct msginfo msginfo;
		int max_id;
478

L
Linus Torvalds 已提交
479 480
		if (!buf)
			return -EFAULT;
481

482 483
		/*
		 * We must not return kernel stack data.
L
Linus Torvalds 已提交
484 485 486 487 488 489 490
		 * due to padding, it's not enough
		 * to set all member fields.
		 */
		err = security_msg_queue_msgctl(NULL, cmd);
		if (err)
			return err;

491
		memset(&msginfo, 0, sizeof(msginfo));
K
Kirill Korotaev 已提交
492 493 494
		msginfo.msgmni = ns->msg_ctlmni;
		msginfo.msgmax = ns->msg_ctlmax;
		msginfo.msgmnb = ns->msg_ctlmnb;
L
Linus Torvalds 已提交
495 496
		msginfo.msgssz = MSGSSZ;
		msginfo.msgseg = MSGSEG;
N
Nadia Derbey 已提交
497
		down_read(&msg_ids(ns).rw_mutex);
L
Linus Torvalds 已提交
498
		if (cmd == MSG_INFO) {
K
Kirill Korotaev 已提交
499
			msginfo.msgpool = msg_ids(ns).in_use;
500 501
			msginfo.msgmap = atomic_read(&ns->msg_hdrs);
			msginfo.msgtql = atomic_read(&ns->msg_bytes);
L
Linus Torvalds 已提交
502 503 504 505 506
		} else {
			msginfo.msgmap = MSGMAP;
			msginfo.msgpool = MSGPOOL;
			msginfo.msgtql = MSGTQL;
		}
N
Nadia Derbey 已提交
507
		max_id = ipc_get_maxid(&msg_ids(ns));
N
Nadia Derbey 已提交
508
		up_read(&msg_ids(ns).rw_mutex);
509
		if (copy_to_user(buf, &msginfo, sizeof(struct msginfo)))
L
Linus Torvalds 已提交
510
			return -EFAULT;
511
		return (max_id < 0) ? 0 : max_id;
L
Linus Torvalds 已提交
512
	}
513 514

	case MSG_STAT:
L
Linus Torvalds 已提交
515 516 517 518
	case IPC_STAT:
	{
		struct msqid64_ds tbuf;
		int success_return;
519

L
Linus Torvalds 已提交
520 521 522
		if (!buf)
			return -EFAULT;

523 524 525
		memset(&tbuf, 0, sizeof(tbuf));

		rcu_read_lock();
526
		if (cmd == MSG_STAT) {
527 528 529 530 531
			msq = msq_obtain_object(ns, msqid);
			if (IS_ERR(msq)) {
				err = PTR_ERR(msq);
				goto out_unlock;
			}
N
Nadia Derbey 已提交
532
			success_return = msq->q_perm.id;
L
Linus Torvalds 已提交
533
		} else {
534 535 536 537 538
			msq = msq_obtain_object_check(ns, msqid);
			if (IS_ERR(msq)) {
				err = PTR_ERR(msq);
				goto out_unlock;
			}
L
Linus Torvalds 已提交
539 540
			success_return = 0;
		}
541

L
Linus Torvalds 已提交
542
		err = -EACCES;
543
		if (ipcperms(ns, &msq->q_perm, S_IRUGO))
L
Linus Torvalds 已提交
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
			goto out_unlock;

		err = security_msg_queue_msgctl(msq, cmd);
		if (err)
			goto out_unlock;

		kernel_to_ipc64_perm(&msq->q_perm, &tbuf.msg_perm);
		tbuf.msg_stime  = msq->q_stime;
		tbuf.msg_rtime  = msq->q_rtime;
		tbuf.msg_ctime  = msq->q_ctime;
		tbuf.msg_cbytes = msq->q_cbytes;
		tbuf.msg_qnum   = msq->q_qnum;
		tbuf.msg_qbytes = msq->q_qbytes;
		tbuf.msg_lspid  = msq->q_lspid;
		tbuf.msg_lrpid  = msq->q_lrpid;
559 560
		rcu_read_unlock();

L
Linus Torvalds 已提交
561 562 563 564
		if (copy_msqid_to_user(buf, &tbuf, version))
			return -EFAULT;
		return success_return;
	}
565

L
Linus Torvalds 已提交
566
	default:
567
		return -EINVAL;
L
Linus Torvalds 已提交
568 569
	}

570
	return err;
L
Linus Torvalds 已提交
571
out_unlock:
572
	rcu_read_unlock();
L
Linus Torvalds 已提交
573 574 575
	return err;
}

576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
SYSCALL_DEFINE3(msgctl, int, msqid, int, cmd, struct msqid_ds __user *, buf)
{
	int version;
	struct ipc_namespace *ns;

	if (msqid < 0 || cmd < 0)
		return -EINVAL;

	version = ipc_parse_version(&cmd);
	ns = current->nsproxy->ipc_ns;

	switch (cmd) {
	case IPC_INFO:
	case MSG_INFO:
	case MSG_STAT:	/* msqid is an index rather than a msg queue id */
	case IPC_STAT:
		return msgctl_nolock(ns, msqid, cmd, version, buf);
	case IPC_SET:
	case IPC_RMID:
		return msgctl_down(ns, msqid, cmd, buf, version);
	default:
		return  -EINVAL;
	}
}

601
static int testmsg(struct msg_msg *msg, long type, int mode)
L
Linus Torvalds 已提交
602 603 604 605
{
	switch(mode)
	{
		case SEARCH_ANY:
606
		case SEARCH_NUMBER:
L
Linus Torvalds 已提交
607 608
			return 1;
		case SEARCH_LESSEQUAL:
609
			if (msg->m_type <=type)
L
Linus Torvalds 已提交
610 611 612
				return 1;
			break;
		case SEARCH_EQUAL:
613
			if (msg->m_type == type)
L
Linus Torvalds 已提交
614 615 616
				return 1;
			break;
		case SEARCH_NOTEQUAL:
617
			if (msg->m_type != type)
L
Linus Torvalds 已提交
618 619 620 621 622 623
				return 1;
			break;
	}
	return 0;
}

624
static inline int pipelined_send(struct msg_queue *msq, struct msg_msg *msg)
L
Linus Torvalds 已提交
625
{
626
	struct msg_receiver *msr, *t;
627

628
	list_for_each_entry_safe(msr, t, &msq->q_receivers, r_list) {
629 630 631 632
		if (testmsg(msg, msr->r_msgtype, msr->r_mode) &&
		    !security_msg_queue_msgrcv(msq, msg, msr->r_tsk,
					       msr->r_msgtype, msr->r_mode)) {

L
Linus Torvalds 已提交
633
			list_del(&msr->r_list);
634
			if (msr->r_maxsize < msg->m_ts) {
L
Linus Torvalds 已提交
635 636 637 638 639 640
				msr->r_msg = NULL;
				wake_up_process(msr->r_tsk);
				smp_mb();
				msr->r_msg = ERR_PTR(-E2BIG);
			} else {
				msr->r_msg = NULL;
641
				msq->q_lrpid = task_pid_vnr(msr->r_tsk);
L
Linus Torvalds 已提交
642 643 644 645
				msq->q_rtime = get_seconds();
				wake_up_process(msr->r_tsk);
				smp_mb();
				msr->r_msg = msg;
646

L
Linus Torvalds 已提交
647 648 649 650 651 652 653
				return 1;
			}
		}
	}
	return 0;
}

654 655
long do_msgsnd(int msqid, long mtype, void __user *mtext,
		size_t msgsz, int msgflg)
L
Linus Torvalds 已提交
656 657 658 659
{
	struct msg_queue *msq;
	struct msg_msg *msg;
	int err;
K
Kirill Korotaev 已提交
660 661 662
	struct ipc_namespace *ns;

	ns = current->nsproxy->ipc_ns;
663

K
Kirill Korotaev 已提交
664
	if (msgsz > ns->msg_ctlmax || (long) msgsz < 0 || msqid < 0)
L
Linus Torvalds 已提交
665 666 667 668
		return -EINVAL;
	if (mtype < 1)
		return -EINVAL;

669
	msg = load_msg(mtext, msgsz);
670
	if (IS_ERR(msg))
L
Linus Torvalds 已提交
671 672 673 674 675
		return PTR_ERR(msg);

	msg->m_type = mtype;
	msg->m_ts = msgsz;

676 677
	rcu_read_lock();
	msq = msq_obtain_object_check(ns, msqid);
678 679
	if (IS_ERR(msq)) {
		err = PTR_ERR(msq);
680
		goto out_unlock1;
681
	}
L
Linus Torvalds 已提交
682 683 684 685

	for (;;) {
		struct msg_sender s;

686
		err = -EACCES;
687
		if (ipcperms(ns, &msq->q_perm, S_IWUGO))
688
			goto out_unlock1;
L
Linus Torvalds 已提交
689 690 691

		err = security_msg_queue_msgsnd(msq, msg, msgflg);
		if (err)
692
			goto out_unlock1;
L
Linus Torvalds 已提交
693

694
		if (msgsz + msq->q_cbytes <= msq->q_qbytes &&
L
Linus Torvalds 已提交
695 696 697 698 699
				1 + msq->q_qnum <= msq->q_qbytes) {
			break;
		}

		/* queue full, wait: */
700 701
		if (msgflg & IPC_NOWAIT) {
			err = -EAGAIN;
702
			goto out_unlock1;
L
Linus Torvalds 已提交
703
		}
704 705

		ipc_lock_object(&msq->q_perm);
L
Linus Torvalds 已提交
706
		ss_add(msq, &s);
707 708 709

		if (!ipc_rcu_getref(msq)) {
			err = -EIDRM;
710
			goto out_unlock0;
711 712
		}

713 714
		ipc_unlock_object(&msq->q_perm);
		rcu_read_unlock();
L
Linus Torvalds 已提交
715 716
		schedule();

717 718 719
		rcu_read_lock();
		ipc_lock_object(&msq->q_perm);

L
Linus Torvalds 已提交
720 721 722
		ipc_rcu_putref(msq);
		if (msq->q_perm.deleted) {
			err = -EIDRM;
723
			goto out_unlock0;
L
Linus Torvalds 已提交
724
		}
725

L
Linus Torvalds 已提交
726
		ss_del(&s);
727

L
Linus Torvalds 已提交
728
		if (signal_pending(current)) {
729
			err = -ERESTARTNOHAND;
730
			goto out_unlock0;
L
Linus Torvalds 已提交
731
		}
732 733

		ipc_unlock_object(&msq->q_perm);
L
Linus Torvalds 已提交
734 735
	}

736
	ipc_lock_object(&msq->q_perm);
737
	msq->q_lspid = task_tgid_vnr(current);
L
Linus Torvalds 已提交
738 739
	msq->q_stime = get_seconds();

740
	if (!pipelined_send(msq, msg)) {
L
Lucas De Marchi 已提交
741
		/* no one is waiting for this message, enqueue it */
742
		list_add_tail(&msg->m_list, &msq->q_messages);
L
Linus Torvalds 已提交
743 744
		msq->q_cbytes += msgsz;
		msq->q_qnum++;
745 746
		atomic_add(msgsz, &ns->msg_bytes);
		atomic_inc(&ns->msg_hdrs);
L
Linus Torvalds 已提交
747
	}
748

L
Linus Torvalds 已提交
749 750 751
	err = 0;
	msg = NULL;

752 753 754 755
out_unlock0:
	ipc_unlock_object(&msq->q_perm);
out_unlock1:
	rcu_read_unlock();
756
	if (msg != NULL)
L
Linus Torvalds 已提交
757 758 759 760
		free_msg(msg);
	return err;
}

761 762
SYSCALL_DEFINE4(msgsnd, int, msqid, struct msgbuf __user *, msgp, size_t, msgsz,
		int, msgflg)
763 764 765 766 767 768 769 770
{
	long mtype;

	if (get_user(mtype, &msgp->mtype))
		return -EFAULT;
	return do_msgsnd(msqid, mtype, msgp->mtext, msgsz, msgflg);
}

771
static inline int convert_mode(long *msgtyp, int msgflg)
L
Linus Torvalds 已提交
772
{
773 774
	if (msgflg & MSG_COPY)
		return SEARCH_NUMBER;
775
	/*
L
Linus Torvalds 已提交
776 777 778
	 *  find message of correct type.
	 *  msgtyp = 0 => get first.
	 *  msgtyp > 0 => get first message of matching type.
779
	 *  msgtyp < 0 => get message with least type must be < abs(msgtype).
L
Linus Torvalds 已提交
780
	 */
781
	if (*msgtyp == 0)
L
Linus Torvalds 已提交
782
		return SEARCH_ANY;
783 784
	if (*msgtyp < 0) {
		*msgtyp = -*msgtyp;
L
Linus Torvalds 已提交
785 786
		return SEARCH_LESSEQUAL;
	}
787
	if (msgflg & MSG_EXCEPT)
L
Linus Torvalds 已提交
788 789 790 791
		return SEARCH_NOTEQUAL;
	return SEARCH_EQUAL;
}

792 793 794 795 796 797 798 799 800 801 802 803 804 805
static long do_msg_fill(void __user *dest, struct msg_msg *msg, size_t bufsz)
{
	struct msgbuf __user *msgp = dest;
	size_t msgsz;

	if (put_user(msg->m_type, &msgp->mtype))
		return -EFAULT;

	msgsz = (bufsz > msg->m_ts) ? msg->m_ts : bufsz;
	if (store_msg(msgp->mtext, msg, msgsz))
		return -EFAULT;
	return msgsz;
}

806
#ifdef CONFIG_CHECKPOINT_RESTORE
807 808 809 810
/*
 * This function creates new kernel message structure, large enough to store
 * bufsz message bytes.
 */
811
static inline struct msg_msg *prepare_copy(void __user *buf, size_t bufsz)
812 813 814 815 816 817 818 819 820 821 822 823
{
	struct msg_msg *copy;

	/*
	 * Create dummy message to copy real message to.
	 */
	copy = load_msg(buf, bufsz);
	if (!IS_ERR(copy))
		copy->m_ts = bufsz;
	return copy;
}

824
static inline void free_copy(struct msg_msg *copy)
825
{
826
	if (copy)
827 828 829
		free_msg(copy);
}
#else
830
static inline struct msg_msg *prepare_copy(void __user *buf, size_t bufsz)
831 832 833 834
{
	return ERR_PTR(-ENOSYS);
}

835 836 837
static inline void free_copy(struct msg_msg *copy)
{
}
838 839
#endif

840 841
static struct msg_msg *find_msg(struct msg_queue *msq, long *msgtyp, int mode)
{
842
	struct msg_msg *msg, *found = NULL;
843 844 845 846 847 848 849 850
	long count = 0;

	list_for_each_entry(msg, &msq->q_messages, m_list) {
		if (testmsg(msg, *msgtyp, mode) &&
		    !security_msg_queue_msgrcv(msq, msg, current,
					       *msgtyp, mode)) {
			if (mode == SEARCH_LESSEQUAL && msg->m_type != 1) {
				*msgtyp = msg->m_type - 1;
851
				found = msg;
852 853 854 855 856 857 858 859 860
			} else if (mode == SEARCH_NUMBER) {
				if (*msgtyp == count)
					return msg;
			} else
				return msg;
			count++;
		}
	}

861
	return found ?: ERR_PTR(-EAGAIN);
862 863
}

864
long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgflg,
865
	       long (*msg_handler)(void __user *, struct msg_msg *, size_t))
L
Linus Torvalds 已提交
866 867
{
	int mode;
868
	struct msg_queue *msq;
K
Kirill Korotaev 已提交
869
	struct ipc_namespace *ns;
870
	struct msg_msg *msg, *copy = NULL;
L
Linus Torvalds 已提交
871

872 873
	ns = current->nsproxy->ipc_ns;

874
	if (msqid < 0 || (long) bufsz < 0)
L
Linus Torvalds 已提交
875
		return -EINVAL;
876

877
	if (msgflg & MSG_COPY) {
878
		copy = prepare_copy(buf, min_t(size_t, bufsz, ns->msg_ctlmax));
879 880 881
		if (IS_ERR(copy))
			return PTR_ERR(copy);
	}
882
	mode = convert_mode(&msgtyp, msgflg);
L
Linus Torvalds 已提交
883

884 885
	rcu_read_lock();
	msq = msq_obtain_object_check(ns, msqid);
886
	if (IS_ERR(msq)) {
887
		rcu_read_unlock();
888
		free_copy(copy);
889
		return PTR_ERR(msq);
890
	}
L
Linus Torvalds 已提交
891 892 893 894 895

	for (;;) {
		struct msg_receiver msr_d;

		msg = ERR_PTR(-EACCES);
896
		if (ipcperms(ns, &msq->q_perm, S_IRUGO))
897
			goto out_unlock1;
L
Linus Torvalds 已提交
898

899
		ipc_lock_object(&msq->q_perm);
900
		msg = find_msg(msq, &msgtyp, mode);
901 902 903 904 905
		if (!IS_ERR(msg)) {
			/*
			 * Found a suitable message.
			 * Unlink it from the queue.
			 */
906
			if ((bufsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) {
L
Linus Torvalds 已提交
907
				msg = ERR_PTR(-E2BIG);
908
				goto out_unlock0;
L
Linus Torvalds 已提交
909
			}
910 911 912 913
			/*
			 * If we are copying, then do not unlink message and do
			 * not update queue parameters.
			 */
914 915
			if (msgflg & MSG_COPY) {
				msg = copy_msg(msg, copy);
916
				goto out_unlock0;
917
			}
918

L
Linus Torvalds 已提交
919 920 921
			list_del(&msg->m_list);
			msq->q_qnum--;
			msq->q_rtime = get_seconds();
922
			msq->q_lrpid = task_tgid_vnr(current);
L
Linus Torvalds 已提交
923
			msq->q_cbytes -= msg->m_ts;
924 925
			atomic_sub(msg->m_ts, &ns->msg_bytes);
			atomic_dec(&ns->msg_hdrs);
926
			ss_wakeup(&msq->q_senders, 0);
927 928

			goto out_unlock0;
L
Linus Torvalds 已提交
929
		}
930

L
Linus Torvalds 已提交
931 932 933
		/* No message waiting. Wait for a message */
		if (msgflg & IPC_NOWAIT) {
			msg = ERR_PTR(-ENOMSG);
934
			goto out_unlock0;
L
Linus Torvalds 已提交
935
		}
936

937
		list_add_tail(&msr_d.r_list, &msq->q_receivers);
L
Linus Torvalds 已提交
938 939 940
		msr_d.r_tsk = current;
		msr_d.r_msgtype = msgtyp;
		msr_d.r_mode = mode;
941
		if (msgflg & MSG_NOERROR)
L
Linus Torvalds 已提交
942
			msr_d.r_maxsize = INT_MAX;
943
		else
944
			msr_d.r_maxsize = bufsz;
L
Linus Torvalds 已提交
945 946 947
		msr_d.r_msg = ERR_PTR(-EAGAIN);
		current->state = TASK_INTERRUPTIBLE;

948 949
		ipc_unlock_object(&msq->q_perm);
		rcu_read_unlock();
L
Linus Torvalds 已提交
950 951 952 953 954 955
		schedule();

		/* Lockless receive, part 1:
		 * Disable preemption.  We don't hold a reference to the queue
		 * and getting a reference would defeat the idea of a lockless
		 * operation, thus the code relies on rcu to guarantee the
L
Lucas De Marchi 已提交
956
		 * existence of msq:
L
Linus Torvalds 已提交
957 958 959
		 * Prior to destruction, expunge_all(-EIRDM) changes r_msg.
		 * Thus if r_msg is -EAGAIN, then the queue not yet destroyed.
		 * rcu_read_lock() prevents preemption between reading r_msg
960
		 * and acquiring the q_perm.lock in ipc_lock_object().
L
Linus Torvalds 已提交
961 962 963 964 965 966 967 968
		 */
		rcu_read_lock();

		/* Lockless receive, part 2:
		 * Wait until pipelined_send or expunge_all are outside of
		 * wake_up_process(). There is a race with exit(), see
		 * ipc/mqueue.c for the details.
		 */
969
		msg = (struct msg_msg*)msr_d.r_msg;
L
Linus Torvalds 已提交
970 971
		while (msg == NULL) {
			cpu_relax();
972
			msg = (struct msg_msg *)msr_d.r_msg;
L
Linus Torvalds 已提交
973 974 975 976 977 978
		}

		/* Lockless receive, part 3:
		 * If there is a message or an error then accept it without
		 * locking.
		 */
979 980
		if (msg != ERR_PTR(-EAGAIN))
			goto out_unlock1;
L
Linus Torvalds 已提交
981 982 983 984

		/* Lockless receive, part 3:
		 * Acquire the queue spinlock.
		 */
985
		ipc_lock_object(&msq->q_perm);
L
Linus Torvalds 已提交
986 987 988 989 990

		/* Lockless receive, part 4:
		 * Repeat test after acquiring the spinlock.
		 */
		msg = (struct msg_msg*)msr_d.r_msg;
991
		if (msg != ERR_PTR(-EAGAIN))
992
			goto out_unlock0;
L
Linus Torvalds 已提交
993 994 995 996

		list_del(&msr_d.r_list);
		if (signal_pending(current)) {
			msg = ERR_PTR(-ERESTARTNOHAND);
997
			goto out_unlock0;
L
Linus Torvalds 已提交
998
		}
999 1000

		ipc_unlock_object(&msq->q_perm);
L
Linus Torvalds 已提交
1001
	}
1002 1003 1004 1005 1006

out_unlock0:
	ipc_unlock_object(&msq->q_perm);
out_unlock1:
	rcu_read_unlock();
1007
	if (IS_ERR(msg)) {
1008
		free_copy(copy);
1009
		return PTR_ERR(msg);
1010
	}
L
Linus Torvalds 已提交
1011

1012
	bufsz = msg_handler(buf, msg, bufsz);
L
Linus Torvalds 已提交
1013
	free_msg(msg);
1014

1015
	return bufsz;
L
Linus Torvalds 已提交
1016 1017
}

1018 1019
SYSCALL_DEFINE5(msgrcv, int, msqid, struct msgbuf __user *, msgp, size_t, msgsz,
		long, msgtyp, int, msgflg)
1020
{
1021
	return do_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg, do_msg_fill);
1022 1023
}

L
Linus Torvalds 已提交
1024
#ifdef CONFIG_PROC_FS
1025
static int sysvipc_msg_proc_show(struct seq_file *s, void *it)
L
Linus Torvalds 已提交
1026
{
1027
	struct user_namespace *user_ns = seq_user_ns(s);
1028 1029 1030
	struct msg_queue *msq = it;

	return seq_printf(s,
1031 1032
			"%10d %10d  %4o  %10lu %10lu %5u %5u %5u %5u %5u %5u %10lu %10lu %10lu\n",
			msq->q_perm.key,
N
Nadia Derbey 已提交
1033
			msq->q_perm.id,
1034 1035 1036 1037 1038
			msq->q_perm.mode,
			msq->q_cbytes,
			msq->q_qnum,
			msq->q_lspid,
			msq->q_lrpid,
1039 1040 1041 1042
			from_kuid_munged(user_ns, msq->q_perm.uid),
			from_kgid_munged(user_ns, msq->q_perm.gid),
			from_kuid_munged(user_ns, msq->q_perm.cuid),
			from_kgid_munged(user_ns, msq->q_perm.cgid),
1043 1044 1045
			msq->q_stime,
			msq->q_rtime,
			msq->q_ctime);
L
Linus Torvalds 已提交
1046 1047
}
#endif