9p: clear dangling pointers in p9stat_free
authorDominique Martinet <dominique.martinet@cea.fr>
Mon, 27 Aug 2018 22:32:35 +0000 (07:32 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 22 Nov 2018 06:32:46 +0000 (07:32 +0100)
commit78a2d6e9a025931a1fdc0663fc693ebf5fe77026
tree6c96e9e1d8e3c61696c79e63cce3930f592f23ea
parentb29137a4c89bc8ca3c9ea2e2ded7077858b0715c
9p: clear dangling pointers in p9stat_free

[ Upstream commit 62e3941776fea8678bb8120607039410b1b61a65 ]

p9stat_free is more of a cleanup function than a 'free' function as it
only frees the content of the struct; there are chances of use-after-free
if it is improperly used (e.g. p9stat_free called twice as it used to be
possible to)

Clearing dangling pointers makes the function idempotent and safer to use.

Link: http://lkml.kernel.org/r/1535410108-20650-2-git-send-email-asmadeus@codewreck.org
Signed-off-by: Dominique Martinet <dominique.martinet@cea.fr>
Reported-by: syzbot+d4252148d198410b864f@syzkaller.appspotmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/9p/protocol.c