]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
P2P: Fix a theoretical out of bounds read in wpas_p2p_setup_freqs()
authorAmit Purwar <amit.purwar@samsung.com>
Fri, 9 Dec 2016 13:25:59 +0000 (18:55 +0530)
committerJouni Malinen <j@w1.fi>
Sun, 11 Dec 2016 10:45:08 +0000 (12:45 +0200)
Commit 370017d968e071522357ea88c0c6aaed02853222 ('P2P: Use preferred
frequency list from the local driver') introduced this loop to go
through preferred channel list from the driver. The loop does bounds
checking of the index only after having read a value from the array.
That could in theory read one entry beyond the end of the stack buffer.

Fix this by moving the index variable check to be done before using it
to fetch a value from the array.

This code is used only if wpa_supplicant is build with
CONFIG_DRIVER_NL80211_QCA=y and if the driver supports the vendor
extension (get_pref_freq_list() driver op). In addition, the driver
would need to return more than P2P_MAX_PREF_CHANNELS (= 100) preferred
channels for this to actually be able to read beyond the buffer. No
driver is known to return that many preferred channels, so this does not
seem to be reachable in practice.

Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
Signed-off-by: Mayank Haarit <mayank.h@samsung.com>
wpa_supplicant/p2p_supplicant.c

index 2da92bf460e29cadfc48b019ec03f40743179d2f..75ee852e824cf1b6660af5c366765f3aec6c1547 100644 (file)
@@ -5239,11 +5239,11 @@ static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
                if (!res && max_pref_freq > 0) {
                        *num_pref_freq = max_pref_freq;
                        i = 0;
-                       while ((!p2p_supported_freq(wpa_s->global->p2p,
+                       while (i < *num_pref_freq &&
+                              (!p2p_supported_freq(wpa_s->global->p2p,
                                                    pref_freq_list[i]) ||
                                wpas_p2p_disallowed_freq(wpa_s->global,
-                                                       pref_freq_list[i])) &&
-                              i < *num_pref_freq) {
+                                                        pref_freq_list[i]))) {
                                wpa_printf(MSG_DEBUG,
                                           "P2P: preferred_freq_list[%d]=%d is disallowed",
                                           i, pref_freq_list[i]);