All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] cfg80211: Stop calling crda if it is not responsive
@ 2015-03-30 12:15 Ilan Peer
  2015-04-01  8:51 ` Johannes Berg
  0 siblings, 1 reply; 5+ messages in thread
From: Ilan Peer @ 2015-03-30 12:15 UTC (permalink / raw)
  To: linux-wireless; +Cc: mcgrof, Ilan Peer

Patch eeca9fce1d71a4955855ceb0c3b13c1eb9db27c1 (cfg80211: Schedule
timeout for all CRDA call) introduced a regression, where in case
that crda is not installed (or not configured properly etc.), the
regulatory core will needlessly continue to call it, polluting the
log with the following log:

"cfg80211: Calling CRDA to update world regulatory domain"

Fix this by limiting the number of continuous CRDA request failures.

Signed-off-by: Ilan Peer <ilan.peer@intel.com>
---
 net/wireless/nl80211.c |  2 +-
 net/wireless/reg.c     | 32 ++++++++++++++++++++++++++++----
 net/wireless/reg.h     |  9 ++++++++-
 3 files changed, 37 insertions(+), 6 deletions(-)

diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index b020853..3f4c768 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -5655,7 +5655,7 @@ static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info)
 		}
 	}
 
-	r = set_regdom(rd);
+	r = set_regdom(rd, REGD_SOURCE_CRDA);
 	/* set_regdom took ownership */
 	rd = NULL;
 
diff --git a/net/wireless/reg.c b/net/wireless/reg.c
index 8c6cf52..cfed9db 100644
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -135,6 +135,11 @@ static spinlock_t reg_indoor_lock;
 /* Used to track the userspace process controlling the indoor setting */
 static u32 reg_is_indoor_portid;
 
+/* Max number of consecutive attempts to communicate with CRDA  */
+#define REG_MAX_CRDA_TIMEOUTS 3
+
+static u32 reg_crda_timeouts;
+
 static const struct ieee80211_regdomain *get_cfg80211_regdom(void)
 {
 	return rtnl_dereference(cfg80211_regdomain);
@@ -485,7 +490,7 @@ static void reg_regdb_search(struct work_struct *work)
 	mutex_unlock(&reg_regdb_search_mutex);
 
 	if (!IS_ERR_OR_NULL(regdom))
-		set_regdom(regdom);
+		set_regdom(regdom, REGD_SOURCE_INTERNAL_DB);
 
 	rtnl_unlock();
 }
@@ -536,14 +541,19 @@ static int call_crda(const char *alpha2)
 		 alpha2[0], alpha2[1]);
 
 	if (!is_world_regdom((char *) alpha2))
-		pr_info("Calling CRDA for country: %c%c\n",
+		pr_info("Update country=%c%c\n",
 			alpha2[0], alpha2[1]);
 	else
-		pr_info("Calling CRDA to update world regulatory domain\n");
+		pr_info("Update to world regulatory domain\n");
 
 	/* query internal regulatory database (if it exists) */
 	reg_regdb_query(alpha2);
 
+	if (reg_crda_timeouts > REG_MAX_CRDA_TIMEOUTS) {
+		pr_info("Exceeded CRDA call max attempts. Not calling CRDA\n");
+		return -EINVAL;
+	}
+
 	return kobject_uevent_env(&reg_pdev->dev.kobj, KOBJ_CHANGE, env);
 }
 
@@ -2293,6 +2303,9 @@ int regulatory_hint_user(const char *alpha2,
 	request->initiator = NL80211_REGDOM_SET_BY_USER;
 	request->user_reg_hint_type = user_reg_hint_type;
 
+	/* Allow calling CRDA again */
+	reg_crda_timeouts = 0;
+
 	queue_regulatory_request(request);
 
 	return 0;
@@ -2362,6 +2375,9 @@ int regulatory_hint(struct wiphy *wiphy, const char *alpha2)
 	request->alpha2[1] = alpha2[1];
 	request->initiator = NL80211_REGDOM_SET_BY_DRIVER;
 
+	/* Allow calling CRDA again */
+	reg_crda_timeouts = 0;
+
 	queue_regulatory_request(request);
 
 	return 0;
@@ -2415,6 +2431,9 @@ void regulatory_hint_country_ie(struct wiphy *wiphy, enum ieee80211_band band,
 	request->initiator = NL80211_REGDOM_SET_BY_COUNTRY_IE;
 	request->country_ie_env = env;
 
+	/* Allow calling CRDA again */
+	reg_crda_timeouts = 0;
+
 	queue_regulatory_request(request);
 	request = NULL;
 out:
@@ -2893,7 +2912,8 @@ static int reg_set_rd_country_ie(const struct ieee80211_regdomain *rd,
  * multiple drivers can be ironed out later. Caller must've already
  * kmalloc'd the rd structure.
  */
-int set_regdom(const struct ieee80211_regdomain *rd)
+int set_regdom(const struct ieee80211_regdomain *rd,
+	       enum ieee80211_regd_source regd_src)
 {
 	struct regulatory_request *lr;
 	bool user_reset = false;
@@ -2904,6 +2924,9 @@ int set_regdom(const struct ieee80211_regdomain *rd)
 		return -EINVAL;
 	}
 
+	if (regd_src == REGD_SOURCE_CRDA)
+		reg_crda_timeouts = 0;
+
 	lr = get_last_request();
 
 	/* Note that this doesn't update the wiphys, this is done below */
@@ -3063,6 +3086,7 @@ static void reg_timeout_work(struct work_struct *work)
 {
 	REG_DBG_PRINT("Timeout while waiting for CRDA to reply, restoring regulatory settings\n");
 	rtnl_lock();
+	reg_crda_timeouts++;
 	restore_regulatory_settings(true);
 	rtnl_unlock();
 }
diff --git a/net/wireless/reg.h b/net/wireless/reg.h
index a2c4e16..3f310a5 100644
--- a/net/wireless/reg.h
+++ b/net/wireless/reg.h
@@ -16,6 +16,11 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+enum ieee80211_regd_source {
+	REGD_SOURCE_INTERNAL_DB = 0,
+	REGD_SOURCE_CRDA,
+};
+
 extern const struct ieee80211_regdomain __rcu *cfg80211_regdomain;
 
 bool reg_is_valid_request(const char *alpha2);
@@ -46,7 +51,9 @@ void wiphy_regulatory_deregister(struct wiphy *wiphy);
 int __init regulatory_init(void);
 void regulatory_exit(void);
 
-int set_regdom(const struct ieee80211_regdomain *rd);
+int set_regdom(const struct ieee80211_regdomain *rd,
+	       enum ieee80211_regd_source regd_src);
+
 unsigned int reg_get_max_bandwidth(const struct ieee80211_regdomain *rd,
 				   const struct ieee80211_reg_rule *rule);
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] cfg80211: Stop calling crda if it is not responsive
  2015-03-30 12:15 [PATCH v2] cfg80211: Stop calling crda if it is not responsive Ilan Peer
@ 2015-04-01  8:51 ` Johannes Berg
  2015-04-01  9:19   ` Peer, Ilan
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Berg @ 2015-04-01  8:51 UTC (permalink / raw)
  To: Ilan Peer; +Cc: linux-wireless, mcgrof

On Mon, 2015-03-30 at 15:15 +0300, Ilan Peer wrote:
> Patch eeca9fce1d71a4955855ceb0c3b13c1eb9db27c1 (cfg80211: Schedule
> timeout for all CRDA call) introduced a regression, where in case
> that crda is not installed (or not configured properly etc.), the
> regulatory core will needlessly continue to call it, polluting the
> log with the following log:
> 
> "cfg80211: Calling CRDA to update world regulatory domain"
> 
> Fix this by limiting the number of continuous CRDA request failures.

Applied, but I put the condition in a place before printing more
messages, and changed the messages back to the original ones.

johannes


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH v2] cfg80211: Stop calling crda if it is not responsive
  2015-04-01  8:51 ` Johannes Berg
