Skip to content

Commit

Permalink
ipc/msg.c: avoid ipc_rcu_putref for failed ipc_addid()
Browse files Browse the repository at this point in the history
Loosely based on a patch from Kees Cook <[email protected]>:
 - id and retval can be merged
 - if ipc_addid() fails, then use call_rcu() directly.

The difference is that call_rcu is used for failed ipc_addid() calls, to
continue to guaranteed an rcu delay for security_msg_queue_free().

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Manfred Spraul <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Davidlohr Bueso <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
manfred-colorfu authored and torvalds committed Jul 12, 2017
1 parent a2642f8 commit 51c23b7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ipc/msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static struct msg_queue *msg_alloc(void)
static int newque(struct ipc_namespace *ns, struct ipc_params *params)
{
struct msg_queue *msq;
int id, retval;
int retval;
key_t key = params->key;
int msgflg = params->flg;

Expand Down Expand Up @@ -160,10 +160,10 @@ static int newque(struct ipc_namespace *ns, struct ipc_params *params)
INIT_LIST_HEAD(&msq->q_senders);

/* ipc_addid() locks msq upon success. */
id = ipc_addid(&msg_ids(ns), &msq->q_perm, ns->msg_ctlmni);
if (id < 0) {
ipc_rcu_putref(&msq->q_perm, msg_rcu_free);
return id;
retval = ipc_addid(&msg_ids(ns), &msq->q_perm, ns->msg_ctlmni);
if (retval < 0) {
call_rcu(&msq->q_perm.rcu, msg_rcu_free);
return retval;
}

ipc_unlock_object(&msq->q_perm);
Expand Down

0 comments on commit 51c23b7

Please sign in to comment.