]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 LT |
2 | /* |
3 | * linux/ipc/msg.c | |
5a06a363 | 4 | * Copyright (C) 1992 Krishna Balasubramanian |
1da177e4 LT |
5 | * |
6 | * Removed all the remaining kerneld mess | |
7 | * Catch the -EFAULT stuff properly | |
8 | * Use GFP_KERNEL for messages as in 1.2 | |
9 | * Fixed up the unchecked user space derefs | |
10 | * Copyright (C) 1998 Alan Cox & Andi Kleen | |
11 | * | |
12 | * /proc/sysvipc/msg support (c) 1999 Dragos Acostachioaie <[email protected]> | |
13 | * | |
14 | * mostly rewritten, threaded and wake-one semantics added | |
15 | * MSGMAX limit removed, sysctl's added | |
624dffcb | 16 | * (c) 1999 Manfred Spraul <[email protected]> |
073115d6 SG |
17 | * |
18 | * support for audit of ipc object properties and permission changes | |
19 | * Dustin Kirkland <[email protected]> | |
1e786937 KK |
20 | * |
21 | * namespaces support | |
22 | * OpenVZ, SWsoft Inc. | |
23 | * Pavel Emelianov <[email protected]> | |
1da177e4 LT |
24 | */ |
25 | ||
c59ede7b | 26 | #include <linux/capability.h> |
1da177e4 LT |
27 | #include <linux/msg.h> |
28 | #include <linux/spinlock.h> | |
29 | #include <linux/init.h> | |
f7bf3df8 | 30 | #include <linux/mm.h> |
1da177e4 LT |
31 | #include <linux/proc_fs.h> |
32 | #include <linux/list.h> | |
33 | #include <linux/security.h> | |
84f001e1 | 34 | #include <linux/sched/wake_q.h> |
1da177e4 LT |
35 | #include <linux/syscalls.h> |
36 | #include <linux/audit.h> | |
19b4946c | 37 | #include <linux/seq_file.h> |
3e148c79 | 38 | #include <linux/rwsem.h> |
1e786937 | 39 | #include <linux/nsproxy.h> |
ae5e1b22 | 40 | #include <linux/ipc_namespace.h> |
0eb71a9d | 41 | #include <linux/rhashtable.h> |
5f921ae9 | 42 | |
1da177e4 | 43 | #include <asm/current.h> |
7153e402 | 44 | #include <linux/uaccess.h> |
1da177e4 LT |
45 | #include "util.h" |
46 | ||
34b56df9 EB |
47 | /* one msq_queue structure for each present queue on the system */ |
48 | struct msg_queue { | |
49 | struct kern_ipc_perm q_perm; | |
50 | time64_t q_stime; /* last msgsnd time */ | |
51 | time64_t q_rtime; /* last msgrcv time */ | |
52 | time64_t q_ctime; /* last change time */ | |
53 | unsigned long q_cbytes; /* current number of bytes on queue */ | |
54 | unsigned long q_qnum; /* number of messages in queue */ | |
55 | unsigned long q_qbytes; /* max number of bytes on queue */ | |
39a4940e EB |
56 | struct pid *q_lspid; /* pid of last msgsnd */ |
57 | struct pid *q_lrpid; /* last receive pid */ | |
34b56df9 EB |
58 | |
59 | struct list_head q_messages; | |
60 | struct list_head q_receivers; | |
61 | struct list_head q_senders; | |
62 | } __randomize_layout; | |
63 | ||
0d97a82b MS |
64 | /* |
65 | * MSG_BARRIER Locking: | |
66 | * | |
67 | * Similar to the optimization used in ipc/mqueue.c, one syscall return path | |
68 | * does not acquire any locks when it sees that a message exists in | |
69 | * msg_receiver.r_msg. Therefore r_msg is set using smp_store_release() | |
70 | * and accessed using READ_ONCE()+smp_acquire__after_ctrl_dep(). In addition, | |
71 | * wake_q_add_safe() is used. See ipc/mqueue.c for more details | |
72 | */ | |
73 | ||
4bb6657d | 74 | /* one msg_receiver structure for each sleeping receiver */ |
1da177e4 | 75 | struct msg_receiver { |
5a06a363 IM |
76 | struct list_head r_list; |
77 | struct task_struct *r_tsk; | |
1da177e4 | 78 | |
5a06a363 IM |
79 | int r_mode; |
80 | long r_msgtype; | |
81 | long r_maxsize; | |
1da177e4 | 82 | |
ee51636c | 83 | struct msg_msg *r_msg; |
1da177e4 LT |
84 | }; |
85 | ||
86 | /* one msg_sender for each sleeping sender */ | |
87 | struct msg_sender { | |
5a06a363 IM |
88 | struct list_head list; |
89 | struct task_struct *tsk; | |
ed27f912 | 90 | size_t msgsz; |
1da177e4 LT |
91 | }; |
92 | ||
93 | #define SEARCH_ANY 1 | |
94 | #define SEARCH_EQUAL 2 | |
95 | #define SEARCH_NOTEQUAL 3 | |
96 | #define SEARCH_LESSEQUAL 4 | |
8ac6ed58 | 97 | #define SEARCH_NUMBER 5 |
1da177e4 | 98 | |
ed2ddbf8 | 99 | #define msg_ids(ns) ((ns)->ids[IPC_MSG_IDS]) |
1da177e4 | 100 | |
a5001a0d DB |
101 | static inline struct msg_queue *msq_obtain_object(struct ipc_namespace *ns, int id) |
102 | { | |
55b7ae50 | 103 | struct kern_ipc_perm *ipcp = ipc_obtain_object_idr(&msg_ids(ns), id); |
a5001a0d DB |
104 | |
105 | if (IS_ERR(ipcp)) | |
106 | return ERR_CAST(ipcp); | |
107 | ||
108 | return container_of(ipcp, struct msg_queue, q_perm); | |
109 | } | |
110 | ||
111 | static inline struct msg_queue *msq_obtain_object_check(struct ipc_namespace *ns, | |
112 | int id) | |
113 | { | |
114 | struct kern_ipc_perm *ipcp = ipc_obtain_object_check(&msg_ids(ns), id); | |
115 | ||
116 | if (IS_ERR(ipcp)) | |
117 | return ERR_CAST(ipcp); | |
118 | ||
119 | return container_of(ipcp, struct msg_queue, q_perm); | |
120 | } | |
121 | ||
7ca7e564 ND |
122 | static inline void msg_rmid(struct ipc_namespace *ns, struct msg_queue *s) |
123 | { | |
124 | ipc_rmid(&msg_ids(ns), &s->q_perm); | |
125 | } | |
126 | ||
53dad6d3 DB |
127 | static void msg_rcu_free(struct rcu_head *head) |
128 | { | |
dba4cdd3 MS |
129 | struct kern_ipc_perm *p = container_of(head, struct kern_ipc_perm, rcu); |
130 | struct msg_queue *msq = container_of(p, struct msg_queue, q_perm); | |
53dad6d3 | 131 | |
d8c6e854 | 132 | security_msg_queue_free(&msq->q_perm); |
bc8136a5 | 133 | kfree(msq); |
52f90890 KC |
134 | } |
135 | ||
f4566f04 ND |
136 | /** |
137 | * newque - Create a new msg queue | |
138 | * @ns: namespace | |
139 | * @params: ptr to the structure that contains the key and msgflg | |
140 | * | |
d9a605e4 | 141 | * Called with msg_ids.rwsem held (writer) |
f4566f04 | 142 | */ |
7748dbfa | 143 | static int newque(struct ipc_namespace *ns, struct ipc_params *params) |
1da177e4 | 144 | { |
1da177e4 | 145 | struct msg_queue *msq; |
51c23b7b | 146 | int retval; |
7748dbfa ND |
147 | key_t key = params->key; |
148 | int msgflg = params->flg; | |
1da177e4 | 149 | |
18319498 | 150 | msq = kmalloc(sizeof(*msq), GFP_KERNEL_ACCOUNT); |
fb259c31 | 151 | if (unlikely(!msq)) |
1da177e4 LT |
152 | return -ENOMEM; |
153 | ||
5a06a363 | 154 | msq->q_perm.mode = msgflg & S_IRWXUGO; |
1da177e4 LT |
155 | msq->q_perm.key = key; |
156 | ||
157 | msq->q_perm.security = NULL; | |
d8c6e854 | 158 | retval = security_msg_queue_alloc(&msq->q_perm); |
1da177e4 | 159 | if (retval) { |
bc8136a5 | 160 | kfree(msq); |
1da177e4 LT |
161 | return retval; |
162 | } | |
163 | ||
1da177e4 | 164 | msq->q_stime = msq->q_rtime = 0; |
50578ea9 | 165 | msq->q_ctime = ktime_get_real_seconds(); |
1da177e4 | 166 | msq->q_cbytes = msq->q_qnum = 0; |
1e786937 | 167 | msq->q_qbytes = ns->msg_ctlmnb; |
39a4940e | 168 | msq->q_lspid = msq->q_lrpid = NULL; |
1da177e4 LT |
169 | INIT_LIST_HEAD(&msq->q_messages); |
170 | INIT_LIST_HEAD(&msq->q_receivers); | |
171 | INIT_LIST_HEAD(&msq->q_senders); | |
7ca7e564 | 172 | |
b9a53227 | 173 | /* ipc_addid() locks msq upon success. */ |
51c23b7b MS |
174 | retval = ipc_addid(&msg_ids(ns), &msq->q_perm, ns->msg_ctlmni); |
175 | if (retval < 0) { | |
39cfffd7 | 176 | ipc_rcu_putref(&msq->q_perm, msg_rcu_free); |
51c23b7b | 177 | return retval; |
b9a53227 LT |
178 | } |
179 | ||
cf9d5d78 | 180 | ipc_unlock_object(&msq->q_perm); |
dbfcd91f | 181 | rcu_read_unlock(); |
1da177e4 | 182 | |
7ca7e564 | 183 | return msq->q_perm.id; |
1da177e4 LT |
184 | } |
185 | ||
ed27f912 DB |
186 | static inline bool msg_fits_inqueue(struct msg_queue *msq, size_t msgsz) |
187 | { | |
188 | return msgsz + msq->q_cbytes <= msq->q_qbytes && | |
189 | 1 + msq->q_qnum <= msq->q_qbytes; | |
190 | } | |
191 | ||
192 | static inline void ss_add(struct msg_queue *msq, | |
193 | struct msg_sender *mss, size_t msgsz) | |
1da177e4 | 194 | { |
5a06a363 | 195 | mss->tsk = current; |
ed27f912 | 196 | mss->msgsz = msgsz; |
0d97a82b MS |
197 | /* |
198 | * No memory barrier required: we did ipc_lock_object(), | |
199 | * and the waker obtains that lock before calling wake_q_add(). | |
200 | */ | |
f75a2f35 | 201 | __set_current_state(TASK_INTERRUPTIBLE); |
5a06a363 | 202 | list_add_tail(&mss->list, &msq->q_senders); |
1da177e4 LT |
203 | } |
204 | ||
5a06a363 | 205 | static inline void ss_del(struct msg_sender *mss) |
1da177e4 | 206 | { |
ed27f912 | 207 | if (mss->list.next) |
1da177e4 LT |
208 | list_del(&mss->list); |
209 | } | |
210 | ||
ed27f912 | 211 | static void ss_wakeup(struct msg_queue *msq, |
d0d6a2a9 | 212 | struct wake_q_head *wake_q, bool kill) |
1da177e4 | 213 | { |
41239fe8 | 214 | struct msg_sender *mss, *t; |
ed27f912 DB |
215 | struct task_struct *stop_tsk = NULL; |
216 | struct list_head *h = &msq->q_senders; | |
1da177e4 | 217 | |
41239fe8 | 218 | list_for_each_entry_safe(mss, t, h, list) { |
5a06a363 IM |
219 | if (kill) |
220 | mss->list.next = NULL; | |
ed27f912 DB |
221 | |
222 | /* | |
223 | * Stop at the first task we don't wakeup, | |
224 | * we've already iterated the original | |
225 | * sender queue. | |
226 | */ | |
227 | else if (stop_tsk == mss->tsk) | |
228 | break; | |
229 | /* | |
230 | * We are not in an EIDRM scenario here, therefore | |
231 | * verify that we really need to wakeup the task. | |
232 | * To maintain current semantics and wakeup order, | |
233 | * move the sender to the tail on behalf of the | |
234 | * blocked task. | |
235 | */ | |
236 | else if (!msg_fits_inqueue(msq, mss->msgsz)) { | |
237 | if (!stop_tsk) | |
238 | stop_tsk = mss->tsk; | |
239 | ||
240 | list_move_tail(&mss->list, &msq->q_senders); | |
241 | continue; | |
242 | } | |
243 | ||
e3658538 | 244 | wake_q_add(wake_q, mss->tsk); |
1da177e4 LT |
245 | } |
246 | } | |
247 | ||
ee51636c SAS |
248 | static void expunge_all(struct msg_queue *msq, int res, |
249 | struct wake_q_head *wake_q) | |
1da177e4 | 250 | { |
41239fe8 | 251 | struct msg_receiver *msr, *t; |
5a06a363 | 252 | |
41239fe8 | 253 | list_for_each_entry_safe(msr, t, &msq->q_receivers, r_list) { |
a11ddb37 VG |
254 | struct task_struct *r_tsk; |
255 | ||
256 | r_tsk = get_task_struct(msr->r_tsk); | |
0d97a82b MS |
257 | |
258 | /* see MSG_BARRIER for purpose/pairing */ | |
259 | smp_store_release(&msr->r_msg, ERR_PTR(res)); | |
a11ddb37 | 260 | wake_q_add_safe(wake_q, r_tsk); |
1da177e4 LT |
261 | } |
262 | } | |
5a06a363 IM |
263 | |
264 | /* | |
265 | * freeque() wakes up waiters on the sender and receiver waiting queue, | |
f4566f04 ND |
266 | * removes the message queue from message queue ID IDR, and cleans up all the |
267 | * messages associated with this queue. | |
1da177e4 | 268 | * |
d9a605e4 DB |
269 | * msg_ids.rwsem (writer) and the spinlock for this message queue are held |
270 | * before freeque() is called. msg_ids.rwsem remains locked on exit. | |
1da177e4 | 271 | */ |
01b8b07a | 272 | static void freeque(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp) |
4b78e201 JI |
273 | __releases(RCU) |
274 | __releases(&msq->q_perm) | |
1da177e4 | 275 | { |
41239fe8 | 276 | struct msg_msg *msg, *t; |
01b8b07a | 277 | struct msg_queue *msq = container_of(ipcp, struct msg_queue, q_perm); |
194a6b5b | 278 | DEFINE_WAKE_Q(wake_q); |
1da177e4 | 279 | |
ee51636c | 280 | expunge_all(msq, -EIDRM, &wake_q); |
ed27f912 | 281 | ss_wakeup(msq, &wake_q, true); |
7ca7e564 | 282 | msg_rmid(ns, msq); |
4718787d | 283 | ipc_unlock_object(&msq->q_perm); |
ee51636c | 284 | wake_up_q(&wake_q); |
4718787d | 285 | rcu_read_unlock(); |
5a06a363 | 286 | |
41239fe8 | 287 | list_for_each_entry_safe(msg, t, &msq->q_messages, m_list) { |
3ac88a41 | 288 | atomic_dec(&ns->msg_hdrs); |
1da177e4 LT |
289 | free_msg(msg); |
290 | } | |
3ac88a41 | 291 | atomic_sub(msq->q_cbytes, &ns->msg_bytes); |
39a4940e EB |
292 | ipc_update_pid(&msq->q_lspid, NULL); |
293 | ipc_update_pid(&msq->q_lrpid, NULL); | |
dba4cdd3 | 294 | ipc_rcu_putref(&msq->q_perm, msg_rcu_free); |
1da177e4 LT |
295 | } |
296 | ||
3d65661a | 297 | long ksys_msgget(key_t key, int msgflg) |
1da177e4 | 298 | { |
1e786937 | 299 | struct ipc_namespace *ns; |
eb66ec44 MK |
300 | static const struct ipc_ops msg_ops = { |
301 | .getnew = newque, | |
50ab44b1 | 302 | .associate = security_msg_queue_associate, |
eb66ec44 | 303 | }; |
7748dbfa | 304 | struct ipc_params msg_params; |
1e786937 KK |
305 | |
306 | ns = current->nsproxy->ipc_ns; | |
7ca7e564 | 307 | |
7748dbfa ND |
308 | msg_params.key = key; |
309 | msg_params.flg = msgflg; | |
5a06a363 | 310 | |
7748dbfa | 311 | return ipcget(ns, &msg_ids(ns), &msg_ops, &msg_params); |
1da177e4 LT |
312 | } |
313 | ||
3d65661a DB |
314 | SYSCALL_DEFINE2(msgget, key_t, key, int, msgflg) |
315 | { | |
316 | return ksys_msgget(key, msgflg); | |
317 | } | |
318 | ||
5a06a363 IM |
319 | static inline unsigned long |
320 | copy_msqid_to_user(void __user *buf, struct msqid64_ds *in, int version) | |
1da177e4 | 321 | { |
239521f3 | 322 | switch (version) { |
1da177e4 | 323 | case IPC_64: |
5a06a363 | 324 | return copy_to_user(buf, in, sizeof(*in)); |
1da177e4 | 325 | case IPC_OLD: |
5a06a363 | 326 | { |
1da177e4 LT |
327 | struct msqid_ds out; |
328 | ||
5a06a363 | 329 | memset(&out, 0, sizeof(out)); |
1da177e4 LT |
330 | |
331 | ipc64_perm_to_ipc_perm(&in->msg_perm, &out.msg_perm); | |
332 | ||
333 | out.msg_stime = in->msg_stime; | |
334 | out.msg_rtime = in->msg_rtime; | |
335 | out.msg_ctime = in->msg_ctime; | |
336 | ||
4be929be AD |
337 | if (in->msg_cbytes > USHRT_MAX) |
338 | out.msg_cbytes = USHRT_MAX; | |
1da177e4 LT |
339 | else |
340 | out.msg_cbytes = in->msg_cbytes; | |
341 | out.msg_lcbytes = in->msg_cbytes; | |
342 | ||
4be929be AD |
343 | if (in->msg_qnum > USHRT_MAX) |
344 | out.msg_qnum = USHRT_MAX; | |
1da177e4 LT |
345 | else |
346 | out.msg_qnum = in->msg_qnum; | |
347 | ||
4be929be AD |
348 | if (in->msg_qbytes > USHRT_MAX) |
349 | out.msg_qbytes = USHRT_MAX; | |
1da177e4 LT |
350 | else |
351 | out.msg_qbytes = in->msg_qbytes; | |
352 | out.msg_lqbytes = in->msg_qbytes; | |
353 | ||
354 | out.msg_lspid = in->msg_lspid; | |
355 | out.msg_lrpid = in->msg_lrpid; | |
356 | ||
5a06a363 IM |
357 | return copy_to_user(buf, &out, sizeof(out)); |
358 | } | |
1da177e4 LT |
359 | default: |
360 | return -EINVAL; | |
361 | } | |
362 | } | |
363 | ||
5a06a363 | 364 | static inline unsigned long |
016d7132 | 365 | copy_msqid_from_user(struct msqid64_ds *out, void __user *buf, int version) |
1da177e4 | 366 | { |
239521f3 | 367 | switch (version) { |
1da177e4 | 368 | case IPC_64: |
016d7132 | 369 | if (copy_from_user(out, buf, sizeof(*out))) |
1da177e4 | 370 | return -EFAULT; |
1da177e4 | 371 | return 0; |
1da177e4 | 372 | case IPC_OLD: |
5a06a363 | 373 | { |
1da177e4 LT |
374 | struct msqid_ds tbuf_old; |
375 | ||
5a06a363 | 376 | if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old))) |
1da177e4 LT |
377 | return -EFAULT; |
378 | ||
239521f3 MS |
379 | out->msg_perm.uid = tbuf_old.msg_perm.uid; |
380 | out->msg_perm.gid = tbuf_old.msg_perm.gid; | |
381 | out->msg_perm.mode = tbuf_old.msg_perm.mode; | |
1da177e4 | 382 | |
5a06a363 | 383 | if (tbuf_old.msg_qbytes == 0) |
016d7132 | 384 | out->msg_qbytes = tbuf_old.msg_lqbytes; |
1da177e4 | 385 | else |
016d7132 | 386 | out->msg_qbytes = tbuf_old.msg_qbytes; |
1da177e4 LT |
387 | |
388 | return 0; | |
5a06a363 | 389 | } |
1da177e4 LT |
390 | default: |
391 | return -EINVAL; | |
392 | } | |
393 | } | |
394 | ||
a0d092fc | 395 | /* |
d9a605e4 | 396 | * This function handles some msgctl commands which require the rwsem |
a0d092fc | 397 | * to be held in write mode. |
d9a605e4 | 398 | * NOTE: no locks must be held, the rwsem is taken inside this function. |
a0d092fc PP |
399 | */ |
400 | static int msgctl_down(struct ipc_namespace *ns, int msqid, int cmd, | |
889b3317 | 401 | struct ipc64_perm *perm, int msg_qbytes) |
1da177e4 | 402 | { |
1da177e4 | 403 | struct kern_ipc_perm *ipcp; |
a0d092fc PP |
404 | struct msg_queue *msq; |
405 | int err; | |
406 | ||
d9a605e4 | 407 | down_write(&msg_ids(ns).rwsem); |
7b4cc5d8 DB |
408 | rcu_read_lock(); |
409 | ||
4241c1a3 | 410 | ipcp = ipcctl_obtain_check(ns, &msg_ids(ns), msqid, cmd, |
889b3317 | 411 | perm, msg_qbytes); |
7b4cc5d8 DB |
412 | if (IS_ERR(ipcp)) { |
413 | err = PTR_ERR(ipcp); | |
7b4cc5d8 DB |
414 | goto out_unlock1; |
415 | } | |
a0d092fc | 416 | |
a5f75e7f | 417 | msq = container_of(ipcp, struct msg_queue, q_perm); |
a0d092fc | 418 | |
d8c6e854 | 419 | err = security_msg_queue_msgctl(&msq->q_perm, cmd); |
a0d092fc | 420 | if (err) |
15724ecb | 421 | goto out_unlock1; |
a0d092fc PP |
422 | |
423 | switch (cmd) { | |
424 | case IPC_RMID: | |
15724ecb | 425 | ipc_lock_object(&msq->q_perm); |
7b4cc5d8 | 426 | /* freeque unlocks the ipc object and rcu */ |
a0d092fc PP |
427 | freeque(ns, ipcp); |
428 | goto out_up; | |
429 | case IPC_SET: | |
e3658538 | 430 | { |
194a6b5b | 431 | DEFINE_WAKE_Q(wake_q); |
e3658538 | 432 | |
889b3317 | 433 | if (msg_qbytes > ns->msg_ctlmnb && |
a0d092fc PP |
434 | !capable(CAP_SYS_RESOURCE)) { |
435 | err = -EPERM; | |
15724ecb | 436 | goto out_unlock1; |
a0d092fc PP |
437 | } |
438 | ||
15724ecb | 439 | ipc_lock_object(&msq->q_perm); |
889b3317 | 440 | err = ipc_update_perm(perm, ipcp); |
1efdb69b | 441 | if (err) |
7b4cc5d8 | 442 | goto out_unlock0; |
1efdb69b | 443 | |
889b3317 | 444 | msq->q_qbytes = msg_qbytes; |
a0d092fc | 445 | |
50578ea9 | 446 | msq->q_ctime = ktime_get_real_seconds(); |
e3658538 DB |
447 | /* |
448 | * Sleeping receivers might be excluded by | |
a0d092fc PP |
449 | * stricter permissions. |
450 | */ | |
ee51636c | 451 | expunge_all(msq, -EAGAIN, &wake_q); |
e3658538 DB |
452 | /* |
453 | * Sleeping senders might be able to send | |
a0d092fc PP |
454 | * due to a larger queue size. |
455 | */ | |
ed27f912 | 456 | ss_wakeup(msq, &wake_q, false); |
e3658538 DB |
457 | ipc_unlock_object(&msq->q_perm); |
458 | wake_up_q(&wake_q); | |
459 | ||
460 | goto out_unlock1; | |
461 | } | |
a0d092fc PP |
462 | default: |
463 | err = -EINVAL; | |
15724ecb | 464 | goto out_unlock1; |
a0d092fc | 465 | } |
7b4cc5d8 DB |
466 | |
467 | out_unlock0: | |
468 | ipc_unlock_object(&msq->q_perm); | |
469 | out_unlock1: | |
470 | rcu_read_unlock(); | |
a0d092fc | 471 | out_up: |
d9a605e4 | 472 | up_write(&msg_ids(ns).rwsem); |
a0d092fc PP |
473 | return err; |
474 | } | |
475 | ||
156d9ed1 AV |
476 | static int msgctl_info(struct ipc_namespace *ns, int msqid, |
477 | int cmd, struct msginfo *msginfo) | |
a0d092fc | 478 | { |
2cafed30 | 479 | int err; |
27c331a1 | 480 | int max_idx; |
1da177e4 | 481 | |
156d9ed1 AV |
482 | /* |
483 | * We must not return kernel stack data. | |
484 | * due to padding, it's not enough | |
485 | * to set all member fields. | |
486 | */ | |
487 | err = security_msg_queue_msgctl(NULL, cmd); | |
488 | if (err) | |
489 | return err; | |
490 | ||
491 | memset(msginfo, 0, sizeof(*msginfo)); | |
492 | msginfo->msgmni = ns->msg_ctlmni; | |
493 | msginfo->msgmax = ns->msg_ctlmax; | |
494 | msginfo->msgmnb = ns->msg_ctlmnb; | |
495 | msginfo->msgssz = MSGSSZ; | |
496 | msginfo->msgseg = MSGSEG; | |
497 | down_read(&msg_ids(ns).rwsem); | |
498 | if (cmd == MSG_INFO) { | |
499 | msginfo->msgpool = msg_ids(ns).in_use; | |
500 | msginfo->msgmap = atomic_read(&ns->msg_hdrs); | |
501 | msginfo->msgtql = atomic_read(&ns->msg_bytes); | |
502 | } else { | |
503 | msginfo->msgmap = MSGMAP; | |
504 | msginfo->msgpool = MSGPOOL; | |
505 | msginfo->msgtql = MSGTQL; | |
1da177e4 | 506 | } |
27c331a1 | 507 | max_idx = ipc_get_maxidx(&msg_ids(ns)); |
156d9ed1 | 508 | up_read(&msg_ids(ns).rwsem); |
27c331a1 | 509 | return (max_idx < 0) ? 0 : max_idx; |
156d9ed1 | 510 | } |
2cafed30 | 511 | |
156d9ed1 AV |
512 | static int msgctl_stat(struct ipc_namespace *ns, int msqid, |
513 | int cmd, struct msqid64_ds *p) | |
514 | { | |
156d9ed1 | 515 | struct msg_queue *msq; |
87ad4b0d | 516 | int err; |
ac0ba20e | 517 | |
156d9ed1 | 518 | memset(p, 0, sizeof(*p)); |
ac0ba20e | 519 | |
156d9ed1 | 520 | rcu_read_lock(); |
23c8cec8 | 521 | if (cmd == MSG_STAT || cmd == MSG_STAT_ANY) { |
156d9ed1 AV |
522 | msq = msq_obtain_object(ns, msqid); |
523 | if (IS_ERR(msq)) { | |
524 | err = PTR_ERR(msq); | |
1da177e4 | 525 | goto out_unlock; |
1da177e4 | 526 | } |
23c8cec8 | 527 | } else { /* IPC_STAT */ |
156d9ed1 AV |
528 | msq = msq_obtain_object_check(ns, msqid); |
529 | if (IS_ERR(msq)) { | |
530 | err = PTR_ERR(msq); | |
1da177e4 | 531 | goto out_unlock; |
156d9ed1 | 532 | } |
156d9ed1 | 533 | } |
1da177e4 | 534 | |
23c8cec8 DB |
535 | /* see comment for SHM_STAT_ANY */ |
536 | if (cmd == MSG_STAT_ANY) | |
537 | audit_ipc_obj(&msq->q_perm); | |
538 | else { | |
539 | err = -EACCES; | |
540 | if (ipcperms(ns, &msq->q_perm, S_IRUGO)) | |
541 | goto out_unlock; | |
542 | } | |
ac0ba20e | 543 | |
d8c6e854 | 544 | err = security_msg_queue_msgctl(&msq->q_perm, cmd); |
156d9ed1 AV |
545 | if (err) |
546 | goto out_unlock; | |
547 | ||
87ad4b0d PM |
548 | ipc_lock_object(&msq->q_perm); |
549 | ||
550 | if (!ipc_valid_object(&msq->q_perm)) { | |
551 | ipc_unlock_object(&msq->q_perm); | |
552 | err = -EIDRM; | |
553 | goto out_unlock; | |
554 | } | |
555 | ||
156d9ed1 AV |
556 | kernel_to_ipc64_perm(&msq->q_perm, &p->msg_perm); |
557 | p->msg_stime = msq->q_stime; | |
558 | p->msg_rtime = msq->q_rtime; | |
559 | p->msg_ctime = msq->q_ctime; | |
c2ab975c AB |
560 | #ifndef CONFIG_64BIT |
561 | p->msg_stime_high = msq->q_stime >> 32; | |
562 | p->msg_rtime_high = msq->q_rtime >> 32; | |
563 | p->msg_ctime_high = msq->q_ctime >> 32; | |
564 | #endif | |
156d9ed1 AV |
565 | p->msg_cbytes = msq->q_cbytes; |
566 | p->msg_qnum = msq->q_qnum; | |
567 | p->msg_qbytes = msq->q_qbytes; | |
39a4940e EB |
568 | p->msg_lspid = pid_vnr(msq->q_lspid); |
569 | p->msg_lrpid = pid_vnr(msq->q_lrpid); | |
2cafed30 | 570 | |
615c999c MS |
571 | if (cmd == IPC_STAT) { |
572 | /* | |
573 | * As defined in SUS: | |
574 | * Return 0 on success | |
575 | */ | |
576 | err = 0; | |
577 | } else { | |
578 | /* | |
579 | * MSG_STAT and MSG_STAT_ANY (both Linux specific) | |
580 | * Return the full id, including the sequence number | |
581 | */ | |
582 | err = msq->q_perm.id; | |
583 | } | |
1da177e4 | 584 | |
615c999c | 585 | ipc_unlock_object(&msq->q_perm); |
1da177e4 | 586 | out_unlock: |
ac0ba20e | 587 | rcu_read_unlock(); |
1da177e4 LT |
588 | return err; |
589 | } | |
590 | ||
275f2214 | 591 | static long ksys_msgctl(int msqid, int cmd, struct msqid_ds __user *buf, int version) |
2cafed30 | 592 | { |
2cafed30 | 593 | struct ipc_namespace *ns; |
156d9ed1 AV |
594 | struct msqid64_ds msqid64; |
595 | int err; | |
2cafed30 DB |
596 | |
597 | if (msqid < 0 || cmd < 0) | |
598 | return -EINVAL; | |
599 | ||
2cafed30 DB |
600 | ns = current->nsproxy->ipc_ns; |
601 | ||
602 | switch (cmd) { | |
603 | case IPC_INFO: | |
156d9ed1 AV |
604 | case MSG_INFO: { |
605 | struct msginfo msginfo; | |
606 | err = msgctl_info(ns, msqid, cmd, &msginfo); | |
607 | if (err < 0) | |
608 | return err; | |
609 | if (copy_to_user(buf, &msginfo, sizeof(struct msginfo))) | |
610 | err = -EFAULT; | |
611 | return err; | |
612 | } | |
2cafed30 | 613 | case MSG_STAT: /* msqid is an index rather than a msg queue id */ |
23c8cec8 | 614 | case MSG_STAT_ANY: |
2cafed30 | 615 | case IPC_STAT: |
156d9ed1 AV |
616 | err = msgctl_stat(ns, msqid, cmd, &msqid64); |
617 | if (err < 0) | |
618 | return err; | |
619 | if (copy_msqid_to_user(buf, &msqid64, version)) | |
620 | err = -EFAULT; | |
621 | return err; | |
2cafed30 | 622 | case IPC_SET: |
156d9ed1 AV |
623 | if (copy_msqid_from_user(&msqid64, buf, version)) |
624 | return -EFAULT; | |
889b3317 LS |
625 | return msgctl_down(ns, msqid, cmd, &msqid64.msg_perm, |
626 | msqid64.msg_qbytes); | |
2cafed30 | 627 | case IPC_RMID: |
889b3317 | 628 | return msgctl_down(ns, msqid, cmd, NULL, 0); |
2cafed30 DB |
629 | default: |
630 | return -EINVAL; | |
631 | } | |
632 | } | |
633 | ||
e340db56 DB |
634 | SYSCALL_DEFINE3(msgctl, int, msqid, int, cmd, struct msqid_ds __user *, buf) |
635 | { | |
275f2214 | 636 | return ksys_msgctl(msqid, cmd, buf, IPC_64); |
e340db56 DB |
637 | } |
638 | ||
275f2214 AB |
639 | #ifdef CONFIG_ARCH_WANT_IPC_PARSE_VERSION |
640 | long ksys_old_msgctl(int msqid, int cmd, struct msqid_ds __user *buf) | |
641 | { | |
642 | int version = ipc_parse_version(&cmd); | |
643 | ||
644 | return ksys_msgctl(msqid, cmd, buf, version); | |
645 | } | |
646 | ||
647 | SYSCALL_DEFINE3(old_msgctl, int, msqid, int, cmd, struct msqid_ds __user *, buf) | |
648 | { | |
649 | return ksys_old_msgctl(msqid, cmd, buf); | |
650 | } | |
651 | #endif | |
652 | ||
46939168 AV |
653 | #ifdef CONFIG_COMPAT |
654 | ||
655 | struct compat_msqid_ds { | |
656 | struct compat_ipc_perm msg_perm; | |
657 | compat_uptr_t msg_first; | |
658 | compat_uptr_t msg_last; | |
9afc5eee AB |
659 | old_time32_t msg_stime; |
660 | old_time32_t msg_rtime; | |
661 | old_time32_t msg_ctime; | |
46939168 AV |
662 | compat_ulong_t msg_lcbytes; |
663 | compat_ulong_t msg_lqbytes; | |
664 | unsigned short msg_cbytes; | |
665 | unsigned short msg_qnum; | |
666 | unsigned short msg_qbytes; | |
667 | compat_ipc_pid_t msg_lspid; | |
668 | compat_ipc_pid_t msg_lrpid; | |
669 | }; | |
670 | ||
671 | static int copy_compat_msqid_from_user(struct msqid64_ds *out, void __user *buf, | |
672 | int version) | |
673 | { | |
674 | memset(out, 0, sizeof(*out)); | |
675 | if (version == IPC_64) { | |
6aa211e8 | 676 | struct compat_msqid64_ds __user *p = buf; |
28327fae | 677 | if (get_compat_ipc64_perm(&out->msg_perm, &p->msg_perm)) |
46939168 | 678 | return -EFAULT; |
46939168 AV |
679 | if (get_user(out->msg_qbytes, &p->msg_qbytes)) |
680 | return -EFAULT; | |
681 | } else { | |
6aa211e8 | 682 | struct compat_msqid_ds __user *p = buf; |
28327fae | 683 | if (get_compat_ipc_perm(&out->msg_perm, &p->msg_perm)) |
46939168 | 684 | return -EFAULT; |
46939168 AV |
685 | if (get_user(out->msg_qbytes, &p->msg_qbytes)) |
686 | return -EFAULT; | |
687 | } | |
688 | return 0; | |
689 | } | |
690 | ||
691 | static int copy_compat_msqid_to_user(void __user *buf, struct msqid64_ds *in, | |
692 | int version) | |
693 | { | |
694 | if (version == IPC_64) { | |
695 | struct compat_msqid64_ds v; | |
696 | memset(&v, 0, sizeof(v)); | |
28327fae | 697 | to_compat_ipc64_perm(&v.msg_perm, &in->msg_perm); |
c2ab975c AB |
698 | v.msg_stime = lower_32_bits(in->msg_stime); |
699 | v.msg_stime_high = upper_32_bits(in->msg_stime); | |
700 | v.msg_rtime = lower_32_bits(in->msg_rtime); | |
701 | v.msg_rtime_high = upper_32_bits(in->msg_rtime); | |
702 | v.msg_ctime = lower_32_bits(in->msg_ctime); | |
703 | v.msg_ctime_high = upper_32_bits(in->msg_ctime); | |
46939168 AV |
704 | v.msg_cbytes = in->msg_cbytes; |
705 | v.msg_qnum = in->msg_qnum; | |
706 | v.msg_qbytes = in->msg_qbytes; | |
707 | v.msg_lspid = in->msg_lspid; | |
708 | v.msg_lrpid = in->msg_lrpid; | |
709 | return copy_to_user(buf, &v, sizeof(v)); | |
710 | } else { | |
711 | struct compat_msqid_ds v; | |
712 | memset(&v, 0, sizeof(v)); | |
28327fae | 713 | to_compat_ipc_perm(&v.msg_perm, &in->msg_perm); |
46939168 AV |
714 | v.msg_stime = in->msg_stime; |
715 | v.msg_rtime = in->msg_rtime; | |
716 | v.msg_ctime = in->msg_ctime; | |
717 | v.msg_cbytes = in->msg_cbytes; | |
718 | v.msg_qnum = in->msg_qnum; | |
719 | v.msg_qbytes = in->msg_qbytes; | |
720 | v.msg_lspid = in->msg_lspid; | |
721 | v.msg_lrpid = in->msg_lrpid; | |
722 | return copy_to_user(buf, &v, sizeof(v)); | |
723 | } | |
724 | } | |
725 | ||
275f2214 | 726 | static long compat_ksys_msgctl(int msqid, int cmd, void __user *uptr, int version) |
46939168 AV |
727 | { |
728 | struct ipc_namespace *ns; | |
729 | int err; | |
730 | struct msqid64_ds msqid64; | |
46939168 AV |
731 | |
732 | ns = current->nsproxy->ipc_ns; | |
733 | ||
734 | if (msqid < 0 || cmd < 0) | |
735 | return -EINVAL; | |
736 | ||
737 | switch (cmd & (~IPC_64)) { | |
738 | case IPC_INFO: | |
739 | case MSG_INFO: { | |
740 | struct msginfo msginfo; | |
741 | err = msgctl_info(ns, msqid, cmd, &msginfo); | |
742 | if (err < 0) | |
743 | return err; | |
744 | if (copy_to_user(uptr, &msginfo, sizeof(struct msginfo))) | |
745 | err = -EFAULT; | |
746 | return err; | |
747 | } | |
748 | case IPC_STAT: | |
749 | case MSG_STAT: | |
23c8cec8 | 750 | case MSG_STAT_ANY: |
46939168 AV |
751 | err = msgctl_stat(ns, msqid, cmd, &msqid64); |
752 | if (err < 0) | |
753 | return err; | |
754 | if (copy_compat_msqid_to_user(uptr, &msqid64, version)) | |
755 | err = -EFAULT; | |
756 | return err; | |
757 | case IPC_SET: | |
758 | if (copy_compat_msqid_from_user(&msqid64, uptr, version)) | |
759 | return -EFAULT; | |
889b3317 | 760 | return msgctl_down(ns, msqid, cmd, &msqid64.msg_perm, msqid64.msg_qbytes); |
46939168 | 761 | case IPC_RMID: |
889b3317 | 762 | return msgctl_down(ns, msqid, cmd, NULL, 0); |
46939168 AV |
763 | default: |
764 | return -EINVAL; | |
765 | } | |
766 | } | |
e340db56 DB |
767 | |
768 | COMPAT_SYSCALL_DEFINE3(msgctl, int, msqid, int, cmd, void __user *, uptr) | |
769 | { | |
275f2214 | 770 | return compat_ksys_msgctl(msqid, cmd, uptr, IPC_64); |
e340db56 | 771 | } |
275f2214 AB |
772 | |
773 | #ifdef CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION | |
774 | long compat_ksys_old_msgctl(int msqid, int cmd, void __user *uptr) | |
775 | { | |
776 | int version = compat_ipc_parse_version(&cmd); | |
777 | ||
778 | return compat_ksys_msgctl(msqid, cmd, uptr, version); | |
779 | } | |
780 | ||
781 | COMPAT_SYSCALL_DEFINE3(old_msgctl, int, msqid, int, cmd, void __user *, uptr) | |
782 | { | |
783 | return compat_ksys_old_msgctl(msqid, cmd, uptr); | |
784 | } | |
785 | #endif | |
46939168 AV |
786 | #endif |
787 | ||
5a06a363 | 788 | static int testmsg(struct msg_msg *msg, long type, int mode) |
1da177e4 | 789 | { |
46c0a8ca PM |
790 | switch (mode) { |
791 | case SEARCH_ANY: | |
792 | case SEARCH_NUMBER: | |
793 | return 1; | |
794 | case SEARCH_LESSEQUAL: | |
795 | if (msg->m_type <= type) | |
796 | return 1; | |
797 | break; | |
798 | case SEARCH_EQUAL: | |
799 | if (msg->m_type == type) | |
1da177e4 | 800 | return 1; |
46c0a8ca PM |
801 | break; |
802 | case SEARCH_NOTEQUAL: | |
803 | if (msg->m_type != type) | |
804 | return 1; | |
805 | break; | |
1da177e4 LT |
806 | } |
807 | return 0; | |
808 | } | |
809 | ||
ee51636c SAS |
810 | static inline int pipelined_send(struct msg_queue *msq, struct msg_msg *msg, |
811 | struct wake_q_head *wake_q) | |
1da177e4 | 812 | { |
41239fe8 | 813 | struct msg_receiver *msr, *t; |
5a06a363 | 814 | |
41239fe8 | 815 | list_for_each_entry_safe(msr, t, &msq->q_receivers, r_list) { |
5a06a363 | 816 | if (testmsg(msg, msr->r_msgtype, msr->r_mode) && |
d8c6e854 | 817 | !security_msg_queue_msgrcv(&msq->q_perm, msg, msr->r_tsk, |
5a06a363 IM |
818 | msr->r_msgtype, msr->r_mode)) { |
819 | ||
1da177e4 | 820 | list_del(&msr->r_list); |
5a06a363 | 821 | if (msr->r_maxsize < msg->m_ts) { |
ee51636c | 822 | wake_q_add(wake_q, msr->r_tsk); |
0d97a82b MS |
823 | |
824 | /* See expunge_all regarding memory barrier */ | |
825 | smp_store_release(&msr->r_msg, ERR_PTR(-E2BIG)); | |
1da177e4 | 826 | } else { |
39a4940e | 827 | ipc_update_pid(&msq->q_lrpid, task_pid(msr->r_tsk)); |
2a70b787 | 828 | msq->q_rtime = ktime_get_real_seconds(); |
5a06a363 | 829 | |
ee51636c | 830 | wake_q_add(wake_q, msr->r_tsk); |
0d97a82b MS |
831 | |
832 | /* See expunge_all regarding memory barrier */ | |
833 | smp_store_release(&msr->r_msg, msg); | |
1da177e4 LT |
834 | return 1; |
835 | } | |
836 | } | |
837 | } | |
ffa571da | 838 | |
1da177e4 LT |
839 | return 0; |
840 | } | |
841 | ||
9b1404c2 | 842 | static long do_msgsnd(int msqid, long mtype, void __user *mtext, |
651971cb | 843 | size_t msgsz, int msgflg) |
1da177e4 LT |
844 | { |
845 | struct msg_queue *msq; | |
846 | struct msg_msg *msg; | |
1da177e4 | 847 | int err; |
1e786937 | 848 | struct ipc_namespace *ns; |
194a6b5b | 849 | DEFINE_WAKE_Q(wake_q); |
1e786937 KK |
850 | |
851 | ns = current->nsproxy->ipc_ns; | |
5a06a363 | 852 | |
1e786937 | 853 | if (msgsz > ns->msg_ctlmax || (long) msgsz < 0 || msqid < 0) |
1da177e4 | 854 | return -EINVAL; |
1da177e4 LT |
855 | if (mtype < 1) |
856 | return -EINVAL; | |
857 | ||
651971cb | 858 | msg = load_msg(mtext, msgsz); |
5a06a363 | 859 | if (IS_ERR(msg)) |
1da177e4 LT |
860 | return PTR_ERR(msg); |
861 | ||
862 | msg->m_type = mtype; | |
863 | msg->m_ts = msgsz; | |
864 | ||
3dd1f784 DB |
865 | rcu_read_lock(); |
866 | msq = msq_obtain_object_check(ns, msqid); | |
023a5355 ND |
867 | if (IS_ERR(msq)) { |
868 | err = PTR_ERR(msq); | |
3dd1f784 | 869 | goto out_unlock1; |
023a5355 | 870 | } |
1da177e4 | 871 | |
bebcb928 MS |
872 | ipc_lock_object(&msq->q_perm); |
873 | ||
1da177e4 LT |
874 | for (;;) { |
875 | struct msg_sender s; | |
876 | ||
5a06a363 | 877 | err = -EACCES; |
b0e77598 | 878 | if (ipcperms(ns, &msq->q_perm, S_IWUGO)) |
bebcb928 | 879 | goto out_unlock0; |
1da177e4 | 880 | |
4271b05a | 881 | /* raced with RMID? */ |
0f3d2b01 | 882 | if (!ipc_valid_object(&msq->q_perm)) { |
4271b05a DB |
883 | err = -EIDRM; |
884 | goto out_unlock0; | |
885 | } | |
886 | ||
d8c6e854 | 887 | err = security_msg_queue_msgsnd(&msq->q_perm, msg, msgflg); |
1da177e4 | 888 | if (err) |
bebcb928 | 889 | goto out_unlock0; |
1da177e4 | 890 | |
ed27f912 | 891 | if (msg_fits_inqueue(msq, msgsz)) |
1da177e4 | 892 | break; |
1da177e4 LT |
893 | |
894 | /* queue full, wait: */ | |
5a06a363 IM |
895 | if (msgflg & IPC_NOWAIT) { |
896 | err = -EAGAIN; | |
bebcb928 | 897 | goto out_unlock0; |
1da177e4 | 898 | } |
3dd1f784 | 899 | |
ffa571da | 900 | /* enqueue the sender and prepare to block */ |
ed27f912 | 901 | ss_add(msq, &s, msgsz); |
6062a8dc | 902 | |
dba4cdd3 | 903 | if (!ipc_rcu_getref(&msq->q_perm)) { |
6062a8dc | 904 | err = -EIDRM; |
3dd1f784 | 905 | goto out_unlock0; |
6062a8dc RR |
906 | } |
907 | ||
3dd1f784 DB |
908 | ipc_unlock_object(&msq->q_perm); |
909 | rcu_read_unlock(); | |
1da177e4 LT |
910 | schedule(); |
911 | ||
3dd1f784 DB |
912 | rcu_read_lock(); |
913 | ipc_lock_object(&msq->q_perm); | |
914 | ||
dba4cdd3 | 915 | ipc_rcu_putref(&msq->q_perm, msg_rcu_free); |
0f3d2b01 RA |
916 | /* raced with RMID? */ |
917 | if (!ipc_valid_object(&msq->q_perm)) { | |
1da177e4 | 918 | err = -EIDRM; |
3dd1f784 | 919 | goto out_unlock0; |
1da177e4 LT |
920 | } |
921 | ss_del(&s); | |
5a06a363 | 922 | |
1da177e4 | 923 | if (signal_pending(current)) { |
5a06a363 | 924 | err = -ERESTARTNOHAND; |
3dd1f784 | 925 | goto out_unlock0; |
1da177e4 | 926 | } |
3dd1f784 | 927 | |
1da177e4 | 928 | } |
ed27f912 | 929 | |
39a4940e | 930 | ipc_update_pid(&msq->q_lspid, task_tgid(current)); |
2a70b787 | 931 | msq->q_stime = ktime_get_real_seconds(); |
1da177e4 | 932 | |
ee51636c | 933 | if (!pipelined_send(msq, msg, &wake_q)) { |
25985edc | 934 | /* no one is waiting for this message, enqueue it */ |
5a06a363 | 935 | list_add_tail(&msg->m_list, &msq->q_messages); |
1da177e4 LT |
936 | msq->q_cbytes += msgsz; |
937 | msq->q_qnum++; | |
3ac88a41 KK |
938 | atomic_add(msgsz, &ns->msg_bytes); |
939 | atomic_inc(&ns->msg_hdrs); | |
1da177e4 | 940 | } |
5a06a363 | 941 | |
1da177e4 LT |
942 | err = 0; |
943 | msg = NULL; | |
944 | ||
3dd1f784 DB |
945 | out_unlock0: |
946 | ipc_unlock_object(&msq->q_perm); | |
ee51636c | 947 | wake_up_q(&wake_q); |
3dd1f784 DB |
948 | out_unlock1: |
949 | rcu_read_unlock(); | |
5a06a363 | 950 | if (msg != NULL) |
1da177e4 LT |
951 | free_msg(msg); |
952 | return err; | |
953 | } | |
954 | ||
31c213f2 DB |
955 | long ksys_msgsnd(int msqid, struct msgbuf __user *msgp, size_t msgsz, |
956 | int msgflg) | |
651971cb | 957 | { |
958 | long mtype; | |
959 | ||
960 | if (get_user(mtype, &msgp->mtype)) | |
961 | return -EFAULT; | |
962 | return do_msgsnd(msqid, mtype, msgp->mtext, msgsz, msgflg); | |
963 | } | |
964 | ||
31c213f2 DB |
965 | SYSCALL_DEFINE4(msgsnd, int, msqid, struct msgbuf __user *, msgp, size_t, msgsz, |
966 | int, msgflg) | |
967 | { | |
968 | return ksys_msgsnd(msqid, msgp, msgsz, msgflg); | |
969 | } | |
970 | ||
9b1404c2 AV |
971 | #ifdef CONFIG_COMPAT |
972 | ||
973 | struct compat_msgbuf { | |
974 | compat_long_t mtype; | |
975 | char mtext[1]; | |
976 | }; | |
977 | ||
31c213f2 DB |
978 | long compat_ksys_msgsnd(int msqid, compat_uptr_t msgp, |
979 | compat_ssize_t msgsz, int msgflg) | |
9b1404c2 AV |
980 | { |
981 | struct compat_msgbuf __user *up = compat_ptr(msgp); | |
982 | compat_long_t mtype; | |
983 | ||
984 | if (get_user(mtype, &up->mtype)) | |
985 | return -EFAULT; | |
986 | return do_msgsnd(msqid, mtype, up->mtext, (ssize_t)msgsz, msgflg); | |
987 | } | |
31c213f2 DB |
988 | |
989 | COMPAT_SYSCALL_DEFINE4(msgsnd, int, msqid, compat_uptr_t, msgp, | |
990 | compat_ssize_t, msgsz, int, msgflg) | |
991 | { | |
992 | return compat_ksys_msgsnd(msqid, msgp, msgsz, msgflg); | |
993 | } | |
9b1404c2 AV |
994 | #endif |
995 | ||
5a06a363 | 996 | static inline int convert_mode(long *msgtyp, int msgflg) |
1da177e4 | 997 | { |
8ac6ed58 PH |
998 | if (msgflg & MSG_COPY) |
999 | return SEARCH_NUMBER; | |
5a06a363 | 1000 | /* |
1da177e4 LT |
1001 | * find message of correct type. |
1002 | * msgtyp = 0 => get first. | |
1003 | * msgtyp > 0 => get first message of matching type. | |
5a06a363 | 1004 | * msgtyp < 0 => get message with least type must be < abs(msgtype). |
1da177e4 | 1005 | */ |
5a06a363 | 1006 | if (*msgtyp == 0) |
1da177e4 | 1007 | return SEARCH_ANY; |
5a06a363 | 1008 | if (*msgtyp < 0) { |
99989835 JS |
1009 | if (*msgtyp == LONG_MIN) /* -LONG_MIN is undefined */ |
1010 | *msgtyp = LONG_MAX; | |
1011 | else | |
1012 | *msgtyp = -*msgtyp; | |
1da177e4 LT |
1013 | return SEARCH_LESSEQUAL; |
1014 | } | |
5a06a363 | 1015 | if (msgflg & MSG_EXCEPT) |
1da177e4 LT |
1016 | return SEARCH_NOTEQUAL; |
1017 | return SEARCH_EQUAL; | |
1018 | } | |
1019 | ||
f9dd87f4 SK |
1020 | static long do_msg_fill(void __user *dest, struct msg_msg *msg, size_t bufsz) |
1021 | { | |
1022 | struct msgbuf __user *msgp = dest; | |
1023 | size_t msgsz; | |
1024 | ||
1025 | if (put_user(msg->m_type, &msgp->mtype)) | |
1026 | return -EFAULT; | |
1027 | ||
1028 | msgsz = (bufsz > msg->m_ts) ? msg->m_ts : bufsz; | |
1029 | if (store_msg(msgp->mtext, msg, msgsz)) | |
1030 | return -EFAULT; | |
1031 | return msgsz; | |
1032 | } | |
1033 | ||
4a674f34 | 1034 | #ifdef CONFIG_CHECKPOINT_RESTORE |
3fcfe786 SK |
1035 | /* |
1036 | * This function creates new kernel message structure, large enough to store | |
1037 | * bufsz message bytes. | |
1038 | */ | |
8ac6ed58 | 1039 | static inline struct msg_msg *prepare_copy(void __user *buf, size_t bufsz) |
4a674f34 SK |
1040 | { |
1041 | struct msg_msg *copy; | |
1042 | ||
4a674f34 SK |
1043 | /* |
1044 | * Create dummy message to copy real message to. | |
1045 | */ | |
1046 | copy = load_msg(buf, bufsz); | |
1047 | if (!IS_ERR(copy)) | |
1048 | copy->m_ts = bufsz; | |
1049 | return copy; | |
1050 | } | |
1051 | ||
85398aa8 | 1052 | static inline void free_copy(struct msg_msg *copy) |
4a674f34 | 1053 | { |
85398aa8 | 1054 | if (copy) |
4a674f34 SK |
1055 | free_msg(copy); |
1056 | } | |
1057 | #else | |
8ac6ed58 | 1058 | static inline struct msg_msg *prepare_copy(void __user *buf, size_t bufsz) |
b30efe27 SK |
1059 | { |
1060 | return ERR_PTR(-ENOSYS); | |
1061 | } | |
1062 | ||
85398aa8 SK |
1063 | static inline void free_copy(struct msg_msg *copy) |
1064 | { | |
1065 | } | |
4a674f34 SK |
1066 | #endif |
1067 | ||
daaf74cf PH |
1068 | static struct msg_msg *find_msg(struct msg_queue *msq, long *msgtyp, int mode) |
1069 | { | |
368ae537 | 1070 | struct msg_msg *msg, *found = NULL; |
daaf74cf PH |
1071 | long count = 0; |
1072 | ||
1073 | list_for_each_entry(msg, &msq->q_messages, m_list) { | |
1074 | if (testmsg(msg, *msgtyp, mode) && | |
d8c6e854 | 1075 | !security_msg_queue_msgrcv(&msq->q_perm, msg, current, |
daaf74cf PH |
1076 | *msgtyp, mode)) { |
1077 | if (mode == SEARCH_LESSEQUAL && msg->m_type != 1) { | |
1078 | *msgtyp = msg->m_type - 1; | |
368ae537 | 1079 | found = msg; |
daaf74cf PH |
1080 | } else if (mode == SEARCH_NUMBER) { |
1081 | if (*msgtyp == count) | |
1082 | return msg; | |
1083 | } else | |
1084 | return msg; | |
1085 | count++; | |
1086 | } | |
1087 | } | |
1088 | ||
368ae537 | 1089 | return found ?: ERR_PTR(-EAGAIN); |
daaf74cf PH |
1090 | } |
1091 | ||
9b1404c2 | 1092 | static long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgflg, |
f9dd87f4 | 1093 | long (*msg_handler)(void __user *, struct msg_msg *, size_t)) |
1da177e4 | 1094 | { |
1da177e4 | 1095 | int mode; |
41a0d523 | 1096 | struct msg_queue *msq; |
1e786937 | 1097 | struct ipc_namespace *ns; |
41a0d523 | 1098 | struct msg_msg *msg, *copy = NULL; |
194a6b5b | 1099 | DEFINE_WAKE_Q(wake_q); |
1da177e4 | 1100 | |
88b9e456 PH |
1101 | ns = current->nsproxy->ipc_ns; |
1102 | ||
f9dd87f4 | 1103 | if (msqid < 0 || (long) bufsz < 0) |
1da177e4 | 1104 | return -EINVAL; |
41a0d523 | 1105 | |
4a674f34 | 1106 | if (msgflg & MSG_COPY) { |
4f87dac3 MK |
1107 | if ((msgflg & MSG_EXCEPT) || !(msgflg & IPC_NOWAIT)) |
1108 | return -EINVAL; | |
8ac6ed58 | 1109 | copy = prepare_copy(buf, min_t(size_t, bufsz, ns->msg_ctlmax)); |
4a674f34 SK |
1110 | if (IS_ERR(copy)) |
1111 | return PTR_ERR(copy); | |
1112 | } | |
5a06a363 | 1113 | mode = convert_mode(&msgtyp, msgflg); |
1da177e4 | 1114 | |
41a0d523 DB |
1115 | rcu_read_lock(); |
1116 | msq = msq_obtain_object_check(ns, msqid); | |
4a674f34 | 1117 | if (IS_ERR(msq)) { |
41a0d523 | 1118 | rcu_read_unlock(); |
85398aa8 | 1119 | free_copy(copy); |
023a5355 | 1120 | return PTR_ERR(msq); |
4a674f34 | 1121 | } |
1da177e4 LT |
1122 | |
1123 | for (;;) { | |
1124 | struct msg_receiver msr_d; | |
1da177e4 LT |
1125 | |
1126 | msg = ERR_PTR(-EACCES); | |
b0e77598 | 1127 | if (ipcperms(ns, &msq->q_perm, S_IRUGO)) |
41a0d523 | 1128 | goto out_unlock1; |
1da177e4 | 1129 | |
41a0d523 | 1130 | ipc_lock_object(&msq->q_perm); |
4271b05a DB |
1131 | |
1132 | /* raced with RMID? */ | |
0f3d2b01 | 1133 | if (!ipc_valid_object(&msq->q_perm)) { |
4271b05a DB |
1134 | msg = ERR_PTR(-EIDRM); |
1135 | goto out_unlock0; | |
1136 | } | |
1137 | ||
daaf74cf | 1138 | msg = find_msg(msq, &msgtyp, mode); |
5a06a363 IM |
1139 | if (!IS_ERR(msg)) { |
1140 | /* | |
1141 | * Found a suitable message. | |
1142 | * Unlink it from the queue. | |
1143 | */ | |
f9dd87f4 | 1144 | if ((bufsz < msg->m_ts) && !(msgflg & MSG_NOERROR)) { |
1da177e4 | 1145 | msg = ERR_PTR(-E2BIG); |
41a0d523 | 1146 | goto out_unlock0; |
1da177e4 | 1147 | } |
3fcfe786 SK |
1148 | /* |
1149 | * If we are copying, then do not unlink message and do | |
1150 | * not update queue parameters. | |
1151 | */ | |
852028af PH |
1152 | if (msgflg & MSG_COPY) { |
1153 | msg = copy_msg(msg, copy); | |
41a0d523 | 1154 | goto out_unlock0; |
852028af | 1155 | } |
41a0d523 | 1156 | |
1da177e4 LT |
1157 | list_del(&msg->m_list); |
1158 | msq->q_qnum--; | |
2a70b787 | 1159 | msq->q_rtime = ktime_get_real_seconds(); |
39a4940e | 1160 | ipc_update_pid(&msq->q_lrpid, task_tgid(current)); |
1da177e4 | 1161 | msq->q_cbytes -= msg->m_ts; |
3ac88a41 KK |
1162 | atomic_sub(msg->m_ts, &ns->msg_bytes); |
1163 | atomic_dec(&ns->msg_hdrs); | |
ed27f912 | 1164 | ss_wakeup(msq, &wake_q, false); |
41a0d523 DB |
1165 | |
1166 | goto out_unlock0; | |
1da177e4 | 1167 | } |
41a0d523 | 1168 | |
1da177e4 LT |
1169 | /* No message waiting. Wait for a message */ |
1170 | if (msgflg & IPC_NOWAIT) { | |
1171 | msg = ERR_PTR(-ENOMSG); | |
41a0d523 | 1172 | goto out_unlock0; |
1da177e4 | 1173 | } |
41a0d523 | 1174 | |
5a06a363 | 1175 | list_add_tail(&msr_d.r_list, &msq->q_receivers); |
1da177e4 LT |
1176 | msr_d.r_tsk = current; |
1177 | msr_d.r_msgtype = msgtyp; | |
1178 | msr_d.r_mode = mode; | |
5a06a363 | 1179 | if (msgflg & MSG_NOERROR) |
1da177e4 | 1180 | msr_d.r_maxsize = INT_MAX; |
5a06a363 | 1181 | else |
f9dd87f4 | 1182 | msr_d.r_maxsize = bufsz; |
0d97a82b MS |
1183 | |
1184 | /* memory barrier not require due to ipc_lock_object() */ | |
1185 | WRITE_ONCE(msr_d.r_msg, ERR_PTR(-EAGAIN)); | |
1186 | ||
1187 | /* memory barrier not required, we own ipc_lock_object() */ | |
f75a2f35 | 1188 | __set_current_state(TASK_INTERRUPTIBLE); |
1da177e4 | 1189 | |
41a0d523 DB |
1190 | ipc_unlock_object(&msq->q_perm); |
1191 | rcu_read_unlock(); | |
1da177e4 LT |
1192 | schedule(); |
1193 | ||
ee51636c SAS |
1194 | /* |
1195 | * Lockless receive, part 1: | |
1196 | * We don't hold a reference to the queue and getting a | |
1197 | * reference would defeat the idea of a lockless operation, | |
1198 | * thus the code relies on rcu to guarantee the existence of | |
1199 | * msq: | |
1da177e4 LT |
1200 | * Prior to destruction, expunge_all(-EIRDM) changes r_msg. |
1201 | * Thus if r_msg is -EAGAIN, then the queue not yet destroyed. | |
1da177e4 LT |
1202 | */ |
1203 | rcu_read_lock(); | |
1204 | ||
ee51636c SAS |
1205 | /* |
1206 | * Lockless receive, part 2: | |
1207 | * The work in pipelined_send() and expunge_all(): | |
1208 | * - Set pointer to message | |
1209 | * - Queue the receiver task for later wakeup | |
1210 | * - Wake up the process after the lock is dropped. | |
ff35e5ef | 1211 | * |
ee51636c SAS |
1212 | * Should the process wake up before this wakeup (due to a |
1213 | * signal) it will either see the message and continue ... | |
1da177e4 | 1214 | */ |
ee51636c | 1215 | msg = READ_ONCE(msr_d.r_msg); |
0d97a82b MS |
1216 | if (msg != ERR_PTR(-EAGAIN)) { |
1217 | /* see MSG_BARRIER for purpose/pairing */ | |
1218 | smp_acquire__after_ctrl_dep(); | |
1219 | ||
41a0d523 | 1220 | goto out_unlock1; |
0d97a82b | 1221 | } |
1da177e4 | 1222 | |
ee51636c SAS |
1223 | /* |
1224 | * ... or see -EAGAIN, acquire the lock to check the message | |
1225 | * again. | |
1226 | */ | |
41a0d523 | 1227 | ipc_lock_object(&msq->q_perm); |
1da177e4 | 1228 | |
0d97a82b | 1229 | msg = READ_ONCE(msr_d.r_msg); |
5a06a363 | 1230 | if (msg != ERR_PTR(-EAGAIN)) |
41a0d523 | 1231 | goto out_unlock0; |
1da177e4 LT |
1232 | |
1233 | list_del(&msr_d.r_list); | |
1234 | if (signal_pending(current)) { | |
1235 | msg = ERR_PTR(-ERESTARTNOHAND); | |
41a0d523 | 1236 | goto out_unlock0; |
1da177e4 | 1237 | } |
41a0d523 DB |
1238 | |
1239 | ipc_unlock_object(&msq->q_perm); | |
1da177e4 | 1240 | } |
41a0d523 DB |
1241 | |
1242 | out_unlock0: | |
1243 | ipc_unlock_object(&msq->q_perm); | |
e3658538 | 1244 | wake_up_q(&wake_q); |
41a0d523 DB |
1245 | out_unlock1: |
1246 | rcu_read_unlock(); | |
4a674f34 | 1247 | if (IS_ERR(msg)) { |
85398aa8 | 1248 | free_copy(copy); |
5a06a363 | 1249 | return PTR_ERR(msg); |
4a674f34 | 1250 | } |
1da177e4 | 1251 | |
f9dd87f4 | 1252 | bufsz = msg_handler(buf, msg, bufsz); |
1da177e4 | 1253 | free_msg(msg); |
5a06a363 | 1254 | |
f9dd87f4 | 1255 | return bufsz; |
1da177e4 LT |
1256 | } |
1257 | ||
078faac9 DB |
1258 | long ksys_msgrcv(int msqid, struct msgbuf __user *msgp, size_t msgsz, |
1259 | long msgtyp, int msgflg) | |
1260 | { | |
1261 | return do_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg, do_msg_fill); | |
1262 | } | |
1263 | ||
e48fbb69 HC |
1264 | SYSCALL_DEFINE5(msgrcv, int, msqid, struct msgbuf __user *, msgp, size_t, msgsz, |
1265 | long, msgtyp, int, msgflg) | |
651971cb | 1266 | { |
078faac9 | 1267 | return ksys_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); |
651971cb | 1268 | } |
1269 | ||
9b1404c2 AV |
1270 | #ifdef CONFIG_COMPAT |
1271 | static long compat_do_msg_fill(void __user *dest, struct msg_msg *msg, size_t bufsz) | |
1272 | { | |
1273 | struct compat_msgbuf __user *msgp = dest; | |
1274 | size_t msgsz; | |
1275 | ||
1276 | if (put_user(msg->m_type, &msgp->mtype)) | |
1277 | return -EFAULT; | |
1278 | ||
1279 | msgsz = (bufsz > msg->m_ts) ? msg->m_ts : bufsz; | |
1280 | if (store_msg(msgp->mtext, msg, msgsz)) | |
1281 | return -EFAULT; | |
1282 | return msgsz; | |
1283 | } | |
1284 | ||
078faac9 DB |
1285 | long compat_ksys_msgrcv(int msqid, compat_uptr_t msgp, compat_ssize_t msgsz, |
1286 | compat_long_t msgtyp, int msgflg) | |
9b1404c2 AV |
1287 | { |
1288 | return do_msgrcv(msqid, compat_ptr(msgp), (ssize_t)msgsz, (long)msgtyp, | |
1289 | msgflg, compat_do_msg_fill); | |
1290 | } | |
078faac9 DB |
1291 | |
1292 | COMPAT_SYSCALL_DEFINE5(msgrcv, int, msqid, compat_uptr_t, msgp, | |
1293 | compat_ssize_t, msgsz, compat_long_t, msgtyp, | |
1294 | int, msgflg) | |
1295 | { | |
1296 | return compat_ksys_msgrcv(msqid, msgp, msgsz, msgtyp, msgflg); | |
1297 | } | |
9b1404c2 | 1298 | #endif |
3440a6bd | 1299 | |
eae04d25 | 1300 | void msg_init_ns(struct ipc_namespace *ns) |
3440a6bd DB |
1301 | { |
1302 | ns->msg_ctlmax = MSGMAX; | |
1303 | ns->msg_ctlmnb = MSGMNB; | |
0050ee05 | 1304 | ns->msg_ctlmni = MSGMNI; |
3440a6bd DB |
1305 | |
1306 | atomic_set(&ns->msg_bytes, 0); | |
1307 | atomic_set(&ns->msg_hdrs, 0); | |
eae04d25 | 1308 | ipc_init_ids(&ns->ids[IPC_MSG_IDS]); |
3440a6bd DB |
1309 | } |
1310 | ||
1311 | #ifdef CONFIG_IPC_NS | |
1312 | void msg_exit_ns(struct ipc_namespace *ns) | |
1313 | { | |
1314 | free_ipcs(ns, &msg_ids(ns), freeque); | |
1315 | idr_destroy(&ns->ids[IPC_MSG_IDS].ipcs_idr); | |
0cfb6aee | 1316 | rhashtable_destroy(&ns->ids[IPC_MSG_IDS].key_ht); |
3440a6bd DB |
1317 | } |
1318 | #endif | |
1319 | ||
1da177e4 | 1320 | #ifdef CONFIG_PROC_FS |
19b4946c | 1321 | static int sysvipc_msg_proc_show(struct seq_file *s, void *it) |
1da177e4 | 1322 | { |
39a4940e | 1323 | struct pid_namespace *pid_ns = ipc_seq_pid_ns(s); |
1efdb69b | 1324 | struct user_namespace *user_ns = seq_user_ns(s); |
ade9f91b KC |
1325 | struct kern_ipc_perm *ipcp = it; |
1326 | struct msg_queue *msq = container_of(ipcp, struct msg_queue, q_perm); | |
19b4946c | 1327 | |
7f032d6e | 1328 | seq_printf(s, |
50578ea9 | 1329 | "%10d %10d %4o %10lu %10lu %5u %5u %5u %5u %5u %5u %10llu %10llu %10llu\n", |
7f032d6e JP |
1330 | msq->q_perm.key, |
1331 | msq->q_perm.id, | |
1332 | msq->q_perm.mode, | |
1333 | msq->q_cbytes, | |
1334 | msq->q_qnum, | |
39a4940e EB |
1335 | pid_nr_ns(msq->q_lspid, pid_ns), |
1336 | pid_nr_ns(msq->q_lrpid, pid_ns), | |
7f032d6e JP |
1337 | from_kuid_munged(user_ns, msq->q_perm.uid), |
1338 | from_kgid_munged(user_ns, msq->q_perm.gid), | |
1339 | from_kuid_munged(user_ns, msq->q_perm.cuid), | |
1340 | from_kgid_munged(user_ns, msq->q_perm.cgid), | |
1341 | msq->q_stime, | |
1342 | msq->q_rtime, | |
1343 | msq->q_ctime); | |
1344 | ||
1345 | return 0; | |
1da177e4 LT |
1346 | } |
1347 | #endif | |
3440a6bd | 1348 | |
eae04d25 | 1349 | void __init msg_init(void) |
3440a6bd | 1350 | { |
eae04d25 | 1351 | msg_init_ns(&init_ipc_ns); |
3440a6bd | 1352 | |
3440a6bd DB |
1353 | ipc_init_proc_interface("sysvipc/msg", |
1354 | " key msqid perms cbytes qnum lspid lrpid uid gid cuid cgid stime rtime ctime\n", | |
1355 | IPC_MSG_IDS, sysvipc_msg_proc_show); | |
1356 | } |