ALSA: compress: fix an integer overflow check
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 16 Jul 2014 06:37:04 +0000 (09:37 +0300)
committerJiri Slaby <jslaby@suse.cz>
Thu, 21 Jul 2016 06:36:11 +0000 (08:36 +0200)
commit 6217e5ede23285ddfee10d2e4ba0cc2d4c046205 upstream.

I previously added an integer overflow check here but looking at it now,
it's still buggy.

The bug happens in snd_compr_allocate_buffer().  We multiply
".fragments" and ".fragment_size" and that doesn't overflow but then we
save it in an unsigned int so it truncates the high bits away and we
allocate a smaller than expected size.

Fixes: b35cc8225845 ('ALSA: compress_core: integer overflow in snd_compr_allocate_buffer()')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
sound/core/compress_offload.c

index 3f2b4b7f2ec9d37cfa0e05634558c9d800c79075..a20650d288445d1559737cf1a9ca6c20e8a70e47 100644 (file)
@@ -501,7 +501,7 @@ static int snd_compress_check_input(struct snd_compr_params *params)
 {
        /* first let's check the buffer parameter's */
        if (params->buffer.fragment_size == 0 ||
-                       params->buffer.fragments > SIZE_MAX / params->buffer.fragment_size)
+           params->buffer.fragments > INT_MAX / params->buffer.fragment_size)
                return -EINVAL;
 
        /* now codec parameters */