Skip to content

Commit

Permalink
ipc: move atomic_set() to where it is needed
Browse files Browse the repository at this point in the history
Only after ipc_addid() has succeeded will refcounting be used, so move
initialization into ipc_addid() and remove from open-coded *_alloc()
routines.

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 51c23b7 commit 3d3653f
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions ipc/msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@ static struct msg_queue *msg_alloc(void)
if (unlikely(!msq))
return NULL;

atomic_set(&msq->q_perm.refcount, 1);

return msq;
}

Expand Down
1 change: 0 additions & 1 deletion ipc/sem.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,6 @@ static struct sem_array *sem_alloc(size_t nsems)
return NULL;

memset(sma, 0, size);
atomic_set(&sma->sem_perm.refcount, 1);

return sma;
}
Expand Down
2 changes: 0 additions & 2 deletions ipc/shm.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,8 +526,6 @@ static struct shmid_kernel *shm_alloc(void)
if (unlikely(!shp))
return NULL;

atomic_set(&shp->shm_perm.refcount, 1);

return shp;
}

Expand Down
1 change: 1 addition & 0 deletions ipc/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ int ipc_addid(struct ipc_ids *ids, struct kern_ipc_perm *new, int size)

idr_preload(GFP_KERNEL);

atomic_set(&new->refcount, 1);
spin_lock_init(&new->lock);
new->deleted = false;
rcu_read_lock();
Expand Down

0 comments on commit 3d3653f

Please sign in to comment.