All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] infiniband: i40iw: fix a potential NULL pointer dereference
@ 2019-12-26 12:52 xiyuyang19
  2019-12-26 13:05 ` Leon Romanovsky
  0 siblings, 1 reply; 2+ messages in thread
From: xiyuyang19 @ 2019-12-26 12:52 UTC (permalink / raw)
  To: xiyuyang19
  Cc: yuanxzhang, kjlu, leon, Xin Tan, Faisal Latif, Shiraz Saleem,
	Doug Ledford, Jason Gunthorpe, linux-rdma, linux-kernel

From: Xiyu Yang <xiyuyang19@fudan.edu.cn>

in_dev_get may return a NULL object. The fix handles the situation
by adding a check to avoid NULL pointer dereference on idev,
as pick_local_ipaddrs does.

Signed-off-by: Xiyu Yang <xiyuyang19@fudan.edu.cn>
Signed-off-by: Xin Tan <tanxin.ctf@gmail.com>
---
Changes in v2:
- Release rtnl lock when in_dev_get return NULL

 drivers/infiniband/hw/i40iw/i40iw_main.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/infiniband/hw/i40iw/i40iw_main.c b/drivers/infiniband/hw/i40iw/i40iw_main.c
index d44cf33d..d7146fdf 100644
--- a/drivers/infiniband/hw/i40iw/i40iw_main.c
+++ b/drivers/infiniband/hw/i40iw/i40iw_main.c
@@ -1225,6 +1225,10 @@ static void i40iw_add_ipv4_addr(struct i40iw_device *iwdev)
 			const struct in_ifaddr *ifa;
 
 			idev = in_dev_get(dev);
+			if (!idev) {
+				i40iw_pr_err("ipv4 inet device not found\n");
+				break;
+			}
 			in_dev_for_each_ifa_rtnl(ifa, idev) {
 				i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_CM,
 					    "IP=%pI4, vlan_id=%d, MAC=%pM\n", &ifa->ifa_address,
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] infiniband: i40iw: fix a potential NULL pointer dereference
  2019-12-26 12:52 [PATCH v2] infiniband: i40iw: fix a potential NULL pointer dereference xiyuyang19
@ 2019-12-26 13:05 ` Leon Romanovsky
  0 siblings, 0 replies; 2+ messages in thread
From: Leon Romanovsky @ 2019-12-26 13:05 UTC (permalink / raw)
  To: xiyuyang19
  Cc: yuanxzhang, kjlu, Xin Tan, Faisal Latif, Shiraz Saleem,
	Doug Ledford, Jason Gunthorpe, linux-rdma, linux-kernel

On Thu, Dec 26, 2019 at 08:52:37PM +0800, xiyuyang19@fudan.edu.cn wrote:
> From: Xiyu Yang <xiyuyang19@fudan.edu.cn>
>
> in_dev_get may return a NULL object. The fix handles the situation
> by adding a check to avoid NULL pointer dereference on idev,
> as pick_local_ipaddrs does.
>
> Signed-off-by: Xiyu Yang <xiyuyang19@fudan.edu.cn>
> Signed-off-by: Xin Tan <tanxin.ctf@gmail.com>
> ---
> Changes in v2:
> - Release rtnl lock when in_dev_get return NULL
>
>  drivers/infiniband/hw/i40iw/i40iw_main.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/drivers/infiniband/hw/i40iw/i40iw_main.c b/drivers/infiniband/hw/i40iw/i40iw_main.c
> index d44cf33d..d7146fdf 100644
> --- a/drivers/infiniband/hw/i40iw/i40iw_main.c
> +++ b/drivers/infiniband/hw/i40iw/i40iw_main.c
> @@ -1225,6 +1225,10 @@ static void i40iw_add_ipv4_addr(struct i40iw_device *iwdev)
>  			const struct in_ifaddr *ifa;
>
>  			idev = in_dev_get(dev);
> +			if (!idev) {
> +				i40iw_pr_err("ipv4 inet device not found\n");
> +				break;
> +			}

It continues to be wrong. You shouldn't get out of the loop, but skip
in_dev_for_each_ifa_rtnl() section. Also, error print shouldn't be added
too.

Thanks

>  			in_dev_for_each_ifa_rtnl(ifa, idev) {
>  				i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_CM,
>  					    "IP=%pI4, vlan_id=%d, MAC=%pM\n", &ifa->ifa_address,
> --
> 2.7.4
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-12-26 13:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-26 12:52 [PATCH v2] infiniband: i40iw: fix a potential NULL pointer dereference xiyuyang19
2019-12-26 13:05 ` Leon Romanovsky

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.