nl80211: Add VHT 160 MHz channel flags
[mech_eap.git] / src / drivers / driver_nl80211_capa.c
1 /*
2  * Driver interaction with Linux nl80211/cfg80211 - Capabilities
3  * Copyright (c) 2002-2015, Jouni Malinen <j@w1.fi>
4  * Copyright (c) 2007, Johannes Berg <johannes@sipsolutions.net>
5  * Copyright (c) 2009-2010, Atheros Communications
6  *
7  * This software may be distributed under the terms of the BSD license.
8  * See README for more details.
9  */
10
11 #include "includes.h"
12 #include <netlink/genl/genl.h>
13
14 #include "utils/common.h"
15 #include "common/ieee802_11_defs.h"
16 #include "common/ieee802_11_common.h"
17 #include "common/qca-vendor.h"
18 #include "common/qca-vendor-attr.h"
19 #include "driver_nl80211.h"
20
21
22 static int protocol_feature_handler(struct nl_msg *msg, void *arg)
23 {
24         u32 *feat = arg;
25         struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
26         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
27
28         nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
29                   genlmsg_attrlen(gnlh, 0), NULL);
30
31         if (tb_msg[NL80211_ATTR_PROTOCOL_FEATURES])
32                 *feat = nla_get_u32(tb_msg[NL80211_ATTR_PROTOCOL_FEATURES]);
33
34         return NL_SKIP;
35 }
36
37
38 static u32 get_nl80211_protocol_features(struct wpa_driver_nl80211_data *drv)
39 {
40         u32 feat = 0;
41         struct nl_msg *msg;
42
43         msg = nlmsg_alloc();
44         if (!msg)
45                 return 0;
46
47         if (!nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_PROTOCOL_FEATURES)) {
48                 nlmsg_free(msg);
49                 return 0;
50         }
51
52         if (send_and_recv_msgs(drv, msg, protocol_feature_handler, &feat) == 0)
53                 return feat;
54
55         return 0;
56 }
57
58
59 struct wiphy_info_data {
60         struct wpa_driver_nl80211_data *drv;
61         struct wpa_driver_capa *capa;
62
63         unsigned int num_multichan_concurrent;
64
65         unsigned int error:1;
66         unsigned int device_ap_sme:1;
67         unsigned int poll_command_supported:1;
68         unsigned int data_tx_status:1;
69         unsigned int monitor_supported:1;
70         unsigned int auth_supported:1;
71         unsigned int connect_supported:1;
72         unsigned int p2p_go_supported:1;
73         unsigned int p2p_client_supported:1;
74         unsigned int p2p_go_ctwindow_supported:1;
75         unsigned int p2p_concurrent:1;
76         unsigned int channel_switch_supported:1;
77         unsigned int set_qos_map_supported:1;
78         unsigned int have_low_prio_scan:1;
79         unsigned int wmm_ac_supported:1;
80         unsigned int mac_addr_rand_scan_supported:1;
81         unsigned int mac_addr_rand_sched_scan_supported:1;
82 };
83
84
85 static unsigned int probe_resp_offload_support(int supp_protocols)
86 {
87         unsigned int prot = 0;
88
89         if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS)
90                 prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS;
91         if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2)
92                 prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2;
93         if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P)
94                 prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P;
95         if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U)
96                 prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING;
97
98         return prot;
99 }
100
101
102 static void wiphy_info_supported_iftypes(struct wiphy_info_data *info,
103                                          struct nlattr *tb)
104 {
105         struct nlattr *nl_mode;
106         int i;
107
108         if (tb == NULL)
109                 return;
110
111         nla_for_each_nested(nl_mode, tb, i) {
112                 switch (nla_type(nl_mode)) {
113                 case NL80211_IFTYPE_AP:
114                         info->capa->flags |= WPA_DRIVER_FLAGS_AP;
115                         break;
116                 case NL80211_IFTYPE_MESH_POINT:
117                         info->capa->flags |= WPA_DRIVER_FLAGS_MESH;
118                         break;
119                 case NL80211_IFTYPE_ADHOC:
120                         info->capa->flags |= WPA_DRIVER_FLAGS_IBSS;
121                         break;
122                 case NL80211_IFTYPE_P2P_DEVICE:
123                         info->capa->flags |=
124                                 WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
125                         break;
126                 case NL80211_IFTYPE_P2P_GO:
127                         info->p2p_go_supported = 1;
128                         break;
129                 case NL80211_IFTYPE_P2P_CLIENT:
130                         info->p2p_client_supported = 1;
131                         break;
132                 case NL80211_IFTYPE_MONITOR:
133                         info->monitor_supported = 1;
134                         break;
135                 }
136         }
137 }
138
139
140 static int wiphy_info_iface_comb_process(struct wiphy_info_data *info,
141                                          struct nlattr *nl_combi)
142 {
143         struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB];
144         struct nlattr *tb_limit[NUM_NL80211_IFACE_LIMIT];
145         struct nlattr *nl_limit, *nl_mode;
146         int err, rem_limit, rem_mode;
147         int combination_has_p2p = 0, combination_has_mgd = 0;
148         static struct nla_policy
149         iface_combination_policy[NUM_NL80211_IFACE_COMB] = {
150                 [NL80211_IFACE_COMB_LIMITS] = { .type = NLA_NESTED },
151                 [NL80211_IFACE_COMB_MAXNUM] = { .type = NLA_U32 },
152                 [NL80211_IFACE_COMB_STA_AP_BI_MATCH] = { .type = NLA_FLAG },
153                 [NL80211_IFACE_COMB_NUM_CHANNELS] = { .type = NLA_U32 },
154                 [NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS] = { .type = NLA_U32 },
155         },
156         iface_limit_policy[NUM_NL80211_IFACE_LIMIT] = {
157                 [NL80211_IFACE_LIMIT_TYPES] = { .type = NLA_NESTED },
158                 [NL80211_IFACE_LIMIT_MAX] = { .type = NLA_U32 },
159         };
160
161         err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB,
162                                nl_combi, iface_combination_policy);
163         if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] ||
164             !tb_comb[NL80211_IFACE_COMB_MAXNUM] ||
165             !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS])
166                 return 0; /* broken combination */
167
168         if (tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS])
169                 info->capa->flags |= WPA_DRIVER_FLAGS_RADAR;
170
171         nla_for_each_nested(nl_limit, tb_comb[NL80211_IFACE_COMB_LIMITS],
172                             rem_limit) {
173                 err = nla_parse_nested(tb_limit, MAX_NL80211_IFACE_LIMIT,
174                                        nl_limit, iface_limit_policy);
175                 if (err || !tb_limit[NL80211_IFACE_LIMIT_TYPES])
176                         return 0; /* broken combination */
177
178                 nla_for_each_nested(nl_mode,
179                                     tb_limit[NL80211_IFACE_LIMIT_TYPES],
180                                     rem_mode) {
181                         int ift = nla_type(nl_mode);
182                         if (ift == NL80211_IFTYPE_P2P_GO ||
183                             ift == NL80211_IFTYPE_P2P_CLIENT)
184                                 combination_has_p2p = 1;
185                         if (ift == NL80211_IFTYPE_STATION)
186                                 combination_has_mgd = 1;
187                 }
188                 if (combination_has_p2p && combination_has_mgd)
189                         break;
190         }
191
192         if (combination_has_p2p && combination_has_mgd) {
193                 unsigned int num_channels =
194                         nla_get_u32(tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]);
195
196                 info->p2p_concurrent = 1;
197                 if (info->num_multichan_concurrent < num_channels)
198                         info->num_multichan_concurrent = num_channels;
199         }
200
201         return 0;
202 }
203
204
205 static void wiphy_info_iface_comb(struct wiphy_info_data *info,
206                                   struct nlattr *tb)
207 {
208         struct nlattr *nl_combi;
209         int rem_combi;
210
211         if (tb == NULL)
212                 return;
213
214         nla_for_each_nested(nl_combi, tb, rem_combi) {
215                 if (wiphy_info_iface_comb_process(info, nl_combi) > 0)
216                         break;
217         }
218 }
219
220
221 static void wiphy_info_supp_cmds(struct wiphy_info_data *info,
222                                  struct nlattr *tb)
223 {
224         struct nlattr *nl_cmd;
225         int i;
226
227         if (tb == NULL)
228                 return;
229
230         nla_for_each_nested(nl_cmd, tb, i) {
231                 switch (nla_get_u32(nl_cmd)) {
232                 case NL80211_CMD_AUTHENTICATE:
233                         info->auth_supported = 1;
234                         break;
235                 case NL80211_CMD_CONNECT:
236                         info->connect_supported = 1;
237                         break;
238                 case NL80211_CMD_START_SCHED_SCAN:
239                         info->capa->sched_scan_supported = 1;
240                         break;
241                 case NL80211_CMD_PROBE_CLIENT:
242                         info->poll_command_supported = 1;
243                         break;
244                 case NL80211_CMD_CHANNEL_SWITCH:
245                         info->channel_switch_supported = 1;
246                         break;
247                 case NL80211_CMD_SET_QOS_MAP:
248                         info->set_qos_map_supported = 1;
249                         break;
250                 }
251         }
252 }
253
254
255 static void wiphy_info_cipher_suites(struct wiphy_info_data *info,
256                                      struct nlattr *tb)
257 {
258         int i, num;
259         u32 *ciphers;
260
261         if (tb == NULL)
262                 return;
263
264         num = nla_len(tb) / sizeof(u32);
265         ciphers = nla_data(tb);
266         for (i = 0; i < num; i++) {
267                 u32 c = ciphers[i];
268
269                 wpa_printf(MSG_DEBUG, "nl80211: Supported cipher %02x-%02x-%02x:%d",
270                            c >> 24, (c >> 16) & 0xff,
271                            (c >> 8) & 0xff, c & 0xff);
272                 switch (c) {
273                 case WLAN_CIPHER_SUITE_CCMP_256:
274                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP_256;
275                         break;
276                 case WLAN_CIPHER_SUITE_GCMP_256:
277                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_GCMP_256;
278                         break;
279                 case WLAN_CIPHER_SUITE_CCMP:
280                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP;
281                         break;
282                 case WLAN_CIPHER_SUITE_GCMP:
283                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_GCMP;
284                         break;
285                 case WLAN_CIPHER_SUITE_TKIP:
286                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_TKIP;
287                         break;
288                 case WLAN_CIPHER_SUITE_WEP104:
289                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP104;
290                         break;
291                 case WLAN_CIPHER_SUITE_WEP40:
292                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP40;
293                         break;
294                 case WLAN_CIPHER_SUITE_AES_CMAC:
295                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP;
296                         break;
297                 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
298                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_GMAC_128;
299                         break;
300                 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
301                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_GMAC_256;
302                         break;
303                 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
304                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_CMAC_256;
305                         break;
306                 case WLAN_CIPHER_SUITE_NO_GROUP_ADDR:
307                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_GTK_NOT_USED;
308                         break;
309                 }
310         }
311 }
312
313
314 static void wiphy_info_max_roc(struct wpa_driver_capa *capa,
315                                struct nlattr *tb)
316 {
317         if (tb)
318                 capa->max_remain_on_chan = nla_get_u32(tb);
319 }
320
321
322 static void wiphy_info_tdls(struct wpa_driver_capa *capa, struct nlattr *tdls,
323                             struct nlattr *ext_setup)
324 {
325         if (tdls == NULL)
326                 return;
327
328         wpa_printf(MSG_DEBUG, "nl80211: TDLS supported");
329         capa->flags |= WPA_DRIVER_FLAGS_TDLS_SUPPORT;
330
331         if (ext_setup) {
332                 wpa_printf(MSG_DEBUG, "nl80211: TDLS external setup");
333                 capa->flags |= WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP;
334         }
335 }
336
337
338 static int ext_feature_isset(const u8 *ext_features, int ext_features_len,
339                              enum nl80211_ext_feature_index ftidx)
340 {
341         u8 ft_byte;
342
343         if ((int) ftidx / 8 >= ext_features_len)
344                 return 0;
345
346         ft_byte = ext_features[ftidx / 8];
347         return (ft_byte & BIT(ftidx % 8)) != 0;
348 }
349
350
351 static void wiphy_info_ext_feature_flags(struct wiphy_info_data *info,
352                                          struct nlattr *tb)
353 {
354         struct wpa_driver_capa *capa = info->capa;
355
356         if (tb == NULL)
357                 return;
358
359         if (ext_feature_isset(nla_data(tb), nla_len(tb),
360                               NL80211_EXT_FEATURE_VHT_IBSS))
361                 capa->flags |= WPA_DRIVER_FLAGS_VHT_IBSS;
362 }
363
364
365 static void wiphy_info_feature_flags(struct wiphy_info_data *info,
366                                      struct nlattr *tb)
367 {
368         u32 flags;
369         struct wpa_driver_capa *capa = info->capa;
370
371         if (tb == NULL)
372                 return;
373
374         flags = nla_get_u32(tb);
375
376         if (flags & NL80211_FEATURE_SK_TX_STATUS)
377                 info->data_tx_status = 1;
378
379         if (flags & NL80211_FEATURE_INACTIVITY_TIMER)
380                 capa->flags |= WPA_DRIVER_FLAGS_INACTIVITY_TIMER;
381
382         if (flags & NL80211_FEATURE_SAE)
383                 capa->flags |= WPA_DRIVER_FLAGS_SAE;
384
385         if (flags & NL80211_FEATURE_NEED_OBSS_SCAN)
386                 capa->flags |= WPA_DRIVER_FLAGS_OBSS_SCAN;
387
388         if (flags & NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE)
389                 capa->flags |= WPA_DRIVER_FLAGS_HT_2040_COEX;
390
391         if (flags & NL80211_FEATURE_TDLS_CHANNEL_SWITCH) {
392                 wpa_printf(MSG_DEBUG, "nl80211: TDLS channel switch");
393                 capa->flags |= WPA_DRIVER_FLAGS_TDLS_CHANNEL_SWITCH;
394         }
395
396         if (flags & NL80211_FEATURE_P2P_GO_CTWIN)
397                 info->p2p_go_ctwindow_supported = 1;
398
399         if (flags & NL80211_FEATURE_LOW_PRIORITY_SCAN)
400                 info->have_low_prio_scan = 1;
401
402         if (flags & NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR)
403                 info->mac_addr_rand_scan_supported = 1;
404
405         if (flags & NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR)
406                 info->mac_addr_rand_sched_scan_supported = 1;
407
408         if (flags & NL80211_FEATURE_STATIC_SMPS)
409                 capa->smps_modes |= WPA_DRIVER_SMPS_MODE_STATIC;
410
411         if (flags & NL80211_FEATURE_DYNAMIC_SMPS)
412                 capa->smps_modes |= WPA_DRIVER_SMPS_MODE_DYNAMIC;
413
414         if (flags & NL80211_FEATURE_SUPPORTS_WMM_ADMISSION)
415                 info->wmm_ac_supported = 1;
416
417         if (flags & NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES)
418                 capa->rrm_flags |= WPA_DRIVER_FLAGS_DS_PARAM_SET_IE_IN_PROBES;
419
420         if (flags & NL80211_FEATURE_WFA_TPC_IE_IN_PROBES)
421                 capa->rrm_flags |= WPA_DRIVER_FLAGS_WFA_TPC_IE_IN_PROBES;
422
423         if (flags & NL80211_FEATURE_QUIET)
424                 capa->rrm_flags |= WPA_DRIVER_FLAGS_QUIET;
425
426         if (flags & NL80211_FEATURE_TX_POWER_INSERTION)
427                 capa->rrm_flags |= WPA_DRIVER_FLAGS_TX_POWER_INSERTION;
428
429         if (flags & NL80211_FEATURE_HT_IBSS)
430                 capa->flags |= WPA_DRIVER_FLAGS_HT_IBSS;
431 }
432
433
434 static void wiphy_info_probe_resp_offload(struct wpa_driver_capa *capa,
435                                           struct nlattr *tb)
436 {
437         u32 protocols;
438
439         if (tb == NULL)
440                 return;
441
442         protocols = nla_get_u32(tb);
443         wpa_printf(MSG_DEBUG, "nl80211: Supports Probe Response offload in AP "
444                    "mode");
445         capa->flags |= WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD;
446         capa->probe_resp_offloads = probe_resp_offload_support(protocols);
447 }
448
449
450 static void wiphy_info_wowlan_triggers(struct wpa_driver_capa *capa,
451                                        struct nlattr *tb)
452 {
453         struct nlattr *triggers[MAX_NL80211_WOWLAN_TRIG + 1];
454
455         if (tb == NULL)
456                 return;
457
458         if (nla_parse_nested(triggers, MAX_NL80211_WOWLAN_TRIG,
459                              tb, NULL))
460                 return;
461
462         if (triggers[NL80211_WOWLAN_TRIG_ANY])
463                 capa->wowlan_triggers.any = 1;
464         if (triggers[NL80211_WOWLAN_TRIG_DISCONNECT])
465                 capa->wowlan_triggers.disconnect = 1;
466         if (triggers[NL80211_WOWLAN_TRIG_MAGIC_PKT])
467                 capa->wowlan_triggers.magic_pkt = 1;
468         if (triggers[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE])
469                 capa->wowlan_triggers.gtk_rekey_failure = 1;
470         if (triggers[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST])
471                 capa->wowlan_triggers.eap_identity_req = 1;
472         if (triggers[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE])
473                 capa->wowlan_triggers.four_way_handshake = 1;
474         if (triggers[NL80211_WOWLAN_TRIG_RFKILL_RELEASE])
475                 capa->wowlan_triggers.rfkill_release = 1;
476 }
477
478
479 static int wiphy_info_handler(struct nl_msg *msg, void *arg)
480 {
481         struct nlattr *tb[NL80211_ATTR_MAX + 1];
482         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
483         struct wiphy_info_data *info = arg;
484         struct wpa_driver_capa *capa = info->capa;
485         struct wpa_driver_nl80211_data *drv = info->drv;
486
487         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
488                   genlmsg_attrlen(gnlh, 0), NULL);
489
490         if (tb[NL80211_ATTR_WIPHY_NAME])
491                 os_strlcpy(drv->phyname,
492                            nla_get_string(tb[NL80211_ATTR_WIPHY_NAME]),
493                            sizeof(drv->phyname));
494         if (tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])
495                 capa->max_scan_ssids =
496                         nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]);
497
498         if (tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS])
499                 capa->max_sched_scan_ssids =
500                         nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS]);
501
502         if (tb[NL80211_ATTR_MAX_MATCH_SETS])
503                 capa->max_match_sets =
504                         nla_get_u8(tb[NL80211_ATTR_MAX_MATCH_SETS]);
505
506         if (tb[NL80211_ATTR_MAC_ACL_MAX])
507                 capa->max_acl_mac_addrs =
508                         nla_get_u8(tb[NL80211_ATTR_MAC_ACL_MAX]);
509
510         wiphy_info_supported_iftypes(info, tb[NL80211_ATTR_SUPPORTED_IFTYPES]);
511         wiphy_info_iface_comb(info, tb[NL80211_ATTR_INTERFACE_COMBINATIONS]);
512         wiphy_info_supp_cmds(info, tb[NL80211_ATTR_SUPPORTED_COMMANDS]);
513         wiphy_info_cipher_suites(info, tb[NL80211_ATTR_CIPHER_SUITES]);
514
515         if (tb[NL80211_ATTR_OFFCHANNEL_TX_OK]) {
516                 wpa_printf(MSG_DEBUG, "nl80211: Using driver-based "
517                            "off-channel TX");
518                 capa->flags |= WPA_DRIVER_FLAGS_OFFCHANNEL_TX;
519         }
520
521         if (tb[NL80211_ATTR_ROAM_SUPPORT]) {
522                 wpa_printf(MSG_DEBUG, "nl80211: Using driver-based roaming");
523                 capa->flags |= WPA_DRIVER_FLAGS_BSS_SELECTION;
524         }
525
526         wiphy_info_max_roc(capa,
527                            tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION]);
528
529         if (tb[NL80211_ATTR_SUPPORT_AP_UAPSD])
530                 capa->flags |= WPA_DRIVER_FLAGS_AP_UAPSD;
531
532         wiphy_info_tdls(capa, tb[NL80211_ATTR_TDLS_SUPPORT],
533                         tb[NL80211_ATTR_TDLS_EXTERNAL_SETUP]);
534
535         if (tb[NL80211_ATTR_DEVICE_AP_SME])
536                 info->device_ap_sme = 1;
537
538         wiphy_info_feature_flags(info, tb[NL80211_ATTR_FEATURE_FLAGS]);
539         wiphy_info_ext_feature_flags(info, tb[NL80211_ATTR_EXT_FEATURES]);
540         wiphy_info_probe_resp_offload(capa,
541                                       tb[NL80211_ATTR_PROBE_RESP_OFFLOAD]);
542
543         if (tb[NL80211_ATTR_EXT_CAPA] && tb[NL80211_ATTR_EXT_CAPA_MASK] &&
544             drv->extended_capa == NULL) {
545                 drv->extended_capa =
546                         os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
547                 if (drv->extended_capa) {
548                         os_memcpy(drv->extended_capa,
549                                   nla_data(tb[NL80211_ATTR_EXT_CAPA]),
550                                   nla_len(tb[NL80211_ATTR_EXT_CAPA]));
551                         drv->extended_capa_len =
552                                 nla_len(tb[NL80211_ATTR_EXT_CAPA]);
553                 }
554                 drv->extended_capa_mask =
555                         os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA_MASK]));
556                 if (drv->extended_capa_mask) {
557                         os_memcpy(drv->extended_capa_mask,
558                                   nla_data(tb[NL80211_ATTR_EXT_CAPA_MASK]),
559                                   nla_len(tb[NL80211_ATTR_EXT_CAPA_MASK]));
560                 } else {
561                         os_free(drv->extended_capa);
562                         drv->extended_capa = NULL;
563                         drv->extended_capa_len = 0;
564                 }
565         }
566
567         if (tb[NL80211_ATTR_VENDOR_DATA]) {
568                 struct nlattr *nl;
569                 int rem;
570
571                 nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_DATA], rem) {
572                         struct nl80211_vendor_cmd_info *vinfo;
573                         if (nla_len(nl) != sizeof(*vinfo)) {
574                                 wpa_printf(MSG_DEBUG, "nl80211: Unexpected vendor data info");
575                                 continue;
576                         }
577                         vinfo = nla_data(nl);
578                         if (vinfo->vendor_id == OUI_QCA) {
579                                 switch (vinfo->subcmd) {
580                                 case QCA_NL80211_VENDOR_SUBCMD_TEST:
581                                         drv->vendor_cmd_test_avail = 1;
582                                         break;
583 #ifdef CONFIG_DRIVER_NL80211_QCA
584                                 case QCA_NL80211_VENDOR_SUBCMD_ROAMING:
585                                         drv->roaming_vendor_cmd_avail = 1;
586                                         break;
587                                 case QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY:
588                                         drv->dfs_vendor_cmd_avail = 1;
589                                         break;
590                                 case QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES:
591                                         drv->get_features_vendor_cmd_avail = 1;
592                                         break;
593                                 case QCA_NL80211_VENDOR_SUBCMD_GET_PREFERRED_FREQ_LIST:
594                                         drv->get_pref_freq_list = 1;
595                                         break;
596                                 case QCA_NL80211_VENDOR_SUBCMD_SET_PROBABLE_OPER_CHANNEL:
597                                         drv->set_prob_oper_freq = 1;
598                                         break;
599                                 case QCA_NL80211_VENDOR_SUBCMD_DO_ACS:
600                                         drv->capa.flags |=
601                                                 WPA_DRIVER_FLAGS_ACS_OFFLOAD;
602                                         break;
603                                 case QCA_NL80211_VENDOR_SUBCMD_SETBAND:
604                                         drv->setband_vendor_cmd_avail = 1;
605                                         break;
606                                 case QCA_NL80211_VENDOR_SUBCMD_TRIGGER_SCAN:
607                                         drv->scan_vendor_cmd_avail = 1;
608                                         break;
609 #endif /* CONFIG_DRIVER_NL80211_QCA */
610                                 }
611                         }
612
613                         wpa_printf(MSG_DEBUG, "nl80211: Supported vendor command: vendor_id=0x%x subcmd=%u",
614                                    vinfo->vendor_id, vinfo->subcmd);
615                 }
616         }
617
618         if (tb[NL80211_ATTR_VENDOR_EVENTS]) {
619                 struct nlattr *nl;
620                 int rem;
621
622                 nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_EVENTS], rem) {
623                         struct nl80211_vendor_cmd_info *vinfo;
624                         if (nla_len(nl) != sizeof(*vinfo)) {
625                                 wpa_printf(MSG_DEBUG, "nl80211: Unexpected vendor data info");
626                                 continue;
627                         }
628                         vinfo = nla_data(nl);
629                         wpa_printf(MSG_DEBUG, "nl80211: Supported vendor event: vendor_id=0x%x subcmd=%u",
630                                    vinfo->vendor_id, vinfo->subcmd);
631                 }
632         }
633
634         wiphy_info_wowlan_triggers(capa,
635                                    tb[NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED]);
636
637         if (tb[NL80211_ATTR_MAX_AP_ASSOC_STA])
638                 capa->max_stations =
639                         nla_get_u32(tb[NL80211_ATTR_MAX_AP_ASSOC_STA]);
640
641         if (tb[NL80211_ATTR_MAX_CSA_COUNTERS])
642                 capa->max_csa_counters =
643                         nla_get_u8(tb[NL80211_ATTR_MAX_CSA_COUNTERS]);
644
645         return NL_SKIP;
646 }
647
648
649 static int wpa_driver_nl80211_get_info(struct wpa_driver_nl80211_data *drv,
650                                        struct wiphy_info_data *info)
651 {
652         u32 feat;
653         struct nl_msg *msg;
654         int flags = 0;
655
656         os_memset(info, 0, sizeof(*info));
657         info->capa = &drv->capa;
658         info->drv = drv;
659
660         feat = get_nl80211_protocol_features(drv);
661         if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
662                 flags = NLM_F_DUMP;
663         msg = nl80211_cmd_msg(drv->first_bss, flags, NL80211_CMD_GET_WIPHY);
664         if (!msg || nla_put_flag(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP)) {
665                 nlmsg_free(msg);
666                 return -1;
667         }
668
669         if (send_and_recv_msgs(drv, msg, wiphy_info_handler, info))
670                 return -1;
671
672         if (info->auth_supported)
673                 drv->capa.flags |= WPA_DRIVER_FLAGS_SME;
674         else if (!info->connect_supported) {
675                 wpa_printf(MSG_INFO, "nl80211: Driver does not support "
676                            "authentication/association or connect commands");
677                 info->error = 1;
678         }
679
680         if (info->p2p_go_supported && info->p2p_client_supported)
681                 drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CAPABLE;
682         if (info->p2p_concurrent) {
683                 wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
684                            "interface (driver advertised support)");
685                 drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
686                 drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
687         }
688         if (info->num_multichan_concurrent > 1) {
689                 wpa_printf(MSG_DEBUG, "nl80211: Enable multi-channel "
690                            "concurrent (driver advertised support)");
691                 drv->capa.num_multichan_concurrent =
692                         info->num_multichan_concurrent;
693         }
694         if (drv->capa.flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)
695                 wpa_printf(MSG_DEBUG, "nl80211: use P2P_DEVICE support");
696
697         /* default to 5000 since early versions of mac80211 don't set it */
698         if (!drv->capa.max_remain_on_chan)
699                 drv->capa.max_remain_on_chan = 5000;
700
701         drv->capa.wmm_ac_supported = info->wmm_ac_supported;
702
703         drv->capa.mac_addr_rand_sched_scan_supported =
704                 info->mac_addr_rand_sched_scan_supported;
705         drv->capa.mac_addr_rand_scan_supported =
706                 info->mac_addr_rand_scan_supported;
707
708         if (info->channel_switch_supported) {
709                 drv->capa.flags |= WPA_DRIVER_FLAGS_AP_CSA;
710                 if (!drv->capa.max_csa_counters)
711                         drv->capa.max_csa_counters = 1;
712         }
713
714         return 0;
715 }
716
717
718 #ifdef CONFIG_DRIVER_NL80211_QCA
719
720 static int dfs_info_handler(struct nl_msg *msg, void *arg)
721 {
722         struct nlattr *tb[NL80211_ATTR_MAX + 1];
723         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
724         int *dfs_capability_ptr = arg;
725
726         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
727                   genlmsg_attrlen(gnlh, 0), NULL);
728
729         if (tb[NL80211_ATTR_VENDOR_DATA]) {
730                 struct nlattr *nl_vend = tb[NL80211_ATTR_VENDOR_DATA];
731                 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_MAX + 1];
732
733                 nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_MAX,
734                           nla_data(nl_vend), nla_len(nl_vend), NULL);
735
736                 if (tb_vendor[QCA_WLAN_VENDOR_ATTR_DFS]) {
737                         u32 val;
738                         val = nla_get_u32(tb_vendor[QCA_WLAN_VENDOR_ATTR_DFS]);
739                         wpa_printf(MSG_DEBUG, "nl80211: DFS offload capability: %u",
740                                    val);
741                         *dfs_capability_ptr = val;
742                 }
743         }
744
745         return NL_SKIP;
746 }
747
748
749 static void qca_nl80211_check_dfs_capa(struct wpa_driver_nl80211_data *drv)
750 {
751         struct nl_msg *msg;
752         int dfs_capability = 0;
753         int ret;
754
755         if (!drv->dfs_vendor_cmd_avail)
756                 return;
757
758         if (!(msg = nl80211_drv_msg(drv, 0, NL80211_CMD_VENDOR)) ||
759             nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
760             nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
761                         QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY)) {
762                 nlmsg_free(msg);
763                 return;
764         }
765
766         ret = send_and_recv_msgs(drv, msg, dfs_info_handler, &dfs_capability);
767         if (!ret && dfs_capability)
768                 drv->capa.flags |= WPA_DRIVER_FLAGS_DFS_OFFLOAD;
769 }
770
771
772 struct features_info {
773         u8 *flags;
774         size_t flags_len;
775         struct wpa_driver_capa *capa;
776 };
777
778
779 static int features_info_handler(struct nl_msg *msg, void *arg)
780 {
781         struct nlattr *tb[NL80211_ATTR_MAX + 1];
782         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
783         struct features_info *info = arg;
784         struct nlattr *nl_vend, *attr;
785
786         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
787                   genlmsg_attrlen(gnlh, 0), NULL);
788
789         nl_vend = tb[NL80211_ATTR_VENDOR_DATA];
790         if (nl_vend) {
791                 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_MAX + 1];
792
793                 nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_MAX,
794                           nla_data(nl_vend), nla_len(nl_vend), NULL);
795
796                 attr = tb_vendor[QCA_WLAN_VENDOR_ATTR_FEATURE_FLAGS];
797                 if (attr) {
798                         info->flags = nla_data(attr);
799                         info->flags_len = nla_len(attr);
800                 }
801                 attr = tb_vendor[QCA_WLAN_VENDOR_ATTR_CONCURRENCY_CAPA];
802                 if (attr)
803                         info->capa->conc_capab = nla_get_u32(attr);
804
805                 attr = tb_vendor[
806                         QCA_WLAN_VENDOR_ATTR_MAX_CONCURRENT_CHANNELS_2_4_BAND];
807                 if (attr)
808                         info->capa->max_conc_chan_2_4 = nla_get_u32(attr);
809
810                 attr = tb_vendor[
811                         QCA_WLAN_VENDOR_ATTR_MAX_CONCURRENT_CHANNELS_5_0_BAND];
812                 if (attr)
813                         info->capa->max_conc_chan_5_0 = nla_get_u32(attr);
814         }
815
816         return NL_SKIP;
817 }
818
819
820 static int check_feature(enum qca_wlan_vendor_features feature,
821                          struct features_info *info)
822 {
823         size_t idx = feature / 8;
824
825         return (idx < info->flags_len) &&
826                 (info->flags[idx] & BIT(feature % 8));
827 }
828
829
830 static void qca_nl80211_get_features(struct wpa_driver_nl80211_data *drv)
831 {
832         struct nl_msg *msg;
833         struct features_info info;
834         int ret;
835
836         if (!drv->get_features_vendor_cmd_avail)
837                 return;
838
839         if (!(msg = nl80211_drv_msg(drv, 0, NL80211_CMD_VENDOR)) ||
840             nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
841             nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
842                         QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES)) {
843                 nlmsg_free(msg);
844                 return;
845         }
846
847         os_memset(&info, 0, sizeof(info));
848         info.capa = &drv->capa;
849         ret = send_and_recv_msgs(drv, msg, features_info_handler, &info);
850         if (ret || !info.flags)
851                 return;
852
853         if (check_feature(QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD, &info))
854                 drv->capa.flags |= WPA_DRIVER_FLAGS_KEY_MGMT_OFFLOAD;
855
856         if (check_feature(QCA_WLAN_VENDOR_FEATURE_SUPPORT_HW_MODE_ANY, &info))
857                 drv->capa.flags |= WPA_DRIVER_FLAGS_SUPPORT_HW_MODE_ANY;
858
859         if (check_feature(QCA_WLAN_VENDOR_FEATURE_OFFCHANNEL_SIMULTANEOUS,
860                           &info))
861                 drv->capa.flags |= WPA_DRIVER_FLAGS_OFFCHANNEL_SIMULTANEOUS;
862 }
863
864 #endif /* CONFIG_DRIVER_NL80211_QCA */
865
866
867 int wpa_driver_nl80211_capa(struct wpa_driver_nl80211_data *drv)
868 {
869         struct wiphy_info_data info;
870         if (wpa_driver_nl80211_get_info(drv, &info))
871                 return -1;
872
873         if (info.error)
874                 return -1;
875
876         drv->has_capability = 1;
877         drv->capa.key_mgmt = WPA_DRIVER_CAPA_KEY_MGMT_WPA |
878                 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
879                 WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
880                 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK |
881                 WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B |
882                 WPA_DRIVER_CAPA_KEY_MGMT_SUITE_B_192;
883         drv->capa.auth = WPA_DRIVER_AUTH_OPEN |
884                 WPA_DRIVER_AUTH_SHARED |
885                 WPA_DRIVER_AUTH_LEAP;
886
887         drv->capa.flags |= WPA_DRIVER_FLAGS_SANE_ERROR_CODES;
888         drv->capa.flags |= WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE;
889         drv->capa.flags |= WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
890
891         /*
892          * As all cfg80211 drivers must support cases where the AP interface is
893          * removed without the knowledge of wpa_supplicant/hostapd, e.g., in
894          * case that the user space daemon has crashed, they must be able to
895          * cleanup all stations and key entries in the AP tear down flow. Thus,
896          * this flag can/should always be set for cfg80211 drivers.
897          */
898         drv->capa.flags |= WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT;
899
900         if (!info.device_ap_sme) {
901                 drv->capa.flags |= WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS;
902
903                 /*
904                  * No AP SME is currently assumed to also indicate no AP MLME
905                  * in the driver/firmware.
906                  */
907                 drv->capa.flags |= WPA_DRIVER_FLAGS_AP_MLME;
908         }
909
910         drv->device_ap_sme = info.device_ap_sme;
911         drv->poll_command_supported = info.poll_command_supported;
912         drv->data_tx_status = info.data_tx_status;
913         drv->p2p_go_ctwindow_supported = info.p2p_go_ctwindow_supported;
914         if (info.set_qos_map_supported)
915                 drv->capa.flags |= WPA_DRIVER_FLAGS_QOS_MAPPING;
916         drv->have_low_prio_scan = info.have_low_prio_scan;
917
918         /*
919          * If poll command and tx status are supported, mac80211 is new enough
920          * to have everything we need to not need monitor interfaces.
921          */
922         drv->use_monitor = !info.poll_command_supported || !info.data_tx_status;
923
924         if (drv->device_ap_sme && drv->use_monitor) {
925                 /*
926                  * Non-mac80211 drivers may not support monitor interface.
927                  * Make sure we do not get stuck with incorrect capability here
928                  * by explicitly testing this.
929                  */
930                 if (!info.monitor_supported) {
931                         wpa_printf(MSG_DEBUG, "nl80211: Disable use_monitor "
932                                    "with device_ap_sme since no monitor mode "
933                                    "support detected");
934                         drv->use_monitor = 0;
935                 }
936         }
937
938         /*
939          * If we aren't going to use monitor interfaces, but the
940          * driver doesn't support data TX status, we won't get TX
941          * status for EAPOL frames.
942          */
943         if (!drv->use_monitor && !info.data_tx_status)
944                 drv->capa.flags &= ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
945
946 #ifdef CONFIG_DRIVER_NL80211_QCA
947         qca_nl80211_check_dfs_capa(drv);
948         qca_nl80211_get_features(drv);
949
950         /*
951          * To enable offchannel simultaneous support in wpa_supplicant, the
952          * underlying driver needs to support the same along with offchannel TX.
953          * Offchannel TX support is needed since remain_on_channel and
954          * action_tx use some common data structures and hence cannot be
955          * scheduled simultaneously.
956          */
957         if (!(drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX))
958                 drv->capa.flags &= ~WPA_DRIVER_FLAGS_OFFCHANNEL_SIMULTANEOUS;
959 #endif /* CONFIG_DRIVER_NL80211_QCA */
960
961         return 0;
962 }
963
964
965 struct phy_info_arg {
966         u16 *num_modes;
967         struct hostapd_hw_modes *modes;
968         int last_mode, last_chan_idx;
969         int failed;
970 };
971
972 static void phy_info_ht_capa(struct hostapd_hw_modes *mode, struct nlattr *capa,
973                              struct nlattr *ampdu_factor,
974                              struct nlattr *ampdu_density,
975                              struct nlattr *mcs_set)
976 {
977         if (capa)
978                 mode->ht_capab = nla_get_u16(capa);
979
980         if (ampdu_factor)
981                 mode->a_mpdu_params |= nla_get_u8(ampdu_factor) & 0x03;
982
983         if (ampdu_density)
984                 mode->a_mpdu_params |= nla_get_u8(ampdu_density) << 2;
985
986         if (mcs_set && nla_len(mcs_set) >= 16) {
987                 u8 *mcs;
988                 mcs = nla_data(mcs_set);
989                 os_memcpy(mode->mcs_set, mcs, 16);
990         }
991 }
992
993
994 static void phy_info_vht_capa(struct hostapd_hw_modes *mode,
995                               struct nlattr *capa,
996                               struct nlattr *mcs_set)
997 {
998         if (capa)
999                 mode->vht_capab = nla_get_u32(capa);
1000
1001         if (mcs_set && nla_len(mcs_set) >= 8) {
1002                 u8 *mcs;
1003                 mcs = nla_data(mcs_set);
1004                 os_memcpy(mode->vht_mcs_set, mcs, 8);
1005         }
1006 }
1007
1008
1009 static void phy_info_freq(struct hostapd_hw_modes *mode,
1010                           struct hostapd_channel_data *chan,
1011                           struct nlattr *tb_freq[])
1012 {
1013         u8 channel;
1014         chan->freq = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_FREQ]);
1015         chan->flag = 0;
1016         chan->dfs_cac_ms = 0;
1017         if (ieee80211_freq_to_chan(chan->freq, &channel) != NUM_HOSTAPD_MODES)
1018                 chan->chan = channel;
1019
1020         if (tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
1021                 chan->flag |= HOSTAPD_CHAN_DISABLED;
1022         if (tb_freq[NL80211_FREQUENCY_ATTR_NO_IR])
1023                 chan->flag |= HOSTAPD_CHAN_NO_IR;
1024         if (tb_freq[NL80211_FREQUENCY_ATTR_RADAR])
1025                 chan->flag |= HOSTAPD_CHAN_RADAR;
1026         if (tb_freq[NL80211_FREQUENCY_ATTR_INDOOR_ONLY])
1027                 chan->flag |= HOSTAPD_CHAN_INDOOR_ONLY;
1028         if (tb_freq[NL80211_FREQUENCY_ATTR_GO_CONCURRENT])
1029                 chan->flag |= HOSTAPD_CHAN_GO_CONCURRENT;
1030
1031         if (tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]) {
1032                 enum nl80211_dfs_state state =
1033                         nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]);
1034
1035                 switch (state) {
1036                 case NL80211_DFS_USABLE:
1037                         chan->flag |= HOSTAPD_CHAN_DFS_USABLE;
1038                         break;
1039                 case NL80211_DFS_AVAILABLE:
1040                         chan->flag |= HOSTAPD_CHAN_DFS_AVAILABLE;
1041                         break;
1042                 case NL80211_DFS_UNAVAILABLE:
1043                         chan->flag |= HOSTAPD_CHAN_DFS_UNAVAILABLE;
1044                         break;
1045                 }
1046         }
1047
1048         if (tb_freq[NL80211_FREQUENCY_ATTR_DFS_CAC_TIME]) {
1049                 chan->dfs_cac_ms = nla_get_u32(
1050                         tb_freq[NL80211_FREQUENCY_ATTR_DFS_CAC_TIME]);
1051         }
1052 }
1053
1054
1055 static int phy_info_freqs(struct phy_info_arg *phy_info,
1056                           struct hostapd_hw_modes *mode, struct nlattr *tb)
1057 {
1058         static struct nla_policy freq_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
1059                 [NL80211_FREQUENCY_ATTR_FREQ] = { .type = NLA_U32 },
1060                 [NL80211_FREQUENCY_ATTR_DISABLED] = { .type = NLA_FLAG },
1061                 [NL80211_FREQUENCY_ATTR_NO_IR] = { .type = NLA_FLAG },
1062                 [NL80211_FREQUENCY_ATTR_RADAR] = { .type = NLA_FLAG },
1063                 [NL80211_FREQUENCY_ATTR_MAX_TX_POWER] = { .type = NLA_U32 },
1064                 [NL80211_FREQUENCY_ATTR_DFS_STATE] = { .type = NLA_U32 },
1065         };
1066         int new_channels = 0;
1067         struct hostapd_channel_data *channel;
1068         struct nlattr *tb_freq[NL80211_FREQUENCY_ATTR_MAX + 1];
1069         struct nlattr *nl_freq;
1070         int rem_freq, idx;
1071
1072         if (tb == NULL)
1073                 return NL_OK;
1074
1075         nla_for_each_nested(nl_freq, tb, rem_freq) {
1076                 nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
1077                           nla_data(nl_freq), nla_len(nl_freq), freq_policy);
1078                 if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
1079                         continue;
1080                 new_channels++;
1081         }
1082
1083         channel = os_realloc_array(mode->channels,
1084                                    mode->num_channels + new_channels,
1085                                    sizeof(struct hostapd_channel_data));
1086         if (!channel)
1087                 return NL_STOP;
1088
1089         mode->channels = channel;
1090         mode->num_channels += new_channels;
1091
1092         idx = phy_info->last_chan_idx;
1093
1094         nla_for_each_nested(nl_freq, tb, rem_freq) {
1095                 nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
1096                           nla_data(nl_freq), nla_len(nl_freq), freq_policy);
1097                 if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
1098                         continue;
1099                 phy_info_freq(mode, &mode->channels[idx], tb_freq);
1100                 idx++;
1101         }
1102         phy_info->last_chan_idx = idx;
1103
1104         return NL_OK;
1105 }
1106
1107
1108 static int phy_info_rates(struct hostapd_hw_modes *mode, struct nlattr *tb)
1109 {
1110         static struct nla_policy rate_policy[NL80211_BITRATE_ATTR_MAX + 1] = {
1111                 [NL80211_BITRATE_ATTR_RATE] = { .type = NLA_U32 },
1112                 [NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE] =
1113                 { .type = NLA_FLAG },
1114         };
1115         struct nlattr *tb_rate[NL80211_BITRATE_ATTR_MAX + 1];
1116         struct nlattr *nl_rate;
1117         int rem_rate, idx;
1118
1119         if (tb == NULL)
1120                 return NL_OK;
1121
1122         nla_for_each_nested(nl_rate, tb, rem_rate) {
1123                 nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
1124                           nla_data(nl_rate), nla_len(nl_rate),
1125                           rate_policy);
1126                 if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
1127                         continue;
1128                 mode->num_rates++;
1129         }
1130
1131         mode->rates = os_calloc(mode->num_rates, sizeof(int));
1132         if (!mode->rates)
1133                 return NL_STOP;
1134
1135         idx = 0;
1136
1137         nla_for_each_nested(nl_rate, tb, rem_rate) {
1138                 nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
1139                           nla_data(nl_rate), nla_len(nl_rate),
1140                           rate_policy);
1141                 if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
1142                         continue;
1143                 mode->rates[idx] = nla_get_u32(
1144                         tb_rate[NL80211_BITRATE_ATTR_RATE]);
1145                 idx++;
1146         }
1147
1148         return NL_OK;
1149 }
1150
1151
1152 static int phy_info_band(struct phy_info_arg *phy_info, struct nlattr *nl_band)
1153 {
1154         struct nlattr *tb_band[NL80211_BAND_ATTR_MAX + 1];
1155         struct hostapd_hw_modes *mode;
1156         int ret;
1157
1158         if (phy_info->last_mode != nl_band->nla_type) {
1159                 mode = os_realloc_array(phy_info->modes,
1160                                         *phy_info->num_modes + 1,
1161                                         sizeof(*mode));
1162                 if (!mode) {
1163                         phy_info->failed = 1;
1164                         return NL_STOP;
1165                 }
1166                 phy_info->modes = mode;
1167
1168                 mode = &phy_info->modes[*(phy_info->num_modes)];
1169                 os_memset(mode, 0, sizeof(*mode));
1170                 mode->mode = NUM_HOSTAPD_MODES;
1171                 mode->flags = HOSTAPD_MODE_FLAG_HT_INFO_KNOWN |
1172                         HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN;
1173
1174                 /*
1175                  * Unsupported VHT MCS stream is defined as value 3, so the VHT
1176                  * MCS RX/TX map must be initialized with 0xffff to mark all 8
1177                  * possible streams as unsupported. This will be overridden if
1178                  * driver advertises VHT support.
1179                  */
1180                 mode->vht_mcs_set[0] = 0xff;
1181                 mode->vht_mcs_set[1] = 0xff;
1182                 mode->vht_mcs_set[4] = 0xff;
1183                 mode->vht_mcs_set[5] = 0xff;
1184
1185                 *(phy_info->num_modes) += 1;
1186                 phy_info->last_mode = nl_band->nla_type;
1187                 phy_info->last_chan_idx = 0;
1188         } else
1189                 mode = &phy_info->modes[*(phy_info->num_modes) - 1];
1190
1191         nla_parse(tb_band, NL80211_BAND_ATTR_MAX, nla_data(nl_band),
1192                   nla_len(nl_band), NULL);
1193
1194         phy_info_ht_capa(mode, tb_band[NL80211_BAND_ATTR_HT_CAPA],
1195                          tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR],
1196                          tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY],
1197                          tb_band[NL80211_BAND_ATTR_HT_MCS_SET]);
1198         phy_info_vht_capa(mode, tb_band[NL80211_BAND_ATTR_VHT_CAPA],
1199                           tb_band[NL80211_BAND_ATTR_VHT_MCS_SET]);
1200         ret = phy_info_freqs(phy_info, mode, tb_band[NL80211_BAND_ATTR_FREQS]);
1201         if (ret == NL_OK)
1202                 ret = phy_info_rates(mode, tb_band[NL80211_BAND_ATTR_RATES]);
1203         if (ret != NL_OK) {
1204                 phy_info->failed = 1;
1205                 return ret;
1206         }
1207
1208         return NL_OK;
1209 }
1210
1211
1212 static int phy_info_handler(struct nl_msg *msg, void *arg)
1213 {
1214         struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
1215         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
1216         struct phy_info_arg *phy_info = arg;
1217         struct nlattr *nl_band;
1218         int rem_band;
1219
1220         nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
1221                   genlmsg_attrlen(gnlh, 0), NULL);
1222
1223         if (!tb_msg[NL80211_ATTR_WIPHY_BANDS])
1224                 return NL_SKIP;
1225
1226         nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band)
1227         {
1228                 int res = phy_info_band(phy_info, nl_band);
1229                 if (res != NL_OK)
1230                         return res;
1231         }
1232
1233         return NL_SKIP;
1234 }
1235
1236
1237 static struct hostapd_hw_modes *
1238 wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes,
1239                                      u16 *num_modes)
1240 {
1241         u16 m;
1242         struct hostapd_hw_modes *mode11g = NULL, *nmodes, *mode;
1243         int i, mode11g_idx = -1;
1244
1245         /* heuristic to set up modes */
1246         for (m = 0; m < *num_modes; m++) {
1247                 if (!modes[m].num_channels)
1248                         continue;
1249                 if (modes[m].channels[0].freq < 4000) {
1250                         modes[m].mode = HOSTAPD_MODE_IEEE80211B;
1251                         for (i = 0; i < modes[m].num_rates; i++) {
1252                                 if (modes[m].rates[i] > 200) {
1253                                         modes[m].mode = HOSTAPD_MODE_IEEE80211G;
1254                                         break;
1255                                 }
1256                         }
1257                 } else if (modes[m].channels[0].freq > 50000)
1258                         modes[m].mode = HOSTAPD_MODE_IEEE80211AD;
1259                 else
1260                         modes[m].mode = HOSTAPD_MODE_IEEE80211A;
1261         }
1262
1263         /* If only 802.11g mode is included, use it to construct matching
1264          * 802.11b mode data. */
1265
1266         for (m = 0; m < *num_modes; m++) {
1267                 if (modes[m].mode == HOSTAPD_MODE_IEEE80211B)
1268                         return modes; /* 802.11b already included */
1269                 if (modes[m].mode == HOSTAPD_MODE_IEEE80211G)
1270                         mode11g_idx = m;
1271         }
1272
1273         if (mode11g_idx < 0)
1274                 return modes; /* 2.4 GHz band not supported at all */
1275
1276         nmodes = os_realloc_array(modes, *num_modes + 1, sizeof(*nmodes));
1277         if (nmodes == NULL)
1278                 return modes; /* Could not add 802.11b mode */
1279
1280         mode = &nmodes[*num_modes];
1281         os_memset(mode, 0, sizeof(*mode));
1282         (*num_modes)++;
1283         modes = nmodes;
1284
1285         mode->mode = HOSTAPD_MODE_IEEE80211B;
1286
1287         mode11g = &modes[mode11g_idx];
1288         mode->num_channels = mode11g->num_channels;
1289         mode->channels = os_malloc(mode11g->num_channels *
1290                                    sizeof(struct hostapd_channel_data));
1291         if (mode->channels == NULL) {
1292                 (*num_modes)--;
1293                 return modes; /* Could not add 802.11b mode */
1294         }
1295         os_memcpy(mode->channels, mode11g->channels,
1296                   mode11g->num_channels * sizeof(struct hostapd_channel_data));
1297
1298         mode->num_rates = 0;
1299         mode->rates = os_malloc(4 * sizeof(int));
1300         if (mode->rates == NULL) {
1301                 os_free(mode->channels);
1302                 (*num_modes)--;
1303                 return modes; /* Could not add 802.11b mode */
1304         }
1305
1306         for (i = 0; i < mode11g->num_rates; i++) {
1307                 if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 &&
1308                     mode11g->rates[i] != 55 && mode11g->rates[i] != 110)
1309                         continue;
1310                 mode->rates[mode->num_rates] = mode11g->rates[i];
1311                 mode->num_rates++;
1312                 if (mode->num_rates == 4)
1313                         break;
1314         }
1315
1316         if (mode->num_rates == 0) {
1317                 os_free(mode->channels);
1318                 os_free(mode->rates);
1319                 (*num_modes)--;
1320                 return modes; /* No 802.11b rates */
1321         }
1322
1323         wpa_printf(MSG_DEBUG, "nl80211: Added 802.11b mode based on 802.11g "
1324                    "information");
1325
1326         return modes;
1327 }
1328
1329
1330 static void nl80211_set_ht40_mode(struct hostapd_hw_modes *mode, int start,
1331                                   int end)
1332 {
1333         int c;
1334
1335         for (c = 0; c < mode->num_channels; c++) {
1336                 struct hostapd_channel_data *chan = &mode->channels[c];
1337                 if (chan->freq - 10 >= start && chan->freq + 10 <= end)
1338                         chan->flag |= HOSTAPD_CHAN_HT40;
1339         }
1340 }
1341
1342
1343 static void nl80211_set_ht40_mode_sec(struct hostapd_hw_modes *mode, int start,
1344                                       int end)
1345 {
1346         int c;
1347
1348         for (c = 0; c < mode->num_channels; c++) {
1349                 struct hostapd_channel_data *chan = &mode->channels[c];
1350                 if (!(chan->flag & HOSTAPD_CHAN_HT40))
1351                         continue;
1352                 if (chan->freq - 30 >= start && chan->freq - 10 <= end)
1353                         chan->flag |= HOSTAPD_CHAN_HT40MINUS;
1354                 if (chan->freq + 10 >= start && chan->freq + 30 <= end)
1355                         chan->flag |= HOSTAPD_CHAN_HT40PLUS;
1356         }
1357 }
1358
1359
1360 static void nl80211_reg_rule_max_eirp(u32 start, u32 end, u32 max_eirp,
1361                                       struct phy_info_arg *results)
1362 {
1363         u16 m;
1364
1365         for (m = 0; m < *results->num_modes; m++) {
1366                 int c;
1367                 struct hostapd_hw_modes *mode = &results->modes[m];
1368
1369                 for (c = 0; c < mode->num_channels; c++) {
1370                         struct hostapd_channel_data *chan = &mode->channels[c];
1371                         if ((u32) chan->freq - 10 >= start &&
1372                             (u32) chan->freq + 10 <= end)
1373                                 chan->max_tx_power = max_eirp;
1374                 }
1375         }
1376 }
1377
1378
1379 static void nl80211_reg_rule_ht40(u32 start, u32 end,
1380                                   struct phy_info_arg *results)
1381 {
1382         u16 m;
1383
1384         for (m = 0; m < *results->num_modes; m++) {
1385                 if (!(results->modes[m].ht_capab &
1386                       HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
1387                         continue;
1388                 nl80211_set_ht40_mode(&results->modes[m], start, end);
1389         }
1390 }
1391
1392
1393 static void nl80211_reg_rule_sec(struct nlattr *tb[],
1394                                  struct phy_info_arg *results)
1395 {
1396         u32 start, end, max_bw;
1397         u16 m;
1398
1399         if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
1400             tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
1401             tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
1402                 return;
1403
1404         start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
1405         end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
1406         max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
1407
1408         if (max_bw < 20)
1409                 return;
1410
1411         for (m = 0; m < *results->num_modes; m++) {
1412                 if (!(results->modes[m].ht_capab &
1413                       HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
1414                         continue;
1415                 nl80211_set_ht40_mode_sec(&results->modes[m], start, end);
1416         }
1417 }
1418
1419
1420 static void nl80211_set_vht_mode(struct hostapd_hw_modes *mode, int start,
1421                                  int end, int max_bw)
1422 {
1423         int c;
1424
1425         for (c = 0; c < mode->num_channels; c++) {
1426                 struct hostapd_channel_data *chan = &mode->channels[c];
1427                 if (chan->freq - 10 >= start && chan->freq + 70 <= end)
1428                         chan->flag |= HOSTAPD_CHAN_VHT_10_70;
1429
1430                 if (chan->freq - 30 >= start && chan->freq + 50 <= end)
1431                         chan->flag |= HOSTAPD_CHAN_VHT_30_50;
1432
1433                 if (chan->freq - 50 >= start && chan->freq + 30 <= end)
1434                         chan->flag |= HOSTAPD_CHAN_VHT_50_30;
1435
1436                 if (chan->freq - 70 >= start && chan->freq + 10 <= end)
1437                         chan->flag |= HOSTAPD_CHAN_VHT_70_10;
1438
1439                 if (max_bw >= 160) {
1440                         if (chan->freq - 10 >= start && chan->freq + 150 <= end)
1441                                 chan->flag |= HOSTAPD_CHAN_VHT_10_150;
1442
1443                         if (chan->freq - 30 >= start && chan->freq + 130 <= end)
1444                                 chan->flag |= HOSTAPD_CHAN_VHT_30_130;
1445
1446                         if (chan->freq - 50 >= start && chan->freq + 110 <= end)
1447                                 chan->flag |= HOSTAPD_CHAN_VHT_50_110;
1448
1449                         if (chan->freq - 70 >= start && chan->freq + 90 <= end)
1450                                 chan->flag |= HOSTAPD_CHAN_VHT_70_90;
1451
1452                         if (chan->freq - 90 >= start && chan->freq + 70 <= end)
1453                                 chan->flag |= HOSTAPD_CHAN_VHT_90_70;
1454
1455                         if (chan->freq - 110 >= start && chan->freq + 50 <= end)
1456                                 chan->flag |= HOSTAPD_CHAN_VHT_110_50;
1457
1458                         if (chan->freq - 130 >= start && chan->freq + 30 <= end)
1459                                 chan->flag |= HOSTAPD_CHAN_VHT_130_30;
1460
1461                         if (chan->freq - 150 >= start && chan->freq + 10 <= end)
1462                                 chan->flag |= HOSTAPD_CHAN_VHT_150_10;
1463                 }
1464         }
1465 }
1466
1467
1468 static void nl80211_reg_rule_vht(struct nlattr *tb[],
1469                                  struct phy_info_arg *results)
1470 {
1471         u32 start, end, max_bw;
1472         u16 m;
1473
1474         if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
1475             tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
1476             tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
1477                 return;
1478
1479         start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
1480         end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
1481         max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
1482
1483         if (max_bw < 80)
1484                 return;
1485
1486         for (m = 0; m < *results->num_modes; m++) {
1487                 if (!(results->modes[m].ht_capab &
1488                       HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
1489                         continue;
1490                 /* TODO: use a real VHT support indication */
1491                 if (!results->modes[m].vht_capab)
1492                         continue;
1493
1494                 nl80211_set_vht_mode(&results->modes[m], start, end, max_bw);
1495         }
1496 }
1497
1498
1499 static const char * dfs_domain_name(enum nl80211_dfs_regions region)
1500 {
1501         switch (region) {
1502         case NL80211_DFS_UNSET:
1503                 return "DFS-UNSET";
1504         case NL80211_DFS_FCC:
1505                 return "DFS-FCC";
1506         case NL80211_DFS_ETSI:
1507                 return "DFS-ETSI";
1508         case NL80211_DFS_JP:
1509                 return "DFS-JP";
1510         default:
1511                 return "DFS-invalid";
1512         }
1513 }
1514
1515
1516 static int nl80211_get_reg(struct nl_msg *msg, void *arg)
1517 {
1518         struct phy_info_arg *results = arg;
1519         struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
1520         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
1521         struct nlattr *nl_rule;
1522         struct nlattr *tb_rule[NL80211_FREQUENCY_ATTR_MAX + 1];
1523         int rem_rule;
1524         static struct nla_policy reg_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
1525                 [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
1526                 [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
1527                 [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
1528                 [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
1529                 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
1530                 [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
1531         };
1532
1533         nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
1534                   genlmsg_attrlen(gnlh, 0), NULL);
1535         if (!tb_msg[NL80211_ATTR_REG_ALPHA2] ||
1536             !tb_msg[NL80211_ATTR_REG_RULES]) {
1537                 wpa_printf(MSG_DEBUG, "nl80211: No regulatory information "
1538                            "available");
1539                 return NL_SKIP;
1540         }
1541
1542         if (tb_msg[NL80211_ATTR_DFS_REGION]) {
1543                 enum nl80211_dfs_regions dfs_domain;
1544                 dfs_domain = nla_get_u8(tb_msg[NL80211_ATTR_DFS_REGION]);
1545                 wpa_printf(MSG_DEBUG, "nl80211: Regulatory information - country=%s (%s)",
1546                            (char *) nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]),
1547                            dfs_domain_name(dfs_domain));
1548         } else {
1549                 wpa_printf(MSG_DEBUG, "nl80211: Regulatory information - country=%s",
1550                            (char *) nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]));
1551         }
1552
1553         nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
1554         {
1555                 u32 start, end, max_eirp = 0, max_bw = 0, flags = 0;
1556                 nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
1557                           nla_data(nl_rule), nla_len(nl_rule), reg_policy);
1558                 if (tb_rule[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
1559                     tb_rule[NL80211_ATTR_FREQ_RANGE_END] == NULL)
1560                         continue;
1561                 start = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
1562                 end = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
1563                 if (tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP])
1564                         max_eirp = nla_get_u32(tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP]) / 100;
1565                 if (tb_rule[NL80211_ATTR_FREQ_RANGE_MAX_BW])
1566                         max_bw = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
1567                 if (tb_rule[NL80211_ATTR_REG_RULE_FLAGS])
1568                         flags = nla_get_u32(tb_rule[NL80211_ATTR_REG_RULE_FLAGS]);
1569
1570                 wpa_printf(MSG_DEBUG, "nl80211: %u-%u @ %u MHz %u mBm%s%s%s%s%s%s%s%s",
1571                            start, end, max_bw, max_eirp,
1572                            flags & NL80211_RRF_NO_OFDM ? " (no OFDM)" : "",
1573                            flags & NL80211_RRF_NO_CCK ? " (no CCK)" : "",
1574                            flags & NL80211_RRF_NO_INDOOR ? " (no indoor)" : "",
1575                            flags & NL80211_RRF_NO_OUTDOOR ? " (no outdoor)" :
1576                            "",
1577                            flags & NL80211_RRF_DFS ? " (DFS)" : "",
1578                            flags & NL80211_RRF_PTP_ONLY ? " (PTP only)" : "",
1579                            flags & NL80211_RRF_PTMP_ONLY ? " (PTMP only)" : "",
1580                            flags & NL80211_RRF_NO_IR ? " (no IR)" : "");
1581                 if (max_bw >= 40)
1582                         nl80211_reg_rule_ht40(start, end, results);
1583                 if (tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP])
1584                         nl80211_reg_rule_max_eirp(start, end, max_eirp,
1585                                                   results);
1586         }
1587
1588         nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
1589         {
1590                 nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
1591                           nla_data(nl_rule), nla_len(nl_rule), reg_policy);
1592                 nl80211_reg_rule_sec(tb_rule, results);
1593         }
1594
1595         nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
1596         {
1597                 nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
1598                           nla_data(nl_rule), nla_len(nl_rule), reg_policy);
1599                 nl80211_reg_rule_vht(tb_rule, results);
1600         }
1601
1602         return NL_SKIP;
1603 }
1604
1605
1606 static int nl80211_set_regulatory_flags(struct wpa_driver_nl80211_data *drv,
1607                                         struct phy_info_arg *results)
1608 {
1609         struct nl_msg *msg;
1610
1611         msg = nlmsg_alloc();
1612         if (!msg)
1613                 return -ENOMEM;
1614
1615         nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
1616         return send_and_recv_msgs(drv, msg, nl80211_get_reg, results);
1617 }
1618
1619
1620 struct hostapd_hw_modes *
1621 nl80211_get_hw_feature_data(void *priv, u16 *num_modes, u16 *flags)
1622 {
1623         u32 feat;
1624         struct i802_bss *bss = priv;
1625         struct wpa_driver_nl80211_data *drv = bss->drv;
1626         int nl_flags = 0;
1627         struct nl_msg *msg;
1628         struct phy_info_arg result = {
1629                 .num_modes = num_modes,
1630                 .modes = NULL,
1631                 .last_mode = -1,
1632                 .failed = 0,
1633         };
1634
1635         *num_modes = 0;
1636         *flags = 0;
1637
1638         feat = get_nl80211_protocol_features(drv);
1639         if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
1640                 nl_flags = NLM_F_DUMP;
1641         if (!(msg = nl80211_cmd_msg(bss, nl_flags, NL80211_CMD_GET_WIPHY)) ||
1642             nla_put_flag(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP)) {
1643                 nlmsg_free(msg);
1644                 return NULL;
1645         }
1646
1647         if (send_and_recv_msgs(drv, msg, phy_info_handler, &result) == 0) {
1648                 nl80211_set_regulatory_flags(drv, &result);
1649                 if (result.failed) {
1650                         int i;
1651
1652                         for (i = 0; result.modes && i < *num_modes; i++) {
1653                                 os_free(result.modes[i].channels);
1654                                 os_free(result.modes[i].rates);
1655                         }
1656                         os_free(result.modes);
1657                         return NULL;
1658                 }
1659                 return wpa_driver_nl80211_postprocess_modes(result.modes,
1660                                                             num_modes);
1661         }
1662
1663         return NULL;
1664 }