2 * This is the new netlink-based wireless configuration interface.
4 * Copyright 2006-2009 Johannes Berg <johannes@sipsolutions.net>
8 #include <linux/module.h>
10 #include <linux/list.h>
11 #include <linux/if_ether.h>
12 #include <linux/ieee80211.h>
13 #include <linux/nl80211.h>
14 #include <linux/rtnetlink.h>
15 #include <linux/netlink.h>
16 #include <linux/etherdevice.h>
17 #include <net/genetlink.h>
18 #include <net/cfg80211.h>
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
,
32 /* internal helper: get drv and dev */
33 static int get_drv_dev_by_info_ifindex(struct nlattr
**attrs
,
34 struct cfg80211_registered_device
**drv
,
35 struct net_device
**dev
)
39 if (!attrs
[NL80211_ATTR_IFINDEX
])
42 ifindex
= nla_get_u32(attrs
[NL80211_ATTR_IFINDEX
]);
43 *dev
= dev_get_by_index(&init_net
, ifindex
);
47 *drv
= cfg80211_get_dev_from_ifindex(ifindex
);
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
,
61 [NL80211_ATTR_WIPHY_TXQ_PARAMS
] = { .type
= NLA_NESTED
},
62 [NL80211_ATTR_WIPHY_FREQ
] = { .type
= NLA_U32
},
63 [NL80211_ATTR_WIPHY_CHANNEL_TYPE
] = { .type
= NLA_U32
},
64 [NL80211_ATTR_WIPHY_RETRY_SHORT
] = { .type
= NLA_U8
},
65 [NL80211_ATTR_WIPHY_RETRY_LONG
] = { .type
= NLA_U8
},
66 [NL80211_ATTR_WIPHY_FRAG_THRESHOLD
] = { .type
= NLA_U32
},
67 [NL80211_ATTR_WIPHY_RTS_THRESHOLD
] = { .type
= NLA_U32
},
69 [NL80211_ATTR_IFTYPE
] = { .type
= NLA_U32
},
70 [NL80211_ATTR_IFINDEX
] = { .type
= NLA_U32
},
71 [NL80211_ATTR_IFNAME
] = { .type
= NLA_NUL_STRING
, .len
= IFNAMSIZ
-1 },
73 [NL80211_ATTR_MAC
] = { .type
= NLA_BINARY
, .len
= ETH_ALEN
},
75 [NL80211_ATTR_KEY_DATA
] = { .type
= NLA_BINARY
,
76 .len
= WLAN_MAX_KEY_LEN
},
77 [NL80211_ATTR_KEY_IDX
] = { .type
= NLA_U8
},
78 [NL80211_ATTR_KEY_CIPHER
] = { .type
= NLA_U32
},
79 [NL80211_ATTR_KEY_DEFAULT
] = { .type
= NLA_FLAG
},
80 [NL80211_ATTR_KEY_SEQ
] = { .type
= NLA_BINARY
, .len
= 8 },
82 [NL80211_ATTR_BEACON_INTERVAL
] = { .type
= NLA_U32
},
83 [NL80211_ATTR_DTIM_PERIOD
] = { .type
= NLA_U32
},
84 [NL80211_ATTR_BEACON_HEAD
] = { .type
= NLA_BINARY
,
85 .len
= IEEE80211_MAX_DATA_LEN
},
86 [NL80211_ATTR_BEACON_TAIL
] = { .type
= NLA_BINARY
,
87 .len
= IEEE80211_MAX_DATA_LEN
},
88 [NL80211_ATTR_STA_AID
] = { .type
= NLA_U16
},
89 [NL80211_ATTR_STA_FLAGS
] = { .type
= NLA_NESTED
},
90 [NL80211_ATTR_STA_LISTEN_INTERVAL
] = { .type
= NLA_U16
},
91 [NL80211_ATTR_STA_SUPPORTED_RATES
] = { .type
= NLA_BINARY
,
92 .len
= NL80211_MAX_SUPP_RATES
},
93 [NL80211_ATTR_STA_PLINK_ACTION
] = { .type
= NLA_U8
},
94 [NL80211_ATTR_STA_VLAN
] = { .type
= NLA_U32
},
95 [NL80211_ATTR_MNTR_FLAGS
] = { /* NLA_NESTED can't be empty */ },
96 [NL80211_ATTR_MESH_ID
] = { .type
= NLA_BINARY
,
97 .len
= IEEE80211_MAX_MESH_ID_LEN
},
98 [NL80211_ATTR_MPATH_NEXT_HOP
] = { .type
= NLA_U32
},
100 [NL80211_ATTR_REG_ALPHA2
] = { .type
= NLA_STRING
, .len
= 2 },
101 [NL80211_ATTR_REG_RULES
] = { .type
= NLA_NESTED
},
103 [NL80211_ATTR_BSS_CTS_PROT
] = { .type
= NLA_U8
},
104 [NL80211_ATTR_BSS_SHORT_PREAMBLE
] = { .type
= NLA_U8
},
105 [NL80211_ATTR_BSS_SHORT_SLOT_TIME
] = { .type
= NLA_U8
},
106 [NL80211_ATTR_BSS_BASIC_RATES
] = { .type
= NLA_BINARY
,
107 .len
= NL80211_MAX_SUPP_RATES
},
109 [NL80211_ATTR_MESH_PARAMS
] = { .type
= NLA_NESTED
},
111 [NL80211_ATTR_HT_CAPABILITY
] = { .type
= NLA_BINARY
,
112 .len
= NL80211_HT_CAPABILITY_LEN
},
114 [NL80211_ATTR_MGMT_SUBTYPE
] = { .type
= NLA_U8
},
115 [NL80211_ATTR_IE
] = { .type
= NLA_BINARY
,
116 .len
= IEEE80211_MAX_DATA_LEN
},
117 [NL80211_ATTR_SCAN_FREQUENCIES
] = { .type
= NLA_NESTED
},
118 [NL80211_ATTR_SCAN_SSIDS
] = { .type
= NLA_NESTED
},
120 [NL80211_ATTR_SSID
] = { .type
= NLA_BINARY
,
121 .len
= IEEE80211_MAX_SSID_LEN
},
122 [NL80211_ATTR_AUTH_TYPE
] = { .type
= NLA_U32
},
123 [NL80211_ATTR_REASON_CODE
] = { .type
= NLA_U16
},
124 [NL80211_ATTR_FREQ_FIXED
] = { .type
= NLA_FLAG
},
125 [NL80211_ATTR_TIMED_OUT
] = { .type
= NLA_FLAG
},
126 [NL80211_ATTR_USE_MFP
] = { .type
= NLA_U32
},
127 [NL80211_ATTR_STA_FLAGS2
] = {
128 .len
= sizeof(struct nl80211_sta_flag_update
),
130 [NL80211_ATTR_CONTROL_PORT
] = { .type
= NLA_FLAG
},
134 static bool is_valid_ie_attr(const struct nlattr
*attr
)
142 pos
= nla_data(attr
);
163 /* message building helper */
164 static inline void *nl80211hdr_put(struct sk_buff
*skb
, u32 pid
, u32 seq
,
167 /* since there is no private header just add the generic one */
168 return genlmsg_put(skb
, pid
, seq
, &nl80211_fam
, flags
, cmd
);
171 static int nl80211_msg_put_channel(struct sk_buff
*msg
,
172 struct ieee80211_channel
*chan
)
174 NLA_PUT_U32(msg
, NL80211_FREQUENCY_ATTR_FREQ
,
177 if (chan
->flags
& IEEE80211_CHAN_DISABLED
)
178 NLA_PUT_FLAG(msg
, NL80211_FREQUENCY_ATTR_DISABLED
);
179 if (chan
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
180 NLA_PUT_FLAG(msg
, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN
);
181 if (chan
->flags
& IEEE80211_CHAN_NO_IBSS
)
182 NLA_PUT_FLAG(msg
, NL80211_FREQUENCY_ATTR_NO_IBSS
);
183 if (chan
->flags
& IEEE80211_CHAN_RADAR
)
184 NLA_PUT_FLAG(msg
, NL80211_FREQUENCY_ATTR_RADAR
);
186 NLA_PUT_U32(msg
, NL80211_FREQUENCY_ATTR_MAX_TX_POWER
,
187 DBM_TO_MBM(chan
->max_power
));
195 /* netlink command implementations */
197 static int nl80211_send_wiphy(struct sk_buff
*msg
, u32 pid
, u32 seq
, int flags
,
198 struct cfg80211_registered_device
*dev
)
201 struct nlattr
*nl_bands
, *nl_band
;
202 struct nlattr
*nl_freqs
, *nl_freq
;
203 struct nlattr
*nl_rates
, *nl_rate
;
204 struct nlattr
*nl_modes
;
205 struct nlattr
*nl_cmds
;
206 enum ieee80211_band band
;
207 struct ieee80211_channel
*chan
;
208 struct ieee80211_rate
*rate
;
210 u16 ifmodes
= dev
->wiphy
.interface_modes
;
212 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_WIPHY
);
216 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, dev
->wiphy_idx
);
217 NLA_PUT_STRING(msg
, NL80211_ATTR_WIPHY_NAME
, wiphy_name(&dev
->wiphy
));
219 NLA_PUT_U8(msg
, NL80211_ATTR_WIPHY_RETRY_SHORT
,
220 dev
->wiphy
.retry_short
);
221 NLA_PUT_U8(msg
, NL80211_ATTR_WIPHY_RETRY_LONG
,
222 dev
->wiphy
.retry_long
);
223 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY_FRAG_THRESHOLD
,
224 dev
->wiphy
.frag_threshold
);
225 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY_RTS_THRESHOLD
,
226 dev
->wiphy
.rts_threshold
);
228 NLA_PUT_U8(msg
, NL80211_ATTR_MAX_NUM_SCAN_SSIDS
,
229 dev
->wiphy
.max_scan_ssids
);
230 NLA_PUT_U16(msg
, NL80211_ATTR_MAX_SCAN_IE_LEN
,
231 dev
->wiphy
.max_scan_ie_len
);
233 NLA_PUT(msg
, NL80211_ATTR_CIPHER_SUITES
,
234 sizeof(u32
) * dev
->wiphy
.n_cipher_suites
,
235 dev
->wiphy
.cipher_suites
);
237 nl_modes
= nla_nest_start(msg
, NL80211_ATTR_SUPPORTED_IFTYPES
);
239 goto nla_put_failure
;
244 NLA_PUT_FLAG(msg
, i
);
249 nla_nest_end(msg
, nl_modes
);
251 nl_bands
= nla_nest_start(msg
, NL80211_ATTR_WIPHY_BANDS
);
253 goto nla_put_failure
;
255 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
256 if (!dev
->wiphy
.bands
[band
])
259 nl_band
= nla_nest_start(msg
, band
);
261 goto nla_put_failure
;
264 if (dev
->wiphy
.bands
[band
]->ht_cap
.ht_supported
) {
265 NLA_PUT(msg
, NL80211_BAND_ATTR_HT_MCS_SET
,
266 sizeof(dev
->wiphy
.bands
[band
]->ht_cap
.mcs
),
267 &dev
->wiphy
.bands
[band
]->ht_cap
.mcs
);
268 NLA_PUT_U16(msg
, NL80211_BAND_ATTR_HT_CAPA
,
269 dev
->wiphy
.bands
[band
]->ht_cap
.cap
);
270 NLA_PUT_U8(msg
, NL80211_BAND_ATTR_HT_AMPDU_FACTOR
,
271 dev
->wiphy
.bands
[band
]->ht_cap
.ampdu_factor
);
272 NLA_PUT_U8(msg
, NL80211_BAND_ATTR_HT_AMPDU_DENSITY
,
273 dev
->wiphy
.bands
[band
]->ht_cap
.ampdu_density
);
276 /* add frequencies */
277 nl_freqs
= nla_nest_start(msg
, NL80211_BAND_ATTR_FREQS
);
279 goto nla_put_failure
;
281 for (i
= 0; i
< dev
->wiphy
.bands
[band
]->n_channels
; i
++) {
282 nl_freq
= nla_nest_start(msg
, i
);
284 goto nla_put_failure
;
286 chan
= &dev
->wiphy
.bands
[band
]->channels
[i
];
288 if (nl80211_msg_put_channel(msg
, chan
))
289 goto nla_put_failure
;
291 nla_nest_end(msg
, nl_freq
);
294 nla_nest_end(msg
, nl_freqs
);
297 nl_rates
= nla_nest_start(msg
, NL80211_BAND_ATTR_RATES
);
299 goto nla_put_failure
;
301 for (i
= 0; i
< dev
->wiphy
.bands
[band
]->n_bitrates
; i
++) {
302 nl_rate
= nla_nest_start(msg
, i
);
304 goto nla_put_failure
;
306 rate
= &dev
->wiphy
.bands
[band
]->bitrates
[i
];
307 NLA_PUT_U32(msg
, NL80211_BITRATE_ATTR_RATE
,
309 if (rate
->flags
& IEEE80211_RATE_SHORT_PREAMBLE
)
311 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE
);
313 nla_nest_end(msg
, nl_rate
);
316 nla_nest_end(msg
, nl_rates
);
318 nla_nest_end(msg
, nl_band
);
320 nla_nest_end(msg
, nl_bands
);
322 nl_cmds
= nla_nest_start(msg
, NL80211_ATTR_SUPPORTED_COMMANDS
);
324 goto nla_put_failure
;
329 if (dev->ops->op) { \
331 NLA_PUT_U32(msg, i, NL80211_CMD_ ## n); \
335 CMD(add_virtual_intf
, NEW_INTERFACE
);
336 CMD(change_virtual_intf
, SET_INTERFACE
);
337 CMD(add_key
, NEW_KEY
);
338 CMD(add_beacon
, NEW_BEACON
);
339 CMD(add_station
, NEW_STATION
);
340 CMD(add_mpath
, NEW_MPATH
);
341 CMD(set_mesh_params
, SET_MESH_PARAMS
);
342 CMD(change_bss
, SET_BSS
);
343 CMD(auth
, AUTHENTICATE
);
344 CMD(assoc
, ASSOCIATE
);
345 CMD(deauth
, DEAUTHENTICATE
);
346 CMD(disassoc
, DISASSOCIATE
);
347 CMD(join_ibss
, JOIN_IBSS
);
350 nla_nest_end(msg
, nl_cmds
);
352 return genlmsg_end(msg
, hdr
);
355 genlmsg_cancel(msg
, hdr
);
359 static int nl80211_dump_wiphy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
362 int start
= cb
->args
[0];
363 struct cfg80211_registered_device
*dev
;
365 mutex_lock(&cfg80211_mutex
);
366 list_for_each_entry(dev
, &cfg80211_drv_list
, list
) {
369 if (nl80211_send_wiphy(skb
, NETLINK_CB(cb
->skb
).pid
,
370 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
376 mutex_unlock(&cfg80211_mutex
);
383 static int nl80211_get_wiphy(struct sk_buff
*skb
, struct genl_info
*info
)
386 struct cfg80211_registered_device
*dev
;
388 dev
= cfg80211_get_dev_from_info(info
);
392 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
396 if (nl80211_send_wiphy(msg
, info
->snd_pid
, info
->snd_seq
, 0, dev
) < 0)
399 cfg80211_put_dev(dev
);
401 return genlmsg_unicast(msg
, info
->snd_pid
);
406 cfg80211_put_dev(dev
);
410 static const struct nla_policy txq_params_policy
[NL80211_TXQ_ATTR_MAX
+ 1] = {
411 [NL80211_TXQ_ATTR_QUEUE
] = { .type
= NLA_U8
},
412 [NL80211_TXQ_ATTR_TXOP
] = { .type
= NLA_U16
},
413 [NL80211_TXQ_ATTR_CWMIN
] = { .type
= NLA_U16
},
414 [NL80211_TXQ_ATTR_CWMAX
] = { .type
= NLA_U16
},
415 [NL80211_TXQ_ATTR_AIFS
] = { .type
= NLA_U8
},
418 static int parse_txq_params(struct nlattr
*tb
[],
419 struct ieee80211_txq_params
*txq_params
)
421 if (!tb
[NL80211_TXQ_ATTR_QUEUE
] || !tb
[NL80211_TXQ_ATTR_TXOP
] ||
422 !tb
[NL80211_TXQ_ATTR_CWMIN
] || !tb
[NL80211_TXQ_ATTR_CWMAX
] ||
423 !tb
[NL80211_TXQ_ATTR_AIFS
])
426 txq_params
->queue
= nla_get_u8(tb
[NL80211_TXQ_ATTR_QUEUE
]);
427 txq_params
->txop
= nla_get_u16(tb
[NL80211_TXQ_ATTR_TXOP
]);
428 txq_params
->cwmin
= nla_get_u16(tb
[NL80211_TXQ_ATTR_CWMIN
]);
429 txq_params
->cwmax
= nla_get_u16(tb
[NL80211_TXQ_ATTR_CWMAX
]);
430 txq_params
->aifs
= nla_get_u8(tb
[NL80211_TXQ_ATTR_AIFS
]);
435 static int nl80211_set_wiphy(struct sk_buff
*skb
, struct genl_info
*info
)
437 struct cfg80211_registered_device
*rdev
;
438 int result
= 0, rem_txq_params
= 0;
439 struct nlattr
*nl_txq_params
;
441 u8 retry_short
= 0, retry_long
= 0;
442 u32 frag_threshold
= 0, rts_threshold
= 0;
446 mutex_lock(&cfg80211_mutex
);
448 rdev
= __cfg80211_drv_from_info(info
);
450 mutex_unlock(&cfg80211_mutex
);
451 result
= PTR_ERR(rdev
);
455 mutex_lock(&rdev
->mtx
);
457 if (info
->attrs
[NL80211_ATTR_WIPHY_NAME
])
458 result
= cfg80211_dev_rename(
459 rdev
, nla_data(info
->attrs
[NL80211_ATTR_WIPHY_NAME
]));
461 mutex_unlock(&cfg80211_mutex
);
466 if (info
->attrs
[NL80211_ATTR_WIPHY_TXQ_PARAMS
]) {
467 struct ieee80211_txq_params txq_params
;
468 struct nlattr
*tb
[NL80211_TXQ_ATTR_MAX
+ 1];
470 if (!rdev
->ops
->set_txq_params
) {
471 result
= -EOPNOTSUPP
;
475 nla_for_each_nested(nl_txq_params
,
476 info
->attrs
[NL80211_ATTR_WIPHY_TXQ_PARAMS
],
478 nla_parse(tb
, NL80211_TXQ_ATTR_MAX
,
479 nla_data(nl_txq_params
),
480 nla_len(nl_txq_params
),
482 result
= parse_txq_params(tb
, &txq_params
);
486 result
= rdev
->ops
->set_txq_params(&rdev
->wiphy
,
493 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
494 enum nl80211_channel_type channel_type
= NL80211_CHAN_NO_HT
;
495 struct ieee80211_channel
*chan
;
496 struct ieee80211_sta_ht_cap
*ht_cap
;
499 if (!rdev
->ops
->set_channel
) {
500 result
= -EOPNOTSUPP
;
506 if (info
->attrs
[NL80211_ATTR_WIPHY_CHANNEL_TYPE
]) {
507 channel_type
= nla_get_u32(info
->attrs
[
508 NL80211_ATTR_WIPHY_CHANNEL_TYPE
]);
509 if (channel_type
!= NL80211_CHAN_NO_HT
&&
510 channel_type
!= NL80211_CHAN_HT20
&&
511 channel_type
!= NL80211_CHAN_HT40PLUS
&&
512 channel_type
!= NL80211_CHAN_HT40MINUS
)
516 freq
= nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]);
517 chan
= ieee80211_get_channel(&rdev
->wiphy
, freq
);
519 /* Primary channel not allowed */
520 if (!chan
|| chan
->flags
& IEEE80211_CHAN_DISABLED
)
523 if (channel_type
== NL80211_CHAN_HT40MINUS
&&
524 (chan
->flags
& IEEE80211_CHAN_NO_HT40MINUS
))
526 else if (channel_type
== NL80211_CHAN_HT40PLUS
&&
527 (chan
->flags
& IEEE80211_CHAN_NO_HT40PLUS
))
531 * At this point we know if that if HT40 was requested
532 * we are allowed to use it and the extension channel
536 ht_cap
= &rdev
->wiphy
.bands
[chan
->band
]->ht_cap
;
538 /* no HT capabilities or intolerant */
539 if (channel_type
!= NL80211_CHAN_NO_HT
) {
540 if (!ht_cap
->ht_supported
)
542 if (!(ht_cap
->cap
& IEEE80211_HT_CAP_SUP_WIDTH_20_40
) ||
543 (ht_cap
->cap
& IEEE80211_HT_CAP_40MHZ_INTOLERANT
))
547 result
= rdev
->ops
->set_channel(&rdev
->wiphy
, chan
,
555 if (info
->attrs
[NL80211_ATTR_WIPHY_RETRY_SHORT
]) {
556 retry_short
= nla_get_u8(
557 info
->attrs
[NL80211_ATTR_WIPHY_RETRY_SHORT
]);
558 if (retry_short
== 0) {
562 changed
|= WIPHY_PARAM_RETRY_SHORT
;
565 if (info
->attrs
[NL80211_ATTR_WIPHY_RETRY_LONG
]) {
566 retry_long
= nla_get_u8(
567 info
->attrs
[NL80211_ATTR_WIPHY_RETRY_LONG
]);
568 if (retry_long
== 0) {
572 changed
|= WIPHY_PARAM_RETRY_LONG
;
575 if (info
->attrs
[NL80211_ATTR_WIPHY_FRAG_THRESHOLD
]) {
576 frag_threshold
= nla_get_u32(
577 info
->attrs
[NL80211_ATTR_WIPHY_FRAG_THRESHOLD
]);
578 if (frag_threshold
< 256) {
582 if (frag_threshold
!= (u32
) -1) {
584 * Fragments (apart from the last one) are required to
585 * have even length. Make the fragmentation code
586 * simpler by stripping LSB should someone try to use
587 * odd threshold value.
589 frag_threshold
&= ~0x1;
591 changed
|= WIPHY_PARAM_FRAG_THRESHOLD
;
594 if (info
->attrs
[NL80211_ATTR_WIPHY_RTS_THRESHOLD
]) {
595 rts_threshold
= nla_get_u32(
596 info
->attrs
[NL80211_ATTR_WIPHY_RTS_THRESHOLD
]);
597 changed
|= WIPHY_PARAM_RTS_THRESHOLD
;
601 u8 old_retry_short
, old_retry_long
;
602 u32 old_frag_threshold
, old_rts_threshold
;
604 if (!rdev
->ops
->set_wiphy_params
) {
605 result
= -EOPNOTSUPP
;
609 old_retry_short
= rdev
->wiphy
.retry_short
;
610 old_retry_long
= rdev
->wiphy
.retry_long
;
611 old_frag_threshold
= rdev
->wiphy
.frag_threshold
;
612 old_rts_threshold
= rdev
->wiphy
.rts_threshold
;
614 if (changed
& WIPHY_PARAM_RETRY_SHORT
)
615 rdev
->wiphy
.retry_short
= retry_short
;
616 if (changed
& WIPHY_PARAM_RETRY_LONG
)
617 rdev
->wiphy
.retry_long
= retry_long
;
618 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
)
619 rdev
->wiphy
.frag_threshold
= frag_threshold
;
620 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
)
621 rdev
->wiphy
.rts_threshold
= rts_threshold
;
623 result
= rdev
->ops
->set_wiphy_params(&rdev
->wiphy
, changed
);
625 rdev
->wiphy
.retry_short
= old_retry_short
;
626 rdev
->wiphy
.retry_long
= old_retry_long
;
627 rdev
->wiphy
.frag_threshold
= old_frag_threshold
;
628 rdev
->wiphy
.rts_threshold
= old_rts_threshold
;
633 mutex_unlock(&rdev
->mtx
);
640 static int nl80211_send_iface(struct sk_buff
*msg
, u32 pid
, u32 seq
, int flags
,
641 struct cfg80211_registered_device
*rdev
,
642 struct net_device
*dev
)
646 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_INTERFACE
);
650 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
651 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
652 NLA_PUT_STRING(msg
, NL80211_ATTR_IFNAME
, dev
->name
);
653 NLA_PUT_U32(msg
, NL80211_ATTR_IFTYPE
, dev
->ieee80211_ptr
->iftype
);
654 return genlmsg_end(msg
, hdr
);
657 genlmsg_cancel(msg
, hdr
);
661 static int nl80211_dump_interface(struct sk_buff
*skb
, struct netlink_callback
*cb
)
665 int wp_start
= cb
->args
[0];
666 int if_start
= cb
->args
[1];
667 struct cfg80211_registered_device
*dev
;
668 struct wireless_dev
*wdev
;
670 mutex_lock(&cfg80211_mutex
);
671 list_for_each_entry(dev
, &cfg80211_drv_list
, list
) {
672 if (wp_idx
< wp_start
) {
678 mutex_lock(&dev
->devlist_mtx
);
679 list_for_each_entry(wdev
, &dev
->netdev_list
, list
) {
680 if (if_idx
< if_start
) {
684 if (nl80211_send_iface(skb
, NETLINK_CB(cb
->skb
).pid
,
685 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
686 dev
, wdev
->netdev
) < 0) {
687 mutex_unlock(&dev
->devlist_mtx
);
692 mutex_unlock(&dev
->devlist_mtx
);
697 mutex_unlock(&cfg80211_mutex
);
699 cb
->args
[0] = wp_idx
;
700 cb
->args
[1] = if_idx
;
705 static int nl80211_get_interface(struct sk_buff
*skb
, struct genl_info
*info
)
708 struct cfg80211_registered_device
*dev
;
709 struct net_device
*netdev
;
712 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &dev
, &netdev
);
716 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
720 if (nl80211_send_iface(msg
, info
->snd_pid
, info
->snd_seq
, 0,
725 cfg80211_put_dev(dev
);
727 return genlmsg_unicast(msg
, info
->snd_pid
);
733 cfg80211_put_dev(dev
);
737 static const struct nla_policy mntr_flags_policy
[NL80211_MNTR_FLAG_MAX
+ 1] = {
738 [NL80211_MNTR_FLAG_FCSFAIL
] = { .type
= NLA_FLAG
},
739 [NL80211_MNTR_FLAG_PLCPFAIL
] = { .type
= NLA_FLAG
},
740 [NL80211_MNTR_FLAG_CONTROL
] = { .type
= NLA_FLAG
},
741 [NL80211_MNTR_FLAG_OTHER_BSS
] = { .type
= NLA_FLAG
},
742 [NL80211_MNTR_FLAG_COOK_FRAMES
] = { .type
= NLA_FLAG
},
745 static int parse_monitor_flags(struct nlattr
*nla
, u32
*mntrflags
)
747 struct nlattr
*flags
[NL80211_MNTR_FLAG_MAX
+ 1];
755 if (nla_parse_nested(flags
, NL80211_MNTR_FLAG_MAX
,
756 nla
, mntr_flags_policy
))
759 for (flag
= 1; flag
<= NL80211_MNTR_FLAG_MAX
; flag
++)
761 *mntrflags
|= (1<<flag
);
766 static int nl80211_set_interface(struct sk_buff
*skb
, struct genl_info
*info
)
768 struct cfg80211_registered_device
*drv
;
769 struct vif_params params
;
771 enum nl80211_iftype otype
, ntype
;
772 struct net_device
*dev
;
773 u32 _flags
, *flags
= NULL
;
776 memset(¶ms
, 0, sizeof(params
));
780 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
784 ifindex
= dev
->ifindex
;
785 otype
= ntype
= dev
->ieee80211_ptr
->iftype
;
788 if (info
->attrs
[NL80211_ATTR_IFTYPE
]) {
789 ntype
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFTYPE
]);
792 if (ntype
> NL80211_IFTYPE_MAX
) {
798 if (!drv
->ops
->change_virtual_intf
||
799 !(drv
->wiphy
.interface_modes
& (1 << ntype
))) {
804 if (info
->attrs
[NL80211_ATTR_MESH_ID
]) {
805 if (ntype
!= NL80211_IFTYPE_MESH_POINT
) {
809 params
.mesh_id
= nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]);
810 params
.mesh_id_len
= nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
814 if (info
->attrs
[NL80211_ATTR_MNTR_FLAGS
]) {
815 if (ntype
!= NL80211_IFTYPE_MONITOR
) {
819 err
= parse_monitor_flags(info
->attrs
[NL80211_ATTR_MNTR_FLAGS
],
829 err
= drv
->ops
->change_virtual_intf(&drv
->wiphy
, ifindex
,
830 ntype
, flags
, ¶ms
);
834 dev
= __dev_get_by_index(&init_net
, ifindex
);
835 WARN_ON(!dev
|| (!err
&& dev
->ieee80211_ptr
->iftype
!= ntype
));
837 if (dev
&& !err
&& (ntype
!= otype
)) {
838 if (otype
== NL80211_IFTYPE_ADHOC
)
839 cfg80211_clear_ibss(dev
, false);
843 cfg80211_put_dev(drv
);
849 static int nl80211_new_interface(struct sk_buff
*skb
, struct genl_info
*info
)
851 struct cfg80211_registered_device
*drv
;
852 struct vif_params params
;
854 enum nl80211_iftype type
= NL80211_IFTYPE_UNSPECIFIED
;
857 memset(¶ms
, 0, sizeof(params
));
859 if (!info
->attrs
[NL80211_ATTR_IFNAME
])
862 if (info
->attrs
[NL80211_ATTR_IFTYPE
]) {
863 type
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFTYPE
]);
864 if (type
> NL80211_IFTYPE_MAX
)
870 drv
= cfg80211_get_dev_from_info(info
);
876 if (!drv
->ops
->add_virtual_intf
||
877 !(drv
->wiphy
.interface_modes
& (1 << type
))) {
882 if (type
== NL80211_IFTYPE_MESH_POINT
&&
883 info
->attrs
[NL80211_ATTR_MESH_ID
]) {
884 params
.mesh_id
= nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]);
885 params
.mesh_id_len
= nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
888 err
= parse_monitor_flags(type
== NL80211_IFTYPE_MONITOR
?
889 info
->attrs
[NL80211_ATTR_MNTR_FLAGS
] : NULL
,
891 err
= drv
->ops
->add_virtual_intf(&drv
->wiphy
,
892 nla_data(info
->attrs
[NL80211_ATTR_IFNAME
]),
893 type
, err
? NULL
: &flags
, ¶ms
);
896 cfg80211_put_dev(drv
);
902 static int nl80211_del_interface(struct sk_buff
*skb
, struct genl_info
*info
)
904 struct cfg80211_registered_device
*drv
;
906 struct net_device
*dev
;
910 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
913 ifindex
= dev
->ifindex
;
916 if (!drv
->ops
->del_virtual_intf
) {
921 err
= drv
->ops
->del_virtual_intf(&drv
->wiphy
, ifindex
);
924 cfg80211_put_dev(drv
);
930 struct get_key_cookie
{
935 static void get_key_callback(void *c
, struct key_params
*params
)
937 struct get_key_cookie
*cookie
= c
;
940 NLA_PUT(cookie
->msg
, NL80211_ATTR_KEY_DATA
,
941 params
->key_len
, params
->key
);
944 NLA_PUT(cookie
->msg
, NL80211_ATTR_KEY_SEQ
,
945 params
->seq_len
, params
->seq
);
948 NLA_PUT_U32(cookie
->msg
, NL80211_ATTR_KEY_CIPHER
,
956 static int nl80211_get_key(struct sk_buff
*skb
, struct genl_info
*info
)
958 struct cfg80211_registered_device
*drv
;
960 struct net_device
*dev
;
963 struct get_key_cookie cookie
= {
969 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
970 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
975 if (info
->attrs
[NL80211_ATTR_MAC
])
976 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
980 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
984 if (!drv
->ops
->get_key
) {
989 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
995 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
996 NL80211_CMD_NEW_KEY
);
1005 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
1006 NLA_PUT_U8(msg
, NL80211_ATTR_KEY_IDX
, key_idx
);
1008 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
);
1010 err
= drv
->ops
->get_key(&drv
->wiphy
, dev
, key_idx
, mac_addr
,
1011 &cookie
, get_key_callback
);
1017 goto nla_put_failure
;
1019 genlmsg_end(msg
, hdr
);
1020 err
= genlmsg_unicast(msg
, info
->snd_pid
);
1027 cfg80211_put_dev(drv
);
1035 static int nl80211_set_key(struct sk_buff
*skb
, struct genl_info
*info
)
1037 struct cfg80211_registered_device
*drv
;
1039 struct net_device
*dev
;
1041 int (*func
)(struct wiphy
*wiphy
, struct net_device
*netdev
,
1044 if (!info
->attrs
[NL80211_ATTR_KEY_IDX
])
1047 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
1049 if (info
->attrs
[NL80211_ATTR_KEY_DEFAULT_MGMT
]) {
1050 if (key_idx
< 4 || key_idx
> 5)
1052 } else if (key_idx
> 3)
1055 /* currently only support setting default key */
1056 if (!info
->attrs
[NL80211_ATTR_KEY_DEFAULT
] &&
1057 !info
->attrs
[NL80211_ATTR_KEY_DEFAULT_MGMT
])
1062 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1066 if (info
->attrs
[NL80211_ATTR_KEY_DEFAULT
])
1067 func
= drv
->ops
->set_default_key
;
1069 func
= drv
->ops
->set_default_mgmt_key
;
1076 err
= func(&drv
->wiphy
, dev
, key_idx
);
1077 #ifdef CONFIG_WIRELESS_EXT
1079 if (func
== drv
->ops
->set_default_key
)
1080 dev
->ieee80211_ptr
->wext
.default_key
= key_idx
;
1082 dev
->ieee80211_ptr
->wext
.default_mgmt_key
= key_idx
;
1087 cfg80211_put_dev(drv
);
1096 static int nl80211_new_key(struct sk_buff
*skb
, struct genl_info
*info
)
1098 struct cfg80211_registered_device
*drv
;
1100 struct net_device
*dev
;
1101 struct key_params params
;
1103 u8
*mac_addr
= NULL
;
1105 memset(¶ms
, 0, sizeof(params
));
1107 if (!info
->attrs
[NL80211_ATTR_KEY_CIPHER
])
1110 if (info
->attrs
[NL80211_ATTR_KEY_DATA
]) {
1111 params
.key
= nla_data(info
->attrs
[NL80211_ATTR_KEY_DATA
]);
1112 params
.key_len
= nla_len(info
->attrs
[NL80211_ATTR_KEY_DATA
]);
1115 if (info
->attrs
[NL80211_ATTR_KEY_SEQ
]) {
1116 params
.seq
= nla_data(info
->attrs
[NL80211_ATTR_KEY_SEQ
]);
1117 params
.seq_len
= nla_len(info
->attrs
[NL80211_ATTR_KEY_SEQ
]);
1120 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
1121 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
1123 params
.cipher
= nla_get_u32(info
->attrs
[NL80211_ATTR_KEY_CIPHER
]);
1125 if (info
->attrs
[NL80211_ATTR_MAC
])
1126 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1128 if (cfg80211_validate_key_settings(¶ms
, key_idx
, mac_addr
))
1133 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1137 for (i
= 0; i
< drv
->wiphy
.n_cipher_suites
; i
++)
1138 if (params
.cipher
== drv
->wiphy
.cipher_suites
[i
])
1140 if (i
== drv
->wiphy
.n_cipher_suites
) {
1145 if (!drv
->ops
->add_key
) {
1150 err
= drv
->ops
->add_key(&drv
->wiphy
, dev
, key_idx
, mac_addr
, ¶ms
);
1153 cfg80211_put_dev(drv
);
1161 static int nl80211_del_key(struct sk_buff
*skb
, struct genl_info
*info
)
1163 struct cfg80211_registered_device
*drv
;
1165 struct net_device
*dev
;
1167 u8
*mac_addr
= NULL
;
1169 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
1170 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
1175 if (info
->attrs
[NL80211_ATTR_MAC
])
1176 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1180 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1184 if (!drv
->ops
->del_key
) {
1189 err
= drv
->ops
->del_key(&drv
->wiphy
, dev
, key_idx
, mac_addr
);
1191 #ifdef CONFIG_WIRELESS_EXT
1193 if (key_idx
== dev
->ieee80211_ptr
->wext
.default_key
)
1194 dev
->ieee80211_ptr
->wext
.default_key
= -1;
1195 else if (key_idx
== dev
->ieee80211_ptr
->wext
.default_mgmt_key
)
1196 dev
->ieee80211_ptr
->wext
.default_mgmt_key
= -1;
1201 cfg80211_put_dev(drv
);
1210 static int nl80211_addset_beacon(struct sk_buff
*skb
, struct genl_info
*info
)
1212 int (*call
)(struct wiphy
*wiphy
, struct net_device
*dev
,
1213 struct beacon_parameters
*info
);
1214 struct cfg80211_registered_device
*drv
;
1216 struct net_device
*dev
;
1217 struct beacon_parameters params
;
1220 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]))
1225 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1229 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
1234 switch (info
->genlhdr
->cmd
) {
1235 case NL80211_CMD_NEW_BEACON
:
1236 /* these are required for NEW_BEACON */
1237 if (!info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
] ||
1238 !info
->attrs
[NL80211_ATTR_DTIM_PERIOD
] ||
1239 !info
->attrs
[NL80211_ATTR_BEACON_HEAD
]) {
1244 call
= drv
->ops
->add_beacon
;
1246 case NL80211_CMD_SET_BEACON
:
1247 call
= drv
->ops
->set_beacon
;
1260 memset(¶ms
, 0, sizeof(params
));
1262 if (info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]) {
1264 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
1268 if (info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]) {
1269 params
.dtim_period
=
1270 nla_get_u32(info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]);
1274 if (info
->attrs
[NL80211_ATTR_BEACON_HEAD
]) {
1275 params
.head
= nla_data(info
->attrs
[NL80211_ATTR_BEACON_HEAD
]);
1277 nla_len(info
->attrs
[NL80211_ATTR_BEACON_HEAD
]);
1281 if (info
->attrs
[NL80211_ATTR_BEACON_TAIL
]) {
1282 params
.tail
= nla_data(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]);
1284 nla_len(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]);
1293 err
= call(&drv
->wiphy
, dev
, ¶ms
);
1296 cfg80211_put_dev(drv
);
1304 static int nl80211_del_beacon(struct sk_buff
*skb
, struct genl_info
*info
)
1306 struct cfg80211_registered_device
*drv
;
1308 struct net_device
*dev
;
1312 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1316 if (!drv
->ops
->del_beacon
) {
1321 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
1325 err
= drv
->ops
->del_beacon(&drv
->wiphy
, dev
);
1328 cfg80211_put_dev(drv
);
1336 static const struct nla_policy sta_flags_policy
[NL80211_STA_FLAG_MAX
+ 1] = {
1337 [NL80211_STA_FLAG_AUTHORIZED
] = { .type
= NLA_FLAG
},
1338 [NL80211_STA_FLAG_SHORT_PREAMBLE
] = { .type
= NLA_FLAG
},
1339 [NL80211_STA_FLAG_WME
] = { .type
= NLA_FLAG
},
1340 [NL80211_STA_FLAG_MFP
] = { .type
= NLA_FLAG
},
1343 static int parse_station_flags(struct genl_info
*info
,
1344 struct station_parameters
*params
)
1346 struct nlattr
*flags
[NL80211_STA_FLAG_MAX
+ 1];
1351 * Try parsing the new attribute first so userspace
1352 * can specify both for older kernels.
1354 nla
= info
->attrs
[NL80211_ATTR_STA_FLAGS2
];
1356 struct nl80211_sta_flag_update
*sta_flags
;
1358 sta_flags
= nla_data(nla
);
1359 params
->sta_flags_mask
= sta_flags
->mask
;
1360 params
->sta_flags_set
= sta_flags
->set
;
1361 if ((params
->sta_flags_mask
|
1362 params
->sta_flags_set
) & BIT(__NL80211_STA_FLAG_INVALID
))
1367 /* if present, parse the old attribute */
1369 nla
= info
->attrs
[NL80211_ATTR_STA_FLAGS
];
1373 if (nla_parse_nested(flags
, NL80211_STA_FLAG_MAX
,
1374 nla
, sta_flags_policy
))
1377 params
->sta_flags_mask
= (1 << __NL80211_STA_FLAG_AFTER_LAST
) - 1;
1378 params
->sta_flags_mask
&= ~1;
1380 for (flag
= 1; flag
<= NL80211_STA_FLAG_MAX
; flag
++)
1382 params
->sta_flags_set
|= (1<<flag
);
1387 static u16
nl80211_calculate_bitrate(struct rate_info
*rate
)
1389 int modulation
, streams
, bitrate
;
1391 if (!(rate
->flags
& RATE_INFO_FLAGS_MCS
))
1392 return rate
->legacy
;
1394 /* the formula below does only work for MCS values smaller than 32 */
1395 if (rate
->mcs
>= 32)
1398 modulation
= rate
->mcs
& 7;
1399 streams
= (rate
->mcs
>> 3) + 1;
1401 bitrate
= (rate
->flags
& RATE_INFO_FLAGS_40_MHZ_WIDTH
) ?
1405 bitrate
*= (modulation
+ 1);
1406 else if (modulation
== 4)
1407 bitrate
*= (modulation
+ 2);
1409 bitrate
*= (modulation
+ 3);
1413 if (rate
->flags
& RATE_INFO_FLAGS_SHORT_GI
)
1414 bitrate
= (bitrate
/ 9) * 10;
1416 /* do NOT round down here */
1417 return (bitrate
+ 50000) / 100000;
1420 static int nl80211_send_station(struct sk_buff
*msg
, u32 pid
, u32 seq
,
1421 int flags
, struct net_device
*dev
,
1422 u8
*mac_addr
, struct station_info
*sinfo
)
1425 struct nlattr
*sinfoattr
, *txrate
;
1428 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_STATION
);
1432 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
1433 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
);
1435 sinfoattr
= nla_nest_start(msg
, NL80211_ATTR_STA_INFO
);
1437 goto nla_put_failure
;
1438 if (sinfo
->filled
& STATION_INFO_INACTIVE_TIME
)
1439 NLA_PUT_U32(msg
, NL80211_STA_INFO_INACTIVE_TIME
,
1440 sinfo
->inactive_time
);
1441 if (sinfo
->filled
& STATION_INFO_RX_BYTES
)
1442 NLA_PUT_U32(msg
, NL80211_STA_INFO_RX_BYTES
,
1444 if (sinfo
->filled
& STATION_INFO_TX_BYTES
)
1445 NLA_PUT_U32(msg
, NL80211_STA_INFO_TX_BYTES
,
1447 if (sinfo
->filled
& STATION_INFO_LLID
)
1448 NLA_PUT_U16(msg
, NL80211_STA_INFO_LLID
,
1450 if (sinfo
->filled
& STATION_INFO_PLID
)
1451 NLA_PUT_U16(msg
, NL80211_STA_INFO_PLID
,
1453 if (sinfo
->filled
& STATION_INFO_PLINK_STATE
)
1454 NLA_PUT_U8(msg
, NL80211_STA_INFO_PLINK_STATE
,
1455 sinfo
->plink_state
);
1456 if (sinfo
->filled
& STATION_INFO_SIGNAL
)
1457 NLA_PUT_U8(msg
, NL80211_STA_INFO_SIGNAL
,
1459 if (sinfo
->filled
& STATION_INFO_TX_BITRATE
) {
1460 txrate
= nla_nest_start(msg
, NL80211_STA_INFO_TX_BITRATE
);
1462 goto nla_put_failure
;
1464 /* nl80211_calculate_bitrate will return 0 for mcs >= 32 */
1465 bitrate
= nl80211_calculate_bitrate(&sinfo
->txrate
);
1467 NLA_PUT_U16(msg
, NL80211_RATE_INFO_BITRATE
, bitrate
);
1469 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_MCS
)
1470 NLA_PUT_U8(msg
, NL80211_RATE_INFO_MCS
,
1472 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_40_MHZ_WIDTH
)
1473 NLA_PUT_FLAG(msg
, NL80211_RATE_INFO_40_MHZ_WIDTH
);
1474 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_SHORT_GI
)
1475 NLA_PUT_FLAG(msg
, NL80211_RATE_INFO_SHORT_GI
);
1477 nla_nest_end(msg
, txrate
);
1479 if (sinfo
->filled
& STATION_INFO_RX_PACKETS
)
1480 NLA_PUT_U32(msg
, NL80211_STA_INFO_RX_PACKETS
,
1482 if (sinfo
->filled
& STATION_INFO_TX_PACKETS
)
1483 NLA_PUT_U32(msg
, NL80211_STA_INFO_TX_PACKETS
,
1485 nla_nest_end(msg
, sinfoattr
);
1487 return genlmsg_end(msg
, hdr
);
1490 genlmsg_cancel(msg
, hdr
);
1494 static int nl80211_dump_station(struct sk_buff
*skb
,
1495 struct netlink_callback
*cb
)
1497 struct station_info sinfo
;
1498 struct cfg80211_registered_device
*dev
;
1499 struct net_device
*netdev
;
1500 u8 mac_addr
[ETH_ALEN
];
1501 int ifidx
= cb
->args
[0];
1502 int sta_idx
= cb
->args
[1];
1506 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
1507 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
1512 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
1515 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
1522 netdev
= __dev_get_by_index(&init_net
, ifidx
);
1528 dev
= cfg80211_get_dev_from_ifindex(ifidx
);
1534 if (!dev
->ops
->dump_station
) {
1540 err
= dev
->ops
->dump_station(&dev
->wiphy
, netdev
, sta_idx
,
1547 if (nl80211_send_station(skb
,
1548 NETLINK_CB(cb
->skb
).pid
,
1549 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
1559 cb
->args
[1] = sta_idx
;
1562 cfg80211_put_dev(dev
);
1569 static int nl80211_get_station(struct sk_buff
*skb
, struct genl_info
*info
)
1571 struct cfg80211_registered_device
*drv
;
1573 struct net_device
*dev
;
1574 struct station_info sinfo
;
1575 struct sk_buff
*msg
;
1576 u8
*mac_addr
= NULL
;
1578 memset(&sinfo
, 0, sizeof(sinfo
));
1580 if (!info
->attrs
[NL80211_ATTR_MAC
])
1583 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1587 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1591 if (!drv
->ops
->get_station
) {
1596 err
= drv
->ops
->get_station(&drv
->wiphy
, dev
, mac_addr
, &sinfo
);
1600 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1604 if (nl80211_send_station(msg
, info
->snd_pid
, info
->snd_seq
, 0,
1605 dev
, mac_addr
, &sinfo
) < 0)
1608 err
= genlmsg_unicast(msg
, info
->snd_pid
);
1614 cfg80211_put_dev(drv
);
1623 * Get vlan interface making sure it is on the right wiphy.
1625 static int get_vlan(struct nlattr
*vlanattr
,
1626 struct cfg80211_registered_device
*rdev
,
1627 struct net_device
**vlan
)
1632 *vlan
= dev_get_by_index(&init_net
, nla_get_u32(vlanattr
));
1635 if (!(*vlan
)->ieee80211_ptr
)
1637 if ((*vlan
)->ieee80211_ptr
->wiphy
!= &rdev
->wiphy
)
1643 static int nl80211_set_station(struct sk_buff
*skb
, struct genl_info
*info
)
1645 struct cfg80211_registered_device
*drv
;
1647 struct net_device
*dev
;
1648 struct station_parameters params
;
1649 u8
*mac_addr
= NULL
;
1651 memset(¶ms
, 0, sizeof(params
));
1653 params
.listen_interval
= -1;
1655 if (info
->attrs
[NL80211_ATTR_STA_AID
])
1658 if (!info
->attrs
[NL80211_ATTR_MAC
])
1661 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1663 if (info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]) {
1664 params
.supported_rates
=
1665 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1666 params
.supported_rates_len
=
1667 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1670 if (info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
])
1671 params
.listen_interval
=
1672 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
]);
1674 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
])
1676 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]);
1678 if (parse_station_flags(info
, ¶ms
))
1681 if (info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
])
1682 params
.plink_action
=
1683 nla_get_u8(info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
]);
1687 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1691 err
= get_vlan(info
->attrs
[NL80211_ATTR_STA_VLAN
], drv
, ¶ms
.vlan
);
1695 /* validate settings */
1698 switch (dev
->ieee80211_ptr
->iftype
) {
1699 case NL80211_IFTYPE_AP
:
1700 case NL80211_IFTYPE_AP_VLAN
:
1701 /* disallow mesh-specific things */
1702 if (params
.plink_action
)
1705 case NL80211_IFTYPE_STATION
:
1706 /* disallow everything but AUTHORIZED flag */
1707 if (params
.plink_action
)
1711 if (params
.supported_rates
)
1715 if (params
.listen_interval
>= 0)
1717 if (params
.sta_flags_mask
& ~BIT(NL80211_STA_FLAG_AUTHORIZED
))
1720 case NL80211_IFTYPE_MESH_POINT
:
1721 /* disallow things mesh doesn't support */
1726 if (params
.listen_interval
>= 0)
1728 if (params
.supported_rates
)
1730 if (params
.sta_flags_mask
)
1740 if (!drv
->ops
->change_station
) {
1745 err
= drv
->ops
->change_station(&drv
->wiphy
, dev
, mac_addr
, ¶ms
);
1749 dev_put(params
.vlan
);
1750 cfg80211_put_dev(drv
);
1758 static int nl80211_new_station(struct sk_buff
*skb
, struct genl_info
*info
)
1760 struct cfg80211_registered_device
*drv
;
1762 struct net_device
*dev
;
1763 struct station_parameters params
;
1764 u8
*mac_addr
= NULL
;
1766 memset(¶ms
, 0, sizeof(params
));
1768 if (!info
->attrs
[NL80211_ATTR_MAC
])
1771 if (!info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
])
1774 if (!info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
])
1777 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1778 params
.supported_rates
=
1779 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1780 params
.supported_rates_len
=
1781 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1782 params
.listen_interval
=
1783 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
]);
1785 if (info
->attrs
[NL80211_ATTR_STA_AID
]) {
1786 params
.aid
= nla_get_u16(info
->attrs
[NL80211_ATTR_STA_AID
]);
1787 if (!params
.aid
|| params
.aid
> IEEE80211_MAX_AID
)
1791 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
])
1793 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]);
1795 if (parse_station_flags(info
, ¶ms
))
1800 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1804 err
= get_vlan(info
->attrs
[NL80211_ATTR_STA_VLAN
], drv
, ¶ms
.vlan
);
1808 /* validate settings */
1811 switch (dev
->ieee80211_ptr
->iftype
) {
1812 case NL80211_IFTYPE_AP
:
1813 case NL80211_IFTYPE_AP_VLAN
:
1814 /* all ok but must have AID */
1818 case NL80211_IFTYPE_MESH_POINT
:
1819 /* disallow things mesh doesn't support */
1826 if (params
.listen_interval
>= 0)
1828 if (params
.supported_rates
)
1830 if (params
.sta_flags_mask
)
1840 if (!drv
->ops
->add_station
) {
1845 if (!netif_running(dev
)) {
1850 err
= drv
->ops
->add_station(&drv
->wiphy
, dev
, mac_addr
, ¶ms
);
1854 dev_put(params
.vlan
);
1855 cfg80211_put_dev(drv
);
1863 static int nl80211_del_station(struct sk_buff
*skb
, struct genl_info
*info
)
1865 struct cfg80211_registered_device
*drv
;
1867 struct net_device
*dev
;
1868 u8
*mac_addr
= NULL
;
1870 if (info
->attrs
[NL80211_ATTR_MAC
])
1871 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1875 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1879 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
1880 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP_VLAN
&&
1881 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
1886 if (!drv
->ops
->del_station
) {
1891 err
= drv
->ops
->del_station(&drv
->wiphy
, dev
, mac_addr
);
1894 cfg80211_put_dev(drv
);
1902 static int nl80211_send_mpath(struct sk_buff
*msg
, u32 pid
, u32 seq
,
1903 int flags
, struct net_device
*dev
,
1904 u8
*dst
, u8
*next_hop
,
1905 struct mpath_info
*pinfo
)
1908 struct nlattr
*pinfoattr
;
1910 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_STATION
);
1914 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
1915 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, dst
);
1916 NLA_PUT(msg
, NL80211_ATTR_MPATH_NEXT_HOP
, ETH_ALEN
, next_hop
);
1918 pinfoattr
= nla_nest_start(msg
, NL80211_ATTR_MPATH_INFO
);
1920 goto nla_put_failure
;
1921 if (pinfo
->filled
& MPATH_INFO_FRAME_QLEN
)
1922 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_FRAME_QLEN
,
1924 if (pinfo
->filled
& MPATH_INFO_DSN
)
1925 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_DSN
,
1927 if (pinfo
->filled
& MPATH_INFO_METRIC
)
1928 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_METRIC
,
1930 if (pinfo
->filled
& MPATH_INFO_EXPTIME
)
1931 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_EXPTIME
,
1933 if (pinfo
->filled
& MPATH_INFO_FLAGS
)
1934 NLA_PUT_U8(msg
, NL80211_MPATH_INFO_FLAGS
,
1936 if (pinfo
->filled
& MPATH_INFO_DISCOVERY_TIMEOUT
)
1937 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT
,
1938 pinfo
->discovery_timeout
);
1939 if (pinfo
->filled
& MPATH_INFO_DISCOVERY_RETRIES
)
1940 NLA_PUT_U8(msg
, NL80211_MPATH_INFO_DISCOVERY_RETRIES
,
1941 pinfo
->discovery_retries
);
1943 nla_nest_end(msg
, pinfoattr
);
1945 return genlmsg_end(msg
, hdr
);
1948 genlmsg_cancel(msg
, hdr
);
1952 static int nl80211_dump_mpath(struct sk_buff
*skb
,
1953 struct netlink_callback
*cb
)
1955 struct mpath_info pinfo
;
1956 struct cfg80211_registered_device
*dev
;
1957 struct net_device
*netdev
;
1959 u8 next_hop
[ETH_ALEN
];
1960 int ifidx
= cb
->args
[0];
1961 int path_idx
= cb
->args
[1];
1965 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
1966 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
1971 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
1974 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
1981 netdev
= __dev_get_by_index(&init_net
, ifidx
);
1987 dev
= cfg80211_get_dev_from_ifindex(ifidx
);
1993 if (!dev
->ops
->dump_mpath
) {
1998 if (netdev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2004 err
= dev
->ops
->dump_mpath(&dev
->wiphy
, netdev
, path_idx
,
2005 dst
, next_hop
, &pinfo
);
2011 if (nl80211_send_mpath(skb
, NETLINK_CB(cb
->skb
).pid
,
2012 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
2013 netdev
, dst
, next_hop
,
2022 cb
->args
[1] = path_idx
;
2025 cfg80211_put_dev(dev
);
2032 static int nl80211_get_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2034 struct cfg80211_registered_device
*drv
;
2036 struct net_device
*dev
;
2037 struct mpath_info pinfo
;
2038 struct sk_buff
*msg
;
2040 u8 next_hop
[ETH_ALEN
];
2042 memset(&pinfo
, 0, sizeof(pinfo
));
2044 if (!info
->attrs
[NL80211_ATTR_MAC
])
2047 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2051 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2055 if (!drv
->ops
->get_mpath
) {
2060 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2065 err
= drv
->ops
->get_mpath(&drv
->wiphy
, dev
, dst
, next_hop
, &pinfo
);
2069 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2073 if (nl80211_send_mpath(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2074 dev
, dst
, next_hop
, &pinfo
) < 0)
2077 err
= genlmsg_unicast(msg
, info
->snd_pid
);
2083 cfg80211_put_dev(drv
);
2091 static int nl80211_set_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2093 struct cfg80211_registered_device
*drv
;
2095 struct net_device
*dev
;
2097 u8
*next_hop
= NULL
;
2099 if (!info
->attrs
[NL80211_ATTR_MAC
])
2102 if (!info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
])
2105 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2106 next_hop
= nla_data(info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
]);
2110 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2114 if (!drv
->ops
->change_mpath
) {
2119 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2124 if (!netif_running(dev
)) {
2129 err
= drv
->ops
->change_mpath(&drv
->wiphy
, dev
, dst
, next_hop
);
2132 cfg80211_put_dev(drv
);
2139 static int nl80211_new_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2141 struct cfg80211_registered_device
*drv
;
2143 struct net_device
*dev
;
2145 u8
*next_hop
= NULL
;
2147 if (!info
->attrs
[NL80211_ATTR_MAC
])
2150 if (!info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
])
2153 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2154 next_hop
= nla_data(info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
]);
2158 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2162 if (!drv
->ops
->add_mpath
) {
2167 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2172 if (!netif_running(dev
)) {
2177 err
= drv
->ops
->add_mpath(&drv
->wiphy
, dev
, dst
, next_hop
);
2180 cfg80211_put_dev(drv
);
2188 static int nl80211_del_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2190 struct cfg80211_registered_device
*drv
;
2192 struct net_device
*dev
;
2195 if (info
->attrs
[NL80211_ATTR_MAC
])
2196 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2200 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2204 if (!drv
->ops
->del_mpath
) {
2209 err
= drv
->ops
->del_mpath(&drv
->wiphy
, dev
, dst
);
2212 cfg80211_put_dev(drv
);
2220 static int nl80211_set_bss(struct sk_buff
*skb
, struct genl_info
*info
)
2222 struct cfg80211_registered_device
*drv
;
2224 struct net_device
*dev
;
2225 struct bss_parameters params
;
2227 memset(¶ms
, 0, sizeof(params
));
2228 /* default to not changing parameters */
2229 params
.use_cts_prot
= -1;
2230 params
.use_short_preamble
= -1;
2231 params
.use_short_slot_time
= -1;
2233 if (info
->attrs
[NL80211_ATTR_BSS_CTS_PROT
])
2234 params
.use_cts_prot
=
2235 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_CTS_PROT
]);
2236 if (info
->attrs
[NL80211_ATTR_BSS_SHORT_PREAMBLE
])
2237 params
.use_short_preamble
=
2238 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_SHORT_PREAMBLE
]);
2239 if (info
->attrs
[NL80211_ATTR_BSS_SHORT_SLOT_TIME
])
2240 params
.use_short_slot_time
=
2241 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_SHORT_SLOT_TIME
]);
2242 if (info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]) {
2243 params
.basic_rates
=
2244 nla_data(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
2245 params
.basic_rates_len
=
2246 nla_len(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
2251 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2255 if (!drv
->ops
->change_bss
) {
2260 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
2265 err
= drv
->ops
->change_bss(&drv
->wiphy
, dev
, ¶ms
);
2268 cfg80211_put_dev(drv
);
2276 static const struct nla_policy
2277 reg_rule_policy
[NL80211_REG_RULE_ATTR_MAX
+ 1] = {
2278 [NL80211_ATTR_REG_RULE_FLAGS
] = { .type
= NLA_U32
},
2279 [NL80211_ATTR_FREQ_RANGE_START
] = { .type
= NLA_U32
},
2280 [NL80211_ATTR_FREQ_RANGE_END
] = { .type
= NLA_U32
},
2281 [NL80211_ATTR_FREQ_RANGE_MAX_BW
] = { .type
= NLA_U32
},
2282 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
] = { .type
= NLA_U32
},
2283 [NL80211_ATTR_POWER_RULE_MAX_EIRP
] = { .type
= NLA_U32
},
2286 static int parse_reg_rule(struct nlattr
*tb
[],
2287 struct ieee80211_reg_rule
*reg_rule
)
2289 struct ieee80211_freq_range
*freq_range
= ®_rule
->freq_range
;
2290 struct ieee80211_power_rule
*power_rule
= ®_rule
->power_rule
;
2292 if (!tb
[NL80211_ATTR_REG_RULE_FLAGS
])
2294 if (!tb
[NL80211_ATTR_FREQ_RANGE_START
])
2296 if (!tb
[NL80211_ATTR_FREQ_RANGE_END
])
2298 if (!tb
[NL80211_ATTR_FREQ_RANGE_MAX_BW
])
2300 if (!tb
[NL80211_ATTR_POWER_RULE_MAX_EIRP
])
2303 reg_rule
->flags
= nla_get_u32(tb
[NL80211_ATTR_REG_RULE_FLAGS
]);
2305 freq_range
->start_freq_khz
=
2306 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_START
]);
2307 freq_range
->end_freq_khz
=
2308 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_END
]);
2309 freq_range
->max_bandwidth_khz
=
2310 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_MAX_BW
]);
2312 power_rule
->max_eirp
=
2313 nla_get_u32(tb
[NL80211_ATTR_POWER_RULE_MAX_EIRP
]);
2315 if (tb
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
])
2316 power_rule
->max_antenna_gain
=
2317 nla_get_u32(tb
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
]);
2322 static int nl80211_req_set_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2328 * You should only get this when cfg80211 hasn't yet initialized
2329 * completely when built-in to the kernel right between the time
2330 * window between nl80211_init() and regulatory_init(), if that is
2333 mutex_lock(&cfg80211_mutex
);
2334 if (unlikely(!cfg80211_regdomain
)) {
2335 mutex_unlock(&cfg80211_mutex
);
2336 return -EINPROGRESS
;
2338 mutex_unlock(&cfg80211_mutex
);
2340 if (!info
->attrs
[NL80211_ATTR_REG_ALPHA2
])
2343 data
= nla_data(info
->attrs
[NL80211_ATTR_REG_ALPHA2
]);
2345 #ifdef CONFIG_WIRELESS_OLD_REGULATORY
2346 /* We ignore world regdom requests with the old regdom setup */
2347 if (is_world_regdom(data
))
2351 r
= regulatory_hint_user(data
);
2356 static int nl80211_get_mesh_params(struct sk_buff
*skb
,
2357 struct genl_info
*info
)
2359 struct cfg80211_registered_device
*drv
;
2360 struct mesh_config cur_params
;
2362 struct net_device
*dev
;
2364 struct nlattr
*pinfoattr
;
2365 struct sk_buff
*msg
;
2369 /* Look up our device */
2370 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2374 if (!drv
->ops
->get_mesh_params
) {
2379 /* Get the mesh params */
2380 err
= drv
->ops
->get_mesh_params(&drv
->wiphy
, dev
, &cur_params
);
2384 /* Draw up a netlink message to send back */
2385 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2390 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2391 NL80211_CMD_GET_MESH_PARAMS
);
2393 goto nla_put_failure
;
2394 pinfoattr
= nla_nest_start(msg
, NL80211_ATTR_MESH_PARAMS
);
2396 goto nla_put_failure
;
2397 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
2398 NLA_PUT_U16(msg
, NL80211_MESHCONF_RETRY_TIMEOUT
,
2399 cur_params
.dot11MeshRetryTimeout
);
2400 NLA_PUT_U16(msg
, NL80211_MESHCONF_CONFIRM_TIMEOUT
,
2401 cur_params
.dot11MeshConfirmTimeout
);
2402 NLA_PUT_U16(msg
, NL80211_MESHCONF_HOLDING_TIMEOUT
,
2403 cur_params
.dot11MeshHoldingTimeout
);
2404 NLA_PUT_U16(msg
, NL80211_MESHCONF_MAX_PEER_LINKS
,
2405 cur_params
.dot11MeshMaxPeerLinks
);
2406 NLA_PUT_U8(msg
, NL80211_MESHCONF_MAX_RETRIES
,
2407 cur_params
.dot11MeshMaxRetries
);
2408 NLA_PUT_U8(msg
, NL80211_MESHCONF_TTL
,
2409 cur_params
.dot11MeshTTL
);
2410 NLA_PUT_U8(msg
, NL80211_MESHCONF_AUTO_OPEN_PLINKS
,
2411 cur_params
.auto_open_plinks
);
2412 NLA_PUT_U8(msg
, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
,
2413 cur_params
.dot11MeshHWMPmaxPREQretries
);
2414 NLA_PUT_U32(msg
, NL80211_MESHCONF_PATH_REFRESH_TIME
,
2415 cur_params
.path_refresh_time
);
2416 NLA_PUT_U16(msg
, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
,
2417 cur_params
.min_discovery_timeout
);
2418 NLA_PUT_U32(msg
, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
,
2419 cur_params
.dot11MeshHWMPactivePathTimeout
);
2420 NLA_PUT_U16(msg
, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
,
2421 cur_params
.dot11MeshHWMPpreqMinInterval
);
2422 NLA_PUT_U16(msg
, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
2423 cur_params
.dot11MeshHWMPnetDiameterTraversalTime
);
2424 nla_nest_end(msg
, pinfoattr
);
2425 genlmsg_end(msg
, hdr
);
2426 err
= genlmsg_unicast(msg
, info
->snd_pid
);
2430 genlmsg_cancel(msg
, hdr
);
2434 cfg80211_put_dev(drv
);
2442 #define FILL_IN_MESH_PARAM_IF_SET(table, cfg, param, mask, attr_num, nla_fn) \
2444 if (table[attr_num]) {\
2445 cfg.param = nla_fn(table[attr_num]); \
2446 mask |= (1 << (attr_num - 1)); \
2450 static struct nla_policy
2451 nl80211_meshconf_params_policy
[NL80211_MESHCONF_ATTR_MAX
+1] __read_mostly
= {
2452 [NL80211_MESHCONF_RETRY_TIMEOUT
] = { .type
= NLA_U16
},
2453 [NL80211_MESHCONF_CONFIRM_TIMEOUT
] = { .type
= NLA_U16
},
2454 [NL80211_MESHCONF_HOLDING_TIMEOUT
] = { .type
= NLA_U16
},
2455 [NL80211_MESHCONF_MAX_PEER_LINKS
] = { .type
= NLA_U16
},
2456 [NL80211_MESHCONF_MAX_RETRIES
] = { .type
= NLA_U8
},
2457 [NL80211_MESHCONF_TTL
] = { .type
= NLA_U8
},
2458 [NL80211_MESHCONF_AUTO_OPEN_PLINKS
] = { .type
= NLA_U8
},
2460 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
] = { .type
= NLA_U8
},
2461 [NL80211_MESHCONF_PATH_REFRESH_TIME
] = { .type
= NLA_U32
},
2462 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
] = { .type
= NLA_U16
},
2463 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
] = { .type
= NLA_U32
},
2464 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
] = { .type
= NLA_U16
},
2465 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
] = { .type
= NLA_U16
},
2468 static int nl80211_set_mesh_params(struct sk_buff
*skb
, struct genl_info
*info
)
2472 struct cfg80211_registered_device
*drv
;
2473 struct net_device
*dev
;
2474 struct mesh_config cfg
;
2475 struct nlattr
*tb
[NL80211_MESHCONF_ATTR_MAX
+ 1];
2476 struct nlattr
*parent_attr
;
2478 parent_attr
= info
->attrs
[NL80211_ATTR_MESH_PARAMS
];
2481 if (nla_parse_nested(tb
, NL80211_MESHCONF_ATTR_MAX
,
2482 parent_attr
, nl80211_meshconf_params_policy
))
2487 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2491 if (!drv
->ops
->set_mesh_params
) {
2496 /* This makes sure that there aren't more than 32 mesh config
2497 * parameters (otherwise our bitfield scheme would not work.) */
2498 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX
> 32);
2500 /* Fill in the params struct */
2502 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshRetryTimeout
,
2503 mask
, NL80211_MESHCONF_RETRY_TIMEOUT
, nla_get_u16
);
2504 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshConfirmTimeout
,
2505 mask
, NL80211_MESHCONF_CONFIRM_TIMEOUT
, nla_get_u16
);
2506 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHoldingTimeout
,
2507 mask
, NL80211_MESHCONF_HOLDING_TIMEOUT
, nla_get_u16
);
2508 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshMaxPeerLinks
,
2509 mask
, NL80211_MESHCONF_MAX_PEER_LINKS
, nla_get_u16
);
2510 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshMaxRetries
,
2511 mask
, NL80211_MESHCONF_MAX_RETRIES
, nla_get_u8
);
2512 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshTTL
,
2513 mask
, NL80211_MESHCONF_TTL
, nla_get_u8
);
2514 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, auto_open_plinks
,
2515 mask
, NL80211_MESHCONF_AUTO_OPEN_PLINKS
, nla_get_u8
);
2516 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPmaxPREQretries
,
2517 mask
, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
,
2519 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, path_refresh_time
,
2520 mask
, NL80211_MESHCONF_PATH_REFRESH_TIME
, nla_get_u32
);
2521 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, min_discovery_timeout
,
2522 mask
, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
,
2524 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPactivePathTimeout
,
2525 mask
, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
,
2527 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPpreqMinInterval
,
2528 mask
, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
,
2530 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
,
2531 dot11MeshHWMPnetDiameterTraversalTime
,
2532 mask
, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
2536 err
= drv
->ops
->set_mesh_params(&drv
->wiphy
, dev
, &cfg
, mask
);
2540 cfg80211_put_dev(drv
);
2548 #undef FILL_IN_MESH_PARAM_IF_SET
2550 static int nl80211_get_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2552 struct sk_buff
*msg
;
2554 struct nlattr
*nl_reg_rules
;
2558 mutex_lock(&cfg80211_mutex
);
2560 if (!cfg80211_regdomain
)
2563 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2569 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2570 NL80211_CMD_GET_REG
);
2572 goto nla_put_failure
;
2574 NLA_PUT_STRING(msg
, NL80211_ATTR_REG_ALPHA2
,
2575 cfg80211_regdomain
->alpha2
);
2577 nl_reg_rules
= nla_nest_start(msg
, NL80211_ATTR_REG_RULES
);
2579 goto nla_put_failure
;
2581 for (i
= 0; i
< cfg80211_regdomain
->n_reg_rules
; i
++) {
2582 struct nlattr
*nl_reg_rule
;
2583 const struct ieee80211_reg_rule
*reg_rule
;
2584 const struct ieee80211_freq_range
*freq_range
;
2585 const struct ieee80211_power_rule
*power_rule
;
2587 reg_rule
= &cfg80211_regdomain
->reg_rules
[i
];
2588 freq_range
= ®_rule
->freq_range
;
2589 power_rule
= ®_rule
->power_rule
;
2591 nl_reg_rule
= nla_nest_start(msg
, i
);
2593 goto nla_put_failure
;
2595 NLA_PUT_U32(msg
, NL80211_ATTR_REG_RULE_FLAGS
,
2597 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_START
,
2598 freq_range
->start_freq_khz
);
2599 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_END
,
2600 freq_range
->end_freq_khz
);
2601 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_MAX_BW
,
2602 freq_range
->max_bandwidth_khz
);
2603 NLA_PUT_U32(msg
, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
,
2604 power_rule
->max_antenna_gain
);
2605 NLA_PUT_U32(msg
, NL80211_ATTR_POWER_RULE_MAX_EIRP
,
2606 power_rule
->max_eirp
);
2608 nla_nest_end(msg
, nl_reg_rule
);
2611 nla_nest_end(msg
, nl_reg_rules
);
2613 genlmsg_end(msg
, hdr
);
2614 err
= genlmsg_unicast(msg
, info
->snd_pid
);
2618 genlmsg_cancel(msg
, hdr
);
2621 mutex_unlock(&cfg80211_mutex
);
2625 static int nl80211_set_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2627 struct nlattr
*tb
[NL80211_REG_RULE_ATTR_MAX
+ 1];
2628 struct nlattr
*nl_reg_rule
;
2629 char *alpha2
= NULL
;
2630 int rem_reg_rules
= 0, r
= 0;
2631 u32 num_rules
= 0, rule_idx
= 0, size_of_regd
;
2632 struct ieee80211_regdomain
*rd
= NULL
;
2634 if (!info
->attrs
[NL80211_ATTR_REG_ALPHA2
])
2637 if (!info
->attrs
[NL80211_ATTR_REG_RULES
])
2640 alpha2
= nla_data(info
->attrs
[NL80211_ATTR_REG_ALPHA2
]);
2642 nla_for_each_nested(nl_reg_rule
, info
->attrs
[NL80211_ATTR_REG_RULES
],
2645 if (num_rules
> NL80211_MAX_SUPP_REG_RULES
)
2649 mutex_lock(&cfg80211_mutex
);
2651 if (!reg_is_valid_request(alpha2
)) {
2656 size_of_regd
= sizeof(struct ieee80211_regdomain
) +
2657 (num_rules
* sizeof(struct ieee80211_reg_rule
));
2659 rd
= kzalloc(size_of_regd
, GFP_KERNEL
);
2665 rd
->n_reg_rules
= num_rules
;
2666 rd
->alpha2
[0] = alpha2
[0];
2667 rd
->alpha2
[1] = alpha2
[1];
2669 nla_for_each_nested(nl_reg_rule
, info
->attrs
[NL80211_ATTR_REG_RULES
],
2671 nla_parse(tb
, NL80211_REG_RULE_ATTR_MAX
,
2672 nla_data(nl_reg_rule
), nla_len(nl_reg_rule
),
2674 r
= parse_reg_rule(tb
, &rd
->reg_rules
[rule_idx
]);
2680 if (rule_idx
> NL80211_MAX_SUPP_REG_RULES
) {
2686 BUG_ON(rule_idx
!= num_rules
);
2690 mutex_unlock(&cfg80211_mutex
);
2695 mutex_unlock(&cfg80211_mutex
);
2700 static int nl80211_trigger_scan(struct sk_buff
*skb
, struct genl_info
*info
)
2702 struct cfg80211_registered_device
*drv
;
2703 struct net_device
*dev
;
2704 struct cfg80211_scan_request
*request
;
2705 struct cfg80211_ssid
*ssid
;
2706 struct ieee80211_channel
*channel
;
2707 struct nlattr
*attr
;
2708 struct wiphy
*wiphy
;
2709 int err
, tmp
, n_ssids
= 0, n_channels
= 0, i
;
2710 enum ieee80211_band band
;
2713 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
2718 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2722 wiphy
= &drv
->wiphy
;
2724 if (!drv
->ops
->scan
) {
2729 if (!netif_running(dev
)) {
2734 if (drv
->scan_req
) {
2739 if (info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
2740 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
], tmp
)
2747 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++)
2748 if (wiphy
->bands
[band
])
2749 n_channels
+= wiphy
->bands
[band
]->n_channels
;
2752 if (info
->attrs
[NL80211_ATTR_SCAN_SSIDS
])
2753 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_SSIDS
], tmp
)
2756 if (n_ssids
> wiphy
->max_scan_ssids
) {
2761 if (info
->attrs
[NL80211_ATTR_IE
])
2762 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
2766 if (ie_len
> wiphy
->max_scan_ie_len
) {
2771 request
= kzalloc(sizeof(*request
)
2772 + sizeof(*ssid
) * n_ssids
2773 + sizeof(channel
) * n_channels
2774 + ie_len
, GFP_KERNEL
);
2780 request
->channels
= (void *)((char *)request
+ sizeof(*request
));
2781 request
->n_channels
= n_channels
;
2783 request
->ssids
= (void *)(request
->channels
+ n_channels
);
2784 request
->n_ssids
= n_ssids
;
2787 request
->ie
= (void *)(request
->ssids
+ n_ssids
);
2789 request
->ie
= (void *)(request
->channels
+ n_channels
);
2792 if (info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
2793 /* user specified, bail out if channel not found */
2794 request
->n_channels
= n_channels
;
2796 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
], tmp
) {
2797 request
->channels
[i
] = ieee80211_get_channel(wiphy
, nla_get_u32(attr
));
2798 if (!request
->channels
[i
]) {
2807 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
2809 if (!wiphy
->bands
[band
])
2811 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
2812 request
->channels
[i
] = &wiphy
->bands
[band
]->channels
[j
];
2819 if (info
->attrs
[NL80211_ATTR_SCAN_SSIDS
]) {
2820 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_SSIDS
], tmp
) {
2821 if (request
->ssids
[i
].ssid_len
> IEEE80211_MAX_SSID_LEN
) {
2825 memcpy(request
->ssids
[i
].ssid
, nla_data(attr
), nla_len(attr
));
2826 request
->ssids
[i
].ssid_len
= nla_len(attr
);
2831 if (info
->attrs
[NL80211_ATTR_IE
]) {
2832 request
->ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
2833 memcpy((void *)request
->ie
,
2834 nla_data(info
->attrs
[NL80211_ATTR_IE
]),
2838 request
->ifidx
= dev
->ifindex
;
2839 request
->wiphy
= &drv
->wiphy
;
2841 drv
->scan_req
= request
;
2842 err
= drv
->ops
->scan(&drv
->wiphy
, dev
, request
);
2846 drv
->scan_req
= NULL
;
2850 cfg80211_put_dev(drv
);
2858 static int nl80211_send_bss(struct sk_buff
*msg
, u32 pid
, u32 seq
, int flags
,
2859 struct cfg80211_registered_device
*rdev
,
2860 struct net_device
*dev
,
2861 struct cfg80211_bss
*res
)
2866 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
,
2867 NL80211_CMD_NEW_SCAN_RESULTS
);
2871 NLA_PUT_U32(msg
, NL80211_ATTR_SCAN_GENERATION
,
2872 rdev
->bss_generation
);
2873 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
2875 bss
= nla_nest_start(msg
, NL80211_ATTR_BSS
);
2877 goto nla_put_failure
;
2878 if (!is_zero_ether_addr(res
->bssid
))
2879 NLA_PUT(msg
, NL80211_BSS_BSSID
, ETH_ALEN
, res
->bssid
);
2880 if (res
->information_elements
&& res
->len_information_elements
)
2881 NLA_PUT(msg
, NL80211_BSS_INFORMATION_ELEMENTS
,
2882 res
->len_information_elements
,
2883 res
->information_elements
);
2885 NLA_PUT_U64(msg
, NL80211_BSS_TSF
, res
->tsf
);
2886 if (res
->beacon_interval
)
2887 NLA_PUT_U16(msg
, NL80211_BSS_BEACON_INTERVAL
, res
->beacon_interval
);
2888 NLA_PUT_U16(msg
, NL80211_BSS_CAPABILITY
, res
->capability
);
2889 NLA_PUT_U32(msg
, NL80211_BSS_FREQUENCY
, res
->channel
->center_freq
);
2891 switch (rdev
->wiphy
.signal_type
) {
2892 case CFG80211_SIGNAL_TYPE_MBM
:
2893 NLA_PUT_U32(msg
, NL80211_BSS_SIGNAL_MBM
, res
->signal
);
2895 case CFG80211_SIGNAL_TYPE_UNSPEC
:
2896 NLA_PUT_U8(msg
, NL80211_BSS_SIGNAL_UNSPEC
, res
->signal
);
2902 nla_nest_end(msg
, bss
);
2904 return genlmsg_end(msg
, hdr
);
2907 genlmsg_cancel(msg
, hdr
);
2911 static int nl80211_dump_scan(struct sk_buff
*skb
,
2912 struct netlink_callback
*cb
)
2914 struct cfg80211_registered_device
*dev
;
2915 struct net_device
*netdev
;
2916 struct cfg80211_internal_bss
*scan
;
2917 int ifidx
= cb
->args
[0];
2918 int start
= cb
->args
[1], idx
= 0;
2922 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
2923 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
2928 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
2931 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
2934 cb
->args
[0] = ifidx
;
2937 netdev
= dev_get_by_index(&init_net
, ifidx
);
2941 dev
= cfg80211_get_dev_from_ifindex(ifidx
);
2944 goto out_put_netdev
;
2947 spin_lock_bh(&dev
->bss_lock
);
2948 cfg80211_bss_expire(dev
);
2950 list_for_each_entry(scan
, &dev
->bss_list
, list
) {
2953 if (nl80211_send_bss(skb
,
2954 NETLINK_CB(cb
->skb
).pid
,
2955 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
2956 dev
, netdev
, &scan
->pub
) < 0) {
2963 spin_unlock_bh(&dev
->bss_lock
);
2967 cfg80211_put_dev(dev
);
2974 static bool nl80211_valid_auth_type(enum nl80211_auth_type auth_type
)
2976 return auth_type
== NL80211_AUTHTYPE_OPEN_SYSTEM
||
2977 auth_type
== NL80211_AUTHTYPE_SHARED_KEY
||
2978 auth_type
== NL80211_AUTHTYPE_FT
||
2979 auth_type
== NL80211_AUTHTYPE_NETWORK_EAP
;
2982 static int nl80211_authenticate(struct sk_buff
*skb
, struct genl_info
*info
)
2984 struct cfg80211_registered_device
*drv
;
2985 struct net_device
*dev
;
2986 struct cfg80211_auth_request req
;
2987 struct wiphy
*wiphy
;
2990 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
2993 if (!info
->attrs
[NL80211_ATTR_MAC
])
2996 if (!info
->attrs
[NL80211_ATTR_AUTH_TYPE
])
3001 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3005 if (!drv
->ops
->auth
) {
3010 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3015 if (!netif_running(dev
)) {
3020 wiphy
= &drv
->wiphy
;
3021 memset(&req
, 0, sizeof(req
));
3023 req
.peer_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3025 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
3026 req
.chan
= ieee80211_get_channel(
3028 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3035 if (info
->attrs
[NL80211_ATTR_SSID
]) {
3036 req
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3037 req
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3040 if (info
->attrs
[NL80211_ATTR_IE
]) {
3041 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3042 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3045 req
.auth_type
= nla_get_u32(info
->attrs
[NL80211_ATTR_AUTH_TYPE
]);
3046 if (!nl80211_valid_auth_type(req
.auth_type
)) {
3051 err
= drv
->ops
->auth(&drv
->wiphy
, dev
, &req
);
3054 cfg80211_put_dev(drv
);
3061 static int nl80211_associate(struct sk_buff
*skb
, struct genl_info
*info
)
3063 struct cfg80211_registered_device
*drv
;
3064 struct net_device
*dev
;
3065 struct cfg80211_assoc_request req
;
3066 struct wiphy
*wiphy
;
3069 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3072 if (!info
->attrs
[NL80211_ATTR_MAC
] ||
3073 !info
->attrs
[NL80211_ATTR_SSID
])
3078 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3082 if (!drv
->ops
->assoc
) {
3087 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3092 if (!netif_running(dev
)) {
3097 wiphy
= &drv
->wiphy
;
3098 memset(&req
, 0, sizeof(req
));
3100 req
.peer_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3102 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
3103 req
.chan
= ieee80211_get_channel(
3105 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3112 req
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3113 req
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3115 if (info
->attrs
[NL80211_ATTR_IE
]) {
3116 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3117 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3120 if (info
->attrs
[NL80211_ATTR_USE_MFP
]) {
3121 enum nl80211_mfp use_mfp
=
3122 nla_get_u32(info
->attrs
[NL80211_ATTR_USE_MFP
]);
3123 if (use_mfp
== NL80211_MFP_REQUIRED
)
3125 else if (use_mfp
!= NL80211_MFP_NO
) {
3131 req
.control_port
= info
->attrs
[NL80211_ATTR_CONTROL_PORT
];
3133 err
= drv
->ops
->assoc(&drv
->wiphy
, dev
, &req
);
3136 cfg80211_put_dev(drv
);
3143 static int nl80211_deauthenticate(struct sk_buff
*skb
, struct genl_info
*info
)
3145 struct cfg80211_registered_device
*drv
;
3146 struct net_device
*dev
;
3147 struct cfg80211_deauth_request req
;
3148 struct wiphy
*wiphy
;
3151 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3154 if (!info
->attrs
[NL80211_ATTR_MAC
])
3157 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
3162 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3166 if (!drv
->ops
->deauth
) {
3171 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3176 if (!netif_running(dev
)) {
3181 wiphy
= &drv
->wiphy
;
3182 memset(&req
, 0, sizeof(req
));
3184 req
.peer_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3186 req
.reason_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
3187 if (req
.reason_code
== 0) {
3188 /* Reason Code 0 is reserved */
3193 if (info
->attrs
[NL80211_ATTR_IE
]) {
3194 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3195 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3198 err
= drv
->ops
->deauth(&drv
->wiphy
, dev
, &req
);
3201 cfg80211_put_dev(drv
);
3208 static int nl80211_disassociate(struct sk_buff
*skb
, struct genl_info
*info
)
3210 struct cfg80211_registered_device
*drv
;
3211 struct net_device
*dev
;
3212 struct cfg80211_disassoc_request req
;
3213 struct wiphy
*wiphy
;
3216 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3219 if (!info
->attrs
[NL80211_ATTR_MAC
])
3222 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
3227 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3231 if (!drv
->ops
->disassoc
) {
3236 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3241 if (!netif_running(dev
)) {
3246 wiphy
= &drv
->wiphy
;
3247 memset(&req
, 0, sizeof(req
));
3249 req
.peer_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3251 req
.reason_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
3252 if (req
.reason_code
== 0) {
3253 /* Reason Code 0 is reserved */
3258 if (info
->attrs
[NL80211_ATTR_IE
]) {
3259 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3260 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3263 err
= drv
->ops
->disassoc(&drv
->wiphy
, dev
, &req
);
3266 cfg80211_put_dev(drv
);
3273 static int nl80211_join_ibss(struct sk_buff
*skb
, struct genl_info
*info
)
3275 struct cfg80211_registered_device
*drv
;
3276 struct net_device
*dev
;
3277 struct cfg80211_ibss_params ibss
;
3278 struct wiphy
*wiphy
;
3281 memset(&ibss
, 0, sizeof(ibss
));
3283 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3286 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
] ||
3287 !info
->attrs
[NL80211_ATTR_SSID
] ||
3288 !nla_len(info
->attrs
[NL80211_ATTR_SSID
]))
3291 ibss
.beacon_interval
= 100;
3293 if (info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]) {
3294 ibss
.beacon_interval
=
3295 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
3296 if (ibss
.beacon_interval
< 1 || ibss
.beacon_interval
> 10000)
3302 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3306 if (!drv
->ops
->join_ibss
) {
3311 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
) {
3316 if (!netif_running(dev
)) {
3321 wiphy
= &drv
->wiphy
;
3323 if (info
->attrs
[NL80211_ATTR_MAC
])
3324 ibss
.bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3325 ibss
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3326 ibss
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3328 if (info
->attrs
[NL80211_ATTR_IE
]) {
3329 ibss
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3330 ibss
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3333 ibss
.channel
= ieee80211_get_channel(wiphy
,
3334 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3335 if (!ibss
.channel
||
3336 ibss
.channel
->flags
& IEEE80211_CHAN_NO_IBSS
||
3337 ibss
.channel
->flags
& IEEE80211_CHAN_DISABLED
) {
3342 ibss
.channel_fixed
= !!info
->attrs
[NL80211_ATTR_FREQ_FIXED
];
3344 err
= cfg80211_join_ibss(drv
, dev
, &ibss
);
3347 cfg80211_put_dev(drv
);
3354 static int nl80211_leave_ibss(struct sk_buff
*skb
, struct genl_info
*info
)
3356 struct cfg80211_registered_device
*drv
;
3357 struct net_device
*dev
;
3362 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3366 if (!drv
->ops
->leave_ibss
) {
3371 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
) {
3376 if (!netif_running(dev
)) {
3381 err
= cfg80211_leave_ibss(drv
, dev
, false);
3384 cfg80211_put_dev(drv
);
3391 static struct genl_ops nl80211_ops
[] = {
3393 .cmd
= NL80211_CMD_GET_WIPHY
,
3394 .doit
= nl80211_get_wiphy
,
3395 .dumpit
= nl80211_dump_wiphy
,
3396 .policy
= nl80211_policy
,
3397 /* can be retrieved by unprivileged users */
3400 .cmd
= NL80211_CMD_SET_WIPHY
,
3401 .doit
= nl80211_set_wiphy
,
3402 .policy
= nl80211_policy
,
3403 .flags
= GENL_ADMIN_PERM
,
3406 .cmd
= NL80211_CMD_GET_INTERFACE
,
3407 .doit
= nl80211_get_interface
,
3408 .dumpit
= nl80211_dump_interface
,
3409 .policy
= nl80211_policy
,
3410 /* can be retrieved by unprivileged users */
3413 .cmd
= NL80211_CMD_SET_INTERFACE
,
3414 .doit
= nl80211_set_interface
,
3415 .policy
= nl80211_policy
,
3416 .flags
= GENL_ADMIN_PERM
,
3419 .cmd
= NL80211_CMD_NEW_INTERFACE
,
3420 .doit
= nl80211_new_interface
,
3421 .policy
= nl80211_policy
,
3422 .flags
= GENL_ADMIN_PERM
,
3425 .cmd
= NL80211_CMD_DEL_INTERFACE
,
3426 .doit
= nl80211_del_interface
,
3427 .policy
= nl80211_policy
,
3428 .flags
= GENL_ADMIN_PERM
,
3431 .cmd
= NL80211_CMD_GET_KEY
,
3432 .doit
= nl80211_get_key
,
3433 .policy
= nl80211_policy
,
3434 .flags
= GENL_ADMIN_PERM
,
3437 .cmd
= NL80211_CMD_SET_KEY
,
3438 .doit
= nl80211_set_key
,
3439 .policy
= nl80211_policy
,
3440 .flags
= GENL_ADMIN_PERM
,
3443 .cmd
= NL80211_CMD_NEW_KEY
,
3444 .doit
= nl80211_new_key
,
3445 .policy
= nl80211_policy
,
3446 .flags
= GENL_ADMIN_PERM
,
3449 .cmd
= NL80211_CMD_DEL_KEY
,
3450 .doit
= nl80211_del_key
,
3451 .policy
= nl80211_policy
,
3452 .flags
= GENL_ADMIN_PERM
,
3455 .cmd
= NL80211_CMD_SET_BEACON
,
3456 .policy
= nl80211_policy
,
3457 .flags
= GENL_ADMIN_PERM
,
3458 .doit
= nl80211_addset_beacon
,
3461 .cmd
= NL80211_CMD_NEW_BEACON
,
3462 .policy
= nl80211_policy
,
3463 .flags
= GENL_ADMIN_PERM
,
3464 .doit
= nl80211_addset_beacon
,
3467 .cmd
= NL80211_CMD_DEL_BEACON
,
3468 .policy
= nl80211_policy
,
3469 .flags
= GENL_ADMIN_PERM
,
3470 .doit
= nl80211_del_beacon
,
3473 .cmd
= NL80211_CMD_GET_STATION
,
3474 .doit
= nl80211_get_station
,
3475 .dumpit
= nl80211_dump_station
,
3476 .policy
= nl80211_policy
,
3479 .cmd
= NL80211_CMD_SET_STATION
,
3480 .doit
= nl80211_set_station
,
3481 .policy
= nl80211_policy
,
3482 .flags
= GENL_ADMIN_PERM
,
3485 .cmd
= NL80211_CMD_NEW_STATION
,
3486 .doit
= nl80211_new_station
,
3487 .policy
= nl80211_policy
,
3488 .flags
= GENL_ADMIN_PERM
,
3491 .cmd
= NL80211_CMD_DEL_STATION
,
3492 .doit
= nl80211_del_station
,
3493 .policy
= nl80211_policy
,
3494 .flags
= GENL_ADMIN_PERM
,
3497 .cmd
= NL80211_CMD_GET_MPATH
,
3498 .doit
= nl80211_get_mpath
,
3499 .dumpit
= nl80211_dump_mpath
,
3500 .policy
= nl80211_policy
,
3501 .flags
= GENL_ADMIN_PERM
,
3504 .cmd
= NL80211_CMD_SET_MPATH
,
3505 .doit
= nl80211_set_mpath
,
3506 .policy
= nl80211_policy
,
3507 .flags
= GENL_ADMIN_PERM
,
3510 .cmd
= NL80211_CMD_NEW_MPATH
,
3511 .doit
= nl80211_new_mpath
,
3512 .policy
= nl80211_policy
,
3513 .flags
= GENL_ADMIN_PERM
,
3516 .cmd
= NL80211_CMD_DEL_MPATH
,
3517 .doit
= nl80211_del_mpath
,
3518 .policy
= nl80211_policy
,
3519 .flags
= GENL_ADMIN_PERM
,
3522 .cmd
= NL80211_CMD_SET_BSS
,
3523 .doit
= nl80211_set_bss
,
3524 .policy
= nl80211_policy
,
3525 .flags
= GENL_ADMIN_PERM
,
3528 .cmd
= NL80211_CMD_GET_REG
,
3529 .doit
= nl80211_get_reg
,
3530 .policy
= nl80211_policy
,
3531 /* can be retrieved by unprivileged users */
3534 .cmd
= NL80211_CMD_SET_REG
,
3535 .doit
= nl80211_set_reg
,
3536 .policy
= nl80211_policy
,
3537 .flags
= GENL_ADMIN_PERM
,
3540 .cmd
= NL80211_CMD_REQ_SET_REG
,
3541 .doit
= nl80211_req_set_reg
,
3542 .policy
= nl80211_policy
,
3543 .flags
= GENL_ADMIN_PERM
,
3546 .cmd
= NL80211_CMD_GET_MESH_PARAMS
,
3547 .doit
= nl80211_get_mesh_params
,
3548 .policy
= nl80211_policy
,
3549 /* can be retrieved by unprivileged users */
3552 .cmd
= NL80211_CMD_SET_MESH_PARAMS
,
3553 .doit
= nl80211_set_mesh_params
,
3554 .policy
= nl80211_policy
,
3555 .flags
= GENL_ADMIN_PERM
,
3558 .cmd
= NL80211_CMD_TRIGGER_SCAN
,
3559 .doit
= nl80211_trigger_scan
,
3560 .policy
= nl80211_policy
,
3561 .flags
= GENL_ADMIN_PERM
,
3564 .cmd
= NL80211_CMD_GET_SCAN
,
3565 .policy
= nl80211_policy
,
3566 .dumpit
= nl80211_dump_scan
,
3569 .cmd
= NL80211_CMD_AUTHENTICATE
,
3570 .doit
= nl80211_authenticate
,
3571 .policy
= nl80211_policy
,
3572 .flags
= GENL_ADMIN_PERM
,
3575 .cmd
= NL80211_CMD_ASSOCIATE
,
3576 .doit
= nl80211_associate
,
3577 .policy
= nl80211_policy
,
3578 .flags
= GENL_ADMIN_PERM
,
3581 .cmd
= NL80211_CMD_DEAUTHENTICATE
,
3582 .doit
= nl80211_deauthenticate
,
3583 .policy
= nl80211_policy
,
3584 .flags
= GENL_ADMIN_PERM
,
3587 .cmd
= NL80211_CMD_DISASSOCIATE
,
3588 .doit
= nl80211_disassociate
,
3589 .policy
= nl80211_policy
,
3590 .flags
= GENL_ADMIN_PERM
,
3593 .cmd
= NL80211_CMD_JOIN_IBSS
,
3594 .doit
= nl80211_join_ibss
,
3595 .policy
= nl80211_policy
,
3596 .flags
= GENL_ADMIN_PERM
,
3599 .cmd
= NL80211_CMD_LEAVE_IBSS
,
3600 .doit
= nl80211_leave_ibss
,
3601 .policy
= nl80211_policy
,
3602 .flags
= GENL_ADMIN_PERM
,
3605 static struct genl_multicast_group nl80211_mlme_mcgrp
= {
3609 /* multicast groups */
3610 static struct genl_multicast_group nl80211_config_mcgrp
= {
3613 static struct genl_multicast_group nl80211_scan_mcgrp
= {
3616 static struct genl_multicast_group nl80211_regulatory_mcgrp
= {
3617 .name
= "regulatory",
3620 /* notification functions */
3622 void nl80211_notify_dev_rename(struct cfg80211_registered_device
*rdev
)
3624 struct sk_buff
*msg
;
3626 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3630 if (nl80211_send_wiphy(msg
, 0, 0, 0, rdev
) < 0) {
3635 genlmsg_multicast(msg
, 0, nl80211_config_mcgrp
.id
, GFP_KERNEL
);
3638 static int nl80211_add_scan_req(struct sk_buff
*msg
,
3639 struct cfg80211_registered_device
*rdev
)
3641 struct cfg80211_scan_request
*req
= rdev
->scan_req
;
3642 struct nlattr
*nest
;
3648 nest
= nla_nest_start(msg
, NL80211_ATTR_SCAN_SSIDS
);
3650 goto nla_put_failure
;
3651 for (i
= 0; i
< req
->n_ssids
; i
++)
3652 NLA_PUT(msg
, i
, req
->ssids
[i
].ssid_len
, req
->ssids
[i
].ssid
);
3653 nla_nest_end(msg
, nest
);
3655 nest
= nla_nest_start(msg
, NL80211_ATTR_SCAN_FREQUENCIES
);
3657 goto nla_put_failure
;
3658 for (i
= 0; i
< req
->n_channels
; i
++)
3659 NLA_PUT_U32(msg
, i
, req
->channels
[i
]->center_freq
);
3660 nla_nest_end(msg
, nest
);
3663 NLA_PUT(msg
, NL80211_ATTR_IE
, req
->ie_len
, req
->ie
);
3670 static int nl80211_send_scan_donemsg(struct sk_buff
*msg
,
3671 struct cfg80211_registered_device
*rdev
,
3672 struct net_device
*netdev
,
3673 u32 pid
, u32 seq
, int flags
,
3678 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, cmd
);
3682 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3683 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3685 /* ignore errors and send incomplete event anyway */
3686 nl80211_add_scan_req(msg
, rdev
);
3688 return genlmsg_end(msg
, hdr
);
3691 genlmsg_cancel(msg
, hdr
);
3695 void nl80211_send_scan_done(struct cfg80211_registered_device
*rdev
,
3696 struct net_device
*netdev
)
3698 struct sk_buff
*msg
;
3700 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3704 if (nl80211_send_scan_donemsg(msg
, rdev
, netdev
, 0, 0, 0,
3705 NL80211_CMD_NEW_SCAN_RESULTS
) < 0) {
3710 genlmsg_multicast(msg
, 0, nl80211_scan_mcgrp
.id
, GFP_KERNEL
);
3713 void nl80211_send_scan_aborted(struct cfg80211_registered_device
*rdev
,
3714 struct net_device
*netdev
)
3716 struct sk_buff
*msg
;
3718 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3722 if (nl80211_send_scan_donemsg(msg
, rdev
, netdev
, 0, 0, 0,
3723 NL80211_CMD_SCAN_ABORTED
) < 0) {
3728 genlmsg_multicast(msg
, 0, nl80211_scan_mcgrp
.id
, GFP_KERNEL
);
3732 * This can happen on global regulatory changes or device specific settings
3733 * based on custom world regulatory domains.
3735 void nl80211_send_reg_change_event(struct regulatory_request
*request
)
3737 struct sk_buff
*msg
;
3740 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3744 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_REG_CHANGE
);
3750 /* Userspace can always count this one always being set */
3751 NLA_PUT_U8(msg
, NL80211_ATTR_REG_INITIATOR
, request
->initiator
);
3753 if (request
->alpha2
[0] == '0' && request
->alpha2
[1] == '0')
3754 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
3755 NL80211_REGDOM_TYPE_WORLD
);
3756 else if (request
->alpha2
[0] == '9' && request
->alpha2
[1] == '9')
3757 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
3758 NL80211_REGDOM_TYPE_CUSTOM_WORLD
);
3759 else if ((request
->alpha2
[0] == '9' && request
->alpha2
[1] == '8') ||
3761 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
3762 NL80211_REGDOM_TYPE_INTERSECTION
);
3764 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
3765 NL80211_REGDOM_TYPE_COUNTRY
);
3766 NLA_PUT_STRING(msg
, NL80211_ATTR_REG_ALPHA2
, request
->alpha2
);
3769 if (wiphy_idx_valid(request
->wiphy_idx
))
3770 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, request
->wiphy_idx
);
3772 if (genlmsg_end(msg
, hdr
) < 0) {
3777 genlmsg_multicast(msg
, 0, nl80211_regulatory_mcgrp
.id
, GFP_KERNEL
);
3782 genlmsg_cancel(msg
, hdr
);
3786 static void nl80211_send_mlme_event(struct cfg80211_registered_device
*rdev
,
3787 struct net_device
*netdev
,
3788 const u8
*buf
, size_t len
,
3789 enum nl80211_commands cmd
)
3791 struct sk_buff
*msg
;
3794 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
3798 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
3804 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3805 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3806 NLA_PUT(msg
, NL80211_ATTR_FRAME
, len
, buf
);
3808 if (genlmsg_end(msg
, hdr
) < 0) {
3813 genlmsg_multicast(msg
, 0, nl80211_mlme_mcgrp
.id
, GFP_ATOMIC
);
3817 genlmsg_cancel(msg
, hdr
);
3821 void nl80211_send_rx_auth(struct cfg80211_registered_device
*rdev
,
3822 struct net_device
*netdev
, const u8
*buf
, size_t len
)
3824 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
3825 NL80211_CMD_AUTHENTICATE
);
3828 void nl80211_send_rx_assoc(struct cfg80211_registered_device
*rdev
,
3829 struct net_device
*netdev
, const u8
*buf
,
3832 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
, NL80211_CMD_ASSOCIATE
);
3835 void nl80211_send_deauth(struct cfg80211_registered_device
*rdev
,
3836 struct net_device
*netdev
, const u8
*buf
, size_t len
)
3838 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
3839 NL80211_CMD_DEAUTHENTICATE
);
3842 void nl80211_send_disassoc(struct cfg80211_registered_device
*rdev
,
3843 struct net_device
*netdev
, const u8
*buf
,
3846 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
3847 NL80211_CMD_DISASSOCIATE
);
3850 static void nl80211_send_mlme_timeout(struct cfg80211_registered_device
*rdev
,
3851 struct net_device
*netdev
, int cmd
,
3854 struct sk_buff
*msg
;
3857 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
3861 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
3867 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3868 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3869 NLA_PUT_FLAG(msg
, NL80211_ATTR_TIMED_OUT
);
3870 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
);
3872 if (genlmsg_end(msg
, hdr
) < 0) {
3877 genlmsg_multicast(msg
, 0, nl80211_mlme_mcgrp
.id
, GFP_ATOMIC
);
3881 genlmsg_cancel(msg
, hdr
);
3885 void nl80211_send_auth_timeout(struct cfg80211_registered_device
*rdev
,
3886 struct net_device
*netdev
, const u8
*addr
)
3888 nl80211_send_mlme_timeout(rdev
, netdev
, NL80211_CMD_AUTHENTICATE
,
3892 void nl80211_send_assoc_timeout(struct cfg80211_registered_device
*rdev
,
3893 struct net_device
*netdev
, const u8
*addr
)
3895 nl80211_send_mlme_timeout(rdev
, netdev
, NL80211_CMD_ASSOCIATE
, addr
);
3898 void nl80211_send_ibss_bssid(struct cfg80211_registered_device
*rdev
,
3899 struct net_device
*netdev
, const u8
*bssid
,
3902 struct sk_buff
*msg
;
3905 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
3909 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_JOIN_IBSS
);
3915 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3916 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3917 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
);
3919 if (genlmsg_end(msg
, hdr
) < 0) {
3924 genlmsg_multicast(msg
, 0, nl80211_mlme_mcgrp
.id
, gfp
);
3928 genlmsg_cancel(msg
, hdr
);
3932 void nl80211_michael_mic_failure(struct cfg80211_registered_device
*rdev
,
3933 struct net_device
*netdev
, const u8
*addr
,
3934 enum nl80211_key_type key_type
, int key_id
,
3937 struct sk_buff
*msg
;
3940 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
3944 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE
);
3950 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3951 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3953 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
);
3954 NLA_PUT_U32(msg
, NL80211_ATTR_KEY_TYPE
, key_type
);
3955 NLA_PUT_U8(msg
, NL80211_ATTR_KEY_IDX
, key_id
);
3957 NLA_PUT(msg
, NL80211_ATTR_KEY_SEQ
, 6, tsc
);
3959 if (genlmsg_end(msg
, hdr
) < 0) {
3964 genlmsg_multicast(msg
, 0, nl80211_mlme_mcgrp
.id
, GFP_ATOMIC
);
3968 genlmsg_cancel(msg
, hdr
);
3972 void nl80211_send_beacon_hint_event(struct wiphy
*wiphy
,
3973 struct ieee80211_channel
*channel_before
,
3974 struct ieee80211_channel
*channel_after
)
3976 struct sk_buff
*msg
;
3978 struct nlattr
*nl_freq
;
3980 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
3984 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT
);
3991 * Since we are applying the beacon hint to a wiphy we know its
3992 * wiphy_idx is valid
3994 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, get_wiphy_idx(wiphy
));
3997 nl_freq
= nla_nest_start(msg
, NL80211_ATTR_FREQ_BEFORE
);
3999 goto nla_put_failure
;
4000 if (nl80211_msg_put_channel(msg
, channel_before
))
4001 goto nla_put_failure
;
4002 nla_nest_end(msg
, nl_freq
);
4005 nl_freq
= nla_nest_start(msg
, NL80211_ATTR_FREQ_AFTER
);
4007 goto nla_put_failure
;
4008 if (nl80211_msg_put_channel(msg
, channel_after
))
4009 goto nla_put_failure
;
4010 nla_nest_end(msg
, nl_freq
);
4012 if (genlmsg_end(msg
, hdr
) < 0) {
4017 genlmsg_multicast(msg
, 0, nl80211_regulatory_mcgrp
.id
, GFP_ATOMIC
);
4022 genlmsg_cancel(msg
, hdr
);
4026 /* initialisation/exit functions */
4028 int nl80211_init(void)
4032 err
= genl_register_family_with_ops(&nl80211_fam
,
4033 nl80211_ops
, ARRAY_SIZE(nl80211_ops
));
4037 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_config_mcgrp
);
4041 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_scan_mcgrp
);
4045 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_regulatory_mcgrp
);
4049 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_mlme_mcgrp
);
4055 genl_unregister_family(&nl80211_fam
);
4059 void nl80211_exit(void)
4061 genl_unregister_family(&nl80211_fam
);