| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1 | /* | 
|  | 2 | * This is the new netlink-based wireless configuration interface. | 
|  | 3 | * | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 4 | * Copyright 2006-2010	Johannes Berg <johannes@sipsolutions.net> | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 5 | */ | 
|  | 6 |  | 
|  | 7 | #include <linux/if.h> | 
|  | 8 | #include <linux/module.h> | 
|  | 9 | #include <linux/err.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 10 | #include <linux/slab.h> | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 11 | #include <linux/list.h> | 
|  | 12 | #include <linux/if_ether.h> | 
|  | 13 | #include <linux/ieee80211.h> | 
|  | 14 | #include <linux/nl80211.h> | 
|  | 15 | #include <linux/rtnetlink.h> | 
|  | 16 | #include <linux/netlink.h> | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 17 | #include <linux/etherdevice.h> | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 18 | #include <net/net_namespace.h> | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 19 | #include <net/genetlink.h> | 
|  | 20 | #include <net/cfg80211.h> | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 21 | #include <net/sock.h> | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 22 | #include "core.h" | 
|  | 23 | #include "nl80211.h" | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 24 | #include "reg.h" | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 25 |  | 
| Jouni Malinen | 5fb628e | 2011-08-10 23:54:35 +0300 | [diff] [blame] | 26 | static bool nl80211_valid_auth_type(enum nl80211_auth_type auth_type); | 
|  | 27 | static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev, | 
|  | 28 | struct genl_info *info, | 
|  | 29 | struct cfg80211_crypto_settings *settings, | 
|  | 30 | int cipher_limit); | 
|  | 31 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 32 | static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb, | 
|  | 33 | struct genl_info *info); | 
|  | 34 | static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb, | 
|  | 35 | struct genl_info *info); | 
|  | 36 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 37 | /* the netlink family */ | 
|  | 38 | static struct genl_family nl80211_fam = { | 
|  | 39 | .id = GENL_ID_GENERATE,	/* don't bother with a hardcoded ID */ | 
|  | 40 | .name = "nl80211",	/* have users key off the name instead */ | 
|  | 41 | .hdrsize = 0,		/* no private header */ | 
|  | 42 | .version = 1,		/* no particular meaning now */ | 
|  | 43 | .maxattr = NL80211_ATTR_MAX, | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 44 | .netnsok = true, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 45 | .pre_doit = nl80211_pre_doit, | 
|  | 46 | .post_doit = nl80211_post_doit, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 47 | }; | 
|  | 48 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 49 | /* returns ERR_PTR values */ | 
|  | 50 | static struct wireless_dev * | 
|  | 51 | __cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs) | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 52 | { | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 53 | struct cfg80211_registered_device *rdev; | 
|  | 54 | struct wireless_dev *result = NULL; | 
|  | 55 | bool have_ifidx = attrs[NL80211_ATTR_IFINDEX]; | 
|  | 56 | bool have_wdev_id = attrs[NL80211_ATTR_WDEV]; | 
|  | 57 | u64 wdev_id; | 
|  | 58 | int wiphy_idx = -1; | 
|  | 59 | int ifidx = -1; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 60 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 61 | assert_cfg80211_lock(); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 62 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 63 | if (!have_ifidx && !have_wdev_id) | 
|  | 64 | return ERR_PTR(-EINVAL); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 65 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 66 | if (have_ifidx) | 
|  | 67 | ifidx = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]); | 
|  | 68 | if (have_wdev_id) { | 
|  | 69 | wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]); | 
|  | 70 | wiphy_idx = wdev_id >> 32; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 71 | } | 
|  | 72 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 73 | list_for_each_entry(rdev, &cfg80211_rdev_list, list) { | 
|  | 74 | struct wireless_dev *wdev; | 
|  | 75 |  | 
|  | 76 | if (wiphy_net(&rdev->wiphy) != netns) | 
|  | 77 | continue; | 
|  | 78 |  | 
|  | 79 | if (have_wdev_id && rdev->wiphy_idx != wiphy_idx) | 
|  | 80 | continue; | 
|  | 81 |  | 
|  | 82 | mutex_lock(&rdev->devlist_mtx); | 
|  | 83 | list_for_each_entry(wdev, &rdev->wdev_list, list) { | 
|  | 84 | if (have_ifidx && wdev->netdev && | 
|  | 85 | wdev->netdev->ifindex == ifidx) { | 
|  | 86 | result = wdev; | 
|  | 87 | break; | 
|  | 88 | } | 
|  | 89 | if (have_wdev_id && wdev->identifier == (u32)wdev_id) { | 
|  | 90 | result = wdev; | 
|  | 91 | break; | 
|  | 92 | } | 
|  | 93 | } | 
|  | 94 | mutex_unlock(&rdev->devlist_mtx); | 
|  | 95 |  | 
|  | 96 | if (result) | 
|  | 97 | break; | 
|  | 98 | } | 
|  | 99 |  | 
|  | 100 | if (result) | 
|  | 101 | return result; | 
|  | 102 | return ERR_PTR(-ENODEV); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 103 | } | 
|  | 104 |  | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 105 | static struct cfg80211_registered_device * | 
| Johannes Berg | 878d9ec | 2012-06-15 14:18:32 +0200 | [diff] [blame] | 106 | __cfg80211_rdev_from_attrs(struct net *netns, struct nlattr **attrs) | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 107 | { | 
| Johannes Berg | 7fee477 | 2012-06-15 14:09:58 +0200 | [diff] [blame] | 108 | struct cfg80211_registered_device *rdev = NULL, *tmp; | 
|  | 109 | struct net_device *netdev; | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 110 |  | 
|  | 111 | assert_cfg80211_lock(); | 
|  | 112 |  | 
| Johannes Berg | 878d9ec | 2012-06-15 14:18:32 +0200 | [diff] [blame] | 113 | if (!attrs[NL80211_ATTR_WIPHY] && | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 114 | !attrs[NL80211_ATTR_IFINDEX] && | 
|  | 115 | !attrs[NL80211_ATTR_WDEV]) | 
| Johannes Berg | 7fee477 | 2012-06-15 14:09:58 +0200 | [diff] [blame] | 116 | return ERR_PTR(-EINVAL); | 
|  | 117 |  | 
| Johannes Berg | 878d9ec | 2012-06-15 14:18:32 +0200 | [diff] [blame] | 118 | if (attrs[NL80211_ATTR_WIPHY]) | 
| Johannes Berg | 7fee477 | 2012-06-15 14:09:58 +0200 | [diff] [blame] | 119 | rdev = cfg80211_rdev_by_wiphy_idx( | 
| Johannes Berg | 878d9ec | 2012-06-15 14:18:32 +0200 | [diff] [blame] | 120 | nla_get_u32(attrs[NL80211_ATTR_WIPHY])); | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 121 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 122 | if (attrs[NL80211_ATTR_WDEV]) { | 
|  | 123 | u64 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]); | 
|  | 124 | struct wireless_dev *wdev; | 
|  | 125 | bool found = false; | 
|  | 126 |  | 
|  | 127 | tmp = cfg80211_rdev_by_wiphy_idx(wdev_id >> 32); | 
|  | 128 | if (tmp) { | 
|  | 129 | /* make sure wdev exists */ | 
|  | 130 | mutex_lock(&tmp->devlist_mtx); | 
|  | 131 | list_for_each_entry(wdev, &tmp->wdev_list, list) { | 
|  | 132 | if (wdev->identifier != (u32)wdev_id) | 
|  | 133 | continue; | 
|  | 134 | found = true; | 
|  | 135 | break; | 
|  | 136 | } | 
|  | 137 | mutex_unlock(&tmp->devlist_mtx); | 
|  | 138 |  | 
|  | 139 | if (!found) | 
|  | 140 | tmp = NULL; | 
|  | 141 |  | 
|  | 142 | if (rdev && tmp != rdev) | 
|  | 143 | return ERR_PTR(-EINVAL); | 
|  | 144 | rdev = tmp; | 
|  | 145 | } | 
|  | 146 | } | 
|  | 147 |  | 
| Johannes Berg | 878d9ec | 2012-06-15 14:18:32 +0200 | [diff] [blame] | 148 | if (attrs[NL80211_ATTR_IFINDEX]) { | 
|  | 149 | int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]); | 
| Johannes Berg | 4f7eff1 | 2012-06-15 14:14:22 +0200 | [diff] [blame] | 150 | netdev = dev_get_by_index(netns, ifindex); | 
| Johannes Berg | 7fee477 | 2012-06-15 14:09:58 +0200 | [diff] [blame] | 151 | if (netdev) { | 
|  | 152 | if (netdev->ieee80211_ptr) | 
|  | 153 | tmp = wiphy_to_dev( | 
|  | 154 | netdev->ieee80211_ptr->wiphy); | 
|  | 155 | else | 
|  | 156 | tmp = NULL; | 
|  | 157 |  | 
|  | 158 | dev_put(netdev); | 
|  | 159 |  | 
|  | 160 | /* not wireless device -- return error */ | 
|  | 161 | if (!tmp) | 
|  | 162 | return ERR_PTR(-EINVAL); | 
|  | 163 |  | 
|  | 164 | /* mismatch -- return error */ | 
|  | 165 | if (rdev && tmp != rdev) | 
|  | 166 | return ERR_PTR(-EINVAL); | 
|  | 167 |  | 
|  | 168 | rdev = tmp; | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 169 | } | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 170 | } | 
|  | 171 |  | 
| Johannes Berg | 4f7eff1 | 2012-06-15 14:14:22 +0200 | [diff] [blame] | 172 | if (!rdev) | 
|  | 173 | return ERR_PTR(-ENODEV); | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 174 |  | 
| Johannes Berg | 4f7eff1 | 2012-06-15 14:14:22 +0200 | [diff] [blame] | 175 | if (netns != wiphy_net(&rdev->wiphy)) | 
|  | 176 | return ERR_PTR(-ENODEV); | 
|  | 177 |  | 
|  | 178 | return rdev; | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 179 | } | 
|  | 180 |  | 
|  | 181 | /* | 
|  | 182 | * This function returns a pointer to the driver | 
|  | 183 | * that the genl_info item that is passed refers to. | 
|  | 184 | * If successful, it returns non-NULL and also locks | 
|  | 185 | * the driver's mutex! | 
|  | 186 | * | 
|  | 187 | * This means that you need to call cfg80211_unlock_rdev() | 
|  | 188 | * before being allowed to acquire &cfg80211_mutex! | 
|  | 189 | * | 
|  | 190 | * This is necessary because we need to lock the global | 
|  | 191 | * mutex to get an item off the list safely, and then | 
|  | 192 | * we lock the rdev mutex so it doesn't go away under us. | 
|  | 193 | * | 
|  | 194 | * We don't want to keep cfg80211_mutex locked | 
|  | 195 | * for all the time in order to allow requests on | 
|  | 196 | * other interfaces to go through at the same time. | 
|  | 197 | * | 
|  | 198 | * The result of this can be a PTR_ERR and hence must | 
|  | 199 | * be checked with IS_ERR() for errors. | 
|  | 200 | */ | 
|  | 201 | static struct cfg80211_registered_device * | 
| Johannes Berg | 4f7eff1 | 2012-06-15 14:14:22 +0200 | [diff] [blame] | 202 | cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info) | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 203 | { | 
|  | 204 | struct cfg80211_registered_device *rdev; | 
|  | 205 |  | 
|  | 206 | mutex_lock(&cfg80211_mutex); | 
| Johannes Berg | 878d9ec | 2012-06-15 14:18:32 +0200 | [diff] [blame] | 207 | rdev = __cfg80211_rdev_from_attrs(netns, info->attrs); | 
| Johannes Berg | a945540 | 2012-06-15 13:32:49 +0200 | [diff] [blame] | 208 |  | 
|  | 209 | /* if it is not an error we grab the lock on | 
|  | 210 | * it to assure it won't be going away while | 
|  | 211 | * we operate on it */ | 
|  | 212 | if (!IS_ERR(rdev)) | 
|  | 213 | mutex_lock(&rdev->mtx); | 
|  | 214 |  | 
|  | 215 | mutex_unlock(&cfg80211_mutex); | 
|  | 216 |  | 
|  | 217 | return rdev; | 
|  | 218 | } | 
|  | 219 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 220 | /* policy for the attributes */ | 
| Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 221 | static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = { | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 222 | [NL80211_ATTR_WIPHY] = { .type = NLA_U32 }, | 
|  | 223 | [NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING, | 
| David S. Miller | 079e24e | 2009-05-26 21:15:00 -0700 | [diff] [blame] | 224 | .len = 20-1 }, | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 225 | [NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED }, | 
| Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 226 | [NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 }, | 
| Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 227 | [NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 }, | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 228 | [NL80211_ATTR_WIPHY_RETRY_SHORT] = { .type = NLA_U8 }, | 
|  | 229 | [NL80211_ATTR_WIPHY_RETRY_LONG] = { .type = NLA_U8 }, | 
|  | 230 | [NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 }, | 
|  | 231 | [NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 }, | 
| Lukáš Turek | 81077e8 | 2009-12-21 22:50:47 +0100 | [diff] [blame] | 232 | [NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 }, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 233 |  | 
|  | 234 | [NL80211_ATTR_IFTYPE] = { .type = NLA_U32 }, | 
|  | 235 | [NL80211_ATTR_IFINDEX] = { .type = NLA_U32 }, | 
|  | 236 | [NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 }, | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 237 |  | 
| Eliad Peller | e007b85 | 2011-11-24 18:13:56 +0200 | [diff] [blame] | 238 | [NL80211_ATTR_MAC] = { .len = ETH_ALEN }, | 
|  | 239 | [NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN }, | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 240 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 241 | [NL80211_ATTR_KEY] = { .type = NLA_NESTED, }, | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 242 | [NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY, | 
|  | 243 | .len = WLAN_MAX_KEY_LEN }, | 
|  | 244 | [NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 }, | 
|  | 245 | [NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 }, | 
|  | 246 | [NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG }, | 
| Jouni Malinen | 8196226 | 2011-11-02 23:36:31 +0200 | [diff] [blame] | 247 | [NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 }, | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 248 | [NL80211_ATTR_KEY_TYPE] = { .type = NLA_U32 }, | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 249 |  | 
|  | 250 | [NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 }, | 
|  | 251 | [NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 }, | 
|  | 252 | [NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY, | 
|  | 253 | .len = IEEE80211_MAX_DATA_LEN }, | 
|  | 254 | [NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY, | 
|  | 255 | .len = IEEE80211_MAX_DATA_LEN }, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 256 | [NL80211_ATTR_STA_AID] = { .type = NLA_U16 }, | 
|  | 257 | [NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED }, | 
|  | 258 | [NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 }, | 
|  | 259 | [NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY, | 
|  | 260 | .len = NL80211_MAX_SUPP_RATES }, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 261 | [NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 }, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 262 | [NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 }, | 
| Johannes Berg | 0a9542e | 2008-10-15 11:54:04 +0200 | [diff] [blame] | 263 | [NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ }, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 264 | [NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 265 | .len = IEEE80211_MAX_MESH_ID_LEN }, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 266 | [NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 }, | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 267 |  | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 268 | [NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 }, | 
|  | 269 | [NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED }, | 
|  | 270 |  | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 271 | [NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 }, | 
|  | 272 | [NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 }, | 
|  | 273 | [NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 }, | 
| Jouni Malinen | 90c97a0 | 2008-10-30 16:59:22 +0200 | [diff] [blame] | 274 | [NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY, | 
|  | 275 | .len = NL80211_MAX_SUPP_RATES }, | 
| Helmut Schaa | 50b12f5 | 2010-11-19 12:40:25 +0100 | [diff] [blame] | 276 | [NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 }, | 
| Jouni Malinen | 36aedc9 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 277 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 278 | [NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED }, | 
| Javier Cardona | 15d5dda | 2011-04-07 15:08:28 -0700 | [diff] [blame] | 279 | [NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG }, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 280 |  | 
| Johannes Berg | 6c73941 | 2011-11-03 09:27:01 +0100 | [diff] [blame] | 281 | [NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN }, | 
| Jouni Malinen | 9aed3cc | 2009-01-13 16:03:29 +0200 | [diff] [blame] | 282 |  | 
|  | 283 | [NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 }, | 
|  | 284 | [NL80211_ATTR_IE] = { .type = NLA_BINARY, | 
|  | 285 | .len = IEEE80211_MAX_DATA_LEN }, | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 286 | [NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED }, | 
|  | 287 | [NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED }, | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 288 |  | 
|  | 289 | [NL80211_ATTR_SSID] = { .type = NLA_BINARY, | 
|  | 290 | .len = IEEE80211_MAX_SSID_LEN }, | 
|  | 291 | [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 }, | 
|  | 292 | [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 }, | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 293 | [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG }, | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 294 | [NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG }, | 
| Jouni Malinen | dc6382c | 2009-05-06 22:09:37 +0300 | [diff] [blame] | 295 | [NL80211_ATTR_USE_MFP] = { .type = NLA_U32 }, | 
| Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 296 | [NL80211_ATTR_STA_FLAGS2] = { | 
|  | 297 | .len = sizeof(struct nl80211_sta_flag_update), | 
|  | 298 | }, | 
| Jouni Malinen | 3f77316c | 2009-05-11 21:57:57 +0300 | [diff] [blame] | 299 | [NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG }, | 
| Johannes Berg | c0692b8 | 2010-08-27 14:26:53 +0300 | [diff] [blame] | 300 | [NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 }, | 
|  | 301 | [NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG }, | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 302 | [NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG }, | 
|  | 303 | [NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 }, | 
|  | 304 | [NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 }, | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 305 | [NL80211_ATTR_PID] = { .type = NLA_U32 }, | 
| Felix Fietkau | 8b78764 | 2009-11-10 18:53:10 +0100 | [diff] [blame] | 306 | [NL80211_ATTR_4ADDR] = { .type = NLA_U8 }, | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 307 | [NL80211_ATTR_PMKID] = { .type = NLA_BINARY, | 
|  | 308 | .len = WLAN_PMKID_LEN }, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 309 | [NL80211_ATTR_DURATION] = { .type = NLA_U32 }, | 
|  | 310 | [NL80211_ATTR_COOKIE] = { .type = NLA_U64 }, | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 311 | [NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED }, | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 312 | [NL80211_ATTR_FRAME] = { .type = NLA_BINARY, | 
|  | 313 | .len = IEEE80211_MAX_DATA_LEN }, | 
|  | 314 | [NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, }, | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 315 | [NL80211_ATTR_PS_STATE] = { .type = NLA_U32 }, | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 316 | [NL80211_ATTR_CQM] = { .type = NLA_NESTED, }, | 
| Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 317 | [NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG }, | 
| Felix Fietkau | fd8aaaf | 2010-04-27 01:23:35 +0200 | [diff] [blame] | 318 | [NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 }, | 
| Juuso Oikarinen | 98d2ff8 | 2010-06-23 12:12:38 +0300 | [diff] [blame] | 319 | [NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 }, | 
|  | 320 | [NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 }, | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 321 | [NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 }, | 
| Bruno Randolf | afe0cbf | 2010-11-10 12:50:50 +0900 | [diff] [blame] | 322 | [NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 }, | 
|  | 323 | [NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 }, | 
| Felix Fietkau | 885a46d | 2010-11-11 15:07:22 +0100 | [diff] [blame] | 324 | [NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 }, | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 325 | [NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG }, | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 326 | [NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED }, | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 327 | [NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED }, | 
| Javier Cardona | 9c3990a | 2011-05-03 16:57:11 -0700 | [diff] [blame] | 328 | [NL80211_ATTR_STA_PLINK_STATE] = { .type = NLA_U8 }, | 
| Luciano Coelho | bbe6ad6 | 2011-05-11 17:09:37 +0300 | [diff] [blame] | 329 | [NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 }, | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 330 | [NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED }, | 
| Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 331 | [NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED }, | 
| Jouni Malinen | 32e9de8 | 2011-08-10 23:53:31 +0300 | [diff] [blame] | 332 | [NL80211_ATTR_HIDDEN_SSID] = { .type = NLA_U32 }, | 
| Jouni Malinen | 9946ecf | 2011-08-10 23:55:56 +0300 | [diff] [blame] | 333 | [NL80211_ATTR_IE_PROBE_RESP] = { .type = NLA_BINARY, | 
|  | 334 | .len = IEEE80211_MAX_DATA_LEN }, | 
|  | 335 | [NL80211_ATTR_IE_ASSOC_RESP] = { .type = NLA_BINARY, | 
|  | 336 | .len = IEEE80211_MAX_DATA_LEN }, | 
| Vivek Natarajan | f4b34b5 | 2011-08-29 14:23:03 +0530 | [diff] [blame] | 337 | [NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG }, | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 338 | [NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED }, | 
| Rajkumar Manoharan | e9f935e | 2011-09-25 14:53:30 +0530 | [diff] [blame] | 339 | [NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG }, | 
| Arik Nemtsov | 109086c | 2011-09-28 14:12:50 +0300 | [diff] [blame] | 340 | [NL80211_ATTR_TDLS_ACTION] = { .type = NLA_U8 }, | 
|  | 341 | [NL80211_ATTR_TDLS_DIALOG_TOKEN] = { .type = NLA_U8 }, | 
|  | 342 | [NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 }, | 
|  | 343 | [NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG }, | 
|  | 344 | [NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG }, | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 345 | [NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG }, | 
| Arik Nemtsov | 00f740e | 2011-11-10 11:28:56 +0200 | [diff] [blame] | 346 | [NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY, | 
|  | 347 | .len = IEEE80211_MAX_DATA_LEN }, | 
| Luis R. Rodriguez | 8b60b07 | 2011-10-11 10:59:02 -0700 | [diff] [blame] | 348 | [NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 }, | 
| Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 349 | [NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG }, | 
|  | 350 | [NL80211_ATTR_HT_CAPABILITY_MASK] = { | 
|  | 351 | .len = NL80211_HT_CAPABILITY_LEN | 
|  | 352 | }, | 
| Simon Wunderlich | 1d9d921 | 2011-11-18 14:20:43 +0100 | [diff] [blame] | 353 | [NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 }, | 
| Vasanthakumar Thiagarajan | 1b658f1 | 2012-03-02 15:50:02 +0530 | [diff] [blame] | 354 | [NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 }, | 
| Bala Shanmugam | 4486ea9 | 2012-03-07 17:27:12 +0530 | [diff] [blame] | 355 | [NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 }, | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 356 | [NL80211_ATTR_WDEV] = { .type = NLA_U64 }, | 
| Luis R. Rodriguez | 57b5ce0 | 2012-07-12 11:49:18 -0700 | [diff] [blame] | 357 | [NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 }, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 358 | }; | 
|  | 359 |  | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 360 | /* policy for the key attributes */ | 
| Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 361 | static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = { | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 362 | [NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN }, | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 363 | [NL80211_KEY_IDX] = { .type = NLA_U8 }, | 
|  | 364 | [NL80211_KEY_CIPHER] = { .type = NLA_U32 }, | 
| Jouni Malinen | 8196226 | 2011-11-02 23:36:31 +0200 | [diff] [blame] | 365 | [NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 }, | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 366 | [NL80211_KEY_DEFAULT] = { .type = NLA_FLAG }, | 
|  | 367 | [NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG }, | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 368 | [NL80211_KEY_TYPE] = { .type = NLA_U32 }, | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 369 | [NL80211_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED }, | 
|  | 370 | }; | 
|  | 371 |  | 
|  | 372 | /* policy for the key default flags */ | 
|  | 373 | static const struct nla_policy | 
|  | 374 | nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = { | 
|  | 375 | [NL80211_KEY_DEFAULT_TYPE_UNICAST] = { .type = NLA_FLAG }, | 
|  | 376 | [NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG }, | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 377 | }; | 
|  | 378 |  | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 379 | /* policy for WoWLAN attributes */ | 
|  | 380 | static const struct nla_policy | 
|  | 381 | nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = { | 
|  | 382 | [NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG }, | 
|  | 383 | [NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG }, | 
|  | 384 | [NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG }, | 
|  | 385 | [NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .type = NLA_NESTED }, | 
| Johannes Berg | 77dbbb13 | 2011-07-13 10:48:55 +0200 | [diff] [blame] | 386 | [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG }, | 
|  | 387 | [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG }, | 
|  | 388 | [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG }, | 
|  | 389 | [NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG }, | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 390 | }; | 
|  | 391 |  | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 392 | /* policy for GTK rekey offload attributes */ | 
|  | 393 | static const struct nla_policy | 
|  | 394 | nl80211_rekey_policy[NUM_NL80211_REKEY_DATA] = { | 
|  | 395 | [NL80211_REKEY_DATA_KEK] = { .len = NL80211_KEK_LEN }, | 
|  | 396 | [NL80211_REKEY_DATA_KCK] = { .len = NL80211_KCK_LEN }, | 
|  | 397 | [NL80211_REKEY_DATA_REPLAY_CTR] = { .len = NL80211_REPLAY_CTR_LEN }, | 
|  | 398 | }; | 
|  | 399 |  | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 400 | static const struct nla_policy | 
|  | 401 | nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = { | 
| Johannes Berg | 4a4ab0d | 2012-06-13 11:17:11 +0200 | [diff] [blame] | 402 | [NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY, | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 403 | .len = IEEE80211_MAX_SSID_LEN }, | 
| Thomas Pedersen | 88e920b | 2012-06-21 11:09:54 -0700 | [diff] [blame] | 404 | [NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 }, | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 405 | }; | 
|  | 406 |  | 
| Holger Schurig | a043897 | 2009-11-11 11:30:02 +0100 | [diff] [blame] | 407 | /* ifidx get helper */ | 
|  | 408 | static int nl80211_get_ifidx(struct netlink_callback *cb) | 
|  | 409 | { | 
|  | 410 | int res; | 
|  | 411 |  | 
|  | 412 | res = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize, | 
|  | 413 | nl80211_fam.attrbuf, nl80211_fam.maxattr, | 
|  | 414 | nl80211_policy); | 
|  | 415 | if (res) | 
|  | 416 | return res; | 
|  | 417 |  | 
|  | 418 | if (!nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]) | 
|  | 419 | return -EINVAL; | 
|  | 420 |  | 
|  | 421 | res = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]); | 
|  | 422 | if (!res) | 
|  | 423 | return -EINVAL; | 
|  | 424 | return res; | 
|  | 425 | } | 
|  | 426 |  | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 427 | static int nl80211_prepare_netdev_dump(struct sk_buff *skb, | 
|  | 428 | struct netlink_callback *cb, | 
|  | 429 | struct cfg80211_registered_device **rdev, | 
|  | 430 | struct net_device **dev) | 
|  | 431 | { | 
|  | 432 | int ifidx = cb->args[0]; | 
|  | 433 | int err; | 
|  | 434 |  | 
|  | 435 | if (!ifidx) | 
|  | 436 | ifidx = nl80211_get_ifidx(cb); | 
|  | 437 | if (ifidx < 0) | 
|  | 438 | return ifidx; | 
|  | 439 |  | 
|  | 440 | cb->args[0] = ifidx; | 
|  | 441 |  | 
|  | 442 | rtnl_lock(); | 
|  | 443 |  | 
|  | 444 | *dev = __dev_get_by_index(sock_net(skb->sk), ifidx); | 
|  | 445 | if (!*dev) { | 
|  | 446 | err = -ENODEV; | 
|  | 447 | goto out_rtnl; | 
|  | 448 | } | 
|  | 449 |  | 
|  | 450 | *rdev = cfg80211_get_dev_from_ifindex(sock_net(skb->sk), ifidx); | 
| Felix Fietkau | 3cc25e5 | 2010-10-31 15:31:54 +0100 | [diff] [blame] | 451 | if (IS_ERR(*rdev)) { | 
|  | 452 | err = PTR_ERR(*rdev); | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 453 | goto out_rtnl; | 
|  | 454 | } | 
|  | 455 |  | 
|  | 456 | return 0; | 
|  | 457 | out_rtnl: | 
|  | 458 | rtnl_unlock(); | 
|  | 459 | return err; | 
|  | 460 | } | 
|  | 461 |  | 
|  | 462 | static void nl80211_finish_netdev_dump(struct cfg80211_registered_device *rdev) | 
|  | 463 | { | 
|  | 464 | cfg80211_unlock_rdev(rdev); | 
|  | 465 | rtnl_unlock(); | 
|  | 466 | } | 
|  | 467 |  | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 468 | /* IE validation */ | 
|  | 469 | static bool is_valid_ie_attr(const struct nlattr *attr) | 
|  | 470 | { | 
|  | 471 | const u8 *pos; | 
|  | 472 | int len; | 
|  | 473 |  | 
|  | 474 | if (!attr) | 
|  | 475 | return true; | 
|  | 476 |  | 
|  | 477 | pos = nla_data(attr); | 
|  | 478 | len = nla_len(attr); | 
|  | 479 |  | 
|  | 480 | while (len) { | 
|  | 481 | u8 elemlen; | 
|  | 482 |  | 
|  | 483 | if (len < 2) | 
|  | 484 | return false; | 
|  | 485 | len -= 2; | 
|  | 486 |  | 
|  | 487 | elemlen = pos[1]; | 
|  | 488 | if (elemlen > len) | 
|  | 489 | return false; | 
|  | 490 |  | 
|  | 491 | len -= elemlen; | 
|  | 492 | pos += 2 + elemlen; | 
|  | 493 | } | 
|  | 494 |  | 
|  | 495 | return true; | 
|  | 496 | } | 
|  | 497 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 498 | /* message building helper */ | 
|  | 499 | static inline void *nl80211hdr_put(struct sk_buff *skb, u32 pid, u32 seq, | 
|  | 500 | int flags, u8 cmd) | 
|  | 501 | { | 
|  | 502 | /* since there is no private header just add the generic one */ | 
|  | 503 | return genlmsg_put(skb, pid, seq, &nl80211_fam, flags, cmd); | 
|  | 504 | } | 
|  | 505 |  | 
| Luis R. Rodriguez | 5dab3b8 | 2009-04-02 14:08:08 -0400 | [diff] [blame] | 506 | static int nl80211_msg_put_channel(struct sk_buff *msg, | 
|  | 507 | struct ieee80211_channel *chan) | 
|  | 508 | { | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 509 | if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ, | 
|  | 510 | chan->center_freq)) | 
|  | 511 | goto nla_put_failure; | 
| Luis R. Rodriguez | 5dab3b8 | 2009-04-02 14:08:08 -0400 | [diff] [blame] | 512 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 513 | if ((chan->flags & IEEE80211_CHAN_DISABLED) && | 
|  | 514 | nla_put_flag(msg, NL80211_FREQUENCY_ATTR_DISABLED)) | 
|  | 515 | goto nla_put_failure; | 
|  | 516 | if ((chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) && | 
|  | 517 | nla_put_flag(msg, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN)) | 
|  | 518 | goto nla_put_failure; | 
|  | 519 | if ((chan->flags & IEEE80211_CHAN_NO_IBSS) && | 
|  | 520 | nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IBSS)) | 
|  | 521 | goto nla_put_failure; | 
|  | 522 | if ((chan->flags & IEEE80211_CHAN_RADAR) && | 
|  | 523 | nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR)) | 
|  | 524 | goto nla_put_failure; | 
| Luis R. Rodriguez | 5dab3b8 | 2009-04-02 14:08:08 -0400 | [diff] [blame] | 525 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 526 | if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER, | 
|  | 527 | DBM_TO_MBM(chan->max_power))) | 
|  | 528 | goto nla_put_failure; | 
| Luis R. Rodriguez | 5dab3b8 | 2009-04-02 14:08:08 -0400 | [diff] [blame] | 529 |  | 
|  | 530 | return 0; | 
|  | 531 |  | 
|  | 532 | nla_put_failure: | 
|  | 533 | return -ENOBUFS; | 
|  | 534 | } | 
|  | 535 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 536 | /* netlink command implementations */ | 
|  | 537 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 538 | struct key_parse { | 
|  | 539 | struct key_params p; | 
|  | 540 | int idx; | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 541 | int type; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 542 | bool def, defmgmt; | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 543 | bool def_uni, def_multi; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 544 | }; | 
|  | 545 |  | 
|  | 546 | static int nl80211_parse_key_new(struct nlattr *key, struct key_parse *k) | 
|  | 547 | { | 
|  | 548 | struct nlattr *tb[NL80211_KEY_MAX + 1]; | 
|  | 549 | int err = nla_parse_nested(tb, NL80211_KEY_MAX, key, | 
|  | 550 | nl80211_key_policy); | 
|  | 551 | if (err) | 
|  | 552 | return err; | 
|  | 553 |  | 
|  | 554 | k->def = !!tb[NL80211_KEY_DEFAULT]; | 
|  | 555 | k->defmgmt = !!tb[NL80211_KEY_DEFAULT_MGMT]; | 
|  | 556 |  | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 557 | if (k->def) { | 
|  | 558 | k->def_uni = true; | 
|  | 559 | k->def_multi = true; | 
|  | 560 | } | 
|  | 561 | if (k->defmgmt) | 
|  | 562 | k->def_multi = true; | 
|  | 563 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 564 | if (tb[NL80211_KEY_IDX]) | 
|  | 565 | k->idx = nla_get_u8(tb[NL80211_KEY_IDX]); | 
|  | 566 |  | 
|  | 567 | if (tb[NL80211_KEY_DATA]) { | 
|  | 568 | k->p.key = nla_data(tb[NL80211_KEY_DATA]); | 
|  | 569 | k->p.key_len = nla_len(tb[NL80211_KEY_DATA]); | 
|  | 570 | } | 
|  | 571 |  | 
|  | 572 | if (tb[NL80211_KEY_SEQ]) { | 
|  | 573 | k->p.seq = nla_data(tb[NL80211_KEY_SEQ]); | 
|  | 574 | k->p.seq_len = nla_len(tb[NL80211_KEY_SEQ]); | 
|  | 575 | } | 
|  | 576 |  | 
|  | 577 | if (tb[NL80211_KEY_CIPHER]) | 
|  | 578 | k->p.cipher = nla_get_u32(tb[NL80211_KEY_CIPHER]); | 
|  | 579 |  | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 580 | if (tb[NL80211_KEY_TYPE]) { | 
|  | 581 | k->type = nla_get_u32(tb[NL80211_KEY_TYPE]); | 
|  | 582 | if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES) | 
|  | 583 | return -EINVAL; | 
|  | 584 | } | 
|  | 585 |  | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 586 | if (tb[NL80211_KEY_DEFAULT_TYPES]) { | 
|  | 587 | struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES]; | 
| Johannes Berg | 2da8f41 | 2012-01-20 13:52:37 +0100 | [diff] [blame] | 588 | err = nla_parse_nested(kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1, | 
|  | 589 | tb[NL80211_KEY_DEFAULT_TYPES], | 
|  | 590 | nl80211_key_default_policy); | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 591 | if (err) | 
|  | 592 | return err; | 
|  | 593 |  | 
|  | 594 | k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST]; | 
|  | 595 | k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST]; | 
|  | 596 | } | 
|  | 597 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 598 | return 0; | 
|  | 599 | } | 
|  | 600 |  | 
|  | 601 | static int nl80211_parse_key_old(struct genl_info *info, struct key_parse *k) | 
|  | 602 | { | 
|  | 603 | if (info->attrs[NL80211_ATTR_KEY_DATA]) { | 
|  | 604 | k->p.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]); | 
|  | 605 | k->p.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]); | 
|  | 606 | } | 
|  | 607 |  | 
|  | 608 | if (info->attrs[NL80211_ATTR_KEY_SEQ]) { | 
|  | 609 | k->p.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]); | 
|  | 610 | k->p.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]); | 
|  | 611 | } | 
|  | 612 |  | 
|  | 613 | if (info->attrs[NL80211_ATTR_KEY_IDX]) | 
|  | 614 | k->idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]); | 
|  | 615 |  | 
|  | 616 | if (info->attrs[NL80211_ATTR_KEY_CIPHER]) | 
|  | 617 | k->p.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]); | 
|  | 618 |  | 
|  | 619 | k->def = !!info->attrs[NL80211_ATTR_KEY_DEFAULT]; | 
|  | 620 | k->defmgmt = !!info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT]; | 
|  | 621 |  | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 622 | if (k->def) { | 
|  | 623 | k->def_uni = true; | 
|  | 624 | k->def_multi = true; | 
|  | 625 | } | 
|  | 626 | if (k->defmgmt) | 
|  | 627 | k->def_multi = true; | 
|  | 628 |  | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 629 | if (info->attrs[NL80211_ATTR_KEY_TYPE]) { | 
|  | 630 | k->type = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]); | 
|  | 631 | if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES) | 
|  | 632 | return -EINVAL; | 
|  | 633 | } | 
|  | 634 |  | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 635 | if (info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES]) { | 
|  | 636 | struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES]; | 
|  | 637 | int err = nla_parse_nested( | 
|  | 638 | kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1, | 
|  | 639 | info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES], | 
|  | 640 | nl80211_key_default_policy); | 
|  | 641 | if (err) | 
|  | 642 | return err; | 
|  | 643 |  | 
|  | 644 | k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST]; | 
|  | 645 | k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST]; | 
|  | 646 | } | 
|  | 647 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 648 | return 0; | 
|  | 649 | } | 
|  | 650 |  | 
|  | 651 | static int nl80211_parse_key(struct genl_info *info, struct key_parse *k) | 
|  | 652 | { | 
|  | 653 | int err; | 
|  | 654 |  | 
|  | 655 | memset(k, 0, sizeof(*k)); | 
|  | 656 | k->idx = -1; | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 657 | k->type = -1; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 658 |  | 
|  | 659 | if (info->attrs[NL80211_ATTR_KEY]) | 
|  | 660 | err = nl80211_parse_key_new(info->attrs[NL80211_ATTR_KEY], k); | 
|  | 661 | else | 
|  | 662 | err = nl80211_parse_key_old(info, k); | 
|  | 663 |  | 
|  | 664 | if (err) | 
|  | 665 | return err; | 
|  | 666 |  | 
|  | 667 | if (k->def && k->defmgmt) | 
|  | 668 | return -EINVAL; | 
|  | 669 |  | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 670 | if (k->defmgmt) { | 
|  | 671 | if (k->def_uni || !k->def_multi) | 
|  | 672 | return -EINVAL; | 
|  | 673 | } | 
|  | 674 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 675 | if (k->idx != -1) { | 
|  | 676 | if (k->defmgmt) { | 
|  | 677 | if (k->idx < 4 || k->idx > 5) | 
|  | 678 | return -EINVAL; | 
|  | 679 | } else if (k->def) { | 
|  | 680 | if (k->idx < 0 || k->idx > 3) | 
|  | 681 | return -EINVAL; | 
|  | 682 | } else { | 
|  | 683 | if (k->idx < 0 || k->idx > 5) | 
|  | 684 | return -EINVAL; | 
|  | 685 | } | 
|  | 686 | } | 
|  | 687 |  | 
|  | 688 | return 0; | 
|  | 689 | } | 
|  | 690 |  | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 691 | static struct cfg80211_cached_keys * | 
|  | 692 | nl80211_parse_connkeys(struct cfg80211_registered_device *rdev, | 
|  | 693 | struct nlattr *keys) | 
|  | 694 | { | 
|  | 695 | struct key_parse parse; | 
|  | 696 | struct nlattr *key; | 
|  | 697 | struct cfg80211_cached_keys *result; | 
|  | 698 | int rem, err, def = 0; | 
|  | 699 |  | 
|  | 700 | result = kzalloc(sizeof(*result), GFP_KERNEL); | 
|  | 701 | if (!result) | 
|  | 702 | return ERR_PTR(-ENOMEM); | 
|  | 703 |  | 
|  | 704 | result->def = -1; | 
|  | 705 | result->defmgmt = -1; | 
|  | 706 |  | 
|  | 707 | nla_for_each_nested(key, keys, rem) { | 
|  | 708 | memset(&parse, 0, sizeof(parse)); | 
|  | 709 | parse.idx = -1; | 
|  | 710 |  | 
|  | 711 | err = nl80211_parse_key_new(key, &parse); | 
|  | 712 | if (err) | 
|  | 713 | goto error; | 
|  | 714 | err = -EINVAL; | 
|  | 715 | if (!parse.p.key) | 
|  | 716 | goto error; | 
|  | 717 | if (parse.idx < 0 || parse.idx > 4) | 
|  | 718 | goto error; | 
|  | 719 | if (parse.def) { | 
|  | 720 | if (def) | 
|  | 721 | goto error; | 
|  | 722 | def = 1; | 
|  | 723 | result->def = parse.idx; | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 724 | if (!parse.def_uni || !parse.def_multi) | 
|  | 725 | goto error; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 726 | } else if (parse.defmgmt) | 
|  | 727 | goto error; | 
|  | 728 | err = cfg80211_validate_key_settings(rdev, &parse.p, | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 729 | parse.idx, false, NULL); | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 730 | if (err) | 
|  | 731 | goto error; | 
|  | 732 | result->params[parse.idx].cipher = parse.p.cipher; | 
|  | 733 | result->params[parse.idx].key_len = parse.p.key_len; | 
|  | 734 | result->params[parse.idx].key = result->data[parse.idx]; | 
|  | 735 | memcpy(result->data[parse.idx], parse.p.key, parse.p.key_len); | 
|  | 736 | } | 
|  | 737 |  | 
|  | 738 | return result; | 
|  | 739 | error: | 
|  | 740 | kfree(result); | 
|  | 741 | return ERR_PTR(err); | 
|  | 742 | } | 
|  | 743 |  | 
|  | 744 | static int nl80211_key_allowed(struct wireless_dev *wdev) | 
|  | 745 | { | 
|  | 746 | ASSERT_WDEV_LOCK(wdev); | 
|  | 747 |  | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 748 | switch (wdev->iftype) { | 
|  | 749 | case NL80211_IFTYPE_AP: | 
|  | 750 | case NL80211_IFTYPE_AP_VLAN: | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 751 | case NL80211_IFTYPE_P2P_GO: | 
| Thomas Pedersen | ff973af | 2011-05-03 16:57:12 -0700 | [diff] [blame] | 752 | case NL80211_IFTYPE_MESH_POINT: | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 753 | break; | 
|  | 754 | case NL80211_IFTYPE_ADHOC: | 
|  | 755 | if (!wdev->current_bss) | 
|  | 756 | return -ENOLINK; | 
|  | 757 | break; | 
|  | 758 | case NL80211_IFTYPE_STATION: | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 759 | case NL80211_IFTYPE_P2P_CLIENT: | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 760 | if (wdev->sme_state != CFG80211_SME_CONNECTED) | 
|  | 761 | return -ENOLINK; | 
|  | 762 | break; | 
|  | 763 | default: | 
|  | 764 | return -EINVAL; | 
|  | 765 | } | 
|  | 766 |  | 
|  | 767 | return 0; | 
|  | 768 | } | 
|  | 769 |  | 
| Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 770 | static int nl80211_put_iftypes(struct sk_buff *msg, u32 attr, u16 ifmodes) | 
|  | 771 | { | 
|  | 772 | struct nlattr *nl_modes = nla_nest_start(msg, attr); | 
|  | 773 | int i; | 
|  | 774 |  | 
|  | 775 | if (!nl_modes) | 
|  | 776 | goto nla_put_failure; | 
|  | 777 |  | 
|  | 778 | i = 0; | 
|  | 779 | while (ifmodes) { | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 780 | if ((ifmodes & 1) && nla_put_flag(msg, i)) | 
|  | 781 | goto nla_put_failure; | 
| Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 782 | ifmodes >>= 1; | 
|  | 783 | i++; | 
|  | 784 | } | 
|  | 785 |  | 
|  | 786 | nla_nest_end(msg, nl_modes); | 
|  | 787 | return 0; | 
|  | 788 |  | 
|  | 789 | nla_put_failure: | 
|  | 790 | return -ENOBUFS; | 
|  | 791 | } | 
|  | 792 |  | 
|  | 793 | static int nl80211_put_iface_combinations(struct wiphy *wiphy, | 
|  | 794 | struct sk_buff *msg) | 
|  | 795 | { | 
|  | 796 | struct nlattr *nl_combis; | 
|  | 797 | int i, j; | 
|  | 798 |  | 
|  | 799 | nl_combis = nla_nest_start(msg, | 
|  | 800 | NL80211_ATTR_INTERFACE_COMBINATIONS); | 
|  | 801 | if (!nl_combis) | 
|  | 802 | goto nla_put_failure; | 
|  | 803 |  | 
|  | 804 | for (i = 0; i < wiphy->n_iface_combinations; i++) { | 
|  | 805 | const struct ieee80211_iface_combination *c; | 
|  | 806 | struct nlattr *nl_combi, *nl_limits; | 
|  | 807 |  | 
|  | 808 | c = &wiphy->iface_combinations[i]; | 
|  | 809 |  | 
|  | 810 | nl_combi = nla_nest_start(msg, i + 1); | 
|  | 811 | if (!nl_combi) | 
|  | 812 | goto nla_put_failure; | 
|  | 813 |  | 
|  | 814 | nl_limits = nla_nest_start(msg, NL80211_IFACE_COMB_LIMITS); | 
|  | 815 | if (!nl_limits) | 
|  | 816 | goto nla_put_failure; | 
|  | 817 |  | 
|  | 818 | for (j = 0; j < c->n_limits; j++) { | 
|  | 819 | struct nlattr *nl_limit; | 
|  | 820 |  | 
|  | 821 | nl_limit = nla_nest_start(msg, j + 1); | 
|  | 822 | if (!nl_limit) | 
|  | 823 | goto nla_put_failure; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 824 | if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX, | 
|  | 825 | c->limits[j].max)) | 
|  | 826 | goto nla_put_failure; | 
| Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 827 | if (nl80211_put_iftypes(msg, NL80211_IFACE_LIMIT_TYPES, | 
|  | 828 | c->limits[j].types)) | 
|  | 829 | goto nla_put_failure; | 
|  | 830 | nla_nest_end(msg, nl_limit); | 
|  | 831 | } | 
|  | 832 |  | 
|  | 833 | nla_nest_end(msg, nl_limits); | 
|  | 834 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 835 | if (c->beacon_int_infra_match && | 
|  | 836 | nla_put_flag(msg, NL80211_IFACE_COMB_STA_AP_BI_MATCH)) | 
|  | 837 | goto nla_put_failure; | 
|  | 838 | if (nla_put_u32(msg, NL80211_IFACE_COMB_NUM_CHANNELS, | 
|  | 839 | c->num_different_channels) || | 
|  | 840 | nla_put_u32(msg, NL80211_IFACE_COMB_MAXNUM, | 
|  | 841 | c->max_interfaces)) | 
|  | 842 | goto nla_put_failure; | 
| Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 843 |  | 
|  | 844 | nla_nest_end(msg, nl_combi); | 
|  | 845 | } | 
|  | 846 |  | 
|  | 847 | nla_nest_end(msg, nl_combis); | 
|  | 848 |  | 
|  | 849 | return 0; | 
|  | 850 | nla_put_failure: | 
|  | 851 | return -ENOBUFS; | 
|  | 852 | } | 
|  | 853 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 854 | static int nl80211_send_wiphy(struct sk_buff *msg, u32 pid, u32 seq, int flags, | 
|  | 855 | struct cfg80211_registered_device *dev) | 
|  | 856 | { | 
|  | 857 | void *hdr; | 
| Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 858 | struct nlattr *nl_bands, *nl_band; | 
|  | 859 | struct nlattr *nl_freqs, *nl_freq; | 
|  | 860 | struct nlattr *nl_rates, *nl_rate; | 
| Johannes Berg | 8fdc621 | 2009-03-14 09:34:01 +0100 | [diff] [blame] | 861 | struct nlattr *nl_cmds; | 
| Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 862 | enum ieee80211_band band; | 
|  | 863 | struct ieee80211_channel *chan; | 
|  | 864 | struct ieee80211_rate *rate; | 
|  | 865 | int i; | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 866 | const struct ieee80211_txrx_stypes *mgmt_stypes = | 
|  | 867 | dev->wiphy.mgmt_stypes; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 868 |  | 
|  | 869 | hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_WIPHY); | 
|  | 870 | if (!hdr) | 
|  | 871 | return -1; | 
|  | 872 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 873 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, dev->wiphy_idx) || | 
|  | 874 | nla_put_string(msg, NL80211_ATTR_WIPHY_NAME, wiphy_name(&dev->wiphy)) || | 
|  | 875 | nla_put_u32(msg, NL80211_ATTR_GENERATION, | 
|  | 876 | cfg80211_rdev_list_generation) || | 
|  | 877 | nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT, | 
|  | 878 | dev->wiphy.retry_short) || | 
|  | 879 | nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_LONG, | 
|  | 880 | dev->wiphy.retry_long) || | 
|  | 881 | nla_put_u32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD, | 
|  | 882 | dev->wiphy.frag_threshold) || | 
|  | 883 | nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, | 
|  | 884 | dev->wiphy.rts_threshold) || | 
|  | 885 | nla_put_u8(msg, NL80211_ATTR_WIPHY_COVERAGE_CLASS, | 
|  | 886 | dev->wiphy.coverage_class) || | 
|  | 887 | nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS, | 
|  | 888 | dev->wiphy.max_scan_ssids) || | 
|  | 889 | nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS, | 
|  | 890 | dev->wiphy.max_sched_scan_ssids) || | 
|  | 891 | nla_put_u16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN, | 
|  | 892 | dev->wiphy.max_scan_ie_len) || | 
|  | 893 | nla_put_u16(msg, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN, | 
|  | 894 | dev->wiphy.max_sched_scan_ie_len) || | 
|  | 895 | nla_put_u8(msg, NL80211_ATTR_MAX_MATCH_SETS, | 
|  | 896 | dev->wiphy.max_match_sets)) | 
|  | 897 | goto nla_put_failure; | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 898 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 899 | if ((dev->wiphy.flags & WIPHY_FLAG_IBSS_RSN) && | 
|  | 900 | nla_put_flag(msg, NL80211_ATTR_SUPPORT_IBSS_RSN)) | 
|  | 901 | goto nla_put_failure; | 
|  | 902 | if ((dev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) && | 
|  | 903 | nla_put_flag(msg, NL80211_ATTR_SUPPORT_MESH_AUTH)) | 
|  | 904 | goto nla_put_failure; | 
|  | 905 | if ((dev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) && | 
|  | 906 | nla_put_flag(msg, NL80211_ATTR_SUPPORT_AP_UAPSD)) | 
|  | 907 | goto nla_put_failure; | 
|  | 908 | if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) && | 
|  | 909 | nla_put_flag(msg, NL80211_ATTR_ROAM_SUPPORT)) | 
|  | 910 | goto nla_put_failure; | 
|  | 911 | if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) && | 
|  | 912 | nla_put_flag(msg, NL80211_ATTR_TDLS_SUPPORT)) | 
|  | 913 | goto nla_put_failure; | 
|  | 914 | if ((dev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP) && | 
|  | 915 | nla_put_flag(msg, NL80211_ATTR_TDLS_EXTERNAL_SETUP)) | 
|  | 916 | goto nla_put_failure; | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 917 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 918 | if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES, | 
|  | 919 | sizeof(u32) * dev->wiphy.n_cipher_suites, | 
|  | 920 | dev->wiphy.cipher_suites)) | 
|  | 921 | goto nla_put_failure; | 
| Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 922 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 923 | if (nla_put_u8(msg, NL80211_ATTR_MAX_NUM_PMKIDS, | 
|  | 924 | dev->wiphy.max_num_pmkids)) | 
|  | 925 | goto nla_put_failure; | 
| Vivek Natarajan | f4b34b5 | 2011-08-29 14:23:03 +0530 | [diff] [blame] | 926 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 927 | if ((dev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) && | 
|  | 928 | nla_put_flag(msg, NL80211_ATTR_CONTROL_PORT_ETHERTYPE)) | 
|  | 929 | goto nla_put_failure; | 
| Johannes Berg | 25e47c1 | 2009-04-02 20:14:06 +0200 | [diff] [blame] | 930 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 931 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX, | 
|  | 932 | dev->wiphy.available_antennas_tx) || | 
|  | 933 | nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX, | 
|  | 934 | dev->wiphy.available_antennas_rx)) | 
|  | 935 | goto nla_put_failure; | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 936 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 937 | if ((dev->wiphy.flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) && | 
|  | 938 | nla_put_u32(msg, NL80211_ATTR_PROBE_RESP_OFFLOAD, | 
|  | 939 | dev->wiphy.probe_resp_offload)) | 
|  | 940 | goto nla_put_failure; | 
| Arik Nemtsov | 87bbbe2 | 2011-11-10 11:28:55 +0200 | [diff] [blame] | 941 |  | 
| Bruno Randolf | 7f531e0 | 2010-12-16 11:30:22 +0900 | [diff] [blame] | 942 | if ((dev->wiphy.available_antennas_tx || | 
|  | 943 | dev->wiphy.available_antennas_rx) && dev->ops->get_antenna) { | 
| Bruno Randolf | afe0cbf | 2010-11-10 12:50:50 +0900 | [diff] [blame] | 944 | u32 tx_ant = 0, rx_ant = 0; | 
|  | 945 | int res; | 
|  | 946 | res = dev->ops->get_antenna(&dev->wiphy, &tx_ant, &rx_ant); | 
|  | 947 | if (!res) { | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 948 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_TX, | 
|  | 949 | tx_ant) || | 
|  | 950 | nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_RX, | 
|  | 951 | rx_ant)) | 
|  | 952 | goto nla_put_failure; | 
| Bruno Randolf | afe0cbf | 2010-11-10 12:50:50 +0900 | [diff] [blame] | 953 | } | 
|  | 954 | } | 
|  | 955 |  | 
| Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 956 | if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES, | 
|  | 957 | dev->wiphy.interface_modes)) | 
| Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 958 | goto nla_put_failure; | 
|  | 959 |  | 
| Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 960 | nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS); | 
|  | 961 | if (!nl_bands) | 
|  | 962 | goto nla_put_failure; | 
|  | 963 |  | 
|  | 964 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | 
|  | 965 | if (!dev->wiphy.bands[band]) | 
|  | 966 | continue; | 
|  | 967 |  | 
|  | 968 | nl_band = nla_nest_start(msg, band); | 
|  | 969 | if (!nl_band) | 
|  | 970 | goto nla_put_failure; | 
|  | 971 |  | 
| Johannes Berg | d51626d | 2008-10-09 12:20:13 +0200 | [diff] [blame] | 972 | /* add HT info */ | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 973 | if (dev->wiphy.bands[band]->ht_cap.ht_supported && | 
|  | 974 | (nla_put(msg, NL80211_BAND_ATTR_HT_MCS_SET, | 
|  | 975 | sizeof(dev->wiphy.bands[band]->ht_cap.mcs), | 
|  | 976 | &dev->wiphy.bands[band]->ht_cap.mcs) || | 
|  | 977 | nla_put_u16(msg, NL80211_BAND_ATTR_HT_CAPA, | 
|  | 978 | dev->wiphy.bands[band]->ht_cap.cap) || | 
|  | 979 | nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR, | 
|  | 980 | dev->wiphy.bands[band]->ht_cap.ampdu_factor) || | 
|  | 981 | nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY, | 
|  | 982 | dev->wiphy.bands[band]->ht_cap.ampdu_density))) | 
|  | 983 | goto nla_put_failure; | 
| Johannes Berg | d51626d | 2008-10-09 12:20:13 +0200 | [diff] [blame] | 984 |  | 
| Mahesh Palivela | bf0c111e | 2012-06-22 07:27:46 +0000 | [diff] [blame] | 985 | /* add VHT info */ | 
|  | 986 | if (dev->wiphy.bands[band]->vht_cap.vht_supported && | 
|  | 987 | (nla_put(msg, NL80211_BAND_ATTR_VHT_MCS_SET, | 
|  | 988 | sizeof(dev->wiphy.bands[band]->vht_cap.vht_mcs), | 
|  | 989 | &dev->wiphy.bands[band]->vht_cap.vht_mcs) || | 
|  | 990 | nla_put_u32(msg, NL80211_BAND_ATTR_VHT_CAPA, | 
|  | 991 | dev->wiphy.bands[band]->vht_cap.cap))) | 
|  | 992 | goto nla_put_failure; | 
|  | 993 |  | 
| Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 994 | /* add frequencies */ | 
|  | 995 | nl_freqs = nla_nest_start(msg, NL80211_BAND_ATTR_FREQS); | 
|  | 996 | if (!nl_freqs) | 
|  | 997 | goto nla_put_failure; | 
|  | 998 |  | 
|  | 999 | for (i = 0; i < dev->wiphy.bands[band]->n_channels; i++) { | 
|  | 1000 | nl_freq = nla_nest_start(msg, i); | 
|  | 1001 | if (!nl_freq) | 
|  | 1002 | goto nla_put_failure; | 
|  | 1003 |  | 
|  | 1004 | chan = &dev->wiphy.bands[band]->channels[i]; | 
| Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 1005 |  | 
| Luis R. Rodriguez | 5dab3b8 | 2009-04-02 14:08:08 -0400 | [diff] [blame] | 1006 | if (nl80211_msg_put_channel(msg, chan)) | 
|  | 1007 | goto nla_put_failure; | 
| Jouni Malinen | e2f367f26 | 2008-11-21 19:01:30 +0200 | [diff] [blame] | 1008 |  | 
| Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 1009 | nla_nest_end(msg, nl_freq); | 
|  | 1010 | } | 
|  | 1011 |  | 
|  | 1012 | nla_nest_end(msg, nl_freqs); | 
|  | 1013 |  | 
|  | 1014 | /* add bitrates */ | 
|  | 1015 | nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES); | 
|  | 1016 | if (!nl_rates) | 
|  | 1017 | goto nla_put_failure; | 
|  | 1018 |  | 
|  | 1019 | for (i = 0; i < dev->wiphy.bands[band]->n_bitrates; i++) { | 
|  | 1020 | nl_rate = nla_nest_start(msg, i); | 
|  | 1021 | if (!nl_rate) | 
|  | 1022 | goto nla_put_failure; | 
|  | 1023 |  | 
|  | 1024 | rate = &dev->wiphy.bands[band]->bitrates[i]; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1025 | if (nla_put_u32(msg, NL80211_BITRATE_ATTR_RATE, | 
|  | 1026 | rate->bitrate)) | 
|  | 1027 | goto nla_put_failure; | 
|  | 1028 | if ((rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) && | 
|  | 1029 | nla_put_flag(msg, | 
|  | 1030 | NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE)) | 
|  | 1031 | goto nla_put_failure; | 
| Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 1032 |  | 
|  | 1033 | nla_nest_end(msg, nl_rate); | 
|  | 1034 | } | 
|  | 1035 |  | 
|  | 1036 | nla_nest_end(msg, nl_rates); | 
|  | 1037 |  | 
|  | 1038 | nla_nest_end(msg, nl_band); | 
|  | 1039 | } | 
|  | 1040 | nla_nest_end(msg, nl_bands); | 
|  | 1041 |  | 
| Johannes Berg | 8fdc621 | 2009-03-14 09:34:01 +0100 | [diff] [blame] | 1042 | nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS); | 
|  | 1043 | if (!nl_cmds) | 
|  | 1044 | goto nla_put_failure; | 
|  | 1045 |  | 
|  | 1046 | i = 0; | 
|  | 1047 | #define CMD(op, n)						\ | 
|  | 1048 | do {							\ | 
|  | 1049 | if (dev->ops->op) {				\ | 
|  | 1050 | i++;					\ | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1051 | if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \ | 
|  | 1052 | goto nla_put_failure;		\ | 
| Johannes Berg | 8fdc621 | 2009-03-14 09:34:01 +0100 | [diff] [blame] | 1053 | }						\ | 
|  | 1054 | } while (0) | 
|  | 1055 |  | 
|  | 1056 | CMD(add_virtual_intf, NEW_INTERFACE); | 
|  | 1057 | CMD(change_virtual_intf, SET_INTERFACE); | 
|  | 1058 | CMD(add_key, NEW_KEY); | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 1059 | CMD(start_ap, START_AP); | 
| Johannes Berg | 8fdc621 | 2009-03-14 09:34:01 +0100 | [diff] [blame] | 1060 | CMD(add_station, NEW_STATION); | 
|  | 1061 | CMD(add_mpath, NEW_MPATH); | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 1062 | CMD(update_mesh_config, SET_MESH_CONFIG); | 
| Johannes Berg | 8fdc621 | 2009-03-14 09:34:01 +0100 | [diff] [blame] | 1063 | CMD(change_bss, SET_BSS); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1064 | CMD(auth, AUTHENTICATE); | 
|  | 1065 | CMD(assoc, ASSOCIATE); | 
|  | 1066 | CMD(deauth, DEAUTHENTICATE); | 
|  | 1067 | CMD(disassoc, DISASSOCIATE); | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 1068 | CMD(join_ibss, JOIN_IBSS); | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1069 | CMD(join_mesh, JOIN_MESH); | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 1070 | CMD(set_pmksa, SET_PMKSA); | 
|  | 1071 | CMD(del_pmksa, DEL_PMKSA); | 
|  | 1072 | CMD(flush_pmksa, FLUSH_PMKSA); | 
| Johannes Berg | 7c4ef71 | 2011-11-18 15:33:48 +0100 | [diff] [blame] | 1073 | if (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) | 
|  | 1074 | CMD(remain_on_channel, REMAIN_ON_CHANNEL); | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 1075 | CMD(set_bitrate_mask, SET_TX_BITRATE_MASK); | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 1076 | CMD(mgmt_tx, FRAME); | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 1077 | CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL); | 
| Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 1078 | if (dev->wiphy.flags & WIPHY_FLAG_NETNS_OK) { | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1079 | i++; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1080 | if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS)) | 
|  | 1081 | goto nla_put_failure; | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1082 | } | 
| Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 1083 | if (dev->ops->set_monitor_channel || dev->ops->start_ap || | 
| Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 1084 | dev->ops->join_mesh) { | 
| Johannes Berg | aa430da | 2012-05-16 23:50:18 +0200 | [diff] [blame] | 1085 | i++; | 
|  | 1086 | if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL)) | 
|  | 1087 | goto nla_put_failure; | 
|  | 1088 | } | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 1089 | CMD(set_wds_peer, SET_WDS_PEER); | 
| Arik Nemtsov | 109086c | 2011-09-28 14:12:50 +0300 | [diff] [blame] | 1090 | if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) { | 
|  | 1091 | CMD(tdls_mgmt, TDLS_MGMT); | 
|  | 1092 | CMD(tdls_oper, TDLS_OPER); | 
|  | 1093 | } | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 1094 | if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) | 
|  | 1095 | CMD(sched_scan_start, START_SCHED_SCAN); | 
| Johannes Berg | 7f6cf31 | 2011-11-04 11:18:15 +0100 | [diff] [blame] | 1096 | CMD(probe_client, PROBE_CLIENT); | 
| Simon Wunderlich | 1d9d921 | 2011-11-18 14:20:43 +0100 | [diff] [blame] | 1097 | CMD(set_noack_map, SET_NOACK_MAP); | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 1098 | if (dev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) { | 
|  | 1099 | i++; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1100 | if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS)) | 
|  | 1101 | goto nla_put_failure; | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 1102 | } | 
| Johannes Berg | 8fdc621 | 2009-03-14 09:34:01 +0100 | [diff] [blame] | 1103 |  | 
| Kalle Valo | 4745fc0 | 2011-11-17 19:06:10 +0200 | [diff] [blame] | 1104 | #ifdef CONFIG_NL80211_TESTMODE | 
|  | 1105 | CMD(testmode_cmd, TESTMODE); | 
|  | 1106 | #endif | 
|  | 1107 |  | 
| Johannes Berg | 8fdc621 | 2009-03-14 09:34:01 +0100 | [diff] [blame] | 1108 | #undef CMD | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 1109 |  | 
| Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 1110 | if (dev->ops->connect || dev->ops->auth) { | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 1111 | i++; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1112 | if (nla_put_u32(msg, i, NL80211_CMD_CONNECT)) | 
|  | 1113 | goto nla_put_failure; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 1114 | } | 
|  | 1115 |  | 
| Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 1116 | if (dev->ops->disconnect || dev->ops->deauth) { | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 1117 | i++; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1118 | if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT)) | 
|  | 1119 | goto nla_put_failure; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 1120 | } | 
|  | 1121 |  | 
| Johannes Berg | 8fdc621 | 2009-03-14 09:34:01 +0100 | [diff] [blame] | 1122 | nla_nest_end(msg, nl_cmds); | 
|  | 1123 |  | 
| Johannes Berg | 7c4ef71 | 2011-11-18 15:33:48 +0100 | [diff] [blame] | 1124 | if (dev->ops->remain_on_channel && | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1125 | (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) && | 
|  | 1126 | nla_put_u32(msg, NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION, | 
|  | 1127 | dev->wiphy.max_remain_on_channel_duration)) | 
|  | 1128 | goto nla_put_failure; | 
| Johannes Berg | a293911 | 2010-12-14 17:54:28 +0100 | [diff] [blame] | 1129 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1130 | if ((dev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) && | 
|  | 1131 | nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK)) | 
|  | 1132 | goto nla_put_failure; | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 1133 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 1134 | if (mgmt_stypes) { | 
|  | 1135 | u16 stypes; | 
|  | 1136 | struct nlattr *nl_ftypes, *nl_ifs; | 
|  | 1137 | enum nl80211_iftype ift; | 
|  | 1138 |  | 
|  | 1139 | nl_ifs = nla_nest_start(msg, NL80211_ATTR_TX_FRAME_TYPES); | 
|  | 1140 | if (!nl_ifs) | 
|  | 1141 | goto nla_put_failure; | 
|  | 1142 |  | 
|  | 1143 | for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) { | 
|  | 1144 | nl_ftypes = nla_nest_start(msg, ift); | 
|  | 1145 | if (!nl_ftypes) | 
|  | 1146 | goto nla_put_failure; | 
|  | 1147 | i = 0; | 
|  | 1148 | stypes = mgmt_stypes[ift].tx; | 
|  | 1149 | while (stypes) { | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1150 | if ((stypes & 1) && | 
|  | 1151 | nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE, | 
|  | 1152 | (i << 4) | IEEE80211_FTYPE_MGMT)) | 
|  | 1153 | goto nla_put_failure; | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 1154 | stypes >>= 1; | 
|  | 1155 | i++; | 
|  | 1156 | } | 
|  | 1157 | nla_nest_end(msg, nl_ftypes); | 
|  | 1158 | } | 
|  | 1159 |  | 
| Johannes Berg | 74b70a4 | 2010-08-24 12:15:53 +0200 | [diff] [blame] | 1160 | nla_nest_end(msg, nl_ifs); | 
|  | 1161 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 1162 | nl_ifs = nla_nest_start(msg, NL80211_ATTR_RX_FRAME_TYPES); | 
|  | 1163 | if (!nl_ifs) | 
|  | 1164 | goto nla_put_failure; | 
|  | 1165 |  | 
|  | 1166 | for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) { | 
|  | 1167 | nl_ftypes = nla_nest_start(msg, ift); | 
|  | 1168 | if (!nl_ftypes) | 
|  | 1169 | goto nla_put_failure; | 
|  | 1170 | i = 0; | 
|  | 1171 | stypes = mgmt_stypes[ift].rx; | 
|  | 1172 | while (stypes) { | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1173 | if ((stypes & 1) && | 
|  | 1174 | nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE, | 
|  | 1175 | (i << 4) | IEEE80211_FTYPE_MGMT)) | 
|  | 1176 | goto nla_put_failure; | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 1177 | stypes >>= 1; | 
|  | 1178 | i++; | 
|  | 1179 | } | 
|  | 1180 | nla_nest_end(msg, nl_ftypes); | 
|  | 1181 | } | 
|  | 1182 | nla_nest_end(msg, nl_ifs); | 
|  | 1183 | } | 
|  | 1184 |  | 
| Johannes Berg | dfb89c5 | 2012-06-27 09:23:48 +0200 | [diff] [blame] | 1185 | #ifdef CONFIG_PM | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 1186 | if (dev->wiphy.wowlan.flags || dev->wiphy.wowlan.n_patterns) { | 
|  | 1187 | struct nlattr *nl_wowlan; | 
|  | 1188 |  | 
|  | 1189 | nl_wowlan = nla_nest_start(msg, | 
|  | 1190 | NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED); | 
|  | 1191 | if (!nl_wowlan) | 
|  | 1192 | goto nla_put_failure; | 
|  | 1193 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1194 | if (((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_ANY) && | 
|  | 1195 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) || | 
|  | 1196 | ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_DISCONNECT) && | 
|  | 1197 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) || | 
|  | 1198 | ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_MAGIC_PKT) && | 
|  | 1199 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) || | 
|  | 1200 | ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY) && | 
|  | 1201 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED)) || | 
|  | 1202 | ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) && | 
|  | 1203 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) || | 
|  | 1204 | ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ) && | 
|  | 1205 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) || | 
|  | 1206 | ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_4WAY_HANDSHAKE) && | 
|  | 1207 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) || | 
|  | 1208 | ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_RFKILL_RELEASE) && | 
|  | 1209 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))) | 
|  | 1210 | goto nla_put_failure; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 1211 | if (dev->wiphy.wowlan.n_patterns) { | 
|  | 1212 | struct nl80211_wowlan_pattern_support pat = { | 
|  | 1213 | .max_patterns = dev->wiphy.wowlan.n_patterns, | 
|  | 1214 | .min_pattern_len = | 
|  | 1215 | dev->wiphy.wowlan.pattern_min_len, | 
|  | 1216 | .max_pattern_len = | 
|  | 1217 | dev->wiphy.wowlan.pattern_max_len, | 
|  | 1218 | }; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1219 | if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN, | 
|  | 1220 | sizeof(pat), &pat)) | 
|  | 1221 | goto nla_put_failure; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 1222 | } | 
|  | 1223 |  | 
|  | 1224 | nla_nest_end(msg, nl_wowlan); | 
|  | 1225 | } | 
| Johannes Berg | dfb89c5 | 2012-06-27 09:23:48 +0200 | [diff] [blame] | 1226 | #endif | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 1227 |  | 
| Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 1228 | if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES, | 
|  | 1229 | dev->wiphy.software_iftypes)) | 
|  | 1230 | goto nla_put_failure; | 
|  | 1231 |  | 
|  | 1232 | if (nl80211_put_iface_combinations(&dev->wiphy, msg)) | 
|  | 1233 | goto nla_put_failure; | 
|  | 1234 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1235 | if ((dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) && | 
|  | 1236 | nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME, | 
|  | 1237 | dev->wiphy.ap_sme_capa)) | 
|  | 1238 | goto nla_put_failure; | 
| Johannes Berg | 562a748 | 2011-11-07 12:39:33 +0100 | [diff] [blame] | 1239 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1240 | if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS, | 
|  | 1241 | dev->wiphy.features)) | 
|  | 1242 | goto nla_put_failure; | 
| Johannes Berg | 1f074bd | 2011-11-06 14:13:33 +0100 | [diff] [blame] | 1243 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1244 | if (dev->wiphy.ht_capa_mod_mask && | 
|  | 1245 | nla_put(msg, NL80211_ATTR_HT_CAPABILITY_MASK, | 
|  | 1246 | sizeof(*dev->wiphy.ht_capa_mod_mask), | 
|  | 1247 | dev->wiphy.ht_capa_mod_mask)) | 
|  | 1248 | goto nla_put_failure; | 
| Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 1249 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1250 | return genlmsg_end(msg, hdr); | 
|  | 1251 |  | 
|  | 1252 | nla_put_failure: | 
| Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 1253 | genlmsg_cancel(msg, hdr); | 
|  | 1254 | return -EMSGSIZE; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1255 | } | 
|  | 1256 |  | 
|  | 1257 | static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb) | 
|  | 1258 | { | 
|  | 1259 | int idx = 0; | 
|  | 1260 | int start = cb->args[0]; | 
|  | 1261 | struct cfg80211_registered_device *dev; | 
|  | 1262 |  | 
| Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 1263 | mutex_lock(&cfg80211_mutex); | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 1264 | list_for_each_entry(dev, &cfg80211_rdev_list, list) { | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1265 | if (!net_eq(wiphy_net(&dev->wiphy), sock_net(skb->sk))) | 
|  | 1266 | continue; | 
| Julius Volz | b463727 | 2008-07-08 14:02:19 +0200 | [diff] [blame] | 1267 | if (++idx <= start) | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1268 | continue; | 
|  | 1269 | if (nl80211_send_wiphy(skb, NETLINK_CB(cb->skb).pid, | 
|  | 1270 | cb->nlh->nlmsg_seq, NLM_F_MULTI, | 
| Julius Volz | b463727 | 2008-07-08 14:02:19 +0200 | [diff] [blame] | 1271 | dev) < 0) { | 
|  | 1272 | idx--; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1273 | break; | 
| Julius Volz | b463727 | 2008-07-08 14:02:19 +0200 | [diff] [blame] | 1274 | } | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1275 | } | 
| Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 1276 | mutex_unlock(&cfg80211_mutex); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1277 |  | 
|  | 1278 | cb->args[0] = idx; | 
|  | 1279 |  | 
|  | 1280 | return skb->len; | 
|  | 1281 | } | 
|  | 1282 |  | 
|  | 1283 | static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info) | 
|  | 1284 | { | 
|  | 1285 | struct sk_buff *msg; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1286 | struct cfg80211_registered_device *dev = info->user_ptr[0]; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1287 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 1288 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1289 | if (!msg) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1290 | return -ENOMEM; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1291 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1292 | if (nl80211_send_wiphy(msg, info->snd_pid, info->snd_seq, 0, dev) < 0) { | 
|  | 1293 | nlmsg_free(msg); | 
|  | 1294 | return -ENOBUFS; | 
|  | 1295 | } | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1296 |  | 
| Johannes Berg | 134e637 | 2009-07-10 09:51:34 +0000 | [diff] [blame] | 1297 | return genlmsg_reply(msg, info); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1298 | } | 
|  | 1299 |  | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1300 | static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = { | 
|  | 1301 | [NL80211_TXQ_ATTR_QUEUE]		= { .type = NLA_U8 }, | 
|  | 1302 | [NL80211_TXQ_ATTR_TXOP]			= { .type = NLA_U16 }, | 
|  | 1303 | [NL80211_TXQ_ATTR_CWMIN]		= { .type = NLA_U16 }, | 
|  | 1304 | [NL80211_TXQ_ATTR_CWMAX]		= { .type = NLA_U16 }, | 
|  | 1305 | [NL80211_TXQ_ATTR_AIFS]			= { .type = NLA_U8 }, | 
|  | 1306 | }; | 
|  | 1307 |  | 
|  | 1308 | static int parse_txq_params(struct nlattr *tb[], | 
|  | 1309 | struct ieee80211_txq_params *txq_params) | 
|  | 1310 | { | 
| Johannes Berg | a3304b0 | 2012-03-28 11:04:24 +0200 | [diff] [blame] | 1311 | if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] || | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1312 | !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] || | 
|  | 1313 | !tb[NL80211_TXQ_ATTR_AIFS]) | 
|  | 1314 | return -EINVAL; | 
|  | 1315 |  | 
| Johannes Berg | a3304b0 | 2012-03-28 11:04:24 +0200 | [diff] [blame] | 1316 | txq_params->ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]); | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1317 | txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]); | 
|  | 1318 | txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]); | 
|  | 1319 | txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]); | 
|  | 1320 | txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]); | 
|  | 1321 |  | 
| Johannes Berg | a3304b0 | 2012-03-28 11:04:24 +0200 | [diff] [blame] | 1322 | if (txq_params->ac >= NL80211_NUM_ACS) | 
|  | 1323 | return -EINVAL; | 
|  | 1324 |  | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1325 | return 0; | 
|  | 1326 | } | 
|  | 1327 |  | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1328 | static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev) | 
|  | 1329 | { | 
|  | 1330 | /* | 
| Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 1331 | * You can only set the channel explicitly for WDS interfaces, | 
|  | 1332 | * all others have their channel managed via their respective | 
|  | 1333 | * "establish a connection" command (connect, join, ...) | 
|  | 1334 | * | 
|  | 1335 | * For AP/GO and mesh mode, the channel can be set with the | 
|  | 1336 | * channel userspace API, but is only stored and passed to the | 
|  | 1337 | * low-level driver when the AP starts or the mesh is joined. | 
|  | 1338 | * This is for backward compatibility, userspace can also give | 
|  | 1339 | * the channel in the start-ap or join-mesh commands instead. | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1340 | * | 
|  | 1341 | * Monitors are special as they are normally slaved to | 
| Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 1342 | * whatever else is going on, so they have their own special | 
|  | 1343 | * operation to set the monitor channel if possible. | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1344 | */ | 
|  | 1345 | return !wdev || | 
|  | 1346 | wdev->iftype == NL80211_IFTYPE_AP || | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1347 | wdev->iftype == NL80211_IFTYPE_MESH_POINT || | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 1348 | wdev->iftype == NL80211_IFTYPE_MONITOR || | 
|  | 1349 | wdev->iftype == NL80211_IFTYPE_P2P_GO; | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1350 | } | 
|  | 1351 |  | 
| Johannes Berg | cd6c659 | 2012-05-10 21:27:18 +0200 | [diff] [blame] | 1352 | static bool nl80211_valid_channel_type(struct genl_info *info, | 
|  | 1353 | enum nl80211_channel_type *channel_type) | 
|  | 1354 | { | 
|  | 1355 | enum nl80211_channel_type tmp; | 
|  | 1356 |  | 
|  | 1357 | if (!info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) | 
|  | 1358 | return false; | 
|  | 1359 |  | 
|  | 1360 | tmp = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]); | 
|  | 1361 | if (tmp != NL80211_CHAN_NO_HT && | 
|  | 1362 | tmp != NL80211_CHAN_HT20 && | 
|  | 1363 | tmp != NL80211_CHAN_HT40PLUS && | 
|  | 1364 | tmp != NL80211_CHAN_HT40MINUS) | 
|  | 1365 | return false; | 
|  | 1366 |  | 
|  | 1367 | if (channel_type) | 
|  | 1368 | *channel_type = tmp; | 
|  | 1369 |  | 
|  | 1370 | return true; | 
|  | 1371 | } | 
|  | 1372 |  | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1373 | static int __nl80211_set_channel(struct cfg80211_registered_device *rdev, | 
|  | 1374 | struct wireless_dev *wdev, | 
|  | 1375 | struct genl_info *info) | 
|  | 1376 | { | 
| Johannes Berg | aa430da | 2012-05-16 23:50:18 +0200 | [diff] [blame] | 1377 | struct ieee80211_channel *channel; | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1378 | enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT; | 
|  | 1379 | u32 freq; | 
|  | 1380 | int result; | 
| Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 1381 | enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR; | 
|  | 1382 |  | 
|  | 1383 | if (wdev) | 
|  | 1384 | iftype = wdev->iftype; | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1385 |  | 
|  | 1386 | if (!info->attrs[NL80211_ATTR_WIPHY_FREQ]) | 
|  | 1387 | return -EINVAL; | 
|  | 1388 |  | 
|  | 1389 | if (!nl80211_can_set_dev_channel(wdev)) | 
|  | 1390 | return -EOPNOTSUPP; | 
|  | 1391 |  | 
| Johannes Berg | cd6c659 | 2012-05-10 21:27:18 +0200 | [diff] [blame] | 1392 | if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE] && | 
|  | 1393 | !nl80211_valid_channel_type(info, &channel_type)) | 
|  | 1394 | return -EINVAL; | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1395 |  | 
|  | 1396 | freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]); | 
|  | 1397 |  | 
|  | 1398 | mutex_lock(&rdev->devlist_mtx); | 
| Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 1399 | switch (iftype) { | 
| Johannes Berg | aa430da | 2012-05-16 23:50:18 +0200 | [diff] [blame] | 1400 | case NL80211_IFTYPE_AP: | 
|  | 1401 | case NL80211_IFTYPE_P2P_GO: | 
|  | 1402 | if (wdev->beacon_interval) { | 
|  | 1403 | result = -EBUSY; | 
|  | 1404 | break; | 
|  | 1405 | } | 
|  | 1406 | channel = rdev_freq_to_chan(rdev, freq, channel_type); | 
|  | 1407 | if (!channel || !cfg80211_can_beacon_sec_chan(&rdev->wiphy, | 
|  | 1408 | channel, | 
|  | 1409 | channel_type)) { | 
|  | 1410 | result = -EINVAL; | 
|  | 1411 | break; | 
|  | 1412 | } | 
|  | 1413 | wdev->preset_chan = channel; | 
|  | 1414 | wdev->preset_chantype = channel_type; | 
|  | 1415 | result = 0; | 
|  | 1416 | break; | 
| Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 1417 | case NL80211_IFTYPE_MESH_POINT: | 
|  | 1418 | result = cfg80211_set_mesh_freq(rdev, wdev, freq, channel_type); | 
|  | 1419 | break; | 
| Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 1420 | case NL80211_IFTYPE_MONITOR: | 
|  | 1421 | result = cfg80211_set_monitor_channel(rdev, freq, channel_type); | 
|  | 1422 | break; | 
| Johannes Berg | aa430da | 2012-05-16 23:50:18 +0200 | [diff] [blame] | 1423 | default: | 
| Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 1424 | result = -EINVAL; | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1425 | } | 
|  | 1426 | mutex_unlock(&rdev->devlist_mtx); | 
|  | 1427 |  | 
|  | 1428 | return result; | 
|  | 1429 | } | 
|  | 1430 |  | 
|  | 1431 | static int nl80211_set_channel(struct sk_buff *skb, struct genl_info *info) | 
|  | 1432 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1433 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 1434 | struct net_device *netdev = info->user_ptr[1]; | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1435 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1436 | return __nl80211_set_channel(rdev, netdev->ieee80211_ptr, info); | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1437 | } | 
|  | 1438 |  | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 1439 | static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info) | 
|  | 1440 | { | 
| Johannes Berg | 43b1995 | 2010-10-07 13:10:30 +0200 | [diff] [blame] | 1441 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 1442 | struct net_device *dev = info->user_ptr[1]; | 
|  | 1443 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
| Johannes Berg | 388ac77 | 2010-10-07 13:11:09 +0200 | [diff] [blame] | 1444 | const u8 *bssid; | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 1445 |  | 
|  | 1446 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 1447 | return -EINVAL; | 
|  | 1448 |  | 
| Johannes Berg | 43b1995 | 2010-10-07 13:10:30 +0200 | [diff] [blame] | 1449 | if (netif_running(dev)) | 
|  | 1450 | return -EBUSY; | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 1451 |  | 
| Johannes Berg | 43b1995 | 2010-10-07 13:10:30 +0200 | [diff] [blame] | 1452 | if (!rdev->ops->set_wds_peer) | 
|  | 1453 | return -EOPNOTSUPP; | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 1454 |  | 
| Johannes Berg | 43b1995 | 2010-10-07 13:10:30 +0200 | [diff] [blame] | 1455 | if (wdev->iftype != NL80211_IFTYPE_WDS) | 
|  | 1456 | return -EOPNOTSUPP; | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 1457 |  | 
|  | 1458 | bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
| Johannes Berg | 43b1995 | 2010-10-07 13:10:30 +0200 | [diff] [blame] | 1459 | return rdev->ops->set_wds_peer(wdev->wiphy, dev, bssid); | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 1460 | } | 
|  | 1461 |  | 
|  | 1462 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1463 | static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info) | 
|  | 1464 | { | 
|  | 1465 | struct cfg80211_registered_device *rdev; | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1466 | struct net_device *netdev = NULL; | 
|  | 1467 | struct wireless_dev *wdev; | 
| Bill Jordan | a1e567c | 2010-09-10 11:22:32 -0400 | [diff] [blame] | 1468 | int result = 0, rem_txq_params = 0; | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1469 | struct nlattr *nl_txq_params; | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1470 | u32 changed; | 
|  | 1471 | u8 retry_short = 0, retry_long = 0; | 
|  | 1472 | u32 frag_threshold = 0, rts_threshold = 0; | 
| Lukáš Turek | 81077e8 | 2009-12-21 22:50:47 +0100 | [diff] [blame] | 1473 | u8 coverage_class = 0; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1474 |  | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1475 | /* | 
|  | 1476 | * Try to find the wiphy and netdev. Normally this | 
|  | 1477 | * function shouldn't need the netdev, but this is | 
|  | 1478 | * done for backward compatibility -- previously | 
|  | 1479 | * setting the channel was done per wiphy, but now | 
|  | 1480 | * it is per netdev. Previous userland like hostapd | 
|  | 1481 | * also passed a netdev to set_wiphy, so that it is | 
|  | 1482 | * possible to let that go to the right netdev! | 
|  | 1483 | */ | 
| Johannes Berg | 4bbf4d5 | 2009-03-24 09:35:46 +0100 | [diff] [blame] | 1484 | mutex_lock(&cfg80211_mutex); | 
|  | 1485 |  | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1486 | if (info->attrs[NL80211_ATTR_IFINDEX]) { | 
|  | 1487 | int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]); | 
|  | 1488 |  | 
|  | 1489 | netdev = dev_get_by_index(genl_info_net(info), ifindex); | 
|  | 1490 | if (netdev && netdev->ieee80211_ptr) { | 
|  | 1491 | rdev = wiphy_to_dev(netdev->ieee80211_ptr->wiphy); | 
|  | 1492 | mutex_lock(&rdev->mtx); | 
|  | 1493 | } else | 
|  | 1494 | netdev = NULL; | 
| Johannes Berg | 4bbf4d5 | 2009-03-24 09:35:46 +0100 | [diff] [blame] | 1495 | } | 
|  | 1496 |  | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1497 | if (!netdev) { | 
| Johannes Berg | 878d9ec | 2012-06-15 14:18:32 +0200 | [diff] [blame] | 1498 | rdev = __cfg80211_rdev_from_attrs(genl_info_net(info), | 
|  | 1499 | info->attrs); | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1500 | if (IS_ERR(rdev)) { | 
|  | 1501 | mutex_unlock(&cfg80211_mutex); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1502 | return PTR_ERR(rdev); | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1503 | } | 
|  | 1504 | wdev = NULL; | 
|  | 1505 | netdev = NULL; | 
|  | 1506 | result = 0; | 
|  | 1507 |  | 
|  | 1508 | mutex_lock(&rdev->mtx); | 
| Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 1509 | } else if (nl80211_can_set_dev_channel(netdev->ieee80211_ptr)) | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1510 | wdev = netdev->ieee80211_ptr; | 
|  | 1511 | else | 
|  | 1512 | wdev = NULL; | 
|  | 1513 |  | 
|  | 1514 | /* | 
|  | 1515 | * end workaround code, by now the rdev is available | 
|  | 1516 | * and locked, and wdev may or may not be NULL. | 
|  | 1517 | */ | 
| Johannes Berg | 4bbf4d5 | 2009-03-24 09:35:46 +0100 | [diff] [blame] | 1518 |  | 
|  | 1519 | if (info->attrs[NL80211_ATTR_WIPHY_NAME]) | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1520 | result = cfg80211_dev_rename( | 
|  | 1521 | rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME])); | 
| Johannes Berg | 4bbf4d5 | 2009-03-24 09:35:46 +0100 | [diff] [blame] | 1522 |  | 
|  | 1523 | mutex_unlock(&cfg80211_mutex); | 
|  | 1524 |  | 
|  | 1525 | if (result) | 
|  | 1526 | goto bad_res; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1527 |  | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1528 | if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) { | 
|  | 1529 | struct ieee80211_txq_params txq_params; | 
|  | 1530 | struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1]; | 
|  | 1531 |  | 
|  | 1532 | if (!rdev->ops->set_txq_params) { | 
|  | 1533 | result = -EOPNOTSUPP; | 
|  | 1534 | goto bad_res; | 
|  | 1535 | } | 
|  | 1536 |  | 
| Eliad Peller | f70f01c | 2011-09-25 20:06:53 +0300 | [diff] [blame] | 1537 | if (!netdev) { | 
|  | 1538 | result = -EINVAL; | 
|  | 1539 | goto bad_res; | 
|  | 1540 | } | 
|  | 1541 |  | 
| Johannes Berg | 133a3ff | 2011-11-03 14:50:13 +0100 | [diff] [blame] | 1542 | if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP && | 
|  | 1543 | netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) { | 
|  | 1544 | result = -EINVAL; | 
|  | 1545 | goto bad_res; | 
|  | 1546 | } | 
|  | 1547 |  | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 1548 | if (!netif_running(netdev)) { | 
|  | 1549 | result = -ENETDOWN; | 
|  | 1550 | goto bad_res; | 
|  | 1551 | } | 
|  | 1552 |  | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1553 | nla_for_each_nested(nl_txq_params, | 
|  | 1554 | info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS], | 
|  | 1555 | rem_txq_params) { | 
|  | 1556 | nla_parse(tb, NL80211_TXQ_ATTR_MAX, | 
|  | 1557 | nla_data(nl_txq_params), | 
|  | 1558 | nla_len(nl_txq_params), | 
|  | 1559 | txq_params_policy); | 
|  | 1560 | result = parse_txq_params(tb, &txq_params); | 
|  | 1561 | if (result) | 
|  | 1562 | goto bad_res; | 
|  | 1563 |  | 
|  | 1564 | result = rdev->ops->set_txq_params(&rdev->wiphy, | 
| Eliad Peller | f70f01c | 2011-09-25 20:06:53 +0300 | [diff] [blame] | 1565 | netdev, | 
| Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 1566 | &txq_params); | 
|  | 1567 | if (result) | 
|  | 1568 | goto bad_res; | 
|  | 1569 | } | 
|  | 1570 | } | 
|  | 1571 |  | 
| Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 1572 | if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) { | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1573 | result = __nl80211_set_channel(rdev, wdev, info); | 
| Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 1574 | if (result) | 
|  | 1575 | goto bad_res; | 
|  | 1576 | } | 
|  | 1577 |  | 
| Juuso Oikarinen | 98d2ff8 | 2010-06-23 12:12:38 +0300 | [diff] [blame] | 1578 | if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) { | 
|  | 1579 | enum nl80211_tx_power_setting type; | 
|  | 1580 | int idx, mbm = 0; | 
|  | 1581 |  | 
|  | 1582 | if (!rdev->ops->set_tx_power) { | 
| Jiri Slaby | 60ea385 | 2010-07-07 15:02:46 +0200 | [diff] [blame] | 1583 | result = -EOPNOTSUPP; | 
| Juuso Oikarinen | 98d2ff8 | 2010-06-23 12:12:38 +0300 | [diff] [blame] | 1584 | goto bad_res; | 
|  | 1585 | } | 
|  | 1586 |  | 
|  | 1587 | idx = NL80211_ATTR_WIPHY_TX_POWER_SETTING; | 
|  | 1588 | type = nla_get_u32(info->attrs[idx]); | 
|  | 1589 |  | 
|  | 1590 | if (!info->attrs[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] && | 
|  | 1591 | (type != NL80211_TX_POWER_AUTOMATIC)) { | 
|  | 1592 | result = -EINVAL; | 
|  | 1593 | goto bad_res; | 
|  | 1594 | } | 
|  | 1595 |  | 
|  | 1596 | if (type != NL80211_TX_POWER_AUTOMATIC) { | 
|  | 1597 | idx = NL80211_ATTR_WIPHY_TX_POWER_LEVEL; | 
|  | 1598 | mbm = nla_get_u32(info->attrs[idx]); | 
|  | 1599 | } | 
|  | 1600 |  | 
|  | 1601 | result = rdev->ops->set_tx_power(&rdev->wiphy, type, mbm); | 
|  | 1602 | if (result) | 
|  | 1603 | goto bad_res; | 
|  | 1604 | } | 
|  | 1605 |  | 
| Bruno Randolf | afe0cbf | 2010-11-10 12:50:50 +0900 | [diff] [blame] | 1606 | if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] && | 
|  | 1607 | info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) { | 
|  | 1608 | u32 tx_ant, rx_ant; | 
| Bruno Randolf | 7f531e0 | 2010-12-16 11:30:22 +0900 | [diff] [blame] | 1609 | if ((!rdev->wiphy.available_antennas_tx && | 
|  | 1610 | !rdev->wiphy.available_antennas_rx) || | 
|  | 1611 | !rdev->ops->set_antenna) { | 
| Bruno Randolf | afe0cbf | 2010-11-10 12:50:50 +0900 | [diff] [blame] | 1612 | result = -EOPNOTSUPP; | 
|  | 1613 | goto bad_res; | 
|  | 1614 | } | 
|  | 1615 |  | 
|  | 1616 | tx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX]); | 
|  | 1617 | rx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]); | 
|  | 1618 |  | 
| Bruno Randolf | a7ffac9 | 2010-12-08 13:59:24 +0900 | [diff] [blame] | 1619 | /* reject antenna configurations which don't match the | 
| Bruno Randolf | 7f531e0 | 2010-12-16 11:30:22 +0900 | [diff] [blame] | 1620 | * available antenna masks, except for the "all" mask */ | 
|  | 1621 | if ((~tx_ant && (tx_ant & ~rdev->wiphy.available_antennas_tx)) || | 
|  | 1622 | (~rx_ant && (rx_ant & ~rdev->wiphy.available_antennas_rx))) { | 
| Bruno Randolf | a7ffac9 | 2010-12-08 13:59:24 +0900 | [diff] [blame] | 1623 | result = -EINVAL; | 
|  | 1624 | goto bad_res; | 
|  | 1625 | } | 
|  | 1626 |  | 
| Bruno Randolf | 7f531e0 | 2010-12-16 11:30:22 +0900 | [diff] [blame] | 1627 | tx_ant = tx_ant & rdev->wiphy.available_antennas_tx; | 
|  | 1628 | rx_ant = rx_ant & rdev->wiphy.available_antennas_rx; | 
| Bruno Randolf | a7ffac9 | 2010-12-08 13:59:24 +0900 | [diff] [blame] | 1629 |  | 
| Bruno Randolf | afe0cbf | 2010-11-10 12:50:50 +0900 | [diff] [blame] | 1630 | result = rdev->ops->set_antenna(&rdev->wiphy, tx_ant, rx_ant); | 
|  | 1631 | if (result) | 
|  | 1632 | goto bad_res; | 
|  | 1633 | } | 
|  | 1634 |  | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1635 | changed = 0; | 
|  | 1636 |  | 
|  | 1637 | if (info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]) { | 
|  | 1638 | retry_short = nla_get_u8( | 
|  | 1639 | info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]); | 
|  | 1640 | if (retry_short == 0) { | 
|  | 1641 | result = -EINVAL; | 
|  | 1642 | goto bad_res; | 
|  | 1643 | } | 
|  | 1644 | changed |= WIPHY_PARAM_RETRY_SHORT; | 
|  | 1645 | } | 
|  | 1646 |  | 
|  | 1647 | if (info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]) { | 
|  | 1648 | retry_long = nla_get_u8( | 
|  | 1649 | info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]); | 
|  | 1650 | if (retry_long == 0) { | 
|  | 1651 | result = -EINVAL; | 
|  | 1652 | goto bad_res; | 
|  | 1653 | } | 
|  | 1654 | changed |= WIPHY_PARAM_RETRY_LONG; | 
|  | 1655 | } | 
|  | 1656 |  | 
|  | 1657 | if (info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) { | 
|  | 1658 | frag_threshold = nla_get_u32( | 
|  | 1659 | info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]); | 
|  | 1660 | if (frag_threshold < 256) { | 
|  | 1661 | result = -EINVAL; | 
|  | 1662 | goto bad_res; | 
|  | 1663 | } | 
|  | 1664 | if (frag_threshold != (u32) -1) { | 
|  | 1665 | /* | 
|  | 1666 | * Fragments (apart from the last one) are required to | 
|  | 1667 | * have even length. Make the fragmentation code | 
|  | 1668 | * simpler by stripping LSB should someone try to use | 
|  | 1669 | * odd threshold value. | 
|  | 1670 | */ | 
|  | 1671 | frag_threshold &= ~0x1; | 
|  | 1672 | } | 
|  | 1673 | changed |= WIPHY_PARAM_FRAG_THRESHOLD; | 
|  | 1674 | } | 
|  | 1675 |  | 
|  | 1676 | if (info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) { | 
|  | 1677 | rts_threshold = nla_get_u32( | 
|  | 1678 | info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]); | 
|  | 1679 | changed |= WIPHY_PARAM_RTS_THRESHOLD; | 
|  | 1680 | } | 
|  | 1681 |  | 
| Lukáš Turek | 81077e8 | 2009-12-21 22:50:47 +0100 | [diff] [blame] | 1682 | if (info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]) { | 
|  | 1683 | coverage_class = nla_get_u8( | 
|  | 1684 | info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]); | 
|  | 1685 | changed |= WIPHY_PARAM_COVERAGE_CLASS; | 
|  | 1686 | } | 
|  | 1687 |  | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1688 | if (changed) { | 
|  | 1689 | u8 old_retry_short, old_retry_long; | 
|  | 1690 | u32 old_frag_threshold, old_rts_threshold; | 
| Lukáš Turek | 81077e8 | 2009-12-21 22:50:47 +0100 | [diff] [blame] | 1691 | u8 old_coverage_class; | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1692 |  | 
|  | 1693 | if (!rdev->ops->set_wiphy_params) { | 
|  | 1694 | result = -EOPNOTSUPP; | 
|  | 1695 | goto bad_res; | 
|  | 1696 | } | 
|  | 1697 |  | 
|  | 1698 | old_retry_short = rdev->wiphy.retry_short; | 
|  | 1699 | old_retry_long = rdev->wiphy.retry_long; | 
|  | 1700 | old_frag_threshold = rdev->wiphy.frag_threshold; | 
|  | 1701 | old_rts_threshold = rdev->wiphy.rts_threshold; | 
| Lukáš Turek | 81077e8 | 2009-12-21 22:50:47 +0100 | [diff] [blame] | 1702 | old_coverage_class = rdev->wiphy.coverage_class; | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1703 |  | 
|  | 1704 | if (changed & WIPHY_PARAM_RETRY_SHORT) | 
|  | 1705 | rdev->wiphy.retry_short = retry_short; | 
|  | 1706 | if (changed & WIPHY_PARAM_RETRY_LONG) | 
|  | 1707 | rdev->wiphy.retry_long = retry_long; | 
|  | 1708 | if (changed & WIPHY_PARAM_FRAG_THRESHOLD) | 
|  | 1709 | rdev->wiphy.frag_threshold = frag_threshold; | 
|  | 1710 | if (changed & WIPHY_PARAM_RTS_THRESHOLD) | 
|  | 1711 | rdev->wiphy.rts_threshold = rts_threshold; | 
| Lukáš Turek | 81077e8 | 2009-12-21 22:50:47 +0100 | [diff] [blame] | 1712 | if (changed & WIPHY_PARAM_COVERAGE_CLASS) | 
|  | 1713 | rdev->wiphy.coverage_class = coverage_class; | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1714 |  | 
|  | 1715 | result = rdev->ops->set_wiphy_params(&rdev->wiphy, changed); | 
|  | 1716 | if (result) { | 
|  | 1717 | rdev->wiphy.retry_short = old_retry_short; | 
|  | 1718 | rdev->wiphy.retry_long = old_retry_long; | 
|  | 1719 | rdev->wiphy.frag_threshold = old_frag_threshold; | 
|  | 1720 | rdev->wiphy.rts_threshold = old_rts_threshold; | 
| Lukáš Turek | 81077e8 | 2009-12-21 22:50:47 +0100 | [diff] [blame] | 1721 | rdev->wiphy.coverage_class = old_coverage_class; | 
| Jouni Malinen | b9a5f8ca | 2009-04-20 18:39:05 +0200 | [diff] [blame] | 1722 | } | 
|  | 1723 | } | 
| Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 1724 |  | 
| Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 1725 | bad_res: | 
| Johannes Berg | 4bbf4d5 | 2009-03-24 09:35:46 +0100 | [diff] [blame] | 1726 | mutex_unlock(&rdev->mtx); | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 1727 | if (netdev) | 
|  | 1728 | dev_put(netdev); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1729 | return result; | 
|  | 1730 | } | 
|  | 1731 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 1732 | static inline u64 wdev_id(struct wireless_dev *wdev) | 
|  | 1733 | { | 
|  | 1734 | return (u64)wdev->identifier | | 
|  | 1735 | ((u64)wiphy_to_dev(wdev->wiphy)->wiphy_idx << 32); | 
|  | 1736 | } | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1737 |  | 
|  | 1738 | static int nl80211_send_iface(struct sk_buff *msg, u32 pid, u32 seq, int flags, | 
| Johannes Berg | d726405 | 2009-04-19 16:23:20 +0200 | [diff] [blame] | 1739 | struct cfg80211_registered_device *rdev, | 
| Johannes Berg | 72fb2ab | 2012-06-15 17:52:47 +0200 | [diff] [blame] | 1740 | struct wireless_dev *wdev) | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1741 | { | 
| Johannes Berg | 72fb2ab | 2012-06-15 17:52:47 +0200 | [diff] [blame] | 1742 | struct net_device *dev = wdev->netdev; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1743 | void *hdr; | 
|  | 1744 |  | 
|  | 1745 | hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_INTERFACE); | 
|  | 1746 | if (!hdr) | 
|  | 1747 | return -1; | 
|  | 1748 |  | 
| Johannes Berg | 72fb2ab | 2012-06-15 17:52:47 +0200 | [diff] [blame] | 1749 | if (dev && | 
|  | 1750 | (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) || | 
|  | 1751 | nla_put_string(msg, NL80211_ATTR_IFNAME, dev->name) || | 
|  | 1752 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, dev->dev_addr))) | 
|  | 1753 | goto nla_put_failure; | 
|  | 1754 |  | 
|  | 1755 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 1756 | nla_put_u32(msg, NL80211_ATTR_IFTYPE, wdev->iftype) || | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 1757 | nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) || | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 1758 | nla_put_u32(msg, NL80211_ATTR_GENERATION, | 
|  | 1759 | rdev->devlist_generation ^ | 
|  | 1760 | (cfg80211_rdev_list_generation << 2))) | 
|  | 1761 | goto nla_put_failure; | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 1762 |  | 
| Johannes Berg | 5b7ccaf | 2012-07-12 19:45:08 +0200 | [diff] [blame] | 1763 | if (rdev->ops->get_channel) { | 
|  | 1764 | struct ieee80211_channel *chan; | 
|  | 1765 | enum nl80211_channel_type channel_type; | 
|  | 1766 |  | 
|  | 1767 | chan = rdev->ops->get_channel(&rdev->wiphy, wdev, | 
|  | 1768 | &channel_type); | 
|  | 1769 | if (chan && | 
|  | 1770 | (nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, | 
|  | 1771 | chan->center_freq) || | 
|  | 1772 | nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE, | 
|  | 1773 | channel_type))) | 
| John W. Linville | 59ef43e | 2012-04-18 14:17:13 -0400 | [diff] [blame] | 1774 | goto nla_put_failure; | 
| Pontus Fuchs | d91df0e | 2012-04-03 16:39:58 +0200 | [diff] [blame] | 1775 | } | 
|  | 1776 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1777 | return genlmsg_end(msg, hdr); | 
|  | 1778 |  | 
|  | 1779 | nla_put_failure: | 
| Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 1780 | genlmsg_cancel(msg, hdr); | 
|  | 1781 | return -EMSGSIZE; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1782 | } | 
|  | 1783 |  | 
|  | 1784 | static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb) | 
|  | 1785 | { | 
|  | 1786 | int wp_idx = 0; | 
|  | 1787 | int if_idx = 0; | 
|  | 1788 | int wp_start = cb->args[0]; | 
|  | 1789 | int if_start = cb->args[1]; | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 1790 | struct cfg80211_registered_device *rdev; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1791 | struct wireless_dev *wdev; | 
|  | 1792 |  | 
| Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 1793 | mutex_lock(&cfg80211_mutex); | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 1794 | list_for_each_entry(rdev, &cfg80211_rdev_list, list) { | 
|  | 1795 | if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk))) | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 1796 | continue; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1797 | if (wp_idx < wp_start) { | 
|  | 1798 | wp_idx++; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1799 | continue; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1800 | } | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1801 | if_idx = 0; | 
|  | 1802 |  | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 1803 | mutex_lock(&rdev->devlist_mtx); | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 1804 | list_for_each_entry(wdev, &rdev->wdev_list, list) { | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1805 | if (if_idx < if_start) { | 
|  | 1806 | if_idx++; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1807 | continue; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1808 | } | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1809 | if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).pid, | 
|  | 1810 | cb->nlh->nlmsg_seq, NLM_F_MULTI, | 
| Johannes Berg | 72fb2ab | 2012-06-15 17:52:47 +0200 | [diff] [blame] | 1811 | rdev, wdev) < 0) { | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 1812 | mutex_unlock(&rdev->devlist_mtx); | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1813 | goto out; | 
|  | 1814 | } | 
|  | 1815 | if_idx++; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1816 | } | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 1817 | mutex_unlock(&rdev->devlist_mtx); | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1818 |  | 
|  | 1819 | wp_idx++; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1820 | } | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1821 | out: | 
| Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 1822 | mutex_unlock(&cfg80211_mutex); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1823 |  | 
|  | 1824 | cb->args[0] = wp_idx; | 
|  | 1825 | cb->args[1] = if_idx; | 
|  | 1826 |  | 
|  | 1827 | return skb->len; | 
|  | 1828 | } | 
|  | 1829 |  | 
|  | 1830 | static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info) | 
|  | 1831 | { | 
|  | 1832 | struct sk_buff *msg; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1833 | struct cfg80211_registered_device *dev = info->user_ptr[0]; | 
| Johannes Berg | 72fb2ab | 2012-06-15 17:52:47 +0200 | [diff] [blame] | 1834 | struct wireless_dev *wdev = info->user_ptr[1]; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1835 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 1836 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1837 | if (!msg) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1838 | return -ENOMEM; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1839 |  | 
| Johannes Berg | d726405 | 2009-04-19 16:23:20 +0200 | [diff] [blame] | 1840 | if (nl80211_send_iface(msg, info->snd_pid, info->snd_seq, 0, | 
| Johannes Berg | 72fb2ab | 2012-06-15 17:52:47 +0200 | [diff] [blame] | 1841 | dev, wdev) < 0) { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1842 | nlmsg_free(msg); | 
|  | 1843 | return -ENOBUFS; | 
|  | 1844 | } | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1845 |  | 
| Johannes Berg | 134e637 | 2009-07-10 09:51:34 +0000 | [diff] [blame] | 1846 | return genlmsg_reply(msg, info); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1847 | } | 
|  | 1848 |  | 
| Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 1849 | static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = { | 
|  | 1850 | [NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG }, | 
|  | 1851 | [NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG }, | 
|  | 1852 | [NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG }, | 
|  | 1853 | [NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG }, | 
|  | 1854 | [NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG }, | 
|  | 1855 | }; | 
|  | 1856 |  | 
|  | 1857 | static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags) | 
|  | 1858 | { | 
|  | 1859 | struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1]; | 
|  | 1860 | int flag; | 
|  | 1861 |  | 
|  | 1862 | *mntrflags = 0; | 
|  | 1863 |  | 
|  | 1864 | if (!nla) | 
|  | 1865 | return -EINVAL; | 
|  | 1866 |  | 
|  | 1867 | if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX, | 
|  | 1868 | nla, mntr_flags_policy)) | 
|  | 1869 | return -EINVAL; | 
|  | 1870 |  | 
|  | 1871 | for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++) | 
|  | 1872 | if (flags[flag]) | 
|  | 1873 | *mntrflags |= (1<<flag); | 
|  | 1874 |  | 
|  | 1875 | return 0; | 
|  | 1876 | } | 
|  | 1877 |  | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1878 | static int nl80211_valid_4addr(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | ad4bb6f | 2009-11-19 00:56:30 +0100 | [diff] [blame] | 1879 | struct net_device *netdev, u8 use_4addr, | 
|  | 1880 | enum nl80211_iftype iftype) | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1881 | { | 
| Johannes Berg | ad4bb6f | 2009-11-19 00:56:30 +0100 | [diff] [blame] | 1882 | if (!use_4addr) { | 
| Jiri Pirko | f350a0a8 | 2010-06-15 06:50:45 +0000 | [diff] [blame] | 1883 | if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT)) | 
| Johannes Berg | ad4bb6f | 2009-11-19 00:56:30 +0100 | [diff] [blame] | 1884 | return -EBUSY; | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1885 | return 0; | 
| Johannes Berg | ad4bb6f | 2009-11-19 00:56:30 +0100 | [diff] [blame] | 1886 | } | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1887 |  | 
|  | 1888 | switch (iftype) { | 
|  | 1889 | case NL80211_IFTYPE_AP_VLAN: | 
|  | 1890 | if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP) | 
|  | 1891 | return 0; | 
|  | 1892 | break; | 
|  | 1893 | case NL80211_IFTYPE_STATION: | 
|  | 1894 | if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_STATION) | 
|  | 1895 | return 0; | 
|  | 1896 | break; | 
|  | 1897 | default: | 
|  | 1898 | break; | 
|  | 1899 | } | 
|  | 1900 |  | 
|  | 1901 | return -EOPNOTSUPP; | 
|  | 1902 | } | 
|  | 1903 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1904 | static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info) | 
|  | 1905 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1906 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1907 | struct vif_params params; | 
| Johannes Berg | e36d56b | 2009-06-09 21:04:43 +0200 | [diff] [blame] | 1908 | int err; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 1909 | enum nl80211_iftype otype, ntype; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1910 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 1911 | u32 _flags, *flags = NULL; | 
| Johannes Berg | ac7f9cf | 2009-03-21 17:07:59 +0100 | [diff] [blame] | 1912 | bool change = false; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1913 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1914 | memset(¶ms, 0, sizeof(params)); | 
|  | 1915 |  | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 1916 | otype = ntype = dev->ieee80211_ptr->iftype; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1917 |  | 
| Johannes Berg | 723b038 | 2008-09-16 20:22:09 +0200 | [diff] [blame] | 1918 | if (info->attrs[NL80211_ATTR_IFTYPE]) { | 
| Johannes Berg | ac7f9cf | 2009-03-21 17:07:59 +0100 | [diff] [blame] | 1919 | ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]); | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 1920 | if (otype != ntype) | 
| Johannes Berg | ac7f9cf | 2009-03-21 17:07:59 +0100 | [diff] [blame] | 1921 | change = true; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1922 | if (ntype > NL80211_IFTYPE_MAX) | 
|  | 1923 | return -EINVAL; | 
| Johannes Berg | 723b038 | 2008-09-16 20:22:09 +0200 | [diff] [blame] | 1924 | } | 
|  | 1925 |  | 
| Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 1926 | if (info->attrs[NL80211_ATTR_MESH_ID]) { | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1927 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 1928 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1929 | if (ntype != NL80211_IFTYPE_MESH_POINT) | 
|  | 1930 | return -EINVAL; | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1931 | if (netif_running(dev)) | 
|  | 1932 | return -EBUSY; | 
|  | 1933 |  | 
|  | 1934 | wdev_lock(wdev); | 
|  | 1935 | BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN != | 
|  | 1936 | IEEE80211_MAX_MESH_ID_LEN); | 
|  | 1937 | wdev->mesh_id_up_len = | 
|  | 1938 | nla_len(info->attrs[NL80211_ATTR_MESH_ID]); | 
|  | 1939 | memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]), | 
|  | 1940 | wdev->mesh_id_up_len); | 
|  | 1941 | wdev_unlock(wdev); | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1942 | } | 
|  | 1943 |  | 
| Felix Fietkau | 8b78764 | 2009-11-10 18:53:10 +0100 | [diff] [blame] | 1944 | if (info->attrs[NL80211_ATTR_4ADDR]) { | 
|  | 1945 | params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]); | 
|  | 1946 | change = true; | 
| Johannes Berg | ad4bb6f | 2009-11-19 00:56:30 +0100 | [diff] [blame] | 1947 | err = nl80211_valid_4addr(rdev, dev, params.use_4addr, ntype); | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1948 | if (err) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1949 | return err; | 
| Felix Fietkau | 8b78764 | 2009-11-10 18:53:10 +0100 | [diff] [blame] | 1950 | } else { | 
|  | 1951 | params.use_4addr = -1; | 
|  | 1952 | } | 
|  | 1953 |  | 
| Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 1954 | if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1955 | if (ntype != NL80211_IFTYPE_MONITOR) | 
|  | 1956 | return -EINVAL; | 
| Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 1957 | err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS], | 
|  | 1958 | &_flags); | 
| Johannes Berg | ac7f9cf | 2009-03-21 17:07:59 +0100 | [diff] [blame] | 1959 | if (err) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1960 | return err; | 
| Johannes Berg | ac7f9cf | 2009-03-21 17:07:59 +0100 | [diff] [blame] | 1961 |  | 
|  | 1962 | flags = &_flags; | 
|  | 1963 | change = true; | 
| Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 1964 | } | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 1965 |  | 
| Johannes Berg | ac7f9cf | 2009-03-21 17:07:59 +0100 | [diff] [blame] | 1966 | if (change) | 
| Johannes Berg | 3d54d25 | 2009-08-21 14:51:05 +0200 | [diff] [blame] | 1967 | err = cfg80211_change_iface(rdev, dev, ntype, flags, ¶ms); | 
| Johannes Berg | ac7f9cf | 2009-03-21 17:07:59 +0100 | [diff] [blame] | 1968 | else | 
|  | 1969 | err = 0; | 
| Johannes Berg | 60719ff | 2008-09-16 14:55:09 +0200 | [diff] [blame] | 1970 |  | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1971 | if (!err && params.use_4addr != -1) | 
|  | 1972 | dev->ieee80211_ptr->use_4addr = params.use_4addr; | 
|  | 1973 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1974 | return err; | 
|  | 1975 | } | 
|  | 1976 |  | 
|  | 1977 | static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info) | 
|  | 1978 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1979 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1980 | struct vif_params params; | 
| Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 1981 | struct wireless_dev *wdev; | 
| Johannes Berg | 1c90f9d | 2012-06-16 00:05:37 +0200 | [diff] [blame] | 1982 | struct sk_buff *msg; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1983 | int err; | 
|  | 1984 | enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED; | 
| Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 1985 | u32 flags; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1986 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1987 | memset(¶ms, 0, sizeof(params)); | 
|  | 1988 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1989 | if (!info->attrs[NL80211_ATTR_IFNAME]) | 
|  | 1990 | return -EINVAL; | 
|  | 1991 |  | 
|  | 1992 | if (info->attrs[NL80211_ATTR_IFTYPE]) { | 
|  | 1993 | type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]); | 
|  | 1994 | if (type > NL80211_IFTYPE_MAX) | 
|  | 1995 | return -EINVAL; | 
|  | 1996 | } | 
|  | 1997 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 1998 | if (!rdev->ops->add_virtual_intf || | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 1999 | !(rdev->wiphy.interface_modes & (1 << type))) | 
|  | 2000 | return -EOPNOTSUPP; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 2001 |  | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 2002 | if (info->attrs[NL80211_ATTR_4ADDR]) { | 
| Felix Fietkau | 8b78764 | 2009-11-10 18:53:10 +0100 | [diff] [blame] | 2003 | params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]); | 
| Johannes Berg | ad4bb6f | 2009-11-19 00:56:30 +0100 | [diff] [blame] | 2004 | err = nl80211_valid_4addr(rdev, NULL, params.use_4addr, type); | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 2005 | if (err) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2006 | return err; | 
| Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 2007 | } | 
| Felix Fietkau | 8b78764 | 2009-11-10 18:53:10 +0100 | [diff] [blame] | 2008 |  | 
| Johannes Berg | 1c90f9d | 2012-06-16 00:05:37 +0200 | [diff] [blame] | 2009 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
|  | 2010 | if (!msg) | 
|  | 2011 | return -ENOMEM; | 
|  | 2012 |  | 
| Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 2013 | err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ? | 
|  | 2014 | info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL, | 
|  | 2015 | &flags); | 
| Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 2016 | wdev = rdev->ops->add_virtual_intf(&rdev->wiphy, | 
| Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 2017 | nla_data(info->attrs[NL80211_ATTR_IFNAME]), | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2018 | type, err ? NULL : &flags, ¶ms); | 
| Johannes Berg | 1c90f9d | 2012-06-16 00:05:37 +0200 | [diff] [blame] | 2019 | if (IS_ERR(wdev)) { | 
|  | 2020 | nlmsg_free(msg); | 
| Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 2021 | return PTR_ERR(wdev); | 
| Johannes Berg | 1c90f9d | 2012-06-16 00:05:37 +0200 | [diff] [blame] | 2022 | } | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2023 |  | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 2024 | if (type == NL80211_IFTYPE_MESH_POINT && | 
|  | 2025 | info->attrs[NL80211_ATTR_MESH_ID]) { | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 2026 | wdev_lock(wdev); | 
|  | 2027 | BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN != | 
|  | 2028 | IEEE80211_MAX_MESH_ID_LEN); | 
|  | 2029 | wdev->mesh_id_up_len = | 
|  | 2030 | nla_len(info->attrs[NL80211_ATTR_MESH_ID]); | 
|  | 2031 | memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]), | 
|  | 2032 | wdev->mesh_id_up_len); | 
|  | 2033 | wdev_unlock(wdev); | 
|  | 2034 | } | 
|  | 2035 |  | 
| Johannes Berg | 1c90f9d | 2012-06-16 00:05:37 +0200 | [diff] [blame] | 2036 | if (nl80211_send_iface(msg, info->snd_pid, info->snd_seq, 0, | 
|  | 2037 | rdev, wdev) < 0) { | 
|  | 2038 | nlmsg_free(msg); | 
|  | 2039 | return -ENOBUFS; | 
|  | 2040 | } | 
|  | 2041 |  | 
|  | 2042 | return genlmsg_reply(msg, info); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 2043 | } | 
|  | 2044 |  | 
|  | 2045 | static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info) | 
|  | 2046 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2047 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 2048 | struct wireless_dev *wdev = info->user_ptr[1]; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 2049 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2050 | if (!rdev->ops->del_virtual_intf) | 
|  | 2051 | return -EOPNOTSUPP; | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 2052 |  | 
| Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 2053 | /* | 
|  | 2054 | * If we remove a wireless device without a netdev then clear | 
|  | 2055 | * user_ptr[1] so that nl80211_post_doit won't dereference it | 
|  | 2056 | * to check if it needs to do dev_put(). Otherwise it crashes | 
|  | 2057 | * since the wdev has been freed, unlike with a netdev where | 
|  | 2058 | * we need the dev_put() for the netdev to really be freed. | 
|  | 2059 | */ | 
|  | 2060 | if (!wdev->netdev) | 
|  | 2061 | info->user_ptr[1] = NULL; | 
|  | 2062 |  | 
|  | 2063 | return rdev->ops->del_virtual_intf(&rdev->wiphy, wdev); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 2064 | } | 
|  | 2065 |  | 
| Simon Wunderlich | 1d9d921 | 2011-11-18 14:20:43 +0100 | [diff] [blame] | 2066 | static int nl80211_set_noack_map(struct sk_buff *skb, struct genl_info *info) | 
|  | 2067 | { | 
|  | 2068 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 2069 | struct net_device *dev = info->user_ptr[1]; | 
|  | 2070 | u16 noack_map; | 
|  | 2071 |  | 
|  | 2072 | if (!info->attrs[NL80211_ATTR_NOACK_MAP]) | 
|  | 2073 | return -EINVAL; | 
|  | 2074 |  | 
|  | 2075 | if (!rdev->ops->set_noack_map) | 
|  | 2076 | return -EOPNOTSUPP; | 
|  | 2077 |  | 
|  | 2078 | noack_map = nla_get_u16(info->attrs[NL80211_ATTR_NOACK_MAP]); | 
|  | 2079 |  | 
|  | 2080 | return rdev->ops->set_noack_map(&rdev->wiphy, dev, noack_map); | 
|  | 2081 | } | 
|  | 2082 |  | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2083 | struct get_key_cookie { | 
|  | 2084 | struct sk_buff *msg; | 
|  | 2085 | int error; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2086 | int idx; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2087 | }; | 
|  | 2088 |  | 
|  | 2089 | static void get_key_callback(void *c, struct key_params *params) | 
|  | 2090 | { | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2091 | struct nlattr *key; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2092 | struct get_key_cookie *cookie = c; | 
|  | 2093 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2094 | if ((params->key && | 
|  | 2095 | nla_put(cookie->msg, NL80211_ATTR_KEY_DATA, | 
|  | 2096 | params->key_len, params->key)) || | 
|  | 2097 | (params->seq && | 
|  | 2098 | nla_put(cookie->msg, NL80211_ATTR_KEY_SEQ, | 
|  | 2099 | params->seq_len, params->seq)) || | 
|  | 2100 | (params->cipher && | 
|  | 2101 | nla_put_u32(cookie->msg, NL80211_ATTR_KEY_CIPHER, | 
|  | 2102 | params->cipher))) | 
|  | 2103 | goto nla_put_failure; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2104 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2105 | key = nla_nest_start(cookie->msg, NL80211_ATTR_KEY); | 
|  | 2106 | if (!key) | 
|  | 2107 | goto nla_put_failure; | 
|  | 2108 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2109 | if ((params->key && | 
|  | 2110 | nla_put(cookie->msg, NL80211_KEY_DATA, | 
|  | 2111 | params->key_len, params->key)) || | 
|  | 2112 | (params->seq && | 
|  | 2113 | nla_put(cookie->msg, NL80211_KEY_SEQ, | 
|  | 2114 | params->seq_len, params->seq)) || | 
|  | 2115 | (params->cipher && | 
|  | 2116 | nla_put_u32(cookie->msg, NL80211_KEY_CIPHER, | 
|  | 2117 | params->cipher))) | 
|  | 2118 | goto nla_put_failure; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2119 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2120 | if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx)) | 
|  | 2121 | goto nla_put_failure; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2122 |  | 
|  | 2123 | nla_nest_end(cookie->msg, key); | 
|  | 2124 |  | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2125 | return; | 
|  | 2126 | nla_put_failure: | 
|  | 2127 | cookie->error = 1; | 
|  | 2128 | } | 
|  | 2129 |  | 
|  | 2130 | static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info) | 
|  | 2131 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2132 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2133 | int err; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2134 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2135 | u8 key_idx = 0; | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2136 | const u8 *mac_addr = NULL; | 
|  | 2137 | bool pairwise; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2138 | struct get_key_cookie cookie = { | 
|  | 2139 | .error = 0, | 
|  | 2140 | }; | 
|  | 2141 | void *hdr; | 
|  | 2142 | struct sk_buff *msg; | 
|  | 2143 |  | 
|  | 2144 | if (info->attrs[NL80211_ATTR_KEY_IDX]) | 
|  | 2145 | key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]); | 
|  | 2146 |  | 
| Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 2147 | if (key_idx > 5) | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2148 | return -EINVAL; | 
|  | 2149 |  | 
|  | 2150 | if (info->attrs[NL80211_ATTR_MAC]) | 
|  | 2151 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 2152 |  | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2153 | pairwise = !!mac_addr; | 
|  | 2154 | if (info->attrs[NL80211_ATTR_KEY_TYPE]) { | 
|  | 2155 | u32 kt = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]); | 
|  | 2156 | if (kt >= NUM_NL80211_KEYTYPES) | 
|  | 2157 | return -EINVAL; | 
|  | 2158 | if (kt != NL80211_KEYTYPE_GROUP && | 
|  | 2159 | kt != NL80211_KEYTYPE_PAIRWISE) | 
|  | 2160 | return -EINVAL; | 
|  | 2161 | pairwise = kt == NL80211_KEYTYPE_PAIRWISE; | 
|  | 2162 | } | 
|  | 2163 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2164 | if (!rdev->ops->get_key) | 
|  | 2165 | return -EOPNOTSUPP; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2166 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 2167 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2168 | if (!msg) | 
|  | 2169 | return -ENOMEM; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2170 |  | 
|  | 2171 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, | 
|  | 2172 | NL80211_CMD_NEW_KEY); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2173 | if (IS_ERR(hdr)) | 
|  | 2174 | return PTR_ERR(hdr); | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2175 |  | 
|  | 2176 | cookie.msg = msg; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2177 | cookie.idx = key_idx; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2178 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2179 | if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) || | 
|  | 2180 | nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_idx)) | 
|  | 2181 | goto nla_put_failure; | 
|  | 2182 | if (mac_addr && | 
|  | 2183 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr)) | 
|  | 2184 | goto nla_put_failure; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2185 |  | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2186 | if (pairwise && mac_addr && | 
|  | 2187 | !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN)) | 
|  | 2188 | return -ENOENT; | 
|  | 2189 |  | 
|  | 2190 | err = rdev->ops->get_key(&rdev->wiphy, dev, key_idx, pairwise, | 
|  | 2191 | mac_addr, &cookie, get_key_callback); | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2192 |  | 
|  | 2193 | if (err) | 
| Niko Jokinen | 6c95e2a | 2009-07-15 11:00:53 +0300 | [diff] [blame] | 2194 | goto free_msg; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2195 |  | 
|  | 2196 | if (cookie.error) | 
|  | 2197 | goto nla_put_failure; | 
|  | 2198 |  | 
|  | 2199 | genlmsg_end(msg, hdr); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2200 | return genlmsg_reply(msg, info); | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2201 |  | 
|  | 2202 | nla_put_failure: | 
|  | 2203 | err = -ENOBUFS; | 
| Niko Jokinen | 6c95e2a | 2009-07-15 11:00:53 +0300 | [diff] [blame] | 2204 | free_msg: | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2205 | nlmsg_free(msg); | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2206 | return err; | 
|  | 2207 | } | 
|  | 2208 |  | 
|  | 2209 | static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info) | 
|  | 2210 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2211 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2212 | struct key_parse key; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2213 | int err; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2214 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2215 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2216 | err = nl80211_parse_key(info, &key); | 
|  | 2217 | if (err) | 
|  | 2218 | return err; | 
|  | 2219 |  | 
|  | 2220 | if (key.idx < 0) | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2221 | return -EINVAL; | 
|  | 2222 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2223 | /* only support setting default key */ | 
|  | 2224 | if (!key.def && !key.defmgmt) | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2225 | return -EINVAL; | 
|  | 2226 |  | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2227 | wdev_lock(dev->ieee80211_ptr); | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 2228 |  | 
|  | 2229 | if (key.def) { | 
|  | 2230 | if (!rdev->ops->set_default_key) { | 
|  | 2231 | err = -EOPNOTSUPP; | 
|  | 2232 | goto out; | 
|  | 2233 | } | 
|  | 2234 |  | 
|  | 2235 | err = nl80211_key_allowed(dev->ieee80211_ptr); | 
|  | 2236 | if (err) | 
|  | 2237 | goto out; | 
|  | 2238 |  | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 2239 | err = rdev->ops->set_default_key(&rdev->wiphy, dev, key.idx, | 
|  | 2240 | key.def_uni, key.def_multi); | 
|  | 2241 |  | 
|  | 2242 | if (err) | 
|  | 2243 | goto out; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2244 |  | 
| Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 2245 | #ifdef CONFIG_CFG80211_WEXT | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 2246 | dev->ieee80211_ptr->wext.default_key = key.idx; | 
| Johannes Berg | 0864512 | 2009-05-11 13:54:58 +0200 | [diff] [blame] | 2247 | #endif | 
| Johannes Berg | dbd2fd6 | 2010-12-09 19:58:59 +0100 | [diff] [blame] | 2248 | } else { | 
|  | 2249 | if (key.def_uni || !key.def_multi) { | 
|  | 2250 | err = -EINVAL; | 
|  | 2251 | goto out; | 
|  | 2252 | } | 
|  | 2253 |  | 
|  | 2254 | if (!rdev->ops->set_default_mgmt_key) { | 
|  | 2255 | err = -EOPNOTSUPP; | 
|  | 2256 | goto out; | 
|  | 2257 | } | 
|  | 2258 |  | 
|  | 2259 | err = nl80211_key_allowed(dev->ieee80211_ptr); | 
|  | 2260 | if (err) | 
|  | 2261 | goto out; | 
|  | 2262 |  | 
|  | 2263 | err = rdev->ops->set_default_mgmt_key(&rdev->wiphy, | 
|  | 2264 | dev, key.idx); | 
|  | 2265 | if (err) | 
|  | 2266 | goto out; | 
|  | 2267 |  | 
|  | 2268 | #ifdef CONFIG_CFG80211_WEXT | 
|  | 2269 | dev->ieee80211_ptr->wext.default_mgmt_key = key.idx; | 
|  | 2270 | #endif | 
|  | 2271 | } | 
|  | 2272 |  | 
|  | 2273 | out: | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2274 | wdev_unlock(dev->ieee80211_ptr); | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2275 |  | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2276 | return err; | 
|  | 2277 | } | 
|  | 2278 |  | 
|  | 2279 | static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info) | 
|  | 2280 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2281 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2282 | int err; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2283 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2284 | struct key_parse key; | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2285 | const u8 *mac_addr = NULL; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2286 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2287 | err = nl80211_parse_key(info, &key); | 
|  | 2288 | if (err) | 
|  | 2289 | return err; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2290 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2291 | if (!key.p.key) | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2292 | return -EINVAL; | 
|  | 2293 |  | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2294 | if (info->attrs[NL80211_ATTR_MAC]) | 
|  | 2295 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 2296 |  | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2297 | if (key.type == -1) { | 
|  | 2298 | if (mac_addr) | 
|  | 2299 | key.type = NL80211_KEYTYPE_PAIRWISE; | 
|  | 2300 | else | 
|  | 2301 | key.type = NL80211_KEYTYPE_GROUP; | 
|  | 2302 | } | 
|  | 2303 |  | 
|  | 2304 | /* for now */ | 
|  | 2305 | if (key.type != NL80211_KEYTYPE_PAIRWISE && | 
|  | 2306 | key.type != NL80211_KEYTYPE_GROUP) | 
|  | 2307 | return -EINVAL; | 
|  | 2308 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2309 | if (!rdev->ops->add_key) | 
|  | 2310 | return -EOPNOTSUPP; | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 2311 |  | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2312 | if (cfg80211_validate_key_settings(rdev, &key.p, key.idx, | 
|  | 2313 | key.type == NL80211_KEYTYPE_PAIRWISE, | 
|  | 2314 | mac_addr)) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2315 | return -EINVAL; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2316 |  | 
|  | 2317 | wdev_lock(dev->ieee80211_ptr); | 
|  | 2318 | err = nl80211_key_allowed(dev->ieee80211_ptr); | 
|  | 2319 | if (!err) | 
|  | 2320 | err = rdev->ops->add_key(&rdev->wiphy, dev, key.idx, | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2321 | key.type == NL80211_KEYTYPE_PAIRWISE, | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2322 | mac_addr, &key.p); | 
|  | 2323 | wdev_unlock(dev->ieee80211_ptr); | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2324 |  | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2325 | return err; | 
|  | 2326 | } | 
|  | 2327 |  | 
|  | 2328 | static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info) | 
|  | 2329 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2330 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2331 | int err; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2332 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2333 | u8 *mac_addr = NULL; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2334 | struct key_parse key; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2335 |  | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2336 | err = nl80211_parse_key(info, &key); | 
|  | 2337 | if (err) | 
|  | 2338 | return err; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2339 |  | 
|  | 2340 | if (info->attrs[NL80211_ATTR_MAC]) | 
|  | 2341 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 2342 |  | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2343 | if (key.type == -1) { | 
|  | 2344 | if (mac_addr) | 
|  | 2345 | key.type = NL80211_KEYTYPE_PAIRWISE; | 
|  | 2346 | else | 
|  | 2347 | key.type = NL80211_KEYTYPE_GROUP; | 
|  | 2348 | } | 
|  | 2349 |  | 
|  | 2350 | /* for now */ | 
|  | 2351 | if (key.type != NL80211_KEYTYPE_PAIRWISE && | 
|  | 2352 | key.type != NL80211_KEYTYPE_GROUP) | 
|  | 2353 | return -EINVAL; | 
|  | 2354 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2355 | if (!rdev->ops->del_key) | 
|  | 2356 | return -EOPNOTSUPP; | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2357 |  | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2358 | wdev_lock(dev->ieee80211_ptr); | 
|  | 2359 | err = nl80211_key_allowed(dev->ieee80211_ptr); | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2360 |  | 
|  | 2361 | if (key.type == NL80211_KEYTYPE_PAIRWISE && mac_addr && | 
|  | 2362 | !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN)) | 
|  | 2363 | err = -ENOENT; | 
|  | 2364 |  | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2365 | if (!err) | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 2366 | err = rdev->ops->del_key(&rdev->wiphy, dev, key.idx, | 
|  | 2367 | key.type == NL80211_KEYTYPE_PAIRWISE, | 
|  | 2368 | mac_addr); | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2369 |  | 
| Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 2370 | #ifdef CONFIG_CFG80211_WEXT | 
| Johannes Berg | 0864512 | 2009-05-11 13:54:58 +0200 | [diff] [blame] | 2371 | if (!err) { | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2372 | if (key.idx == dev->ieee80211_ptr->wext.default_key) | 
| Johannes Berg | 0864512 | 2009-05-11 13:54:58 +0200 | [diff] [blame] | 2373 | dev->ieee80211_ptr->wext.default_key = -1; | 
| Johannes Berg | b9454e8 | 2009-07-08 13:29:08 +0200 | [diff] [blame] | 2374 | else if (key.idx == dev->ieee80211_ptr->wext.default_mgmt_key) | 
| Johannes Berg | 0864512 | 2009-05-11 13:54:58 +0200 | [diff] [blame] | 2375 | dev->ieee80211_ptr->wext.default_mgmt_key = -1; | 
|  | 2376 | } | 
|  | 2377 | #endif | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2378 | wdev_unlock(dev->ieee80211_ptr); | 
| Johannes Berg | 0864512 | 2009-05-11 13:54:58 +0200 | [diff] [blame] | 2379 |  | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2380 | return err; | 
|  | 2381 | } | 
|  | 2382 |  | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2383 | static int nl80211_parse_beacon(struct genl_info *info, | 
|  | 2384 | struct cfg80211_beacon_data *bcn) | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2385 | { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2386 | bool haveinfo = false; | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2387 |  | 
| Jouni Malinen | 9946ecf | 2011-08-10 23:55:56 +0300 | [diff] [blame] | 2388 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_BEACON_TAIL]) || | 
|  | 2389 | !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]) || | 
|  | 2390 | !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE_PROBE_RESP]) || | 
|  | 2391 | !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE_ASSOC_RESP])) | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 2392 | return -EINVAL; | 
|  | 2393 |  | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2394 | memset(bcn, 0, sizeof(*bcn)); | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2395 |  | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2396 | if (info->attrs[NL80211_ATTR_BEACON_HEAD]) { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2397 | bcn->head = nla_data(info->attrs[NL80211_ATTR_BEACON_HEAD]); | 
|  | 2398 | bcn->head_len = nla_len(info->attrs[NL80211_ATTR_BEACON_HEAD]); | 
|  | 2399 | if (!bcn->head_len) | 
|  | 2400 | return -EINVAL; | 
|  | 2401 | haveinfo = true; | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2402 | } | 
|  | 2403 |  | 
|  | 2404 | if (info->attrs[NL80211_ATTR_BEACON_TAIL]) { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2405 | bcn->tail = nla_data(info->attrs[NL80211_ATTR_BEACON_TAIL]); | 
|  | 2406 | bcn->tail_len = | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2407 | nla_len(info->attrs[NL80211_ATTR_BEACON_TAIL]); | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2408 | haveinfo = true; | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2409 | } | 
|  | 2410 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2411 | if (!haveinfo) | 
|  | 2412 | return -EINVAL; | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2413 |  | 
| Jouni Malinen | 9946ecf | 2011-08-10 23:55:56 +0300 | [diff] [blame] | 2414 | if (info->attrs[NL80211_ATTR_IE]) { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2415 | bcn->beacon_ies = nla_data(info->attrs[NL80211_ATTR_IE]); | 
|  | 2416 | bcn->beacon_ies_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
| Jouni Malinen | 9946ecf | 2011-08-10 23:55:56 +0300 | [diff] [blame] | 2417 | } | 
|  | 2418 |  | 
|  | 2419 | if (info->attrs[NL80211_ATTR_IE_PROBE_RESP]) { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2420 | bcn->proberesp_ies = | 
| Jouni Malinen | 9946ecf | 2011-08-10 23:55:56 +0300 | [diff] [blame] | 2421 | nla_data(info->attrs[NL80211_ATTR_IE_PROBE_RESP]); | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2422 | bcn->proberesp_ies_len = | 
| Jouni Malinen | 9946ecf | 2011-08-10 23:55:56 +0300 | [diff] [blame] | 2423 | nla_len(info->attrs[NL80211_ATTR_IE_PROBE_RESP]); | 
|  | 2424 | } | 
|  | 2425 |  | 
|  | 2426 | if (info->attrs[NL80211_ATTR_IE_ASSOC_RESP]) { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2427 | bcn->assocresp_ies = | 
| Jouni Malinen | 9946ecf | 2011-08-10 23:55:56 +0300 | [diff] [blame] | 2428 | nla_data(info->attrs[NL80211_ATTR_IE_ASSOC_RESP]); | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2429 | bcn->assocresp_ies_len = | 
| Jouni Malinen | 9946ecf | 2011-08-10 23:55:56 +0300 | [diff] [blame] | 2430 | nla_len(info->attrs[NL80211_ATTR_IE_ASSOC_RESP]); | 
|  | 2431 | } | 
|  | 2432 |  | 
| Arik Nemtsov | 00f740e | 2011-11-10 11:28:56 +0200 | [diff] [blame] | 2433 | if (info->attrs[NL80211_ATTR_PROBE_RESP]) { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2434 | bcn->probe_resp = | 
| Arik Nemtsov | 00f740e | 2011-11-10 11:28:56 +0200 | [diff] [blame] | 2435 | nla_data(info->attrs[NL80211_ATTR_PROBE_RESP]); | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2436 | bcn->probe_resp_len = | 
| Arik Nemtsov | 00f740e | 2011-11-10 11:28:56 +0200 | [diff] [blame] | 2437 | nla_len(info->attrs[NL80211_ATTR_PROBE_RESP]); | 
|  | 2438 | } | 
|  | 2439 |  | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2440 | return 0; | 
|  | 2441 | } | 
|  | 2442 |  | 
| Felix Fietkau | 46c1dd0 | 2012-06-19 02:50:57 +0200 | [diff] [blame] | 2443 | static bool nl80211_get_ap_channel(struct cfg80211_registered_device *rdev, | 
|  | 2444 | struct cfg80211_ap_settings *params) | 
|  | 2445 | { | 
|  | 2446 | struct wireless_dev *wdev; | 
|  | 2447 | bool ret = false; | 
|  | 2448 |  | 
|  | 2449 | mutex_lock(&rdev->devlist_mtx); | 
|  | 2450 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 2451 | list_for_each_entry(wdev, &rdev->wdev_list, list) { | 
| Felix Fietkau | 46c1dd0 | 2012-06-19 02:50:57 +0200 | [diff] [blame] | 2452 | if (wdev->iftype != NL80211_IFTYPE_AP && | 
|  | 2453 | wdev->iftype != NL80211_IFTYPE_P2P_GO) | 
|  | 2454 | continue; | 
|  | 2455 |  | 
|  | 2456 | if (!wdev->preset_chan) | 
|  | 2457 | continue; | 
|  | 2458 |  | 
|  | 2459 | params->channel = wdev->preset_chan; | 
|  | 2460 | params->channel_type = wdev->preset_chantype; | 
|  | 2461 | ret = true; | 
|  | 2462 | break; | 
|  | 2463 | } | 
|  | 2464 |  | 
|  | 2465 | mutex_unlock(&rdev->devlist_mtx); | 
|  | 2466 |  | 
|  | 2467 | return ret; | 
|  | 2468 | } | 
|  | 2469 |  | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2470 | static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info) | 
|  | 2471 | { | 
|  | 2472 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 2473 | struct net_device *dev = info->user_ptr[1]; | 
|  | 2474 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 2475 | struct cfg80211_ap_settings params; | 
|  | 2476 | int err; | 
|  | 2477 |  | 
|  | 2478 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP && | 
|  | 2479 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) | 
|  | 2480 | return -EOPNOTSUPP; | 
|  | 2481 |  | 
|  | 2482 | if (!rdev->ops->start_ap) | 
|  | 2483 | return -EOPNOTSUPP; | 
|  | 2484 |  | 
|  | 2485 | if (wdev->beacon_interval) | 
|  | 2486 | return -EALREADY; | 
|  | 2487 |  | 
|  | 2488 | memset(¶ms, 0, sizeof(params)); | 
|  | 2489 |  | 
|  | 2490 | /* these are required for START_AP */ | 
|  | 2491 | if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] || | 
|  | 2492 | !info->attrs[NL80211_ATTR_DTIM_PERIOD] || | 
|  | 2493 | !info->attrs[NL80211_ATTR_BEACON_HEAD]) | 
|  | 2494 | return -EINVAL; | 
|  | 2495 |  | 
|  | 2496 | err = nl80211_parse_beacon(info, ¶ms.beacon); | 
|  | 2497 | if (err) | 
|  | 2498 | return err; | 
|  | 2499 |  | 
|  | 2500 | params.beacon_interval = | 
|  | 2501 | nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]); | 
|  | 2502 | params.dtim_period = | 
|  | 2503 | nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]); | 
|  | 2504 |  | 
|  | 2505 | err = cfg80211_validate_beacon_int(rdev, params.beacon_interval); | 
|  | 2506 | if (err) | 
|  | 2507 | return err; | 
|  | 2508 |  | 
|  | 2509 | /* | 
|  | 2510 | * In theory, some of these attributes should be required here | 
|  | 2511 | * but since they were not used when the command was originally | 
|  | 2512 | * added, keep them optional for old user space programs to let | 
|  | 2513 | * them continue to work with drivers that do not need the | 
|  | 2514 | * additional information -- drivers must check! | 
|  | 2515 | */ | 
|  | 2516 | if (info->attrs[NL80211_ATTR_SSID]) { | 
|  | 2517 | params.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]); | 
|  | 2518 | params.ssid_len = | 
|  | 2519 | nla_len(info->attrs[NL80211_ATTR_SSID]); | 
|  | 2520 | if (params.ssid_len == 0 || | 
|  | 2521 | params.ssid_len > IEEE80211_MAX_SSID_LEN) | 
|  | 2522 | return -EINVAL; | 
|  | 2523 | } | 
|  | 2524 |  | 
|  | 2525 | if (info->attrs[NL80211_ATTR_HIDDEN_SSID]) { | 
|  | 2526 | params.hidden_ssid = nla_get_u32( | 
|  | 2527 | info->attrs[NL80211_ATTR_HIDDEN_SSID]); | 
|  | 2528 | if (params.hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE && | 
|  | 2529 | params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_LEN && | 
|  | 2530 | params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_CONTENTS) | 
|  | 2531 | return -EINVAL; | 
|  | 2532 | } | 
|  | 2533 |  | 
|  | 2534 | params.privacy = !!info->attrs[NL80211_ATTR_PRIVACY]; | 
|  | 2535 |  | 
|  | 2536 | if (info->attrs[NL80211_ATTR_AUTH_TYPE]) { | 
|  | 2537 | params.auth_type = nla_get_u32( | 
|  | 2538 | info->attrs[NL80211_ATTR_AUTH_TYPE]); | 
|  | 2539 | if (!nl80211_valid_auth_type(params.auth_type)) | 
|  | 2540 | return -EINVAL; | 
|  | 2541 | } else | 
|  | 2542 | params.auth_type = NL80211_AUTHTYPE_AUTOMATIC; | 
|  | 2543 |  | 
|  | 2544 | err = nl80211_crypto_settings(rdev, info, ¶ms.crypto, | 
|  | 2545 | NL80211_MAX_NR_CIPHER_SUITES); | 
|  | 2546 | if (err) | 
|  | 2547 | return err; | 
|  | 2548 |  | 
| Vasanthakumar Thiagarajan | 1b658f1 | 2012-03-02 15:50:02 +0530 | [diff] [blame] | 2549 | if (info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]) { | 
|  | 2550 | if (!(rdev->wiphy.features & NL80211_FEATURE_INACTIVITY_TIMER)) | 
|  | 2551 | return -EOPNOTSUPP; | 
|  | 2552 | params.inactivity_timeout = nla_get_u16( | 
|  | 2553 | info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]); | 
|  | 2554 | } | 
|  | 2555 |  | 
| Johannes Berg | aa430da | 2012-05-16 23:50:18 +0200 | [diff] [blame] | 2556 | if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) { | 
|  | 2557 | enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT; | 
|  | 2558 |  | 
|  | 2559 | if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE] && | 
|  | 2560 | !nl80211_valid_channel_type(info, &channel_type)) | 
|  | 2561 | return -EINVAL; | 
|  | 2562 |  | 
|  | 2563 | params.channel = rdev_freq_to_chan(rdev, | 
|  | 2564 | nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]), | 
|  | 2565 | channel_type); | 
|  | 2566 | if (!params.channel) | 
|  | 2567 | return -EINVAL; | 
|  | 2568 | params.channel_type = channel_type; | 
|  | 2569 | } else if (wdev->preset_chan) { | 
|  | 2570 | params.channel = wdev->preset_chan; | 
|  | 2571 | params.channel_type = wdev->preset_chantype; | 
| Felix Fietkau | 46c1dd0 | 2012-06-19 02:50:57 +0200 | [diff] [blame] | 2572 | } else if (!nl80211_get_ap_channel(rdev, ¶ms)) | 
| Johannes Berg | aa430da | 2012-05-16 23:50:18 +0200 | [diff] [blame] | 2573 | return -EINVAL; | 
|  | 2574 |  | 
|  | 2575 | if (!cfg80211_can_beacon_sec_chan(&rdev->wiphy, params.channel, | 
|  | 2576 | params.channel_type)) | 
|  | 2577 | return -EINVAL; | 
|  | 2578 |  | 
| Michal Kazior | e4e3245 | 2012-06-29 12:47:08 +0200 | [diff] [blame] | 2579 | mutex_lock(&rdev->devlist_mtx); | 
|  | 2580 | err = cfg80211_can_use_chan(rdev, wdev, params.channel, | 
|  | 2581 | CHAN_MODE_SHARED); | 
|  | 2582 | mutex_unlock(&rdev->devlist_mtx); | 
|  | 2583 |  | 
|  | 2584 | if (err) | 
|  | 2585 | return err; | 
|  | 2586 |  | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2587 | err = rdev->ops->start_ap(&rdev->wiphy, dev, ¶ms); | 
| Felix Fietkau | 46c1dd0 | 2012-06-19 02:50:57 +0200 | [diff] [blame] | 2588 | if (!err) { | 
|  | 2589 | wdev->preset_chan = params.channel; | 
|  | 2590 | wdev->preset_chantype = params.channel_type; | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2591 | wdev->beacon_interval = params.beacon_interval; | 
| Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 2592 | wdev->channel = params.channel; | 
| Felix Fietkau | 46c1dd0 | 2012-06-19 02:50:57 +0200 | [diff] [blame] | 2593 | } | 
| Johannes Berg | 56d1893 | 2011-05-09 18:41:15 +0200 | [diff] [blame] | 2594 | return err; | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2595 | } | 
|  | 2596 |  | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 2597 | static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info) | 
|  | 2598 | { | 
|  | 2599 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 2600 | struct net_device *dev = info->user_ptr[1]; | 
|  | 2601 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 2602 | struct cfg80211_beacon_data params; | 
|  | 2603 | int err; | 
|  | 2604 |  | 
|  | 2605 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP && | 
|  | 2606 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) | 
|  | 2607 | return -EOPNOTSUPP; | 
|  | 2608 |  | 
|  | 2609 | if (!rdev->ops->change_beacon) | 
|  | 2610 | return -EOPNOTSUPP; | 
|  | 2611 |  | 
|  | 2612 | if (!wdev->beacon_interval) | 
|  | 2613 | return -EINVAL; | 
|  | 2614 |  | 
|  | 2615 | err = nl80211_parse_beacon(info, ¶ms); | 
|  | 2616 | if (err) | 
|  | 2617 | return err; | 
|  | 2618 |  | 
|  | 2619 | return rdev->ops->change_beacon(&rdev->wiphy, dev, ¶ms); | 
|  | 2620 | } | 
|  | 2621 |  | 
|  | 2622 | static int nl80211_stop_ap(struct sk_buff *skb, struct genl_info *info) | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2623 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2624 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 2625 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2626 |  | 
| Michal Kazior | 6077178 | 2012-06-29 12:46:56 +0200 | [diff] [blame] | 2627 | return cfg80211_stop_ap(rdev, dev); | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2628 | } | 
|  | 2629 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2630 | static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = { | 
|  | 2631 | [NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG }, | 
|  | 2632 | [NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG }, | 
|  | 2633 | [NL80211_STA_FLAG_WME] = { .type = NLA_FLAG }, | 
| Jouni Malinen | 0e46724 | 2009-05-11 21:57:55 +0300 | [diff] [blame] | 2634 | [NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG }, | 
| Javier Cardona | b39c48f | 2011-04-07 15:08:30 -0700 | [diff] [blame] | 2635 | [NL80211_STA_FLAG_AUTHENTICATED] = { .type = NLA_FLAG }, | 
| Johannes Berg | d83023d | 2011-12-14 09:29:15 +0100 | [diff] [blame] | 2636 | [NL80211_STA_FLAG_TDLS_PEER] = { .type = NLA_FLAG }, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2637 | }; | 
|  | 2638 |  | 
| Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 2639 | static int parse_station_flags(struct genl_info *info, | 
| Johannes Berg | bdd3ae3 | 2012-01-02 13:30:03 +0100 | [diff] [blame] | 2640 | enum nl80211_iftype iftype, | 
| Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 2641 | struct station_parameters *params) | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2642 | { | 
|  | 2643 | struct nlattr *flags[NL80211_STA_FLAG_MAX + 1]; | 
| Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 2644 | struct nlattr *nla; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2645 | int flag; | 
|  | 2646 |  | 
| Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 2647 | /* | 
|  | 2648 | * Try parsing the new attribute first so userspace | 
|  | 2649 | * can specify both for older kernels. | 
|  | 2650 | */ | 
|  | 2651 | nla = info->attrs[NL80211_ATTR_STA_FLAGS2]; | 
|  | 2652 | if (nla) { | 
|  | 2653 | struct nl80211_sta_flag_update *sta_flags; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2654 |  | 
| Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 2655 | sta_flags = nla_data(nla); | 
|  | 2656 | params->sta_flags_mask = sta_flags->mask; | 
|  | 2657 | params->sta_flags_set = sta_flags->set; | 
|  | 2658 | if ((params->sta_flags_mask | | 
|  | 2659 | params->sta_flags_set) & BIT(__NL80211_STA_FLAG_INVALID)) | 
|  | 2660 | return -EINVAL; | 
|  | 2661 | return 0; | 
|  | 2662 | } | 
|  | 2663 |  | 
|  | 2664 | /* if present, parse the old attribute */ | 
|  | 2665 |  | 
|  | 2666 | nla = info->attrs[NL80211_ATTR_STA_FLAGS]; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2667 | if (!nla) | 
|  | 2668 | return 0; | 
|  | 2669 |  | 
|  | 2670 | if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX, | 
|  | 2671 | nla, sta_flags_policy)) | 
|  | 2672 | return -EINVAL; | 
|  | 2673 |  | 
| Johannes Berg | bdd3ae3 | 2012-01-02 13:30:03 +0100 | [diff] [blame] | 2674 | /* | 
|  | 2675 | * Only allow certain flags for interface types so that | 
|  | 2676 | * other attributes are silently ignored. Remember that | 
|  | 2677 | * this is backward compatibility code with old userspace | 
|  | 2678 | * and shouldn't be hit in other cases anyway. | 
|  | 2679 | */ | 
|  | 2680 | switch (iftype) { | 
|  | 2681 | case NL80211_IFTYPE_AP: | 
|  | 2682 | case NL80211_IFTYPE_AP_VLAN: | 
|  | 2683 | case NL80211_IFTYPE_P2P_GO: | 
|  | 2684 | params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) | | 
|  | 2685 | BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) | | 
|  | 2686 | BIT(NL80211_STA_FLAG_WME) | | 
|  | 2687 | BIT(NL80211_STA_FLAG_MFP); | 
|  | 2688 | break; | 
|  | 2689 | case NL80211_IFTYPE_P2P_CLIENT: | 
|  | 2690 | case NL80211_IFTYPE_STATION: | 
|  | 2691 | params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) | | 
|  | 2692 | BIT(NL80211_STA_FLAG_TDLS_PEER); | 
|  | 2693 | break; | 
|  | 2694 | case NL80211_IFTYPE_MESH_POINT: | 
|  | 2695 | params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHENTICATED) | | 
|  | 2696 | BIT(NL80211_STA_FLAG_MFP) | | 
|  | 2697 | BIT(NL80211_STA_FLAG_AUTHORIZED); | 
|  | 2698 | default: | 
|  | 2699 | return -EINVAL; | 
|  | 2700 | } | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2701 |  | 
| Johannes Berg | 3383b5a | 2012-05-10 20:14:43 +0200 | [diff] [blame] | 2702 | for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) { | 
|  | 2703 | if (flags[flag]) { | 
| Johannes Berg | eccb8e8 | 2009-05-11 21:57:56 +0300 | [diff] [blame] | 2704 | params->sta_flags_set |= (1<<flag); | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2705 |  | 
| Johannes Berg | 3383b5a | 2012-05-10 20:14:43 +0200 | [diff] [blame] | 2706 | /* no longer support new API additions in old API */ | 
|  | 2707 | if (flag > NL80211_STA_FLAG_MAX_OLD_API) | 
|  | 2708 | return -EINVAL; | 
|  | 2709 | } | 
|  | 2710 | } | 
|  | 2711 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2712 | return 0; | 
|  | 2713 | } | 
|  | 2714 |  | 
| Felix Fietkau | c8dcfd8 | 2011-02-27 22:08:00 +0100 | [diff] [blame] | 2715 | static bool nl80211_put_sta_rate(struct sk_buff *msg, struct rate_info *info, | 
|  | 2716 | int attr) | 
|  | 2717 | { | 
|  | 2718 | struct nlattr *rate; | 
| Vladimir Kondratiev | 8eb41c8 | 2012-07-05 14:25:49 +0300 | [diff] [blame] | 2719 | u32 bitrate; | 
|  | 2720 | u16 bitrate_compat; | 
| Felix Fietkau | c8dcfd8 | 2011-02-27 22:08:00 +0100 | [diff] [blame] | 2721 |  | 
|  | 2722 | rate = nla_nest_start(msg, attr); | 
|  | 2723 | if (!rate) | 
|  | 2724 | goto nla_put_failure; | 
|  | 2725 |  | 
|  | 2726 | /* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */ | 
|  | 2727 | bitrate = cfg80211_calculate_bitrate(info); | 
| Vladimir Kondratiev | 8eb41c8 | 2012-07-05 14:25:49 +0300 | [diff] [blame] | 2728 | /* report 16-bit bitrate only if we can */ | 
|  | 2729 | bitrate_compat = bitrate < (1UL << 16) ? bitrate : 0; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2730 | if ((bitrate > 0 && | 
| Vladimir Kondratiev | 8eb41c8 | 2012-07-05 14:25:49 +0300 | [diff] [blame] | 2731 | nla_put_u32(msg, NL80211_RATE_INFO_BITRATE32, bitrate)) || | 
|  | 2732 | (bitrate_compat > 0 && | 
|  | 2733 | nla_put_u16(msg, NL80211_RATE_INFO_BITRATE, bitrate_compat)) || | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2734 | ((info->flags & RATE_INFO_FLAGS_MCS) && | 
|  | 2735 | nla_put_u8(msg, NL80211_RATE_INFO_MCS, info->mcs)) || | 
|  | 2736 | ((info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH) && | 
|  | 2737 | nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH)) || | 
|  | 2738 | ((info->flags & RATE_INFO_FLAGS_SHORT_GI) && | 
|  | 2739 | nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))) | 
|  | 2740 | goto nla_put_failure; | 
| Felix Fietkau | c8dcfd8 | 2011-02-27 22:08:00 +0100 | [diff] [blame] | 2741 |  | 
|  | 2742 | nla_nest_end(msg, rate); | 
|  | 2743 | return true; | 
|  | 2744 |  | 
|  | 2745 | nla_put_failure: | 
|  | 2746 | return false; | 
|  | 2747 | } | 
|  | 2748 |  | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2749 | static int nl80211_send_station(struct sk_buff *msg, u32 pid, u32 seq, | 
| John W. Linville | 66266b3 | 2012-03-15 13:25:41 -0400 | [diff] [blame] | 2750 | int flags, | 
|  | 2751 | struct cfg80211_registered_device *rdev, | 
|  | 2752 | struct net_device *dev, | 
| Johannes Berg | 98b6218 | 2009-12-23 13:15:44 +0100 | [diff] [blame] | 2753 | const u8 *mac_addr, struct station_info *sinfo) | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2754 | { | 
|  | 2755 | void *hdr; | 
| Paul Stewart | f4263c9 | 2011-03-31 09:25:41 -0700 | [diff] [blame] | 2756 | struct nlattr *sinfoattr, *bss_param; | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2757 |  | 
|  | 2758 | hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_STATION); | 
|  | 2759 | if (!hdr) | 
|  | 2760 | return -1; | 
|  | 2761 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2762 | if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) || | 
|  | 2763 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) || | 
|  | 2764 | nla_put_u32(msg, NL80211_ATTR_GENERATION, sinfo->generation)) | 
|  | 2765 | goto nla_put_failure; | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 2766 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2767 | sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO); | 
|  | 2768 | if (!sinfoattr) | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2769 | goto nla_put_failure; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2770 | if ((sinfo->filled & STATION_INFO_CONNECTED_TIME) && | 
|  | 2771 | nla_put_u32(msg, NL80211_STA_INFO_CONNECTED_TIME, | 
|  | 2772 | sinfo->connected_time)) | 
|  | 2773 | goto nla_put_failure; | 
|  | 2774 | if ((sinfo->filled & STATION_INFO_INACTIVE_TIME) && | 
|  | 2775 | nla_put_u32(msg, NL80211_STA_INFO_INACTIVE_TIME, | 
|  | 2776 | sinfo->inactive_time)) | 
|  | 2777 | goto nla_put_failure; | 
|  | 2778 | if ((sinfo->filled & STATION_INFO_RX_BYTES) && | 
|  | 2779 | nla_put_u32(msg, NL80211_STA_INFO_RX_BYTES, | 
|  | 2780 | sinfo->rx_bytes)) | 
|  | 2781 | goto nla_put_failure; | 
|  | 2782 | if ((sinfo->filled & STATION_INFO_TX_BYTES) && | 
|  | 2783 | nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES, | 
|  | 2784 | sinfo->tx_bytes)) | 
|  | 2785 | goto nla_put_failure; | 
|  | 2786 | if ((sinfo->filled & STATION_INFO_LLID) && | 
|  | 2787 | nla_put_u16(msg, NL80211_STA_INFO_LLID, sinfo->llid)) | 
|  | 2788 | goto nla_put_failure; | 
|  | 2789 | if ((sinfo->filled & STATION_INFO_PLID) && | 
|  | 2790 | nla_put_u16(msg, NL80211_STA_INFO_PLID, sinfo->plid)) | 
|  | 2791 | goto nla_put_failure; | 
|  | 2792 | if ((sinfo->filled & STATION_INFO_PLINK_STATE) && | 
|  | 2793 | nla_put_u8(msg, NL80211_STA_INFO_PLINK_STATE, | 
|  | 2794 | sinfo->plink_state)) | 
|  | 2795 | goto nla_put_failure; | 
| John W. Linville | 66266b3 | 2012-03-15 13:25:41 -0400 | [diff] [blame] | 2796 | switch (rdev->wiphy.signal_type) { | 
|  | 2797 | case CFG80211_SIGNAL_TYPE_MBM: | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2798 | if ((sinfo->filled & STATION_INFO_SIGNAL) && | 
|  | 2799 | nla_put_u8(msg, NL80211_STA_INFO_SIGNAL, | 
|  | 2800 | sinfo->signal)) | 
|  | 2801 | goto nla_put_failure; | 
|  | 2802 | if ((sinfo->filled & STATION_INFO_SIGNAL_AVG) && | 
|  | 2803 | nla_put_u8(msg, NL80211_STA_INFO_SIGNAL_AVG, | 
|  | 2804 | sinfo->signal_avg)) | 
|  | 2805 | goto nla_put_failure; | 
| John W. Linville | 66266b3 | 2012-03-15 13:25:41 -0400 | [diff] [blame] | 2806 | break; | 
|  | 2807 | default: | 
|  | 2808 | break; | 
|  | 2809 | } | 
| Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 2810 | if (sinfo->filled & STATION_INFO_TX_BITRATE) { | 
| Felix Fietkau | c8dcfd8 | 2011-02-27 22:08:00 +0100 | [diff] [blame] | 2811 | if (!nl80211_put_sta_rate(msg, &sinfo->txrate, | 
|  | 2812 | NL80211_STA_INFO_TX_BITRATE)) | 
| Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 2813 | goto nla_put_failure; | 
| Felix Fietkau | c8dcfd8 | 2011-02-27 22:08:00 +0100 | [diff] [blame] | 2814 | } | 
|  | 2815 | if (sinfo->filled & STATION_INFO_RX_BITRATE) { | 
|  | 2816 | if (!nl80211_put_sta_rate(msg, &sinfo->rxrate, | 
|  | 2817 | NL80211_STA_INFO_RX_BITRATE)) | 
|  | 2818 | goto nla_put_failure; | 
| Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 2819 | } | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2820 | if ((sinfo->filled & STATION_INFO_RX_PACKETS) && | 
|  | 2821 | nla_put_u32(msg, NL80211_STA_INFO_RX_PACKETS, | 
|  | 2822 | sinfo->rx_packets)) | 
|  | 2823 | goto nla_put_failure; | 
|  | 2824 | if ((sinfo->filled & STATION_INFO_TX_PACKETS) && | 
|  | 2825 | nla_put_u32(msg, NL80211_STA_INFO_TX_PACKETS, | 
|  | 2826 | sinfo->tx_packets)) | 
|  | 2827 | goto nla_put_failure; | 
|  | 2828 | if ((sinfo->filled & STATION_INFO_TX_RETRIES) && | 
|  | 2829 | nla_put_u32(msg, NL80211_STA_INFO_TX_RETRIES, | 
|  | 2830 | sinfo->tx_retries)) | 
|  | 2831 | goto nla_put_failure; | 
|  | 2832 | if ((sinfo->filled & STATION_INFO_TX_FAILED) && | 
|  | 2833 | nla_put_u32(msg, NL80211_STA_INFO_TX_FAILED, | 
|  | 2834 | sinfo->tx_failed)) | 
|  | 2835 | goto nla_put_failure; | 
|  | 2836 | if ((sinfo->filled & STATION_INFO_BEACON_LOSS_COUNT) && | 
|  | 2837 | nla_put_u32(msg, NL80211_STA_INFO_BEACON_LOSS, | 
|  | 2838 | sinfo->beacon_loss_count)) | 
|  | 2839 | goto nla_put_failure; | 
| Paul Stewart | f4263c9 | 2011-03-31 09:25:41 -0700 | [diff] [blame] | 2840 | if (sinfo->filled & STATION_INFO_BSS_PARAM) { | 
|  | 2841 | bss_param = nla_nest_start(msg, NL80211_STA_INFO_BSS_PARAM); | 
|  | 2842 | if (!bss_param) | 
|  | 2843 | goto nla_put_failure; | 
|  | 2844 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2845 | if (((sinfo->bss_param.flags & BSS_PARAM_FLAGS_CTS_PROT) && | 
|  | 2846 | nla_put_flag(msg, NL80211_STA_BSS_PARAM_CTS_PROT)) || | 
|  | 2847 | ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_PREAMBLE) && | 
|  | 2848 | nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_PREAMBLE)) || | 
|  | 2849 | ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_SLOT_TIME) && | 
|  | 2850 | nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME)) || | 
|  | 2851 | nla_put_u8(msg, NL80211_STA_BSS_PARAM_DTIM_PERIOD, | 
|  | 2852 | sinfo->bss_param.dtim_period) || | 
|  | 2853 | nla_put_u16(msg, NL80211_STA_BSS_PARAM_BEACON_INTERVAL, | 
|  | 2854 | sinfo->bss_param.beacon_interval)) | 
|  | 2855 | goto nla_put_failure; | 
| Paul Stewart | f4263c9 | 2011-03-31 09:25:41 -0700 | [diff] [blame] | 2856 |  | 
|  | 2857 | nla_nest_end(msg, bss_param); | 
|  | 2858 | } | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2859 | if ((sinfo->filled & STATION_INFO_STA_FLAGS) && | 
|  | 2860 | nla_put(msg, NL80211_STA_INFO_STA_FLAGS, | 
|  | 2861 | sizeof(struct nl80211_sta_flag_update), | 
|  | 2862 | &sinfo->sta_flags)) | 
|  | 2863 | goto nla_put_failure; | 
| John W. Linville | 7eab0f6 | 2012-04-12 14:25:14 -0400 | [diff] [blame] | 2864 | if ((sinfo->filled & STATION_INFO_T_OFFSET) && | 
|  | 2865 | nla_put_u64(msg, NL80211_STA_INFO_T_OFFSET, | 
|  | 2866 | sinfo->t_offset)) | 
|  | 2867 | goto nla_put_failure; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2868 | nla_nest_end(msg, sinfoattr); | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2869 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 2870 | if ((sinfo->filled & STATION_INFO_ASSOC_REQ_IES) && | 
|  | 2871 | nla_put(msg, NL80211_ATTR_IE, sinfo->assoc_req_ies_len, | 
|  | 2872 | sinfo->assoc_req_ies)) | 
|  | 2873 | goto nla_put_failure; | 
| Jouni Malinen | 50d3dfb | 2011-08-08 12:11:52 +0300 | [diff] [blame] | 2874 |  | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2875 | return genlmsg_end(msg, hdr); | 
|  | 2876 |  | 
|  | 2877 | nla_put_failure: | 
| Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 2878 | genlmsg_cancel(msg, hdr); | 
|  | 2879 | return -EMSGSIZE; | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2880 | } | 
|  | 2881 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2882 | static int nl80211_dump_station(struct sk_buff *skb, | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2883 | struct netlink_callback *cb) | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2884 | { | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2885 | struct station_info sinfo; | 
|  | 2886 | struct cfg80211_registered_device *dev; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2887 | struct net_device *netdev; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2888 | u8 mac_addr[ETH_ALEN]; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2889 | int sta_idx = cb->args[1]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2890 | int err; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2891 |  | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 2892 | err = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev); | 
|  | 2893 | if (err) | 
|  | 2894 | return err; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2895 |  | 
|  | 2896 | if (!dev->ops->dump_station) { | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 2897 | err = -EOPNOTSUPP; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2898 | goto out_err; | 
|  | 2899 | } | 
|  | 2900 |  | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2901 | while (1) { | 
| Jouni Malinen | f612ced | 2011-08-11 11:46:22 +0300 | [diff] [blame] | 2902 | memset(&sinfo, 0, sizeof(sinfo)); | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2903 | err = dev->ops->dump_station(&dev->wiphy, netdev, sta_idx, | 
|  | 2904 | mac_addr, &sinfo); | 
|  | 2905 | if (err == -ENOENT) | 
|  | 2906 | break; | 
|  | 2907 | if (err) | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 2908 | goto out_err; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2909 |  | 
|  | 2910 | if (nl80211_send_station(skb, | 
|  | 2911 | NETLINK_CB(cb->skb).pid, | 
|  | 2912 | cb->nlh->nlmsg_seq, NLM_F_MULTI, | 
| John W. Linville | 66266b3 | 2012-03-15 13:25:41 -0400 | [diff] [blame] | 2913 | dev, netdev, mac_addr, | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2914 | &sinfo) < 0) | 
|  | 2915 | goto out; | 
|  | 2916 |  | 
|  | 2917 | sta_idx++; | 
|  | 2918 | } | 
|  | 2919 |  | 
|  | 2920 |  | 
|  | 2921 | out: | 
|  | 2922 | cb->args[1] = sta_idx; | 
|  | 2923 | err = skb->len; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2924 | out_err: | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 2925 | nl80211_finish_netdev_dump(dev); | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 2926 |  | 
|  | 2927 | return err; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2928 | } | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2929 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2930 | static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info) | 
|  | 2931 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2932 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 2933 | struct net_device *dev = info->user_ptr[1]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2934 | struct station_info sinfo; | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2935 | struct sk_buff *msg; | 
|  | 2936 | u8 *mac_addr = NULL; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2937 | int err; | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2938 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2939 | memset(&sinfo, 0, sizeof(sinfo)); | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2940 |  | 
|  | 2941 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 2942 | return -EINVAL; | 
|  | 2943 |  | 
|  | 2944 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 2945 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2946 | if (!rdev->ops->get_station) | 
|  | 2947 | return -EOPNOTSUPP; | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2948 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 2949 | err = rdev->ops->get_station(&rdev->wiphy, dev, mac_addr, &sinfo); | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2950 | if (err) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2951 | return err; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2952 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 2953 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2954 | if (!msg) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2955 | return -ENOMEM; | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2956 |  | 
|  | 2957 | if (nl80211_send_station(msg, info->snd_pid, info->snd_seq, 0, | 
| John W. Linville | 66266b3 | 2012-03-15 13:25:41 -0400 | [diff] [blame] | 2958 | rdev, dev, mac_addr, &sinfo) < 0) { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2959 | nlmsg_free(msg); | 
|  | 2960 | return -ENOBUFS; | 
|  | 2961 | } | 
| Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 2962 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 2963 | return genlmsg_reply(msg, info); | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2964 | } | 
|  | 2965 |  | 
|  | 2966 | /* | 
| Felix Fietkau | c258d2d | 2009-11-11 17:23:31 +0100 | [diff] [blame] | 2967 | * Get vlan interface making sure it is running and on the right wiphy. | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2968 | */ | 
| Johannes Berg | 80b9989 | 2011-11-18 16:23:01 +0100 | [diff] [blame] | 2969 | static struct net_device *get_vlan(struct genl_info *info, | 
|  | 2970 | struct cfg80211_registered_device *rdev) | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2971 | { | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 2972 | struct nlattr *vlanattr = info->attrs[NL80211_ATTR_STA_VLAN]; | 
| Johannes Berg | 80b9989 | 2011-11-18 16:23:01 +0100 | [diff] [blame] | 2973 | struct net_device *v; | 
|  | 2974 | int ret; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2975 |  | 
| Johannes Berg | 80b9989 | 2011-11-18 16:23:01 +0100 | [diff] [blame] | 2976 | if (!vlanattr) | 
|  | 2977 | return NULL; | 
|  | 2978 |  | 
|  | 2979 | v = dev_get_by_index(genl_info_net(info), nla_get_u32(vlanattr)); | 
|  | 2980 | if (!v) | 
|  | 2981 | return ERR_PTR(-ENODEV); | 
|  | 2982 |  | 
|  | 2983 | if (!v->ieee80211_ptr || v->ieee80211_ptr->wiphy != &rdev->wiphy) { | 
|  | 2984 | ret = -EINVAL; | 
|  | 2985 | goto error; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2986 | } | 
| Johannes Berg | 80b9989 | 2011-11-18 16:23:01 +0100 | [diff] [blame] | 2987 |  | 
|  | 2988 | if (!netif_running(v)) { | 
|  | 2989 | ret = -ENETDOWN; | 
|  | 2990 | goto error; | 
|  | 2991 | } | 
|  | 2992 |  | 
|  | 2993 | return v; | 
|  | 2994 | error: | 
|  | 2995 | dev_put(v); | 
|  | 2996 | return ERR_PTR(ret); | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2997 | } | 
|  | 2998 |  | 
|  | 2999 | static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info) | 
|  | 3000 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3001 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3002 | int err; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3003 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3004 | struct station_parameters params; | 
|  | 3005 | u8 *mac_addr = NULL; | 
|  | 3006 |  | 
|  | 3007 | memset(¶ms, 0, sizeof(params)); | 
|  | 3008 |  | 
|  | 3009 | params.listen_interval = -1; | 
| Javier Cardona | 57cf804 | 2011-05-13 10:45:43 -0700 | [diff] [blame] | 3010 | params.plink_state = -1; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3011 |  | 
|  | 3012 | if (info->attrs[NL80211_ATTR_STA_AID]) | 
|  | 3013 | return -EINVAL; | 
|  | 3014 |  | 
|  | 3015 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 3016 | return -EINVAL; | 
|  | 3017 |  | 
|  | 3018 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 3019 |  | 
|  | 3020 | if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) { | 
|  | 3021 | params.supported_rates = | 
|  | 3022 | nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]); | 
|  | 3023 | params.supported_rates_len = | 
|  | 3024 | nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]); | 
|  | 3025 | } | 
|  | 3026 |  | 
|  | 3027 | if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]) | 
|  | 3028 | params.listen_interval = | 
|  | 3029 | nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]); | 
|  | 3030 |  | 
| Jouni Malinen | 36aedc9 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 3031 | if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) | 
|  | 3032 | params.ht_capa = | 
|  | 3033 | nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]); | 
|  | 3034 |  | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3035 | if (!rdev->ops->change_station) | 
|  | 3036 | return -EOPNOTSUPP; | 
|  | 3037 |  | 
| Johannes Berg | bdd3ae3 | 2012-01-02 13:30:03 +0100 | [diff] [blame] | 3038 | if (parse_station_flags(info, dev->ieee80211_ptr->iftype, ¶ms)) | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3039 | return -EINVAL; | 
|  | 3040 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3041 | if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) | 
|  | 3042 | params.plink_action = | 
|  | 3043 | nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]); | 
|  | 3044 |  | 
| Javier Cardona | 9c3990a | 2011-05-03 16:57:11 -0700 | [diff] [blame] | 3045 | if (info->attrs[NL80211_ATTR_STA_PLINK_STATE]) | 
|  | 3046 | params.plink_state = | 
|  | 3047 | nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_STATE]); | 
|  | 3048 |  | 
| Johannes Berg | a97f442 | 2009-06-18 17:23:43 +0200 | [diff] [blame] | 3049 | switch (dev->ieee80211_ptr->iftype) { | 
|  | 3050 | case NL80211_IFTYPE_AP: | 
|  | 3051 | case NL80211_IFTYPE_AP_VLAN: | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 3052 | case NL80211_IFTYPE_P2P_GO: | 
| Johannes Berg | a97f442 | 2009-06-18 17:23:43 +0200 | [diff] [blame] | 3053 | /* disallow mesh-specific things */ | 
|  | 3054 | if (params.plink_action) | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3055 | return -EINVAL; | 
|  | 3056 |  | 
|  | 3057 | /* TDLS can't be set, ... */ | 
|  | 3058 | if (params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) | 
|  | 3059 | return -EINVAL; | 
|  | 3060 | /* | 
|  | 3061 | * ... but don't bother the driver with it. This works around | 
|  | 3062 | * a hostapd/wpa_supplicant issue -- it always includes the | 
|  | 3063 | * TLDS_PEER flag in the mask even for AP mode. | 
|  | 3064 | */ | 
|  | 3065 | params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER); | 
|  | 3066 |  | 
|  | 3067 | /* accept only the listed bits */ | 
|  | 3068 | if (params.sta_flags_mask & | 
|  | 3069 | ~(BIT(NL80211_STA_FLAG_AUTHORIZED) | | 
|  | 3070 | BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) | | 
|  | 3071 | BIT(NL80211_STA_FLAG_WME) | | 
|  | 3072 | BIT(NL80211_STA_FLAG_MFP))) | 
|  | 3073 | return -EINVAL; | 
|  | 3074 |  | 
|  | 3075 | /* must be last in here for error handling */ | 
|  | 3076 | params.vlan = get_vlan(info, rdev); | 
|  | 3077 | if (IS_ERR(params.vlan)) | 
|  | 3078 | return PTR_ERR(params.vlan); | 
| Johannes Berg | a97f442 | 2009-06-18 17:23:43 +0200 | [diff] [blame] | 3079 | break; | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 3080 | case NL80211_IFTYPE_P2P_CLIENT: | 
| Johannes Berg | a97f442 | 2009-06-18 17:23:43 +0200 | [diff] [blame] | 3081 | case NL80211_IFTYPE_STATION: | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3082 | /* | 
|  | 3083 | * Don't allow userspace to change the TDLS_PEER flag, | 
|  | 3084 | * but silently ignore attempts to change it since we | 
|  | 3085 | * don't have state here to verify that it doesn't try | 
|  | 3086 | * to change the flag. | 
|  | 3087 | */ | 
|  | 3088 | params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER); | 
| Antonio Quartulli | 267335d | 2012-01-31 20:25:47 +0100 | [diff] [blame] | 3089 | /* fall through */ | 
|  | 3090 | case NL80211_IFTYPE_ADHOC: | 
|  | 3091 | /* disallow things sta doesn't support */ | 
|  | 3092 | if (params.plink_action) | 
|  | 3093 | return -EINVAL; | 
|  | 3094 | if (params.ht_capa) | 
|  | 3095 | return -EINVAL; | 
|  | 3096 | if (params.listen_interval >= 0) | 
|  | 3097 | return -EINVAL; | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3098 | /* reject any changes other than AUTHORIZED */ | 
|  | 3099 | if (params.sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED)) | 
|  | 3100 | return -EINVAL; | 
| Johannes Berg | a97f442 | 2009-06-18 17:23:43 +0200 | [diff] [blame] | 3101 | break; | 
|  | 3102 | case NL80211_IFTYPE_MESH_POINT: | 
|  | 3103 | /* disallow things mesh doesn't support */ | 
|  | 3104 | if (params.vlan) | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3105 | return -EINVAL; | 
| Johannes Berg | a97f442 | 2009-06-18 17:23:43 +0200 | [diff] [blame] | 3106 | if (params.ht_capa) | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3107 | return -EINVAL; | 
| Johannes Berg | a97f442 | 2009-06-18 17:23:43 +0200 | [diff] [blame] | 3108 | if (params.listen_interval >= 0) | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3109 | return -EINVAL; | 
|  | 3110 | /* | 
|  | 3111 | * No special handling for TDLS here -- the userspace | 
|  | 3112 | * mesh code doesn't have this bug. | 
|  | 3113 | */ | 
| Javier Cardona | b39c48f | 2011-04-07 15:08:30 -0700 | [diff] [blame] | 3114 | if (params.sta_flags_mask & | 
|  | 3115 | ~(BIT(NL80211_STA_FLAG_AUTHENTICATED) | | 
| Thomas Pedersen | 8429828 | 2011-05-03 16:57:13 -0700 | [diff] [blame] | 3116 | BIT(NL80211_STA_FLAG_MFP) | | 
| Javier Cardona | b39c48f | 2011-04-07 15:08:30 -0700 | [diff] [blame] | 3117 | BIT(NL80211_STA_FLAG_AUTHORIZED))) | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3118 | return -EINVAL; | 
| Johannes Berg | a97f442 | 2009-06-18 17:23:43 +0200 | [diff] [blame] | 3119 | break; | 
|  | 3120 | default: | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3121 | return -EOPNOTSUPP; | 
| Johannes Berg | 034d655 | 2009-05-27 10:35:29 +0200 | [diff] [blame] | 3122 | } | 
|  | 3123 |  | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3124 | /* be aware of params.vlan when changing code here */ | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3125 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 3126 | err = rdev->ops->change_station(&rdev->wiphy, dev, mac_addr, ¶ms); | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3127 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3128 | if (params.vlan) | 
|  | 3129 | dev_put(params.vlan); | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 3130 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3131 | return err; | 
|  | 3132 | } | 
|  | 3133 |  | 
| Eliad Peller | c75786c | 2011-08-23 14:37:46 +0300 | [diff] [blame] | 3134 | static struct nla_policy | 
|  | 3135 | nl80211_sta_wme_policy[NL80211_STA_WME_MAX + 1] __read_mostly = { | 
|  | 3136 | [NL80211_STA_WME_UAPSD_QUEUES] = { .type = NLA_U8 }, | 
|  | 3137 | [NL80211_STA_WME_MAX_SP] = { .type = NLA_U8 }, | 
|  | 3138 | }; | 
|  | 3139 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3140 | static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info) | 
|  | 3141 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3142 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3143 | int err; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3144 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3145 | struct station_parameters params; | 
|  | 3146 | u8 *mac_addr = NULL; | 
|  | 3147 |  | 
|  | 3148 | memset(¶ms, 0, sizeof(params)); | 
|  | 3149 |  | 
|  | 3150 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 3151 | return -EINVAL; | 
|  | 3152 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3153 | if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]) | 
|  | 3154 | return -EINVAL; | 
|  | 3155 |  | 
|  | 3156 | if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) | 
|  | 3157 | return -EINVAL; | 
|  | 3158 |  | 
| Thadeu Lima de Souza Cascardo | 0e956c1 | 2010-02-12 12:34:50 -0200 | [diff] [blame] | 3159 | if (!info->attrs[NL80211_ATTR_STA_AID]) | 
|  | 3160 | return -EINVAL; | 
|  | 3161 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3162 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 3163 | params.supported_rates = | 
|  | 3164 | nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]); | 
|  | 3165 | params.supported_rates_len = | 
|  | 3166 | nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]); | 
|  | 3167 | params.listen_interval = | 
|  | 3168 | nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]); | 
| Johannes Berg | 51b50fb | 2009-05-24 16:42:30 +0200 | [diff] [blame] | 3169 |  | 
| Thadeu Lima de Souza Cascardo | 0e956c1 | 2010-02-12 12:34:50 -0200 | [diff] [blame] | 3170 | params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]); | 
|  | 3171 | if (!params.aid || params.aid > IEEE80211_MAX_AID) | 
|  | 3172 | return -EINVAL; | 
| Johannes Berg | 51b50fb | 2009-05-24 16:42:30 +0200 | [diff] [blame] | 3173 |  | 
| Jouni Malinen | 36aedc9 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 3174 | if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) | 
|  | 3175 | params.ht_capa = | 
|  | 3176 | nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]); | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3177 |  | 
| Javier Cardona | 96b78df | 2011-04-07 15:08:33 -0700 | [diff] [blame] | 3178 | if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) | 
|  | 3179 | params.plink_action = | 
|  | 3180 | nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]); | 
|  | 3181 |  | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3182 | if (!rdev->ops->add_station) | 
|  | 3183 | return -EOPNOTSUPP; | 
|  | 3184 |  | 
| Johannes Berg | bdd3ae3 | 2012-01-02 13:30:03 +0100 | [diff] [blame] | 3185 | if (parse_station_flags(info, dev->ieee80211_ptr->iftype, ¶ms)) | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3186 | return -EINVAL; | 
|  | 3187 |  | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3188 | switch (dev->ieee80211_ptr->iftype) { | 
|  | 3189 | case NL80211_IFTYPE_AP: | 
|  | 3190 | case NL80211_IFTYPE_AP_VLAN: | 
|  | 3191 | case NL80211_IFTYPE_P2P_GO: | 
|  | 3192 | /* parse WME attributes if sta is WME capable */ | 
|  | 3193 | if ((rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) && | 
|  | 3194 | (params.sta_flags_set & BIT(NL80211_STA_FLAG_WME)) && | 
|  | 3195 | info->attrs[NL80211_ATTR_STA_WME]) { | 
|  | 3196 | struct nlattr *tb[NL80211_STA_WME_MAX + 1]; | 
|  | 3197 | struct nlattr *nla; | 
| Eliad Peller | c75786c | 2011-08-23 14:37:46 +0300 | [diff] [blame] | 3198 |  | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3199 | nla = info->attrs[NL80211_ATTR_STA_WME]; | 
|  | 3200 | err = nla_parse_nested(tb, NL80211_STA_WME_MAX, nla, | 
|  | 3201 | nl80211_sta_wme_policy); | 
|  | 3202 | if (err) | 
|  | 3203 | return err; | 
| Eliad Peller | c75786c | 2011-08-23 14:37:46 +0300 | [diff] [blame] | 3204 |  | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3205 | if (tb[NL80211_STA_WME_UAPSD_QUEUES]) | 
|  | 3206 | params.uapsd_queues = | 
|  | 3207 | nla_get_u8(tb[NL80211_STA_WME_UAPSD_QUEUES]); | 
|  | 3208 | if (params.uapsd_queues & | 
|  | 3209 | ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK) | 
|  | 3210 | return -EINVAL; | 
|  | 3211 |  | 
|  | 3212 | if (tb[NL80211_STA_WME_MAX_SP]) | 
|  | 3213 | params.max_sp = | 
|  | 3214 | nla_get_u8(tb[NL80211_STA_WME_MAX_SP]); | 
|  | 3215 |  | 
|  | 3216 | if (params.max_sp & | 
|  | 3217 | ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK) | 
|  | 3218 | return -EINVAL; | 
|  | 3219 |  | 
|  | 3220 | params.sta_modify_mask |= STATION_PARAM_APPLY_UAPSD; | 
|  | 3221 | } | 
|  | 3222 | /* TDLS peers cannot be added */ | 
|  | 3223 | if (params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) | 
| Johannes Berg | 4319e19 | 2011-09-07 11:50:48 +0200 | [diff] [blame] | 3224 | return -EINVAL; | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3225 | /* but don't bother the driver with it */ | 
|  | 3226 | params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER); | 
| Eliad Peller | c75786c | 2011-08-23 14:37:46 +0300 | [diff] [blame] | 3227 |  | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3228 | /* must be last in here for error handling */ | 
|  | 3229 | params.vlan = get_vlan(info, rdev); | 
|  | 3230 | if (IS_ERR(params.vlan)) | 
|  | 3231 | return PTR_ERR(params.vlan); | 
|  | 3232 | break; | 
|  | 3233 | case NL80211_IFTYPE_MESH_POINT: | 
|  | 3234 | /* TDLS peers cannot be added */ | 
|  | 3235 | if (params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) | 
| Johannes Berg | 4319e19 | 2011-09-07 11:50:48 +0200 | [diff] [blame] | 3236 | return -EINVAL; | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3237 | break; | 
|  | 3238 | case NL80211_IFTYPE_STATION: | 
|  | 3239 | /* Only TDLS peers can be added */ | 
|  | 3240 | if (!(params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) | 
|  | 3241 | return -EINVAL; | 
|  | 3242 | /* Can only add if TDLS ... */ | 
|  | 3243 | if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS)) | 
|  | 3244 | return -EOPNOTSUPP; | 
|  | 3245 | /* ... with external setup is supported */ | 
|  | 3246 | if (!(rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP)) | 
|  | 3247 | return -EOPNOTSUPP; | 
|  | 3248 | break; | 
|  | 3249 | default: | 
|  | 3250 | return -EOPNOTSUPP; | 
| Eliad Peller | c75786c | 2011-08-23 14:37:46 +0300 | [diff] [blame] | 3251 | } | 
|  | 3252 |  | 
| Johannes Berg | bdd90d5 | 2011-12-14 12:20:27 +0100 | [diff] [blame] | 3253 | /* be aware of params.vlan when changing code here */ | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3254 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 3255 | err = rdev->ops->add_station(&rdev->wiphy, dev, mac_addr, ¶ms); | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3256 |  | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3257 | if (params.vlan) | 
|  | 3258 | dev_put(params.vlan); | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3259 | return err; | 
|  | 3260 | } | 
|  | 3261 |  | 
|  | 3262 | static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info) | 
|  | 3263 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3264 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 3265 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3266 | u8 *mac_addr = NULL; | 
|  | 3267 |  | 
|  | 3268 | if (info->attrs[NL80211_ATTR_MAC]) | 
|  | 3269 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 3270 |  | 
| Johannes Berg | e80cf85 | 2009-05-11 14:43:13 +0200 | [diff] [blame] | 3271 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP && | 
| Marco Porsch | d5d9de0 | 2010-03-30 10:00:16 +0200 | [diff] [blame] | 3272 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN && | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 3273 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3274 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) | 
|  | 3275 | return -EINVAL; | 
| Johannes Berg | e80cf85 | 2009-05-11 14:43:13 +0200 | [diff] [blame] | 3276 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3277 | if (!rdev->ops->del_station) | 
|  | 3278 | return -EOPNOTSUPP; | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3279 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3280 | return rdev->ops->del_station(&rdev->wiphy, dev, mac_addr); | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 3281 | } | 
|  | 3282 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3283 | static int nl80211_send_mpath(struct sk_buff *msg, u32 pid, u32 seq, | 
|  | 3284 | int flags, struct net_device *dev, | 
|  | 3285 | u8 *dst, u8 *next_hop, | 
|  | 3286 | struct mpath_info *pinfo) | 
|  | 3287 | { | 
|  | 3288 | void *hdr; | 
|  | 3289 | struct nlattr *pinfoattr; | 
|  | 3290 |  | 
|  | 3291 | hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_STATION); | 
|  | 3292 | if (!hdr) | 
|  | 3293 | return -1; | 
|  | 3294 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 3295 | if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) || | 
|  | 3296 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, dst) || | 
|  | 3297 | nla_put(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop) || | 
|  | 3298 | nla_put_u32(msg, NL80211_ATTR_GENERATION, pinfo->generation)) | 
|  | 3299 | goto nla_put_failure; | 
| Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 3300 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3301 | pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO); | 
|  | 3302 | if (!pinfoattr) | 
|  | 3303 | goto nla_put_failure; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 3304 | if ((pinfo->filled & MPATH_INFO_FRAME_QLEN) && | 
|  | 3305 | nla_put_u32(msg, NL80211_MPATH_INFO_FRAME_QLEN, | 
|  | 3306 | pinfo->frame_qlen)) | 
|  | 3307 | goto nla_put_failure; | 
|  | 3308 | if (((pinfo->filled & MPATH_INFO_SN) && | 
|  | 3309 | nla_put_u32(msg, NL80211_MPATH_INFO_SN, pinfo->sn)) || | 
|  | 3310 | ((pinfo->filled & MPATH_INFO_METRIC) && | 
|  | 3311 | nla_put_u32(msg, NL80211_MPATH_INFO_METRIC, | 
|  | 3312 | pinfo->metric)) || | 
|  | 3313 | ((pinfo->filled & MPATH_INFO_EXPTIME) && | 
|  | 3314 | nla_put_u32(msg, NL80211_MPATH_INFO_EXPTIME, | 
|  | 3315 | pinfo->exptime)) || | 
|  | 3316 | ((pinfo->filled & MPATH_INFO_FLAGS) && | 
|  | 3317 | nla_put_u8(msg, NL80211_MPATH_INFO_FLAGS, | 
|  | 3318 | pinfo->flags)) || | 
|  | 3319 | ((pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT) && | 
|  | 3320 | nla_put_u32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT, | 
|  | 3321 | pinfo->discovery_timeout)) || | 
|  | 3322 | ((pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES) && | 
|  | 3323 | nla_put_u8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES, | 
|  | 3324 | pinfo->discovery_retries))) | 
|  | 3325 | goto nla_put_failure; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3326 |  | 
|  | 3327 | nla_nest_end(msg, pinfoattr); | 
|  | 3328 |  | 
|  | 3329 | return genlmsg_end(msg, hdr); | 
|  | 3330 |  | 
|  | 3331 | nla_put_failure: | 
| Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 3332 | genlmsg_cancel(msg, hdr); | 
|  | 3333 | return -EMSGSIZE; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3334 | } | 
|  | 3335 |  | 
|  | 3336 | static int nl80211_dump_mpath(struct sk_buff *skb, | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3337 | struct netlink_callback *cb) | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3338 | { | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3339 | struct mpath_info pinfo; | 
|  | 3340 | struct cfg80211_registered_device *dev; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3341 | struct net_device *netdev; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3342 | u8 dst[ETH_ALEN]; | 
|  | 3343 | u8 next_hop[ETH_ALEN]; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3344 | int path_idx = cb->args[1]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3345 | int err; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3346 |  | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 3347 | err = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev); | 
|  | 3348 | if (err) | 
|  | 3349 | return err; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3350 |  | 
|  | 3351 | if (!dev->ops->dump_mpath) { | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 3352 | err = -EOPNOTSUPP; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3353 | goto out_err; | 
|  | 3354 | } | 
|  | 3355 |  | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 3356 | if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) { | 
|  | 3357 | err = -EOPNOTSUPP; | 
| Roel Kluin | 0448b5f | 2009-08-22 21:15:49 +0200 | [diff] [blame] | 3358 | goto out_err; | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 3359 | } | 
|  | 3360 |  | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3361 | while (1) { | 
|  | 3362 | err = dev->ops->dump_mpath(&dev->wiphy, netdev, path_idx, | 
|  | 3363 | dst, next_hop, &pinfo); | 
|  | 3364 | if (err == -ENOENT) | 
|  | 3365 | break; | 
|  | 3366 | if (err) | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 3367 | goto out_err; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3368 |  | 
|  | 3369 | if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).pid, | 
|  | 3370 | cb->nlh->nlmsg_seq, NLM_F_MULTI, | 
|  | 3371 | netdev, dst, next_hop, | 
|  | 3372 | &pinfo) < 0) | 
|  | 3373 | goto out; | 
|  | 3374 |  | 
|  | 3375 | path_idx++; | 
|  | 3376 | } | 
|  | 3377 |  | 
|  | 3378 |  | 
|  | 3379 | out: | 
|  | 3380 | cb->args[1] = path_idx; | 
|  | 3381 | err = skb->len; | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3382 | out_err: | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 3383 | nl80211_finish_netdev_dump(dev); | 
| Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 3384 | return err; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3385 | } | 
|  | 3386 |  | 
|  | 3387 | static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info) | 
|  | 3388 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3389 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3390 | int err; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3391 | struct net_device *dev = info->user_ptr[1]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3392 | struct mpath_info pinfo; | 
|  | 3393 | struct sk_buff *msg; | 
|  | 3394 | u8 *dst = NULL; | 
|  | 3395 | u8 next_hop[ETH_ALEN]; | 
|  | 3396 |  | 
|  | 3397 | memset(&pinfo, 0, sizeof(pinfo)); | 
|  | 3398 |  | 
|  | 3399 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 3400 | return -EINVAL; | 
|  | 3401 |  | 
|  | 3402 | dst = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 3403 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3404 | if (!rdev->ops->get_mpath) | 
|  | 3405 | return -EOPNOTSUPP; | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 3406 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3407 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) | 
|  | 3408 | return -EOPNOTSUPP; | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 3409 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 3410 | err = rdev->ops->get_mpath(&rdev->wiphy, dev, dst, next_hop, &pinfo); | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3411 | if (err) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3412 | return err; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3413 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 3414 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3415 | if (!msg) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3416 | return -ENOMEM; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3417 |  | 
|  | 3418 | if (nl80211_send_mpath(msg, info->snd_pid, info->snd_seq, 0, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3419 | dev, dst, next_hop, &pinfo) < 0) { | 
|  | 3420 | nlmsg_free(msg); | 
|  | 3421 | return -ENOBUFS; | 
|  | 3422 | } | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3423 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3424 | return genlmsg_reply(msg, info); | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3425 | } | 
|  | 3426 |  | 
|  | 3427 | static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info) | 
|  | 3428 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3429 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 3430 | struct net_device *dev = info->user_ptr[1]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3431 | u8 *dst = NULL; | 
|  | 3432 | u8 *next_hop = NULL; | 
|  | 3433 |  | 
|  | 3434 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 3435 | return -EINVAL; | 
|  | 3436 |  | 
|  | 3437 | if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]) | 
|  | 3438 | return -EINVAL; | 
|  | 3439 |  | 
|  | 3440 | dst = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 3441 | next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]); | 
|  | 3442 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3443 | if (!rdev->ops->change_mpath) | 
|  | 3444 | return -EOPNOTSUPP; | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 3445 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3446 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) | 
|  | 3447 | return -EOPNOTSUPP; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3448 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3449 | return rdev->ops->change_mpath(&rdev->wiphy, dev, dst, next_hop); | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3450 | } | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3451 |  | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3452 | static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info) | 
|  | 3453 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3454 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 3455 | struct net_device *dev = info->user_ptr[1]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3456 | u8 *dst = NULL; | 
|  | 3457 | u8 *next_hop = NULL; | 
|  | 3458 |  | 
|  | 3459 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 3460 | return -EINVAL; | 
|  | 3461 |  | 
|  | 3462 | if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]) | 
|  | 3463 | return -EINVAL; | 
|  | 3464 |  | 
|  | 3465 | dst = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 3466 | next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]); | 
|  | 3467 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3468 | if (!rdev->ops->add_mpath) | 
|  | 3469 | return -EOPNOTSUPP; | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 3470 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3471 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) | 
|  | 3472 | return -EOPNOTSUPP; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3473 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3474 | return rdev->ops->add_mpath(&rdev->wiphy, dev, dst, next_hop); | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3475 | } | 
|  | 3476 |  | 
|  | 3477 | static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info) | 
|  | 3478 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3479 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 3480 | struct net_device *dev = info->user_ptr[1]; | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3481 | u8 *dst = NULL; | 
|  | 3482 |  | 
|  | 3483 | if (info->attrs[NL80211_ATTR_MAC]) | 
|  | 3484 | dst = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 3485 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3486 | if (!rdev->ops->del_mpath) | 
|  | 3487 | return -EOPNOTSUPP; | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 3488 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3489 | return rdev->ops->del_mpath(&rdev->wiphy, dev, dst); | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 3490 | } | 
|  | 3491 |  | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 3492 | static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info) | 
|  | 3493 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3494 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 3495 | struct net_device *dev = info->user_ptr[1]; | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 3496 | struct bss_parameters params; | 
|  | 3497 |  | 
|  | 3498 | memset(¶ms, 0, sizeof(params)); | 
|  | 3499 | /* default to not changing parameters */ | 
|  | 3500 | params.use_cts_prot = -1; | 
|  | 3501 | params.use_short_preamble = -1; | 
|  | 3502 | params.use_short_slot_time = -1; | 
| Felix Fietkau | fd8aaaf | 2010-04-27 01:23:35 +0200 | [diff] [blame] | 3503 | params.ap_isolate = -1; | 
| Helmut Schaa | 50b12f5 | 2010-11-19 12:40:25 +0100 | [diff] [blame] | 3504 | params.ht_opmode = -1; | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 3505 |  | 
|  | 3506 | if (info->attrs[NL80211_ATTR_BSS_CTS_PROT]) | 
|  | 3507 | params.use_cts_prot = | 
|  | 3508 | nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]); | 
|  | 3509 | if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]) | 
|  | 3510 | params.use_short_preamble = | 
|  | 3511 | nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]); | 
|  | 3512 | if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]) | 
|  | 3513 | params.use_short_slot_time = | 
|  | 3514 | nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]); | 
| Jouni Malinen | 90c97a0 | 2008-10-30 16:59:22 +0200 | [diff] [blame] | 3515 | if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) { | 
|  | 3516 | params.basic_rates = | 
|  | 3517 | nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]); | 
|  | 3518 | params.basic_rates_len = | 
|  | 3519 | nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]); | 
|  | 3520 | } | 
| Felix Fietkau | fd8aaaf | 2010-04-27 01:23:35 +0200 | [diff] [blame] | 3521 | if (info->attrs[NL80211_ATTR_AP_ISOLATE]) | 
|  | 3522 | params.ap_isolate = !!nla_get_u8(info->attrs[NL80211_ATTR_AP_ISOLATE]); | 
| Helmut Schaa | 50b12f5 | 2010-11-19 12:40:25 +0100 | [diff] [blame] | 3523 | if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE]) | 
|  | 3524 | params.ht_opmode = | 
|  | 3525 | nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]); | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 3526 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3527 | if (!rdev->ops->change_bss) | 
|  | 3528 | return -EOPNOTSUPP; | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 3529 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 3530 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3531 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) | 
|  | 3532 | return -EOPNOTSUPP; | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 3533 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3534 | return rdev->ops->change_bss(&rdev->wiphy, dev, ¶ms); | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 3535 | } | 
|  | 3536 |  | 
| Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 3537 | static const struct nla_policy reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = { | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 3538 | [NL80211_ATTR_REG_RULE_FLAGS]		= { .type = NLA_U32 }, | 
|  | 3539 | [NL80211_ATTR_FREQ_RANGE_START]		= { .type = NLA_U32 }, | 
|  | 3540 | [NL80211_ATTR_FREQ_RANGE_END]		= { .type = NLA_U32 }, | 
|  | 3541 | [NL80211_ATTR_FREQ_RANGE_MAX_BW]	= { .type = NLA_U32 }, | 
|  | 3542 | [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]	= { .type = NLA_U32 }, | 
|  | 3543 | [NL80211_ATTR_POWER_RULE_MAX_EIRP]	= { .type = NLA_U32 }, | 
|  | 3544 | }; | 
|  | 3545 |  | 
|  | 3546 | static int parse_reg_rule(struct nlattr *tb[], | 
|  | 3547 | struct ieee80211_reg_rule *reg_rule) | 
|  | 3548 | { | 
|  | 3549 | struct ieee80211_freq_range *freq_range = ®_rule->freq_range; | 
|  | 3550 | struct ieee80211_power_rule *power_rule = ®_rule->power_rule; | 
|  | 3551 |  | 
|  | 3552 | if (!tb[NL80211_ATTR_REG_RULE_FLAGS]) | 
|  | 3553 | return -EINVAL; | 
|  | 3554 | if (!tb[NL80211_ATTR_FREQ_RANGE_START]) | 
|  | 3555 | return -EINVAL; | 
|  | 3556 | if (!tb[NL80211_ATTR_FREQ_RANGE_END]) | 
|  | 3557 | return -EINVAL; | 
|  | 3558 | if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) | 
|  | 3559 | return -EINVAL; | 
|  | 3560 | if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]) | 
|  | 3561 | return -EINVAL; | 
|  | 3562 |  | 
|  | 3563 | reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]); | 
|  | 3564 |  | 
|  | 3565 | freq_range->start_freq_khz = | 
|  | 3566 | nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]); | 
|  | 3567 | freq_range->end_freq_khz = | 
|  | 3568 | nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]); | 
|  | 3569 | freq_range->max_bandwidth_khz = | 
|  | 3570 | nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]); | 
|  | 3571 |  | 
|  | 3572 | power_rule->max_eirp = | 
|  | 3573 | nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]); | 
|  | 3574 |  | 
|  | 3575 | if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]) | 
|  | 3576 | power_rule->max_antenna_gain = | 
|  | 3577 | nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]); | 
|  | 3578 |  | 
|  | 3579 | return 0; | 
|  | 3580 | } | 
|  | 3581 |  | 
|  | 3582 | static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info) | 
|  | 3583 | { | 
|  | 3584 | int r; | 
|  | 3585 | char *data = NULL; | 
| Luis R. Rodriguez | 57b5ce0 | 2012-07-12 11:49:18 -0700 | [diff] [blame] | 3586 | enum nl80211_user_reg_hint_type user_reg_hint_type; | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 3587 |  | 
| Luis R. Rodriguez | 80778f1 | 2009-02-21 00:04:22 -0500 | [diff] [blame] | 3588 | /* | 
|  | 3589 | * You should only get this when cfg80211 hasn't yet initialized | 
|  | 3590 | * completely when built-in to the kernel right between the time | 
|  | 3591 | * window between nl80211_init() and regulatory_init(), if that is | 
|  | 3592 | * even possible. | 
|  | 3593 | */ | 
|  | 3594 | mutex_lock(&cfg80211_mutex); | 
|  | 3595 | if (unlikely(!cfg80211_regdomain)) { | 
| Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 3596 | mutex_unlock(&cfg80211_mutex); | 
|  | 3597 | return -EINPROGRESS; | 
| Luis R. Rodriguez | 80778f1 | 2009-02-21 00:04:22 -0500 | [diff] [blame] | 3598 | } | 
| Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 3599 | mutex_unlock(&cfg80211_mutex); | 
| Luis R. Rodriguez | 80778f1 | 2009-02-21 00:04:22 -0500 | [diff] [blame] | 3600 |  | 
| Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 3601 | if (!info->attrs[NL80211_ATTR_REG_ALPHA2]) | 
|  | 3602 | return -EINVAL; | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 3603 |  | 
|  | 3604 | data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]); | 
|  | 3605 |  | 
| Luis R. Rodriguez | 57b5ce0 | 2012-07-12 11:49:18 -0700 | [diff] [blame] | 3606 | if (info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE]) | 
|  | 3607 | user_reg_hint_type = | 
|  | 3608 | nla_get_u32(info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE]); | 
|  | 3609 | else | 
|  | 3610 | user_reg_hint_type = NL80211_USER_REG_HINT_USER; | 
|  | 3611 |  | 
|  | 3612 | switch (user_reg_hint_type) { | 
|  | 3613 | case NL80211_USER_REG_HINT_USER: | 
|  | 3614 | case NL80211_USER_REG_HINT_CELL_BASE: | 
|  | 3615 | break; | 
|  | 3616 | default: | 
|  | 3617 | return -EINVAL; | 
|  | 3618 | } | 
|  | 3619 |  | 
|  | 3620 | r = regulatory_hint_user(data, user_reg_hint_type); | 
| Luis R. Rodriguez | fe33eb3 | 2009-02-21 00:04:30 -0500 | [diff] [blame] | 3621 |  | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 3622 | return r; | 
|  | 3623 | } | 
|  | 3624 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3625 | static int nl80211_get_mesh_config(struct sk_buff *skb, | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3626 | struct genl_info *info) | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3627 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3628 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3629 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3630 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 3631 | struct mesh_config cur_params; | 
|  | 3632 | int err = 0; | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3633 | void *hdr; | 
|  | 3634 | struct nlattr *pinfoattr; | 
|  | 3635 | struct sk_buff *msg; | 
|  | 3636 |  | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3637 | if (wdev->iftype != NL80211_IFTYPE_MESH_POINT) | 
|  | 3638 | return -EOPNOTSUPP; | 
|  | 3639 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3640 | if (!rdev->ops->get_mesh_config) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3641 | return -EOPNOTSUPP; | 
| Jouni Malinen | f3f9258 | 2009-03-20 17:57:36 +0200 | [diff] [blame] | 3642 |  | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3643 | wdev_lock(wdev); | 
|  | 3644 | /* If not connected, get default parameters */ | 
|  | 3645 | if (!wdev->mesh_id_len) | 
|  | 3646 | memcpy(&cur_params, &default_mesh_config, sizeof(cur_params)); | 
|  | 3647 | else | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3648 | err = rdev->ops->get_mesh_config(&rdev->wiphy, dev, | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3649 | &cur_params); | 
|  | 3650 | wdev_unlock(wdev); | 
|  | 3651 |  | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3652 | if (err) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3653 | return err; | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3654 |  | 
|  | 3655 | /* Draw up a netlink message to send back */ | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 3656 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3657 | if (!msg) | 
|  | 3658 | return -ENOMEM; | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3659 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3660 | NL80211_CMD_GET_MESH_CONFIG); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3661 | if (!hdr) | 
| Julia Lawall | efe1cf0 | 2011-01-28 15:17:11 +0100 | [diff] [blame] | 3662 | goto out; | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3663 | pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_CONFIG); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3664 | if (!pinfoattr) | 
|  | 3665 | goto nla_put_failure; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 3666 | if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) || | 
|  | 3667 | nla_put_u16(msg, NL80211_MESHCONF_RETRY_TIMEOUT, | 
|  | 3668 | cur_params.dot11MeshRetryTimeout) || | 
|  | 3669 | nla_put_u16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT, | 
|  | 3670 | cur_params.dot11MeshConfirmTimeout) || | 
|  | 3671 | nla_put_u16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT, | 
|  | 3672 | cur_params.dot11MeshHoldingTimeout) || | 
|  | 3673 | nla_put_u16(msg, NL80211_MESHCONF_MAX_PEER_LINKS, | 
|  | 3674 | cur_params.dot11MeshMaxPeerLinks) || | 
|  | 3675 | nla_put_u8(msg, NL80211_MESHCONF_MAX_RETRIES, | 
|  | 3676 | cur_params.dot11MeshMaxRetries) || | 
|  | 3677 | nla_put_u8(msg, NL80211_MESHCONF_TTL, | 
|  | 3678 | cur_params.dot11MeshTTL) || | 
|  | 3679 | nla_put_u8(msg, NL80211_MESHCONF_ELEMENT_TTL, | 
|  | 3680 | cur_params.element_ttl) || | 
|  | 3681 | nla_put_u8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS, | 
|  | 3682 | cur_params.auto_open_plinks) || | 
| John W. Linville | 7eab0f6 | 2012-04-12 14:25:14 -0400 | [diff] [blame] | 3683 | nla_put_u32(msg, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, | 
|  | 3684 | cur_params.dot11MeshNbrOffsetMaxNeighbor) || | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 3685 | nla_put_u8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, | 
|  | 3686 | cur_params.dot11MeshHWMPmaxPREQretries) || | 
|  | 3687 | nla_put_u32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME, | 
|  | 3688 | cur_params.path_refresh_time) || | 
|  | 3689 | nla_put_u16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, | 
|  | 3690 | cur_params.min_discovery_timeout) || | 
|  | 3691 | nla_put_u32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, | 
|  | 3692 | cur_params.dot11MeshHWMPactivePathTimeout) || | 
|  | 3693 | nla_put_u16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, | 
|  | 3694 | cur_params.dot11MeshHWMPpreqMinInterval) || | 
|  | 3695 | nla_put_u16(msg, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, | 
|  | 3696 | cur_params.dot11MeshHWMPperrMinInterval) || | 
|  | 3697 | nla_put_u16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, | 
|  | 3698 | cur_params.dot11MeshHWMPnetDiameterTraversalTime) || | 
|  | 3699 | nla_put_u8(msg, NL80211_MESHCONF_HWMP_ROOTMODE, | 
|  | 3700 | cur_params.dot11MeshHWMPRootMode) || | 
|  | 3701 | nla_put_u16(msg, NL80211_MESHCONF_HWMP_RANN_INTERVAL, | 
|  | 3702 | cur_params.dot11MeshHWMPRannInterval) || | 
|  | 3703 | nla_put_u8(msg, NL80211_MESHCONF_GATE_ANNOUNCEMENTS, | 
|  | 3704 | cur_params.dot11MeshGateAnnouncementProtocol) || | 
|  | 3705 | nla_put_u8(msg, NL80211_MESHCONF_FORWARDING, | 
|  | 3706 | cur_params.dot11MeshForwarding) || | 
|  | 3707 | nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD, | 
| Ashok Nagarajan | 70c33ea | 2012-04-30 14:20:32 -0700 | [diff] [blame] | 3708 | cur_params.rssi_threshold) || | 
|  | 3709 | nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE, | 
| Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 3710 | cur_params.ht_opmode) || | 
|  | 3711 | nla_put_u32(msg, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, | 
|  | 3712 | cur_params.dot11MeshHWMPactivePathToRootTimeout) || | 
|  | 3713 | nla_put_u16(msg, NL80211_MESHCONF_HWMP_ROOT_INTERVAL, | 
| Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 3714 | cur_params.dot11MeshHWMProotInterval) || | 
|  | 3715 | nla_put_u16(msg, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, | 
|  | 3716 | cur_params.dot11MeshHWMPconfirmationInterval)) | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 3717 | goto nla_put_failure; | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3718 | nla_nest_end(msg, pinfoattr); | 
|  | 3719 | genlmsg_end(msg, hdr); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3720 | return genlmsg_reply(msg, info); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3721 |  | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 3722 | nla_put_failure: | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3723 | genlmsg_cancel(msg, hdr); | 
| Julia Lawall | efe1cf0 | 2011-01-28 15:17:11 +0100 | [diff] [blame] | 3724 | out: | 
| Yuri Ershov | d080e27 | 2010-06-29 15:08:07 +0400 | [diff] [blame] | 3725 | nlmsg_free(msg); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 3726 | return -ENOBUFS; | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3727 | } | 
|  | 3728 |  | 
| Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 3729 | static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] = { | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3730 | [NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 }, | 
|  | 3731 | [NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 }, | 
|  | 3732 | [NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 }, | 
|  | 3733 | [NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 }, | 
|  | 3734 | [NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 }, | 
|  | 3735 | [NL80211_MESHCONF_TTL] = { .type = NLA_U8 }, | 
| Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 3736 | [NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 }, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3737 | [NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 }, | 
| Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 3738 | [NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR] = { .type = NLA_U32 }, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3739 | [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 }, | 
|  | 3740 | [NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 }, | 
|  | 3741 | [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 }, | 
|  | 3742 | [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 }, | 
|  | 3743 | [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 }, | 
| Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 3744 | [NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL] = { .type = NLA_U16 }, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3745 | [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 }, | 
| Javier Cardona | 699403d | 2011-08-09 16:45:09 -0700 | [diff] [blame] | 3746 | [NL80211_MESHCONF_HWMP_ROOTMODE] = { .type = NLA_U8 }, | 
| Javier Cardona | 0507e15 | 2011-08-09 16:45:10 -0700 | [diff] [blame] | 3747 | [NL80211_MESHCONF_HWMP_RANN_INTERVAL] = { .type = NLA_U16 }, | 
| Javier Cardona | 16dd726 | 2011-08-09 16:45:11 -0700 | [diff] [blame] | 3748 | [NL80211_MESHCONF_GATE_ANNOUNCEMENTS] = { .type = NLA_U8 }, | 
| Chun-Yeow Yeoh | 94f9065 | 2012-01-21 01:02:16 +0800 | [diff] [blame] | 3749 | [NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 }, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3750 | [NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 }, | 
|  | 3751 | [NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 }, | 
| Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 3752 | [NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 }, | 
|  | 3753 | [NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 }, | 
| Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 3754 | [NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL] = { .type = NLA_U16 }, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3755 | }; | 
|  | 3756 |  | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3757 | static const struct nla_policy | 
|  | 3758 | nl80211_mesh_setup_params_policy[NL80211_MESH_SETUP_ATTR_MAX+1] = { | 
| Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 3759 | [NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC] = { .type = NLA_U8 }, | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3760 | [NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL] = { .type = NLA_U8 }, | 
|  | 3761 | [NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC] = { .type = NLA_U8 }, | 
| Javier Cardona | 15d5dda | 2011-04-07 15:08:28 -0700 | [diff] [blame] | 3762 | [NL80211_MESH_SETUP_USERSPACE_AUTH] = { .type = NLA_FLAG }, | 
| Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 3763 | [NL80211_MESH_SETUP_IE] = { .type = NLA_BINARY, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3764 | .len = IEEE80211_MAX_DATA_LEN }, | 
| Javier Cardona | b130e5c | 2011-05-03 16:57:07 -0700 | [diff] [blame] | 3765 | [NL80211_MESH_SETUP_USERSPACE_AMPE] = { .type = NLA_FLAG }, | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3766 | }; | 
|  | 3767 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3768 | static int nl80211_parse_mesh_config(struct genl_info *info, | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3769 | struct mesh_config *cfg, | 
|  | 3770 | u32 *mask_out) | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3771 | { | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3772 | struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1]; | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3773 | u32 mask = 0; | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3774 |  | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3775 | #define FILL_IN_MESH_PARAM_IF_SET(table, cfg, param, mask, attr_num, nla_fn) \ | 
|  | 3776 | do {\ | 
|  | 3777 | if (table[attr_num]) {\ | 
|  | 3778 | cfg->param = nla_fn(table[attr_num]); \ | 
|  | 3779 | mask |= (1 << (attr_num - 1)); \ | 
|  | 3780 | } \ | 
|  | 3781 | } while (0);\ | 
|  | 3782 |  | 
|  | 3783 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3784 | if (!info->attrs[NL80211_ATTR_MESH_CONFIG]) | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3785 | return -EINVAL; | 
|  | 3786 | if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX, | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3787 | info->attrs[NL80211_ATTR_MESH_CONFIG], | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3788 | nl80211_meshconf_params_policy)) | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3789 | return -EINVAL; | 
|  | 3790 |  | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3791 | /* This makes sure that there aren't more than 32 mesh config | 
|  | 3792 | * parameters (otherwise our bitfield scheme would not work.) */ | 
|  | 3793 | BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32); | 
|  | 3794 |  | 
|  | 3795 | /* Fill in the params struct */ | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3796 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3797 | mask, NL80211_MESHCONF_RETRY_TIMEOUT, | 
|  | 3798 | nla_get_u16); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3799 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3800 | mask, NL80211_MESHCONF_CONFIRM_TIMEOUT, | 
|  | 3801 | nla_get_u16); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3802 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3803 | mask, NL80211_MESHCONF_HOLDING_TIMEOUT, | 
|  | 3804 | nla_get_u16); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3805 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3806 | mask, NL80211_MESHCONF_MAX_PEER_LINKS, | 
|  | 3807 | nla_get_u16); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3808 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3809 | mask, NL80211_MESHCONF_MAX_RETRIES, | 
|  | 3810 | nla_get_u8); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3811 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3812 | mask, NL80211_MESHCONF_TTL, nla_get_u8); | 
| Javier Cardona | 45904f2 | 2010-12-03 09:20:40 +0100 | [diff] [blame] | 3813 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3814 | mask, NL80211_MESHCONF_ELEMENT_TTL, | 
|  | 3815 | nla_get_u8); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3816 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3817 | mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS, | 
|  | 3818 | nla_get_u8); | 
|  | 3819 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshNbrOffsetMaxNeighbor, mask, | 
|  | 3820 | NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, | 
|  | 3821 | nla_get_u32); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3822 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3823 | mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, | 
|  | 3824 | nla_get_u8); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3825 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3826 | mask, NL80211_MESHCONF_PATH_REFRESH_TIME, | 
|  | 3827 | nla_get_u32); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3828 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3829 | mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, | 
|  | 3830 | nla_get_u16); | 
|  | 3831 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout, mask, | 
|  | 3832 | NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, | 
|  | 3833 | nla_get_u32); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3834 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3835 | mask, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, | 
|  | 3836 | nla_get_u16); | 
| Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 3837 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPperrMinInterval, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3838 | mask, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, | 
|  | 3839 | nla_get_u16); | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3840 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3841 | dot11MeshHWMPnetDiameterTraversalTime, mask, | 
|  | 3842 | NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, | 
|  | 3843 | nla_get_u16); | 
|  | 3844 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRootMode, mask, | 
|  | 3845 | NL80211_MESHCONF_HWMP_ROOTMODE, nla_get_u8); | 
|  | 3846 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRannInterval, mask, | 
|  | 3847 | NL80211_MESHCONF_HWMP_RANN_INTERVAL, | 
|  | 3848 | nla_get_u16); | 
| Rui Paulo | 63c5723 | 2009-11-09 23:46:57 +0000 | [diff] [blame] | 3849 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3850 | dot11MeshGateAnnouncementProtocol, mask, | 
|  | 3851 | NL80211_MESHCONF_GATE_ANNOUNCEMENTS, | 
|  | 3852 | nla_get_u8); | 
| Chun-Yeow Yeoh | 94f9065 | 2012-01-21 01:02:16 +0800 | [diff] [blame] | 3853 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshForwarding, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3854 | mask, NL80211_MESHCONF_FORWARDING, | 
|  | 3855 | nla_get_u8); | 
| Ashok Nagarajan | 5533513 | 2012-02-28 17:04:08 -0800 | [diff] [blame] | 3856 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, rssi_threshold, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3857 | mask, NL80211_MESHCONF_RSSI_THRESHOLD, | 
|  | 3858 | nla_get_u32); | 
| Ashok Nagarajan | 70c33ea | 2012-04-30 14:20:32 -0700 | [diff] [blame] | 3859 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode, | 
| Chun-Yeow Yeoh | a4f606e | 2012-06-11 11:59:36 +0800 | [diff] [blame] | 3860 | mask, NL80211_MESHCONF_HT_OPMODE, | 
|  | 3861 | nla_get_u16); | 
| Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 3862 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout, | 
|  | 3863 | mask, | 
|  | 3864 | NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, | 
|  | 3865 | nla_get_u32); | 
|  | 3866 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval, | 
|  | 3867 | mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL, | 
|  | 3868 | nla_get_u16); | 
| Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 3869 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, | 
|  | 3870 | dot11MeshHWMPconfirmationInterval, mask, | 
|  | 3871 | NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, | 
|  | 3872 | nla_get_u16); | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3873 | if (mask_out) | 
|  | 3874 | *mask_out = mask; | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3875 |  | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3876 | return 0; | 
|  | 3877 |  | 
|  | 3878 | #undef FILL_IN_MESH_PARAM_IF_SET | 
|  | 3879 | } | 
|  | 3880 |  | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3881 | static int nl80211_parse_mesh_setup(struct genl_info *info, | 
|  | 3882 | struct mesh_setup *setup) | 
|  | 3883 | { | 
|  | 3884 | struct nlattr *tb[NL80211_MESH_SETUP_ATTR_MAX + 1]; | 
|  | 3885 |  | 
|  | 3886 | if (!info->attrs[NL80211_ATTR_MESH_SETUP]) | 
|  | 3887 | return -EINVAL; | 
|  | 3888 | if (nla_parse_nested(tb, NL80211_MESH_SETUP_ATTR_MAX, | 
|  | 3889 | info->attrs[NL80211_ATTR_MESH_SETUP], | 
|  | 3890 | nl80211_mesh_setup_params_policy)) | 
|  | 3891 | return -EINVAL; | 
|  | 3892 |  | 
| Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 3893 | if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC]) | 
|  | 3894 | setup->sync_method = | 
|  | 3895 | (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])) ? | 
|  | 3896 | IEEE80211_SYNC_METHOD_VENDOR : | 
|  | 3897 | IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET; | 
|  | 3898 |  | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3899 | if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL]) | 
|  | 3900 | setup->path_sel_proto = | 
|  | 3901 | (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])) ? | 
|  | 3902 | IEEE80211_PATH_PROTOCOL_VENDOR : | 
|  | 3903 | IEEE80211_PATH_PROTOCOL_HWMP; | 
|  | 3904 |  | 
|  | 3905 | if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC]) | 
|  | 3906 | setup->path_metric = | 
|  | 3907 | (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])) ? | 
|  | 3908 | IEEE80211_PATH_METRIC_VENDOR : | 
|  | 3909 | IEEE80211_PATH_METRIC_AIRTIME; | 
|  | 3910 |  | 
| Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 3911 |  | 
|  | 3912 | if (tb[NL80211_MESH_SETUP_IE]) { | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3913 | struct nlattr *ieattr = | 
| Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 3914 | tb[NL80211_MESH_SETUP_IE]; | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3915 | if (!is_valid_ie_attr(ieattr)) | 
|  | 3916 | return -EINVAL; | 
| Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 3917 | setup->ie = nla_data(ieattr); | 
|  | 3918 | setup->ie_len = nla_len(ieattr); | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3919 | } | 
| Javier Cardona | b130e5c | 2011-05-03 16:57:07 -0700 | [diff] [blame] | 3920 | setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]); | 
|  | 3921 | setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]); | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 3922 |  | 
|  | 3923 | return 0; | 
|  | 3924 | } | 
|  | 3925 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3926 | static int nl80211_update_mesh_config(struct sk_buff *skb, | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3927 | struct genl_info *info) | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3928 | { | 
|  | 3929 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 3930 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3931 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3932 | struct mesh_config cfg; | 
|  | 3933 | u32 mask; | 
|  | 3934 | int err; | 
|  | 3935 |  | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3936 | if (wdev->iftype != NL80211_IFTYPE_MESH_POINT) | 
|  | 3937 | return -EOPNOTSUPP; | 
|  | 3938 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3939 | if (!rdev->ops->update_mesh_config) | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3940 | return -EOPNOTSUPP; | 
|  | 3941 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3942 | err = nl80211_parse_mesh_config(info, &cfg, &mask); | 
| Johannes Berg | bd90fdc | 2010-12-03 09:20:43 +0100 | [diff] [blame] | 3943 | if (err) | 
|  | 3944 | return err; | 
|  | 3945 |  | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3946 | wdev_lock(wdev); | 
|  | 3947 | if (!wdev->mesh_id_len) | 
|  | 3948 | err = -ENOLINK; | 
|  | 3949 |  | 
|  | 3950 | if (!err) | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 3951 | err = rdev->ops->update_mesh_config(&rdev->wiphy, dev, | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3952 | mask, &cfg); | 
|  | 3953 |  | 
|  | 3954 | wdev_unlock(wdev); | 
|  | 3955 |  | 
|  | 3956 | return err; | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 3957 | } | 
|  | 3958 |  | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 3959 | static int nl80211_get_reg(struct sk_buff *skb, struct genl_info *info) | 
|  | 3960 | { | 
|  | 3961 | struct sk_buff *msg; | 
|  | 3962 | void *hdr = NULL; | 
|  | 3963 | struct nlattr *nl_reg_rules; | 
|  | 3964 | unsigned int i; | 
|  | 3965 | int err = -EINVAL; | 
|  | 3966 |  | 
| Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 3967 | mutex_lock(&cfg80211_mutex); | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 3968 |  | 
|  | 3969 | if (!cfg80211_regdomain) | 
|  | 3970 | goto out; | 
|  | 3971 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 3972 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 3973 | if (!msg) { | 
|  | 3974 | err = -ENOBUFS; | 
|  | 3975 | goto out; | 
|  | 3976 | } | 
|  | 3977 |  | 
|  | 3978 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, | 
|  | 3979 | NL80211_CMD_GET_REG); | 
|  | 3980 | if (!hdr) | 
| Julia Lawall | efe1cf0 | 2011-01-28 15:17:11 +0100 | [diff] [blame] | 3981 | goto put_failure; | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 3982 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 3983 | if (nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, | 
|  | 3984 | cfg80211_regdomain->alpha2) || | 
|  | 3985 | (cfg80211_regdomain->dfs_region && | 
|  | 3986 | nla_put_u8(msg, NL80211_ATTR_DFS_REGION, | 
|  | 3987 | cfg80211_regdomain->dfs_region))) | 
|  | 3988 | goto nla_put_failure; | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 3989 |  | 
| Luis R. Rodriguez | 57b5ce0 | 2012-07-12 11:49:18 -0700 | [diff] [blame] | 3990 | if (reg_last_request_cell_base() && | 
|  | 3991 | nla_put_u32(msg, NL80211_ATTR_USER_REG_HINT_TYPE, | 
|  | 3992 | NL80211_USER_REG_HINT_CELL_BASE)) | 
|  | 3993 | goto nla_put_failure; | 
|  | 3994 |  | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 3995 | nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES); | 
|  | 3996 | if (!nl_reg_rules) | 
|  | 3997 | goto nla_put_failure; | 
|  | 3998 |  | 
|  | 3999 | for (i = 0; i < cfg80211_regdomain->n_reg_rules; i++) { | 
|  | 4000 | struct nlattr *nl_reg_rule; | 
|  | 4001 | const struct ieee80211_reg_rule *reg_rule; | 
|  | 4002 | const struct ieee80211_freq_range *freq_range; | 
|  | 4003 | const struct ieee80211_power_rule *power_rule; | 
|  | 4004 |  | 
|  | 4005 | reg_rule = &cfg80211_regdomain->reg_rules[i]; | 
|  | 4006 | freq_range = ®_rule->freq_range; | 
|  | 4007 | power_rule = ®_rule->power_rule; | 
|  | 4008 |  | 
|  | 4009 | nl_reg_rule = nla_nest_start(msg, i); | 
|  | 4010 | if (!nl_reg_rule) | 
|  | 4011 | goto nla_put_failure; | 
|  | 4012 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4013 | if (nla_put_u32(msg, NL80211_ATTR_REG_RULE_FLAGS, | 
|  | 4014 | reg_rule->flags) || | 
|  | 4015 | nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_START, | 
|  | 4016 | freq_range->start_freq_khz) || | 
|  | 4017 | nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_END, | 
|  | 4018 | freq_range->end_freq_khz) || | 
|  | 4019 | nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_MAX_BW, | 
|  | 4020 | freq_range->max_bandwidth_khz) || | 
|  | 4021 | nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN, | 
|  | 4022 | power_rule->max_antenna_gain) || | 
|  | 4023 | nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_EIRP, | 
|  | 4024 | power_rule->max_eirp)) | 
|  | 4025 | goto nla_put_failure; | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 4026 |  | 
|  | 4027 | nla_nest_end(msg, nl_reg_rule); | 
|  | 4028 | } | 
|  | 4029 |  | 
|  | 4030 | nla_nest_end(msg, nl_reg_rules); | 
|  | 4031 |  | 
|  | 4032 | genlmsg_end(msg, hdr); | 
| Johannes Berg | 134e637 | 2009-07-10 09:51:34 +0000 | [diff] [blame] | 4033 | err = genlmsg_reply(msg, info); | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 4034 | goto out; | 
|  | 4035 |  | 
|  | 4036 | nla_put_failure: | 
|  | 4037 | genlmsg_cancel(msg, hdr); | 
| Julia Lawall | efe1cf0 | 2011-01-28 15:17:11 +0100 | [diff] [blame] | 4038 | put_failure: | 
| Yuri Ershov | d080e27 | 2010-06-29 15:08:07 +0400 | [diff] [blame] | 4039 | nlmsg_free(msg); | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 4040 | err = -EMSGSIZE; | 
|  | 4041 | out: | 
| Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 4042 | mutex_unlock(&cfg80211_mutex); | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 4043 | return err; | 
|  | 4044 | } | 
|  | 4045 |  | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4046 | static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info) | 
|  | 4047 | { | 
|  | 4048 | struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1]; | 
|  | 4049 | struct nlattr *nl_reg_rule; | 
|  | 4050 | char *alpha2 = NULL; | 
|  | 4051 | int rem_reg_rules = 0, r = 0; | 
|  | 4052 | u32 num_rules = 0, rule_idx = 0, size_of_regd; | 
| Luis R. Rodriguez | 8b60b07 | 2011-10-11 10:59:02 -0700 | [diff] [blame] | 4053 | u8 dfs_region = 0; | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4054 | struct ieee80211_regdomain *rd = NULL; | 
|  | 4055 |  | 
|  | 4056 | if (!info->attrs[NL80211_ATTR_REG_ALPHA2]) | 
|  | 4057 | return -EINVAL; | 
|  | 4058 |  | 
|  | 4059 | if (!info->attrs[NL80211_ATTR_REG_RULES]) | 
|  | 4060 | return -EINVAL; | 
|  | 4061 |  | 
|  | 4062 | alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]); | 
|  | 4063 |  | 
| Luis R. Rodriguez | 8b60b07 | 2011-10-11 10:59:02 -0700 | [diff] [blame] | 4064 | if (info->attrs[NL80211_ATTR_DFS_REGION]) | 
|  | 4065 | dfs_region = nla_get_u8(info->attrs[NL80211_ATTR_DFS_REGION]); | 
|  | 4066 |  | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4067 | nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES], | 
|  | 4068 | rem_reg_rules) { | 
|  | 4069 | num_rules++; | 
|  | 4070 | if (num_rules > NL80211_MAX_SUPP_REG_RULES) | 
| Luis R. Rodriguez | 4776c6e | 2009-05-13 17:04:39 -0400 | [diff] [blame] | 4071 | return -EINVAL; | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4072 | } | 
|  | 4073 |  | 
| Luis R. Rodriguez | 61405e9 | 2009-05-13 17:04:41 -0400 | [diff] [blame] | 4074 | mutex_lock(&cfg80211_mutex); | 
|  | 4075 |  | 
| Luis R. Rodriguez | d0e18f8 | 2009-05-13 17:04:40 -0400 | [diff] [blame] | 4076 | if (!reg_is_valid_request(alpha2)) { | 
|  | 4077 | r = -EINVAL; | 
|  | 4078 | goto bad_reg; | 
|  | 4079 | } | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4080 |  | 
|  | 4081 | size_of_regd = sizeof(struct ieee80211_regdomain) + | 
|  | 4082 | (num_rules * sizeof(struct ieee80211_reg_rule)); | 
|  | 4083 |  | 
|  | 4084 | rd = kzalloc(size_of_regd, GFP_KERNEL); | 
| Luis R. Rodriguez | d0e18f8 | 2009-05-13 17:04:40 -0400 | [diff] [blame] | 4085 | if (!rd) { | 
|  | 4086 | r = -ENOMEM; | 
|  | 4087 | goto bad_reg; | 
|  | 4088 | } | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4089 |  | 
|  | 4090 | rd->n_reg_rules = num_rules; | 
|  | 4091 | rd->alpha2[0] = alpha2[0]; | 
|  | 4092 | rd->alpha2[1] = alpha2[1]; | 
|  | 4093 |  | 
| Luis R. Rodriguez | 8b60b07 | 2011-10-11 10:59:02 -0700 | [diff] [blame] | 4094 | /* | 
|  | 4095 | * Disable DFS master mode if the DFS region was | 
|  | 4096 | * not supported or known on this kernel. | 
|  | 4097 | */ | 
|  | 4098 | if (reg_supported_dfs_region(dfs_region)) | 
|  | 4099 | rd->dfs_region = dfs_region; | 
|  | 4100 |  | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4101 | nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES], | 
|  | 4102 | rem_reg_rules) { | 
|  | 4103 | nla_parse(tb, NL80211_REG_RULE_ATTR_MAX, | 
|  | 4104 | nla_data(nl_reg_rule), nla_len(nl_reg_rule), | 
|  | 4105 | reg_rule_policy); | 
|  | 4106 | r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]); | 
|  | 4107 | if (r) | 
|  | 4108 | goto bad_reg; | 
|  | 4109 |  | 
|  | 4110 | rule_idx++; | 
|  | 4111 |  | 
| Luis R. Rodriguez | d0e18f8 | 2009-05-13 17:04:40 -0400 | [diff] [blame] | 4112 | if (rule_idx > NL80211_MAX_SUPP_REG_RULES) { | 
|  | 4113 | r = -EINVAL; | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4114 | goto bad_reg; | 
| Luis R. Rodriguez | d0e18f8 | 2009-05-13 17:04:40 -0400 | [diff] [blame] | 4115 | } | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4116 | } | 
|  | 4117 |  | 
|  | 4118 | BUG_ON(rule_idx != num_rules); | 
|  | 4119 |  | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4120 | r = set_regdom(rd); | 
| Luis R. Rodriguez | 61405e9 | 2009-05-13 17:04:41 -0400 | [diff] [blame] | 4121 |  | 
| Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 4122 | mutex_unlock(&cfg80211_mutex); | 
| Luis R. Rodriguez | d0e18f8 | 2009-05-13 17:04:40 -0400 | [diff] [blame] | 4123 |  | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4124 | return r; | 
|  | 4125 |  | 
| Johannes Berg | d2372b3 | 2008-10-24 20:32:20 +0200 | [diff] [blame] | 4126 | bad_reg: | 
| Luis R. Rodriguez | 61405e9 | 2009-05-13 17:04:41 -0400 | [diff] [blame] | 4127 | mutex_unlock(&cfg80211_mutex); | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4128 | kfree(rd); | 
| Luis R. Rodriguez | d0e18f8 | 2009-05-13 17:04:40 -0400 | [diff] [blame] | 4129 | return r; | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 4130 | } | 
|  | 4131 |  | 
| Johannes Berg | 83f5e2c | 2009-06-17 17:41:49 +0200 | [diff] [blame] | 4132 | static int validate_scan_freqs(struct nlattr *freqs) | 
|  | 4133 | { | 
|  | 4134 | struct nlattr *attr1, *attr2; | 
|  | 4135 | int n_channels = 0, tmp1, tmp2; | 
|  | 4136 |  | 
|  | 4137 | nla_for_each_nested(attr1, freqs, tmp1) { | 
|  | 4138 | n_channels++; | 
|  | 4139 | /* | 
|  | 4140 | * Some hardware has a limited channel list for | 
|  | 4141 | * scanning, and it is pretty much nonsensical | 
|  | 4142 | * to scan for a channel twice, so disallow that | 
|  | 4143 | * and don't require drivers to check that the | 
|  | 4144 | * channel list they get isn't longer than what | 
|  | 4145 | * they can scan, as long as they can scan all | 
|  | 4146 | * the channels they registered at once. | 
|  | 4147 | */ | 
|  | 4148 | nla_for_each_nested(attr2, freqs, tmp2) | 
|  | 4149 | if (attr1 != attr2 && | 
|  | 4150 | nla_get_u32(attr1) == nla_get_u32(attr2)) | 
|  | 4151 | return 0; | 
|  | 4152 | } | 
|  | 4153 |  | 
|  | 4154 | return n_channels; | 
|  | 4155 | } | 
|  | 4156 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4157 | static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info) | 
|  | 4158 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4159 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 4160 | struct wireless_dev *wdev = info->user_ptr[1]; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4161 | struct cfg80211_scan_request *request; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4162 | struct nlattr *attr; | 
|  | 4163 | struct wiphy *wiphy; | 
| Johannes Berg | 83f5e2c | 2009-06-17 17:41:49 +0200 | [diff] [blame] | 4164 | int err, tmp, n_ssids = 0, n_channels, i; | 
| Jouni Malinen | 70692ad | 2009-02-16 19:39:13 +0200 | [diff] [blame] | 4165 | size_t ie_len; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4166 |  | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 4167 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) | 
|  | 4168 | return -EINVAL; | 
|  | 4169 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 4170 | wiphy = &rdev->wiphy; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4171 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4172 | if (!rdev->ops->scan) | 
|  | 4173 | return -EOPNOTSUPP; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4174 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4175 | if (rdev->scan_req) | 
|  | 4176 | return -EBUSY; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4177 |  | 
|  | 4178 | if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) { | 
| Johannes Berg | 83f5e2c | 2009-06-17 17:41:49 +0200 | [diff] [blame] | 4179 | n_channels = validate_scan_freqs( | 
|  | 4180 | info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4181 | if (!n_channels) | 
|  | 4182 | return -EINVAL; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4183 | } else { | 
| Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 4184 | enum ieee80211_band band; | 
| Johannes Berg | 83f5e2c | 2009-06-17 17:41:49 +0200 | [diff] [blame] | 4185 | n_channels = 0; | 
|  | 4186 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4187 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) | 
|  | 4188 | if (wiphy->bands[band]) | 
|  | 4189 | n_channels += wiphy->bands[band]->n_channels; | 
|  | 4190 | } | 
|  | 4191 |  | 
|  | 4192 | if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) | 
|  | 4193 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) | 
|  | 4194 | n_ssids++; | 
|  | 4195 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4196 | if (n_ssids > wiphy->max_scan_ssids) | 
|  | 4197 | return -EINVAL; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4198 |  | 
| Jouni Malinen | 70692ad | 2009-02-16 19:39:13 +0200 | [diff] [blame] | 4199 | if (info->attrs[NL80211_ATTR_IE]) | 
|  | 4200 | ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
|  | 4201 | else | 
|  | 4202 | ie_len = 0; | 
|  | 4203 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4204 | if (ie_len > wiphy->max_scan_ie_len) | 
|  | 4205 | return -EINVAL; | 
| Johannes Berg | 18a8365 | 2009-03-31 12:12:05 +0200 | [diff] [blame] | 4206 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4207 | request = kzalloc(sizeof(*request) | 
| Luciano Coelho | a2cd43c | 2011-05-18 11:42:03 +0300 | [diff] [blame] | 4208 | + sizeof(*request->ssids) * n_ssids | 
|  | 4209 | + sizeof(*request->channels) * n_channels | 
| Jouni Malinen | 70692ad | 2009-02-16 19:39:13 +0200 | [diff] [blame] | 4210 | + ie_len, GFP_KERNEL); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4211 | if (!request) | 
|  | 4212 | return -ENOMEM; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4213 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4214 | if (n_ssids) | 
| Johannes Berg | 5ba6353 | 2009-08-07 17:54:07 +0200 | [diff] [blame] | 4215 | request->ssids = (void *)&request->channels[n_channels]; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4216 | request->n_ssids = n_ssids; | 
| Jouni Malinen | 70692ad | 2009-02-16 19:39:13 +0200 | [diff] [blame] | 4217 | if (ie_len) { | 
|  | 4218 | if (request->ssids) | 
|  | 4219 | request->ie = (void *)(request->ssids + n_ssids); | 
|  | 4220 | else | 
|  | 4221 | request->ie = (void *)(request->channels + n_channels); | 
|  | 4222 | } | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4223 |  | 
| Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 4224 | i = 0; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4225 | if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) { | 
|  | 4226 | /* user specified, bail out if channel not found */ | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4227 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp) { | 
| Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 4228 | struct ieee80211_channel *chan; | 
|  | 4229 |  | 
|  | 4230 | chan = ieee80211_get_channel(wiphy, nla_get_u32(attr)); | 
|  | 4231 |  | 
|  | 4232 | if (!chan) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4233 | err = -EINVAL; | 
|  | 4234 | goto out_free; | 
|  | 4235 | } | 
| Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 4236 |  | 
|  | 4237 | /* ignore disabled channels */ | 
|  | 4238 | if (chan->flags & IEEE80211_CHAN_DISABLED) | 
|  | 4239 | continue; | 
|  | 4240 |  | 
|  | 4241 | request->channels[i] = chan; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4242 | i++; | 
|  | 4243 | } | 
|  | 4244 | } else { | 
| Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 4245 | enum ieee80211_band band; | 
|  | 4246 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4247 | /* all channels */ | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4248 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | 
|  | 4249 | int j; | 
|  | 4250 | if (!wiphy->bands[band]) | 
|  | 4251 | continue; | 
|  | 4252 | for (j = 0; j < wiphy->bands[band]->n_channels; j++) { | 
| Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 4253 | struct ieee80211_channel *chan; | 
|  | 4254 |  | 
|  | 4255 | chan = &wiphy->bands[band]->channels[j]; | 
|  | 4256 |  | 
|  | 4257 | if (chan->flags & IEEE80211_CHAN_DISABLED) | 
|  | 4258 | continue; | 
|  | 4259 |  | 
|  | 4260 | request->channels[i] = chan; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4261 | i++; | 
|  | 4262 | } | 
|  | 4263 | } | 
|  | 4264 | } | 
|  | 4265 |  | 
| Johannes Berg | 584991d | 2009-11-02 13:32:03 +0100 | [diff] [blame] | 4266 | if (!i) { | 
|  | 4267 | err = -EINVAL; | 
|  | 4268 | goto out_free; | 
|  | 4269 | } | 
|  | 4270 |  | 
|  | 4271 | request->n_channels = i; | 
|  | 4272 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4273 | i = 0; | 
|  | 4274 | if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) { | 
|  | 4275 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) { | 
| Luciano Coelho | 57a27e1 | 2011-06-07 20:42:26 +0300 | [diff] [blame] | 4276 | if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4277 | err = -EINVAL; | 
|  | 4278 | goto out_free; | 
|  | 4279 | } | 
| Luciano Coelho | 57a27e1 | 2011-06-07 20:42:26 +0300 | [diff] [blame] | 4280 | request->ssids[i].ssid_len = nla_len(attr); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4281 | memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr)); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4282 | i++; | 
|  | 4283 | } | 
|  | 4284 | } | 
|  | 4285 |  | 
| Jouni Malinen | 70692ad | 2009-02-16 19:39:13 +0200 | [diff] [blame] | 4286 | if (info->attrs[NL80211_ATTR_IE]) { | 
|  | 4287 | request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
| Johannes Berg | de95a54 | 2009-04-01 11:58:36 +0200 | [diff] [blame] | 4288 | memcpy((void *)request->ie, | 
|  | 4289 | nla_data(info->attrs[NL80211_ATTR_IE]), | 
| Jouni Malinen | 70692ad | 2009-02-16 19:39:13 +0200 | [diff] [blame] | 4290 | request->ie_len); | 
|  | 4291 | } | 
|  | 4292 |  | 
| Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 4293 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) | 
| Johannes Berg | a401d2b | 2011-07-20 00:52:16 +0200 | [diff] [blame] | 4294 | if (wiphy->bands[i]) | 
|  | 4295 | request->rates[i] = | 
|  | 4296 | (1 << wiphy->bands[i]->n_bitrates) - 1; | 
| Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 4297 |  | 
|  | 4298 | if (info->attrs[NL80211_ATTR_SCAN_SUPP_RATES]) { | 
|  | 4299 | nla_for_each_nested(attr, | 
|  | 4300 | info->attrs[NL80211_ATTR_SCAN_SUPP_RATES], | 
|  | 4301 | tmp) { | 
|  | 4302 | enum ieee80211_band band = nla_type(attr); | 
|  | 4303 |  | 
| Dan Carpenter | 8440462 | 2011-07-29 11:52:18 +0300 | [diff] [blame] | 4304 | if (band < 0 || band >= IEEE80211_NUM_BANDS) { | 
| Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 4305 | err = -EINVAL; | 
|  | 4306 | goto out_free; | 
|  | 4307 | } | 
|  | 4308 | err = ieee80211_get_ratemask(wiphy->bands[band], | 
|  | 4309 | nla_data(attr), | 
|  | 4310 | nla_len(attr), | 
|  | 4311 | &request->rates[band]); | 
|  | 4312 | if (err) | 
|  | 4313 | goto out_free; | 
|  | 4314 | } | 
|  | 4315 | } | 
|  | 4316 |  | 
| Rajkumar Manoharan | e9f935e | 2011-09-25 14:53:30 +0530 | [diff] [blame] | 4317 | request->no_cck = | 
|  | 4318 | nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]); | 
|  | 4319 |  | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 4320 | request->wdev = wdev; | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 4321 | request->wiphy = &rdev->wiphy; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4322 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 4323 | rdev->scan_req = request; | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 4324 | err = rdev->ops->scan(&rdev->wiphy, request); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4325 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 4326 | if (!err) { | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 4327 | nl80211_send_scan_start(rdev, wdev); | 
|  | 4328 | if (wdev->netdev) | 
|  | 4329 | dev_hold(wdev->netdev); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4330 | } else { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4331 | out_free: | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 4332 | rdev->scan_req = NULL; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4333 | kfree(request); | 
|  | 4334 | } | 
| Johannes Berg | 3b85875 | 2009-03-12 09:55:09 +0100 | [diff] [blame] | 4335 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4336 | return err; | 
|  | 4337 | } | 
|  | 4338 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4339 | static int nl80211_start_sched_scan(struct sk_buff *skb, | 
|  | 4340 | struct genl_info *info) | 
|  | 4341 | { | 
|  | 4342 | struct cfg80211_sched_scan_request *request; | 
|  | 4343 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 4344 | struct net_device *dev = info->user_ptr[1]; | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4345 | struct nlattr *attr; | 
|  | 4346 | struct wiphy *wiphy; | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4347 | int err, tmp, n_ssids = 0, n_match_sets = 0, n_channels, i; | 
| Luciano Coelho | bbe6ad6 | 2011-05-11 17:09:37 +0300 | [diff] [blame] | 4348 | u32 interval; | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4349 | enum ieee80211_band band; | 
|  | 4350 | size_t ie_len; | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4351 | struct nlattr *tb[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1]; | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4352 |  | 
|  | 4353 | if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) || | 
|  | 4354 | !rdev->ops->sched_scan_start) | 
|  | 4355 | return -EOPNOTSUPP; | 
|  | 4356 |  | 
|  | 4357 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) | 
|  | 4358 | return -EINVAL; | 
|  | 4359 |  | 
| Luciano Coelho | bbe6ad6 | 2011-05-11 17:09:37 +0300 | [diff] [blame] | 4360 | if (!info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL]) | 
|  | 4361 | return -EINVAL; | 
|  | 4362 |  | 
|  | 4363 | interval = nla_get_u32(info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL]); | 
|  | 4364 | if (interval == 0) | 
|  | 4365 | return -EINVAL; | 
|  | 4366 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4367 | wiphy = &rdev->wiphy; | 
|  | 4368 |  | 
|  | 4369 | if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) { | 
|  | 4370 | n_channels = validate_scan_freqs( | 
|  | 4371 | info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]); | 
|  | 4372 | if (!n_channels) | 
|  | 4373 | return -EINVAL; | 
|  | 4374 | } else { | 
|  | 4375 | n_channels = 0; | 
|  | 4376 |  | 
|  | 4377 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) | 
|  | 4378 | if (wiphy->bands[band]) | 
|  | 4379 | n_channels += wiphy->bands[band]->n_channels; | 
|  | 4380 | } | 
|  | 4381 |  | 
|  | 4382 | if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) | 
|  | 4383 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], | 
|  | 4384 | tmp) | 
|  | 4385 | n_ssids++; | 
|  | 4386 |  | 
| Luciano Coelho | 93b6aa6 | 2011-07-13 14:57:28 +0300 | [diff] [blame] | 4387 | if (n_ssids > wiphy->max_sched_scan_ssids) | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4388 | return -EINVAL; | 
|  | 4389 |  | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4390 | if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) | 
|  | 4391 | nla_for_each_nested(attr, | 
|  | 4392 | info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH], | 
|  | 4393 | tmp) | 
|  | 4394 | n_match_sets++; | 
|  | 4395 |  | 
|  | 4396 | if (n_match_sets > wiphy->max_match_sets) | 
|  | 4397 | return -EINVAL; | 
|  | 4398 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4399 | if (info->attrs[NL80211_ATTR_IE]) | 
|  | 4400 | ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
|  | 4401 | else | 
|  | 4402 | ie_len = 0; | 
|  | 4403 |  | 
| Luciano Coelho | 5a865ba | 2011-07-13 14:57:29 +0300 | [diff] [blame] | 4404 | if (ie_len > wiphy->max_sched_scan_ie_len) | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4405 | return -EINVAL; | 
|  | 4406 |  | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 4407 | mutex_lock(&rdev->sched_scan_mtx); | 
|  | 4408 |  | 
|  | 4409 | if (rdev->sched_scan_req) { | 
|  | 4410 | err = -EINPROGRESS; | 
|  | 4411 | goto out; | 
|  | 4412 | } | 
|  | 4413 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4414 | request = kzalloc(sizeof(*request) | 
| Luciano Coelho | a2cd43c | 2011-05-18 11:42:03 +0300 | [diff] [blame] | 4415 | + sizeof(*request->ssids) * n_ssids | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4416 | + sizeof(*request->match_sets) * n_match_sets | 
| Luciano Coelho | a2cd43c | 2011-05-18 11:42:03 +0300 | [diff] [blame] | 4417 | + sizeof(*request->channels) * n_channels | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4418 | + ie_len, GFP_KERNEL); | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 4419 | if (!request) { | 
|  | 4420 | err = -ENOMEM; | 
|  | 4421 | goto out; | 
|  | 4422 | } | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4423 |  | 
|  | 4424 | if (n_ssids) | 
|  | 4425 | request->ssids = (void *)&request->channels[n_channels]; | 
|  | 4426 | request->n_ssids = n_ssids; | 
|  | 4427 | if (ie_len) { | 
|  | 4428 | if (request->ssids) | 
|  | 4429 | request->ie = (void *)(request->ssids + n_ssids); | 
|  | 4430 | else | 
|  | 4431 | request->ie = (void *)(request->channels + n_channels); | 
|  | 4432 | } | 
|  | 4433 |  | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4434 | if (n_match_sets) { | 
|  | 4435 | if (request->ie) | 
|  | 4436 | request->match_sets = (void *)(request->ie + ie_len); | 
|  | 4437 | else if (request->ssids) | 
|  | 4438 | request->match_sets = | 
|  | 4439 | (void *)(request->ssids + n_ssids); | 
|  | 4440 | else | 
|  | 4441 | request->match_sets = | 
|  | 4442 | (void *)(request->channels + n_channels); | 
|  | 4443 | } | 
|  | 4444 | request->n_match_sets = n_match_sets; | 
|  | 4445 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4446 | i = 0; | 
|  | 4447 | if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) { | 
|  | 4448 | /* user specified, bail out if channel not found */ | 
|  | 4449 | nla_for_each_nested(attr, | 
|  | 4450 | info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], | 
|  | 4451 | tmp) { | 
|  | 4452 | struct ieee80211_channel *chan; | 
|  | 4453 |  | 
|  | 4454 | chan = ieee80211_get_channel(wiphy, nla_get_u32(attr)); | 
|  | 4455 |  | 
|  | 4456 | if (!chan) { | 
|  | 4457 | err = -EINVAL; | 
|  | 4458 | goto out_free; | 
|  | 4459 | } | 
|  | 4460 |  | 
|  | 4461 | /* ignore disabled channels */ | 
|  | 4462 | if (chan->flags & IEEE80211_CHAN_DISABLED) | 
|  | 4463 | continue; | 
|  | 4464 |  | 
|  | 4465 | request->channels[i] = chan; | 
|  | 4466 | i++; | 
|  | 4467 | } | 
|  | 4468 | } else { | 
|  | 4469 | /* all channels */ | 
|  | 4470 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | 
|  | 4471 | int j; | 
|  | 4472 | if (!wiphy->bands[band]) | 
|  | 4473 | continue; | 
|  | 4474 | for (j = 0; j < wiphy->bands[band]->n_channels; j++) { | 
|  | 4475 | struct ieee80211_channel *chan; | 
|  | 4476 |  | 
|  | 4477 | chan = &wiphy->bands[band]->channels[j]; | 
|  | 4478 |  | 
|  | 4479 | if (chan->flags & IEEE80211_CHAN_DISABLED) | 
|  | 4480 | continue; | 
|  | 4481 |  | 
|  | 4482 | request->channels[i] = chan; | 
|  | 4483 | i++; | 
|  | 4484 | } | 
|  | 4485 | } | 
|  | 4486 | } | 
|  | 4487 |  | 
|  | 4488 | if (!i) { | 
|  | 4489 | err = -EINVAL; | 
|  | 4490 | goto out_free; | 
|  | 4491 | } | 
|  | 4492 |  | 
|  | 4493 | request->n_channels = i; | 
|  | 4494 |  | 
|  | 4495 | i = 0; | 
|  | 4496 | if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) { | 
|  | 4497 | nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], | 
|  | 4498 | tmp) { | 
| Luciano Coelho | 57a27e1 | 2011-06-07 20:42:26 +0300 | [diff] [blame] | 4499 | if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) { | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4500 | err = -EINVAL; | 
|  | 4501 | goto out_free; | 
|  | 4502 | } | 
| Luciano Coelho | 57a27e1 | 2011-06-07 20:42:26 +0300 | [diff] [blame] | 4503 | request->ssids[i].ssid_len = nla_len(attr); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4504 | memcpy(request->ssids[i].ssid, nla_data(attr), | 
|  | 4505 | nla_len(attr)); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4506 | i++; | 
|  | 4507 | } | 
|  | 4508 | } | 
|  | 4509 |  | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4510 | i = 0; | 
|  | 4511 | if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) { | 
|  | 4512 | nla_for_each_nested(attr, | 
|  | 4513 | info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH], | 
|  | 4514 | tmp) { | 
| Thomas Pedersen | 88e920b | 2012-06-21 11:09:54 -0700 | [diff] [blame] | 4515 | struct nlattr *ssid, *rssi; | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4516 |  | 
|  | 4517 | nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX, | 
|  | 4518 | nla_data(attr), nla_len(attr), | 
|  | 4519 | nl80211_match_policy); | 
| Johannes Berg | 4a4ab0d | 2012-06-13 11:17:11 +0200 | [diff] [blame] | 4520 | ssid = tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID]; | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4521 | if (ssid) { | 
|  | 4522 | if (nla_len(ssid) > IEEE80211_MAX_SSID_LEN) { | 
|  | 4523 | err = -EINVAL; | 
|  | 4524 | goto out_free; | 
|  | 4525 | } | 
|  | 4526 | memcpy(request->match_sets[i].ssid.ssid, | 
|  | 4527 | nla_data(ssid), nla_len(ssid)); | 
|  | 4528 | request->match_sets[i].ssid.ssid_len = | 
|  | 4529 | nla_len(ssid); | 
|  | 4530 | } | 
| Thomas Pedersen | 88e920b | 2012-06-21 11:09:54 -0700 | [diff] [blame] | 4531 | rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI]; | 
|  | 4532 | if (rssi) | 
|  | 4533 | request->rssi_thold = nla_get_u32(rssi); | 
|  | 4534 | else | 
|  | 4535 | request->rssi_thold = | 
|  | 4536 | NL80211_SCAN_RSSI_THOLD_OFF; | 
| Luciano Coelho | a1f1c21 | 2011-08-31 16:01:48 +0300 | [diff] [blame] | 4537 | i++; | 
|  | 4538 | } | 
|  | 4539 | } | 
|  | 4540 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4541 | if (info->attrs[NL80211_ATTR_IE]) { | 
|  | 4542 | request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
|  | 4543 | memcpy((void *)request->ie, | 
|  | 4544 | nla_data(info->attrs[NL80211_ATTR_IE]), | 
|  | 4545 | request->ie_len); | 
|  | 4546 | } | 
|  | 4547 |  | 
|  | 4548 | request->dev = dev; | 
|  | 4549 | request->wiphy = &rdev->wiphy; | 
| Luciano Coelho | bbe6ad6 | 2011-05-11 17:09:37 +0300 | [diff] [blame] | 4550 | request->interval = interval; | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4551 |  | 
|  | 4552 | err = rdev->ops->sched_scan_start(&rdev->wiphy, dev, request); | 
|  | 4553 | if (!err) { | 
|  | 4554 | rdev->sched_scan_req = request; | 
|  | 4555 | nl80211_send_sched_scan(rdev, dev, | 
|  | 4556 | NL80211_CMD_START_SCHED_SCAN); | 
|  | 4557 | goto out; | 
|  | 4558 | } | 
|  | 4559 |  | 
|  | 4560 | out_free: | 
|  | 4561 | kfree(request); | 
|  | 4562 | out: | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 4563 | mutex_unlock(&rdev->sched_scan_mtx); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4564 | return err; | 
|  | 4565 | } | 
|  | 4566 |  | 
|  | 4567 | static int nl80211_stop_sched_scan(struct sk_buff *skb, | 
|  | 4568 | struct genl_info *info) | 
|  | 4569 | { | 
|  | 4570 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 4571 | int err; | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4572 |  | 
|  | 4573 | if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) || | 
|  | 4574 | !rdev->ops->sched_scan_stop) | 
|  | 4575 | return -EOPNOTSUPP; | 
|  | 4576 |  | 
| Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 4577 | mutex_lock(&rdev->sched_scan_mtx); | 
|  | 4578 | err = __cfg80211_stop_sched_scan(rdev, false); | 
|  | 4579 | mutex_unlock(&rdev->sched_scan_mtx); | 
|  | 4580 |  | 
|  | 4581 | return err; | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 4582 | } | 
|  | 4583 |  | 
| Johannes Berg | 9720bb3 | 2011-06-21 09:45:33 +0200 | [diff] [blame] | 4584 | static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb, | 
|  | 4585 | u32 seq, int flags, | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4586 | struct cfg80211_registered_device *rdev, | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4587 | struct wireless_dev *wdev, | 
|  | 4588 | struct cfg80211_internal_bss *intbss) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4589 | { | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4590 | struct cfg80211_bss *res = &intbss->pub; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4591 | void *hdr; | 
|  | 4592 | struct nlattr *bss; | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4593 |  | 
|  | 4594 | ASSERT_WDEV_LOCK(wdev); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4595 |  | 
| Johannes Berg | 9720bb3 | 2011-06-21 09:45:33 +0200 | [diff] [blame] | 4596 | hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).pid, seq, flags, | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4597 | NL80211_CMD_NEW_SCAN_RESULTS); | 
|  | 4598 | if (!hdr) | 
|  | 4599 | return -1; | 
|  | 4600 |  | 
| Johannes Berg | 9720bb3 | 2011-06-21 09:45:33 +0200 | [diff] [blame] | 4601 | genl_dump_check_consistent(cb, hdr, &nl80211_fam); | 
|  | 4602 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4603 | if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation) || | 
|  | 4604 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex)) | 
|  | 4605 | goto nla_put_failure; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4606 |  | 
|  | 4607 | bss = nla_nest_start(msg, NL80211_ATTR_BSS); | 
|  | 4608 | if (!bss) | 
|  | 4609 | goto nla_put_failure; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4610 | if ((!is_zero_ether_addr(res->bssid) && | 
|  | 4611 | nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)) || | 
|  | 4612 | (res->information_elements && res->len_information_elements && | 
|  | 4613 | nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS, | 
|  | 4614 | res->len_information_elements, | 
|  | 4615 | res->information_elements)) || | 
|  | 4616 | (res->beacon_ies && res->len_beacon_ies && | 
|  | 4617 | res->beacon_ies != res->information_elements && | 
|  | 4618 | nla_put(msg, NL80211_BSS_BEACON_IES, | 
|  | 4619 | res->len_beacon_ies, res->beacon_ies))) | 
|  | 4620 | goto nla_put_failure; | 
|  | 4621 | if (res->tsf && | 
|  | 4622 | nla_put_u64(msg, NL80211_BSS_TSF, res->tsf)) | 
|  | 4623 | goto nla_put_failure; | 
|  | 4624 | if (res->beacon_interval && | 
|  | 4625 | nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval)) | 
|  | 4626 | goto nla_put_failure; | 
|  | 4627 | if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) || | 
|  | 4628 | nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) || | 
|  | 4629 | nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO, | 
|  | 4630 | jiffies_to_msecs(jiffies - intbss->ts))) | 
|  | 4631 | goto nla_put_failure; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4632 |  | 
| Johannes Berg | 77965c9 | 2009-02-18 18:45:06 +0100 | [diff] [blame] | 4633 | switch (rdev->wiphy.signal_type) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4634 | case CFG80211_SIGNAL_TYPE_MBM: | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4635 | if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal)) | 
|  | 4636 | goto nla_put_failure; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4637 | break; | 
|  | 4638 | case CFG80211_SIGNAL_TYPE_UNSPEC: | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4639 | if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal)) | 
|  | 4640 | goto nla_put_failure; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4641 | break; | 
|  | 4642 | default: | 
|  | 4643 | break; | 
|  | 4644 | } | 
|  | 4645 |  | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4646 | switch (wdev->iftype) { | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 4647 | case NL80211_IFTYPE_P2P_CLIENT: | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4648 | case NL80211_IFTYPE_STATION: | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4649 | if (intbss == wdev->current_bss && | 
|  | 4650 | nla_put_u32(msg, NL80211_BSS_STATUS, | 
|  | 4651 | NL80211_BSS_STATUS_ASSOCIATED)) | 
|  | 4652 | goto nla_put_failure; | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4653 | break; | 
|  | 4654 | case NL80211_IFTYPE_ADHOC: | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4655 | if (intbss == wdev->current_bss && | 
|  | 4656 | nla_put_u32(msg, NL80211_BSS_STATUS, | 
|  | 4657 | NL80211_BSS_STATUS_IBSS_JOINED)) | 
|  | 4658 | goto nla_put_failure; | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4659 | break; | 
|  | 4660 | default: | 
|  | 4661 | break; | 
|  | 4662 | } | 
|  | 4663 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4664 | nla_nest_end(msg, bss); | 
|  | 4665 |  | 
|  | 4666 | return genlmsg_end(msg, hdr); | 
|  | 4667 |  | 
|  | 4668 | nla_put_failure: | 
|  | 4669 | genlmsg_cancel(msg, hdr); | 
|  | 4670 | return -EMSGSIZE; | 
|  | 4671 | } | 
|  | 4672 |  | 
|  | 4673 | static int nl80211_dump_scan(struct sk_buff *skb, | 
|  | 4674 | struct netlink_callback *cb) | 
|  | 4675 | { | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4676 | struct cfg80211_registered_device *rdev; | 
|  | 4677 | struct net_device *dev; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4678 | struct cfg80211_internal_bss *scan; | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4679 | struct wireless_dev *wdev; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4680 | int start = cb->args[1], idx = 0; | 
|  | 4681 | int err; | 
|  | 4682 |  | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 4683 | err = nl80211_prepare_netdev_dump(skb, cb, &rdev, &dev); | 
|  | 4684 | if (err) | 
|  | 4685 | return err; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4686 |  | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4687 | wdev = dev->ieee80211_ptr; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4688 |  | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4689 | wdev_lock(wdev); | 
|  | 4690 | spin_lock_bh(&rdev->bss_lock); | 
|  | 4691 | cfg80211_bss_expire(rdev); | 
|  | 4692 |  | 
| Johannes Berg | 9720bb3 | 2011-06-21 09:45:33 +0200 | [diff] [blame] | 4693 | cb->seq = rdev->bss_generation; | 
|  | 4694 |  | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4695 | list_for_each_entry(scan, &rdev->bss_list, list) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4696 | if (++idx <= start) | 
|  | 4697 | continue; | 
| Johannes Berg | 9720bb3 | 2011-06-21 09:45:33 +0200 | [diff] [blame] | 4698 | if (nl80211_send_bss(skb, cb, | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4699 | cb->nlh->nlmsg_seq, NLM_F_MULTI, | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4700 | rdev, wdev, scan) < 0) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4701 | idx--; | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 4702 | break; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4703 | } | 
|  | 4704 | } | 
|  | 4705 |  | 
| Johannes Berg | 48ab905 | 2009-07-10 18:42:31 +0200 | [diff] [blame] | 4706 | spin_unlock_bh(&rdev->bss_lock); | 
|  | 4707 | wdev_unlock(wdev); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4708 |  | 
|  | 4709 | cb->args[1] = idx; | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 4710 | nl80211_finish_netdev_dump(rdev); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4711 |  | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 4712 | return skb->len; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 4713 | } | 
|  | 4714 |  | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4715 | static int nl80211_send_survey(struct sk_buff *msg, u32 pid, u32 seq, | 
|  | 4716 | int flags, struct net_device *dev, | 
|  | 4717 | struct survey_info *survey) | 
|  | 4718 | { | 
|  | 4719 | void *hdr; | 
|  | 4720 | struct nlattr *infoattr; | 
|  | 4721 |  | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4722 | hdr = nl80211hdr_put(msg, pid, seq, flags, | 
|  | 4723 | NL80211_CMD_NEW_SURVEY_RESULTS); | 
|  | 4724 | if (!hdr) | 
|  | 4725 | return -ENOMEM; | 
|  | 4726 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4727 | if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex)) | 
|  | 4728 | goto nla_put_failure; | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4729 |  | 
|  | 4730 | infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO); | 
|  | 4731 | if (!infoattr) | 
|  | 4732 | goto nla_put_failure; | 
|  | 4733 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 4734 | if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY, | 
|  | 4735 | survey->channel->center_freq)) | 
|  | 4736 | goto nla_put_failure; | 
|  | 4737 |  | 
|  | 4738 | if ((survey->filled & SURVEY_INFO_NOISE_DBM) && | 
|  | 4739 | nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise)) | 
|  | 4740 | goto nla_put_failure; | 
|  | 4741 | if ((survey->filled & SURVEY_INFO_IN_USE) && | 
|  | 4742 | nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE)) | 
|  | 4743 | goto nla_put_failure; | 
|  | 4744 | if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) && | 
|  | 4745 | nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME, | 
|  | 4746 | survey->channel_time)) | 
|  | 4747 | goto nla_put_failure; | 
|  | 4748 | if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) && | 
|  | 4749 | nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY, | 
|  | 4750 | survey->channel_time_busy)) | 
|  | 4751 | goto nla_put_failure; | 
|  | 4752 | if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) && | 
|  | 4753 | nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY, | 
|  | 4754 | survey->channel_time_ext_busy)) | 
|  | 4755 | goto nla_put_failure; | 
|  | 4756 | if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) && | 
|  | 4757 | nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX, | 
|  | 4758 | survey->channel_time_rx)) | 
|  | 4759 | goto nla_put_failure; | 
|  | 4760 | if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) && | 
|  | 4761 | nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX, | 
|  | 4762 | survey->channel_time_tx)) | 
|  | 4763 | goto nla_put_failure; | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4764 |  | 
|  | 4765 | nla_nest_end(msg, infoattr); | 
|  | 4766 |  | 
|  | 4767 | return genlmsg_end(msg, hdr); | 
|  | 4768 |  | 
|  | 4769 | nla_put_failure: | 
|  | 4770 | genlmsg_cancel(msg, hdr); | 
|  | 4771 | return -EMSGSIZE; | 
|  | 4772 | } | 
|  | 4773 |  | 
|  | 4774 | static int nl80211_dump_survey(struct sk_buff *skb, | 
|  | 4775 | struct netlink_callback *cb) | 
|  | 4776 | { | 
|  | 4777 | struct survey_info survey; | 
|  | 4778 | struct cfg80211_registered_device *dev; | 
|  | 4779 | struct net_device *netdev; | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4780 | int survey_idx = cb->args[1]; | 
|  | 4781 | int res; | 
|  | 4782 |  | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 4783 | res = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev); | 
|  | 4784 | if (res) | 
|  | 4785 | return res; | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4786 |  | 
|  | 4787 | if (!dev->ops->dump_survey) { | 
|  | 4788 | res = -EOPNOTSUPP; | 
|  | 4789 | goto out_err; | 
|  | 4790 | } | 
|  | 4791 |  | 
|  | 4792 | while (1) { | 
| Luis R. Rodriguez | 180cdc7 | 2011-05-27 07:24:02 -0700 | [diff] [blame] | 4793 | struct ieee80211_channel *chan; | 
|  | 4794 |  | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4795 | res = dev->ops->dump_survey(&dev->wiphy, netdev, survey_idx, | 
|  | 4796 | &survey); | 
|  | 4797 | if (res == -ENOENT) | 
|  | 4798 | break; | 
|  | 4799 | if (res) | 
|  | 4800 | goto out_err; | 
|  | 4801 |  | 
| Luis R. Rodriguez | 180cdc7 | 2011-05-27 07:24:02 -0700 | [diff] [blame] | 4802 | /* Survey without a channel doesn't make sense */ | 
|  | 4803 | if (!survey.channel) { | 
|  | 4804 | res = -EINVAL; | 
|  | 4805 | goto out; | 
|  | 4806 | } | 
|  | 4807 |  | 
|  | 4808 | chan = ieee80211_get_channel(&dev->wiphy, | 
|  | 4809 | survey.channel->center_freq); | 
|  | 4810 | if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) { | 
|  | 4811 | survey_idx++; | 
|  | 4812 | continue; | 
|  | 4813 | } | 
|  | 4814 |  | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4815 | if (nl80211_send_survey(skb, | 
|  | 4816 | NETLINK_CB(cb->skb).pid, | 
|  | 4817 | cb->nlh->nlmsg_seq, NLM_F_MULTI, | 
|  | 4818 | netdev, | 
|  | 4819 | &survey) < 0) | 
|  | 4820 | goto out; | 
|  | 4821 | survey_idx++; | 
|  | 4822 | } | 
|  | 4823 |  | 
|  | 4824 | out: | 
|  | 4825 | cb->args[1] = survey_idx; | 
|  | 4826 | res = skb->len; | 
|  | 4827 | out_err: | 
| Johannes Berg | 6774889 | 2010-10-04 21:14:06 +0200 | [diff] [blame] | 4828 | nl80211_finish_netdev_dump(dev); | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 4829 | return res; | 
|  | 4830 | } | 
|  | 4831 |  | 
| Jouni Malinen | 255e737 | 2009-03-20 21:21:17 +0200 | [diff] [blame] | 4832 | static bool nl80211_valid_auth_type(enum nl80211_auth_type auth_type) | 
|  | 4833 | { | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 4834 | return auth_type <= NL80211_AUTHTYPE_MAX; | 
| Jouni Malinen | 255e737 | 2009-03-20 21:21:17 +0200 | [diff] [blame] | 4835 | } | 
|  | 4836 |  | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 4837 | static bool nl80211_valid_wpa_versions(u32 wpa_versions) | 
|  | 4838 | { | 
|  | 4839 | return !(wpa_versions & ~(NL80211_WPA_VERSION_1 | | 
|  | 4840 | NL80211_WPA_VERSION_2)); | 
|  | 4841 | } | 
|  | 4842 |  | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 4843 | static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info) | 
|  | 4844 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4845 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 4846 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 4847 | struct ieee80211_channel *chan; | 
|  | 4848 | const u8 *bssid, *ssid, *ie = NULL; | 
|  | 4849 | int err, ssid_len, ie_len = 0; | 
|  | 4850 | enum nl80211_auth_type auth_type; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 4851 | struct key_parse key; | 
| Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 4852 | bool local_state_change; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 4853 |  | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 4854 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) | 
|  | 4855 | return -EINVAL; | 
|  | 4856 |  | 
|  | 4857 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 4858 | return -EINVAL; | 
|  | 4859 |  | 
| Jouni Malinen | 1778092 | 2009-03-27 20:52:47 +0200 | [diff] [blame] | 4860 | if (!info->attrs[NL80211_ATTR_AUTH_TYPE]) | 
|  | 4861 | return -EINVAL; | 
|  | 4862 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 4863 | if (!info->attrs[NL80211_ATTR_SSID]) | 
|  | 4864 | return -EINVAL; | 
|  | 4865 |  | 
|  | 4866 | if (!info->attrs[NL80211_ATTR_WIPHY_FREQ]) | 
|  | 4867 | return -EINVAL; | 
|  | 4868 |  | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 4869 | err = nl80211_parse_key(info, &key); | 
|  | 4870 | if (err) | 
|  | 4871 | return err; | 
|  | 4872 |  | 
|  | 4873 | if (key.idx >= 0) { | 
| Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 4874 | if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP) | 
|  | 4875 | return -EINVAL; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 4876 | if (!key.p.key || !key.p.key_len) | 
|  | 4877 | return -EINVAL; | 
|  | 4878 | if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 || | 
|  | 4879 | key.p.key_len != WLAN_KEY_LEN_WEP40) && | 
|  | 4880 | (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 || | 
|  | 4881 | key.p.key_len != WLAN_KEY_LEN_WEP104)) | 
|  | 4882 | return -EINVAL; | 
|  | 4883 | if (key.idx > 4) | 
|  | 4884 | return -EINVAL; | 
|  | 4885 | } else { | 
|  | 4886 | key.p.key_len = 0; | 
|  | 4887 | key.p.key = NULL; | 
|  | 4888 | } | 
|  | 4889 |  | 
| Johannes Berg | afea0b7 | 2010-08-10 09:46:42 +0200 | [diff] [blame] | 4890 | if (key.idx >= 0) { | 
|  | 4891 | int i; | 
|  | 4892 | bool ok = false; | 
|  | 4893 | for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) { | 
|  | 4894 | if (key.p.cipher == rdev->wiphy.cipher_suites[i]) { | 
|  | 4895 | ok = true; | 
|  | 4896 | break; | 
|  | 4897 | } | 
|  | 4898 | } | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4899 | if (!ok) | 
|  | 4900 | return -EINVAL; | 
| Johannes Berg | afea0b7 | 2010-08-10 09:46:42 +0200 | [diff] [blame] | 4901 | } | 
|  | 4902 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4903 | if (!rdev->ops->auth) | 
|  | 4904 | return -EOPNOTSUPP; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 4905 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 4906 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4907 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 4908 | return -EOPNOTSUPP; | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 4909 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 4910 | bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 4911 | chan = ieee80211_get_channel(&rdev->wiphy, | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 4912 | nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ])); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4913 | if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED)) | 
|  | 4914 | return -EINVAL; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 4915 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 4916 | ssid = nla_data(info->attrs[NL80211_ATTR_SSID]); | 
|  | 4917 | ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]); | 
|  | 4918 |  | 
|  | 4919 | if (info->attrs[NL80211_ATTR_IE]) { | 
|  | 4920 | ie = nla_data(info->attrs[NL80211_ATTR_IE]); | 
|  | 4921 | ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
|  | 4922 | } | 
|  | 4923 |  | 
|  | 4924 | auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4925 | if (!nl80211_valid_auth_type(auth_type)) | 
|  | 4926 | return -EINVAL; | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 4927 |  | 
| Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 4928 | local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE]; | 
|  | 4929 |  | 
| Johannes Berg | 95de817 | 2012-01-20 13:55:25 +0100 | [diff] [blame] | 4930 | /* | 
|  | 4931 | * Since we no longer track auth state, ignore | 
|  | 4932 | * requests to only change local state. | 
|  | 4933 | */ | 
|  | 4934 | if (local_state_change) | 
|  | 4935 | return 0; | 
|  | 4936 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 4937 | return cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid, | 
|  | 4938 | ssid, ssid_len, ie, ie_len, | 
| Johannes Berg | 95de817 | 2012-01-20 13:55:25 +0100 | [diff] [blame] | 4939 | key.p.key, key.p.key_len, key.idx); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 4940 | } | 
|  | 4941 |  | 
| Johannes Berg | c0692b8 | 2010-08-27 14:26:53 +0300 | [diff] [blame] | 4942 | static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev, | 
|  | 4943 | struct genl_info *info, | 
| Johannes Berg | 3dc27d2 | 2009-07-02 21:36:37 +0200 | [diff] [blame] | 4944 | struct cfg80211_crypto_settings *settings, | 
|  | 4945 | int cipher_limit) | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 4946 | { | 
| Johannes Berg | c0b2bbd | 2009-07-25 16:54:36 +0200 | [diff] [blame] | 4947 | memset(settings, 0, sizeof(*settings)); | 
|  | 4948 |  | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 4949 | settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT]; | 
|  | 4950 |  | 
| Johannes Berg | c0692b8 | 2010-08-27 14:26:53 +0300 | [diff] [blame] | 4951 | if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) { | 
|  | 4952 | u16 proto; | 
|  | 4953 | proto = nla_get_u16( | 
|  | 4954 | info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]); | 
|  | 4955 | settings->control_port_ethertype = cpu_to_be16(proto); | 
|  | 4956 | if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) && | 
|  | 4957 | proto != ETH_P_PAE) | 
|  | 4958 | return -EINVAL; | 
|  | 4959 | if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT]) | 
|  | 4960 | settings->control_port_no_encrypt = true; | 
|  | 4961 | } else | 
|  | 4962 | settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE); | 
|  | 4963 |  | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 4964 | if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) { | 
|  | 4965 | void *data; | 
|  | 4966 | int len, i; | 
|  | 4967 |  | 
|  | 4968 | data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]); | 
|  | 4969 | len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]); | 
|  | 4970 | settings->n_ciphers_pairwise = len / sizeof(u32); | 
|  | 4971 |  | 
|  | 4972 | if (len % sizeof(u32)) | 
|  | 4973 | return -EINVAL; | 
|  | 4974 |  | 
| Johannes Berg | 3dc27d2 | 2009-07-02 21:36:37 +0200 | [diff] [blame] | 4975 | if (settings->n_ciphers_pairwise > cipher_limit) | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 4976 | return -EINVAL; | 
|  | 4977 |  | 
|  | 4978 | memcpy(settings->ciphers_pairwise, data, len); | 
|  | 4979 |  | 
|  | 4980 | for (i = 0; i < settings->n_ciphers_pairwise; i++) | 
| Jouni Malinen | 38ba3c5 | 2011-09-21 18:14:56 +0300 | [diff] [blame] | 4981 | if (!cfg80211_supported_cipher_suite( | 
|  | 4982 | &rdev->wiphy, | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 4983 | settings->ciphers_pairwise[i])) | 
|  | 4984 | return -EINVAL; | 
|  | 4985 | } | 
|  | 4986 |  | 
|  | 4987 | if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) { | 
|  | 4988 | settings->cipher_group = | 
|  | 4989 | nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]); | 
| Jouni Malinen | 38ba3c5 | 2011-09-21 18:14:56 +0300 | [diff] [blame] | 4990 | if (!cfg80211_supported_cipher_suite(&rdev->wiphy, | 
|  | 4991 | settings->cipher_group)) | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 4992 | return -EINVAL; | 
|  | 4993 | } | 
|  | 4994 |  | 
|  | 4995 | if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) { | 
|  | 4996 | settings->wpa_versions = | 
|  | 4997 | nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]); | 
|  | 4998 | if (!nl80211_valid_wpa_versions(settings->wpa_versions)) | 
|  | 4999 | return -EINVAL; | 
|  | 5000 | } | 
|  | 5001 |  | 
|  | 5002 | if (info->attrs[NL80211_ATTR_AKM_SUITES]) { | 
|  | 5003 | void *data; | 
| Jouni Malinen | 6d30240 | 2011-09-21 18:11:33 +0300 | [diff] [blame] | 5004 | int len; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5005 |  | 
|  | 5006 | data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]); | 
|  | 5007 | len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]); | 
|  | 5008 | settings->n_akm_suites = len / sizeof(u32); | 
|  | 5009 |  | 
|  | 5010 | if (len % sizeof(u32)) | 
|  | 5011 | return -EINVAL; | 
|  | 5012 |  | 
| Jouni Malinen | 1b9ca02 | 2011-09-21 16:13:07 +0300 | [diff] [blame] | 5013 | if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES) | 
|  | 5014 | return -EINVAL; | 
|  | 5015 |  | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5016 | memcpy(settings->akm_suites, data, len); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5017 | } | 
|  | 5018 |  | 
|  | 5019 | return 0; | 
|  | 5020 | } | 
|  | 5021 |  | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5022 | static int nl80211_associate(struct sk_buff *skb, struct genl_info *info) | 
|  | 5023 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5024 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5025 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5026 | struct cfg80211_crypto_settings crypto; | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 5027 | struct ieee80211_channel *chan; | 
| Johannes Berg | 3e5d764 | 2009-07-07 14:37:26 +0200 | [diff] [blame] | 5028 | const u8 *bssid, *ssid, *ie = NULL, *prev_bssid = NULL; | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5029 | int err, ssid_len, ie_len = 0; | 
|  | 5030 | bool use_mfp = false; | 
| Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 5031 | u32 flags = 0; | 
|  | 5032 | struct ieee80211_ht_cap *ht_capa = NULL; | 
|  | 5033 | struct ieee80211_ht_cap *ht_capa_mask = NULL; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5034 |  | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 5035 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) | 
|  | 5036 | return -EINVAL; | 
|  | 5037 |  | 
|  | 5038 | if (!info->attrs[NL80211_ATTR_MAC] || | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5039 | !info->attrs[NL80211_ATTR_SSID] || | 
|  | 5040 | !info->attrs[NL80211_ATTR_WIPHY_FREQ]) | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 5041 | return -EINVAL; | 
|  | 5042 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5043 | if (!rdev->ops->assoc) | 
|  | 5044 | return -EOPNOTSUPP; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5045 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 5046 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5047 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 5048 | return -EOPNOTSUPP; | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 5049 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5050 | bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5051 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5052 | chan = ieee80211_get_channel(&rdev->wiphy, | 
|  | 5053 | nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ])); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5054 | if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED)) | 
|  | 5055 | return -EINVAL; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5056 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5057 | ssid = nla_data(info->attrs[NL80211_ATTR_SSID]); | 
|  | 5058 | ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5059 |  | 
|  | 5060 | if (info->attrs[NL80211_ATTR_IE]) { | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5061 | ie = nla_data(info->attrs[NL80211_ATTR_IE]); | 
|  | 5062 | ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5063 | } | 
|  | 5064 |  | 
| Jouni Malinen | dc6382c | 2009-05-06 22:09:37 +0300 | [diff] [blame] | 5065 | if (info->attrs[NL80211_ATTR_USE_MFP]) { | 
| Johannes Berg | 4f5dadc | 2009-07-07 03:56:10 +0200 | [diff] [blame] | 5066 | enum nl80211_mfp mfp = | 
| Jouni Malinen | dc6382c | 2009-05-06 22:09:37 +0300 | [diff] [blame] | 5067 | nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]); | 
| Johannes Berg | 4f5dadc | 2009-07-07 03:56:10 +0200 | [diff] [blame] | 5068 | if (mfp == NL80211_MFP_REQUIRED) | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5069 | use_mfp = true; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5070 | else if (mfp != NL80211_MFP_NO) | 
|  | 5071 | return -EINVAL; | 
| Jouni Malinen | dc6382c | 2009-05-06 22:09:37 +0300 | [diff] [blame] | 5072 | } | 
|  | 5073 |  | 
| Johannes Berg | 3e5d764 | 2009-07-07 14:37:26 +0200 | [diff] [blame] | 5074 | if (info->attrs[NL80211_ATTR_PREV_BSSID]) | 
|  | 5075 | prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]); | 
|  | 5076 |  | 
| Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 5077 | if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT])) | 
|  | 5078 | flags |= ASSOC_REQ_DISABLE_HT; | 
|  | 5079 |  | 
|  | 5080 | if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) | 
|  | 5081 | ht_capa_mask = | 
|  | 5082 | nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]); | 
|  | 5083 |  | 
|  | 5084 | if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) { | 
|  | 5085 | if (!ht_capa_mask) | 
|  | 5086 | return -EINVAL; | 
|  | 5087 | ht_capa = nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]); | 
|  | 5088 | } | 
|  | 5089 |  | 
| Johannes Berg | c0692b8 | 2010-08-27 14:26:53 +0300 | [diff] [blame] | 5090 | err = nl80211_crypto_settings(rdev, info, &crypto, 1); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5091 | if (!err) | 
| Johannes Berg | 3e5d764 | 2009-07-07 14:37:26 +0200 | [diff] [blame] | 5092 | err = cfg80211_mlme_assoc(rdev, dev, chan, bssid, prev_bssid, | 
|  | 5093 | ssid, ssid_len, ie, ie_len, use_mfp, | 
| Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 5094 | &crypto, flags, ht_capa, | 
|  | 5095 | ht_capa_mask); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5096 |  | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5097 | return err; | 
|  | 5098 | } | 
|  | 5099 |  | 
|  | 5100 | static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info) | 
|  | 5101 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5102 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5103 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5104 | const u8 *ie = NULL, *bssid; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5105 | int ie_len = 0; | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5106 | u16 reason_code; | 
| Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 5107 | bool local_state_change; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5108 |  | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 5109 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) | 
|  | 5110 | return -EINVAL; | 
|  | 5111 |  | 
|  | 5112 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 5113 | return -EINVAL; | 
|  | 5114 |  | 
|  | 5115 | if (!info->attrs[NL80211_ATTR_REASON_CODE]) | 
|  | 5116 | return -EINVAL; | 
|  | 5117 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5118 | if (!rdev->ops->deauth) | 
|  | 5119 | return -EOPNOTSUPP; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5120 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 5121 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5122 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 5123 | return -EOPNOTSUPP; | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 5124 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5125 | bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5126 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5127 | reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]); | 
|  | 5128 | if (reason_code == 0) { | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 5129 | /* Reason Code 0 is reserved */ | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5130 | return -EINVAL; | 
| Jouni Malinen | 255e737 | 2009-03-20 21:21:17 +0200 | [diff] [blame] | 5131 | } | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5132 |  | 
|  | 5133 | if (info->attrs[NL80211_ATTR_IE]) { | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5134 | ie = nla_data(info->attrs[NL80211_ATTR_IE]); | 
|  | 5135 | ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5136 | } | 
|  | 5137 |  | 
| Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 5138 | local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE]; | 
|  | 5139 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5140 | return cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code, | 
|  | 5141 | local_state_change); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5142 | } | 
|  | 5143 |  | 
|  | 5144 | static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info) | 
|  | 5145 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5146 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5147 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5148 | const u8 *ie = NULL, *bssid; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5149 | int ie_len = 0; | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5150 | u16 reason_code; | 
| Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 5151 | bool local_state_change; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5152 |  | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 5153 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) | 
|  | 5154 | return -EINVAL; | 
|  | 5155 |  | 
|  | 5156 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 5157 | return -EINVAL; | 
|  | 5158 |  | 
|  | 5159 | if (!info->attrs[NL80211_ATTR_REASON_CODE]) | 
|  | 5160 | return -EINVAL; | 
|  | 5161 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5162 | if (!rdev->ops->disassoc) | 
|  | 5163 | return -EOPNOTSUPP; | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5164 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 5165 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5166 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 5167 | return -EOPNOTSUPP; | 
| Jouni Malinen | eec60b0 | 2009-03-20 21:21:19 +0200 | [diff] [blame] | 5168 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5169 | bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5170 |  | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5171 | reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]); | 
|  | 5172 | if (reason_code == 0) { | 
| Johannes Berg | f4a11bb | 2009-03-27 12:40:28 +0100 | [diff] [blame] | 5173 | /* Reason Code 0 is reserved */ | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5174 | return -EINVAL; | 
| Jouni Malinen | 255e737 | 2009-03-20 21:21:17 +0200 | [diff] [blame] | 5175 | } | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5176 |  | 
|  | 5177 | if (info->attrs[NL80211_ATTR_IE]) { | 
| Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 5178 | ie = nla_data(info->attrs[NL80211_ATTR_IE]); | 
|  | 5179 | ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5180 | } | 
|  | 5181 |  | 
| Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 5182 | local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE]; | 
|  | 5183 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5184 | return cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code, | 
|  | 5185 | local_state_change); | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 5186 | } | 
|  | 5187 |  | 
| Felix Fietkau | dd5b4cc | 2010-11-22 20:58:24 +0100 | [diff] [blame] | 5188 | static bool | 
|  | 5189 | nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev, | 
|  | 5190 | int mcast_rate[IEEE80211_NUM_BANDS], | 
|  | 5191 | int rateval) | 
|  | 5192 | { | 
|  | 5193 | struct wiphy *wiphy = &rdev->wiphy; | 
|  | 5194 | bool found = false; | 
|  | 5195 | int band, i; | 
|  | 5196 |  | 
|  | 5197 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { | 
|  | 5198 | struct ieee80211_supported_band *sband; | 
|  | 5199 |  | 
|  | 5200 | sband = wiphy->bands[band]; | 
|  | 5201 | if (!sband) | 
|  | 5202 | continue; | 
|  | 5203 |  | 
|  | 5204 | for (i = 0; i < sband->n_bitrates; i++) { | 
|  | 5205 | if (sband->bitrates[i].bitrate == rateval) { | 
|  | 5206 | mcast_rate[band] = i + 1; | 
|  | 5207 | found = true; | 
|  | 5208 | break; | 
|  | 5209 | } | 
|  | 5210 | } | 
|  | 5211 | } | 
|  | 5212 |  | 
|  | 5213 | return found; | 
|  | 5214 | } | 
|  | 5215 |  | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5216 | static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info) | 
|  | 5217 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5218 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5219 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5220 | struct cfg80211_ibss_params ibss; | 
|  | 5221 | struct wiphy *wiphy; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 5222 | struct cfg80211_cached_keys *connkeys = NULL; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5223 | int err; | 
|  | 5224 |  | 
| Johannes Berg | 8e30bc5 | 2009-04-22 17:45:38 +0200 | [diff] [blame] | 5225 | memset(&ibss, 0, sizeof(ibss)); | 
|  | 5226 |  | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5227 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) | 
|  | 5228 | return -EINVAL; | 
|  | 5229 |  | 
|  | 5230 | if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] || | 
|  | 5231 | !info->attrs[NL80211_ATTR_SSID] || | 
|  | 5232 | !nla_len(info->attrs[NL80211_ATTR_SSID])) | 
|  | 5233 | return -EINVAL; | 
|  | 5234 |  | 
| Johannes Berg | 8e30bc5 | 2009-04-22 17:45:38 +0200 | [diff] [blame] | 5235 | ibss.beacon_interval = 100; | 
|  | 5236 |  | 
|  | 5237 | if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) { | 
|  | 5238 | ibss.beacon_interval = | 
|  | 5239 | nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]); | 
|  | 5240 | if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000) | 
|  | 5241 | return -EINVAL; | 
|  | 5242 | } | 
|  | 5243 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5244 | if (!rdev->ops->join_ibss) | 
|  | 5245 | return -EOPNOTSUPP; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5246 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5247 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC) | 
|  | 5248 | return -EOPNOTSUPP; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5249 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 5250 | wiphy = &rdev->wiphy; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5251 |  | 
| Johannes Berg | 3919349 | 2011-09-16 13:45:25 +0200 | [diff] [blame] | 5252 | if (info->attrs[NL80211_ATTR_MAC]) { | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5253 | ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
| Johannes Berg | 3919349 | 2011-09-16 13:45:25 +0200 | [diff] [blame] | 5254 |  | 
|  | 5255 | if (!is_valid_ether_addr(ibss.bssid)) | 
|  | 5256 | return -EINVAL; | 
|  | 5257 | } | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5258 | ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]); | 
|  | 5259 | ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]); | 
|  | 5260 |  | 
|  | 5261 | if (info->attrs[NL80211_ATTR_IE]) { | 
|  | 5262 | ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]); | 
|  | 5263 | ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
|  | 5264 | } | 
|  | 5265 |  | 
| Alexander Simon | 54858ee | 2011-11-30 16:56:32 +0100 | [diff] [blame] | 5266 | if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) { | 
|  | 5267 | enum nl80211_channel_type channel_type; | 
|  | 5268 |  | 
| Johannes Berg | cd6c659 | 2012-05-10 21:27:18 +0200 | [diff] [blame] | 5269 | if (!nl80211_valid_channel_type(info, &channel_type)) | 
| Alexander Simon | 54858ee | 2011-11-30 16:56:32 +0100 | [diff] [blame] | 5270 | return -EINVAL; | 
|  | 5271 |  | 
|  | 5272 | if (channel_type != NL80211_CHAN_NO_HT && | 
|  | 5273 | !(wiphy->features & NL80211_FEATURE_HT_IBSS)) | 
|  | 5274 | return -EINVAL; | 
|  | 5275 |  | 
|  | 5276 | ibss.channel_type = channel_type; | 
|  | 5277 | } else { | 
|  | 5278 | ibss.channel_type = NL80211_CHAN_NO_HT; | 
|  | 5279 | } | 
|  | 5280 |  | 
|  | 5281 | ibss.channel = rdev_freq_to_chan(rdev, | 
|  | 5282 | nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]), | 
|  | 5283 | ibss.channel_type); | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5284 | if (!ibss.channel || | 
|  | 5285 | ibss.channel->flags & IEEE80211_CHAN_NO_IBSS || | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5286 | ibss.channel->flags & IEEE80211_CHAN_DISABLED) | 
|  | 5287 | return -EINVAL; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5288 |  | 
| Alexander Simon | 54858ee | 2011-11-30 16:56:32 +0100 | [diff] [blame] | 5289 | /* Both channels should be able to initiate communication */ | 
|  | 5290 | if ((ibss.channel_type == NL80211_CHAN_HT40PLUS || | 
|  | 5291 | ibss.channel_type == NL80211_CHAN_HT40MINUS) && | 
|  | 5292 | !cfg80211_can_beacon_sec_chan(&rdev->wiphy, ibss.channel, | 
|  | 5293 | ibss.channel_type)) | 
|  | 5294 | return -EINVAL; | 
|  | 5295 |  | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5296 | ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED]; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 5297 | ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY]; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5298 |  | 
| Teemu Paasikivi | fbd2c8d | 2010-06-14 12:55:31 +0300 | [diff] [blame] | 5299 | if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) { | 
|  | 5300 | u8 *rates = | 
|  | 5301 | nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]); | 
|  | 5302 | int n_rates = | 
|  | 5303 | nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]); | 
|  | 5304 | struct ieee80211_supported_band *sband = | 
|  | 5305 | wiphy->bands[ibss.channel->band]; | 
| Teemu Paasikivi | fbd2c8d | 2010-06-14 12:55:31 +0300 | [diff] [blame] | 5306 |  | 
| Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 5307 | err = ieee80211_get_ratemask(sband, rates, n_rates, | 
|  | 5308 | &ibss.basic_rates); | 
|  | 5309 | if (err) | 
|  | 5310 | return err; | 
| Teemu Paasikivi | fbd2c8d | 2010-06-14 12:55:31 +0300 | [diff] [blame] | 5311 | } | 
| Felix Fietkau | dd5b4cc | 2010-11-22 20:58:24 +0100 | [diff] [blame] | 5312 |  | 
|  | 5313 | if (info->attrs[NL80211_ATTR_MCAST_RATE] && | 
|  | 5314 | !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate, | 
|  | 5315 | nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]))) | 
|  | 5316 | return -EINVAL; | 
| Teemu Paasikivi | fbd2c8d | 2010-06-14 12:55:31 +0300 | [diff] [blame] | 5317 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5318 | if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) { | 
|  | 5319 | connkeys = nl80211_parse_connkeys(rdev, | 
|  | 5320 | info->attrs[NL80211_ATTR_KEYS]); | 
|  | 5321 | if (IS_ERR(connkeys)) | 
|  | 5322 | return PTR_ERR(connkeys); | 
|  | 5323 | } | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5324 |  | 
| Antonio Quartulli | 267335d | 2012-01-31 20:25:47 +0100 | [diff] [blame] | 5325 | ibss.control_port = | 
|  | 5326 | nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]); | 
|  | 5327 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5328 | err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys); | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 5329 | if (err) | 
|  | 5330 | kfree(connkeys); | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5331 | return err; | 
|  | 5332 | } | 
|  | 5333 |  | 
|  | 5334 | static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info) | 
|  | 5335 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5336 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5337 | struct net_device *dev = info->user_ptr[1]; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5338 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5339 | if (!rdev->ops->leave_ibss) | 
|  | 5340 | return -EOPNOTSUPP; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5341 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5342 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC) | 
|  | 5343 | return -EOPNOTSUPP; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5344 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5345 | return cfg80211_leave_ibss(rdev, dev, false); | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 5346 | } | 
|  | 5347 |  | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 5348 | #ifdef CONFIG_NL80211_TESTMODE | 
|  | 5349 | static struct genl_multicast_group nl80211_testmode_mcgrp = { | 
|  | 5350 | .name = "testmode", | 
|  | 5351 | }; | 
|  | 5352 |  | 
|  | 5353 | static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info) | 
|  | 5354 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5355 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 5356 | int err; | 
|  | 5357 |  | 
|  | 5358 | if (!info->attrs[NL80211_ATTR_TESTDATA]) | 
|  | 5359 | return -EINVAL; | 
|  | 5360 |  | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 5361 | err = -EOPNOTSUPP; | 
|  | 5362 | if (rdev->ops->testmode_cmd) { | 
|  | 5363 | rdev->testmode_info = info; | 
|  | 5364 | err = rdev->ops->testmode_cmd(&rdev->wiphy, | 
|  | 5365 | nla_data(info->attrs[NL80211_ATTR_TESTDATA]), | 
|  | 5366 | nla_len(info->attrs[NL80211_ATTR_TESTDATA])); | 
|  | 5367 | rdev->testmode_info = NULL; | 
|  | 5368 | } | 
|  | 5369 |  | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 5370 | return err; | 
|  | 5371 | } | 
|  | 5372 |  | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5373 | static int nl80211_testmode_dump(struct sk_buff *skb, | 
|  | 5374 | struct netlink_callback *cb) | 
|  | 5375 | { | 
| Johannes Berg | 00918d3 | 2011-12-13 17:22:05 +0100 | [diff] [blame] | 5376 | struct cfg80211_registered_device *rdev; | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5377 | int err; | 
|  | 5378 | long phy_idx; | 
|  | 5379 | void *data = NULL; | 
|  | 5380 | int data_len = 0; | 
|  | 5381 |  | 
|  | 5382 | if (cb->args[0]) { | 
|  | 5383 | /* | 
|  | 5384 | * 0 is a valid index, but not valid for args[0], | 
|  | 5385 | * so we need to offset by 1. | 
|  | 5386 | */ | 
|  | 5387 | phy_idx = cb->args[0] - 1; | 
|  | 5388 | } else { | 
|  | 5389 | err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize, | 
|  | 5390 | nl80211_fam.attrbuf, nl80211_fam.maxattr, | 
|  | 5391 | nl80211_policy); | 
|  | 5392 | if (err) | 
|  | 5393 | return err; | 
| Johannes Berg | 00918d3 | 2011-12-13 17:22:05 +0100 | [diff] [blame] | 5394 |  | 
| Johannes Berg | 2bd7e35 | 2012-06-15 14:23:16 +0200 | [diff] [blame] | 5395 | mutex_lock(&cfg80211_mutex); | 
|  | 5396 | rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk), | 
|  | 5397 | nl80211_fam.attrbuf); | 
|  | 5398 | if (IS_ERR(rdev)) { | 
|  | 5399 | mutex_unlock(&cfg80211_mutex); | 
|  | 5400 | return PTR_ERR(rdev); | 
| Johannes Berg | 00918d3 | 2011-12-13 17:22:05 +0100 | [diff] [blame] | 5401 | } | 
| Johannes Berg | 2bd7e35 | 2012-06-15 14:23:16 +0200 | [diff] [blame] | 5402 | phy_idx = rdev->wiphy_idx; | 
|  | 5403 | rdev = NULL; | 
|  | 5404 | mutex_unlock(&cfg80211_mutex); | 
|  | 5405 |  | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5406 | if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA]) | 
|  | 5407 | cb->args[1] = | 
|  | 5408 | (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA]; | 
|  | 5409 | } | 
|  | 5410 |  | 
|  | 5411 | if (cb->args[1]) { | 
|  | 5412 | data = nla_data((void *)cb->args[1]); | 
|  | 5413 | data_len = nla_len((void *)cb->args[1]); | 
|  | 5414 | } | 
|  | 5415 |  | 
|  | 5416 | mutex_lock(&cfg80211_mutex); | 
| Johannes Berg | 00918d3 | 2011-12-13 17:22:05 +0100 | [diff] [blame] | 5417 | rdev = cfg80211_rdev_by_wiphy_idx(phy_idx); | 
|  | 5418 | if (!rdev) { | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5419 | mutex_unlock(&cfg80211_mutex); | 
|  | 5420 | return -ENOENT; | 
|  | 5421 | } | 
| Johannes Berg | 00918d3 | 2011-12-13 17:22:05 +0100 | [diff] [blame] | 5422 | cfg80211_lock_rdev(rdev); | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5423 | mutex_unlock(&cfg80211_mutex); | 
|  | 5424 |  | 
| Johannes Berg | 00918d3 | 2011-12-13 17:22:05 +0100 | [diff] [blame] | 5425 | if (!rdev->ops->testmode_dump) { | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5426 | err = -EOPNOTSUPP; | 
|  | 5427 | goto out_err; | 
|  | 5428 | } | 
|  | 5429 |  | 
|  | 5430 | while (1) { | 
|  | 5431 | void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).pid, | 
|  | 5432 | cb->nlh->nlmsg_seq, NLM_F_MULTI, | 
|  | 5433 | NL80211_CMD_TESTMODE); | 
|  | 5434 | struct nlattr *tmdata; | 
|  | 5435 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 5436 | if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) { | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5437 | genlmsg_cancel(skb, hdr); | 
|  | 5438 | break; | 
|  | 5439 | } | 
|  | 5440 |  | 
|  | 5441 | tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA); | 
|  | 5442 | if (!tmdata) { | 
|  | 5443 | genlmsg_cancel(skb, hdr); | 
|  | 5444 | break; | 
|  | 5445 | } | 
| Johannes Berg | 00918d3 | 2011-12-13 17:22:05 +0100 | [diff] [blame] | 5446 | err = rdev->ops->testmode_dump(&rdev->wiphy, skb, cb, | 
|  | 5447 | data, data_len); | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5448 | nla_nest_end(skb, tmdata); | 
|  | 5449 |  | 
|  | 5450 | if (err == -ENOBUFS || err == -ENOENT) { | 
|  | 5451 | genlmsg_cancel(skb, hdr); | 
|  | 5452 | break; | 
|  | 5453 | } else if (err) { | 
|  | 5454 | genlmsg_cancel(skb, hdr); | 
|  | 5455 | goto out_err; | 
|  | 5456 | } | 
|  | 5457 |  | 
|  | 5458 | genlmsg_end(skb, hdr); | 
|  | 5459 | } | 
|  | 5460 |  | 
|  | 5461 | err = skb->len; | 
|  | 5462 | /* see above */ | 
|  | 5463 | cb->args[0] = phy_idx + 1; | 
|  | 5464 | out_err: | 
| Johannes Berg | 00918d3 | 2011-12-13 17:22:05 +0100 | [diff] [blame] | 5465 | cfg80211_unlock_rdev(rdev); | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 5466 | return err; | 
|  | 5467 | } | 
|  | 5468 |  | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 5469 | static struct sk_buff * | 
|  | 5470 | __cfg80211_testmode_alloc_skb(struct cfg80211_registered_device *rdev, | 
|  | 5471 | int approxlen, u32 pid, u32 seq, gfp_t gfp) | 
|  | 5472 | { | 
|  | 5473 | struct sk_buff *skb; | 
|  | 5474 | void *hdr; | 
|  | 5475 | struct nlattr *data; | 
|  | 5476 |  | 
|  | 5477 | skb = nlmsg_new(approxlen + 100, gfp); | 
|  | 5478 | if (!skb) | 
|  | 5479 | return NULL; | 
|  | 5480 |  | 
|  | 5481 | hdr = nl80211hdr_put(skb, pid, seq, 0, NL80211_CMD_TESTMODE); | 
|  | 5482 | if (!hdr) { | 
|  | 5483 | kfree_skb(skb); | 
|  | 5484 | return NULL; | 
|  | 5485 | } | 
|  | 5486 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 5487 | if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx)) | 
|  | 5488 | goto nla_put_failure; | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 5489 | data = nla_nest_start(skb, NL80211_ATTR_TESTDATA); | 
|  | 5490 |  | 
|  | 5491 | ((void **)skb->cb)[0] = rdev; | 
|  | 5492 | ((void **)skb->cb)[1] = hdr; | 
|  | 5493 | ((void **)skb->cb)[2] = data; | 
|  | 5494 |  | 
|  | 5495 | return skb; | 
|  | 5496 |  | 
|  | 5497 | nla_put_failure: | 
|  | 5498 | kfree_skb(skb); | 
|  | 5499 | return NULL; | 
|  | 5500 | } | 
|  | 5501 |  | 
|  | 5502 | struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy, | 
|  | 5503 | int approxlen) | 
|  | 5504 | { | 
|  | 5505 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); | 
|  | 5506 |  | 
|  | 5507 | if (WARN_ON(!rdev->testmode_info)) | 
|  | 5508 | return NULL; | 
|  | 5509 |  | 
|  | 5510 | return __cfg80211_testmode_alloc_skb(rdev, approxlen, | 
|  | 5511 | rdev->testmode_info->snd_pid, | 
|  | 5512 | rdev->testmode_info->snd_seq, | 
|  | 5513 | GFP_KERNEL); | 
|  | 5514 | } | 
|  | 5515 | EXPORT_SYMBOL(cfg80211_testmode_alloc_reply_skb); | 
|  | 5516 |  | 
|  | 5517 | int cfg80211_testmode_reply(struct sk_buff *skb) | 
|  | 5518 | { | 
|  | 5519 | struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0]; | 
|  | 5520 | void *hdr = ((void **)skb->cb)[1]; | 
|  | 5521 | struct nlattr *data = ((void **)skb->cb)[2]; | 
|  | 5522 |  | 
|  | 5523 | if (WARN_ON(!rdev->testmode_info)) { | 
|  | 5524 | kfree_skb(skb); | 
|  | 5525 | return -EINVAL; | 
|  | 5526 | } | 
|  | 5527 |  | 
|  | 5528 | nla_nest_end(skb, data); | 
|  | 5529 | genlmsg_end(skb, hdr); | 
|  | 5530 | return genlmsg_reply(skb, rdev->testmode_info); | 
|  | 5531 | } | 
|  | 5532 | EXPORT_SYMBOL(cfg80211_testmode_reply); | 
|  | 5533 |  | 
|  | 5534 | struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy, | 
|  | 5535 | int approxlen, gfp_t gfp) | 
|  | 5536 | { | 
|  | 5537 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); | 
|  | 5538 |  | 
|  | 5539 | return __cfg80211_testmode_alloc_skb(rdev, approxlen, 0, 0, gfp); | 
|  | 5540 | } | 
|  | 5541 | EXPORT_SYMBOL(cfg80211_testmode_alloc_event_skb); | 
|  | 5542 |  | 
|  | 5543 | void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp) | 
|  | 5544 | { | 
|  | 5545 | void *hdr = ((void **)skb->cb)[1]; | 
|  | 5546 | struct nlattr *data = ((void **)skb->cb)[2]; | 
|  | 5547 |  | 
|  | 5548 | nla_nest_end(skb, data); | 
|  | 5549 | genlmsg_end(skb, hdr); | 
|  | 5550 | genlmsg_multicast(skb, 0, nl80211_testmode_mcgrp.id, gfp); | 
|  | 5551 | } | 
|  | 5552 | EXPORT_SYMBOL(cfg80211_testmode_event); | 
|  | 5553 | #endif | 
|  | 5554 |  | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5555 | static int nl80211_connect(struct sk_buff *skb, struct genl_info *info) | 
|  | 5556 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5557 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5558 | struct net_device *dev = info->user_ptr[1]; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5559 | struct cfg80211_connect_params connect; | 
|  | 5560 | struct wiphy *wiphy; | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 5561 | struct cfg80211_cached_keys *connkeys = NULL; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5562 | int err; | 
|  | 5563 |  | 
|  | 5564 | memset(&connect, 0, sizeof(connect)); | 
|  | 5565 |  | 
|  | 5566 | if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE])) | 
|  | 5567 | return -EINVAL; | 
|  | 5568 |  | 
|  | 5569 | if (!info->attrs[NL80211_ATTR_SSID] || | 
|  | 5570 | !nla_len(info->attrs[NL80211_ATTR_SSID])) | 
|  | 5571 | return -EINVAL; | 
|  | 5572 |  | 
|  | 5573 | if (info->attrs[NL80211_ATTR_AUTH_TYPE]) { | 
|  | 5574 | connect.auth_type = | 
|  | 5575 | nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]); | 
|  | 5576 | if (!nl80211_valid_auth_type(connect.auth_type)) | 
|  | 5577 | return -EINVAL; | 
|  | 5578 | } else | 
|  | 5579 | connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC; | 
|  | 5580 |  | 
|  | 5581 | connect.privacy = info->attrs[NL80211_ATTR_PRIVACY]; | 
|  | 5582 |  | 
| Johannes Berg | c0692b8 | 2010-08-27 14:26:53 +0300 | [diff] [blame] | 5583 | err = nl80211_crypto_settings(rdev, info, &connect.crypto, | 
| Johannes Berg | 3dc27d2 | 2009-07-02 21:36:37 +0200 | [diff] [blame] | 5584 | NL80211_MAX_NR_CIPHER_SUITES); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5585 | if (err) | 
|  | 5586 | return err; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5587 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 5588 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5589 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 5590 | return -EOPNOTSUPP; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5591 |  | 
| Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 5592 | wiphy = &rdev->wiphy; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5593 |  | 
| Bala Shanmugam | 4486ea9 | 2012-03-07 17:27:12 +0530 | [diff] [blame] | 5594 | connect.bg_scan_period = -1; | 
|  | 5595 | if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] && | 
|  | 5596 | (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) { | 
|  | 5597 | connect.bg_scan_period = | 
|  | 5598 | nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]); | 
|  | 5599 | } | 
|  | 5600 |  | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5601 | if (info->attrs[NL80211_ATTR_MAC]) | 
|  | 5602 | connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 5603 | connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]); | 
|  | 5604 | connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]); | 
|  | 5605 |  | 
|  | 5606 | if (info->attrs[NL80211_ATTR_IE]) { | 
|  | 5607 | connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]); | 
|  | 5608 | connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]); | 
|  | 5609 | } | 
|  | 5610 |  | 
|  | 5611 | if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) { | 
|  | 5612 | connect.channel = | 
|  | 5613 | ieee80211_get_channel(wiphy, | 
|  | 5614 | nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ])); | 
|  | 5615 | if (!connect.channel || | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5616 | connect.channel->flags & IEEE80211_CHAN_DISABLED) | 
|  | 5617 | return -EINVAL; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5618 | } | 
|  | 5619 |  | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 5620 | if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) { | 
|  | 5621 | connkeys = nl80211_parse_connkeys(rdev, | 
|  | 5622 | info->attrs[NL80211_ATTR_KEYS]); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5623 | if (IS_ERR(connkeys)) | 
|  | 5624 | return PTR_ERR(connkeys); | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 5625 | } | 
|  | 5626 |  | 
| Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 5627 | if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT])) | 
|  | 5628 | connect.flags |= ASSOC_REQ_DISABLE_HT; | 
|  | 5629 |  | 
|  | 5630 | if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) | 
|  | 5631 | memcpy(&connect.ht_capa_mask, | 
|  | 5632 | nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]), | 
|  | 5633 | sizeof(connect.ht_capa_mask)); | 
|  | 5634 |  | 
|  | 5635 | if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) { | 
|  | 5636 | if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) | 
|  | 5637 | return -EINVAL; | 
|  | 5638 | memcpy(&connect.ht_capa, | 
|  | 5639 | nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]), | 
|  | 5640 | sizeof(connect.ht_capa)); | 
|  | 5641 | } | 
|  | 5642 |  | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 5643 | err = cfg80211_connect(rdev, dev, &connect, connkeys); | 
| Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 5644 | if (err) | 
|  | 5645 | kfree(connkeys); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5646 | return err; | 
|  | 5647 | } | 
|  | 5648 |  | 
|  | 5649 | static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info) | 
|  | 5650 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5651 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5652 | struct net_device *dev = info->user_ptr[1]; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5653 | u16 reason; | 
|  | 5654 |  | 
|  | 5655 | if (!info->attrs[NL80211_ATTR_REASON_CODE]) | 
|  | 5656 | reason = WLAN_REASON_DEAUTH_LEAVING; | 
|  | 5657 | else | 
|  | 5658 | reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]); | 
|  | 5659 |  | 
|  | 5660 | if (reason == 0) | 
|  | 5661 | return -EINVAL; | 
|  | 5662 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 5663 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5664 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 5665 | return -EOPNOTSUPP; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5666 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5667 | return cfg80211_disconnect(rdev, dev, reason, true); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 5668 | } | 
|  | 5669 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 5670 | static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info) | 
|  | 5671 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5672 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 5673 | struct net *net; | 
|  | 5674 | int err; | 
|  | 5675 | u32 pid; | 
|  | 5676 |  | 
|  | 5677 | if (!info->attrs[NL80211_ATTR_PID]) | 
|  | 5678 | return -EINVAL; | 
|  | 5679 |  | 
|  | 5680 | pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]); | 
|  | 5681 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 5682 | net = get_net_ns_by_pid(pid); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5683 | if (IS_ERR(net)) | 
|  | 5684 | return PTR_ERR(net); | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 5685 |  | 
|  | 5686 | err = 0; | 
|  | 5687 |  | 
|  | 5688 | /* check if anything to do */ | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5689 | if (!net_eq(wiphy_net(&rdev->wiphy), net)) | 
|  | 5690 | err = cfg80211_switch_netns(rdev, net); | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 5691 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 5692 | put_net(net); | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 5693 | return err; | 
|  | 5694 | } | 
|  | 5695 |  | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5696 | static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info) | 
|  | 5697 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5698 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5699 | int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev, | 
|  | 5700 | struct cfg80211_pmksa *pmksa) = NULL; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5701 | struct net_device *dev = info->user_ptr[1]; | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5702 | struct cfg80211_pmksa pmksa; | 
|  | 5703 |  | 
|  | 5704 | memset(&pmksa, 0, sizeof(struct cfg80211_pmksa)); | 
|  | 5705 |  | 
|  | 5706 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 5707 | return -EINVAL; | 
|  | 5708 |  | 
|  | 5709 | if (!info->attrs[NL80211_ATTR_PMKID]) | 
|  | 5710 | return -EINVAL; | 
|  | 5711 |  | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5712 | pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]); | 
|  | 5713 | pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 5714 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 5715 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5716 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 5717 | return -EOPNOTSUPP; | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5718 |  | 
|  | 5719 | switch (info->genlhdr->cmd) { | 
|  | 5720 | case NL80211_CMD_SET_PMKSA: | 
|  | 5721 | rdev_ops = rdev->ops->set_pmksa; | 
|  | 5722 | break; | 
|  | 5723 | case NL80211_CMD_DEL_PMKSA: | 
|  | 5724 | rdev_ops = rdev->ops->del_pmksa; | 
|  | 5725 | break; | 
|  | 5726 | default: | 
|  | 5727 | WARN_ON(1); | 
|  | 5728 | break; | 
|  | 5729 | } | 
|  | 5730 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5731 | if (!rdev_ops) | 
|  | 5732 | return -EOPNOTSUPP; | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5733 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5734 | return rdev_ops(&rdev->wiphy, dev, &pmksa); | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5735 | } | 
|  | 5736 |  | 
|  | 5737 | static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info) | 
|  | 5738 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5739 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5740 | struct net_device *dev = info->user_ptr[1]; | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5741 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 5742 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5743 | dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 5744 | return -EOPNOTSUPP; | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5745 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5746 | if (!rdev->ops->flush_pmksa) | 
|  | 5747 | return -EOPNOTSUPP; | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5748 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5749 | return rdev->ops->flush_pmksa(&rdev->wiphy, dev); | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 5750 | } | 
|  | 5751 |  | 
| Arik Nemtsov | 109086c | 2011-09-28 14:12:50 +0300 | [diff] [blame] | 5752 | static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info) | 
|  | 5753 | { | 
|  | 5754 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5755 | struct net_device *dev = info->user_ptr[1]; | 
|  | 5756 | u8 action_code, dialog_token; | 
|  | 5757 | u16 status_code; | 
|  | 5758 | u8 *peer; | 
|  | 5759 |  | 
|  | 5760 | if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) || | 
|  | 5761 | !rdev->ops->tdls_mgmt) | 
|  | 5762 | return -EOPNOTSUPP; | 
|  | 5763 |  | 
|  | 5764 | if (!info->attrs[NL80211_ATTR_TDLS_ACTION] || | 
|  | 5765 | !info->attrs[NL80211_ATTR_STATUS_CODE] || | 
|  | 5766 | !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] || | 
|  | 5767 | !info->attrs[NL80211_ATTR_IE] || | 
|  | 5768 | !info->attrs[NL80211_ATTR_MAC]) | 
|  | 5769 | return -EINVAL; | 
|  | 5770 |  | 
|  | 5771 | peer = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 5772 | action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]); | 
|  | 5773 | status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]); | 
|  | 5774 | dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]); | 
|  | 5775 |  | 
|  | 5776 | return rdev->ops->tdls_mgmt(&rdev->wiphy, dev, peer, action_code, | 
|  | 5777 | dialog_token, status_code, | 
|  | 5778 | nla_data(info->attrs[NL80211_ATTR_IE]), | 
|  | 5779 | nla_len(info->attrs[NL80211_ATTR_IE])); | 
|  | 5780 | } | 
|  | 5781 |  | 
|  | 5782 | static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info) | 
|  | 5783 | { | 
|  | 5784 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 5785 | struct net_device *dev = info->user_ptr[1]; | 
|  | 5786 | enum nl80211_tdls_operation operation; | 
|  | 5787 | u8 *peer; | 
|  | 5788 |  | 
|  | 5789 | if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) || | 
|  | 5790 | !rdev->ops->tdls_oper) | 
|  | 5791 | return -EOPNOTSUPP; | 
|  | 5792 |  | 
|  | 5793 | if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] || | 
|  | 5794 | !info->attrs[NL80211_ATTR_MAC]) | 
|  | 5795 | return -EINVAL; | 
|  | 5796 |  | 
|  | 5797 | operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]); | 
|  | 5798 | peer = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 5799 |  | 
|  | 5800 | return rdev->ops->tdls_oper(&rdev->wiphy, dev, peer, operation); | 
|  | 5801 | } | 
|  | 5802 |  | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5803 | static int nl80211_remain_on_channel(struct sk_buff *skb, | 
|  | 5804 | struct genl_info *info) | 
|  | 5805 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5806 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 5807 | struct wireless_dev *wdev = info->user_ptr[1]; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5808 | struct ieee80211_channel *chan; | 
|  | 5809 | struct sk_buff *msg; | 
|  | 5810 | void *hdr; | 
|  | 5811 | u64 cookie; | 
|  | 5812 | enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT; | 
|  | 5813 | u32 freq, duration; | 
|  | 5814 | int err; | 
|  | 5815 |  | 
|  | 5816 | if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] || | 
|  | 5817 | !info->attrs[NL80211_ATTR_DURATION]) | 
|  | 5818 | return -EINVAL; | 
|  | 5819 |  | 
|  | 5820 | duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]); | 
|  | 5821 |  | 
| Johannes Berg | 7c4ef71 | 2011-11-18 15:33:48 +0100 | [diff] [blame] | 5822 | if (!rdev->ops->remain_on_channel || | 
|  | 5823 | !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL)) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5824 | return -EOPNOTSUPP; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5825 |  | 
| Johannes Berg | ebf348f | 2012-06-01 12:50:54 +0200 | [diff] [blame] | 5826 | /* | 
|  | 5827 | * We should be on that channel for at least a minimum amount of | 
|  | 5828 | * time (10ms) but no longer than the driver supports. | 
|  | 5829 | */ | 
|  | 5830 | if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME || | 
|  | 5831 | duration > rdev->wiphy.max_remain_on_channel_duration) | 
|  | 5832 | return -EINVAL; | 
|  | 5833 |  | 
| Johannes Berg | cd6c659 | 2012-05-10 21:27:18 +0200 | [diff] [blame] | 5834 | if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE] && | 
|  | 5835 | !nl80211_valid_channel_type(info, &channel_type)) | 
|  | 5836 | return -EINVAL; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5837 |  | 
|  | 5838 | freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]); | 
|  | 5839 | chan = rdev_freq_to_chan(rdev, freq, channel_type); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5840 | if (chan == NULL) | 
|  | 5841 | return -EINVAL; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5842 |  | 
|  | 5843 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5844 | if (!msg) | 
|  | 5845 | return -ENOMEM; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5846 |  | 
|  | 5847 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, | 
|  | 5848 | NL80211_CMD_REMAIN_ON_CHANNEL); | 
|  | 5849 |  | 
|  | 5850 | if (IS_ERR(hdr)) { | 
|  | 5851 | err = PTR_ERR(hdr); | 
|  | 5852 | goto free_msg; | 
|  | 5853 | } | 
|  | 5854 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 5855 | err = rdev->ops->remain_on_channel(&rdev->wiphy, wdev, chan, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5856 | channel_type, duration, &cookie); | 
|  | 5857 |  | 
|  | 5858 | if (err) | 
|  | 5859 | goto free_msg; | 
|  | 5860 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 5861 | if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie)) | 
|  | 5862 | goto nla_put_failure; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5863 |  | 
|  | 5864 | genlmsg_end(msg, hdr); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5865 |  | 
|  | 5866 | return genlmsg_reply(msg, info); | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5867 |  | 
|  | 5868 | nla_put_failure: | 
|  | 5869 | err = -ENOBUFS; | 
|  | 5870 | free_msg: | 
|  | 5871 | nlmsg_free(msg); | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5872 | return err; | 
|  | 5873 | } | 
|  | 5874 |  | 
|  | 5875 | static int nl80211_cancel_remain_on_channel(struct sk_buff *skb, | 
|  | 5876 | struct genl_info *info) | 
|  | 5877 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5878 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 5879 | struct wireless_dev *wdev = info->user_ptr[1]; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5880 | u64 cookie; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5881 |  | 
|  | 5882 | if (!info->attrs[NL80211_ATTR_COOKIE]) | 
|  | 5883 | return -EINVAL; | 
|  | 5884 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5885 | if (!rdev->ops->cancel_remain_on_channel) | 
|  | 5886 | return -EOPNOTSUPP; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5887 |  | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5888 | cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]); | 
|  | 5889 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 5890 | return rdev->ops->cancel_remain_on_channel(&rdev->wiphy, wdev, cookie); | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 5891 | } | 
|  | 5892 |  | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5893 | static u32 rateset_to_mask(struct ieee80211_supported_band *sband, | 
|  | 5894 | u8 *rates, u8 rates_len) | 
|  | 5895 | { | 
|  | 5896 | u8 i; | 
|  | 5897 | u32 mask = 0; | 
|  | 5898 |  | 
|  | 5899 | for (i = 0; i < rates_len; i++) { | 
|  | 5900 | int rate = (rates[i] & 0x7f) * 5; | 
|  | 5901 | int ridx; | 
|  | 5902 | for (ridx = 0; ridx < sband->n_bitrates; ridx++) { | 
|  | 5903 | struct ieee80211_rate *srate = | 
|  | 5904 | &sband->bitrates[ridx]; | 
|  | 5905 | if (rate == srate->bitrate) { | 
|  | 5906 | mask |= 1 << ridx; | 
|  | 5907 | break; | 
|  | 5908 | } | 
|  | 5909 | } | 
|  | 5910 | if (ridx == sband->n_bitrates) | 
|  | 5911 | return 0; /* rate not found */ | 
|  | 5912 | } | 
|  | 5913 |  | 
|  | 5914 | return mask; | 
|  | 5915 | } | 
|  | 5916 |  | 
| Simon Wunderlich | 24db78c | 2012-01-28 17:25:32 +0100 | [diff] [blame] | 5917 | static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband, | 
|  | 5918 | u8 *rates, u8 rates_len, | 
|  | 5919 | u8 mcs[IEEE80211_HT_MCS_MASK_LEN]) | 
|  | 5920 | { | 
|  | 5921 | u8 i; | 
|  | 5922 |  | 
|  | 5923 | memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN); | 
|  | 5924 |  | 
|  | 5925 | for (i = 0; i < rates_len; i++) { | 
|  | 5926 | int ridx, rbit; | 
|  | 5927 |  | 
|  | 5928 | ridx = rates[i] / 8; | 
|  | 5929 | rbit = BIT(rates[i] % 8); | 
|  | 5930 |  | 
|  | 5931 | /* check validity */ | 
| Dan Carpenter | 910570b5 | 2012-02-01 10:42:11 +0300 | [diff] [blame] | 5932 | if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN)) | 
| Simon Wunderlich | 24db78c | 2012-01-28 17:25:32 +0100 | [diff] [blame] | 5933 | return false; | 
|  | 5934 |  | 
|  | 5935 | /* check availability */ | 
|  | 5936 | if (sband->ht_cap.mcs.rx_mask[ridx] & rbit) | 
|  | 5937 | mcs[ridx] |= rbit; | 
|  | 5938 | else | 
|  | 5939 | return false; | 
|  | 5940 | } | 
|  | 5941 |  | 
|  | 5942 | return true; | 
|  | 5943 | } | 
|  | 5944 |  | 
| Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 5945 | static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = { | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5946 | [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY, | 
|  | 5947 | .len = NL80211_MAX_SUPP_RATES }, | 
| Simon Wunderlich | 24db78c | 2012-01-28 17:25:32 +0100 | [diff] [blame] | 5948 | [NL80211_TXRATE_MCS] = { .type = NLA_BINARY, | 
|  | 5949 | .len = NL80211_MAX_SUPP_HT_RATES }, | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5950 | }; | 
|  | 5951 |  | 
|  | 5952 | static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb, | 
|  | 5953 | struct genl_info *info) | 
|  | 5954 | { | 
|  | 5955 | struct nlattr *tb[NL80211_TXRATE_MAX + 1]; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5956 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5957 | struct cfg80211_bitrate_mask mask; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5958 | int rem, i; | 
|  | 5959 | struct net_device *dev = info->user_ptr[1]; | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5960 | struct nlattr *tx_rates; | 
|  | 5961 | struct ieee80211_supported_band *sband; | 
|  | 5962 |  | 
|  | 5963 | if (info->attrs[NL80211_ATTR_TX_RATES] == NULL) | 
|  | 5964 | return -EINVAL; | 
|  | 5965 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5966 | if (!rdev->ops->set_bitrate_mask) | 
|  | 5967 | return -EOPNOTSUPP; | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5968 |  | 
|  | 5969 | memset(&mask, 0, sizeof(mask)); | 
|  | 5970 | /* Default to all rates enabled */ | 
|  | 5971 | for (i = 0; i < IEEE80211_NUM_BANDS; i++) { | 
|  | 5972 | sband = rdev->wiphy.bands[i]; | 
|  | 5973 | mask.control[i].legacy = | 
|  | 5974 | sband ? (1 << sband->n_bitrates) - 1 : 0; | 
| Simon Wunderlich | 24db78c | 2012-01-28 17:25:32 +0100 | [diff] [blame] | 5975 | if (sband) | 
|  | 5976 | memcpy(mask.control[i].mcs, | 
|  | 5977 | sband->ht_cap.mcs.rx_mask, | 
|  | 5978 | sizeof(mask.control[i].mcs)); | 
|  | 5979 | else | 
|  | 5980 | memset(mask.control[i].mcs, 0, | 
|  | 5981 | sizeof(mask.control[i].mcs)); | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5982 | } | 
|  | 5983 |  | 
|  | 5984 | /* | 
|  | 5985 | * The nested attribute uses enum nl80211_band as the index. This maps | 
|  | 5986 | * directly to the enum ieee80211_band values used in cfg80211. | 
|  | 5987 | */ | 
| Simon Wunderlich | 24db78c | 2012-01-28 17:25:32 +0100 | [diff] [blame] | 5988 | BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8); | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5989 | nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem) | 
|  | 5990 | { | 
|  | 5991 | enum ieee80211_band band = nla_type(tx_rates); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5992 | if (band < 0 || band >= IEEE80211_NUM_BANDS) | 
|  | 5993 | return -EINVAL; | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5994 | sband = rdev->wiphy.bands[band]; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 5995 | if (sband == NULL) | 
|  | 5996 | return -EINVAL; | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 5997 | nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates), | 
|  | 5998 | nla_len(tx_rates), nl80211_txattr_policy); | 
|  | 5999 | if (tb[NL80211_TXRATE_LEGACY]) { | 
|  | 6000 | mask.control[band].legacy = rateset_to_mask( | 
|  | 6001 | sband, | 
|  | 6002 | nla_data(tb[NL80211_TXRATE_LEGACY]), | 
|  | 6003 | nla_len(tb[NL80211_TXRATE_LEGACY])); | 
| Bala Shanmugam | 218d2e2 | 2012-04-20 19:12:58 +0530 | [diff] [blame] | 6004 | if ((mask.control[band].legacy == 0) && | 
|  | 6005 | nla_len(tb[NL80211_TXRATE_LEGACY])) | 
|  | 6006 | return -EINVAL; | 
| Simon Wunderlich | 24db78c | 2012-01-28 17:25:32 +0100 | [diff] [blame] | 6007 | } | 
|  | 6008 | if (tb[NL80211_TXRATE_MCS]) { | 
|  | 6009 | if (!ht_rateset_to_mask( | 
|  | 6010 | sband, | 
|  | 6011 | nla_data(tb[NL80211_TXRATE_MCS]), | 
|  | 6012 | nla_len(tb[NL80211_TXRATE_MCS]), | 
|  | 6013 | mask.control[band].mcs)) | 
|  | 6014 | return -EINVAL; | 
|  | 6015 | } | 
|  | 6016 |  | 
|  | 6017 | if (mask.control[band].legacy == 0) { | 
|  | 6018 | /* don't allow empty legacy rates if HT | 
|  | 6019 | * is not even supported. */ | 
|  | 6020 | if (!rdev->wiphy.bands[band]->ht_cap.ht_supported) | 
|  | 6021 | return -EINVAL; | 
|  | 6022 |  | 
|  | 6023 | for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) | 
|  | 6024 | if (mask.control[band].mcs[i]) | 
|  | 6025 | break; | 
|  | 6026 |  | 
|  | 6027 | /* legacy and mcs rates may not be both empty */ | 
|  | 6028 | if (i == IEEE80211_HT_MCS_MASK_LEN) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6029 | return -EINVAL; | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 6030 | } | 
|  | 6031 | } | 
|  | 6032 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6033 | return rdev->ops->set_bitrate_mask(&rdev->wiphy, dev, NULL, &mask); | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 6034 | } | 
|  | 6035 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 6036 | static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info) | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6037 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6038 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6039 | struct wireless_dev *wdev = info->user_ptr[1]; | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 6040 | u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6041 |  | 
|  | 6042 | if (!info->attrs[NL80211_ATTR_FRAME_MATCH]) | 
|  | 6043 | return -EINVAL; | 
|  | 6044 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 6045 | if (info->attrs[NL80211_ATTR_FRAME_TYPE]) | 
|  | 6046 | frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6047 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6048 | switch (wdev->iftype) { | 
|  | 6049 | case NL80211_IFTYPE_STATION: | 
|  | 6050 | case NL80211_IFTYPE_ADHOC: | 
|  | 6051 | case NL80211_IFTYPE_P2P_CLIENT: | 
|  | 6052 | case NL80211_IFTYPE_AP: | 
|  | 6053 | case NL80211_IFTYPE_AP_VLAN: | 
|  | 6054 | case NL80211_IFTYPE_MESH_POINT: | 
|  | 6055 | case NL80211_IFTYPE_P2P_GO: | 
|  | 6056 | break; | 
|  | 6057 | default: | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6058 | return -EOPNOTSUPP; | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6059 | } | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6060 |  | 
|  | 6061 | /* not much point in registering if we can't reply */ | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6062 | if (!rdev->ops->mgmt_tx) | 
|  | 6063 | return -EOPNOTSUPP; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6064 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6065 | return cfg80211_mlme_register_mgmt(wdev, info->snd_pid, frame_type, | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6066 | nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]), | 
|  | 6067 | nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH])); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6068 | } | 
|  | 6069 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 6070 | static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info) | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6071 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6072 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6073 | struct wireless_dev *wdev = info->user_ptr[1]; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6074 | struct ieee80211_channel *chan; | 
|  | 6075 | enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT; | 
| Johannes Berg | 252aa63 | 2010-05-19 12:17:12 +0200 | [diff] [blame] | 6076 | bool channel_type_valid = false; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6077 | u32 freq; | 
|  | 6078 | int err; | 
| Johannes Berg | d64d373 | 2011-11-10 09:44:46 +0100 | [diff] [blame] | 6079 | void *hdr = NULL; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6080 | u64 cookie; | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6081 | struct sk_buff *msg = NULL; | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6082 | unsigned int wait = 0; | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6083 | bool offchan, no_cck, dont_wait_for_ack; | 
|  | 6084 |  | 
|  | 6085 | dont_wait_for_ack = info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK]; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6086 |  | 
|  | 6087 | if (!info->attrs[NL80211_ATTR_FRAME] || | 
|  | 6088 | !info->attrs[NL80211_ATTR_WIPHY_FREQ]) | 
|  | 6089 | return -EINVAL; | 
|  | 6090 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6091 | if (!rdev->ops->mgmt_tx) | 
|  | 6092 | return -EOPNOTSUPP; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6093 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6094 | switch (wdev->iftype) { | 
|  | 6095 | case NL80211_IFTYPE_STATION: | 
|  | 6096 | case NL80211_IFTYPE_ADHOC: | 
|  | 6097 | case NL80211_IFTYPE_P2P_CLIENT: | 
|  | 6098 | case NL80211_IFTYPE_AP: | 
|  | 6099 | case NL80211_IFTYPE_AP_VLAN: | 
|  | 6100 | case NL80211_IFTYPE_MESH_POINT: | 
|  | 6101 | case NL80211_IFTYPE_P2P_GO: | 
|  | 6102 | break; | 
|  | 6103 | default: | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6104 | return -EOPNOTSUPP; | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6105 | } | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6106 |  | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6107 | if (info->attrs[NL80211_ATTR_DURATION]) { | 
| Johannes Berg | 7c4ef71 | 2011-11-18 15:33:48 +0100 | [diff] [blame] | 6108 | if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX)) | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6109 | return -EINVAL; | 
|  | 6110 | wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]); | 
| Johannes Berg | ebf348f | 2012-06-01 12:50:54 +0200 | [diff] [blame] | 6111 |  | 
|  | 6112 | /* | 
|  | 6113 | * We should wait on the channel for at least a minimum amount | 
|  | 6114 | * of time (10ms) but no longer than the driver supports. | 
|  | 6115 | */ | 
|  | 6116 | if (wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME || | 
|  | 6117 | wait > rdev->wiphy.max_remain_on_channel_duration) | 
|  | 6118 | return -EINVAL; | 
|  | 6119 |  | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6120 | } | 
|  | 6121 |  | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6122 | if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) { | 
| Johannes Berg | cd6c659 | 2012-05-10 21:27:18 +0200 | [diff] [blame] | 6123 | if (!nl80211_valid_channel_type(info, &channel_type)) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6124 | return -EINVAL; | 
| Johannes Berg | 252aa63 | 2010-05-19 12:17:12 +0200 | [diff] [blame] | 6125 | channel_type_valid = true; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6126 | } | 
|  | 6127 |  | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6128 | offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK]; | 
|  | 6129 |  | 
| Johannes Berg | 7c4ef71 | 2011-11-18 15:33:48 +0100 | [diff] [blame] | 6130 | if (offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX)) | 
|  | 6131 | return -EINVAL; | 
|  | 6132 |  | 
| Rajkumar Manoharan | e9f935e | 2011-09-25 14:53:30 +0530 | [diff] [blame] | 6133 | no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]); | 
|  | 6134 |  | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6135 | freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]); | 
|  | 6136 | chan = rdev_freq_to_chan(rdev, freq, channel_type); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6137 | if (chan == NULL) | 
|  | 6138 | return -EINVAL; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6139 |  | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6140 | if (!dont_wait_for_ack) { | 
|  | 6141 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
|  | 6142 | if (!msg) | 
|  | 6143 | return -ENOMEM; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6144 |  | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6145 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, | 
|  | 6146 | NL80211_CMD_FRAME); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6147 |  | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6148 | if (IS_ERR(hdr)) { | 
|  | 6149 | err = PTR_ERR(hdr); | 
|  | 6150 | goto free_msg; | 
|  | 6151 | } | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6152 | } | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6153 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6154 | err = cfg80211_mlme_mgmt_tx(rdev, wdev, chan, offchan, channel_type, | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6155 | channel_type_valid, wait, | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 6156 | nla_data(info->attrs[NL80211_ATTR_FRAME]), | 
|  | 6157 | nla_len(info->attrs[NL80211_ATTR_FRAME]), | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6158 | no_cck, dont_wait_for_ack, &cookie); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6159 | if (err) | 
|  | 6160 | goto free_msg; | 
|  | 6161 |  | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6162 | if (msg) { | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 6163 | if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie)) | 
|  | 6164 | goto nla_put_failure; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6165 |  | 
| Johannes Berg | e247bd90 | 2011-11-04 11:18:21 +0100 | [diff] [blame] | 6166 | genlmsg_end(msg, hdr); | 
|  | 6167 | return genlmsg_reply(msg, info); | 
|  | 6168 | } | 
|  | 6169 |  | 
|  | 6170 | return 0; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6171 |  | 
|  | 6172 | nla_put_failure: | 
|  | 6173 | err = -ENOBUFS; | 
|  | 6174 | free_msg: | 
|  | 6175 | nlmsg_free(msg); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 6176 | return err; | 
|  | 6177 | } | 
|  | 6178 |  | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6179 | static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info) | 
|  | 6180 | { | 
|  | 6181 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6182 | struct wireless_dev *wdev = info->user_ptr[1]; | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6183 | u64 cookie; | 
|  | 6184 |  | 
|  | 6185 | if (!info->attrs[NL80211_ATTR_COOKIE]) | 
|  | 6186 | return -EINVAL; | 
|  | 6187 |  | 
|  | 6188 | if (!rdev->ops->mgmt_tx_cancel_wait) | 
|  | 6189 | return -EOPNOTSUPP; | 
|  | 6190 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6191 | switch (wdev->iftype) { | 
|  | 6192 | case NL80211_IFTYPE_STATION: | 
|  | 6193 | case NL80211_IFTYPE_ADHOC: | 
|  | 6194 | case NL80211_IFTYPE_P2P_CLIENT: | 
|  | 6195 | case NL80211_IFTYPE_AP: | 
|  | 6196 | case NL80211_IFTYPE_AP_VLAN: | 
|  | 6197 | case NL80211_IFTYPE_P2P_GO: | 
|  | 6198 | break; | 
|  | 6199 | default: | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6200 | return -EOPNOTSUPP; | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6201 | } | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6202 |  | 
|  | 6203 | cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]); | 
|  | 6204 |  | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 6205 | return rdev->ops->mgmt_tx_cancel_wait(&rdev->wiphy, wdev, cookie); | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 6206 | } | 
|  | 6207 |  | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6208 | static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info) | 
|  | 6209 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6210 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6211 | struct wireless_dev *wdev; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6212 | struct net_device *dev = info->user_ptr[1]; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6213 | u8 ps_state; | 
|  | 6214 | bool state; | 
|  | 6215 | int err; | 
|  | 6216 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6217 | if (!info->attrs[NL80211_ATTR_PS_STATE]) | 
|  | 6218 | return -EINVAL; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6219 |  | 
|  | 6220 | ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]); | 
|  | 6221 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6222 | if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED) | 
|  | 6223 | return -EINVAL; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6224 |  | 
|  | 6225 | wdev = dev->ieee80211_ptr; | 
|  | 6226 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6227 | if (!rdev->ops->set_power_mgmt) | 
|  | 6228 | return -EOPNOTSUPP; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6229 |  | 
|  | 6230 | state = (ps_state == NL80211_PS_ENABLED) ? true : false; | 
|  | 6231 |  | 
|  | 6232 | if (state == wdev->ps) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6233 | return 0; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6234 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6235 | err = rdev->ops->set_power_mgmt(wdev->wiphy, dev, state, | 
|  | 6236 | wdev->ps_timeout); | 
|  | 6237 | if (!err) | 
|  | 6238 | wdev->ps = state; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6239 | return err; | 
|  | 6240 | } | 
|  | 6241 |  | 
|  | 6242 | static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info) | 
|  | 6243 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6244 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6245 | enum nl80211_ps_state ps_state; | 
|  | 6246 | struct wireless_dev *wdev; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6247 | struct net_device *dev = info->user_ptr[1]; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6248 | struct sk_buff *msg; | 
|  | 6249 | void *hdr; | 
|  | 6250 | int err; | 
|  | 6251 |  | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6252 | wdev = dev->ieee80211_ptr; | 
|  | 6253 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6254 | if (!rdev->ops->set_power_mgmt) | 
|  | 6255 | return -EOPNOTSUPP; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6256 |  | 
|  | 6257 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6258 | if (!msg) | 
|  | 6259 | return -ENOMEM; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6260 |  | 
|  | 6261 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, | 
|  | 6262 | NL80211_CMD_GET_POWER_SAVE); | 
|  | 6263 | if (!hdr) { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6264 | err = -ENOBUFS; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6265 | goto free_msg; | 
|  | 6266 | } | 
|  | 6267 |  | 
|  | 6268 | if (wdev->ps) | 
|  | 6269 | ps_state = NL80211_PS_ENABLED; | 
|  | 6270 | else | 
|  | 6271 | ps_state = NL80211_PS_DISABLED; | 
|  | 6272 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 6273 | if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state)) | 
|  | 6274 | goto nla_put_failure; | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6275 |  | 
|  | 6276 | genlmsg_end(msg, hdr); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6277 | return genlmsg_reply(msg, info); | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6278 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6279 | nla_put_failure: | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6280 | err = -ENOBUFS; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6281 | free_msg: | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6282 | nlmsg_free(msg); | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 6283 | return err; | 
|  | 6284 | } | 
|  | 6285 |  | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6286 | static struct nla_policy | 
|  | 6287 | nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] __read_mostly = { | 
|  | 6288 | [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 }, | 
|  | 6289 | [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 }, | 
|  | 6290 | [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 }, | 
| Thomas Pedersen | 84f1070 | 2012-07-12 16:17:33 -0700 | [diff] [blame] | 6291 | [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 }, | 
|  | 6292 | [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 }, | 
|  | 6293 | [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 }, | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6294 | }; | 
|  | 6295 |  | 
| Thomas Pedersen | 84f1070 | 2012-07-12 16:17:33 -0700 | [diff] [blame] | 6296 | static int nl80211_set_cqm_txe(struct genl_info *info, | 
|  | 6297 | u32 rate, u32 pkts, u32 intvl) | 
|  | 6298 | { | 
|  | 6299 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 6300 | struct wireless_dev *wdev; | 
|  | 6301 | struct net_device *dev = info->user_ptr[1]; | 
|  | 6302 |  | 
|  | 6303 | if ((rate < 0 || rate > 100) || | 
|  | 6304 | (intvl < 0 || intvl > NL80211_CQM_TXE_MAX_INTVL)) | 
|  | 6305 | return -EINVAL; | 
|  | 6306 |  | 
|  | 6307 | wdev = dev->ieee80211_ptr; | 
|  | 6308 |  | 
|  | 6309 | if (!rdev->ops->set_cqm_txe_config) | 
|  | 6310 | return -EOPNOTSUPP; | 
|  | 6311 |  | 
|  | 6312 | if (wdev->iftype != NL80211_IFTYPE_STATION && | 
|  | 6313 | wdev->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 6314 | return -EOPNOTSUPP; | 
|  | 6315 |  | 
|  | 6316 | return rdev->ops->set_cqm_txe_config(wdev->wiphy, dev, | 
|  | 6317 | rate, pkts, intvl); | 
|  | 6318 | } | 
|  | 6319 |  | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6320 | static int nl80211_set_cqm_rssi(struct genl_info *info, | 
|  | 6321 | s32 threshold, u32 hysteresis) | 
|  | 6322 | { | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6323 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6324 | struct wireless_dev *wdev; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6325 | struct net_device *dev = info->user_ptr[1]; | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6326 |  | 
|  | 6327 | if (threshold > 0) | 
|  | 6328 | return -EINVAL; | 
|  | 6329 |  | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6330 | wdev = dev->ieee80211_ptr; | 
|  | 6331 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6332 | if (!rdev->ops->set_cqm_rssi_config) | 
|  | 6333 | return -EOPNOTSUPP; | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6334 |  | 
| Johannes Berg | 074ac8d | 2010-09-16 14:58:22 +0200 | [diff] [blame] | 6335 | if (wdev->iftype != NL80211_IFTYPE_STATION && | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6336 | wdev->iftype != NL80211_IFTYPE_P2P_CLIENT) | 
|  | 6337 | return -EOPNOTSUPP; | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6338 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6339 | return rdev->ops->set_cqm_rssi_config(wdev->wiphy, dev, | 
|  | 6340 | threshold, hysteresis); | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6341 | } | 
|  | 6342 |  | 
|  | 6343 | static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info) | 
|  | 6344 | { | 
|  | 6345 | struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1]; | 
|  | 6346 | struct nlattr *cqm; | 
|  | 6347 | int err; | 
|  | 6348 |  | 
|  | 6349 | cqm = info->attrs[NL80211_ATTR_CQM]; | 
|  | 6350 | if (!cqm) { | 
|  | 6351 | err = -EINVAL; | 
|  | 6352 | goto out; | 
|  | 6353 | } | 
|  | 6354 |  | 
|  | 6355 | err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm, | 
|  | 6356 | nl80211_attr_cqm_policy); | 
|  | 6357 | if (err) | 
|  | 6358 | goto out; | 
|  | 6359 |  | 
|  | 6360 | if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] && | 
|  | 6361 | attrs[NL80211_ATTR_CQM_RSSI_HYST]) { | 
|  | 6362 | s32 threshold; | 
|  | 6363 | u32 hysteresis; | 
|  | 6364 | threshold = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]); | 
|  | 6365 | hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]); | 
|  | 6366 | err = nl80211_set_cqm_rssi(info, threshold, hysteresis); | 
| Thomas Pedersen | 84f1070 | 2012-07-12 16:17:33 -0700 | [diff] [blame] | 6367 | } else if (attrs[NL80211_ATTR_CQM_TXE_RATE] && | 
|  | 6368 | attrs[NL80211_ATTR_CQM_TXE_PKTS] && | 
|  | 6369 | attrs[NL80211_ATTR_CQM_TXE_INTVL]) { | 
|  | 6370 | u32 rate, pkts, intvl; | 
|  | 6371 | rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]); | 
|  | 6372 | pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]); | 
|  | 6373 | intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]); | 
|  | 6374 | err = nl80211_set_cqm_txe(info, rate, pkts, intvl); | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 6375 | } else | 
|  | 6376 | err = -EINVAL; | 
|  | 6377 |  | 
|  | 6378 | out: | 
|  | 6379 | return err; | 
|  | 6380 | } | 
|  | 6381 |  | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 6382 | static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info) | 
|  | 6383 | { | 
|  | 6384 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 6385 | struct net_device *dev = info->user_ptr[1]; | 
|  | 6386 | struct mesh_config cfg; | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 6387 | struct mesh_setup setup; | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 6388 | int err; | 
|  | 6389 |  | 
|  | 6390 | /* start with default */ | 
|  | 6391 | memcpy(&cfg, &default_mesh_config, sizeof(cfg)); | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 6392 | memcpy(&setup, &default_mesh_setup, sizeof(setup)); | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 6393 |  | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 6394 | if (info->attrs[NL80211_ATTR_MESH_CONFIG]) { | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 6395 | /* and parse parameters if given */ | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 6396 | err = nl80211_parse_mesh_config(info, &cfg, NULL); | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 6397 | if (err) | 
|  | 6398 | return err; | 
|  | 6399 | } | 
|  | 6400 |  | 
|  | 6401 | if (!info->attrs[NL80211_ATTR_MESH_ID] || | 
|  | 6402 | !nla_len(info->attrs[NL80211_ATTR_MESH_ID])) | 
|  | 6403 | return -EINVAL; | 
|  | 6404 |  | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 6405 | setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]); | 
|  | 6406 | setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]); | 
|  | 6407 |  | 
| Chun-Yeow Yeoh | 4bb6234 | 2011-11-24 17:15:20 -0800 | [diff] [blame] | 6408 | if (info->attrs[NL80211_ATTR_MCAST_RATE] && | 
|  | 6409 | !nl80211_parse_mcast_rate(rdev, setup.mcast_rate, | 
|  | 6410 | nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]))) | 
|  | 6411 | return -EINVAL; | 
|  | 6412 |  | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 6413 | if (info->attrs[NL80211_ATTR_MESH_SETUP]) { | 
|  | 6414 | /* parse additional setup parameters if given */ | 
|  | 6415 | err = nl80211_parse_mesh_setup(info, &setup); | 
|  | 6416 | if (err) | 
|  | 6417 | return err; | 
|  | 6418 | } | 
|  | 6419 |  | 
| Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 6420 | if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) { | 
|  | 6421 | enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT; | 
|  | 6422 |  | 
|  | 6423 | if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE] && | 
|  | 6424 | !nl80211_valid_channel_type(info, &channel_type)) | 
|  | 6425 | return -EINVAL; | 
|  | 6426 |  | 
|  | 6427 | setup.channel = rdev_freq_to_chan(rdev, | 
|  | 6428 | nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]), | 
|  | 6429 | channel_type); | 
|  | 6430 | if (!setup.channel) | 
|  | 6431 | return -EINVAL; | 
|  | 6432 | setup.channel_type = channel_type; | 
|  | 6433 | } else { | 
|  | 6434 | /* cfg80211_join_mesh() will sort it out */ | 
|  | 6435 | setup.channel = NULL; | 
|  | 6436 | } | 
|  | 6437 |  | 
| Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 6438 | return cfg80211_join_mesh(rdev, dev, &setup, &cfg); | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 6439 | } | 
|  | 6440 |  | 
|  | 6441 | static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info) | 
|  | 6442 | { | 
|  | 6443 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 6444 | struct net_device *dev = info->user_ptr[1]; | 
|  | 6445 |  | 
|  | 6446 | return cfg80211_leave_mesh(rdev, dev); | 
|  | 6447 | } | 
|  | 6448 |  | 
| Johannes Berg | dfb89c5 | 2012-06-27 09:23:48 +0200 | [diff] [blame] | 6449 | #ifdef CONFIG_PM | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6450 | static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info) | 
|  | 6451 | { | 
|  | 6452 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 6453 | struct sk_buff *msg; | 
|  | 6454 | void *hdr; | 
|  | 6455 |  | 
|  | 6456 | if (!rdev->wiphy.wowlan.flags && !rdev->wiphy.wowlan.n_patterns) | 
|  | 6457 | return -EOPNOTSUPP; | 
|  | 6458 |  | 
|  | 6459 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
|  | 6460 | if (!msg) | 
|  | 6461 | return -ENOMEM; | 
|  | 6462 |  | 
|  | 6463 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, | 
|  | 6464 | NL80211_CMD_GET_WOWLAN); | 
|  | 6465 | if (!hdr) | 
|  | 6466 | goto nla_put_failure; | 
|  | 6467 |  | 
|  | 6468 | if (rdev->wowlan) { | 
|  | 6469 | struct nlattr *nl_wowlan; | 
|  | 6470 |  | 
|  | 6471 | nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS); | 
|  | 6472 | if (!nl_wowlan) | 
|  | 6473 | goto nla_put_failure; | 
|  | 6474 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 6475 | if ((rdev->wowlan->any && | 
|  | 6476 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) || | 
|  | 6477 | (rdev->wowlan->disconnect && | 
|  | 6478 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) || | 
|  | 6479 | (rdev->wowlan->magic_pkt && | 
|  | 6480 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) || | 
|  | 6481 | (rdev->wowlan->gtk_rekey_failure && | 
|  | 6482 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) || | 
|  | 6483 | (rdev->wowlan->eap_identity_req && | 
|  | 6484 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) || | 
|  | 6485 | (rdev->wowlan->four_way_handshake && | 
|  | 6486 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) || | 
|  | 6487 | (rdev->wowlan->rfkill_release && | 
|  | 6488 | nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))) | 
|  | 6489 | goto nla_put_failure; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6490 | if (rdev->wowlan->n_patterns) { | 
|  | 6491 | struct nlattr *nl_pats, *nl_pat; | 
|  | 6492 | int i, pat_len; | 
|  | 6493 |  | 
|  | 6494 | nl_pats = nla_nest_start(msg, | 
|  | 6495 | NL80211_WOWLAN_TRIG_PKT_PATTERN); | 
|  | 6496 | if (!nl_pats) | 
|  | 6497 | goto nla_put_failure; | 
|  | 6498 |  | 
|  | 6499 | for (i = 0; i < rdev->wowlan->n_patterns; i++) { | 
|  | 6500 | nl_pat = nla_nest_start(msg, i + 1); | 
|  | 6501 | if (!nl_pat) | 
|  | 6502 | goto nla_put_failure; | 
|  | 6503 | pat_len = rdev->wowlan->patterns[i].pattern_len; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 6504 | if (nla_put(msg, NL80211_WOWLAN_PKTPAT_MASK, | 
|  | 6505 | DIV_ROUND_UP(pat_len, 8), | 
|  | 6506 | rdev->wowlan->patterns[i].mask) || | 
|  | 6507 | nla_put(msg, NL80211_WOWLAN_PKTPAT_PATTERN, | 
|  | 6508 | pat_len, | 
|  | 6509 | rdev->wowlan->patterns[i].pattern)) | 
|  | 6510 | goto nla_put_failure; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6511 | nla_nest_end(msg, nl_pat); | 
|  | 6512 | } | 
|  | 6513 | nla_nest_end(msg, nl_pats); | 
|  | 6514 | } | 
|  | 6515 |  | 
|  | 6516 | nla_nest_end(msg, nl_wowlan); | 
|  | 6517 | } | 
|  | 6518 |  | 
|  | 6519 | genlmsg_end(msg, hdr); | 
|  | 6520 | return genlmsg_reply(msg, info); | 
|  | 6521 |  | 
|  | 6522 | nla_put_failure: | 
|  | 6523 | nlmsg_free(msg); | 
|  | 6524 | return -ENOBUFS; | 
|  | 6525 | } | 
|  | 6526 |  | 
|  | 6527 | static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info) | 
|  | 6528 | { | 
|  | 6529 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 6530 | struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG]; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6531 | struct cfg80211_wowlan new_triggers = {}; | 
| Johannes Berg | ae33bd8 | 2012-07-12 16:25:02 +0200 | [diff] [blame] | 6532 | struct cfg80211_wowlan *ntrig; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6533 | struct wiphy_wowlan_support *wowlan = &rdev->wiphy.wowlan; | 
|  | 6534 | int err, i; | 
| Johannes Berg | 6d52563 | 2012-04-04 15:05:25 +0200 | [diff] [blame] | 6535 | bool prev_enabled = rdev->wowlan; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6536 |  | 
|  | 6537 | if (!rdev->wiphy.wowlan.flags && !rdev->wiphy.wowlan.n_patterns) | 
|  | 6538 | return -EOPNOTSUPP; | 
|  | 6539 |  | 
| Johannes Berg | ae33bd8 | 2012-07-12 16:25:02 +0200 | [diff] [blame] | 6540 | if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) { | 
|  | 6541 | cfg80211_rdev_free_wowlan(rdev); | 
|  | 6542 | rdev->wowlan = NULL; | 
|  | 6543 | goto set_wakeup; | 
|  | 6544 | } | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6545 |  | 
|  | 6546 | err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG, | 
|  | 6547 | nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]), | 
|  | 6548 | nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]), | 
|  | 6549 | nl80211_wowlan_policy); | 
|  | 6550 | if (err) | 
|  | 6551 | return err; | 
|  | 6552 |  | 
|  | 6553 | if (tb[NL80211_WOWLAN_TRIG_ANY]) { | 
|  | 6554 | if (!(wowlan->flags & WIPHY_WOWLAN_ANY)) | 
|  | 6555 | return -EINVAL; | 
|  | 6556 | new_triggers.any = true; | 
|  | 6557 | } | 
|  | 6558 |  | 
|  | 6559 | if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) { | 
|  | 6560 | if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT)) | 
|  | 6561 | return -EINVAL; | 
|  | 6562 | new_triggers.disconnect = true; | 
|  | 6563 | } | 
|  | 6564 |  | 
|  | 6565 | if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) { | 
|  | 6566 | if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT)) | 
|  | 6567 | return -EINVAL; | 
|  | 6568 | new_triggers.magic_pkt = true; | 
|  | 6569 | } | 
|  | 6570 |  | 
| Johannes Berg | 77dbbb13 | 2011-07-13 10:48:55 +0200 | [diff] [blame] | 6571 | if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED]) | 
|  | 6572 | return -EINVAL; | 
|  | 6573 |  | 
|  | 6574 | if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) { | 
|  | 6575 | if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE)) | 
|  | 6576 | return -EINVAL; | 
|  | 6577 | new_triggers.gtk_rekey_failure = true; | 
|  | 6578 | } | 
|  | 6579 |  | 
|  | 6580 | if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) { | 
|  | 6581 | if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ)) | 
|  | 6582 | return -EINVAL; | 
|  | 6583 | new_triggers.eap_identity_req = true; | 
|  | 6584 | } | 
|  | 6585 |  | 
|  | 6586 | if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) { | 
|  | 6587 | if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE)) | 
|  | 6588 | return -EINVAL; | 
|  | 6589 | new_triggers.four_way_handshake = true; | 
|  | 6590 | } | 
|  | 6591 |  | 
|  | 6592 | if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) { | 
|  | 6593 | if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE)) | 
|  | 6594 | return -EINVAL; | 
|  | 6595 | new_triggers.rfkill_release = true; | 
|  | 6596 | } | 
|  | 6597 |  | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6598 | if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) { | 
|  | 6599 | struct nlattr *pat; | 
|  | 6600 | int n_patterns = 0; | 
|  | 6601 | int rem, pat_len, mask_len; | 
|  | 6602 | struct nlattr *pat_tb[NUM_NL80211_WOWLAN_PKTPAT]; | 
|  | 6603 |  | 
|  | 6604 | nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN], | 
|  | 6605 | rem) | 
|  | 6606 | n_patterns++; | 
|  | 6607 | if (n_patterns > wowlan->n_patterns) | 
|  | 6608 | return -EINVAL; | 
|  | 6609 |  | 
|  | 6610 | new_triggers.patterns = kcalloc(n_patterns, | 
|  | 6611 | sizeof(new_triggers.patterns[0]), | 
|  | 6612 | GFP_KERNEL); | 
|  | 6613 | if (!new_triggers.patterns) | 
|  | 6614 | return -ENOMEM; | 
|  | 6615 |  | 
|  | 6616 | new_triggers.n_patterns = n_patterns; | 
|  | 6617 | i = 0; | 
|  | 6618 |  | 
|  | 6619 | nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN], | 
|  | 6620 | rem) { | 
|  | 6621 | nla_parse(pat_tb, MAX_NL80211_WOWLAN_PKTPAT, | 
|  | 6622 | nla_data(pat), nla_len(pat), NULL); | 
|  | 6623 | err = -EINVAL; | 
|  | 6624 | if (!pat_tb[NL80211_WOWLAN_PKTPAT_MASK] || | 
|  | 6625 | !pat_tb[NL80211_WOWLAN_PKTPAT_PATTERN]) | 
|  | 6626 | goto error; | 
|  | 6627 | pat_len = nla_len(pat_tb[NL80211_WOWLAN_PKTPAT_PATTERN]); | 
|  | 6628 | mask_len = DIV_ROUND_UP(pat_len, 8); | 
|  | 6629 | if (nla_len(pat_tb[NL80211_WOWLAN_PKTPAT_MASK]) != | 
|  | 6630 | mask_len) | 
|  | 6631 | goto error; | 
|  | 6632 | if (pat_len > wowlan->pattern_max_len || | 
|  | 6633 | pat_len < wowlan->pattern_min_len) | 
|  | 6634 | goto error; | 
|  | 6635 |  | 
|  | 6636 | new_triggers.patterns[i].mask = | 
|  | 6637 | kmalloc(mask_len + pat_len, GFP_KERNEL); | 
|  | 6638 | if (!new_triggers.patterns[i].mask) { | 
|  | 6639 | err = -ENOMEM; | 
|  | 6640 | goto error; | 
|  | 6641 | } | 
|  | 6642 | new_triggers.patterns[i].pattern = | 
|  | 6643 | new_triggers.patterns[i].mask + mask_len; | 
|  | 6644 | memcpy(new_triggers.patterns[i].mask, | 
|  | 6645 | nla_data(pat_tb[NL80211_WOWLAN_PKTPAT_MASK]), | 
|  | 6646 | mask_len); | 
|  | 6647 | new_triggers.patterns[i].pattern_len = pat_len; | 
|  | 6648 | memcpy(new_triggers.patterns[i].pattern, | 
|  | 6649 | nla_data(pat_tb[NL80211_WOWLAN_PKTPAT_PATTERN]), | 
|  | 6650 | pat_len); | 
|  | 6651 | i++; | 
|  | 6652 | } | 
|  | 6653 | } | 
|  | 6654 |  | 
| Johannes Berg | ae33bd8 | 2012-07-12 16:25:02 +0200 | [diff] [blame] | 6655 | ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL); | 
|  | 6656 | if (!ntrig) { | 
|  | 6657 | err = -ENOMEM; | 
|  | 6658 | goto error; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6659 | } | 
| Johannes Berg | ae33bd8 | 2012-07-12 16:25:02 +0200 | [diff] [blame] | 6660 | cfg80211_rdev_free_wowlan(rdev); | 
|  | 6661 | rdev->wowlan = ntrig; | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6662 |  | 
| Johannes Berg | ae33bd8 | 2012-07-12 16:25:02 +0200 | [diff] [blame] | 6663 | set_wakeup: | 
| Johannes Berg | 6d52563 | 2012-04-04 15:05:25 +0200 | [diff] [blame] | 6664 | if (rdev->ops->set_wakeup && prev_enabled != !!rdev->wowlan) | 
|  | 6665 | rdev->ops->set_wakeup(&rdev->wiphy, rdev->wowlan); | 
|  | 6666 |  | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6667 | return 0; | 
|  | 6668 | error: | 
|  | 6669 | for (i = 0; i < new_triggers.n_patterns; i++) | 
|  | 6670 | kfree(new_triggers.patterns[i].mask); | 
|  | 6671 | kfree(new_triggers.patterns); | 
|  | 6672 | return err; | 
|  | 6673 | } | 
| Johannes Berg | dfb89c5 | 2012-06-27 09:23:48 +0200 | [diff] [blame] | 6674 | #endif | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 6675 |  | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 6676 | static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info) | 
|  | 6677 | { | 
|  | 6678 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 6679 | struct net_device *dev = info->user_ptr[1]; | 
|  | 6680 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 6681 | struct nlattr *tb[NUM_NL80211_REKEY_DATA]; | 
|  | 6682 | struct cfg80211_gtk_rekey_data rekey_data; | 
|  | 6683 | int err; | 
|  | 6684 |  | 
|  | 6685 | if (!info->attrs[NL80211_ATTR_REKEY_DATA]) | 
|  | 6686 | return -EINVAL; | 
|  | 6687 |  | 
|  | 6688 | err = nla_parse(tb, MAX_NL80211_REKEY_DATA, | 
|  | 6689 | nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]), | 
|  | 6690 | nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]), | 
|  | 6691 | nl80211_rekey_policy); | 
|  | 6692 | if (err) | 
|  | 6693 | return err; | 
|  | 6694 |  | 
|  | 6695 | if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN) | 
|  | 6696 | return -ERANGE; | 
|  | 6697 | if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN) | 
|  | 6698 | return -ERANGE; | 
|  | 6699 | if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN) | 
|  | 6700 | return -ERANGE; | 
|  | 6701 |  | 
|  | 6702 | memcpy(rekey_data.kek, nla_data(tb[NL80211_REKEY_DATA_KEK]), | 
|  | 6703 | NL80211_KEK_LEN); | 
|  | 6704 | memcpy(rekey_data.kck, nla_data(tb[NL80211_REKEY_DATA_KCK]), | 
|  | 6705 | NL80211_KCK_LEN); | 
|  | 6706 | memcpy(rekey_data.replay_ctr, | 
|  | 6707 | nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]), | 
|  | 6708 | NL80211_REPLAY_CTR_LEN); | 
|  | 6709 |  | 
|  | 6710 | wdev_lock(wdev); | 
|  | 6711 | if (!wdev->current_bss) { | 
|  | 6712 | err = -ENOTCONN; | 
|  | 6713 | goto out; | 
|  | 6714 | } | 
|  | 6715 |  | 
|  | 6716 | if (!rdev->ops->set_rekey_data) { | 
|  | 6717 | err = -EOPNOTSUPP; | 
|  | 6718 | goto out; | 
|  | 6719 | } | 
|  | 6720 |  | 
|  | 6721 | err = rdev->ops->set_rekey_data(&rdev->wiphy, dev, &rekey_data); | 
|  | 6722 | out: | 
|  | 6723 | wdev_unlock(wdev); | 
|  | 6724 | return err; | 
|  | 6725 | } | 
|  | 6726 |  | 
| Johannes Berg | 28946da | 2011-11-04 11:18:12 +0100 | [diff] [blame] | 6727 | static int nl80211_register_unexpected_frame(struct sk_buff *skb, | 
|  | 6728 | struct genl_info *info) | 
|  | 6729 | { | 
|  | 6730 | struct net_device *dev = info->user_ptr[1]; | 
|  | 6731 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 6732 |  | 
|  | 6733 | if (wdev->iftype != NL80211_IFTYPE_AP && | 
|  | 6734 | wdev->iftype != NL80211_IFTYPE_P2P_GO) | 
|  | 6735 | return -EINVAL; | 
|  | 6736 |  | 
|  | 6737 | if (wdev->ap_unexpected_nlpid) | 
|  | 6738 | return -EBUSY; | 
|  | 6739 |  | 
|  | 6740 | wdev->ap_unexpected_nlpid = info->snd_pid; | 
|  | 6741 | return 0; | 
|  | 6742 | } | 
|  | 6743 |  | 
| Johannes Berg | 7f6cf31 | 2011-11-04 11:18:15 +0100 | [diff] [blame] | 6744 | static int nl80211_probe_client(struct sk_buff *skb, | 
|  | 6745 | struct genl_info *info) | 
|  | 6746 | { | 
|  | 6747 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 6748 | struct net_device *dev = info->user_ptr[1]; | 
|  | 6749 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 6750 | struct sk_buff *msg; | 
|  | 6751 | void *hdr; | 
|  | 6752 | const u8 *addr; | 
|  | 6753 | u64 cookie; | 
|  | 6754 | int err; | 
|  | 6755 |  | 
|  | 6756 | if (wdev->iftype != NL80211_IFTYPE_AP && | 
|  | 6757 | wdev->iftype != NL80211_IFTYPE_P2P_GO) | 
|  | 6758 | return -EOPNOTSUPP; | 
|  | 6759 |  | 
|  | 6760 | if (!info->attrs[NL80211_ATTR_MAC]) | 
|  | 6761 | return -EINVAL; | 
|  | 6762 |  | 
|  | 6763 | if (!rdev->ops->probe_client) | 
|  | 6764 | return -EOPNOTSUPP; | 
|  | 6765 |  | 
|  | 6766 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
|  | 6767 | if (!msg) | 
|  | 6768 | return -ENOMEM; | 
|  | 6769 |  | 
|  | 6770 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, | 
|  | 6771 | NL80211_CMD_PROBE_CLIENT); | 
|  | 6772 |  | 
|  | 6773 | if (IS_ERR(hdr)) { | 
|  | 6774 | err = PTR_ERR(hdr); | 
|  | 6775 | goto free_msg; | 
|  | 6776 | } | 
|  | 6777 |  | 
|  | 6778 | addr = nla_data(info->attrs[NL80211_ATTR_MAC]); | 
|  | 6779 |  | 
|  | 6780 | err = rdev->ops->probe_client(&rdev->wiphy, dev, addr, &cookie); | 
|  | 6781 | if (err) | 
|  | 6782 | goto free_msg; | 
|  | 6783 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 6784 | if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie)) | 
|  | 6785 | goto nla_put_failure; | 
| Johannes Berg | 7f6cf31 | 2011-11-04 11:18:15 +0100 | [diff] [blame] | 6786 |  | 
|  | 6787 | genlmsg_end(msg, hdr); | 
|  | 6788 |  | 
|  | 6789 | return genlmsg_reply(msg, info); | 
|  | 6790 |  | 
|  | 6791 | nla_put_failure: | 
|  | 6792 | err = -ENOBUFS; | 
|  | 6793 | free_msg: | 
|  | 6794 | nlmsg_free(msg); | 
|  | 6795 | return err; | 
|  | 6796 | } | 
|  | 6797 |  | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 6798 | static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info) | 
|  | 6799 | { | 
|  | 6800 | struct cfg80211_registered_device *rdev = info->user_ptr[0]; | 
|  | 6801 |  | 
|  | 6802 | if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS)) | 
|  | 6803 | return -EOPNOTSUPP; | 
|  | 6804 |  | 
|  | 6805 | if (rdev->ap_beacons_nlpid) | 
|  | 6806 | return -EBUSY; | 
|  | 6807 |  | 
|  | 6808 | rdev->ap_beacons_nlpid = info->snd_pid; | 
|  | 6809 |  | 
|  | 6810 | return 0; | 
|  | 6811 | } | 
|  | 6812 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6813 | #define NL80211_FLAG_NEED_WIPHY		0x01 | 
|  | 6814 | #define NL80211_FLAG_NEED_NETDEV	0x02 | 
|  | 6815 | #define NL80211_FLAG_NEED_RTNL		0x04 | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 6816 | #define NL80211_FLAG_CHECK_NETDEV_UP	0x08 | 
|  | 6817 | #define NL80211_FLAG_NEED_NETDEV_UP	(NL80211_FLAG_NEED_NETDEV |\ | 
|  | 6818 | NL80211_FLAG_CHECK_NETDEV_UP) | 
| Johannes Berg | 1bf614e | 2012-06-15 15:23:36 +0200 | [diff] [blame] | 6819 | #define NL80211_FLAG_NEED_WDEV		0x10 | 
|  | 6820 | /* If a netdev is associated, it must be UP */ | 
|  | 6821 | #define NL80211_FLAG_NEED_WDEV_UP	(NL80211_FLAG_NEED_WDEV |\ | 
|  | 6822 | NL80211_FLAG_CHECK_NETDEV_UP) | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6823 |  | 
|  | 6824 | static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb, | 
|  | 6825 | struct genl_info *info) | 
|  | 6826 | { | 
|  | 6827 | struct cfg80211_registered_device *rdev; | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 6828 | struct wireless_dev *wdev; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6829 | struct net_device *dev; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6830 | bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL; | 
|  | 6831 |  | 
|  | 6832 | if (rtnl) | 
|  | 6833 | rtnl_lock(); | 
|  | 6834 |  | 
|  | 6835 | if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) { | 
| Johannes Berg | 4f7eff1 | 2012-06-15 14:14:22 +0200 | [diff] [blame] | 6836 | rdev = cfg80211_get_dev_from_info(genl_info_net(info), info); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6837 | if (IS_ERR(rdev)) { | 
|  | 6838 | if (rtnl) | 
|  | 6839 | rtnl_unlock(); | 
|  | 6840 | return PTR_ERR(rdev); | 
|  | 6841 | } | 
|  | 6842 | info->user_ptr[0] = rdev; | 
| Johannes Berg | 1bf614e | 2012-06-15 15:23:36 +0200 | [diff] [blame] | 6843 | } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV || | 
|  | 6844 | ops->internal_flags & NL80211_FLAG_NEED_WDEV) { | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 6845 | mutex_lock(&cfg80211_mutex); | 
|  | 6846 | wdev = __cfg80211_wdev_from_attrs(genl_info_net(info), | 
|  | 6847 | info->attrs); | 
|  | 6848 | if (IS_ERR(wdev)) { | 
|  | 6849 | mutex_unlock(&cfg80211_mutex); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6850 | if (rtnl) | 
|  | 6851 | rtnl_unlock(); | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 6852 | return PTR_ERR(wdev); | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6853 | } | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 6854 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 6855 | dev = wdev->netdev; | 
|  | 6856 | rdev = wiphy_to_dev(wdev->wiphy); | 
|  | 6857 |  | 
| Johannes Berg | 1bf614e | 2012-06-15 15:23:36 +0200 | [diff] [blame] | 6858 | if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) { | 
|  | 6859 | if (!dev) { | 
|  | 6860 | mutex_unlock(&cfg80211_mutex); | 
|  | 6861 | if (rtnl) | 
|  | 6862 | rtnl_unlock(); | 
|  | 6863 | return -EINVAL; | 
|  | 6864 | } | 
|  | 6865 |  | 
|  | 6866 | info->user_ptr[1] = dev; | 
|  | 6867 | } else { | 
|  | 6868 | info->user_ptr[1] = wdev; | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 6869 | } | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 6870 |  | 
| Johannes Berg | 1bf614e | 2012-06-15 15:23:36 +0200 | [diff] [blame] | 6871 | if (dev) { | 
|  | 6872 | if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP && | 
|  | 6873 | !netif_running(dev)) { | 
|  | 6874 | mutex_unlock(&cfg80211_mutex); | 
|  | 6875 | if (rtnl) | 
|  | 6876 | rtnl_unlock(); | 
|  | 6877 | return -ENETDOWN; | 
|  | 6878 | } | 
|  | 6879 |  | 
|  | 6880 | dev_hold(dev); | 
|  | 6881 | } | 
|  | 6882 |  | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 6883 | cfg80211_lock_rdev(rdev); | 
|  | 6884 |  | 
|  | 6885 | mutex_unlock(&cfg80211_mutex); | 
|  | 6886 |  | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6887 | info->user_ptr[0] = rdev; | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6888 | } | 
|  | 6889 |  | 
|  | 6890 | return 0; | 
|  | 6891 | } | 
|  | 6892 |  | 
|  | 6893 | static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb, | 
|  | 6894 | struct genl_info *info) | 
|  | 6895 | { | 
|  | 6896 | if (info->user_ptr[0]) | 
|  | 6897 | cfg80211_unlock_rdev(info->user_ptr[0]); | 
| Johannes Berg | 1bf614e | 2012-06-15 15:23:36 +0200 | [diff] [blame] | 6898 | if (info->user_ptr[1]) { | 
|  | 6899 | if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) { | 
|  | 6900 | struct wireless_dev *wdev = info->user_ptr[1]; | 
|  | 6901 |  | 
|  | 6902 | if (wdev->netdev) | 
|  | 6903 | dev_put(wdev->netdev); | 
|  | 6904 | } else { | 
|  | 6905 | dev_put(info->user_ptr[1]); | 
|  | 6906 | } | 
|  | 6907 | } | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6908 | if (ops->internal_flags & NL80211_FLAG_NEED_RTNL) | 
|  | 6909 | rtnl_unlock(); | 
|  | 6910 | } | 
|  | 6911 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 6912 | static struct genl_ops nl80211_ops[] = { | 
|  | 6913 | { | 
|  | 6914 | .cmd = NL80211_CMD_GET_WIPHY, | 
|  | 6915 | .doit = nl80211_get_wiphy, | 
|  | 6916 | .dumpit = nl80211_dump_wiphy, | 
|  | 6917 | .policy = nl80211_policy, | 
|  | 6918 | /* can be retrieved by unprivileged users */ | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6919 | .internal_flags = NL80211_FLAG_NEED_WIPHY, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 6920 | }, | 
|  | 6921 | { | 
|  | 6922 | .cmd = NL80211_CMD_SET_WIPHY, | 
|  | 6923 | .doit = nl80211_set_wiphy, | 
|  | 6924 | .policy = nl80211_policy, | 
|  | 6925 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6926 | .internal_flags = NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 6927 | }, | 
|  | 6928 | { | 
|  | 6929 | .cmd = NL80211_CMD_GET_INTERFACE, | 
|  | 6930 | .doit = nl80211_get_interface, | 
|  | 6931 | .dumpit = nl80211_dump_interface, | 
|  | 6932 | .policy = nl80211_policy, | 
|  | 6933 | /* can be retrieved by unprivileged users */ | 
| Johannes Berg | 72fb2ab | 2012-06-15 17:52:47 +0200 | [diff] [blame] | 6934 | .internal_flags = NL80211_FLAG_NEED_WDEV, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 6935 | }, | 
|  | 6936 | { | 
|  | 6937 | .cmd = NL80211_CMD_SET_INTERFACE, | 
|  | 6938 | .doit = nl80211_set_interface, | 
|  | 6939 | .policy = nl80211_policy, | 
|  | 6940 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6941 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 6942 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 6943 | }, | 
|  | 6944 | { | 
|  | 6945 | .cmd = NL80211_CMD_NEW_INTERFACE, | 
|  | 6946 | .doit = nl80211_new_interface, | 
|  | 6947 | .policy = nl80211_policy, | 
|  | 6948 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6949 | .internal_flags = NL80211_FLAG_NEED_WIPHY | | 
|  | 6950 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 6951 | }, | 
|  | 6952 | { | 
|  | 6953 | .cmd = NL80211_CMD_DEL_INTERFACE, | 
|  | 6954 | .doit = nl80211_del_interface, | 
|  | 6955 | .policy = nl80211_policy, | 
|  | 6956 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 6957 | .internal_flags = NL80211_FLAG_NEED_WDEV | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6958 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 6959 | }, | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 6960 | { | 
|  | 6961 | .cmd = NL80211_CMD_GET_KEY, | 
|  | 6962 | .doit = nl80211_get_key, | 
|  | 6963 | .policy = nl80211_policy, | 
|  | 6964 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 6965 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6966 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 6967 | }, | 
|  | 6968 | { | 
|  | 6969 | .cmd = NL80211_CMD_SET_KEY, | 
|  | 6970 | .doit = nl80211_set_key, | 
|  | 6971 | .policy = nl80211_policy, | 
|  | 6972 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 6973 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6974 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 6975 | }, | 
|  | 6976 | { | 
|  | 6977 | .cmd = NL80211_CMD_NEW_KEY, | 
|  | 6978 | .doit = nl80211_new_key, | 
|  | 6979 | .policy = nl80211_policy, | 
|  | 6980 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 6981 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6982 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 6983 | }, | 
|  | 6984 | { | 
|  | 6985 | .cmd = NL80211_CMD_DEL_KEY, | 
|  | 6986 | .doit = nl80211_del_key, | 
|  | 6987 | .policy = nl80211_policy, | 
|  | 6988 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 6989 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6990 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 6991 | }, | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 6992 | { | 
|  | 6993 | .cmd = NL80211_CMD_SET_BEACON, | 
|  | 6994 | .policy = nl80211_policy, | 
|  | 6995 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 6996 | .doit = nl80211_set_beacon, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 6997 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 6998 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 6999 | }, | 
|  | 7000 | { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 7001 | .cmd = NL80211_CMD_START_AP, | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 7002 | .policy = nl80211_policy, | 
|  | 7003 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 7004 | .doit = nl80211_start_ap, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7005 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7006 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 7007 | }, | 
|  | 7008 | { | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 7009 | .cmd = NL80211_CMD_STOP_AP, | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 7010 | .policy = nl80211_policy, | 
|  | 7011 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 8860020 | 2012-02-13 15:17:18 +0100 | [diff] [blame] | 7012 | .doit = nl80211_stop_ap, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7013 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7014 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 7015 | }, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 7016 | { | 
|  | 7017 | .cmd = NL80211_CMD_GET_STATION, | 
|  | 7018 | .doit = nl80211_get_station, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 7019 | .dumpit = nl80211_dump_station, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 7020 | .policy = nl80211_policy, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7021 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7022 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 7023 | }, | 
|  | 7024 | { | 
|  | 7025 | .cmd = NL80211_CMD_SET_STATION, | 
|  | 7026 | .doit = nl80211_set_station, | 
|  | 7027 | .policy = nl80211_policy, | 
|  | 7028 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7029 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7030 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 7031 | }, | 
|  | 7032 | { | 
|  | 7033 | .cmd = NL80211_CMD_NEW_STATION, | 
|  | 7034 | .doit = nl80211_new_station, | 
|  | 7035 | .policy = nl80211_policy, | 
|  | 7036 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7037 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7038 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 7039 | }, | 
|  | 7040 | { | 
|  | 7041 | .cmd = NL80211_CMD_DEL_STATION, | 
|  | 7042 | .doit = nl80211_del_station, | 
|  | 7043 | .policy = nl80211_policy, | 
|  | 7044 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7045 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7046 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 7047 | }, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 7048 | { | 
|  | 7049 | .cmd = NL80211_CMD_GET_MPATH, | 
|  | 7050 | .doit = nl80211_get_mpath, | 
|  | 7051 | .dumpit = nl80211_dump_mpath, | 
|  | 7052 | .policy = nl80211_policy, | 
|  | 7053 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7054 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7055 | NL80211_FLAG_NEED_RTNL, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 7056 | }, | 
|  | 7057 | { | 
|  | 7058 | .cmd = NL80211_CMD_SET_MPATH, | 
|  | 7059 | .doit = nl80211_set_mpath, | 
|  | 7060 | .policy = nl80211_policy, | 
|  | 7061 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7062 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7063 | NL80211_FLAG_NEED_RTNL, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 7064 | }, | 
|  | 7065 | { | 
|  | 7066 | .cmd = NL80211_CMD_NEW_MPATH, | 
|  | 7067 | .doit = nl80211_new_mpath, | 
|  | 7068 | .policy = nl80211_policy, | 
|  | 7069 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7070 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7071 | NL80211_FLAG_NEED_RTNL, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 7072 | }, | 
|  | 7073 | { | 
|  | 7074 | .cmd = NL80211_CMD_DEL_MPATH, | 
|  | 7075 | .doit = nl80211_del_mpath, | 
|  | 7076 | .policy = nl80211_policy, | 
|  | 7077 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7078 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7079 | NL80211_FLAG_NEED_RTNL, | 
| Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 7080 | }, | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 7081 | { | 
|  | 7082 | .cmd = NL80211_CMD_SET_BSS, | 
|  | 7083 | .doit = nl80211_set_bss, | 
|  | 7084 | .policy = nl80211_policy, | 
|  | 7085 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7086 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7087 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 7088 | }, | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 7089 | { | 
| Luis R. Rodriguez | f130347 | 2009-01-30 09:26:42 -0800 | [diff] [blame] | 7090 | .cmd = NL80211_CMD_GET_REG, | 
|  | 7091 | .doit = nl80211_get_reg, | 
|  | 7092 | .policy = nl80211_policy, | 
|  | 7093 | /* can be retrieved by unprivileged users */ | 
|  | 7094 | }, | 
|  | 7095 | { | 
| Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 7096 | .cmd = NL80211_CMD_SET_REG, | 
|  | 7097 | .doit = nl80211_set_reg, | 
|  | 7098 | .policy = nl80211_policy, | 
|  | 7099 | .flags = GENL_ADMIN_PERM, | 
|  | 7100 | }, | 
|  | 7101 | { | 
|  | 7102 | .cmd = NL80211_CMD_REQ_SET_REG, | 
|  | 7103 | .doit = nl80211_req_set_reg, | 
|  | 7104 | .policy = nl80211_policy, | 
|  | 7105 | .flags = GENL_ADMIN_PERM, | 
|  | 7106 | }, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 7107 | { | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 7108 | .cmd = NL80211_CMD_GET_MESH_CONFIG, | 
|  | 7109 | .doit = nl80211_get_mesh_config, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 7110 | .policy = nl80211_policy, | 
|  | 7111 | /* can be retrieved by unprivileged users */ | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7112 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7113 | NL80211_FLAG_NEED_RTNL, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 7114 | }, | 
|  | 7115 | { | 
| Javier Cardona | 24bdd9f | 2010-12-16 17:37:48 -0800 | [diff] [blame] | 7116 | .cmd = NL80211_CMD_SET_MESH_CONFIG, | 
|  | 7117 | .doit = nl80211_update_mesh_config, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 7118 | .policy = nl80211_policy, | 
|  | 7119 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 7120 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7121 | NL80211_FLAG_NEED_RTNL, | 
| colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 7122 | }, | 
| Jouni Malinen | 9aed3cc | 2009-01-13 16:03:29 +0200 | [diff] [blame] | 7123 | { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7124 | .cmd = NL80211_CMD_TRIGGER_SCAN, | 
|  | 7125 | .doit = nl80211_trigger_scan, | 
|  | 7126 | .policy = nl80211_policy, | 
|  | 7127 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7128 | .internal_flags = NL80211_FLAG_NEED_WDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7129 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7130 | }, | 
|  | 7131 | { | 
|  | 7132 | .cmd = NL80211_CMD_GET_SCAN, | 
|  | 7133 | .policy = nl80211_policy, | 
|  | 7134 | .dumpit = nl80211_dump_scan, | 
|  | 7135 | }, | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 7136 | { | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 7137 | .cmd = NL80211_CMD_START_SCHED_SCAN, | 
|  | 7138 | .doit = nl80211_start_sched_scan, | 
|  | 7139 | .policy = nl80211_policy, | 
|  | 7140 | .flags = GENL_ADMIN_PERM, | 
|  | 7141 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
|  | 7142 | NL80211_FLAG_NEED_RTNL, | 
|  | 7143 | }, | 
|  | 7144 | { | 
|  | 7145 | .cmd = NL80211_CMD_STOP_SCHED_SCAN, | 
|  | 7146 | .doit = nl80211_stop_sched_scan, | 
|  | 7147 | .policy = nl80211_policy, | 
|  | 7148 | .flags = GENL_ADMIN_PERM, | 
|  | 7149 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
|  | 7150 | NL80211_FLAG_NEED_RTNL, | 
|  | 7151 | }, | 
|  | 7152 | { | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 7153 | .cmd = NL80211_CMD_AUTHENTICATE, | 
|  | 7154 | .doit = nl80211_authenticate, | 
|  | 7155 | .policy = nl80211_policy, | 
|  | 7156 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7157 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7158 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 7159 | }, | 
|  | 7160 | { | 
|  | 7161 | .cmd = NL80211_CMD_ASSOCIATE, | 
|  | 7162 | .doit = nl80211_associate, | 
|  | 7163 | .policy = nl80211_policy, | 
|  | 7164 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7165 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7166 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 7167 | }, | 
|  | 7168 | { | 
|  | 7169 | .cmd = NL80211_CMD_DEAUTHENTICATE, | 
|  | 7170 | .doit = nl80211_deauthenticate, | 
|  | 7171 | .policy = nl80211_policy, | 
|  | 7172 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7173 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7174 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 7175 | }, | 
|  | 7176 | { | 
|  | 7177 | .cmd = NL80211_CMD_DISASSOCIATE, | 
|  | 7178 | .doit = nl80211_disassociate, | 
|  | 7179 | .policy = nl80211_policy, | 
|  | 7180 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7181 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7182 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 7183 | }, | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 7184 | { | 
|  | 7185 | .cmd = NL80211_CMD_JOIN_IBSS, | 
|  | 7186 | .doit = nl80211_join_ibss, | 
|  | 7187 | .policy = nl80211_policy, | 
|  | 7188 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7189 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7190 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 7191 | }, | 
|  | 7192 | { | 
|  | 7193 | .cmd = NL80211_CMD_LEAVE_IBSS, | 
|  | 7194 | .doit = nl80211_leave_ibss, | 
|  | 7195 | .policy = nl80211_policy, | 
|  | 7196 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7197 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7198 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 7199 | }, | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 7200 | #ifdef CONFIG_NL80211_TESTMODE | 
|  | 7201 | { | 
|  | 7202 | .cmd = NL80211_CMD_TESTMODE, | 
|  | 7203 | .doit = nl80211_testmode_do, | 
| Wey-Yi Guy | 71063f0 | 2011-05-20 09:05:54 -0700 | [diff] [blame] | 7204 | .dumpit = nl80211_testmode_dump, | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 7205 | .policy = nl80211_policy, | 
|  | 7206 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7207 | .internal_flags = NL80211_FLAG_NEED_WIPHY | | 
|  | 7208 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 7209 | }, | 
|  | 7210 | #endif | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7211 | { | 
|  | 7212 | .cmd = NL80211_CMD_CONNECT, | 
|  | 7213 | .doit = nl80211_connect, | 
|  | 7214 | .policy = nl80211_policy, | 
|  | 7215 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7216 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7217 | NL80211_FLAG_NEED_RTNL, | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7218 | }, | 
|  | 7219 | { | 
|  | 7220 | .cmd = NL80211_CMD_DISCONNECT, | 
|  | 7221 | .doit = nl80211_disconnect, | 
|  | 7222 | .policy = nl80211_policy, | 
|  | 7223 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4126571 | 2010-10-04 21:14:05 +0200 | [diff] [blame] | 7224 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7225 | NL80211_FLAG_NEED_RTNL, | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7226 | }, | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7227 | { | 
|  | 7228 | .cmd = NL80211_CMD_SET_WIPHY_NETNS, | 
|  | 7229 | .doit = nl80211_wiphy_netns, | 
|  | 7230 | .policy = nl80211_policy, | 
|  | 7231 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7232 | .internal_flags = NL80211_FLAG_NEED_WIPHY | | 
|  | 7233 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7234 | }, | 
| Holger Schurig | 61fa713 | 2009-11-11 12:25:40 +0100 | [diff] [blame] | 7235 | { | 
|  | 7236 | .cmd = NL80211_CMD_GET_SURVEY, | 
|  | 7237 | .policy = nl80211_policy, | 
|  | 7238 | .dumpit = nl80211_dump_survey, | 
|  | 7239 | }, | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 7240 | { | 
|  | 7241 | .cmd = NL80211_CMD_SET_PMKSA, | 
|  | 7242 | .doit = nl80211_setdel_pmksa, | 
|  | 7243 | .policy = nl80211_policy, | 
|  | 7244 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7245 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7246 | NL80211_FLAG_NEED_RTNL, | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 7247 | }, | 
|  | 7248 | { | 
|  | 7249 | .cmd = NL80211_CMD_DEL_PMKSA, | 
|  | 7250 | .doit = nl80211_setdel_pmksa, | 
|  | 7251 | .policy = nl80211_policy, | 
|  | 7252 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7253 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7254 | NL80211_FLAG_NEED_RTNL, | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 7255 | }, | 
|  | 7256 | { | 
|  | 7257 | .cmd = NL80211_CMD_FLUSH_PMKSA, | 
|  | 7258 | .doit = nl80211_flush_pmksa, | 
|  | 7259 | .policy = nl80211_policy, | 
|  | 7260 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7261 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7262 | NL80211_FLAG_NEED_RTNL, | 
| Samuel Ortiz | 67fbb16 | 2009-11-24 23:59:15 +0100 | [diff] [blame] | 7263 | }, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 7264 | { | 
|  | 7265 | .cmd = NL80211_CMD_REMAIN_ON_CHANNEL, | 
|  | 7266 | .doit = nl80211_remain_on_channel, | 
|  | 7267 | .policy = nl80211_policy, | 
|  | 7268 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 7269 | .internal_flags = NL80211_FLAG_NEED_WDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7270 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 7271 | }, | 
|  | 7272 | { | 
|  | 7273 | .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL, | 
|  | 7274 | .doit = nl80211_cancel_remain_on_channel, | 
|  | 7275 | .policy = nl80211_policy, | 
|  | 7276 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 7277 | .internal_flags = NL80211_FLAG_NEED_WDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7278 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 7279 | }, | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 7280 | { | 
|  | 7281 | .cmd = NL80211_CMD_SET_TX_BITRATE_MASK, | 
|  | 7282 | .doit = nl80211_set_tx_bitrate_mask, | 
|  | 7283 | .policy = nl80211_policy, | 
|  | 7284 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7285 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7286 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 13ae75b | 2009-12-29 12:59:45 +0200 | [diff] [blame] | 7287 | }, | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 7288 | { | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 7289 | .cmd = NL80211_CMD_REGISTER_FRAME, | 
|  | 7290 | .doit = nl80211_register_mgmt, | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 7291 | .policy = nl80211_policy, | 
|  | 7292 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 7293 | .internal_flags = NL80211_FLAG_NEED_WDEV | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7294 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 7295 | }, | 
|  | 7296 | { | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 7297 | .cmd = NL80211_CMD_FRAME, | 
|  | 7298 | .doit = nl80211_tx_mgmt, | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 7299 | .policy = nl80211_policy, | 
|  | 7300 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 7301 | .internal_flags = NL80211_FLAG_NEED_WDEV_UP | | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7302 | NL80211_FLAG_NEED_RTNL, | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 7303 | }, | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 7304 | { | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 7305 | .cmd = NL80211_CMD_FRAME_WAIT_CANCEL, | 
|  | 7306 | .doit = nl80211_tx_mgmt_cancel_wait, | 
|  | 7307 | .policy = nl80211_policy, | 
|  | 7308 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 7309 | .internal_flags = NL80211_FLAG_NEED_WDEV_UP | | 
| Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 7310 | NL80211_FLAG_NEED_RTNL, | 
|  | 7311 | }, | 
|  | 7312 | { | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 7313 | .cmd = NL80211_CMD_SET_POWER_SAVE, | 
|  | 7314 | .doit = nl80211_set_power_save, | 
|  | 7315 | .policy = nl80211_policy, | 
|  | 7316 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7317 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7318 | NL80211_FLAG_NEED_RTNL, | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 7319 | }, | 
|  | 7320 | { | 
|  | 7321 | .cmd = NL80211_CMD_GET_POWER_SAVE, | 
|  | 7322 | .doit = nl80211_get_power_save, | 
|  | 7323 | .policy = nl80211_policy, | 
|  | 7324 | /* can be retrieved by unprivileged users */ | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7325 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7326 | NL80211_FLAG_NEED_RTNL, | 
| Kalle Valo | ffb9eb3 | 2010-02-17 17:58:10 +0200 | [diff] [blame] | 7327 | }, | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 7328 | { | 
|  | 7329 | .cmd = NL80211_CMD_SET_CQM, | 
|  | 7330 | .doit = nl80211_set_cqm, | 
|  | 7331 | .policy = nl80211_policy, | 
|  | 7332 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7333 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7334 | NL80211_FLAG_NEED_RTNL, | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 7335 | }, | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 7336 | { | 
|  | 7337 | .cmd = NL80211_CMD_SET_CHANNEL, | 
|  | 7338 | .doit = nl80211_set_channel, | 
|  | 7339 | .policy = nl80211_policy, | 
|  | 7340 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 4c47699 | 2010-10-04 21:36:35 +0200 | [diff] [blame] | 7341 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7342 | NL80211_FLAG_NEED_RTNL, | 
| Johannes Berg | f444de0 | 2010-05-05 15:25:02 +0200 | [diff] [blame] | 7343 | }, | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 7344 | { | 
|  | 7345 | .cmd = NL80211_CMD_SET_WDS_PEER, | 
|  | 7346 | .doit = nl80211_set_wds_peer, | 
|  | 7347 | .policy = nl80211_policy, | 
|  | 7348 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 43b1995 | 2010-10-07 13:10:30 +0200 | [diff] [blame] | 7349 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7350 | NL80211_FLAG_NEED_RTNL, | 
| Bill Jordan | e8347eb | 2010-10-01 13:54:28 -0400 | [diff] [blame] | 7351 | }, | 
| Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 7352 | { | 
|  | 7353 | .cmd = NL80211_CMD_JOIN_MESH, | 
|  | 7354 | .doit = nl80211_join_mesh, | 
|  | 7355 | .policy = nl80211_policy, | 
|  | 7356 | .flags = GENL_ADMIN_PERM, | 
|  | 7357 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
|  | 7358 | NL80211_FLAG_NEED_RTNL, | 
|  | 7359 | }, | 
|  | 7360 | { | 
|  | 7361 | .cmd = NL80211_CMD_LEAVE_MESH, | 
|  | 7362 | .doit = nl80211_leave_mesh, | 
|  | 7363 | .policy = nl80211_policy, | 
|  | 7364 | .flags = GENL_ADMIN_PERM, | 
|  | 7365 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
|  | 7366 | NL80211_FLAG_NEED_RTNL, | 
|  | 7367 | }, | 
| Johannes Berg | dfb89c5 | 2012-06-27 09:23:48 +0200 | [diff] [blame] | 7368 | #ifdef CONFIG_PM | 
| Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 7369 | { | 
|  | 7370 | .cmd = NL80211_CMD_GET_WOWLAN, | 
|  | 7371 | .doit = nl80211_get_wowlan, | 
|  | 7372 | .policy = nl80211_policy, | 
|  | 7373 | /* can be retrieved by unprivileged users */ | 
|  | 7374 | .internal_flags = NL80211_FLAG_NEED_WIPHY | | 
|  | 7375 | NL80211_FLAG_NEED_RTNL, | 
|  | 7376 | }, | 
|  | 7377 | { | 
|  | 7378 | .cmd = NL80211_CMD_SET_WOWLAN, | 
|  | 7379 | .doit = nl80211_set_wowlan, | 
|  | 7380 | .policy = nl80211_policy, | 
|  | 7381 | .flags = GENL_ADMIN_PERM, | 
|  | 7382 | .internal_flags = NL80211_FLAG_NEED_WIPHY | | 
|  | 7383 | NL80211_FLAG_NEED_RTNL, | 
|  | 7384 | }, | 
| Johannes Berg | dfb89c5 | 2012-06-27 09:23:48 +0200 | [diff] [blame] | 7385 | #endif | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 7386 | { | 
|  | 7387 | .cmd = NL80211_CMD_SET_REKEY_OFFLOAD, | 
|  | 7388 | .doit = nl80211_set_rekey_data, | 
|  | 7389 | .policy = nl80211_policy, | 
|  | 7390 | .flags = GENL_ADMIN_PERM, | 
|  | 7391 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
|  | 7392 | NL80211_FLAG_NEED_RTNL, | 
|  | 7393 | }, | 
| Arik Nemtsov | 109086c | 2011-09-28 14:12:50 +0300 | [diff] [blame] | 7394 | { | 
|  | 7395 | .cmd = NL80211_CMD_TDLS_MGMT, | 
|  | 7396 | .doit = nl80211_tdls_mgmt, | 
|  | 7397 | .policy = nl80211_policy, | 
|  | 7398 | .flags = GENL_ADMIN_PERM, | 
|  | 7399 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
|  | 7400 | NL80211_FLAG_NEED_RTNL, | 
|  | 7401 | }, | 
|  | 7402 | { | 
|  | 7403 | .cmd = NL80211_CMD_TDLS_OPER, | 
|  | 7404 | .doit = nl80211_tdls_oper, | 
|  | 7405 | .policy = nl80211_policy, | 
|  | 7406 | .flags = GENL_ADMIN_PERM, | 
|  | 7407 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
|  | 7408 | NL80211_FLAG_NEED_RTNL, | 
|  | 7409 | }, | 
| Johannes Berg | 28946da | 2011-11-04 11:18:12 +0100 | [diff] [blame] | 7410 | { | 
|  | 7411 | .cmd = NL80211_CMD_UNEXPECTED_FRAME, | 
|  | 7412 | .doit = nl80211_register_unexpected_frame, | 
|  | 7413 | .policy = nl80211_policy, | 
|  | 7414 | .flags = GENL_ADMIN_PERM, | 
|  | 7415 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7416 | NL80211_FLAG_NEED_RTNL, | 
|  | 7417 | }, | 
| Johannes Berg | 7f6cf31 | 2011-11-04 11:18:15 +0100 | [diff] [blame] | 7418 | { | 
|  | 7419 | .cmd = NL80211_CMD_PROBE_CLIENT, | 
|  | 7420 | .doit = nl80211_probe_client, | 
|  | 7421 | .policy = nl80211_policy, | 
|  | 7422 | .flags = GENL_ADMIN_PERM, | 
| Johannes Berg | 2b5f8b0 | 2012-04-02 10:51:55 +0200 | [diff] [blame] | 7423 | .internal_flags = NL80211_FLAG_NEED_NETDEV_UP | | 
| Johannes Berg | 7f6cf31 | 2011-11-04 11:18:15 +0100 | [diff] [blame] | 7424 | NL80211_FLAG_NEED_RTNL, | 
|  | 7425 | }, | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 7426 | { | 
|  | 7427 | .cmd = NL80211_CMD_REGISTER_BEACONS, | 
|  | 7428 | .doit = nl80211_register_beacons, | 
|  | 7429 | .policy = nl80211_policy, | 
|  | 7430 | .flags = GENL_ADMIN_PERM, | 
|  | 7431 | .internal_flags = NL80211_FLAG_NEED_WIPHY | | 
|  | 7432 | NL80211_FLAG_NEED_RTNL, | 
|  | 7433 | }, | 
| Simon Wunderlich | 1d9d921 | 2011-11-18 14:20:43 +0100 | [diff] [blame] | 7434 | { | 
|  | 7435 | .cmd = NL80211_CMD_SET_NOACK_MAP, | 
|  | 7436 | .doit = nl80211_set_noack_map, | 
|  | 7437 | .policy = nl80211_policy, | 
|  | 7438 | .flags = GENL_ADMIN_PERM, | 
|  | 7439 | .internal_flags = NL80211_FLAG_NEED_NETDEV | | 
|  | 7440 | NL80211_FLAG_NEED_RTNL, | 
|  | 7441 | }, | 
|  | 7442 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 7443 | }; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 7444 |  | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7445 | static struct genl_multicast_group nl80211_mlme_mcgrp = { | 
|  | 7446 | .name = "mlme", | 
|  | 7447 | }; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 7448 |  | 
|  | 7449 | /* multicast groups */ | 
|  | 7450 | static struct genl_multicast_group nl80211_config_mcgrp = { | 
|  | 7451 | .name = "config", | 
|  | 7452 | }; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7453 | static struct genl_multicast_group nl80211_scan_mcgrp = { | 
|  | 7454 | .name = "scan", | 
|  | 7455 | }; | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 7456 | static struct genl_multicast_group nl80211_regulatory_mcgrp = { | 
|  | 7457 | .name = "regulatory", | 
|  | 7458 | }; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 7459 |  | 
|  | 7460 | /* notification functions */ | 
|  | 7461 |  | 
|  | 7462 | void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev) | 
|  | 7463 | { | 
|  | 7464 | struct sk_buff *msg; | 
|  | 7465 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 7466 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 7467 | if (!msg) | 
|  | 7468 | return; | 
|  | 7469 |  | 
|  | 7470 | if (nl80211_send_wiphy(msg, 0, 0, 0, rdev) < 0) { | 
|  | 7471 | nlmsg_free(msg); | 
|  | 7472 | return; | 
|  | 7473 | } | 
|  | 7474 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7475 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7476 | nl80211_config_mcgrp.id, GFP_KERNEL); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 7477 | } | 
|  | 7478 |  | 
| Johannes Berg | 362a415 | 2009-05-24 16:43:15 +0200 | [diff] [blame] | 7479 | static int nl80211_add_scan_req(struct sk_buff *msg, | 
|  | 7480 | struct cfg80211_registered_device *rdev) | 
|  | 7481 | { | 
|  | 7482 | struct cfg80211_scan_request *req = rdev->scan_req; | 
|  | 7483 | struct nlattr *nest; | 
|  | 7484 | int i; | 
|  | 7485 |  | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 7486 | ASSERT_RDEV_LOCK(rdev); | 
|  | 7487 |  | 
| Johannes Berg | 362a415 | 2009-05-24 16:43:15 +0200 | [diff] [blame] | 7488 | if (WARN_ON(!req)) | 
|  | 7489 | return 0; | 
|  | 7490 |  | 
|  | 7491 | nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS); | 
|  | 7492 | if (!nest) | 
|  | 7493 | goto nla_put_failure; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7494 | for (i = 0; i < req->n_ssids; i++) { | 
|  | 7495 | if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid)) | 
|  | 7496 | goto nla_put_failure; | 
|  | 7497 | } | 
| Johannes Berg | 362a415 | 2009-05-24 16:43:15 +0200 | [diff] [blame] | 7498 | nla_nest_end(msg, nest); | 
|  | 7499 |  | 
|  | 7500 | nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES); | 
|  | 7501 | if (!nest) | 
|  | 7502 | goto nla_put_failure; | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7503 | for (i = 0; i < req->n_channels; i++) { | 
|  | 7504 | if (nla_put_u32(msg, i, req->channels[i]->center_freq)) | 
|  | 7505 | goto nla_put_failure; | 
|  | 7506 | } | 
| Johannes Berg | 362a415 | 2009-05-24 16:43:15 +0200 | [diff] [blame] | 7507 | nla_nest_end(msg, nest); | 
|  | 7508 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7509 | if (req->ie && | 
|  | 7510 | nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie)) | 
|  | 7511 | goto nla_put_failure; | 
| Johannes Berg | 362a415 | 2009-05-24 16:43:15 +0200 | [diff] [blame] | 7512 |  | 
|  | 7513 | return 0; | 
|  | 7514 | nla_put_failure: | 
|  | 7515 | return -ENOBUFS; | 
|  | 7516 | } | 
|  | 7517 |  | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7518 | static int nl80211_send_scan_msg(struct sk_buff *msg, | 
|  | 7519 | struct cfg80211_registered_device *rdev, | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7520 | struct wireless_dev *wdev, | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7521 | u32 pid, u32 seq, int flags, | 
|  | 7522 | u32 cmd) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7523 | { | 
|  | 7524 | void *hdr; | 
|  | 7525 |  | 
|  | 7526 | hdr = nl80211hdr_put(msg, pid, seq, flags, cmd); | 
|  | 7527 | if (!hdr) | 
|  | 7528 | return -1; | 
|  | 7529 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7530 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7531 | (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX, | 
|  | 7532 | wdev->netdev->ifindex)) || | 
|  | 7533 | nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev))) | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7534 | goto nla_put_failure; | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7535 |  | 
| Johannes Berg | 362a415 | 2009-05-24 16:43:15 +0200 | [diff] [blame] | 7536 | /* ignore errors and send incomplete event anyway */ | 
|  | 7537 | nl80211_add_scan_req(msg, rdev); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7538 |  | 
|  | 7539 | return genlmsg_end(msg, hdr); | 
|  | 7540 |  | 
|  | 7541 | nla_put_failure: | 
|  | 7542 | genlmsg_cancel(msg, hdr); | 
|  | 7543 | return -EMSGSIZE; | 
|  | 7544 | } | 
|  | 7545 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 7546 | static int | 
|  | 7547 | nl80211_send_sched_scan_msg(struct sk_buff *msg, | 
|  | 7548 | struct cfg80211_registered_device *rdev, | 
|  | 7549 | struct net_device *netdev, | 
|  | 7550 | u32 pid, u32 seq, int flags, u32 cmd) | 
|  | 7551 | { | 
|  | 7552 | void *hdr; | 
|  | 7553 |  | 
|  | 7554 | hdr = nl80211hdr_put(msg, pid, seq, flags, cmd); | 
|  | 7555 | if (!hdr) | 
|  | 7556 | return -1; | 
|  | 7557 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7558 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 7559 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex)) | 
|  | 7560 | goto nla_put_failure; | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 7561 |  | 
|  | 7562 | return genlmsg_end(msg, hdr); | 
|  | 7563 |  | 
|  | 7564 | nla_put_failure: | 
|  | 7565 | genlmsg_cancel(msg, hdr); | 
|  | 7566 | return -EMSGSIZE; | 
|  | 7567 | } | 
|  | 7568 |  | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7569 | void nl80211_send_scan_start(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7570 | struct wireless_dev *wdev) | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7571 | { | 
|  | 7572 | struct sk_buff *msg; | 
|  | 7573 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 7574 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7575 | if (!msg) | 
|  | 7576 | return; | 
|  | 7577 |  | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7578 | if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0, | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7579 | NL80211_CMD_TRIGGER_SCAN) < 0) { | 
|  | 7580 | nlmsg_free(msg); | 
|  | 7581 | return; | 
|  | 7582 | } | 
|  | 7583 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7584 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7585 | nl80211_scan_mcgrp.id, GFP_KERNEL); | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7586 | } | 
|  | 7587 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7588 | void nl80211_send_scan_done(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7589 | struct wireless_dev *wdev) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7590 | { | 
|  | 7591 | struct sk_buff *msg; | 
|  | 7592 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 7593 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7594 | if (!msg) | 
|  | 7595 | return; | 
|  | 7596 |  | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7597 | if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0, | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7598 | NL80211_CMD_NEW_SCAN_RESULTS) < 0) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7599 | nlmsg_free(msg); | 
|  | 7600 | return; | 
|  | 7601 | } | 
|  | 7602 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7603 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7604 | nl80211_scan_mcgrp.id, GFP_KERNEL); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7605 | } | 
|  | 7606 |  | 
|  | 7607 | void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7608 | struct wireless_dev *wdev) | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7609 | { | 
|  | 7610 | struct sk_buff *msg; | 
|  | 7611 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 7612 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7613 | if (!msg) | 
|  | 7614 | return; | 
|  | 7615 |  | 
| Johannes Berg | fd01428 | 2012-06-18 19:17:03 +0200 | [diff] [blame] | 7616 | if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0, | 
| Johannes Berg | a538e2d | 2009-06-16 19:56:42 +0200 | [diff] [blame] | 7617 | NL80211_CMD_SCAN_ABORTED) < 0) { | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7618 | nlmsg_free(msg); | 
|  | 7619 | return; | 
|  | 7620 | } | 
|  | 7621 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7622 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7623 | nl80211_scan_mcgrp.id, GFP_KERNEL); | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 7624 | } | 
|  | 7625 |  | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 7626 | void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev, | 
|  | 7627 | struct net_device *netdev) | 
|  | 7628 | { | 
|  | 7629 | struct sk_buff *msg; | 
|  | 7630 |  | 
|  | 7631 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
|  | 7632 | if (!msg) | 
|  | 7633 | return; | 
|  | 7634 |  | 
|  | 7635 | if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, | 
|  | 7636 | NL80211_CMD_SCHED_SCAN_RESULTS) < 0) { | 
|  | 7637 | nlmsg_free(msg); | 
|  | 7638 | return; | 
|  | 7639 | } | 
|  | 7640 |  | 
|  | 7641 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7642 | nl80211_scan_mcgrp.id, GFP_KERNEL); | 
|  | 7643 | } | 
|  | 7644 |  | 
|  | 7645 | void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev, | 
|  | 7646 | struct net_device *netdev, u32 cmd) | 
|  | 7647 | { | 
|  | 7648 | struct sk_buff *msg; | 
|  | 7649 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 7650 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 7651 | if (!msg) | 
|  | 7652 | return; | 
|  | 7653 |  | 
|  | 7654 | if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) { | 
|  | 7655 | nlmsg_free(msg); | 
|  | 7656 | return; | 
|  | 7657 | } | 
|  | 7658 |  | 
|  | 7659 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7660 | nl80211_scan_mcgrp.id, GFP_KERNEL); | 
|  | 7661 | } | 
|  | 7662 |  | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 7663 | /* | 
|  | 7664 | * This can happen on global regulatory changes or device specific settings | 
|  | 7665 | * based on custom world regulatory domains. | 
|  | 7666 | */ | 
|  | 7667 | void nl80211_send_reg_change_event(struct regulatory_request *request) | 
|  | 7668 | { | 
|  | 7669 | struct sk_buff *msg; | 
|  | 7670 | void *hdr; | 
|  | 7671 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 7672 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 7673 | if (!msg) | 
|  | 7674 | return; | 
|  | 7675 |  | 
|  | 7676 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE); | 
|  | 7677 | if (!hdr) { | 
|  | 7678 | nlmsg_free(msg); | 
|  | 7679 | return; | 
|  | 7680 | } | 
|  | 7681 |  | 
|  | 7682 | /* Userspace can always count this one always being set */ | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7683 | if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator)) | 
|  | 7684 | goto nla_put_failure; | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 7685 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7686 | if (request->alpha2[0] == '0' && request->alpha2[1] == '0') { | 
|  | 7687 | if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE, | 
|  | 7688 | NL80211_REGDOM_TYPE_WORLD)) | 
|  | 7689 | goto nla_put_failure; | 
|  | 7690 | } else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') { | 
|  | 7691 | if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE, | 
|  | 7692 | NL80211_REGDOM_TYPE_CUSTOM_WORLD)) | 
|  | 7693 | goto nla_put_failure; | 
|  | 7694 | } else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') || | 
|  | 7695 | request->intersect) { | 
|  | 7696 | if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE, | 
|  | 7697 | NL80211_REGDOM_TYPE_INTERSECTION)) | 
|  | 7698 | goto nla_put_failure; | 
|  | 7699 | } else { | 
|  | 7700 | if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE, | 
|  | 7701 | NL80211_REGDOM_TYPE_COUNTRY) || | 
|  | 7702 | nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, | 
|  | 7703 | request->alpha2)) | 
|  | 7704 | goto nla_put_failure; | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 7705 | } | 
|  | 7706 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7707 | if (wiphy_idx_valid(request->wiphy_idx) && | 
|  | 7708 | nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx)) | 
|  | 7709 | goto nla_put_failure; | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 7710 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 7711 | genlmsg_end(msg, hdr); | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 7712 |  | 
| Johannes Berg | bc43b28 | 2009-07-25 10:54:13 +0200 | [diff] [blame] | 7713 | rcu_read_lock(); | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7714 | genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id, | 
| Johannes Berg | bc43b28 | 2009-07-25 10:54:13 +0200 | [diff] [blame] | 7715 | GFP_ATOMIC); | 
|  | 7716 | rcu_read_unlock(); | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 7717 |  | 
|  | 7718 | return; | 
|  | 7719 |  | 
|  | 7720 | nla_put_failure: | 
|  | 7721 | genlmsg_cancel(msg, hdr); | 
|  | 7722 | nlmsg_free(msg); | 
|  | 7723 | } | 
|  | 7724 |  | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7725 | static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev, | 
|  | 7726 | struct net_device *netdev, | 
|  | 7727 | const u8 *buf, size_t len, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7728 | enum nl80211_commands cmd, gfp_t gfp) | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7729 | { | 
|  | 7730 | struct sk_buff *msg; | 
|  | 7731 | void *hdr; | 
|  | 7732 |  | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7733 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7734 | if (!msg) | 
|  | 7735 | return; | 
|  | 7736 |  | 
|  | 7737 | hdr = nl80211hdr_put(msg, 0, 0, 0, cmd); | 
|  | 7738 | if (!hdr) { | 
|  | 7739 | nlmsg_free(msg); | 
|  | 7740 | return; | 
|  | 7741 | } | 
|  | 7742 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7743 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 7744 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 7745 | nla_put(msg, NL80211_ATTR_FRAME, len, buf)) | 
|  | 7746 | goto nla_put_failure; | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7747 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 7748 | genlmsg_end(msg, hdr); | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7749 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7750 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7751 | nl80211_mlme_mcgrp.id, gfp); | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7752 | return; | 
|  | 7753 |  | 
|  | 7754 | nla_put_failure: | 
|  | 7755 | genlmsg_cancel(msg, hdr); | 
|  | 7756 | nlmsg_free(msg); | 
|  | 7757 | } | 
|  | 7758 |  | 
|  | 7759 | void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7760 | struct net_device *netdev, const u8 *buf, | 
|  | 7761 | size_t len, gfp_t gfp) | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7762 | { | 
|  | 7763 | nl80211_send_mlme_event(rdev, netdev, buf, len, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7764 | NL80211_CMD_AUTHENTICATE, gfp); | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7765 | } | 
|  | 7766 |  | 
|  | 7767 | void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev, | 
|  | 7768 | struct net_device *netdev, const u8 *buf, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7769 | size_t len, gfp_t gfp) | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7770 | { | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7771 | nl80211_send_mlme_event(rdev, netdev, buf, len, | 
|  | 7772 | NL80211_CMD_ASSOCIATE, gfp); | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7773 | } | 
|  | 7774 |  | 
| Jouni Malinen | 53b46b8 | 2009-03-27 20:53:56 +0200 | [diff] [blame] | 7775 | void nl80211_send_deauth(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7776 | struct net_device *netdev, const u8 *buf, | 
|  | 7777 | size_t len, gfp_t gfp) | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7778 | { | 
|  | 7779 | nl80211_send_mlme_event(rdev, netdev, buf, len, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7780 | NL80211_CMD_DEAUTHENTICATE, gfp); | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7781 | } | 
|  | 7782 |  | 
| Jouni Malinen | 53b46b8 | 2009-03-27 20:53:56 +0200 | [diff] [blame] | 7783 | void nl80211_send_disassoc(struct cfg80211_registered_device *rdev, | 
|  | 7784 | struct net_device *netdev, const u8 *buf, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7785 | size_t len, gfp_t gfp) | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7786 | { | 
|  | 7787 | nl80211_send_mlme_event(rdev, netdev, buf, len, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7788 | NL80211_CMD_DISASSOCIATE, gfp); | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 7789 | } | 
|  | 7790 |  | 
| Jouni Malinen | cf4e594 | 2010-12-16 00:52:40 +0200 | [diff] [blame] | 7791 | void nl80211_send_unprot_deauth(struct cfg80211_registered_device *rdev, | 
|  | 7792 | struct net_device *netdev, const u8 *buf, | 
|  | 7793 | size_t len, gfp_t gfp) | 
|  | 7794 | { | 
|  | 7795 | nl80211_send_mlme_event(rdev, netdev, buf, len, | 
|  | 7796 | NL80211_CMD_UNPROT_DEAUTHENTICATE, gfp); | 
|  | 7797 | } | 
|  | 7798 |  | 
|  | 7799 | void nl80211_send_unprot_disassoc(struct cfg80211_registered_device *rdev, | 
|  | 7800 | struct net_device *netdev, const u8 *buf, | 
|  | 7801 | size_t len, gfp_t gfp) | 
|  | 7802 | { | 
|  | 7803 | nl80211_send_mlme_event(rdev, netdev, buf, len, | 
|  | 7804 | NL80211_CMD_UNPROT_DISASSOCIATE, gfp); | 
|  | 7805 | } | 
|  | 7806 |  | 
| Luis R. Rodriguez | 1b06bb4 | 2009-05-02 00:34:48 -0400 | [diff] [blame] | 7807 | static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev, | 
|  | 7808 | struct net_device *netdev, int cmd, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7809 | const u8 *addr, gfp_t gfp) | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7810 | { | 
|  | 7811 | struct sk_buff *msg; | 
|  | 7812 | void *hdr; | 
|  | 7813 |  | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7814 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7815 | if (!msg) | 
|  | 7816 | return; | 
|  | 7817 |  | 
|  | 7818 | hdr = nl80211hdr_put(msg, 0, 0, 0, cmd); | 
|  | 7819 | if (!hdr) { | 
|  | 7820 | nlmsg_free(msg); | 
|  | 7821 | return; | 
|  | 7822 | } | 
|  | 7823 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7824 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 7825 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 7826 | nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) || | 
|  | 7827 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) | 
|  | 7828 | goto nla_put_failure; | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7829 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 7830 | genlmsg_end(msg, hdr); | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7831 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7832 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7833 | nl80211_mlme_mcgrp.id, gfp); | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7834 | return; | 
|  | 7835 |  | 
|  | 7836 | nla_put_failure: | 
|  | 7837 | genlmsg_cancel(msg, hdr); | 
|  | 7838 | nlmsg_free(msg); | 
|  | 7839 | } | 
|  | 7840 |  | 
|  | 7841 | void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7842 | struct net_device *netdev, const u8 *addr, | 
|  | 7843 | gfp_t gfp) | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7844 | { | 
|  | 7845 | nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7846 | addr, gfp); | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7847 | } | 
|  | 7848 |  | 
|  | 7849 | void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7850 | struct net_device *netdev, const u8 *addr, | 
|  | 7851 | gfp_t gfp) | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7852 | { | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 7853 | nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE, | 
|  | 7854 | addr, gfp); | 
| Jouni Malinen | 1965c85 | 2009-04-22 21:38:25 +0300 | [diff] [blame] | 7855 | } | 
|  | 7856 |  | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7857 | void nl80211_send_connect_result(struct cfg80211_registered_device *rdev, | 
|  | 7858 | struct net_device *netdev, const u8 *bssid, | 
|  | 7859 | const u8 *req_ie, size_t req_ie_len, | 
|  | 7860 | const u8 *resp_ie, size_t resp_ie_len, | 
|  | 7861 | u16 status, gfp_t gfp) | 
|  | 7862 | { | 
|  | 7863 | struct sk_buff *msg; | 
|  | 7864 | void *hdr; | 
|  | 7865 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 7866 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7867 | if (!msg) | 
|  | 7868 | return; | 
|  | 7869 |  | 
|  | 7870 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT); | 
|  | 7871 | if (!hdr) { | 
|  | 7872 | nlmsg_free(msg); | 
|  | 7873 | return; | 
|  | 7874 | } | 
|  | 7875 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7876 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 7877 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 7878 | (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) || | 
|  | 7879 | nla_put_u16(msg, NL80211_ATTR_STATUS_CODE, status) || | 
|  | 7880 | (req_ie && | 
|  | 7881 | nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) || | 
|  | 7882 | (resp_ie && | 
|  | 7883 | nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie))) | 
|  | 7884 | goto nla_put_failure; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7885 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 7886 | genlmsg_end(msg, hdr); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7887 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7888 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7889 | nl80211_mlme_mcgrp.id, gfp); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7890 | return; | 
|  | 7891 |  | 
|  | 7892 | nla_put_failure: | 
|  | 7893 | genlmsg_cancel(msg, hdr); | 
|  | 7894 | nlmsg_free(msg); | 
|  | 7895 |  | 
|  | 7896 | } | 
|  | 7897 |  | 
|  | 7898 | void nl80211_send_roamed(struct cfg80211_registered_device *rdev, | 
|  | 7899 | struct net_device *netdev, const u8 *bssid, | 
|  | 7900 | const u8 *req_ie, size_t req_ie_len, | 
|  | 7901 | const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp) | 
|  | 7902 | { | 
|  | 7903 | struct sk_buff *msg; | 
|  | 7904 | void *hdr; | 
|  | 7905 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 7906 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7907 | if (!msg) | 
|  | 7908 | return; | 
|  | 7909 |  | 
|  | 7910 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM); | 
|  | 7911 | if (!hdr) { | 
|  | 7912 | nlmsg_free(msg); | 
|  | 7913 | return; | 
|  | 7914 | } | 
|  | 7915 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7916 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 7917 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 7918 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) || | 
|  | 7919 | (req_ie && | 
|  | 7920 | nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) || | 
|  | 7921 | (resp_ie && | 
|  | 7922 | nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie))) | 
|  | 7923 | goto nla_put_failure; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7924 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 7925 | genlmsg_end(msg, hdr); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7926 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7927 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7928 | nl80211_mlme_mcgrp.id, gfp); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7929 | return; | 
|  | 7930 |  | 
|  | 7931 | nla_put_failure: | 
|  | 7932 | genlmsg_cancel(msg, hdr); | 
|  | 7933 | nlmsg_free(msg); | 
|  | 7934 |  | 
|  | 7935 | } | 
|  | 7936 |  | 
|  | 7937 | void nl80211_send_disconnected(struct cfg80211_registered_device *rdev, | 
|  | 7938 | struct net_device *netdev, u16 reason, | 
| Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 7939 | const u8 *ie, size_t ie_len, bool from_ap) | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7940 | { | 
|  | 7941 | struct sk_buff *msg; | 
|  | 7942 | void *hdr; | 
|  | 7943 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 7944 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7945 | if (!msg) | 
|  | 7946 | return; | 
|  | 7947 |  | 
|  | 7948 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT); | 
|  | 7949 | if (!hdr) { | 
|  | 7950 | nlmsg_free(msg); | 
|  | 7951 | return; | 
|  | 7952 | } | 
|  | 7953 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7954 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 7955 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 7956 | (from_ap && reason && | 
|  | 7957 | nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) || | 
|  | 7958 | (from_ap && | 
|  | 7959 | nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) || | 
|  | 7960 | (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie))) | 
|  | 7961 | goto nla_put_failure; | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7962 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 7963 | genlmsg_end(msg, hdr); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7964 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7965 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 7966 | nl80211_mlme_mcgrp.id, GFP_KERNEL); | 
| Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 7967 | return; | 
|  | 7968 |  | 
|  | 7969 | nla_put_failure: | 
|  | 7970 | genlmsg_cancel(msg, hdr); | 
|  | 7971 | nlmsg_free(msg); | 
|  | 7972 |  | 
|  | 7973 | } | 
|  | 7974 |  | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 7975 | void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev, | 
|  | 7976 | struct net_device *netdev, const u8 *bssid, | 
|  | 7977 | gfp_t gfp) | 
|  | 7978 | { | 
|  | 7979 | struct sk_buff *msg; | 
|  | 7980 | void *hdr; | 
|  | 7981 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 7982 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 7983 | if (!msg) | 
|  | 7984 | return; | 
|  | 7985 |  | 
|  | 7986 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS); | 
|  | 7987 | if (!hdr) { | 
|  | 7988 | nlmsg_free(msg); | 
|  | 7989 | return; | 
|  | 7990 | } | 
|  | 7991 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 7992 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 7993 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 7994 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) | 
|  | 7995 | goto nla_put_failure; | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 7996 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 7997 | genlmsg_end(msg, hdr); | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 7998 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 7999 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8000 | nl80211_mlme_mcgrp.id, gfp); | 
| Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 8001 | return; | 
|  | 8002 |  | 
|  | 8003 | nla_put_failure: | 
|  | 8004 | genlmsg_cancel(msg, hdr); | 
|  | 8005 | nlmsg_free(msg); | 
|  | 8006 | } | 
|  | 8007 |  | 
| Javier Cardona | c93b5e7 | 2011-04-07 15:08:34 -0700 | [diff] [blame] | 8008 | void nl80211_send_new_peer_candidate(struct cfg80211_registered_device *rdev, | 
|  | 8009 | struct net_device *netdev, | 
|  | 8010 | const u8 *macaddr, const u8* ie, u8 ie_len, | 
|  | 8011 | gfp_t gfp) | 
|  | 8012 | { | 
|  | 8013 | struct sk_buff *msg; | 
|  | 8014 | void *hdr; | 
|  | 8015 |  | 
|  | 8016 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
|  | 8017 | if (!msg) | 
|  | 8018 | return; | 
|  | 8019 |  | 
|  | 8020 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE); | 
|  | 8021 | if (!hdr) { | 
|  | 8022 | nlmsg_free(msg); | 
|  | 8023 | return; | 
|  | 8024 | } | 
|  | 8025 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8026 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8027 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 8028 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, macaddr) || | 
|  | 8029 | (ie_len && ie && | 
|  | 8030 | nla_put(msg, NL80211_ATTR_IE, ie_len , ie))) | 
|  | 8031 | goto nla_put_failure; | 
| Javier Cardona | c93b5e7 | 2011-04-07 15:08:34 -0700 | [diff] [blame] | 8032 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8033 | genlmsg_end(msg, hdr); | 
| Javier Cardona | c93b5e7 | 2011-04-07 15:08:34 -0700 | [diff] [blame] | 8034 |  | 
|  | 8035 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8036 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8037 | return; | 
|  | 8038 |  | 
|  | 8039 | nla_put_failure: | 
|  | 8040 | genlmsg_cancel(msg, hdr); | 
|  | 8041 | nlmsg_free(msg); | 
|  | 8042 | } | 
|  | 8043 |  | 
| Jouni Malinen | a3b8b05 | 2009-03-27 21:59:49 +0200 | [diff] [blame] | 8044 | void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev, | 
|  | 8045 | struct net_device *netdev, const u8 *addr, | 
|  | 8046 | enum nl80211_key_type key_type, int key_id, | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 8047 | const u8 *tsc, gfp_t gfp) | 
| Jouni Malinen | a3b8b05 | 2009-03-27 21:59:49 +0200 | [diff] [blame] | 8048 | { | 
|  | 8049 | struct sk_buff *msg; | 
|  | 8050 | void *hdr; | 
|  | 8051 |  | 
| Johannes Berg | e6d6e34 | 2009-07-01 21:26:47 +0200 | [diff] [blame] | 8052 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Jouni Malinen | a3b8b05 | 2009-03-27 21:59:49 +0200 | [diff] [blame] | 8053 | if (!msg) | 
|  | 8054 | return; | 
|  | 8055 |  | 
|  | 8056 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE); | 
|  | 8057 | if (!hdr) { | 
|  | 8058 | nlmsg_free(msg); | 
|  | 8059 | return; | 
|  | 8060 | } | 
|  | 8061 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8062 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8063 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 8064 | (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) || | 
|  | 8065 | nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) || | 
|  | 8066 | (key_id != -1 && | 
|  | 8067 | nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) || | 
|  | 8068 | (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc))) | 
|  | 8069 | goto nla_put_failure; | 
| Jouni Malinen | a3b8b05 | 2009-03-27 21:59:49 +0200 | [diff] [blame] | 8070 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8071 | genlmsg_end(msg, hdr); | 
| Jouni Malinen | a3b8b05 | 2009-03-27 21:59:49 +0200 | [diff] [blame] | 8072 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 8073 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8074 | nl80211_mlme_mcgrp.id, gfp); | 
| Jouni Malinen | a3b8b05 | 2009-03-27 21:59:49 +0200 | [diff] [blame] | 8075 | return; | 
|  | 8076 |  | 
|  | 8077 | nla_put_failure: | 
|  | 8078 | genlmsg_cancel(msg, hdr); | 
|  | 8079 | nlmsg_free(msg); | 
|  | 8080 | } | 
|  | 8081 |  | 
| Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 8082 | void nl80211_send_beacon_hint_event(struct wiphy *wiphy, | 
|  | 8083 | struct ieee80211_channel *channel_before, | 
|  | 8084 | struct ieee80211_channel *channel_after) | 
|  | 8085 | { | 
|  | 8086 | struct sk_buff *msg; | 
|  | 8087 | void *hdr; | 
|  | 8088 | struct nlattr *nl_freq; | 
|  | 8089 |  | 
| Pablo Neira Ayuso | fd2120c | 2009-05-19 15:27:55 -0700 | [diff] [blame] | 8090 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); | 
| Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 8091 | if (!msg) | 
|  | 8092 | return; | 
|  | 8093 |  | 
|  | 8094 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT); | 
|  | 8095 | if (!hdr) { | 
|  | 8096 | nlmsg_free(msg); | 
|  | 8097 | return; | 
|  | 8098 | } | 
|  | 8099 |  | 
|  | 8100 | /* | 
|  | 8101 | * Since we are applying the beacon hint to a wiphy we know its | 
|  | 8102 | * wiphy_idx is valid | 
|  | 8103 | */ | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8104 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy))) | 
|  | 8105 | goto nla_put_failure; | 
| Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 8106 |  | 
|  | 8107 | /* Before */ | 
|  | 8108 | nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE); | 
|  | 8109 | if (!nl_freq) | 
|  | 8110 | goto nla_put_failure; | 
|  | 8111 | if (nl80211_msg_put_channel(msg, channel_before)) | 
|  | 8112 | goto nla_put_failure; | 
|  | 8113 | nla_nest_end(msg, nl_freq); | 
|  | 8114 |  | 
|  | 8115 | /* After */ | 
|  | 8116 | nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER); | 
|  | 8117 | if (!nl_freq) | 
|  | 8118 | goto nla_put_failure; | 
|  | 8119 | if (nl80211_msg_put_channel(msg, channel_after)) | 
|  | 8120 | goto nla_put_failure; | 
|  | 8121 | nla_nest_end(msg, nl_freq); | 
|  | 8122 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8123 | genlmsg_end(msg, hdr); | 
| Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 8124 |  | 
| Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 8125 | rcu_read_lock(); | 
|  | 8126 | genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id, | 
|  | 8127 | GFP_ATOMIC); | 
|  | 8128 | rcu_read_unlock(); | 
| Luis R. Rodriguez | 6bad876 | 2009-04-02 14:08:09 -0400 | [diff] [blame] | 8129 |  | 
|  | 8130 | return; | 
|  | 8131 |  | 
|  | 8132 | nla_put_failure: | 
|  | 8133 | genlmsg_cancel(msg, hdr); | 
|  | 8134 | nlmsg_free(msg); | 
|  | 8135 | } | 
|  | 8136 |  | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8137 | static void nl80211_send_remain_on_chan_event( | 
|  | 8138 | int cmd, struct cfg80211_registered_device *rdev, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8139 | struct wireless_dev *wdev, u64 cookie, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8140 | struct ieee80211_channel *chan, | 
|  | 8141 | enum nl80211_channel_type channel_type, | 
|  | 8142 | unsigned int duration, gfp_t gfp) | 
|  | 8143 | { | 
|  | 8144 | struct sk_buff *msg; | 
|  | 8145 | void *hdr; | 
|  | 8146 |  | 
|  | 8147 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
|  | 8148 | if (!msg) | 
|  | 8149 | return; | 
|  | 8150 |  | 
|  | 8151 | hdr = nl80211hdr_put(msg, 0, 0, 0, cmd); | 
|  | 8152 | if (!hdr) { | 
|  | 8153 | nlmsg_free(msg); | 
|  | 8154 | return; | 
|  | 8155 | } | 
|  | 8156 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8157 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8158 | (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX, | 
|  | 8159 | wdev->netdev->ifindex)) || | 
| Johannes Berg | 00f5335 | 2012-07-17 11:53:12 +0200 | [diff] [blame] | 8160 | nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) || | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8161 | nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) || | 
|  | 8162 | nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE, channel_type) || | 
|  | 8163 | nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie)) | 
|  | 8164 | goto nla_put_failure; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8165 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8166 | if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL && | 
|  | 8167 | nla_put_u32(msg, NL80211_ATTR_DURATION, duration)) | 
|  | 8168 | goto nla_put_failure; | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8169 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8170 | genlmsg_end(msg, hdr); | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8171 |  | 
|  | 8172 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8173 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8174 | return; | 
|  | 8175 |  | 
|  | 8176 | nla_put_failure: | 
|  | 8177 | genlmsg_cancel(msg, hdr); | 
|  | 8178 | nlmsg_free(msg); | 
|  | 8179 | } | 
|  | 8180 |  | 
|  | 8181 | void nl80211_send_remain_on_channel(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8182 | struct wireless_dev *wdev, u64 cookie, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8183 | struct ieee80211_channel *chan, | 
|  | 8184 | enum nl80211_channel_type channel_type, | 
|  | 8185 | unsigned int duration, gfp_t gfp) | 
|  | 8186 | { | 
|  | 8187 | nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8188 | rdev, wdev, cookie, chan, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8189 | channel_type, duration, gfp); | 
|  | 8190 | } | 
|  | 8191 |  | 
|  | 8192 | void nl80211_send_remain_on_channel_cancel( | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8193 | struct cfg80211_registered_device *rdev, | 
|  | 8194 | struct wireless_dev *wdev, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8195 | u64 cookie, struct ieee80211_channel *chan, | 
|  | 8196 | enum nl80211_channel_type channel_type, gfp_t gfp) | 
|  | 8197 | { | 
|  | 8198 | nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8199 | rdev, wdev, cookie, chan, | 
| Jouni Malinen | 9588bbd | 2009-12-23 13:15:41 +0100 | [diff] [blame] | 8200 | channel_type, 0, gfp); | 
|  | 8201 | } | 
|  | 8202 |  | 
| Johannes Berg | 98b6218 | 2009-12-23 13:15:44 +0100 | [diff] [blame] | 8203 | void nl80211_send_sta_event(struct cfg80211_registered_device *rdev, | 
|  | 8204 | struct net_device *dev, const u8 *mac_addr, | 
|  | 8205 | struct station_info *sinfo, gfp_t gfp) | 
|  | 8206 | { | 
|  | 8207 | struct sk_buff *msg; | 
|  | 8208 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 8209 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Johannes Berg | 98b6218 | 2009-12-23 13:15:44 +0100 | [diff] [blame] | 8210 | if (!msg) | 
|  | 8211 | return; | 
|  | 8212 |  | 
| John W. Linville | 66266b3 | 2012-03-15 13:25:41 -0400 | [diff] [blame] | 8213 | if (nl80211_send_station(msg, 0, 0, 0, | 
|  | 8214 | rdev, dev, mac_addr, sinfo) < 0) { | 
| Johannes Berg | 98b6218 | 2009-12-23 13:15:44 +0100 | [diff] [blame] | 8215 | nlmsg_free(msg); | 
|  | 8216 | return; | 
|  | 8217 | } | 
|  | 8218 |  | 
|  | 8219 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8220 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8221 | } | 
|  | 8222 |  | 
| Jouni Malinen | ec15e68 | 2011-03-23 15:29:52 +0200 | [diff] [blame] | 8223 | void nl80211_send_sta_del_event(struct cfg80211_registered_device *rdev, | 
|  | 8224 | struct net_device *dev, const u8 *mac_addr, | 
|  | 8225 | gfp_t gfp) | 
|  | 8226 | { | 
|  | 8227 | struct sk_buff *msg; | 
|  | 8228 | void *hdr; | 
|  | 8229 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 8230 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Jouni Malinen | ec15e68 | 2011-03-23 15:29:52 +0200 | [diff] [blame] | 8231 | if (!msg) | 
|  | 8232 | return; | 
|  | 8233 |  | 
|  | 8234 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION); | 
|  | 8235 | if (!hdr) { | 
|  | 8236 | nlmsg_free(msg); | 
|  | 8237 | return; | 
|  | 8238 | } | 
|  | 8239 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8240 | if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) || | 
|  | 8241 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr)) | 
|  | 8242 | goto nla_put_failure; | 
| Jouni Malinen | ec15e68 | 2011-03-23 15:29:52 +0200 | [diff] [blame] | 8243 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8244 | genlmsg_end(msg, hdr); | 
| Jouni Malinen | ec15e68 | 2011-03-23 15:29:52 +0200 | [diff] [blame] | 8245 |  | 
|  | 8246 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8247 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8248 | return; | 
|  | 8249 |  | 
|  | 8250 | nla_put_failure: | 
|  | 8251 | genlmsg_cancel(msg, hdr); | 
|  | 8252 | nlmsg_free(msg); | 
|  | 8253 | } | 
|  | 8254 |  | 
| Johannes Berg | b92ab5d | 2011-11-04 11:18:19 +0100 | [diff] [blame] | 8255 | static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd, | 
|  | 8256 | const u8 *addr, gfp_t gfp) | 
| Johannes Berg | 28946da | 2011-11-04 11:18:12 +0100 | [diff] [blame] | 8257 | { | 
|  | 8258 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 8259 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy); | 
|  | 8260 | struct sk_buff *msg; | 
|  | 8261 | void *hdr; | 
|  | 8262 | int err; | 
|  | 8263 | u32 nlpid = ACCESS_ONCE(wdev->ap_unexpected_nlpid); | 
|  | 8264 |  | 
|  | 8265 | if (!nlpid) | 
|  | 8266 | return false; | 
|  | 8267 |  | 
|  | 8268 | msg = nlmsg_new(100, gfp); | 
|  | 8269 | if (!msg) | 
|  | 8270 | return true; | 
|  | 8271 |  | 
| Johannes Berg | b92ab5d | 2011-11-04 11:18:19 +0100 | [diff] [blame] | 8272 | hdr = nl80211hdr_put(msg, 0, 0, 0, cmd); | 
| Johannes Berg | 28946da | 2011-11-04 11:18:12 +0100 | [diff] [blame] | 8273 | if (!hdr) { | 
|  | 8274 | nlmsg_free(msg); | 
|  | 8275 | return true; | 
|  | 8276 | } | 
|  | 8277 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8278 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8279 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) || | 
|  | 8280 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) | 
|  | 8281 | goto nla_put_failure; | 
| Johannes Berg | 28946da | 2011-11-04 11:18:12 +0100 | [diff] [blame] | 8282 |  | 
|  | 8283 | err = genlmsg_end(msg, hdr); | 
|  | 8284 | if (err < 0) { | 
|  | 8285 | nlmsg_free(msg); | 
|  | 8286 | return true; | 
|  | 8287 | } | 
|  | 8288 |  | 
|  | 8289 | genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlpid); | 
|  | 8290 | return true; | 
|  | 8291 |  | 
|  | 8292 | nla_put_failure: | 
|  | 8293 | genlmsg_cancel(msg, hdr); | 
|  | 8294 | nlmsg_free(msg); | 
|  | 8295 | return true; | 
|  | 8296 | } | 
|  | 8297 |  | 
| Johannes Berg | b92ab5d | 2011-11-04 11:18:19 +0100 | [diff] [blame] | 8298 | bool nl80211_unexpected_frame(struct net_device *dev, const u8 *addr, gfp_t gfp) | 
|  | 8299 | { | 
|  | 8300 | return __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME, | 
|  | 8301 | addr, gfp); | 
|  | 8302 | } | 
|  | 8303 |  | 
|  | 8304 | bool nl80211_unexpected_4addr_frame(struct net_device *dev, | 
|  | 8305 | const u8 *addr, gfp_t gfp) | 
|  | 8306 | { | 
|  | 8307 | return __nl80211_unexpected_frame(dev, | 
|  | 8308 | NL80211_CMD_UNEXPECTED_4ADDR_FRAME, | 
|  | 8309 | addr, gfp); | 
|  | 8310 | } | 
|  | 8311 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 8312 | int nl80211_send_mgmt(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8313 | struct wireless_dev *wdev, u32 nlpid, | 
| Johannes Berg | 804483e | 2012-03-05 22:18:41 +0100 | [diff] [blame] | 8314 | int freq, int sig_dbm, | 
|  | 8315 | const u8 *buf, size_t len, gfp_t gfp) | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8316 | { | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8317 | struct net_device *netdev = wdev->netdev; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8318 | struct sk_buff *msg; | 
|  | 8319 | void *hdr; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8320 |  | 
|  | 8321 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
|  | 8322 | if (!msg) | 
|  | 8323 | return -ENOMEM; | 
|  | 8324 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 8325 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8326 | if (!hdr) { | 
|  | 8327 | nlmsg_free(msg); | 
|  | 8328 | return -ENOMEM; | 
|  | 8329 | } | 
|  | 8330 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8331 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8332 | (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX, | 
|  | 8333 | netdev->ifindex)) || | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8334 | nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) || | 
|  | 8335 | (sig_dbm && | 
|  | 8336 | nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) || | 
|  | 8337 | nla_put(msg, NL80211_ATTR_FRAME, len, buf)) | 
|  | 8338 | goto nla_put_failure; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8339 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8340 | genlmsg_end(msg, hdr); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8341 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8342 | return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlpid); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8343 |  | 
|  | 8344 | nla_put_failure: | 
|  | 8345 | genlmsg_cancel(msg, hdr); | 
|  | 8346 | nlmsg_free(msg); | 
|  | 8347 | return -ENOBUFS; | 
|  | 8348 | } | 
|  | 8349 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 8350 | void nl80211_send_mgmt_tx_status(struct cfg80211_registered_device *rdev, | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8351 | struct wireless_dev *wdev, u64 cookie, | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 8352 | const u8 *buf, size_t len, bool ack, | 
|  | 8353 | gfp_t gfp) | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8354 | { | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8355 | struct net_device *netdev = wdev->netdev; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8356 | struct sk_buff *msg; | 
|  | 8357 | void *hdr; | 
|  | 8358 |  | 
|  | 8359 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
|  | 8360 | if (!msg) | 
|  | 8361 | return; | 
|  | 8362 |  | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 8363 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8364 | if (!hdr) { | 
|  | 8365 | nlmsg_free(msg); | 
|  | 8366 | return; | 
|  | 8367 | } | 
|  | 8368 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8369 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
| Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 8370 | (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX, | 
|  | 8371 | netdev->ifindex)) || | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8372 | nla_put(msg, NL80211_ATTR_FRAME, len, buf) || | 
|  | 8373 | nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) || | 
|  | 8374 | (ack && nla_put_flag(msg, NL80211_ATTR_ACK))) | 
|  | 8375 | goto nla_put_failure; | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8376 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8377 | genlmsg_end(msg, hdr); | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8378 |  | 
|  | 8379 | genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, gfp); | 
|  | 8380 | return; | 
|  | 8381 |  | 
|  | 8382 | nla_put_failure: | 
|  | 8383 | genlmsg_cancel(msg, hdr); | 
|  | 8384 | nlmsg_free(msg); | 
|  | 8385 | } | 
|  | 8386 |  | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 8387 | void | 
|  | 8388 | nl80211_send_cqm_rssi_notify(struct cfg80211_registered_device *rdev, | 
|  | 8389 | struct net_device *netdev, | 
|  | 8390 | enum nl80211_cqm_rssi_threshold_event rssi_event, | 
|  | 8391 | gfp_t gfp) | 
|  | 8392 | { | 
|  | 8393 | struct sk_buff *msg; | 
|  | 8394 | struct nlattr *pinfoattr; | 
|  | 8395 | void *hdr; | 
|  | 8396 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 8397 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 8398 | if (!msg) | 
|  | 8399 | return; | 
|  | 8400 |  | 
|  | 8401 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM); | 
|  | 8402 | if (!hdr) { | 
|  | 8403 | nlmsg_free(msg); | 
|  | 8404 | return; | 
|  | 8405 | } | 
|  | 8406 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8407 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8408 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex)) | 
|  | 8409 | goto nla_put_failure; | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 8410 |  | 
|  | 8411 | pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM); | 
|  | 8412 | if (!pinfoattr) | 
|  | 8413 | goto nla_put_failure; | 
|  | 8414 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8415 | if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT, | 
|  | 8416 | rssi_event)) | 
|  | 8417 | goto nla_put_failure; | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 8418 |  | 
|  | 8419 | nla_nest_end(msg, pinfoattr); | 
|  | 8420 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8421 | genlmsg_end(msg, hdr); | 
| Juuso Oikarinen | d6dc1a3 | 2010-03-23 09:02:33 +0200 | [diff] [blame] | 8422 |  | 
|  | 8423 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8424 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8425 | return; | 
|  | 8426 |  | 
|  | 8427 | nla_put_failure: | 
|  | 8428 | genlmsg_cancel(msg, hdr); | 
|  | 8429 | nlmsg_free(msg); | 
|  | 8430 | } | 
|  | 8431 |  | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 8432 | void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev, | 
|  | 8433 | struct net_device *netdev, const u8 *bssid, | 
|  | 8434 | const u8 *replay_ctr, gfp_t gfp) | 
|  | 8435 | { | 
|  | 8436 | struct sk_buff *msg; | 
|  | 8437 | struct nlattr *rekey_attr; | 
|  | 8438 | void *hdr; | 
|  | 8439 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 8440 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 8441 | if (!msg) | 
|  | 8442 | return; | 
|  | 8443 |  | 
|  | 8444 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD); | 
|  | 8445 | if (!hdr) { | 
|  | 8446 | nlmsg_free(msg); | 
|  | 8447 | return; | 
|  | 8448 | } | 
|  | 8449 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8450 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8451 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 8452 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) | 
|  | 8453 | goto nla_put_failure; | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 8454 |  | 
|  | 8455 | rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA); | 
|  | 8456 | if (!rekey_attr) | 
|  | 8457 | goto nla_put_failure; | 
|  | 8458 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8459 | if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR, | 
|  | 8460 | NL80211_REPLAY_CTR_LEN, replay_ctr)) | 
|  | 8461 | goto nla_put_failure; | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 8462 |  | 
|  | 8463 | nla_nest_end(msg, rekey_attr); | 
|  | 8464 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8465 | genlmsg_end(msg, hdr); | 
| Johannes Berg | e5497d7 | 2011-07-05 16:35:40 +0200 | [diff] [blame] | 8466 |  | 
|  | 8467 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8468 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8469 | return; | 
|  | 8470 |  | 
|  | 8471 | nla_put_failure: | 
|  | 8472 | genlmsg_cancel(msg, hdr); | 
|  | 8473 | nlmsg_free(msg); | 
|  | 8474 | } | 
|  | 8475 |  | 
| Jouni Malinen | c9df56b | 2011-09-16 18:56:23 +0300 | [diff] [blame] | 8476 | void nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev, | 
|  | 8477 | struct net_device *netdev, int index, | 
|  | 8478 | const u8 *bssid, bool preauth, gfp_t gfp) | 
|  | 8479 | { | 
|  | 8480 | struct sk_buff *msg; | 
|  | 8481 | struct nlattr *attr; | 
|  | 8482 | void *hdr; | 
|  | 8483 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 8484 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Jouni Malinen | c9df56b | 2011-09-16 18:56:23 +0300 | [diff] [blame] | 8485 | if (!msg) | 
|  | 8486 | return; | 
|  | 8487 |  | 
|  | 8488 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE); | 
|  | 8489 | if (!hdr) { | 
|  | 8490 | nlmsg_free(msg); | 
|  | 8491 | return; | 
|  | 8492 | } | 
|  | 8493 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8494 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8495 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex)) | 
|  | 8496 | goto nla_put_failure; | 
| Jouni Malinen | c9df56b | 2011-09-16 18:56:23 +0300 | [diff] [blame] | 8497 |  | 
|  | 8498 | attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE); | 
|  | 8499 | if (!attr) | 
|  | 8500 | goto nla_put_failure; | 
|  | 8501 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8502 | if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) || | 
|  | 8503 | nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) || | 
|  | 8504 | (preauth && | 
|  | 8505 | nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH))) | 
|  | 8506 | goto nla_put_failure; | 
| Jouni Malinen | c9df56b | 2011-09-16 18:56:23 +0300 | [diff] [blame] | 8507 |  | 
|  | 8508 | nla_nest_end(msg, attr); | 
|  | 8509 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8510 | genlmsg_end(msg, hdr); | 
| Jouni Malinen | c9df56b | 2011-09-16 18:56:23 +0300 | [diff] [blame] | 8511 |  | 
|  | 8512 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8513 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8514 | return; | 
|  | 8515 |  | 
|  | 8516 | nla_put_failure: | 
|  | 8517 | genlmsg_cancel(msg, hdr); | 
|  | 8518 | nlmsg_free(msg); | 
|  | 8519 | } | 
|  | 8520 |  | 
| Thomas Pedersen | 5314526 | 2012-04-06 13:35:47 -0700 | [diff] [blame] | 8521 | void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev, | 
|  | 8522 | struct net_device *netdev, int freq, | 
|  | 8523 | enum nl80211_channel_type type, gfp_t gfp) | 
|  | 8524 | { | 
|  | 8525 | struct sk_buff *msg; | 
|  | 8526 | void *hdr; | 
|  | 8527 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 8528 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Thomas Pedersen | 5314526 | 2012-04-06 13:35:47 -0700 | [diff] [blame] | 8529 | if (!msg) | 
|  | 8530 | return; | 
|  | 8531 |  | 
|  | 8532 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY); | 
|  | 8533 | if (!hdr) { | 
|  | 8534 | nlmsg_free(msg); | 
|  | 8535 | return; | 
|  | 8536 | } | 
|  | 8537 |  | 
| John W. Linville | 7eab0f6 | 2012-04-12 14:25:14 -0400 | [diff] [blame] | 8538 | if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 8539 | nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) || | 
|  | 8540 | nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE, type)) | 
|  | 8541 | goto nla_put_failure; | 
| Thomas Pedersen | 5314526 | 2012-04-06 13:35:47 -0700 | [diff] [blame] | 8542 |  | 
|  | 8543 | genlmsg_end(msg, hdr); | 
|  | 8544 |  | 
|  | 8545 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8546 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8547 | return; | 
|  | 8548 |  | 
|  | 8549 | nla_put_failure: | 
|  | 8550 | genlmsg_cancel(msg, hdr); | 
|  | 8551 | nlmsg_free(msg); | 
|  | 8552 | } | 
|  | 8553 |  | 
| Johannes Berg | c063dbf | 2010-11-24 08:10:05 +0100 | [diff] [blame] | 8554 | void | 
| Thomas Pedersen | 84f1070 | 2012-07-12 16:17:33 -0700 | [diff] [blame] | 8555 | nl80211_send_cqm_txe_notify(struct cfg80211_registered_device *rdev, | 
|  | 8556 | struct net_device *netdev, const u8 *peer, | 
|  | 8557 | u32 num_packets, u32 rate, u32 intvl, gfp_t gfp) | 
|  | 8558 | { | 
|  | 8559 | struct sk_buff *msg; | 
|  | 8560 | struct nlattr *pinfoattr; | 
|  | 8561 | void *hdr; | 
|  | 8562 |  | 
|  | 8563 | msg = nlmsg_new(NLMSG_GOODSIZE, gfp); | 
|  | 8564 | if (!msg) | 
|  | 8565 | return; | 
|  | 8566 |  | 
|  | 8567 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM); | 
|  | 8568 | if (!hdr) { | 
|  | 8569 | nlmsg_free(msg); | 
|  | 8570 | return; | 
|  | 8571 | } | 
|  | 8572 |  | 
|  | 8573 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8574 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 8575 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer)) | 
|  | 8576 | goto nla_put_failure; | 
|  | 8577 |  | 
|  | 8578 | pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM); | 
|  | 8579 | if (!pinfoattr) | 
|  | 8580 | goto nla_put_failure; | 
|  | 8581 |  | 
|  | 8582 | if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets)) | 
|  | 8583 | goto nla_put_failure; | 
|  | 8584 |  | 
|  | 8585 | if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate)) | 
|  | 8586 | goto nla_put_failure; | 
|  | 8587 |  | 
|  | 8588 | if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl)) | 
|  | 8589 | goto nla_put_failure; | 
|  | 8590 |  | 
|  | 8591 | nla_nest_end(msg, pinfoattr); | 
|  | 8592 |  | 
|  | 8593 | genlmsg_end(msg, hdr); | 
|  | 8594 |  | 
|  | 8595 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8596 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8597 | return; | 
|  | 8598 |  | 
|  | 8599 | nla_put_failure: | 
|  | 8600 | genlmsg_cancel(msg, hdr); | 
|  | 8601 | nlmsg_free(msg); | 
|  | 8602 | } | 
|  | 8603 |  | 
|  | 8604 | void | 
| Johannes Berg | c063dbf | 2010-11-24 08:10:05 +0100 | [diff] [blame] | 8605 | nl80211_send_cqm_pktloss_notify(struct cfg80211_registered_device *rdev, | 
|  | 8606 | struct net_device *netdev, const u8 *peer, | 
|  | 8607 | u32 num_packets, gfp_t gfp) | 
|  | 8608 | { | 
|  | 8609 | struct sk_buff *msg; | 
|  | 8610 | struct nlattr *pinfoattr; | 
|  | 8611 | void *hdr; | 
|  | 8612 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 8613 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Johannes Berg | c063dbf | 2010-11-24 08:10:05 +0100 | [diff] [blame] | 8614 | if (!msg) | 
|  | 8615 | return; | 
|  | 8616 |  | 
|  | 8617 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM); | 
|  | 8618 | if (!hdr) { | 
|  | 8619 | nlmsg_free(msg); | 
|  | 8620 | return; | 
|  | 8621 | } | 
|  | 8622 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8623 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8624 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) || | 
|  | 8625 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer)) | 
|  | 8626 | goto nla_put_failure; | 
| Johannes Berg | c063dbf | 2010-11-24 08:10:05 +0100 | [diff] [blame] | 8627 |  | 
|  | 8628 | pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM); | 
|  | 8629 | if (!pinfoattr) | 
|  | 8630 | goto nla_put_failure; | 
|  | 8631 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8632 | if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets)) | 
|  | 8633 | goto nla_put_failure; | 
| Johannes Berg | c063dbf | 2010-11-24 08:10:05 +0100 | [diff] [blame] | 8634 |  | 
|  | 8635 | nla_nest_end(msg, pinfoattr); | 
|  | 8636 |  | 
| Johannes Berg | 3b7b72e | 2011-10-22 19:05:51 +0200 | [diff] [blame] | 8637 | genlmsg_end(msg, hdr); | 
| Johannes Berg | c063dbf | 2010-11-24 08:10:05 +0100 | [diff] [blame] | 8638 |  | 
|  | 8639 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8640 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8641 | return; | 
|  | 8642 |  | 
|  | 8643 | nla_put_failure: | 
|  | 8644 | genlmsg_cancel(msg, hdr); | 
|  | 8645 | nlmsg_free(msg); | 
|  | 8646 | } | 
|  | 8647 |  | 
| Johannes Berg | 7f6cf31 | 2011-11-04 11:18:15 +0100 | [diff] [blame] | 8648 | void cfg80211_probe_status(struct net_device *dev, const u8 *addr, | 
|  | 8649 | u64 cookie, bool acked, gfp_t gfp) | 
|  | 8650 | { | 
|  | 8651 | struct wireless_dev *wdev = dev->ieee80211_ptr; | 
|  | 8652 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy); | 
|  | 8653 | struct sk_buff *msg; | 
|  | 8654 | void *hdr; | 
|  | 8655 | int err; | 
|  | 8656 |  | 
| Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 8657 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp); | 
| Johannes Berg | 7f6cf31 | 2011-11-04 11:18:15 +0100 | [diff] [blame] | 8658 | if (!msg) | 
|  | 8659 | return; | 
|  | 8660 |  | 
|  | 8661 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT); | 
|  | 8662 | if (!hdr) { | 
|  | 8663 | nlmsg_free(msg); | 
|  | 8664 | return; | 
|  | 8665 | } | 
|  | 8666 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8667 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8668 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) || | 
|  | 8669 | nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) || | 
|  | 8670 | nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) || | 
|  | 8671 | (acked && nla_put_flag(msg, NL80211_ATTR_ACK))) | 
|  | 8672 | goto nla_put_failure; | 
| Johannes Berg | 7f6cf31 | 2011-11-04 11:18:15 +0100 | [diff] [blame] | 8673 |  | 
|  | 8674 | err = genlmsg_end(msg, hdr); | 
|  | 8675 | if (err < 0) { | 
|  | 8676 | nlmsg_free(msg); | 
|  | 8677 | return; | 
|  | 8678 | } | 
|  | 8679 |  | 
|  | 8680 | genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0, | 
|  | 8681 | nl80211_mlme_mcgrp.id, gfp); | 
|  | 8682 | return; | 
|  | 8683 |  | 
|  | 8684 | nla_put_failure: | 
|  | 8685 | genlmsg_cancel(msg, hdr); | 
|  | 8686 | nlmsg_free(msg); | 
|  | 8687 | } | 
|  | 8688 | EXPORT_SYMBOL(cfg80211_probe_status); | 
|  | 8689 |  | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 8690 | void cfg80211_report_obss_beacon(struct wiphy *wiphy, | 
|  | 8691 | const u8 *frame, size_t len, | 
| Johannes Berg | 804483e | 2012-03-05 22:18:41 +0100 | [diff] [blame] | 8692 | int freq, int sig_dbm, gfp_t gfp) | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 8693 | { | 
|  | 8694 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); | 
|  | 8695 | struct sk_buff *msg; | 
|  | 8696 | void *hdr; | 
|  | 8697 | u32 nlpid = ACCESS_ONCE(rdev->ap_beacons_nlpid); | 
|  | 8698 |  | 
|  | 8699 | if (!nlpid) | 
|  | 8700 | return; | 
|  | 8701 |  | 
|  | 8702 | msg = nlmsg_new(len + 100, gfp); | 
|  | 8703 | if (!msg) | 
|  | 8704 | return; | 
|  | 8705 |  | 
|  | 8706 | hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME); | 
|  | 8707 | if (!hdr) { | 
|  | 8708 | nlmsg_free(msg); | 
|  | 8709 | return; | 
|  | 8710 | } | 
|  | 8711 |  | 
| David S. Miller | 9360ffd | 2012-03-29 04:41:26 -0400 | [diff] [blame] | 8712 | if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || | 
|  | 8713 | (freq && | 
|  | 8714 | nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) || | 
|  | 8715 | (sig_dbm && | 
|  | 8716 | nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) || | 
|  | 8717 | nla_put(msg, NL80211_ATTR_FRAME, len, frame)) | 
|  | 8718 | goto nla_put_failure; | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 8719 |  | 
|  | 8720 | genlmsg_end(msg, hdr); | 
|  | 8721 |  | 
|  | 8722 | genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlpid); | 
|  | 8723 | return; | 
|  | 8724 |  | 
|  | 8725 | nla_put_failure: | 
|  | 8726 | genlmsg_cancel(msg, hdr); | 
|  | 8727 | nlmsg_free(msg); | 
|  | 8728 | } | 
|  | 8729 | EXPORT_SYMBOL(cfg80211_report_obss_beacon); | 
|  | 8730 |  | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8731 | static int nl80211_netlink_notify(struct notifier_block * nb, | 
|  | 8732 | unsigned long state, | 
|  | 8733 | void *_notify) | 
|  | 8734 | { | 
|  | 8735 | struct netlink_notify *notify = _notify; | 
|  | 8736 | struct cfg80211_registered_device *rdev; | 
|  | 8737 | struct wireless_dev *wdev; | 
|  | 8738 |  | 
|  | 8739 | if (state != NETLINK_URELEASE) | 
|  | 8740 | return NOTIFY_DONE; | 
|  | 8741 |  | 
|  | 8742 | rcu_read_lock(); | 
|  | 8743 |  | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 8744 | list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) { | 
| Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 8745 | list_for_each_entry_rcu(wdev, &rdev->wdev_list, list) | 
| Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 8746 | cfg80211_mlme_unregister_socket(wdev, notify->pid); | 
| Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 8747 | if (rdev->ap_beacons_nlpid == notify->pid) | 
|  | 8748 | rdev->ap_beacons_nlpid = 0; | 
|  | 8749 | } | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8750 |  | 
|  | 8751 | rcu_read_unlock(); | 
|  | 8752 |  | 
|  | 8753 | return NOTIFY_DONE; | 
|  | 8754 | } | 
|  | 8755 |  | 
|  | 8756 | static struct notifier_block nl80211_netlink_notifier = { | 
|  | 8757 | .notifier_call = nl80211_netlink_notify, | 
|  | 8758 | }; | 
|  | 8759 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 8760 | /* initialisation/exit functions */ | 
|  | 8761 |  | 
|  | 8762 | int nl80211_init(void) | 
|  | 8763 | { | 
| Michał Mirosław | 0d63cbb | 2009-05-21 10:34:06 +0000 | [diff] [blame] | 8764 | int err; | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 8765 |  | 
| Michał Mirosław | 0d63cbb | 2009-05-21 10:34:06 +0000 | [diff] [blame] | 8766 | err = genl_register_family_with_ops(&nl80211_fam, | 
|  | 8767 | nl80211_ops, ARRAY_SIZE(nl80211_ops)); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 8768 | if (err) | 
|  | 8769 | return err; | 
|  | 8770 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 8771 | err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp); | 
|  | 8772 | if (err) | 
|  | 8773 | goto err_out; | 
|  | 8774 |  | 
| Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 8775 | err = genl_register_mc_group(&nl80211_fam, &nl80211_scan_mcgrp); | 
|  | 8776 | if (err) | 
|  | 8777 | goto err_out; | 
|  | 8778 |  | 
| Luis R. Rodriguez | 73d54c9 | 2009-03-09 22:07:42 -0400 | [diff] [blame] | 8779 | err = genl_register_mc_group(&nl80211_fam, &nl80211_regulatory_mcgrp); | 
|  | 8780 | if (err) | 
|  | 8781 | goto err_out; | 
|  | 8782 |  | 
| Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 8783 | err = genl_register_mc_group(&nl80211_fam, &nl80211_mlme_mcgrp); | 
|  | 8784 | if (err) | 
|  | 8785 | goto err_out; | 
|  | 8786 |  | 
| Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 8787 | #ifdef CONFIG_NL80211_TESTMODE | 
|  | 8788 | err = genl_register_mc_group(&nl80211_fam, &nl80211_testmode_mcgrp); | 
|  | 8789 | if (err) | 
|  | 8790 | goto err_out; | 
|  | 8791 | #endif | 
|  | 8792 |  | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8793 | err = netlink_register_notifier(&nl80211_netlink_notifier); | 
|  | 8794 | if (err) | 
|  | 8795 | goto err_out; | 
|  | 8796 |  | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 8797 | return 0; | 
|  | 8798 | err_out: | 
|  | 8799 | genl_unregister_family(&nl80211_fam); | 
|  | 8800 | return err; | 
|  | 8801 | } | 
|  | 8802 |  | 
|  | 8803 | void nl80211_exit(void) | 
|  | 8804 | { | 
| Jouni Malinen | 026331c | 2010-02-15 12:53:10 +0200 | [diff] [blame] | 8805 | netlink_unregister_notifier(&nl80211_netlink_notifier); | 
| Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 8806 | genl_unregister_family(&nl80211_fam); | 
|  | 8807 | } |