Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1683470 > unrolled thread

[PATCH] mac80211: Fix null pointer dereference with iTXQ support

Started byChunho Lee <handera@gmail.com>
First post2017-07-08 02:10 +0200
Last post2017-07-08 02:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] mac80211: Fix null pointer dereference with iTXQ support Chunho Lee <handera@gmail.com> - 2017-07-08 02:10 +0200

#1683470 — [PATCH] mac80211: Fix null pointer dereference with iTXQ support

FromChunho Lee <handera@gmail.com>
Date2017-07-08 02:10 +0200
Subject[PATCH] mac80211: Fix null pointer dereference with iTXQ support
Message-ID<u0LtU-35r-17@gated-at.bofh.it>
This change adds null pointer check before dereferencing pointer dev on
netif_tx_start_all_queues() when an interface is added.
With iTXQ support, netif_tx_start_all_queues() is always called while
an interface is added. however, the netdev queues are not associated
and dev is null when the interface is either NL80211_IFTYPE_P2P_DEVICE
or NL80211_IFTYPE_NAN.

Signed-off-by: Chunho Lee <ch.lee@newracom.com>
---
 net/mac80211/iface.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c
index f5f5015..e2edd10 100644
--- a/net/mac80211/iface.c
+++ b/net/mac80211/iface.c
@@ -731,7 +731,8 @@ int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up)
 	    sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
 	    local->ops->wake_tx_queue) {
 		/* XXX: for AP_VLAN, actually track AP queues */
-		netif_tx_start_all_queues(dev);
+		if (dev)
+			netif_tx_start_all_queues(dev);
 	} else if (dev) {
 		unsigned long flags;
 		int n_acs = IEEE80211_NUM_ACS;
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web