* [PATCH] i40iw: Receive netdev events post INET_NOTIFIER state
@ 2017-03-17 23:30 Shiraz Saleem
[not found] ` <20170317233007.16768-1-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Shiraz Saleem @ 2017-03-17 23:30 UTC (permalink / raw)
To: dledford-H+wXaHxf7aLQT0dZR+AlfA
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA,
e1000-rdma-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
sassmann-H+wXaHxf7aLQT0dZR+AlfA, Shiraz Saleem
Netdev notification events are de-registered only when all
client iwdev instances are removed. If a single client is closed
and re-opened, netdev events could arrive even before the Control
Queue-Pair (CQP) is created, causing a NULL pointer dereference crash
in i40iw_get_cqp_request. Fix this by allowing netdev event
notification only after we have reached the INET_NOTIFIER state with
respect to device initialization.
Reported-by: Stefan Assmann <sassmann-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Signed-off-by: Shiraz Saleem <shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
drivers/infiniband/hw/i40iw/i40iw_utils.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/infiniband/hw/i40iw/i40iw_utils.c b/drivers/infiniband/hw/i40iw/i40iw_utils.c
index d5f5de2..23df3ab 100644
--- a/drivers/infiniband/hw/i40iw/i40iw_utils.c
+++ b/drivers/infiniband/hw/i40iw/i40iw_utils.c
@@ -159,6 +159,9 @@ int i40iw_inetaddr_event(struct notifier_block *notifier,
return NOTIFY_DONE;
iwdev = &hdl->device;
+ if (iwdev->init_state < INET_NOTIFIER)
+ return NOTIFY_DONE;
+
netdev = iwdev->ldev->netdev;
upper_dev = netdev_master_upper_dev_get(netdev);
if (netdev != event_netdev)
@@ -231,6 +234,9 @@ int i40iw_inet6addr_event(struct notifier_block *notifier,
return NOTIFY_DONE;
iwdev = &hdl->device;
+ if (iwdev->init_state < INET_NOTIFIER)
+ return NOTIFY_DONE;
+
netdev = iwdev->ldev->netdev;
if (netdev != event_netdev)
return NOTIFY_DONE;
@@ -280,6 +286,8 @@ int i40iw_net_event(struct notifier_block *notifier, unsigned long event, void *
if (!iwhdl)
return NOTIFY_DONE;
iwdev = &iwhdl->device;
+ if (iwdev->init_state < INET_NOTIFIER)
+ return NOTIFY_DONE;
p = (__be32 *)neigh->primary_key;
i40iw_copy_ip_ntohl(local_ipaddr, p);
if (neigh->nud_state & NUD_VALID) {
--
2.8.3
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <20170317233007.16768-1-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] i40iw: Receive netdev events post INET_NOTIFIER state [not found] ` <20170317233007.16768-1-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> @ 2017-03-21 8:39 ` Yuval Shaia 2017-03-24 20:27 ` Doug Ledford 1 sibling, 0 replies; 3+ messages in thread From: Yuval Shaia @ 2017-03-21 8:39 UTC (permalink / raw) To: Shiraz Saleem Cc: dledford-H+wXaHxf7aLQT0dZR+AlfA, linux-rdma-u79uwXL29TY76Z2rM5mHXA, e1000-rdma-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, sassmann-H+wXaHxf7aLQT0dZR+AlfA On Fri, Mar 17, 2017 at 06:30:07PM -0500, Shiraz Saleem wrote: > Netdev notification events are de-registered only when all > client iwdev instances are removed. If a single client is closed > and re-opened, netdev events could arrive even before the Control > Queue-Pair (CQP) is created, causing a NULL pointer dereference crash > in i40iw_get_cqp_request. Fix this by allowing netdev event > notification only after we have reached the INET_NOTIFIER state with > respect to device initialization. > > Reported-by: Stefan Assmann <sassmann-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > Signed-off-by: Shiraz Saleem <shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > --- > drivers/infiniband/hw/i40iw/i40iw_utils.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/drivers/infiniband/hw/i40iw/i40iw_utils.c b/drivers/infiniband/hw/i40iw/i40iw_utils.c > index d5f5de2..23df3ab 100644 > --- a/drivers/infiniband/hw/i40iw/i40iw_utils.c > +++ b/drivers/infiniband/hw/i40iw/i40iw_utils.c > @@ -159,6 +159,9 @@ int i40iw_inetaddr_event(struct notifier_block *notifier, > return NOTIFY_DONE; > > iwdev = &hdl->device; > + if (iwdev->init_state < INET_NOTIFIER) > + return NOTIFY_DONE; > + > netdev = iwdev->ldev->netdev; > upper_dev = netdev_master_upper_dev_get(netdev); > if (netdev != event_netdev) > @@ -231,6 +234,9 @@ int i40iw_inet6addr_event(struct notifier_block *notifier, > return NOTIFY_DONE; > > iwdev = &hdl->device; > + if (iwdev->init_state < INET_NOTIFIER) > + return NOTIFY_DONE; > + > netdev = iwdev->ldev->netdev; > if (netdev != event_netdev) > return NOTIFY_DONE; > @@ -280,6 +286,8 @@ int i40iw_net_event(struct notifier_block *notifier, unsigned long event, void * > if (!iwhdl) > return NOTIFY_DONE; > iwdev = &iwhdl->device; > + if (iwdev->init_state < INET_NOTIFIER) > + return NOTIFY_DONE; > p = (__be32 *)neigh->primary_key; > i40iw_copy_ip_ntohl(local_ipaddr, p); > if (neigh->nud_state & NUD_VALID) { > -- > 2.8.3 Reviewed-by: Yuval Shaia <yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org> > > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] i40iw: Receive netdev events post INET_NOTIFIER state [not found] ` <20170317233007.16768-1-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> 2017-03-21 8:39 ` Yuval Shaia @ 2017-03-24 20:27 ` Doug Ledford 1 sibling, 0 replies; 3+ messages in thread From: Doug Ledford @ 2017-03-24 20:27 UTC (permalink / raw) To: Shiraz Saleem Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, e1000-rdma-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, sassmann-H+wXaHxf7aLQT0dZR+AlfA On Fri, 2017-03-17 at 18:30 -0500, Shiraz Saleem wrote: > Netdev notification events are de-registered only when all > client iwdev instances are removed. If a single client is closed > and re-opened, netdev events could arrive even before the Control > Queue-Pair (CQP) is created, causing a NULL pointer dereference crash > in i40iw_get_cqp_request. Fix this by allowing netdev event > notification only after we have reached the INET_NOTIFIER state with > respect to device initialization. > > Reported-by: Stefan Assmann <sassmann-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > Signed-off-by: Shiraz Saleem <shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> Thanks, applied for -rc4. -- Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> GPG KeyID: B826A3330E572FDD Key fingerprint = AE6B 1BDA 122B 23B4 265B 1274 B826 A333 0E57 2FDD -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-03-24 20:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-17 23:30 [PATCH] i40iw: Receive netdev events post INET_NOTIFIER state Shiraz Saleem
[not found] ` <20170317233007.16768-1-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-03-21 8:39 ` Yuval Shaia
2017-03-24 20:27 ` Doug Ledford
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox