[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20190304195446.GA7751@ziepe.ca>
Date: Mon, 4 Mar 2019 15:54:46 -0400
From: Jason Gunthorpe <jgg@...pe.ca>
To: Shaobo He <shaobo@...utah.edu>
Cc: linux-rdma@...r.kernel.org, Steve Wise <swise@...lsio.com>,
Doug Ledford <dledford@...hat.com>,
open list <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] cxgb4: fix undefined behavior in mem.c
On Thu, Feb 28, 2019 at 03:38:38PM -0700, Shaobo He wrote:
> In function `c4iw_dealloc_mw`, variable mhp's value is printed after
> freed, which triggers undefined behavior according to this post:
> https://trust-in-soft.com/dangling-pointer-indeterminate/.
>
> This commit fixes it by swapping the order of `kfree` and `pr_debug`.
>
> Signed-off-by: Shaobo He <shaobo@...utah.edu>
> ---
> drivers/infiniband/hw/cxgb4/mem.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Discussion aside, this is a worthwile fix. I rewrote the commit
message to avoid referencing 'undefined behavior' though, this is just
a straight up bug in the logging. Another thread could get the same
pointer value for the mhp before the print creating a confusing log.
cxgb4: kfree mhp after the debug print
In function `c4iw_dealloc_mw`, variable mhp's value is printed after
freed, it is clearer to have the print before the kfree.
Otherwise racing threads could allocate another mhp with the same pointer
value and create confusing tracing.
Jason
Powered by blists - more mailing lists