linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC] Add cfg80211/nl80211 support for AP mode 802.11 FT roaming
@ 2017-09-25 12:30 Dedy Lansky
  2017-10-02 12:30 ` Johannes Berg
  0 siblings, 1 reply; 2+ messages in thread
From: Dedy Lansky @ 2017-09-25 12:30 UTC (permalink / raw)
  To: 'Johannes Berg', linux-wireless; +Cc: wil6210

From: Dedy Lansky <dlansky@codeaurora.org>

Drivers which have integrated AP SME can use this to communicate with
userspace (e.g. hostapd) for the purpose of FT roaming processing.

cfg80211 API added for driver to indicate received Authentication and
Reassociation frames from the roaming STA.
NL80211_CMD_AUTHENTICATE and NL80211_CMD_ASSOCIATE are enhanced to be used
in AP mode, for indication/response to/from userspace.

Signed-off-by: Dedy Lansky <dlansky@codeaurora.org>
---

In FT roaming, 4 way handshake is piggybacked on top of Authentication
request/response and Reassociation request/response frames.
This RFC provides API for WLAN drivers to communicate with userspace and
pass required information (e.g. Information Elements) so FT 4 way handshake
can be accomplished in userspace.

This RFC describes only documentation and header file changes. In case the
concept is accepted, a complete patch with implementation changes will be
provided.

---
 include/net/cfg80211.h       | 29 +++++++++++++++++++++++++++++
 include/uapi/linux/nl80211.h | 19 +++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index f12fa52..917e3ac 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -6183,6 +6183,35 @@ void cfg80211_nan_func_terminated(struct wireless_dev
*wdev,
 				  enum nl80211_nan_func_term_reason reason,
 				  u64 cookie, gfp_t gfp);
 
+/**
+ * cfg80211_ft_auth - notify cfg80211 of FT authentication request
+ *
+ * @dev: network device
+ * @req: information about the authentication request
+ *
+ * This function is called by the driver when it receives FT Authentication
+ * frame in AP mode. This is used only with SME-in-device drivers.
+ * req should provide information about the Authentication frame which will
be
+ * forwarded to userspace.
+ */
+void cfg80211_ft_auth(struct net_device *dev,
+		      struct cfg80211_auth_request *req);
+
+/**
+ * cfg80211_ft_reassoc - notify cfg80211 of FT reassociation request
+ *
+ * @dev: network device
+ * @reassoc_data: Reassociation frame
+ * @reassoc_data_len: Reassociation frame length
+ *
+ * This function is called by the driver when it receives FT Reassociation
+ * frame in AP mode. This is used only with SME-in-device drivers.
+ * reassoc_data contains the Reassociation frame which will be forwarded to
+ * userspace.
+ */
+void cfg80211_ft_reassoc(struct net_device *dev,
+			 const u8 *reassoc_data, size_t reassoc_data_len);
+
 /* ethtool helper */
 void cfg80211_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo
*info);
 
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h
index 51626b4..65cf0fc 100644
--- a/include/uapi/linux/nl80211.h
+++ b/include/uapi/linux/nl80211.h
@@ -496,6 +496,20 @@
  *	case the %NL80211_ATTR_FRAME attribute is replaced with a
  *	%NL80211_ATTR_TIMED_OUT flag (and %NL80211_ATTR_MAC to indicate
which
  *	pending authentication timed out).
+ *	In AP mode, this is used for FT roaming when driver has AP SME, as
an
+ *	authentication indication and response.
+ *	When used as an event, this reports reception of an Authentication
+ *	frame from a STA requesting authentication (i.e.
+ *	MLME-AUTHENTICATE.indication). %NL80211_ATTR_MAC is used to specify
+ *	PeerSTAAddress. %NL80211_ATTR_FRAME attribute contains the
management
+ *	frame.
+ *	When used as a command, it indicates whether authentication is
+ *	successful. WLAN driver should send authentication response to the
+ *	authenticating STA (i.e. MLME-AUTHENTICATE.response).
%NL80211_ATTR_MAC
+ *	is used to specify PeerSTAAddress. %NL80211_ATTR_STATUS_CODE is used
to
+ *	indicate success or failure. %NL80211_ATTR_IE contains FT
Information
+ *	Elements.
+ *
  * @NL80211_CMD_ASSOCIATE: association request and notification; like
  *	NL80211_CMD_AUTHENTICATE but for Association and Reassociation
  *	(similar to MLME-ASSOCIATE.request, MLME-REASSOCIATE.request,
@@ -504,6 +518,11 @@
  *	request is for the initial association to an ESS (that attribute not
  *	included) or for reassociation within the ESS (that attribute is
  *	included).
+ *	In AP mode, this is used for FT roaming when driver has AP SME, as a
+ *	Reassociation indication and response. like NL80211_CMD_AUTHENTICATE
+ *	but for Reassociation (similar to MLME-REASSOCIATE.indication,
+ *	MLME-REASSOCIATE.response).
+ *
  * @NL80211_CMD_DEAUTHENTICATE: deauthentication request and notification;
like
  *	NL80211_CMD_AUTHENTICATE but for Deauthentication frames (similar to
  *	MLME-DEAUTHENTICATION.request and MLME-DEAUTHENTICATE.indication
-- 
1.9.1

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

* Re: [RFC] Add cfg80211/nl80211 support for AP mode 802.11 FT roaming
  2017-09-25 12:30 [RFC] Add cfg80211/nl80211 support for AP mode 802.11 FT roaming Dedy Lansky
@ 2017-10-02 12:30 ` Johannes Berg
  0 siblings, 0 replies; 2+ messages in thread
From: Johannes Berg @ 2017-10-02 12:30 UTC (permalink / raw)
  To: Dedy Lansky, linux-wireless; +Cc: wil6210

On Mon, 2017-09-25 at 15:30 +0300, Dedy Lansky wrote:
> From: Dedy Lansky <dlansky@codeaurora.org>
> 
> Drivers which have integrated AP SME can use this to communicate with
> userspace (e.g. hostapd) for the purpose of FT roaming processing.
> 
> cfg80211 API added for driver to indicate received Authentication and
> Reassociation frames from the roaming STA.
> NL80211_CMD_AUTHENTICATE and NL80211_CMD_ASSOCIATE are enhanced to be
> used
> in AP mode, for indication/response to/from userspace.

That description could use some work :)

It's not quite clear to me why this needs new API, and new semantics
for the existing AUTH/ASSOC commands. In fact, the latter I dislike
most, because those commands/events are only used in client mode right
now, and having them in AP mode now seems confusing.

Perhaps just mirroring the frames to userspace with CMD_FRAME, if
needed with a new flag that they're already handled or so would be
better?

johannes

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

end of thread, other threads:[~2017-10-02 12:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-25 12:30 [RFC] Add cfg80211/nl80211 support for AP mode 802.11 FT roaming Dedy Lansky
2017-10-02 12:30 ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).