From: Vasiliy Kulikov Date: Sat, 30 Oct 2010 14:22:49 +0000 (+0400) Subject: ipc: shm: fix information leak to userland X-Git-Tag: firefly_0821_release~10186^2~718 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b84f1092385101cc432d2afce0bd52ce4d643018;p=firefly-linux-kernel-4.4.55.git ipc: shm: fix information leak to userland commit 3af54c9bd9e6f14f896aac1bb0e8405ae0bc7a44 upstream. The shmid_ds structure is copied to userland with shm_unused{,2,3} fields unitialized. It leads to leaking of contents of kernel stack memory. Signed-off-by: Vasiliy Kulikov Acked-by: Al Viro Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- diff --git a/ipc/shm.c b/ipc/shm.c index e9b039f74129..d30732c97599 100644 --- a/ipc/shm.c +++ b/ipc/shm.c @@ -474,6 +474,7 @@ static inline unsigned long copy_shmid_to_user(void __user *buf, struct shmid64_ { struct shmid_ds out; + memset(&out, 0, sizeof(out)); ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm); out.shm_segsz = in->shm_segsz; out.shm_atime = in->shm_atime;