| /* |
| * This is the new netlink-based wireless configuration interface. |
| * |
| * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> |
| * Copyright 2013-2014 Intel Mobile Communications GmbH |
| * Copyright 2015-2017 Intel Deutschland GmbH |
| * Copyright (C) 2018-2019 Intel Corporation |
| */ |
| |
| #include <linux/if.h> |
| #include <linux/module.h> |
| #include <linux/err.h> |
| #include <linux/slab.h> |
| #include <linux/list.h> |
| #include <linux/if_ether.h> |
| #include <linux/ieee80211.h> |
| #include <linux/nl80211.h> |
| #include <linux/rtnetlink.h> |
| #include <linux/netlink.h> |
| #include <linux/nospec.h> |
| #include <linux/etherdevice.h> |
| #include <net/net_namespace.h> |
| #include <net/genetlink.h> |
| #include <net/cfg80211.h> |
| #include <net/sock.h> |
| #include <net/inet_connection_sock.h> |
| #include "core.h" |
| #include "nl80211.h" |
| #include "reg.h" |
| #include "rdev-ops.h" |
| |
| static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev, |
| struct genl_info *info, |
| struct cfg80211_crypto_settings *settings, |
| int cipher_limit); |
| |
| /* the netlink family */ |
| static struct genl_family nl80211_fam; |
| |
| /* multicast groups */ |
| enum nl80211_multicast_groups { |
| NL80211_MCGRP_CONFIG, |
| NL80211_MCGRP_SCAN, |
| NL80211_MCGRP_REGULATORY, |
| NL80211_MCGRP_MLME, |
| NL80211_MCGRP_VENDOR, |
| NL80211_MCGRP_NAN, |
| NL80211_MCGRP_TESTMODE /* keep last - ifdef! */ |
| }; |
| |
| static const struct genl_multicast_group nl80211_mcgrps[] = { |
| [NL80211_MCGRP_CONFIG] = { .name = NL80211_MULTICAST_GROUP_CONFIG }, |
| [NL80211_MCGRP_SCAN] = { .name = NL80211_MULTICAST_GROUP_SCAN }, |
| [NL80211_MCGRP_REGULATORY] = { .name = NL80211_MULTICAST_GROUP_REG }, |
| [NL80211_MCGRP_MLME] = { .name = NL80211_MULTICAST_GROUP_MLME }, |
| [NL80211_MCGRP_VENDOR] = { .name = NL80211_MULTICAST_GROUP_VENDOR }, |
| [NL80211_MCGRP_NAN] = { .name = NL80211_MULTICAST_GROUP_NAN }, |
| #ifdef CONFIG_NL80211_TESTMODE |
| [NL80211_MCGRP_TESTMODE] = { .name = NL80211_MULTICAST_GROUP_TESTMODE } |
| #endif |
| }; |
| |
| /* returns ERR_PTR values */ |
| static struct wireless_dev * |
| __cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs) |
| { |
| struct cfg80211_registered_device *rdev; |
| struct wireless_dev *result = NULL; |
| bool have_ifidx = attrs[NL80211_ATTR_IFINDEX]; |
| bool have_wdev_id = attrs[NL80211_ATTR_WDEV]; |
| u64 wdev_id; |
| int wiphy_idx = -1; |
| int ifidx = -1; |
| |
| ASSERT_RTNL(); |
| |
| if (!have_ifidx && !have_wdev_id) |
| return ERR_PTR(-EINVAL); |
| |
| if (have_ifidx) |
| ifidx = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]); |
| if (have_wdev_id) { |
| wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]); |
| wiphy_idx = wdev_id >> 32; |
| } |
| |
| list_for_each_entry(rdev, &cfg80211_rdev_list, list) { |
| struct wireless_dev *wdev; |
| |
| if (wiphy_net(&rdev->wiphy) != netns) |
| continue; |
| |
| if (have_wdev_id && rdev->wiphy_idx != wiphy_idx) |
| continue; |
| |
| list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) { |
| if (have_ifidx && wdev->netdev && |
| wdev->netdev->ifindex == ifidx) { |
| result = wdev; |
| break; |
| } |
| if (have_wdev_id && wdev->identifier == (u32)wdev_id) { |
| result = wdev; |
| break; |
| } |
| } |
| |
| if (result) |
| break; |
| } |
| |
| if (result) |
| return result; |
| return ERR_PTR(-ENODEV); |
| } |
| |
| static struct cfg80211_registered_device * |
| __cfg80211_rdev_from_attrs(struct net *netns, struct nlattr **attrs) |
| { |
| struct cfg80211_registered_device *rdev = NULL, *tmp; |
| struct net_device *netdev; |
| |
| ASSERT_RTNL(); |
| |
| if (!attrs[NL80211_ATTR_WIPHY] && |
| !attrs[NL80211_ATTR_IFINDEX] && |
| !attrs[NL80211_ATTR_WDEV]) |
| return ERR_PTR(-EINVAL); |
| |
| if (attrs[NL80211_ATTR_WIPHY]) |
| rdev = cfg80211_rdev_by_wiphy_idx( |
| nla_get_u32(attrs[NL80211_ATTR_WIPHY])); |
| |
| if (attrs[NL80211_ATTR_WDEV]) { |
| u64 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]); |
| struct wireless_dev *wdev; |
| bool found = false; |
| |
| tmp = cfg80211_rdev_by_wiphy_idx(wdev_id >> 32); |
| if (tmp) { |
| /* make sure wdev exists */ |
| list_for_each_entry(wdev, &tmp->wiphy.wdev_list, list) { |
| if (wdev->identifier != (u32)wdev_id) |
| continue; |
| found = true; |
| break; |
| } |
| |
| if (!found) |
| tmp = NULL; |
| |
| if (rdev && tmp != rdev) |
| return ERR_PTR(-EINVAL); |
| rdev = tmp; |
| } |
| } |
| |
| if (attrs[NL80211_ATTR_IFINDEX]) { |
| int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]); |
| |
| netdev = __dev_get_by_index(netns, ifindex); |
| if (netdev) { |
| if (netdev->ieee80211_ptr) |
| tmp = wiphy_to_rdev( |
| netdev->ieee80211_ptr->wiphy); |
| else |
| tmp = NULL; |
| |
| /* not wireless device -- return error */ |
| if (!tmp) |
| return ERR_PTR(-EINVAL); |
| |
| /* mismatch -- return error */ |
| if (rdev && tmp != rdev) |
| return ERR_PTR(-EINVAL); |
| |
| rdev = tmp; |
| } |
| } |
| |
| if (!rdev) |
| return ERR_PTR(-ENODEV); |
| |
| if (netns != wiphy_net(&rdev->wiphy)) |
| return ERR_PTR(-ENODEV); |
| |
| return rdev; |
| } |
| |
| /* |
| * This function returns a pointer to the driver |
| * that the genl_info item that is passed refers to. |
| * |
| * The result of this can be a PTR_ERR and hence must |
| * be checked with IS_ERR() for errors. |
| */ |
| static struct cfg80211_registered_device * |
| cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info) |
| { |
| return __cfg80211_rdev_from_attrs(netns, info->attrs); |
| } |
| |
| static int validate_ie_attr(const struct nlattr *attr, |
| struct netlink_ext_ack *extack) |
| { |
| const u8 *data = nla_data(attr); |
| unsigned int len = nla_len(attr); |
| const struct element *elem; |
| |
| for_each_element(elem, data, len) { |
| /* nothing */ |
| } |
| |
| if (for_each_element_completed(elem, data, len)) |
| return 0; |
| |
| NL_SET_ERR_MSG_ATTR(extack, attr, "malformed information elements"); |
| return -EINVAL; |
| } |
| |
| /* policy for the attributes */ |
| static const struct nla_policy |
| nl80211_ftm_responder_policy[NL80211_FTM_RESP_ATTR_MAX + 1] = { |
| [NL80211_FTM_RESP_ATTR_ENABLED] = { .type = NLA_FLAG, }, |
| [NL80211_FTM_RESP_ATTR_LCI] = { .type = NLA_BINARY, |
| .len = U8_MAX }, |
| [NL80211_FTM_RESP_ATTR_CIVICLOC] = { .type = NLA_BINARY, |
| .len = U8_MAX }, |
| }; |
| |
| static const struct nla_policy |
| nl80211_pmsr_ftm_req_attr_policy[NL80211_PMSR_FTM_REQ_ATTR_MAX + 1] = { |
| [NL80211_PMSR_FTM_REQ_ATTR_ASAP] = { .type = NLA_FLAG }, |
| [NL80211_PMSR_FTM_REQ_ATTR_PREAMBLE] = { .type = NLA_U32 }, |
| [NL80211_PMSR_FTM_REQ_ATTR_NUM_BURSTS_EXP] = |
| NLA_POLICY_MAX(NLA_U8, 15), |
| [NL80211_PMSR_FTM_REQ_ATTR_BURST_PERIOD] = { .type = NLA_U16 }, |
| [NL80211_PMSR_FTM_REQ_ATTR_BURST_DURATION] = |
| NLA_POLICY_MAX(NLA_U8, 15), |
| [NL80211_PMSR_FTM_REQ_ATTR_FTMS_PER_BURST] = |
| NLA_POLICY_MAX(NLA_U8, 31), |
| [NL80211_PMSR_FTM_REQ_ATTR_NUM_FTMR_RETRIES] = { .type = NLA_U8 }, |
| [NL80211_PMSR_FTM_REQ_ATTR_REQUEST_LCI] = { .type = NLA_FLAG }, |
| [NL80211_PMSR_FTM_REQ_ATTR_REQUEST_CIVICLOC] = { .type = NLA_FLAG }, |
| }; |
| |
| static const struct nla_policy |
| nl80211_pmsr_req_data_policy[NL80211_PMSR_TYPE_MAX + 1] = { |
| [NL80211_PMSR_TYPE_FTM] = |
| NLA_POLICY_NESTED(nl80211_pmsr_ftm_req_attr_policy), |
| }; |
| |
| static const struct nla_policy |
| nl80211_pmsr_req_attr_policy[NL80211_PMSR_REQ_ATTR_MAX + 1] = { |
| [NL80211_PMSR_REQ_ATTR_DATA] = |
| NLA_POLICY_NESTED(nl80211_pmsr_req_data_policy), |
| [NL80211_PMSR_REQ_ATTR_GET_AP_TSF] = { .type = NLA_FLAG }, |
| }; |
| |
| static const struct nla_policy |
| nl80211_psmr_peer_attr_policy[NL80211_PMSR_PEER_ATTR_MAX + 1] = { |
| [NL80211_PMSR_PEER_ATTR_ADDR] = NLA_POLICY_ETH_ADDR, |
| /* |
| * we could specify this again to be the top-level policy, |
| * but that would open us up to recursion problems ... |
| */ |
| [NL80211_PMSR_PEER_ATTR_CHAN] = { .type = NLA_NESTED }, |
| [NL80211_PMSR_PEER_ATTR_REQ] = |
| NLA_POLICY_NESTED(nl80211_pmsr_req_attr_policy), |
| [NL80211_PMSR_PEER_ATTR_RESP] = { .type = NLA_REJECT }, |
| }; |
| |
| static const struct nla_policy |
| nl80211_pmsr_attr_policy[NL80211_PMSR_ATTR_MAX + 1] = { |
| [NL80211_PMSR_ATTR_MAX_PEERS] = { .type = NLA_REJECT }, |
| [NL80211_PMSR_ATTR_REPORT_AP_TSF] = { .type = NLA_REJECT }, |
| [NL80211_PMSR_ATTR_RANDOMIZE_MAC_ADDR] = { .type = NLA_REJECT }, |
| [NL80211_PMSR_ATTR_TYPE_CAPA] = { .type = NLA_REJECT }, |
| [NL80211_PMSR_ATTR_PEERS] = |
| NLA_POLICY_NESTED_ARRAY(nl80211_psmr_peer_attr_policy), |
| }; |
| |
| const struct nla_policy nl80211_policy[NUM_NL80211_ATTR] = { |
| [NL80211_ATTR_WIPHY] = { .type = NLA_U32 }, |
| [NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING, |
| .len = 20-1 }, |
| [NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED }, |
| |
| [NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 }, |
| [NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 }, |
| [NL80211_ATTR_CHANNEL_WIDTH] = { .type = NLA_U32 }, |
| [NL80211_ATTR_CENTER_FREQ1] = { .type = NLA_U32 }, |
| [NL80211_ATTR_CENTER_FREQ2] = { .type = NLA_U32 }, |
| |
| [NL80211_ATTR_WIPHY_RETRY_SHORT] = NLA_POLICY_MIN(NLA_U8, 1), |
| [NL80211_ATTR_WIPHY_RETRY_LONG] = NLA_POLICY_MIN(NLA_U8, 1), |
| [NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 }, |
| [NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 }, |
| [NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 }, |
| [NL80211_ATTR_WIPHY_DYN_ACK] = { .type = NLA_FLAG }, |
| |
| [NL80211_ATTR_IFTYPE] = NLA_POLICY_MAX(NLA_U32, NL80211_IFTYPE_MAX), |
| [NL80211_ATTR_IFINDEX] = { .type = NLA_U32 }, |
| [NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 }, |
| |
| [NL80211_ATTR_MAC] = { .len = ETH_ALEN }, |
| [NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN }, |
| |
| [NL80211_ATTR_KEY] = { .type = NLA_NESTED, }, |
| [NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY, |
| .len = WLAN_MAX_KEY_LEN }, |
| [NL80211_ATTR_KEY_IDX] = NLA_POLICY_MAX(NLA_U8, 5), |
| [NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 }, |
| [NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 }, |
| [NL80211_ATTR_KEY_TYPE] = |
| NLA_POLICY_MAX(NLA_U32, NUM_NL80211_KEYTYPES), |
| |
| [NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 }, |
| [NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 }, |
| [NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY, |
| .len = IEEE80211_MAX_DATA_LEN }, |
| [NL80211_ATTR_BEACON_TAIL] = |
| NLA_POLICY_VALIDATE_FN(NLA_BINARY, validate_ie_attr, |
| IEEE80211_MAX_DATA_LEN), |
| [NL80211_ATTR_STA_AID] = |
| NLA_POLICY_RANGE(NLA_U16, 1, IEEE80211_MAX_AID), |
| [NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 }, |
| [NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY, |
| .len = NL80211_MAX_SUPP_RATES }, |
| [NL80211_ATTR_STA_PLINK_ACTION] = |
| NLA_POLICY_MAX(NLA_U8, NUM_NL80211_PLINK_ACTIONS - 1), |
| [NL80211_ATTR_STA_TX_POWER_SETTING] = |
| NLA_POLICY_RANGE(NLA_U8, |
| NL80211_TX_POWER_AUTOMATIC, |
| NL80211_TX_POWER_FIXED), |
| [NL80211_ATTR_STA_TX_POWER] = { .type = NLA_S16 }, |
| [NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 }, |
| [NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ }, |
| [NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY, |
| .len = IEEE80211_MAX_MESH_ID_LEN }, |
| [NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 }, |
| |
| [NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 }, |
| [NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED }, |
| |
| [NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 }, |
| [NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 }, |
| [NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 }, |
| [NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY, |
| .len = NL80211_MAX_SUPP_RATES }, |
| [NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 }, |
| |
| [NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG }, |
| |
| [NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN }, |
| |
| [NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 }, |
| [NL80211_ATTR_IE] = NLA_POLICY_VALIDATE_FN(NLA_BINARY, |
| validate_ie_attr, |
| IEEE80211_MAX_DATA_LEN), |
| [NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED }, |
| |
| [NL80211_ATTR_SSID] = { .type = NLA_BINARY, |
| .len = IEEE80211_MAX_SSID_LEN }, |
| [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 }, |
| [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 }, |
| [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_USE_MFP] = NLA_POLICY_RANGE(NLA_U32, |
| NL80211_MFP_NO, |
| NL80211_MFP_OPTIONAL), |
| [NL80211_ATTR_STA_FLAGS2] = { |
| .len = sizeof(struct nl80211_sta_flag_update), |
| }, |
| [NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 }, |
| [NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_CONTROL_PORT_OVER_NL80211] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 }, |
| [NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 }, |
| [NL80211_ATTR_PID] = { .type = NLA_U32 }, |
| [NL80211_ATTR_4ADDR] = { .type = NLA_U8 }, |
| [NL80211_ATTR_PMKID] = { .len = WLAN_PMKID_LEN }, |
| [NL80211_ATTR_DURATION] = { .type = NLA_U32 }, |
| [NL80211_ATTR_COOKIE] = { .type = NLA_U64 }, |
| [NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_FRAME] = { .type = NLA_BINARY, |
| .len = IEEE80211_MAX_DATA_LEN }, |
| [NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, }, |
| [NL80211_ATTR_PS_STATE] = NLA_POLICY_RANGE(NLA_U32, |
| NL80211_PS_DISABLED, |
| NL80211_PS_ENABLED), |
| [NL80211_ATTR_CQM] = { .type = NLA_NESTED, }, |
| [NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 }, |
| [NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 }, |
| [NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 }, |
| [NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 }, |
| [NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 }, |
| [NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 }, |
| [NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 }, |
| [NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_STA_PLINK_STATE] = |
| NLA_POLICY_MAX(NLA_U8, NUM_NL80211_PLINK_STATES - 1), |
| [NL80211_ATTR_MESH_PEER_AID] = |
| NLA_POLICY_RANGE(NLA_U16, 1, IEEE80211_MAX_AID), |
| [NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 }, |
| [NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_HIDDEN_SSID] = |
| NLA_POLICY_RANGE(NLA_U32, |
| NL80211_HIDDEN_SSID_NOT_IN_USE, |
| NL80211_HIDDEN_SSID_ZERO_CONTENTS), |
| [NL80211_ATTR_IE_PROBE_RESP] = |
| NLA_POLICY_VALIDATE_FN(NLA_BINARY, validate_ie_attr, |
| IEEE80211_MAX_DATA_LEN), |
| [NL80211_ATTR_IE_ASSOC_RESP] = |
| NLA_POLICY_VALIDATE_FN(NLA_BINARY, validate_ie_attr, |
| IEEE80211_MAX_DATA_LEN), |
| [NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_TDLS_ACTION] = { .type = NLA_U8 }, |
| [NL80211_ATTR_TDLS_DIALOG_TOKEN] = { .type = NLA_U8 }, |
| [NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 }, |
| [NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_TDLS_INITIATOR] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY, |
| .len = IEEE80211_MAX_DATA_LEN }, |
| [NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 }, |
| [NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_HT_CAPABILITY_MASK] = { |
| .len = NL80211_HT_CAPABILITY_LEN |
| }, |
| [NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 }, |
| [NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 }, |
| [NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 }, |
| [NL80211_ATTR_WDEV] = { .type = NLA_U64 }, |
| [NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 }, |
| [NL80211_ATTR_AUTH_DATA] = { .type = NLA_BINARY, }, |
| [NL80211_ATTR_VHT_CAPABILITY] = { .len = NL80211_VHT_CAPABILITY_LEN }, |
| [NL80211_ATTR_SCAN_FLAGS] = { .type = NLA_U32 }, |
| [NL80211_ATTR_P2P_CTWINDOW] = NLA_POLICY_MAX(NLA_U8, 127), |
| [NL80211_ATTR_P2P_OPPPS] = NLA_POLICY_MAX(NLA_U8, 1), |
| [NL80211_ATTR_LOCAL_MESH_POWER_MODE] = |
| NLA_POLICY_RANGE(NLA_U32, |
| NL80211_MESH_POWER_UNKNOWN + 1, |
| NL80211_MESH_POWER_MAX), |
| [NL80211_ATTR_ACL_POLICY] = {. type = NLA_U32 }, |
| [NL80211_ATTR_MAC_ADDRS] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_STA_CAPABILITY] = { .type = NLA_U16 }, |
| [NL80211_ATTR_STA_EXT_CAPABILITY] = { .type = NLA_BINARY, }, |
| [NL80211_ATTR_SPLIT_WIPHY_DUMP] = { .type = NLA_FLAG, }, |
| [NL80211_ATTR_DISABLE_VHT] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_VHT_CAPABILITY_MASK] = { |
| .len = NL80211_VHT_CAPABILITY_LEN, |
| }, |
| [NL80211_ATTR_MDID] = { .type = NLA_U16 }, |
| [NL80211_ATTR_IE_RIC] = { .type = NLA_BINARY, |
| .len = IEEE80211_MAX_DATA_LEN }, |
| [NL80211_ATTR_PEER_AID] = |
| NLA_POLICY_RANGE(NLA_U16, 1, IEEE80211_MAX_AID), |
| [NL80211_ATTR_CH_SWITCH_COUNT] = { .type = NLA_U32 }, |
| [NL80211_ATTR_CH_SWITCH_BLOCK_TX] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_CSA_IES] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_CSA_C_OFF_BEACON] = { .type = NLA_BINARY }, |
| [NL80211_ATTR_CSA_C_OFF_PRESP] = { .type = NLA_BINARY }, |
| [NL80211_ATTR_STA_SUPPORTED_CHANNELS] = { .type = NLA_BINARY }, |
| [NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES] = { .type = NLA_BINARY }, |
| [NL80211_ATTR_HANDLE_DFS] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_OPMODE_NOTIF] = { .type = NLA_U8 }, |
| [NL80211_ATTR_VENDOR_ID] = { .type = NLA_U32 }, |
| [NL80211_ATTR_VENDOR_SUBCMD] = { .type = NLA_U32 }, |
| [NL80211_ATTR_VENDOR_DATA] = { .type = NLA_BINARY }, |
| [NL80211_ATTR_QOS_MAP] = { .type = NLA_BINARY, |
| .len = IEEE80211_QOS_MAP_LEN_MAX }, |
| [NL80211_ATTR_MAC_HINT] = { .len = ETH_ALEN }, |
| [NL80211_ATTR_WIPHY_FREQ_HINT] = { .type = NLA_U32 }, |
| [NL80211_ATTR_TDLS_PEER_CAPABILITY] = { .type = NLA_U32 }, |
| [NL80211_ATTR_SOCKET_OWNER] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_CSA_C_OFFSETS_TX] = { .type = NLA_BINARY }, |
| [NL80211_ATTR_USE_RRM] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_TSID] = NLA_POLICY_MAX(NLA_U8, IEEE80211_NUM_TIDS - 1), |
| [NL80211_ATTR_USER_PRIO] = |
| NLA_POLICY_MAX(NLA_U8, IEEE80211_NUM_UPS - 1), |
| [NL80211_ATTR_ADMITTED_TIME] = { .type = NLA_U16 }, |
| [NL80211_ATTR_SMPS_MODE] = { .type = NLA_U8 }, |
| [NL80211_ATTR_MAC_MASK] = { .len = ETH_ALEN }, |
| [NL80211_ATTR_WIPHY_SELF_MANAGED_REG] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_NETNS_FD] = { .type = NLA_U32 }, |
| [NL80211_ATTR_SCHED_SCAN_DELAY] = { .type = NLA_U32 }, |
| [NL80211_ATTR_REG_INDOOR] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_PBSS] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_BSS_SELECT] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_STA_SUPPORT_P2P_PS] = |
| NLA_POLICY_MAX(NLA_U8, NUM_NL80211_P2P_PS_STATUS - 1), |
| [NL80211_ATTR_MU_MIMO_GROUP_DATA] = { |
| .len = VHT_MUMIMO_GROUPS_DATA_LEN |
| }, |
| [NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR] = { .len = ETH_ALEN }, |
| [NL80211_ATTR_NAN_MASTER_PREF] = NLA_POLICY_MIN(NLA_U8, 1), |
| [NL80211_ATTR_BANDS] = { .type = NLA_U32 }, |
| [NL80211_ATTR_NAN_FUNC] = { .type = NLA_NESTED }, |
| [NL80211_ATTR_FILS_KEK] = { .type = NLA_BINARY, |
| .len = FILS_MAX_KEK_LEN }, |
| [NL80211_ATTR_FILS_NONCES] = { .len = 2 * FILS_NONCE_LEN }, |
| [NL80211_ATTR_MULTICAST_TO_UNICAST_ENABLED] = { .type = NLA_FLAG, }, |
| [NL80211_ATTR_BSSID] = { .len = ETH_ALEN }, |
| [NL80211_ATTR_SCHED_SCAN_RELATIVE_RSSI] = { .type = NLA_S8 }, |
| [NL80211_ATTR_SCHED_SCAN_RSSI_ADJUST] = { |
| .len = sizeof(struct nl80211_bss_select_rssi_adjust) |
| }, |
| [NL80211_ATTR_TIMEOUT_REASON] = { .type = NLA_U32 }, |
| [NL80211_ATTR_FILS_ERP_USERNAME] = { .type = NLA_BINARY, |
| .len = FILS_ERP_MAX_USERNAME_LEN }, |
| [NL80211_ATTR_FILS_ERP_REALM] = { .type = NLA_BINARY, |
| .len = FILS_ERP_MAX_REALM_LEN }, |
| [NL80211_ATTR_FILS_ERP_NEXT_SEQ_NUM] = { .type = NLA_U16 }, |
| [NL80211_ATTR_FILS_ERP_RRK] = { .type = NLA_BINARY, |
| .len = FILS_ERP_MAX_RRK_LEN }, |
| [NL80211_ATTR_FILS_CACHE_ID] = { .len = 2 }, |
| [NL80211_ATTR_PMK] = { .type = NLA_BINARY, .len = PMK_MAX_LEN }, |
| [NL80211_ATTR_SCHED_SCAN_MULTI] = { .type = NLA_FLAG }, |
| [NL80211_ATTR_EXTERNAL_AUTH_SUPPORT] = { .type = NLA_FLAG }, |
| |
| [NL80211_ATTR_TXQ_LIMIT] = { .type = NLA_U32 }, |
| [NL80211_ATTR_TXQ_MEMORY_LIMIT] = { .type = NLA_U32 }, |
| [NL80211_ATTR_TXQ_QUANTUM] = { .type = NLA_U32 }, |
| [NL80211_ATTR_HE_CAPABILITY] = { .type = NLA_BINARY, |
| .len = NL80211_HE_MAX_CAPABILITY_LEN }, |
| |
| [NL80211_ATTR_FTM_RESPONDER] = { |
| .type = NLA_NESTED, |
| .validation_data = nl80211_ftm_responder_policy, |
| }, |
| [NL80211_ATTR_TIMEOUT] = NLA_POLICY_MIN(NLA_U32, 1), |
| [NL80211_ATTR_PEER_MEASUREMENTS] = |
| NLA_POLICY_NESTED(nl80211_pmsr_attr_policy), |
| [NL80211_ATTR_AIRTIME_WEIGHT] = NLA_POLICY_MIN(NLA_U16, 1), |
| }; |
| |
| /* policy for the key attributes */ |
| static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = { |
| [NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN }, |
| [NL80211_KEY_IDX] = { .type = NLA_U8 }, |
| [NL80211_KEY_CIPHER] = { .type = NLA_U32 }, |
| [NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 }, |
| [NL80211_KEY_DEFAULT] = { .type = NLA_FLAG }, |
| [NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG }, |
| [NL80211_KEY_TYPE] = NLA_POLICY_MAX(NLA_U32, NUM_NL80211_KEYTYPES - 1), |
| [NL80211_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED }, |
| [NL80211_KEY_MODE] = NLA_POLICY_RANGE(NLA_U8, 0, NL80211_KEY_SET_TX), |
| }; |
| |
| /* policy for the key default flags */ |
| static const struct nla_policy |
| nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = { |
| [NL80211_KEY_DEFAULT_TYPE_UNICAST] = { .type = NLA_FLAG }, |
| [NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG }, |
| }; |
| |
| #ifdef CONFIG_PM |
| /* policy for WoWLAN attributes */ |
| static const struct nla_policy |
| nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = { |
| [NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG }, |
| [NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG }, |
| [NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG }, |
| [NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .type = NLA_NESTED }, |
| [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG }, |
| [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG }, |
| [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG }, |
| [NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG }, |
| [NL80211_WOWLAN_TRIG_TCP_CONNECTION] = { .type = NLA_NESTED }, |
| [NL80211_WOWLAN_TRIG_NET_DETECT] = { .type = NLA_NESTED }, |
| }; |
| |
| static const struct nla_policy |
| nl80211_wowlan_tcp_policy[NUM_NL80211_WOWLAN_TCP] = { |
| [NL80211_WOWLAN_TCP_SRC_IPV4] = { .type = NLA_U32 }, |
| [NL80211_WOWLAN_TCP_DST_IPV4] = { .type = NLA_U32 }, |
| [NL80211_WOWLAN_TCP_DST_MAC] = { .len = ETH_ALEN }, |
| [NL80211_WOWLAN_TCP_SRC_PORT] = { .type = NLA_U16 }, |
| [NL80211_WOWLAN_TCP_DST_PORT] = { .type = NLA_U16 }, |
| [NL80211_WOWLAN_TCP_DATA_PAYLOAD] = { .len = 1 }, |
| [NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ] = { |
| .len = sizeof(struct nl80211_wowlan_tcp_data_seq) |
| }, |
| [NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN] = { |
| .len = sizeof(struct nl80211_wowlan_tcp_data_token) |
| }, |
| [NL80211_WOWLAN_TCP_DATA_INTERVAL] = { .type = NLA_U32 }, |
| [NL80211_WOWLAN_TCP_WAKE_PAYLOAD] = { .len = 1 }, |
| [NL80211_WOWLAN_TCP_WAKE_MASK] = { .len = 1 }, |
| }; |
| #endif /* CONFIG_PM */ |
| |
| /* policy for coalesce rule attributes */ |
| static const struct nla_policy |
| nl80211_coalesce_policy[NUM_NL80211_ATTR_COALESCE_RULE] = { |
| [NL80211_ATTR_COALESCE_RULE_DELAY] = { .type = NLA_U32 }, |
| [NL80211_ATTR_COALESCE_RULE_CONDITION] = |
| NLA_POLICY_RANGE(NLA_U32, |
| NL80211_COALESCE_CONDITION_MATCH, |
| NL80211_COALESCE_CONDITION_NO_MATCH), |
| [NL80211_ATTR_COALESCE_RULE_PKT_PATTERN] = { .type = NLA_NESTED }, |
| }; |
| |
| /* policy for GTK rekey offload attributes */ |
| static const struct nla_policy |
| nl80211_rekey_policy[NUM_NL80211_REKEY_DATA] = { |
| [NL80211_REKEY_DATA_KEK] = { .len = NL80211_KEK_LEN }, |
| [NL80211_REKEY_DATA_KCK] = { .len = NL80211_KCK_LEN }, |
| [NL80211_REKEY_DATA_REPLAY_CTR] = { .len = NL80211_REPLAY_CTR_LEN }, |
| }; |
| |
| static const struct nla_policy |
| nl80211_match_band_rssi_policy[NUM_NL80211_BANDS] = { |
| [NL80211_BAND_2GHZ] = { .type = NLA_S32 }, |
| [NL80211_BAND_5GHZ] = { .type = NLA_S32 }, |
| [NL80211_BAND_60GHZ] = { .type = NLA_S32 }, |
| }; |
| |
| static const struct nla_policy |
| nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = { |
| [NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY, |
| .len = IEEE80211_MAX_SSID_LEN }, |
| [NL80211_SCHED_SCAN_MATCH_ATTR_BSSID] = { .len = ETH_ALEN }, |
| [NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 }, |
| [NL80211_SCHED_SCAN_MATCH_PER_BAND_RSSI] = |
| NLA_POLICY_NESTED(nl80211_match_band_rssi_policy), |
| }; |
| |
| static const struct nla_policy |
| nl80211_plan_policy[NL80211_SCHED_SCAN_PLAN_MAX + 1] = { |
| [NL80211_SCHED_SCAN_PLAN_INTERVAL] = { .type = NLA_U32 }, |
| [NL80211_SCHED_SCAN_PLAN_ITERATIONS] = { .type = NLA_U32 }, |
| }; |
| |
| static const struct nla_policy |
| nl80211_bss_select_policy[NL80211_BSS_SELECT_ATTR_MAX + 1] = { |
| [NL80211_BSS_SELECT_ATTR_RSSI] = { .type = NLA_FLAG }, |
| [NL80211_BSS_SELECT_ATTR_BAND_PREF] = { .type = NLA_U32 }, |
| [NL80211_BSS_SELECT_ATTR_RSSI_ADJUST] = { |
| .len = sizeof(struct nl80211_bss_select_rssi_adjust) |
| }, |
| }; |
| |
| /* policy for NAN function attributes */ |
| static const struct nla_policy |
| nl80211_nan_func_policy[NL80211_NAN_FUNC_ATTR_MAX + 1] = { |
| [NL80211_NAN_FUNC_TYPE] = { .type = NLA_U8 }, |
| [NL80211_NAN_FUNC_SERVICE_ID] = { |
| .len = NL80211_NAN_FUNC_SERVICE_ID_LEN }, |
| [NL80211_NAN_FUNC_PUBLISH_TYPE] = { .type = NLA_U8 }, |
| [NL80211_NAN_FUNC_PUBLISH_BCAST] = { .type = NLA_FLAG }, |
| [NL80211_NAN_FUNC_SUBSCRIBE_ACTIVE] = { .type = NLA_FLAG }, |
| [NL80211_NAN_FUNC_FOLLOW_UP_ID] = { .type = NLA_U8 }, |
| [NL80211_NAN_FUNC_FOLLOW_UP_REQ_ID] = { .type = NLA_U8 }, |
| [NL80211_NAN_FUNC_FOLLOW_UP_DEST] = { .len = ETH_ALEN }, |
| [NL80211_NAN_FUNC_CLOSE_RANGE] = { .type = NLA_FLAG }, |
| [NL80211_NAN_FUNC_TTL] = { .type = NLA_U32 }, |
| [NL80211_NAN_FUNC_SERVICE_INFO] = { .type = NLA_BINARY, |
| .len = NL80211_NAN_FUNC_SERVICE_SPEC_INFO_MAX_LEN }, |
| [NL80211_NAN_FUNC_SRF] = { .type = NLA_NESTED }, |
| [NL80211_NAN_FUNC_RX_MATCH_FILTER] = { .type = NLA_NESTED }, |
| [NL80211_NAN_FUNC_TX_MATCH_FILTER] = { .type = NLA_NESTED }, |
| [NL80211_NAN_FUNC_INSTANCE_ID] = { .type = NLA_U8 }, |
| [NL80211_NAN_FUNC_TERM_REASON] = { .type = NLA_U8 }, |
| }; |
| |
| /* policy for Service Response Filter attributes */ |
| static const struct nla_policy |
| nl80211_nan_srf_policy[NL80211_NAN_SRF_ATTR_MAX + 1] = { |
| [NL80211_NAN_SRF_INCLUDE] = { .type = NLA_FLAG }, |
| [NL80211_NAN_SRF_BF] = { .type = NLA_BINARY, |
| .len = NL80211_NAN_FUNC_SRF_MAX_LEN }, |
| [NL80211_NAN_SRF_BF_IDX] = { .type = NLA_U8 }, |
| [NL80211_NAN_SRF_MAC_ADDRS] = { .type = NLA_NESTED }, |
| }; |
| |
| /* policy for packet pattern attributes */ |
| static const struct nla_policy |
| nl80211_packet_pattern_policy[MAX_NL80211_PKTPAT + 1] = { |
| [NL80211_PKTPAT_MASK] = { .type = NLA_BINARY, }, |
| [NL80211_PKTPAT_PATTERN] = { .type = NLA_BINARY, }, |
| [NL80211_PKTPAT_OFFSET] = { .type = NLA_U32 }, |
| }; |
| |
| int nl80211_prepare_wdev_dump(struct netlink_callback *cb, |
| struct cfg80211_registered_device **rdev, |
| struct wireless_dev **wdev) |
| { |
| int err; |
| |
| if (!cb->args[0]) { |
| err = nlmsg_parse_deprecated(cb->nlh, |
| GENL_HDRLEN + nl80211_fam.hdrsize, |
| genl_family_attrbuf(&nl80211_fam), |
| nl80211_fam.maxattr, |
| nl80211_policy, NULL); |
| if (err) |
| return err; |
| |
| *wdev = __cfg80211_wdev_from_attrs( |
| sock_net(cb->skb->sk), |
| genl_family_attrbuf(&nl80211_fam)); |
| if (IS_ERR(*wdev)) |
| return PTR_ERR(*wdev); |
| *rdev = wiphy_to_rdev((*wdev)->wiphy); |
| /* 0 is the first index - add 1 to parse only once */ |
| cb->args[0] = (*rdev)->wiphy_idx + 1; |
| cb->args[1] = (*wdev)->identifier; |
| } else { |
| /* subtract the 1 again here */ |
| struct wiphy *wiphy = wiphy_idx_to_wiphy(cb->args[0] - 1); |
| struct wireless_dev *tmp; |
| |
| if (!wiphy) |
| return -ENODEV; |
| *rdev = wiphy_to_rdev(wiphy); |
| *wdev = NULL; |
| |
| list_for_each_entry(tmp, &(*rdev)->wiphy.wdev_list, list) { |
| if (tmp->identifier == cb->args[1]) { |
| *wdev = tmp; |
| break; |
| } |
| } |
| |
| if (!*wdev) |
| return -ENODEV; |
| } |
| |
| return 0; |
| } |
| |
| /* message building helper */ |
| void *nl80211hdr_put(struct sk_buff *skb, u32 portid, u32 seq, |
| int flags, u8 cmd) |
| { |
| /* since there is no private header just add the generic one */ |
| return genlmsg_put(skb, portid, seq, &nl80211_fam, flags, cmd); |
| } |
| |
| static int nl80211_msg_put_wmm_rules(struct sk_buff *msg, |
| const struct ieee80211_reg_rule *rule) |
| { |
| int j; |
| struct nlattr *nl_wmm_rules = |
| nla_nest_start_noflag(msg, NL80211_FREQUENCY_ATTR_WMM); |
| |
| if (!nl_wmm_rules) |
| goto nla_put_failure; |
| |
| for (j = 0; j < IEEE80211_NUM_ACS; j++) { |
| struct nlattr *nl_wmm_rule = nla_nest_start_noflag(msg, j); |
| |
| if (!nl_wmm_rule) |
| goto nla_put_failure; |
| |
| if (nla_put_u16(msg, NL80211_WMMR_CW_MIN, |
| rule->wmm_rule.client[j].cw_min) || |
| nla_put_u16(msg, NL80211_WMMR_CW_MAX, |
| rule->wmm_rule.client[j].cw_max) || |
| nla_put_u8(msg, NL80211_WMMR_AIFSN, |
| rule->wmm_rule.client[j].aifsn) || |
| nla_put_u16(msg, NL80211_WMMR_TXOP, |
| rule->wmm_rule.client[j].cot)) |
| goto nla_put_failure; |
| |
| nla_nest_end(msg, nl_wmm_rule); |
| } |
| nla_nest_end(msg, nl_wmm_rules); |
| |
| return 0; |
| |
| nla_put_failure: |
| return -ENOBUFS; |
| } |
| |
| static int nl80211_msg_put_channel(struct sk_buff *msg, struct wiphy *wiphy, |
| struct ieee80211_channel *chan, |
| bool large) |
| { |
| /* Some channels must be completely excluded from the |
| * list to protect old user-space tools from breaking |
| */ |
| if (!large && chan->flags & |
| (IEEE80211_CHAN_NO_10MHZ | IEEE80211_CHAN_NO_20MHZ)) |
| return 0; |
| |
| if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ, |
| chan->center_freq)) |
| goto nla_put_failure; |
| |
| if ((chan->flags & IEEE80211_CHAN_DISABLED) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_DISABLED)) |
| goto nla_put_failure; |
| if (chan->flags & IEEE80211_CHAN_NO_IR) { |
| if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IR)) |
| goto nla_put_failure; |
| if (nla_put_flag(msg, __NL80211_FREQUENCY_ATTR_NO_IBSS)) |
| goto nla_put_failure; |
| } |
| if (chan->flags & IEEE80211_CHAN_RADAR) { |
| if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR)) |
| goto nla_put_failure; |
| if (large) { |
| u32 time; |
| |
| time = elapsed_jiffies_msecs(chan->dfs_state_entered); |
| |
| if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_STATE, |
| chan->dfs_state)) |
| goto nla_put_failure; |
| if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_TIME, |
| time)) |
| goto nla_put_failure; |
| if (nla_put_u32(msg, |
| NL80211_FREQUENCY_ATTR_DFS_CAC_TIME, |
| chan->dfs_cac_ms)) |
| goto nla_put_failure; |
| } |
| } |
| |
| if (large) { |
| if ((chan->flags & IEEE80211_CHAN_NO_HT40MINUS) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_MINUS)) |
| goto nla_put_failure; |
| if ((chan->flags & IEEE80211_CHAN_NO_HT40PLUS) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_PLUS)) |
| goto nla_put_failure; |
| if ((chan->flags & IEEE80211_CHAN_NO_80MHZ) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_80MHZ)) |
| goto nla_put_failure; |
| if ((chan->flags & IEEE80211_CHAN_NO_160MHZ) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_160MHZ)) |
| goto nla_put_failure; |
| if ((chan->flags & IEEE80211_CHAN_INDOOR_ONLY) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_INDOOR_ONLY)) |
| goto nla_put_failure; |
| if ((chan->flags & IEEE80211_CHAN_IR_CONCURRENT) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_IR_CONCURRENT)) |
| goto nla_put_failure; |
| if ((chan->flags & IEEE80211_CHAN_NO_20MHZ) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_20MHZ)) |
| goto nla_put_failure; |
| if ((chan->flags & IEEE80211_CHAN_NO_10MHZ) && |
| nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_10MHZ)) |
| goto nla_put_failure; |
| } |
| |
| if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER, |
| DBM_TO_MBM(chan->max_power))) |
| goto nla_put_failure; |
| |
| if (large) { |
| const struct ieee80211_reg_rule *rule = |
| freq_reg_info(wiphy, MHZ_TO_KHZ(chan->center_freq)); |
| |
| if (!IS_ERR_OR_NULL(rule) && rule->has_wmm) { |
| if (nl80211_msg_put_wmm_rules(msg, rule)) |
| goto nla_put_failure; |
| } |
| } |
| |
| return 0; |
| |
| nla_put_failure: |
| return -ENOBUFS; |
| } |
| |
| static bool nl80211_put_txq_stats(struct sk_buff *msg, |
| struct cfg80211_txq_stats *txqstats, |
| int attrtype) |
| { |
| struct nlattr *txqattr; |
| |
| #define PUT_TXQVAL_U32(attr, memb) do { \ |
| if (txqstats->filled & BIT(NL80211_TXQ_STATS_ ## attr) && \ |
| nla_put_u32(msg, NL80211_TXQ_STATS_ ## attr, txqstats->memb)) \ |
| return false; \ |
| } while (0) |
| |
| txqattr = nla_nest_start_noflag(msg, attrtype); |
| if (!txqattr) |
| return false; |
| |
| PUT_TXQVAL_U32(BACKLOG_BYTES, backlog_bytes); |
| PUT_TXQVAL_U32(BACKLOG_PACKETS, backlog_packets); |
| PUT_TXQVAL_U32(FLOWS, flows); |
| PUT_TXQVAL_U32(DROPS, drops); |
| PUT_TXQVAL_U32(ECN_MARKS, ecn_marks); |
| PUT_TXQVAL_U32(OVERLIMIT, overlimit); |
| PUT_TXQVAL_U32(OVERMEMORY, overmemory); |
| PUT_TXQVAL_U32(COLLISIONS, collisions); |
| PUT_TXQVAL_U32(TX_BYTES, tx_bytes); |
| PUT_TXQVAL_U32(TX_PACKETS, tx_packets); |
| PUT_TXQVAL_U32(MAX_FLOWS, max_flows); |
| nla_nest_end(msg, txqattr); |
| |
| #undef PUT_TXQVAL_U32 |
| return true; |
| } |
| |
| /* netlink command implementations */ |
| |
| struct key_parse { |
| struct key_params p; |
| int idx; |
| int type; |
| bool def, defmgmt; |
| bool def_uni, def_multi; |
| }; |
| |
| static int nl80211_parse_key_new(struct genl_info *info, struct nlattr *key, |
| struct key_parse *k) |
| { |
| struct nlattr *tb[NL80211_KEY_MAX + 1]; |
| int err = nla_parse_nested_deprecated(tb, NL80211_KEY_MAX, key, |
| nl80211_key_policy, |
| info->extack); |
| if (err) |
| return err; |
| |
| k->def = !!tb[NL80211_KEY_DEFAULT]; |
| k->defmgmt = !!tb[NL80211_KEY_DEFAULT_MGMT]; |
| |
| if (k->def) { |
| k->def_uni = true; |
| k->def_multi = true; |
| } |
| if (k->defmgmt) |
| k->def_multi = true; |
| |
| if (tb[NL80211_KEY_IDX]) |
| k->idx = nla_get_u8(tb[NL80211_KEY_IDX]); |
| |
| if (tb[NL80211_KEY_DATA]) { |
| k->p.key = nla_data(tb[NL80211_KEY_DATA]); |
| k->p.key_len = nla_len(tb[NL80211_KEY_DATA]); |
| } |
| |
| if (tb[NL80211_KEY_SEQ]) { |
| k->p.seq = nla_data(tb[NL80211_KEY_SEQ]); |
| k->p.seq_len = nla_len(tb[NL80211_KEY_SEQ]); |
| } |
| |
| if (tb[NL80211_KEY_CIPHER]) |
| k->p.cipher = nla_get_u32(tb[NL80211_KEY_CIPHER]); |
| |
| if (tb[NL80211_KEY_TYPE]) |
| k->type = nla_get_u32(tb[NL80211_KEY_TYPE]); |
| |
| if (tb[NL80211_KEY_DEFAULT_TYPES]) { |
| struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES]; |
| |
| err = nla_parse_nested_deprecated(kdt, |
| NUM_NL80211_KEY_DEFAULT_TYPES - 1, |
| tb[NL80211_KEY_DEFAULT_TYPES], |
| nl80211_key_default_policy, |
| info->extack); |
| if (err) |
| return err; |
| |
| k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST]; |
| k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST]; |
| } |
| |
| if (tb[NL80211_KEY_MODE]) |
| k->p.mode = nla_get_u8(tb[NL80211_KEY_MODE]); |
| |
| return 0; |
| } |
| |
| static int nl80211_parse_key_old(struct genl_info *info, struct key_parse *k) |
| { |
| if (info->attrs[NL80211_ATTR_KEY_DATA]) { |
| k->p.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]); |
| k->p.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]); |
| } |
| |
| if (info->attrs[NL80211_ATTR_KEY_SEQ]) { |
| k->p.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]); |
| k->p.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]); |
| } |
| |
| if (info->attrs[NL80211_ATTR_KEY_IDX]) |
| k->idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]); |
| |
| if (info->attrs[NL80211_ATTR_KEY_CIPHER]) |
| k->p.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]); |
| |
| k->def = !!info->attrs[NL80211_ATTR_KEY_DEFAULT]; |
| k->defmgmt = !!info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT]; |
| |
| if (k->def) { |
| k->def_uni = true; |
| k->def_multi = true; |
| } |
| if (k->defmgmt) |
| k->def_multi = true; |
| |
| if (info->attrs[NL80211_ATTR_KEY_TYPE]) |
| k->type = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]); |
| |
| if (info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES]) { |
| struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES]; |
| int err = nla_parse_nested_deprecated(kdt, |
| NUM_NL80211_KEY_DEFAULT_TYPES - 1, |
| info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES], |
| nl80211_key_default_policy, |
| info->extack); |
| if (err) |
| return err; |
| |
| k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST]; |
| k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST]; |
| } |
| |
| return 0; |
| } |
| |
| static int nl80211_parse_key(struct genl_info *info, struct key_parse *k) |
| { |
| int err; |
| |
| memset(k, 0, sizeof(*k)); |
| k->idx = -1; |
| k->type = -1; |
| |
| if (info->attrs[NL80211_ATTR_KEY]) |
| err = nl80211_parse_key_new(info, info->attrs[NL80211_ATTR_KEY], k); |
| else |
| err = nl80211_parse_key_old(info, k); |
| |
| if (err) |
| return err; |
| |
| if (k->def && k->defmgmt) { |
| GENL_SET_ERR_MSG(info, "key with def && defmgmt is invalid"); |
| return -EINVAL; |
| } |
| |
| if (k->defmgmt) { |
| if (k->def_uni || !k->def_multi) { |
| GENL_SET_ERR_MSG(info, "defmgmt key must be mcast"); |
| return -EINVAL; |
| } |
| } |
| |
| if (k->idx != -1) { |
| if (k->defmgmt) { |
| if (k->idx < 4 || k->idx > 5) { |
| GENL_SET_ERR_MSG(info, |
| "defmgmt key idx not 4 or 5"); |
| return -EINVAL; |
| } |
| } else if (k->def) { |
| if (k->idx < 0 || k->idx > 3) { |
| GENL_SET_ERR_MSG(info, "def key idx not 0-3"); |
| return -EINVAL; |
| } |
| } else { |
| if (k->idx < 0 || k->idx > 5) { |
| GENL_SET_ERR_MSG(info, "key idx not 0-5"); |
| return -EINVAL; |
| } |
| } |
| } |
| |
| return 0; |
| } |
| |
| static struct cfg80211_cached_keys * |
| nl80211_parse_connkeys(struct cfg80211_registered_device *rdev, |
| struct genl_info *info, bool *no_ht) |
| { |
| struct nlattr *keys = info->attrs[NL80211_ATTR_KEYS]; |
| struct key_parse parse; |
| struct nlattr *key; |
| struct cfg80211_cached_keys *result; |
| int rem, err, def = 0; |
| bool have_key = false; |
| |
| nla_for_each_nested(key, keys, rem) { |
| have_key = true; |
| break; |
| } |
| |
| if (!have_key) |
| return NULL; |
| |
| result = kzalloc(sizeof(*result), GFP_KERNEL); |
| if (!result) |
| return ERR_PTR(-ENOMEM); |
| |
| result->def = -1; |
| |
| nla_for_each_nested(key, keys, rem) { |
| memset(&parse, 0, sizeof(parse)); |
| parse.idx = -1; |
| |
| err = nl80211_parse_key_new(info, key, &parse); |
| if (err) |
| goto error; |
| err = -EINVAL; |
| if (!parse.p.key) |
| goto error; |
| if (parse.idx < 0 || parse.idx > 3) { |
| GENL_SET_ERR_MSG(info, "key index out of range [0-3]"); |
| goto error; |
| } |
| if (parse.def) { |
| if (def) { |
| GENL_SET_ERR_MSG(info, |
| "only one key can be default"); |
| goto error; |
| } |
| def = 1; |
| result->def = parse.idx; |
| if (!parse.def_uni || !parse.def_multi) |
| goto error; |
| } else if (parse.defmgmt) |
| goto error; |
| err = cfg80211_validate_key_settings(rdev, &parse.p, |
| parse.idx, false, NULL); |
| if (err) |
| goto error; |
| if (parse.p.cipher != WLAN_CIPHER_SUITE_WEP40 && |
| parse.p.cipher != WLAN_CIPHER_SUITE_WEP104) { |
| GENL_SET_ERR_MSG(info, "connect key must be WEP"); |
| err = -EINVAL; |
| goto error; |
| } |
| result->params[parse.idx].cipher = parse.p.cipher; |
| result->params[parse.idx].key_len = parse.p.key_len; |
| result->params[parse.idx].key = result->data[parse.idx]; |
| memcpy(result->data[parse.idx], parse.p.key, parse.p.key_len); |
| |
| /* must be WEP key if we got here */ |
| if (no_ht) |
| *no_ht = true; |
| } |
| |
| if (result->def < 0) { |
| err = -EINVAL; |
| GENL_SET_ERR_MSG(info, "need a default/TX key"); |
| goto error; |
| } |
| |
| return result; |
| error: |
| kfree(result); |
| return ERR_PTR(err); |
| } |
| |
| static int nl80211_key_allowed(struct wireless_dev *wdev) |
| { |
| ASSERT_WDEV_LOCK(wdev); |
| |
| switch (wdev->iftype) { |
| case NL80211_IFTYPE_AP: |
| case NL80211_IFTYPE_AP_VLAN: |
| case NL80211_IFTYPE_P2P_GO: |
| case NL80211_IFTYPE_MESH_POINT: |
| break; |
| case NL80211_IFTYPE_ADHOC: |
| case NL80211_IFTYPE_STATION: |
| case NL80211_IFTYPE_P2P_CLIENT: |
| if (!wdev->current_bss) |
| return -ENOLINK; |
| break; |
| case NL80211_IFTYPE_UNSPECIFIED: |
| case NL80211_IFTYPE_OCB: |
| case NL80211_IFTYPE_MONITOR: |
| case NL80211_IFTYPE_NAN: |
| case NL80211_IFTYPE_P2P_DEVICE: |
| case NL80211_IFTYPE_WDS: |
| case NUM_NL80211_IFTYPES: |
| return -EINVAL; |
| } |
| |
| return 0; |
| } |
| |
| static struct ieee80211_channel *nl80211_get_valid_chan(struct wiphy *wiphy, |
| struct nlattr *tb) |
| { |
| struct ieee80211_channel *chan; |
| |
| if (tb == NULL) |
| return NULL; |
| chan = ieee80211_get_channel(wiphy, nla_get_u32(tb)); |
| if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) |
| return NULL; |
| return chan; |
| } |
| |
| static int nl80211_put_iftypes(struct sk_buff *msg, u32 attr, u16 ifmodes) |
| { |
| struct nlattr *nl_modes = nla_nest_start_noflag(msg, attr); |
| int i; |
| |
| if (!nl_modes) |
| goto nla_put_failure; |
| |
| i = 0; |
| while (ifmodes) { |
| if ((ifmodes & 1) && nla_put_flag(msg, i)) |
| goto nla_put_failure; |
| ifmodes >>= 1; |
| i++; |
| } |
| |
| nla_nest_end(msg, nl_modes); |
| return 0; |
| |
| nla_put_failure: |
| return -ENOBUFS; |
| } |
| |
| static int nl80211_put_iface_combinations(struct wiphy *wiphy, |
| struct sk_buff *msg, |
| bool large) |
| { |
| struct nlattr *nl_combis; |
| int i, j; |
| |
| nl_combis = nla_nest_start_noflag(msg, |
| NL80211_ATTR_INTERFACE_COMBINATIONS); |
| if (!nl_combis) |
| goto nla_put_failure; |
| |
| for (i = 0; i < wiphy->n_iface_combinations; i++) { |
| const struct ieee80211_iface_combination *c; |
| struct nlattr *nl_combi, *nl_limits; |
| |
| c = &wiphy->iface_combinations[i]; |
| |
| nl_combi = nla_nest_start_noflag(msg, i + 1); |
| if (!nl_combi) |
| goto nla_put_failure; |
| |
| nl_limits = nla_nest_start_noflag(msg, |
| NL80211_IFACE_COMB_LIMITS); |
| if (!nl_limits) |
| goto nla_put_failure; |
| |
| for (j = 0; j < c->n_limits; j++) { |
| struct nlattr *nl_limit; |
| |
| nl_limit = nla_nest_start_noflag(msg, j + 1); |
| if (!nl_limit) |
| goto nla_put_failure; |
| if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX, |
| c->limits[j].max)) |
| goto nla_put_failure; |
| if (nl80211_put_iftypes(msg, NL80211_IFACE_LIMIT_TYPES, |
| c->limits[j].types)) |
| goto nla_put_failure; |
| nla_nest_end(msg, nl_limit); |
| } |
| |
| nla_nest_end(msg, nl_limits); |
| |
| if (c->beacon_int_infra_match && |
| nla_put_flag(msg, NL80211_IFACE_COMB_STA_AP_BI_MATCH)) |
| goto nla_put_failure; |
| if (nla_put_u32(msg, NL80211_IFACE_COMB_NUM_CHANNELS, |
| c->num_different_channels) || |
| nla_put_u32(msg, NL80211_IFACE_COMB_MAXNUM, |
| c->max_interfaces)) |
| goto nla_put_failure; |
| if (large && |
| (nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS, |
| c->radar_detect_widths) || |
| nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_REGIONS, |
| c->radar_detect_regions))) |
| goto nla_put_failure; |
| if (c->beacon_int_min_gcd && |
| nla_put_u32(msg, NL80211_IFACE_COMB_BI_MIN_GCD, |
| c->beacon_int_min_gcd)) |
| goto nla_put_failure; |
| |
| nla_nest_end(msg, nl_combi); |
| } |
| |
| nla_nest_end(msg, nl_combis); |
| |
| return 0; |
| nla_put_failure: |
| return -ENOBUFS; |
| } |
| |
| #ifdef CONFIG_PM |
| static int nl80211_send_wowlan_tcp_caps(struct cfg80211_registered_device *rdev, |
| struct sk_buff *msg) |
| { |
| const struct wiphy_wowlan_tcp_support *tcp = rdev->wiphy.wowlan->tcp; |
| struct nlattr *nl_tcp; |
| |
| if (!tcp) |
| return 0; |
| |
| nl_tcp = nla_nest_start_noflag(msg, |
| NL80211_WOWLAN_TRIG_TCP_CONNECTION); |
| if (!nl_tcp) |
| return -ENOBUFS; |
| |
| if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD, |
| tcp->data_payload_max)) |
| return -ENOBUFS; |
| |
| if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD, |
| tcp->data_payload_max)) |
| return -ENOBUFS; |
| |
| if (tcp->seq && nla_put_flag(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ)) |
| return -ENOBUFS; |
| |
| if (tcp->tok && nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN, |
| sizeof(*tcp->tok), tcp->tok)) |
| return -ENOBUFS; |
| |
| if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL, |
| tcp->data_interval_max)) |
| return -ENOBUFS; |
| |
| if (nla_put_u32(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD, |
| tcp->wake_payload_max)) |
| return -ENOBUFS; |
| |
| nla_nest_end(msg, nl_tcp); |
| return 0; |
| } |
| |
| static int nl80211_send_wowlan(struct sk_buff *msg, |
| struct cfg80211_registered_device *rdev, |
| bool large) |
| { |
| struct nlattr *nl_wowlan; |
| |
| if (!rdev->wiphy.wowlan) |
| return 0; |
| |
| nl_wowlan = nla_nest_start_noflag(msg, |
| NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED); |
| if (!nl_wowlan) |
| return -ENOBUFS; |
| |
| if (((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_ANY) && |
| nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) || |
| ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_DISCONNECT) && |
| nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) || |
| ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT) && |
| nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) || |
| ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY) && |
| nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED)) || |
| ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) && |
| nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) || |
| ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ) && |
| nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) || |
| ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE) && |
| nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) || |
| ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE) && |
| nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))) |
| return -ENOBUFS; |
| |
| if (rdev->wiphy.wowlan->n_patterns) { |
| struct nl80211_pattern_support pat = { |
| .max_patterns = rdev->wiphy.wowlan->n_patterns, |
| .min_pattern_len = rdev->wiphy.wowlan->pattern_min_len, |
| .max_pattern_len = rdev->wiphy.wowlan->pattern_max_len, |
| .max_pkt_offset = rdev->wiphy.wowlan->max_pkt_offset, |
| }; |
| |
| if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN, |
| sizeof(pat), &pat)) |
| return -ENOBUFS; |
| } |
| |
| if ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_NET_DETECT) && |
| nla_put_u32(msg, NL80211_WOWLAN_TRIG_NET_DETECT, |
| rdev->wiphy.wowlan->max_nd_match_sets)) |
| return -ENOBUFS; |
| |
| if (large && nl80211_send_wowlan_tcp_caps(rdev, msg)) |
| return -ENOBUFS; |
| |
| nla_nest_end(msg, nl_wowlan); |
| |
| return 0; |
| } |
| #endif |
| |
| static int nl80211_send_coalesce(struct sk_buff *msg, |
| struct cfg80211_registered_device *rdev) |
| { |
| struct nl80211_coalesce_rule_support rule; |
| |
| if (!rdev->wiphy.coalesce) |
| return 0; |
| |
| rule.max_rules = rdev->wiphy.coalesce->n_rules; |
| rule.max_delay = rdev->wiphy.coalesce->max_delay; |
| rule.pat.max_patterns = rdev->wiphy.coalesce->n_patterns; |
| rule.pat.min_pattern_len = rdev->wiphy.coalesce->pattern_min_len; |
| rule.pat.max_pattern_len = rdev->wiphy.coalesce->pattern_max_len; |
| rule.pat.max_pkt_offset = rdev->wiphy.coalesce->max_pkt_offset; |
| |
| if (nla_put(msg, NL80211_ATTR_COALESCE_RULE, sizeof(rule), &rule)) |
| return -ENOBUFS; |
| |
| return 0; |
| } |
| |
| static int |
| nl80211_send_iftype_data(struct sk_buff *msg, |
| const struct ieee80211_sband_iftype_data *iftdata) |
| { |
| const struct ieee80211_sta_he_cap *he_cap = &iftdata->he_cap; |
| |
| if (nl80211_put_iftypes(msg, NL80211_BAND_IFTYPE_ATTR_IFTYPES, |
| iftdata->types_mask)) |
| return -ENOBUFS; |
| |
| if (he_cap->has_he) { |
| if (nla_put(msg, NL80211_BAND_IFTYPE_ATTR_HE_CAP_MAC, |
| sizeof(he_cap->he_cap_elem.mac_cap_info), |
| he_cap->he_cap_elem.mac_cap_info) || |
| nla_put(msg, NL80211_BAND_IFTYPE_ATTR_HE_CAP_PHY, |
| sizeof(he_cap->he_cap_elem.phy_cap_info), |
| he_cap->he_cap_elem.phy_cap_info) || |
| nla_put(msg, NL80211_BAND_IFTYPE_ATTR_HE_CAP_MCS_SET, |
| sizeof(he_cap->he_mcs_nss_supp), |
| &he_cap->he_mcs_nss_supp) || |
| nla_put(msg, NL80211_BAND_IFTYPE_ATTR_HE_CAP_PPE, |
| sizeof(he_cap->ppe_thres), he_cap->ppe_thres)) |
| return -ENOBUFS; |
| } |
| |
| return 0; |
| } |
| |
| static int nl80211_send_band_rateinfo(struct sk_buff *msg, |
| struct ieee80211_supported_band *sband) |
| { |
| struct nlattr *nl_rates, *nl_rate; |
| struct ieee80211_rate *rate; |
| int i; |
| |
| /* add HT info */ |
| if (sband->ht_cap.ht_supported && |
| (nla_put(msg, NL80211_BAND_ATTR_HT_MCS_SET, |
| sizeof(sband->ht_cap.mcs), |
| &sband->ht_cap.mcs) || |
| nla_put_u16(msg, NL80211_BAND_ATTR_HT_CAPA, |
| sband->ht_cap.cap) || |
| nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR, |
| sband->ht_cap.ampdu_factor) || |
| nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY, |
| sband->ht_cap.ampdu_density))) |
| return -ENOBUFS; |
| |
| /* add VHT info */ |
| if (sband->vht_cap.vht_supported && |
| (nla_put(msg, NL80211_BAND_ATTR_VHT_MCS_SET, |
| sizeof(sband->vht_cap.vht_mcs), |
| &sband->vht_cap.vht_mcs) || |
| nla_put_u32(msg, NL80211_BAND_ATTR_VHT_CAPA, |
| sband->vht_cap.cap))) |
| return -ENOBUFS; |
| |
| if (sband->n_iftype_data) { |
| struct nlattr *nl_iftype_data = |
| nla_nest_start_noflag(msg, |
| NL80211_BAND_ATTR_IFTYPE_DATA); |
| int err; |
| |
| if (!nl_iftype_data) |
| return -ENOBUFS; |
| |
| for (i = 0; i < sband->n_iftype_data; i++) { |
| struct nlattr *iftdata; |
| |
| iftdata = nla_nest_start_noflag(msg, i + 1); |
| if (!iftdata) |
| return -ENOBUFS; |
| |
| err = nl80211_send_iftype_data(msg, |
| &sband->iftype_data[i]); |
| if (err) |
| return err; |
| |
| nla_nest_end(msg, iftdata); |
| } |
| |
| nla_nest_end(msg, nl_iftype_data); |
| } |
| |
| /* add bitrates */ |
| nl_rates = nla_nest_start_noflag(msg, NL80211_BAND_ATTR_RATES); |
| if (!nl_rates) |
| return -ENOBUFS; |
| |
| for (i = 0; i < sband->n_bitrates; i++) { |
| nl_rate = nla_nest_start_noflag(msg, i); |
| if (!nl_rate) |
| return -ENOBUFS; |
| |
| rate = &sband->bitrates[i]; |
| if (nla_put_u32(msg, NL80211_BITRATE_ATTR_RATE, |
| rate->bitrate)) |
| return -ENOBUFS; |
| if ((rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) && |
| nla_put_flag(msg, |
| NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE)) |
| return -ENOBUFS; |
| |
| nla_nest_end(msg, nl_rate); |
| } |
| |
| nla_nest_end(msg, nl_rates); |
| |
| return 0; |
| } |
| |
| static int |
| nl80211_send_mgmt_stypes(struct sk_buff *msg, |
| const struct ieee80211_txrx_stypes *mgmt_stypes) |
| { |
| u16 stypes; |
| struct nlattr *nl_ftypes, *nl_ifs; |
| enum nl80211_iftype ift; |
| int i; |
| |
| if (!mgmt_stypes) |
| return 0; |
| |
| nl_ifs = nla_nest_start_noflag(msg, NL80211_ATTR_TX_FRAME_TYPES); |
| if (!nl_ifs) |
| return -ENOBUFS; |
| |
| for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) { |
| nl_ftypes = nla_nest_start_noflag(msg, ift); |
| if (!nl_ftypes) |
| return -ENOBUFS; |
| i = 0; |
| stypes = mgmt_stypes[ift].tx; |
| while (stypes) { |
| if ((stypes & 1) && |
| nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE, |
| (i << 4) | IEEE80211_FTYPE_MGMT)) |
| return -ENOBUFS; |
| stypes >>= 1; |
| i++; |
| } |
| nla_nest_end(msg, nl_ftypes); |
| } |
| |
| nla_nest_end(msg, nl_ifs); |
| |
| nl_ifs = nla_nest_start_noflag(msg, NL80211_ATTR_RX_FRAME_TYPES); |
| if (!nl_ifs) |
| return -ENOBUFS; |
| |
| for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) { |
| nl_ftypes = nla_nest_start_noflag(msg, ift); |
| if (!nl_ftypes) |
| return -ENOBUFS; |
| i = 0; |
| stypes = mgmt_stypes[ift].rx; |
| while (stypes) { |
| if ((stypes & 1) && |
| nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE, |
| (i << 4) | IEEE80211_FTYPE_MGMT)) |
| return -ENOBUFS; |
| stypes >>= 1; |
| i++; |
| } |
| nla_nest_end(msg, nl_ftypes); |
| } |
| nla_nest_end(msg, nl_ifs); |
| |
| return 0; |
| } |
| |
| #define CMD(op, n) \ |
| do { \ |
| if (rdev->ops->op) { \ |
| i++; \ |
| if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \ |
| goto nla_put_failure; \ |
| } \ |
| } while (0) |
| |
| static int nl80211_add_commands_unsplit(struct cfg80211_registered_device *rdev, |
| struct sk_buff *msg) |
| { |
| int i = 0; |
| |
| /* |
| * do *NOT* add anything into this function, new things need to be |
| * advertised only to new versions of userspace that can deal with |
| * the split (and they can't possibly care about new features... |
| */ |
| CMD(add_virtual_intf, NEW_INTERFACE); |
| CMD(change_virtual_intf, SET_INTERFACE); |
| CMD(add_key, NEW_KEY); |
| CMD(start_ap, START_AP); |
| CMD(add_station, NEW_STATION); |
| CMD(add_mpath, NEW_MPATH); |
| CMD(update_mesh_config, SET_MESH_CONFIG); |
| CMD(change_bss, SET_BSS); |
| CMD(auth, AUTHENTICATE); |
| CMD(assoc, ASSOCIATE); |
| CMD(deauth, DEAUTHENTICATE); |
| CMD(disassoc, DISASSOCIATE); |
| CMD(join_ibss, JOIN_IBSS); |
| CMD(join_mesh, JOIN_MESH); |
| CMD(set_pmksa, SET_PMKSA); |
| CMD(del_pmksa, DEL_PMKSA); |
| CMD(flush_pmksa, FLUSH_PMKSA); |
| if (rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) |
| CMD(remain_on_channel, REMAIN_ON_CHANNEL); |
| CMD(set_bitrate_mask, SET_TX_BITRATE_MASK); |
| CMD(mgmt_tx, FRAME); |
| CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL); |
| if (rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK) { |
| i++; |
| if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS)) |
| goto nla_put_failure; |
| } |
| if (rdev->ops->set_monitor_channel || rdev->ops->start_ap || |
| rdev->ops->join_mesh) { |
| i++; |
| if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL)) |
| goto nla_put_failure; |
| } |
| CMD(set_wds_peer, SET_WDS_PEER); |
| if (rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) { |
| CMD(tdls_mgmt, TDLS_MGMT); |
| CMD(tdls_oper, TDLS_OPER); |
| } |
| if (rdev->wiphy.max_sched_scan_reqs) |
| CMD(sched_scan_start, START_SCHED_SCAN); |
| CMD(probe_client, PROBE_CLIENT); |
| CMD(set_noack_map, SET_NOACK_MAP); |
| if (rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) { |
| i++; |
| if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS)) |
| goto nla_put_failure; |
| } |
| CMD(start_p2p_device, START_P2P_DEVICE); |
| CMD(set_mcast_rate, SET_MCAST_RATE); |
| #ifdef CONFIG_NL80211_TESTMODE |
| CMD(testmode_cmd, TESTMODE); |
| #endif |
| |
| if (rdev->ops->connect || rdev->ops->auth) { |
| i++; |
| if (nla_put_u32(msg, i, NL80211_CMD_CONNECT)) |
| goto nla_put_failure; |
| } |
| |
| if (rdev->ops->disconnect || rdev->ops->deauth) { |
| i++; |
| if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT)) |
| goto nla_put_failure; |
| } |
| |
| return i; |
| nla_put_failure: |
| return -ENOBUFS; |
| } |
| |
| static int |
| nl80211_send_pmsr_ftm_capa(const struct cfg80211_pmsr_capabilities *cap, |
| struct sk_buff *msg) |
| { |
| struct nlattr *ftm; |
| |
| if (!cap->ftm.supported) |
| return 0; |
| |
| ftm = nla_nest_start_noflag(msg, NL80211_PMSR_TYPE_FTM); |
| if (!ftm) |
| return -ENOBUFS; |
| |
| if (cap->ftm.asap && nla_put_flag(msg, NL80211_PMSR_FTM_CAPA_ATTR_ASAP)) |
| return -ENOBUFS; |
| if (cap->ftm.non_asap && |
| nla_put_flag(msg, NL80211_PMSR_FTM_CAPA_ATTR_NON_ASAP)) |
| return -ENOBUFS; |
| if (cap->ftm.request_lci && |
| nla_put_flag(msg, NL80211_PMSR_FTM_CAPA_ATTR_REQ_LCI)) |
| return -ENOBUFS; |
| if (cap->ftm.request_civicloc && |
| nla_put_flag(msg, NL80211_PMSR_FTM_CAPA_ATTR_REQ_CIVICLOC)) |
| return -ENOBUFS; |
| if (nla_put_u32(msg, NL80211_PMSR_FTM_CAPA_ATTR_PREAMBLES, |
| cap->ftm.preambles)) |
| return -ENOBUFS; |
| if (nla_put_u32(msg, NL80211_PMSR_FTM_CAPA_ATTR_BANDWIDTHS, |
| cap->ftm.bandwidths)) |
| return -ENOBUFS; |
| if (cap->ftm.max_bursts_exponent >= 0 && |
| nla_put_u32(msg, NL80211_PMSR_FTM_CAPA_ATTR_MAX_BURSTS_EXPONENT, |
| cap->ftm.max_bursts_exponent)) |
| return -ENOBUFS; |
| if (cap->ftm.max_ftms_per_burst && |
| nla_put_u32(msg, NL80211_PMSR_FTM_CAPA_ATTR_MAX_FTMS_PER_BURST, |
| cap->ftm.max_ftms_per_burst)) |
| return -ENOBUFS; |
| |
| nla_nest_end(msg, ftm); |
| return 0; |
| } |
| |
| static int nl80211_send_pmsr_capa(struct cfg80211_registered_device *rdev, |
| struct sk_buff *msg) |
| { |
| const struct cfg80211_pmsr_capabilities *cap = rdev->wiphy.pmsr_capa; |
| struct nlattr *pmsr, *caps; |
| |
| if (!cap) |
| return 0; |
| |
| /* |
| * we don't need to clean up anything here since the caller |
| * will genlmsg_cancel() if we fail |
| */ |
| |
| pmsr = nla_nest_start_noflag(msg, NL80211_ATTR_PEER_MEASUREMENTS); |
| if (!pmsr) |
| return -ENOBUFS; |
| |
| if (nla_put_u32(msg, NL80211_PMSR_ATTR_MAX_PEERS, cap->max_peers)) |
| return -ENOBUFS; |
| |
| if (cap->report_ap_tsf && |
| nla_put_flag(msg, NL80211_PMSR_ATTR_REPORT_AP_TSF)) |
| return -ENOBUFS; |
| |
| if (cap->randomize_mac_addr && |
| nla_put_flag(msg, NL80211_PMSR_ATTR_RANDOMIZE_MAC_ADDR)) |
| return -ENOBUFS; |
| |
| caps = nla_nest_start_noflag(msg, NL80211_PMSR_ATTR_TYPE_CAPA); |
| if (!caps) |
| return -ENOBUFS; |
| |
| if (nl80211_send_pmsr_ftm_capa(cap, msg)) |
| return -ENOBUFS; |
| |
| nla_nest_end(msg, caps); |
| nla_nest_end(msg, pmsr); |
| |
| return 0; |
| } |
| |
| struct nl80211_dump_wiphy_state { |
| s64 filter_wiphy; |
| long start; |
| long split_start, band_start, chan_start, capa_start; |
| bool split; |
| }; |
| |
| static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev, |
| enum nl80211_commands cmd, |
| struct sk_buff *msg, u32 portid, u32 seq, |
| int flags, struct nl80211_dump_wiphy_state *state) |
| { |
| void *hdr; |
| struct nlattr *nl_bands, *nl_band; |
| struct nlattr *nl_freqs, *nl_freq; |
| struct nlattr *nl_cmds; |
| enum nl80211_band band; |
| struct ieee80211_channel *chan; |
| int i; |
| const struct ieee80211_txrx_stypes *mgmt_stypes = |
| rdev->wiphy.mgmt_stypes; |
| u32 features; |
| |
| hdr = nl80211hdr_put(msg, portid, seq, flags, cmd); |
| if (!hdr) |
| return -ENOBUFS; |
| |
| if (WARN_ON(!state)) |
| return -EINVAL; |
| |
| if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) || |
| nla_put_string(msg, NL80211_ATTR_WIPHY_NAME, |
| wiphy_name(&rdev->wiphy)) || |
| nla_put_u32(msg, NL80211_ATTR_GENERATION, |
| cfg80211_rdev_list_generation)) |
| goto nla_put_failure; |
| |
| if (cmd != NL80211_CMD_NEW_WIPHY) |
| goto finish; |
| |
| switch (state->split_start) { |
| case 0: |
| if (nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT, |
| rdev->wiphy.retry_short) || |
| nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_LONG, |
| rdev->wiphy.retry_long) || |
| nla_put_u32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD, |
| rdev->wiphy.frag_threshold) || |
| nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, |
| rdev->wiphy.rts_threshold) || |
| nla_put_u8(msg, NL80211_ATTR_WIPHY_COVERAGE_CLASS, |
| rdev->wiphy.coverage_class) || |
| nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS, |
| rdev->wiphy.max_scan_ssids) || |
| nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS, |
| rdev->wiphy.max_sched_scan_ssids) || |
| nla_put_u16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN, |
| rdev->wiphy.max_scan_ie_len) || |
| nla_put_u16(msg, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN, |
| rdev->wiphy.max_sched_scan_ie_len) || |
| nla_put_u8(msg, NL80211_ATTR_MAX_MATCH_SETS, |
| rdev->wiphy.max_match_sets) || |
| nla_put_u32(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_PLANS, |
| rdev->wiphy.max_sched_scan_plans) || |
| nla_put_u32(msg, NL80211_ATTR_MAX_SCAN_PLAN_INTERVAL, |
| rdev->wiphy.max_sched_scan_plan_interval) || |
| nla_put_u32(msg, NL80211_ATTR_MAX_SCAN_PLAN_ITERATIONS, |
| rdev->wiphy.max_sched_scan_plan_iterations)) |
| goto nla_put_failure; |
| |
| if ((rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN) && |
| nla_put_flag(msg, NL80211_ATTR_SUPPORT_IBSS_RSN)) |
| goto nla_put_failure; |
| if ((rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) && |
| nla_put_flag(msg, NL80211_ATTR_SUPPORT_MESH_AUTH)) |
| goto nla_put_failure; |
| if ((rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) && |
| nla_put_flag(msg, NL80211_ATTR_SUPPORT_AP_UAPSD)) |
| goto nla_put_failure; |
| if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) && |
| nla_put_flag(msg, NL80211_ATTR_ROAM_SUPPORT)) |
| goto nla_put_failure; |
| if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) && |
| nla_put_flag(msg, NL80211_ATTR_TDLS_SUPPORT)) |
| goto nla_put_failure; |
| if ((rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP) && |
| nla_put_flag(msg, NL80211_ATTR_TDLS_EXTERNAL_SETUP)) |
| goto nla_put_failure; |
| state->split_start++; |
| if (state->split) |
| break; |
| /* fall through */ |
| case 1: |
| if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES, |
| sizeof(u32) * rdev->wiphy.n_cipher_suites, |
| rdev->wiphy.cipher_suites)) |
| goto nla_put_failure; |
| |
| if (nla_put_u8(msg, NL80211_ATTR_MAX_NUM_PMKIDS, |
| rdev->wiphy.max_num_pmkids)) |
| goto nla_put_failure; |
| |
| if ((rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) && |
| nla_put_flag(msg, NL80211_ATTR_CONTROL_PORT_ETHERTYPE)) |
| goto nla_put_failure; |
| |
| if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX, |
| rdev->wiphy.available_antennas_tx) || |
| nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX, |
| rdev->wiphy.available_antennas_rx)) |
| goto nla_put_failure; |
| |
| if ((rdev->wiphy.flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) && |
| nla_put_u32(msg, NL80211_ATTR_PROBE_RESP_OFFLOAD, |
| rdev->wiphy.probe_resp_offload)) |
| goto nla_put_failure; |
| |
| if ((rdev->wiphy.available_antennas_tx || |
| rdev->wiphy.available_antennas_rx) && |
| rdev->ops->get_antenna) { |
| u32 tx_ant = 0, rx_ant = 0; |
| int res; |
| |
| res = rdev_get_antenna(rdev, &tx_ant, &rx_ant); |
| if (!res) { |
| if (nla_put_u32(msg, |
| NL80211_ATTR_WIPHY_ANTENNA_TX, |
| tx_ant) || |
| nla_put_u32(msg, |
| NL80211_ATTR_WIPHY_ANTENNA_RX, |
| rx_ant)) |
| goto nla_put_failure; |
| } |
| } |
| |
| state->split_start++; |
| if (state->split) |
| break; |
| /* fall through */ |
| case 2: |
| if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES, |
| rdev->wiphy.interface_modes)) |
| goto nla_put_failure; |
| state->split_start++; |
| if (state->split) |
| break; |
| /* fall through */ |
| case 3: |
| nl_bands = nla_nest_start_noflag(msg, |
| NL80211_ATTR_WIPHY_BANDS); |
| if (!nl_bands) |
| goto nla_put_failure; |
| |
| for (band = state->band_start; |
| band < NUM_NL80211_BANDS; band++) { |
| struct ieee80211_supported_band *sband; |
| |
| sband = rdev->wiphy.bands[band]; |
| |
| if (!sband) |
| continue; |
| |
| nl_band = nla_nest_start_noflag(msg, band); |
| if (!nl_band) |
| goto nla_put_failure; |
| |
| switch (state->chan_start) { |
| case 0: |
| if (nl80211_send_band_rateinfo(msg, sband)) |
| goto nla_put_failure; |
| state->chan_start++; |
| if (state->split) |
| break; |
| /* fall through */ |
| default: |
| /* add frequencies */ |
| nl_freqs = nla_nest_start_noflag(msg, |
| NL80211_BAND_ATTR_FREQS); |
| if (!nl_freqs) |
| goto nla_put_failure; |
| |
| for (i = state->chan_start - 1; |
| i < sband->n_channels; |
| i++) { |
| nl_freq = nla_nest_start_noflag(msg, |
| i); |
| if (!nl_freq) |
| goto nla_put_failure; |
| |
| chan = &sband->channels[i]; |
| |
| if (nl80211_msg_put_channel( |
| msg, &rdev->wiphy, chan, |
| state->split)) |
| goto nla_put_failure; |
| |
| nla_nest_end(msg, nl_freq); |
| if (state->split) |
| break; |
| } |
| if (i < sband->n_channels) |
| state->chan_start = i + 2; |
| else |
| state->chan_start = 0; |
| nla_nest_end(msg, nl_freqs); |
| } |
| |
| nla_nest_end(msg, nl_band); |
| |
| if (state->split) { |
| /* start again here */ |
| if (state->chan_start) |
| band--; |
| break; |
| } |
| } |
| nla_nest_end(msg, nl_bands); |
| |
| if (band < NUM_NL80211_BANDS) |
| state->band_start = band + 1; |
| else |
| state->band_start = 0; |
| |
| /* if bands & channels are done, continue outside */ |
| if (state->band_start == 0 && state->chan_start == 0) |
| state->split_start++; |
| if (state->split) |
| break; |
| /* fall through */ |
| case 4: |
| nl_cmds = nla_nest_start_noflag(msg, |
| NL80211_ATTR_SUPPORTED_COMMANDS); |
| if (!nl_cmds) |
| goto nla_put_failure; |
| |
| i = nl80211_add_commands_unsplit(rdev, msg); |
| if (i < 0) |
| goto nla_put_failure; |
| if (state->split) { |
| CMD(crit_proto_start, CRIT_PROTOCOL_START); |
| CMD(crit_proto_stop, CRIT_PROTOCOL_STOP); |
| if (rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH) |
| CMD(channel_switch, CHANNEL_SWITCH); |
| CMD(set_qos_map, SET_QOS_MAP); |
| if (rdev->wiphy.features & |
| NL80211_FEATURE_SUPPORTS_WMM_ADMISSION) |
| CMD(add_tx_ts, ADD_TX_TS); |
| CMD(set_multicast_to_unicast, SET_MULTICAST_TO_UNICAST); |
| CMD(update_connect_params, UPDATE_CONNECT_PARAMS); |
| } |
| #undef CMD |
| |
| nla_nest_end(msg, nl_cmds); |
| state->split_start++; |
| if (state->split) |
| break; |
| /* fall through */ |
| case 5: |
| if (rdev->ops->remain_on_channel && |
| (rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) && |
| nla_put_u32(msg, |
| NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION, |
| rdev->wiphy.max_remain_on_channel_duration)) |
| goto nla_put_failure; |
| |
| if ((rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) && |
| nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK)) |
| goto nla_put_failure; |
| |
| if (nl80211_send_mgmt_stypes(msg, mgmt_stypes)) |
| goto nla_put_failure; |
| state->split_start++; |
| if (state->split) |
| break; |
| /* fall through */ |
| case 6: |
| #ifdef CONFIG_PM |
| if (nl80211_send_wowlan(msg, rdev, state->split)) |
| goto nla_put_failure; |
| state->split_start++; |
| if (state->split) |
| break; |
| #else |
| state->split_start++; |
| #endif |
| /* fall through */ |
| case 7: |
| if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES, |
| rdev->wiphy.software_iftypes)) |
| goto nla_put_failure; |
| |
| if (nl80211_put_iface_combinations(&rdev->wiphy, msg, |
| state->split)) |
| goto nla_put_failure; |
| |
| state->split_start++; |
| if (state->split) |
| break; |
| /* fall through */ |
| case 8: |
| if ((rdev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) && |
| nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME, |
| rdev->wiphy.ap_sme_capa)) |
| goto nla_put_failure; |
| |
| features = rdev->wiphy.features; |
| /* |
| * We can only add the per-channel limit information if the |
| * dump is split, otherwise it makes it too big. Therefore |
| * only advertise it in that case. |
| */ |
| if (state->split) |
| features |= NL80211_FEATURE_ADVERTISE_CHAN_LIMITS; |
| if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS, features)) |
| goto nla_put_failure; |
| |
| if (rdev->wiphy.ht_capa_mod_mask && |
| nla_put(msg, NL80211_ATTR_HT_CAPABILITY_MASK, |
| sizeof(*rdev->wiphy.ht_capa_mod_mask), |
| rdev->wiphy.ht_capa_mod_mask)) |
| goto nla_put_failure; |
| |
| if (rdev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME && |
| rdev->wiphy.max_acl_mac_addrs && |
| nla_put_u32(msg, NL80211_ATTR_MAC_ACL_MAX, |
| rdev->wiphy.max_acl_mac_addrs)) |
| goto nla_put_failure; |
| |
| /* |
| * Any information below this point is only available to |
| * applications that can deal with it being split. This |
| * helps ensure that newly added capabilities don't break |
| * older tools by overrunning their buffers. |
| * |
| * We still increment split_start so that in the split |
| * case we'll continue with more data in the next round, |
| * but break unconditionally so unsplit data stops here. |
| */ |
| state->split_start++; |
| break; |
| case 9: |
| if (rdev->wiphy.extended_capabilities && |
| (nla_put(msg, NL80211_ATTR_EXT_CAPA, |
| rdev->wiphy.extended_capabilities_len, |
| rdev->wiphy.extended_capabilities) || |
| nla_put(msg, NL80211_ATTR_EXT_CAPA_MASK, |
| rdev->wiphy.extended_capabilities_len, |
| rdev->wiphy.extended_capabilities_mask))) |
| goto nla_put_failure; |
| |
| if (rdev->wiphy.vht_capa_mod_mask && |
| nla_put(msg, NL80211_ATTR_VHT_CAPABILITY_MASK, |
| sizeof(*rdev->wiphy.vht_capa_mod_mask), |
| rdev->wiphy.vht_capa_mod_mask)) |
| goto nla_put_failure; |
| |
| state->split_start++; |
| break; |
| case 10: |
| if (nl80211_send_coalesce(msg, rdev)) |
| goto nla_put_failure; |
| |
| if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ) && |
| (nla_put_flag(msg, NL80211_ATTR_SUPPORT_5_MHZ) || |
| nla_put_flag(msg, NL80211_ATTR_SUPPORT_10_MHZ))) |
| goto nla_put_failure; |
| |
| if (rdev->wiphy.max_ap_assoc_sta && |
| nla_put_u32(msg, NL80211_ATTR_MAX_AP_ASSOC_STA, |
| rdev->wiphy.max_ap_assoc_sta)) |
| goto nla_put_failure; |
| |
| state->split_start++; |
| break; |
| case 11: |
| if (rdev->wiphy.n_vendor_commands) { |
| const struct nl80211_vendor_cmd_info *info; |
| struct nlattr *nested; |
| |
| nested = nla_nest_start_noflag(msg, |
| NL80211_ATTR_VENDOR_DATA); |
| if (!nested) |
| goto nla_put_failure; |
| |
| for (i = 0; i < rdev->wiphy.n_vendor_commands; i++) { |
| info = &rdev->wiphy.vendor_commands[i].info; |
| if (nla_put(msg, i + 1, sizeof(*info), info)) |
| goto nla_put_failure; |
| } |
| nla_nest_end(msg, nested); |
| } |
| |
| if (rdev->wiphy.n_vendor_events) { |
| const struct nl80211_vendor_cmd_info *info; |
| struct nlattr *nested; |
| |
| nested = nla_nest_start_noflag(msg, |
| NL80211_ATTR_VENDOR_EVENTS); |
| if (!nested) |
| goto nla_put_failure; |
| |
| for (i = 0; i < rdev->wiphy.n_vendor_events; i++) { |
| info = &rdev->wiphy.vendor_events[i]; |
| if (nla_put(msg, i + 1, sizeof(*info), info)) |
| goto nla_put_failure; |
| } |
| nla_nest_end(msg, nested); |
| } |
| state->split_start++; |
| break; |
| case 12: |
| if (rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH && |
| nla_put_u8(msg, NL80211_ATTR_MAX_CSA_COUNTERS, |
| rdev->wiphy.max_num_csa_counters)) |
| goto nla_put_failure; |
| |
| if (rdev->wiphy.regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED && |
| nla_put_flag(msg, NL80211_ATTR_WIPHY_SELF_MANAGED_REG)) |
| goto nla_put_failure; |
| |
| if (rdev->wiphy.max_sched_scan_reqs && |
| nla_put_u32(msg, NL80211_ATTR_SCHED_SCAN_MAX_REQS, |
| rdev->wiphy.max_sched_scan_reqs)) |
| goto nla_put_failure; |
| |
| if (nla_put(msg, NL80211_ATTR_EXT_FEATURES, |
| sizeof(rdev->wiphy.ext_features), |
| rdev->wiphy.ext_features)) |
| goto nla_put_failure; |
| |
| if (rdev->wiphy.bss_select_support) { |
| struct nlattr *nested; |
| u32 bss_select_support = rdev->wiphy.bss_select_support; |
| |
| nested = nla_nest_start_noflag(msg, |
| NL80211_ATTR_BSS_SELECT); |
| if (!nested) |
| goto nla_put_failure; |
| |
| i = 0; |
| while (bss_select_support) { |
| if ((bss_select_support & 1) && |
| nla_put_flag(msg, i)) |
| goto nla_put_failure; |
| i++; |
| bss_select_support >>= 1; |
| } |
| nla_nest_end(msg, nested); |
| } |
| |
| state->split_start++; |
| break; |
| case 13: |
| if (rdev->wiphy.num_iftype_ext_capab && |
| rdev->wiphy.iftype_ext_capab) { |
| struct nlattr *nested_ext_capab, *nested; |
| |
| nested = nla_nest_start_noflag(msg, |
| NL80211_ATTR_IFTYPE_EXT_CAPA); |
| if (!nested) |
| goto nla_put_failure; |
| |
| for (i = state->capa_start; |
| i < rdev->wiphy.num_iftype_ext_capab; i++) { |
| const struct wiphy_iftype_ext_capab *capab; |
| |
| capab = &rdev->wiphy.iftype_ext_capab[i]; |
| |
| nested_ext_capab = nla_nest_start_noflag(msg, |
| i); |
| if (!nested_ext_capab || |
| nla_put_u32(msg, NL80211_ATTR_IFTYPE, |
| capab->iftype) || |
| nla_put(msg, NL80211_ATTR_EXT_CAPA, |
| capab->extended_capabilities_len, |
| capab->extended_capabilities) || |
| nla_put(msg, NL80211_ATTR_EXT_CAPA_MASK, |
| capab->extended_capabilities_len, |
| capab->extended_capabilities_mask)) |
| goto nla_put_failure; |
| |
| nla_nest_end(msg, nested_ext_capab); |
| if (state->split) |
| break; |
| } |
| nla_nest_end(msg, nested); |
| if (i < rdev->wiphy.num_iftype_ext_capab) { |
| state->capa_start = i + 1; |
| break; |
| } |
| } |
| |
| if (nla_put_u32(msg, NL80211_ATTR_BANDS, |
| rdev->wiphy.nan_supported_bands)) |
| goto nla_put_failure; |
| |
| if (wiphy_ext_feature_isset(&rdev->wiphy, |
| NL80211_EXT_FEATURE_TXQS)) { |
| struct cfg80211_txq_stats txqstats = {}; |
| int res; |
| |
| res = rdev_get_txq_stats(rdev, NULL, &txqstats); |
| if (!res && |
| !nl80211_put_txq_stats(msg, &txqstats, |
| NL80211_ATTR_TXQ_STATS)) |
| goto nla_put_failure; |
| |
| if (nla_put_u32(msg, NL80211_ATTR_TXQ_LIMIT, |
| rdev->wiphy.txq_limit)) |
| goto nla_put_failure; |
| if (nla_put_u32(msg, NL80211_ATTR_TXQ_MEMORY_LIMIT, |
| rdev->wiphy.txq_memory_limit)) |
| goto nla_put_failure; |
| if (nla_put_u32(msg, NL80211_ATTR_TXQ_QUANTUM, |
| rdev->wiphy.txq_quantum)) |
| goto nla_put_failure; |
| } |
| |
| state->split_start++; |
| break; |
| case 14: |
| if (nl80211_send_pmsr_capa(rdev, msg)) |
| goto nla_put_failure; |
| |
| state->split_start++; |
| break; |
| case 15: |
| if (rdev->wiphy.akm_suites && |
| nla_put(msg, NL80211_ATTR_AKM_SUITES, |
| sizeof(u32) * rdev->wiphy.n_akm_suites, |
| rdev->wiphy.akm_suites)) |
| goto nla_put_failure; |
| |
| /* done */ |
| state->split_start = 0; |
| break; |
| } |
| finish: |
| genlmsg_end(msg, hdr); |
| return 0; |
| |
| nla_put_failure: |
| genlmsg_cancel(msg, hdr); |
| return -EMSGSIZE; |
| } |
| |
| static int nl80211_dump_wiphy_parse(struct sk_buff *skb, |
| struct netlink_callback *cb, |
| struct nl80211_dump_wiphy_state *state) |
| { |
| struct nlattr **tb = genl_family_attrbuf(&nl80211_fam); |
| int ret = nlmsg_parse_deprecated(cb->nlh, |
| GENL_HDRLEN + nl80211_fam.hdrsize, |
| tb, nl80211_fam.maxattr, |
| nl80211_policy, NULL); |
| /* ignore parse errors for backward compatibility */ |
| if (ret) |
| return 0; |
| |
| state->split = tb[NL80211_ATTR_SPLIT_WIPHY_DUMP]; |
| if (tb[NL80211_ATTR_WIPHY]) |
| state->filter_wiphy = nla_get_u32(tb[NL80211_ATTR_WIPHY]); |
| if (tb[NL80211_ATTR_WDEV]) |
| state->filter_wiphy = nla_get_u64(tb[NL80211_ATTR_WDEV]) >> 32; |
| if (tb[NL80211_ATTR_IFINDEX]) { |
| struct net_device *netdev; |
| struct cfg80211_registered_device *rdev; |
| int ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]); |
| |
| netdev = __dev_get_by_index(sock_net(skb->sk), ifidx); |
| if (!netdev) |
| return -ENODEV; |
| if (netdev->ieee80211_ptr) { |
| rdev = wiphy_to_rdev( |
| netdev->ieee80211_ptr->wiphy); |
| state->filter_wiphy = rdev->wiphy_idx; |
| } |
| } |
| |
| return 0; |
| } |
| |
| static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb) |
| { |
| int idx = 0, ret; |
| struct nl80211_dump_wiphy_state *state = (void *)cb->args[0]; |
| struct cfg80211_registered_device *rdev; |
| |
| rtnl_lock(); |
| if (!state) { |
| state = kzalloc(sizeof(*state), GFP_KERNEL); |
| if (!state) { |
| rtnl_unlock(); |
| return -ENOMEM; |
| } |
| state->filter_wiphy = -1; |
| ret = nl80211_dump_wiphy_parse(skb, cb, state); |
| if (ret) { |
| kfree(state); |
| rtnl_unlock(); |
| return ret; |
| } |
| cb->args[0] = (long)state; |
| } |
| |
| list_for_each_entry(rdev, &cfg80211_rdev_list, list) { |
| if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk))) |
| continue; |
| if (++idx <= state->start) |
| continue; |
| if (state->filter_wiphy != -1 && |
| state->filter_wiphy != rdev->wiphy_idx) |
| continue; |
| /* attempt to fit multiple wiphy data chunks into the skb */ |
| do { |
| ret = nl80211_send_wiphy(rdev, NL80211_CMD_NEW_WIPHY, |
| skb, |
| NETLINK_CB(cb->skb).portid, |
| cb->nlh->nlmsg_seq, |
| NLM_F_MULTI, state); |
| if (ret < 0) { |
| /* |
| * If sending the wiphy data didn't fit (ENOBUFS |
| * or EMSGSIZE returned), this SKB is still |
| * empty (so it's not too big because another |
| * wiphy dataset is already in the skb) and |
| * we've not tried to adjust the dump allocation |
| * yet ... then adjust the alloc size to be |
| * bigger, and return 1 but with the empty skb. |
| * This results in an empty message being RX'ed |
| * in userspace, but that is ignored. |
| * |
| * We can then retry with the larger buffer. |
| */ |
| if ((ret == -ENOBUFS || ret == -EMSGSIZE) && |
| !skb->len && !state->split && |
| cb->min_dump_alloc < 4096) { |
| cb->min_dump_alloc = 4096; |
| state->split_start = 0; |
| rtnl_unlock(); |
| return 1; |
| } |
| idx--; |
| break; |
| } |
| } while (state->split_start > 0); |
| break; |
| } |
| rtnl_unlock(); |
| |
| state->start = idx; |
| |
| return skb->len; |
| } |
| |
| static int nl80211_dump_wiphy_done(struct netlink_callback *cb) |
| { |
| kfree((void *)cb->args[0]); |
| return 0; |
| } |
| |
| static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info) |
| { |
| struct sk_buff *msg; |
| struct cfg80211_registered_device *rdev = info->user_ptr[0]; |
| struct nl80211_dump_wiphy_state state = {}; |
| |
| msg = nlmsg_new(4096, GFP_KERNEL); |
| if (!msg) |
| return -ENOMEM; |
| |
| if (nl80211_send_wiphy(rdev, NL80211_CMD_NEW_WIPHY, msg, |
| info->snd_portid, info->snd_seq, 0, |
| &state) < 0) { |
| nlmsg_free(msg); |
| return -ENOBUFS; |
| } |
| |
| return genlmsg_reply(msg, info); |
| } |
| |
| static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = { |
| [NL80211_TXQ_ATTR_QUEUE] = { .type = NLA_U8 }, |
| [NL80211_TXQ_ATTR_TXOP] = { .type = NLA_U16 }, |
| [NL80211_TXQ_ATTR_CWMIN] = { .type = NLA_U16 }, |
| [NL80211_TXQ_ATTR_CWMAX] = { .type = NLA_U16 }, |
| [NL80211_TXQ_ATTR_AIFS] = { .type = NLA_U8 }, |
| }; |
| |
| static int parse_txq_params(struct nlattr *tb[], |
| struct ieee80211_txq_params *txq_params) |
| { |
| u8 ac; |
| |
| if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] || |
| !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] || |
| !tb[NL80211_TXQ_ATTR_AIFS]) |
| return -EINVAL; |
| |
| ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]); |
| txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]); |
| txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]); |
| txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]); |
| txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]); |
| |
| if (ac >= NL80211_NUM_ACS) |
| return -EINVAL; |
| txq_params->ac = array_index_nospec(ac, NL80211_NUM_ACS); |
| return 0; |
| } |
| |
| static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev) |
| { |
| /* |
| * You can only set the channel explicitly for WDS interfaces, |
| * all others have their channel managed via their respective |
| * "establish a connection" command (connect, join, ...) |
| * |
| * For AP/GO and mesh mode, the channel can be set with the |
| * channel userspace API, but is only stored and passed to the |
| * low-level driver when the AP starts or the mesh is joined. |
| * This is for backward compatibility, userspace can also give |
| * the channel in the start-ap or join-mesh commands instead. |
| * |
| * Monitors are special as they are normally slaved to |
| * whatever else is going on, so they have their own special |
| * operation to set the monitor channel if possible. |
| */ |
| return !wdev || |
| wdev->iftype == NL80211_IFTYPE_AP || |
| wdev->iftype == NL80211_IFTYPE_MESH_POINT || |
| wdev->iftype == NL80211_IFTYPE_MONITOR || |
| wdev->iftype == NL80211_IFTYPE_P2P_GO; |
| } |
| |
| int nl80211_parse_chandef(struct cfg80211_registered_device *rdev, |
| struct genl_info *info, |
| struct cfg80211_chan_def *chandef) |
| { |
| struct netlink_ext_ack *extack = info->extack; |
| struct nlattr **attrs = info->attrs; |
| u32 control_freq; |
| |
| if (!attrs[NL80211_ATTR_WIPHY_FREQ]) |
| return -EINVAL; |
| |
| control_freq = nla_get_u32(attrs[NL80211_ATTR_WIPHY_FREQ]); |
| |
| chandef->chan = ieee80211_get_channel(&rdev->wiphy, control_freq); |
| chandef->width = NL80211_CHAN_WIDTH_20_NOHT; |
| chandef->center_freq1 = control_freq; |
| chandef->center_freq2 = 0; |
| |
| /* Primary channel not allowed */ |
| if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED) { |
| NL_SET_ERR_MSG_ATTR(extack, attrs[NL80211_ATTR_WIPHY_FREQ], |
| "Channel is disabled"); |
| return -EINVAL; |
| } |
| |
| if (attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) { |
| enum nl80211_channel_type chantype; |
| |
| chantype = nla_get_u32(attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]); |
| |
| switch (chantype) { |
| case NL80211_CHAN_NO_HT: |
| case NL80211_CHAN_HT20: |
| case NL80211_CHAN_HT40PLUS: |
| case NL80211_CHAN_HT40MINUS: |
| cfg80211_chandef_create(chandef, chandef->chan, |
| chantype); |
| /* user input for center_freq is incorrect */ |
| if (attrs[NL80211_ATTR_CENTER_FREQ1] && |
| chandef->center_freq1 != nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ1])) { |
| NL_SET_ERR_MSG_ATTR(extack, |
| attrs[NL80211_ATTR_CENTER_FREQ1], |
| "bad center frequency 1"); |
| return -EINVAL; |
| } |
| /* center_freq2 must be zero */ |
| if (attrs[NL80211_ATTR_CENTER_FREQ2] && |
| nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ2])) { |
| NL_SET_ERR_MSG_ATTR(extack, |
| attrs[NL80211_ATTR_CENTER_FREQ2], |
| "center frequency 2 can't be used"); |
| return -EINVAL; |
| } |
| break; |
| default: |
| NL_SET_ERR_MSG_ATTR(extack, |
| attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE], |
| "invalid channel type"); |
| return -EINVAL; |
| } |
| } else if (attrs[NL80211_ATTR_CHANNEL_WIDTH]) { |
| chandef->width = |
| nla_get_u32(attrs[NL80211_ATTR_CHANNEL_WIDTH]); |
| if (attrs[NL80211_ATTR_CENTER_FREQ1]) |
| chandef->center_freq1 = |
| nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ1]); |
| if (attrs[NL80211_ATTR_CENTER_FREQ2]) |
| chandef->center_freq2 = |
| nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ2]); |
| } |
| |
| if (!cfg80211_chandef_valid(chandef)) { |
| NL_SET_ERR_MSG(extack, "invalid channel definition"); |
| return -EINVAL; |
| } |
| |
| if (!cfg80211_chandef_usable(&rdev->wiphy, chandef, |
| IEEE80211_CHAN_DISABLED)) { |
| NL_SET_ERR_MSG(extack, "(extension) channel is disabled"); |
| return -EINVAL; |
| } |
| |
| if ((chandef->width == NL80211_CHAN_WIDTH_5 || |
| chandef->width == NL80211_CHAN_WIDTH_10) && |
| !(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ)) { |
| NL_SET_ERR_MSG(extack, "5/10 MHz not supported"); |
| return -EINVAL; |
| } |
| |
| return 0; |
| } |
| |
| static int __nl80211_set_channel(struct cfg80211_registered_device *rdev, |
| struct net_device *dev, |
| struct genl_info *info) |
| { |
| struct cfg80211_chan_def chandef; |
| int result; |
| enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR; |
| struct wireless_dev *wdev = NULL; |
| |
| if (dev) |
| wdev = dev->ieee80211_ptr; |
| if (!nl80211_can_set_dev_channel(wdev)) |
| return -EOPNOTSUPP; |
| if (wdev) |
| iftype = wdev->iftype; |
| |
| result = nl80211_parse_chandef(rdev, info, &chandef); |
| if (result) |
| return result; |
| |
| switch (iftype) { |
| case NL80211_IFTYPE_AP: |
| case NL80211_IFTYPE_P2P_GO: |
| if (!cfg80211_reg_can_beacon_relax(&rdev->wiphy, &chandef, |
| iftype)) { |
| result = -EINVAL; |
| break; |
| } |
| if (wdev->beacon_interval) { |
| if (!dev || !rdev->ops->set_ap_chanwidth || |
| !(rdev->wiphy.features & |
| NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE)) { |
| result = -EBUSY; |
| break; |
| } |
| |
| /* Only allow dynamic channel width changes */ |
| if (chandef.chan != wdev->preset_chandef.chan) { |
| result = -EBUSY; |
| break; |
| } |
| result = rdev_set_ap_chanwidth(rdev, dev, &chandef); |
| if (result) |
| break; |
| } |
| wdev->preset_chandef = chandef; |
| result = 0; |
| break; |
| case NL80211_IFTYPE_MESH_POINT: |
| result = cfg80211_set_mesh_channel(rdev, wdev, &chandef); |
| break; |
| case NL80211_IFTYPE_MONITOR: |
| result = cfg80211_set_monitor_channel(rdev, &chandef); |
| break; |
| default: |
| result = -EINVAL; |
| } |
| |
| return result; |
| } |
| |
| static int nl80211_set_channel(struct sk_buff *skb, struct genl_info *info) |
| { |
| struct cfg80211_registered_device *rdev = info->user_ptr[0]; |
| struct net_device *netdev = info->user_ptr[1]; |
| |
| return __nl80211_set_channel(rdev, netdev, info); |
| } |
| |
| static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info) |
| { |
| struct cfg80211_registered_device *rdev = info->user_ptr[0]; |
| struct net_device *dev = info->user_ptr[1]; |
| struct wireless_dev *wdev = dev->ieee80211_ptr; |
| const u8 *bssid; |
| |
| if (!info->attrs[NL80211_ATTR_MAC]) |
| return -EINVAL; |
| |
| if (netif_running(dev)) |
| return -EBUSY; |
| |
| if (!rdev->ops->set_wds_peer) |
| return -EOPNOTSUPP; |
| |
| if (wdev->iftype != NL80211_IFTYPE_WDS) |
| return -EOPNOTSUPP; |
| |
| bssid = nla_data(info->attrs[NL80211_ATTR_MAC]); |
| return rdev_set_wds_peer(rdev, dev, bssid); |
| } |
| |
| static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info) |
| { |
| struct cfg80211_registered_device *rdev; |
| struct net_device *netdev = NULL; |
| struct wireless_dev *wdev; |
| int result = 0, rem_txq_params = 0; |
| struct nlattr *nl_txq_params; |
| u32 changed; |
| u8 retry_short = 0, retry_long = 0; |
| u32 frag_threshold = 0, rts_threshold = 0; |
| u8 coverage_class = 0; |
| u32 txq_limit = 0, txq_memory_limit = 0, txq_quantum = 0; |
| |
| ASSERT_RTNL(); |
| |
| /* |
| * Try to find the wiphy and netdev. Normally this |
| * function shouldn't need the netdev, but this is |
| * done for backward compatibility -- previously |
| * setting the channel was done per wiphy, but now |
| * it is per netdev. Previous userland like hostapd |
| * also passed a netdev to set_wiphy, so that it is |
| * possible to let that go to the right netdev! |
| */ |
| |
| if (info->attrs[NL80211_ATTR_IFINDEX]) { |
| int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]); |
| |
| netdev = __dev_get_by_index(genl_info_net(info), ifindex); |
| if (netdev && netdev->ieee80211_ptr) |
| rdev = wiphy_to_rdev(netdev->ieee80211_ptr->wiphy); |
| else |
| netdev = NULL; |
| } |
| |
| if (!netdev) { |
| rdev = __cfg80211_rdev_from_attrs(genl_info_net(info), |
| info->attrs); |
| if (IS_ERR(rdev)) |
| return PTR_ERR(rdev); |
| wdev = NULL; |
| netdev = NULL; |
| result = 0; |
| } else |
| wdev = netdev->ieee80211_ptr; |
| |
| /* |
| * end workaround code, by now the rdev is available |
| * and locked, and wdev may or may not be NULL. |
| */ |
| |
| if (info->attrs[NL80211_ATTR_WIPHY_NAME]) |
| result = cfg80211_dev_rename( |
| rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME])); |
| |
| if (result) |
| return result; |
| |
| if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) { |
| struct ieee80211_txq_params txq_params; |
| struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1]; |
| |
| if (!rdev->ops->set_txq_params) |
| return -EOPNOTSUPP; |
| |
| if (!netdev) |
| return -EINVAL; |
| |
| if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP && |
| netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) |
| return -EINVAL; |
| |
| if (!netif_running(netdev)) |
| return -ENETDOWN; |
| |
| nla_for_each_nested(nl_txq_params, |
| info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS], |
| rem_txq_params) { |
| result = nla_parse_nested_deprecated(tb, |
| NL80211_TXQ_ATTR_MAX, |
| nl_txq_params, |
| txq_params_policy, |
| info->extack); |
| if (result) |
| return result; |
| result = parse_txq_params(tb, &txq_params); |
| if (result) |
| return result; |
| |
| result = rdev_set_txq_params(rdev, netdev, |
| &txq_params); |
| if (result) |
| return result; |
| } |
| } |
| |
| if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) { |
| result = __nl80211_set_channel( |
| rdev, |
| nl80211_can_set_dev_channel(wdev) ? netdev : NULL, |
| info); |
| if (result) |
| return result; |
| } |
| |
| if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) { |
| struct wireless_dev *txp_wdev = wdev; |
| enum nl80211_tx_power_setting type; |
| int idx, mbm = 0; |
| |
| if (!(rdev->wiphy.features & NL80211_FEATURE_VIF_TXPOWER)) |
| txp_wdev = NULL; |
| |
| if (!rdev->ops->set_tx_power) |
| return -EOPNOTSUPP; |
| |
| idx = NL80211_ATTR_WIPHY_TX_POWER_SETTING; |
| type = nla_get_u32(info->attrs[idx]); |
| |
| if (!info->attrs[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] && |
| (type != NL80211_TX_POWER_AUTOMATIC)) |
| return -EINVAL; |
| |
| if (type != NL80211_TX_POWER_AUTOMATIC) { |
| idx = NL80211_ATTR_WIPHY_TX_POWER_LEVEL; |
| mbm = nla_get_u32(info->attrs[idx]); |
| } |
| |
| result = rdev_set_tx_power(rdev, txp_wdev, type, mbm); |
| if (result) |
| return result; |
| } |
| |
| if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] && |
| info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) |