Browse Source

mac80211: fix offchannel TX cookie matching

When I introduced in-kernel off-channel TX I
introduced a bug -- the work can't be canceled
again because the code clear the skb pointer.
Fix this by keeping track separately of whether
TX status has already been reported.

Cc: stable@kernel.org [2.6.38+]
Reported-by: Jouni Malinen <j@w1.fi>
Tested-by: Jouni Malinen <j@w1.fi>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Johannes Berg 13 years ago
parent
commit
28a1bcdb57
4 changed files with 4 additions and 3 deletions
  1. 1 1
      net/mac80211/cfg.c
  2. 1 0
      net/mac80211/ieee80211_i.h
  3. 1 1
      net/mac80211/status.c
  4. 1 1
      net/mac80211/work.c

+ 1 - 1
net/mac80211/cfg.c

@@ -1886,7 +1886,7 @@ ieee80211_offchan_tx_done(struct ieee80211_work *wk, struct sk_buff *skb)
 	 * so in that case userspace will have to deal with it.
 	 * so in that case userspace will have to deal with it.
 	 */
 	 */
 
 
-	if (wk->offchan_tx.wait && wk->offchan_tx.frame)
+	if (wk->offchan_tx.wait && !wk->offchan_tx.status)
 		cfg80211_mgmt_tx_status(wk->sdata->dev,
 		cfg80211_mgmt_tx_status(wk->sdata->dev,
 					(unsigned long) wk->offchan_tx.frame,
 					(unsigned long) wk->offchan_tx.frame,
 					wk->ie, wk->ie_len, false, GFP_KERNEL);
 					wk->ie, wk->ie_len, false, GFP_KERNEL);

+ 1 - 0
net/mac80211/ieee80211_i.h

@@ -346,6 +346,7 @@ struct ieee80211_work {
 		struct {
 		struct {
 			struct sk_buff *frame;
 			struct sk_buff *frame;
 			u32 wait;
 			u32 wait;
+			bool status;
 		} offchan_tx;
 		} offchan_tx;
 	};
 	};
 
 

+ 1 - 1
net/mac80211/status.c

@@ -429,7 +429,7 @@ void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
 				continue;
 				continue;
 			if (wk->offchan_tx.frame != skb)
 			if (wk->offchan_tx.frame != skb)
 				continue;
 				continue;
-			wk->offchan_tx.frame = NULL;
+			wk->offchan_tx.status = true;
 			break;
 			break;
 		}
 		}
 		rcu_read_unlock();
 		rcu_read_unlock();

+ 1 - 1
net/mac80211/work.c

@@ -577,7 +577,7 @@ ieee80211_offchannel_tx(struct ieee80211_work *wk)
 		/*
 		/*
 		 * After this, offchan_tx.frame remains but now is no
 		 * After this, offchan_tx.frame remains but now is no
 		 * longer a valid pointer -- we still need it as the
 		 * longer a valid pointer -- we still need it as the
-		 * cookie for canceling this work.
+		 * cookie for canceling this work/status matching.
 		 */
 		 */
 		ieee80211_tx_skb(wk->sdata, wk->offchan_tx.frame);
 		ieee80211_tx_skb(wk->sdata, wk->offchan_tx.frame);