diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/msg.c | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -680,16 +680,18 @@ long do_msgsnd(int msqid, long mtype, void __user *mtext, | |||
680 | goto out_unlock1; | 680 | goto out_unlock1; |
681 | } | 681 | } |
682 | 682 | ||
683 | ipc_lock_object(&msq->q_perm); | ||
684 | |||
683 | for (;;) { | 685 | for (;;) { |
684 | struct msg_sender s; | 686 | struct msg_sender s; |
685 | 687 | ||
686 | err = -EACCES; | 688 | err = -EACCES; |
687 | if (ipcperms(ns, &msq->q_perm, S_IWUGO)) | 689 | if (ipcperms(ns, &msq->q_perm, S_IWUGO)) |
688 | goto out_unlock1; | 690 | goto out_unlock0; |
689 | 691 | ||
690 | err = security_msg_queue_msgsnd(msq, msg, msgflg); | 692 | err = security_msg_queue_msgsnd(msq, msg, msgflg); |
691 | if (err) | 693 | if (err) |
692 | goto out_unlock1; | 694 | goto out_unlock0; |
693 | 695 | ||
694 | if (msgsz + msq->q_cbytes <= msq->q_qbytes && | 696 | if (msgsz + msq->q_cbytes <= msq->q_qbytes && |
695 | 1 + msq->q_qnum <= msq->q_qbytes) { | 697 | 1 + msq->q_qnum <= msq->q_qbytes) { |
@@ -699,10 +701,9 @@ long do_msgsnd(int msqid, long mtype, void __user *mtext, | |||
699 | /* queue full, wait: */ | 701 | /* queue full, wait: */ |
700 | if (msgflg & IPC_NOWAIT) { | 702 | if (msgflg & IPC_NOWAIT) { |
701 | err = -EAGAIN; | 703 | err = -EAGAIN; |
702 | goto out_unlock1; | 704 | goto out_unlock0; |
703 | } | 705 | } |
704 | 706 | ||
705 | ipc_lock_object(&msq->q_perm); | ||
706 | ss_add(msq, &s); | 707 | ss_add(msq, &s); |
707 | 708 | ||
708 | if (!ipc_rcu_getref(msq)) { | 709 | if (!ipc_rcu_getref(msq)) { |
@@ -730,10 +731,7 @@ long do_msgsnd(int msqid, long mtype, void __user *mtext, | |||
730 | goto out_unlock0; | 731 | goto out_unlock0; |
731 | } | 732 | } |
732 | 733 | ||
733 | ipc_unlock_object(&msq->q_perm); | ||
734 | } | 734 | } |
735 | |||
736 | ipc_lock_object(&msq->q_perm); | ||
737 | msq->q_lspid = task_tgid_vnr(current); | 735 | msq->q_lspid = task_tgid_vnr(current); |
738 | msq->q_stime = get_seconds(); | 736 | msq->q_stime = get_seconds(); |
739 | 737 | ||