]> git.baikalelectronics.ru Git - kernel.git/commit
scsi: fcoe: fix use-after-free in fcoe_ctlr_els_send
authorJohannes Thumshirn <jthumshirn@suse.de>
Tue, 31 Jul 2018 13:46:01 +0000 (15:46 +0200)
committerMartin K. Petersen <martin.petersen@oracle.com>
Thu, 2 Aug 2018 19:30:03 +0000 (15:30 -0400)
commitc5a0cf08d9f0d64560fa45c95ce222ac322970cf
treed5ee11e647116774edbf2cfc46182acfb3c12700
parent184f7e598fdce567dd6ecf1bd986b96683b63ada
scsi: fcoe: fix use-after-free in fcoe_ctlr_els_send

KASAN reports a use-after-free in fcoe_ctlr_els_send() when we're sending a
LOGO and have FIP debugging enabled. This is because we're first freeing
the skb and then printing the frame's DID. But the DID is a member of the
FC frame header which in turn is the skb's payload.

Exchange the debug print and kfree_skb() calls so we're not touching the
freed data.

Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/fcoe/fcoe_ctlr.c