Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1 | /* |
| 2 | * This is the new netlink-based wireless configuration interface. |
| 3 | * |
| 4 | * Copyright 2006, 2007 Johannes Berg <johannes@sipsolutions.net> |
| 5 | */ |
| 6 | |
| 7 | #include <linux/if.h> |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/err.h> |
| 10 | #include <linux/mutex.h> |
| 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> |
| 17 | #include <net/genetlink.h> |
| 18 | #include <net/cfg80211.h> |
| 19 | #include "core.h" |
| 20 | #include "nl80211.h" |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 21 | #include "reg.h" |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 22 | |
| 23 | /* the netlink family */ |
| 24 | static struct genl_family nl80211_fam = { |
| 25 | .id = GENL_ID_GENERATE, /* don't bother with a hardcoded ID */ |
| 26 | .name = "nl80211", /* have users key off the name instead */ |
| 27 | .hdrsize = 0, /* no private header */ |
| 28 | .version = 1, /* no particular meaning now */ |
| 29 | .maxattr = NL80211_ATTR_MAX, |
| 30 | }; |
| 31 | |
| 32 | /* internal helper: get drv and dev */ |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 33 | static int get_drv_dev_by_info_ifindex(struct nlattr **attrs, |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 34 | struct cfg80211_registered_device **drv, |
| 35 | struct net_device **dev) |
| 36 | { |
| 37 | int ifindex; |
| 38 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 39 | if (!attrs[NL80211_ATTR_IFINDEX]) |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 40 | return -EINVAL; |
| 41 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 42 | ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 43 | *dev = dev_get_by_index(&init_net, ifindex); |
| 44 | if (!*dev) |
| 45 | return -ENODEV; |
| 46 | |
| 47 | *drv = cfg80211_get_dev_from_ifindex(ifindex); |
| 48 | if (IS_ERR(*drv)) { |
| 49 | dev_put(*dev); |
| 50 | return PTR_ERR(*drv); |
| 51 | } |
| 52 | |
| 53 | return 0; |
| 54 | } |
| 55 | |
| 56 | /* policy for the attributes */ |
| 57 | static struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] __read_mostly = { |
| 58 | [NL80211_ATTR_WIPHY] = { .type = NLA_U32 }, |
| 59 | [NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING, |
| 60 | .len = BUS_ID_SIZE-1 }, |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 61 | [NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED }, |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 62 | [NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 }, |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 63 | [NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 }, |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 64 | |
| 65 | [NL80211_ATTR_IFTYPE] = { .type = NLA_U32 }, |
| 66 | [NL80211_ATTR_IFINDEX] = { .type = NLA_U32 }, |
| 67 | [NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 }, |
Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 68 | |
| 69 | [NL80211_ATTR_MAC] = { .type = NLA_BINARY, .len = ETH_ALEN }, |
| 70 | |
| 71 | [NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY, |
| 72 | .len = WLAN_MAX_KEY_LEN }, |
| 73 | [NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 }, |
| 74 | [NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 }, |
| 75 | [NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG }, |
Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 76 | |
| 77 | [NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 }, |
| 78 | [NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 }, |
| 79 | [NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY, |
| 80 | .len = IEEE80211_MAX_DATA_LEN }, |
| 81 | [NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY, |
| 82 | .len = IEEE80211_MAX_DATA_LEN }, |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 83 | [NL80211_ATTR_STA_AID] = { .type = NLA_U16 }, |
| 84 | [NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED }, |
| 85 | [NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 }, |
| 86 | [NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY, |
| 87 | .len = NL80211_MAX_SUPP_RATES }, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 88 | [NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 }, |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 89 | [NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 }, |
Johannes Berg | 0a9542e | 2008-10-15 11:54:04 +0200 | [diff] [blame] | 90 | [NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ }, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 91 | [NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY, |
| 92 | .len = IEEE80211_MAX_MESH_ID_LEN }, |
| 93 | [NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 }, |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 94 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 95 | [NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 }, |
| 96 | [NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED }, |
| 97 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 98 | [NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 }, |
| 99 | [NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 }, |
| 100 | [NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 }, |
Jouni Malinen | 90c97a0 | 2008-10-30 16:59:22 +0200 | [diff] [blame] | 101 | [NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY, |
| 102 | .len = NL80211_MAX_SUPP_RATES }, |
Jouni Malinen | 36aedc90 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 103 | |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 104 | [NL80211_ATTR_MESH_PARAMS] = { .type = NLA_NESTED }, |
| 105 | |
Jouni Malinen | 36aedc90 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 106 | [NL80211_ATTR_HT_CAPABILITY] = { .type = NLA_BINARY, |
| 107 | .len = NL80211_HT_CAPABILITY_LEN }, |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | /* message building helper */ |
| 111 | static inline void *nl80211hdr_put(struct sk_buff *skb, u32 pid, u32 seq, |
| 112 | int flags, u8 cmd) |
| 113 | { |
| 114 | /* since there is no private header just add the generic one */ |
| 115 | return genlmsg_put(skb, pid, seq, &nl80211_fam, flags, cmd); |
| 116 | } |
| 117 | |
| 118 | /* netlink command implementations */ |
| 119 | |
| 120 | static int nl80211_send_wiphy(struct sk_buff *msg, u32 pid, u32 seq, int flags, |
| 121 | struct cfg80211_registered_device *dev) |
| 122 | { |
| 123 | void *hdr; |
Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 124 | struct nlattr *nl_bands, *nl_band; |
| 125 | struct nlattr *nl_freqs, *nl_freq; |
| 126 | struct nlattr *nl_rates, *nl_rate; |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 127 | struct nlattr *nl_modes; |
Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 128 | enum ieee80211_band band; |
| 129 | struct ieee80211_channel *chan; |
| 130 | struct ieee80211_rate *rate; |
| 131 | int i; |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 132 | u16 ifmodes = dev->wiphy.interface_modes; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 133 | |
| 134 | hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_WIPHY); |
| 135 | if (!hdr) |
| 136 | return -1; |
| 137 | |
| 138 | NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, dev->idx); |
| 139 | NLA_PUT_STRING(msg, NL80211_ATTR_WIPHY_NAME, wiphy_name(&dev->wiphy)); |
Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 140 | |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 141 | nl_modes = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_IFTYPES); |
| 142 | if (!nl_modes) |
| 143 | goto nla_put_failure; |
| 144 | |
| 145 | i = 0; |
| 146 | while (ifmodes) { |
| 147 | if (ifmodes & 1) |
| 148 | NLA_PUT_FLAG(msg, i); |
| 149 | ifmodes >>= 1; |
| 150 | i++; |
| 151 | } |
| 152 | |
| 153 | nla_nest_end(msg, nl_modes); |
| 154 | |
Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 155 | nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS); |
| 156 | if (!nl_bands) |
| 157 | goto nla_put_failure; |
| 158 | |
| 159 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
| 160 | if (!dev->wiphy.bands[band]) |
| 161 | continue; |
| 162 | |
| 163 | nl_band = nla_nest_start(msg, band); |
| 164 | if (!nl_band) |
| 165 | goto nla_put_failure; |
| 166 | |
Johannes Berg | d51626d | 2008-10-09 12:20:13 +0200 | [diff] [blame] | 167 | /* add HT info */ |
| 168 | if (dev->wiphy.bands[band]->ht_cap.ht_supported) { |
| 169 | NLA_PUT(msg, NL80211_BAND_ATTR_HT_MCS_SET, |
| 170 | sizeof(dev->wiphy.bands[band]->ht_cap.mcs), |
| 171 | &dev->wiphy.bands[band]->ht_cap.mcs); |
| 172 | NLA_PUT_U16(msg, NL80211_BAND_ATTR_HT_CAPA, |
| 173 | dev->wiphy.bands[band]->ht_cap.cap); |
| 174 | NLA_PUT_U8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR, |
| 175 | dev->wiphy.bands[band]->ht_cap.ampdu_factor); |
| 176 | NLA_PUT_U8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY, |
| 177 | dev->wiphy.bands[band]->ht_cap.ampdu_density); |
| 178 | } |
| 179 | |
Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 180 | /* add frequencies */ |
| 181 | nl_freqs = nla_nest_start(msg, NL80211_BAND_ATTR_FREQS); |
| 182 | if (!nl_freqs) |
| 183 | goto nla_put_failure; |
| 184 | |
| 185 | for (i = 0; i < dev->wiphy.bands[band]->n_channels; i++) { |
| 186 | nl_freq = nla_nest_start(msg, i); |
| 187 | if (!nl_freq) |
| 188 | goto nla_put_failure; |
| 189 | |
| 190 | chan = &dev->wiphy.bands[band]->channels[i]; |
| 191 | NLA_PUT_U32(msg, NL80211_FREQUENCY_ATTR_FREQ, |
| 192 | chan->center_freq); |
| 193 | |
| 194 | if (chan->flags & IEEE80211_CHAN_DISABLED) |
| 195 | NLA_PUT_FLAG(msg, NL80211_FREQUENCY_ATTR_DISABLED); |
| 196 | if (chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 197 | NLA_PUT_FLAG(msg, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN); |
| 198 | if (chan->flags & IEEE80211_CHAN_NO_IBSS) |
| 199 | NLA_PUT_FLAG(msg, NL80211_FREQUENCY_ATTR_NO_IBSS); |
| 200 | if (chan->flags & IEEE80211_CHAN_RADAR) |
| 201 | NLA_PUT_FLAG(msg, NL80211_FREQUENCY_ATTR_RADAR); |
| 202 | |
Jouni Malinen | bf8c1ac | 2008-11-22 22:00:31 +0200 | [diff] [blame] | 203 | NLA_PUT_U32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER, |
| 204 | DBM_TO_MBM(chan->max_power)); |
Jouni Malinen | e2f367f26 | 2008-11-21 19:01:30 +0200 | [diff] [blame] | 205 | |
Johannes Berg | ee688b00 | 2008-01-24 19:38:39 +0100 | [diff] [blame] | 206 | nla_nest_end(msg, nl_freq); |
| 207 | } |
| 208 | |
| 209 | nla_nest_end(msg, nl_freqs); |
| 210 | |
| 211 | /* add bitrates */ |
| 212 | nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES); |
| 213 | if (!nl_rates) |
| 214 | goto nla_put_failure; |
| 215 | |
| 216 | for (i = 0; i < dev->wiphy.bands[band]->n_bitrates; i++) { |
| 217 | nl_rate = nla_nest_start(msg, i); |
| 218 | if (!nl_rate) |
| 219 | goto nla_put_failure; |
| 220 | |
| 221 | rate = &dev->wiphy.bands[band]->bitrates[i]; |
| 222 | NLA_PUT_U32(msg, NL80211_BITRATE_ATTR_RATE, |
| 223 | rate->bitrate); |
| 224 | if (rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) |
| 225 | NLA_PUT_FLAG(msg, |
| 226 | NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE); |
| 227 | |
| 228 | nla_nest_end(msg, nl_rate); |
| 229 | } |
| 230 | |
| 231 | nla_nest_end(msg, nl_rates); |
| 232 | |
| 233 | nla_nest_end(msg, nl_band); |
| 234 | } |
| 235 | nla_nest_end(msg, nl_bands); |
| 236 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 237 | return genlmsg_end(msg, hdr); |
| 238 | |
| 239 | nla_put_failure: |
Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 240 | genlmsg_cancel(msg, hdr); |
| 241 | return -EMSGSIZE; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb) |
| 245 | { |
| 246 | int idx = 0; |
| 247 | int start = cb->args[0]; |
| 248 | struct cfg80211_registered_device *dev; |
| 249 | |
| 250 | mutex_lock(&cfg80211_drv_mutex); |
| 251 | list_for_each_entry(dev, &cfg80211_drv_list, list) { |
Julius Volz | b463727 | 2008-07-08 14:02:19 +0200 | [diff] [blame] | 252 | if (++idx <= start) |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 253 | continue; |
| 254 | if (nl80211_send_wiphy(skb, NETLINK_CB(cb->skb).pid, |
| 255 | cb->nlh->nlmsg_seq, NLM_F_MULTI, |
Julius Volz | b463727 | 2008-07-08 14:02:19 +0200 | [diff] [blame] | 256 | dev) < 0) { |
| 257 | idx--; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 258 | break; |
Julius Volz | b463727 | 2008-07-08 14:02:19 +0200 | [diff] [blame] | 259 | } |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 260 | } |
| 261 | mutex_unlock(&cfg80211_drv_mutex); |
| 262 | |
| 263 | cb->args[0] = idx; |
| 264 | |
| 265 | return skb->len; |
| 266 | } |
| 267 | |
| 268 | static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info) |
| 269 | { |
| 270 | struct sk_buff *msg; |
| 271 | struct cfg80211_registered_device *dev; |
| 272 | |
| 273 | dev = cfg80211_get_dev_from_info(info); |
| 274 | if (IS_ERR(dev)) |
| 275 | return PTR_ERR(dev); |
| 276 | |
| 277 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); |
| 278 | if (!msg) |
| 279 | goto out_err; |
| 280 | |
| 281 | if (nl80211_send_wiphy(msg, info->snd_pid, info->snd_seq, 0, dev) < 0) |
| 282 | goto out_free; |
| 283 | |
| 284 | cfg80211_put_dev(dev); |
| 285 | |
| 286 | return genlmsg_unicast(msg, info->snd_pid); |
| 287 | |
| 288 | out_free: |
| 289 | nlmsg_free(msg); |
| 290 | out_err: |
| 291 | cfg80211_put_dev(dev); |
| 292 | return -ENOBUFS; |
| 293 | } |
| 294 | |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 295 | static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = { |
| 296 | [NL80211_TXQ_ATTR_QUEUE] = { .type = NLA_U8 }, |
| 297 | [NL80211_TXQ_ATTR_TXOP] = { .type = NLA_U16 }, |
| 298 | [NL80211_TXQ_ATTR_CWMIN] = { .type = NLA_U16 }, |
| 299 | [NL80211_TXQ_ATTR_CWMAX] = { .type = NLA_U16 }, |
| 300 | [NL80211_TXQ_ATTR_AIFS] = { .type = NLA_U8 }, |
| 301 | }; |
| 302 | |
| 303 | static int parse_txq_params(struct nlattr *tb[], |
| 304 | struct ieee80211_txq_params *txq_params) |
| 305 | { |
| 306 | if (!tb[NL80211_TXQ_ATTR_QUEUE] || !tb[NL80211_TXQ_ATTR_TXOP] || |
| 307 | !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] || |
| 308 | !tb[NL80211_TXQ_ATTR_AIFS]) |
| 309 | return -EINVAL; |
| 310 | |
| 311 | txq_params->queue = nla_get_u8(tb[NL80211_TXQ_ATTR_QUEUE]); |
| 312 | txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]); |
| 313 | txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]); |
| 314 | txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]); |
| 315 | txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]); |
| 316 | |
| 317 | return 0; |
| 318 | } |
| 319 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 320 | static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info) |
| 321 | { |
| 322 | struct cfg80211_registered_device *rdev; |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 323 | int result = 0, rem_txq_params = 0; |
| 324 | struct nlattr *nl_txq_params; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 325 | |
| 326 | rdev = cfg80211_get_dev_from_info(info); |
| 327 | if (IS_ERR(rdev)) |
| 328 | return PTR_ERR(rdev); |
| 329 | |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 330 | if (info->attrs[NL80211_ATTR_WIPHY_NAME]) { |
| 331 | result = cfg80211_dev_rename( |
| 332 | rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME])); |
| 333 | if (result) |
| 334 | goto bad_res; |
| 335 | } |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 336 | |
Jouni Malinen | 3188848 | 2008-10-30 16:59:24 +0200 | [diff] [blame] | 337 | if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) { |
| 338 | struct ieee80211_txq_params txq_params; |
| 339 | struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1]; |
| 340 | |
| 341 | if (!rdev->ops->set_txq_params) { |
| 342 | result = -EOPNOTSUPP; |
| 343 | goto bad_res; |
| 344 | } |
| 345 | |
| 346 | nla_for_each_nested(nl_txq_params, |
| 347 | info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS], |
| 348 | rem_txq_params) { |
| 349 | nla_parse(tb, NL80211_TXQ_ATTR_MAX, |
| 350 | nla_data(nl_txq_params), |
| 351 | nla_len(nl_txq_params), |
| 352 | txq_params_policy); |
| 353 | result = parse_txq_params(tb, &txq_params); |
| 354 | if (result) |
| 355 | goto bad_res; |
| 356 | |
| 357 | result = rdev->ops->set_txq_params(&rdev->wiphy, |
| 358 | &txq_params); |
| 359 | if (result) |
| 360 | goto bad_res; |
| 361 | } |
| 362 | } |
| 363 | |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 364 | if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) { |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 365 | enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT; |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 366 | struct ieee80211_channel *chan; |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 367 | struct ieee80211_sta_ht_cap *ht_cap; |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 368 | u32 freq, sec_freq; |
| 369 | |
| 370 | if (!rdev->ops->set_channel) { |
| 371 | result = -EOPNOTSUPP; |
| 372 | goto bad_res; |
| 373 | } |
| 374 | |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 375 | result = -EINVAL; |
| 376 | |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 377 | if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) { |
| 378 | channel_type = nla_get_u32(info->attrs[ |
| 379 | NL80211_ATTR_WIPHY_CHANNEL_TYPE]); |
| 380 | if (channel_type != NL80211_CHAN_NO_HT && |
| 381 | channel_type != NL80211_CHAN_HT20 && |
| 382 | channel_type != NL80211_CHAN_HT40PLUS && |
| 383 | channel_type != NL80211_CHAN_HT40MINUS) |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 384 | goto bad_res; |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]); |
| 388 | chan = ieee80211_get_channel(&rdev->wiphy, freq); |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 389 | |
| 390 | /* Primary channel not allowed */ |
| 391 | if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 392 | goto bad_res; |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 393 | |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 394 | if (channel_type == NL80211_CHAN_HT40MINUS) |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 395 | sec_freq = freq - 20; |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 396 | else if (channel_type == NL80211_CHAN_HT40PLUS) |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 397 | sec_freq = freq + 20; |
| 398 | else |
| 399 | sec_freq = 0; |
| 400 | |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 401 | ht_cap = &rdev->wiphy.bands[chan->band]->ht_cap; |
| 402 | |
| 403 | /* no HT capabilities */ |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 404 | if (channel_type != NL80211_CHAN_NO_HT && |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 405 | !ht_cap->ht_supported) |
| 406 | goto bad_res; |
| 407 | |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 408 | if (sec_freq) { |
| 409 | struct ieee80211_channel *schan; |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 410 | |
| 411 | /* no 40 MHz capabilities */ |
| 412 | if (!(ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) || |
| 413 | (ht_cap->cap & IEEE80211_HT_CAP_40MHZ_INTOLERANT)) |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 414 | goto bad_res; |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 415 | |
| 416 | schan = ieee80211_get_channel(&rdev->wiphy, sec_freq); |
| 417 | |
| 418 | /* Secondary channel not allowed */ |
| 419 | if (!schan || schan->flags & IEEE80211_CHAN_DISABLED) |
| 420 | goto bad_res; |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | result = rdev->ops->set_channel(&rdev->wiphy, chan, |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 424 | channel_type); |
Jouni Malinen | 72bdcf3 | 2008-11-26 16:15:24 +0200 | [diff] [blame] | 425 | if (result) |
| 426 | goto bad_res; |
| 427 | } |
| 428 | |
| 429 | |
Johannes Berg | 306d611 | 2008-12-08 12:39:04 +0100 | [diff] [blame] | 430 | bad_res: |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 431 | cfg80211_put_dev(rdev); |
| 432 | return result; |
| 433 | } |
| 434 | |
| 435 | |
| 436 | static int nl80211_send_iface(struct sk_buff *msg, u32 pid, u32 seq, int flags, |
| 437 | struct net_device *dev) |
| 438 | { |
| 439 | void *hdr; |
| 440 | |
| 441 | hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_INTERFACE); |
| 442 | if (!hdr) |
| 443 | return -1; |
| 444 | |
| 445 | NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex); |
| 446 | NLA_PUT_STRING(msg, NL80211_ATTR_IFNAME, dev->name); |
Johannes Berg | 60719ff | 2008-09-16 14:55:09 +0200 | [diff] [blame] | 447 | NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, dev->ieee80211_ptr->iftype); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 448 | return genlmsg_end(msg, hdr); |
| 449 | |
| 450 | nla_put_failure: |
Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 451 | genlmsg_cancel(msg, hdr); |
| 452 | return -EMSGSIZE; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb) |
| 456 | { |
| 457 | int wp_idx = 0; |
| 458 | int if_idx = 0; |
| 459 | int wp_start = cb->args[0]; |
| 460 | int if_start = cb->args[1]; |
| 461 | struct cfg80211_registered_device *dev; |
| 462 | struct wireless_dev *wdev; |
| 463 | |
| 464 | mutex_lock(&cfg80211_drv_mutex); |
| 465 | list_for_each_entry(dev, &cfg80211_drv_list, list) { |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 466 | if (wp_idx < wp_start) { |
| 467 | wp_idx++; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 468 | continue; |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 469 | } |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 470 | if_idx = 0; |
| 471 | |
| 472 | mutex_lock(&dev->devlist_mtx); |
| 473 | list_for_each_entry(wdev, &dev->netdev_list, list) { |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 474 | if (if_idx < if_start) { |
| 475 | if_idx++; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 476 | continue; |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 477 | } |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 478 | if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).pid, |
| 479 | cb->nlh->nlmsg_seq, NLM_F_MULTI, |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 480 | wdev->netdev) < 0) { |
| 481 | mutex_unlock(&dev->devlist_mtx); |
| 482 | goto out; |
| 483 | } |
| 484 | if_idx++; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 485 | } |
| 486 | mutex_unlock(&dev->devlist_mtx); |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 487 | |
| 488 | wp_idx++; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 489 | } |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 490 | out: |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 491 | mutex_unlock(&cfg80211_drv_mutex); |
| 492 | |
| 493 | cb->args[0] = wp_idx; |
| 494 | cb->args[1] = if_idx; |
| 495 | |
| 496 | return skb->len; |
| 497 | } |
| 498 | |
| 499 | static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info) |
| 500 | { |
| 501 | struct sk_buff *msg; |
| 502 | struct cfg80211_registered_device *dev; |
| 503 | struct net_device *netdev; |
| 504 | int err; |
| 505 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 506 | err = get_drv_dev_by_info_ifindex(info->attrs, &dev, &netdev); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 507 | if (err) |
| 508 | return err; |
| 509 | |
| 510 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); |
| 511 | if (!msg) |
| 512 | goto out_err; |
| 513 | |
| 514 | if (nl80211_send_iface(msg, info->snd_pid, info->snd_seq, 0, netdev) < 0) |
| 515 | goto out_free; |
| 516 | |
| 517 | dev_put(netdev); |
| 518 | cfg80211_put_dev(dev); |
| 519 | |
| 520 | return genlmsg_unicast(msg, info->snd_pid); |
| 521 | |
| 522 | out_free: |
| 523 | nlmsg_free(msg); |
| 524 | out_err: |
| 525 | dev_put(netdev); |
| 526 | cfg80211_put_dev(dev); |
| 527 | return -ENOBUFS; |
| 528 | } |
| 529 | |
Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 530 | static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = { |
| 531 | [NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG }, |
| 532 | [NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG }, |
| 533 | [NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG }, |
| 534 | [NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG }, |
| 535 | [NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG }, |
| 536 | }; |
| 537 | |
| 538 | static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags) |
| 539 | { |
| 540 | struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1]; |
| 541 | int flag; |
| 542 | |
| 543 | *mntrflags = 0; |
| 544 | |
| 545 | if (!nla) |
| 546 | return -EINVAL; |
| 547 | |
| 548 | if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX, |
| 549 | nla, mntr_flags_policy)) |
| 550 | return -EINVAL; |
| 551 | |
| 552 | for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++) |
| 553 | if (flags[flag]) |
| 554 | *mntrflags |= (1<<flag); |
| 555 | |
| 556 | return 0; |
| 557 | } |
| 558 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 559 | static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info) |
| 560 | { |
| 561 | struct cfg80211_registered_device *drv; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 562 | struct vif_params params; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 563 | int err, ifindex; |
| 564 | enum nl80211_iftype type; |
| 565 | struct net_device *dev; |
Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 566 | u32 _flags, *flags = NULL; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 567 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 568 | memset(¶ms, 0, sizeof(params)); |
| 569 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 570 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 571 | if (err) |
| 572 | return err; |
| 573 | ifindex = dev->ifindex; |
Johannes Berg | 723b038 | 2008-09-16 20:22:09 +0200 | [diff] [blame] | 574 | type = dev->ieee80211_ptr->iftype; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 575 | dev_put(dev); |
| 576 | |
Johannes Berg | 723b038 | 2008-09-16 20:22:09 +0200 | [diff] [blame] | 577 | err = -EINVAL; |
| 578 | if (info->attrs[NL80211_ATTR_IFTYPE]) { |
| 579 | type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]); |
| 580 | if (type > NL80211_IFTYPE_MAX) |
| 581 | goto unlock; |
| 582 | } |
| 583 | |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 584 | if (!drv->ops->change_virtual_intf || |
| 585 | !(drv->wiphy.interface_modes & (1 << type))) { |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 586 | err = -EOPNOTSUPP; |
| 587 | goto unlock; |
| 588 | } |
| 589 | |
Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 590 | if (info->attrs[NL80211_ATTR_MESH_ID]) { |
| 591 | if (type != NL80211_IFTYPE_MESH_POINT) { |
| 592 | err = -EINVAL; |
| 593 | goto unlock; |
| 594 | } |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 595 | params.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]); |
| 596 | params.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]); |
| 597 | } |
| 598 | |
Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 599 | if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) { |
| 600 | if (type != NL80211_IFTYPE_MONITOR) { |
| 601 | err = -EINVAL; |
| 602 | goto unlock; |
| 603 | } |
| 604 | err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS], |
| 605 | &_flags); |
| 606 | if (!err) |
| 607 | flags = &_flags; |
| 608 | } |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 609 | rtnl_lock(); |
Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 610 | err = drv->ops->change_virtual_intf(&drv->wiphy, ifindex, |
Johannes Berg | 92ffe05 | 2008-09-16 20:39:36 +0200 | [diff] [blame] | 611 | type, flags, ¶ms); |
Johannes Berg | 60719ff | 2008-09-16 14:55:09 +0200 | [diff] [blame] | 612 | |
| 613 | dev = __dev_get_by_index(&init_net, ifindex); |
| 614 | WARN_ON(!dev || (!err && dev->ieee80211_ptr->iftype != type)); |
| 615 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 616 | rtnl_unlock(); |
| 617 | |
| 618 | unlock: |
| 619 | cfg80211_put_dev(drv); |
| 620 | return err; |
| 621 | } |
| 622 | |
| 623 | static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info) |
| 624 | { |
| 625 | struct cfg80211_registered_device *drv; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 626 | struct vif_params params; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 627 | int err; |
| 628 | enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED; |
Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 629 | u32 flags; |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 630 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 631 | memset(¶ms, 0, sizeof(params)); |
| 632 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 633 | if (!info->attrs[NL80211_ATTR_IFNAME]) |
| 634 | return -EINVAL; |
| 635 | |
| 636 | if (info->attrs[NL80211_ATTR_IFTYPE]) { |
| 637 | type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]); |
| 638 | if (type > NL80211_IFTYPE_MAX) |
| 639 | return -EINVAL; |
| 640 | } |
| 641 | |
| 642 | drv = cfg80211_get_dev_from_info(info); |
| 643 | if (IS_ERR(drv)) |
| 644 | return PTR_ERR(drv); |
| 645 | |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 646 | if (!drv->ops->add_virtual_intf || |
| 647 | !(drv->wiphy.interface_modes & (1 << type))) { |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 648 | err = -EOPNOTSUPP; |
| 649 | goto unlock; |
| 650 | } |
| 651 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 652 | if (type == NL80211_IFTYPE_MESH_POINT && |
| 653 | info->attrs[NL80211_ATTR_MESH_ID]) { |
| 654 | params.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]); |
| 655 | params.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]); |
| 656 | } |
| 657 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 658 | rtnl_lock(); |
Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 659 | err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ? |
| 660 | info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL, |
| 661 | &flags); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 662 | err = drv->ops->add_virtual_intf(&drv->wiphy, |
Michael Wu | 66f7ac5 | 2008-01-31 19:48:22 +0100 | [diff] [blame] | 663 | nla_data(info->attrs[NL80211_ATTR_IFNAME]), |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 664 | type, err ? NULL : &flags, ¶ms); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 665 | rtnl_unlock(); |
| 666 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 667 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 668 | unlock: |
| 669 | cfg80211_put_dev(drv); |
| 670 | return err; |
| 671 | } |
| 672 | |
| 673 | static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info) |
| 674 | { |
| 675 | struct cfg80211_registered_device *drv; |
| 676 | int ifindex, err; |
| 677 | struct net_device *dev; |
| 678 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 679 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 680 | if (err) |
| 681 | return err; |
| 682 | ifindex = dev->ifindex; |
| 683 | dev_put(dev); |
| 684 | |
| 685 | if (!drv->ops->del_virtual_intf) { |
| 686 | err = -EOPNOTSUPP; |
| 687 | goto out; |
| 688 | } |
| 689 | |
| 690 | rtnl_lock(); |
| 691 | err = drv->ops->del_virtual_intf(&drv->wiphy, ifindex); |
| 692 | rtnl_unlock(); |
| 693 | |
| 694 | out: |
| 695 | cfg80211_put_dev(drv); |
| 696 | return err; |
| 697 | } |
| 698 | |
Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 699 | struct get_key_cookie { |
| 700 | struct sk_buff *msg; |
| 701 | int error; |
| 702 | }; |
| 703 | |
| 704 | static void get_key_callback(void *c, struct key_params *params) |
| 705 | { |
| 706 | struct get_key_cookie *cookie = c; |
| 707 | |
| 708 | if (params->key) |
| 709 | NLA_PUT(cookie->msg, NL80211_ATTR_KEY_DATA, |
| 710 | params->key_len, params->key); |
| 711 | |
| 712 | if (params->seq) |
| 713 | NLA_PUT(cookie->msg, NL80211_ATTR_KEY_SEQ, |
| 714 | params->seq_len, params->seq); |
| 715 | |
| 716 | if (params->cipher) |
| 717 | NLA_PUT_U32(cookie->msg, NL80211_ATTR_KEY_CIPHER, |
| 718 | params->cipher); |
| 719 | |
| 720 | return; |
| 721 | nla_put_failure: |
| 722 | cookie->error = 1; |
| 723 | } |
| 724 | |
| 725 | static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info) |
| 726 | { |
| 727 | struct cfg80211_registered_device *drv; |
| 728 | int err; |
| 729 | struct net_device *dev; |
| 730 | u8 key_idx = 0; |
| 731 | u8 *mac_addr = NULL; |
| 732 | struct get_key_cookie cookie = { |
| 733 | .error = 0, |
| 734 | }; |
| 735 | void *hdr; |
| 736 | struct sk_buff *msg; |
| 737 | |
| 738 | if (info->attrs[NL80211_ATTR_KEY_IDX]) |
| 739 | key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]); |
| 740 | |
| 741 | if (key_idx > 3) |
| 742 | return -EINVAL; |
| 743 | |
| 744 | if (info->attrs[NL80211_ATTR_MAC]) |
| 745 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 746 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 747 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 748 | if (err) |
| 749 | return err; |
| 750 | |
| 751 | if (!drv->ops->get_key) { |
| 752 | err = -EOPNOTSUPP; |
| 753 | goto out; |
| 754 | } |
| 755 | |
| 756 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); |
| 757 | if (!msg) { |
| 758 | err = -ENOMEM; |
| 759 | goto out; |
| 760 | } |
| 761 | |
| 762 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, |
| 763 | NL80211_CMD_NEW_KEY); |
| 764 | |
| 765 | if (IS_ERR(hdr)) { |
| 766 | err = PTR_ERR(hdr); |
| 767 | goto out; |
| 768 | } |
| 769 | |
| 770 | cookie.msg = msg; |
| 771 | |
| 772 | NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex); |
| 773 | NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx); |
| 774 | if (mac_addr) |
| 775 | NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr); |
| 776 | |
| 777 | rtnl_lock(); |
| 778 | err = drv->ops->get_key(&drv->wiphy, dev, key_idx, mac_addr, |
| 779 | &cookie, get_key_callback); |
| 780 | rtnl_unlock(); |
| 781 | |
| 782 | if (err) |
| 783 | goto out; |
| 784 | |
| 785 | if (cookie.error) |
| 786 | goto nla_put_failure; |
| 787 | |
| 788 | genlmsg_end(msg, hdr); |
| 789 | err = genlmsg_unicast(msg, info->snd_pid); |
| 790 | goto out; |
| 791 | |
| 792 | nla_put_failure: |
| 793 | err = -ENOBUFS; |
| 794 | nlmsg_free(msg); |
| 795 | out: |
| 796 | cfg80211_put_dev(drv); |
| 797 | dev_put(dev); |
| 798 | return err; |
| 799 | } |
| 800 | |
| 801 | static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info) |
| 802 | { |
| 803 | struct cfg80211_registered_device *drv; |
| 804 | int err; |
| 805 | struct net_device *dev; |
| 806 | u8 key_idx; |
| 807 | |
| 808 | if (!info->attrs[NL80211_ATTR_KEY_IDX]) |
| 809 | return -EINVAL; |
| 810 | |
| 811 | key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]); |
| 812 | |
| 813 | if (key_idx > 3) |
| 814 | return -EINVAL; |
| 815 | |
| 816 | /* currently only support setting default key */ |
| 817 | if (!info->attrs[NL80211_ATTR_KEY_DEFAULT]) |
| 818 | return -EINVAL; |
| 819 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 820 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 821 | if (err) |
| 822 | return err; |
| 823 | |
| 824 | if (!drv->ops->set_default_key) { |
| 825 | err = -EOPNOTSUPP; |
| 826 | goto out; |
| 827 | } |
| 828 | |
| 829 | rtnl_lock(); |
| 830 | err = drv->ops->set_default_key(&drv->wiphy, dev, key_idx); |
| 831 | rtnl_unlock(); |
| 832 | |
| 833 | out: |
| 834 | cfg80211_put_dev(drv); |
| 835 | dev_put(dev); |
| 836 | return err; |
| 837 | } |
| 838 | |
| 839 | static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info) |
| 840 | { |
| 841 | struct cfg80211_registered_device *drv; |
| 842 | int err; |
| 843 | struct net_device *dev; |
| 844 | struct key_params params; |
| 845 | u8 key_idx = 0; |
| 846 | u8 *mac_addr = NULL; |
| 847 | |
| 848 | memset(¶ms, 0, sizeof(params)); |
| 849 | |
| 850 | if (!info->attrs[NL80211_ATTR_KEY_CIPHER]) |
| 851 | return -EINVAL; |
| 852 | |
| 853 | if (info->attrs[NL80211_ATTR_KEY_DATA]) { |
| 854 | params.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]); |
| 855 | params.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]); |
| 856 | } |
| 857 | |
| 858 | if (info->attrs[NL80211_ATTR_KEY_IDX]) |
| 859 | key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]); |
| 860 | |
| 861 | params.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]); |
| 862 | |
| 863 | if (info->attrs[NL80211_ATTR_MAC]) |
| 864 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 865 | |
| 866 | if (key_idx > 3) |
| 867 | return -EINVAL; |
| 868 | |
| 869 | /* |
| 870 | * Disallow pairwise keys with non-zero index unless it's WEP |
| 871 | * (because current deployments use pairwise WEP keys with |
| 872 | * non-zero indizes but 802.11i clearly specifies to use zero) |
| 873 | */ |
| 874 | if (mac_addr && key_idx && |
| 875 | params.cipher != WLAN_CIPHER_SUITE_WEP40 && |
| 876 | params.cipher != WLAN_CIPHER_SUITE_WEP104) |
| 877 | return -EINVAL; |
| 878 | |
| 879 | /* TODO: add definitions for the lengths to linux/ieee80211.h */ |
| 880 | switch (params.cipher) { |
| 881 | case WLAN_CIPHER_SUITE_WEP40: |
| 882 | if (params.key_len != 5) |
| 883 | return -EINVAL; |
| 884 | break; |
| 885 | case WLAN_CIPHER_SUITE_TKIP: |
| 886 | if (params.key_len != 32) |
| 887 | return -EINVAL; |
| 888 | break; |
| 889 | case WLAN_CIPHER_SUITE_CCMP: |
| 890 | if (params.key_len != 16) |
| 891 | return -EINVAL; |
| 892 | break; |
| 893 | case WLAN_CIPHER_SUITE_WEP104: |
| 894 | if (params.key_len != 13) |
| 895 | return -EINVAL; |
| 896 | break; |
| 897 | default: |
| 898 | return -EINVAL; |
| 899 | } |
| 900 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 901 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 902 | if (err) |
| 903 | return err; |
| 904 | |
| 905 | if (!drv->ops->add_key) { |
| 906 | err = -EOPNOTSUPP; |
| 907 | goto out; |
| 908 | } |
| 909 | |
| 910 | rtnl_lock(); |
| 911 | err = drv->ops->add_key(&drv->wiphy, dev, key_idx, mac_addr, ¶ms); |
| 912 | rtnl_unlock(); |
| 913 | |
| 914 | out: |
| 915 | cfg80211_put_dev(drv); |
| 916 | dev_put(dev); |
| 917 | return err; |
| 918 | } |
| 919 | |
| 920 | static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info) |
| 921 | { |
| 922 | struct cfg80211_registered_device *drv; |
| 923 | int err; |
| 924 | struct net_device *dev; |
| 925 | u8 key_idx = 0; |
| 926 | u8 *mac_addr = NULL; |
| 927 | |
| 928 | if (info->attrs[NL80211_ATTR_KEY_IDX]) |
| 929 | key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]); |
| 930 | |
| 931 | if (key_idx > 3) |
| 932 | return -EINVAL; |
| 933 | |
| 934 | if (info->attrs[NL80211_ATTR_MAC]) |
| 935 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 936 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 937 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 938 | if (err) |
| 939 | return err; |
| 940 | |
| 941 | if (!drv->ops->del_key) { |
| 942 | err = -EOPNOTSUPP; |
| 943 | goto out; |
| 944 | } |
| 945 | |
| 946 | rtnl_lock(); |
| 947 | err = drv->ops->del_key(&drv->wiphy, dev, key_idx, mac_addr); |
| 948 | rtnl_unlock(); |
| 949 | |
| 950 | out: |
| 951 | cfg80211_put_dev(drv); |
| 952 | dev_put(dev); |
| 953 | return err; |
| 954 | } |
| 955 | |
Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 956 | static int nl80211_addset_beacon(struct sk_buff *skb, struct genl_info *info) |
| 957 | { |
| 958 | int (*call)(struct wiphy *wiphy, struct net_device *dev, |
| 959 | struct beacon_parameters *info); |
| 960 | struct cfg80211_registered_device *drv; |
| 961 | int err; |
| 962 | struct net_device *dev; |
| 963 | struct beacon_parameters params; |
| 964 | int haveinfo = 0; |
| 965 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 966 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 967 | if (err) |
| 968 | return err; |
| 969 | |
| 970 | switch (info->genlhdr->cmd) { |
| 971 | case NL80211_CMD_NEW_BEACON: |
| 972 | /* these are required for NEW_BEACON */ |
| 973 | if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] || |
| 974 | !info->attrs[NL80211_ATTR_DTIM_PERIOD] || |
| 975 | !info->attrs[NL80211_ATTR_BEACON_HEAD]) { |
| 976 | err = -EINVAL; |
| 977 | goto out; |
| 978 | } |
| 979 | |
| 980 | call = drv->ops->add_beacon; |
| 981 | break; |
| 982 | case NL80211_CMD_SET_BEACON: |
| 983 | call = drv->ops->set_beacon; |
| 984 | break; |
| 985 | default: |
| 986 | WARN_ON(1); |
| 987 | err = -EOPNOTSUPP; |
| 988 | goto out; |
| 989 | } |
| 990 | |
| 991 | if (!call) { |
| 992 | err = -EOPNOTSUPP; |
| 993 | goto out; |
| 994 | } |
| 995 | |
| 996 | memset(¶ms, 0, sizeof(params)); |
| 997 | |
| 998 | if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) { |
| 999 | params.interval = |
| 1000 | nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]); |
| 1001 | haveinfo = 1; |
| 1002 | } |
| 1003 | |
| 1004 | if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) { |
| 1005 | params.dtim_period = |
| 1006 | nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]); |
| 1007 | haveinfo = 1; |
| 1008 | } |
| 1009 | |
| 1010 | if (info->attrs[NL80211_ATTR_BEACON_HEAD]) { |
| 1011 | params.head = nla_data(info->attrs[NL80211_ATTR_BEACON_HEAD]); |
| 1012 | params.head_len = |
| 1013 | nla_len(info->attrs[NL80211_ATTR_BEACON_HEAD]); |
| 1014 | haveinfo = 1; |
| 1015 | } |
| 1016 | |
| 1017 | if (info->attrs[NL80211_ATTR_BEACON_TAIL]) { |
| 1018 | params.tail = nla_data(info->attrs[NL80211_ATTR_BEACON_TAIL]); |
| 1019 | params.tail_len = |
| 1020 | nla_len(info->attrs[NL80211_ATTR_BEACON_TAIL]); |
| 1021 | haveinfo = 1; |
| 1022 | } |
| 1023 | |
| 1024 | if (!haveinfo) { |
| 1025 | err = -EINVAL; |
| 1026 | goto out; |
| 1027 | } |
| 1028 | |
| 1029 | rtnl_lock(); |
| 1030 | err = call(&drv->wiphy, dev, ¶ms); |
| 1031 | rtnl_unlock(); |
| 1032 | |
| 1033 | out: |
| 1034 | cfg80211_put_dev(drv); |
| 1035 | dev_put(dev); |
| 1036 | return err; |
| 1037 | } |
| 1038 | |
| 1039 | static int nl80211_del_beacon(struct sk_buff *skb, struct genl_info *info) |
| 1040 | { |
| 1041 | struct cfg80211_registered_device *drv; |
| 1042 | int err; |
| 1043 | struct net_device *dev; |
| 1044 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1045 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 1046 | if (err) |
| 1047 | return err; |
| 1048 | |
| 1049 | if (!drv->ops->del_beacon) { |
| 1050 | err = -EOPNOTSUPP; |
| 1051 | goto out; |
| 1052 | } |
| 1053 | |
| 1054 | rtnl_lock(); |
| 1055 | err = drv->ops->del_beacon(&drv->wiphy, dev); |
| 1056 | rtnl_unlock(); |
| 1057 | |
| 1058 | out: |
| 1059 | cfg80211_put_dev(drv); |
| 1060 | dev_put(dev); |
| 1061 | return err; |
| 1062 | } |
| 1063 | |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 1064 | static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = { |
| 1065 | [NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG }, |
| 1066 | [NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG }, |
| 1067 | [NL80211_STA_FLAG_WME] = { .type = NLA_FLAG }, |
| 1068 | }; |
| 1069 | |
| 1070 | static int parse_station_flags(struct nlattr *nla, u32 *staflags) |
| 1071 | { |
| 1072 | struct nlattr *flags[NL80211_STA_FLAG_MAX + 1]; |
| 1073 | int flag; |
| 1074 | |
| 1075 | *staflags = 0; |
| 1076 | |
| 1077 | if (!nla) |
| 1078 | return 0; |
| 1079 | |
| 1080 | if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX, |
| 1081 | nla, sta_flags_policy)) |
| 1082 | return -EINVAL; |
| 1083 | |
| 1084 | *staflags = STATION_FLAG_CHANGED; |
| 1085 | |
| 1086 | for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) |
| 1087 | if (flags[flag]) |
| 1088 | *staflags |= (1<<flag); |
| 1089 | |
| 1090 | return 0; |
| 1091 | } |
| 1092 | |
Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 1093 | static u16 nl80211_calculate_bitrate(struct rate_info *rate) |
| 1094 | { |
| 1095 | int modulation, streams, bitrate; |
| 1096 | |
| 1097 | if (!(rate->flags & RATE_INFO_FLAGS_MCS)) |
| 1098 | return rate->legacy; |
| 1099 | |
| 1100 | /* the formula below does only work for MCS values smaller than 32 */ |
| 1101 | if (rate->mcs >= 32) |
| 1102 | return 0; |
| 1103 | |
| 1104 | modulation = rate->mcs & 7; |
| 1105 | streams = (rate->mcs >> 3) + 1; |
| 1106 | |
| 1107 | bitrate = (rate->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH) ? |
| 1108 | 13500000 : 6500000; |
| 1109 | |
| 1110 | if (modulation < 4) |
| 1111 | bitrate *= (modulation + 1); |
| 1112 | else if (modulation == 4) |
| 1113 | bitrate *= (modulation + 2); |
| 1114 | else |
| 1115 | bitrate *= (modulation + 3); |
| 1116 | |
| 1117 | bitrate *= streams; |
| 1118 | |
| 1119 | if (rate->flags & RATE_INFO_FLAGS_SHORT_GI) |
| 1120 | bitrate = (bitrate / 9) * 10; |
| 1121 | |
| 1122 | /* do NOT round down here */ |
| 1123 | return (bitrate + 50000) / 100000; |
| 1124 | } |
| 1125 | |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1126 | static int nl80211_send_station(struct sk_buff *msg, u32 pid, u32 seq, |
| 1127 | int flags, struct net_device *dev, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1128 | u8 *mac_addr, struct station_info *sinfo) |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1129 | { |
| 1130 | void *hdr; |
Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 1131 | struct nlattr *sinfoattr, *txrate; |
| 1132 | u16 bitrate; |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1133 | |
| 1134 | hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_STATION); |
| 1135 | if (!hdr) |
| 1136 | return -1; |
| 1137 | |
| 1138 | NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex); |
| 1139 | NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr); |
| 1140 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1141 | sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO); |
| 1142 | if (!sinfoattr) |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1143 | goto nla_put_failure; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1144 | if (sinfo->filled & STATION_INFO_INACTIVE_TIME) |
| 1145 | NLA_PUT_U32(msg, NL80211_STA_INFO_INACTIVE_TIME, |
| 1146 | sinfo->inactive_time); |
| 1147 | if (sinfo->filled & STATION_INFO_RX_BYTES) |
| 1148 | NLA_PUT_U32(msg, NL80211_STA_INFO_RX_BYTES, |
| 1149 | sinfo->rx_bytes); |
| 1150 | if (sinfo->filled & STATION_INFO_TX_BYTES) |
| 1151 | NLA_PUT_U32(msg, NL80211_STA_INFO_TX_BYTES, |
| 1152 | sinfo->tx_bytes); |
| 1153 | if (sinfo->filled & STATION_INFO_LLID) |
| 1154 | NLA_PUT_U16(msg, NL80211_STA_INFO_LLID, |
| 1155 | sinfo->llid); |
| 1156 | if (sinfo->filled & STATION_INFO_PLID) |
| 1157 | NLA_PUT_U16(msg, NL80211_STA_INFO_PLID, |
| 1158 | sinfo->plid); |
| 1159 | if (sinfo->filled & STATION_INFO_PLINK_STATE) |
| 1160 | NLA_PUT_U8(msg, NL80211_STA_INFO_PLINK_STATE, |
| 1161 | sinfo->plink_state); |
Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 1162 | if (sinfo->filled & STATION_INFO_SIGNAL) |
| 1163 | NLA_PUT_U8(msg, NL80211_STA_INFO_SIGNAL, |
| 1164 | sinfo->signal); |
| 1165 | if (sinfo->filled & STATION_INFO_TX_BITRATE) { |
| 1166 | txrate = nla_nest_start(msg, NL80211_STA_INFO_TX_BITRATE); |
| 1167 | if (!txrate) |
| 1168 | goto nla_put_failure; |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1169 | |
Henning Rogge | 420e7fa | 2008-12-11 22:04:19 +0100 | [diff] [blame] | 1170 | /* nl80211_calculate_bitrate will return 0 for mcs >= 32 */ |
| 1171 | bitrate = nl80211_calculate_bitrate(&sinfo->txrate); |
| 1172 | if (bitrate > 0) |
| 1173 | NLA_PUT_U16(msg, NL80211_RATE_INFO_BITRATE, bitrate); |
| 1174 | |
| 1175 | if (sinfo->txrate.flags & RATE_INFO_FLAGS_MCS) |
| 1176 | NLA_PUT_U8(msg, NL80211_RATE_INFO_MCS, |
| 1177 | sinfo->txrate.mcs); |
| 1178 | if (sinfo->txrate.flags & RATE_INFO_FLAGS_40_MHZ_WIDTH) |
| 1179 | NLA_PUT_FLAG(msg, NL80211_RATE_INFO_40_MHZ_WIDTH); |
| 1180 | if (sinfo->txrate.flags & RATE_INFO_FLAGS_SHORT_GI) |
| 1181 | NLA_PUT_FLAG(msg, NL80211_RATE_INFO_SHORT_GI); |
| 1182 | |
| 1183 | nla_nest_end(msg, txrate); |
| 1184 | } |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1185 | nla_nest_end(msg, sinfoattr); |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1186 | |
| 1187 | return genlmsg_end(msg, hdr); |
| 1188 | |
| 1189 | nla_put_failure: |
Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 1190 | genlmsg_cancel(msg, hdr); |
| 1191 | return -EMSGSIZE; |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1192 | } |
| 1193 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1194 | static int nl80211_dump_station(struct sk_buff *skb, |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1195 | struct netlink_callback *cb) |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1196 | { |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1197 | struct station_info sinfo; |
| 1198 | struct cfg80211_registered_device *dev; |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1199 | struct net_device *netdev; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1200 | u8 mac_addr[ETH_ALEN]; |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1201 | int ifidx = cb->args[0]; |
| 1202 | int sta_idx = cb->args[1]; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1203 | int err; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1204 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1205 | if (!ifidx) { |
| 1206 | err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize, |
| 1207 | nl80211_fam.attrbuf, nl80211_fam.maxattr, |
| 1208 | nl80211_policy); |
| 1209 | if (err) |
| 1210 | return err; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1211 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1212 | if (!nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]) |
| 1213 | return -EINVAL; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1214 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1215 | ifidx = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]); |
| 1216 | if (!ifidx) |
| 1217 | return -EINVAL; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1218 | } |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1219 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1220 | netdev = dev_get_by_index(&init_net, ifidx); |
| 1221 | if (!netdev) |
| 1222 | return -ENODEV; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1223 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1224 | dev = cfg80211_get_dev_from_ifindex(ifidx); |
| 1225 | if (IS_ERR(dev)) { |
| 1226 | err = PTR_ERR(dev); |
| 1227 | goto out_put_netdev; |
| 1228 | } |
| 1229 | |
| 1230 | if (!dev->ops->dump_station) { |
| 1231 | err = -ENOSYS; |
| 1232 | goto out_err; |
| 1233 | } |
| 1234 | |
| 1235 | rtnl_lock(); |
| 1236 | |
| 1237 | while (1) { |
| 1238 | err = dev->ops->dump_station(&dev->wiphy, netdev, sta_idx, |
| 1239 | mac_addr, &sinfo); |
| 1240 | if (err == -ENOENT) |
| 1241 | break; |
| 1242 | if (err) |
| 1243 | goto out_err_rtnl; |
| 1244 | |
| 1245 | if (nl80211_send_station(skb, |
| 1246 | NETLINK_CB(cb->skb).pid, |
| 1247 | cb->nlh->nlmsg_seq, NLM_F_MULTI, |
| 1248 | netdev, mac_addr, |
| 1249 | &sinfo) < 0) |
| 1250 | goto out; |
| 1251 | |
| 1252 | sta_idx++; |
| 1253 | } |
| 1254 | |
| 1255 | |
| 1256 | out: |
| 1257 | cb->args[1] = sta_idx; |
| 1258 | err = skb->len; |
| 1259 | out_err_rtnl: |
| 1260 | rtnl_unlock(); |
| 1261 | out_err: |
| 1262 | cfg80211_put_dev(dev); |
| 1263 | out_put_netdev: |
| 1264 | dev_put(netdev); |
| 1265 | |
| 1266 | return err; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1267 | } |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1268 | |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 1269 | static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info) |
| 1270 | { |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1271 | struct cfg80211_registered_device *drv; |
| 1272 | int err; |
| 1273 | struct net_device *dev; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1274 | struct station_info sinfo; |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1275 | struct sk_buff *msg; |
| 1276 | u8 *mac_addr = NULL; |
| 1277 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1278 | memset(&sinfo, 0, sizeof(sinfo)); |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1279 | |
| 1280 | if (!info->attrs[NL80211_ATTR_MAC]) |
| 1281 | return -EINVAL; |
| 1282 | |
| 1283 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 1284 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1285 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1286 | if (err) |
| 1287 | return err; |
| 1288 | |
| 1289 | if (!drv->ops->get_station) { |
| 1290 | err = -EOPNOTSUPP; |
| 1291 | goto out; |
| 1292 | } |
| 1293 | |
| 1294 | rtnl_lock(); |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1295 | err = drv->ops->get_station(&drv->wiphy, dev, mac_addr, &sinfo); |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1296 | rtnl_unlock(); |
| 1297 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1298 | if (err) |
| 1299 | goto out; |
| 1300 | |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1301 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); |
| 1302 | if (!msg) |
| 1303 | goto out; |
| 1304 | |
| 1305 | if (nl80211_send_station(msg, info->snd_pid, info->snd_seq, 0, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1306 | dev, mac_addr, &sinfo) < 0) |
Johannes Berg | fd5b74d | 2007-12-19 02:03:36 +0100 | [diff] [blame] | 1307 | goto out_free; |
| 1308 | |
| 1309 | err = genlmsg_unicast(msg, info->snd_pid); |
| 1310 | goto out; |
| 1311 | |
| 1312 | out_free: |
| 1313 | nlmsg_free(msg); |
| 1314 | |
| 1315 | out: |
| 1316 | cfg80211_put_dev(drv); |
| 1317 | dev_put(dev); |
| 1318 | return err; |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 1319 | } |
| 1320 | |
| 1321 | /* |
| 1322 | * Get vlan interface making sure it is on the right wiphy. |
| 1323 | */ |
| 1324 | static int get_vlan(struct nlattr *vlanattr, |
| 1325 | struct cfg80211_registered_device *rdev, |
| 1326 | struct net_device **vlan) |
| 1327 | { |
| 1328 | *vlan = NULL; |
| 1329 | |
| 1330 | if (vlanattr) { |
| 1331 | *vlan = dev_get_by_index(&init_net, nla_get_u32(vlanattr)); |
| 1332 | if (!*vlan) |
| 1333 | return -ENODEV; |
| 1334 | if (!(*vlan)->ieee80211_ptr) |
| 1335 | return -EINVAL; |
| 1336 | if ((*vlan)->ieee80211_ptr->wiphy != &rdev->wiphy) |
| 1337 | return -EINVAL; |
| 1338 | } |
| 1339 | return 0; |
| 1340 | } |
| 1341 | |
| 1342 | static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info) |
| 1343 | { |
| 1344 | struct cfg80211_registered_device *drv; |
| 1345 | int err; |
| 1346 | struct net_device *dev; |
| 1347 | struct station_parameters params; |
| 1348 | u8 *mac_addr = NULL; |
| 1349 | |
| 1350 | memset(¶ms, 0, sizeof(params)); |
| 1351 | |
| 1352 | params.listen_interval = -1; |
| 1353 | |
| 1354 | if (info->attrs[NL80211_ATTR_STA_AID]) |
| 1355 | return -EINVAL; |
| 1356 | |
| 1357 | if (!info->attrs[NL80211_ATTR_MAC]) |
| 1358 | return -EINVAL; |
| 1359 | |
| 1360 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 1361 | |
| 1362 | if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) { |
| 1363 | params.supported_rates = |
| 1364 | nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]); |
| 1365 | params.supported_rates_len = |
| 1366 | nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]); |
| 1367 | } |
| 1368 | |
| 1369 | if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]) |
| 1370 | params.listen_interval = |
| 1371 | nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]); |
| 1372 | |
Jouni Malinen | 36aedc90 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 1373 | if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) |
| 1374 | params.ht_capa = |
| 1375 | nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]); |
| 1376 | |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 1377 | if (parse_station_flags(info->attrs[NL80211_ATTR_STA_FLAGS], |
| 1378 | ¶ms.station_flags)) |
| 1379 | return -EINVAL; |
| 1380 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1381 | if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) |
| 1382 | params.plink_action = |
| 1383 | nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]); |
| 1384 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1385 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 1386 | if (err) |
| 1387 | return err; |
| 1388 | |
| 1389 | err = get_vlan(info->attrs[NL80211_ATTR_STA_VLAN], drv, ¶ms.vlan); |
| 1390 | if (err) |
| 1391 | goto out; |
| 1392 | |
| 1393 | if (!drv->ops->change_station) { |
| 1394 | err = -EOPNOTSUPP; |
| 1395 | goto out; |
| 1396 | } |
| 1397 | |
| 1398 | rtnl_lock(); |
| 1399 | err = drv->ops->change_station(&drv->wiphy, dev, mac_addr, ¶ms); |
| 1400 | rtnl_unlock(); |
| 1401 | |
| 1402 | out: |
| 1403 | if (params.vlan) |
| 1404 | dev_put(params.vlan); |
| 1405 | cfg80211_put_dev(drv); |
| 1406 | dev_put(dev); |
| 1407 | return err; |
| 1408 | } |
| 1409 | |
| 1410 | static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info) |
| 1411 | { |
| 1412 | struct cfg80211_registered_device *drv; |
| 1413 | int err; |
| 1414 | struct net_device *dev; |
| 1415 | struct station_parameters params; |
| 1416 | u8 *mac_addr = NULL; |
| 1417 | |
| 1418 | memset(¶ms, 0, sizeof(params)); |
| 1419 | |
| 1420 | if (!info->attrs[NL80211_ATTR_MAC]) |
| 1421 | return -EINVAL; |
| 1422 | |
| 1423 | if (!info->attrs[NL80211_ATTR_STA_AID]) |
| 1424 | return -EINVAL; |
| 1425 | |
| 1426 | if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]) |
| 1427 | return -EINVAL; |
| 1428 | |
| 1429 | if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) |
| 1430 | return -EINVAL; |
| 1431 | |
| 1432 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 1433 | params.supported_rates = |
| 1434 | nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]); |
| 1435 | params.supported_rates_len = |
| 1436 | nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]); |
| 1437 | params.listen_interval = |
| 1438 | nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]); |
Johannes Berg | 16f2e85 | 2008-04-07 14:35:46 +0200 | [diff] [blame] | 1439 | params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]); |
Jouni Malinen | 36aedc90 | 2008-08-25 11:58:58 +0300 | [diff] [blame] | 1440 | if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) |
| 1441 | params.ht_capa = |
| 1442 | nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]); |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 1443 | |
| 1444 | if (parse_station_flags(info->attrs[NL80211_ATTR_STA_FLAGS], |
| 1445 | ¶ms.station_flags)) |
| 1446 | return -EINVAL; |
| 1447 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1448 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 1449 | if (err) |
| 1450 | return err; |
| 1451 | |
| 1452 | err = get_vlan(info->attrs[NL80211_ATTR_STA_VLAN], drv, ¶ms.vlan); |
| 1453 | if (err) |
| 1454 | goto out; |
| 1455 | |
| 1456 | if (!drv->ops->add_station) { |
| 1457 | err = -EOPNOTSUPP; |
| 1458 | goto out; |
| 1459 | } |
| 1460 | |
| 1461 | rtnl_lock(); |
| 1462 | err = drv->ops->add_station(&drv->wiphy, dev, mac_addr, ¶ms); |
| 1463 | rtnl_unlock(); |
| 1464 | |
| 1465 | out: |
| 1466 | if (params.vlan) |
| 1467 | dev_put(params.vlan); |
| 1468 | cfg80211_put_dev(drv); |
| 1469 | dev_put(dev); |
| 1470 | return err; |
| 1471 | } |
| 1472 | |
| 1473 | static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info) |
| 1474 | { |
| 1475 | struct cfg80211_registered_device *drv; |
| 1476 | int err; |
| 1477 | struct net_device *dev; |
| 1478 | u8 *mac_addr = NULL; |
| 1479 | |
| 1480 | if (info->attrs[NL80211_ATTR_MAC]) |
| 1481 | mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 1482 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1483 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 1484 | if (err) |
| 1485 | return err; |
| 1486 | |
| 1487 | if (!drv->ops->del_station) { |
| 1488 | err = -EOPNOTSUPP; |
| 1489 | goto out; |
| 1490 | } |
| 1491 | |
| 1492 | rtnl_lock(); |
| 1493 | err = drv->ops->del_station(&drv->wiphy, dev, mac_addr); |
| 1494 | rtnl_unlock(); |
| 1495 | |
| 1496 | out: |
| 1497 | cfg80211_put_dev(drv); |
| 1498 | dev_put(dev); |
| 1499 | return err; |
| 1500 | } |
| 1501 | |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1502 | static int nl80211_send_mpath(struct sk_buff *msg, u32 pid, u32 seq, |
| 1503 | int flags, struct net_device *dev, |
| 1504 | u8 *dst, u8 *next_hop, |
| 1505 | struct mpath_info *pinfo) |
| 1506 | { |
| 1507 | void *hdr; |
| 1508 | struct nlattr *pinfoattr; |
| 1509 | |
| 1510 | hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_STATION); |
| 1511 | if (!hdr) |
| 1512 | return -1; |
| 1513 | |
| 1514 | NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex); |
| 1515 | NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, dst); |
| 1516 | NLA_PUT(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop); |
| 1517 | |
| 1518 | pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO); |
| 1519 | if (!pinfoattr) |
| 1520 | goto nla_put_failure; |
| 1521 | if (pinfo->filled & MPATH_INFO_FRAME_QLEN) |
| 1522 | NLA_PUT_U32(msg, NL80211_MPATH_INFO_FRAME_QLEN, |
| 1523 | pinfo->frame_qlen); |
| 1524 | if (pinfo->filled & MPATH_INFO_DSN) |
| 1525 | NLA_PUT_U32(msg, NL80211_MPATH_INFO_DSN, |
| 1526 | pinfo->dsn); |
| 1527 | if (pinfo->filled & MPATH_INFO_METRIC) |
| 1528 | NLA_PUT_U32(msg, NL80211_MPATH_INFO_METRIC, |
| 1529 | pinfo->metric); |
| 1530 | if (pinfo->filled & MPATH_INFO_EXPTIME) |
| 1531 | NLA_PUT_U32(msg, NL80211_MPATH_INFO_EXPTIME, |
| 1532 | pinfo->exptime); |
| 1533 | if (pinfo->filled & MPATH_INFO_FLAGS) |
| 1534 | NLA_PUT_U8(msg, NL80211_MPATH_INFO_FLAGS, |
| 1535 | pinfo->flags); |
| 1536 | if (pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT) |
| 1537 | NLA_PUT_U32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT, |
| 1538 | pinfo->discovery_timeout); |
| 1539 | if (pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES) |
| 1540 | NLA_PUT_U8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES, |
| 1541 | pinfo->discovery_retries); |
| 1542 | |
| 1543 | nla_nest_end(msg, pinfoattr); |
| 1544 | |
| 1545 | return genlmsg_end(msg, hdr); |
| 1546 | |
| 1547 | nla_put_failure: |
Thomas Graf | bc3ed28 | 2008-06-03 16:36:54 -0700 | [diff] [blame] | 1548 | genlmsg_cancel(msg, hdr); |
| 1549 | return -EMSGSIZE; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1550 | } |
| 1551 | |
| 1552 | static int nl80211_dump_mpath(struct sk_buff *skb, |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1553 | struct netlink_callback *cb) |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1554 | { |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1555 | struct mpath_info pinfo; |
| 1556 | struct cfg80211_registered_device *dev; |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1557 | struct net_device *netdev; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1558 | u8 dst[ETH_ALEN]; |
| 1559 | u8 next_hop[ETH_ALEN]; |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1560 | int ifidx = cb->args[0]; |
| 1561 | int path_idx = cb->args[1]; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1562 | int err; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1563 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1564 | if (!ifidx) { |
| 1565 | err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize, |
| 1566 | nl80211_fam.attrbuf, nl80211_fam.maxattr, |
| 1567 | nl80211_policy); |
| 1568 | if (err) |
| 1569 | return err; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1570 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1571 | if (!nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]) |
| 1572 | return -EINVAL; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1573 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1574 | ifidx = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]); |
| 1575 | if (!ifidx) |
| 1576 | return -EINVAL; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1577 | } |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1578 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1579 | netdev = dev_get_by_index(&init_net, ifidx); |
| 1580 | if (!netdev) |
| 1581 | return -ENODEV; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1582 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1583 | dev = cfg80211_get_dev_from_ifindex(ifidx); |
| 1584 | if (IS_ERR(dev)) { |
| 1585 | err = PTR_ERR(dev); |
| 1586 | goto out_put_netdev; |
| 1587 | } |
| 1588 | |
| 1589 | if (!dev->ops->dump_mpath) { |
| 1590 | err = -ENOSYS; |
| 1591 | goto out_err; |
| 1592 | } |
| 1593 | |
| 1594 | rtnl_lock(); |
| 1595 | |
| 1596 | while (1) { |
| 1597 | err = dev->ops->dump_mpath(&dev->wiphy, netdev, path_idx, |
| 1598 | dst, next_hop, &pinfo); |
| 1599 | if (err == -ENOENT) |
| 1600 | break; |
| 1601 | if (err) |
| 1602 | goto out_err_rtnl; |
| 1603 | |
| 1604 | if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).pid, |
| 1605 | cb->nlh->nlmsg_seq, NLM_F_MULTI, |
| 1606 | netdev, dst, next_hop, |
| 1607 | &pinfo) < 0) |
| 1608 | goto out; |
| 1609 | |
| 1610 | path_idx++; |
| 1611 | } |
| 1612 | |
| 1613 | |
| 1614 | out: |
| 1615 | cb->args[1] = path_idx; |
| 1616 | err = skb->len; |
| 1617 | out_err_rtnl: |
| 1618 | rtnl_unlock(); |
| 1619 | out_err: |
| 1620 | cfg80211_put_dev(dev); |
| 1621 | out_put_netdev: |
| 1622 | dev_put(netdev); |
| 1623 | |
| 1624 | return err; |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1625 | } |
| 1626 | |
| 1627 | static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info) |
| 1628 | { |
| 1629 | struct cfg80211_registered_device *drv; |
| 1630 | int err; |
| 1631 | struct net_device *dev; |
| 1632 | struct mpath_info pinfo; |
| 1633 | struct sk_buff *msg; |
| 1634 | u8 *dst = NULL; |
| 1635 | u8 next_hop[ETH_ALEN]; |
| 1636 | |
| 1637 | memset(&pinfo, 0, sizeof(pinfo)); |
| 1638 | |
| 1639 | if (!info->attrs[NL80211_ATTR_MAC]) |
| 1640 | return -EINVAL; |
| 1641 | |
| 1642 | dst = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 1643 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1644 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1645 | if (err) |
| 1646 | return err; |
| 1647 | |
| 1648 | if (!drv->ops->get_mpath) { |
| 1649 | err = -EOPNOTSUPP; |
| 1650 | goto out; |
| 1651 | } |
| 1652 | |
| 1653 | rtnl_lock(); |
| 1654 | err = drv->ops->get_mpath(&drv->wiphy, dev, dst, next_hop, &pinfo); |
| 1655 | rtnl_unlock(); |
| 1656 | |
| 1657 | if (err) |
| 1658 | goto out; |
| 1659 | |
| 1660 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); |
| 1661 | if (!msg) |
| 1662 | goto out; |
| 1663 | |
| 1664 | if (nl80211_send_mpath(msg, info->snd_pid, info->snd_seq, 0, |
| 1665 | dev, dst, next_hop, &pinfo) < 0) |
| 1666 | goto out_free; |
| 1667 | |
| 1668 | err = genlmsg_unicast(msg, info->snd_pid); |
| 1669 | goto out; |
| 1670 | |
| 1671 | out_free: |
| 1672 | nlmsg_free(msg); |
| 1673 | |
| 1674 | out: |
| 1675 | cfg80211_put_dev(drv); |
| 1676 | dev_put(dev); |
| 1677 | return err; |
| 1678 | } |
| 1679 | |
| 1680 | static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info) |
| 1681 | { |
| 1682 | struct cfg80211_registered_device *drv; |
| 1683 | int err; |
| 1684 | struct net_device *dev; |
| 1685 | u8 *dst = NULL; |
| 1686 | u8 *next_hop = NULL; |
| 1687 | |
| 1688 | if (!info->attrs[NL80211_ATTR_MAC]) |
| 1689 | return -EINVAL; |
| 1690 | |
| 1691 | if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]) |
| 1692 | return -EINVAL; |
| 1693 | |
| 1694 | dst = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 1695 | next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]); |
| 1696 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1697 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1698 | if (err) |
| 1699 | return err; |
| 1700 | |
| 1701 | if (!drv->ops->change_mpath) { |
| 1702 | err = -EOPNOTSUPP; |
| 1703 | goto out; |
| 1704 | } |
| 1705 | |
| 1706 | rtnl_lock(); |
| 1707 | err = drv->ops->change_mpath(&drv->wiphy, dev, dst, next_hop); |
| 1708 | rtnl_unlock(); |
| 1709 | |
| 1710 | out: |
| 1711 | cfg80211_put_dev(drv); |
| 1712 | dev_put(dev); |
| 1713 | return err; |
| 1714 | } |
| 1715 | static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info) |
| 1716 | { |
| 1717 | struct cfg80211_registered_device *drv; |
| 1718 | int err; |
| 1719 | struct net_device *dev; |
| 1720 | u8 *dst = NULL; |
| 1721 | u8 *next_hop = NULL; |
| 1722 | |
| 1723 | if (!info->attrs[NL80211_ATTR_MAC]) |
| 1724 | return -EINVAL; |
| 1725 | |
| 1726 | if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]) |
| 1727 | return -EINVAL; |
| 1728 | |
| 1729 | dst = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 1730 | next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]); |
| 1731 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1732 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1733 | if (err) |
| 1734 | return err; |
| 1735 | |
| 1736 | if (!drv->ops->add_mpath) { |
| 1737 | err = -EOPNOTSUPP; |
| 1738 | goto out; |
| 1739 | } |
| 1740 | |
| 1741 | rtnl_lock(); |
| 1742 | err = drv->ops->add_mpath(&drv->wiphy, dev, dst, next_hop); |
| 1743 | rtnl_unlock(); |
| 1744 | |
| 1745 | out: |
| 1746 | cfg80211_put_dev(drv); |
| 1747 | dev_put(dev); |
| 1748 | return err; |
| 1749 | } |
| 1750 | |
| 1751 | static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info) |
| 1752 | { |
| 1753 | struct cfg80211_registered_device *drv; |
| 1754 | int err; |
| 1755 | struct net_device *dev; |
| 1756 | u8 *dst = NULL; |
| 1757 | |
| 1758 | if (info->attrs[NL80211_ATTR_MAC]) |
| 1759 | dst = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| 1760 | |
Johannes Berg | bba95fe | 2008-07-29 13:22:51 +0200 | [diff] [blame] | 1761 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 1762 | if (err) |
| 1763 | return err; |
| 1764 | |
| 1765 | if (!drv->ops->del_mpath) { |
| 1766 | err = -EOPNOTSUPP; |
| 1767 | goto out; |
| 1768 | } |
| 1769 | |
| 1770 | rtnl_lock(); |
| 1771 | err = drv->ops->del_mpath(&drv->wiphy, dev, dst); |
| 1772 | rtnl_unlock(); |
| 1773 | |
| 1774 | out: |
| 1775 | cfg80211_put_dev(drv); |
| 1776 | dev_put(dev); |
| 1777 | return err; |
| 1778 | } |
| 1779 | |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1780 | static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info) |
| 1781 | { |
| 1782 | struct cfg80211_registered_device *drv; |
| 1783 | int err; |
| 1784 | struct net_device *dev; |
| 1785 | struct bss_parameters params; |
| 1786 | |
| 1787 | memset(¶ms, 0, sizeof(params)); |
| 1788 | /* default to not changing parameters */ |
| 1789 | params.use_cts_prot = -1; |
| 1790 | params.use_short_preamble = -1; |
| 1791 | params.use_short_slot_time = -1; |
| 1792 | |
| 1793 | if (info->attrs[NL80211_ATTR_BSS_CTS_PROT]) |
| 1794 | params.use_cts_prot = |
| 1795 | nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]); |
| 1796 | if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]) |
| 1797 | params.use_short_preamble = |
| 1798 | nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]); |
| 1799 | if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]) |
| 1800 | params.use_short_slot_time = |
| 1801 | nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]); |
Jouni Malinen | 90c97a0 | 2008-10-30 16:59:22 +0200 | [diff] [blame] | 1802 | if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) { |
| 1803 | params.basic_rates = |
| 1804 | nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]); |
| 1805 | params.basic_rates_len = |
| 1806 | nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]); |
| 1807 | } |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 1808 | |
| 1809 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
| 1810 | if (err) |
| 1811 | return err; |
| 1812 | |
| 1813 | if (!drv->ops->change_bss) { |
| 1814 | err = -EOPNOTSUPP; |
| 1815 | goto out; |
| 1816 | } |
| 1817 | |
| 1818 | rtnl_lock(); |
| 1819 | err = drv->ops->change_bss(&drv->wiphy, dev, ¶ms); |
| 1820 | rtnl_unlock(); |
| 1821 | |
| 1822 | out: |
| 1823 | cfg80211_put_dev(drv); |
| 1824 | dev_put(dev); |
| 1825 | return err; |
| 1826 | } |
| 1827 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1828 | static const struct nla_policy |
| 1829 | reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = { |
| 1830 | [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 }, |
| 1831 | [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 }, |
| 1832 | [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 }, |
| 1833 | [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 }, |
| 1834 | [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 }, |
| 1835 | [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 }, |
| 1836 | }; |
| 1837 | |
| 1838 | static int parse_reg_rule(struct nlattr *tb[], |
| 1839 | struct ieee80211_reg_rule *reg_rule) |
| 1840 | { |
| 1841 | struct ieee80211_freq_range *freq_range = ®_rule->freq_range; |
| 1842 | struct ieee80211_power_rule *power_rule = ®_rule->power_rule; |
| 1843 | |
| 1844 | if (!tb[NL80211_ATTR_REG_RULE_FLAGS]) |
| 1845 | return -EINVAL; |
| 1846 | if (!tb[NL80211_ATTR_FREQ_RANGE_START]) |
| 1847 | return -EINVAL; |
| 1848 | if (!tb[NL80211_ATTR_FREQ_RANGE_END]) |
| 1849 | return -EINVAL; |
| 1850 | if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) |
| 1851 | return -EINVAL; |
| 1852 | if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]) |
| 1853 | return -EINVAL; |
| 1854 | |
| 1855 | reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]); |
| 1856 | |
| 1857 | freq_range->start_freq_khz = |
| 1858 | nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]); |
| 1859 | freq_range->end_freq_khz = |
| 1860 | nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]); |
| 1861 | freq_range->max_bandwidth_khz = |
| 1862 | nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]); |
| 1863 | |
| 1864 | power_rule->max_eirp = |
| 1865 | nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]); |
| 1866 | |
| 1867 | if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]) |
| 1868 | power_rule->max_antenna_gain = |
| 1869 | nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]); |
| 1870 | |
| 1871 | return 0; |
| 1872 | } |
| 1873 | |
| 1874 | static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info) |
| 1875 | { |
| 1876 | int r; |
| 1877 | char *data = NULL; |
| 1878 | |
| 1879 | if (!info->attrs[NL80211_ATTR_REG_ALPHA2]) |
| 1880 | return -EINVAL; |
| 1881 | |
| 1882 | data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]); |
| 1883 | |
| 1884 | #ifdef CONFIG_WIRELESS_OLD_REGULATORY |
| 1885 | /* We ignore world regdom requests with the old regdom setup */ |
| 1886 | if (is_world_regdom(data)) |
| 1887 | return -EINVAL; |
| 1888 | #endif |
| 1889 | mutex_lock(&cfg80211_drv_mutex); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1890 | r = __regulatory_hint(NULL, REGDOM_SET_BY_USER, data, 0, ENVIRON_ANY); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 1891 | mutex_unlock(&cfg80211_drv_mutex); |
| 1892 | return r; |
| 1893 | } |
| 1894 | |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 1895 | static int nl80211_get_mesh_params(struct sk_buff *skb, |
| 1896 | struct genl_info *info) |
| 1897 | { |
| 1898 | struct cfg80211_registered_device *drv; |
| 1899 | struct mesh_config cur_params; |
| 1900 | int err; |
| 1901 | struct net_device *dev; |
| 1902 | void *hdr; |
| 1903 | struct nlattr *pinfoattr; |
| 1904 | struct sk_buff *msg; |
| 1905 | |
| 1906 | /* Look up our device */ |
| 1907 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
| 1908 | if (err) |
| 1909 | return err; |
| 1910 | |
| 1911 | /* Get the mesh params */ |
| 1912 | rtnl_lock(); |
| 1913 | err = drv->ops->get_mesh_params(&drv->wiphy, dev, &cur_params); |
| 1914 | rtnl_unlock(); |
| 1915 | if (err) |
| 1916 | goto out; |
| 1917 | |
| 1918 | /* Draw up a netlink message to send back */ |
| 1919 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); |
| 1920 | if (!msg) { |
| 1921 | err = -ENOBUFS; |
| 1922 | goto out; |
| 1923 | } |
| 1924 | hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0, |
| 1925 | NL80211_CMD_GET_MESH_PARAMS); |
| 1926 | if (!hdr) |
| 1927 | goto nla_put_failure; |
| 1928 | pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_PARAMS); |
| 1929 | if (!pinfoattr) |
| 1930 | goto nla_put_failure; |
| 1931 | NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dev->ifindex); |
| 1932 | NLA_PUT_U16(msg, NL80211_MESHCONF_RETRY_TIMEOUT, |
| 1933 | cur_params.dot11MeshRetryTimeout); |
| 1934 | NLA_PUT_U16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT, |
| 1935 | cur_params.dot11MeshConfirmTimeout); |
| 1936 | NLA_PUT_U16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT, |
| 1937 | cur_params.dot11MeshHoldingTimeout); |
| 1938 | NLA_PUT_U16(msg, NL80211_MESHCONF_MAX_PEER_LINKS, |
| 1939 | cur_params.dot11MeshMaxPeerLinks); |
| 1940 | NLA_PUT_U8(msg, NL80211_MESHCONF_MAX_RETRIES, |
| 1941 | cur_params.dot11MeshMaxRetries); |
| 1942 | NLA_PUT_U8(msg, NL80211_MESHCONF_TTL, |
| 1943 | cur_params.dot11MeshTTL); |
| 1944 | NLA_PUT_U8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS, |
| 1945 | cur_params.auto_open_plinks); |
| 1946 | NLA_PUT_U8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, |
| 1947 | cur_params.dot11MeshHWMPmaxPREQretries); |
| 1948 | NLA_PUT_U32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME, |
| 1949 | cur_params.path_refresh_time); |
| 1950 | NLA_PUT_U16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, |
| 1951 | cur_params.min_discovery_timeout); |
| 1952 | NLA_PUT_U32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, |
| 1953 | cur_params.dot11MeshHWMPactivePathTimeout); |
| 1954 | NLA_PUT_U16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, |
| 1955 | cur_params.dot11MeshHWMPpreqMinInterval); |
| 1956 | NLA_PUT_U16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, |
| 1957 | cur_params.dot11MeshHWMPnetDiameterTraversalTime); |
| 1958 | nla_nest_end(msg, pinfoattr); |
| 1959 | genlmsg_end(msg, hdr); |
| 1960 | err = genlmsg_unicast(msg, info->snd_pid); |
| 1961 | goto out; |
| 1962 | |
| 1963 | nla_put_failure: |
| 1964 | genlmsg_cancel(msg, hdr); |
| 1965 | err = -EMSGSIZE; |
| 1966 | out: |
| 1967 | /* Cleanup */ |
| 1968 | cfg80211_put_dev(drv); |
| 1969 | dev_put(dev); |
| 1970 | return err; |
| 1971 | } |
| 1972 | |
| 1973 | #define FILL_IN_MESH_PARAM_IF_SET(table, cfg, param, mask, attr_num, nla_fn) \ |
| 1974 | do {\ |
| 1975 | if (table[attr_num]) {\ |
| 1976 | cfg.param = nla_fn(table[attr_num]); \ |
| 1977 | mask |= (1 << (attr_num - 1)); \ |
| 1978 | } \ |
| 1979 | } while (0);\ |
| 1980 | |
| 1981 | static struct nla_policy |
| 1982 | nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] __read_mostly = { |
| 1983 | [NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 }, |
| 1984 | [NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 }, |
| 1985 | [NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 }, |
| 1986 | [NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 }, |
| 1987 | [NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 }, |
| 1988 | [NL80211_MESHCONF_TTL] = { .type = NLA_U8 }, |
| 1989 | [NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 }, |
| 1990 | |
| 1991 | [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 }, |
| 1992 | [NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 }, |
| 1993 | [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 }, |
| 1994 | [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 }, |
| 1995 | [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 }, |
| 1996 | [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 }, |
| 1997 | }; |
| 1998 | |
| 1999 | static int nl80211_set_mesh_params(struct sk_buff *skb, struct genl_info *info) |
| 2000 | { |
| 2001 | int err; |
| 2002 | u32 mask; |
| 2003 | struct cfg80211_registered_device *drv; |
| 2004 | struct net_device *dev; |
| 2005 | struct mesh_config cfg; |
| 2006 | struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1]; |
| 2007 | struct nlattr *parent_attr; |
| 2008 | |
| 2009 | parent_attr = info->attrs[NL80211_ATTR_MESH_PARAMS]; |
| 2010 | if (!parent_attr) |
| 2011 | return -EINVAL; |
| 2012 | if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX, |
| 2013 | parent_attr, nl80211_meshconf_params_policy)) |
| 2014 | return -EINVAL; |
| 2015 | |
| 2016 | err = get_drv_dev_by_info_ifindex(info->attrs, &drv, &dev); |
| 2017 | if (err) |
| 2018 | return err; |
| 2019 | |
| 2020 | /* This makes sure that there aren't more than 32 mesh config |
| 2021 | * parameters (otherwise our bitfield scheme would not work.) */ |
| 2022 | BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32); |
| 2023 | |
| 2024 | /* Fill in the params struct */ |
| 2025 | mask = 0; |
| 2026 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout, |
| 2027 | mask, NL80211_MESHCONF_RETRY_TIMEOUT, nla_get_u16); |
| 2028 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout, |
| 2029 | mask, NL80211_MESHCONF_CONFIRM_TIMEOUT, nla_get_u16); |
| 2030 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout, |
| 2031 | mask, NL80211_MESHCONF_HOLDING_TIMEOUT, nla_get_u16); |
| 2032 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks, |
| 2033 | mask, NL80211_MESHCONF_MAX_PEER_LINKS, nla_get_u16); |
| 2034 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries, |
| 2035 | mask, NL80211_MESHCONF_MAX_RETRIES, nla_get_u8); |
| 2036 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL, |
| 2037 | mask, NL80211_MESHCONF_TTL, nla_get_u8); |
| 2038 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks, |
| 2039 | mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS, nla_get_u8); |
| 2040 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries, |
| 2041 | mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, |
| 2042 | nla_get_u8); |
| 2043 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time, |
| 2044 | mask, NL80211_MESHCONF_PATH_REFRESH_TIME, nla_get_u32); |
| 2045 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout, |
| 2046 | mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, |
| 2047 | nla_get_u16); |
| 2048 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout, |
| 2049 | mask, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, |
| 2050 | nla_get_u32); |
| 2051 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval, |
| 2052 | mask, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, |
| 2053 | nla_get_u16); |
| 2054 | FILL_IN_MESH_PARAM_IF_SET(tb, cfg, |
| 2055 | dot11MeshHWMPnetDiameterTraversalTime, |
| 2056 | mask, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, |
| 2057 | nla_get_u16); |
| 2058 | |
| 2059 | /* Apply changes */ |
| 2060 | rtnl_lock(); |
| 2061 | err = drv->ops->set_mesh_params(&drv->wiphy, dev, &cfg, mask); |
| 2062 | rtnl_unlock(); |
| 2063 | |
| 2064 | /* cleanup */ |
| 2065 | cfg80211_put_dev(drv); |
| 2066 | dev_put(dev); |
| 2067 | return err; |
| 2068 | } |
| 2069 | |
| 2070 | #undef FILL_IN_MESH_PARAM_IF_SET |
| 2071 | |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2072 | static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info) |
| 2073 | { |
| 2074 | struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1]; |
| 2075 | struct nlattr *nl_reg_rule; |
| 2076 | char *alpha2 = NULL; |
| 2077 | int rem_reg_rules = 0, r = 0; |
| 2078 | u32 num_rules = 0, rule_idx = 0, size_of_regd; |
| 2079 | struct ieee80211_regdomain *rd = NULL; |
| 2080 | |
| 2081 | if (!info->attrs[NL80211_ATTR_REG_ALPHA2]) |
| 2082 | return -EINVAL; |
| 2083 | |
| 2084 | if (!info->attrs[NL80211_ATTR_REG_RULES]) |
| 2085 | return -EINVAL; |
| 2086 | |
| 2087 | alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]); |
| 2088 | |
| 2089 | nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES], |
| 2090 | rem_reg_rules) { |
| 2091 | num_rules++; |
| 2092 | if (num_rules > NL80211_MAX_SUPP_REG_RULES) |
| 2093 | goto bad_reg; |
| 2094 | } |
| 2095 | |
| 2096 | if (!reg_is_valid_request(alpha2)) |
| 2097 | return -EINVAL; |
| 2098 | |
| 2099 | size_of_regd = sizeof(struct ieee80211_regdomain) + |
| 2100 | (num_rules * sizeof(struct ieee80211_reg_rule)); |
| 2101 | |
| 2102 | rd = kzalloc(size_of_regd, GFP_KERNEL); |
| 2103 | if (!rd) |
| 2104 | return -ENOMEM; |
| 2105 | |
| 2106 | rd->n_reg_rules = num_rules; |
| 2107 | rd->alpha2[0] = alpha2[0]; |
| 2108 | rd->alpha2[1] = alpha2[1]; |
| 2109 | |
| 2110 | nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES], |
| 2111 | rem_reg_rules) { |
| 2112 | nla_parse(tb, NL80211_REG_RULE_ATTR_MAX, |
| 2113 | nla_data(nl_reg_rule), nla_len(nl_reg_rule), |
| 2114 | reg_rule_policy); |
| 2115 | r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]); |
| 2116 | if (r) |
| 2117 | goto bad_reg; |
| 2118 | |
| 2119 | rule_idx++; |
| 2120 | |
| 2121 | if (rule_idx > NL80211_MAX_SUPP_REG_RULES) |
| 2122 | goto bad_reg; |
| 2123 | } |
| 2124 | |
| 2125 | BUG_ON(rule_idx != num_rules); |
| 2126 | |
| 2127 | mutex_lock(&cfg80211_drv_mutex); |
| 2128 | r = set_regdom(rd); |
| 2129 | mutex_unlock(&cfg80211_drv_mutex); |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2130 | return r; |
| 2131 | |
Johannes Berg | d2372b3 | 2008-10-24 20:32:20 +0200 | [diff] [blame] | 2132 | bad_reg: |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2133 | kfree(rd); |
| 2134 | return -EINVAL; |
| 2135 | } |
| 2136 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 2137 | static struct genl_ops nl80211_ops[] = { |
| 2138 | { |
| 2139 | .cmd = NL80211_CMD_GET_WIPHY, |
| 2140 | .doit = nl80211_get_wiphy, |
| 2141 | .dumpit = nl80211_dump_wiphy, |
| 2142 | .policy = nl80211_policy, |
| 2143 | /* can be retrieved by unprivileged users */ |
| 2144 | }, |
| 2145 | { |
| 2146 | .cmd = NL80211_CMD_SET_WIPHY, |
| 2147 | .doit = nl80211_set_wiphy, |
| 2148 | .policy = nl80211_policy, |
| 2149 | .flags = GENL_ADMIN_PERM, |
| 2150 | }, |
| 2151 | { |
| 2152 | .cmd = NL80211_CMD_GET_INTERFACE, |
| 2153 | .doit = nl80211_get_interface, |
| 2154 | .dumpit = nl80211_dump_interface, |
| 2155 | .policy = nl80211_policy, |
| 2156 | /* can be retrieved by unprivileged users */ |
| 2157 | }, |
| 2158 | { |
| 2159 | .cmd = NL80211_CMD_SET_INTERFACE, |
| 2160 | .doit = nl80211_set_interface, |
| 2161 | .policy = nl80211_policy, |
| 2162 | .flags = GENL_ADMIN_PERM, |
| 2163 | }, |
| 2164 | { |
| 2165 | .cmd = NL80211_CMD_NEW_INTERFACE, |
| 2166 | .doit = nl80211_new_interface, |
| 2167 | .policy = nl80211_policy, |
| 2168 | .flags = GENL_ADMIN_PERM, |
| 2169 | }, |
| 2170 | { |
| 2171 | .cmd = NL80211_CMD_DEL_INTERFACE, |
| 2172 | .doit = nl80211_del_interface, |
| 2173 | .policy = nl80211_policy, |
| 2174 | .flags = GENL_ADMIN_PERM, |
| 2175 | }, |
Johannes Berg | 41ade00 | 2007-12-19 02:03:29 +0100 | [diff] [blame] | 2176 | { |
| 2177 | .cmd = NL80211_CMD_GET_KEY, |
| 2178 | .doit = nl80211_get_key, |
| 2179 | .policy = nl80211_policy, |
| 2180 | .flags = GENL_ADMIN_PERM, |
| 2181 | }, |
| 2182 | { |
| 2183 | .cmd = NL80211_CMD_SET_KEY, |
| 2184 | .doit = nl80211_set_key, |
| 2185 | .policy = nl80211_policy, |
| 2186 | .flags = GENL_ADMIN_PERM, |
| 2187 | }, |
| 2188 | { |
| 2189 | .cmd = NL80211_CMD_NEW_KEY, |
| 2190 | .doit = nl80211_new_key, |
| 2191 | .policy = nl80211_policy, |
| 2192 | .flags = GENL_ADMIN_PERM, |
| 2193 | }, |
| 2194 | { |
| 2195 | .cmd = NL80211_CMD_DEL_KEY, |
| 2196 | .doit = nl80211_del_key, |
| 2197 | .policy = nl80211_policy, |
| 2198 | .flags = GENL_ADMIN_PERM, |
| 2199 | }, |
Johannes Berg | ed1b6cc | 2007-12-19 02:03:32 +0100 | [diff] [blame] | 2200 | { |
| 2201 | .cmd = NL80211_CMD_SET_BEACON, |
| 2202 | .policy = nl80211_policy, |
| 2203 | .flags = GENL_ADMIN_PERM, |
| 2204 | .doit = nl80211_addset_beacon, |
| 2205 | }, |
| 2206 | { |
| 2207 | .cmd = NL80211_CMD_NEW_BEACON, |
| 2208 | .policy = nl80211_policy, |
| 2209 | .flags = GENL_ADMIN_PERM, |
| 2210 | .doit = nl80211_addset_beacon, |
| 2211 | }, |
| 2212 | { |
| 2213 | .cmd = NL80211_CMD_DEL_BEACON, |
| 2214 | .policy = nl80211_policy, |
| 2215 | .flags = GENL_ADMIN_PERM, |
| 2216 | .doit = nl80211_del_beacon, |
| 2217 | }, |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2218 | { |
| 2219 | .cmd = NL80211_CMD_GET_STATION, |
| 2220 | .doit = nl80211_get_station, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2221 | .dumpit = nl80211_dump_station, |
Johannes Berg | 5727ef1 | 2007-12-19 02:03:34 +0100 | [diff] [blame] | 2222 | .policy = nl80211_policy, |
| 2223 | .flags = GENL_ADMIN_PERM, |
| 2224 | }, |
| 2225 | { |
| 2226 | .cmd = NL80211_CMD_SET_STATION, |
| 2227 | .doit = nl80211_set_station, |
| 2228 | .policy = nl80211_policy, |
| 2229 | .flags = GENL_ADMIN_PERM, |
| 2230 | }, |
| 2231 | { |
| 2232 | .cmd = NL80211_CMD_NEW_STATION, |
| 2233 | .doit = nl80211_new_station, |
| 2234 | .policy = nl80211_policy, |
| 2235 | .flags = GENL_ADMIN_PERM, |
| 2236 | }, |
| 2237 | { |
| 2238 | .cmd = NL80211_CMD_DEL_STATION, |
| 2239 | .doit = nl80211_del_station, |
| 2240 | .policy = nl80211_policy, |
| 2241 | .flags = GENL_ADMIN_PERM, |
| 2242 | }, |
Luis Carlos Cobo | 2ec600d | 2008-02-23 15:17:06 +0100 | [diff] [blame] | 2243 | { |
| 2244 | .cmd = NL80211_CMD_GET_MPATH, |
| 2245 | .doit = nl80211_get_mpath, |
| 2246 | .dumpit = nl80211_dump_mpath, |
| 2247 | .policy = nl80211_policy, |
| 2248 | .flags = GENL_ADMIN_PERM, |
| 2249 | }, |
| 2250 | { |
| 2251 | .cmd = NL80211_CMD_SET_MPATH, |
| 2252 | .doit = nl80211_set_mpath, |
| 2253 | .policy = nl80211_policy, |
| 2254 | .flags = GENL_ADMIN_PERM, |
| 2255 | }, |
| 2256 | { |
| 2257 | .cmd = NL80211_CMD_NEW_MPATH, |
| 2258 | .doit = nl80211_new_mpath, |
| 2259 | .policy = nl80211_policy, |
| 2260 | .flags = GENL_ADMIN_PERM, |
| 2261 | }, |
| 2262 | { |
| 2263 | .cmd = NL80211_CMD_DEL_MPATH, |
| 2264 | .doit = nl80211_del_mpath, |
| 2265 | .policy = nl80211_policy, |
| 2266 | .flags = GENL_ADMIN_PERM, |
| 2267 | }, |
Jouni Malinen | 9f1ba90 | 2008-08-07 20:07:01 +0300 | [diff] [blame] | 2268 | { |
| 2269 | .cmd = NL80211_CMD_SET_BSS, |
| 2270 | .doit = nl80211_set_bss, |
| 2271 | .policy = nl80211_policy, |
| 2272 | .flags = GENL_ADMIN_PERM, |
| 2273 | }, |
Luis R. Rodriguez | b2e1b30 | 2008-09-09 23:19:48 -0700 | [diff] [blame] | 2274 | { |
| 2275 | .cmd = NL80211_CMD_SET_REG, |
| 2276 | .doit = nl80211_set_reg, |
| 2277 | .policy = nl80211_policy, |
| 2278 | .flags = GENL_ADMIN_PERM, |
| 2279 | }, |
| 2280 | { |
| 2281 | .cmd = NL80211_CMD_REQ_SET_REG, |
| 2282 | .doit = nl80211_req_set_reg, |
| 2283 | .policy = nl80211_policy, |
| 2284 | .flags = GENL_ADMIN_PERM, |
| 2285 | }, |
colin@cozybit.com | 93da9cc | 2008-10-21 12:03:48 -0700 | [diff] [blame] | 2286 | { |
| 2287 | .cmd = NL80211_CMD_GET_MESH_PARAMS, |
| 2288 | .doit = nl80211_get_mesh_params, |
| 2289 | .policy = nl80211_policy, |
| 2290 | /* can be retrieved by unprivileged users */ |
| 2291 | }, |
| 2292 | { |
| 2293 | .cmd = NL80211_CMD_SET_MESH_PARAMS, |
| 2294 | .doit = nl80211_set_mesh_params, |
| 2295 | .policy = nl80211_policy, |
| 2296 | .flags = GENL_ADMIN_PERM, |
| 2297 | }, |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 2298 | }; |
| 2299 | |
| 2300 | /* multicast groups */ |
| 2301 | static struct genl_multicast_group nl80211_config_mcgrp = { |
| 2302 | .name = "config", |
| 2303 | }; |
| 2304 | |
| 2305 | /* notification functions */ |
| 2306 | |
| 2307 | void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev) |
| 2308 | { |
| 2309 | struct sk_buff *msg; |
| 2310 | |
| 2311 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); |
| 2312 | if (!msg) |
| 2313 | return; |
| 2314 | |
| 2315 | if (nl80211_send_wiphy(msg, 0, 0, 0, rdev) < 0) { |
| 2316 | nlmsg_free(msg); |
| 2317 | return; |
| 2318 | } |
| 2319 | |
| 2320 | genlmsg_multicast(msg, 0, nl80211_config_mcgrp.id, GFP_KERNEL); |
| 2321 | } |
| 2322 | |
| 2323 | /* initialisation/exit functions */ |
| 2324 | |
| 2325 | int nl80211_init(void) |
| 2326 | { |
| 2327 | int err, i; |
| 2328 | |
| 2329 | err = genl_register_family(&nl80211_fam); |
| 2330 | if (err) |
| 2331 | return err; |
| 2332 | |
| 2333 | for (i = 0; i < ARRAY_SIZE(nl80211_ops); i++) { |
| 2334 | err = genl_register_ops(&nl80211_fam, &nl80211_ops[i]); |
| 2335 | if (err) |
| 2336 | goto err_out; |
| 2337 | } |
| 2338 | |
| 2339 | err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp); |
| 2340 | if (err) |
| 2341 | goto err_out; |
| 2342 | |
| 2343 | return 0; |
| 2344 | err_out: |
| 2345 | genl_unregister_family(&nl80211_fam); |
| 2346 | return err; |
| 2347 | } |
| 2348 | |
| 2349 | void nl80211_exit(void) |
| 2350 | { |
| 2351 | genl_unregister_family(&nl80211_fam); |
| 2352 | } |