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/net_namespace.h>
18 #include <net/genetlink.h>
19 #include <net/cfg80211.h>
25 /* the netlink family */
26 static struct genl_family nl80211_fam
= {
27 .id
= GENL_ID_GENERATE
, /* don't bother with a hardcoded ID */
28 .name
= "nl80211", /* have users key off the name instead */
29 .hdrsize
= 0, /* no private header */
30 .version
= 1, /* no particular meaning now */
31 .maxattr
= NL80211_ATTR_MAX
,
35 /* internal helper: get rdev and dev */
36 static int get_rdev_dev_by_info_ifindex(struct genl_info
*info
,
37 struct cfg80211_registered_device
**rdev
,
38 struct net_device
**dev
)
40 struct nlattr
**attrs
= info
->attrs
;
43 if (!attrs
[NL80211_ATTR_IFINDEX
])
46 ifindex
= nla_get_u32(attrs
[NL80211_ATTR_IFINDEX
]);
47 *dev
= dev_get_by_index(genl_info_net(info
), ifindex
);
51 *rdev
= cfg80211_get_dev_from_ifindex(genl_info_net(info
), ifindex
);
54 return PTR_ERR(*rdev
);
60 /* policy for the attributes */
61 static struct nla_policy nl80211_policy
[NL80211_ATTR_MAX
+1] __read_mostly
= {
62 [NL80211_ATTR_WIPHY
] = { .type
= NLA_U32
},
63 [NL80211_ATTR_WIPHY_NAME
] = { .type
= NLA_NUL_STRING
,
65 [NL80211_ATTR_WIPHY_TXQ_PARAMS
] = { .type
= NLA_NESTED
},
66 [NL80211_ATTR_WIPHY_FREQ
] = { .type
= NLA_U32
},
67 [NL80211_ATTR_WIPHY_CHANNEL_TYPE
] = { .type
= NLA_U32
},
68 [NL80211_ATTR_WIPHY_RETRY_SHORT
] = { .type
= NLA_U8
},
69 [NL80211_ATTR_WIPHY_RETRY_LONG
] = { .type
= NLA_U8
},
70 [NL80211_ATTR_WIPHY_FRAG_THRESHOLD
] = { .type
= NLA_U32
},
71 [NL80211_ATTR_WIPHY_RTS_THRESHOLD
] = { .type
= NLA_U32
},
73 [NL80211_ATTR_IFTYPE
] = { .type
= NLA_U32
},
74 [NL80211_ATTR_IFINDEX
] = { .type
= NLA_U32
},
75 [NL80211_ATTR_IFNAME
] = { .type
= NLA_NUL_STRING
, .len
= IFNAMSIZ
-1 },
77 [NL80211_ATTR_MAC
] = { .type
= NLA_BINARY
, .len
= ETH_ALEN
},
78 [NL80211_ATTR_PREV_BSSID
] = { .type
= NLA_BINARY
, .len
= ETH_ALEN
},
80 [NL80211_ATTR_KEY
] = { .type
= NLA_NESTED
, },
81 [NL80211_ATTR_KEY_DATA
] = { .type
= NLA_BINARY
,
82 .len
= WLAN_MAX_KEY_LEN
},
83 [NL80211_ATTR_KEY_IDX
] = { .type
= NLA_U8
},
84 [NL80211_ATTR_KEY_CIPHER
] = { .type
= NLA_U32
},
85 [NL80211_ATTR_KEY_DEFAULT
] = { .type
= NLA_FLAG
},
86 [NL80211_ATTR_KEY_SEQ
] = { .type
= NLA_BINARY
, .len
= 8 },
88 [NL80211_ATTR_BEACON_INTERVAL
] = { .type
= NLA_U32
},
89 [NL80211_ATTR_DTIM_PERIOD
] = { .type
= NLA_U32
},
90 [NL80211_ATTR_BEACON_HEAD
] = { .type
= NLA_BINARY
,
91 .len
= IEEE80211_MAX_DATA_LEN
},
92 [NL80211_ATTR_BEACON_TAIL
] = { .type
= NLA_BINARY
,
93 .len
= IEEE80211_MAX_DATA_LEN
},
94 [NL80211_ATTR_STA_AID
] = { .type
= NLA_U16
},
95 [NL80211_ATTR_STA_FLAGS
] = { .type
= NLA_NESTED
},
96 [NL80211_ATTR_STA_LISTEN_INTERVAL
] = { .type
= NLA_U16
},
97 [NL80211_ATTR_STA_SUPPORTED_RATES
] = { .type
= NLA_BINARY
,
98 .len
= NL80211_MAX_SUPP_RATES
},
99 [NL80211_ATTR_STA_PLINK_ACTION
] = { .type
= NLA_U8
},
100 [NL80211_ATTR_STA_VLAN
] = { .type
= NLA_U32
},
101 [NL80211_ATTR_MNTR_FLAGS
] = { /* NLA_NESTED can't be empty */ },
102 [NL80211_ATTR_MESH_ID
] = { .type
= NLA_BINARY
,
103 .len
= IEEE80211_MAX_MESH_ID_LEN
},
104 [NL80211_ATTR_MPATH_NEXT_HOP
] = { .type
= NLA_U32
},
106 [NL80211_ATTR_REG_ALPHA2
] = { .type
= NLA_STRING
, .len
= 2 },
107 [NL80211_ATTR_REG_RULES
] = { .type
= NLA_NESTED
},
109 [NL80211_ATTR_BSS_CTS_PROT
] = { .type
= NLA_U8
},
110 [NL80211_ATTR_BSS_SHORT_PREAMBLE
] = { .type
= NLA_U8
},
111 [NL80211_ATTR_BSS_SHORT_SLOT_TIME
] = { .type
= NLA_U8
},
112 [NL80211_ATTR_BSS_BASIC_RATES
] = { .type
= NLA_BINARY
,
113 .len
= NL80211_MAX_SUPP_RATES
},
115 [NL80211_ATTR_MESH_PARAMS
] = { .type
= NLA_NESTED
},
117 [NL80211_ATTR_HT_CAPABILITY
] = { .type
= NLA_BINARY
,
118 .len
= NL80211_HT_CAPABILITY_LEN
},
120 [NL80211_ATTR_MGMT_SUBTYPE
] = { .type
= NLA_U8
},
121 [NL80211_ATTR_IE
] = { .type
= NLA_BINARY
,
122 .len
= IEEE80211_MAX_DATA_LEN
},
123 [NL80211_ATTR_SCAN_FREQUENCIES
] = { .type
= NLA_NESTED
},
124 [NL80211_ATTR_SCAN_SSIDS
] = { .type
= NLA_NESTED
},
126 [NL80211_ATTR_SSID
] = { .type
= NLA_BINARY
,
127 .len
= IEEE80211_MAX_SSID_LEN
},
128 [NL80211_ATTR_AUTH_TYPE
] = { .type
= NLA_U32
},
129 [NL80211_ATTR_REASON_CODE
] = { .type
= NLA_U16
},
130 [NL80211_ATTR_FREQ_FIXED
] = { .type
= NLA_FLAG
},
131 [NL80211_ATTR_TIMED_OUT
] = { .type
= NLA_FLAG
},
132 [NL80211_ATTR_USE_MFP
] = { .type
= NLA_U32
},
133 [NL80211_ATTR_STA_FLAGS2
] = {
134 .len
= sizeof(struct nl80211_sta_flag_update
),
136 [NL80211_ATTR_CONTROL_PORT
] = { .type
= NLA_FLAG
},
137 [NL80211_ATTR_PRIVACY
] = { .type
= NLA_FLAG
},
138 [NL80211_ATTR_CIPHER_SUITE_GROUP
] = { .type
= NLA_U32
},
139 [NL80211_ATTR_WPA_VERSIONS
] = { .type
= NLA_U32
},
140 [NL80211_ATTR_PID
] = { .type
= NLA_U32
},
143 /* policy for the attributes */
144 static struct nla_policy
145 nl80211_key_policy
[NL80211_KEY_MAX
+ 1] __read_mostly
= {
146 [NL80211_KEY_DATA
] = { .type
= NLA_BINARY
, .len
= WLAN_MAX_KEY_LEN
},
147 [NL80211_KEY_IDX
] = { .type
= NLA_U8
},
148 [NL80211_KEY_CIPHER
] = { .type
= NLA_U32
},
149 [NL80211_KEY_SEQ
] = { .type
= NLA_BINARY
, .len
= 8 },
150 [NL80211_KEY_DEFAULT
] = { .type
= NLA_FLAG
},
151 [NL80211_KEY_DEFAULT_MGMT
] = { .type
= NLA_FLAG
},
155 static bool is_valid_ie_attr(const struct nlattr
*attr
)
163 pos
= nla_data(attr
);
184 /* message building helper */
185 static inline void *nl80211hdr_put(struct sk_buff
*skb
, u32 pid
, u32 seq
,
188 /* since there is no private header just add the generic one */
189 return genlmsg_put(skb
, pid
, seq
, &nl80211_fam
, flags
, cmd
);
192 static int nl80211_msg_put_channel(struct sk_buff
*msg
,
193 struct ieee80211_channel
*chan
)
195 NLA_PUT_U32(msg
, NL80211_FREQUENCY_ATTR_FREQ
,
198 if (chan
->flags
& IEEE80211_CHAN_DISABLED
)
199 NLA_PUT_FLAG(msg
, NL80211_FREQUENCY_ATTR_DISABLED
);
200 if (chan
->flags
& IEEE80211_CHAN_PASSIVE_SCAN
)
201 NLA_PUT_FLAG(msg
, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN
);
202 if (chan
->flags
& IEEE80211_CHAN_NO_IBSS
)
203 NLA_PUT_FLAG(msg
, NL80211_FREQUENCY_ATTR_NO_IBSS
);
204 if (chan
->flags
& IEEE80211_CHAN_RADAR
)
205 NLA_PUT_FLAG(msg
, NL80211_FREQUENCY_ATTR_RADAR
);
207 NLA_PUT_U32(msg
, NL80211_FREQUENCY_ATTR_MAX_TX_POWER
,
208 DBM_TO_MBM(chan
->max_power
));
216 /* netlink command implementations */
224 static int nl80211_parse_key_new(struct nlattr
*key
, struct key_parse
*k
)
226 struct nlattr
*tb
[NL80211_KEY_MAX
+ 1];
227 int err
= nla_parse_nested(tb
, NL80211_KEY_MAX
, key
,
232 k
->def
= !!tb
[NL80211_KEY_DEFAULT
];
233 k
->defmgmt
= !!tb
[NL80211_KEY_DEFAULT_MGMT
];
235 if (tb
[NL80211_KEY_IDX
])
236 k
->idx
= nla_get_u8(tb
[NL80211_KEY_IDX
]);
238 if (tb
[NL80211_KEY_DATA
]) {
239 k
->p
.key
= nla_data(tb
[NL80211_KEY_DATA
]);
240 k
->p
.key_len
= nla_len(tb
[NL80211_KEY_DATA
]);
243 if (tb
[NL80211_KEY_SEQ
]) {
244 k
->p
.seq
= nla_data(tb
[NL80211_KEY_SEQ
]);
245 k
->p
.seq_len
= nla_len(tb
[NL80211_KEY_SEQ
]);
248 if (tb
[NL80211_KEY_CIPHER
])
249 k
->p
.cipher
= nla_get_u32(tb
[NL80211_KEY_CIPHER
]);
254 static int nl80211_parse_key_old(struct genl_info
*info
, struct key_parse
*k
)
256 if (info
->attrs
[NL80211_ATTR_KEY_DATA
]) {
257 k
->p
.key
= nla_data(info
->attrs
[NL80211_ATTR_KEY_DATA
]);
258 k
->p
.key_len
= nla_len(info
->attrs
[NL80211_ATTR_KEY_DATA
]);
261 if (info
->attrs
[NL80211_ATTR_KEY_SEQ
]) {
262 k
->p
.seq
= nla_data(info
->attrs
[NL80211_ATTR_KEY_SEQ
]);
263 k
->p
.seq_len
= nla_len(info
->attrs
[NL80211_ATTR_KEY_SEQ
]);
266 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
267 k
->idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
269 if (info
->attrs
[NL80211_ATTR_KEY_CIPHER
])
270 k
->p
.cipher
= nla_get_u32(info
->attrs
[NL80211_ATTR_KEY_CIPHER
]);
272 k
->def
= !!info
->attrs
[NL80211_ATTR_KEY_DEFAULT
];
273 k
->defmgmt
= !!info
->attrs
[NL80211_ATTR_KEY_DEFAULT_MGMT
];
278 static int nl80211_parse_key(struct genl_info
*info
, struct key_parse
*k
)
282 memset(k
, 0, sizeof(*k
));
285 if (info
->attrs
[NL80211_ATTR_KEY
])
286 err
= nl80211_parse_key_new(info
->attrs
[NL80211_ATTR_KEY
], k
);
288 err
= nl80211_parse_key_old(info
, k
);
293 if (k
->def
&& k
->defmgmt
)
298 if (k
->idx
< 4 || k
->idx
> 5)
301 if (k
->idx
< 0 || k
->idx
> 3)
304 if (k
->idx
< 0 || k
->idx
> 5)
312 static struct cfg80211_cached_keys
*
313 nl80211_parse_connkeys(struct cfg80211_registered_device
*rdev
,
316 struct key_parse parse
;
318 struct cfg80211_cached_keys
*result
;
319 int rem
, err
, def
= 0;
321 result
= kzalloc(sizeof(*result
), GFP_KERNEL
);
323 return ERR_PTR(-ENOMEM
);
326 result
->defmgmt
= -1;
328 nla_for_each_nested(key
, keys
, rem
) {
329 memset(&parse
, 0, sizeof(parse
));
332 err
= nl80211_parse_key_new(key
, &parse
);
338 if (parse
.idx
< 0 || parse
.idx
> 4)
344 result
->def
= parse
.idx
;
345 } else if (parse
.defmgmt
)
347 err
= cfg80211_validate_key_settings(rdev
, &parse
.p
,
351 result
->params
[parse
.idx
].cipher
= parse
.p
.cipher
;
352 result
->params
[parse
.idx
].key_len
= parse
.p
.key_len
;
353 result
->params
[parse
.idx
].key
= result
->data
[parse
.idx
];
354 memcpy(result
->data
[parse
.idx
], parse
.p
.key
, parse
.p
.key_len
);
363 static int nl80211_key_allowed(struct wireless_dev
*wdev
)
365 ASSERT_WDEV_LOCK(wdev
);
367 if (!netif_running(wdev
->netdev
))
370 switch (wdev
->iftype
) {
371 case NL80211_IFTYPE_AP
:
372 case NL80211_IFTYPE_AP_VLAN
:
374 case NL80211_IFTYPE_ADHOC
:
375 if (!wdev
->current_bss
)
378 case NL80211_IFTYPE_STATION
:
379 if (wdev
->sme_state
!= CFG80211_SME_CONNECTED
)
389 static int nl80211_send_wiphy(struct sk_buff
*msg
, u32 pid
, u32 seq
, int flags
,
390 struct cfg80211_registered_device
*dev
)
393 struct nlattr
*nl_bands
, *nl_band
;
394 struct nlattr
*nl_freqs
, *nl_freq
;
395 struct nlattr
*nl_rates
, *nl_rate
;
396 struct nlattr
*nl_modes
;
397 struct nlattr
*nl_cmds
;
398 enum ieee80211_band band
;
399 struct ieee80211_channel
*chan
;
400 struct ieee80211_rate
*rate
;
402 u16 ifmodes
= dev
->wiphy
.interface_modes
;
404 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_WIPHY
);
408 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, dev
->wiphy_idx
);
409 NLA_PUT_STRING(msg
, NL80211_ATTR_WIPHY_NAME
, wiphy_name(&dev
->wiphy
));
411 NLA_PUT_U32(msg
, NL80211_ATTR_GENERATION
,
412 cfg80211_rdev_list_generation
);
414 NLA_PUT_U8(msg
, NL80211_ATTR_WIPHY_RETRY_SHORT
,
415 dev
->wiphy
.retry_short
);
416 NLA_PUT_U8(msg
, NL80211_ATTR_WIPHY_RETRY_LONG
,
417 dev
->wiphy
.retry_long
);
418 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY_FRAG_THRESHOLD
,
419 dev
->wiphy
.frag_threshold
);
420 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY_RTS_THRESHOLD
,
421 dev
->wiphy
.rts_threshold
);
423 NLA_PUT_U8(msg
, NL80211_ATTR_MAX_NUM_SCAN_SSIDS
,
424 dev
->wiphy
.max_scan_ssids
);
425 NLA_PUT_U16(msg
, NL80211_ATTR_MAX_SCAN_IE_LEN
,
426 dev
->wiphy
.max_scan_ie_len
);
428 NLA_PUT(msg
, NL80211_ATTR_CIPHER_SUITES
,
429 sizeof(u32
) * dev
->wiphy
.n_cipher_suites
,
430 dev
->wiphy
.cipher_suites
);
432 nl_modes
= nla_nest_start(msg
, NL80211_ATTR_SUPPORTED_IFTYPES
);
434 goto nla_put_failure
;
439 NLA_PUT_FLAG(msg
, i
);
444 nla_nest_end(msg
, nl_modes
);
446 nl_bands
= nla_nest_start(msg
, NL80211_ATTR_WIPHY_BANDS
);
448 goto nla_put_failure
;
450 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
451 if (!dev
->wiphy
.bands
[band
])
454 nl_band
= nla_nest_start(msg
, band
);
456 goto nla_put_failure
;
459 if (dev
->wiphy
.bands
[band
]->ht_cap
.ht_supported
) {
460 NLA_PUT(msg
, NL80211_BAND_ATTR_HT_MCS_SET
,
461 sizeof(dev
->wiphy
.bands
[band
]->ht_cap
.mcs
),
462 &dev
->wiphy
.bands
[band
]->ht_cap
.mcs
);
463 NLA_PUT_U16(msg
, NL80211_BAND_ATTR_HT_CAPA
,
464 dev
->wiphy
.bands
[band
]->ht_cap
.cap
);
465 NLA_PUT_U8(msg
, NL80211_BAND_ATTR_HT_AMPDU_FACTOR
,
466 dev
->wiphy
.bands
[band
]->ht_cap
.ampdu_factor
);
467 NLA_PUT_U8(msg
, NL80211_BAND_ATTR_HT_AMPDU_DENSITY
,
468 dev
->wiphy
.bands
[band
]->ht_cap
.ampdu_density
);
471 /* add frequencies */
472 nl_freqs
= nla_nest_start(msg
, NL80211_BAND_ATTR_FREQS
);
474 goto nla_put_failure
;
476 for (i
= 0; i
< dev
->wiphy
.bands
[band
]->n_channels
; i
++) {
477 nl_freq
= nla_nest_start(msg
, i
);
479 goto nla_put_failure
;
481 chan
= &dev
->wiphy
.bands
[band
]->channels
[i
];
483 if (nl80211_msg_put_channel(msg
, chan
))
484 goto nla_put_failure
;
486 nla_nest_end(msg
, nl_freq
);
489 nla_nest_end(msg
, nl_freqs
);
492 nl_rates
= nla_nest_start(msg
, NL80211_BAND_ATTR_RATES
);
494 goto nla_put_failure
;
496 for (i
= 0; i
< dev
->wiphy
.bands
[band
]->n_bitrates
; i
++) {
497 nl_rate
= nla_nest_start(msg
, i
);
499 goto nla_put_failure
;
501 rate
= &dev
->wiphy
.bands
[band
]->bitrates
[i
];
502 NLA_PUT_U32(msg
, NL80211_BITRATE_ATTR_RATE
,
504 if (rate
->flags
& IEEE80211_RATE_SHORT_PREAMBLE
)
506 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE
);
508 nla_nest_end(msg
, nl_rate
);
511 nla_nest_end(msg
, nl_rates
);
513 nla_nest_end(msg
, nl_band
);
515 nla_nest_end(msg
, nl_bands
);
517 nl_cmds
= nla_nest_start(msg
, NL80211_ATTR_SUPPORTED_COMMANDS
);
519 goto nla_put_failure
;
524 if (dev->ops->op) { \
526 NLA_PUT_U32(msg, i, NL80211_CMD_ ## n); \
530 CMD(add_virtual_intf
, NEW_INTERFACE
);
531 CMD(change_virtual_intf
, SET_INTERFACE
);
532 CMD(add_key
, NEW_KEY
);
533 CMD(add_beacon
, NEW_BEACON
);
534 CMD(add_station
, NEW_STATION
);
535 CMD(add_mpath
, NEW_MPATH
);
536 CMD(set_mesh_params
, SET_MESH_PARAMS
);
537 CMD(change_bss
, SET_BSS
);
538 CMD(auth
, AUTHENTICATE
);
539 CMD(assoc
, ASSOCIATE
);
540 CMD(deauth
, DEAUTHENTICATE
);
541 CMD(disassoc
, DISASSOCIATE
);
542 CMD(join_ibss
, JOIN_IBSS
);
543 if (dev
->wiphy
.netnsok
) {
545 NLA_PUT_U32(msg
, i
, NL80211_CMD_SET_WIPHY_NETNS
);
550 if (dev
->ops
->connect
|| dev
->ops
->auth
) {
552 NLA_PUT_U32(msg
, i
, NL80211_CMD_CONNECT
);
555 if (dev
->ops
->disconnect
|| dev
->ops
->deauth
) {
557 NLA_PUT_U32(msg
, i
, NL80211_CMD_DISCONNECT
);
560 nla_nest_end(msg
, nl_cmds
);
562 return genlmsg_end(msg
, hdr
);
565 genlmsg_cancel(msg
, hdr
);
569 static int nl80211_dump_wiphy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
572 int start
= cb
->args
[0];
573 struct cfg80211_registered_device
*dev
;
575 mutex_lock(&cfg80211_mutex
);
576 list_for_each_entry(dev
, &cfg80211_rdev_list
, list
) {
577 if (!net_eq(wiphy_net(&dev
->wiphy
), sock_net(skb
->sk
)))
581 if (nl80211_send_wiphy(skb
, NETLINK_CB(cb
->skb
).pid
,
582 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
588 mutex_unlock(&cfg80211_mutex
);
595 static int nl80211_get_wiphy(struct sk_buff
*skb
, struct genl_info
*info
)
598 struct cfg80211_registered_device
*dev
;
600 dev
= cfg80211_get_dev_from_info(info
);
604 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
608 if (nl80211_send_wiphy(msg
, info
->snd_pid
, info
->snd_seq
, 0, dev
) < 0)
611 cfg80211_unlock_rdev(dev
);
613 return genlmsg_reply(msg
, info
);
618 cfg80211_unlock_rdev(dev
);
622 static const struct nla_policy txq_params_policy
[NL80211_TXQ_ATTR_MAX
+ 1] = {
623 [NL80211_TXQ_ATTR_QUEUE
] = { .type
= NLA_U8
},
624 [NL80211_TXQ_ATTR_TXOP
] = { .type
= NLA_U16
},
625 [NL80211_TXQ_ATTR_CWMIN
] = { .type
= NLA_U16
},
626 [NL80211_TXQ_ATTR_CWMAX
] = { .type
= NLA_U16
},
627 [NL80211_TXQ_ATTR_AIFS
] = { .type
= NLA_U8
},
630 static int parse_txq_params(struct nlattr
*tb
[],
631 struct ieee80211_txq_params
*txq_params
)
633 if (!tb
[NL80211_TXQ_ATTR_QUEUE
] || !tb
[NL80211_TXQ_ATTR_TXOP
] ||
634 !tb
[NL80211_TXQ_ATTR_CWMIN
] || !tb
[NL80211_TXQ_ATTR_CWMAX
] ||
635 !tb
[NL80211_TXQ_ATTR_AIFS
])
638 txq_params
->queue
= nla_get_u8(tb
[NL80211_TXQ_ATTR_QUEUE
]);
639 txq_params
->txop
= nla_get_u16(tb
[NL80211_TXQ_ATTR_TXOP
]);
640 txq_params
->cwmin
= nla_get_u16(tb
[NL80211_TXQ_ATTR_CWMIN
]);
641 txq_params
->cwmax
= nla_get_u16(tb
[NL80211_TXQ_ATTR_CWMAX
]);
642 txq_params
->aifs
= nla_get_u8(tb
[NL80211_TXQ_ATTR_AIFS
]);
647 static int nl80211_set_wiphy(struct sk_buff
*skb
, struct genl_info
*info
)
649 struct cfg80211_registered_device
*rdev
;
650 int result
= 0, rem_txq_params
= 0;
651 struct nlattr
*nl_txq_params
;
653 u8 retry_short
= 0, retry_long
= 0;
654 u32 frag_threshold
= 0, rts_threshold
= 0;
658 mutex_lock(&cfg80211_mutex
);
660 rdev
= __cfg80211_rdev_from_info(info
);
662 mutex_unlock(&cfg80211_mutex
);
663 result
= PTR_ERR(rdev
);
667 mutex_lock(&rdev
->mtx
);
669 if (info
->attrs
[NL80211_ATTR_WIPHY_NAME
])
670 result
= cfg80211_dev_rename(
671 rdev
, nla_data(info
->attrs
[NL80211_ATTR_WIPHY_NAME
]));
673 mutex_unlock(&cfg80211_mutex
);
678 if (info
->attrs
[NL80211_ATTR_WIPHY_TXQ_PARAMS
]) {
679 struct ieee80211_txq_params txq_params
;
680 struct nlattr
*tb
[NL80211_TXQ_ATTR_MAX
+ 1];
682 if (!rdev
->ops
->set_txq_params
) {
683 result
= -EOPNOTSUPP
;
687 nla_for_each_nested(nl_txq_params
,
688 info
->attrs
[NL80211_ATTR_WIPHY_TXQ_PARAMS
],
690 nla_parse(tb
, NL80211_TXQ_ATTR_MAX
,
691 nla_data(nl_txq_params
),
692 nla_len(nl_txq_params
),
694 result
= parse_txq_params(tb
, &txq_params
);
698 result
= rdev
->ops
->set_txq_params(&rdev
->wiphy
,
705 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
706 enum nl80211_channel_type channel_type
= NL80211_CHAN_NO_HT
;
711 if (info
->attrs
[NL80211_ATTR_WIPHY_CHANNEL_TYPE
]) {
712 channel_type
= nla_get_u32(info
->attrs
[
713 NL80211_ATTR_WIPHY_CHANNEL_TYPE
]);
714 if (channel_type
!= NL80211_CHAN_NO_HT
&&
715 channel_type
!= NL80211_CHAN_HT20
&&
716 channel_type
!= NL80211_CHAN_HT40PLUS
&&
717 channel_type
!= NL80211_CHAN_HT40MINUS
)
721 freq
= nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]);
723 mutex_lock(&rdev
->devlist_mtx
);
724 result
= rdev_set_freq(rdev
, NULL
, freq
, channel_type
);
725 mutex_unlock(&rdev
->devlist_mtx
);
732 if (info
->attrs
[NL80211_ATTR_WIPHY_RETRY_SHORT
]) {
733 retry_short
= nla_get_u8(
734 info
->attrs
[NL80211_ATTR_WIPHY_RETRY_SHORT
]);
735 if (retry_short
== 0) {
739 changed
|= WIPHY_PARAM_RETRY_SHORT
;
742 if (info
->attrs
[NL80211_ATTR_WIPHY_RETRY_LONG
]) {
743 retry_long
= nla_get_u8(
744 info
->attrs
[NL80211_ATTR_WIPHY_RETRY_LONG
]);
745 if (retry_long
== 0) {
749 changed
|= WIPHY_PARAM_RETRY_LONG
;
752 if (info
->attrs
[NL80211_ATTR_WIPHY_FRAG_THRESHOLD
]) {
753 frag_threshold
= nla_get_u32(
754 info
->attrs
[NL80211_ATTR_WIPHY_FRAG_THRESHOLD
]);
755 if (frag_threshold
< 256) {
759 if (frag_threshold
!= (u32
) -1) {
761 * Fragments (apart from the last one) are required to
762 * have even length. Make the fragmentation code
763 * simpler by stripping LSB should someone try to use
764 * odd threshold value.
766 frag_threshold
&= ~0x1;
768 changed
|= WIPHY_PARAM_FRAG_THRESHOLD
;
771 if (info
->attrs
[NL80211_ATTR_WIPHY_RTS_THRESHOLD
]) {
772 rts_threshold
= nla_get_u32(
773 info
->attrs
[NL80211_ATTR_WIPHY_RTS_THRESHOLD
]);
774 changed
|= WIPHY_PARAM_RTS_THRESHOLD
;
778 u8 old_retry_short
, old_retry_long
;
779 u32 old_frag_threshold
, old_rts_threshold
;
781 if (!rdev
->ops
->set_wiphy_params
) {
782 result
= -EOPNOTSUPP
;
786 old_retry_short
= rdev
->wiphy
.retry_short
;
787 old_retry_long
= rdev
->wiphy
.retry_long
;
788 old_frag_threshold
= rdev
->wiphy
.frag_threshold
;
789 old_rts_threshold
= rdev
->wiphy
.rts_threshold
;
791 if (changed
& WIPHY_PARAM_RETRY_SHORT
)
792 rdev
->wiphy
.retry_short
= retry_short
;
793 if (changed
& WIPHY_PARAM_RETRY_LONG
)
794 rdev
->wiphy
.retry_long
= retry_long
;
795 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
)
796 rdev
->wiphy
.frag_threshold
= frag_threshold
;
797 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
)
798 rdev
->wiphy
.rts_threshold
= rts_threshold
;
800 result
= rdev
->ops
->set_wiphy_params(&rdev
->wiphy
, changed
);
802 rdev
->wiphy
.retry_short
= old_retry_short
;
803 rdev
->wiphy
.retry_long
= old_retry_long
;
804 rdev
->wiphy
.frag_threshold
= old_frag_threshold
;
805 rdev
->wiphy
.rts_threshold
= old_rts_threshold
;
810 mutex_unlock(&rdev
->mtx
);
817 static int nl80211_send_iface(struct sk_buff
*msg
, u32 pid
, u32 seq
, int flags
,
818 struct cfg80211_registered_device
*rdev
,
819 struct net_device
*dev
)
823 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_INTERFACE
);
827 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
828 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
829 NLA_PUT_STRING(msg
, NL80211_ATTR_IFNAME
, dev
->name
);
830 NLA_PUT_U32(msg
, NL80211_ATTR_IFTYPE
, dev
->ieee80211_ptr
->iftype
);
832 NLA_PUT_U32(msg
, NL80211_ATTR_GENERATION
,
833 rdev
->devlist_generation
^
834 (cfg80211_rdev_list_generation
<< 2));
836 return genlmsg_end(msg
, hdr
);
839 genlmsg_cancel(msg
, hdr
);
843 static int nl80211_dump_interface(struct sk_buff
*skb
, struct netlink_callback
*cb
)
847 int wp_start
= cb
->args
[0];
848 int if_start
= cb
->args
[1];
849 struct cfg80211_registered_device
*rdev
;
850 struct wireless_dev
*wdev
;
852 mutex_lock(&cfg80211_mutex
);
853 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
854 if (!net_eq(wiphy_net(&rdev
->wiphy
), sock_net(skb
->sk
)))
856 if (wp_idx
< wp_start
) {
862 mutex_lock(&rdev
->devlist_mtx
);
863 list_for_each_entry(wdev
, &rdev
->netdev_list
, list
) {
864 if (if_idx
< if_start
) {
868 if (nl80211_send_iface(skb
, NETLINK_CB(cb
->skb
).pid
,
869 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
870 rdev
, wdev
->netdev
) < 0) {
871 mutex_unlock(&rdev
->devlist_mtx
);
876 mutex_unlock(&rdev
->devlist_mtx
);
881 mutex_unlock(&cfg80211_mutex
);
883 cb
->args
[0] = wp_idx
;
884 cb
->args
[1] = if_idx
;
889 static int nl80211_get_interface(struct sk_buff
*skb
, struct genl_info
*info
)
892 struct cfg80211_registered_device
*dev
;
893 struct net_device
*netdev
;
896 err
= get_rdev_dev_by_info_ifindex(info
, &dev
, &netdev
);
900 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
904 if (nl80211_send_iface(msg
, info
->snd_pid
, info
->snd_seq
, 0,
909 cfg80211_unlock_rdev(dev
);
911 return genlmsg_reply(msg
, info
);
917 cfg80211_unlock_rdev(dev
);
921 static const struct nla_policy mntr_flags_policy
[NL80211_MNTR_FLAG_MAX
+ 1] = {
922 [NL80211_MNTR_FLAG_FCSFAIL
] = { .type
= NLA_FLAG
},
923 [NL80211_MNTR_FLAG_PLCPFAIL
] = { .type
= NLA_FLAG
},
924 [NL80211_MNTR_FLAG_CONTROL
] = { .type
= NLA_FLAG
},
925 [NL80211_MNTR_FLAG_OTHER_BSS
] = { .type
= NLA_FLAG
},
926 [NL80211_MNTR_FLAG_COOK_FRAMES
] = { .type
= NLA_FLAG
},
929 static int parse_monitor_flags(struct nlattr
*nla
, u32
*mntrflags
)
931 struct nlattr
*flags
[NL80211_MNTR_FLAG_MAX
+ 1];
939 if (nla_parse_nested(flags
, NL80211_MNTR_FLAG_MAX
,
940 nla
, mntr_flags_policy
))
943 for (flag
= 1; flag
<= NL80211_MNTR_FLAG_MAX
; flag
++)
945 *mntrflags
|= (1<<flag
);
950 static int nl80211_set_interface(struct sk_buff
*skb
, struct genl_info
*info
)
952 struct cfg80211_registered_device
*rdev
;
953 struct vif_params params
;
955 enum nl80211_iftype otype
, ntype
;
956 struct net_device
*dev
;
957 u32 _flags
, *flags
= NULL
;
960 memset(¶ms
, 0, sizeof(params
));
964 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
968 otype
= ntype
= dev
->ieee80211_ptr
->iftype
;
970 if (info
->attrs
[NL80211_ATTR_IFTYPE
]) {
971 ntype
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFTYPE
]);
974 if (ntype
> NL80211_IFTYPE_MAX
) {
980 if (info
->attrs
[NL80211_ATTR_MESH_ID
]) {
981 if (ntype
!= NL80211_IFTYPE_MESH_POINT
) {
985 params
.mesh_id
= nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]);
986 params
.mesh_id_len
= nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
990 if (info
->attrs
[NL80211_ATTR_MNTR_FLAGS
]) {
991 if (ntype
!= NL80211_IFTYPE_MONITOR
) {
995 err
= parse_monitor_flags(info
->attrs
[NL80211_ATTR_MNTR_FLAGS
],
1005 err
= cfg80211_change_iface(rdev
, dev
, ntype
, flags
, ¶ms
);
1011 cfg80211_unlock_rdev(rdev
);
1017 static int nl80211_new_interface(struct sk_buff
*skb
, struct genl_info
*info
)
1019 struct cfg80211_registered_device
*rdev
;
1020 struct vif_params params
;
1022 enum nl80211_iftype type
= NL80211_IFTYPE_UNSPECIFIED
;
1025 memset(¶ms
, 0, sizeof(params
));
1027 if (!info
->attrs
[NL80211_ATTR_IFNAME
])
1030 if (info
->attrs
[NL80211_ATTR_IFTYPE
]) {
1031 type
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFTYPE
]);
1032 if (type
> NL80211_IFTYPE_MAX
)
1038 rdev
= cfg80211_get_dev_from_info(info
);
1040 err
= PTR_ERR(rdev
);
1044 if (!rdev
->ops
->add_virtual_intf
||
1045 !(rdev
->wiphy
.interface_modes
& (1 << type
))) {
1050 if (type
== NL80211_IFTYPE_MESH_POINT
&&
1051 info
->attrs
[NL80211_ATTR_MESH_ID
]) {
1052 params
.mesh_id
= nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]);
1053 params
.mesh_id_len
= nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
1056 err
= parse_monitor_flags(type
== NL80211_IFTYPE_MONITOR
?
1057 info
->attrs
[NL80211_ATTR_MNTR_FLAGS
] : NULL
,
1059 err
= rdev
->ops
->add_virtual_intf(&rdev
->wiphy
,
1060 nla_data(info
->attrs
[NL80211_ATTR_IFNAME
]),
1061 type
, err
? NULL
: &flags
, ¶ms
);
1064 cfg80211_unlock_rdev(rdev
);
1070 static int nl80211_del_interface(struct sk_buff
*skb
, struct genl_info
*info
)
1072 struct cfg80211_registered_device
*rdev
;
1074 struct net_device
*dev
;
1078 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1082 if (!rdev
->ops
->del_virtual_intf
) {
1087 err
= rdev
->ops
->del_virtual_intf(&rdev
->wiphy
, dev
);
1090 cfg80211_unlock_rdev(rdev
);
1097 struct get_key_cookie
{
1098 struct sk_buff
*msg
;
1103 static void get_key_callback(void *c
, struct key_params
*params
)
1106 struct get_key_cookie
*cookie
= c
;
1109 NLA_PUT(cookie
->msg
, NL80211_ATTR_KEY_DATA
,
1110 params
->key_len
, params
->key
);
1113 NLA_PUT(cookie
->msg
, NL80211_ATTR_KEY_SEQ
,
1114 params
->seq_len
, params
->seq
);
1117 NLA_PUT_U32(cookie
->msg
, NL80211_ATTR_KEY_CIPHER
,
1120 key
= nla_nest_start(cookie
->msg
, NL80211_ATTR_KEY
);
1122 goto nla_put_failure
;
1125 NLA_PUT(cookie
->msg
, NL80211_KEY_DATA
,
1126 params
->key_len
, params
->key
);
1129 NLA_PUT(cookie
->msg
, NL80211_KEY_SEQ
,
1130 params
->seq_len
, params
->seq
);
1133 NLA_PUT_U32(cookie
->msg
, NL80211_KEY_CIPHER
,
1136 NLA_PUT_U8(cookie
->msg
, NL80211_ATTR_KEY_IDX
, cookie
->idx
);
1138 nla_nest_end(cookie
->msg
, key
);
1145 static int nl80211_get_key(struct sk_buff
*skb
, struct genl_info
*info
)
1147 struct cfg80211_registered_device
*rdev
;
1149 struct net_device
*dev
;
1151 u8
*mac_addr
= NULL
;
1152 struct get_key_cookie cookie
= {
1156 struct sk_buff
*msg
;
1158 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
1159 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
1164 if (info
->attrs
[NL80211_ATTR_MAC
])
1165 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1169 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1173 if (!rdev
->ops
->get_key
) {
1178 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1184 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
1185 NL80211_CMD_NEW_KEY
);
1193 cookie
.idx
= key_idx
;
1195 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
1196 NLA_PUT_U8(msg
, NL80211_ATTR_KEY_IDX
, key_idx
);
1198 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
);
1200 err
= rdev
->ops
->get_key(&rdev
->wiphy
, dev
, key_idx
, mac_addr
,
1201 &cookie
, get_key_callback
);
1207 goto nla_put_failure
;
1209 genlmsg_end(msg
, hdr
);
1210 err
= genlmsg_reply(msg
, info
);
1218 cfg80211_unlock_rdev(rdev
);
1226 static int nl80211_set_key(struct sk_buff
*skb
, struct genl_info
*info
)
1228 struct cfg80211_registered_device
*rdev
;
1229 struct key_parse key
;
1231 struct net_device
*dev
;
1232 int (*func
)(struct wiphy
*wiphy
, struct net_device
*netdev
,
1235 err
= nl80211_parse_key(info
, &key
);
1242 /* only support setting default key */
1243 if (!key
.def
&& !key
.defmgmt
)
1248 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1253 func
= rdev
->ops
->set_default_key
;
1255 func
= rdev
->ops
->set_default_mgmt_key
;
1262 wdev_lock(dev
->ieee80211_ptr
);
1263 err
= nl80211_key_allowed(dev
->ieee80211_ptr
);
1265 err
= func(&rdev
->wiphy
, dev
, key
.idx
);
1267 #ifdef CONFIG_WIRELESS_EXT
1269 if (func
== rdev
->ops
->set_default_key
)
1270 dev
->ieee80211_ptr
->wext
.default_key
= key
.idx
;
1272 dev
->ieee80211_ptr
->wext
.default_mgmt_key
= key
.idx
;
1275 wdev_unlock(dev
->ieee80211_ptr
);
1278 cfg80211_unlock_rdev(rdev
);
1287 static int nl80211_new_key(struct sk_buff
*skb
, struct genl_info
*info
)
1289 struct cfg80211_registered_device
*rdev
;
1291 struct net_device
*dev
;
1292 struct key_parse key
;
1293 u8
*mac_addr
= NULL
;
1295 err
= nl80211_parse_key(info
, &key
);
1302 if (info
->attrs
[NL80211_ATTR_MAC
])
1303 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1307 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1311 if (!rdev
->ops
->add_key
) {
1316 if (cfg80211_validate_key_settings(rdev
, &key
.p
, key
.idx
, mac_addr
)) {
1321 wdev_lock(dev
->ieee80211_ptr
);
1322 err
= nl80211_key_allowed(dev
->ieee80211_ptr
);
1324 err
= rdev
->ops
->add_key(&rdev
->wiphy
, dev
, key
.idx
,
1326 wdev_unlock(dev
->ieee80211_ptr
);
1329 cfg80211_unlock_rdev(rdev
);
1337 static int nl80211_del_key(struct sk_buff
*skb
, struct genl_info
*info
)
1339 struct cfg80211_registered_device
*rdev
;
1341 struct net_device
*dev
;
1342 u8
*mac_addr
= NULL
;
1343 struct key_parse key
;
1345 err
= nl80211_parse_key(info
, &key
);
1349 if (info
->attrs
[NL80211_ATTR_MAC
])
1350 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1354 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1358 if (!rdev
->ops
->del_key
) {
1363 wdev_lock(dev
->ieee80211_ptr
);
1364 err
= nl80211_key_allowed(dev
->ieee80211_ptr
);
1366 err
= rdev
->ops
->del_key(&rdev
->wiphy
, dev
, key
.idx
, mac_addr
);
1368 #ifdef CONFIG_WIRELESS_EXT
1370 if (key
.idx
== dev
->ieee80211_ptr
->wext
.default_key
)
1371 dev
->ieee80211_ptr
->wext
.default_key
= -1;
1372 else if (key
.idx
== dev
->ieee80211_ptr
->wext
.default_mgmt_key
)
1373 dev
->ieee80211_ptr
->wext
.default_mgmt_key
= -1;
1376 wdev_unlock(dev
->ieee80211_ptr
);
1379 cfg80211_unlock_rdev(rdev
);
1388 static int nl80211_addset_beacon(struct sk_buff
*skb
, struct genl_info
*info
)
1390 int (*call
)(struct wiphy
*wiphy
, struct net_device
*dev
,
1391 struct beacon_parameters
*info
);
1392 struct cfg80211_registered_device
*rdev
;
1394 struct net_device
*dev
;
1395 struct beacon_parameters params
;
1398 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]))
1403 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1407 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
1412 switch (info
->genlhdr
->cmd
) {
1413 case NL80211_CMD_NEW_BEACON
:
1414 /* these are required for NEW_BEACON */
1415 if (!info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
] ||
1416 !info
->attrs
[NL80211_ATTR_DTIM_PERIOD
] ||
1417 !info
->attrs
[NL80211_ATTR_BEACON_HEAD
]) {
1422 call
= rdev
->ops
->add_beacon
;
1424 case NL80211_CMD_SET_BEACON
:
1425 call
= rdev
->ops
->set_beacon
;
1438 memset(¶ms
, 0, sizeof(params
));
1440 if (info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]) {
1442 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
1446 if (info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]) {
1447 params
.dtim_period
=
1448 nla_get_u32(info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]);
1452 if (info
->attrs
[NL80211_ATTR_BEACON_HEAD
]) {
1453 params
.head
= nla_data(info
->attrs
[NL80211_ATTR_BEACON_HEAD
]);
1455 nla_len(info
->attrs
[NL80211_ATTR_BEACON_HEAD
]);
1459 if (info
->attrs
[NL80211_ATTR_BEACON_TAIL
]) {
1460 params
.tail
= nla_data(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]);
1462 nla_len(info
->attrs
[NL80211_ATTR_BEACON_TAIL
]);
1471 err
= call(&rdev
->wiphy
, dev
, ¶ms
);
1474 cfg80211_unlock_rdev(rdev
);
1482 static int nl80211_del_beacon(struct sk_buff
*skb
, struct genl_info
*info
)
1484 struct cfg80211_registered_device
*rdev
;
1486 struct net_device
*dev
;
1490 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1494 if (!rdev
->ops
->del_beacon
) {
1499 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
1503 err
= rdev
->ops
->del_beacon(&rdev
->wiphy
, dev
);
1506 cfg80211_unlock_rdev(rdev
);
1514 static const struct nla_policy sta_flags_policy
[NL80211_STA_FLAG_MAX
+ 1] = {
1515 [NL80211_STA_FLAG_AUTHORIZED
] = { .type
= NLA_FLAG
},
1516 [NL80211_STA_FLAG_SHORT_PREAMBLE
] = { .type
= NLA_FLAG
},
1517 [NL80211_STA_FLAG_WME
] = { .type
= NLA_FLAG
},
1518 [NL80211_STA_FLAG_MFP
] = { .type
= NLA_FLAG
},
1521 static int parse_station_flags(struct genl_info
*info
,
1522 struct station_parameters
*params
)
1524 struct nlattr
*flags
[NL80211_STA_FLAG_MAX
+ 1];
1529 * Try parsing the new attribute first so userspace
1530 * can specify both for older kernels.
1532 nla
= info
->attrs
[NL80211_ATTR_STA_FLAGS2
];
1534 struct nl80211_sta_flag_update
*sta_flags
;
1536 sta_flags
= nla_data(nla
);
1537 params
->sta_flags_mask
= sta_flags
->mask
;
1538 params
->sta_flags_set
= sta_flags
->set
;
1539 if ((params
->sta_flags_mask
|
1540 params
->sta_flags_set
) & BIT(__NL80211_STA_FLAG_INVALID
))
1545 /* if present, parse the old attribute */
1547 nla
= info
->attrs
[NL80211_ATTR_STA_FLAGS
];
1551 if (nla_parse_nested(flags
, NL80211_STA_FLAG_MAX
,
1552 nla
, sta_flags_policy
))
1555 params
->sta_flags_mask
= (1 << __NL80211_STA_FLAG_AFTER_LAST
) - 1;
1556 params
->sta_flags_mask
&= ~1;
1558 for (flag
= 1; flag
<= NL80211_STA_FLAG_MAX
; flag
++)
1560 params
->sta_flags_set
|= (1<<flag
);
1565 static int nl80211_send_station(struct sk_buff
*msg
, u32 pid
, u32 seq
,
1566 int flags
, struct net_device
*dev
,
1567 u8
*mac_addr
, struct station_info
*sinfo
)
1570 struct nlattr
*sinfoattr
, *txrate
;
1573 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_STATION
);
1577 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
1578 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
);
1580 NLA_PUT_U32(msg
, NL80211_ATTR_GENERATION
, sinfo
->generation
);
1582 sinfoattr
= nla_nest_start(msg
, NL80211_ATTR_STA_INFO
);
1584 goto nla_put_failure
;
1585 if (sinfo
->filled
& STATION_INFO_INACTIVE_TIME
)
1586 NLA_PUT_U32(msg
, NL80211_STA_INFO_INACTIVE_TIME
,
1587 sinfo
->inactive_time
);
1588 if (sinfo
->filled
& STATION_INFO_RX_BYTES
)
1589 NLA_PUT_U32(msg
, NL80211_STA_INFO_RX_BYTES
,
1591 if (sinfo
->filled
& STATION_INFO_TX_BYTES
)
1592 NLA_PUT_U32(msg
, NL80211_STA_INFO_TX_BYTES
,
1594 if (sinfo
->filled
& STATION_INFO_LLID
)
1595 NLA_PUT_U16(msg
, NL80211_STA_INFO_LLID
,
1597 if (sinfo
->filled
& STATION_INFO_PLID
)
1598 NLA_PUT_U16(msg
, NL80211_STA_INFO_PLID
,
1600 if (sinfo
->filled
& STATION_INFO_PLINK_STATE
)
1601 NLA_PUT_U8(msg
, NL80211_STA_INFO_PLINK_STATE
,
1602 sinfo
->plink_state
);
1603 if (sinfo
->filled
& STATION_INFO_SIGNAL
)
1604 NLA_PUT_U8(msg
, NL80211_STA_INFO_SIGNAL
,
1606 if (sinfo
->filled
& STATION_INFO_TX_BITRATE
) {
1607 txrate
= nla_nest_start(msg
, NL80211_STA_INFO_TX_BITRATE
);
1609 goto nla_put_failure
;
1611 /* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
1612 bitrate
= cfg80211_calculate_bitrate(&sinfo
->txrate
);
1614 NLA_PUT_U16(msg
, NL80211_RATE_INFO_BITRATE
, bitrate
);
1616 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_MCS
)
1617 NLA_PUT_U8(msg
, NL80211_RATE_INFO_MCS
,
1619 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_40_MHZ_WIDTH
)
1620 NLA_PUT_FLAG(msg
, NL80211_RATE_INFO_40_MHZ_WIDTH
);
1621 if (sinfo
->txrate
.flags
& RATE_INFO_FLAGS_SHORT_GI
)
1622 NLA_PUT_FLAG(msg
, NL80211_RATE_INFO_SHORT_GI
);
1624 nla_nest_end(msg
, txrate
);
1626 if (sinfo
->filled
& STATION_INFO_RX_PACKETS
)
1627 NLA_PUT_U32(msg
, NL80211_STA_INFO_RX_PACKETS
,
1629 if (sinfo
->filled
& STATION_INFO_TX_PACKETS
)
1630 NLA_PUT_U32(msg
, NL80211_STA_INFO_TX_PACKETS
,
1632 nla_nest_end(msg
, sinfoattr
);
1634 return genlmsg_end(msg
, hdr
);
1637 genlmsg_cancel(msg
, hdr
);
1641 static int nl80211_dump_station(struct sk_buff
*skb
,
1642 struct netlink_callback
*cb
)
1644 struct station_info sinfo
;
1645 struct cfg80211_registered_device
*dev
;
1646 struct net_device
*netdev
;
1647 u8 mac_addr
[ETH_ALEN
];
1648 int ifidx
= cb
->args
[0];
1649 int sta_idx
= cb
->args
[1];
1653 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
1654 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
1659 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
1662 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
1669 netdev
= __dev_get_by_index(sock_net(skb
->sk
), ifidx
);
1675 dev
= cfg80211_get_dev_from_ifindex(sock_net(skb
->sk
), ifidx
);
1681 if (!dev
->ops
->dump_station
) {
1687 err
= dev
->ops
->dump_station(&dev
->wiphy
, netdev
, sta_idx
,
1694 if (nl80211_send_station(skb
,
1695 NETLINK_CB(cb
->skb
).pid
,
1696 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
1706 cb
->args
[1] = sta_idx
;
1709 cfg80211_unlock_rdev(dev
);
1716 static int nl80211_get_station(struct sk_buff
*skb
, struct genl_info
*info
)
1718 struct cfg80211_registered_device
*rdev
;
1720 struct net_device
*dev
;
1721 struct station_info sinfo
;
1722 struct sk_buff
*msg
;
1723 u8
*mac_addr
= NULL
;
1725 memset(&sinfo
, 0, sizeof(sinfo
));
1727 if (!info
->attrs
[NL80211_ATTR_MAC
])
1730 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1734 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1738 if (!rdev
->ops
->get_station
) {
1743 err
= rdev
->ops
->get_station(&rdev
->wiphy
, dev
, mac_addr
, &sinfo
);
1747 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1751 if (nl80211_send_station(msg
, info
->snd_pid
, info
->snd_seq
, 0,
1752 dev
, mac_addr
, &sinfo
) < 0)
1755 err
= genlmsg_reply(msg
, info
);
1761 cfg80211_unlock_rdev(rdev
);
1770 * Get vlan interface making sure it is on the right wiphy.
1772 static int get_vlan(struct genl_info
*info
,
1773 struct cfg80211_registered_device
*rdev
,
1774 struct net_device
**vlan
)
1776 struct nlattr
*vlanattr
= info
->attrs
[NL80211_ATTR_STA_VLAN
];
1780 *vlan
= dev_get_by_index(genl_info_net(info
),
1781 nla_get_u32(vlanattr
));
1784 if (!(*vlan
)->ieee80211_ptr
)
1786 if ((*vlan
)->ieee80211_ptr
->wiphy
!= &rdev
->wiphy
)
1792 static int nl80211_set_station(struct sk_buff
*skb
, struct genl_info
*info
)
1794 struct cfg80211_registered_device
*rdev
;
1796 struct net_device
*dev
;
1797 struct station_parameters params
;
1798 u8
*mac_addr
= NULL
;
1800 memset(¶ms
, 0, sizeof(params
));
1802 params
.listen_interval
= -1;
1804 if (info
->attrs
[NL80211_ATTR_STA_AID
])
1807 if (!info
->attrs
[NL80211_ATTR_MAC
])
1810 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1812 if (info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]) {
1813 params
.supported_rates
=
1814 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1815 params
.supported_rates_len
=
1816 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1819 if (info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
])
1820 params
.listen_interval
=
1821 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
]);
1823 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
])
1825 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]);
1827 if (parse_station_flags(info
, ¶ms
))
1830 if (info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
])
1831 params
.plink_action
=
1832 nla_get_u8(info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
]);
1836 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1840 err
= get_vlan(info
, rdev
, ¶ms
.vlan
);
1844 /* validate settings */
1847 switch (dev
->ieee80211_ptr
->iftype
) {
1848 case NL80211_IFTYPE_AP
:
1849 case NL80211_IFTYPE_AP_VLAN
:
1850 /* disallow mesh-specific things */
1851 if (params
.plink_action
)
1854 case NL80211_IFTYPE_STATION
:
1855 /* disallow everything but AUTHORIZED flag */
1856 if (params
.plink_action
)
1860 if (params
.supported_rates
)
1864 if (params
.listen_interval
>= 0)
1866 if (params
.sta_flags_mask
& ~BIT(NL80211_STA_FLAG_AUTHORIZED
))
1869 case NL80211_IFTYPE_MESH_POINT
:
1870 /* disallow things mesh doesn't support */
1875 if (params
.listen_interval
>= 0)
1877 if (params
.supported_rates
)
1879 if (params
.sta_flags_mask
)
1889 if (!rdev
->ops
->change_station
) {
1894 err
= rdev
->ops
->change_station(&rdev
->wiphy
, dev
, mac_addr
, ¶ms
);
1898 dev_put(params
.vlan
);
1899 cfg80211_unlock_rdev(rdev
);
1907 static int nl80211_new_station(struct sk_buff
*skb
, struct genl_info
*info
)
1909 struct cfg80211_registered_device
*rdev
;
1911 struct net_device
*dev
;
1912 struct station_parameters params
;
1913 u8
*mac_addr
= NULL
;
1915 memset(¶ms
, 0, sizeof(params
));
1917 if (!info
->attrs
[NL80211_ATTR_MAC
])
1920 if (!info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
])
1923 if (!info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
])
1926 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
1927 params
.supported_rates
=
1928 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1929 params
.supported_rates_len
=
1930 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
1931 params
.listen_interval
=
1932 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
]);
1934 if (info
->attrs
[NL80211_ATTR_STA_AID
]) {
1935 params
.aid
= nla_get_u16(info
->attrs
[NL80211_ATTR_STA_AID
]);
1936 if (!params
.aid
|| params
.aid
> IEEE80211_MAX_AID
)
1940 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
])
1942 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]);
1944 if (parse_station_flags(info
, ¶ms
))
1949 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
1953 err
= get_vlan(info
, rdev
, ¶ms
.vlan
);
1957 /* validate settings */
1960 switch (dev
->ieee80211_ptr
->iftype
) {
1961 case NL80211_IFTYPE_AP
:
1962 case NL80211_IFTYPE_AP_VLAN
:
1963 /* all ok but must have AID */
1967 case NL80211_IFTYPE_MESH_POINT
:
1968 /* disallow things mesh doesn't support */
1975 if (params
.listen_interval
>= 0)
1977 if (params
.supported_rates
)
1979 if (params
.sta_flags_mask
)
1989 if (!rdev
->ops
->add_station
) {
1994 if (!netif_running(dev
)) {
1999 err
= rdev
->ops
->add_station(&rdev
->wiphy
, dev
, mac_addr
, ¶ms
);
2003 dev_put(params
.vlan
);
2004 cfg80211_unlock_rdev(rdev
);
2012 static int nl80211_del_station(struct sk_buff
*skb
, struct genl_info
*info
)
2014 struct cfg80211_registered_device
*rdev
;
2016 struct net_device
*dev
;
2017 u8
*mac_addr
= NULL
;
2019 if (info
->attrs
[NL80211_ATTR_MAC
])
2020 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2024 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2028 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
2029 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP_VLAN
&&
2030 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2035 if (!rdev
->ops
->del_station
) {
2040 err
= rdev
->ops
->del_station(&rdev
->wiphy
, dev
, mac_addr
);
2043 cfg80211_unlock_rdev(rdev
);
2051 static int nl80211_send_mpath(struct sk_buff
*msg
, u32 pid
, u32 seq
,
2052 int flags
, struct net_device
*dev
,
2053 u8
*dst
, u8
*next_hop
,
2054 struct mpath_info
*pinfo
)
2057 struct nlattr
*pinfoattr
;
2059 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, NL80211_CMD_NEW_STATION
);
2063 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
2064 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, dst
);
2065 NLA_PUT(msg
, NL80211_ATTR_MPATH_NEXT_HOP
, ETH_ALEN
, next_hop
);
2067 NLA_PUT_U32(msg
, NL80211_ATTR_GENERATION
, pinfo
->generation
);
2069 pinfoattr
= nla_nest_start(msg
, NL80211_ATTR_MPATH_INFO
);
2071 goto nla_put_failure
;
2072 if (pinfo
->filled
& MPATH_INFO_FRAME_QLEN
)
2073 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_FRAME_QLEN
,
2075 if (pinfo
->filled
& MPATH_INFO_DSN
)
2076 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_DSN
,
2078 if (pinfo
->filled
& MPATH_INFO_METRIC
)
2079 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_METRIC
,
2081 if (pinfo
->filled
& MPATH_INFO_EXPTIME
)
2082 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_EXPTIME
,
2084 if (pinfo
->filled
& MPATH_INFO_FLAGS
)
2085 NLA_PUT_U8(msg
, NL80211_MPATH_INFO_FLAGS
,
2087 if (pinfo
->filled
& MPATH_INFO_DISCOVERY_TIMEOUT
)
2088 NLA_PUT_U32(msg
, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT
,
2089 pinfo
->discovery_timeout
);
2090 if (pinfo
->filled
& MPATH_INFO_DISCOVERY_RETRIES
)
2091 NLA_PUT_U8(msg
, NL80211_MPATH_INFO_DISCOVERY_RETRIES
,
2092 pinfo
->discovery_retries
);
2094 nla_nest_end(msg
, pinfoattr
);
2096 return genlmsg_end(msg
, hdr
);
2099 genlmsg_cancel(msg
, hdr
);
2103 static int nl80211_dump_mpath(struct sk_buff
*skb
,
2104 struct netlink_callback
*cb
)
2106 struct mpath_info pinfo
;
2107 struct cfg80211_registered_device
*dev
;
2108 struct net_device
*netdev
;
2110 u8 next_hop
[ETH_ALEN
];
2111 int ifidx
= cb
->args
[0];
2112 int path_idx
= cb
->args
[1];
2116 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
2117 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
2122 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
2125 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
2132 netdev
= __dev_get_by_index(sock_net(skb
->sk
), ifidx
);
2138 dev
= cfg80211_get_dev_from_ifindex(sock_net(skb
->sk
), ifidx
);
2144 if (!dev
->ops
->dump_mpath
) {
2149 if (netdev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2155 err
= dev
->ops
->dump_mpath(&dev
->wiphy
, netdev
, path_idx
,
2156 dst
, next_hop
, &pinfo
);
2162 if (nl80211_send_mpath(skb
, NETLINK_CB(cb
->skb
).pid
,
2163 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
2164 netdev
, dst
, next_hop
,
2173 cb
->args
[1] = path_idx
;
2176 cfg80211_unlock_rdev(dev
);
2183 static int nl80211_get_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2185 struct cfg80211_registered_device
*rdev
;
2187 struct net_device
*dev
;
2188 struct mpath_info pinfo
;
2189 struct sk_buff
*msg
;
2191 u8 next_hop
[ETH_ALEN
];
2193 memset(&pinfo
, 0, sizeof(pinfo
));
2195 if (!info
->attrs
[NL80211_ATTR_MAC
])
2198 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2202 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2206 if (!rdev
->ops
->get_mpath
) {
2211 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2216 err
= rdev
->ops
->get_mpath(&rdev
->wiphy
, dev
, dst
, next_hop
, &pinfo
);
2220 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2224 if (nl80211_send_mpath(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2225 dev
, dst
, next_hop
, &pinfo
) < 0)
2228 err
= genlmsg_reply(msg
, info
);
2234 cfg80211_unlock_rdev(rdev
);
2242 static int nl80211_set_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2244 struct cfg80211_registered_device
*rdev
;
2246 struct net_device
*dev
;
2248 u8
*next_hop
= NULL
;
2250 if (!info
->attrs
[NL80211_ATTR_MAC
])
2253 if (!info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
])
2256 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2257 next_hop
= nla_data(info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
]);
2261 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2265 if (!rdev
->ops
->change_mpath
) {
2270 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2275 if (!netif_running(dev
)) {
2280 err
= rdev
->ops
->change_mpath(&rdev
->wiphy
, dev
, dst
, next_hop
);
2283 cfg80211_unlock_rdev(rdev
);
2290 static int nl80211_new_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2292 struct cfg80211_registered_device
*rdev
;
2294 struct net_device
*dev
;
2296 u8
*next_hop
= NULL
;
2298 if (!info
->attrs
[NL80211_ATTR_MAC
])
2301 if (!info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
])
2304 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2305 next_hop
= nla_data(info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
]);
2309 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2313 if (!rdev
->ops
->add_mpath
) {
2318 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
2323 if (!netif_running(dev
)) {
2328 err
= rdev
->ops
->add_mpath(&rdev
->wiphy
, dev
, dst
, next_hop
);
2331 cfg80211_unlock_rdev(rdev
);
2339 static int nl80211_del_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
2341 struct cfg80211_registered_device
*rdev
;
2343 struct net_device
*dev
;
2346 if (info
->attrs
[NL80211_ATTR_MAC
])
2347 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2351 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2355 if (!rdev
->ops
->del_mpath
) {
2360 err
= rdev
->ops
->del_mpath(&rdev
->wiphy
, dev
, dst
);
2363 cfg80211_unlock_rdev(rdev
);
2371 static int nl80211_set_bss(struct sk_buff
*skb
, struct genl_info
*info
)
2373 struct cfg80211_registered_device
*rdev
;
2375 struct net_device
*dev
;
2376 struct bss_parameters params
;
2378 memset(¶ms
, 0, sizeof(params
));
2379 /* default to not changing parameters */
2380 params
.use_cts_prot
= -1;
2381 params
.use_short_preamble
= -1;
2382 params
.use_short_slot_time
= -1;
2384 if (info
->attrs
[NL80211_ATTR_BSS_CTS_PROT
])
2385 params
.use_cts_prot
=
2386 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_CTS_PROT
]);
2387 if (info
->attrs
[NL80211_ATTR_BSS_SHORT_PREAMBLE
])
2388 params
.use_short_preamble
=
2389 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_SHORT_PREAMBLE
]);
2390 if (info
->attrs
[NL80211_ATTR_BSS_SHORT_SLOT_TIME
])
2391 params
.use_short_slot_time
=
2392 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_SHORT_SLOT_TIME
]);
2393 if (info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]) {
2394 params
.basic_rates
=
2395 nla_data(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
2396 params
.basic_rates_len
=
2397 nla_len(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
2402 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2406 if (!rdev
->ops
->change_bss
) {
2411 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
) {
2416 err
= rdev
->ops
->change_bss(&rdev
->wiphy
, dev
, ¶ms
);
2419 cfg80211_unlock_rdev(rdev
);
2427 static const struct nla_policy
2428 reg_rule_policy
[NL80211_REG_RULE_ATTR_MAX
+ 1] = {
2429 [NL80211_ATTR_REG_RULE_FLAGS
] = { .type
= NLA_U32
},
2430 [NL80211_ATTR_FREQ_RANGE_START
] = { .type
= NLA_U32
},
2431 [NL80211_ATTR_FREQ_RANGE_END
] = { .type
= NLA_U32
},
2432 [NL80211_ATTR_FREQ_RANGE_MAX_BW
] = { .type
= NLA_U32
},
2433 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
] = { .type
= NLA_U32
},
2434 [NL80211_ATTR_POWER_RULE_MAX_EIRP
] = { .type
= NLA_U32
},
2437 static int parse_reg_rule(struct nlattr
*tb
[],
2438 struct ieee80211_reg_rule
*reg_rule
)
2440 struct ieee80211_freq_range
*freq_range
= ®_rule
->freq_range
;
2441 struct ieee80211_power_rule
*power_rule
= ®_rule
->power_rule
;
2443 if (!tb
[NL80211_ATTR_REG_RULE_FLAGS
])
2445 if (!tb
[NL80211_ATTR_FREQ_RANGE_START
])
2447 if (!tb
[NL80211_ATTR_FREQ_RANGE_END
])
2449 if (!tb
[NL80211_ATTR_FREQ_RANGE_MAX_BW
])
2451 if (!tb
[NL80211_ATTR_POWER_RULE_MAX_EIRP
])
2454 reg_rule
->flags
= nla_get_u32(tb
[NL80211_ATTR_REG_RULE_FLAGS
]);
2456 freq_range
->start_freq_khz
=
2457 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_START
]);
2458 freq_range
->end_freq_khz
=
2459 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_END
]);
2460 freq_range
->max_bandwidth_khz
=
2461 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_MAX_BW
]);
2463 power_rule
->max_eirp
=
2464 nla_get_u32(tb
[NL80211_ATTR_POWER_RULE_MAX_EIRP
]);
2466 if (tb
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
])
2467 power_rule
->max_antenna_gain
=
2468 nla_get_u32(tb
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
]);
2473 static int nl80211_req_set_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2479 * You should only get this when cfg80211 hasn't yet initialized
2480 * completely when built-in to the kernel right between the time
2481 * window between nl80211_init() and regulatory_init(), if that is
2484 mutex_lock(&cfg80211_mutex
);
2485 if (unlikely(!cfg80211_regdomain
)) {
2486 mutex_unlock(&cfg80211_mutex
);
2487 return -EINPROGRESS
;
2489 mutex_unlock(&cfg80211_mutex
);
2491 if (!info
->attrs
[NL80211_ATTR_REG_ALPHA2
])
2494 data
= nla_data(info
->attrs
[NL80211_ATTR_REG_ALPHA2
]);
2496 #ifdef CONFIG_WIRELESS_OLD_REGULATORY
2497 /* We ignore world regdom requests with the old regdom setup */
2498 if (is_world_regdom(data
))
2502 r
= regulatory_hint_user(data
);
2507 static int nl80211_get_mesh_params(struct sk_buff
*skb
,
2508 struct genl_info
*info
)
2510 struct cfg80211_registered_device
*rdev
;
2511 struct mesh_config cur_params
;
2513 struct net_device
*dev
;
2515 struct nlattr
*pinfoattr
;
2516 struct sk_buff
*msg
;
2520 /* Look up our device */
2521 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2525 if (!rdev
->ops
->get_mesh_params
) {
2530 /* Get the mesh params */
2531 err
= rdev
->ops
->get_mesh_params(&rdev
->wiphy
, dev
, &cur_params
);
2535 /* Draw up a netlink message to send back */
2536 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2541 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2542 NL80211_CMD_GET_MESH_PARAMS
);
2544 goto nla_put_failure
;
2545 pinfoattr
= nla_nest_start(msg
, NL80211_ATTR_MESH_PARAMS
);
2547 goto nla_put_failure
;
2548 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
);
2549 NLA_PUT_U16(msg
, NL80211_MESHCONF_RETRY_TIMEOUT
,
2550 cur_params
.dot11MeshRetryTimeout
);
2551 NLA_PUT_U16(msg
, NL80211_MESHCONF_CONFIRM_TIMEOUT
,
2552 cur_params
.dot11MeshConfirmTimeout
);
2553 NLA_PUT_U16(msg
, NL80211_MESHCONF_HOLDING_TIMEOUT
,
2554 cur_params
.dot11MeshHoldingTimeout
);
2555 NLA_PUT_U16(msg
, NL80211_MESHCONF_MAX_PEER_LINKS
,
2556 cur_params
.dot11MeshMaxPeerLinks
);
2557 NLA_PUT_U8(msg
, NL80211_MESHCONF_MAX_RETRIES
,
2558 cur_params
.dot11MeshMaxRetries
);
2559 NLA_PUT_U8(msg
, NL80211_MESHCONF_TTL
,
2560 cur_params
.dot11MeshTTL
);
2561 NLA_PUT_U8(msg
, NL80211_MESHCONF_AUTO_OPEN_PLINKS
,
2562 cur_params
.auto_open_plinks
);
2563 NLA_PUT_U8(msg
, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
,
2564 cur_params
.dot11MeshHWMPmaxPREQretries
);
2565 NLA_PUT_U32(msg
, NL80211_MESHCONF_PATH_REFRESH_TIME
,
2566 cur_params
.path_refresh_time
);
2567 NLA_PUT_U16(msg
, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
,
2568 cur_params
.min_discovery_timeout
);
2569 NLA_PUT_U32(msg
, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
,
2570 cur_params
.dot11MeshHWMPactivePathTimeout
);
2571 NLA_PUT_U16(msg
, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
,
2572 cur_params
.dot11MeshHWMPpreqMinInterval
);
2573 NLA_PUT_U16(msg
, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
2574 cur_params
.dot11MeshHWMPnetDiameterTraversalTime
);
2575 nla_nest_end(msg
, pinfoattr
);
2576 genlmsg_end(msg
, hdr
);
2577 err
= genlmsg_reply(msg
, info
);
2581 genlmsg_cancel(msg
, hdr
);
2585 cfg80211_unlock_rdev(rdev
);
2593 #define FILL_IN_MESH_PARAM_IF_SET(table, cfg, param, mask, attr_num, nla_fn) \
2595 if (table[attr_num]) {\
2596 cfg.param = nla_fn(table[attr_num]); \
2597 mask |= (1 << (attr_num - 1)); \
2601 static struct nla_policy
2602 nl80211_meshconf_params_policy
[NL80211_MESHCONF_ATTR_MAX
+1] __read_mostly
= {
2603 [NL80211_MESHCONF_RETRY_TIMEOUT
] = { .type
= NLA_U16
},
2604 [NL80211_MESHCONF_CONFIRM_TIMEOUT
] = { .type
= NLA_U16
},
2605 [NL80211_MESHCONF_HOLDING_TIMEOUT
] = { .type
= NLA_U16
},
2606 [NL80211_MESHCONF_MAX_PEER_LINKS
] = { .type
= NLA_U16
},
2607 [NL80211_MESHCONF_MAX_RETRIES
] = { .type
= NLA_U8
},
2608 [NL80211_MESHCONF_TTL
] = { .type
= NLA_U8
},
2609 [NL80211_MESHCONF_AUTO_OPEN_PLINKS
] = { .type
= NLA_U8
},
2611 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
] = { .type
= NLA_U8
},
2612 [NL80211_MESHCONF_PATH_REFRESH_TIME
] = { .type
= NLA_U32
},
2613 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
] = { .type
= NLA_U16
},
2614 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
] = { .type
= NLA_U32
},
2615 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
] = { .type
= NLA_U16
},
2616 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
] = { .type
= NLA_U16
},
2619 static int nl80211_set_mesh_params(struct sk_buff
*skb
, struct genl_info
*info
)
2623 struct cfg80211_registered_device
*rdev
;
2624 struct net_device
*dev
;
2625 struct mesh_config cfg
;
2626 struct nlattr
*tb
[NL80211_MESHCONF_ATTR_MAX
+ 1];
2627 struct nlattr
*parent_attr
;
2629 parent_attr
= info
->attrs
[NL80211_ATTR_MESH_PARAMS
];
2632 if (nla_parse_nested(tb
, NL80211_MESHCONF_ATTR_MAX
,
2633 parent_attr
, nl80211_meshconf_params_policy
))
2638 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2642 if (!rdev
->ops
->set_mesh_params
) {
2647 /* This makes sure that there aren't more than 32 mesh config
2648 * parameters (otherwise our bitfield scheme would not work.) */
2649 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX
> 32);
2651 /* Fill in the params struct */
2653 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshRetryTimeout
,
2654 mask
, NL80211_MESHCONF_RETRY_TIMEOUT
, nla_get_u16
);
2655 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshConfirmTimeout
,
2656 mask
, NL80211_MESHCONF_CONFIRM_TIMEOUT
, nla_get_u16
);
2657 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHoldingTimeout
,
2658 mask
, NL80211_MESHCONF_HOLDING_TIMEOUT
, nla_get_u16
);
2659 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshMaxPeerLinks
,
2660 mask
, NL80211_MESHCONF_MAX_PEER_LINKS
, nla_get_u16
);
2661 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshMaxRetries
,
2662 mask
, NL80211_MESHCONF_MAX_RETRIES
, nla_get_u8
);
2663 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshTTL
,
2664 mask
, NL80211_MESHCONF_TTL
, nla_get_u8
);
2665 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, auto_open_plinks
,
2666 mask
, NL80211_MESHCONF_AUTO_OPEN_PLINKS
, nla_get_u8
);
2667 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPmaxPREQretries
,
2668 mask
, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
,
2670 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, path_refresh_time
,
2671 mask
, NL80211_MESHCONF_PATH_REFRESH_TIME
, nla_get_u32
);
2672 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, min_discovery_timeout
,
2673 mask
, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
,
2675 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPactivePathTimeout
,
2676 mask
, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
,
2678 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPpreqMinInterval
,
2679 mask
, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
,
2681 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
,
2682 dot11MeshHWMPnetDiameterTraversalTime
,
2683 mask
, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
2687 err
= rdev
->ops
->set_mesh_params(&rdev
->wiphy
, dev
, &cfg
, mask
);
2691 cfg80211_unlock_rdev(rdev
);
2699 #undef FILL_IN_MESH_PARAM_IF_SET
2701 static int nl80211_get_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2703 struct sk_buff
*msg
;
2705 struct nlattr
*nl_reg_rules
;
2709 mutex_lock(&cfg80211_mutex
);
2711 if (!cfg80211_regdomain
)
2714 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2720 hdr
= nl80211hdr_put(msg
, info
->snd_pid
, info
->snd_seq
, 0,
2721 NL80211_CMD_GET_REG
);
2723 goto nla_put_failure
;
2725 NLA_PUT_STRING(msg
, NL80211_ATTR_REG_ALPHA2
,
2726 cfg80211_regdomain
->alpha2
);
2728 nl_reg_rules
= nla_nest_start(msg
, NL80211_ATTR_REG_RULES
);
2730 goto nla_put_failure
;
2732 for (i
= 0; i
< cfg80211_regdomain
->n_reg_rules
; i
++) {
2733 struct nlattr
*nl_reg_rule
;
2734 const struct ieee80211_reg_rule
*reg_rule
;
2735 const struct ieee80211_freq_range
*freq_range
;
2736 const struct ieee80211_power_rule
*power_rule
;
2738 reg_rule
= &cfg80211_regdomain
->reg_rules
[i
];
2739 freq_range
= ®_rule
->freq_range
;
2740 power_rule
= ®_rule
->power_rule
;
2742 nl_reg_rule
= nla_nest_start(msg
, i
);
2744 goto nla_put_failure
;
2746 NLA_PUT_U32(msg
, NL80211_ATTR_REG_RULE_FLAGS
,
2748 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_START
,
2749 freq_range
->start_freq_khz
);
2750 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_END
,
2751 freq_range
->end_freq_khz
);
2752 NLA_PUT_U32(msg
, NL80211_ATTR_FREQ_RANGE_MAX_BW
,
2753 freq_range
->max_bandwidth_khz
);
2754 NLA_PUT_U32(msg
, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
,
2755 power_rule
->max_antenna_gain
);
2756 NLA_PUT_U32(msg
, NL80211_ATTR_POWER_RULE_MAX_EIRP
,
2757 power_rule
->max_eirp
);
2759 nla_nest_end(msg
, nl_reg_rule
);
2762 nla_nest_end(msg
, nl_reg_rules
);
2764 genlmsg_end(msg
, hdr
);
2765 err
= genlmsg_reply(msg
, info
);
2769 genlmsg_cancel(msg
, hdr
);
2772 mutex_unlock(&cfg80211_mutex
);
2776 static int nl80211_set_reg(struct sk_buff
*skb
, struct genl_info
*info
)
2778 struct nlattr
*tb
[NL80211_REG_RULE_ATTR_MAX
+ 1];
2779 struct nlattr
*nl_reg_rule
;
2780 char *alpha2
= NULL
;
2781 int rem_reg_rules
= 0, r
= 0;
2782 u32 num_rules
= 0, rule_idx
= 0, size_of_regd
;
2783 struct ieee80211_regdomain
*rd
= NULL
;
2785 if (!info
->attrs
[NL80211_ATTR_REG_ALPHA2
])
2788 if (!info
->attrs
[NL80211_ATTR_REG_RULES
])
2791 alpha2
= nla_data(info
->attrs
[NL80211_ATTR_REG_ALPHA2
]);
2793 nla_for_each_nested(nl_reg_rule
, info
->attrs
[NL80211_ATTR_REG_RULES
],
2796 if (num_rules
> NL80211_MAX_SUPP_REG_RULES
)
2800 mutex_lock(&cfg80211_mutex
);
2802 if (!reg_is_valid_request(alpha2
)) {
2807 size_of_regd
= sizeof(struct ieee80211_regdomain
) +
2808 (num_rules
* sizeof(struct ieee80211_reg_rule
));
2810 rd
= kzalloc(size_of_regd
, GFP_KERNEL
);
2816 rd
->n_reg_rules
= num_rules
;
2817 rd
->alpha2
[0] = alpha2
[0];
2818 rd
->alpha2
[1] = alpha2
[1];
2820 nla_for_each_nested(nl_reg_rule
, info
->attrs
[NL80211_ATTR_REG_RULES
],
2822 nla_parse(tb
, NL80211_REG_RULE_ATTR_MAX
,
2823 nla_data(nl_reg_rule
), nla_len(nl_reg_rule
),
2825 r
= parse_reg_rule(tb
, &rd
->reg_rules
[rule_idx
]);
2831 if (rule_idx
> NL80211_MAX_SUPP_REG_RULES
) {
2837 BUG_ON(rule_idx
!= num_rules
);
2841 mutex_unlock(&cfg80211_mutex
);
2846 mutex_unlock(&cfg80211_mutex
);
2851 static int validate_scan_freqs(struct nlattr
*freqs
)
2853 struct nlattr
*attr1
, *attr2
;
2854 int n_channels
= 0, tmp1
, tmp2
;
2856 nla_for_each_nested(attr1
, freqs
, tmp1
) {
2859 * Some hardware has a limited channel list for
2860 * scanning, and it is pretty much nonsensical
2861 * to scan for a channel twice, so disallow that
2862 * and don't require drivers to check that the
2863 * channel list they get isn't longer than what
2864 * they can scan, as long as they can scan all
2865 * the channels they registered at once.
2867 nla_for_each_nested(attr2
, freqs
, tmp2
)
2868 if (attr1
!= attr2
&&
2869 nla_get_u32(attr1
) == nla_get_u32(attr2
))
2876 static int nl80211_trigger_scan(struct sk_buff
*skb
, struct genl_info
*info
)
2878 struct cfg80211_registered_device
*rdev
;
2879 struct net_device
*dev
;
2880 struct cfg80211_scan_request
*request
;
2881 struct cfg80211_ssid
*ssid
;
2882 struct ieee80211_channel
*channel
;
2883 struct nlattr
*attr
;
2884 struct wiphy
*wiphy
;
2885 int err
, tmp
, n_ssids
= 0, n_channels
, i
;
2886 enum ieee80211_band band
;
2889 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
2894 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
2898 wiphy
= &rdev
->wiphy
;
2900 if (!rdev
->ops
->scan
) {
2905 if (!netif_running(dev
)) {
2910 if (rdev
->scan_req
) {
2915 if (info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
2916 n_channels
= validate_scan_freqs(
2917 info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]);
2925 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++)
2926 if (wiphy
->bands
[band
])
2927 n_channels
+= wiphy
->bands
[band
]->n_channels
;
2930 if (info
->attrs
[NL80211_ATTR_SCAN_SSIDS
])
2931 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_SSIDS
], tmp
)
2934 if (n_ssids
> wiphy
->max_scan_ssids
) {
2939 if (info
->attrs
[NL80211_ATTR_IE
])
2940 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
2944 if (ie_len
> wiphy
->max_scan_ie_len
) {
2949 request
= kzalloc(sizeof(*request
)
2950 + sizeof(*ssid
) * n_ssids
2951 + sizeof(channel
) * n_channels
2952 + ie_len
, GFP_KERNEL
);
2958 request
->n_channels
= n_channels
;
2960 request
->ssids
= (void *)&request
->channels
[n_channels
];
2961 request
->n_ssids
= n_ssids
;
2964 request
->ie
= (void *)(request
->ssids
+ n_ssids
);
2966 request
->ie
= (void *)(request
->channels
+ n_channels
);
2969 if (info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
2970 /* user specified, bail out if channel not found */
2971 request
->n_channels
= n_channels
;
2973 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
], tmp
) {
2974 request
->channels
[i
] = ieee80211_get_channel(wiphy
, nla_get_u32(attr
));
2975 if (!request
->channels
[i
]) {
2984 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
2986 if (!wiphy
->bands
[band
])
2988 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
2989 request
->channels
[i
] = &wiphy
->bands
[band
]->channels
[j
];
2996 if (info
->attrs
[NL80211_ATTR_SCAN_SSIDS
]) {
2997 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_SSIDS
], tmp
) {
2998 if (nla_len(attr
) > IEEE80211_MAX_SSID_LEN
) {
3002 request
->ssids
[i
].ssid_len
= nla_len(attr
);
3003 memcpy(request
->ssids
[i
].ssid
, nla_data(attr
), nla_len(attr
));
3008 if (info
->attrs
[NL80211_ATTR_IE
]) {
3009 request
->ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3010 memcpy((void *)request
->ie
,
3011 nla_data(info
->attrs
[NL80211_ATTR_IE
]),
3016 request
->wiphy
= &rdev
->wiphy
;
3018 rdev
->scan_req
= request
;
3019 err
= rdev
->ops
->scan(&rdev
->wiphy
, dev
, request
);
3022 nl80211_send_scan_start(rdev
, dev
);
3028 rdev
->scan_req
= NULL
;
3032 cfg80211_unlock_rdev(rdev
);
3040 static int nl80211_send_bss(struct sk_buff
*msg
, u32 pid
, u32 seq
, int flags
,
3041 struct cfg80211_registered_device
*rdev
,
3042 struct wireless_dev
*wdev
,
3043 struct cfg80211_internal_bss
*intbss
)
3045 struct cfg80211_bss
*res
= &intbss
->pub
;
3050 ASSERT_WDEV_LOCK(wdev
);
3052 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
,
3053 NL80211_CMD_NEW_SCAN_RESULTS
);
3057 NLA_PUT_U32(msg
, NL80211_ATTR_GENERATION
, rdev
->bss_generation
);
3058 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, wdev
->netdev
->ifindex
);
3060 bss
= nla_nest_start(msg
, NL80211_ATTR_BSS
);
3062 goto nla_put_failure
;
3063 if (!is_zero_ether_addr(res
->bssid
))
3064 NLA_PUT(msg
, NL80211_BSS_BSSID
, ETH_ALEN
, res
->bssid
);
3065 if (res
->information_elements
&& res
->len_information_elements
)
3066 NLA_PUT(msg
, NL80211_BSS_INFORMATION_ELEMENTS
,
3067 res
->len_information_elements
,
3068 res
->information_elements
);
3070 NLA_PUT_U64(msg
, NL80211_BSS_TSF
, res
->tsf
);
3071 if (res
->beacon_interval
)
3072 NLA_PUT_U16(msg
, NL80211_BSS_BEACON_INTERVAL
, res
->beacon_interval
);
3073 NLA_PUT_U16(msg
, NL80211_BSS_CAPABILITY
, res
->capability
);
3074 NLA_PUT_U32(msg
, NL80211_BSS_FREQUENCY
, res
->channel
->center_freq
);
3076 switch (rdev
->wiphy
.signal_type
) {
3077 case CFG80211_SIGNAL_TYPE_MBM
:
3078 NLA_PUT_U32(msg
, NL80211_BSS_SIGNAL_MBM
, res
->signal
);
3080 case CFG80211_SIGNAL_TYPE_UNSPEC
:
3081 NLA_PUT_U8(msg
, NL80211_BSS_SIGNAL_UNSPEC
, res
->signal
);
3087 switch (wdev
->iftype
) {
3088 case NL80211_IFTYPE_STATION
:
3089 if (intbss
== wdev
->current_bss
)
3090 NLA_PUT_U32(msg
, NL80211_BSS_STATUS
,
3091 NL80211_BSS_STATUS_ASSOCIATED
);
3092 else for (i
= 0; i
< MAX_AUTH_BSSES
; i
++) {
3093 if (intbss
!= wdev
->auth_bsses
[i
])
3095 NLA_PUT_U32(msg
, NL80211_BSS_STATUS
,
3096 NL80211_BSS_STATUS_AUTHENTICATED
);
3100 case NL80211_IFTYPE_ADHOC
:
3101 if (intbss
== wdev
->current_bss
)
3102 NLA_PUT_U32(msg
, NL80211_BSS_STATUS
,
3103 NL80211_BSS_STATUS_IBSS_JOINED
);
3109 nla_nest_end(msg
, bss
);
3111 return genlmsg_end(msg
, hdr
);
3114 genlmsg_cancel(msg
, hdr
);
3118 static int nl80211_dump_scan(struct sk_buff
*skb
,
3119 struct netlink_callback
*cb
)
3121 struct cfg80211_registered_device
*rdev
;
3122 struct net_device
*dev
;
3123 struct cfg80211_internal_bss
*scan
;
3124 struct wireless_dev
*wdev
;
3125 int ifidx
= cb
->args
[0];
3126 int start
= cb
->args
[1], idx
= 0;
3130 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
3131 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
3136 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
])
3139 ifidx
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_IFINDEX
]);
3142 cb
->args
[0] = ifidx
;
3145 dev
= dev_get_by_index(sock_net(skb
->sk
), ifidx
);
3149 rdev
= cfg80211_get_dev_from_ifindex(sock_net(skb
->sk
), ifidx
);
3151 err
= PTR_ERR(rdev
);
3152 goto out_put_netdev
;
3155 wdev
= dev
->ieee80211_ptr
;
3158 spin_lock_bh(&rdev
->bss_lock
);
3159 cfg80211_bss_expire(rdev
);
3161 list_for_each_entry(scan
, &rdev
->bss_list
, list
) {
3164 if (nl80211_send_bss(skb
,
3165 NETLINK_CB(cb
->skb
).pid
,
3166 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
3167 rdev
, wdev
, scan
) < 0) {
3174 spin_unlock_bh(&rdev
->bss_lock
);
3179 cfg80211_unlock_rdev(rdev
);
3186 static bool nl80211_valid_auth_type(enum nl80211_auth_type auth_type
)
3188 return auth_type
<= NL80211_AUTHTYPE_MAX
;
3191 static bool nl80211_valid_wpa_versions(u32 wpa_versions
)
3193 return !(wpa_versions
& ~(NL80211_WPA_VERSION_1
|
3194 NL80211_WPA_VERSION_2
));
3197 static bool nl80211_valid_akm_suite(u32 akm
)
3199 return akm
== WLAN_AKM_SUITE_8021X
||
3200 akm
== WLAN_AKM_SUITE_PSK
;
3203 static bool nl80211_valid_cipher_suite(u32 cipher
)
3205 return cipher
== WLAN_CIPHER_SUITE_WEP40
||
3206 cipher
== WLAN_CIPHER_SUITE_WEP104
||
3207 cipher
== WLAN_CIPHER_SUITE_TKIP
||
3208 cipher
== WLAN_CIPHER_SUITE_CCMP
||
3209 cipher
== WLAN_CIPHER_SUITE_AES_CMAC
;
3213 static int nl80211_authenticate(struct sk_buff
*skb
, struct genl_info
*info
)
3215 struct cfg80211_registered_device
*rdev
;
3216 struct net_device
*dev
;
3217 struct ieee80211_channel
*chan
;
3218 const u8
*bssid
, *ssid
, *ie
= NULL
;
3219 int err
, ssid_len
, ie_len
= 0;
3220 enum nl80211_auth_type auth_type
;
3221 struct key_parse key
;
3223 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3226 if (!info
->attrs
[NL80211_ATTR_MAC
])
3229 if (!info
->attrs
[NL80211_ATTR_AUTH_TYPE
])
3232 if (!info
->attrs
[NL80211_ATTR_SSID
])
3235 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
])
3238 err
= nl80211_parse_key(info
, &key
);
3243 if (!key
.p
.key
|| !key
.p
.key_len
)
3245 if ((key
.p
.cipher
!= WLAN_CIPHER_SUITE_WEP40
||
3246 key
.p
.key_len
!= WLAN_KEY_LEN_WEP40
) &&
3247 (key
.p
.cipher
!= WLAN_CIPHER_SUITE_WEP104
||
3248 key
.p
.key_len
!= WLAN_KEY_LEN_WEP104
))
3259 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
3263 if (!rdev
->ops
->auth
) {
3268 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3273 if (!netif_running(dev
)) {
3278 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3279 chan
= ieee80211_get_channel(&rdev
->wiphy
,
3280 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3281 if (!chan
|| (chan
->flags
& IEEE80211_CHAN_DISABLED
)) {
3286 ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3287 ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3289 if (info
->attrs
[NL80211_ATTR_IE
]) {
3290 ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3291 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3294 auth_type
= nla_get_u32(info
->attrs
[NL80211_ATTR_AUTH_TYPE
]);
3295 if (!nl80211_valid_auth_type(auth_type
)) {
3300 err
= cfg80211_mlme_auth(rdev
, dev
, chan
, auth_type
, bssid
,
3301 ssid
, ssid_len
, ie
, ie_len
,
3302 key
.p
.key
, key
.p
.key_len
, key
.idx
);
3305 cfg80211_unlock_rdev(rdev
);
3312 static int nl80211_crypto_settings(struct genl_info
*info
,
3313 struct cfg80211_crypto_settings
*settings
,
3316 memset(settings
, 0, sizeof(*settings
));
3318 settings
->control_port
= info
->attrs
[NL80211_ATTR_CONTROL_PORT
];
3320 if (info
->attrs
[NL80211_ATTR_CIPHER_SUITES_PAIRWISE
]) {
3324 data
= nla_data(info
->attrs
[NL80211_ATTR_CIPHER_SUITES_PAIRWISE
]);
3325 len
= nla_len(info
->attrs
[NL80211_ATTR_CIPHER_SUITES_PAIRWISE
]);
3326 settings
->n_ciphers_pairwise
= len
/ sizeof(u32
);
3328 if (len
% sizeof(u32
))
3331 if (settings
->n_ciphers_pairwise
> cipher_limit
)
3334 memcpy(settings
->ciphers_pairwise
, data
, len
);
3336 for (i
= 0; i
< settings
->n_ciphers_pairwise
; i
++)
3337 if (!nl80211_valid_cipher_suite(
3338 settings
->ciphers_pairwise
[i
]))
3342 if (info
->attrs
[NL80211_ATTR_CIPHER_SUITE_GROUP
]) {
3343 settings
->cipher_group
=
3344 nla_get_u32(info
->attrs
[NL80211_ATTR_CIPHER_SUITE_GROUP
]);
3345 if (!nl80211_valid_cipher_suite(settings
->cipher_group
))
3349 if (info
->attrs
[NL80211_ATTR_WPA_VERSIONS
]) {
3350 settings
->wpa_versions
=
3351 nla_get_u32(info
->attrs
[NL80211_ATTR_WPA_VERSIONS
]);
3352 if (!nl80211_valid_wpa_versions(settings
->wpa_versions
))
3356 if (info
->attrs
[NL80211_ATTR_AKM_SUITES
]) {
3360 data
= nla_data(info
->attrs
[NL80211_ATTR_AKM_SUITES
]);
3361 len
= nla_len(info
->attrs
[NL80211_ATTR_AKM_SUITES
]);
3362 settings
->n_akm_suites
= len
/ sizeof(u32
);
3364 if (len
% sizeof(u32
))
3367 if (settings
->n_akm_suites
> NL80211_MAX_NR_AKM_SUITES
)
3370 memcpy(settings
->akm_suites
, data
, len
);
3372 for (i
= 0; i
< settings
->n_akm_suites
; i
++)
3373 if (!nl80211_valid_akm_suite(settings
->akm_suites
[i
]))
3380 static int nl80211_associate(struct sk_buff
*skb
, struct genl_info
*info
)
3382 struct cfg80211_registered_device
*rdev
;
3383 struct net_device
*dev
;
3384 struct cfg80211_crypto_settings crypto
;
3385 struct ieee80211_channel
*chan
, *fixedchan
;
3386 const u8
*bssid
, *ssid
, *ie
= NULL
, *prev_bssid
= NULL
;
3387 int err
, ssid_len
, ie_len
= 0;
3388 bool use_mfp
= false;
3390 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3393 if (!info
->attrs
[NL80211_ATTR_MAC
] ||
3394 !info
->attrs
[NL80211_ATTR_SSID
] ||
3395 !info
->attrs
[NL80211_ATTR_WIPHY_FREQ
])
3400 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
3404 if (!rdev
->ops
->assoc
) {
3409 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3414 if (!netif_running(dev
)) {
3419 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3421 chan
= ieee80211_get_channel(&rdev
->wiphy
,
3422 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3423 if (!chan
|| (chan
->flags
& IEEE80211_CHAN_DISABLED
)) {
3428 mutex_lock(&rdev
->devlist_mtx
);
3429 fixedchan
= rdev_fixed_channel(rdev
, NULL
);
3430 if (fixedchan
&& chan
!= fixedchan
) {
3432 mutex_unlock(&rdev
->devlist_mtx
);
3435 mutex_unlock(&rdev
->devlist_mtx
);
3437 ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3438 ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3440 if (info
->attrs
[NL80211_ATTR_IE
]) {
3441 ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3442 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3445 if (info
->attrs
[NL80211_ATTR_USE_MFP
]) {
3446 enum nl80211_mfp mfp
=
3447 nla_get_u32(info
->attrs
[NL80211_ATTR_USE_MFP
]);
3448 if (mfp
== NL80211_MFP_REQUIRED
)
3450 else if (mfp
!= NL80211_MFP_NO
) {
3456 if (info
->attrs
[NL80211_ATTR_PREV_BSSID
])
3457 prev_bssid
= nla_data(info
->attrs
[NL80211_ATTR_PREV_BSSID
]);
3459 err
= nl80211_crypto_settings(info
, &crypto
, 1);
3461 err
= cfg80211_mlme_assoc(rdev
, dev
, chan
, bssid
, prev_bssid
,
3462 ssid
, ssid_len
, ie
, ie_len
, use_mfp
,
3466 cfg80211_unlock_rdev(rdev
);
3473 static int nl80211_deauthenticate(struct sk_buff
*skb
, struct genl_info
*info
)
3475 struct cfg80211_registered_device
*rdev
;
3476 struct net_device
*dev
;
3477 const u8
*ie
= NULL
, *bssid
;
3478 int err
, ie_len
= 0;
3481 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3484 if (!info
->attrs
[NL80211_ATTR_MAC
])
3487 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
3492 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
3496 if (!rdev
->ops
->deauth
) {
3501 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3506 if (!netif_running(dev
)) {
3511 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3513 reason_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
3514 if (reason_code
== 0) {
3515 /* Reason Code 0 is reserved */
3520 if (info
->attrs
[NL80211_ATTR_IE
]) {
3521 ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3522 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3525 err
= cfg80211_mlme_deauth(rdev
, dev
, bssid
, ie
, ie_len
, reason_code
);
3528 cfg80211_unlock_rdev(rdev
);
3535 static int nl80211_disassociate(struct sk_buff
*skb
, struct genl_info
*info
)
3537 struct cfg80211_registered_device
*rdev
;
3538 struct net_device
*dev
;
3539 const u8
*ie
= NULL
, *bssid
;
3540 int err
, ie_len
= 0;
3543 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3546 if (!info
->attrs
[NL80211_ATTR_MAC
])
3549 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
3554 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
3558 if (!rdev
->ops
->disassoc
) {
3563 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3568 if (!netif_running(dev
)) {
3573 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3575 reason_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
3576 if (reason_code
== 0) {
3577 /* Reason Code 0 is reserved */
3582 if (info
->attrs
[NL80211_ATTR_IE
]) {
3583 ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3584 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3587 err
= cfg80211_mlme_disassoc(rdev
, dev
, bssid
, ie
, ie_len
, reason_code
);
3590 cfg80211_unlock_rdev(rdev
);
3597 static int nl80211_join_ibss(struct sk_buff
*skb
, struct genl_info
*info
)
3599 struct cfg80211_registered_device
*rdev
;
3600 struct net_device
*dev
;
3601 struct cfg80211_ibss_params ibss
;
3602 struct wiphy
*wiphy
;
3603 struct cfg80211_cached_keys
*connkeys
= NULL
;
3606 memset(&ibss
, 0, sizeof(ibss
));
3608 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3611 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
] ||
3612 !info
->attrs
[NL80211_ATTR_SSID
] ||
3613 !nla_len(info
->attrs
[NL80211_ATTR_SSID
]))
3616 ibss
.beacon_interval
= 100;
3618 if (info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]) {
3619 ibss
.beacon_interval
=
3620 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
3621 if (ibss
.beacon_interval
< 1 || ibss
.beacon_interval
> 10000)
3627 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
3631 if (!rdev
->ops
->join_ibss
) {
3636 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
) {
3641 if (!netif_running(dev
)) {
3646 wiphy
= &rdev
->wiphy
;
3648 if (info
->attrs
[NL80211_ATTR_MAC
])
3649 ibss
.bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3650 ibss
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3651 ibss
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3653 if (info
->attrs
[NL80211_ATTR_IE
]) {
3654 ibss
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3655 ibss
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3658 ibss
.channel
= ieee80211_get_channel(wiphy
,
3659 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3660 if (!ibss
.channel
||
3661 ibss
.channel
->flags
& IEEE80211_CHAN_NO_IBSS
||
3662 ibss
.channel
->flags
& IEEE80211_CHAN_DISABLED
) {
3667 ibss
.channel_fixed
= !!info
->attrs
[NL80211_ATTR_FREQ_FIXED
];
3668 ibss
.privacy
= !!info
->attrs
[NL80211_ATTR_PRIVACY
];
3670 if (ibss
.privacy
&& info
->attrs
[NL80211_ATTR_KEYS
]) {
3671 connkeys
= nl80211_parse_connkeys(rdev
,
3672 info
->attrs
[NL80211_ATTR_KEYS
]);
3673 if (IS_ERR(connkeys
)) {
3674 err
= PTR_ERR(connkeys
);
3680 err
= cfg80211_join_ibss(rdev
, dev
, &ibss
, connkeys
);
3683 cfg80211_unlock_rdev(rdev
);
3692 static int nl80211_leave_ibss(struct sk_buff
*skb
, struct genl_info
*info
)
3694 struct cfg80211_registered_device
*rdev
;
3695 struct net_device
*dev
;
3700 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
3704 if (!rdev
->ops
->leave_ibss
) {
3709 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
) {
3714 if (!netif_running(dev
)) {
3719 err
= cfg80211_leave_ibss(rdev
, dev
, false);
3722 cfg80211_unlock_rdev(rdev
);
3729 #ifdef CONFIG_NL80211_TESTMODE
3730 static struct genl_multicast_group nl80211_testmode_mcgrp
= {
3734 static int nl80211_testmode_do(struct sk_buff
*skb
, struct genl_info
*info
)
3736 struct cfg80211_registered_device
*rdev
;
3739 if (!info
->attrs
[NL80211_ATTR_TESTDATA
])
3744 rdev
= cfg80211_get_dev_from_info(info
);
3746 err
= PTR_ERR(rdev
);
3751 if (rdev
->ops
->testmode_cmd
) {
3752 rdev
->testmode_info
= info
;
3753 err
= rdev
->ops
->testmode_cmd(&rdev
->wiphy
,
3754 nla_data(info
->attrs
[NL80211_ATTR_TESTDATA
]),
3755 nla_len(info
->attrs
[NL80211_ATTR_TESTDATA
]));
3756 rdev
->testmode_info
= NULL
;
3759 cfg80211_unlock_rdev(rdev
);
3766 static struct sk_buff
*
3767 __cfg80211_testmode_alloc_skb(struct cfg80211_registered_device
*rdev
,
3768 int approxlen
, u32 pid
, u32 seq
, gfp_t gfp
)
3770 struct sk_buff
*skb
;
3772 struct nlattr
*data
;
3774 skb
= nlmsg_new(approxlen
+ 100, gfp
);
3778 hdr
= nl80211hdr_put(skb
, pid
, seq
, 0, NL80211_CMD_TESTMODE
);
3784 NLA_PUT_U32(skb
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
3785 data
= nla_nest_start(skb
, NL80211_ATTR_TESTDATA
);
3787 ((void **)skb
->cb
)[0] = rdev
;
3788 ((void **)skb
->cb
)[1] = hdr
;
3789 ((void **)skb
->cb
)[2] = data
;
3798 struct sk_buff
*cfg80211_testmode_alloc_reply_skb(struct wiphy
*wiphy
,
3801 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
3803 if (WARN_ON(!rdev
->testmode_info
))
3806 return __cfg80211_testmode_alloc_skb(rdev
, approxlen
,
3807 rdev
->testmode_info
->snd_pid
,
3808 rdev
->testmode_info
->snd_seq
,
3811 EXPORT_SYMBOL(cfg80211_testmode_alloc_reply_skb
);
3813 int cfg80211_testmode_reply(struct sk_buff
*skb
)
3815 struct cfg80211_registered_device
*rdev
= ((void **)skb
->cb
)[0];
3816 void *hdr
= ((void **)skb
->cb
)[1];
3817 struct nlattr
*data
= ((void **)skb
->cb
)[2];
3819 if (WARN_ON(!rdev
->testmode_info
)) {
3824 nla_nest_end(skb
, data
);
3825 genlmsg_end(skb
, hdr
);
3826 return genlmsg_reply(skb
, rdev
->testmode_info
);
3828 EXPORT_SYMBOL(cfg80211_testmode_reply
);
3830 struct sk_buff
*cfg80211_testmode_alloc_event_skb(struct wiphy
*wiphy
,
3831 int approxlen
, gfp_t gfp
)
3833 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
3835 return __cfg80211_testmode_alloc_skb(rdev
, approxlen
, 0, 0, gfp
);
3837 EXPORT_SYMBOL(cfg80211_testmode_alloc_event_skb
);
3839 void cfg80211_testmode_event(struct sk_buff
*skb
, gfp_t gfp
)
3841 void *hdr
= ((void **)skb
->cb
)[1];
3842 struct nlattr
*data
= ((void **)skb
->cb
)[2];
3844 nla_nest_end(skb
, data
);
3845 genlmsg_end(skb
, hdr
);
3846 genlmsg_multicast(skb
, 0, nl80211_testmode_mcgrp
.id
, gfp
);
3848 EXPORT_SYMBOL(cfg80211_testmode_event
);
3851 static int nl80211_connect(struct sk_buff
*skb
, struct genl_info
*info
)
3853 struct cfg80211_registered_device
*rdev
;
3854 struct net_device
*dev
;
3855 struct cfg80211_connect_params connect
;
3856 struct wiphy
*wiphy
;
3857 struct cfg80211_cached_keys
*connkeys
= NULL
;
3860 memset(&connect
, 0, sizeof(connect
));
3862 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
3865 if (!info
->attrs
[NL80211_ATTR_SSID
] ||
3866 !nla_len(info
->attrs
[NL80211_ATTR_SSID
]))
3869 if (info
->attrs
[NL80211_ATTR_AUTH_TYPE
]) {
3871 nla_get_u32(info
->attrs
[NL80211_ATTR_AUTH_TYPE
]);
3872 if (!nl80211_valid_auth_type(connect
.auth_type
))
3875 connect
.auth_type
= NL80211_AUTHTYPE_AUTOMATIC
;
3877 connect
.privacy
= info
->attrs
[NL80211_ATTR_PRIVACY
];
3879 err
= nl80211_crypto_settings(info
, &connect
.crypto
,
3880 NL80211_MAX_NR_CIPHER_SUITES
);
3885 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
3889 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3894 if (!netif_running(dev
)) {
3899 wiphy
= &rdev
->wiphy
;
3901 if (info
->attrs
[NL80211_ATTR_MAC
])
3902 connect
.bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3903 connect
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3904 connect
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3906 if (info
->attrs
[NL80211_ATTR_IE
]) {
3907 connect
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
3908 connect
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
3911 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
3913 ieee80211_get_channel(wiphy
,
3914 nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]));
3915 if (!connect
.channel
||
3916 connect
.channel
->flags
& IEEE80211_CHAN_DISABLED
) {
3922 if (connect
.privacy
&& info
->attrs
[NL80211_ATTR_KEYS
]) {
3923 connkeys
= nl80211_parse_connkeys(rdev
,
3924 info
->attrs
[NL80211_ATTR_KEYS
]);
3925 if (IS_ERR(connkeys
)) {
3926 err
= PTR_ERR(connkeys
);
3932 err
= cfg80211_connect(rdev
, dev
, &connect
, connkeys
);
3935 cfg80211_unlock_rdev(rdev
);
3944 static int nl80211_disconnect(struct sk_buff
*skb
, struct genl_info
*info
)
3946 struct cfg80211_registered_device
*rdev
;
3947 struct net_device
*dev
;
3951 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
3952 reason
= WLAN_REASON_DEAUTH_LEAVING
;
3954 reason
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
3961 err
= get_rdev_dev_by_info_ifindex(info
, &rdev
, &dev
);
3965 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
) {
3970 if (!netif_running(dev
)) {
3975 err
= cfg80211_disconnect(rdev
, dev
, reason
, true);
3978 cfg80211_unlock_rdev(rdev
);
3985 static int nl80211_wiphy_netns(struct sk_buff
*skb
, struct genl_info
*info
)
3987 struct cfg80211_registered_device
*rdev
;
3992 if (!info
->attrs
[NL80211_ATTR_PID
])
3995 pid
= nla_get_u32(info
->attrs
[NL80211_ATTR_PID
]);
3999 rdev
= cfg80211_get_dev_from_info(info
);
4001 err
= PTR_ERR(rdev
);
4005 net
= get_net_ns_by_pid(pid
);
4013 /* check if anything to do */
4014 if (net_eq(wiphy_net(&rdev
->wiphy
), net
))
4017 err
= cfg80211_switch_netns(rdev
, net
);
4021 cfg80211_unlock_rdev(rdev
);
4027 static struct genl_ops nl80211_ops
[] = {
4029 .cmd
= NL80211_CMD_GET_WIPHY
,
4030 .doit
= nl80211_get_wiphy
,
4031 .dumpit
= nl80211_dump_wiphy
,
4032 .policy
= nl80211_policy
,
4033 /* can be retrieved by unprivileged users */
4036 .cmd
= NL80211_CMD_SET_WIPHY
,
4037 .doit
= nl80211_set_wiphy
,
4038 .policy
= nl80211_policy
,
4039 .flags
= GENL_ADMIN_PERM
,
4042 .cmd
= NL80211_CMD_GET_INTERFACE
,
4043 .doit
= nl80211_get_interface
,
4044 .dumpit
= nl80211_dump_interface
,
4045 .policy
= nl80211_policy
,
4046 /* can be retrieved by unprivileged users */
4049 .cmd
= NL80211_CMD_SET_INTERFACE
,
4050 .doit
= nl80211_set_interface
,
4051 .policy
= nl80211_policy
,
4052 .flags
= GENL_ADMIN_PERM
,
4055 .cmd
= NL80211_CMD_NEW_INTERFACE
,
4056 .doit
= nl80211_new_interface
,
4057 .policy
= nl80211_policy
,
4058 .flags
= GENL_ADMIN_PERM
,
4061 .cmd
= NL80211_CMD_DEL_INTERFACE
,
4062 .doit
= nl80211_del_interface
,
4063 .policy
= nl80211_policy
,
4064 .flags
= GENL_ADMIN_PERM
,
4067 .cmd
= NL80211_CMD_GET_KEY
,
4068 .doit
= nl80211_get_key
,
4069 .policy
= nl80211_policy
,
4070 .flags
= GENL_ADMIN_PERM
,
4073 .cmd
= NL80211_CMD_SET_KEY
,
4074 .doit
= nl80211_set_key
,
4075 .policy
= nl80211_policy
,
4076 .flags
= GENL_ADMIN_PERM
,
4079 .cmd
= NL80211_CMD_NEW_KEY
,
4080 .doit
= nl80211_new_key
,
4081 .policy
= nl80211_policy
,
4082 .flags
= GENL_ADMIN_PERM
,
4085 .cmd
= NL80211_CMD_DEL_KEY
,
4086 .doit
= nl80211_del_key
,
4087 .policy
= nl80211_policy
,
4088 .flags
= GENL_ADMIN_PERM
,
4091 .cmd
= NL80211_CMD_SET_BEACON
,
4092 .policy
= nl80211_policy
,
4093 .flags
= GENL_ADMIN_PERM
,
4094 .doit
= nl80211_addset_beacon
,
4097 .cmd
= NL80211_CMD_NEW_BEACON
,
4098 .policy
= nl80211_policy
,
4099 .flags
= GENL_ADMIN_PERM
,
4100 .doit
= nl80211_addset_beacon
,
4103 .cmd
= NL80211_CMD_DEL_BEACON
,
4104 .policy
= nl80211_policy
,
4105 .flags
= GENL_ADMIN_PERM
,
4106 .doit
= nl80211_del_beacon
,
4109 .cmd
= NL80211_CMD_GET_STATION
,
4110 .doit
= nl80211_get_station
,
4111 .dumpit
= nl80211_dump_station
,
4112 .policy
= nl80211_policy
,
4115 .cmd
= NL80211_CMD_SET_STATION
,
4116 .doit
= nl80211_set_station
,
4117 .policy
= nl80211_policy
,
4118 .flags
= GENL_ADMIN_PERM
,
4121 .cmd
= NL80211_CMD_NEW_STATION
,
4122 .doit
= nl80211_new_station
,
4123 .policy
= nl80211_policy
,
4124 .flags
= GENL_ADMIN_PERM
,
4127 .cmd
= NL80211_CMD_DEL_STATION
,
4128 .doit
= nl80211_del_station
,
4129 .policy
= nl80211_policy
,
4130 .flags
= GENL_ADMIN_PERM
,
4133 .cmd
= NL80211_CMD_GET_MPATH
,
4134 .doit
= nl80211_get_mpath
,
4135 .dumpit
= nl80211_dump_mpath
,
4136 .policy
= nl80211_policy
,
4137 .flags
= GENL_ADMIN_PERM
,
4140 .cmd
= NL80211_CMD_SET_MPATH
,
4141 .doit
= nl80211_set_mpath
,
4142 .policy
= nl80211_policy
,
4143 .flags
= GENL_ADMIN_PERM
,
4146 .cmd
= NL80211_CMD_NEW_MPATH
,
4147 .doit
= nl80211_new_mpath
,
4148 .policy
= nl80211_policy
,
4149 .flags
= GENL_ADMIN_PERM
,
4152 .cmd
= NL80211_CMD_DEL_MPATH
,
4153 .doit
= nl80211_del_mpath
,
4154 .policy
= nl80211_policy
,
4155 .flags
= GENL_ADMIN_PERM
,
4158 .cmd
= NL80211_CMD_SET_BSS
,
4159 .doit
= nl80211_set_bss
,
4160 .policy
= nl80211_policy
,
4161 .flags
= GENL_ADMIN_PERM
,
4164 .cmd
= NL80211_CMD_GET_REG
,
4165 .doit
= nl80211_get_reg
,
4166 .policy
= nl80211_policy
,
4167 /* can be retrieved by unprivileged users */
4170 .cmd
= NL80211_CMD_SET_REG
,
4171 .doit
= nl80211_set_reg
,
4172 .policy
= nl80211_policy
,
4173 .flags
= GENL_ADMIN_PERM
,
4176 .cmd
= NL80211_CMD_REQ_SET_REG
,
4177 .doit
= nl80211_req_set_reg
,
4178 .policy
= nl80211_policy
,
4179 .flags
= GENL_ADMIN_PERM
,
4182 .cmd
= NL80211_CMD_GET_MESH_PARAMS
,
4183 .doit
= nl80211_get_mesh_params
,
4184 .policy
= nl80211_policy
,
4185 /* can be retrieved by unprivileged users */
4188 .cmd
= NL80211_CMD_SET_MESH_PARAMS
,
4189 .doit
= nl80211_set_mesh_params
,
4190 .policy
= nl80211_policy
,
4191 .flags
= GENL_ADMIN_PERM
,
4194 .cmd
= NL80211_CMD_TRIGGER_SCAN
,
4195 .doit
= nl80211_trigger_scan
,
4196 .policy
= nl80211_policy
,
4197 .flags
= GENL_ADMIN_PERM
,
4200 .cmd
= NL80211_CMD_GET_SCAN
,
4201 .policy
= nl80211_policy
,
4202 .dumpit
= nl80211_dump_scan
,
4205 .cmd
= NL80211_CMD_AUTHENTICATE
,
4206 .doit
= nl80211_authenticate
,
4207 .policy
= nl80211_policy
,
4208 .flags
= GENL_ADMIN_PERM
,
4211 .cmd
= NL80211_CMD_ASSOCIATE
,
4212 .doit
= nl80211_associate
,
4213 .policy
= nl80211_policy
,
4214 .flags
= GENL_ADMIN_PERM
,
4217 .cmd
= NL80211_CMD_DEAUTHENTICATE
,
4218 .doit
= nl80211_deauthenticate
,
4219 .policy
= nl80211_policy
,
4220 .flags
= GENL_ADMIN_PERM
,
4223 .cmd
= NL80211_CMD_DISASSOCIATE
,
4224 .doit
= nl80211_disassociate
,
4225 .policy
= nl80211_policy
,
4226 .flags
= GENL_ADMIN_PERM
,
4229 .cmd
= NL80211_CMD_JOIN_IBSS
,
4230 .doit
= nl80211_join_ibss
,
4231 .policy
= nl80211_policy
,
4232 .flags
= GENL_ADMIN_PERM
,
4235 .cmd
= NL80211_CMD_LEAVE_IBSS
,
4236 .doit
= nl80211_leave_ibss
,
4237 .policy
= nl80211_policy
,
4238 .flags
= GENL_ADMIN_PERM
,
4240 #ifdef CONFIG_NL80211_TESTMODE
4242 .cmd
= NL80211_CMD_TESTMODE
,
4243 .doit
= nl80211_testmode_do
,
4244 .policy
= nl80211_policy
,
4245 .flags
= GENL_ADMIN_PERM
,
4249 .cmd
= NL80211_CMD_CONNECT
,
4250 .doit
= nl80211_connect
,
4251 .policy
= nl80211_policy
,
4252 .flags
= GENL_ADMIN_PERM
,
4255 .cmd
= NL80211_CMD_DISCONNECT
,
4256 .doit
= nl80211_disconnect
,
4257 .policy
= nl80211_policy
,
4258 .flags
= GENL_ADMIN_PERM
,
4261 .cmd
= NL80211_CMD_SET_WIPHY_NETNS
,
4262 .doit
= nl80211_wiphy_netns
,
4263 .policy
= nl80211_policy
,
4264 .flags
= GENL_ADMIN_PERM
,
4267 static struct genl_multicast_group nl80211_mlme_mcgrp
= {
4271 /* multicast groups */
4272 static struct genl_multicast_group nl80211_config_mcgrp
= {
4275 static struct genl_multicast_group nl80211_scan_mcgrp
= {
4278 static struct genl_multicast_group nl80211_regulatory_mcgrp
= {
4279 .name
= "regulatory",
4282 /* notification functions */
4284 void nl80211_notify_dev_rename(struct cfg80211_registered_device
*rdev
)
4286 struct sk_buff
*msg
;
4288 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
4292 if (nl80211_send_wiphy(msg
, 0, 0, 0, rdev
) < 0) {
4297 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4298 nl80211_config_mcgrp
.id
, GFP_KERNEL
);
4301 static int nl80211_add_scan_req(struct sk_buff
*msg
,
4302 struct cfg80211_registered_device
*rdev
)
4304 struct cfg80211_scan_request
*req
= rdev
->scan_req
;
4305 struct nlattr
*nest
;
4308 ASSERT_RDEV_LOCK(rdev
);
4313 nest
= nla_nest_start(msg
, NL80211_ATTR_SCAN_SSIDS
);
4315 goto nla_put_failure
;
4316 for (i
= 0; i
< req
->n_ssids
; i
++)
4317 NLA_PUT(msg
, i
, req
->ssids
[i
].ssid_len
, req
->ssids
[i
].ssid
);
4318 nla_nest_end(msg
, nest
);
4320 nest
= nla_nest_start(msg
, NL80211_ATTR_SCAN_FREQUENCIES
);
4322 goto nla_put_failure
;
4323 for (i
= 0; i
< req
->n_channels
; i
++)
4324 NLA_PUT_U32(msg
, i
, req
->channels
[i
]->center_freq
);
4325 nla_nest_end(msg
, nest
);
4328 NLA_PUT(msg
, NL80211_ATTR_IE
, req
->ie_len
, req
->ie
);
4335 static int nl80211_send_scan_msg(struct sk_buff
*msg
,
4336 struct cfg80211_registered_device
*rdev
,
4337 struct net_device
*netdev
,
4338 u32 pid
, u32 seq
, int flags
,
4343 hdr
= nl80211hdr_put(msg
, pid
, seq
, flags
, cmd
);
4347 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
4348 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
4350 /* ignore errors and send incomplete event anyway */
4351 nl80211_add_scan_req(msg
, rdev
);
4353 return genlmsg_end(msg
, hdr
);
4356 genlmsg_cancel(msg
, hdr
);
4360 void nl80211_send_scan_start(struct cfg80211_registered_device
*rdev
,
4361 struct net_device
*netdev
)
4363 struct sk_buff
*msg
;
4365 msg
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
4369 if (nl80211_send_scan_msg(msg
, rdev
, netdev
, 0, 0, 0,
4370 NL80211_CMD_TRIGGER_SCAN
) < 0) {
4375 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4376 nl80211_scan_mcgrp
.id
, GFP_KERNEL
);
4379 void nl80211_send_scan_done(struct cfg80211_registered_device
*rdev
,
4380 struct net_device
*netdev
)
4382 struct sk_buff
*msg
;
4384 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
4388 if (nl80211_send_scan_msg(msg
, rdev
, netdev
, 0, 0, 0,
4389 NL80211_CMD_NEW_SCAN_RESULTS
) < 0) {
4394 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4395 nl80211_scan_mcgrp
.id
, GFP_KERNEL
);
4398 void nl80211_send_scan_aborted(struct cfg80211_registered_device
*rdev
,
4399 struct net_device
*netdev
)
4401 struct sk_buff
*msg
;
4403 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
4407 if (nl80211_send_scan_msg(msg
, rdev
, netdev
, 0, 0, 0,
4408 NL80211_CMD_SCAN_ABORTED
) < 0) {
4413 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4414 nl80211_scan_mcgrp
.id
, GFP_KERNEL
);
4418 * This can happen on global regulatory changes or device specific settings
4419 * based on custom world regulatory domains.
4421 void nl80211_send_reg_change_event(struct regulatory_request
*request
)
4423 struct sk_buff
*msg
;
4426 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
4430 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_REG_CHANGE
);
4436 /* Userspace can always count this one always being set */
4437 NLA_PUT_U8(msg
, NL80211_ATTR_REG_INITIATOR
, request
->initiator
);
4439 if (request
->alpha2
[0] == '0' && request
->alpha2
[1] == '0')
4440 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
4441 NL80211_REGDOM_TYPE_WORLD
);
4442 else if (request
->alpha2
[0] == '9' && request
->alpha2
[1] == '9')
4443 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
4444 NL80211_REGDOM_TYPE_CUSTOM_WORLD
);
4445 else if ((request
->alpha2
[0] == '9' && request
->alpha2
[1] == '8') ||
4447 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
4448 NL80211_REGDOM_TYPE_INTERSECTION
);
4450 NLA_PUT_U8(msg
, NL80211_ATTR_REG_TYPE
,
4451 NL80211_REGDOM_TYPE_COUNTRY
);
4452 NLA_PUT_STRING(msg
, NL80211_ATTR_REG_ALPHA2
, request
->alpha2
);
4455 if (wiphy_idx_valid(request
->wiphy_idx
))
4456 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, request
->wiphy_idx
);
4458 if (genlmsg_end(msg
, hdr
) < 0) {
4464 genlmsg_multicast_allns(msg
, 0, nl80211_regulatory_mcgrp
.id
,
4471 genlmsg_cancel(msg
, hdr
);
4475 static void nl80211_send_mlme_event(struct cfg80211_registered_device
*rdev
,
4476 struct net_device
*netdev
,
4477 const u8
*buf
, size_t len
,
4478 enum nl80211_commands cmd
, gfp_t gfp
)
4480 struct sk_buff
*msg
;
4483 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
4487 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
4493 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
4494 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
4495 NLA_PUT(msg
, NL80211_ATTR_FRAME
, len
, buf
);
4497 if (genlmsg_end(msg
, hdr
) < 0) {
4502 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4503 nl80211_mlme_mcgrp
.id
, gfp
);
4507 genlmsg_cancel(msg
, hdr
);
4511 void nl80211_send_rx_auth(struct cfg80211_registered_device
*rdev
,
4512 struct net_device
*netdev
, const u8
*buf
,
4513 size_t len
, gfp_t gfp
)
4515 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
4516 NL80211_CMD_AUTHENTICATE
, gfp
);
4519 void nl80211_send_rx_assoc(struct cfg80211_registered_device
*rdev
,
4520 struct net_device
*netdev
, const u8
*buf
,
4521 size_t len
, gfp_t gfp
)
4523 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
4524 NL80211_CMD_ASSOCIATE
, gfp
);
4527 void nl80211_send_deauth(struct cfg80211_registered_device
*rdev
,
4528 struct net_device
*netdev
, const u8
*buf
,
4529 size_t len
, gfp_t gfp
)
4531 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
4532 NL80211_CMD_DEAUTHENTICATE
, gfp
);
4535 void nl80211_send_disassoc(struct cfg80211_registered_device
*rdev
,
4536 struct net_device
*netdev
, const u8
*buf
,
4537 size_t len
, gfp_t gfp
)
4539 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
4540 NL80211_CMD_DISASSOCIATE
, gfp
);
4543 static void nl80211_send_mlme_timeout(struct cfg80211_registered_device
*rdev
,
4544 struct net_device
*netdev
, int cmd
,
4545 const u8
*addr
, gfp_t gfp
)
4547 struct sk_buff
*msg
;
4550 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
4554 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
4560 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
4561 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
4562 NLA_PUT_FLAG(msg
, NL80211_ATTR_TIMED_OUT
);
4563 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
);
4565 if (genlmsg_end(msg
, hdr
) < 0) {
4570 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4571 nl80211_mlme_mcgrp
.id
, gfp
);
4575 genlmsg_cancel(msg
, hdr
);
4579 void nl80211_send_auth_timeout(struct cfg80211_registered_device
*rdev
,
4580 struct net_device
*netdev
, const u8
*addr
,
4583 nl80211_send_mlme_timeout(rdev
, netdev
, NL80211_CMD_AUTHENTICATE
,
4587 void nl80211_send_assoc_timeout(struct cfg80211_registered_device
*rdev
,
4588 struct net_device
*netdev
, const u8
*addr
,
4591 nl80211_send_mlme_timeout(rdev
, netdev
, NL80211_CMD_ASSOCIATE
,
4595 void nl80211_send_connect_result(struct cfg80211_registered_device
*rdev
,
4596 struct net_device
*netdev
, const u8
*bssid
,
4597 const u8
*req_ie
, size_t req_ie_len
,
4598 const u8
*resp_ie
, size_t resp_ie_len
,
4599 u16 status
, gfp_t gfp
)
4601 struct sk_buff
*msg
;
4604 msg
= nlmsg_new(NLMSG_GOODSIZE
, gfp
);
4608 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_CONNECT
);
4614 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
4615 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
4617 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
);
4618 NLA_PUT_U16(msg
, NL80211_ATTR_STATUS_CODE
, status
);
4620 NLA_PUT(msg
, NL80211_ATTR_REQ_IE
, req_ie_len
, req_ie
);
4622 NLA_PUT(msg
, NL80211_ATTR_RESP_IE
, resp_ie_len
, resp_ie
);
4624 if (genlmsg_end(msg
, hdr
) < 0) {
4629 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4630 nl80211_mlme_mcgrp
.id
, gfp
);
4634 genlmsg_cancel(msg
, hdr
);
4639 void nl80211_send_roamed(struct cfg80211_registered_device
*rdev
,
4640 struct net_device
*netdev
, const u8
*bssid
,
4641 const u8
*req_ie
, size_t req_ie_len
,
4642 const u8
*resp_ie
, size_t resp_ie_len
, gfp_t gfp
)
4644 struct sk_buff
*msg
;
4647 msg
= nlmsg_new(NLMSG_GOODSIZE
, gfp
);
4651 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_ROAM
);
4657 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
4658 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
4659 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
);
4661 NLA_PUT(msg
, NL80211_ATTR_REQ_IE
, req_ie_len
, req_ie
);
4663 NLA_PUT(msg
, NL80211_ATTR_RESP_IE
, resp_ie_len
, resp_ie
);
4665 if (genlmsg_end(msg
, hdr
) < 0) {
4670 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4671 nl80211_mlme_mcgrp
.id
, gfp
);
4675 genlmsg_cancel(msg
, hdr
);
4680 void nl80211_send_disconnected(struct cfg80211_registered_device
*rdev
,
4681 struct net_device
*netdev
, u16 reason
,
4682 const u8
*ie
, size_t ie_len
, bool from_ap
)
4684 struct sk_buff
*msg
;
4687 msg
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
4691 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_DISCONNECT
);
4697 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
4698 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
4699 if (from_ap
&& reason
)
4700 NLA_PUT_U16(msg
, NL80211_ATTR_REASON_CODE
, reason
);
4702 NLA_PUT_FLAG(msg
, NL80211_ATTR_DISCONNECTED_BY_AP
);
4704 NLA_PUT(msg
, NL80211_ATTR_IE
, ie_len
, ie
);
4706 if (genlmsg_end(msg
, hdr
) < 0) {
4711 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4712 nl80211_mlme_mcgrp
.id
, GFP_KERNEL
);
4716 genlmsg_cancel(msg
, hdr
);
4721 void nl80211_send_ibss_bssid(struct cfg80211_registered_device
*rdev
,
4722 struct net_device
*netdev
, const u8
*bssid
,
4725 struct sk_buff
*msg
;
4728 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
4732 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_JOIN_IBSS
);
4738 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
4739 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
4740 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
);
4742 if (genlmsg_end(msg
, hdr
) < 0) {
4747 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4748 nl80211_mlme_mcgrp
.id
, gfp
);
4752 genlmsg_cancel(msg
, hdr
);
4756 void nl80211_michael_mic_failure(struct cfg80211_registered_device
*rdev
,
4757 struct net_device
*netdev
, const u8
*addr
,
4758 enum nl80211_key_type key_type
, int key_id
,
4759 const u8
*tsc
, gfp_t gfp
)
4761 struct sk_buff
*msg
;
4764 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
4768 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE
);
4774 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
);
4775 NLA_PUT_U32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
);
4777 NLA_PUT(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
);
4778 NLA_PUT_U32(msg
, NL80211_ATTR_KEY_TYPE
, key_type
);
4779 NLA_PUT_U8(msg
, NL80211_ATTR_KEY_IDX
, key_id
);
4781 NLA_PUT(msg
, NL80211_ATTR_KEY_SEQ
, 6, tsc
);
4783 if (genlmsg_end(msg
, hdr
) < 0) {
4788 genlmsg_multicast_netns(wiphy_net(&rdev
->wiphy
), msg
, 0,
4789 nl80211_mlme_mcgrp
.id
, gfp
);
4793 genlmsg_cancel(msg
, hdr
);
4797 void nl80211_send_beacon_hint_event(struct wiphy
*wiphy
,
4798 struct ieee80211_channel
*channel_before
,
4799 struct ieee80211_channel
*channel_after
)
4801 struct sk_buff
*msg
;
4803 struct nlattr
*nl_freq
;
4805 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
4809 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT
);
4816 * Since we are applying the beacon hint to a wiphy we know its
4817 * wiphy_idx is valid
4819 NLA_PUT_U32(msg
, NL80211_ATTR_WIPHY
, get_wiphy_idx(wiphy
));
4822 nl_freq
= nla_nest_start(msg
, NL80211_ATTR_FREQ_BEFORE
);
4824 goto nla_put_failure
;
4825 if (nl80211_msg_put_channel(msg
, channel_before
))
4826 goto nla_put_failure
;
4827 nla_nest_end(msg
, nl_freq
);
4830 nl_freq
= nla_nest_start(msg
, NL80211_ATTR_FREQ_AFTER
);
4832 goto nla_put_failure
;
4833 if (nl80211_msg_put_channel(msg
, channel_after
))
4834 goto nla_put_failure
;
4835 nla_nest_end(msg
, nl_freq
);
4837 if (genlmsg_end(msg
, hdr
) < 0) {
4843 genlmsg_multicast_allns(msg
, 0, nl80211_regulatory_mcgrp
.id
,
4850 genlmsg_cancel(msg
, hdr
);
4854 /* initialisation/exit functions */
4856 int nl80211_init(void)
4860 err
= genl_register_family_with_ops(&nl80211_fam
,
4861 nl80211_ops
, ARRAY_SIZE(nl80211_ops
));
4865 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_config_mcgrp
);
4869 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_scan_mcgrp
);
4873 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_regulatory_mcgrp
);
4877 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_mlme_mcgrp
);
4881 #ifdef CONFIG_NL80211_TESTMODE
4882 err
= genl_register_mc_group(&nl80211_fam
, &nl80211_testmode_mcgrp
);
4889 genl_unregister_family(&nl80211_fam
);
4893 void nl80211_exit(void)
4895 genl_unregister_family(&nl80211_fam
);