]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
NET: ath5k, check ath5k_eeprom_mode_from_channel retval
authorJiri Slaby <jslaby@suse.cz>
Thu, 7 Feb 2013 13:44:40 +0000 (14:44 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 8 Feb 2013 19:51:35 +0000 (14:51 -0500)
It can, if invalid argument given, return a negative value. In that
case we would access arrays out-of-bounds and such. Check the value
and yell loudly if that happened as it would be a bug in the
implementation. (Instead of silently corrupting memory.)

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Nick Kossifidis <mickflemm@gmail.com>
Cc: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath5k/phy.c
drivers/net/wireless/ath/ath5k/reset.c

index ab363f34b4df71c76f1fa9198c245e0bac28da7a..a78afa98c6509559f6cec5348d3c93648d520702 100644 (file)
@@ -1613,6 +1613,10 @@ ath5k_hw_update_noise_floor(struct ath5k_hw *ah)
        ah->ah_cal_mask |= AR5K_CALIBRATION_NF;
 
        ee_mode = ath5k_eeprom_mode_from_channel(ah->ah_current_channel);
+       if (WARN_ON(ee_mode < 0)) {
+               ah->ah_cal_mask &= ~AR5K_CALIBRATION_NF;
+               return;
+       }
 
        /* completed NF calibration, test threshold */
        nf = ath5k_hw_read_measured_noise_floor(ah);
index 4084b1076286ebd20720a4276ff05bee3a8ac3c5..e2d8b2cf19eb52df95226ca8fb9661a427d92f95 100644 (file)
@@ -985,6 +985,8 @@ ath5k_hw_commit_eeprom_settings(struct ath5k_hw *ah,
                return;
 
        ee_mode = ath5k_eeprom_mode_from_channel(channel);
+       if (WARN_ON(ee_mode < 0))
+               return;
 
        /* Adjust power delta for channel 14 */
        if (channel->center_freq == 2484)