summaryrefslogtreecommitdiffstats
path: root/ipc/shm.c
diff options
context:
space:
mode:
authorManfred Spraul <manfred@colorfullife.com>2017-07-12 17:35:16 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2017-07-12 19:26:02 -0400
commita2642f8770993a1598500bb6a8082b7c32faff8b (patch)
tree426e3190b86cd610744d127ac43df1d8aa19c2a4 /ipc/shm.c
parent2ec55f8024db859d70f14c26e91ca044328dd50d (diff)
ipc/shm.c: avoid ipc_rcu_putref for failed ipc_addid()
Loosely based on a patch from Kees Cook <keescook@chromium.org>: - id and error can be merged - if operations before ipc_addid() fail, then use call_rcu() directly. The difference is that call_rcu is used for failures after security_shm_alloc(), to continue to guaranteed an rcu delay for security_sem_free(). Link: http://lkml.kernel.org/r/20170525185107.12869-15-manfred@colorfullife.com Signed-off-by: Manfred Spraul <manfred@colorfullife.com> Cc: Kees Cook <keescook@chromium.org> Cc: Davidlohr Bueso <dave@stgolabs.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc/shm.c')
-rw-r--r--ipc/shm.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/ipc/shm.c b/ipc/shm.c
index 2ac489ef56e4..c5976d318ed1 100644
--- a/ipc/shm.c
+++ b/ipc/shm.c
@@ -548,7 +548,6 @@ static int newseg(struct ipc_namespace *ns, struct ipc_params *params)
548 size_t numpages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT; 548 size_t numpages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
549 struct file *file; 549 struct file *file;
550 char name[13]; 550 char name[13];
551 int id;
552 vm_flags_t acctflag = 0; 551 vm_flags_t acctflag = 0;
553 552
554 if (size < SHMMIN || size > ns->shm_ctlmax) 553 if (size < SHMMIN || size > ns->shm_ctlmax)
@@ -617,11 +616,9 @@ static int newseg(struct ipc_namespace *ns, struct ipc_params *params)
617 shp->shm_file = file; 616 shp->shm_file = file;
618 shp->shm_creator = current; 617 shp->shm_creator = current;
619 618
620 id = ipc_addid(&shm_ids(ns), &shp->shm_perm, ns->shm_ctlmni); 619 error = ipc_addid(&shm_ids(ns), &shp->shm_perm, ns->shm_ctlmni);
621 if (id < 0) { 620 if (error < 0)
622 error = id;
623 goto no_id; 621 goto no_id;
624 }
625 622
626 list_add(&shp->shm_clist, &current->sysvshm.shm_clist); 623 list_add(&shp->shm_clist, &current->sysvshm.shm_clist);
627 624
@@ -643,7 +640,7 @@ no_id:
643 user_shm_unlock(size, shp->mlock_user); 640 user_shm_unlock(size, shp->mlock_user);
644 fput(file); 641 fput(file);
645no_file: 642no_file:
646 ipc_rcu_putref(&shp->shm_perm, shm_rcu_free); 643 call_rcu(&shp->shm_perm.rcu, shm_rcu_free);
647 return error; 644 return error;
648} 645}
649 646