3 * Copyright (C) 1992 Krishna Balasubramanian
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
11 * /proc/sysvipc/msg support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
13 * mostly rewritten, threaded and wake-one semantics added
14 * MSGMAX limit removed, sysctl's added
15 * (c) 1999 Manfred Spraul <manfred@colorfullife.com>
17 * support for audit of ipc object properties and permission changes
18 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
22 * Pavel Emelianov <xemul@openvz.org>
25 #include <linux/capability.h>
26 #include <linux/msg.h>
27 #include <linux/spinlock.h>
28 #include <linux/init.h>
30 #include <linux/proc_fs.h>
31 #include <linux/list.h>
32 #include <linux/security.h>
33 #include <linux/sched.h>
34 #include <linux/syscalls.h>
35 #include <linux/audit.h>
36 #include <linux/seq_file.h>
37 #include <linux/rwsem.h>
38 #include <linux/nsproxy.h>
39 #include <linux/ipc_namespace.h>
41 #include <asm/current.h>
42 #include <asm/uaccess.h>
46 * one msg_receiver structure for each sleeping receiver:
49 struct list_head r_list
;
50 struct task_struct
*r_tsk
;
56 struct msg_msg
*volatile r_msg
;
59 /* one msg_sender for each sleeping sender */
61 struct list_head list
;
62 struct task_struct
*tsk
;
66 #define SEARCH_EQUAL 2
67 #define SEARCH_NOTEQUAL 3
68 #define SEARCH_LESSEQUAL 4
70 #define msg_ids(ns) ((ns)->ids[IPC_MSG_IDS])
72 #define msg_unlock(msq) ipc_unlock(&(msq)->q_perm)
74 static void freeque(struct ipc_namespace
*, struct kern_ipc_perm
*);
75 static int newque(struct ipc_namespace
*, struct ipc_params
*);
77 static int sysvipc_msg_proc_show(struct seq_file
*s
, void *it
);
81 * Scale msgmni with the available lowmem size: the memory dedicated to msg
82 * queues should occupy at most 1/MSG_MEM_SCALE of lowmem.
83 * Also take into account the number of nsproxies created so far.
84 * This should be done staying within the (MSGMNI , IPCMNI/nr_ipc_ns) range.
86 void recompute_msgmni(struct ipc_namespace
*ns
)
89 unsigned long allowed
;
93 allowed
= (((i
.totalram
- i
.totalhigh
) / MSG_MEM_SCALE
) * i
.mem_unit
)
95 nb_ns
= atomic_read(&nr_ipc_ns
);
98 if (allowed
< MSGMNI
) {
99 ns
->msg_ctlmni
= MSGMNI
;
103 if (allowed
> IPCMNI
/ nb_ns
) {
104 ns
->msg_ctlmni
= IPCMNI
/ nb_ns
;
108 ns
->msg_ctlmni
= allowed
;
111 void msg_init_ns(struct ipc_namespace
*ns
)
113 ns
->msg_ctlmax
= MSGMAX
;
114 ns
->msg_ctlmnb
= MSGMNB
;
116 recompute_msgmni(ns
);
118 atomic_set(&ns
->msg_bytes
, 0);
119 atomic_set(&ns
->msg_hdrs
, 0);
120 ipc_init_ids(&ns
->ids
[IPC_MSG_IDS
]);
124 void msg_exit_ns(struct ipc_namespace
*ns
)
126 free_ipcs(ns
, &msg_ids(ns
), freeque
);
127 idr_destroy(&ns
->ids
[IPC_MSG_IDS
].ipcs_idr
);
131 void __init
msg_init(void)
133 msg_init_ns(&init_ipc_ns
);
135 printk(KERN_INFO
"msgmni has been set to %d\n",
136 init_ipc_ns
.msg_ctlmni
);
138 ipc_init_proc_interface("sysvipc/msg",
139 " key msqid perms cbytes qnum lspid lrpid uid gid cuid cgid stime rtime ctime\n",
140 IPC_MSG_IDS
, sysvipc_msg_proc_show
);
144 * msg_lock_(check_) routines are called in the paths where the rw_mutex
147 static inline struct msg_queue
*msg_lock(struct ipc_namespace
*ns
, int id
)
149 struct kern_ipc_perm
*ipcp
= ipc_lock(&msg_ids(ns
), id
);
152 return (struct msg_queue
*)ipcp
;
154 return container_of(ipcp
, struct msg_queue
, q_perm
);
157 static inline struct msg_queue
*msg_lock_check(struct ipc_namespace
*ns
,
160 struct kern_ipc_perm
*ipcp
= ipc_lock_check(&msg_ids(ns
), id
);
163 return (struct msg_queue
*)ipcp
;
165 return container_of(ipcp
, struct msg_queue
, q_perm
);
168 static inline void msg_rmid(struct ipc_namespace
*ns
, struct msg_queue
*s
)
170 ipc_rmid(&msg_ids(ns
), &s
->q_perm
);
174 * newque - Create a new msg queue
176 * @params: ptr to the structure that contains the key and msgflg
178 * Called with msg_ids.rw_mutex held (writer)
180 static int newque(struct ipc_namespace
*ns
, struct ipc_params
*params
)
182 struct msg_queue
*msq
;
184 key_t key
= params
->key
;
185 int msgflg
= params
->flg
;
187 msq
= ipc_rcu_alloc(sizeof(*msq
));
191 msq
->q_perm
.mode
= msgflg
& S_IRWXUGO
;
192 msq
->q_perm
.key
= key
;
194 msq
->q_perm
.security
= NULL
;
195 retval
= security_msg_queue_alloc(msq
);
202 * ipc_addid() locks msq
204 id
= ipc_addid(&msg_ids(ns
), &msq
->q_perm
, ns
->msg_ctlmni
);
206 security_msg_queue_free(msq
);
211 msq
->q_stime
= msq
->q_rtime
= 0;
212 msq
->q_ctime
= get_seconds();
213 msq
->q_cbytes
= msq
->q_qnum
= 0;
214 msq
->q_qbytes
= ns
->msg_ctlmnb
;
215 msq
->q_lspid
= msq
->q_lrpid
= 0;
216 INIT_LIST_HEAD(&msq
->q_messages
);
217 INIT_LIST_HEAD(&msq
->q_receivers
);
218 INIT_LIST_HEAD(&msq
->q_senders
);
222 return msq
->q_perm
.id
;
225 static inline void ss_add(struct msg_queue
*msq
, struct msg_sender
*mss
)
228 current
->state
= TASK_INTERRUPTIBLE
;
229 list_add_tail(&mss
->list
, &msq
->q_senders
);
232 static inline void ss_del(struct msg_sender
*mss
)
234 if (mss
->list
.next
!= NULL
)
235 list_del(&mss
->list
);
238 static void ss_wakeup(struct list_head
*h
, int kill
)
240 struct list_head
*tmp
;
244 struct msg_sender
*mss
;
246 mss
= list_entry(tmp
, struct msg_sender
, list
);
249 mss
->list
.next
= NULL
;
250 wake_up_process(mss
->tsk
);
254 static void expunge_all(struct msg_queue
*msq
, int res
)
256 struct list_head
*tmp
;
258 tmp
= msq
->q_receivers
.next
;
259 while (tmp
!= &msq
->q_receivers
) {
260 struct msg_receiver
*msr
;
262 msr
= list_entry(tmp
, struct msg_receiver
, r_list
);
265 wake_up_process(msr
->r_tsk
);
267 msr
->r_msg
= ERR_PTR(res
);
272 * freeque() wakes up waiters on the sender and receiver waiting queue,
273 * removes the message queue from message queue ID IDR, and cleans up all the
274 * messages associated with this queue.
276 * msg_ids.rw_mutex (writer) and the spinlock for this message queue are held
277 * before freeque() is called. msg_ids.rw_mutex remains locked on exit.
279 static void freeque(struct ipc_namespace
*ns
, struct kern_ipc_perm
*ipcp
)
281 struct list_head
*tmp
;
282 struct msg_queue
*msq
= container_of(ipcp
, struct msg_queue
, q_perm
);
284 expunge_all(msq
, -EIDRM
);
285 ss_wakeup(&msq
->q_senders
, 1);
289 tmp
= msq
->q_messages
.next
;
290 while (tmp
!= &msq
->q_messages
) {
291 struct msg_msg
*msg
= list_entry(tmp
, struct msg_msg
, m_list
);
294 atomic_dec(&ns
->msg_hdrs
);
297 atomic_sub(msq
->q_cbytes
, &ns
->msg_bytes
);
298 security_msg_queue_free(msq
);
299 ipc_lock_by_ptr(&msq
->q_perm
);
301 ipc_unlock(&msq
->q_perm
);
305 * Called with msg_ids.rw_mutex and ipcp locked.
307 static inline int msg_security(struct kern_ipc_perm
*ipcp
, int msgflg
)
309 struct msg_queue
*msq
= container_of(ipcp
, struct msg_queue
, q_perm
);
311 return security_msg_queue_associate(msq
, msgflg
);
314 SYSCALL_DEFINE2(msgget
, key_t
, key
, int, msgflg
)
316 struct ipc_namespace
*ns
;
317 struct ipc_ops msg_ops
;
318 struct ipc_params msg_params
;
320 ns
= current
->nsproxy
->ipc_ns
;
322 msg_ops
.getnew
= newque
;
323 msg_ops
.associate
= msg_security
;
324 msg_ops
.more_checks
= NULL
;
326 msg_params
.key
= key
;
327 msg_params
.flg
= msgflg
;
329 return ipcget(ns
, &msg_ids(ns
), &msg_ops
, &msg_params
);
332 static inline unsigned long
333 copy_msqid_to_user(void __user
*buf
, struct msqid64_ds
*in
, int version
)
337 return copy_to_user(buf
, in
, sizeof(*in
));
342 memset(&out
, 0, sizeof(out
));
344 ipc64_perm_to_ipc_perm(&in
->msg_perm
, &out
.msg_perm
);
346 out
.msg_stime
= in
->msg_stime
;
347 out
.msg_rtime
= in
->msg_rtime
;
348 out
.msg_ctime
= in
->msg_ctime
;
350 if (in
->msg_cbytes
> USHRT_MAX
)
351 out
.msg_cbytes
= USHRT_MAX
;
353 out
.msg_cbytes
= in
->msg_cbytes
;
354 out
.msg_lcbytes
= in
->msg_cbytes
;
356 if (in
->msg_qnum
> USHRT_MAX
)
357 out
.msg_qnum
= USHRT_MAX
;
359 out
.msg_qnum
= in
->msg_qnum
;
361 if (in
->msg_qbytes
> USHRT_MAX
)
362 out
.msg_qbytes
= USHRT_MAX
;
364 out
.msg_qbytes
= in
->msg_qbytes
;
365 out
.msg_lqbytes
= in
->msg_qbytes
;
367 out
.msg_lspid
= in
->msg_lspid
;
368 out
.msg_lrpid
= in
->msg_lrpid
;
370 return copy_to_user(buf
, &out
, sizeof(out
));
377 static inline unsigned long
378 copy_msqid_from_user(struct msqid64_ds
*out
, void __user
*buf
, int version
)
382 if (copy_from_user(out
, buf
, sizeof(*out
)))
387 struct msqid_ds tbuf_old
;
389 if (copy_from_user(&tbuf_old
, buf
, sizeof(tbuf_old
)))
392 out
->msg_perm
.uid
= tbuf_old
.msg_perm
.uid
;
393 out
->msg_perm
.gid
= tbuf_old
.msg_perm
.gid
;
394 out
->msg_perm
.mode
= tbuf_old
.msg_perm
.mode
;
396 if (tbuf_old
.msg_qbytes
== 0)
397 out
->msg_qbytes
= tbuf_old
.msg_lqbytes
;
399 out
->msg_qbytes
= tbuf_old
.msg_qbytes
;
409 * This function handles some msgctl commands which require the rw_mutex
410 * to be held in write mode.
411 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
413 static int msgctl_down(struct ipc_namespace
*ns
, int msqid
, int cmd
,
414 struct msqid_ds __user
*buf
, int version
)
416 struct kern_ipc_perm
*ipcp
;
417 struct msqid64_ds
uninitialized_var(msqid64
);
418 struct msg_queue
*msq
;
421 if (cmd
== IPC_SET
) {
422 if (copy_msqid_from_user(&msqid64
, buf
, version
))
426 ipcp
= ipcctl_pre_down(ns
, &msg_ids(ns
), msqid
, cmd
,
427 &msqid64
.msg_perm
, msqid64
.msg_qbytes
);
429 return PTR_ERR(ipcp
);
431 msq
= container_of(ipcp
, struct msg_queue
, q_perm
);
433 err
= security_msg_queue_msgctl(msq
, cmd
);
442 if (msqid64
.msg_qbytes
> ns
->msg_ctlmnb
&&
443 !capable(CAP_SYS_RESOURCE
)) {
448 msq
->q_qbytes
= msqid64
.msg_qbytes
;
450 ipc_update_perm(&msqid64
.msg_perm
, ipcp
);
451 msq
->q_ctime
= get_seconds();
452 /* sleeping receivers might be excluded by
453 * stricter permissions.
455 expunge_all(msq
, -EAGAIN
);
456 /* sleeping senders might be able to send
457 * due to a larger queue size.
459 ss_wakeup(&msq
->q_senders
, 0);
467 up_write(&msg_ids(ns
).rw_mutex
);
471 SYSCALL_DEFINE3(msgctl
, int, msqid
, int, cmd
, struct msqid_ds __user
*, buf
)
473 struct msg_queue
*msq
;
475 struct ipc_namespace
*ns
;
477 if (msqid
< 0 || cmd
< 0)
480 version
= ipc_parse_version(&cmd
);
481 ns
= current
->nsproxy
->ipc_ns
;
487 struct msginfo msginfo
;
493 * We must not return kernel stack data.
494 * due to padding, it's not enough
495 * to set all member fields.
497 err
= security_msg_queue_msgctl(NULL
, cmd
);
501 memset(&msginfo
, 0, sizeof(msginfo
));
502 msginfo
.msgmni
= ns
->msg_ctlmni
;
503 msginfo
.msgmax
= ns
->msg_ctlmax
;
504 msginfo
.msgmnb
= ns
->msg_ctlmnb
;
505 msginfo
.msgssz
= MSGSSZ
;
506 msginfo
.msgseg
= MSGSEG
;
507 down_read(&msg_ids(ns
).rw_mutex
);
508 if (cmd
== MSG_INFO
) {
509 msginfo
.msgpool
= msg_ids(ns
).in_use
;
510 msginfo
.msgmap
= atomic_read(&ns
->msg_hdrs
);
511 msginfo
.msgtql
= atomic_read(&ns
->msg_bytes
);
513 msginfo
.msgmap
= MSGMAP
;
514 msginfo
.msgpool
= MSGPOOL
;
515 msginfo
.msgtql
= MSGTQL
;
517 max_id
= ipc_get_maxid(&msg_ids(ns
));
518 up_read(&msg_ids(ns
).rw_mutex
);
519 if (copy_to_user(buf
, &msginfo
, sizeof(struct msginfo
)))
521 return (max_id
< 0) ? 0 : max_id
;
523 case MSG_STAT
: /* msqid is an index rather than a msg queue id */
526 struct msqid64_ds tbuf
;
532 if (cmd
== MSG_STAT
) {
533 msq
= msg_lock(ns
, msqid
);
536 success_return
= msq
->q_perm
.id
;
538 msq
= msg_lock_check(ns
, msqid
);
544 if (ipcperms(ns
, &msq
->q_perm
, S_IRUGO
))
547 err
= security_msg_queue_msgctl(msq
, cmd
);
551 memset(&tbuf
, 0, sizeof(tbuf
));
553 kernel_to_ipc64_perm(&msq
->q_perm
, &tbuf
.msg_perm
);
554 tbuf
.msg_stime
= msq
->q_stime
;
555 tbuf
.msg_rtime
= msq
->q_rtime
;
556 tbuf
.msg_ctime
= msq
->q_ctime
;
557 tbuf
.msg_cbytes
= msq
->q_cbytes
;
558 tbuf
.msg_qnum
= msq
->q_qnum
;
559 tbuf
.msg_qbytes
= msq
->q_qbytes
;
560 tbuf
.msg_lspid
= msq
->q_lspid
;
561 tbuf
.msg_lrpid
= msq
->q_lrpid
;
563 if (copy_msqid_to_user(buf
, &tbuf
, version
))
565 return success_return
;
569 err
= msgctl_down(ns
, msqid
, cmd
, buf
, version
);
580 static int testmsg(struct msg_msg
*msg
, long type
, int mode
)
586 case SEARCH_LESSEQUAL
:
587 if (msg
->m_type
<=type
)
591 if (msg
->m_type
== type
)
594 case SEARCH_NOTEQUAL
:
595 if (msg
->m_type
!= type
)
602 static inline int pipelined_send(struct msg_queue
*msq
, struct msg_msg
*msg
)
604 struct list_head
*tmp
;
606 tmp
= msq
->q_receivers
.next
;
607 while (tmp
!= &msq
->q_receivers
) {
608 struct msg_receiver
*msr
;
610 msr
= list_entry(tmp
, struct msg_receiver
, r_list
);
612 if (testmsg(msg
, msr
->r_msgtype
, msr
->r_mode
) &&
613 !security_msg_queue_msgrcv(msq
, msg
, msr
->r_tsk
,
614 msr
->r_msgtype
, msr
->r_mode
)) {
616 list_del(&msr
->r_list
);
617 if (msr
->r_maxsize
< msg
->m_ts
) {
619 wake_up_process(msr
->r_tsk
);
621 msr
->r_msg
= ERR_PTR(-E2BIG
);
624 msq
->q_lrpid
= task_pid_vnr(msr
->r_tsk
);
625 msq
->q_rtime
= get_seconds();
626 wake_up_process(msr
->r_tsk
);
637 long do_msgsnd(int msqid
, long mtype
, void __user
*mtext
,
638 size_t msgsz
, int msgflg
)
640 struct msg_queue
*msq
;
643 struct ipc_namespace
*ns
;
645 ns
= current
->nsproxy
->ipc_ns
;
647 if (msgsz
> ns
->msg_ctlmax
|| (long) msgsz
< 0 || msqid
< 0)
652 msg
= load_msg(mtext
, msgsz
);
659 msq
= msg_lock_check(ns
, msqid
);
669 if (ipcperms(ns
, &msq
->q_perm
, S_IWUGO
))
670 goto out_unlock_free
;
672 err
= security_msg_queue_msgsnd(msq
, msg
, msgflg
);
674 goto out_unlock_free
;
676 if (msgsz
+ msq
->q_cbytes
<= msq
->q_qbytes
&&
677 1 + msq
->q_qnum
<= msq
->q_qbytes
) {
681 /* queue full, wait: */
682 if (msgflg
& IPC_NOWAIT
) {
684 goto out_unlock_free
;
691 ipc_lock_by_ptr(&msq
->q_perm
);
693 if (msq
->q_perm
.deleted
) {
695 goto out_unlock_free
;
699 if (signal_pending(current
)) {
700 err
= -ERESTARTNOHAND
;
701 goto out_unlock_free
;
705 msq
->q_lspid
= task_tgid_vnr(current
);
706 msq
->q_stime
= get_seconds();
708 if (!pipelined_send(msq
, msg
)) {
709 /* no one is waiting for this message, enqueue it */
710 list_add_tail(&msg
->m_list
, &msq
->q_messages
);
711 msq
->q_cbytes
+= msgsz
;
713 atomic_add(msgsz
, &ns
->msg_bytes
);
714 atomic_inc(&ns
->msg_hdrs
);
728 SYSCALL_DEFINE4(msgsnd
, int, msqid
, struct msgbuf __user
*, msgp
, size_t, msgsz
,
733 if (get_user(mtype
, &msgp
->mtype
))
735 return do_msgsnd(msqid
, mtype
, msgp
->mtext
, msgsz
, msgflg
);
738 static inline int convert_mode(long *msgtyp
, int msgflg
)
741 * find message of correct type.
742 * msgtyp = 0 => get first.
743 * msgtyp > 0 => get first message of matching type.
744 * msgtyp < 0 => get message with least type must be < abs(msgtype).
750 return SEARCH_LESSEQUAL
;
752 if (msgflg
& MSG_EXCEPT
)
753 return SEARCH_NOTEQUAL
;
757 long do_msgrcv(int msqid
, long *pmtype
, void __user
*mtext
,
758 size_t msgsz
, long msgtyp
, int msgflg
)
760 struct msg_queue
*msq
;
763 struct ipc_namespace
*ns
;
765 if (msqid
< 0 || (long) msgsz
< 0)
767 mode
= convert_mode(&msgtyp
, msgflg
);
768 ns
= current
->nsproxy
->ipc_ns
;
770 msq
= msg_lock_check(ns
, msqid
);
775 struct msg_receiver msr_d
;
776 struct list_head
*tmp
;
778 msg
= ERR_PTR(-EACCES
);
779 if (ipcperms(ns
, &msq
->q_perm
, S_IRUGO
))
782 msg
= ERR_PTR(-EAGAIN
);
783 tmp
= msq
->q_messages
.next
;
784 while (tmp
!= &msq
->q_messages
) {
785 struct msg_msg
*walk_msg
;
787 walk_msg
= list_entry(tmp
, struct msg_msg
, m_list
);
788 if (testmsg(walk_msg
, msgtyp
, mode
) &&
789 !security_msg_queue_msgrcv(msq
, walk_msg
, current
,
793 if (mode
== SEARCH_LESSEQUAL
&&
794 walk_msg
->m_type
!= 1) {
796 msgtyp
= walk_msg
->m_type
- 1;
806 * Found a suitable message.
807 * Unlink it from the queue.
809 if ((msgsz
< msg
->m_ts
) && !(msgflg
& MSG_NOERROR
)) {
810 msg
= ERR_PTR(-E2BIG
);
813 list_del(&msg
->m_list
);
815 msq
->q_rtime
= get_seconds();
816 msq
->q_lrpid
= task_tgid_vnr(current
);
817 msq
->q_cbytes
-= msg
->m_ts
;
818 atomic_sub(msg
->m_ts
, &ns
->msg_bytes
);
819 atomic_dec(&ns
->msg_hdrs
);
820 ss_wakeup(&msq
->q_senders
, 0);
824 /* No message waiting. Wait for a message */
825 if (msgflg
& IPC_NOWAIT
) {
826 msg
= ERR_PTR(-ENOMSG
);
829 list_add_tail(&msr_d
.r_list
, &msq
->q_receivers
);
830 msr_d
.r_tsk
= current
;
831 msr_d
.r_msgtype
= msgtyp
;
833 if (msgflg
& MSG_NOERROR
)
834 msr_d
.r_maxsize
= INT_MAX
;
836 msr_d
.r_maxsize
= msgsz
;
837 msr_d
.r_msg
= ERR_PTR(-EAGAIN
);
838 current
->state
= TASK_INTERRUPTIBLE
;
843 /* Lockless receive, part 1:
844 * Disable preemption. We don't hold a reference to the queue
845 * and getting a reference would defeat the idea of a lockless
846 * operation, thus the code relies on rcu to guarantee the
848 * Prior to destruction, expunge_all(-EIRDM) changes r_msg.
849 * Thus if r_msg is -EAGAIN, then the queue not yet destroyed.
850 * rcu_read_lock() prevents preemption between reading r_msg
851 * and the spin_lock() inside ipc_lock_by_ptr().
855 /* Lockless receive, part 2:
856 * Wait until pipelined_send or expunge_all are outside of
857 * wake_up_process(). There is a race with exit(), see
858 * ipc/mqueue.c for the details.
860 msg
= (struct msg_msg
*)msr_d
.r_msg
;
861 while (msg
== NULL
) {
863 msg
= (struct msg_msg
*)msr_d
.r_msg
;
866 /* Lockless receive, part 3:
867 * If there is a message or an error then accept it without
870 if (msg
!= ERR_PTR(-EAGAIN
)) {
875 /* Lockless receive, part 3:
876 * Acquire the queue spinlock.
878 ipc_lock_by_ptr(&msq
->q_perm
);
881 /* Lockless receive, part 4:
882 * Repeat test after acquiring the spinlock.
884 msg
= (struct msg_msg
*)msr_d
.r_msg
;
885 if (msg
!= ERR_PTR(-EAGAIN
))
888 list_del(&msr_d
.r_list
);
889 if (signal_pending(current
)) {
890 msg
= ERR_PTR(-ERESTARTNOHAND
);
899 msgsz
= (msgsz
> msg
->m_ts
) ? msg
->m_ts
: msgsz
;
900 *pmtype
= msg
->m_type
;
901 if (store_msg(mtext
, msg
, msgsz
))
909 SYSCALL_DEFINE5(msgrcv
, int, msqid
, struct msgbuf __user
*, msgp
, size_t, msgsz
,
910 long, msgtyp
, int, msgflg
)
914 err
= do_msgrcv(msqid
, &mtype
, msgp
->mtext
, msgsz
, msgtyp
, msgflg
);
918 if (put_user(mtype
, &msgp
->mtype
))
924 #ifdef CONFIG_PROC_FS
925 static int sysvipc_msg_proc_show(struct seq_file
*s
, void *it
)
927 struct msg_queue
*msq
= it
;
930 "%10d %10d %4o %10lu %10lu %5u %5u %5u %5u %5u %5u %10lu %10lu %10lu\n",