aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mesh_plink.c
diff options
context:
space:
mode:
authorAshok Nagarajan <ashok@cozybit.com>2012-03-06 15:48:30 -0500
committerJohn W. Linville <linville@tuxdriver.com>2012-03-07 13:51:47 -0500
commit3d4f96997263d97cd4d60373f1ed8184ee6df31b (patch)
treed84bb951aabaa3f4325586aeb51eff0d5c11d2fd /net/mac80211/mesh_plink.c
parent2ef167557c0a26c88162ecffb017bfcc51eb7b29 (diff)
mac80211: Fix potential null pointer dereferencing
The patch "{nl,cfg,mac}80211: Implement RSSI threshold for mesh peering" has a potential null pointer dereferencing problem. Thanks to Dan Carpenter for pointing out. This patch will fix the issue. Signed-off-by: Ashok Nagarajan <ashok@cozybit.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mesh_plink.c')
-rw-r--r--net/mac80211/mesh_plink.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/net/mac80211/mesh_plink.c b/net/mac80211/mesh_plink.c
index 80ce52772538..4e53c4cbca9e 100644
--- a/net/mac80211/mesh_plink.c
+++ b/net/mac80211/mesh_plink.c
@@ -31,10 +31,11 @@
31#define dot11MeshHoldingTimeout(s) (s->u.mesh.mshcfg.dot11MeshHoldingTimeout) 31#define dot11MeshHoldingTimeout(s) (s->u.mesh.mshcfg.dot11MeshHoldingTimeout)
32#define dot11MeshMaxPeerLinks(s) (s->u.mesh.mshcfg.dot11MeshMaxPeerLinks) 32#define dot11MeshMaxPeerLinks(s) (s->u.mesh.mshcfg.dot11MeshMaxPeerLinks)
33 33
34#define sta_meets_rssi_threshold(sta, sdata) \ 34/* We only need a valid sta if user configured a minimum rssi_threshold. */
35#define rssi_threshold_check(sta, sdata) \
35 (sdata->u.mesh.mshcfg.rssi_threshold == 0 ||\ 36 (sdata->u.mesh.mshcfg.rssi_threshold == 0 ||\
36 (s8) -ewma_read(&sta->avg_signal) > \ 37 (sta && (s8) -ewma_read(&sta->avg_signal) > \
37 sdata->u.mesh.mshcfg.rssi_threshold) 38 sdata->u.mesh.mshcfg.rssi_threshold))
38 39
39enum plink_event { 40enum plink_event {
40 PLINK_UNDEFINED, 41 PLINK_UNDEFINED,
@@ -307,7 +308,7 @@ void mesh_neighbour_update(u8 *hw_addr, u32 rates,
307 sta->plink_state == NL80211_PLINK_LISTEN && 308 sta->plink_state == NL80211_PLINK_LISTEN &&
308 sdata->u.mesh.accepting_plinks && 309 sdata->u.mesh.accepting_plinks &&
309 sdata->u.mesh.mshcfg.auto_open_plinks && 310 sdata->u.mesh.mshcfg.auto_open_plinks &&
310 sta_meets_rssi_threshold(sta, sdata)) 311 rssi_threshold_check(sta, sdata))
311 mesh_plink_open(sta); 312 mesh_plink_open(sta);
312 313
313 rcu_read_unlock(); 314 rcu_read_unlock();
@@ -538,9 +539,9 @@ void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_m
538 } 539 }
539 540
540 if (ftype == WLAN_SP_MESH_PEERING_OPEN && 541 if (ftype == WLAN_SP_MESH_PEERING_OPEN &&
541 !sta_meets_rssi_threshold(sta, sdata)) { 542 !rssi_threshold_check(sta, sdata)) {
542 mpl_dbg("Mesh plink: %pM does not meet rssi threshold\n", 543 mpl_dbg("Mesh plink: %pM does not meet rssi threshold\n",
543 sta->sta.addr); 544 mgmt->sa);
544 rcu_read_unlock(); 545 rcu_read_unlock();
545 return; 546 return;
546 } 547 }