]> git.karo-electronics.de Git - karo-tx-linux.git/commit
paride: fix potential information leak in pg_read()
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 8 Nov 2011 00:20:09 +0000 (11:20 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 16 Nov 2011 01:47:01 +0000 (12:47 +1100)
commit5253d014dc3b1ca116130a74f03f76803b56cb54
treee6d5276001fbd9af7b748bfb417d0cd81e802679
parent5285f903ef9801480c53c1ba3700197747ba4509
paride: fix potential information leak in pg_read()

Smatch has a new check for Rosenberg type information leaks where structs
are copied to the user with uninitialized stack data in them.  i In this
case, the pg_write_hdr struct has a hole in it.

struct pg_write_hdr {
        char                       magic;                /*     0     1 */
        char                       func;                 /*     1     1 */
        /* XXX 2 bytes hole, try to pack */
        int                        dlen;                 /*     4     4 */

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Tim Waugh <tim@cyberelk.net>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/block/paride/pg.c