All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ALSA: compress: Fix the mismatch size of struc between share lib(32bit) and kernel(64bit)
@ 2014-06-09 20:46 Wang, Xiaoming
  2014-06-09  7:24 ` Takashi Iwai
  0 siblings, 1 reply; 8+ messages in thread
From: Wang, Xiaoming @ 2014-06-09 20:46 UTC (permalink / raw)
  To: tiwai, vinod.koul, jeeja.kp, dhowells, arnd, tglx, mtk.manpages,
	paulmck, davej, linux-kernel
  Cc: dongxing.zhang, xiaoming.wang


The size of struct snd_compr_avail is 0x1c in 32bit kernel,
while it is 0x20 in 64bit kernel 0x4 bytes added because of
alignment. It is OK when 32bit kernel met 32bit user space.
There exist stack corruption if 64bit kernel met 32bit user
space, because the size of struct snd_compr_avail is 0x1c
in 32bit user space which is smaller than it will get from
kernel. The extra 4 bytes can corrupt the stack, and
introduce unpredictable error.

Signed-off-by: Zhang Dongxing <dongxing.zhang@intel.com>
Signed-off-by: xiaoming wang <xiaoming.wang@intel.com>
---
 include/uapi/sound/compress_offload.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/include/uapi/sound/compress_offload.h b/include/uapi/sound/compress_offload.h
index 5759810..766b416 100644
--- a/include/uapi/sound/compress_offload.h
+++ b/include/uapi/sound/compress_offload.h
@@ -70,6 +70,7 @@ struct snd_compr_tstamp {
 	__u32 pcm_frames;
 	__u32 pcm_io_frames;
 	__u32 sampling_rate;
+	__u32 reserved[1];
 };
 
 /**
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-06-19  5:12 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-09 20:46 [PATCH] ALSA: compress: Fix the mismatch size of struc between share lib(32bit) and kernel(64bit) Wang, Xiaoming
2014-06-09  7:24 ` Takashi Iwai
2014-06-09 15:35   ` Vinod Koul
2014-06-12  6:39     ` Wang, Xiaoming
2014-06-13 14:19     ` Arnd Bergmann
2014-06-17  3:06       ` Vinod Koul
2014-06-17 11:48         ` Arnd Bergmann
2014-06-19  5:13           ` Vinod Koul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.