misc: mic: scif: fix potential double free of scif_dev
authorKefeng Wang <wangkefeng.wang@huawei.com>
Fri, 31 May 2019 15:23:24 +0000 (23:23 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 10 Jun 2019 16:44:22 +0000 (18:44 +0200)
commitb0c35cb59f7b640f455fa426074fea155296a37c
tree81f301852d8a6e79e33af1f6bfe93311b7a342d5
parent2f0f2441b4a10948e2ec042b48fef13680387f7c
misc: mic: scif: fix potential double free of scif_dev

_scif_init() free scif_dev in the free_sdev erro path,
but _scif_exit will free it again when module exit, it
cause BUG_ON issue,

  kernel BUG at mm/slub.c:3944!
  invalid opcode: 0000 [#1] SMP KASAN PTI

Set scif_dev to NULL in scif_destroy_scifdev() to fix it.

Cc: Sudeep Dutt <sudeep.dutt@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mic/scif/scif_main.c