@ 2015-04-01  9:19   ` Peer, Ilan
  2015-04-01  9:22     ` Johannes Berg
  0 siblings, 1 reply; 5+ messages in thread
From: Peer, Ilan @ 2015-04-01  9:19 UTC (permalink / raw)
  To: Johannes Berg; +Cc: linux-wireless, mcgrof

PiAtLS0tLU9yaWdpbmFsIE1lc3NhZ2UtLS0tLQ0KPiBGcm9tOiBKb2hhbm5lcyBCZXJnIFttYWls
dG86am9oYW5uZXNAc2lwc29sdXRpb25zLm5ldF0NCj4gU2VudDogV2VkbmVzZGF5LCBBcHJpbCAw
MSwgMjAxNSAxMTo1MQ0KPiBUbzogUGVlciwgSWxhbg0KPiBDYzogbGludXgtd2lyZWxlc3NAdmdl
ci5rZXJuZWwub3JnOyBtY2dyb2ZAc3VzZS5jb20NCj4gU3ViamVjdDogUmU6IFtQQVRDSCB2Ml0g
Y2ZnODAyMTE6IFN0b3AgY2FsbGluZyBjcmRhIGlmIGl0IGlzIG5vdCByZXNwb25zaXZlDQo+IA0K
PiBPbiBNb24sIDIwMTUtMDMtMzAgYXQgMTU6MTUgKzAzMDAsIElsYW4gUGVlciB3cm90ZToNCj4g
PiBQYXRjaCBlZWNhOWZjZTFkNzFhNDk1NTg1NWNlYjBjM2IxM2MxZWI5ZGIyN2MxIChjZmc4MDIx
MToNCj4gU2NoZWR1bGUNCj4gPiB0aW1lb3V0IGZvciBhbGwgQ1JEQSBjYWxsKSBpbnRyb2R1Y2Vk
IGEgcmVncmVzc2lvbiwgd2hlcmUgaW4gY2FzZSB0aGF0DQo+ID4gY3JkYSBpcyBub3QgaW5zdGFs
bGVkIChvciBub3QgY29uZmlndXJlZCBwcm9wZXJseSBldGMuKSwgdGhlDQo+ID4gcmVndWxhdG9y
eSBjb3JlIHdpbGwgbmVlZGxlc3NseSBjb250aW51ZSB0byBjYWxsIGl0LCBwb2xsdXRpbmcgdGhl
IGxvZw0KPiA+IHdpdGggdGhlIGZvbGxvd2luZyBsb2c6DQo+ID4NCj4gPiAiY2ZnODAyMTE6IENh
bGxpbmcgQ1JEQSB0byB1cGRhdGUgd29ybGQgcmVndWxhdG9yeSBkb21haW4iDQo+ID4NCj4gPiBG
aXggdGhpcyBieSBsaW1pdGluZyB0aGUgbnVtYmVyIG9mIGNvbnRpbnVvdXMgQ1JEQSByZXF1ZXN0
IGZhaWx1cmVzLg0KPiANCj4gQXBwbGllZCwgYnV0IEkgcHV0IHRoZSBjb25kaXRpb24gaW4gYSBw
bGFjZSBiZWZvcmUgcHJpbnRpbmcgbW9yZSBtZXNzYWdlcywgYW5kDQo+IGNoYW5nZWQgdGhlIG1l
c3NhZ2VzIGJhY2sgdG8gdGhlIG9yaWdpbmFsIG9uZXMuDQo+IA0KDQpCdXQgdGhpcyB3b3VsZCBt
aXNzIHRoZSB1cGRhdGUgaW4gY2FzZSB0aGF0IHRoZSBpbnRlcm5hbCBEQiBpcyBhbHNvIHVzZWQu
DQoNCklsYW4uDQo=

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] cfg80211: Stop calling crda if it is not responsive
  2015-04-01  9:19   ` Peer, Ilan
@ 2015-04-01  9:22     ` Johannes Berg
  2015-04-01 11:37       ` Peer, Ilan
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Berg @ 2015-04-01  9:22 UTC (permalink / raw)
  To: Peer, Ilan; +Cc: linux-wireless, mcgrof

On Wed, 2015-04-01 at 09:19 +0000, Peer, Ilan wrote:

> > Applied, but I put the condition in a place before printing more messages, and
> > changed the messages back to the original ones.
> > 
> 
> But this would miss the update in case that the internal DB is also used.

Hm, true, I'll move the prints later instead.

johannes


^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH v2] cfg80211: Stop calling crda if it is not responsive
  2015-04-01  9:22     ` Johannes Berg
