Skip to content

Commit

Permalink
ipc/msg: do not use ipc_rcu_free()
Browse files Browse the repository at this point in the history
Avoid using ipc_rcu_free, since it just re-finds the original structure
pointer.  For the pre-list-init failure path, there is no RCU needed,
since it was just allocated.  It can be directly freed.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Kees Cook <[email protected]>
Signed-off-by: Manfred Spraul <[email protected]>
Cc: Davidlohr Bueso <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
kees authored and torvalds committed Jul 12, 2017
1 parent 66470b1 commit 9ef5932
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ipc/msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,18 @@ static inline void msg_rmid(struct ipc_namespace *ns, struct msg_queue *s)
ipc_rmid(&msg_ids(ns), &s->q_perm);
}

static void __msg_free(struct msg_queue *msq)
{
kvfree(msq);
}

static void msg_rcu_free(struct rcu_head *head)
{
struct kern_ipc_perm *p = container_of(head, struct kern_ipc_perm, rcu);
struct msg_queue *msq = container_of(p, struct msg_queue, q_perm);

security_msg_queue_free(msq);
ipc_rcu_free(head);
__msg_free(msq);
}

/**
Expand Down Expand Up @@ -131,7 +136,7 @@ static int newque(struct ipc_namespace *ns, struct ipc_params *params)
msq->q_perm.security = NULL;
retval = security_msg_queue_alloc(msq);
if (retval) {
ipc_rcu_putref(&msq->q_perm, ipc_rcu_free);
__msg_free(msq);
return retval;
}

Expand Down

0 comments on commit 9ef5932

Please sign in to comment.