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 result
= PTR_ERR(rdev
);
454 mutex_lock(&rdev
->mtx
);
456 if (info
->attrs
[NL80211_ATTR_WIPHY_NAME
])
457 result
= cfg80211_dev_rename(
458 rdev
, nla_data(info
->attrs
[NL80211_ATTR_WIPHY_NAME
]));
460 mutex_unlock(&cfg80211_mutex
);
465 if (info
->attrs
[NL80211_ATTR_WIPHY_TXQ_PARAMS
]) {
466 struct ieee80211_txq_params txq_params
;
467 struct nlattr
*tb
[NL80211_TXQ_ATTR_MAX
+ 1];
469 if (!rdev
->ops
->set_txq_params
) {
470 result
= -EOPNOTSUPP
;
474 nla_for_each_nested(nl_txq_params
,
475 info
->attrs
[NL80211_ATTR_WIPHY_TXQ_PARAMS
],
477 nla_parse(tb
, NL80211_TXQ_ATTR_MAX
,
478 nla_data(nl_txq_params
),
479 nla_len(nl_txq_params
),
481 result
= parse_txq_params(tb
, &txq_params
);
485 result
= rdev
->ops
->set_txq_params(&rdev
->wiphy
,
492 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
493 enum nl80211_channel_type channel_type
= NL80211_CHAN_NO_HT
;
494 struct ieee80211_channel
*chan
;
495 struct ieee80211_sta_ht_cap
*ht_cap
;
498 if (!rdev
->ops
->set_channel
) {
499 result
= -EOPNOTSUPP
;
505 if (info
->attrs
[NL80211_ATTR_WIPHY_CHANNEL_TYPE
]) {
506 channel_type
= nla_get_u32(info
->attrs
[
507 NL80211_ATTR_WIPHY_CHANNEL_TYPE
]);
508 if (channel_type
!= NL80211_CHAN_NO_HT
&&
509 channel_type
!= NL80211_CHAN_HT20
&&
510 channel_type
!= NL80211_CHAN_HT40PLUS
&&
511 channel_type
!= NL80211_CHAN_HT40MINUS
)
515 freq
= nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]);
516 chan
= ieee80211_get_channel(&rdev
->wiphy
, freq
);
518 /* Primary channel not allowed */
519 if (!chan
|| chan
->flags
& IEEE80211_CHAN_DISABLED
)
522 if (channel_type
== NL80211_CHAN_HT40MINUS
&&
523 (chan
->flags
& IEEE80211_CHAN_NO_HT40MINUS
))
525 else if (channel_type
== NL80211_CHAN_HT40PLUS
&&
526 (chan
->flags
& IEEE80211_CHAN_NO_HT40PLUS
))
530 * At this point we know if that if HT40 was requested
531 * we are allowed to use it and the extension channel
535 ht_cap
= &rdev
->wiphy
.bands
[chan
->band
]->ht_cap
;
537 /* no HT capabilities or intolerant */
538 if (channel_type
!= NL80211_CHAN_NO_HT
) {
539 if (!ht_cap
->ht_supported
)
541 if (!(ht_cap
->cap
& IEEE80211_HT_CAP_SUP_WIDTH_20_40
) ||
542 (ht_cap
->cap
& IEEE80211_HT_CAP_40MHZ_INTOLERANT
))
546 result
= rdev
->ops
->set_channel(&rdev
->wiphy
, chan
,
554 if (info
->attrs
[NL80211_ATTR_WIPHY_RETRY_SHORT
]) {
555 retry_short
= nla_get_u8(
556 info
->attrs
[NL80211_ATTR_WIPHY_RETRY_SHORT
]);
557 if (retry_short
== 0) {
561 changed
|= WIPHY_PARAM_RETRY_SHORT
;
564 if (info
->attrs
[NL80211_ATTR_WIPHY_RETRY_LONG
]) {
565 retry_long
= nla_get_u8(
566 info
->attrs
[NL80211_ATTR_WIPHY_RETRY_LONG
]);
567 if (retry_long
== 0) {
571 changed
|= WIPHY_PARAM_RETRY_LONG
;
574 if (info
->attrs
[NL80211_ATTR_WIPHY_FRAG_THRESHOLD
]) {
575 frag_threshold
= nla_get_u32(
576 info
->attrs
[NL80211_ATTR_WIPHY_FRAG_THRESHOLD
]);
577 if (frag_threshold
< 256) {
581 if (frag_threshold
!= (u32
) -1) {
583 * Fragments (apart from the last one) are required to
584 * have even length. Make the fragmentation code
585 * simpler by stripping LSB should someone try to use
586 * odd threshold value.
588 frag_threshold
&= ~0x1;
590 changed
|= WIPHY_PARAM_FRAG_THRESHOLD
;
593 if (info
->attrs
[NL80211_ATTR_WIPHY_RTS_THRESHOLD
]) {
594 rts_threshold
= nla_get_u32(
595 info
->attrs
[NL80211_ATTR_WIPHY_RTS_THRESHOLD
]);
596 changed
|= WIPHY_PARAM_RTS_THRESHOLD
;
600 u8 old_retry_short
, old_retry_long
;
601 u32 old_frag_threshold
, old_rts_threshold
;
603 if (!rdev
->ops
->set_wiphy_params
) {
604 result
= -EOPNOTSUPP
;
608 old_retry_short
= rdev
->wiphy
.retry_short
;
609 old_retry_long
= rdev
->wiphy
.retry_long
;
610 old_frag_threshold
= rdev
->wiphy
.frag_threshold
;
611 old_rts_threshold
= rdev
->wiphy
.rts_threshold
;
613 if (changed
& WIPHY_PARAM_RETRY_SHORT
)
614 rdev
->wiphy
.retry_short
= retry_short
;
615 if (changed
& WIPHY_PARAM_RETRY_LONG
)
616 rdev
->wiphy
.retry_long
= retry_long
;
617 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
)
618 rdev
->wiphy
.frag_threshold
= frag_threshold
;
619 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
)
620 rdev
->wiphy
.rts_threshold
= rts_threshold
;
622 result
= rdev
->ops
->set_wiphy_params(&rdev
->wiphy
, changed
);
624 rdev
->wiphy
.retry_short
= old_retry_short
;
625 rdev
->wiphy
.retry_long
= old_retry_long
;
626 rdev
->wiphy
.frag_threshold
= old_frag_threshold
;
627 rdev
->wiphy
.rts_threshold
= old_rts_threshold
;
632 mutex_unlock(&rdev
->mtx
);
639 static int nl80211_send_iface(struct sk_buff
*msg
, u32 pid
, u32 seq
, int flags
,
640 struct cfg80211_registered_device
*rdev
,
641 struct net_device
*dev
)
645 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_INTERFACE
);
649 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
650 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
651 NLA_PUT_STRING(msg
, NL80211_ATTR_IFNAME
, dev
->name
);
652 NLA_PUT_U32(msg
, NL80211_ATTR_IFTYPE
, dev
->ieee80211_ptr
->iftype
);
653 return genlmsg_end(msg
, hdr
);
656 genlmsg_cancel(msg
, hdr
);
660 static int nl80211_dump_interface(struct sk_buff
*skb
, struct netlink_callback
*cb
)
664 int wp_start
= cb
->args
[0];
665 int if_start
= cb
->args
[1];
666 struct cfg80211_registered_device
*dev
;
667 struct wireless_dev
*wdev
;
669 mutex_lock(&cfg80211_mutex
);
670 list_for_each_entry(dev
, &cfg80211_drv_list
, list
) {
671 if (wp_idx
< wp_start
) {
677 mutex_lock(&dev
->devlist_mtx
);
678 list_for_each_entry(wdev
, &dev
->netdev_list
, list
) {
679 if (if_idx
< if_start
) {
683 if (nl80211_send_iface(skb
, NETLINK_CB(cb
->skb
).pid
,
684 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
685 dev
, wdev
->netdev
) < 0) {
686 mutex_unlock(&dev
->devlist_mtx
);
691 mutex_unlock(&dev
->devlist_mtx
);
696 mutex_unlock(&cfg80211_mutex
);
698 cb
->args
[0] = wp_idx
;
699 cb
->args
[1] = if_idx
;
704 static int nl80211_get_interface(struct sk_buff
*skb
, struct genl_info
*info
)
707 struct cfg80211_registered_device
*dev
;
708 struct net_device
*netdev
;
711 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &dev
, &netdev
);
715 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
719 if (nl80211_send_iface(msg
, info
->snd_pid
, info
->snd_seq
, 0,
724 cfg80211_put_dev(dev
);
726 return genlmsg_unicast(msg
, info
->snd_pid
);
732 cfg80211_put_dev(dev
);
736 static const struct nla_policy mntr_flags_policy
[NL80211_MNTR_FLAG_MAX
+ 1] = {
737 [NL80211_MNTR_FLAG_FCSFAIL
] = { .type
= NLA_FLAG
},
738 [NL80211_MNTR_FLAG_PLCPFAIL
] = { .type
= NLA_FLAG
},
739 [NL80211_MNTR_FLAG_CONTROL
] = { .type
= NLA_FLAG
},
740 [NL80211_MNTR_FLAG_OTHER_BSS
] = { .type
= NLA_FLAG
},
741 [NL80211_MNTR_FLAG_COOK_FRAMES
] = { .type
= NLA_FLAG
},
744 static int parse_monitor_flags(struct nlattr
*nla
, u32
*mntrflags
)
746 struct nlattr
*flags
[NL80211_MNTR_FLAG_MAX
+ 1];
754 if (nla_parse_nested(flags
, NL80211_MNTR_FLAG_MAX
,
755 nla
, mntr_flags_policy
))
758 for (flag
= 1; flag
<= NL80211_MNTR_FLAG_MAX
; flag
++)
760 *mntrflags
|= (1<<flag
);
765 static int nl80211_set_interface(struct sk_buff
*skb
, struct genl_info
*info
)
767 struct cfg80211_registered_device
*drv
;
768 struct vif_params params
;
770 enum nl80211_iftype otype
, ntype
;
771 struct net_device
*dev
;
772 u32 _flags
, *flags
= NULL
;
775 memset(¶ms
, 0, sizeof(params
));
779 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
783 ifindex
= dev
->ifindex
;
784 otype
= ntype
= dev
->ieee80211_ptr
->iftype
;
787 if (info
->attrs
[NL80211_ATTR_IFTYPE
]) {
788 ntype
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFTYPE
]);
791 if (ntype
> NL80211_IFTYPE_MAX
) {
797 if (!drv
->ops
->change_virtual_intf
||
798 !(drv
->wiphy
.interface_modes
& (1 << ntype
))) {
803 if (info
->attrs
[NL80211_ATTR_MESH_ID
]) {
804 if (ntype
!= NL80211_IFTYPE_MESH_POINT
) {
808 params
.mesh_id
= nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]);
809 params
.mesh_id_len
= nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
813 if (info
->attrs
[NL80211_ATTR_MNTR_FLAGS
]) {
814 if (ntype
!= NL80211_IFTYPE_MONITOR
) {
818 err
= parse_monitor_flags(info
->attrs
[NL80211_ATTR_MNTR_FLAGS
],
828 err
= drv
->ops
->change_virtual_intf(&drv
->wiphy
, ifindex
,
829 ntype
, flags
, ¶ms
);
833 dev
= __dev_get_by_index(&init_net
, ifindex
);
834 WARN_ON(!dev
|| (!err
&& dev
->ieee80211_ptr
->iftype
!= ntype
));
836 if (dev
&& !err
&& (ntype
!= otype
)) {
837 if (otype
== NL80211_IFTYPE_ADHOC
)
838 cfg80211_clear_ibss(dev
, false);
842 cfg80211_put_dev(drv
);
848 static int nl80211_new_interface(struct sk_buff
*skb
, struct genl_info
*info
)
850 struct cfg80211_registered_device
*drv
;
851 struct vif_params params
;
853 enum nl80211_iftype type
= NL80211_IFTYPE_UNSPECIFIED
;
856 memset(¶ms
, 0, sizeof(params
));
858 if (!info
->attrs
[NL80211_ATTR_IFNAME
])
861 if (info
->attrs
[NL80211_ATTR_IFTYPE
]) {
862 type
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFTYPE
]);
863 if (type
> NL80211_IFTYPE_MAX
)
869 drv
= cfg80211_get_dev_from_info(info
);
875 if (!drv
->ops
->add_virtual_intf
||
876 !(drv
->wiphy
.interface_modes
& (1 << type
))) {
881 if (type
== NL80211_IFTYPE_MESH_POINT
&&
882 info
->attrs
[NL80211_ATTR_MESH_ID
]) {
883 params
.mesh_id
= nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]);
884 params
.mesh_id_len
= nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
887 err
= parse_monitor_flags(type
== NL80211_IFTYPE_MONITOR
?
888 info
->attrs
[NL80211_ATTR_MNTR_FLAGS
] : NULL
,
890 err
= drv
->ops
->add_virtual_intf(&drv
->wiphy
,
891 nla_data(info
->attrs
[NL80211_ATTR_IFNAME
]),
892 type
, err
? NULL
: &flags
, ¶ms
);
895 cfg80211_put_dev(drv
);
901 static int nl80211_del_interface(struct sk_buff
*skb
, struct genl_info
*info
)
903 struct cfg80211_registered_device
*drv
;
905 struct net_device
*dev
;
909 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
912 ifindex
= dev
->ifindex
;
915 if (!drv
->ops
->del_virtual_intf
) {
920 err
= drv
->ops
->del_virtual_intf(&drv
->wiphy
, ifindex
);
923 cfg80211_put_dev(drv
);
929 struct get_key_cookie
{
934 static void get_key_callback(void *c
, struct key_params
*params
)
936 struct get_key_cookie
*cookie
= c
;
939 NLA_PUT(cookie
->msg
, NL80211_ATTR_KEY_DATA
,
940 params
->key_len
, params
->key
);
943 NLA_PUT(cookie
->msg
, NL80211_ATTR_KEY_SEQ
,
944 params
->seq_len
, params
->seq
);
947 NLA_PUT_U32(cookie
->msg
, NL80211_ATTR_KEY_CIPHER
,
955 static int nl80211_get_key(struct sk_buff
*skb
, struct genl_info
*info
)
957 struct cfg80211_registered_device
*drv
;
959 struct net_device
*dev
;
962 struct get_key_cookie cookie
= {
968 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
969 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
974 if (info
->attrs
[NL80211_ATTR_MAC
])
975 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
979 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
983 if (!drv
->ops
->get_key
) {
988 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
994 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
995 NL80211_CMD_NEW_KEY
);
1004 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
1005 NLA_PUT_U8(msg
, NL80211_ATTR_KEY_IDX
, key_idx
);
1007 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
);
1009 err
= drv
->ops
->get_key(&drv
->wiphy
, dev
, key_idx
, mac_addr
,
1010 &cookie
, get_key_callback
);
1016 goto nla_put_failure
;
1018 genlmsg_end(msg
, hdr
);
1019 err
= genlmsg_unicast(msg
, info
->snd_pid
);
1026 cfg80211_put_dev(drv
);
1034 static int nl80211_set_key(struct sk_buff
*skb
, struct genl_info
*info
)
1036 struct cfg80211_registered_device
*drv
;
1038 struct net_device
*dev
;
1040 int (*func
)(struct wiphy
*wiphy
, struct net_device
*netdev
,
1043 if (!info
->attrs
[NL80211_ATTR_KEY_IDX
])
1046 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
1048 if (info
->attrs
[NL80211_ATTR_KEY_DEFAULT_MGMT
]) {
1049 if (key_idx
< 4 || key_idx
> 5)
1051 } else if (key_idx
> 3)
1054 /* currently only support setting default key */
1055 if (!info
->attrs
[NL80211_ATTR_KEY_DEFAULT
] &&
1056 !info
->attrs
[NL80211_ATTR_KEY_DEFAULT_MGMT
])
1061 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1065 if (info
->attrs
[NL80211_ATTR_KEY_DEFAULT
])
1066 func
= drv
->ops
->set_default_key
;
1068 func
= drv
->ops
->set_default_mgmt_key
;
1075 err
= func(&drv
->wiphy
, dev
, key_idx
);
1076 #ifdef CONFIG_WIRELESS_EXT
1078 if (func
== drv
->ops
->set_default_key
)
1079 dev
->ieee80211_ptr
->wext
.default_key
= key_idx
;
1081 dev
->ieee80211_ptr
->wext
.default_mgmt_key
= key_idx
;
1086 cfg80211_put_dev(drv
);
1095 static int nl80211_new_key(struct sk_buff
*skb
, struct genl_info
*info
)
1097 struct cfg80211_registered_device
*drv
;
1099 struct net_device
*dev
;
1100 struct key_params params
;
1102 u8
*mac_addr
= NULL
;
1104 memset(¶ms
, 0, sizeof(params
));
1106 if (!info
->attrs
[NL80211_ATTR_KEY_CIPHER
])
1109 if (info
->attrs
[NL80211_ATTR_KEY_DATA
]) {
1110 params
.key
= nla_data(info
->attrs
[NL80211_ATTR_KEY_DATA
]);
1111 params
.key_len
= nla_len(info
->attrs
[NL80211_ATTR_KEY_DATA
]);
1114 if (info
->attrs
[NL80211_ATTR_KEY_SEQ
]) {
1115 params
.seq
= nla_data(info
->attrs
[NL80211_ATTR_KEY_SEQ
]);
1116 params
.seq_len
= nla_len(info
->attrs
[NL80211_ATTR_KEY_SEQ
]);
1119 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
1120 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
1122 params
.cipher
= nla_get_u32(info
->attrs
[NL80211_ATTR_KEY_CIPHER
]);
1124 if (info
->attrs
[NL80211_ATTR_MAC
])
1125 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1127 if (cfg80211_validate_key_settings(¶ms
, key_idx
, mac_addr
))
1132 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1136 for (i
= 0; i
< drv
->wiphy
.n_cipher_suites
; i
++)
1137 if (params
.cipher
== drv
->wiphy
.cipher_suites
[i
])
1139 if (i
== drv
->wiphy
.n_cipher_suites
) {
1144 if (!drv
->ops
->add_key
) {
1149 err
= drv
->ops
->add_key(&drv
->wiphy
, dev
, key_idx
, mac_addr
, ¶ms
);
1152 cfg80211_put_dev(drv
);
1160 static int nl80211_del_key(struct sk_buff
*skb
, struct genl_info
*info
)
1162 struct cfg80211_registered_device
*drv
;
1164 struct net_device
*dev
;
1166 u8
*mac_addr
= NULL
;
1168 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
1169 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
1174 if (info
->attrs
[NL80211_ATTR_MAC
])
1175 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1179 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1183 if (!drv
->ops
->del_key
) {
1188 err
= drv
->ops
->del_key(&drv
->wiphy
, dev
, key_idx
, mac_addr
);
1190 #ifdef CONFIG_WIRELESS_EXT
1192 if (key_idx
== dev
->ieee80211_ptr
->wext
.default_key
)
1193 dev
->ieee80211_ptr
->wext
.default_key
= -1;
1194 else if (key_idx
== dev
->ieee80211_ptr
->wext
.default_mgmt_key
)
1195 dev
->ieee80211_ptr
->wext
.default_mgmt_key
= -1;
1200 cfg80211_put_dev(drv
);
1209 static int nl80211_addset_beacon(struct sk_buff
*skb
, struct genl_info
*info
)
1211 int (*call
)(struct wiphy
*wiphy
, struct net_device
*dev
,
1212 struct beacon_parameters
*info
);
1213 struct cfg80211_registered_device
*drv
;
1215 struct net_device
*dev
;
1216 struct beacon_parameters params
;
1219 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]))
1224 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1228 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
1233 switch (info
->genlhdr
->cmd
) {
1234 case NL80211_CMD_NEW_BEACON
:
1235 /* these are required for NEW_BEACON */
1236 if (!info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
] ||
1237 !info
->attrs
[NL80211_ATTR_DTIM_PERIOD
] ||
1238 !info
->attrs
[NL80211_ATTR_BEACON_HEAD
]) {
1243 call
= drv
->ops
->add_beacon
;
1245 case NL80211_CMD_SET_BEACON
:
1246 call
= drv
->ops
->set_beacon
;
1259 memset(¶ms
, 0, sizeof(params
));
1261 if (info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]) {
1263 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
1267 if (info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]) {
1268 params
.dtim_period
=
1269 nla_get_u32(info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]);
1273 if (info
->attrs
[NL80211_ATTR_BEACON_HEAD
]) {
1274 params
.head
= nla_data(info
->attrs
[NL80211_ATTR_BEACON_HEAD
]);
1276 nla_len(info
->attrs
[NL80211_ATTR_BEACON_HEAD
]);
1280 if (info
->attrs
[NL80211_ATTR_BEACON_TAIL
]) {
1281 params
.tail
= nla_data(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]);
1283 nla_len(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]);
1292 err
= call(&drv
->wiphy
, dev
, ¶ms
);
1295 cfg80211_put_dev(drv
);
1303 static int nl80211_del_beacon(struct sk_buff
*skb
, struct genl_info
*info
)
1305 struct cfg80211_registered_device
*drv
;
1307 struct net_device
*dev
;
1311 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1315 if (!drv
->ops
->del_beacon
) {
1320 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
1324 err
= drv
->ops
->del_beacon(&drv
->wiphy
, dev
);
1327 cfg80211_put_dev(drv
);
1335 static const struct nla_policy sta_flags_policy
[NL80211_STA_FLAG_MAX
+ 1] = {
1336 [NL80211_STA_FLAG_AUTHORIZED
] = { .type
= NLA_FLAG
},
1337 [NL80211_STA_FLAG_SHORT_PREAMBLE
] = { .type
= NLA_FLAG
},
1338 [NL80211_STA_FLAG_WME
] = { .type
= NLA_FLAG
},
1339 [NL80211_STA_FLAG_MFP
] = { .type
= NLA_FLAG
},
1342 static int parse_station_flags(struct genl_info
*info
,
1343 struct station_parameters
*params
)
1345 struct nlattr
*flags
[NL80211_STA_FLAG_MAX
+ 1];
1350 * Try parsing the new attribute first so userspace
1351 * can specify both for older kernels.
1353 nla
= info
->attrs
[NL80211_ATTR_STA_FLAGS2
];
1355 struct nl80211_sta_flag_update
*sta_flags
;
1357 sta_flags
= nla_data(nla
);
1358 params
->sta_flags_mask
= sta_flags
->mask
;
1359 params
->sta_flags_set
= sta_flags
->set
;
1360 if ((params
->sta_flags_mask
|
1361 params
->sta_flags_set
) & BIT(__NL80211_STA_FLAG_INVALID
))
1366 /* if present, parse the old attribute */
1368 nla
= info
->attrs
[NL80211_ATTR_STA_FLAGS
];
1372 if (nla_parse_nested(flags
, NL80211_STA_FLAG_MAX
,
1373 nla
, sta_flags_policy
))
1376 params
->sta_flags_mask
= (1 << __NL80211_STA_FLAG_AFTER_LAST
) - 1;
1377 params
->sta_flags_mask
&= ~1;
1379 for (flag
= 1; flag
<= NL80211_STA_FLAG_MAX
; flag
++)
1381 params
->sta_flags_set
|= (1<<flag
);
1386 static u16
nl80211_calculate_bitrate(struct rate_info
*rate
)
1388 int modulation
, streams
, bitrate
;
1390 if (!(rate
->flags
& RATE_INFO_FLAGS_MCS
))
1391 return rate
->legacy
;
1393 /* the formula below does only work for MCS values smaller than 32 */
1394 if (rate
->mcs
>= 32)
1397 modulation
= rate
->mcs
& 7;
1398 streams
= (rate
->mcs
>> 3) + 1;
1400 bitrate
= (rate
->flags
& RATE_INFO_FLAGS_40_MHZ_WIDTH
) ?
1404 bitrate
*= (modulation
+ 1);
1405 else if (modulation
== 4)
1406 bitrate
*= (modulation
+ 2);
1408 bitrate
*= (modulation
+ 3);
1412 if (rate
->flags
& RATE_INFO_FLAGS_SHORT_GI
)
1413 bitrate
= (bitrate
/ 9) * 10;
1415 /* do NOT round down here */
1416 return (bitrate
+ 50000) / 100000;
1419 static int nl80211_send_station(struct sk_buff
*msg
, u32 pid
, u32 seq
,
1420 int flags
, struct net_device
*dev
,
1421 u8
*mac_addr
, struct station_info
*sinfo
)
1424 struct nlattr
*sinfoattr
, *txrate
;
1427 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_STATION
);
1431 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
1432 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
);
1434 sinfoattr
= nla_nest_start(msg
, NL80211_ATTR_STA_INFO
);
1436 goto nla_put_failure
;
1437 if (sinfo
->filled
& STATION_INFO_INACTIVE_TIME
)
1438 NLA_PUT_U32(msg
, NL80211_STA_INFO_INACTIVE_TIME
,
1439 sinfo
->inactive_time
);
1440 if (sinfo
->filled
& STATION_INFO_RX_BYTES
)
1441 NLA_PUT_U32(msg
, NL80211_STA_INFO_RX_BYTES
,
1443 if (sinfo
->filled
& STATION_INFO_TX_BYTES
)
1444 NLA_PUT_U32(msg
, NL80211_STA_INFO_TX_BYTES
,
1446 if (sinfo
->filled
& STATION_INFO_LLID
)
1447 NLA_PUT_U16(msg
, NL80211_STA_INFO_LLID
,
1449 if (sinfo
->filled
& STATION_INFO_PLID
)
1450 NLA_PUT_U16(msg
, NL80211_STA_INFO_PLID
,
1452 if (sinfo
->filled
& STATION_INFO_PLINK_STATE
)
1453 NLA_PUT_U8(msg
, NL80211_STA_INFO_PLINK_STATE
,
1454 sinfo
->plink_state
);
1455 if (sinfo
->filled
& STATION_INFO_SIGNAL
)
1456 NLA_PUT_U8(msg
, NL80211_STA_INFO_SIGNAL
,
1458 if (sinfo
->filled
& STATION_INFO_TX_BITRATE
) {
1459 txrate
= nla_nest_start(msg
, NL80211_STA_INFO_TX_BITRATE
);
1461 goto nla_put_failure
;
1463 /* nl80211_calculate_bitrate will return 0 for mcs >= 32 */
1464 bitrate
= nl80211_calculate_bitrate(&sinfo
->txrate
);
1466 NLA_PUT_U16(msg
, NL80211_RATE_INFO_BITRATE
, bitrate
);
1468 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_MCS
)
1469 NLA_PUT_U8(msg
, NL80211_RATE_INFO_MCS
,
1471 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_40_MHZ_WIDTH
)
1472 NLA_PUT_FLAG(msg
, NL80211_RATE_INFO_40_MHZ_WIDTH
);
1473 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_SHORT_GI
)
1474 NLA_PUT_FLAG(msg
, NL80211_RATE_INFO_SHORT_GI
);
1476 nla_nest_end(msg
, txrate
);
1478 if (sinfo
->filled
& STATION_INFO_RX_PACKETS
)
1479 NLA_PUT_U32(msg
, NL80211_STA_INFO_RX_PACKETS
,
1481 if (sinfo
->filled
& STATION_INFO_TX_PACKETS
)
1482 NLA_PUT_U32(msg
, NL80211_STA_INFO_TX_PACKETS
,
1484 nla_nest_end(msg
, sinfoattr
);
1486 return genlmsg_end(msg
, hdr
);
1489 genlmsg_cancel(msg
, hdr
);
1493 static int nl80211_dump_station(struct sk_buff
*skb
,
1494 struct netlink_callback
*cb
)
1496 struct station_info sinfo
;
1497 struct cfg80211_registered_device
*dev
;
1498 struct net_device
*netdev
;
1499 u8 mac_addr
[ETH_ALEN
];
1500 int ifidx
= cb
->args
[0];
1501 int sta_idx
= cb
->args
[1];
1505 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
1506 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
1511 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
1514 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
1521 netdev
= __dev_get_by_index(&init_net
, ifidx
);
1527 dev
= cfg80211_get_dev_from_ifindex(ifidx
);
1533 if (!dev
->ops
->dump_station
) {
1539 err
= dev
->ops
->dump_station(&dev
->wiphy
, netdev
, sta_idx
,
1546 if (nl80211_send_station(skb
,
1547 NETLINK_CB(cb
->skb
).pid
,
1548 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
1558 cb
->args
[1] = sta_idx
;
1561 cfg80211_put_dev(dev
);
1568 static int nl80211_get_station(struct sk_buff
*skb
, struct genl_info
*info
)
1570 struct cfg80211_registered_device
*drv
;
1572 struct net_device
*dev
;
1573 struct station_info sinfo
;
1574 struct sk_buff
*msg
;
1575 u8
*mac_addr
= NULL
;
1577 memset(&sinfo
, 0, sizeof(sinfo
));
1579 if (!info
->attrs
[NL80211_ATTR_MAC
])
1582 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1586 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1590 if (!drv
->ops
->get_station
) {
1595 err
= drv
->ops
->get_station(&drv
->wiphy
, dev
, mac_addr
, &sinfo
);
1599 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1603 if (nl80211_send_station(msg
, info
->snd_pid
, info
->snd_seq
, 0,
1604 dev
, mac_addr
, &sinfo
) < 0)
1607 err
= genlmsg_unicast(msg
, info
->snd_pid
);
1613 cfg80211_put_dev(drv
);
1622 * Get vlan interface making sure it is on the right wiphy.
1624 static int get_vlan(struct nlattr
*vlanattr
,
1625 struct cfg80211_registered_device
*rdev
,
1626 struct net_device
**vlan
)
1631 *vlan
= dev_get_by_index(&init_net
, nla_get_u32(vlanattr
));
1634 if (!(*vlan
)->ieee80211_ptr
)
1636 if ((*vlan
)->ieee80211_ptr
->wiphy
!= &rdev
->wiphy
)
1642 static int nl80211_set_station(struct sk_buff
*skb
, struct genl_info
*info
)
1644 struct cfg80211_registered_device
*drv
;
1646 struct net_device
*dev
;
1647 struct station_parameters params
;
1648 u8
*mac_addr
= NULL
;
1650 memset(¶ms
, 0, sizeof(params
));
1652 params
.listen_interval
= -1;
1654 if (info
->attrs
[NL80211_ATTR_STA_AID
])
1657 if (!info
->attrs
[NL80211_ATTR_MAC
])
1660 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1662 if (info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]) {
1663 params
.supported_rates
=
1664 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1665 params
.supported_rates_len
=
1666 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1669 if (info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
])
1670 params
.listen_interval
=
1671 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
]);
1673 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
])
1675 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]);
1677 if (parse_station_flags(info
, ¶ms
))
1680 if (info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
])
1681 params
.plink_action
=
1682 nla_get_u8(info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
]);
1686 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1690 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
1691 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP_VLAN
) {
1696 err
= get_vlan(info
->attrs
[NL80211_ATTR_STA_VLAN
], drv
, ¶ms
.vlan
);
1700 if (!drv
->ops
->change_station
) {
1705 err
= drv
->ops
->change_station(&drv
->wiphy
, dev
, mac_addr
, ¶ms
);
1709 dev_put(params
.vlan
);
1710 cfg80211_put_dev(drv
);
1718 static int nl80211_new_station(struct sk_buff
*skb
, struct genl_info
*info
)
1720 struct cfg80211_registered_device
*drv
;
1722 struct net_device
*dev
;
1723 struct station_parameters params
;
1724 u8
*mac_addr
= NULL
;
1726 memset(¶ms
, 0, sizeof(params
));
1728 if (!info
->attrs
[NL80211_ATTR_MAC
])
1731 if (!info
->attrs
[NL80211_ATTR_STA_AID
])
1734 if (!info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
])
1737 if (!info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
])
1740 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1741 params
.supported_rates
=
1742 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1743 params
.supported_rates_len
=
1744 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1745 params
.listen_interval
=
1746 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
]);
1748 params
.aid
= nla_get_u16(info
->attrs
[NL80211_ATTR_STA_AID
]);
1749 if (!params
.aid
|| params
.aid
> IEEE80211_MAX_AID
)
1752 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
])
1754 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]);
1756 if (parse_station_flags(info
, ¶ms
))
1761 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1765 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
1766 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP_VLAN
) {
1771 err
= get_vlan(info
->attrs
[NL80211_ATTR_STA_VLAN
], drv
, ¶ms
.vlan
);
1775 if (!drv
->ops
->add_station
) {
1780 if (!netif_running(dev
)) {
1785 err
= drv
->ops
->add_station(&drv
->wiphy
, dev
, mac_addr
, ¶ms
);
1789 dev_put(params
.vlan
);
1790 cfg80211_put_dev(drv
);
1798 static int nl80211_del_station(struct sk_buff
*skb
, struct genl_info
*info
)
1800 struct cfg80211_registered_device
*drv
;
1802 struct net_device
*dev
;
1803 u8
*mac_addr
= NULL
;
1805 if (info
->attrs
[NL80211_ATTR_MAC
])
1806 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1810 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1814 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
1815 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP_VLAN
) {
1820 if (!drv
->ops
->del_station
) {
1825 err
= drv
->ops
->del_station(&drv
->wiphy
, dev
, mac_addr
);
1828 cfg80211_put_dev(drv
);
1836 static int nl80211_send_mpath(struct sk_buff
*msg
, u32 pid
, u32 seq
,
1837 int flags
, struct net_device
*dev
,
1838 u8
*dst
, u8
*next_hop
,
1839 struct mpath_info
*pinfo
)
1842 struct nlattr
*pinfoattr
;
1844 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_STATION
);
1848 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
1849 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, dst
);
1850 NLA_PUT(msg
, NL80211_ATTR_MPATH_NEXT_HOP
, ETH_ALEN
, next_hop
);
1852 pinfoattr
= nla_nest_start(msg
, NL80211_ATTR_MPATH_INFO
);
1854 goto nla_put_failure
;
1855 if (pinfo
->filled
& MPATH_INFO_FRAME_QLEN
)
1856 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_FRAME_QLEN
,
1858 if (pinfo
->filled
& MPATH_INFO_DSN
)
1859 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_DSN
,
1861 if (pinfo
->filled
& MPATH_INFO_METRIC
)
1862 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_METRIC
,
1864 if (pinfo
->filled
& MPATH_INFO_EXPTIME
)
1865 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_EXPTIME
,
1867 if (pinfo
->filled
& MPATH_INFO_FLAGS
)
1868 NLA_PUT_U8(msg
, NL80211_MPATH_INFO_FLAGS
,
1870 if (pinfo
->filled
& MPATH_INFO_DISCOVERY_TIMEOUT
)
1871 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT
,
1872 pinfo
->discovery_timeout
);
1873 if (pinfo
->filled
& MPATH_INFO_DISCOVERY_RETRIES
)
1874 NLA_PUT_U8(msg
, NL80211_MPATH_INFO_DISCOVERY_RETRIES
,
1875 pinfo
->discovery_retries
);
1877 nla_nest_end(msg
, pinfoattr
);
1879 return genlmsg_end(msg
, hdr
);
1882 genlmsg_cancel(msg
, hdr
);
1886 static int nl80211_dump_mpath(struct sk_buff
*skb
,
1887 struct netlink_callback
*cb
)
1889 struct mpath_info pinfo
;
1890 struct cfg80211_registered_device
*dev
;
1891 struct net_device
*netdev
;
1893 u8 next_hop
[ETH_ALEN
];
1894 int ifidx
= cb
->args
[0];
1895 int path_idx
= cb
->args
[1];
1899 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
1900 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
1905 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
1908 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
1915 netdev
= __dev_get_by_index(&init_net
, ifidx
);
1921 dev
= cfg80211_get_dev_from_ifindex(ifidx
);
1927 if (!dev
->ops
->dump_mpath
) {
1932 if (netdev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
1938 err
= dev
->ops
->dump_mpath(&dev
->wiphy
, netdev
, path_idx
,
1939 dst
, next_hop
, &pinfo
);
1945 if (nl80211_send_mpath(skb
, NETLINK_CB(cb
->skb
).pid
,
1946 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
1947 netdev
, dst
, next_hop
,
1956 cb
->args
[1] = path_idx
;
1959 cfg80211_put_dev(dev
);
1966 static int nl80211_get_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
1968 struct cfg80211_registered_device
*drv
;
1970 struct net_device
*dev
;
1971 struct mpath_info pinfo
;
1972 struct sk_buff
*msg
;
1974 u8 next_hop
[ETH_ALEN
];
1976 memset(&pinfo
, 0, sizeof(pinfo
));
1978 if (!info
->attrs
[NL80211_ATTR_MAC
])
1981 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1985 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
1989 if (!drv
->ops
->get_mpath
) {
1994 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
1999 err
= drv
->ops
->get_mpath(&drv
->wiphy
, dev
, dst
, next_hop
, &pinfo
);
2003 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2007 if (nl80211_send_mpath(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2008 dev
, dst
, next_hop
, &pinfo
) < 0)
2011 err
= genlmsg_unicast(msg
, info
->snd_pid
);
2017 cfg80211_put_dev(drv
);
2025 static int nl80211_set_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2027 struct cfg80211_registered_device
*drv
;
2029 struct net_device
*dev
;
2031 u8
*next_hop
= NULL
;
2033 if (!info
->attrs
[NL80211_ATTR_MAC
])
2036 if (!info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
])
2039 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2040 next_hop
= nla_data(info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
]);
2044 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2048 if (!drv
->ops
->change_mpath
) {
2053 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2058 if (!netif_running(dev
)) {
2063 err
= drv
->ops
->change_mpath(&drv
->wiphy
, dev
, dst
, next_hop
);
2066 cfg80211_put_dev(drv
);
2073 static int nl80211_new_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2075 struct cfg80211_registered_device
*drv
;
2077 struct net_device
*dev
;
2079 u8
*next_hop
= NULL
;
2081 if (!info
->attrs
[NL80211_ATTR_MAC
])
2084 if (!info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
])
2087 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2088 next_hop
= nla_data(info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
]);
2092 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2096 if (!drv
->ops
->add_mpath
) {
2101 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2106 if (!netif_running(dev
)) {
2111 err
= drv
->ops
->add_mpath(&drv
->wiphy
, dev
, dst
, next_hop
);
2114 cfg80211_put_dev(drv
);
2122 static int nl80211_del_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2124 struct cfg80211_registered_device
*drv
;
2126 struct net_device
*dev
;
2129 if (info
->attrs
[NL80211_ATTR_MAC
])
2130 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2134 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2138 if (!drv
->ops
->del_mpath
) {
2143 err
= drv
->ops
->del_mpath(&drv
->wiphy
, dev
, dst
);
2146 cfg80211_put_dev(drv
);
2154 static int nl80211_set_bss(struct sk_buff
*skb
, struct genl_info
*info
)
2156 struct cfg80211_registered_device
*drv
;
2158 struct net_device
*dev
;
2159 struct bss_parameters params
;
2161 memset(¶ms
, 0, sizeof(params
));
2162 /* default to not changing parameters */
2163 params
.use_cts_prot
= -1;
2164 params
.use_short_preamble
= -1;
2165 params
.use_short_slot_time
= -1;
2167 if (info
->attrs
[NL80211_ATTR_BSS_CTS_PROT
])
2168 params
.use_cts_prot
=
2169 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_CTS_PROT
]);
2170 if (info
->attrs
[NL80211_ATTR_BSS_SHORT_PREAMBLE
])
2171 params
.use_short_preamble
=
2172 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_SHORT_PREAMBLE
]);
2173 if (info
->attrs
[NL80211_ATTR_BSS_SHORT_SLOT_TIME
])
2174 params
.use_short_slot_time
=
2175 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_SHORT_SLOT_TIME
]);
2176 if (info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]) {
2177 params
.basic_rates
=
2178 nla_data(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
2179 params
.basic_rates_len
=
2180 nla_len(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
2185 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2189 if (!drv
->ops
->change_bss
) {
2194 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
2199 err
= drv
->ops
->change_bss(&drv
->wiphy
, dev
, ¶ms
);
2202 cfg80211_put_dev(drv
);
2210 static const struct nla_policy
2211 reg_rule_policy
[NL80211_REG_RULE_ATTR_MAX
+ 1] = {
2212 [NL80211_ATTR_REG_RULE_FLAGS
] = { .type
= NLA_U32
},
2213 [NL80211_ATTR_FREQ_RANGE_START
] = { .type
= NLA_U32
},
2214 [NL80211_ATTR_FREQ_RANGE_END
] = { .type
= NLA_U32
},
2215 [NL80211_ATTR_FREQ_RANGE_MAX_BW
] = { .type
= NLA_U32
},
2216 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
] = { .type
= NLA_U32
},
2217 [NL80211_ATTR_POWER_RULE_MAX_EIRP
] = { .type
= NLA_U32
},
2220 static int parse_reg_rule(struct nlattr
*tb
[],
2221 struct ieee80211_reg_rule
*reg_rule
)
2223 struct ieee80211_freq_range
*freq_range
= ®_rule
->freq_range
;
2224 struct ieee80211_power_rule
*power_rule
= ®_rule
->power_rule
;
2226 if (!tb
[NL80211_ATTR_REG_RULE_FLAGS
])
2228 if (!tb
[NL80211_ATTR_FREQ_RANGE_START
])
2230 if (!tb
[NL80211_ATTR_FREQ_RANGE_END
])
2232 if (!tb
[NL80211_ATTR_FREQ_RANGE_MAX_BW
])
2234 if (!tb
[NL80211_ATTR_POWER_RULE_MAX_EIRP
])
2237 reg_rule
->flags
= nla_get_u32(tb
[NL80211_ATTR_REG_RULE_FLAGS
]);
2239 freq_range
->start_freq_khz
=
2240 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_START
]);
2241 freq_range
->end_freq_khz
=
2242 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_END
]);
2243 freq_range
->max_bandwidth_khz
=
2244 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_MAX_BW
]);
2246 power_rule
->max_eirp
=
2247 nla_get_u32(tb
[NL80211_ATTR_POWER_RULE_MAX_EIRP
]);
2249 if (tb
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
])
2250 power_rule
->max_antenna_gain
=
2251 nla_get_u32(tb
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
]);
2256 static int nl80211_req_set_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2262 * You should only get this when cfg80211 hasn't yet initialized
2263 * completely when built-in to the kernel right between the time
2264 * window between nl80211_init() and regulatory_init(), if that is
2267 mutex_lock(&cfg80211_mutex
);
2268 if (unlikely(!cfg80211_regdomain
)) {
2269 mutex_unlock(&cfg80211_mutex
);
2270 return -EINPROGRESS
;
2272 mutex_unlock(&cfg80211_mutex
);
2274 if (!info
->attrs
[NL80211_ATTR_REG_ALPHA2
])
2277 data
= nla_data(info
->attrs
[NL80211_ATTR_REG_ALPHA2
]);
2279 #ifdef CONFIG_WIRELESS_OLD_REGULATORY
2280 /* We ignore world regdom requests with the old regdom setup */
2281 if (is_world_regdom(data
))
2285 r
= regulatory_hint_user(data
);
2290 static int nl80211_get_mesh_params(struct sk_buff
*skb
,
2291 struct genl_info
*info
)
2293 struct cfg80211_registered_device
*drv
;
2294 struct mesh_config cur_params
;
2296 struct net_device
*dev
;
2298 struct nlattr
*pinfoattr
;
2299 struct sk_buff
*msg
;
2303 /* Look up our device */
2304 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2308 if (!drv
->ops
->get_mesh_params
) {
2313 /* Get the mesh params */
2314 err
= drv
->ops
->get_mesh_params(&drv
->wiphy
, dev
, &cur_params
);
2318 /* Draw up a netlink message to send back */
2319 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2324 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2325 NL80211_CMD_GET_MESH_PARAMS
);
2327 goto nla_put_failure
;
2328 pinfoattr
= nla_nest_start(msg
, NL80211_ATTR_MESH_PARAMS
);
2330 goto nla_put_failure
;
2331 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
2332 NLA_PUT_U16(msg
, NL80211_MESHCONF_RETRY_TIMEOUT
,
2333 cur_params
.dot11MeshRetryTimeout
);
2334 NLA_PUT_U16(msg
, NL80211_MESHCONF_CONFIRM_TIMEOUT
,
2335 cur_params
.dot11MeshConfirmTimeout
);
2336 NLA_PUT_U16(msg
, NL80211_MESHCONF_HOLDING_TIMEOUT
,
2337 cur_params
.dot11MeshHoldingTimeout
);
2338 NLA_PUT_U16(msg
, NL80211_MESHCONF_MAX_PEER_LINKS
,
2339 cur_params
.dot11MeshMaxPeerLinks
);
2340 NLA_PUT_U8(msg
, NL80211_MESHCONF_MAX_RETRIES
,
2341 cur_params
.dot11MeshMaxRetries
);
2342 NLA_PUT_U8(msg
, NL80211_MESHCONF_TTL
,
2343 cur_params
.dot11MeshTTL
);
2344 NLA_PUT_U8(msg
, NL80211_MESHCONF_AUTO_OPEN_PLINKS
,
2345 cur_params
.auto_open_plinks
);
2346 NLA_PUT_U8(msg
, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
,
2347 cur_params
.dot11MeshHWMPmaxPREQretries
);
2348 NLA_PUT_U32(msg
, NL80211_MESHCONF_PATH_REFRESH_TIME
,
2349 cur_params
.path_refresh_time
);
2350 NLA_PUT_U16(msg
, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
,
2351 cur_params
.min_discovery_timeout
);
2352 NLA_PUT_U32(msg
, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
,
2353 cur_params
.dot11MeshHWMPactivePathTimeout
);
2354 NLA_PUT_U16(msg
, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
,
2355 cur_params
.dot11MeshHWMPpreqMinInterval
);
2356 NLA_PUT_U16(msg
, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
2357 cur_params
.dot11MeshHWMPnetDiameterTraversalTime
);
2358 nla_nest_end(msg
, pinfoattr
);
2359 genlmsg_end(msg
, hdr
);
2360 err
= genlmsg_unicast(msg
, info
->snd_pid
);
2364 genlmsg_cancel(msg
, hdr
);
2368 cfg80211_put_dev(drv
);
2376 #define FILL_IN_MESH_PARAM_IF_SET(table, cfg, param, mask, attr_num, nla_fn) \
2378 if (table[attr_num]) {\
2379 cfg.param = nla_fn(table[attr_num]); \
2380 mask |= (1 << (attr_num - 1)); \
2384 static struct nla_policy
2385 nl80211_meshconf_params_policy
[NL80211_MESHCONF_ATTR_MAX
+1] __read_mostly
= {
2386 [NL80211_MESHCONF_RETRY_TIMEOUT
] = { .type
= NLA_U16
},
2387 [NL80211_MESHCONF_CONFIRM_TIMEOUT
] = { .type
= NLA_U16
},
2388 [NL80211_MESHCONF_HOLDING_TIMEOUT
] = { .type
= NLA_U16
},
2389 [NL80211_MESHCONF_MAX_PEER_LINKS
] = { .type
= NLA_U16
},
2390 [NL80211_MESHCONF_MAX_RETRIES
] = { .type
= NLA_U8
},
2391 [NL80211_MESHCONF_TTL
] = { .type
= NLA_U8
},
2392 [NL80211_MESHCONF_AUTO_OPEN_PLINKS
] = { .type
= NLA_U8
},
2394 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
] = { .type
= NLA_U8
},
2395 [NL80211_MESHCONF_PATH_REFRESH_TIME
] = { .type
= NLA_U32
},
2396 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
] = { .type
= NLA_U16
},
2397 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
] = { .type
= NLA_U32
},
2398 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
] = { .type
= NLA_U16
},
2399 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
] = { .type
= NLA_U16
},
2402 static int nl80211_set_mesh_params(struct sk_buff
*skb
, struct genl_info
*info
)
2406 struct cfg80211_registered_device
*drv
;
2407 struct net_device
*dev
;
2408 struct mesh_config cfg
;
2409 struct nlattr
*tb
[NL80211_MESHCONF_ATTR_MAX
+ 1];
2410 struct nlattr
*parent_attr
;
2412 parent_attr
= info
->attrs
[NL80211_ATTR_MESH_PARAMS
];
2415 if (nla_parse_nested(tb
, NL80211_MESHCONF_ATTR_MAX
,
2416 parent_attr
, nl80211_meshconf_params_policy
))
2421 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2425 if (!drv
->ops
->set_mesh_params
) {
2430 /* This makes sure that there aren't more than 32 mesh config
2431 * parameters (otherwise our bitfield scheme would not work.) */
2432 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX
> 32);
2434 /* Fill in the params struct */
2436 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshRetryTimeout
,
2437 mask
, NL80211_MESHCONF_RETRY_TIMEOUT
, nla_get_u16
);
2438 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshConfirmTimeout
,
2439 mask
, NL80211_MESHCONF_CONFIRM_TIMEOUT
, nla_get_u16
);
2440 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHoldingTimeout
,
2441 mask
, NL80211_MESHCONF_HOLDING_TIMEOUT
, nla_get_u16
);
2442 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshMaxPeerLinks
,
2443 mask
, NL80211_MESHCONF_MAX_PEER_LINKS
, nla_get_u16
);
2444 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshMaxRetries
,
2445 mask
, NL80211_MESHCONF_MAX_RETRIES
, nla_get_u8
);
2446 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshTTL
,
2447 mask
, NL80211_MESHCONF_TTL
, nla_get_u8
);
2448 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, auto_open_plinks
,
2449 mask
, NL80211_MESHCONF_AUTO_OPEN_PLINKS
, nla_get_u8
);
2450 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPmaxPREQretries
,
2451 mask
, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
,
2453 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, path_refresh_time
,
2454 mask
, NL80211_MESHCONF_PATH_REFRESH_TIME
, nla_get_u32
);
2455 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, min_discovery_timeout
,
2456 mask
, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
,
2458 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPactivePathTimeout
,
2459 mask
, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
,
2461 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPpreqMinInterval
,
2462 mask
, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
,
2464 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
,
2465 dot11MeshHWMPnetDiameterTraversalTime
,
2466 mask
, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
2470 err
= drv
->ops
->set_mesh_params(&drv
->wiphy
, dev
, &cfg
, mask
);
2474 cfg80211_put_dev(drv
);
2482 #undef FILL_IN_MESH_PARAM_IF_SET
2484 static int nl80211_get_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2486 struct sk_buff
*msg
;
2488 struct nlattr
*nl_reg_rules
;
2492 mutex_lock(&cfg80211_mutex
);
2494 if (!cfg80211_regdomain
)
2497 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2503 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2504 NL80211_CMD_GET_REG
);
2506 goto nla_put_failure
;
2508 NLA_PUT_STRING(msg
, NL80211_ATTR_REG_ALPHA2
,
2509 cfg80211_regdomain
->alpha2
);
2511 nl_reg_rules
= nla_nest_start(msg
, NL80211_ATTR_REG_RULES
);
2513 goto nla_put_failure
;
2515 for (i
= 0; i
< cfg80211_regdomain
->n_reg_rules
; i
++) {
2516 struct nlattr
*nl_reg_rule
;
2517 const struct ieee80211_reg_rule
*reg_rule
;
2518 const struct ieee80211_freq_range
*freq_range
;
2519 const struct ieee80211_power_rule
*power_rule
;
2521 reg_rule
= &cfg80211_regdomain
->reg_rules
[i
];
2522 freq_range
= ®_rule
->freq_range
;
2523 power_rule
= ®_rule
->power_rule
;
2525 nl_reg_rule
= nla_nest_start(msg
, i
);
2527 goto nla_put_failure
;
2529 NLA_PUT_U32(msg
, NL80211_ATTR_REG_RULE_FLAGS
,
2531 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_START
,
2532 freq_range
->start_freq_khz
);
2533 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_END
,
2534 freq_range
->end_freq_khz
);
2535 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_MAX_BW
,
2536 freq_range
->max_bandwidth_khz
);
2537 NLA_PUT_U32(msg
, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
,
2538 power_rule
->max_antenna_gain
);
2539 NLA_PUT_U32(msg
, NL80211_ATTR_POWER_RULE_MAX_EIRP
,
2540 power_rule
->max_eirp
);
2542 nla_nest_end(msg
, nl_reg_rule
);
2545 nla_nest_end(msg
, nl_reg_rules
);
2547 genlmsg_end(msg
, hdr
);
2548 err
= genlmsg_unicast(msg
, info
->snd_pid
);
2552 genlmsg_cancel(msg
, hdr
);
2555 mutex_unlock(&cfg80211_mutex
);
2559 static int nl80211_set_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2561 struct nlattr
*tb
[NL80211_REG_RULE_ATTR_MAX
+ 1];
2562 struct nlattr
*nl_reg_rule
;
2563 char *alpha2
= NULL
;
2564 int rem_reg_rules
= 0, r
= 0;
2565 u32 num_rules
= 0, rule_idx
= 0, size_of_regd
;
2566 struct ieee80211_regdomain
*rd
= NULL
;
2568 if (!info
->attrs
[NL80211_ATTR_REG_ALPHA2
])
2571 if (!info
->attrs
[NL80211_ATTR_REG_RULES
])
2574 alpha2
= nla_data(info
->attrs
[NL80211_ATTR_REG_ALPHA2
]);
2576 nla_for_each_nested(nl_reg_rule
, info
->attrs
[NL80211_ATTR_REG_RULES
],
2579 if (num_rules
> NL80211_MAX_SUPP_REG_RULES
)
2583 mutex_lock(&cfg80211_mutex
);
2585 if (!reg_is_valid_request(alpha2
)) {
2590 size_of_regd
= sizeof(struct ieee80211_regdomain
) +
2591 (num_rules
* sizeof(struct ieee80211_reg_rule
));
2593 rd
= kzalloc(size_of_regd
, GFP_KERNEL
);
2599 rd
->n_reg_rules
= num_rules
;
2600 rd
->alpha2
[0] = alpha2
[0];
2601 rd
->alpha2
[1] = alpha2
[1];
2603 nla_for_each_nested(nl_reg_rule
, info
->attrs
[NL80211_ATTR_REG_RULES
],
2605 nla_parse(tb
, NL80211_REG_RULE_ATTR_MAX
,
2606 nla_data(nl_reg_rule
), nla_len(nl_reg_rule
),
2608 r
= parse_reg_rule(tb
, &rd
->reg_rules
[rule_idx
]);
2614 if (rule_idx
> NL80211_MAX_SUPP_REG_RULES
) {
2620 BUG_ON(rule_idx
!= num_rules
);
2624 mutex_unlock(&cfg80211_mutex
);
2629 mutex_unlock(&cfg80211_mutex
);
2634 static int nl80211_trigger_scan(struct sk_buff
*skb
, struct genl_info
*info
)
2636 struct cfg80211_registered_device
*drv
;
2637 struct net_device
*dev
;
2638 struct cfg80211_scan_request
*request
;
2639 struct cfg80211_ssid
*ssid
;
2640 struct ieee80211_channel
*channel
;
2641 struct nlattr
*attr
;
2642 struct wiphy
*wiphy
;
2643 int err
, tmp
, n_ssids
= 0, n_channels
= 0, i
;
2644 enum ieee80211_band band
;
2647 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
2652 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2656 wiphy
= &drv
->wiphy
;
2658 if (!drv
->ops
->scan
) {
2663 if (!netif_running(dev
)) {
2668 if (drv
->scan_req
) {
2673 if (info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
2674 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
], tmp
)
2681 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++)
2682 if (wiphy
->bands
[band
])
2683 n_channels
+= wiphy
->bands
[band
]->n_channels
;
2686 if (info
->attrs
[NL80211_ATTR_SCAN_SSIDS
])
2687 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_SSIDS
], tmp
)
2690 if (n_ssids
> wiphy
->max_scan_ssids
) {
2695 if (info
->attrs
[NL80211_ATTR_IE
])
2696 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
2700 if (ie_len
> wiphy
->max_scan_ie_len
) {
2705 request
= kzalloc(sizeof(*request
)
2706 + sizeof(*ssid
) * n_ssids
2707 + sizeof(channel
) * n_channels
2708 + ie_len
, GFP_KERNEL
);
2714 request
->channels
= (void *)((char *)request
+ sizeof(*request
));
2715 request
->n_channels
= n_channels
;
2717 request
->ssids
= (void *)(request
->channels
+ n_channels
);
2718 request
->n_ssids
= n_ssids
;
2721 request
->ie
= (void *)(request
->ssids
+ n_ssids
);
2723 request
->ie
= (void *)(request
->channels
+ n_channels
);
2726 if (info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
2727 /* user specified, bail out if channel not found */
2728 request
->n_channels
= n_channels
;
2730 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
], tmp
) {
2731 request
->channels
[i
] = ieee80211_get_channel(wiphy
, nla_get_u32(attr
));
2732 if (!request
->channels
[i
]) {
2741 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
2743 if (!wiphy
->bands
[band
])
2745 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
2746 request
->channels
[i
] = &wiphy
->bands
[band
]->channels
[j
];
2753 if (info
->attrs
[NL80211_ATTR_SCAN_SSIDS
]) {
2754 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_SSIDS
], tmp
) {
2755 if (request
->ssids
[i
].ssid_len
> IEEE80211_MAX_SSID_LEN
) {
2759 memcpy(request
->ssids
[i
].ssid
, nla_data(attr
), nla_len(attr
));
2760 request
->ssids
[i
].ssid_len
= nla_len(attr
);
2765 if (info
->attrs
[NL80211_ATTR_IE
]) {
2766 request
->ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
2767 memcpy((void *)request
->ie
,
2768 nla_data(info
->attrs
[NL80211_ATTR_IE
]),
2772 request
->ifidx
= dev
->ifindex
;
2773 request
->wiphy
= &drv
->wiphy
;
2775 drv
->scan_req
= request
;
2776 err
= drv
->ops
->scan(&drv
->wiphy
, dev
, request
);
2780 drv
->scan_req
= NULL
;
2784 cfg80211_put_dev(drv
);
2792 static int nl80211_send_bss(struct sk_buff
*msg
, u32 pid
, u32 seq
, int flags
,
2793 struct cfg80211_registered_device
*rdev
,
2794 struct net_device
*dev
,
2795 struct cfg80211_bss
*res
)
2800 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
,
2801 NL80211_CMD_NEW_SCAN_RESULTS
);
2805 NLA_PUT_U32(msg
, NL80211_ATTR_SCAN_GENERATION
,
2806 rdev
->bss_generation
);
2807 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
2809 bss
= nla_nest_start(msg
, NL80211_ATTR_BSS
);
2811 goto nla_put_failure
;
2812 if (!is_zero_ether_addr(res
->bssid
))
2813 NLA_PUT(msg
, NL80211_BSS_BSSID
, ETH_ALEN
, res
->bssid
);
2814 if (res
->information_elements
&& res
->len_information_elements
)
2815 NLA_PUT(msg
, NL80211_BSS_INFORMATION_ELEMENTS
,
2816 res
->len_information_elements
,
2817 res
->information_elements
);
2819 NLA_PUT_U64(msg
, NL80211_BSS_TSF
, res
->tsf
);
2820 if (res
->beacon_interval
)
2821 NLA_PUT_U16(msg
, NL80211_BSS_BEACON_INTERVAL
, res
->beacon_interval
);
2822 NLA_PUT_U16(msg
, NL80211_BSS_CAPABILITY
, res
->capability
);
2823 NLA_PUT_U32(msg
, NL80211_BSS_FREQUENCY
, res
->channel
->center_freq
);
2825 switch (rdev
->wiphy
.signal_type
) {
2826 case CFG80211_SIGNAL_TYPE_MBM
:
2827 NLA_PUT_U32(msg
, NL80211_BSS_SIGNAL_MBM
, res
->signal
);
2829 case CFG80211_SIGNAL_TYPE_UNSPEC
:
2830 NLA_PUT_U8(msg
, NL80211_BSS_SIGNAL_UNSPEC
, res
->signal
);
2836 nla_nest_end(msg
, bss
);
2838 return genlmsg_end(msg
, hdr
);
2841 genlmsg_cancel(msg
, hdr
);
2845 static int nl80211_dump_scan(struct sk_buff
*skb
,
2846 struct netlink_callback
*cb
)
2848 struct cfg80211_registered_device
*dev
;
2849 struct net_device
*netdev
;
2850 struct cfg80211_internal_bss
*scan
;
2851 int ifidx
= cb
->args
[0];
2852 int start
= cb
->args
[1], idx
= 0;
2856 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
2857 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
2862 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
2865 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
2868 cb
->args
[0] = ifidx
;
2871 netdev
= dev_get_by_index(&init_net
, ifidx
);
2875 dev
= cfg80211_get_dev_from_ifindex(ifidx
);
2878 goto out_put_netdev
;
2881 spin_lock_bh(&dev
->bss_lock
);
2882 cfg80211_bss_expire(dev
);
2884 list_for_each_entry(scan
, &dev
->bss_list
, list
) {
2887 if (nl80211_send_bss(skb
,
2888 NETLINK_CB(cb
->skb
).pid
,
2889 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
2890 dev
, netdev
, &scan
->pub
) < 0) {
2897 spin_unlock_bh(&dev
->bss_lock
);
2901 cfg80211_put_dev(dev
);
2908 static bool nl80211_valid_auth_type(enum nl80211_auth_type auth_type
)
2910 return auth_type
== NL80211_AUTHTYPE_OPEN_SYSTEM
||
2911 auth_type
== NL80211_AUTHTYPE_SHARED_KEY
||
2912 auth_type
== NL80211_AUTHTYPE_FT
||
2913 auth_type
== NL80211_AUTHTYPE_NETWORK_EAP
;
2916 static int nl80211_authenticate(struct sk_buff
*skb
, struct genl_info
*info
)
2918 struct cfg80211_registered_device
*drv
;
2919 struct net_device
*dev
;
2920 struct cfg80211_auth_request req
;
2921 struct wiphy
*wiphy
;
2924 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
2927 if (!info
->attrs
[NL80211_ATTR_MAC
])
2930 if (!info
->attrs
[NL80211_ATTR_AUTH_TYPE
])
2935 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
2939 if (!drv
->ops
->auth
) {
2944 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
2949 if (!netif_running(dev
)) {
2954 wiphy
= &drv
->wiphy
;
2955 memset(&req
, 0, sizeof(req
));
2957 req
.peer_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2959 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
2960 req
.chan
= ieee80211_get_channel(
2962 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
2969 if (info
->attrs
[NL80211_ATTR_SSID
]) {
2970 req
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
2971 req
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
2974 if (info
->attrs
[NL80211_ATTR_IE
]) {
2975 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
2976 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
2979 req
.auth_type
= nla_get_u32(info
->attrs
[NL80211_ATTR_AUTH_TYPE
]);
2980 if (!nl80211_valid_auth_type(req
.auth_type
)) {
2985 err
= drv
->ops
->auth(&drv
->wiphy
, dev
, &req
);
2988 cfg80211_put_dev(drv
);
2995 static int nl80211_associate(struct sk_buff
*skb
, struct genl_info
*info
)
2997 struct cfg80211_registered_device
*drv
;
2998 struct net_device
*dev
;
2999 struct cfg80211_assoc_request req
;
3000 struct wiphy
*wiphy
;
3003 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3006 if (!info
->attrs
[NL80211_ATTR_MAC
] ||
3007 !info
->attrs
[NL80211_ATTR_SSID
])
3012 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3016 if (!drv
->ops
->assoc
) {
3021 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3026 if (!netif_running(dev
)) {
3031 wiphy
= &drv
->wiphy
;
3032 memset(&req
, 0, sizeof(req
));
3034 req
.peer_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3036 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
3037 req
.chan
= ieee80211_get_channel(
3039 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3046 req
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3047 req
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3049 if (info
->attrs
[NL80211_ATTR_IE
]) {
3050 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3051 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3054 if (info
->attrs
[NL80211_ATTR_USE_MFP
]) {
3055 enum nl80211_mfp use_mfp
=
3056 nla_get_u32(info
->attrs
[NL80211_ATTR_USE_MFP
]);
3057 if (use_mfp
== NL80211_MFP_REQUIRED
)
3059 else if (use_mfp
!= NL80211_MFP_NO
) {
3065 req
.control_port
= info
->attrs
[NL80211_ATTR_CONTROL_PORT
];
3067 err
= drv
->ops
->assoc(&drv
->wiphy
, dev
, &req
);
3070 cfg80211_put_dev(drv
);
3077 static int nl80211_deauthenticate(struct sk_buff
*skb
, struct genl_info
*info
)
3079 struct cfg80211_registered_device
*drv
;
3080 struct net_device
*dev
;
3081 struct cfg80211_deauth_request req
;
3082 struct wiphy
*wiphy
;
3085 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3088 if (!info
->attrs
[NL80211_ATTR_MAC
])
3091 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
3096 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3100 if (!drv
->ops
->deauth
) {
3105 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3110 if (!netif_running(dev
)) {
3115 wiphy
= &drv
->wiphy
;
3116 memset(&req
, 0, sizeof(req
));
3118 req
.peer_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3120 req
.reason_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
3121 if (req
.reason_code
== 0) {
3122 /* Reason Code 0 is reserved */
3127 if (info
->attrs
[NL80211_ATTR_IE
]) {
3128 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3129 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3132 err
= drv
->ops
->deauth(&drv
->wiphy
, dev
, &req
);
3135 cfg80211_put_dev(drv
);
3142 static int nl80211_disassociate(struct sk_buff
*skb
, struct genl_info
*info
)
3144 struct cfg80211_registered_device
*drv
;
3145 struct net_device
*dev
;
3146 struct cfg80211_disassoc_request req
;
3147 struct wiphy
*wiphy
;
3150 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3153 if (!info
->attrs
[NL80211_ATTR_MAC
])
3156 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
3161 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3165 if (!drv
->ops
->disassoc
) {
3170 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3175 if (!netif_running(dev
)) {
3180 wiphy
= &drv
->wiphy
;
3181 memset(&req
, 0, sizeof(req
));
3183 req
.peer_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3185 req
.reason_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
3186 if (req
.reason_code
== 0) {
3187 /* Reason Code 0 is reserved */
3192 if (info
->attrs
[NL80211_ATTR_IE
]) {
3193 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3194 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3197 err
= drv
->ops
->disassoc(&drv
->wiphy
, dev
, &req
);
3200 cfg80211_put_dev(drv
);
3207 static int nl80211_join_ibss(struct sk_buff
*skb
, struct genl_info
*info
)
3209 struct cfg80211_registered_device
*drv
;
3210 struct net_device
*dev
;
3211 struct cfg80211_ibss_params ibss
;
3212 struct wiphy
*wiphy
;
3215 memset(&ibss
, 0, sizeof(ibss
));
3217 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3220 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
] ||
3221 !info
->attrs
[NL80211_ATTR_SSID
] ||
3222 !nla_len(info
->attrs
[NL80211_ATTR_SSID
]))
3225 ibss
.beacon_interval
= 100;
3227 if (info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]) {
3228 ibss
.beacon_interval
=
3229 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
3230 if (ibss
.beacon_interval
< 1 || ibss
.beacon_interval
> 10000)
3236 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3240 if (!drv
->ops
->join_ibss
) {
3245 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
) {
3250 if (!netif_running(dev
)) {
3255 wiphy
= &drv
->wiphy
;
3257 if (info
->attrs
[NL80211_ATTR_MAC
])
3258 ibss
.bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3259 ibss
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3260 ibss
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3262 if (info
->attrs
[NL80211_ATTR_IE
]) {
3263 ibss
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3264 ibss
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3267 ibss
.channel
= ieee80211_get_channel(wiphy
,
3268 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3269 if (!ibss
.channel
||
3270 ibss
.channel
->flags
& IEEE80211_CHAN_NO_IBSS
||
3271 ibss
.channel
->flags
& IEEE80211_CHAN_DISABLED
) {
3276 ibss
.channel_fixed
= !!info
->attrs
[NL80211_ATTR_FREQ_FIXED
];
3278 err
= cfg80211_join_ibss(drv
, dev
, &ibss
);
3281 cfg80211_put_dev(drv
);
3288 static int nl80211_leave_ibss(struct sk_buff
*skb
, struct genl_info
*info
)
3290 struct cfg80211_registered_device
*drv
;
3291 struct net_device
*dev
;
3296 err
= get_drv_dev_by_info_ifindex(info
->attrs
, &drv
, &dev
);
3300 if (!drv
->ops
->leave_ibss
) {
3305 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
) {
3310 if (!netif_running(dev
)) {
3315 err
= cfg80211_leave_ibss(drv
, dev
, false);
3318 cfg80211_put_dev(drv
);
3325 static struct genl_ops nl80211_ops
[] = {
3327 .cmd
= NL80211_CMD_GET_WIPHY
,
3328 .doit
= nl80211_get_wiphy
,
3329 .dumpit
= nl80211_dump_wiphy
,
3330 .policy
= nl80211_policy
,
3331 /* can be retrieved by unprivileged users */
3334 .cmd
= NL80211_CMD_SET_WIPHY
,
3335 .doit
= nl80211_set_wiphy
,
3336 .policy
= nl80211_policy
,
3337 .flags
= GENL_ADMIN_PERM
,
3340 .cmd
= NL80211_CMD_GET_INTERFACE
,
3341 .doit
= nl80211_get_interface
,
3342 .dumpit
= nl80211_dump_interface
,
3343 .policy
= nl80211_policy
,
3344 /* can be retrieved by unprivileged users */
3347 .cmd
= NL80211_CMD_SET_INTERFACE
,
3348 .doit
= nl80211_set_interface
,
3349 .policy
= nl80211_policy
,
3350 .flags
= GENL_ADMIN_PERM
,
3353 .cmd
= NL80211_CMD_NEW_INTERFACE
,
3354 .doit
= nl80211_new_interface
,
3355 .policy
= nl80211_policy
,
3356 .flags
= GENL_ADMIN_PERM
,
3359 .cmd
= NL80211_CMD_DEL_INTERFACE
,
3360 .doit
= nl80211_del_interface
,
3361 .policy
= nl80211_policy
,
3362 .flags
= GENL_ADMIN_PERM
,
3365 .cmd
= NL80211_CMD_GET_KEY
,
3366 .doit
= nl80211_get_key
,
3367 .policy
= nl80211_policy
,
3368 .flags
= GENL_ADMIN_PERM
,
3371 .cmd
= NL80211_CMD_SET_KEY
,
3372 .doit
= nl80211_set_key
,
3373 .policy
= nl80211_policy
,
3374 .flags
= GENL_ADMIN_PERM
,
3377 .cmd
= NL80211_CMD_NEW_KEY
,
3378 .doit
= nl80211_new_key
,
3379 .policy
= nl80211_policy
,
3380 .flags
= GENL_ADMIN_PERM
,
3383 .cmd
= NL80211_CMD_DEL_KEY
,
3384 .doit
= nl80211_del_key
,
3385 .policy
= nl80211_policy
,
3386 .flags
= GENL_ADMIN_PERM
,
3389 .cmd
= NL80211_CMD_SET_BEACON
,
3390 .policy
= nl80211_policy
,
3391 .flags
= GENL_ADMIN_PERM
,
3392 .doit
= nl80211_addset_beacon
,
3395 .cmd
= NL80211_CMD_NEW_BEACON
,
3396 .policy
= nl80211_policy
,
3397 .flags
= GENL_ADMIN_PERM
,
3398 .doit
= nl80211_addset_beacon
,
3401 .cmd
= NL80211_CMD_DEL_BEACON
,
3402 .policy
= nl80211_policy
,
3403 .flags
= GENL_ADMIN_PERM
,
3404 .doit
= nl80211_del_beacon
,
3407 .cmd
= NL80211_CMD_GET_STATION
,
3408 .doit
= nl80211_get_station
,
3409 .dumpit
= nl80211_dump_station
,
3410 .policy
= nl80211_policy
,
3413 .cmd
= NL80211_CMD_SET_STATION
,
3414 .doit
= nl80211_set_station
,
3415 .policy
= nl80211_policy
,
3416 .flags
= GENL_ADMIN_PERM
,
3419 .cmd
= NL80211_CMD_NEW_STATION
,
3420 .doit
= nl80211_new_station
,
3421 .policy
= nl80211_policy
,
3422 .flags
= GENL_ADMIN_PERM
,
3425 .cmd
= NL80211_CMD_DEL_STATION
,
3426 .doit
= nl80211_del_station
,
3427 .policy
= nl80211_policy
,
3428 .flags
= GENL_ADMIN_PERM
,
3431 .cmd
= NL80211_CMD_GET_MPATH
,
3432 .doit
= nl80211_get_mpath
,
3433 .dumpit
= nl80211_dump_mpath
,
3434 .policy
= nl80211_policy
,
3435 .flags
= GENL_ADMIN_PERM
,
3438 .cmd
= NL80211_CMD_SET_MPATH
,
3439 .doit
= nl80211_set_mpath
,
3440 .policy
= nl80211_policy
,
3441 .flags
= GENL_ADMIN_PERM
,
3444 .cmd
= NL80211_CMD_NEW_MPATH
,
3445 .doit
= nl80211_new_mpath
,
3446 .policy
= nl80211_policy
,
3447 .flags
= GENL_ADMIN_PERM
,
3450 .cmd
= NL80211_CMD_DEL_MPATH
,
3451 .doit
= nl80211_del_mpath
,
3452 .policy
= nl80211_policy
,
3453 .flags
= GENL_ADMIN_PERM
,
3456 .cmd
= NL80211_CMD_SET_BSS
,
3457 .doit
= nl80211_set_bss
,
3458 .policy
= nl80211_policy
,
3459 .flags
= GENL_ADMIN_PERM
,
3462 .cmd
= NL80211_CMD_GET_REG
,
3463 .doit
= nl80211_get_reg
,
3464 .policy
= nl80211_policy
,
3465 /* can be retrieved by unprivileged users */
3468 .cmd
= NL80211_CMD_SET_REG
,
3469 .doit
= nl80211_set_reg
,
3470 .policy
= nl80211_policy
,
3471 .flags
= GENL_ADMIN_PERM
,
3474 .cmd
= NL80211_CMD_REQ_SET_REG
,
3475 .doit
= nl80211_req_set_reg
,
3476 .policy
= nl80211_policy
,
3477 .flags
= GENL_ADMIN_PERM
,
3480 .cmd
= NL80211_CMD_GET_MESH_PARAMS
,
3481 .doit
= nl80211_get_mesh_params
,
3482 .policy
= nl80211_policy
,
3483 /* can be retrieved by unprivileged users */
3486 .cmd
= NL80211_CMD_SET_MESH_PARAMS
,
3487 .doit
= nl80211_set_mesh_params
,
3488 .policy
= nl80211_policy
,
3489 .flags
= GENL_ADMIN_PERM
,
3492 .cmd
= NL80211_CMD_TRIGGER_SCAN
,
3493 .doit
= nl80211_trigger_scan
,
3494 .policy
= nl80211_policy
,
3495 .flags
= GENL_ADMIN_PERM
,
3498 .cmd
= NL80211_CMD_GET_SCAN
,
3499 .policy
= nl80211_policy
,
3500 .dumpit
= nl80211_dump_scan
,
3503 .cmd
= NL80211_CMD_AUTHENTICATE
,
3504 .doit
= nl80211_authenticate
,
3505 .policy
= nl80211_policy
,
3506 .flags
= GENL_ADMIN_PERM
,
3509 .cmd
= NL80211_CMD_ASSOCIATE
,
3510 .doit
= nl80211_associate
,
3511 .policy
= nl80211_policy
,
3512 .flags
= GENL_ADMIN_PERM
,
3515 .cmd
= NL80211_CMD_DEAUTHENTICATE
,
3516 .doit
= nl80211_deauthenticate
,
3517 .policy
= nl80211_policy
,
3518 .flags
= GENL_ADMIN_PERM
,
3521 .cmd
= NL80211_CMD_DISASSOCIATE
,
3522 .doit
= nl80211_disassociate
,
3523 .policy
= nl80211_policy
,
3524 .flags
= GENL_ADMIN_PERM
,
3527 .cmd
= NL80211_CMD_JOIN_IBSS
,
3528 .doit
= nl80211_join_ibss
,
3529 .policy
= nl80211_policy
,
3530 .flags
= GENL_ADMIN_PERM
,
3533 .cmd
= NL80211_CMD_LEAVE_IBSS
,
3534 .doit
= nl80211_leave_ibss
,
3535 .policy
= nl80211_policy
,
3536 .flags
= GENL_ADMIN_PERM
,
3539 static struct genl_multicast_group nl80211_mlme_mcgrp
= {
3543 /* multicast groups */
3544 static struct genl_multicast_group nl80211_config_mcgrp
= {
3547 static struct genl_multicast_group nl80211_scan_mcgrp
= {
3550 static struct genl_multicast_group nl80211_regulatory_mcgrp
= {
3551 .name
= "regulatory",
3554 /* notification functions */
3556 void nl80211_notify_dev_rename(struct cfg80211_registered_device
*rdev
)
3558 struct sk_buff
*msg
;
3560 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3564 if (nl80211_send_wiphy(msg
, 0, 0, 0, rdev
) < 0) {
3569 genlmsg_multicast(msg
, 0, nl80211_config_mcgrp
.id
, GFP_KERNEL
);
3572 static int nl80211_add_scan_req(struct sk_buff
*msg
,
3573 struct cfg80211_registered_device
*rdev
)
3575 struct cfg80211_scan_request
*req
= rdev
->scan_req
;
3576 struct nlattr
*nest
;
3582 nest
= nla_nest_start(msg
, NL80211_ATTR_SCAN_SSIDS
);
3584 goto nla_put_failure
;
3585 for (i
= 0; i
< req
->n_ssids
; i
++)
3586 NLA_PUT(msg
, i
, req
->ssids
[i
].ssid_len
, req
->ssids
[i
].ssid
);
3587 nla_nest_end(msg
, nest
);
3589 nest
= nla_nest_start(msg
, NL80211_ATTR_SCAN_FREQUENCIES
);
3591 goto nla_put_failure
;
3592 for (i
= 0; i
< req
->n_channels
; i
++)
3593 NLA_PUT_U32(msg
, i
, req
->channels
[i
]->center_freq
);
3594 nla_nest_end(msg
, nest
);
3597 NLA_PUT(msg
, NL80211_ATTR_IE
, req
->ie_len
, req
->ie
);
3604 static int nl80211_send_scan_donemsg(struct sk_buff
*msg
,
3605 struct cfg80211_registered_device
*rdev
,
3606 struct net_device
*netdev
,
3607 u32 pid
, u32 seq
, int flags
,
3612 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, cmd
);
3616 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3617 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3619 /* ignore errors and send incomplete event anyway */
3620 nl80211_add_scan_req(msg
, rdev
);
3622 return genlmsg_end(msg
, hdr
);
3625 genlmsg_cancel(msg
, hdr
);
3629 void nl80211_send_scan_done(struct cfg80211_registered_device
*rdev
,
3630 struct net_device
*netdev
)
3632 struct sk_buff
*msg
;
3634 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3638 if (nl80211_send_scan_donemsg(msg
, rdev
, netdev
, 0, 0, 0,
3639 NL80211_CMD_NEW_SCAN_RESULTS
) < 0) {
3644 genlmsg_multicast(msg
, 0, nl80211_scan_mcgrp
.id
, GFP_KERNEL
);
3647 void nl80211_send_scan_aborted(struct cfg80211_registered_device
*rdev
,
3648 struct net_device
*netdev
)
3650 struct sk_buff
*msg
;
3652 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3656 if (nl80211_send_scan_donemsg(msg
, rdev
, netdev
, 0, 0, 0,
3657 NL80211_CMD_SCAN_ABORTED
) < 0) {
3662 genlmsg_multicast(msg
, 0, nl80211_scan_mcgrp
.id
, GFP_KERNEL
);
3666 * This can happen on global regulatory changes or device specific settings
3667 * based on custom world regulatory domains.
3669 void nl80211_send_reg_change_event(struct regulatory_request
*request
)
3671 struct sk_buff
*msg
;
3674 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3678 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_REG_CHANGE
);
3684 /* Userspace can always count this one always being set */
3685 NLA_PUT_U8(msg
, NL80211_ATTR_REG_INITIATOR
, request
->initiator
);
3687 if (request
->alpha2
[0] == '0' && request
->alpha2
[1] == '0')
3688 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
3689 NL80211_REGDOM_TYPE_WORLD
);
3690 else if (request
->alpha2
[0] == '9' && request
->alpha2
[1] == '9')
3691 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
3692 NL80211_REGDOM_TYPE_CUSTOM_WORLD
);
3693 else if ((request
->alpha2
[0] == '9' && request
->alpha2
[1] == '8') ||
3695 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
3696 NL80211_REGDOM_TYPE_INTERSECTION
);
3698 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
3699 NL80211_REGDOM_TYPE_COUNTRY
);
3700 NLA_PUT_STRING(msg
, NL80211_ATTR_REG_ALPHA2
, request
->alpha2
);
3703 if (wiphy_idx_valid(request
->wiphy_idx
))
3704 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, request
->wiphy_idx
);
3706 if (genlmsg_end(msg
, hdr
) < 0) {
3711 genlmsg_multicast(msg
, 0, nl80211_regulatory_mcgrp
.id
, GFP_KERNEL
);
3716 genlmsg_cancel(msg
, hdr
);
3720 static void nl80211_send_mlme_event(struct cfg80211_registered_device
*rdev
,
3721 struct net_device
*netdev
,
3722 const u8
*buf
, size_t len
,
3723 enum nl80211_commands cmd
)
3725 struct sk_buff
*msg
;
3728 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
3732 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
3738 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3739 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3740 NLA_PUT(msg
, NL80211_ATTR_FRAME
, len
, buf
);
3742 if (genlmsg_end(msg
, hdr
) < 0) {
3747 genlmsg_multicast(msg
, 0, nl80211_mlme_mcgrp
.id
, GFP_ATOMIC
);
3751 genlmsg_cancel(msg
, hdr
);
3755 void nl80211_send_rx_auth(struct cfg80211_registered_device
*rdev
,
3756 struct net_device
*netdev
, const u8
*buf
, size_t len
)
3758 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
3759 NL80211_CMD_AUTHENTICATE
);
3762 void nl80211_send_rx_assoc(struct cfg80211_registered_device
*rdev
,
3763 struct net_device
*netdev
, const u8
*buf
,
3766 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
, NL80211_CMD_ASSOCIATE
);
3769 void nl80211_send_deauth(struct cfg80211_registered_device
*rdev
,
3770 struct net_device
*netdev
, const u8
*buf
, size_t len
)
3772 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
3773 NL80211_CMD_DEAUTHENTICATE
);
3776 void nl80211_send_disassoc(struct cfg80211_registered_device
*rdev
,
3777 struct net_device
*netdev
, const u8
*buf
,
3780 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
3781 NL80211_CMD_DISASSOCIATE
);
3784 static void nl80211_send_mlme_timeout(struct cfg80211_registered_device
*rdev
,
3785 struct net_device
*netdev
, int cmd
,
3788 struct sk_buff
*msg
;
3791 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
3795 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
3801 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3802 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3803 NLA_PUT_FLAG(msg
, NL80211_ATTR_TIMED_OUT
);
3804 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
);
3806 if (genlmsg_end(msg
, hdr
) < 0) {
3811 genlmsg_multicast(msg
, 0, nl80211_mlme_mcgrp
.id
, GFP_ATOMIC
);
3815 genlmsg_cancel(msg
, hdr
);
3819 void nl80211_send_auth_timeout(struct cfg80211_registered_device
*rdev
,
3820 struct net_device
*netdev
, const u8
*addr
)
3822 nl80211_send_mlme_timeout(rdev
, netdev
, NL80211_CMD_AUTHENTICATE
,
3826 void nl80211_send_assoc_timeout(struct cfg80211_registered_device
*rdev
,
3827 struct net_device
*netdev
, const u8
*addr
)
3829 nl80211_send_mlme_timeout(rdev
, netdev
, NL80211_CMD_ASSOCIATE
, addr
);
3832 void nl80211_send_ibss_bssid(struct cfg80211_registered_device
*rdev
,
3833 struct net_device
*netdev
, const u8
*bssid
,
3836 struct sk_buff
*msg
;
3839 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
3843 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_JOIN_IBSS
);
3849 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3850 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3851 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
);
3853 if (genlmsg_end(msg
, hdr
) < 0) {
3858 genlmsg_multicast(msg
, 0, nl80211_mlme_mcgrp
.id
, gfp
);
3862 genlmsg_cancel(msg
, hdr
);
3866 void nl80211_michael_mic_failure(struct cfg80211_registered_device
*rdev
,
3867 struct net_device
*netdev
, const u8
*addr
,
3868 enum nl80211_key_type key_type
, int key_id
,
3871 struct sk_buff
*msg
;
3874 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
3878 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE
);
3884 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3885 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
3887 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
);
3888 NLA_PUT_U32(msg
, NL80211_ATTR_KEY_TYPE
, key_type
);
3889 NLA_PUT_U8(msg
, NL80211_ATTR_KEY_IDX
, key_id
);
3891 NLA_PUT(msg
, NL80211_ATTR_KEY_SEQ
, 6, tsc
);
3893 if (genlmsg_end(msg
, hdr
) < 0) {
3898 genlmsg_multicast(msg
, 0, nl80211_mlme_mcgrp
.id
, GFP_ATOMIC
);
3902 genlmsg_cancel(msg
, hdr
);
3906 void nl80211_send_beacon_hint_event(struct wiphy
*wiphy
,
3907 struct ieee80211_channel
*channel_before
,
3908 struct ieee80211_channel
*channel_after
)
3910 struct sk_buff
*msg
;
3912 struct nlattr
*nl_freq
;
3914 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
3918 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT
);
3925 * Since we are applying the beacon hint to a wiphy we know its
3926 * wiphy_idx is valid
3928 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, get_wiphy_idx(wiphy
));
3931 nl_freq
= nla_nest_start(msg
, NL80211_ATTR_FREQ_BEFORE
);
3933 goto nla_put_failure
;
3934 if (nl80211_msg_put_channel(msg
, channel_before
))
3935 goto nla_put_failure
;
3936 nla_nest_end(msg
, nl_freq
);
3939 nl_freq
= nla_nest_start(msg
, NL80211_ATTR_FREQ_AFTER
);
3941 goto nla_put_failure
;
3942 if (nl80211_msg_put_channel(msg
, channel_after
))
3943 goto nla_put_failure
;
3944 nla_nest_end(msg
, nl_freq
);
3946 if (genlmsg_end(msg
, hdr
) < 0) {
3951 genlmsg_multicast(msg
, 0, nl80211_regulatory_mcgrp
.id
, GFP_ATOMIC
);
3956 genlmsg_cancel(msg
, hdr
);
3960 /* initialisation/exit functions */
3962 int nl80211_init(void)
3966 err
= genl_register_family_with_ops(&nl80211_fam
,
3967 nl80211_ops
, ARRAY_SIZE(nl80211_ops
));
3971 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_config_mcgrp
);
3975 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_scan_mcgrp
);
3979 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_regulatory_mcgrp
);
3983 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_mlme_mcgrp
);
3989 genl_unregister_family(&nl80211_fam
);
3993 void nl80211_exit(void)
3995 genl_unregister_family(&nl80211_fam
);