@ 2015-04-01 11:37       ` Peer, Ilan
  0 siblings, 0 replies; 5+ messages in thread
From: Peer, Ilan @ 2015-04-01 11:37 UTC (permalink / raw)
  To: Johannes Berg; +Cc: linux-wireless, mcgrof

PiAtLS0tLU9yaWdpbmFsIE1lc3NhZ2UtLS0tLQ0KPiBGcm9tOiBsaW51eC13aXJlbGVzcy1vd25l
ckB2Z2VyLmtlcm5lbC5vcmcgW21haWx0bzpsaW51eC13aXJlbGVzcy0NCj4gb3duZXJAdmdlci5r
ZXJuZWwub3JnXSBPbiBCZWhhbGYgT2YgSm9oYW5uZXMgQmVyZw0KPiBTZW50OiBXZWRuZXNkYXks
IEFwcmlsIDAxLCAyMDE1IDEyOjIzDQo+IFRvOiBQZWVyLCBJbGFuDQo+IENjOiBsaW51eC13aXJl
bGVzc0B2Z2VyLmtlcm5lbC5vcmc7IG1jZ3JvZkBzdXNlLmNvbQ0KPiBTdWJqZWN0OiBSZTogW1BB
VENIIHYyXSBjZmc4MDIxMTogU3RvcCBjYWxsaW5nIGNyZGEgaWYgaXQgaXMgbm90IHJlc3BvbnNp
dmUNCj4gDQo+IE9uIFdlZCwgMjAxNS0wNC0wMSBhdCAwOToxOSArMDAwMCwgUGVlciwgSWxhbiB3
cm90ZToNCj4gDQo+ID4gPiBBcHBsaWVkLCBidXQgSSBwdXQgdGhlIGNvbmRpdGlvbiBpbiBhIHBs
YWNlIGJlZm9yZSBwcmludGluZyBtb3JlDQo+ID4gPiBtZXNzYWdlcywgYW5kIGNoYW5nZWQgdGhl
IG1lc3NhZ2VzIGJhY2sgdG8gdGhlIG9yaWdpbmFsIG9uZXMuDQo+ID4gPg0KPiA+DQo+ID4gQnV0
IHRoaXMgd291bGQgbWlzcyB0aGUgdXBkYXRlIGluIGNhc2UgdGhhdCB0aGUgaW50ZXJuYWwgREIg
aXMgYWxzbyB1c2VkLg0KPiANCj4gSG0sIHRydWUsIEknbGwgbW92ZSB0aGUgcHJpbnRzIGxhdGVy
IGluc3RlYWQuDQo+IA0KDQpUaGF0J3Mgd2h5IEkgY2hhbmdlZCB0aGVtIGluIHRoZSBmaXJzdCBw
bGFjZSwgdG8gaW5kaWNhdGUgdGhhdCBhIGNvdW50cnkgdXBkYXRlIGlzIGRvbmUsIHJlZ2FyZGxl
c3MgaWYgQ1JEQSBpcyBjYWxsZWQgb3Igbm90Lg0KDQpJbGFuLg0KDQo=

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-04-01 11:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-30 12:15 [PATCH v2] cfg80211: Stop calling crda if it is not responsive Ilan Peer
2015-04-01  8:51 ` Johannes Berg
2015-04-01  9:19   ` Peer, Ilan
2015-04-01  9:22     ` Johannes Berg
2015-04-01 11:37       ` Peer, Ilan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.