2008-08-18 19:11:50

by Jouni Malinen

[permalink] [raw]
Subject: [PATCH] mac80211/cfg80211: Add vif configuration options

This change adds a new cfg80211 command, NL80211_CMD_SET_VIF, to allow
vif parameters to be changed from user space (e.g., wpa_supplicant).

Signed-off-by: Jouni Malinen <[email protected]>


Index: wireless-testing/include/net/cfg80211.h
===================================================================
--- wireless-testing.orig/include/net/cfg80211.h
+++ wireless-testing/include/net/cfg80211.h
@@ -286,6 +286,21 @@ struct bss_parameters {
int use_short_slot_time;
};

+/**
+ * struct vif_parameters - Virtual interface parameters
+ *
+ * Used to change virtual interface parameters.
+ *
+ * @drop_unencrypted: Whether to drop unencrypted frames
+ * (0 = no, 1 = yes, -1 = do not change)
+ * @userspace_mlme: Whether to use userspace MLME
+ * (0 = no, 1 = yes, -1 = do not change)
+ */
+struct vif_parameters {
+ int drop_unencrypted;
+ int userspace_mlme;
+};
+
/* from net/wireless.h */
struct wiphy;

@@ -337,6 +352,8 @@ struct wiphy;
* @set_mesh_cfg: set mesh parameters (by now, just mesh id)
*
* @change_bss: Modify parameters for a given BSS.
+ *
+ * @change_vif: Modify parameters for a given virtual interface.
*/
struct cfg80211_ops {
int (*add_virtual_intf)(struct wiphy *wiphy, char *name,
@@ -392,6 +409,9 @@ struct cfg80211_ops {

int (*change_bss)(struct wiphy *wiphy, struct net_device *dev,
struct bss_parameters *params);
+
+ int (*change_vif)(struct wiphy *wiphy, struct net_device *dev,
+ struct vif_parameters *params);
};

#endif /* __NET_CFG80211_H */
Index: wireless-testing/net/mac80211/cfg.c
===================================================================
--- wireless-testing.orig/net/mac80211/cfg.c
+++ wireless-testing/net/mac80211/cfg.c
@@ -1041,6 +1041,33 @@ static int ieee80211_change_bss(struct w
return 0;
}

+static int ieee80211_change_vif(struct wiphy *wiphy,
+ struct net_device *dev,
+ struct vif_parameters *params)
+{
+ struct ieee80211_local *local = wiphy_priv(wiphy);
+ struct ieee80211_sub_if_data *sdata;
+
+ if (dev == local->mdev)
+ return -EOPNOTSUPP;
+
+ sdata = IEEE80211_DEV_TO_SUB_IF(dev);
+
+ if (params->drop_unencrypted >= 0)
+ sdata->drop_unencrypted = params->drop_unencrypted;
+ if (params->userspace_mlme == 0) {
+ sdata->flags &= ~IEEE80211_SDATA_USERSPACE_MLME;
+ if (sdata->vif.type == IEEE80211_IF_TYPE_STA)
+ netif_carrier_off(dev);
+ } else if (params->userspace_mlme >= 0) {
+ sdata->flags |= IEEE80211_SDATA_USERSPACE_MLME;
+ if (sdata->vif.type == IEEE80211_IF_TYPE_STA)
+ netif_carrier_on(dev);
+ }
+
+ return 0;
+}
+
struct cfg80211_ops mac80211_config_ops = {
.add_virtual_intf = ieee80211_add_iface,
.del_virtual_intf = ieee80211_del_iface,
@@ -1065,4 +1092,5 @@ struct cfg80211_ops mac80211_config_ops
.dump_mpath = ieee80211_dump_mpath,
#endif
.change_bss = ieee80211_change_bss,
+ .change_vif = ieee80211_change_vif,
};
Index: wireless-testing/include/linux/nl80211.h
===================================================================
--- wireless-testing.orig/include/linux/nl80211.h
+++ wireless-testing/include/linux/nl80211.h
@@ -91,6 +91,8 @@
* by %NL80211_ATTR_IFINDEX.
* @NL80211_CMD_SET_BSS: Set BSS attributes for BSS identified by
* %NL80211_ATTR_IFINDEX.
+ * @NL80211_CMD_SET_VIF: Set virtual interface attributes for vif identified by
+ * %NL80211_ATTR_IFINDEX.
*
* @NL80211_CMD_MAX: highest used command number
* @__NL80211_CMD_AFTER_LAST: internal use
@@ -131,6 +133,8 @@ enum nl80211_commands {

NL80211_CMD_SET_BSS,

+ NL80211_CMD_SET_VIF,
+
/* add commands here */

/* used to define NL80211_CMD_MAX below */
@@ -143,6 +147,7 @@ enum nl80211_commands {
* here
*/
#define NL80211_CMD_SET_BSS NL80211_CMD_SET_BSS
+#define NL80211_CMD_SET_VIF NL80211_CMD_SET_VIF

/**
* enum nl80211_attrs - nl80211 netlink attributes
@@ -207,6 +212,11 @@ enum nl80211_commands {
* @NL80211_ATTR_BSS_SHORT_SLOT_TIME: whether short slot time enabled
* (u8, 0 or 1)
*
+ * @NL80211_ATTR_VIF_DROP_UNENCRYPTED: whether unencrypted frames will be
+ * dropped (u8, 0 or 1)
+ * @NL80211_ATTR_VIF_USERSPACE_MLME: whether userspace MLME is used
+ * (u8, 0 or 1)
+ *
* @NL80211_ATTR_MAX: highest attribute number currently defined
* @__NL80211_ATTR_AFTER_LAST: internal use
*/
@@ -254,6 +264,9 @@ enum nl80211_attrs {
NL80211_ATTR_BSS_SHORT_PREAMBLE,
NL80211_ATTR_BSS_SHORT_SLOT_TIME,

+ NL80211_ATTR_VIF_DROP_UNENCRYPTED,
+ NL80211_ATTR_VIF_USERSPACE_MLME,
+
/* add attributes here, update the policy in nl80211.c */

__NL80211_ATTR_AFTER_LAST,
Index: wireless-testing/net/wireless/nl80211.c
===================================================================
--- wireless-testing.orig/net/wireless/nl80211.c
+++ wireless-testing/net/wireless/nl80211.c
@@ -91,6 +91,9 @@ static struct nla_policy nl80211_policy[
[NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 },
[NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 },
[NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 },
+
+ [NL80211_ATTR_VIF_DROP_UNENCRYPTED] = { .type = NLA_U8 },
+ [NL80211_ATTR_VIF_USERSPACE_MLME] = { .type = NLA_U8 },
};

/* message building helper */
@@ -1571,6 +1574,44 @@ static int nl80211_set_bss(struct sk_buf
return err;
}

+static int nl80211_set_vif(struct sk_buff *skb, struct genl_info *info)
+{
+ struct cfg80211_registered_device *drv;
+ int err;
+ struct net_device *dev;
+ struct vif_parameters params;
+
+ memset(&params, 0, sizeof(params));
+ /* default to not changing parameters */
+ params.drop_unencrypted = -1;
+ params.userspace_mlme = -1;
+
+ if (info->attrs[NL80211_ATTR_VIF_DROP_UNENCRYPTED])
+ params.drop_unencrypted =
+ nla_get_u8(info->attrs[NL80211_ATTR_VIF_DROP_UNENCRYPTED]);
+ if (info->attrs[NL80211_ATTR_VIF_USERSPACE_MLME])
+ params.userspace_mlme =
+ nla_get_u8(info->attrs[NL80211_ATTR_VIF_USERSPACE_MLME]);
+
+ err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev);
+ if (err)
+ return err;
+
+ if (!drv->ops->change_vif) {
+ err = -EOPNOTSUPP;
+ goto out;
+ }
+
+ rtnl_lock();
+ err = drv->ops->change_vif(&drv->wiphy, dev, &params);
+ rtnl_unlock();
+
+ out:
+ cfg80211_put_dev(drv);
+ dev_put(dev);
+ return err;
+}
+
static struct genl_ops nl80211_ops[] = {
{
.cmd = NL80211_CMD_GET_WIPHY,
@@ -1708,6 +1749,12 @@ static struct genl_ops nl80211_ops[] = {
.policy = nl80211_policy,
.flags = GENL_ADMIN_PERM,
},
+ {
+ .cmd = NL80211_CMD_SET_VIF,
+ .doit = nl80211_set_vif,
+ .policy = nl80211_policy,
+ .flags = GENL_ADMIN_PERM,
+ },
};

/* multicast groups */


--
Jouni Malinen PGP id EFC895FA


2008-08-19 13:55:35

by Johannes Berg

[permalink] [raw]
Subject: Re: [PATCH] mac80211/cfg80211: Add vif configuration options

On Mon, 2008-08-18 at 22:10 +0300, Jouni Malinen wrote:

> + * @drop_unencrypted: Whether to drop unencrypted frames
> + * (0 = no, 1 = yes, -1 = do not change)

Should that be part of some encryption settings instead? Not really
sure.

> + * @userspace_mlme: Whether to use userspace MLME
> + * (0 = no, 1 = yes, -1 = do not change)

I don't really like this much, it feels like a specific hack to get
wpa_supplicant and mac80211 play together, rather than an API to do this
generically.

What I've been thinking and talking about for quite a long time is to
make cfg80211 more agnostic as to where the MLME lives, and let nl80211
still be able to configure the interface when a userspace MLME is
active. That way, all tools could continue to work regardless of where
the MLME is.

That would, of course, require to finally put wext into cfg80211, make
the wext code capable of sending nl80211 messages to the userspace MLME
and also have nl80211 divert messages to the MLME back to the userspace
MLME unless they are coming from the userspace MLME.

Ultimately, that would allow the userspace MLME to have much more
control while users are still able to use the regular tools for many
things.

Unless, of course, those guys really put d-bus into the kernel and we
can just have the MLME service for a specific interface bound
anywhere...

johannes


Attachments:
signature.asc (836.00 B)
This is a digitally signed message part