Return-path: Received: from mga01.intel.com ([192.55.52.88]:37546 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750928AbbCAMAH convert rfc822-to-8bit (ORCPT ); Sun, 1 Mar 2015 07:00:07 -0500 From: "Peer, Ilan" To: "Luis R. Rodriguez" CC: "linux-wireless@vger.kernel.org" , "ArikX Nemtsov" Subject: RE: [PATCH v8 2/3] cfg80211: Add API to change the indoor regulatory setting Date: Sun, 1 Mar 2015 12:00:01 +0000 Message-ID: (sfid-20150301_130018_496928_593060BD) References: <1424944447-10988-1-git-send-email-ilan.peer@intel.com> <1424944447-10988-2-git-send-email-ilan.peer@intel.com> <20150226174143.GM8749@wotan.suse.de> In-Reply-To: <20150226174143.GM8749@wotan.suse.de> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org List-ID: Hi Luis > -----Original Message----- > From: linux-wireless-owner@vger.kernel.org [mailto:linux-wireless- > owner@vger.kernel.org] On Behalf Of Luis R. Rodriguez > Sent: Thursday, February 26, 2015 19:42 > To: Peer, Ilan > Cc: linux-wireless@vger.kernel.org; ArikX Nemtsov > Subject: Re: [PATCH v8 2/3] cfg80211: Add API to change the indoor > regulatory setting > > On Thu, Feb 26, 2015 at 04:54:06AM -0500, Ilan Peer wrote: > > Previously, the indoor setting configuration assumed that as long as a > > station interface is connected, the indoor environment setting does > > not change. However, this assumption is problematic > > as: > > > > - It is possible that a station interface is connected to a mobile > > AP, e.g., softAP or a P2P GO, where it is possible that both the > > station and the mobile AP move out of the indoor environment making > > the indoor setting invalid. In such a case, user space has no way to > > invalidate the setting. > > - A station interface disconnection does not necessarily imply that > > the device is no longer operating in an indoor environment, e.g., > > it is possible that the station interface is roaming but is still > > stays indoor. > > > > To handle the above, extend the indoor configuration API to allow user > > space to indicate a change of indoor settings, and allow it to > > indicate weather it controls the indoor setting, such that: > > > > 1. If the user space process explicitly indicates that it is going > > to control the indoor setting, do not clear the indoor setting > > internally, unless the socket is released. The user space process > > should use the NL80211_ATTR_SOCKET_OWNER attribute in the command > > to state that it is going to control the indoor setting. > > 2. Reset the indoor setting when restoring the regulatory settings in > > case it is not owned by a user space process. > > > > Based on the above, a user space tool that continuously monitors the > > indoor settings, i.e., tracking power setting, location etc., can > > indicate environment changes to the regulatory core. > > > > Currently, in case a received country IE includes environment > > information (indicates that the country IE applies only to indoor > > operation or only to outdoor operation) it is currently not used. > > Since I spotted an issue and you have to remake this patch please also change > this to: > > It should be noted that currently userspace is the only provided mechanism > used to hint to the regulatory core over the indoor/outdoor environment -- > while the country IEs do have an environment setting this has been > completely ignored by the regulatory core by design for a while now since > country IEs typically can contain bogus data. > Sure. Done. > > @@ -4984,7 +4988,15 @@ static int nl80211_req_set_reg(struct sk_buff > *skb, struct genl_info *info) > > data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]); > > return regulatory_hint_user(data, user_reg_hint_type); > > case NL80211_USER_REG_HINT_INDOOR: > > - return regulatory_hint_indoor_user(); > > + if (info->attrs[NL80211_ATTR_SOCKET_OWNER]) { > > + owner_nlportid = info->snd_portid; > > + is_indoor = !!info- > >attrs[NL80211_ATTR_REG_INDOOR]; > > + } else { > > + owner_nlportid = 0; > > + is_indoor = true; > > + } > > + > > + return regulatory_hint_indoor(is_indoor, owner_nlportid); > > Good, this looks better now. But you are missing the chance that a secondary > random interface can come up and override that environmental information > without checking for previous users. I'll illustrate below. > > > default: > > @@ -2288,15 +2291,51 @@ int regulatory_hint_user(const char *alpha2, > > return 0; > > } > > > > -int regulatory_hint_indoor_user(void) > > +int regulatory_hint_indoor(bool is_indoor, u32 portid) > > { > > + spin_lock(®_indoor_lock); > > > > + /* > > + * Process only if there is a real change, so the original port ID is > > + * saved (to handle cases that several processes try to change the > > + * indoor setting). > > + */ > > + if (reg_is_indoor == is_indoor) { > > + spin_unlock(®_indoor_lock); > > + return 0; > > + } > > > > - reg_is_indoor = true; > > + reg_is_indoor = is_indoor; > > + if (reg_is_indoor) > > + reg_is_indoor_portid = portid; > > + else > > + reg_is_indoor_portid = 0; > > Why do we ignore port id if we go outdoor? Also we seem to allow interfaces This is back to the default, where the regulatory core does not assume indoor operation so it does not care about the owner in this case. Generally, the hint is an indoor hint, which states that the device is operating in indoor environment, clearing it does not imply that it is operating outdoor, but indicates there is no conclusive indication that the device is operating in indoor environment. > to disagree on the setting, how are you handling that here? > Don't tell me that cannot happen, I want you to think about that and handle it. > Handled this so only the original owner that set the indoor indication would be able to clear it. Thanks, Ilan.