qed: fix use-after-free during l2 cache commit
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Fri, 30 Sep 2011 10:39:11 +0000 (11:39 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 5 Oct 2011 15:52:31 +0000 (10:52 -0500)
commit8b68a7032ccd5ddf691bc0a9d5a425fbdef0c386
tree4ba5d1094292e2456e5299ad42674b7f56cfac83
parent3fbc95bcf2cc1ce3a317cf35268919197280b5f1
qed: fix use-after-free during l2 cache commit

QED's metadata caching strategy allows two parallel requests to race for
metadata lookup.  The first one to complete will populate the metadata
cache and the second one will drop the data it just read in favor of the
cached data.

There is a use-after-free in qed_read_l2_table_cb() and
qed_commit_l2_update() where l2_table->offset was used after the
l2_table may have been freed due to a metadata lookup race.  Fix this by
keeping the l2_offset in a local variable and not reaching into the
possibly freed l2_table.

Reported-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
block/qed-table.c
block/qed.c