]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
sound/oss: remove offset from load_patch callbacks
authorDan Rosenberg <drosenberg@vsecurity.com>
Wed, 23 Mar 2011 14:53:41 +0000 (10:53 -0400)
committerAndi Kleen <ak@linux.intel.com>
Thu, 28 Apr 2011 15:20:58 +0000 (08:20 -0700)
commit95e07fd5a69dd641592cba4f225e898c441dca6b
tree51e5633cab83bb6f39b66c4ba549e07b0aef42fd
parentdc29b760f88ce16053425113e49f1eba4f75422d
sound/oss: remove offset from load_patch callbacks

commit b769f49463711205d57286e64cf535ed4daf59e9 upstream.

Was: [PATCH] sound/oss/midi_synth: prevent underflow, use of
uninitialized value, and signedness issue

The offset passed to midi_synth_load_patch() can be essentially
arbitrary.  If it's greater than the header length, this will result in
a copy_from_user(dst, src, negative_val).  While this will just return
-EFAULT on x86, on other architectures this may cause memory corruption.
Additionally, the length field of the sysex_info structure may not be
initialized prior to its use.  Finally, a signed comparison may result
in an unintentionally large loop.

On suggestion by Takashi Iwai, version two removes the offset argument
from the load_patch callbacks entirely, which also resolves similar
issues in opl3.  Compile tested only.

v3 adjusts comments and hopefully gets copy offsets right.

Signed-off-by: Dan Rosenberg <drosenberg@vsecurity.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
sound/oss/dev_table.h
sound/oss/midi_synth.c
sound/oss/midi_synth.h
sound/oss/opl3.c
sound/oss/sequencer.c