提交 c492db37 编写于 作者: J Johannes Berg

regulatory: use RCU to protect last_request

This will allow making freq_reg_info() lock-free.
Acked-by: NLuis R. Rodriguez <mcgrof@do-not-panic.com>
Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
上级 458f4f9e
...@@ -36,6 +36,7 @@ enum environment_cap { ...@@ -36,6 +36,7 @@ enum environment_cap {
/** /**
* struct regulatory_request - used to keep track of regulatory requests * struct regulatory_request - used to keep track of regulatory requests
* *
* @rcu_head: RCU head struct used to free the request
* @wiphy_idx: this is set if this request's initiator is * @wiphy_idx: this is set if this request's initiator is
* %REGDOM_SET_BY_COUNTRY_IE or %REGDOM_SET_BY_DRIVER. This * %REGDOM_SET_BY_COUNTRY_IE or %REGDOM_SET_BY_DRIVER. This
* can be used by the wireless core to deal with conflicts * can be used by the wireless core to deal with conflicts
...@@ -73,6 +74,7 @@ enum environment_cap { ...@@ -73,6 +74,7 @@ enum environment_cap {
* @list: used to insert into the reg_requests_list linked list * @list: used to insert into the reg_requests_list linked list
*/ */
struct regulatory_request { struct regulatory_request {
struct rcu_head rcu_head;
int wiphy_idx; int wiphy_idx;
enum nl80211_reg_initiator initiator; enum nl80211_reg_initiator initiator;
enum nl80211_user_reg_hint_type user_reg_hint_type; enum nl80211_user_reg_hint_type user_reg_hint_type;
......
...@@ -82,7 +82,8 @@ static struct regulatory_request core_request_world = { ...@@ -82,7 +82,8 @@ static struct regulatory_request core_request_world = {
}; };
/* Receipt of information from last regulatory request */ /* Receipt of information from last regulatory request */
static struct regulatory_request *last_request = &core_request_world; static struct regulatory_request __rcu *last_request =
(void __rcu *)&core_request_world;
/* To trigger userspace events */ /* To trigger userspace events */
static struct platform_device *reg_pdev; static struct platform_device *reg_pdev;
...@@ -102,7 +103,7 @@ const struct ieee80211_regdomain __rcu *cfg80211_regdomain; ...@@ -102,7 +103,7 @@ const struct ieee80211_regdomain __rcu *cfg80211_regdomain;
* Protects static reg.c components: * Protects static reg.c components:
* - cfg80211_regdomain (if not used with RCU) * - cfg80211_regdomain (if not used with RCU)
* - cfg80211_world_regdom * - cfg80211_world_regdom
* - last_request * - last_request (if not used with RCU)
* - reg_num_devs_support_basehint * - reg_num_devs_support_basehint
*/ */
static DEFINE_MUTEX(reg_mutex); static DEFINE_MUTEX(reg_mutex);
...@@ -137,6 +138,12 @@ static void rcu_free_regdom(const struct ieee80211_regdomain *r) ...@@ -137,6 +138,12 @@ static void rcu_free_regdom(const struct ieee80211_regdomain *r)
kfree_rcu((struct ieee80211_regdomain *)r, rcu_head); kfree_rcu((struct ieee80211_regdomain *)r, rcu_head);
} }
static struct regulatory_request *get_last_request(void)
{
return rcu_dereference_protected(last_request,
lockdep_is_held(&reg_mutex));
}
/* Used to queue up regulatory hints */ /* Used to queue up regulatory hints */
static LIST_HEAD(reg_requests_list); static LIST_HEAD(reg_requests_list);
static spinlock_t reg_requests_lock; static spinlock_t reg_requests_lock;
...@@ -206,6 +213,7 @@ static void reset_regdomains(bool full_reset, ...@@ -206,6 +213,7 @@ static void reset_regdomains(bool full_reset,
const struct ieee80211_regdomain *new_regdom) const struct ieee80211_regdomain *new_regdom)
{ {
const struct ieee80211_regdomain *r; const struct ieee80211_regdomain *r;
struct regulatory_request *lr;
assert_reg_lock(); assert_reg_lock();
...@@ -228,9 +236,10 @@ static void reset_regdomains(bool full_reset, ...@@ -228,9 +236,10 @@ static void reset_regdomains(bool full_reset,
if (!full_reset) if (!full_reset)
return; return;
if (last_request != &core_request_world) lr = get_last_request();
kfree(last_request); if (lr != &core_request_world && lr)
last_request = &core_request_world; kfree_rcu(lr, rcu_head);
rcu_assign_pointer(last_request, &core_request_world);
} }
/* /*
...@@ -239,9 +248,11 @@ static void reset_regdomains(bool full_reset, ...@@ -239,9 +248,11 @@ static void reset_regdomains(bool full_reset,
*/ */
static void update_world_regdomain(const struct ieee80211_regdomain *rd) static void update_world_regdomain(const struct ieee80211_regdomain *rd)
{ {
WARN_ON(!last_request); struct regulatory_request *lr;
assert_reg_lock(); lr = get_last_request();
WARN_ON(!lr);
reset_regdomains(false, rd); reset_regdomains(false, rd);
...@@ -448,15 +459,12 @@ static int call_crda(const char *alpha2) ...@@ -448,15 +459,12 @@ static int call_crda(const char *alpha2)
static bool reg_is_valid_request(const char *alpha2) static bool reg_is_valid_request(const char *alpha2)
{ {
assert_reg_lock(); struct regulatory_request *lr = get_last_request();
if (!last_request) if (!lr || lr->processed)
return false; return false;
if (last_request->processed) return alpha2_equal(lr->alpha2, alpha2);
return false;
return alpha2_equal(last_request->alpha2, alpha2);
} }
/* Sanity check on a regulatory rule */ /* Sanity check on a regulatory rule */
...@@ -746,15 +754,14 @@ int freq_reg_info(struct wiphy *wiphy, u32 center_freq, ...@@ -746,15 +754,14 @@ int freq_reg_info(struct wiphy *wiphy, u32 center_freq,
const struct ieee80211_reg_rule **reg_rule) const struct ieee80211_reg_rule **reg_rule)
{ {
const struct ieee80211_regdomain *regd; const struct ieee80211_regdomain *regd;
struct regulatory_request *lr = get_last_request();
assert_reg_lock();
/* /*
* Follow the driver's regulatory domain, if present, unless a country * Follow the driver's regulatory domain, if present, unless a country
* IE has been processed or a user wants to help complaince further * IE has been processed or a user wants to help complaince further
*/ */
if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE && if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
last_request->initiator != NL80211_REGDOM_SET_BY_USER && lr->initiator != NL80211_REGDOM_SET_BY_USER &&
wiphy->regd) wiphy->regd)
regd = get_wiphy_regdom(wiphy); regd = get_wiphy_regdom(wiphy);
else else
...@@ -828,8 +835,9 @@ static void handle_channel(struct wiphy *wiphy, ...@@ -828,8 +835,9 @@ static void handle_channel(struct wiphy *wiphy,
const struct ieee80211_power_rule *power_rule = NULL; const struct ieee80211_power_rule *power_rule = NULL;
const struct ieee80211_freq_range *freq_range = NULL; const struct ieee80211_freq_range *freq_range = NULL;
struct wiphy *request_wiphy = NULL; struct wiphy *request_wiphy = NULL;
struct regulatory_request *lr = get_last_request();
request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
flags = chan->orig_flags; flags = chan->orig_flags;
...@@ -862,7 +870,7 @@ static void handle_channel(struct wiphy *wiphy, ...@@ -862,7 +870,7 @@ static void handle_channel(struct wiphy *wiphy,
if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40)) if (freq_range->max_bandwidth_khz < MHZ_TO_KHZ(40))
bw_flags = IEEE80211_CHAN_NO_HT40; bw_flags = IEEE80211_CHAN_NO_HT40;
if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER && if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
request_wiphy && request_wiphy == wiphy && request_wiphy && request_wiphy == wiphy &&
request_wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) { request_wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY) {
/* /*
...@@ -927,7 +935,7 @@ bool reg_last_request_cell_base(void) ...@@ -927,7 +935,7 @@ bool reg_last_request_cell_base(void)
bool val; bool val;
mutex_lock(&reg_mutex); mutex_lock(&reg_mutex);
val = reg_request_cell_base(last_request); val = reg_request_cell_base(get_last_request());
mutex_unlock(&reg_mutex); mutex_unlock(&reg_mutex);
return val; return val;
...@@ -938,10 +946,12 @@ bool reg_last_request_cell_base(void) ...@@ -938,10 +946,12 @@ bool reg_last_request_cell_base(void)
static enum reg_request_treatment static enum reg_request_treatment
reg_ignore_cell_hint(struct regulatory_request *pending_request) reg_ignore_cell_hint(struct regulatory_request *pending_request)
{ {
struct regulatory_request *lr = get_last_request();
if (!reg_num_devs_support_basehint) if (!reg_num_devs_support_basehint)
return REG_REQ_IGNORE; return REG_REQ_IGNORE;
if (reg_request_cell_base(last_request) && if (reg_request_cell_base(lr) &&
!regdom_changes(pending_request->alpha2)) !regdom_changes(pending_request->alpha2))
return REG_REQ_ALREADY_SET; return REG_REQ_ALREADY_SET;
...@@ -969,7 +979,9 @@ static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy) ...@@ -969,7 +979,9 @@ static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
static bool ignore_reg_update(struct wiphy *wiphy, static bool ignore_reg_update(struct wiphy *wiphy,
enum nl80211_reg_initiator initiator) enum nl80211_reg_initiator initiator)
{ {
if (!last_request) { struct regulatory_request *lr = get_last_request();
if (!lr) {
REG_DBG_PRINT("Ignoring regulatory request %s since last_request is not set\n", REG_DBG_PRINT("Ignoring regulatory request %s since last_request is not set\n",
reg_initiator_name(initiator)); reg_initiator_name(initiator));
return true; return true;
...@@ -988,13 +1000,13 @@ static bool ignore_reg_update(struct wiphy *wiphy, ...@@ -988,13 +1000,13 @@ static bool ignore_reg_update(struct wiphy *wiphy,
*/ */
if (wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY && !wiphy->regd && if (wiphy->flags & WIPHY_FLAG_STRICT_REGULATORY && !wiphy->regd &&
initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE && initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
!is_world_regdom(last_request->alpha2)) { !is_world_regdom(lr->alpha2)) {
REG_DBG_PRINT("Ignoring regulatory request %s since the driver requires its own regulatory domain to be set first\n", REG_DBG_PRINT("Ignoring regulatory request %s since the driver requires its own regulatory domain to be set first\n",
reg_initiator_name(initiator)); reg_initiator_name(initiator));
return true; return true;
} }
if (reg_request_cell_base(last_request)) if (reg_request_cell_base(lr))
return reg_dev_ignore_cell_hint(wiphy); return reg_dev_ignore_cell_hint(wiphy);
return false; return false;
...@@ -1080,12 +1092,12 @@ static bool reg_is_world_roaming(struct wiphy *wiphy) ...@@ -1080,12 +1092,12 @@ static bool reg_is_world_roaming(struct wiphy *wiphy)
{ {
const struct ieee80211_regdomain *cr = get_cfg80211_regdom(); const struct ieee80211_regdomain *cr = get_cfg80211_regdom();
const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy); const struct ieee80211_regdomain *wr = get_wiphy_regdom(wiphy);
struct regulatory_request *lr = get_last_request();
if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2))) if (is_world_regdom(cr->alpha2) || (wr && is_world_regdom(wr->alpha2)))
return true; return true;
if (last_request && if (lr && lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE &&
wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY) wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY)
return true; return true;
...@@ -1184,13 +1196,12 @@ static void wiphy_update_regulatory(struct wiphy *wiphy, ...@@ -1184,13 +1196,12 @@ static void wiphy_update_regulatory(struct wiphy *wiphy,
enum nl80211_reg_initiator initiator) enum nl80211_reg_initiator initiator)
{ {
enum ieee80211_band band; enum ieee80211_band band;
struct regulatory_request *lr = get_last_request();
assert_reg_lock();
if (ignore_reg_update(wiphy, initiator)) if (ignore_reg_update(wiphy, initiator))
return; return;
last_request->dfs_region = get_cfg80211_regdom()->dfs_region; lr->dfs_region = get_cfg80211_regdom()->dfs_region;
for (band = 0; band < IEEE80211_NUM_BANDS; band++) for (band = 0; band < IEEE80211_NUM_BANDS; band++)
handle_band(wiphy, initiator, wiphy->bands[band]); handle_band(wiphy, initiator, wiphy->bands[band]);
...@@ -1199,7 +1210,7 @@ static void wiphy_update_regulatory(struct wiphy *wiphy, ...@@ -1199,7 +1210,7 @@ static void wiphy_update_regulatory(struct wiphy *wiphy,
reg_process_ht_flags(wiphy); reg_process_ht_flags(wiphy);
if (wiphy->reg_notifier) if (wiphy->reg_notifier)
wiphy->reg_notifier(wiphy, last_request); wiphy->reg_notifier(wiphy, lr);
} }
static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator) static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
...@@ -1220,7 +1231,7 @@ static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator) ...@@ -1220,7 +1231,7 @@ static void update_all_wiphy_regulatory(enum nl80211_reg_initiator initiator)
if (initiator == NL80211_REGDOM_SET_BY_CORE && if (initiator == NL80211_REGDOM_SET_BY_CORE &&
wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY && wiphy->flags & WIPHY_FLAG_CUSTOM_REGULATORY &&
wiphy->reg_notifier) wiphy->reg_notifier)
wiphy->reg_notifier(wiphy, last_request); wiphy->reg_notifier(wiphy, get_last_request());
} }
} }
...@@ -1300,28 +1311,28 @@ get_reg_request_treatment(struct wiphy *wiphy, ...@@ -1300,28 +1311,28 @@ get_reg_request_treatment(struct wiphy *wiphy,
struct regulatory_request *pending_request) struct regulatory_request *pending_request)
{ {
struct wiphy *last_wiphy = NULL; struct wiphy *last_wiphy = NULL;
struct regulatory_request *lr = get_last_request();
/* All initial requests are respected */ /* All initial requests are respected */
if (!last_request) if (!lr)
return REG_REQ_OK; return REG_REQ_OK;
switch (pending_request->initiator) { switch (pending_request->initiator) {
case NL80211_REGDOM_SET_BY_CORE: case NL80211_REGDOM_SET_BY_CORE:
return REG_REQ_OK; return REG_REQ_OK;
case NL80211_REGDOM_SET_BY_COUNTRY_IE: case NL80211_REGDOM_SET_BY_COUNTRY_IE:
if (reg_request_cell_base(last_request)) { if (reg_request_cell_base(lr)) {
/* Trust a Cell base station over the AP's country IE */ /* Trust a Cell base station over the AP's country IE */
if (regdom_changes(pending_request->alpha2)) if (regdom_changes(pending_request->alpha2))
return REG_REQ_IGNORE; return REG_REQ_IGNORE;
return REG_REQ_ALREADY_SET; return REG_REQ_ALREADY_SET;
} }
last_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); last_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
if (unlikely(!is_an_alpha2(pending_request->alpha2))) if (unlikely(!is_an_alpha2(pending_request->alpha2)))
return -EINVAL; return -EINVAL;
if (last_request->initiator == if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
NL80211_REGDOM_SET_BY_COUNTRY_IE) {
if (last_wiphy != wiphy) { if (last_wiphy != wiphy) {
/* /*
* Two cards with two APs claiming different * Two cards with two APs claiming different
...@@ -1343,7 +1354,7 @@ get_reg_request_treatment(struct wiphy *wiphy, ...@@ -1343,7 +1354,7 @@ get_reg_request_treatment(struct wiphy *wiphy,
} }
return 0; return 0;
case NL80211_REGDOM_SET_BY_DRIVER: case NL80211_REGDOM_SET_BY_DRIVER:
if (last_request->initiator == NL80211_REGDOM_SET_BY_CORE) { if (lr->initiator == NL80211_REGDOM_SET_BY_CORE) {
if (regdom_changes(pending_request->alpha2)) if (regdom_changes(pending_request->alpha2))
return REG_REQ_OK; return REG_REQ_OK;
return REG_REQ_ALREADY_SET; return REG_REQ_ALREADY_SET;
...@@ -1354,7 +1365,7 @@ get_reg_request_treatment(struct wiphy *wiphy, ...@@ -1354,7 +1365,7 @@ get_reg_request_treatment(struct wiphy *wiphy,
* back in or if you add a new device for which the previously * back in or if you add a new device for which the previously
* loaded card also agrees on the regulatory domain. * loaded card also agrees on the regulatory domain.
*/ */
if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER && if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER &&
!regdom_changes(pending_request->alpha2)) !regdom_changes(pending_request->alpha2))
return REG_REQ_ALREADY_SET; return REG_REQ_ALREADY_SET;
...@@ -1363,26 +1374,26 @@ get_reg_request_treatment(struct wiphy *wiphy, ...@@ -1363,26 +1374,26 @@ get_reg_request_treatment(struct wiphy *wiphy,
if (reg_request_cell_base(pending_request)) if (reg_request_cell_base(pending_request))
return reg_ignore_cell_hint(pending_request); return reg_ignore_cell_hint(pending_request);
if (reg_request_cell_base(last_request)) if (reg_request_cell_base(lr))
return REG_REQ_IGNORE; return REG_REQ_IGNORE;
if (last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)
return REG_REQ_INTERSECT; return REG_REQ_INTERSECT;
/* /*
* If the user knows better the user should set the regdom * If the user knows better the user should set the regdom
* to their country before the IE is picked up * to their country before the IE is picked up
*/ */
if (last_request->initiator == NL80211_REGDOM_SET_BY_USER && if (lr->initiator == NL80211_REGDOM_SET_BY_USER &&
last_request->intersect) lr->intersect)
return REG_REQ_IGNORE; return REG_REQ_IGNORE;
/* /*
* Process user requests only after previous user/driver/core * Process user requests only after previous user/driver/core
* requests have been processed * requests have been processed
*/ */
if ((last_request->initiator == NL80211_REGDOM_SET_BY_CORE || if ((lr->initiator == NL80211_REGDOM_SET_BY_CORE ||
last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER || lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
last_request->initiator == NL80211_REGDOM_SET_BY_USER) && lr->initiator == NL80211_REGDOM_SET_BY_USER) &&
regdom_changes(last_request->alpha2)) regdom_changes(lr->alpha2))
return REG_REQ_IGNORE; return REG_REQ_IGNORE;
if (!regdom_changes(pending_request->alpha2)) if (!regdom_changes(pending_request->alpha2))
...@@ -1397,15 +1408,16 @@ get_reg_request_treatment(struct wiphy *wiphy, ...@@ -1397,15 +1408,16 @@ get_reg_request_treatment(struct wiphy *wiphy,
static void reg_set_request_processed(void) static void reg_set_request_processed(void)
{ {
bool need_more_processing = false; bool need_more_processing = false;
struct regulatory_request *lr = get_last_request();
last_request->processed = true; lr->processed = true;
spin_lock(&reg_requests_lock); spin_lock(&reg_requests_lock);
if (!list_empty(&reg_requests_list)) if (!list_empty(&reg_requests_list))
need_more_processing = true; need_more_processing = true;
spin_unlock(&reg_requests_lock); spin_unlock(&reg_requests_lock);
if (last_request->initiator == NL80211_REGDOM_SET_BY_USER) if (lr->initiator == NL80211_REGDOM_SET_BY_USER)
cancel_delayed_work(&reg_timeout); cancel_delayed_work(&reg_timeout);
if (need_more_processing) if (need_more_processing)
...@@ -1432,6 +1444,7 @@ __regulatory_hint(struct wiphy *wiphy, ...@@ -1432,6 +1444,7 @@ __regulatory_hint(struct wiphy *wiphy,
const struct ieee80211_regdomain *regd; const struct ieee80211_regdomain *regd;
bool intersect = false; bool intersect = false;
enum reg_request_treatment treatment; enum reg_request_treatment treatment;
struct regulatory_request *lr;
treatment = get_reg_request_treatment(wiphy, pending_request); treatment = get_reg_request_treatment(wiphy, pending_request);
...@@ -1472,18 +1485,20 @@ __regulatory_hint(struct wiphy *wiphy, ...@@ -1472,18 +1485,20 @@ __regulatory_hint(struct wiphy *wiphy,
} }
new_request: new_request:
if (last_request != &core_request_world) lr = get_last_request();
kfree(last_request); if (lr != &core_request_world && lr)
kfree_rcu(lr, rcu_head);
last_request = pending_request; pending_request->intersect = intersect;
last_request->intersect = intersect; pending_request->processed = false;
last_request->processed = false; rcu_assign_pointer(last_request, pending_request);
lr = pending_request;
pending_request = NULL; pending_request = NULL;
if (last_request->initiator == NL80211_REGDOM_SET_BY_USER) { if (lr->initiator == NL80211_REGDOM_SET_BY_USER) {
user_alpha2[0] = last_request->alpha2[0]; user_alpha2[0] = lr->alpha2[0];
user_alpha2[1] = last_request->alpha2[1]; user_alpha2[1] = lr->alpha2[1];
} }
/* When r == REG_REQ_INTERSECT we do need to call CRDA */ /* When r == REG_REQ_INTERSECT we do need to call CRDA */
...@@ -1494,13 +1509,13 @@ __regulatory_hint(struct wiphy *wiphy, ...@@ -1494,13 +1509,13 @@ __regulatory_hint(struct wiphy *wiphy,
* inform userspace we have processed the request * inform userspace we have processed the request
*/ */
if (treatment == REG_REQ_ALREADY_SET) { if (treatment == REG_REQ_ALREADY_SET) {
nl80211_send_reg_change_event(last_request); nl80211_send_reg_change_event(lr);
reg_set_request_processed(); reg_set_request_processed();
} }
return treatment; return treatment;
} }
if (call_crda(last_request->alpha2)) if (call_crda(lr->alpha2))
return REG_REQ_IGNORE; return REG_REQ_IGNORE;
return REG_REQ_OK; return REG_REQ_OK;
} }
...@@ -1543,13 +1558,14 @@ static void reg_process_hint(struct regulatory_request *reg_request, ...@@ -1543,13 +1558,14 @@ static void reg_process_hint(struct regulatory_request *reg_request,
*/ */
static void reg_process_pending_hints(void) static void reg_process_pending_hints(void)
{ {
struct regulatory_request *reg_request; struct regulatory_request *reg_request, *lr;
mutex_lock(&cfg80211_mutex); mutex_lock(&cfg80211_mutex);
mutex_lock(&reg_mutex); mutex_lock(&reg_mutex);
lr = get_last_request();
/* When last_request->processed becomes true this will be rescheduled */ /* When last_request->processed becomes true this will be rescheduled */
if (last_request && !last_request->processed) { if (lr && !lr->processed) {
REG_DBG_PRINT("Pending regulatory request, waiting for it to be processed...\n"); REG_DBG_PRINT("Pending regulatory request, waiting for it to be processed...\n");
goto out; goto out;
} }
...@@ -1702,11 +1718,12 @@ void regulatory_hint_11d(struct wiphy *wiphy, enum ieee80211_band band, ...@@ -1702,11 +1718,12 @@ void regulatory_hint_11d(struct wiphy *wiphy, enum ieee80211_band band,
{ {
char alpha2[2]; char alpha2[2];
enum environment_cap env = ENVIRON_ANY; enum environment_cap env = ENVIRON_ANY;
struct regulatory_request *request; struct regulatory_request *request, *lr;
mutex_lock(&reg_mutex); mutex_lock(&reg_mutex);
lr = get_last_request();
if (unlikely(!last_request)) if (unlikely(!lr))
goto out; goto out;
/* IE len must be evenly divisible by 2 */ /* IE len must be evenly divisible by 2 */
...@@ -1729,8 +1746,8 @@ void regulatory_hint_11d(struct wiphy *wiphy, enum ieee80211_band band, ...@@ -1729,8 +1746,8 @@ void regulatory_hint_11d(struct wiphy *wiphy, enum ieee80211_band band,
* We leave conflict resolution to the workqueue, where can hold * We leave conflict resolution to the workqueue, where can hold
* cfg80211_mutex. * cfg80211_mutex.
*/ */
if (last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE && if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE &&
last_request->wiphy_idx != WIPHY_IDX_INVALID) lr->wiphy_idx != WIPHY_IDX_INVALID)
goto out; goto out;
request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL); request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
...@@ -2021,13 +2038,12 @@ static void print_dfs_region(u8 dfs_region) ...@@ -2021,13 +2038,12 @@ static void print_dfs_region(u8 dfs_region)
static void print_regdomain(const struct ieee80211_regdomain *rd) static void print_regdomain(const struct ieee80211_regdomain *rd)
{ {
struct regulatory_request *lr = get_last_request();
if (is_intersected_alpha2(rd->alpha2)) { if (is_intersected_alpha2(rd->alpha2)) {
if (last_request->initiator == if (lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE) {
NL80211_REGDOM_SET_BY_COUNTRY_IE) {
struct cfg80211_registered_device *rdev; struct cfg80211_registered_device *rdev;
rdev = cfg80211_rdev_by_wiphy_idx( rdev = cfg80211_rdev_by_wiphy_idx(lr->wiphy_idx);
last_request->wiphy_idx);
if (rdev) { if (rdev) {
pr_info("Current regulatory domain updated by AP to: %c%c\n", pr_info("Current regulatory domain updated by AP to: %c%c\n",
rdev->country_ie_alpha2[0], rdev->country_ie_alpha2[0],
...@@ -2042,7 +2058,7 @@ static void print_regdomain(const struct ieee80211_regdomain *rd) ...@@ -2042,7 +2058,7 @@ static void print_regdomain(const struct ieee80211_regdomain *rd)
if (is_unknown_alpha2(rd->alpha2)) if (is_unknown_alpha2(rd->alpha2))
pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n"); pr_info("Regulatory domain changed to driver built-in settings (unknown country)\n");
else { else {
if (reg_request_cell_base(last_request)) if (reg_request_cell_base(lr))
pr_info("Regulatory domain changed to country: %c%c by Cell Station\n", pr_info("Regulatory domain changed to country: %c%c by Cell Station\n",
rd->alpha2[0], rd->alpha2[1]); rd->alpha2[0], rd->alpha2[1]);
else else
...@@ -2067,11 +2083,10 @@ static int __set_regdom(const struct ieee80211_regdomain *rd) ...@@ -2067,11 +2083,10 @@ static int __set_regdom(const struct ieee80211_regdomain *rd)
const struct ieee80211_regdomain *regd; const struct ieee80211_regdomain *regd;
const struct ieee80211_regdomain *intersected_rd = NULL; const struct ieee80211_regdomain *intersected_rd = NULL;
struct wiphy *request_wiphy; struct wiphy *request_wiphy;
struct regulatory_request *lr = get_last_request();
/* Some basic sanity checks first */ /* Some basic sanity checks first */
assert_reg_lock();
if (!reg_is_valid_request(rd->alpha2)) if (!reg_is_valid_request(rd->alpha2))
return -EINVAL; return -EINVAL;
...@@ -2089,7 +2104,7 @@ static int __set_regdom(const struct ieee80211_regdomain *rd) ...@@ -2089,7 +2104,7 @@ static int __set_regdom(const struct ieee80211_regdomain *rd)
* rd is non static (it means CRDA was present and was used last) * rd is non static (it means CRDA was present and was used last)
* and the pending request came in from a country IE * and the pending request came in from a country IE
*/ */
if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) { if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
/* /*
* If someone else asked us to change the rd lets only bother * If someone else asked us to change the rd lets only bother
* checking if the alpha2 changes if CRDA was already called * checking if the alpha2 changes if CRDA was already called
...@@ -2111,16 +2126,16 @@ static int __set_regdom(const struct ieee80211_regdomain *rd) ...@@ -2111,16 +2126,16 @@ static int __set_regdom(const struct ieee80211_regdomain *rd)
return -EINVAL; return -EINVAL;
} }
request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
if (!request_wiphy && if (!request_wiphy &&
(last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER || (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER ||
last_request->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)) { lr->initiator == NL80211_REGDOM_SET_BY_COUNTRY_IE)) {
schedule_delayed_work(&reg_timeout, 0); schedule_delayed_work(&reg_timeout, 0);
return -ENODEV; return -ENODEV;
} }
if (!last_request->intersect) { if (!lr->intersect) {
if (last_request->initiator != NL80211_REGDOM_SET_BY_DRIVER) { if (lr->initiator != NL80211_REGDOM_SET_BY_DRIVER) {
reset_regdomains(false, rd); reset_regdomains(false, rd);
return 0; return 0;
} }
...@@ -2148,7 +2163,7 @@ static int __set_regdom(const struct ieee80211_regdomain *rd) ...@@ -2148,7 +2163,7 @@ static int __set_regdom(const struct ieee80211_regdomain *rd)
/* Intersection requires a bit more work */ /* Intersection requires a bit more work */
if (last_request->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) { if (lr->initiator != NL80211_REGDOM_SET_BY_COUNTRY_IE) {
intersected_rd = regdom_intersect(rd, get_cfg80211_regdom()); intersected_rd = regdom_intersect(rd, get_cfg80211_regdom());
if (!intersected_rd) if (!intersected_rd)
return -EINVAL; return -EINVAL;
...@@ -2158,7 +2173,7 @@ static int __set_regdom(const struct ieee80211_regdomain *rd) ...@@ -2158,7 +2173,7 @@ static int __set_regdom(const struct ieee80211_regdomain *rd)
* However if a driver requested this specific regulatory * However if a driver requested this specific regulatory
* domain we keep it for its private use * domain we keep it for its private use
*/ */
if (last_request->initiator == NL80211_REGDOM_SET_BY_DRIVER) if (lr->initiator == NL80211_REGDOM_SET_BY_DRIVER)
rcu_assign_pointer(request_wiphy->regd, rd); rcu_assign_pointer(request_wiphy->regd, rd);
else else
kfree(rd); kfree(rd);
...@@ -2181,9 +2196,11 @@ static int __set_regdom(const struct ieee80211_regdomain *rd) ...@@ -2181,9 +2196,11 @@ static int __set_regdom(const struct ieee80211_regdomain *rd)
*/ */
int set_regdom(const struct ieee80211_regdomain *rd) int set_regdom(const struct ieee80211_regdomain *rd)
{ {
struct regulatory_request *lr;
int r; int r;
mutex_lock(&reg_mutex); mutex_lock(&reg_mutex);
lr = get_last_request();
/* Note that this doesn't update the wiphys, this is done below */ /* Note that this doesn't update the wiphys, this is done below */
r = __set_regdom(rd); r = __set_regdom(rd);
...@@ -2196,18 +2213,17 @@ int set_regdom(const struct ieee80211_regdomain *rd) ...@@ -2196,18 +2213,17 @@ int set_regdom(const struct ieee80211_regdomain *rd)
} }
/* This would make this whole thing pointless */ /* This would make this whole thing pointless */
if (WARN_ON(!last_request->intersect && if (WARN_ON(!lr->intersect && rd != get_cfg80211_regdom())) {
rd != get_cfg80211_regdom())) {
r = -EINVAL; r = -EINVAL;
goto out; goto out;
} }
/* update all wiphys now with the new established regulatory domain */ /* update all wiphys now with the new established regulatory domain */
update_all_wiphy_regulatory(last_request->initiator); update_all_wiphy_regulatory(lr->initiator);
print_regdomain(get_cfg80211_regdom()); print_regdomain(get_cfg80211_regdom());
nl80211_send_reg_change_event(last_request); nl80211_send_reg_change_event(lr);
reg_set_request_processed(); reg_set_request_processed();
...@@ -2220,10 +2236,11 @@ int set_regdom(const struct ieee80211_regdomain *rd) ...@@ -2220,10 +2236,11 @@ int set_regdom(const struct ieee80211_regdomain *rd)
#ifdef CONFIG_HOTPLUG #ifdef CONFIG_HOTPLUG
int reg_device_uevent(struct device *dev, struct kobj_uevent_env *env) int reg_device_uevent(struct device *dev, struct kobj_uevent_env *env)
{ {
if (last_request && !last_request->processed) { struct regulatory_request *lr = get_last_request();
if (lr && !lr->processed) {
if (add_uevent_var(env, "COUNTRY=%c%c", if (add_uevent_var(env, "COUNTRY=%c%c",
last_request->alpha2[0], lr->alpha2[0], lr->alpha2[1]))
last_request->alpha2[1]))
return -ENOMEM; return -ENOMEM;
} }
...@@ -2252,8 +2269,10 @@ void wiphy_regulatory_register(struct wiphy *wiphy) ...@@ -2252,8 +2269,10 @@ void wiphy_regulatory_register(struct wiphy *wiphy)
void wiphy_regulatory_deregister(struct wiphy *wiphy) void wiphy_regulatory_deregister(struct wiphy *wiphy)
{ {
struct wiphy *request_wiphy = NULL; struct wiphy *request_wiphy = NULL;
struct regulatory_request *lr;
mutex_lock(&reg_mutex); mutex_lock(&reg_mutex);
lr = get_last_request();
if (!reg_dev_ignore_cell_hint(wiphy)) if (!reg_dev_ignore_cell_hint(wiphy))
reg_num_devs_support_basehint--; reg_num_devs_support_basehint--;
...@@ -2261,14 +2280,14 @@ void wiphy_regulatory_deregister(struct wiphy *wiphy) ...@@ -2261,14 +2280,14 @@ void wiphy_regulatory_deregister(struct wiphy *wiphy)
rcu_free_regdom(get_wiphy_regdom(wiphy)); rcu_free_regdom(get_wiphy_regdom(wiphy));
rcu_assign_pointer(wiphy->regd, NULL); rcu_assign_pointer(wiphy->regd, NULL);
if (last_request) if (lr)
request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); request_wiphy = wiphy_idx_to_wiphy(lr->wiphy_idx);
if (!request_wiphy || request_wiphy != wiphy) if (!request_wiphy || request_wiphy != wiphy)
goto out; goto out;
last_request->wiphy_idx = WIPHY_IDX_INVALID; lr->wiphy_idx = WIPHY_IDX_INVALID;
last_request->country_ie_env = ENVIRON_ANY; lr->country_ie_env = ENVIRON_ANY;
out: out:
mutex_unlock(&reg_mutex); mutex_unlock(&reg_mutex);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册