2 * wpa_supplicant - Temporary BSSID blacklist
3 * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
18 #include "wpa_supplicant_i.h"
19 #include "blacklist.h"
22 * wpa_blacklist_get - Get the blacklist entry for a BSSID
23 * @wpa_s: Pointer to wpa_supplicant data
25 * Returns: Matching blacklist entry for the BSSID or %NULL if not found
27 struct wpa_blacklist
* wpa_blacklist_get(struct wpa_supplicant
*wpa_s
,
30 struct wpa_blacklist
*e
;
34 if (os_memcmp(e
->bssid
, bssid
, ETH_ALEN
) == 0)
44 * wpa_blacklist_add - Add an BSSID to the blacklist
45 * @wpa_s: Pointer to wpa_supplicant data
46 * @bssid: BSSID to be added to the blacklist
47 * Returns: 0 on success, -1 on failure
49 * This function adds the specified BSSID to the blacklist or increases the
50 * blacklist count if the BSSID was already listed. It should be called when
51 * an association attempt fails either due to the selected BSS rejecting
52 * association or due to timeout.
54 * This blacklist is used to force %wpa_supplicant to go through all available
55 * BSSes before retrying to associate with an BSS that rejected or timed out
56 * association. It does not prevent the listed BSS from being used; it only
57 * changes the order in which they are tried.
59 int wpa_blacklist_add(struct wpa_supplicant
*wpa_s
, const u8
*bssid
)
61 struct wpa_blacklist
*e
;
63 e
= wpa_blacklist_get(wpa_s
, bssid
);
66 wpa_printf(MSG_DEBUG
, "BSSID " MACSTR
" blacklist count "
68 MAC2STR(bssid
), e
->count
);
72 e
= os_zalloc(sizeof(*e
));
75 os_memcpy(e
->bssid
, bssid
, ETH_ALEN
);
77 e
->next
= wpa_s
->blacklist
;
79 wpa_printf(MSG_DEBUG
, "Added BSSID " MACSTR
" into blacklist",
87 * wpa_blacklist_del - Remove an BSSID from the blacklist
88 * @wpa_s: Pointer to wpa_supplicant data
89 * @bssid: BSSID to be removed from the blacklist
90 * Returns: 0 on success, -1 on failure
92 int wpa_blacklist_del(struct wpa_supplicant
*wpa_s
, const u8
*bssid
)
94 struct wpa_blacklist
*e
, *prev
= NULL
;
98 if (os_memcmp(e
->bssid
, bssid
, ETH_ALEN
) == 0) {
100 wpa_s
->blacklist
= e
->next
;
102 prev
->next
= e
->next
;
104 wpa_printf(MSG_DEBUG
, "Removed BSSID " MACSTR
" from "
105 "blacklist", MAC2STR(bssid
));
117 * wpa_blacklist_clear - Clear the blacklist of all entries
118 * @wpa_s: Pointer to wpa_supplicant data
120 void wpa_blacklist_clear(struct wpa_supplicant
*wpa_s
)
122 struct wpa_blacklist
*e
, *prev
;
124 e
= wpa_s
->blacklist
;
125 wpa_s
->blacklist
= NULL
;
129 wpa_printf(MSG_DEBUG
, "Removed BSSID " MACSTR
" from "
130 "blacklist (clear)", MAC2STR(prev
->bssid
));