Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Sigma Control API DUT (station/AP) |
| 3 | * Copyright (c) 2010-2011, Atheros Communications, Inc. |
Jouni Malinen | 9d7e31d | 2017-12-22 18:55:04 +0200 | [diff] [blame] | 4 | * Copyright (c) 2011-2017, Qualcomm Atheros, Inc. |
Jouni Malinen | c12ea4a | 2018-01-05 21:07:10 +0200 | [diff] [blame] | 5 | * Copyright (c) 2018, The Linux Foundation |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6 | * All Rights Reserved. |
| 7 | * Licensed under the Clear BSD license. See README for more details. |
| 8 | */ |
| 9 | |
| 10 | #include "sigma_dut.h" |
| 11 | #include <sys/ioctl.h> |
| 12 | #include <sys/stat.h> |
Jouni Malinen | 8290520 | 2018-04-29 17:20:10 +0300 | [diff] [blame] | 13 | #include <sys/wait.h> |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 14 | #include <ctype.h> |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 15 | #ifdef __linux__ |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 16 | #include <regex.h> |
| 17 | #include <dirent.h> |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 18 | #include <sys/time.h> |
| 19 | #include <netpacket/packet.h> |
| 20 | #include <linux/if_ether.h> |
| 21 | #ifdef ANDROID |
| 22 | #include <cutils/properties.h> |
| 23 | #include <android/log.h> |
| 24 | #include "keystore_get.h" |
| 25 | #else /* ANDROID */ |
| 26 | #include <ifaddrs.h> |
| 27 | #endif /* ANDROID */ |
| 28 | #include <netdb.h> |
| 29 | #endif /* __linux__ */ |
| 30 | #ifdef __QNXNTO__ |
| 31 | #include <net/if_dl.h> |
| 32 | #endif /* __QNXNTO__ */ |
| 33 | #include "wpa_ctrl.h" |
| 34 | #include "wpa_helpers.h" |
Amarnath Hullur Subramanyam | 9c381f5 | 2017-03-17 00:04:41 -0700 | [diff] [blame] | 35 | #include "miracast.h" |
Kiran Kumar Lokere | 29c1bb0 | 2018-10-08 17:41:02 -0700 | [diff] [blame] | 36 | #include "qca-vendor_copy.h" |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 37 | |
| 38 | /* Temporary files for sta_send_addba */ |
| 39 | #define VI_QOS_TMP_FILE "/tmp/vi-qos.tmp" |
| 40 | #define VI_QOS_FILE "/tmp/vi-qos.txt" |
| 41 | #define VI_QOS_REFFILE "/etc/vi-qos.txt" |
| 42 | |
| 43 | /* |
| 44 | * MTU for Ethernet need to take into account 8-byte SNAP header |
| 45 | * to be added when encapsulating Ethernet frame into 802.11 |
| 46 | */ |
| 47 | #ifndef IEEE80211_MAX_DATA_LEN_DMG |
| 48 | #define IEEE80211_MAX_DATA_LEN_DMG 7920 |
| 49 | #endif |
| 50 | #ifndef IEEE80211_SNAP_LEN_DMG |
| 51 | #define IEEE80211_SNAP_LEN_DMG 8 |
| 52 | #endif |
| 53 | |
Ashwini Patil | 0040258 | 2017-04-13 12:29:39 +0530 | [diff] [blame] | 54 | #define NON_PREF_CH_LIST_SIZE 100 |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 55 | #define NEIGHBOR_REPORT_SIZE 1000 |
| 56 | #define DEFAULT_NEIGHBOR_BSSID_INFO "17" |
| 57 | #define DEFAULT_NEIGHBOR_PHY_TYPE "1" |
Ashwini Patil | 0040258 | 2017-04-13 12:29:39 +0530 | [diff] [blame] | 58 | |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 59 | #define WIL_DEFAULT_BI 100 |
| 60 | |
| 61 | /* default remain on channel time for transmitting frames (milliseconds) */ |
| 62 | #define WIL_TRANSMIT_FRAME_DEFAULT_ROC 500 |
| 63 | #define IEEE80211_P2P_ATTR_DEVICE_ID 3 |
| 64 | #define IEEE80211_P2P_ATTR_GROUP_ID 15 |
| 65 | |
| 66 | /* describes tagged bytes in template frame file */ |
| 67 | struct template_frame_tag { |
| 68 | int num; |
| 69 | int offset; |
| 70 | size_t len; |
| 71 | }; |
| 72 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 73 | extern char *sigma_wpas_ctrl; |
| 74 | extern char *sigma_cert_path; |
| 75 | extern enum driver_type wifi_chip_type; |
| 76 | extern char *sigma_radio_ifname[]; |
| 77 | |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 78 | #ifdef __linux__ |
| 79 | #define WIL_WMI_MAX_PAYLOAD 248 |
Alexei Avshalom Lazar | bc180dc | 2018-12-18 16:01:14 +0200 | [diff] [blame] | 80 | #define WIL_WMI_ESE_CFG_CMDID 0xa01 |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 81 | #define WIL_WMI_BF_TRIG_CMDID 0x83a |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 82 | #define WIL_WMI_UNIT_TEST_CMDID 0x900 |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 83 | #define WIL_WMI_P2P_CFG_CMDID 0x910 |
| 84 | #define WIL_WMI_START_LISTEN_CMDID 0x914 |
| 85 | #define WIL_WMI_DISCOVERY_STOP_CMDID 0x917 |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 86 | |
| 87 | struct wil_wmi_header { |
| 88 | uint8_t mid; |
| 89 | uint8_t reserved; |
| 90 | uint16_t cmd; |
| 91 | uint32_t ts; |
| 92 | } __attribute__((packed)); |
| 93 | |
| 94 | enum wil_wmi_bf_trig_type { |
| 95 | WIL_WMI_SLS, |
| 96 | WIL_WMI_BRP_RX, |
| 97 | WIL_WMI_BRP_TX, |
| 98 | }; |
| 99 | |
| 100 | struct wil_wmi_bf_trig_cmd { |
| 101 | /* enum wil_wmi_bf_trig_type */ |
| 102 | uint32_t bf_type; |
| 103 | /* cid when type == WMI_BRP_RX */ |
| 104 | uint32_t sta_id; |
| 105 | uint32_t reserved; |
| 106 | /* mac address when type = WIL_WMI_SLS */ |
| 107 | uint8_t dest_mac[6]; |
| 108 | } __attribute__((packed)); |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 109 | |
Alexei Avshalom Lazar | bc180dc | 2018-12-18 16:01:14 +0200 | [diff] [blame] | 110 | enum wil_wmi_sched_scheme_advertisment { |
| 111 | WIL_WMI_ADVERTISE_ESE_DISABLED, |
| 112 | WIL_WMI_ADVERTISE_ESE_IN_BEACON, |
| 113 | WIL_WMI_ADVERTISE_ESE_IN_ANNOUNCE_FRAME, |
| 114 | }; |
| 115 | |
| 116 | enum wil_wmi_ese_slot_type { |
| 117 | WIL_WMI_ESE_SP, |
| 118 | WIL_WMI_ESE_CBAP, |
| 119 | WIL_WMI_ESE_ANNOUNCE_NO_ACK, |
| 120 | }; |
| 121 | |
| 122 | struct wil_wmi_ese_slot { |
| 123 | /* offset from start of BI in microseconds */ |
| 124 | uint32_t tbtt_offset; |
| 125 | uint8_t flags; |
| 126 | /* enum wil_wmi_ese_slot_type */ |
| 127 | uint8_t slot_type; |
| 128 | /* duration in microseconds */ |
| 129 | uint16_t duration; |
| 130 | /* frame exchange sequence duration, microseconds */ |
| 131 | uint16_t tx_op; |
| 132 | /* time between 2 blocks for periodic allocation(microseconds) */ |
| 133 | uint16_t period; |
| 134 | /* number of blocks in periodic allocation */ |
| 135 | uint8_t num_blocks; |
| 136 | /* for semi-active allocations */ |
| 137 | uint8_t idle_period; |
| 138 | uint8_t src_aid; |
| 139 | uint8_t dst_aid; |
| 140 | uint32_t reserved; |
| 141 | } __attribute__((packed)); |
| 142 | |
| 143 | #define WIL_WMI_MAX_ESE_SLOTS 4 |
| 144 | struct wil_wmi_ese_cfg { |
| 145 | uint8_t serial_num; |
| 146 | /* wil_wmi_sched_scheme_advertisment */ |
| 147 | uint8_t ese_advertisment; |
| 148 | uint16_t flags; |
| 149 | uint8_t num_allocs; |
| 150 | uint8_t reserved[3]; |
| 151 | uint64_t start_tbtt; |
| 152 | /* allocations list */ |
| 153 | struct wil_wmi_ese_slot slots[WIL_WMI_MAX_ESE_SLOTS]; |
| 154 | } __attribute__((packed)); |
| 155 | |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 156 | #define WIL_WMI_UT_FORCE_MCS 6 |
| 157 | struct wil_wmi_force_mcs { |
| 158 | /* WIL_WMI_UT_HW_SYSAPI */ |
| 159 | uint16_t module_id; |
| 160 | /* WIL_WMI_UT_FORCE_MCS */ |
| 161 | uint16_t subtype_id; |
| 162 | /* cid (ignored in oob_mode, affects all stations) */ |
| 163 | uint32_t cid; |
| 164 | /* 1 to force MCS, 0 to restore default behavior */ |
| 165 | uint32_t force_enable; |
| 166 | /* MCS index, 0-12 */ |
| 167 | uint32_t mcs; |
| 168 | } __attribute__((packed)); |
| 169 | |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 170 | #define WIL_WMI_UT_HW_SYSAPI 10 |
| 171 | #define WIL_WMI_UT_FORCE_RSN_IE 0x29 |
| 172 | struct wil_wmi_force_rsn_ie { |
| 173 | /* WIL_WMI_UT_HW_SYSAPI */ |
| 174 | uint16_t module_id; |
| 175 | /* WIL_WMI_UT_FORCE_RSN_IE */ |
| 176 | uint16_t subtype_id; |
| 177 | /* 0 = no change, 1 = remove if exists, 2 = add if does not exist */ |
| 178 | uint32_t state; |
| 179 | } __attribute__((packed)); |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 180 | |
| 181 | enum wil_wmi_discovery_mode { |
| 182 | WMI_DISCOVERY_MODE_NON_OFFLOAD, |
| 183 | WMI_DISCOVERY_MODE_OFFLOAD, |
| 184 | WMI_DISCOVERY_MODE_PEER2PEER, |
| 185 | }; |
| 186 | |
| 187 | struct wil_wmi_p2p_cfg_cmd { |
| 188 | /* enum wil_wmi_discovery_mode */ |
| 189 | uint8_t discovery_mode; |
| 190 | /* 0-based (wireless channel - 1) */ |
| 191 | uint8_t channel; |
| 192 | /* set to WIL_DEFAULT_BI */ |
| 193 | uint16_t bcon_interval; |
| 194 | } __attribute__((packed)); |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 195 | #endif /* __linux__ */ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 196 | |
| 197 | #ifdef ANDROID |
| 198 | |
| 199 | static int add_ipv6_rule(struct sigma_dut *dut, const char *ifname); |
| 200 | |
| 201 | #define ANDROID_KEYSTORE_GET 'g' |
| 202 | #define ANDROID_KEYSTORE_GET_PUBKEY 'b' |
| 203 | |
| 204 | static int android_keystore_get(char cmd, const char *key, unsigned char *val) |
| 205 | { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 206 | /* Android 4.3 changed keystore design, so need to use keystore_get() */ |
| 207 | #ifndef KEYSTORE_MESSAGE_SIZE |
| 208 | #define KEYSTORE_MESSAGE_SIZE 65535 |
| 209 | #endif /* KEYSTORE_MESSAGE_SIZE */ |
| 210 | |
| 211 | ssize_t len; |
| 212 | uint8_t *value = NULL; |
| 213 | |
| 214 | __android_log_print(ANDROID_LOG_DEBUG, "sigma_dut", |
| 215 | "keystore command '%c' key '%s' --> keystore_get", |
| 216 | cmd, key); |
| 217 | |
| 218 | len = keystore_get(key, strlen(key), &value); |
| 219 | if (len < 0) { |
| 220 | __android_log_print(ANDROID_LOG_DEBUG, "sigma_dut", |
| 221 | "keystore_get() failed"); |
| 222 | return -1; |
| 223 | } |
| 224 | |
| 225 | if (len > KEYSTORE_MESSAGE_SIZE) |
| 226 | len = KEYSTORE_MESSAGE_SIZE; |
| 227 | memcpy(val, value, len); |
| 228 | free(value); |
| 229 | return len; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 230 | } |
| 231 | #endif /* ANDROID */ |
| 232 | |
| 233 | |
Vinita S. Maloo | 0fcb57d | 2020-04-24 14:03:56 +0530 | [diff] [blame] | 234 | #ifdef NL80211_SUPPORT |
| 235 | static int nl80211_sta_set_power_save(struct sigma_dut *dut, |
| 236 | const char *intf, |
| 237 | enum nl80211_ps_state ps_state) |
| 238 | { |
| 239 | struct nl_msg *msg; |
| 240 | int ifindex, ret; |
| 241 | |
| 242 | ifindex = if_nametoindex(intf); |
| 243 | if (ifindex == 0) { |
| 244 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 245 | "%s: Index for interface %s not found", |
| 246 | __func__, intf); |
| 247 | return -1; |
| 248 | } |
| 249 | |
| 250 | msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 251 | NL80211_CMD_SET_POWER_SAVE); |
| 252 | if (!msg) { |
| 253 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 254 | "%s: err in creating nl80211 msg", __func__); |
| 255 | return -1; |
| 256 | } |
| 257 | |
| 258 | if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state)) { |
| 259 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 260 | "%s: err in populating nl80211 msg", __func__); |
| 261 | nlmsg_free(msg); |
| 262 | return -1; |
| 263 | } |
| 264 | |
| 265 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 266 | if (ret) { |
| 267 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 268 | "%s: err in send_and_recv_msgs, ret=%d (%s)", |
| 269 | __func__, ret, strerror(-ret)); |
| 270 | return -1; |
| 271 | } |
| 272 | |
| 273 | return 0; |
| 274 | } |
| 275 | #endif /* NL80211_SUPPORT */ |
| 276 | |
| 277 | |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 278 | static int set_power_save_wcn(struct sigma_dut *dut, const char *intf, int ps) |
| 279 | { |
| 280 | char buf[100]; |
Vinita S. Maloo | 0fcb57d | 2020-04-24 14:03:56 +0530 | [diff] [blame] | 281 | #ifdef NL80211_SUPPORT |
| 282 | enum nl80211_ps_state ps_state; |
| 283 | |
| 284 | ps_state = ps == 1 ? NL80211_PS_ENABLED : NL80211_PS_DISABLED; |
| 285 | if (nl80211_sta_set_power_save(dut, intf, ps_state) == 0) |
| 286 | return 0; |
| 287 | #endif /* NL80211_SUPPORT */ |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 288 | |
| 289 | snprintf(buf, sizeof(buf), "iwpriv %s setPower %d", intf, ps); |
| 290 | if (system(buf) != 0) { |
| 291 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 292 | "iwpriv setPower %d failed", ps); |
| 293 | return -1; |
| 294 | } |
| 295 | return 0; |
| 296 | } |
| 297 | |
| 298 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 299 | int set_ps(const char *intf, struct sigma_dut *dut, int enabled) |
| 300 | { |
| 301 | #ifdef __linux__ |
| 302 | char buf[100]; |
| 303 | |
| 304 | if (wifi_chip_type == DRIVER_WCN) { |
| 305 | if (enabled) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 306 | if (set_power_save_wcn(dut, intf, 1) < 0) { |
Purushottam Kushwaha | 304561d | 2019-12-23 16:57:18 +0530 | [diff] [blame] | 307 | snprintf(buf, sizeof(buf), |
| 308 | "iwpriv wlan0 dump 906"); |
| 309 | if (system(buf) != 0) |
| 310 | goto set_power_save; |
| 311 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 312 | } else { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 313 | if (set_power_save_wcn(dut, intf, 2) < 0) { |
Purushottam Kushwaha | 304561d | 2019-12-23 16:57:18 +0530 | [diff] [blame] | 314 | snprintf(buf, sizeof(buf), |
| 315 | "iwpriv wlan0 dump 905"); |
| 316 | if (system(buf) != 0) |
| 317 | goto set_power_save; |
| 318 | snprintf(buf, sizeof(buf), |
| 319 | "iwpriv wlan0 dump 912"); |
| 320 | if (system(buf) != 0) |
| 321 | goto set_power_save; |
| 322 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | return 0; |
| 326 | } |
| 327 | |
Pradeep Reddy POTTETI | 625b370 | 2016-09-20 17:09:58 +0530 | [diff] [blame] | 328 | set_power_save: |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 329 | snprintf(buf, sizeof(buf), "./iw dev %s set power_save %s", |
| 330 | intf, enabled ? "on" : "off"); |
| 331 | if (system(buf) != 0) { |
| 332 | snprintf(buf, sizeof(buf), "iw dev %s set power_save %s", |
| 333 | intf, enabled ? "on" : "off"); |
Pradeep Reddy POTTETI | 625b370 | 2016-09-20 17:09:58 +0530 | [diff] [blame] | 334 | if (system(buf) != 0) { |
| 335 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 336 | "Failed to set power save %s", |
| 337 | enabled ? "on" : "off"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 338 | return -1; |
Pradeep Reddy POTTETI | 625b370 | 2016-09-20 17:09:58 +0530 | [diff] [blame] | 339 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | return 0; |
| 343 | #else /* __linux__ */ |
| 344 | return -1; |
| 345 | #endif /* __linux__ */ |
| 346 | } |
| 347 | |
| 348 | |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 349 | #ifdef __linux__ |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 350 | |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 351 | static int wil6210_get_debugfs_dir(struct sigma_dut *dut, char *path, |
| 352 | size_t len) |
| 353 | { |
| 354 | DIR *dir, *wil_dir; |
| 355 | struct dirent *entry; |
| 356 | int ret = -1; |
| 357 | const char *root_path = "/sys/kernel/debug/ieee80211"; |
| 358 | |
| 359 | dir = opendir(root_path); |
| 360 | if (!dir) |
| 361 | return -2; |
| 362 | |
| 363 | while ((entry = readdir(dir))) { |
| 364 | if (strcmp(entry->d_name, ".") == 0 || |
| 365 | strcmp(entry->d_name, "..") == 0) |
| 366 | continue; |
| 367 | |
| 368 | if (snprintf(path, len, "%s/%s/wil6210", |
| 369 | root_path, entry->d_name) >= (int) len) { |
| 370 | ret = -3; |
| 371 | break; |
| 372 | } |
| 373 | |
| 374 | wil_dir = opendir(path); |
| 375 | if (wil_dir) { |
| 376 | closedir(wil_dir); |
| 377 | ret = 0; |
| 378 | break; |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | closedir(dir); |
| 383 | return ret; |
| 384 | } |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 385 | |
| 386 | |
| 387 | static int wil6210_wmi_send(struct sigma_dut *dut, uint16_t command, |
| 388 | void *payload, uint16_t length) |
| 389 | { |
| 390 | struct { |
| 391 | struct wil_wmi_header hdr; |
| 392 | char payload[WIL_WMI_MAX_PAYLOAD]; |
| 393 | } __attribute__((packed)) cmd; |
| 394 | char buf[128], fname[128]; |
| 395 | size_t towrite, written; |
| 396 | FILE *f; |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 397 | int res; |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 398 | |
| 399 | if (length > WIL_WMI_MAX_PAYLOAD) { |
| 400 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 401 | "payload too large(%u, max %u)", |
| 402 | length, WIL_WMI_MAX_PAYLOAD); |
| 403 | return -1; |
| 404 | } |
| 405 | |
| 406 | memset(&cmd.hdr, 0, sizeof(cmd.hdr)); |
| 407 | cmd.hdr.cmd = command; |
| 408 | memcpy(cmd.payload, payload, length); |
| 409 | |
| 410 | if (wil6210_get_debugfs_dir(dut, buf, sizeof(buf))) { |
| 411 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 412 | "failed to get wil6210 debugfs dir"); |
| 413 | return -1; |
| 414 | } |
| 415 | |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 416 | res = snprintf(fname, sizeof(fname), "%s/wmi_send", buf); |
| 417 | if (res < 0 || res >= sizeof(fname)) |
| 418 | return -1; |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 419 | f = fopen(fname, "wb"); |
| 420 | if (!f) { |
| 421 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 422 | "failed to open: %s", fname); |
| 423 | return -1; |
| 424 | } |
| 425 | |
| 426 | towrite = sizeof(cmd.hdr) + length; |
| 427 | written = fwrite(&cmd, 1, towrite, f); |
| 428 | fclose(f); |
| 429 | if (written != towrite) { |
| 430 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 431 | "failed to send wmi %u", command); |
| 432 | return -1; |
| 433 | } |
| 434 | |
| 435 | return 0; |
| 436 | } |
| 437 | |
| 438 | |
| 439 | static int wil6210_get_sta_info_field(struct sigma_dut *dut, const char *bssid, |
| 440 | const char *pattern, unsigned int *field) |
| 441 | { |
| 442 | char buf[128], fname[128]; |
| 443 | FILE *f; |
| 444 | regex_t re; |
| 445 | regmatch_t m[2]; |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 446 | int rc, ret = -1, res; |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 447 | |
| 448 | if (wil6210_get_debugfs_dir(dut, buf, sizeof(buf))) { |
| 449 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 450 | "failed to get wil6210 debugfs dir"); |
| 451 | return -1; |
| 452 | } |
| 453 | |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 454 | res = snprintf(fname, sizeof(fname), "%s/stations", buf); |
| 455 | if (res < 0 || res >= sizeof(fname)) |
| 456 | return -1; |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 457 | f = fopen(fname, "r"); |
| 458 | if (!f) { |
| 459 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 460 | "failed to open: %s", fname); |
| 461 | return -1; |
| 462 | } |
| 463 | |
| 464 | if (regcomp(&re, pattern, REG_EXTENDED)) { |
| 465 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 466 | "regcomp failed: %s", pattern); |
| 467 | goto out; |
| 468 | } |
| 469 | |
| 470 | /* |
| 471 | * find the entry for the mac address |
| 472 | * line is of the form: [n] 11:22:33:44:55:66 state AID aid |
| 473 | */ |
| 474 | while (fgets(buf, sizeof(buf), f)) { |
| 475 | if (strcasestr(buf, bssid)) { |
| 476 | /* extract the field (CID/AID/state) */ |
| 477 | rc = regexec(&re, buf, 2, m, 0); |
| 478 | if (!rc && (m[1].rm_so >= 0)) { |
| 479 | buf[m[1].rm_eo] = 0; |
| 480 | *field = atoi(&buf[m[1].rm_so]); |
| 481 | ret = 0; |
| 482 | break; |
| 483 | } |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | regfree(&re); |
| 488 | if (ret) |
| 489 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 490 | "could not extract field"); |
| 491 | |
| 492 | out: |
| 493 | fclose(f); |
| 494 | |
| 495 | return ret; |
| 496 | } |
| 497 | |
| 498 | |
| 499 | static int wil6210_get_cid(struct sigma_dut *dut, const char *bssid, |
| 500 | unsigned int *cid) |
| 501 | { |
| 502 | const char *pattern = "\\[([0-9]+)\\]"; |
| 503 | |
| 504 | return wil6210_get_sta_info_field(dut, bssid, pattern, cid); |
| 505 | } |
| 506 | |
| 507 | |
| 508 | static int wil6210_send_brp_rx(struct sigma_dut *dut, const char *mac, |
| 509 | int l_rx) |
| 510 | { |
Rakesh Sunki | 556237d | 2017-03-30 14:49:31 -0700 | [diff] [blame] | 511 | struct wil_wmi_bf_trig_cmd cmd; |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 512 | unsigned int cid; |
| 513 | |
Rakesh Sunki | 556237d | 2017-03-30 14:49:31 -0700 | [diff] [blame] | 514 | memset(&cmd, 0, sizeof(cmd)); |
| 515 | |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 516 | if (wil6210_get_cid(dut, mac, &cid)) |
| 517 | return -1; |
| 518 | |
| 519 | cmd.bf_type = WIL_WMI_BRP_RX; |
| 520 | cmd.sta_id = cid; |
| 521 | /* training length (l_rx) is ignored, FW always uses length 16 */ |
| 522 | return wil6210_wmi_send(dut, WIL_WMI_BF_TRIG_CMDID, |
| 523 | &cmd, sizeof(cmd)); |
| 524 | } |
| 525 | |
| 526 | |
| 527 | static int wil6210_send_sls(struct sigma_dut *dut, const char *mac) |
| 528 | { |
Rakesh Sunki | 556237d | 2017-03-30 14:49:31 -0700 | [diff] [blame] | 529 | struct wil_wmi_bf_trig_cmd cmd; |
| 530 | |
| 531 | memset(&cmd, 0, sizeof(cmd)); |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 532 | |
| 533 | if (parse_mac_address(dut, mac, (unsigned char *)&cmd.dest_mac)) |
| 534 | return -1; |
| 535 | |
| 536 | cmd.bf_type = WIL_WMI_SLS; |
| 537 | return wil6210_wmi_send(dut, WIL_WMI_BF_TRIG_CMDID, |
| 538 | &cmd, sizeof(cmd)); |
| 539 | } |
| 540 | |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 541 | |
Alexei Avshalom Lazar | bc180dc | 2018-12-18 16:01:14 +0200 | [diff] [blame] | 542 | int wil6210_set_ese(struct sigma_dut *dut, int count, |
| 543 | struct sigma_ese_alloc *allocs) |
| 544 | { |
| 545 | struct wil_wmi_ese_cfg cmd = { }; |
| 546 | int i; |
| 547 | |
| 548 | if (count == 0 || count > WIL_WMI_MAX_ESE_SLOTS) |
| 549 | return -1; |
| 550 | |
| 551 | if (dut->ap_bcnint <= 0) { |
| 552 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 553 | "invalid beacon interval(%d), check test", |
| 554 | dut->ap_bcnint); |
| 555 | return -1; |
| 556 | } |
| 557 | |
| 558 | cmd.ese_advertisment = WIL_WMI_ADVERTISE_ESE_IN_BEACON; |
| 559 | cmd.flags = 0x1d; |
| 560 | cmd.num_allocs = count; |
| 561 | for (i = 0; i < count; i++) { |
| 562 | /* |
| 563 | * Convert percent from BI (BI specified in milliseconds) |
| 564 | * to absolute duration in microseconds. |
| 565 | */ |
| 566 | cmd.slots[i].duration = |
| 567 | (allocs[i].percent_bi * dut->ap_bcnint * 1000) / 100; |
| 568 | switch (allocs[i].type) { |
| 569 | case ESE_CBAP: |
| 570 | cmd.slots[i].slot_type = WIL_WMI_ESE_CBAP; |
| 571 | break; |
| 572 | case ESE_SP: |
| 573 | cmd.slots[i].slot_type = WIL_WMI_ESE_SP; |
| 574 | break; |
| 575 | default: |
| 576 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 577 | "invalid slot type(%d) at index %d", |
| 578 | allocs[i].type, i); |
| 579 | return -1; |
| 580 | } |
| 581 | cmd.slots[i].src_aid = allocs[i].src_aid; |
| 582 | cmd.slots[i].dst_aid = allocs[i].dst_aid; |
| 583 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 584 | "slot %d, duration %u, type %d, srcAID %u dstAID %u", |
| 585 | i, cmd.slots[i].duration, |
| 586 | cmd.slots[i].slot_type, cmd.slots[i].src_aid, |
| 587 | cmd.slots[i].dst_aid); |
| 588 | } |
| 589 | |
| 590 | return wil6210_wmi_send(dut, WIL_WMI_ESE_CFG_CMDID, &cmd, sizeof(cmd)); |
| 591 | } |
| 592 | |
| 593 | |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 594 | int wil6210_set_force_mcs(struct sigma_dut *dut, int force, int mcs) |
| 595 | { |
| 596 | struct wil_wmi_force_mcs cmd = { }; |
| 597 | |
| 598 | cmd.module_id = WIL_WMI_UT_HW_SYSAPI; |
| 599 | cmd.subtype_id = WIL_WMI_UT_FORCE_MCS; |
| 600 | cmd.force_enable = (uint32_t) force; |
| 601 | cmd.mcs = (uint32_t) mcs; |
| 602 | |
| 603 | return wil6210_wmi_send(dut, WIL_WMI_UNIT_TEST_CMDID, |
| 604 | &cmd, sizeof(cmd)); |
| 605 | } |
| 606 | |
| 607 | |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 608 | static int wil6210_force_rsn_ie(struct sigma_dut *dut, int state) |
| 609 | { |
| 610 | struct wil_wmi_force_rsn_ie cmd = { }; |
| 611 | |
| 612 | cmd.module_id = WIL_WMI_UT_HW_SYSAPI; |
| 613 | cmd.subtype_id = WIL_WMI_UT_FORCE_RSN_IE; |
| 614 | cmd.state = (uint32_t) state; |
| 615 | |
| 616 | return wil6210_wmi_send(dut, WIL_WMI_UNIT_TEST_CMDID, |
| 617 | &cmd, sizeof(cmd)); |
| 618 | } |
| 619 | |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 620 | |
| 621 | /* |
| 622 | * this function is also used to configure generic remain-on-channel |
| 623 | */ |
| 624 | static int wil6210_p2p_cfg(struct sigma_dut *dut, int freq) |
| 625 | { |
| 626 | struct wil_wmi_p2p_cfg_cmd cmd = { }; |
| 627 | int channel = freq_to_channel(freq); |
| 628 | |
| 629 | if (channel < 0) |
| 630 | return -1; |
| 631 | cmd.discovery_mode = WMI_DISCOVERY_MODE_NON_OFFLOAD; |
| 632 | cmd.channel = channel - 1; |
| 633 | cmd.bcon_interval = WIL_DEFAULT_BI; |
| 634 | cmd.discovery_mode = WMI_DISCOVERY_MODE_PEER2PEER; |
| 635 | |
| 636 | return wil6210_wmi_send(dut, WIL_WMI_P2P_CFG_CMDID, |
| 637 | &cmd, sizeof(cmd)); |
| 638 | } |
| 639 | |
| 640 | |
| 641 | static int wil6210_remain_on_channel(struct sigma_dut *dut, int freq) |
| 642 | { |
| 643 | int ret = wil6210_p2p_cfg(dut, freq); |
| 644 | |
| 645 | if (ret) |
| 646 | return ret; |
| 647 | |
| 648 | ret = wil6210_wmi_send(dut, WIL_WMI_START_LISTEN_CMDID, NULL, 0); |
| 649 | if (!ret) { |
| 650 | /* |
| 651 | * wait a bit to allow FW to setup the radio |
| 652 | * especially important if we switch channels |
| 653 | */ |
| 654 | usleep(500000); |
| 655 | } |
| 656 | |
| 657 | return ret; |
| 658 | } |
| 659 | |
| 660 | |
| 661 | static int wil6210_stop_discovery(struct sigma_dut *dut) |
| 662 | { |
| 663 | return wil6210_wmi_send(dut, WIL_WMI_DISCOVERY_STOP_CMDID, NULL, 0); |
| 664 | } |
| 665 | |
| 666 | |
| 667 | static int wil6210_transmit_frame(struct sigma_dut *dut, int freq, |
| 668 | int wait_duration, |
| 669 | const char *frame, size_t frame_len) |
| 670 | { |
| 671 | char buf[128], fname[128]; |
| 672 | FILE *f; |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 673 | int res = 0, r; |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 674 | size_t written; |
| 675 | |
| 676 | if (wil6210_get_debugfs_dir(dut, buf, sizeof(buf))) { |
| 677 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 678 | "failed to get wil6210 debugfs dir"); |
| 679 | return -1; |
| 680 | } |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 681 | r = snprintf(fname, sizeof(fname), "%s/tx_mgmt", buf); |
| 682 | if (r < 0 || r >= sizeof(fname)) |
| 683 | return -1; |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 684 | |
| 685 | if (wil6210_remain_on_channel(dut, freq)) { |
| 686 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 687 | "failed to listen on channel"); |
| 688 | return -1; |
| 689 | } |
| 690 | |
| 691 | f = fopen(fname, "wb"); |
| 692 | if (!f) { |
| 693 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 694 | "failed to open: %s", fname); |
| 695 | res = -1; |
| 696 | goto out_stop; |
| 697 | } |
| 698 | written = fwrite(frame, 1, frame_len, f); |
| 699 | fclose(f); |
| 700 | |
| 701 | if (written != frame_len) { |
| 702 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 703 | "failed to transmit frame (got %zd, expected %zd)", |
| 704 | written, frame_len); |
| 705 | res = -1; |
| 706 | goto out_stop; |
| 707 | } |
| 708 | |
| 709 | usleep(wait_duration * 1000); |
| 710 | |
| 711 | out_stop: |
| 712 | wil6210_stop_discovery(dut); |
| 713 | return res; |
| 714 | } |
| 715 | |
| 716 | |
| 717 | static int find_template_frame_tag(struct template_frame_tag *tags, |
| 718 | int total_tags, int tag_num) |
| 719 | { |
| 720 | int i; |
| 721 | |
| 722 | for (i = 0; i < total_tags; i++) { |
| 723 | if (tag_num == tags[i].num) |
| 724 | return i; |
| 725 | } |
| 726 | |
| 727 | return -1; |
| 728 | } |
| 729 | |
| 730 | |
| 731 | static int replace_p2p_attribute(struct sigma_dut *dut, char *buf, size_t len, |
| 732 | int id, const char *value, size_t val_len) |
| 733 | { |
| 734 | struct wfa_p2p_attribute *attr = (struct wfa_p2p_attribute *) buf; |
| 735 | |
| 736 | if (len < 3 + val_len) { |
| 737 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 738 | "not enough space to replace P2P attribute"); |
| 739 | return -1; |
| 740 | } |
| 741 | |
| 742 | if (attr->len != val_len) { |
| 743 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 744 | "attribute length mismatch (need %zu have %hu)", |
| 745 | val_len, attr->len); |
| 746 | return -1; |
| 747 | } |
| 748 | |
| 749 | if (attr->id != id) { |
| 750 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 751 | "incorrect attribute id (expected %d actual %d)", |
| 752 | id, attr->id); |
| 753 | return -1; |
| 754 | } |
| 755 | |
| 756 | memcpy(attr->variable, value, val_len); |
| 757 | |
| 758 | return 0; |
| 759 | } |
| 760 | |
| 761 | |
| 762 | static int parse_template_frame_file(struct sigma_dut *dut, const char *fname, |
| 763 | char *buf, size_t *length, |
| 764 | struct template_frame_tag *tags, |
| 765 | size_t *num_tags) |
| 766 | { |
| 767 | char line[512]; |
| 768 | FILE *f; |
| 769 | size_t offset = 0, tag_index = 0; |
| 770 | int num, index; |
| 771 | int in_tag = 0, tag_num = 0, tag_offset = 0; |
| 772 | |
| 773 | if (*length < sizeof(struct ieee80211_hdr_3addr)) { |
| 774 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 775 | "supplied buffer is too small"); |
| 776 | return -1; |
| 777 | } |
| 778 | |
| 779 | f = fopen(fname, "r"); |
| 780 | if (!f) { |
| 781 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 782 | "failed to open template file %s", fname); |
| 783 | return -1; |
| 784 | } |
| 785 | |
| 786 | /* |
| 787 | * template file format: lines beginning with # are comments and |
| 788 | * ignored. |
| 789 | * It is possible to tag bytes in the frame to make it easy |
| 790 | * to replace fields in the template, espcially if they appear |
| 791 | * in variable-sized sections (such as IEs) |
| 792 | * This is done by a line beginning with $NUM where NUM is an integer |
| 793 | * tag number. It can be followed by space(s) and comment. |
| 794 | * The next line is considered the tagged bytes. The parser will fill |
| 795 | * the tag number, offset and length of the tagged bytes. |
| 796 | * rest of the lines contain frame bytes as sequence of hex digits, |
| 797 | * 2 digits for each byte. Spaces are allowed between bytes. |
| 798 | * On bytes lines only hex digits and spaces are allowed |
| 799 | */ |
| 800 | while (!feof(f)) { |
| 801 | if (!fgets(line, sizeof(line), f)) |
| 802 | break; |
| 803 | index = 0; |
| 804 | while (isspace((unsigned char) line[index])) |
| 805 | index++; |
| 806 | if (!line[index] || line[index] == '#') |
| 807 | continue; |
| 808 | if (line[index] == '$') { |
| 809 | if (tags) { |
| 810 | index++; |
| 811 | tag_num = strtol(&line[index], NULL, 0); |
| 812 | tag_offset = offset; |
| 813 | in_tag = 1; |
| 814 | } |
| 815 | continue; |
| 816 | } |
| 817 | while (line[index]) { |
| 818 | if (isspace((unsigned char) line[index])) { |
| 819 | index++; |
| 820 | continue; |
| 821 | } |
| 822 | num = hex_byte(&line[index]); |
| 823 | if (num < 0) |
| 824 | break; |
| 825 | buf[offset++] = num; |
| 826 | if (offset == *length) |
| 827 | goto out; |
| 828 | index += 2; |
| 829 | } |
| 830 | |
| 831 | if (in_tag) { |
| 832 | if (tag_index < *num_tags) { |
| 833 | tags[tag_index].num = tag_num; |
| 834 | tags[tag_index].offset = tag_offset; |
| 835 | tags[tag_index].len = offset - tag_offset; |
| 836 | tag_index++; |
| 837 | } else { |
| 838 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 839 | "too many tags, tag ignored"); |
| 840 | } |
| 841 | in_tag = 0; |
| 842 | } |
| 843 | } |
| 844 | |
| 845 | if (num_tags) |
| 846 | *num_tags = tag_index; |
| 847 | out: |
| 848 | fclose(f); |
| 849 | if (offset < sizeof(struct ieee80211_hdr_3addr)) { |
| 850 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 851 | "template frame is too small"); |
| 852 | return -1; |
| 853 | } |
| 854 | |
| 855 | *length = offset; |
| 856 | return 0; |
| 857 | } |
| 858 | |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 859 | #endif /* __linux__ */ |
| 860 | |
| 861 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 862 | static void static_ip_file(int proto, const char *addr, const char *mask, |
| 863 | const char *gw) |
| 864 | { |
| 865 | if (proto) { |
| 866 | FILE *f = fopen("static-ip", "w"); |
| 867 | if (f) { |
| 868 | fprintf(f, "%d %s %s %s\n", proto, addr, |
| 869 | mask ? mask : "N/A", |
| 870 | gw ? gw : "N/A"); |
| 871 | fclose(f); |
| 872 | } |
| 873 | } else { |
| 874 | unlink("static-ip"); |
| 875 | } |
| 876 | } |
| 877 | |
| 878 | |
| 879 | static int send_neighbor_request(struct sigma_dut *dut, const char *intf, |
| 880 | const char *ssid) |
| 881 | { |
| 882 | #ifdef __linux__ |
| 883 | char buf[100]; |
| 884 | |
| 885 | snprintf(buf, sizeof(buf), "iwpriv %s neighbor %s", |
| 886 | intf, ssid); |
| 887 | sigma_dut_print(dut, DUT_MSG_INFO, "Request: %s", buf); |
| 888 | |
| 889 | if (system(buf) != 0) { |
| 890 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 891 | "iwpriv neighbor request failed"); |
| 892 | return -1; |
| 893 | } |
| 894 | |
| 895 | sigma_dut_print(dut, DUT_MSG_INFO, "iwpriv neighbor request send"); |
| 896 | |
| 897 | return 0; |
| 898 | #else /* __linux__ */ |
| 899 | return -1; |
| 900 | #endif /* __linux__ */ |
| 901 | } |
| 902 | |
| 903 | |
| 904 | static int send_trans_mgmt_query(struct sigma_dut *dut, const char *intf, |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 905 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 906 | { |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 907 | const char *val; |
| 908 | int reason_code = 0; |
| 909 | char buf[1024]; |
| 910 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 911 | /* |
| 912 | * In the earlier builds we used WNM_QUERY and in later |
| 913 | * builds used WNM_BSS_QUERY. |
| 914 | */ |
| 915 | |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 916 | val = get_param(cmd, "BTMQuery_Reason_Code"); |
| 917 | if (val) |
| 918 | reason_code = atoi(val); |
| 919 | |
| 920 | val = get_param(cmd, "Cand_List"); |
| 921 | if (val && atoi(val) == 1 && dut->btm_query_cand_list) { |
| 922 | snprintf(buf, sizeof(buf), "WNM_BSS_QUERY %d%s", reason_code, |
| 923 | dut->btm_query_cand_list); |
| 924 | free(dut->btm_query_cand_list); |
| 925 | dut->btm_query_cand_list = NULL; |
| 926 | } else { |
| 927 | snprintf(buf, sizeof(buf), "WNM_BSS_QUERY %d", reason_code); |
| 928 | } |
| 929 | |
| 930 | if (wpa_command(intf, buf) != 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 931 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 932 | "transition management query failed"); |
| 933 | return -1; |
| 934 | } |
| 935 | |
| 936 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 937 | "transition management query sent"); |
| 938 | |
| 939 | return 0; |
| 940 | } |
| 941 | |
| 942 | |
| 943 | int is_ip_addr(const char *str) |
| 944 | { |
| 945 | const char *pos = str; |
| 946 | struct in_addr addr; |
| 947 | |
| 948 | while (*pos) { |
| 949 | if (*pos != '.' && (*pos < '0' || *pos > '9')) |
| 950 | return 0; |
| 951 | pos++; |
| 952 | } |
| 953 | |
| 954 | return inet_aton(str, &addr); |
| 955 | } |
| 956 | |
| 957 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 958 | int get_ip_config(struct sigma_dut *dut, const char *ifname, char *buf, |
| 959 | size_t buf_len) |
| 960 | { |
vamsi krishna | a11d073 | 2018-05-16 12:19:48 +0530 | [diff] [blame] | 961 | char tmp[256]; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 962 | char ip[16], mask[15], dns[16], sec_dns[16]; |
| 963 | int is_dhcp = 0; |
| 964 | int s; |
| 965 | #ifdef ANDROID |
| 966 | char prop[PROPERTY_VALUE_MAX]; |
vamsi krishna | a11d073 | 2018-05-16 12:19:48 +0530 | [diff] [blame] | 967 | #else /* ANDROID */ |
| 968 | FILE *f; |
| 969 | #ifdef __linux__ |
| 970 | const char *str_ps; |
| 971 | #endif /* __linux__ */ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 972 | #endif /* ANDROID */ |
| 973 | |
| 974 | ip[0] = '\0'; |
| 975 | mask[0] = '\0'; |
| 976 | dns[0] = '\0'; |
| 977 | sec_dns[0] = '\0'; |
| 978 | |
| 979 | s = socket(PF_INET, SOCK_DGRAM, 0); |
| 980 | if (s >= 0) { |
| 981 | struct ifreq ifr; |
| 982 | struct sockaddr_in saddr; |
| 983 | |
| 984 | memset(&ifr, 0, sizeof(ifr)); |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 985 | strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 986 | if (ioctl(s, SIOCGIFADDR, &ifr) < 0) { |
| 987 | sigma_dut_print(dut, DUT_MSG_INFO, "Failed to get " |
| 988 | "%s IP address: %s", |
| 989 | ifname, strerror(errno)); |
| 990 | } else { |
| 991 | memcpy(&saddr, &ifr.ifr_addr, |
| 992 | sizeof(struct sockaddr_in)); |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 993 | strlcpy(ip, inet_ntoa(saddr.sin_addr), sizeof(ip)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 994 | } |
| 995 | |
| 996 | if (ioctl(s, SIOCGIFNETMASK, &ifr) == 0) { |
| 997 | memcpy(&saddr, &ifr.ifr_addr, |
| 998 | sizeof(struct sockaddr_in)); |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 999 | strlcpy(mask, inet_ntoa(saddr.sin_addr), sizeof(mask)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1000 | } |
| 1001 | close(s); |
| 1002 | } |
| 1003 | |
| 1004 | #ifdef ANDROID |
| 1005 | snprintf(tmp, sizeof(tmp), "dhcp.%s.pid", ifname); |
| 1006 | if (property_get(tmp, prop, NULL) != 0 && atoi(prop) > 0) { |
| 1007 | snprintf(tmp, sizeof(tmp), "dhcp.%s.result", ifname); |
| 1008 | if (property_get(tmp, prop, NULL) != 0 && |
| 1009 | strcmp(prop, "ok") == 0) { |
| 1010 | snprintf(tmp, sizeof(tmp), "dhcp.%s.ipaddress", |
| 1011 | ifname); |
| 1012 | if (property_get(tmp, prop, NULL) != 0 && |
| 1013 | strcmp(ip, prop) == 0) |
| 1014 | is_dhcp = 1; |
| 1015 | } |
| 1016 | } |
| 1017 | |
| 1018 | snprintf(tmp, sizeof(tmp), "dhcp.%s.dns1", ifname); |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 1019 | if (property_get(tmp, prop, NULL) != 0) |
| 1020 | strlcpy(dns, prop, sizeof(dns)); |
| 1021 | else if (property_get("net.dns1", prop, NULL) != 0) |
| 1022 | strlcpy(dns, prop, sizeof(dns)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1023 | |
| 1024 | snprintf(tmp, sizeof(tmp), "dhcp.%s.dns2", ifname); |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 1025 | if (property_get(tmp, prop, NULL) != 0) |
| 1026 | strlcpy(sec_dns, prop, sizeof(sec_dns)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1027 | #else /* ANDROID */ |
| 1028 | #ifdef __linux__ |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 1029 | if (get_driver_type(dut) == DRIVER_OPENWRT) |
Sarvepalli, Rajesh Babu | a76c644 | 2016-03-18 20:34:26 +0530 | [diff] [blame] | 1030 | str_ps = "ps -w"; |
| 1031 | else |
| 1032 | str_ps = "ps ax"; |
| 1033 | snprintf(tmp, sizeof(tmp), |
| 1034 | "%s | grep dhclient | grep -v grep | grep -q %s", |
| 1035 | str_ps, ifname); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1036 | if (system(tmp) == 0) |
| 1037 | is_dhcp = 1; |
| 1038 | else { |
Sarvepalli, Rajesh Babu | a76c644 | 2016-03-18 20:34:26 +0530 | [diff] [blame] | 1039 | snprintf(tmp, sizeof(tmp), |
| 1040 | "%s | grep udhcpc | grep -v grep | grep -q %s", |
| 1041 | str_ps, ifname); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1042 | if (system(tmp) == 0) |
| 1043 | is_dhcp = 1; |
| 1044 | else { |
Sarvepalli, Rajesh Babu | a76c644 | 2016-03-18 20:34:26 +0530 | [diff] [blame] | 1045 | snprintf(tmp, sizeof(tmp), |
| 1046 | "%s | grep dhcpcd | grep -v grep | grep -q %s", |
| 1047 | str_ps, ifname); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1048 | if (system(tmp) == 0) |
| 1049 | is_dhcp = 1; |
| 1050 | } |
| 1051 | } |
| 1052 | #endif /* __linux__ */ |
| 1053 | |
| 1054 | f = fopen("/etc/resolv.conf", "r"); |
| 1055 | if (f) { |
vamsi krishna | a11d073 | 2018-05-16 12:19:48 +0530 | [diff] [blame] | 1056 | char *pos, *pos2; |
| 1057 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1058 | while (fgets(tmp, sizeof(tmp), f)) { |
| 1059 | if (strncmp(tmp, "nameserver", 10) != 0) |
| 1060 | continue; |
| 1061 | pos = tmp + 10; |
| 1062 | while (*pos == ' ' || *pos == '\t') |
| 1063 | pos++; |
| 1064 | pos2 = pos; |
| 1065 | while (*pos2) { |
| 1066 | if (*pos2 == '\n' || *pos2 == '\r') { |
| 1067 | *pos2 = '\0'; |
| 1068 | break; |
| 1069 | } |
| 1070 | pos2++; |
| 1071 | } |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 1072 | if (!dns[0]) |
| 1073 | strlcpy(dns, pos, sizeof(dns)); |
| 1074 | else if (!sec_dns[0]) |
| 1075 | strlcpy(sec_dns, pos, sizeof(sec_dns)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1076 | } |
| 1077 | fclose(f); |
| 1078 | } |
| 1079 | #endif /* ANDROID */ |
| 1080 | |
| 1081 | snprintf(buf, buf_len, "dhcp,%d,ip,%s,mask,%s,primary-dns,%s", |
| 1082 | is_dhcp, ip, mask, dns); |
| 1083 | buf[buf_len - 1] = '\0'; |
| 1084 | |
| 1085 | return 0; |
| 1086 | } |
| 1087 | |
| 1088 | |
| 1089 | |
| 1090 | |
| 1091 | int get_ipv6_config(struct sigma_dut *dut, const char *ifname, char *buf, |
| 1092 | size_t buf_len) |
| 1093 | { |
| 1094 | #ifdef __linux__ |
| 1095 | #ifdef ANDROID |
| 1096 | char cmd[200], result[1000], *pos, *end; |
| 1097 | FILE *f; |
| 1098 | size_t len; |
| 1099 | |
| 1100 | snprintf(cmd, sizeof(cmd), "ip addr show dev %s scope global", ifname); |
| 1101 | f = popen(cmd, "r"); |
| 1102 | if (f == NULL) |
| 1103 | return -1; |
| 1104 | len = fread(result, 1, sizeof(result) - 1, f); |
| 1105 | pclose(f); |
| 1106 | if (len == 0) |
| 1107 | return -1; |
| 1108 | result[len] = '\0'; |
| 1109 | sigma_dut_print(dut, DUT_MSG_DEBUG, "%s result: %s\n", cmd, result); |
| 1110 | |
| 1111 | pos = strstr(result, "inet6 "); |
| 1112 | if (pos == NULL) |
| 1113 | return -1; |
| 1114 | pos += 6; |
| 1115 | end = strchr(pos, ' '); |
| 1116 | if (end) |
| 1117 | *end = '\0'; |
| 1118 | end = strchr(pos, '/'); |
| 1119 | if (end) |
| 1120 | *end = '\0'; |
| 1121 | snprintf(buf, buf_len, "ip,%s", pos); |
| 1122 | buf[buf_len - 1] = '\0'; |
| 1123 | return 0; |
| 1124 | #else /* ANDROID */ |
| 1125 | struct ifaddrs *ifaddr, *ifa; |
| 1126 | int res, found = 0; |
| 1127 | char host[NI_MAXHOST]; |
| 1128 | |
| 1129 | if (getifaddrs(&ifaddr) < 0) { |
| 1130 | perror("getifaddrs"); |
| 1131 | return -1; |
| 1132 | } |
| 1133 | |
| 1134 | for (ifa = ifaddr; ifa; ifa = ifa->ifa_next) { |
| 1135 | if (strcasecmp(ifname, ifa->ifa_name) != 0) |
| 1136 | continue; |
| 1137 | if (ifa->ifa_addr == NULL || |
| 1138 | ifa->ifa_addr->sa_family != AF_INET6) |
| 1139 | continue; |
| 1140 | |
| 1141 | res = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in6), |
| 1142 | host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST); |
| 1143 | if (res != 0) { |
| 1144 | sigma_dut_print(dut, DUT_MSG_DEBUG, "getnameinfo: %s", |
| 1145 | gai_strerror(res)); |
| 1146 | continue; |
| 1147 | } |
| 1148 | if (strncmp(host, "fe80::", 6) == 0) |
| 1149 | continue; /* skip link-local */ |
| 1150 | |
| 1151 | sigma_dut_print(dut, DUT_MSG_DEBUG, "ifaddr: %s", host); |
| 1152 | found = 1; |
| 1153 | break; |
| 1154 | } |
| 1155 | |
| 1156 | freeifaddrs(ifaddr); |
| 1157 | |
| 1158 | if (found) { |
| 1159 | char *pos; |
| 1160 | pos = strchr(host, '%'); |
| 1161 | if (pos) |
| 1162 | *pos = '\0'; |
| 1163 | snprintf(buf, buf_len, "ip,%s", host); |
| 1164 | buf[buf_len - 1] = '\0'; |
| 1165 | return 0; |
| 1166 | } |
| 1167 | |
| 1168 | #endif /* ANDROID */ |
| 1169 | #endif /* __linux__ */ |
| 1170 | return -1; |
| 1171 | } |
| 1172 | |
| 1173 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 1174 | static enum sigma_cmd_result cmd_sta_get_ip_config(struct sigma_dut *dut, |
| 1175 | struct sigma_conn *conn, |
| 1176 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1177 | { |
| 1178 | const char *intf = get_param(cmd, "Interface"); |
| 1179 | const char *ifname; |
| 1180 | char buf[200]; |
| 1181 | const char *val; |
| 1182 | int type = 1; |
| 1183 | |
| 1184 | if (intf == NULL) |
| 1185 | return -1; |
| 1186 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 1187 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 1188 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1189 | else |
| 1190 | ifname = intf; |
| 1191 | |
| 1192 | /* |
| 1193 | * UCC may assume the IP address to be available immediately after |
| 1194 | * association without trying to run sta_get_ip_config multiple times. |
| 1195 | * Sigma CAPI does not specify this command as a block command that |
| 1196 | * would wait for the address to become available, but to pass tests |
| 1197 | * more reliably, it looks like such a wait may be needed here. |
| 1198 | */ |
| 1199 | if (wait_ip_addr(dut, ifname, 15) < 0) { |
| 1200 | sigma_dut_print(dut, DUT_MSG_INFO, "Could not get IP address " |
| 1201 | "for sta_get_ip_config"); |
| 1202 | /* |
| 1203 | * Try to continue anyway since many UCC tests do not really |
| 1204 | * care about the return value from here.. |
| 1205 | */ |
| 1206 | } |
| 1207 | |
| 1208 | val = get_param(cmd, "Type"); |
| 1209 | if (val) |
| 1210 | type = atoi(val); |
| 1211 | if (type == 2 || dut->last_set_ip_config_ipv6) { |
| 1212 | int i; |
| 1213 | |
| 1214 | /* |
| 1215 | * Since we do not have proper wait for IPv6 addresses, use a |
| 1216 | * fixed two second delay here as a workaround for UCC script |
| 1217 | * assuming IPv6 address is available when this command returns. |
| 1218 | * Some scripts did not use Type,2 properly for IPv6, so include |
| 1219 | * also the cases where the previous sta_set_ip_config indicated |
| 1220 | * use of IPv6. |
| 1221 | */ |
| 1222 | sigma_dut_print(dut, DUT_MSG_INFO, "Wait up to extra ten seconds in sta_get_ip_config for IPv6 address"); |
| 1223 | for (i = 0; i < 10; i++) { |
| 1224 | sleep(1); |
| 1225 | if (get_ipv6_config(dut, ifname, buf, sizeof(buf)) == 0) |
| 1226 | { |
| 1227 | sigma_dut_print(dut, DUT_MSG_INFO, "Found IPv6 address"); |
| 1228 | send_resp(dut, conn, SIGMA_COMPLETE, buf); |
| 1229 | #ifdef ANDROID |
| 1230 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1231 | "Adding IPv6 rule on Android"); |
| 1232 | add_ipv6_rule(dut, intf); |
| 1233 | #endif /* ANDROID */ |
| 1234 | |
| 1235 | return 0; |
| 1236 | } |
| 1237 | } |
| 1238 | } |
| 1239 | if (type == 1) { |
| 1240 | if (get_ip_config(dut, ifname, buf, sizeof(buf)) < 0) |
| 1241 | return -2; |
| 1242 | } else if (type == 2) { |
| 1243 | if (get_ipv6_config(dut, ifname, buf, sizeof(buf)) < 0) |
| 1244 | return -2; |
| 1245 | } else { |
| 1246 | send_resp(dut, conn, SIGMA_ERROR, |
| 1247 | "errorCode,Unsupported address type"); |
| 1248 | return 0; |
| 1249 | } |
| 1250 | |
| 1251 | send_resp(dut, conn, SIGMA_COMPLETE, buf); |
| 1252 | return 0; |
| 1253 | } |
| 1254 | |
| 1255 | |
| 1256 | static void kill_dhcp_client(struct sigma_dut *dut, const char *ifname) |
| 1257 | { |
| 1258 | #ifdef __linux__ |
| 1259 | char buf[200]; |
| 1260 | char path[128]; |
| 1261 | struct stat s; |
| 1262 | |
| 1263 | #ifdef ANDROID |
| 1264 | snprintf(path, sizeof(path), "/data/misc/dhcp/dhcpcd-%s.pid", ifname); |
| 1265 | #else /* ANDROID */ |
| 1266 | snprintf(path, sizeof(path), "/var/run/dhclient-%s.pid", ifname); |
| 1267 | #endif /* ANDROID */ |
| 1268 | if (stat(path, &s) == 0) { |
| 1269 | snprintf(buf, sizeof(buf), "kill `cat %s`", path); |
| 1270 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1271 | "Kill previous DHCP client: %s", buf); |
| 1272 | if (system(buf) != 0) |
| 1273 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1274 | "Failed to kill DHCP client"); |
| 1275 | unlink(path); |
| 1276 | sleep(1); |
| 1277 | } else { |
| 1278 | snprintf(path, sizeof(path), "/var/run/dhcpcd-%s.pid", ifname); |
| 1279 | |
| 1280 | if (stat(path, &s) == 0) { |
| 1281 | snprintf(buf, sizeof(buf), "kill `cat %s`", path); |
| 1282 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1283 | "Kill previous DHCP client: %s", buf); |
| 1284 | if (system(buf) != 0) |
| 1285 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1286 | "Failed to kill DHCP client"); |
| 1287 | unlink(path); |
| 1288 | sleep(1); |
| 1289 | } |
| 1290 | } |
| 1291 | #endif /* __linux__ */ |
| 1292 | } |
| 1293 | |
| 1294 | |
| 1295 | static int start_dhcp_client(struct sigma_dut *dut, const char *ifname) |
| 1296 | { |
| 1297 | #ifdef __linux__ |
| 1298 | char buf[200]; |
| 1299 | |
| 1300 | #ifdef ANDROID |
Purushottam Kushwaha | 46d6426 | 2016-08-23 17:57:53 +0530 | [diff] [blame] | 1301 | if (access("/system/bin/dhcpcd", F_OK) != -1) { |
| 1302 | snprintf(buf, sizeof(buf), |
| 1303 | "/system/bin/dhcpcd -b %s", ifname); |
| 1304 | } else if (access("/system/bin/dhcptool", F_OK) != -1) { |
| 1305 | snprintf(buf, sizeof(buf), "/system/bin/dhcptool %s &", ifname); |
Ankita Bajaj | 8454e5d | 2019-04-05 16:04:55 +0530 | [diff] [blame] | 1306 | } else if (access("/vendor/bin/dhcpcd", F_OK) != -1) { |
| 1307 | snprintf(buf, sizeof(buf), "/vendor/bin/dhcpcd -b %s", ifname); |
| 1308 | } else if (access("/vendor/bin/dhcptool", F_OK) != -1) { |
| 1309 | snprintf(buf, sizeof(buf), "/vendor/bin/dhcptool %s", ifname); |
Purushottam Kushwaha | 46d6426 | 2016-08-23 17:57:53 +0530 | [diff] [blame] | 1310 | } else { |
| 1311 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 1312 | "DHCP client program missing"); |
| 1313 | return 0; |
| 1314 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1315 | #else /* ANDROID */ |
| 1316 | snprintf(buf, sizeof(buf), |
| 1317 | "dhclient -nw -pf /var/run/dhclient-%s.pid %s", |
| 1318 | ifname, ifname); |
| 1319 | #endif /* ANDROID */ |
| 1320 | sigma_dut_print(dut, DUT_MSG_INFO, "Start DHCP client: %s", buf); |
| 1321 | if (system(buf) != 0) { |
| 1322 | snprintf(buf, sizeof(buf), "dhcpcd -t 0 %s &", ifname); |
| 1323 | if (system(buf) != 0) { |
| 1324 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1325 | "Failed to start DHCP client"); |
| 1326 | #ifndef ANDROID |
| 1327 | return -1; |
| 1328 | #endif /* ANDROID */ |
| 1329 | } |
| 1330 | } |
| 1331 | #endif /* __linux__ */ |
| 1332 | |
| 1333 | return 0; |
| 1334 | } |
| 1335 | |
| 1336 | |
| 1337 | static int clear_ip_addr(struct sigma_dut *dut, const char *ifname) |
| 1338 | { |
| 1339 | #ifdef __linux__ |
| 1340 | char buf[200]; |
| 1341 | |
| 1342 | snprintf(buf, sizeof(buf), "ip addr flush dev %s", ifname); |
| 1343 | if (system(buf) != 0) { |
| 1344 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1345 | "Failed to clear IP addresses"); |
| 1346 | return -1; |
| 1347 | } |
| 1348 | #endif /* __linux__ */ |
| 1349 | |
| 1350 | return 0; |
| 1351 | } |
| 1352 | |
| 1353 | |
| 1354 | #ifdef ANDROID |
| 1355 | static int add_ipv6_rule(struct sigma_dut *dut, const char *ifname) |
| 1356 | { |
| 1357 | char cmd[200], *result, *pos; |
| 1358 | FILE *fp; |
Pradeep Reddy POTTETI | f58a1fe | 2016-10-13 17:22:03 +0530 | [diff] [blame] | 1359 | int tableid; |
| 1360 | size_t len, result_len = 1000; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1361 | |
| 1362 | snprintf(cmd, sizeof(cmd), "ip -6 route list table all | grep %s", |
| 1363 | ifname); |
| 1364 | fp = popen(cmd, "r"); |
| 1365 | if (fp == NULL) |
| 1366 | return -1; |
| 1367 | |
| 1368 | result = malloc(result_len); |
Pradeep Reddy POTTETI | 673d85c | 2016-07-26 19:08:07 +0530 | [diff] [blame] | 1369 | if (result == NULL) { |
| 1370 | fclose(fp); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1371 | return -1; |
Pradeep Reddy POTTETI | 673d85c | 2016-07-26 19:08:07 +0530 | [diff] [blame] | 1372 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1373 | |
Pradeep Reddy POTTETI | f58a1fe | 2016-10-13 17:22:03 +0530 | [diff] [blame] | 1374 | len = fread(result, 1, result_len - 1, fp); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1375 | fclose(fp); |
| 1376 | |
| 1377 | if (len == 0) { |
| 1378 | free(result); |
| 1379 | return -1; |
| 1380 | } |
Pradeep Reddy POTTETI | f58a1fe | 2016-10-13 17:22:03 +0530 | [diff] [blame] | 1381 | result[len] = '\0'; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1382 | |
| 1383 | pos = strstr(result, "table "); |
| 1384 | if (pos == NULL) { |
| 1385 | free(result); |
| 1386 | return -1; |
| 1387 | } |
| 1388 | |
| 1389 | pos += strlen("table "); |
| 1390 | tableid = atoi(pos); |
| 1391 | if (tableid != 0) { |
| 1392 | if (system("ip -6 rule del prio 22000") != 0) { |
| 1393 | /* ignore any error */ |
| 1394 | } |
| 1395 | snprintf(cmd, sizeof(cmd), |
| 1396 | "ip -6 rule add from all lookup %d prio 22000", |
| 1397 | tableid); |
| 1398 | if (system(cmd) != 0) { |
| 1399 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1400 | "Failed to run %s", cmd); |
| 1401 | free(result); |
| 1402 | return -1; |
| 1403 | } |
| 1404 | } else { |
| 1405 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1406 | "No Valid Table Id found %s", pos); |
| 1407 | free(result); |
| 1408 | return -1; |
| 1409 | } |
| 1410 | free(result); |
| 1411 | |
| 1412 | return 0; |
| 1413 | } |
| 1414 | #endif /* ANDROID */ |
| 1415 | |
| 1416 | |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 1417 | int set_ipv4_addr(struct sigma_dut *dut, const char *ifname, |
| 1418 | const char *ip, const char *mask) |
| 1419 | { |
| 1420 | char buf[200]; |
| 1421 | |
| 1422 | snprintf(buf, sizeof(buf), "ifconfig %s %s netmask %s", |
| 1423 | ifname, ip, mask); |
| 1424 | return system(buf) == 0; |
| 1425 | } |
| 1426 | |
| 1427 | |
| 1428 | int set_ipv4_gw(struct sigma_dut *dut, const char *gw) |
| 1429 | { |
| 1430 | char buf[200]; |
| 1431 | |
| 1432 | if (!is_ip_addr(gw)) { |
| 1433 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Invalid gw addr - %s", gw); |
| 1434 | return -1; |
| 1435 | } |
| 1436 | |
| 1437 | snprintf(buf, sizeof(buf), "route add default gw %s", gw); |
| 1438 | if (!dut->no_ip_addr_set && system(buf) != 0) { |
| 1439 | snprintf(buf, sizeof(buf), "ip ro re default via %s", |
| 1440 | gw); |
| 1441 | if (system(buf) != 0) |
| 1442 | return 0; |
| 1443 | } |
| 1444 | |
| 1445 | return 1; |
| 1446 | } |
| 1447 | |
| 1448 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 1449 | static enum sigma_cmd_result cmd_sta_set_ip_config(struct sigma_dut *dut, |
| 1450 | struct sigma_conn *conn, |
| 1451 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1452 | { |
| 1453 | const char *intf = get_param(cmd, "Interface"); |
| 1454 | const char *ifname; |
| 1455 | char buf[200]; |
| 1456 | const char *val, *ip, *mask, *gw; |
| 1457 | int type = 1; |
| 1458 | |
| 1459 | if (intf == NULL) |
| 1460 | return -1; |
| 1461 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 1462 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 1463 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1464 | else |
| 1465 | ifname = intf; |
| 1466 | |
| 1467 | if (if_nametoindex(ifname) == 0) { |
| 1468 | send_resp(dut, conn, SIGMA_ERROR, |
| 1469 | "ErrorCode,Unknown interface"); |
| 1470 | return 0; |
| 1471 | } |
| 1472 | |
| 1473 | val = get_param(cmd, "Type"); |
| 1474 | if (val) { |
| 1475 | type = atoi(val); |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 1476 | if (type < 1 || type > 3) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1477 | send_resp(dut, conn, SIGMA_ERROR, |
| 1478 | "ErrorCode,Unsupported address type"); |
| 1479 | return 0; |
| 1480 | } |
| 1481 | } |
| 1482 | |
| 1483 | dut->last_set_ip_config_ipv6 = 0; |
| 1484 | |
| 1485 | val = get_param(cmd, "dhcp"); |
| 1486 | if (val && (strcmp(val, "1") == 0 || strcasecmp(val, "true") == 0)) { |
| 1487 | static_ip_file(0, NULL, NULL, NULL); |
| 1488 | #ifdef __linux__ |
| 1489 | if (type == 2) { |
| 1490 | dut->last_set_ip_config_ipv6 = 1; |
| 1491 | sigma_dut_print(dut, DUT_MSG_INFO, "Using IPv6 " |
| 1492 | "stateless address autoconfiguration"); |
| 1493 | #ifdef ANDROID |
| 1494 | /* |
| 1495 | * This sleep is required as the assignment in case of |
| 1496 | * Android is taking time and is done by the kernel. |
| 1497 | * The subsequent ping for IPv6 is impacting HS20 test |
| 1498 | * case. |
| 1499 | */ |
| 1500 | sleep(2); |
| 1501 | add_ipv6_rule(dut, intf); |
| 1502 | #endif /* ANDROID */ |
| 1503 | /* Assume this happens by default */ |
| 1504 | return 1; |
| 1505 | } |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 1506 | if (type != 3) { |
| 1507 | kill_dhcp_client(dut, ifname); |
| 1508 | if (start_dhcp_client(dut, ifname) < 0) |
| 1509 | return -2; |
| 1510 | } else { |
| 1511 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 1512 | "Using FILS HLP DHCPv4 Rapid Commit"); |
| 1513 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1514 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1515 | return 1; |
| 1516 | #endif /* __linux__ */ |
| 1517 | return -2; |
| 1518 | } |
| 1519 | |
| 1520 | ip = get_param(cmd, "ip"); |
Pradeep Reddy POTTETI | b18c565 | 2016-01-18 12:45:37 +0530 | [diff] [blame] | 1521 | if (!ip) { |
| 1522 | send_resp(dut, conn, SIGMA_INVALID, |
| 1523 | "ErrorCode,Missing IP address"); |
| 1524 | return 0; |
| 1525 | } |
| 1526 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1527 | mask = get_param(cmd, "mask"); |
Pradeep Reddy POTTETI | b18c565 | 2016-01-18 12:45:37 +0530 | [diff] [blame] | 1528 | if (!mask) { |
| 1529 | send_resp(dut, conn, SIGMA_INVALID, |
| 1530 | "ErrorCode,Missing subnet mask"); |
| 1531 | return 0; |
| 1532 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1533 | |
| 1534 | if (type == 2) { |
| 1535 | int net = atoi(mask); |
| 1536 | |
| 1537 | if ((net < 0 && net > 64) || !is_ipv6_addr(ip)) |
| 1538 | return -1; |
| 1539 | |
| 1540 | if (dut->no_ip_addr_set) { |
| 1541 | snprintf(buf, sizeof(buf), |
| 1542 | "sysctl net.ipv6.conf.%s.disable_ipv6=1", |
| 1543 | ifname); |
| 1544 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 1545 | if (system(buf) != 0) { |
| 1546 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 1547 | "Failed to disable IPv6 address before association"); |
| 1548 | } |
| 1549 | } else { |
Veerendranath Jakkam | 176181c | 2020-05-16 00:19:21 +0530 | [diff] [blame] | 1550 | if (set_ipv6_addr(dut, ip, mask, ifname) != 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1551 | send_resp(dut, conn, SIGMA_ERROR, |
| 1552 | "ErrorCode,Failed to set IPv6 address"); |
| 1553 | return 0; |
| 1554 | } |
| 1555 | } |
| 1556 | |
| 1557 | dut->last_set_ip_config_ipv6 = 1; |
| 1558 | static_ip_file(6, ip, mask, NULL); |
| 1559 | return 1; |
| 1560 | } else if (type == 1) { |
Pradeep Reddy POTTETI | b18c565 | 2016-01-18 12:45:37 +0530 | [diff] [blame] | 1561 | if (!is_ip_addr(ip) || !is_ip_addr(mask)) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1562 | return -1; |
| 1563 | } |
| 1564 | |
| 1565 | kill_dhcp_client(dut, ifname); |
| 1566 | |
| 1567 | if (!dut->no_ip_addr_set) { |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 1568 | if (!set_ipv4_addr(dut, ifname, ip, mask)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1569 | send_resp(dut, conn, SIGMA_ERROR, |
| 1570 | "ErrorCode,Failed to set IP address"); |
| 1571 | return 0; |
| 1572 | } |
| 1573 | } |
| 1574 | |
| 1575 | gw = get_param(cmd, "defaultGateway"); |
| 1576 | if (gw) { |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 1577 | if (set_ipv4_gw(dut, gw) < 1) { |
| 1578 | send_resp(dut, conn, SIGMA_ERROR, |
| 1579 | "ErrorCode,Failed to set default gateway"); |
| 1580 | return 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1581 | } |
| 1582 | } |
| 1583 | |
| 1584 | val = get_param(cmd, "primary-dns"); |
| 1585 | if (val) { |
| 1586 | /* TODO */ |
| 1587 | sigma_dut_print(dut, DUT_MSG_INFO, "Ignored primary-dns %s " |
| 1588 | "setting", val); |
| 1589 | } |
| 1590 | |
| 1591 | val = get_param(cmd, "secondary-dns"); |
| 1592 | if (val) { |
| 1593 | /* TODO */ |
| 1594 | sigma_dut_print(dut, DUT_MSG_INFO, "Ignored secondary-dns %s " |
| 1595 | "setting", val); |
| 1596 | } |
| 1597 | |
| 1598 | static_ip_file(4, ip, mask, gw); |
| 1599 | |
| 1600 | return 1; |
| 1601 | } |
| 1602 | |
| 1603 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 1604 | static enum sigma_cmd_result cmd_sta_get_info(struct sigma_dut *dut, |
| 1605 | struct sigma_conn *conn, |
| 1606 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1607 | { |
| 1608 | /* const char *intf = get_param(cmd, "Interface"); */ |
| 1609 | /* TODO: could report more details here */ |
| 1610 | send_resp(dut, conn, SIGMA_COMPLETE, "vendor,Atheros"); |
| 1611 | return 0; |
| 1612 | } |
| 1613 | |
| 1614 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 1615 | static enum sigma_cmd_result cmd_sta_get_mac_address(struct sigma_dut *dut, |
| 1616 | struct sigma_conn *conn, |
| 1617 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1618 | { |
| 1619 | /* const char *intf = get_param(cmd, "Interface"); */ |
| 1620 | char addr[20], resp[50]; |
| 1621 | |
Ankita Bajaj | 0d5825b | 2017-10-25 16:20:17 +0530 | [diff] [blame] | 1622 | if (dut->dev_role == DEVROLE_STA_CFON) |
| 1623 | return sta_cfon_get_mac_address(dut, conn, cmd); |
| 1624 | |
Jouni Malinen | 9540e01 | 2019-11-05 17:08:42 +0200 | [diff] [blame] | 1625 | start_sta_mode(dut); |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 1626 | if (get_wpa_status(get_station_ifname(dut), "address", |
| 1627 | addr, sizeof(addr)) < 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1628 | return -2; |
| 1629 | |
| 1630 | snprintf(resp, sizeof(resp), "mac,%s", addr); |
| 1631 | send_resp(dut, conn, SIGMA_COMPLETE, resp); |
| 1632 | return 0; |
| 1633 | } |
| 1634 | |
| 1635 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 1636 | static enum sigma_cmd_result cmd_sta_is_connected(struct sigma_dut *dut, |
| 1637 | struct sigma_conn *conn, |
| 1638 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1639 | { |
| 1640 | /* const char *intf = get_param(cmd, "Interface"); */ |
| 1641 | int connected = 0; |
| 1642 | char result[32]; |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 1643 | if (get_wpa_status(get_station_ifname(dut), "wpa_state", result, |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1644 | sizeof(result)) < 0) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 1645 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 1646 | "Could not get interface %s status", |
| 1647 | get_station_ifname(dut)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1648 | return -2; |
| 1649 | } |
| 1650 | |
| 1651 | sigma_dut_print(dut, DUT_MSG_DEBUG, "wpa_state=%s", result); |
| 1652 | if (strncmp(result, "COMPLETED", 9) == 0) |
| 1653 | connected = 1; |
| 1654 | |
| 1655 | if (connected) |
| 1656 | send_resp(dut, conn, SIGMA_COMPLETE, "connected,1"); |
| 1657 | else |
| 1658 | send_resp(dut, conn, SIGMA_COMPLETE, "connected,0"); |
| 1659 | |
| 1660 | return 0; |
| 1661 | } |
| 1662 | |
| 1663 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 1664 | static enum sigma_cmd_result |
| 1665 | cmd_sta_verify_ip_connection(struct sigma_dut *dut, struct sigma_conn *conn, |
| 1666 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1667 | { |
| 1668 | /* const char *intf = get_param(cmd, "Interface"); */ |
| 1669 | const char *dst, *timeout; |
| 1670 | int wait_time = 90; |
| 1671 | char buf[100]; |
| 1672 | int res; |
| 1673 | |
| 1674 | dst = get_param(cmd, "destination"); |
| 1675 | if (dst == NULL || !is_ip_addr(dst)) |
| 1676 | return -1; |
| 1677 | |
| 1678 | timeout = get_param(cmd, "timeout"); |
| 1679 | if (timeout) { |
| 1680 | wait_time = atoi(timeout); |
| 1681 | if (wait_time < 1) |
| 1682 | wait_time = 1; |
| 1683 | } |
| 1684 | |
| 1685 | /* TODO: force renewal of IP lease if DHCP is enabled */ |
| 1686 | |
| 1687 | snprintf(buf, sizeof(buf), "ping %s -c 3 -W %d", dst, wait_time); |
| 1688 | res = system(buf); |
| 1689 | sigma_dut_print(dut, DUT_MSG_DEBUG, "ping returned: %d", res); |
| 1690 | if (res == 0) |
| 1691 | send_resp(dut, conn, SIGMA_COMPLETE, "connected,1"); |
| 1692 | else if (res == 256) |
| 1693 | send_resp(dut, conn, SIGMA_COMPLETE, "connected,0"); |
| 1694 | else |
| 1695 | return -2; |
| 1696 | |
| 1697 | return 0; |
| 1698 | } |
| 1699 | |
| 1700 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 1701 | static enum sigma_cmd_result cmd_sta_get_bssid(struct sigma_dut *dut, |
| 1702 | struct sigma_conn *conn, |
| 1703 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1704 | { |
| 1705 | /* const char *intf = get_param(cmd, "Interface"); */ |
| 1706 | char bssid[20], resp[50]; |
| 1707 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 1708 | if (get_wpa_status(get_station_ifname(dut), "bssid", |
| 1709 | bssid, sizeof(bssid)) < 0) |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 1710 | strlcpy(bssid, "00:00:00:00:00:00", sizeof(bssid)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1711 | |
| 1712 | snprintf(resp, sizeof(resp), "bssid,%s", bssid); |
| 1713 | send_resp(dut, conn, SIGMA_COMPLETE, resp); |
| 1714 | return 0; |
| 1715 | } |
| 1716 | |
| 1717 | |
| 1718 | #ifdef __SAMSUNG__ |
| 1719 | static int add_use_network(const char *ifname) |
| 1720 | { |
| 1721 | char buf[100]; |
| 1722 | |
| 1723 | snprintf(buf, sizeof(buf), "USE_NETWORK ON"); |
| 1724 | wpa_command(ifname, buf); |
| 1725 | return 0; |
| 1726 | } |
| 1727 | #endif /* __SAMSUNG__ */ |
| 1728 | |
| 1729 | |
| 1730 | static int add_network_common(struct sigma_dut *dut, struct sigma_conn *conn, |
| 1731 | const char *ifname, struct sigma_cmd *cmd) |
| 1732 | { |
| 1733 | const char *ssid = get_param(cmd, "ssid"); |
| 1734 | int id; |
| 1735 | const char *val; |
| 1736 | |
| 1737 | if (ssid == NULL) |
| 1738 | return -1; |
| 1739 | |
| 1740 | start_sta_mode(dut); |
| 1741 | |
| 1742 | #ifdef __SAMSUNG__ |
| 1743 | add_use_network(ifname); |
| 1744 | #endif /* __SAMSUNG__ */ |
| 1745 | |
| 1746 | id = add_network(ifname); |
| 1747 | if (id < 0) |
| 1748 | return -2; |
| 1749 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Adding network %d", id); |
| 1750 | |
| 1751 | if (set_network_quoted(ifname, id, "ssid", ssid) < 0) |
| 1752 | return -2; |
| 1753 | |
| 1754 | dut->infra_network_id = id; |
| 1755 | snprintf(dut->infra_ssid, sizeof(dut->infra_ssid), "%s", ssid); |
| 1756 | |
| 1757 | val = get_param(cmd, "program"); |
| 1758 | if (!val) |
| 1759 | val = get_param(cmd, "prog"); |
| 1760 | if (val && strcasecmp(val, "hs2") == 0) { |
| 1761 | char buf[100]; |
| 1762 | snprintf(buf, sizeof(buf), "ENABLE_NETWORK %d no-connect", id); |
| 1763 | wpa_command(ifname, buf); |
| 1764 | |
| 1765 | val = get_param(cmd, "prefer"); |
| 1766 | if (val && atoi(val) > 0) |
| 1767 | set_network(ifname, id, "priority", "1"); |
| 1768 | } |
| 1769 | |
| 1770 | return id; |
| 1771 | } |
| 1772 | |
| 1773 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 1774 | static enum sigma_cmd_result cmd_sta_set_encryption(struct sigma_dut *dut, |
| 1775 | struct sigma_conn *conn, |
| 1776 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1777 | { |
| 1778 | const char *intf = get_param(cmd, "Interface"); |
| 1779 | const char *ssid = get_param(cmd, "ssid"); |
| 1780 | const char *type = get_param(cmd, "encpType"); |
| 1781 | const char *ifname; |
| 1782 | char buf[200]; |
| 1783 | int id; |
| 1784 | |
| 1785 | if (intf == NULL || ssid == NULL) |
| 1786 | return -1; |
| 1787 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 1788 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 1789 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1790 | else |
| 1791 | ifname = intf; |
| 1792 | |
| 1793 | id = add_network_common(dut, conn, ifname, cmd); |
| 1794 | if (id < 0) |
| 1795 | return id; |
| 1796 | |
| 1797 | if (set_network(ifname, id, "key_mgmt", "NONE") < 0) |
| 1798 | return -2; |
| 1799 | |
| 1800 | if (type && strcasecmp(type, "wep") == 0) { |
| 1801 | const char *val; |
| 1802 | int i; |
| 1803 | |
| 1804 | val = get_param(cmd, "activeKey"); |
| 1805 | if (val) { |
| 1806 | int keyid; |
| 1807 | keyid = atoi(val); |
| 1808 | if (keyid < 1 || keyid > 4) |
| 1809 | return -1; |
| 1810 | snprintf(buf, sizeof(buf), "%d", keyid - 1); |
| 1811 | if (set_network(ifname, id, "wep_tx_keyidx", buf) < 0) |
| 1812 | return -2; |
| 1813 | } |
| 1814 | |
| 1815 | for (i = 0; i < 4; i++) { |
| 1816 | snprintf(buf, sizeof(buf), "key%d", i + 1); |
| 1817 | val = get_param(cmd, buf); |
| 1818 | if (val == NULL) |
| 1819 | continue; |
| 1820 | snprintf(buf, sizeof(buf), "wep_key%d", i); |
| 1821 | if (set_network(ifname, id, buf, val) < 0) |
| 1822 | return -2; |
| 1823 | } |
| 1824 | } |
| 1825 | |
| 1826 | return 1; |
| 1827 | } |
| 1828 | |
| 1829 | |
Jouni Malinen | e4fde73 | 2019-03-25 22:29:37 +0200 | [diff] [blame] | 1830 | static int set_akm_suites(struct sigma_dut *dut, const char *ifname, |
| 1831 | int id, const char *val) |
| 1832 | { |
| 1833 | char key_mgmt[200], *end, *pos; |
| 1834 | const char *in_pos = val; |
| 1835 | |
Jouni Malinen | 8179fee | 2019-03-28 03:19:47 +0200 | [diff] [blame] | 1836 | dut->akm_values = 0; |
Jouni Malinen | e4fde73 | 2019-03-25 22:29:37 +0200 | [diff] [blame] | 1837 | pos = key_mgmt; |
| 1838 | end = pos + sizeof(key_mgmt); |
| 1839 | while (*in_pos) { |
| 1840 | int res, akm = atoi(in_pos); |
| 1841 | const char *str; |
| 1842 | |
Jouni Malinen | 8179fee | 2019-03-28 03:19:47 +0200 | [diff] [blame] | 1843 | if (akm >= 0 && akm < 32) |
| 1844 | dut->akm_values |= 1 << akm; |
| 1845 | |
Jouni Malinen | e4fde73 | 2019-03-25 22:29:37 +0200 | [diff] [blame] | 1846 | switch (akm) { |
| 1847 | case AKM_WPA_EAP: |
| 1848 | str = "WPA-EAP"; |
| 1849 | break; |
| 1850 | case AKM_WPA_PSK: |
| 1851 | str = "WPA-PSK"; |
| 1852 | break; |
| 1853 | case AKM_FT_EAP: |
| 1854 | str = "FT-EAP"; |
| 1855 | break; |
| 1856 | case AKM_FT_PSK: |
| 1857 | str = "FT-PSK"; |
| 1858 | break; |
| 1859 | case AKM_EAP_SHA256: |
| 1860 | str = "WPA-EAP-SHA256"; |
| 1861 | break; |
| 1862 | case AKM_PSK_SHA256: |
| 1863 | str = "WPA-PSK-SHA256"; |
| 1864 | break; |
| 1865 | case AKM_SAE: |
| 1866 | str = "SAE"; |
| 1867 | break; |
| 1868 | case AKM_FT_SAE: |
| 1869 | str = "FT-SAE"; |
| 1870 | break; |
| 1871 | case AKM_SUITE_B: |
| 1872 | str = "WPA-EAP-SUITE-B-192"; |
| 1873 | break; |
| 1874 | case AKM_FT_SUITE_B: |
| 1875 | str = "FT-EAP-SHA384"; |
| 1876 | break; |
| 1877 | case AKM_FILS_SHA256: |
| 1878 | str = "FILS-SHA256"; |
| 1879 | break; |
| 1880 | case AKM_FILS_SHA384: |
| 1881 | str = "FILS-SHA384"; |
| 1882 | break; |
| 1883 | case AKM_FT_FILS_SHA256: |
| 1884 | str = "FT-FILS-SHA256"; |
| 1885 | break; |
| 1886 | case AKM_FT_FILS_SHA384: |
| 1887 | str = "FT-FILS-SHA384"; |
| 1888 | break; |
| 1889 | default: |
| 1890 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 1891 | "Unsupported AKMSuitetype %d", akm); |
| 1892 | return -1; |
| 1893 | } |
| 1894 | |
| 1895 | res = snprintf(pos, end - pos, "%s%s", |
| 1896 | pos == key_mgmt ? "" : " ", str); |
| 1897 | if (res < 0 || res >= end - pos) |
| 1898 | return -1; |
| 1899 | pos += res; |
| 1900 | |
| 1901 | in_pos = strchr(in_pos, ';'); |
| 1902 | if (!in_pos) |
| 1903 | break; |
| 1904 | while (*in_pos == ';') |
| 1905 | in_pos++; |
| 1906 | } |
| 1907 | sigma_dut_print(dut, DUT_MSG_DEBUG, "AKMSuiteType %s --> %s", |
| 1908 | val, key_mgmt); |
| 1909 | return set_network(ifname, id, "key_mgmt", key_mgmt); |
| 1910 | } |
| 1911 | |
| 1912 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1913 | static int set_wpa_common(struct sigma_dut *dut, struct sigma_conn *conn, |
| 1914 | const char *ifname, struct sigma_cmd *cmd) |
| 1915 | { |
| 1916 | const char *val; |
| 1917 | int id; |
Jouni Malinen | ad395a2 | 2017-09-01 21:13:46 +0300 | [diff] [blame] | 1918 | int cipher_set = 0; |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 1919 | int owe; |
Sunil Dutt | c75a1e6 | 2018-01-11 20:47:50 +0530 | [diff] [blame] | 1920 | int suite_b = 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1921 | |
| 1922 | id = add_network_common(dut, conn, ifname, cmd); |
| 1923 | if (id < 0) |
| 1924 | return id; |
| 1925 | |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 1926 | val = get_param(cmd, "Type"); |
| 1927 | owe = val && strcasecmp(val, "OWE") == 0; |
| 1928 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1929 | val = get_param(cmd, "keyMgmtType"); |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 1930 | if (!val && owe) |
| 1931 | val = "OWE"; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1932 | if (val == NULL) { |
Jouni Malinen | e4fde73 | 2019-03-25 22:29:37 +0200 | [diff] [blame] | 1933 | /* keyMgmtType is being replaced with AKMSuiteType, so ignore |
| 1934 | * this missing parameter and assume proto=WPA2. */ |
| 1935 | if (set_network(ifname, id, "proto", "WPA2") < 0) |
| 1936 | return ERROR_SEND_STATUS; |
| 1937 | } else if (strcasecmp(val, "wpa") == 0 || |
| 1938 | strcasecmp(val, "wpa-psk") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1939 | if (set_network(ifname, id, "proto", "WPA") < 0) |
| 1940 | return -2; |
| 1941 | } else if (strcasecmp(val, "wpa2") == 0 || |
| 1942 | strcasecmp(val, "wpa2-psk") == 0 || |
| 1943 | strcasecmp(val, "wpa2-ft") == 0 || |
| 1944 | strcasecmp(val, "wpa2-sha256") == 0) { |
| 1945 | if (set_network(ifname, id, "proto", "WPA2") < 0) |
| 1946 | return -2; |
Pradeep Reddy POTTETI | 6d04b3b | 2016-11-15 14:51:26 +0530 | [diff] [blame] | 1947 | } else if (strcasecmp(val, "wpa2-wpa-psk") == 0 || |
| 1948 | strcasecmp(val, "wpa2-wpa-ent") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1949 | if (set_network(ifname, id, "proto", "WPA WPA2") < 0) |
| 1950 | return -2; |
Jouni Malinen | ad395a2 | 2017-09-01 21:13:46 +0300 | [diff] [blame] | 1951 | } else if (strcasecmp(val, "SuiteB") == 0) { |
Sunil Dutt | c75a1e6 | 2018-01-11 20:47:50 +0530 | [diff] [blame] | 1952 | suite_b = 1; |
Jouni Malinen | ad395a2 | 2017-09-01 21:13:46 +0300 | [diff] [blame] | 1953 | if (set_network(ifname, id, "proto", "WPA2") < 0) |
| 1954 | return -2; |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 1955 | } else if (strcasecmp(val, "OWE") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 1956 | } else { |
| 1957 | send_resp(dut, conn, SIGMA_INVALID, "errorCode,Unrecognized keyMgmtType value"); |
| 1958 | return 0; |
| 1959 | } |
| 1960 | |
| 1961 | val = get_param(cmd, "encpType"); |
Jouni Malinen | ad395a2 | 2017-09-01 21:13:46 +0300 | [diff] [blame] | 1962 | if (val) { |
| 1963 | cipher_set = 1; |
| 1964 | if (strcasecmp(val, "tkip") == 0) { |
| 1965 | if (set_network(ifname, id, "pairwise", "TKIP") < 0) |
| 1966 | return -2; |
| 1967 | } else if (strcasecmp(val, "aes-ccmp") == 0) { |
| 1968 | if (set_network(ifname, id, "pairwise", "CCMP") < 0) |
| 1969 | return -2; |
| 1970 | } else if (strcasecmp(val, "aes-ccmp-tkip") == 0) { |
| 1971 | if (set_network(ifname, id, "pairwise", |
| 1972 | "CCMP TKIP") < 0) |
| 1973 | return -2; |
| 1974 | } else if (strcasecmp(val, "aes-gcmp") == 0) { |
| 1975 | if (set_network(ifname, id, "pairwise", "GCMP") < 0) |
| 1976 | return -2; |
| 1977 | if (set_network(ifname, id, "group", "GCMP") < 0) |
| 1978 | return -2; |
| 1979 | } else { |
| 1980 | send_resp(dut, conn, SIGMA_ERROR, |
| 1981 | "errorCode,Unrecognized encpType value"); |
| 1982 | return 0; |
| 1983 | } |
| 1984 | } |
| 1985 | |
| 1986 | val = get_param(cmd, "PairwiseCipher"); |
| 1987 | if (val) { |
| 1988 | cipher_set = 1; |
| 1989 | /* TODO: Support space separated list */ |
| 1990 | if (strcasecmp(val, "AES-GCMP-256") == 0) { |
| 1991 | if (set_network(ifname, id, "pairwise", "GCMP-256") < 0) |
| 1992 | return -2; |
| 1993 | } else if (strcasecmp(val, "AES-CCMP-256") == 0) { |
| 1994 | if (set_network(ifname, id, "pairwise", |
| 1995 | "CCMP-256") < 0) |
| 1996 | return -2; |
| 1997 | } else if (strcasecmp(val, "AES-GCMP-128") == 0) { |
| 1998 | if (set_network(ifname, id, "pairwise", "GCMP") < 0) |
| 1999 | return -2; |
| 2000 | } else if (strcasecmp(val, "AES-CCMP-128") == 0) { |
| 2001 | if (set_network(ifname, id, "pairwise", "CCMP") < 0) |
| 2002 | return -2; |
| 2003 | } else { |
| 2004 | send_resp(dut, conn, SIGMA_ERROR, |
| 2005 | "errorCode,Unrecognized PairwiseCipher value"); |
| 2006 | return 0; |
| 2007 | } |
| 2008 | } |
| 2009 | |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 2010 | if (!cipher_set && !owe) { |
Jouni Malinen | ad395a2 | 2017-09-01 21:13:46 +0300 | [diff] [blame] | 2011 | send_resp(dut, conn, SIGMA_ERROR, |
| 2012 | "errorCode,Missing encpType and PairwiseCipher"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2013 | return 0; |
| 2014 | } |
Jouni Malinen | ad395a2 | 2017-09-01 21:13:46 +0300 | [diff] [blame] | 2015 | |
| 2016 | val = get_param(cmd, "GroupCipher"); |
| 2017 | if (val) { |
| 2018 | if (strcasecmp(val, "AES-GCMP-256") == 0) { |
| 2019 | if (set_network(ifname, id, "group", "GCMP-256") < 0) |
| 2020 | return -2; |
| 2021 | } else if (strcasecmp(val, "AES-CCMP-256") == 0) { |
| 2022 | if (set_network(ifname, id, "group", "CCMP-256") < 0) |
| 2023 | return -2; |
| 2024 | } else if (strcasecmp(val, "AES-GCMP-128") == 0) { |
| 2025 | if (set_network(ifname, id, "group", "GCMP") < 0) |
| 2026 | return -2; |
| 2027 | } else if (strcasecmp(val, "AES-CCMP-128") == 0) { |
| 2028 | if (set_network(ifname, id, "group", "CCMP") < 0) |
| 2029 | return -2; |
| 2030 | } else { |
| 2031 | send_resp(dut, conn, SIGMA_ERROR, |
| 2032 | "errorCode,Unrecognized GroupCipher value"); |
| 2033 | return 0; |
| 2034 | } |
| 2035 | } |
| 2036 | |
Jouni Malinen | 7b23952 | 2017-09-14 21:37:18 +0300 | [diff] [blame] | 2037 | val = get_param(cmd, "GroupMgntCipher"); |
Jouni Malinen | ad395a2 | 2017-09-01 21:13:46 +0300 | [diff] [blame] | 2038 | if (val) { |
Jouni Malinen | e8898cb | 2017-09-26 17:55:26 +0300 | [diff] [blame] | 2039 | const char *cipher; |
| 2040 | |
| 2041 | if (strcasecmp(val, "BIP-GMAC-256") == 0) { |
| 2042 | cipher = "BIP-GMAC-256"; |
| 2043 | } else if (strcasecmp(val, "BIP-CMAC-256") == 0) { |
| 2044 | cipher = "BIP-CMAC-256"; |
| 2045 | } else if (strcasecmp(val, "BIP-GMAC-128") == 0) { |
| 2046 | cipher = "BIP-GMAC-128"; |
| 2047 | } else if (strcasecmp(val, "BIP-CMAC-128") == 0) { |
| 2048 | cipher = "AES-128-CMAC"; |
| 2049 | } else { |
| 2050 | send_resp(dut, conn, SIGMA_INVALID, |
| 2051 | "errorCode,Unsupported GroupMgntCipher"); |
| 2052 | return 0; |
| 2053 | } |
| 2054 | if (set_network(ifname, id, "group_mgmt", cipher) < 0) { |
| 2055 | send_resp(dut, conn, SIGMA_INVALID, |
| 2056 | "errorCode,Failed to set GroupMgntCipher"); |
| 2057 | return 0; |
| 2058 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2059 | } |
| 2060 | |
Jouni Malinen | e4fde73 | 2019-03-25 22:29:37 +0200 | [diff] [blame] | 2061 | val = get_param(cmd, "AKMSuiteType"); |
| 2062 | if (val && set_akm_suites(dut, ifname, id, val) < 0) |
| 2063 | return ERROR_SEND_STATUS; |
| 2064 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2065 | dut->sta_pmf = STA_PMF_DISABLED; |
vamsi krishna | f39bc1e | 2017-08-23 17:37:53 +0530 | [diff] [blame] | 2066 | |
| 2067 | if (dut->program == PROGRAM_OCE) { |
| 2068 | dut->sta_pmf = STA_PMF_OPTIONAL; |
| 2069 | if (set_network(ifname, id, "ieee80211w", "1") < 0) |
| 2070 | return -2; |
| 2071 | } |
| 2072 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2073 | val = get_param(cmd, "PMF"); |
| 2074 | if (val) { |
| 2075 | if (strcasecmp(val, "Required") == 0 || |
| 2076 | strcasecmp(val, "Forced_Required") == 0) { |
| 2077 | dut->sta_pmf = STA_PMF_REQUIRED; |
| 2078 | if (set_network(ifname, id, "ieee80211w", "2") < 0) |
| 2079 | return -2; |
| 2080 | } else if (strcasecmp(val, "Optional") == 0) { |
| 2081 | dut->sta_pmf = STA_PMF_OPTIONAL; |
| 2082 | if (set_network(ifname, id, "ieee80211w", "1") < 0) |
| 2083 | return -2; |
| 2084 | } else if (strcasecmp(val, "Disabled") == 0 || |
Kiran Kumar Lokere | 07da3b2 | 2018-12-16 22:42:49 -0800 | [diff] [blame] | 2085 | strcasecmp(val, "Disable") == 0 || |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2086 | strcasecmp(val, "Forced_Disabled") == 0) { |
| 2087 | dut->sta_pmf = STA_PMF_DISABLED; |
| 2088 | } else { |
| 2089 | send_resp(dut, conn, SIGMA_INVALID, "errorCode,Unrecognized PMF value"); |
| 2090 | return 0; |
| 2091 | } |
Sunil Dutt | c75a1e6 | 2018-01-11 20:47:50 +0530 | [diff] [blame] | 2092 | } else if (owe || suite_b) { |
Jouni Malinen | 1287cd7 | 2018-01-04 17:08:01 +0200 | [diff] [blame] | 2093 | dut->sta_pmf = STA_PMF_REQUIRED; |
| 2094 | if (set_network(ifname, id, "ieee80211w", "2") < 0) |
| 2095 | return -2; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2096 | } |
| 2097 | |
Jouni Malinen | 0165c7f | 2020-03-26 11:51:58 +0200 | [diff] [blame] | 2098 | val = get_param(cmd, "BeaconProtection"); |
| 2099 | if (val && atoi(val) == 1 && |
| 2100 | set_network(ifname, id, "beacon_prot", "1") < 0) |
| 2101 | return ERROR_SEND_STATUS; |
| 2102 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2103 | return id; |
| 2104 | } |
| 2105 | |
| 2106 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 2107 | static enum sigma_cmd_result cmd_sta_set_psk(struct sigma_dut *dut, |
| 2108 | struct sigma_conn *conn, |
| 2109 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2110 | { |
| 2111 | const char *intf = get_param(cmd, "Interface"); |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 2112 | const char *type = get_param(cmd, "Type"); |
Jouni Malinen | 1287cd7 | 2018-01-04 17:08:01 +0200 | [diff] [blame] | 2113 | const char *pmf = get_param(cmd, "PMF"); |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 2114 | const char *network_mode = get_param(cmd, "network_mode"); |
Jouni Malinen | e4fde73 | 2019-03-25 22:29:37 +0200 | [diff] [blame] | 2115 | const char *akm = get_param(cmd, "AKMSuiteType"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2116 | const char *ifname, *val, *alg; |
| 2117 | int id; |
Jouni Malinen | 4b3769d | 2019-10-10 16:20:29 +0300 | [diff] [blame] | 2118 | char buf[50]; |
Jouni Malinen | 11e5521 | 2019-11-22 21:46:59 +0200 | [diff] [blame] | 2119 | int sae_pwe = -1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2120 | |
| 2121 | if (intf == NULL) |
| 2122 | return -1; |
| 2123 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2124 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2125 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2126 | else |
| 2127 | ifname = intf; |
| 2128 | |
| 2129 | id = set_wpa_common(dut, conn, ifname, cmd); |
| 2130 | if (id < 0) |
| 2131 | return id; |
| 2132 | |
| 2133 | val = get_param(cmd, "keyMgmtType"); |
| 2134 | alg = get_param(cmd, "micAlg"); |
| 2135 | |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 2136 | if (type && strcasecmp(type, "SAE") == 0) { |
Jouni Malinen | e4fde73 | 2019-03-25 22:29:37 +0200 | [diff] [blame] | 2137 | if (!akm && val && strcasecmp(val, "wpa2-ft") == 0) { |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 2138 | if (set_network(ifname, id, "key_mgmt", "FT-SAE") < 0) |
| 2139 | return -2; |
Jouni Malinen | e4fde73 | 2019-03-25 22:29:37 +0200 | [diff] [blame] | 2140 | } else if (!akm) { |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 2141 | if (set_network(ifname, id, "key_mgmt", "SAE") < 0) |
| 2142 | return -2; |
| 2143 | } |
| 2144 | if (wpa_command(ifname, "SET sae_groups ") != 0) { |
| 2145 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 2146 | "Failed to clear sae_groups to default"); |
| 2147 | return -2; |
| 2148 | } |
Jouni Malinen | 1287cd7 | 2018-01-04 17:08:01 +0200 | [diff] [blame] | 2149 | if (!pmf) { |
| 2150 | dut->sta_pmf = STA_PMF_REQUIRED; |
| 2151 | if (set_network(ifname, id, "ieee80211w", "2") < 0) |
| 2152 | return -2; |
| 2153 | } |
Jouni Malinen | 0ab50f4 | 2017-08-31 01:34:59 +0300 | [diff] [blame] | 2154 | } else if (type && strcasecmp(type, "PSK-SAE") == 0) { |
| 2155 | if (val && strcasecmp(val, "wpa2-ft") == 0) { |
| 2156 | if (set_network(ifname, id, "key_mgmt", |
| 2157 | "FT-SAE FT-PSK") < 0) |
| 2158 | return -2; |
Jouni Malinen | 3b73d87 | 2019-06-12 03:13:25 +0300 | [diff] [blame] | 2159 | } else if (!akm) { |
Jouni Malinen | 0ab50f4 | 2017-08-31 01:34:59 +0300 | [diff] [blame] | 2160 | if (set_network(ifname, id, "key_mgmt", |
| 2161 | "SAE WPA-PSK") < 0) |
| 2162 | return -2; |
| 2163 | } |
| 2164 | if (wpa_command(ifname, "SET sae_groups ") != 0) { |
| 2165 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 2166 | "Failed to clear sae_groups to default"); |
| 2167 | return -2; |
| 2168 | } |
Jouni Malinen | 1287cd7 | 2018-01-04 17:08:01 +0200 | [diff] [blame] | 2169 | if (!pmf) { |
| 2170 | dut->sta_pmf = STA_PMF_OPTIONAL; |
| 2171 | if (set_network(ifname, id, "ieee80211w", "1") < 0) |
| 2172 | return -2; |
| 2173 | } |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 2174 | } else if (alg && strcasecmp(alg, "SHA-256") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2175 | if (set_network(ifname, id, "key_mgmt", "WPA-PSK-SHA256") < 0) |
| 2176 | return -2; |
| 2177 | } else if (alg && strcasecmp(alg, "SHA-1") == 0) { |
| 2178 | if (set_network(ifname, id, "key_mgmt", "WPA-PSK") < 0) |
| 2179 | return -2; |
Ashwini Patil | 6dbf7b0 | 2017-03-20 13:42:11 +0530 | [diff] [blame] | 2180 | } else if (val && strcasecmp(val, "wpa2-ft") == 0) { |
| 2181 | if (set_network(ifname, id, "key_mgmt", "FT-PSK") < 0) |
| 2182 | return -2; |
Jouni Malinen | 3b73d87 | 2019-06-12 03:13:25 +0300 | [diff] [blame] | 2183 | } else if (!akm && |
| 2184 | ((val && strcasecmp(val, "wpa2-sha256") == 0) || |
| 2185 | dut->sta_pmf == STA_PMF_REQUIRED)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2186 | if (set_network(ifname, id, "key_mgmt", |
| 2187 | "WPA-PSK WPA-PSK-SHA256") < 0) |
| 2188 | return -2; |
Jouni Malinen | 77ff3f0 | 2019-03-28 03:45:40 +0200 | [diff] [blame] | 2189 | } else if (!akm && dut->sta_pmf == STA_PMF_OPTIONAL) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2190 | if (set_network(ifname, id, "key_mgmt", |
| 2191 | "WPA-PSK WPA-PSK-SHA256") < 0) |
| 2192 | return -2; |
Jouni Malinen | 77ff3f0 | 2019-03-28 03:45:40 +0200 | [diff] [blame] | 2193 | } else if (!akm) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2194 | if (set_network(ifname, id, "key_mgmt", "WPA-PSK") < 0) |
| 2195 | return -2; |
| 2196 | } |
| 2197 | |
| 2198 | val = get_param(cmd, "passPhrase"); |
| 2199 | if (val == NULL) |
| 2200 | return -1; |
Jouni Malinen | 2126f42 | 2017-10-11 23:24:33 +0300 | [diff] [blame] | 2201 | if (type && strcasecmp(type, "SAE") == 0) { |
| 2202 | if (set_network_quoted(ifname, id, "sae_password", val) < 0) |
| 2203 | return -2; |
| 2204 | } else { |
| 2205 | if (set_network_quoted(ifname, id, "psk", val) < 0) |
| 2206 | return -2; |
| 2207 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2208 | |
Jouni Malinen | 78d10c4 | 2019-03-25 22:34:32 +0200 | [diff] [blame] | 2209 | val = get_param(cmd, "PasswordId"); |
| 2210 | if (val && set_network_quoted(ifname, id, "sae_password_id", val) < 0) |
| 2211 | return ERROR_SEND_STATUS; |
| 2212 | |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 2213 | val = get_param(cmd, "ECGroupID"); |
| 2214 | if (val) { |
Jouni Malinen | b54f0df | 2019-12-12 01:57:29 +0200 | [diff] [blame] | 2215 | snprintf(buf, sizeof(buf), "SET sae_groups %s", val); |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 2216 | if (wpa_command(ifname, buf) != 0) { |
| 2217 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 2218 | "Failed to clear sae_groups"); |
| 2219 | return -2; |
| 2220 | } |
| 2221 | } |
| 2222 | |
Jouni Malinen | 6814313 | 2017-09-02 02:34:08 +0300 | [diff] [blame] | 2223 | val = get_param(cmd, "InvalidSAEElement"); |
| 2224 | if (val) { |
| 2225 | free(dut->sae_commit_override); |
| 2226 | dut->sae_commit_override = strdup(val); |
| 2227 | } |
| 2228 | |
Jouni Malinen | 4b3769d | 2019-10-10 16:20:29 +0300 | [diff] [blame] | 2229 | val = get_param(cmd, "PMKID_Include"); |
| 2230 | if (val) { |
| 2231 | snprintf(buf, sizeof(buf), "SET sae_pmkid_in_assoc %d", |
| 2232 | get_enable_disable(val)); |
| 2233 | wpa_command(intf, buf); |
| 2234 | } |
| 2235 | |
Jouni Malinen | eeb43d3 | 2019-12-06 17:40:07 +0200 | [diff] [blame] | 2236 | val = get_param(cmd, "IgnoreH2E_RSNXE_BSSMemSel"); |
| 2237 | if (val) { |
| 2238 | snprintf(buf, sizeof(buf), "SET ignore_sae_h2e_only %d", |
| 2239 | get_enable_disable(val)); |
| 2240 | wpa_command(intf, buf); |
| 2241 | } |
| 2242 | |
Jouni Malinen | f2348d2 | 2019-12-07 11:52:55 +0200 | [diff] [blame] | 2243 | val = get_param(cmd, "ECGroupID_RGE"); |
| 2244 | if (val) { |
| 2245 | snprintf(buf, sizeof(buf), "SET extra_sae_rejected_groups %s", |
| 2246 | val); |
| 2247 | wpa_command(intf, buf); |
| 2248 | } |
| 2249 | |
Jouni Malinen | 99e5502 | 2019-12-07 13:59:41 +0200 | [diff] [blame] | 2250 | val = get_param(cmd, "RSNXE_Content"); |
| 2251 | if (val) { |
| 2252 | const char *param; |
| 2253 | |
| 2254 | if (strncasecmp(val, "AssocReq:", 9) == 0) { |
| 2255 | val += 9; |
| 2256 | param = "rsnxe_override_assoc"; |
| 2257 | } else if (strncasecmp(val, "EapolM2:", 8) == 0) { |
| 2258 | val += 8; |
| 2259 | param = "rsnxe_override_eapol"; |
| 2260 | } else { |
| 2261 | send_resp(dut, conn, SIGMA_ERROR, |
| 2262 | "errorCode,Unsupported RSNXE_Content value"); |
| 2263 | return STATUS_SENT_ERROR; |
| 2264 | } |
| 2265 | snprintf(buf, sizeof(buf), "SET %s %s", param, val); |
| 2266 | wpa_command(intf, buf); |
| 2267 | } |
| 2268 | |
Jouni Malinen | 11e5521 | 2019-11-22 21:46:59 +0200 | [diff] [blame] | 2269 | val = get_param(cmd, "sae_pwe"); |
| 2270 | if (val) { |
| 2271 | if (strcasecmp(val, "h2e") == 0) { |
| 2272 | dut->sae_pwe = SAE_PWE_H2E; |
Jouni Malinen | 7244a41 | 2019-12-07 11:54:10 +0200 | [diff] [blame] | 2273 | } else if (strcasecmp(val, "loop") == 0 || |
| 2274 | strcasecmp(val, "looping") == 0) { |
Jouni Malinen | 11e5521 | 2019-11-22 21:46:59 +0200 | [diff] [blame] | 2275 | dut->sae_pwe = SAE_PWE_LOOP; |
| 2276 | } else { |
| 2277 | send_resp(dut, conn, SIGMA_ERROR, |
| 2278 | "errorCode,Unsupported sae_pwe value"); |
| 2279 | return STATUS_SENT_ERROR; |
| 2280 | } |
| 2281 | } |
Vinita S. Maloo | 6d7454f | 2020-04-02 15:03:26 +0530 | [diff] [blame] | 2282 | |
| 2283 | val = get_param(cmd, "Clear_RSNXE"); |
| 2284 | if (val && strcmp(val, "1") == 0 && |
| 2285 | (wpa_command(intf, "SET rsnxe_override_assoc ") || |
| 2286 | wpa_command(intf, "SET rsnxe_override_eapol "))) { |
| 2287 | send_resp(dut, conn, SIGMA_ERROR, |
| 2288 | "errorCode,Failed to clear RSNXE"); |
| 2289 | return ERROR_SEND_STATUS; |
| 2290 | } |
| 2291 | |
Jouni Malinen | c007877 | 2020-03-04 21:23:16 +0200 | [diff] [blame] | 2292 | if (dut->sae_pwe == SAE_PWE_LOOP && get_param(cmd, "PasswordId")) |
| 2293 | sae_pwe = 3; |
| 2294 | else if (dut->sae_pwe == SAE_PWE_LOOP) |
Jouni Malinen | 11e5521 | 2019-11-22 21:46:59 +0200 | [diff] [blame] | 2295 | sae_pwe = 0; |
| 2296 | else if (dut->sae_pwe == SAE_PWE_H2E) |
| 2297 | sae_pwe = 1; |
| 2298 | else if (dut->sae_h2e_default) |
| 2299 | sae_pwe = 2; |
| 2300 | snprintf(buf, sizeof(buf), "SET sae_pwe %d", sae_pwe); |
| 2301 | if (sae_pwe >= 0 && wpa_command(ifname, buf) != 0) |
| 2302 | return ERROR_SEND_STATUS; |
| 2303 | |
Veerendranath Jakkam | 0316be1 | 2020-06-23 20:11:41 +0530 | [diff] [blame^] | 2304 | val = get_param(cmd, "sae_pk"); |
| 2305 | if (val && strcmp(val, "0") == 0 && |
| 2306 | set_network(ifname, id, "sae_pk", "2") < 0) |
| 2307 | return ERROR_SEND_STATUS; |
| 2308 | |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 2309 | if (dut->program == PROGRAM_60GHZ && network_mode && |
| 2310 | strcasecmp(network_mode, "PBSS") == 0 && |
| 2311 | set_network(ifname, id, "pbss", "1") < 0) |
| 2312 | return -2; |
| 2313 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2314 | return 1; |
| 2315 | } |
| 2316 | |
| 2317 | |
Jouni Malinen | 8ac9345 | 2019-08-14 15:19:13 +0300 | [diff] [blame] | 2318 | static enum sigma_cmd_result set_trust_root_system(struct sigma_dut *dut, |
| 2319 | struct sigma_conn *conn, |
| 2320 | const char *ifname, int id) |
| 2321 | { |
| 2322 | char buf[200]; |
| 2323 | |
| 2324 | snprintf(buf, sizeof(buf), "%s/certs", sigma_cert_path); |
| 2325 | if (!file_exists(buf)) |
| 2326 | strlcpy(buf, "/system/etc/security/cacerts", sizeof(buf)); |
| 2327 | if (!file_exists(buf)) |
| 2328 | strlcpy(buf, "/etc/ssl/certs", sizeof(buf)); |
| 2329 | if (!file_exists(buf)) { |
| 2330 | char msg[300]; |
| 2331 | |
| 2332 | snprintf(msg, sizeof(msg), |
| 2333 | "ErrorCode,trustedRootCA system store (%s) not found", |
| 2334 | buf); |
| 2335 | send_resp(dut, conn, SIGMA_ERROR, msg); |
| 2336 | return STATUS_SENT_ERROR; |
| 2337 | } |
| 2338 | |
| 2339 | if (set_network_quoted(ifname, id, "ca_path", buf) < 0) |
| 2340 | return ERROR_SEND_STATUS; |
| 2341 | |
| 2342 | return SUCCESS_SEND_STATUS; |
| 2343 | } |
| 2344 | |
| 2345 | |
| 2346 | static enum sigma_cmd_result set_trust_root(struct sigma_dut *dut, |
| 2347 | struct sigma_conn *conn, |
| 2348 | const char *ifname, int id, |
| 2349 | const char *val) |
| 2350 | { |
| 2351 | char buf[200]; |
| 2352 | #ifdef ANDROID |
| 2353 | unsigned char kvalue[KEYSTORE_MESSAGE_SIZE]; |
| 2354 | int length; |
| 2355 | #endif /* ANDROID */ |
| 2356 | |
| 2357 | if (strcmp(val, "DEFAULT") == 0) |
| 2358 | return set_trust_root_system(dut, conn, ifname, id); |
| 2359 | |
| 2360 | #ifdef ANDROID |
| 2361 | snprintf(buf, sizeof(buf), "CACERT_%s", val); |
| 2362 | length = android_keystore_get(ANDROID_KEYSTORE_GET, buf, kvalue); |
| 2363 | if (length > 0) { |
| 2364 | sigma_dut_print(dut, DUT_MSG_INFO, "Use Android keystore [%s]", |
| 2365 | buf); |
| 2366 | snprintf(buf, sizeof(buf), "keystore://CACERT_%s", val); |
| 2367 | goto ca_cert_selected; |
| 2368 | } |
| 2369 | #endif /* ANDROID */ |
| 2370 | |
| 2371 | snprintf(buf, sizeof(buf), "%s/%s", sigma_cert_path, val); |
| 2372 | #ifdef __linux__ |
| 2373 | if (!file_exists(buf)) { |
| 2374 | char msg[300]; |
| 2375 | |
| 2376 | snprintf(msg, sizeof(msg), |
| 2377 | "ErrorCode,trustedRootCA file (%s) not found", buf); |
| 2378 | send_resp(dut, conn, SIGMA_ERROR, msg); |
| 2379 | return STATUS_SENT_ERROR; |
| 2380 | } |
| 2381 | #endif /* __linux__ */ |
| 2382 | #ifdef ANDROID |
| 2383 | ca_cert_selected: |
| 2384 | #endif /* ANDROID */ |
| 2385 | if (set_network_quoted(ifname, id, "ca_cert", buf) < 0) |
| 2386 | return ERROR_SEND_STATUS; |
| 2387 | |
| 2388 | return SUCCESS_SEND_STATUS; |
| 2389 | } |
| 2390 | |
| 2391 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2392 | static int set_eap_common(struct sigma_dut *dut, struct sigma_conn *conn, |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2393 | const char *ifname, int username_identity, |
| 2394 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2395 | { |
Jouni Malinen | b4d56ba | 2019-08-23 18:17:44 +0300 | [diff] [blame] | 2396 | const char *val, *alg, *akm, *trust_root, *domain, *domain_suffix; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2397 | int id; |
Jouni Malinen | 53264f6 | 2019-05-03 13:04:40 +0300 | [diff] [blame] | 2398 | char buf[200], buf2[300]; |
Jouni Malinen | 8179fee | 2019-03-28 03:19:47 +0200 | [diff] [blame] | 2399 | int erp = 0; |
Jouni Malinen | 8ac9345 | 2019-08-14 15:19:13 +0300 | [diff] [blame] | 2400 | enum sigma_cmd_result res; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2401 | |
| 2402 | id = set_wpa_common(dut, conn, ifname, cmd); |
| 2403 | if (id < 0) |
| 2404 | return id; |
| 2405 | |
| 2406 | val = get_param(cmd, "keyMgmtType"); |
| 2407 | alg = get_param(cmd, "micAlg"); |
vamsi krishna | f39bc1e | 2017-08-23 17:37:53 +0530 | [diff] [blame] | 2408 | akm = get_param(cmd, "AKMSuiteType"); |
Jouni Malinen | b4d56ba | 2019-08-23 18:17:44 +0300 | [diff] [blame] | 2409 | trust_root = get_param(cmd, "trustedRootCA"); |
| 2410 | domain = get_param(cmd, "Domain"); |
| 2411 | domain_suffix = get_param(cmd, "DomainSuffix"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2412 | |
Jouni Malinen | ad395a2 | 2017-09-01 21:13:46 +0300 | [diff] [blame] | 2413 | if (val && strcasecmp(val, "SuiteB") == 0) { |
| 2414 | if (set_network(ifname, id, "key_mgmt", "WPA-EAP-SUITE-B-192") < |
| 2415 | 0) |
| 2416 | return -2; |
| 2417 | } else if (alg && strcasecmp(alg, "SHA-256") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2418 | if (set_network(ifname, id, "key_mgmt", "WPA-EAP-SHA256") < 0) |
| 2419 | return -2; |
| 2420 | } else if (alg && strcasecmp(alg, "SHA-1") == 0) { |
| 2421 | if (set_network(ifname, id, "key_mgmt", "WPA-EAP") < 0) |
| 2422 | return -2; |
| 2423 | } else if (val && strcasecmp(val, "wpa2-ft") == 0) { |
| 2424 | if (set_network(ifname, id, "key_mgmt", "FT-EAP") < 0) |
| 2425 | return -2; |
Jouni Malinen | d6a9d69 | 2019-03-28 03:01:24 +0200 | [diff] [blame] | 2426 | } else if (!akm && |
| 2427 | ((val && strcasecmp(val, "wpa2-sha256") == 0) || |
| 2428 | dut->sta_pmf == STA_PMF_REQUIRED)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2429 | if (set_network(ifname, id, "key_mgmt", |
| 2430 | "WPA-EAP WPA-EAP-SHA256") < 0) |
| 2431 | return -2; |
vamsi krishna | f39bc1e | 2017-08-23 17:37:53 +0530 | [diff] [blame] | 2432 | } else if (akm && atoi(akm) == 14) { |
| 2433 | if (dut->sta_pmf == STA_PMF_OPTIONAL || |
| 2434 | dut->sta_pmf == STA_PMF_REQUIRED) { |
| 2435 | if (set_network(ifname, id, "key_mgmt", |
| 2436 | "WPA-EAP-SHA256 FILS-SHA256") < 0) |
| 2437 | return -2; |
| 2438 | } else { |
| 2439 | if (set_network(ifname, id, "key_mgmt", |
| 2440 | "WPA-EAP FILS-SHA256") < 0) |
| 2441 | return -2; |
| 2442 | } |
| 2443 | |
Jouni Malinen | 8179fee | 2019-03-28 03:19:47 +0200 | [diff] [blame] | 2444 | erp = 1; |
vamsi krishna | f39bc1e | 2017-08-23 17:37:53 +0530 | [diff] [blame] | 2445 | } else if (akm && atoi(akm) == 15) { |
| 2446 | if (dut->sta_pmf == STA_PMF_OPTIONAL || |
| 2447 | dut->sta_pmf == STA_PMF_REQUIRED) { |
| 2448 | if (set_network(ifname, id, "key_mgmt", |
| 2449 | "WPA-EAP-SHA256 FILS-SHA384") < 0) |
| 2450 | return -2; |
| 2451 | } else { |
| 2452 | if (set_network(ifname, id, "key_mgmt", |
| 2453 | "WPA-EAP FILS-SHA384") < 0) |
| 2454 | return -2; |
| 2455 | } |
| 2456 | |
Jouni Malinen | 8179fee | 2019-03-28 03:19:47 +0200 | [diff] [blame] | 2457 | erp = 1; |
Jouni Malinen | d6a9d69 | 2019-03-28 03:01:24 +0200 | [diff] [blame] | 2458 | } else if (!akm && dut->sta_pmf == STA_PMF_OPTIONAL) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2459 | if (set_network(ifname, id, "key_mgmt", |
| 2460 | "WPA-EAP WPA-EAP-SHA256") < 0) |
| 2461 | return -2; |
Jouni Malinen | d6a9d69 | 2019-03-28 03:01:24 +0200 | [diff] [blame] | 2462 | } else if (!akm) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2463 | if (set_network(ifname, id, "key_mgmt", "WPA-EAP") < 0) |
| 2464 | return -2; |
| 2465 | } |
| 2466 | |
Jouni Malinen | b4d56ba | 2019-08-23 18:17:44 +0300 | [diff] [blame] | 2467 | if (trust_root) { |
| 2468 | if (strcmp(trust_root, "DEFAULT") == 0 && !domain && |
| 2469 | !domain_suffix) { |
| 2470 | send_resp(dut, conn, SIGMA_ERROR, |
| 2471 | "errorCode,trustRootCA DEFAULT used without specifying Domain or DomainSuffix"); |
| 2472 | return STATUS_SENT_ERROR; |
| 2473 | } |
| 2474 | res = set_trust_root(dut, conn, ifname, id, trust_root); |
Jouni Malinen | 8ac9345 | 2019-08-14 15:19:13 +0300 | [diff] [blame] | 2475 | if (res != SUCCESS_SEND_STATUS) |
| 2476 | return res; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2477 | } |
| 2478 | |
Jouni Malinen | 53264f6 | 2019-05-03 13:04:40 +0300 | [diff] [blame] | 2479 | val = get_param(cmd, "ServerCert"); |
| 2480 | if (val) { |
| 2481 | FILE *f; |
| 2482 | char *result = NULL, *pos; |
| 2483 | |
| 2484 | snprintf(buf, sizeof(buf), "%s/%s.sha256", sigma_cert_path, |
| 2485 | val); |
| 2486 | f = fopen(buf, "r"); |
| 2487 | if (f) { |
| 2488 | result = fgets(buf, sizeof(buf), f); |
| 2489 | fclose(f); |
| 2490 | } |
| 2491 | if (!result) { |
| 2492 | snprintf(buf2, sizeof(buf2), |
| 2493 | "ErrorCode,ServerCert hash could not be read from %s", |
| 2494 | buf); |
| 2495 | send_resp(dut, conn, SIGMA_ERROR, buf2); |
| 2496 | return STATUS_SENT_ERROR; |
| 2497 | } |
| 2498 | pos = strchr(buf, '\n'); |
| 2499 | if (pos) |
| 2500 | *pos = '\0'; |
| 2501 | snprintf(buf2, sizeof(buf2), "hash://server/sha256/%s", buf); |
| 2502 | if (set_network_quoted(ifname, id, "ca_cert", buf2) < 0) |
| 2503 | return ERROR_SEND_STATUS; |
Jouni Malinen | 29108dc | 2019-06-13 23:42:11 +0300 | [diff] [blame] | 2504 | |
| 2505 | snprintf(buf, sizeof(buf), "%s/%s.tod", sigma_cert_path, val); |
| 2506 | if (file_exists(buf)) { |
| 2507 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 2508 | "TOD policy enabled for the configured ServerCert hash"); |
| 2509 | dut->sta_tod_policy = 1; |
| 2510 | } |
Jouni Malinen | 53264f6 | 2019-05-03 13:04:40 +0300 | [diff] [blame] | 2511 | } |
| 2512 | |
Jouni Malinen | b4d56ba | 2019-08-23 18:17:44 +0300 | [diff] [blame] | 2513 | if (domain && |
| 2514 | set_network_quoted(ifname, id, "domain_match", domain) < 0) |
Jouni Malinen | 96f84b0 | 2019-05-03 12:32:56 +0300 | [diff] [blame] | 2515 | return ERROR_SEND_STATUS; |
| 2516 | |
Jouni Malinen | b4d56ba | 2019-08-23 18:17:44 +0300 | [diff] [blame] | 2517 | if (domain_suffix && |
| 2518 | set_network_quoted(ifname, id, "domain_suffix_match", |
| 2519 | domain_suffix) < 0) |
Jouni Malinen | 96f84b0 | 2019-05-03 12:32:56 +0300 | [diff] [blame] | 2520 | return ERROR_SEND_STATUS; |
| 2521 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2522 | if (username_identity) { |
| 2523 | val = get_param(cmd, "username"); |
| 2524 | if (val) { |
| 2525 | if (set_network_quoted(ifname, id, "identity", val) < 0) |
| 2526 | return -2; |
| 2527 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2528 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2529 | val = get_param(cmd, "password"); |
| 2530 | if (val) { |
| 2531 | if (set_network_quoted(ifname, id, "password", val) < 0) |
| 2532 | return -2; |
| 2533 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2534 | } |
| 2535 | |
Jouni Malinen | 8179fee | 2019-03-28 03:19:47 +0200 | [diff] [blame] | 2536 | if (dut->akm_values & |
| 2537 | ((1 << AKM_FILS_SHA256) | |
| 2538 | (1 << AKM_FILS_SHA384) | |
| 2539 | (1 << AKM_FT_FILS_SHA256) | |
| 2540 | (1 << AKM_FT_FILS_SHA384))) |
| 2541 | erp = 1; |
| 2542 | if (erp && set_network(ifname, id, "erp", "1") < 0) |
| 2543 | return ERROR_SEND_STATUS; |
| 2544 | |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 2545 | dut->sta_associate_wait_connect = 1; |
| 2546 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2547 | return id; |
| 2548 | } |
| 2549 | |
| 2550 | |
Jouni Malinen | 5eabb2a | 2017-10-03 18:17:30 +0300 | [diff] [blame] | 2551 | static int set_tls_cipher(const char *ifname, int id, const char *cipher) |
| 2552 | { |
| 2553 | const char *val; |
| 2554 | |
| 2555 | if (!cipher) |
| 2556 | return 0; |
| 2557 | |
| 2558 | if (strcasecmp(cipher, "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384") == 0) |
| 2559 | val = "ECDHE-ECDSA-AES256-GCM-SHA384"; |
| 2560 | else if (strcasecmp(cipher, |
| 2561 | "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384") == 0) |
| 2562 | val = "ECDHE-RSA-AES256-GCM-SHA384"; |
| 2563 | else if (strcasecmp(cipher, "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384") == 0) |
| 2564 | val = "DHE-RSA-AES256-GCM-SHA384"; |
| 2565 | else if (strcasecmp(cipher, |
| 2566 | "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256") == 0) |
| 2567 | val = "ECDHE-ECDSA-AES128-GCM-SHA256"; |
| 2568 | else |
| 2569 | return -1; |
| 2570 | |
| 2571 | /* Need to clear phase1="tls_suiteb=1" to allow cipher enforcement */ |
| 2572 | set_network_quoted(ifname, id, "phase1", ""); |
| 2573 | |
| 2574 | return set_network_quoted(ifname, id, "openssl_ciphers", val); |
| 2575 | } |
| 2576 | |
| 2577 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 2578 | static enum sigma_cmd_result cmd_sta_set_eaptls(struct sigma_dut *dut, |
| 2579 | struct sigma_conn *conn, |
| 2580 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2581 | { |
| 2582 | const char *intf = get_param(cmd, "Interface"); |
| 2583 | const char *ifname, *val; |
| 2584 | int id; |
| 2585 | char buf[200]; |
| 2586 | #ifdef ANDROID |
| 2587 | unsigned char kvalue[KEYSTORE_MESSAGE_SIZE]; |
| 2588 | int length; |
| 2589 | int jb_or_newer = 0; |
| 2590 | char prop[PROPERTY_VALUE_MAX]; |
| 2591 | #endif /* ANDROID */ |
| 2592 | |
| 2593 | if (intf == NULL) |
| 2594 | return -1; |
| 2595 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2596 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2597 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2598 | else |
| 2599 | ifname = intf; |
| 2600 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2601 | id = set_eap_common(dut, conn, ifname, 1, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2602 | if (id < 0) |
| 2603 | return id; |
| 2604 | |
| 2605 | if (set_network(ifname, id, "eap", "TLS") < 0) |
| 2606 | return -2; |
| 2607 | |
Pradeep Reddy POTTETI | 9f6c213 | 2016-05-05 16:28:19 +0530 | [diff] [blame] | 2608 | if (!get_param(cmd, "username") && |
| 2609 | set_network_quoted(ifname, id, "identity", |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2610 | "wifi-user@wifilabs.local") < 0) |
| 2611 | return -2; |
| 2612 | |
| 2613 | val = get_param(cmd, "clientCertificate"); |
| 2614 | if (val == NULL) |
| 2615 | return -1; |
| 2616 | #ifdef ANDROID |
| 2617 | snprintf(buf, sizeof(buf), "USRPKEY_%s", val); |
| 2618 | length = android_keystore_get(ANDROID_KEYSTORE_GET, buf, kvalue); |
| 2619 | if (length < 0) { |
| 2620 | /* |
| 2621 | * JB started reporting keystore type mismatches, so retry with |
| 2622 | * the GET_PUBKEY command if the generic GET fails. |
| 2623 | */ |
| 2624 | length = android_keystore_get(ANDROID_KEYSTORE_GET_PUBKEY, |
| 2625 | buf, kvalue); |
| 2626 | } |
| 2627 | |
| 2628 | if (property_get("ro.build.version.release", prop, NULL) != 0) { |
| 2629 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Android release %s", prop); |
| 2630 | if (strncmp(prop, "4.0", 3) != 0) |
| 2631 | jb_or_newer = 1; |
| 2632 | } else |
| 2633 | jb_or_newer = 1; /* assume newer */ |
| 2634 | |
| 2635 | if (jb_or_newer && length > 0) { |
| 2636 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 2637 | "Use Android keystore [%s]", buf); |
| 2638 | if (set_network(ifname, id, "engine", "1") < 0) |
| 2639 | return -2; |
| 2640 | if (set_network_quoted(ifname, id, "engine_id", "keystore") < 0) |
| 2641 | return -2; |
| 2642 | snprintf(buf, sizeof(buf), "USRPKEY_%s", val); |
| 2643 | if (set_network_quoted(ifname, id, "key_id", buf) < 0) |
| 2644 | return -2; |
| 2645 | snprintf(buf, sizeof(buf), "keystore://USRCERT_%s", val); |
| 2646 | if (set_network_quoted(ifname, id, "client_cert", buf) < 0) |
| 2647 | return -2; |
| 2648 | return 1; |
| 2649 | } else if (length > 0) { |
| 2650 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 2651 | "Use Android keystore [%s]", buf); |
| 2652 | snprintf(buf, sizeof(buf), "keystore://USRPKEY_%s", val); |
| 2653 | if (set_network_quoted(ifname, id, "private_key", buf) < 0) |
| 2654 | return -2; |
| 2655 | snprintf(buf, sizeof(buf), "keystore://USRCERT_%s", val); |
| 2656 | if (set_network_quoted(ifname, id, "client_cert", buf) < 0) |
| 2657 | return -2; |
| 2658 | return 1; |
| 2659 | } |
| 2660 | #endif /* ANDROID */ |
| 2661 | |
| 2662 | snprintf(buf, sizeof(buf), "%s/%s", sigma_cert_path, val); |
| 2663 | #ifdef __linux__ |
| 2664 | if (!file_exists(buf)) { |
| 2665 | char msg[300]; |
| 2666 | snprintf(msg, sizeof(msg), "ErrorCode,clientCertificate file " |
| 2667 | "(%s) not found", buf); |
| 2668 | send_resp(dut, conn, SIGMA_ERROR, msg); |
| 2669 | return -3; |
| 2670 | } |
| 2671 | #endif /* __linux__ */ |
| 2672 | if (set_network_quoted(ifname, id, "private_key", buf) < 0) |
| 2673 | return -2; |
| 2674 | if (set_network_quoted(ifname, id, "client_cert", buf) < 0) |
| 2675 | return -2; |
| 2676 | |
| 2677 | if (set_network_quoted(ifname, id, "private_key_passwd", "wifi") < 0) |
| 2678 | return -2; |
| 2679 | |
Jouni Malinen | 5eabb2a | 2017-10-03 18:17:30 +0300 | [diff] [blame] | 2680 | val = get_param(cmd, "keyMgmtType"); |
| 2681 | if (val && strcasecmp(val, "SuiteB") == 0) { |
| 2682 | val = get_param(cmd, "CertType"); |
| 2683 | if (val && strcasecmp(val, "RSA") == 0) { |
| 2684 | if (set_network_quoted(ifname, id, "phase1", |
| 2685 | "tls_suiteb=1") < 0) |
| 2686 | return -2; |
| 2687 | } else { |
| 2688 | if (set_network_quoted(ifname, id, "openssl_ciphers", |
| 2689 | "SUITEB192") < 0) |
| 2690 | return -2; |
| 2691 | } |
| 2692 | |
| 2693 | val = get_param(cmd, "TLSCipher"); |
| 2694 | if (set_tls_cipher(ifname, id, val) < 0) { |
| 2695 | send_resp(dut, conn, SIGMA_ERROR, |
| 2696 | "ErrorCode,Unsupported TLSCipher value"); |
| 2697 | return -3; |
| 2698 | } |
| 2699 | } |
| 2700 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2701 | return 1; |
| 2702 | } |
| 2703 | |
| 2704 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 2705 | static enum sigma_cmd_result cmd_sta_set_eapttls(struct sigma_dut *dut, |
| 2706 | struct sigma_conn *conn, |
| 2707 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2708 | { |
| 2709 | const char *intf = get_param(cmd, "Interface"); |
| 2710 | const char *ifname; |
| 2711 | int id; |
| 2712 | |
| 2713 | if (intf == NULL) |
| 2714 | return -1; |
| 2715 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2716 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2717 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2718 | else |
| 2719 | ifname = intf; |
| 2720 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2721 | id = set_eap_common(dut, conn, ifname, 1, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2722 | if (id < 0) |
| 2723 | return id; |
| 2724 | |
| 2725 | if (set_network(ifname, id, "eap", "TTLS") < 0) { |
| 2726 | send_resp(dut, conn, SIGMA_ERROR, |
| 2727 | "errorCode,Failed to set TTLS method"); |
| 2728 | return 0; |
| 2729 | } |
| 2730 | |
| 2731 | if (set_network_quoted(ifname, id, "phase2", "auth=MSCHAPV2") < 0) { |
| 2732 | send_resp(dut, conn, SIGMA_ERROR, |
| 2733 | "errorCode,Failed to set MSCHAPv2 for TTLS Phase 2"); |
| 2734 | return 0; |
| 2735 | } |
| 2736 | |
| 2737 | return 1; |
| 2738 | } |
| 2739 | |
| 2740 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 2741 | static enum sigma_cmd_result cmd_sta_set_eapsim(struct sigma_dut *dut, |
| 2742 | struct sigma_conn *conn, |
| 2743 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2744 | { |
| 2745 | const char *intf = get_param(cmd, "Interface"); |
| 2746 | const char *ifname; |
| 2747 | int id; |
| 2748 | |
| 2749 | if (intf == NULL) |
| 2750 | return -1; |
| 2751 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2752 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2753 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2754 | else |
| 2755 | ifname = intf; |
| 2756 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2757 | id = set_eap_common(dut, conn, ifname, !dut->sim_no_username, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2758 | if (id < 0) |
| 2759 | return id; |
| 2760 | |
| 2761 | if (set_network(ifname, id, "eap", "SIM") < 0) |
| 2762 | return -2; |
| 2763 | |
| 2764 | return 1; |
| 2765 | } |
| 2766 | |
| 2767 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 2768 | static enum sigma_cmd_result cmd_sta_set_peap(struct sigma_dut *dut, |
| 2769 | struct sigma_conn *conn, |
| 2770 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2771 | { |
| 2772 | const char *intf = get_param(cmd, "Interface"); |
| 2773 | const char *ifname, *val; |
| 2774 | int id; |
| 2775 | char buf[100]; |
| 2776 | |
| 2777 | if (intf == NULL) |
| 2778 | return -1; |
| 2779 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2780 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2781 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2782 | else |
| 2783 | ifname = intf; |
| 2784 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2785 | id = set_eap_common(dut, conn, ifname, 1, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2786 | if (id < 0) |
| 2787 | return id; |
| 2788 | |
| 2789 | if (set_network(ifname, id, "eap", "PEAP") < 0) |
| 2790 | return -2; |
| 2791 | |
| 2792 | val = get_param(cmd, "innerEAP"); |
| 2793 | if (val) { |
| 2794 | if (strcasecmp(val, "MSCHAPv2") == 0) { |
| 2795 | if (set_network_quoted(ifname, id, "phase2", |
| 2796 | "auth=MSCHAPV2") < 0) |
| 2797 | return -2; |
| 2798 | } else if (strcasecmp(val, "GTC") == 0) { |
| 2799 | if (set_network_quoted(ifname, id, "phase2", |
| 2800 | "auth=GTC") < 0) |
| 2801 | return -2; |
| 2802 | } else |
| 2803 | return -1; |
| 2804 | } |
| 2805 | |
| 2806 | val = get_param(cmd, "peapVersion"); |
| 2807 | if (val) { |
| 2808 | int ver = atoi(val); |
| 2809 | if (ver < 0 || ver > 1) |
| 2810 | return -1; |
| 2811 | snprintf(buf, sizeof(buf), "peapver=%d", ver); |
| 2812 | if (set_network_quoted(ifname, id, "phase1", buf) < 0) |
| 2813 | return -2; |
| 2814 | } |
| 2815 | |
| 2816 | return 1; |
| 2817 | } |
| 2818 | |
| 2819 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 2820 | static enum sigma_cmd_result cmd_sta_set_eapfast(struct sigma_dut *dut, |
| 2821 | struct sigma_conn *conn, |
| 2822 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2823 | { |
| 2824 | const char *intf = get_param(cmd, "Interface"); |
| 2825 | const char *ifname, *val; |
| 2826 | int id; |
| 2827 | char buf[100]; |
| 2828 | |
| 2829 | if (intf == NULL) |
| 2830 | return -1; |
| 2831 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2832 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2833 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2834 | else |
| 2835 | ifname = intf; |
| 2836 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2837 | id = set_eap_common(dut, conn, ifname, 1, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2838 | if (id < 0) |
| 2839 | return id; |
| 2840 | |
| 2841 | if (set_network(ifname, id, "eap", "FAST") < 0) |
| 2842 | return -2; |
| 2843 | |
| 2844 | val = get_param(cmd, "innerEAP"); |
| 2845 | if (val) { |
| 2846 | if (strcasecmp(val, "MSCHAPV2") == 0) { |
| 2847 | if (set_network_quoted(ifname, id, "phase2", |
| 2848 | "auth=MSCHAPV2") < 0) |
| 2849 | return -2; |
| 2850 | } else if (strcasecmp(val, "GTC") == 0) { |
| 2851 | if (set_network_quoted(ifname, id, "phase2", |
| 2852 | "auth=GTC") < 0) |
| 2853 | return -2; |
| 2854 | } else |
| 2855 | return -1; |
| 2856 | } |
| 2857 | |
| 2858 | val = get_param(cmd, "validateServer"); |
| 2859 | if (val) { |
| 2860 | /* TODO */ |
| 2861 | sigma_dut_print(dut, DUT_MSG_INFO, "Ignored EAP-FAST " |
| 2862 | "validateServer=%s", val); |
| 2863 | } |
| 2864 | |
| 2865 | val = get_param(cmd, "pacFile"); |
| 2866 | if (val) { |
| 2867 | snprintf(buf, sizeof(buf), "blob://%s", val); |
| 2868 | if (set_network_quoted(ifname, id, "pac_file", buf) < 0) |
| 2869 | return -2; |
| 2870 | } |
| 2871 | |
| 2872 | if (set_network_quoted(ifname, id, "phase1", "fast_provisioning=2") < |
| 2873 | 0) |
| 2874 | return -2; |
| 2875 | |
| 2876 | return 1; |
| 2877 | } |
| 2878 | |
| 2879 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 2880 | static enum sigma_cmd_result cmd_sta_set_eapaka(struct sigma_dut *dut, |
| 2881 | struct sigma_conn *conn, |
| 2882 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2883 | { |
| 2884 | const char *intf = get_param(cmd, "Interface"); |
Purushottam Kushwaha | cdd8cb1 | 2019-10-04 11:33:59 +0530 | [diff] [blame] | 2885 | const char *username = get_param(cmd, "Username"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2886 | const char *ifname; |
| 2887 | int id; |
| 2888 | |
| 2889 | if (intf == NULL) |
| 2890 | return -1; |
| 2891 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2892 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2893 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2894 | else |
| 2895 | ifname = intf; |
| 2896 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2897 | id = set_eap_common(dut, conn, ifname, !dut->sim_no_username, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2898 | if (id < 0) |
| 2899 | return id; |
| 2900 | |
Purushottam Kushwaha | cdd8cb1 | 2019-10-04 11:33:59 +0530 | [diff] [blame] | 2901 | /* RFC 5448: EAP-AKA' MUST use the leading character "6" (ASCII 36 |
| 2902 | * hexadecimal). |
| 2903 | */ |
| 2904 | if (username && username[0] == '6') { |
| 2905 | if (set_network(ifname, id, "eap", "AKA'") < 0) |
| 2906 | return -2; |
| 2907 | } else if (set_network(ifname, id, "eap", "AKA") < 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2908 | return -2; |
Purushottam Kushwaha | cdd8cb1 | 2019-10-04 11:33:59 +0530 | [diff] [blame] | 2909 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2910 | |
| 2911 | return 1; |
| 2912 | } |
| 2913 | |
| 2914 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 2915 | static enum sigma_cmd_result cmd_sta_set_eapakaprime(struct sigma_dut *dut, |
| 2916 | struct sigma_conn *conn, |
| 2917 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2918 | { |
| 2919 | const char *intf = get_param(cmd, "Interface"); |
| 2920 | const char *ifname; |
| 2921 | int id; |
| 2922 | |
| 2923 | if (intf == NULL) |
| 2924 | return -1; |
| 2925 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2926 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2927 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2928 | else |
| 2929 | ifname = intf; |
| 2930 | |
Bala Krishna Bhamidipati | 73d7af0 | 2016-03-24 12:27:56 +0530 | [diff] [blame] | 2931 | id = set_eap_common(dut, conn, ifname, !dut->sim_no_username, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2932 | if (id < 0) |
| 2933 | return id; |
| 2934 | |
| 2935 | if (set_network(ifname, id, "eap", "AKA'") < 0) |
| 2936 | return -2; |
| 2937 | |
| 2938 | return 1; |
| 2939 | } |
| 2940 | |
| 2941 | |
| 2942 | static int sta_set_open(struct sigma_dut *dut, struct sigma_conn *conn, |
| 2943 | struct sigma_cmd *cmd) |
| 2944 | { |
| 2945 | const char *intf = get_param(cmd, "Interface"); |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 2946 | const char *network_mode = get_param(cmd, "network_mode"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2947 | const char *ifname; |
| 2948 | int id; |
| 2949 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2950 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2951 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2952 | else |
| 2953 | ifname = intf; |
| 2954 | |
| 2955 | id = add_network_common(dut, conn, ifname, cmd); |
| 2956 | if (id < 0) |
| 2957 | return id; |
| 2958 | |
| 2959 | if (set_network(ifname, id, "key_mgmt", "NONE") < 0) |
| 2960 | return -2; |
| 2961 | |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 2962 | if (dut->program == PROGRAM_60GHZ && network_mode && |
| 2963 | strcasecmp(network_mode, "PBSS") == 0 && |
| 2964 | set_network(ifname, id, "pbss", "1") < 0) |
| 2965 | return -2; |
| 2966 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 2967 | return 1; |
| 2968 | } |
| 2969 | |
| 2970 | |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 2971 | static int sta_set_owe(struct sigma_dut *dut, struct sigma_conn *conn, |
| 2972 | struct sigma_cmd *cmd) |
| 2973 | { |
| 2974 | const char *intf = get_param(cmd, "Interface"); |
| 2975 | const char *ifname, *val; |
| 2976 | int id; |
| 2977 | |
| 2978 | if (intf == NULL) |
| 2979 | return -1; |
| 2980 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 2981 | if (strcmp(intf, get_main_ifname(dut)) == 0) |
| 2982 | ifname = get_station_ifname(dut); |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 2983 | else |
| 2984 | ifname = intf; |
| 2985 | |
| 2986 | id = set_wpa_common(dut, conn, ifname, cmd); |
| 2987 | if (id < 0) |
| 2988 | return id; |
| 2989 | |
| 2990 | if (set_network(ifname, id, "key_mgmt", "OWE") < 0) |
| 2991 | return -2; |
| 2992 | |
| 2993 | val = get_param(cmd, "ECGroupID"); |
Jouni Malinen | fac9cad | 2017-10-10 18:35:55 +0300 | [diff] [blame] | 2994 | if (val && strcmp(val, "0") == 0) { |
| 2995 | if (wpa_command(ifname, |
| 2996 | "VENDOR_ELEM_ADD 13 ff23200000783590fb7440e03d5b3b33911f86affdcc6b4411b707846ac4ff08ddc8831ccd") != 0) { |
| 2997 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 2998 | "Failed to set OWE DH Param element override"); |
| 2999 | return -2; |
| 3000 | } |
Hu Wang | 6010ce7 | 2020-03-05 19:33:53 +0800 | [diff] [blame] | 3001 | } else if (val && |
| 3002 | (set_network(ifname, id, "owe_group", val) < 0 || |
| 3003 | (dut->owe_ptk_workaround && |
| 3004 | set_network(ifname, id, "owe_ptk_workaround", "1") < 0))) { |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 3005 | sigma_dut_print(dut, DUT_MSG_ERROR, |
Hu Wang | 6010ce7 | 2020-03-05 19:33:53 +0800 | [diff] [blame] | 3006 | "Failed to set owe_group"); |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 3007 | return -2; |
| 3008 | } |
| 3009 | |
| 3010 | return 1; |
| 3011 | } |
| 3012 | |
| 3013 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 3014 | static enum sigma_cmd_result cmd_sta_set_security(struct sigma_dut *dut, |
| 3015 | struct sigma_conn *conn, |
| 3016 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3017 | { |
| 3018 | const char *type = get_param(cmd, "Type"); |
| 3019 | |
| 3020 | if (type == NULL) { |
| 3021 | send_resp(dut, conn, SIGMA_ERROR, |
| 3022 | "ErrorCode,Missing Type argument"); |
| 3023 | return 0; |
| 3024 | } |
| 3025 | |
| 3026 | if (strcasecmp(type, "OPEN") == 0) |
| 3027 | return sta_set_open(dut, conn, cmd); |
Jouni Malinen | 47dcc95 | 2017-10-09 16:43:24 +0300 | [diff] [blame] | 3028 | if (strcasecmp(type, "OWE") == 0) |
| 3029 | return sta_set_owe(dut, conn, cmd); |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 3030 | if (strcasecmp(type, "PSK") == 0 || |
Jouni Malinen | 0ab50f4 | 2017-08-31 01:34:59 +0300 | [diff] [blame] | 3031 | strcasecmp(type, "PSK-SAE") == 0 || |
Jouni Malinen | 992a81e | 2017-08-22 13:57:47 +0300 | [diff] [blame] | 3032 | strcasecmp(type, "SAE") == 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3033 | return cmd_sta_set_psk(dut, conn, cmd); |
| 3034 | if (strcasecmp(type, "EAPTLS") == 0) |
| 3035 | return cmd_sta_set_eaptls(dut, conn, cmd); |
| 3036 | if (strcasecmp(type, "EAPTTLS") == 0) |
| 3037 | return cmd_sta_set_eapttls(dut, conn, cmd); |
| 3038 | if (strcasecmp(type, "EAPPEAP") == 0) |
| 3039 | return cmd_sta_set_peap(dut, conn, cmd); |
| 3040 | if (strcasecmp(type, "EAPSIM") == 0) |
| 3041 | return cmd_sta_set_eapsim(dut, conn, cmd); |
| 3042 | if (strcasecmp(type, "EAPFAST") == 0) |
| 3043 | return cmd_sta_set_eapfast(dut, conn, cmd); |
| 3044 | if (strcasecmp(type, "EAPAKA") == 0) |
| 3045 | return cmd_sta_set_eapaka(dut, conn, cmd); |
| 3046 | if (strcasecmp(type, "EAPAKAPRIME") == 0) |
| 3047 | return cmd_sta_set_eapakaprime(dut, conn, cmd); |
Amarnath Hullur Subramanyam | 81b11cd | 2018-01-30 19:07:17 -0800 | [diff] [blame] | 3048 | if (strcasecmp(type, "wep") == 0) |
| 3049 | return cmd_sta_set_encryption(dut, conn, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3050 | |
| 3051 | send_resp(dut, conn, SIGMA_ERROR, |
| 3052 | "ErrorCode,Unsupported Type value"); |
| 3053 | return 0; |
| 3054 | } |
| 3055 | |
| 3056 | |
| 3057 | int ath6kl_client_uapsd(struct sigma_dut *dut, const char *intf, int uapsd) |
| 3058 | { |
| 3059 | #ifdef __linux__ |
| 3060 | /* special handling for ath6kl */ |
| 3061 | char path[128], fname[128], *pos; |
| 3062 | ssize_t res; |
| 3063 | FILE *f; |
| 3064 | |
Jouni Malinen | e39cd56 | 2019-05-29 23:39:56 +0300 | [diff] [blame] | 3065 | res = snprintf(fname, sizeof(fname), "/sys/class/net/%s/phy80211", |
| 3066 | intf); |
| 3067 | if (res < 0 || res >= sizeof(fname)) |
| 3068 | return 0; |
| 3069 | res = readlink(fname, path, sizeof(path)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3070 | if (res < 0) |
| 3071 | return 0; /* not ath6kl */ |
| 3072 | |
| 3073 | if (res >= (int) sizeof(path)) |
| 3074 | res = sizeof(path) - 1; |
| 3075 | path[res] = '\0'; |
| 3076 | pos = strrchr(path, '/'); |
| 3077 | if (pos == NULL) |
| 3078 | pos = path; |
| 3079 | else |
| 3080 | pos++; |
Jouni Malinen | 77dda64 | 2020-01-07 11:21:55 +0200 | [diff] [blame] | 3081 | res = snprintf(fname, sizeof(fname), |
| 3082 | "/sys/kernel/debug/ieee80211/%s/ath6kl/" |
| 3083 | "create_qos", pos); |
| 3084 | if (res < 0 || res >= sizeof(fname) || !file_exists(fname)) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3085 | return 0; /* not ath6kl */ |
| 3086 | |
| 3087 | if (uapsd) { |
| 3088 | f = fopen(fname, "w"); |
| 3089 | if (f == NULL) |
| 3090 | return -1; |
| 3091 | |
| 3092 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Use ath6kl create_qos"); |
| 3093 | fprintf(f, "4 2 2 1 2 9999999 9999999 9999999 7777777 0 4 " |
| 3094 | "45000 200 56789000 56789000 5678900 0 0 9999999 " |
| 3095 | "20000 0\n"); |
| 3096 | fclose(f); |
| 3097 | } else { |
Jouni Malinen | 77dda64 | 2020-01-07 11:21:55 +0200 | [diff] [blame] | 3098 | res = snprintf(fname, sizeof(fname), |
| 3099 | "/sys/kernel/debug/ieee80211/%s/ath6kl/" |
| 3100 | "delete_qos", pos); |
| 3101 | if (res < 0 || res >= sizeof(fname)) |
| 3102 | return -1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3103 | |
| 3104 | f = fopen(fname, "w"); |
| 3105 | if (f == NULL) |
| 3106 | return -1; |
| 3107 | |
| 3108 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Use ath6kl delete_qos"); |
| 3109 | fprintf(f, "2 4\n"); |
| 3110 | fclose(f); |
| 3111 | } |
| 3112 | #endif /* __linux__ */ |
| 3113 | |
| 3114 | return 0; |
| 3115 | } |
| 3116 | |
| 3117 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 3118 | static enum sigma_cmd_result cmd_sta_set_uapsd(struct sigma_dut *dut, |
| 3119 | struct sigma_conn *conn, |
| 3120 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3121 | { |
| 3122 | const char *intf = get_param(cmd, "Interface"); |
| 3123 | /* const char *ssid = get_param(cmd, "ssid"); */ |
| 3124 | const char *val; |
| 3125 | int max_sp_len = 4; |
| 3126 | int ac_be = 1, ac_bk = 1, ac_vi = 1, ac_vo = 1; |
| 3127 | char buf[100]; |
| 3128 | int ret1, ret2; |
| 3129 | |
| 3130 | val = get_param(cmd, "maxSPLength"); |
| 3131 | if (val) { |
| 3132 | max_sp_len = atoi(val); |
| 3133 | if (max_sp_len != 0 && max_sp_len != 1 && max_sp_len != 2 && |
| 3134 | max_sp_len != 4) |
| 3135 | return -1; |
| 3136 | } |
| 3137 | |
| 3138 | val = get_param(cmd, "acBE"); |
| 3139 | if (val) |
| 3140 | ac_be = atoi(val); |
| 3141 | |
| 3142 | val = get_param(cmd, "acBK"); |
| 3143 | if (val) |
| 3144 | ac_bk = atoi(val); |
| 3145 | |
| 3146 | val = get_param(cmd, "acVI"); |
| 3147 | if (val) |
| 3148 | ac_vi = atoi(val); |
| 3149 | |
| 3150 | val = get_param(cmd, "acVO"); |
| 3151 | if (val) |
| 3152 | ac_vo = atoi(val); |
| 3153 | |
| 3154 | dut->client_uapsd = ac_be || ac_bk || ac_vi || ac_vo; |
| 3155 | |
| 3156 | snprintf(buf, sizeof(buf), "P2P_SET client_apsd %d,%d,%d,%d;%d", |
| 3157 | ac_be, ac_bk, ac_vi, ac_vo, max_sp_len); |
| 3158 | ret1 = wpa_command(intf, buf); |
| 3159 | |
| 3160 | snprintf(buf, sizeof(buf), "SET uapsd %d,%d,%d,%d;%d", |
| 3161 | ac_be, ac_bk, ac_vi, ac_vo, max_sp_len); |
| 3162 | ret2 = wpa_command(intf, buf); |
| 3163 | |
| 3164 | if (ret1 && ret2) { |
| 3165 | sigma_dut_print(dut, DUT_MSG_INFO, "Failed to set client mode " |
| 3166 | "UAPSD parameters."); |
| 3167 | return -2; |
| 3168 | } |
| 3169 | |
| 3170 | if (ath6kl_client_uapsd(dut, intf, dut->client_uapsd) < 0) { |
| 3171 | send_resp(dut, conn, SIGMA_ERROR, |
| 3172 | "ErrorCode,Failed to set ath6kl QoS parameters"); |
| 3173 | return 0; |
| 3174 | } |
| 3175 | |
| 3176 | return 1; |
| 3177 | } |
| 3178 | |
| 3179 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 3180 | static enum sigma_cmd_result cmd_sta_set_wmm(struct sigma_dut *dut, |
| 3181 | struct sigma_conn *conn, |
| 3182 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3183 | { |
| 3184 | char buf[1000]; |
| 3185 | const char *intf = get_param(cmd, "Interface"); |
| 3186 | const char *grp = get_param(cmd, "Group"); |
| 3187 | const char *act = get_param(cmd, "Action"); |
| 3188 | const char *tid = get_param(cmd, "Tid"); |
| 3189 | const char *dir = get_param(cmd, "Direction"); |
| 3190 | const char *psb = get_param(cmd, "Psb"); |
| 3191 | const char *up = get_param(cmd, "Up"); |
| 3192 | const char *fixed = get_param(cmd, "Fixed"); |
| 3193 | const char *size = get_param(cmd, "Size"); |
| 3194 | const char *msize = get_param(cmd, "Maxsize"); |
| 3195 | const char *minsi = get_param(cmd, "Min_srvc_intrvl"); |
| 3196 | const char *maxsi = get_param(cmd, "Max_srvc_intrvl"); |
| 3197 | const char *inact = get_param(cmd, "Inactivity"); |
| 3198 | const char *sus = get_param(cmd, "Suspension"); |
| 3199 | const char *mindr = get_param(cmd, "Mindatarate"); |
| 3200 | const char *meandr = get_param(cmd, "Meandatarate"); |
| 3201 | const char *peakdr = get_param(cmd, "Peakdatarate"); |
| 3202 | const char *phyrate = get_param(cmd, "Phyrate"); |
| 3203 | const char *burstsize = get_param(cmd, "Burstsize"); |
| 3204 | const char *sba = get_param(cmd, "Sba"); |
| 3205 | int direction; |
| 3206 | int handle; |
Peng Xu | 9331962 | 2017-10-04 17:58:16 -0700 | [diff] [blame] | 3207 | float sba_fv = 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3208 | int fixed_int; |
| 3209 | int psb_ts; |
| 3210 | |
| 3211 | if (intf == NULL || grp == NULL || act == NULL ) |
| 3212 | return -1; |
| 3213 | |
| 3214 | if (strcasecmp(act, "addts") == 0) { |
| 3215 | if (tid == NULL || dir == NULL || psb == NULL || |
| 3216 | up == NULL || fixed == NULL || size == NULL) |
| 3217 | return -1; |
| 3218 | |
| 3219 | /* |
| 3220 | * Note: Sigma CAPI spec lists uplink, downlink, and bidi as the |
| 3221 | * possible values, but WMM-AC and V-E test scripts use "UP, |
| 3222 | * "DOWN", and "BIDI". |
| 3223 | */ |
| 3224 | if (strcasecmp(dir, "uplink") == 0 || |
| 3225 | strcasecmp(dir, "up") == 0) { |
| 3226 | direction = 0; |
| 3227 | } else if (strcasecmp(dir, "downlink") == 0 || |
| 3228 | strcasecmp(dir, "down") == 0) { |
| 3229 | direction = 1; |
| 3230 | } else if (strcasecmp(dir, "bidi") == 0) { |
| 3231 | direction = 2; |
| 3232 | } else { |
| 3233 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3234 | "Direction %s not supported", dir); |
| 3235 | return -1; |
| 3236 | } |
| 3237 | |
| 3238 | if (strcasecmp(psb, "legacy") == 0) { |
| 3239 | psb_ts = 0; |
| 3240 | } else if (strcasecmp(psb, "uapsd") == 0) { |
| 3241 | psb_ts = 1; |
| 3242 | } else { |
| 3243 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3244 | "PSB %s not supported", psb); |
| 3245 | return -1; |
| 3246 | } |
| 3247 | |
| 3248 | if (atoi(tid) < 0 || atoi(tid) > 7) { |
| 3249 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3250 | "TID %s not supported", tid); |
| 3251 | return -1; |
| 3252 | } |
| 3253 | |
| 3254 | if (strcasecmp(fixed, "true") == 0) { |
| 3255 | fixed_int = 1; |
| 3256 | } else { |
| 3257 | fixed_int = 0; |
| 3258 | } |
| 3259 | |
Peng Xu | 9331962 | 2017-10-04 17:58:16 -0700 | [diff] [blame] | 3260 | if (sba) |
| 3261 | sba_fv = atof(sba); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3262 | |
| 3263 | dut->dialog_token++; |
| 3264 | handle = 7000 + dut->dialog_token; |
| 3265 | |
| 3266 | /* |
| 3267 | * size: convert to hex |
| 3268 | * maxsi: convert to hex |
| 3269 | * mindr: convert to hex |
| 3270 | * meandr: convert to hex |
| 3271 | * peakdr: convert to hex |
| 3272 | * burstsize: convert to hex |
| 3273 | * phyrate: convert to hex |
| 3274 | * sba: convert to hex with modification |
| 3275 | * minsi: convert to integer |
| 3276 | * sus: convert to integer |
| 3277 | * inact: convert to integer |
| 3278 | * maxsi: convert to integer |
| 3279 | */ |
| 3280 | |
| 3281 | /* |
| 3282 | * The Nominal MSDU Size field is 2 octets long and contains an |
| 3283 | * unsigned integer that specifies the nominal size, in octets, |
| 3284 | * of MSDUs belonging to the traffic under this traffic |
| 3285 | * specification and is defined in Figure 16. If the Fixed |
| 3286 | * subfield is set to 1, then the size of the MSDU is fixed and |
| 3287 | * is indicated by the Size Subfield. If the Fixed subfield is |
| 3288 | * set to 0, then the size of the MSDU might not be fixed and |
| 3289 | * the Size indicates the nominal MSDU size. |
| 3290 | * |
| 3291 | * The Surplus Bandwidth Allowance Factor field is 2 octets long |
| 3292 | * and specifies the excess allocation of time (and bandwidth) |
| 3293 | * over and above the stated rates required to transport an MSDU |
| 3294 | * belonging to the traffic in this TSPEC. This field is |
| 3295 | * represented as an unsigned binary number with an implicit |
| 3296 | * binary point after the leftmost 3 bits. For example, an SBA |
| 3297 | * of 1.75 is represented as 0x3800. This field is included to |
| 3298 | * account for retransmissions. As such, the value of this field |
| 3299 | * must be greater than unity. |
| 3300 | */ |
| 3301 | |
| 3302 | snprintf(buf, sizeof(buf), |
| 3303 | "iwpriv %s addTspec %d %s %d %d %s 0x%X" |
| 3304 | " 0x%X 0x%X 0x%X" |
| 3305 | " 0x%X 0x%X 0x%X" |
| 3306 | " 0x%X %d %d %d %d" |
| 3307 | " %d %d", |
| 3308 | intf, handle, tid, direction, psb_ts, up, |
| 3309 | (unsigned int) ((fixed_int << 15) | atoi(size)), |
| 3310 | msize ? atoi(msize) : 0, |
| 3311 | mindr ? atoi(mindr) : 0, |
| 3312 | meandr ? atoi(meandr) : 0, |
| 3313 | peakdr ? atoi(peakdr) : 0, |
| 3314 | burstsize ? atoi(burstsize) : 0, |
| 3315 | phyrate ? atoi(phyrate) : 0, |
| 3316 | sba ? ((unsigned int) (((int) sba_fv << 13) | |
| 3317 | (int)((sba_fv - (int) sba_fv) * |
| 3318 | 8192))) : 0, |
| 3319 | minsi ? atoi(minsi) : 0, |
| 3320 | sus ? atoi(sus) : 0, |
| 3321 | 0, 0, |
| 3322 | inact ? atoi(inact) : 0, |
| 3323 | maxsi ? atoi(maxsi) : 0); |
| 3324 | |
| 3325 | if (system(buf) != 0) { |
| 3326 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3327 | "iwpriv addtspec request failed"); |
| 3328 | send_resp(dut, conn, SIGMA_ERROR, |
| 3329 | "errorCode,Failed to execute addTspec command"); |
| 3330 | return 0; |
| 3331 | } |
| 3332 | |
| 3333 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 3334 | "iwpriv addtspec request send"); |
| 3335 | |
| 3336 | /* Mapping handle to a TID */ |
| 3337 | dut->tid_to_handle[atoi(tid)] = handle; |
| 3338 | } else if (strcasecmp(act, "delts") == 0) { |
| 3339 | if (tid == NULL) |
| 3340 | return -1; |
| 3341 | |
| 3342 | if (atoi(tid) < 0 || atoi(tid) > 7) { |
| 3343 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3344 | "TID %s not supported", tid); |
| 3345 | send_resp(dut, conn, SIGMA_ERROR, |
| 3346 | "errorCode,Unsupported TID"); |
| 3347 | return 0; |
| 3348 | } |
| 3349 | |
| 3350 | handle = dut->tid_to_handle[atoi(tid)]; |
| 3351 | |
| 3352 | if (handle < 7000 || handle > 7255) { |
| 3353 | /* Invalid handle ie no mapping for that TID */ |
| 3354 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3355 | "handle-> %d not found", handle); |
| 3356 | } |
| 3357 | |
| 3358 | snprintf(buf, sizeof(buf), "iwpriv %s delTspec %d", |
| 3359 | intf, handle); |
| 3360 | |
| 3361 | if (system(buf) != 0) { |
| 3362 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3363 | "iwpriv deltspec request failed"); |
| 3364 | send_resp(dut, conn, SIGMA_ERROR, |
| 3365 | "errorCode,Failed to execute delTspec command"); |
| 3366 | return 0; |
| 3367 | } |
| 3368 | |
| 3369 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 3370 | "iwpriv deltspec request send"); |
| 3371 | |
| 3372 | dut->tid_to_handle[atoi(tid)] = 0; |
| 3373 | } else { |
| 3374 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3375 | "Action type %s not supported", act); |
| 3376 | send_resp(dut, conn, SIGMA_ERROR, |
| 3377 | "errorCode,Unsupported Action"); |
| 3378 | return 0; |
| 3379 | } |
| 3380 | |
| 3381 | return 1; |
| 3382 | } |
| 3383 | |
| 3384 | |
vamsi krishna | 52e16f9 | 2017-08-29 12:37:34 +0530 | [diff] [blame] | 3385 | static int find_network(struct sigma_dut *dut, const char *ssid) |
| 3386 | { |
| 3387 | char list[4096]; |
| 3388 | char *pos; |
| 3389 | |
| 3390 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 3391 | "Search for profile based on SSID: '%s'", ssid); |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3392 | if (wpa_command_resp(get_station_ifname(dut), "LIST_NETWORKS", |
vamsi krishna | 52e16f9 | 2017-08-29 12:37:34 +0530 | [diff] [blame] | 3393 | list, sizeof(list)) < 0) |
| 3394 | return -1; |
| 3395 | pos = strstr(list, ssid); |
| 3396 | if (!pos || pos == list || pos[-1] != '\t' || pos[strlen(ssid)] != '\t') |
| 3397 | return -1; |
| 3398 | |
| 3399 | while (pos > list && pos[-1] != '\n') |
| 3400 | pos--; |
| 3401 | dut->infra_network_id = atoi(pos); |
| 3402 | snprintf(dut->infra_ssid, sizeof(dut->infra_ssid), "%s", ssid); |
| 3403 | return 0; |
| 3404 | } |
| 3405 | |
| 3406 | |
Sunil Dutt | 4459508 | 2018-02-12 19:41:45 +0530 | [diff] [blame] | 3407 | #ifdef NL80211_SUPPORT |
| 3408 | static int sta_config_rsnie(struct sigma_dut *dut, int val) |
| 3409 | { |
| 3410 | struct nl_msg *msg; |
| 3411 | int ret; |
| 3412 | struct nlattr *params; |
| 3413 | int ifindex; |
| 3414 | |
| 3415 | ifindex = if_nametoindex("wlan0"); |
| 3416 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 3417 | NL80211_CMD_VENDOR)) || |
| 3418 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 3419 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 3420 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 3421 | QCA_NL80211_VENDOR_SUBCMD_SET_WIFI_CONFIGURATION) || |
| 3422 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 3423 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_CONFIG_RSN_IE, val)) { |
| 3424 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3425 | "%s: err in adding vendor_cmd and vendor_data", |
| 3426 | __func__); |
| 3427 | nlmsg_free(msg); |
| 3428 | return -1; |
| 3429 | } |
| 3430 | nla_nest_end(msg, params); |
| 3431 | |
| 3432 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 3433 | if (ret) { |
| 3434 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3435 | "%s: err in send_and_recv_msgs, ret=%d", |
| 3436 | __func__, ret); |
| 3437 | return ret; |
| 3438 | } |
| 3439 | |
| 3440 | return 0; |
| 3441 | } |
| 3442 | #endif /* NL80211_SUPPORT */ |
| 3443 | |
| 3444 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 3445 | static enum sigma_cmd_result cmd_sta_associate(struct sigma_dut *dut, |
| 3446 | struct sigma_conn *conn, |
| 3447 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3448 | { |
| 3449 | /* const char *intf = get_param(cmd, "Interface"); */ |
| 3450 | const char *ssid = get_param(cmd, "ssid"); |
| 3451 | const char *wps_param = get_param(cmd, "WPS"); |
| 3452 | const char *bssid = get_param(cmd, "bssid"); |
Jouni Malinen | 46a19b6 | 2017-06-23 14:31:27 +0300 | [diff] [blame] | 3453 | const char *chan = get_param(cmd, "channel"); |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 3454 | const char *network_mode = get_param(cmd, "network_mode"); |
Veerendranath Jakkam | a082e34 | 2020-05-16 00:19:21 +0530 | [diff] [blame] | 3455 | const char *ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3456 | int wps = 0; |
Jouni Malinen | 3c367e8 | 2017-06-23 17:01:47 +0300 | [diff] [blame] | 3457 | char buf[1000], extra[50]; |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 3458 | int e; |
| 3459 | enum sigma_cmd_result ret = SUCCESS_SEND_STATUS; |
| 3460 | struct wpa_ctrl *ctrl = NULL; |
| 3461 | int num_network_not_found = 0; |
| 3462 | int num_disconnected = 0; |
| 3463 | int tod = -1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3464 | |
| 3465 | if (ssid == NULL) |
| 3466 | return -1; |
| 3467 | |
Jouni Malinen | 37d5c69 | 2019-08-19 16:56:55 +0300 | [diff] [blame] | 3468 | dut->server_cert_tod = 0; |
| 3469 | |
Jouni Malinen | 3c367e8 | 2017-06-23 17:01:47 +0300 | [diff] [blame] | 3470 | if (dut->rsne_override) { |
Sunil Dutt | 4459508 | 2018-02-12 19:41:45 +0530 | [diff] [blame] | 3471 | #ifdef NL80211_SUPPORT |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3472 | if (get_driver_type(dut) == DRIVER_WCN) { |
Sunil Dutt | 4459508 | 2018-02-12 19:41:45 +0530 | [diff] [blame] | 3473 | sta_config_rsnie(dut, 1); |
| 3474 | dut->config_rsnie = 1; |
| 3475 | } |
| 3476 | #endif /* NL80211_SUPPORT */ |
Jouni Malinen | 3c367e8 | 2017-06-23 17:01:47 +0300 | [diff] [blame] | 3477 | snprintf(buf, sizeof(buf), "TEST_ASSOC_IE %s", |
| 3478 | dut->rsne_override); |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3479 | if (wpa_command(get_station_ifname(dut), buf) < 0) { |
Jouni Malinen | 3c367e8 | 2017-06-23 17:01:47 +0300 | [diff] [blame] | 3480 | send_resp(dut, conn, SIGMA_ERROR, |
| 3481 | "ErrorCode,Failed to set DEV_CONFIGURE_IE RSNE override"); |
| 3482 | return 0; |
| 3483 | } |
| 3484 | } |
| 3485 | |
Jouni Malinen | 6814313 | 2017-09-02 02:34:08 +0300 | [diff] [blame] | 3486 | if (dut->sae_commit_override) { |
| 3487 | snprintf(buf, sizeof(buf), "SET sae_commit_override %s", |
| 3488 | dut->sae_commit_override); |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3489 | if (wpa_command(get_station_ifname(dut), buf) < 0) { |
Jouni Malinen | 6814313 | 2017-09-02 02:34:08 +0300 | [diff] [blame] | 3490 | send_resp(dut, conn, SIGMA_ERROR, |
| 3491 | "ErrorCode,Failed to set SAE commit override"); |
| 3492 | return 0; |
| 3493 | } |
| 3494 | } |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 3495 | #ifdef ANDROID |
| 3496 | if (dut->fils_hlp) |
| 3497 | process_fils_hlp(dut); |
| 3498 | #endif /* ANDROID */ |
Jouni Malinen | 6814313 | 2017-09-02 02:34:08 +0300 | [diff] [blame] | 3499 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3500 | if (wps_param && |
| 3501 | (strcmp(wps_param, "1") == 0 || strcasecmp(wps_param, "On") == 0)) |
| 3502 | wps = 1; |
| 3503 | |
Vamsi Krishna | c1633d2 | 2020-05-06 18:31:21 +0530 | [diff] [blame] | 3504 | if (dut->ocvc && |
| 3505 | set_network(get_station_ifname(dut), dut->infra_network_id, |
| 3506 | "ocv", "1") < 0) |
| 3507 | return ERROR_SEND_STATUS; |
| 3508 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3509 | if (wps) { |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 3510 | if (dut->program == PROGRAM_60GHZ && network_mode && |
| 3511 | strcasecmp(network_mode, "PBSS") == 0 && |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3512 | set_network(get_station_ifname(dut), dut->infra_network_id, |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 3513 | "pbss", "1") < 0) |
| 3514 | return -2; |
| 3515 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3516 | if (dut->wps_method == WFA_CS_WPS_NOT_READY) { |
| 3517 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,WPS " |
| 3518 | "parameters not yet set"); |
| 3519 | return 0; |
| 3520 | } |
| 3521 | if (dut->wps_method == WFA_CS_WPS_PBC) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3522 | if (wpa_command(get_station_ifname(dut), "WPS_PBC") < 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3523 | return -2; |
| 3524 | } else { |
| 3525 | snprintf(buf, sizeof(buf), "WPS_PIN any %s", |
| 3526 | dut->wps_pin); |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3527 | if (wpa_command(get_station_ifname(dut), buf) < 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3528 | return -2; |
| 3529 | } |
| 3530 | } else { |
vamsi krishna | 52e16f9 | 2017-08-29 12:37:34 +0530 | [diff] [blame] | 3531 | if (strcmp(ssid, dut->infra_ssid) == 0) { |
| 3532 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 3533 | "sta_associate for the most recently added network"); |
| 3534 | } else if (find_network(dut, ssid) < 0) { |
| 3535 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 3536 | "sta_associate for a previously stored network profile"); |
| 3537 | send_resp(dut, conn, SIGMA_ERROR, |
| 3538 | "ErrorCode,Profile not found"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3539 | return 0; |
| 3540 | } |
| 3541 | |
| 3542 | if (bssid && |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3543 | set_network(get_station_ifname(dut), dut->infra_network_id, |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3544 | "bssid", bssid) < 0) { |
| 3545 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode," |
| 3546 | "Invalid bssid argument"); |
| 3547 | return 0; |
| 3548 | } |
| 3549 | |
Veerendranath Jakkam | a082e34 | 2020-05-16 00:19:21 +0530 | [diff] [blame] | 3550 | if ((dut->program == PROGRAM_WPA3 && |
| 3551 | dut->sta_associate_wait_connect) || |
| 3552 | dut->program == PROGRAM_QM) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3553 | ctrl = open_wpa_mon(get_station_ifname(dut)); |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 3554 | if (!ctrl) |
| 3555 | return ERROR_SEND_STATUS; |
| 3556 | } |
| 3557 | |
Jouni Malinen | 46a19b6 | 2017-06-23 14:31:27 +0300 | [diff] [blame] | 3558 | extra[0] = '\0'; |
| 3559 | if (chan) |
| 3560 | snprintf(extra, sizeof(extra), " freq=%u", |
Alexei Avshalom Lazar | 093569f | 2018-11-13 14:08:17 +0200 | [diff] [blame] | 3561 | channel_to_freq(dut, atoi(chan))); |
Jouni Malinen | 46a19b6 | 2017-06-23 14:31:27 +0300 | [diff] [blame] | 3562 | snprintf(buf, sizeof(buf), "SELECT_NETWORK %d%s", |
| 3563 | dut->infra_network_id, extra); |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3564 | if (wpa_command(get_station_ifname(dut), buf) < 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3565 | sigma_dut_print(dut, DUT_MSG_INFO, "Failed to select " |
| 3566 | "network id %d on %s", |
| 3567 | dut->infra_network_id, |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 3568 | get_station_ifname(dut)); |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 3569 | ret = ERROR_SEND_STATUS; |
| 3570 | goto done; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3571 | } |
| 3572 | } |
| 3573 | |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 3574 | if (!ctrl) |
| 3575 | return SUCCESS_SEND_STATUS; |
| 3576 | |
| 3577 | /* Wait for connection result to be able to store server certificate |
| 3578 | * hash for trust root override testing |
| 3579 | * (dev_exec_action,ServerCertTrust). */ |
| 3580 | |
| 3581 | for (e = 0; e < 20; e++) { |
| 3582 | const char *events[] = { |
| 3583 | "CTRL-EVENT-EAP-PEER-CERT", |
| 3584 | "CTRL-EVENT-EAP-TLS-CERT-ERROR", |
| 3585 | "CTRL-EVENT-DISCONNECTED", |
| 3586 | "CTRL-EVENT-CONNECTED", |
| 3587 | "CTRL-EVENT-NETWORK-NOT-FOUND", |
| 3588 | NULL |
| 3589 | }; |
| 3590 | char buf[1024]; |
| 3591 | int res; |
| 3592 | |
| 3593 | res = get_wpa_cli_events(dut, ctrl, events, buf, sizeof(buf)); |
| 3594 | if (res < 0) { |
Jouni Malinen | f1f1664 | 2019-11-15 21:19:04 +0200 | [diff] [blame] | 3595 | send_resp(dut, conn, SIGMA_COMPLETE, |
| 3596 | "Result,Association did not complete"); |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 3597 | ret = STATUS_SENT_ERROR; |
| 3598 | break; |
| 3599 | } |
| 3600 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Connection event: %s", |
| 3601 | buf); |
| 3602 | |
| 3603 | if (strstr(buf, "CTRL-EVENT-EAP-PEER-CERT") && |
| 3604 | strstr(buf, " depth=0")) { |
| 3605 | char *pos = strstr(buf, " hash="); |
| 3606 | |
| 3607 | if (pos) { |
| 3608 | char *end; |
| 3609 | |
Jouni Malinen | 34b19cb | 2019-08-16 16:37:17 +0300 | [diff] [blame] | 3610 | if (strstr(buf, " tod=1")) |
| 3611 | tod = 1; |
| 3612 | else if (strstr(buf, " tod=2")) |
| 3613 | tod = 2; |
| 3614 | else |
| 3615 | tod = 0; |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 3616 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 3617 | "Server certificate TOD policy: %d", |
| 3618 | tod); |
Jouni Malinen | 37d5c69 | 2019-08-19 16:56:55 +0300 | [diff] [blame] | 3619 | dut->server_cert_tod = tod; |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 3620 | |
| 3621 | pos += 6; |
| 3622 | end = strchr(pos, ' '); |
| 3623 | if (end) |
| 3624 | *end = '\0'; |
| 3625 | strlcpy(dut->server_cert_hash, pos, |
| 3626 | sizeof(dut->server_cert_hash)); |
| 3627 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 3628 | "Server certificate hash: %s", |
| 3629 | dut->server_cert_hash); |
| 3630 | } |
| 3631 | } |
| 3632 | |
| 3633 | if (strstr(buf, "CTRL-EVENT-EAP-TLS-CERT-ERROR")) { |
| 3634 | send_resp(dut, conn, SIGMA_COMPLETE, |
| 3635 | "Result,TLS server certificate validation failed"); |
| 3636 | ret = STATUS_SENT_ERROR; |
| 3637 | break; |
| 3638 | } |
| 3639 | |
| 3640 | if (strstr(buf, "CTRL-EVENT-NETWORK-NOT-FOUND")) { |
| 3641 | num_network_not_found++; |
| 3642 | |
| 3643 | if (num_network_not_found > 2) { |
| 3644 | send_resp(dut, conn, SIGMA_COMPLETE, |
| 3645 | "Result,Network not found"); |
| 3646 | ret = STATUS_SENT_ERROR; |
| 3647 | break; |
| 3648 | } |
| 3649 | } |
| 3650 | |
| 3651 | if (strstr(buf, "CTRL-EVENT-DISCONNECTED")) { |
| 3652 | num_disconnected++; |
| 3653 | |
| 3654 | if (num_disconnected > 2) { |
| 3655 | send_resp(dut, conn, SIGMA_COMPLETE, |
| 3656 | "Result,Connection failed"); |
| 3657 | ret = STATUS_SENT_ERROR; |
| 3658 | break; |
| 3659 | } |
| 3660 | } |
| 3661 | |
| 3662 | if (strstr(buf, "CTRL-EVENT-CONNECTED")) { |
| 3663 | if (tod >= 0) { |
| 3664 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 3665 | "Network profile TOD policy update: %d -> %d", |
| 3666 | dut->sta_tod_policy, tod); |
| 3667 | dut->sta_tod_policy = tod; |
| 3668 | } |
Veerendranath Jakkam | a082e34 | 2020-05-16 00:19:21 +0530 | [diff] [blame] | 3669 | if (dut->program == PROGRAM_QM) { |
| 3670 | unsigned char iface_mac_addr[ETH_ALEN]; |
| 3671 | char ipv6[100]; |
| 3672 | |
| 3673 | if (get_hwaddr(ifname, iface_mac_addr) < 0) { |
| 3674 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 3675 | "%s: get_hwaddr %s failed", |
| 3676 | __func__, ifname); |
| 3677 | ret = ERROR_SEND_STATUS; |
| 3678 | break; |
| 3679 | } |
| 3680 | |
| 3681 | convert_mac_addr_to_ipv6_lladdr(iface_mac_addr, |
| 3682 | ipv6, |
| 3683 | sizeof(ipv6)); |
| 3684 | |
| 3685 | if (set_ipv6_addr(dut, ipv6, "64", ifname) != |
| 3686 | 0) { |
| 3687 | ret = ERROR_SEND_STATUS; |
| 3688 | break; |
| 3689 | } |
| 3690 | } |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 3691 | break; |
| 3692 | } |
| 3693 | } |
| 3694 | done: |
| 3695 | if (ctrl) { |
| 3696 | wpa_ctrl_detach(ctrl); |
| 3697 | wpa_ctrl_close(ctrl); |
| 3698 | } |
| 3699 | return ret; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 3700 | } |
| 3701 | |
| 3702 | |
| 3703 | static int run_hs20_osu(struct sigma_dut *dut, const char *params) |
| 3704 | { |
| 3705 | char buf[500], cmd[200]; |
| 3706 | int res; |
| 3707 | |
| 3708 | /* Use hs20-osu-client file at the current dir, if found; otherwise use |
| 3709 | * default path */ |
| 3710 | res = snprintf(cmd, sizeof(cmd), |
| 3711 | "%s -w \"%s\" -r hs20-osu-client.res %s%s -dddKt -f Logs/hs20-osu-client.txt", |
| 3712 | file_exists("./hs20-osu-client") ? |
| 3713 | "./hs20-osu-client" : "hs20-osu-client", |
| 3714 | sigma_wpas_ctrl, |
| 3715 | dut->summary_log ? "-s " : "", |
| 3716 | dut->summary_log ? dut->summary_log : ""); |
| 3717 | if (res < 0 || res >= (int) sizeof(cmd)) |
| 3718 | return -1; |
| 3719 | |
| 3720 | res = snprintf(buf, sizeof(buf), "%s %s", cmd, params); |
| 3721 | if (res < 0 || res >= (int) sizeof(buf)) |
| 3722 | return -1; |
| 3723 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 3724 | |
| 3725 | if (system(buf) != 0) { |
| 3726 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to run: %s", buf); |
| 3727 | return -1; |
| 3728 | } |
| 3729 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 3730 | "Completed hs20-osu-client operation"); |
| 3731 | |
| 3732 | return 0; |
| 3733 | } |
| 3734 | |
| 3735 | |
| 3736 | static int download_ppsmo(struct sigma_dut *dut, |
| 3737 | struct sigma_conn *conn, |
| 3738 | const char *intf, |
| 3739 | struct sigma_cmd *cmd) |
| 3740 | { |
| 3741 | const char *name, *path, *val; |
| 3742 | char url[500], buf[600], fbuf[100]; |
| 3743 | char *fqdn = NULL; |
| 3744 | |
| 3745 | name = get_param(cmd, "FileName"); |
| 3746 | path = get_param(cmd, "FilePath"); |
| 3747 | if (name == NULL || path == NULL) |
| 3748 | return -1; |
| 3749 | |
| 3750 | if (strcasecmp(path, "VendorSpecific") == 0) { |
| 3751 | snprintf(url, sizeof(url), "PPS/%s", name); |
| 3752 | sigma_dut_print(dut, DUT_MSG_INFO, "Use pre-configured PPS MO " |
| 3753 | "from the device (%s)", url); |
| 3754 | if (!file_exists(url)) { |
| 3755 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Requested " |
| 3756 | "PPS MO file does not exist"); |
| 3757 | return 0; |
| 3758 | } |
| 3759 | snprintf(buf, sizeof(buf), "cp %s pps-tnds.xml", url); |
| 3760 | if (system(buf) != 0) { |
| 3761 | send_resp(dut, conn, SIGMA_ERROR, |
| 3762 | "errorCode,Failed to copy PPS MO"); |
| 3763 | return 0; |
| 3764 | } |
| 3765 | } else if (strncasecmp(path, "http:", 5) != 0 && |
| 3766 | strncasecmp(path, "https:", 6) != 0) { |
| 3767 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode," |
| 3768 | "Unsupported FilePath value"); |
| 3769 | return 0; |
| 3770 | } else { |
| 3771 | snprintf(url, sizeof(url), "%s/%s", path, name); |
| 3772 | sigma_dut_print(dut, DUT_MSG_INFO, "Downloading PPS MO from %s", |
| 3773 | url); |
| 3774 | snprintf(buf, sizeof(buf), "wget -T 10 -t 3 -O pps-tnds.xml '%s'", url); |
| 3775 | remove("pps-tnds.xml"); |
| 3776 | if (system(buf) != 0) { |
| 3777 | send_resp(dut, conn, SIGMA_ERROR, |
| 3778 | "errorCode,Failed to download PPS MO"); |
| 3779 | return 0; |
| 3780 | } |
| 3781 | } |
| 3782 | |
| 3783 | if (run_hs20_osu(dut, "from_tnds pps-tnds.xml pps.xml") < 0) { |
| 3784 | send_resp(dut, conn, SIGMA_ERROR, |
| 3785 | "errorCode,Failed to parse downloaded PPSMO"); |
| 3786 | return 0; |
| 3787 | } |
| 3788 | unlink("pps-tnds.xml"); |
| 3789 | |
| 3790 | val = get_param(cmd, "managementTreeURI"); |
| 3791 | if (val) { |
| 3792 | const char *pos, *end; |
| 3793 | sigma_dut_print(dut, DUT_MSG_DEBUG, "managementTreeURI: %s", |
| 3794 | val); |
| 3795 | if (strncmp(val, "./Wi-Fi/", 8) != 0) { |
| 3796 | send_resp(dut, conn, SIGMA_ERROR, |
| 3797 | "errorCode,Invalid managementTreeURI prefix"); |
| 3798 | return 0; |
| 3799 | } |
| 3800 | pos = val + 8; |
| 3801 | end = strchr(pos, '/'); |
| 3802 | if (end == NULL || |
| 3803 | strcmp(end, "/PerProviderSubscription") != 0) { |
| 3804 | send_resp(dut, conn, SIGMA_ERROR, |
| 3805 | "errorCode,Invalid managementTreeURI postfix"); |
| 3806 | return 0; |
| 3807 | } |
| 3808 | if (end - pos >= (int) sizeof(fbuf)) { |
| 3809 | send_resp(dut, conn, SIGMA_ERROR, |
| 3810 | "errorCode,Too long FQDN in managementTreeURI"); |
| 3811 | return 0; |
| 3812 | } |
| 3813 | memcpy(fbuf, pos, end - pos); |
| 3814 | fbuf[end - pos] = '\0'; |
| 3815 | fqdn = fbuf; |
| 3816 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 3817 | "FQDN from managementTreeURI: %s", fqdn); |
| 3818 | } else if (run_hs20_osu(dut, "get_fqdn pps.xml") == 0) { |
| 3819 | FILE *f = fopen("pps-fqdn", "r"); |
| 3820 | if (f) { |
| 3821 | if (fgets(fbuf, sizeof(fbuf), f)) { |
| 3822 | fbuf[sizeof(fbuf) - 1] = '\0'; |
| 3823 | fqdn = fbuf; |
| 3824 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 3825 | "Use FQDN %s", fqdn); |
| 3826 | } |
| 3827 | fclose(f); |
| 3828 | } |
| 3829 | } |
| 3830 | |
| 3831 | if (fqdn == NULL) { |
| 3832 | send_resp(dut, conn, SIGMA_ERROR, |
| 3833 | "errorCode,No FQDN specified"); |
| 3834 | return 0; |
| 3835 | } |
| 3836 | |
| 3837 | mkdir("SP", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); |
| 3838 | snprintf(buf, sizeof(buf), "SP/%s", fqdn); |
| 3839 | mkdir(buf, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); |
| 3840 | |
| 3841 | snprintf(buf, sizeof(buf), "SP/%s/pps.xml", fqdn); |
| 3842 | if (rename("pps.xml", buf) < 0) { |
| 3843 | send_resp(dut, conn, SIGMA_ERROR, |
| 3844 | "errorCode,Could not move PPS MO"); |
| 3845 | return 0; |
| 3846 | } |
| 3847 | |
| 3848 | if (strcasecmp(path, "VendorSpecific") == 0) { |
| 3849 | snprintf(buf, sizeof(buf), "cp Certs/ca.pem SP/%s/ca.pem", |
| 3850 | fqdn); |
| 3851 | if (system(buf)) { |
| 3852 | send_resp(dut, conn, SIGMA_ERROR, |
| 3853 | "errorCode,Failed to copy OSU CA cert"); |
| 3854 | return 0; |
| 3855 | } |
| 3856 | |
| 3857 | snprintf(buf, sizeof(buf), |
| 3858 | "cp Certs/aaa-ca.pem SP/%s/aaa-ca.pem", |
| 3859 | fqdn); |
| 3860 | if (system(buf)) { |
| 3861 | send_resp(dut, conn, SIGMA_ERROR, |
| 3862 | "errorCode,Failed to copy AAA CA cert"); |
| 3863 | return 0; |
| 3864 | } |
| 3865 | } else { |
| 3866 | snprintf(buf, sizeof(buf), |
| 3867 | "dl_osu_ca SP/%s/pps.xml SP/%s/ca.pem", |
| 3868 | fqdn, fqdn); |
| 3869 | if (run_hs20_osu(dut, buf) < 0) { |
| 3870 | send_resp(dut, conn, SIGMA_ERROR, |
| 3871 | "errorCode,Failed to download OSU CA cert"); |
| 3872 | return 0; |
| 3873 | } |
| 3874 | |
| 3875 | snprintf(buf, sizeof(buf), |
| 3876 | "dl_aaa_ca SP/%s/pps.xml SP/%s/aaa-ca.pem", |
| 3877 | fqdn, fqdn); |
| 3878 | if (run_hs20_osu(dut, buf) < 0) { |
| 3879 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 3880 | "Failed to download AAA CA cert"); |
| 3881 | } |
| 3882 | } |
| 3883 | |
| 3884 | if (file_exists("next-client-cert.pem")) { |
| 3885 | snprintf(buf, sizeof(buf), "SP/%s/client-cert.pem", fqdn); |
| 3886 | if (rename("next-client-cert.pem", buf) < 0) { |
| 3887 | send_resp(dut, conn, SIGMA_ERROR, |
| 3888 | "errorCode,Could not move client certificate"); |
| 3889 | return 0; |
| 3890 | } |
| 3891 | } |
| 3892 | |
| 3893 | if (file_exists("next-client-key.pem")) { |
| 3894 | snprintf(buf, sizeof(buf), "SP/%s/client-key.pem", fqdn); |
| 3895 | if (rename("next-client-key.pem", buf) < 0) { |
| 3896 | send_resp(dut, conn, SIGMA_ERROR, |
| 3897 | "errorCode,Could not move client key"); |
| 3898 | return 0; |
| 3899 | } |
| 3900 | } |
| 3901 | |
| 3902 | snprintf(buf, sizeof(buf), "set_pps SP/%s/pps.xml", fqdn); |
| 3903 | if (run_hs20_osu(dut, buf) < 0) { |
| 3904 | send_resp(dut, conn, SIGMA_ERROR, |
| 3905 | "errorCode,Failed to configure credential from " |
| 3906 | "PPSMO"); |
| 3907 | return 0; |
| 3908 | } |
| 3909 | |
| 3910 | return 1; |
| 3911 | } |
| 3912 | |
| 3913 | |
| 3914 | static int download_cert(struct sigma_dut *dut, |
| 3915 | struct sigma_conn *conn, |
| 3916 | const char *intf, |
| 3917 | struct sigma_cmd *cmd) |
| 3918 | { |
| 3919 | const char *name, *path; |
| 3920 | char url[500], buf[600]; |
| 3921 | |
| 3922 | name = get_param(cmd, "FileName"); |
| 3923 | path = get_param(cmd, "FilePath"); |
| 3924 | if (name == NULL || path == NULL) |
| 3925 | return -1; |
| 3926 | |
| 3927 | if (strcasecmp(path, "VendorSpecific") == 0) { |
| 3928 | snprintf(url, sizeof(url), "Certs/%s-cert.pem", name); |
| 3929 | sigma_dut_print(dut, DUT_MSG_INFO, "Use pre-configured client " |
| 3930 | "certificate from the device (%s)", url); |
| 3931 | if (!file_exists(url)) { |
| 3932 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Requested " |
| 3933 | "certificate file does not exist"); |
| 3934 | return 0; |
| 3935 | } |
| 3936 | snprintf(buf, sizeof(buf), "cp %s next-client-cert.pem", url); |
| 3937 | if (system(buf) != 0) { |
| 3938 | send_resp(dut, conn, SIGMA_ERROR, |
| 3939 | "errorCode,Failed to copy client " |
| 3940 | "certificate"); |
| 3941 | return 0; |
| 3942 | } |
| 3943 | |
| 3944 | snprintf(url, sizeof(url), "Certs/%s-key.pem", name); |
| 3945 | sigma_dut_print(dut, DUT_MSG_INFO, "Use pre-configured client " |
| 3946 | "private key from the device (%s)", url); |
| 3947 | if (!file_exists(url)) { |
| 3948 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Requested " |
| 3949 | "private key file does not exist"); |
| 3950 | return 0; |
| 3951 | } |
| 3952 | snprintf(buf, sizeof(buf), "cp %s next-client-key.pem", url); |
| 3953 | if (system(buf) != 0) { |
| 3954 | send_resp(dut, conn, SIGMA_ERROR, |
| 3955 | "errorCode,Failed to copy client key"); |
| 3956 | return 0; |
| 3957 | } |
| 3958 | } else if (strncasecmp(path, "http:", 5) != 0 && |
| 3959 | strncasecmp(path, "https:", 6) != 0) { |
| 3960 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode," |
| 3961 | "Unsupported FilePath value"); |
| 3962 | return 0; |
| 3963 | } else { |
| 3964 | snprintf(url, sizeof(url), "%s/%s.pem", path, name); |
| 3965 | sigma_dut_print(dut, DUT_MSG_INFO, "Downloading client " |
| 3966 | "certificate/key from %s", url); |
| 3967 | snprintf(buf, sizeof(buf), |
| 3968 | "wget -T 10 -t 3 -O next-client-cert.pem '%s'", url); |
| 3969 | if (system(buf) != 0) { |
| 3970 | send_resp(dut, conn, SIGMA_ERROR, |
| 3971 | "errorCode,Failed to download client " |
| 3972 | "certificate"); |
| 3973 | return 0; |
| 3974 | } |
| 3975 | |
| 3976 | if (system("cp next-client-cert.pem next-client-key.pem") != 0) |
| 3977 | { |
| 3978 | send_resp(dut, conn, SIGMA_ERROR, |
| 3979 | "errorCode,Failed to copy client key"); |
| 3980 | return 0; |
| 3981 | } |
| 3982 | } |
| 3983 | |
| 3984 | return 1; |
| 3985 | } |
| 3986 | |
| 3987 | |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 3988 | static int cmd_sta_preset_testparameters_60ghz(struct sigma_dut *dut, |
| 3989 | struct sigma_conn *conn, |
| 3990 | struct sigma_cmd *cmd) |
| 3991 | { |
| 3992 | const char *val; |
| 3993 | const char *intf = get_param(cmd, "interface"); |
| 3994 | |
| 3995 | if (!intf) |
| 3996 | return -1; |
| 3997 | |
| 3998 | val = get_param(cmd, "WscIEFragment"); |
| 3999 | if (val && strcasecmp(val, "enable") == 0) { |
| 4000 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 4001 | "Enable WSC IE fragmentation"); |
| 4002 | |
| 4003 | dut->wsc_fragment = 1; |
| 4004 | /* set long attributes to force fragmentation */ |
| 4005 | if (wpa_command(intf, "SET device_name " |
| 4006 | WPS_LONG_DEVICE_NAME) < 0) |
| 4007 | return -2; |
| 4008 | if (wpa_command(intf, "SET manufacturer " |
| 4009 | WPS_LONG_MANUFACTURER) < 0) |
| 4010 | return -2; |
| 4011 | if (wpa_command(intf, "SET model_name " |
| 4012 | WPS_LONG_MODEL_NAME) < 0) |
| 4013 | return -2; |
| 4014 | if (wpa_command(intf, "SET model_number " |
| 4015 | WPS_LONG_MODEL_NUMBER) < 0) |
| 4016 | return -2; |
| 4017 | if (wpa_command(intf, "SET serial_number " |
| 4018 | WPS_LONG_SERIAL_NUMBER) < 0) |
| 4019 | return -2; |
| 4020 | } |
| 4021 | |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 4022 | val = get_param(cmd, "RSN_IE"); |
| 4023 | if (val) { |
| 4024 | if (strcasecmp(val, "disable") == 0) |
| 4025 | dut->force_rsn_ie = FORCE_RSN_IE_REMOVE; |
| 4026 | else if (strcasecmp(val, "enable") == 0) |
| 4027 | dut->force_rsn_ie = FORCE_RSN_IE_ADD; |
| 4028 | } |
| 4029 | |
Alexei Avshalom Lazar | 744ae8a | 2019-01-31 17:26:46 +0200 | [diff] [blame] | 4030 | val = get_param(cmd, "WpsVersion"); |
| 4031 | if (val) |
| 4032 | dut->wps_forced_version = get_wps_forced_version(dut, val); |
| 4033 | |
Alexei Avshalom Lazar | 2eccf4d | 2019-01-31 10:03:59 +0200 | [diff] [blame] | 4034 | val = get_param(cmd, "WscEAPFragment"); |
| 4035 | if (val && strcasecmp(val, "enable") == 0) |
| 4036 | dut->eap_fragment = 1; |
| 4037 | |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 4038 | return 1; |
| 4039 | } |
| 4040 | |
| 4041 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4042 | static int cmd_sta_preset_testparameters_hs2_r2(struct sigma_dut *dut, |
| 4043 | struct sigma_conn *conn, |
| 4044 | const char *intf, |
| 4045 | struct sigma_cmd *cmd) |
| 4046 | { |
| 4047 | const char *val; |
| 4048 | |
| 4049 | val = get_param(cmd, "FileType"); |
| 4050 | if (val && strcasecmp(val, "PPSMO") == 0) |
| 4051 | return download_ppsmo(dut, conn, intf, cmd); |
| 4052 | if (val && strcasecmp(val, "CERT") == 0) |
| 4053 | return download_cert(dut, conn, intf, cmd); |
| 4054 | if (val) { |
| 4055 | send_resp(dut, conn, SIGMA_ERROR, |
| 4056 | "ErrorCode,Unsupported FileType"); |
| 4057 | return 0; |
| 4058 | } |
| 4059 | |
| 4060 | return 1; |
| 4061 | } |
| 4062 | |
| 4063 | |
Ankita Bajaj | a2cb567 | 2017-10-25 16:08:28 +0530 | [diff] [blame] | 4064 | static int cmd_sta_preset_testparameters_oce(struct sigma_dut *dut, |
| 4065 | struct sigma_conn *conn, |
| 4066 | const char *intf, |
| 4067 | struct sigma_cmd *cmd) |
| 4068 | { |
| 4069 | const char *val; |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 4070 | char buf[1000]; |
| 4071 | char text[20]; |
| 4072 | unsigned char addr[ETH_ALEN]; |
Ankita Bajaj | a2cb567 | 2017-10-25 16:08:28 +0530 | [diff] [blame] | 4073 | |
| 4074 | val = get_param(cmd, "OCESupport"); |
| 4075 | if (val && strcasecmp(val, "Disable") == 0) { |
| 4076 | if (wpa_command(intf, "SET oce 0") < 0) { |
| 4077 | send_resp(dut, conn, SIGMA_ERROR, |
| 4078 | "ErrorCode,Failed to disable OCE"); |
| 4079 | return 0; |
| 4080 | } |
| 4081 | } else if (val && strcasecmp(val, "Enable") == 0) { |
| 4082 | if (wpa_command(intf, "SET oce 1") < 0) { |
| 4083 | send_resp(dut, conn, SIGMA_ERROR, |
| 4084 | "ErrorCode,Failed to enable OCE"); |
| 4085 | return 0; |
| 4086 | } |
| 4087 | } |
| 4088 | |
vamsi krishna | a279949 | 2017-12-05 14:28:01 +0530 | [diff] [blame] | 4089 | val = get_param(cmd, "FILScap"); |
| 4090 | if (val && (atoi(val) == 1)) { |
| 4091 | if (wpa_command(intf, "SET disable_fils 0") < 0) { |
| 4092 | send_resp(dut, conn, SIGMA_ERROR, |
| 4093 | "ErrorCode,Failed to enable FILS"); |
| 4094 | return 0; |
| 4095 | } |
| 4096 | } else if (val && (atoi(val) == 0)) { |
| 4097 | if (wpa_command(intf, "SET disable_fils 1") < 0) { |
| 4098 | send_resp(dut, conn, SIGMA_ERROR, |
| 4099 | "ErrorCode,Failed to disable FILS"); |
| 4100 | return 0; |
| 4101 | } |
| 4102 | } |
| 4103 | |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 4104 | val = get_param(cmd, "FILSHLP"); |
| 4105 | if (val && strcasecmp(val, "Enable") == 0) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 4106 | if (get_wpa_status(get_station_ifname(dut), "address", text, |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 4107 | sizeof(text)) < 0) |
| 4108 | return -2; |
| 4109 | hwaddr_aton(text, addr); |
| 4110 | snprintf(buf, sizeof(buf), |
| 4111 | "FILS_HLP_REQ_ADD ff:ff:ff:ff:ff:ff " |
| 4112 | "080045100140000040004011399e00000000ffffffff00440043" |
| 4113 | "012cb30001010600fd4f46410000000000000000000000000000" |
| 4114 | "000000000000" |
| 4115 | "%02x%02x%02x%02x%02x%02x" |
| 4116 | "0000000000000000000000000000000000000000000000000000" |
| 4117 | "0000000000000000000000000000000000000000000000000000" |
| 4118 | "0000000000000000000000000000000000000000000000000000" |
| 4119 | "0000000000000000000000000000000000000000000000000000" |
| 4120 | "0000000000000000000000000000000000000000000000000000" |
| 4121 | "0000000000000000000000000000000000000000000000000000" |
| 4122 | "0000000000000000000000000000000000000000000000000000" |
| 4123 | "0000000000000000000000000000000000000000638253633501" |
| 4124 | "013d0701000af549d29b390205dc3c12616e64726f69642d6468" |
| 4125 | "63702d382e302e30370a0103060f1a1c333a3b2b5000ff00", |
| 4126 | addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]); |
| 4127 | if (wpa_command(intf, buf)) { |
| 4128 | send_resp(dut, conn, SIGMA_ERROR, |
| 4129 | "ErrorCode,Failed to add HLP"); |
| 4130 | return 0; |
| 4131 | } |
| 4132 | dut->fils_hlp = 1; |
| 4133 | } |
| 4134 | |
Ankita Bajaj | a2cb567 | 2017-10-25 16:08:28 +0530 | [diff] [blame] | 4135 | return 1; |
| 4136 | } |
| 4137 | |
| 4138 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4139 | static void ath_sta_set_noack(struct sigma_dut *dut, const char *intf, |
| 4140 | const char *val) |
| 4141 | { |
| 4142 | int counter = 0; |
| 4143 | char token[50]; |
| 4144 | char *result; |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 4145 | char *saveptr; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4146 | |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 4147 | strlcpy(token, val, sizeof(token)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4148 | token[sizeof(token) - 1] = '\0'; |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 4149 | result = strtok_r(token, ":", &saveptr); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4150 | while (result) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4151 | if (strcmp(result, "disable") == 0) |
| 4152 | run_iwpriv(dut, intf, "noackpolicy %d 1 0", counter); |
| 4153 | else |
| 4154 | run_iwpriv(dut, intf, "noackpolicy %d 1 1", counter); |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 4155 | result = strtok_r(NULL, ":", &saveptr); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4156 | counter++; |
| 4157 | } |
| 4158 | } |
| 4159 | |
| 4160 | |
| 4161 | static void ath_sta_set_rts(struct sigma_dut *dut, const char *intf, |
| 4162 | const char *val) |
| 4163 | { |
| 4164 | char buf[100]; |
| 4165 | |
| 4166 | snprintf(buf, sizeof(buf), "iwconfig %s rts %s", intf, val); |
| 4167 | if (system(buf) != 0) { |
| 4168 | sigma_dut_print(dut, DUT_MSG_ERROR, "iwconfig RTS failed"); |
| 4169 | } |
| 4170 | } |
| 4171 | |
| 4172 | |
| 4173 | static void ath_sta_set_wmm(struct sigma_dut *dut, const char *intf, |
| 4174 | const char *val) |
| 4175 | { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4176 | if (strcasecmp(val, "off") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4177 | run_iwpriv(dut, intf, "wmm 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4178 | } |
| 4179 | } |
| 4180 | |
| 4181 | |
Amarnath Hullur Subramanyam | 75214d2 | 2018-02-04 19:17:11 -0800 | [diff] [blame] | 4182 | static int wcn_sta_set_wmm(struct sigma_dut *dut, const char *intf, |
| 4183 | const char *val) |
| 4184 | { |
| 4185 | #ifdef NL80211_SUPPORT |
| 4186 | struct nl_msg *msg; |
| 4187 | int ret = 0; |
| 4188 | struct nlattr *params; |
| 4189 | int ifindex; |
| 4190 | int wmmenable = 1; |
| 4191 | |
| 4192 | if (val && |
| 4193 | (strcasecmp(val, "off") == 0 || strcmp(val, "0") == 0)) |
| 4194 | wmmenable = 0; |
| 4195 | |
| 4196 | ifindex = if_nametoindex(intf); |
| 4197 | if (ifindex == 0) { |
| 4198 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4199 | "%s: Index for interface %s failed", |
| 4200 | __func__, intf); |
| 4201 | return -1; |
| 4202 | } |
| 4203 | |
| 4204 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 4205 | NL80211_CMD_VENDOR)) || |
| 4206 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 4207 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 4208 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 4209 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 4210 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 4211 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_WMM_ENABLE, |
| 4212 | wmmenable)) { |
| 4213 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4214 | "%s: err in adding vendor_cmd and vendor_data", |
| 4215 | __func__); |
| 4216 | nlmsg_free(msg); |
| 4217 | return -1; |
| 4218 | } |
| 4219 | nla_nest_end(msg, params); |
| 4220 | |
| 4221 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 4222 | if (ret) { |
| 4223 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4224 | "%s: err in send_and_recv_msgs, ret=%d", |
| 4225 | __func__, ret); |
| 4226 | } |
| 4227 | return ret; |
| 4228 | #else /* NL80211_SUPPORT */ |
| 4229 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4230 | "WMM cannot be changed without NL80211_SUPPORT defined"); |
| 4231 | return -1; |
| 4232 | #endif /* NL80211_SUPPORT */ |
| 4233 | } |
| 4234 | |
| 4235 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4236 | static void ath_sta_set_sgi(struct sigma_dut *dut, const char *intf, |
| 4237 | const char *val) |
| 4238 | { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4239 | int sgi20; |
| 4240 | |
| 4241 | sgi20 = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0; |
| 4242 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4243 | run_iwpriv(dut, intf, "shortgi %d", sgi20); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4244 | } |
| 4245 | |
| 4246 | |
| 4247 | static void ath_sta_set_11nrates(struct sigma_dut *dut, const char *intf, |
| 4248 | const char *val) |
| 4249 | { |
Pradeep Reddy POTTETI | 67376b7 | 2016-10-25 20:08:17 +0530 | [diff] [blame] | 4250 | int rate_code, v; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4251 | |
| 4252 | /* Disable Tx Beam forming when using a fixed rate */ |
| 4253 | ath_disable_txbf(dut, intf); |
| 4254 | |
Pradeep Reddy POTTETI | 67376b7 | 2016-10-25 20:08:17 +0530 | [diff] [blame] | 4255 | v = atoi(val); |
| 4256 | if (v < 0 || v > 32) { |
| 4257 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4258 | "Invalid Fixed MCS rate: %d", v); |
| 4259 | return; |
| 4260 | } |
| 4261 | rate_code = 0x80 + v; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4262 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4263 | run_iwpriv(dut, intf, "set11NRates 0x%x", rate_code); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4264 | |
| 4265 | /* Channel width gets messed up, fix this */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4266 | run_iwpriv(dut, intf, "chwidth %d", dut->chwidth); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4267 | } |
| 4268 | |
| 4269 | |
Amarnath Hullur Subramanyam | d5bb573 | 2018-02-22 15:50:38 -0800 | [diff] [blame] | 4270 | static void iwpriv_sta_set_amsdu(struct sigma_dut *dut, const char *intf, |
| 4271 | const char *val) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4272 | { |
| 4273 | char buf[60]; |
| 4274 | |
| 4275 | if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) |
| 4276 | snprintf(buf, sizeof(buf), "iwpriv %s amsdu 2", intf); |
| 4277 | else |
| 4278 | snprintf(buf, sizeof(buf), "iwpriv %s amsdu 1", intf); |
| 4279 | |
| 4280 | if (system(buf) != 0) |
| 4281 | sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv amsdu failed"); |
| 4282 | } |
| 4283 | |
| 4284 | |
Deepak Dhamdhere | 80356cb | 2016-03-28 16:48:32 -0700 | [diff] [blame] | 4285 | static int iwpriv_sta_set_ampdu(struct sigma_dut *dut, const char *intf, |
| 4286 | int ampdu) |
| 4287 | { |
| 4288 | char buf[60]; |
Amarnath Hullur Subramanyam | 63c590a | 2018-03-07 15:26:21 -0800 | [diff] [blame] | 4289 | int maxaggregation = 63; |
Deepak Dhamdhere | 80356cb | 2016-03-28 16:48:32 -0700 | [diff] [blame] | 4290 | |
Amarnath Hullur Subramanyam | 63c590a | 2018-03-07 15:26:21 -0800 | [diff] [blame] | 4291 | if (ampdu) |
| 4292 | ampdu = maxaggregation; |
Deepak Dhamdhere | 80356cb | 2016-03-28 16:48:32 -0700 | [diff] [blame] | 4293 | snprintf(buf, sizeof(buf), "iwpriv %s ampdu %d", intf, ampdu); |
| 4294 | if (system(buf) != 0) { |
| 4295 | sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv ampdu failed"); |
| 4296 | return -1; |
| 4297 | } |
| 4298 | |
| 4299 | return 0; |
| 4300 | } |
| 4301 | |
| 4302 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4303 | static void ath_sta_set_stbc(struct sigma_dut *dut, const char *intf, |
| 4304 | const char *val) |
| 4305 | { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4306 | run_iwpriv(dut, intf, "tx_stbc %s", val); |
| 4307 | run_iwpriv(dut, intf, "rx_stbc %s", val); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4308 | } |
| 4309 | |
| 4310 | |
| 4311 | static int wcn_sta_set_cts_width(struct sigma_dut *dut, const char *intf, |
| 4312 | const char *val) |
| 4313 | { |
| 4314 | char buf[60]; |
| 4315 | |
Peng Xu | cc317ed | 2017-05-18 16:44:37 -0700 | [diff] [blame] | 4316 | if (strcmp(val, "160") == 0) { |
| 4317 | snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 5", intf); |
| 4318 | } else if (strcmp(val, "80") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4319 | snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 3", intf); |
| 4320 | } else if (strcmp(val, "40") == 0) { |
| 4321 | snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 2", intf); |
| 4322 | } else if (strcmp(val, "20") == 0) { |
| 4323 | snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 1", intf); |
| 4324 | } else if (strcasecmp(val, "Auto") == 0) { |
| 4325 | buf[0] = '\0'; |
| 4326 | } else { |
| 4327 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4328 | "WIDTH/CTS_WIDTH value not supported"); |
| 4329 | return -1; |
| 4330 | } |
| 4331 | |
| 4332 | if (buf[0] != '\0' && system(buf) != 0) { |
| 4333 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4334 | "Failed to set WIDTH/CTS_WIDTH"); |
| 4335 | return -1; |
| 4336 | } |
| 4337 | |
| 4338 | return 0; |
| 4339 | } |
| 4340 | |
| 4341 | |
| 4342 | int ath_set_width(struct sigma_dut *dut, struct sigma_conn *conn, |
| 4343 | const char *intf, const char *val) |
| 4344 | { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4345 | if (strcasecmp(val, "Auto") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4346 | run_iwpriv(dut, intf, "chwidth 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4347 | dut->chwidth = 0; |
| 4348 | } else if (strcasecmp(val, "20") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4349 | run_iwpriv(dut, intf, "chwidth 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4350 | dut->chwidth = 0; |
| 4351 | } else if (strcasecmp(val, "40") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4352 | run_iwpriv(dut, intf, "chwidth 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4353 | dut->chwidth = 1; |
| 4354 | } else if (strcasecmp(val, "80") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4355 | run_iwpriv(dut, intf, "chwidth 2"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4356 | dut->chwidth = 2; |
| 4357 | } else if (strcasecmp(val, "160") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 4358 | run_iwpriv(dut, intf, "chwidth 3"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4359 | dut->chwidth = 3; |
| 4360 | } else { |
| 4361 | send_resp(dut, conn, SIGMA_ERROR, |
| 4362 | "ErrorCode,WIDTH not supported"); |
| 4363 | return -1; |
| 4364 | } |
| 4365 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4366 | return 0; |
| 4367 | } |
| 4368 | |
| 4369 | |
| 4370 | static int wcn_sta_set_sp_stream(struct sigma_dut *dut, const char *intf, |
| 4371 | const char *val) |
| 4372 | { |
| 4373 | char buf[60]; |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 4374 | int sta_nss; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4375 | |
Amarnath Hullur Subramanyam | d5374fa | 2018-02-25 19:00:24 -0800 | [diff] [blame] | 4376 | if (strcmp(val, "1SS") == 0 || strcmp(val, "1") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4377 | snprintf(buf, sizeof(buf), "iwpriv %s nss 1", intf); |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 4378 | sta_nss = 1; |
Amarnath Hullur Subramanyam | d5374fa | 2018-02-25 19:00:24 -0800 | [diff] [blame] | 4379 | } else if (strcmp(val, "2SS") == 0 || strcmp(val, "2") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4380 | snprintf(buf, sizeof(buf), "iwpriv %s nss 2", intf); |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 4381 | sta_nss = 2; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4382 | } else { |
| 4383 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4384 | "SP_STREAM value not supported"); |
| 4385 | return -1; |
| 4386 | } |
| 4387 | |
| 4388 | if (system(buf) != 0) { |
| 4389 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4390 | "Failed to set SP_STREAM"); |
| 4391 | return -1; |
| 4392 | } |
| 4393 | |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 4394 | dut->sta_nss = sta_nss; |
| 4395 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4396 | return 0; |
| 4397 | } |
| 4398 | |
| 4399 | |
Pradeep Reddy POTTETI | 4a1f6b3 | 2016-11-23 13:15:21 +0530 | [diff] [blame] | 4400 | static void wcn_sta_set_stbc(struct sigma_dut *dut, const char *intf, |
| 4401 | const char *val) |
| 4402 | { |
| 4403 | char buf[60]; |
| 4404 | |
| 4405 | snprintf(buf, sizeof(buf), "iwpriv %s tx_stbc %s", intf, val); |
| 4406 | if (system(buf) != 0) |
| 4407 | sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv tx_stbc failed"); |
| 4408 | |
| 4409 | snprintf(buf, sizeof(buf), "iwpriv %s rx_stbc %s", intf, val); |
| 4410 | if (system(buf) != 0) |
| 4411 | sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv rx_stbc failed"); |
| 4412 | } |
| 4413 | |
| 4414 | |
Ashwini Patil | 68d02cd | 2017-01-10 15:39:16 +0530 | [diff] [blame] | 4415 | static int mbo_set_cellular_data_capa(struct sigma_dut *dut, |
| 4416 | struct sigma_conn *conn, |
| 4417 | const char *intf, int capa) |
| 4418 | { |
| 4419 | char buf[32]; |
| 4420 | |
| 4421 | if (capa > 0 && capa < 4) { |
| 4422 | snprintf(buf, sizeof(buf), "SET mbo_cell_capa %d", capa); |
| 4423 | if (wpa_command(intf, buf) < 0) { |
| 4424 | send_resp(dut, conn, SIGMA_ERROR, |
| 4425 | "ErrorCode, Failed to set cellular data capability"); |
| 4426 | return 0; |
| 4427 | } |
| 4428 | return 1; |
| 4429 | } |
| 4430 | |
| 4431 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4432 | "Invalid Cellular data capability: %d", capa); |
| 4433 | send_resp(dut, conn, SIGMA_INVALID, |
| 4434 | "ErrorCode,Invalid cellular data capability"); |
| 4435 | return 0; |
| 4436 | } |
| 4437 | |
| 4438 | |
Ashwini Patil | 9183fdb | 2017-04-13 16:58:25 +0530 | [diff] [blame] | 4439 | static int mbo_set_roaming(struct sigma_dut *dut, struct sigma_conn *conn, |
| 4440 | const char *intf, const char *val) |
| 4441 | { |
| 4442 | if (strcasecmp(val, "Disable") == 0) { |
| 4443 | if (wpa_command(intf, "SET roaming 0") < 0) { |
| 4444 | send_resp(dut, conn, SIGMA_ERROR, |
| 4445 | "ErrorCode,Failed to disable roaming"); |
| 4446 | return 0; |
| 4447 | } |
| 4448 | return 1; |
| 4449 | } |
| 4450 | |
| 4451 | if (strcasecmp(val, "Enable") == 0) { |
| 4452 | if (wpa_command(intf, "SET roaming 1") < 0) { |
| 4453 | send_resp(dut, conn, SIGMA_ERROR, |
| 4454 | "ErrorCode,Failed to enable roaming"); |
| 4455 | return 0; |
| 4456 | } |
| 4457 | return 1; |
| 4458 | } |
| 4459 | |
| 4460 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4461 | "Invalid value provided for roaming: %s", val); |
| 4462 | send_resp(dut, conn, SIGMA_INVALID, |
| 4463 | "ErrorCode,Unknown value provided for Roaming"); |
| 4464 | return 0; |
| 4465 | } |
| 4466 | |
| 4467 | |
Ashwini Patil | a75de5a | 2017-04-13 16:35:05 +0530 | [diff] [blame] | 4468 | static int mbo_set_assoc_disallow(struct sigma_dut *dut, |
| 4469 | struct sigma_conn *conn, |
| 4470 | const char *intf, const char *val) |
| 4471 | { |
| 4472 | if (strcasecmp(val, "Disable") == 0) { |
| 4473 | if (wpa_command(intf, "SET ignore_assoc_disallow 1") < 0) { |
| 4474 | send_resp(dut, conn, SIGMA_ERROR, |
| 4475 | "ErrorCode,Failed to disable Assoc_disallow"); |
| 4476 | return 0; |
| 4477 | } |
| 4478 | return 1; |
| 4479 | } |
| 4480 | |
| 4481 | if (strcasecmp(val, "Enable") == 0) { |
| 4482 | if (wpa_command(intf, "SET ignore_assoc_disallow 0") < 0) { |
| 4483 | send_resp(dut, conn, SIGMA_ERROR, |
| 4484 | "ErrorCode,Failed to enable Assoc_disallow"); |
| 4485 | return 0; |
| 4486 | } |
| 4487 | return 1; |
| 4488 | } |
| 4489 | |
| 4490 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4491 | "Invalid value provided for Assoc_disallow: %s", val); |
| 4492 | send_resp(dut, conn, SIGMA_INVALID, |
| 4493 | "ErrorCode,Unknown value provided for Assoc_disallow"); |
| 4494 | return 0; |
| 4495 | } |
| 4496 | |
| 4497 | |
Ashwini Patil | c63161e | 2017-04-13 16:30:23 +0530 | [diff] [blame] | 4498 | static int mbo_set_bss_trans_req(struct sigma_dut *dut, struct sigma_conn *conn, |
| 4499 | const char *intf, const char *val) |
| 4500 | { |
| 4501 | if (strcasecmp(val, "Reject") == 0) { |
| 4502 | if (wpa_command(intf, "SET reject_btm_req_reason 1") < 0) { |
| 4503 | send_resp(dut, conn, SIGMA_ERROR, |
| 4504 | "ErrorCode,Failed to Reject BTM Request"); |
| 4505 | return 0; |
| 4506 | } |
| 4507 | return 1; |
| 4508 | } |
| 4509 | |
| 4510 | if (strcasecmp(val, "Accept") == 0) { |
| 4511 | if (wpa_command(intf, "SET reject_btm_req_reason 0") < 0) { |
| 4512 | send_resp(dut, conn, SIGMA_ERROR, |
| 4513 | "ErrorCode,Failed to Accept BTM Request"); |
| 4514 | return 0; |
| 4515 | } |
| 4516 | return 1; |
| 4517 | } |
| 4518 | |
| 4519 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4520 | "Invalid value provided for BSS_Transition: %s", val); |
| 4521 | send_resp(dut, conn, SIGMA_INVALID, |
| 4522 | "ErrorCode,Unknown value provided for BSS_Transition"); |
| 4523 | return 0; |
| 4524 | } |
| 4525 | |
| 4526 | |
Ashwini Patil | 0040258 | 2017-04-13 12:29:39 +0530 | [diff] [blame] | 4527 | static int mbo_set_non_pref_ch_list(struct sigma_dut *dut, |
| 4528 | struct sigma_conn *conn, |
| 4529 | const char *intf, |
| 4530 | struct sigma_cmd *cmd) |
| 4531 | { |
| 4532 | const char *ch, *pref, *op_class, *reason; |
| 4533 | char buf[120]; |
| 4534 | int len, ret; |
| 4535 | |
| 4536 | pref = get_param(cmd, "Ch_Pref"); |
| 4537 | if (!pref) |
| 4538 | return 1; |
| 4539 | |
| 4540 | if (strcasecmp(pref, "clear") == 0) { |
| 4541 | free(dut->non_pref_ch_list); |
| 4542 | dut->non_pref_ch_list = NULL; |
| 4543 | } else { |
| 4544 | op_class = get_param(cmd, "Ch_Op_Class"); |
| 4545 | if (!op_class) { |
| 4546 | send_resp(dut, conn, SIGMA_INVALID, |
| 4547 | "ErrorCode,Ch_Op_Class not provided"); |
| 4548 | return 0; |
| 4549 | } |
| 4550 | |
| 4551 | ch = get_param(cmd, "Ch_Pref_Num"); |
| 4552 | if (!ch) { |
| 4553 | send_resp(dut, conn, SIGMA_INVALID, |
| 4554 | "ErrorCode,Ch_Pref_Num not provided"); |
| 4555 | return 0; |
| 4556 | } |
| 4557 | |
| 4558 | reason = get_param(cmd, "Ch_Reason_Code"); |
| 4559 | if (!reason) { |
| 4560 | send_resp(dut, conn, SIGMA_INVALID, |
| 4561 | "ErrorCode,Ch_Reason_Code not provided"); |
| 4562 | return 0; |
| 4563 | } |
| 4564 | |
| 4565 | if (!dut->non_pref_ch_list) { |
| 4566 | dut->non_pref_ch_list = |
| 4567 | calloc(1, NON_PREF_CH_LIST_SIZE); |
| 4568 | if (!dut->non_pref_ch_list) { |
| 4569 | send_resp(dut, conn, SIGMA_ERROR, |
| 4570 | "ErrorCode,Failed to allocate memory for non_pref_ch_list"); |
| 4571 | return 0; |
| 4572 | } |
| 4573 | } |
| 4574 | len = strlen(dut->non_pref_ch_list); |
| 4575 | ret = snprintf(dut->non_pref_ch_list + len, |
| 4576 | NON_PREF_CH_LIST_SIZE - len, |
| 4577 | " %s:%s:%s:%s", op_class, ch, pref, reason); |
| 4578 | if (ret > 0 && ret < NON_PREF_CH_LIST_SIZE - len) { |
| 4579 | sigma_dut_print(dut, DUT_MSG_DEBUG, "non_pref_list: %s", |
| 4580 | dut->non_pref_ch_list); |
| 4581 | } else { |
| 4582 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4583 | "snprintf failed for non_pref_list, ret = %d", |
| 4584 | ret); |
| 4585 | send_resp(dut, conn, SIGMA_ERROR, |
| 4586 | "ErrorCode,snprintf failed"); |
| 4587 | free(dut->non_pref_ch_list); |
| 4588 | dut->non_pref_ch_list = NULL; |
| 4589 | return 0; |
| 4590 | } |
| 4591 | } |
| 4592 | |
| 4593 | ret = snprintf(buf, sizeof(buf), "SET non_pref_chan%s", |
| 4594 | dut->non_pref_ch_list ? dut->non_pref_ch_list : " "); |
| 4595 | if (ret < 0 || ret >= (int) sizeof(buf)) { |
| 4596 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 4597 | "snprintf failed for set non_pref_chan, ret: %d", |
| 4598 | ret); |
| 4599 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,snprint failed"); |
| 4600 | return 0; |
| 4601 | } |
| 4602 | |
| 4603 | if (wpa_command(intf, buf) < 0) { |
| 4604 | send_resp(dut, conn, SIGMA_ERROR, |
| 4605 | "ErrorCode,Failed to set non-preferred channel list"); |
| 4606 | return 0; |
| 4607 | } |
| 4608 | |
| 4609 | return 1; |
| 4610 | } |
| 4611 | |
| 4612 | |
Amarnath Hullur Subramanyam | 474a17d | 2018-02-22 18:45:54 -0800 | [diff] [blame] | 4613 | #ifdef NL80211_SUPPORT |
Amarnath Hullur Subramanyam | ae8a2d9 | 2018-03-01 06:32:21 -0800 | [diff] [blame] | 4614 | |
Kiran Kumar Lokere | e5ed442 | 2018-12-18 18:25:02 -0800 | [diff] [blame] | 4615 | static int sta_set_he_htc_supp(struct sigma_dut *dut, const char *intf, |
| 4616 | uint8_t cfg) |
| 4617 | { |
| 4618 | struct nl_msg *msg; |
| 4619 | int ret = 0; |
| 4620 | struct nlattr *params; |
| 4621 | int ifindex; |
| 4622 | |
| 4623 | ifindex = if_nametoindex(intf); |
| 4624 | if (ifindex == 0) { |
| 4625 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4626 | "%s: Index for interface %s failed", |
| 4627 | __func__, intf); |
| 4628 | return -1; |
| 4629 | } |
| 4630 | |
| 4631 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 4632 | NL80211_CMD_VENDOR)) || |
| 4633 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 4634 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 4635 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 4636 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 4637 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 4638 | nla_put_u8(msg, |
| 4639 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_HTC_HE_SUPP, |
| 4640 | cfg)) { |
| 4641 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4642 | "%s: err in adding vendor_cmd and vendor_data", |
| 4643 | __func__); |
| 4644 | nlmsg_free(msg); |
| 4645 | return -1; |
| 4646 | } |
| 4647 | nla_nest_end(msg, params); |
| 4648 | |
| 4649 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 4650 | if (ret) { |
| 4651 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4652 | "%s: err in send_and_recv_msgs, ret=%d", |
| 4653 | __func__, ret); |
| 4654 | } |
| 4655 | return ret; |
| 4656 | } |
| 4657 | |
| 4658 | |
Amarnath Hullur Subramanyam | 474a17d | 2018-02-22 18:45:54 -0800 | [diff] [blame] | 4659 | static int sta_set_he_fragmentation(struct sigma_dut *dut, const char *intf, |
| 4660 | enum he_fragmentation_val frag) |
| 4661 | { |
| 4662 | struct nl_msg *msg; |
| 4663 | int ret = 0; |
| 4664 | struct nlattr *params; |
| 4665 | int ifindex; |
| 4666 | |
| 4667 | ifindex = if_nametoindex(intf); |
| 4668 | if (ifindex == 0) { |
| 4669 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4670 | "%s: Index for interface %s failed", |
| 4671 | __func__, intf); |
| 4672 | return -1; |
| 4673 | } |
| 4674 | |
| 4675 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 4676 | NL80211_CMD_VENDOR)) || |
| 4677 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 4678 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 4679 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 4680 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 4681 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 4682 | nla_put_u8(msg, |
| 4683 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_FRAGMENTATION, |
| 4684 | frag)) { |
| 4685 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4686 | "%s: err in adding vendor_cmd and vendor_data", |
| 4687 | __func__); |
| 4688 | nlmsg_free(msg); |
| 4689 | return -1; |
| 4690 | } |
| 4691 | nla_nest_end(msg, params); |
| 4692 | |
| 4693 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 4694 | if (ret) { |
| 4695 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4696 | "%s: err in send_and_recv_msgs, ret=%d", |
| 4697 | __func__, ret); |
| 4698 | } |
| 4699 | return ret; |
| 4700 | } |
Amarnath Hullur Subramanyam | ae8a2d9 | 2018-03-01 06:32:21 -0800 | [diff] [blame] | 4701 | |
| 4702 | |
Kiran Kumar Lokere | 26c0f86 | 2020-01-22 11:15:59 -0800 | [diff] [blame] | 4703 | int wcn_set_he_ltf(struct sigma_dut *dut, const char *intf, |
| 4704 | enum qca_wlan_he_ltf_cfg ltf) |
Subhani Shaik | 8e7a305 | 2018-04-24 14:03:00 -0700 | [diff] [blame] | 4705 | { |
| 4706 | struct nl_msg *msg; |
| 4707 | int ret = 0; |
| 4708 | struct nlattr *params; |
| 4709 | int ifindex; |
| 4710 | |
| 4711 | ifindex = if_nametoindex(intf); |
| 4712 | if (ifindex == 0) { |
| 4713 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4714 | "%s: Index for interface %s failed", |
| 4715 | __func__, intf); |
| 4716 | return -1; |
| 4717 | } |
| 4718 | |
| 4719 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 4720 | NL80211_CMD_VENDOR)) || |
| 4721 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 4722 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 4723 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 4724 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 4725 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 4726 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_LTF, |
| 4727 | ltf)) { |
| 4728 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4729 | "%s: err in adding vendor_cmd and vendor_data", |
| 4730 | __func__); |
| 4731 | nlmsg_free(msg); |
| 4732 | return -1; |
| 4733 | } |
| 4734 | nla_nest_end(msg, params); |
| 4735 | |
| 4736 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 4737 | if (ret) { |
| 4738 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4739 | "%s: err in send_and_recv_msgs, ret=%d", |
| 4740 | __func__, ret); |
| 4741 | } |
| 4742 | return ret; |
| 4743 | } |
| 4744 | |
| 4745 | |
Amarnath Hullur Subramanyam | ae8a2d9 | 2018-03-01 06:32:21 -0800 | [diff] [blame] | 4746 | static int nlvendor_sta_set_noack(struct sigma_dut *dut, const char *intf, |
| 4747 | int noack, enum qca_wlan_ac_type ac) |
| 4748 | { |
| 4749 | struct nl_msg *msg; |
| 4750 | int ret = 0; |
| 4751 | struct nlattr *params; |
| 4752 | int ifindex; |
| 4753 | |
| 4754 | ifindex = if_nametoindex(intf); |
| 4755 | if (ifindex == 0) { |
| 4756 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4757 | "%s: Index for interface %s failed", |
| 4758 | __func__, intf); |
| 4759 | return -1; |
| 4760 | } |
| 4761 | |
| 4762 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 4763 | NL80211_CMD_VENDOR)) || |
| 4764 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 4765 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 4766 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 4767 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 4768 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 4769 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ENABLE_NO_ACK, |
| 4770 | noack) || |
| 4771 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_NO_ACK_AC, |
| 4772 | ac)) { |
| 4773 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4774 | "%s: err in adding vendor_cmd and vendor_data", |
| 4775 | __func__); |
| 4776 | nlmsg_free(msg); |
| 4777 | return -1; |
| 4778 | } |
| 4779 | nla_nest_end(msg, params); |
| 4780 | |
| 4781 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 4782 | if (ret) { |
| 4783 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4784 | "%s: err in send_and_recv_msgs, ret=%d", |
| 4785 | __func__, ret); |
| 4786 | } |
| 4787 | return ret; |
| 4788 | } |
| 4789 | |
| 4790 | |
| 4791 | static void wcn_sta_set_noack(struct sigma_dut *dut, const char *intf, |
| 4792 | const char *val) |
| 4793 | { |
| 4794 | int noack, ret; |
| 4795 | char token[100]; |
| 4796 | char *result; |
| 4797 | char *saveptr; |
| 4798 | enum qca_wlan_ac_type ac = QCA_WLAN_AC_BE; |
| 4799 | |
| 4800 | strlcpy(token, val, sizeof(token)); |
| 4801 | token[sizeof(token) - 1] = '\0'; |
| 4802 | result = strtok_r(token, ":", &saveptr); |
| 4803 | while (result) { |
| 4804 | noack = strcasecmp(result, "Disable") != 0; |
| 4805 | ret = nlvendor_sta_set_noack(dut, intf, noack, ac); |
| 4806 | if (ret) { |
| 4807 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 4808 | "nlvendor_sta_set_noack failed for ac:%d, ret:%d", |
| 4809 | ac, ret); |
| 4810 | } |
| 4811 | result = strtok_r(NULL, ":", &saveptr); |
| 4812 | ac++; |
| 4813 | } |
| 4814 | } |
| 4815 | |
Amarnath Hullur Subramanyam | 474a17d | 2018-02-22 18:45:54 -0800 | [diff] [blame] | 4816 | #endif /* NL80211_SUPPORT */ |
| 4817 | |
| 4818 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 4819 | static enum sigma_cmd_result |
| 4820 | cmd_sta_preset_testparameters(struct sigma_dut *dut, struct sigma_conn *conn, |
| 4821 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4822 | { |
| 4823 | const char *intf = get_param(cmd, "Interface"); |
| 4824 | const char *val; |
| 4825 | |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 4826 | val = get_param(cmd, "FT_DS"); |
| 4827 | if (val) { |
| 4828 | if (strcasecmp(val, "Enable") == 0) { |
| 4829 | dut->sta_ft_ds = 1; |
| 4830 | } else if (strcasecmp(val, "Disable") == 0) { |
| 4831 | dut->sta_ft_ds = 0; |
| 4832 | } else { |
| 4833 | send_resp(dut, conn, SIGMA_ERROR, |
| 4834 | "errorCode,Unsupported value for FT_DS"); |
| 4835 | return STATUS_SENT_ERROR; |
| 4836 | } |
| 4837 | } |
| 4838 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4839 | val = get_param(cmd, "Program"); |
Jouni Malinen | 1f6ae64 | 2018-06-07 23:56:13 +0300 | [diff] [blame] | 4840 | if (val && (strcasecmp(val, "HS2-R2") == 0 || |
| 4841 | strcasecmp(val, "HS2-R3") == 0)) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4842 | return cmd_sta_preset_testparameters_hs2_r2(dut, conn, intf, |
| 4843 | cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4844 | |
priyadharshini gowthaman | d66913a | 2016-07-29 15:11:17 -0700 | [diff] [blame] | 4845 | if (val && strcasecmp(val, "LOC") == 0) |
| 4846 | return loc_cmd_sta_preset_testparameters(dut, conn, cmd); |
Alexei Avshalom Lazar | eee9ab0 | 2018-12-24 16:27:48 +0200 | [diff] [blame] | 4847 | if (val && strcasecmp(val, "60GHZ") == 0) { |
| 4848 | val = get_param(cmd, "WPS"); |
| 4849 | if (val && strcasecmp(val, "disable") == 0) { |
| 4850 | dut->wps_disable = 1; |
| 4851 | sigma_dut_print(dut, DUT_MSG_INFO, "WPS disabled"); |
| 4852 | } else { |
| 4853 | /* wps_disable can have other value from the previous |
| 4854 | * test, so make sure it has the correct value. |
| 4855 | */ |
| 4856 | dut->wps_disable = 0; |
| 4857 | } |
| 4858 | |
| 4859 | val = get_param(cmd, "P2P"); |
| 4860 | if (val && strcasecmp(val, "disable") == 0) |
| 4861 | sigma_dut_print(dut, DUT_MSG_INFO, "P2P disabled"); |
| 4862 | } |
priyadharshini gowthaman | d66913a | 2016-07-29 15:11:17 -0700 | [diff] [blame] | 4863 | |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 4864 | if (dut->program == PROGRAM_WPS && dut->band == WPS_BAND_60G) |
| 4865 | return cmd_sta_preset_testparameters_60ghz(dut, conn, cmd); |
| 4866 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4867 | #ifdef ANDROID_NAN |
| 4868 | if (val && strcasecmp(val, "NAN") == 0) |
| 4869 | return nan_cmd_sta_preset_testparameters(dut, conn, cmd); |
| 4870 | #endif /* ANDROID_NAN */ |
Amarnath Hullur Subramanyam | 9c381f5 | 2017-03-17 00:04:41 -0700 | [diff] [blame] | 4871 | #ifdef MIRACAST |
| 4872 | if (val && (strcasecmp(val, "WFD") == 0 || |
| 4873 | strcasecmp(val, "DisplayR2") == 0)) |
| 4874 | return miracast_preset_testparameters(dut, conn, cmd); |
| 4875 | #endif /* MIRACAST */ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4876 | |
Ashwini Patil | 68d02cd | 2017-01-10 15:39:16 +0530 | [diff] [blame] | 4877 | if (val && strcasecmp(val, "MBO") == 0) { |
| 4878 | val = get_param(cmd, "Cellular_Data_Cap"); |
| 4879 | if (val && |
| 4880 | mbo_set_cellular_data_capa(dut, conn, intf, atoi(val)) == 0) |
| 4881 | return 0; |
Ashwini Patil | 0040258 | 2017-04-13 12:29:39 +0530 | [diff] [blame] | 4882 | |
| 4883 | val = get_param(cmd, "Ch_Pref"); |
| 4884 | if (val && mbo_set_non_pref_ch_list(dut, conn, intf, cmd) == 0) |
| 4885 | return 0; |
| 4886 | |
Ashwini Patil | c63161e | 2017-04-13 16:30:23 +0530 | [diff] [blame] | 4887 | val = get_param(cmd, "BSS_Transition"); |
| 4888 | if (val && mbo_set_bss_trans_req(dut, conn, intf, val) == 0) |
| 4889 | return 0; |
| 4890 | |
Ashwini Patil | a75de5a | 2017-04-13 16:35:05 +0530 | [diff] [blame] | 4891 | val = get_param(cmd, "Assoc_Disallow"); |
| 4892 | if (val && mbo_set_assoc_disallow(dut, conn, intf, val) == 0) |
| 4893 | return 0; |
| 4894 | |
Ashwini Patil | 9183fdb | 2017-04-13 16:58:25 +0530 | [diff] [blame] | 4895 | val = get_param(cmd, "Roaming"); |
| 4896 | if (val && mbo_set_roaming(dut, conn, intf, val) == 0) |
| 4897 | return 0; |
| 4898 | |
Ashwini Patil | 68d02cd | 2017-01-10 15:39:16 +0530 | [diff] [blame] | 4899 | return 1; |
| 4900 | } |
| 4901 | |
Ankita Bajaj | a2cb567 | 2017-10-25 16:08:28 +0530 | [diff] [blame] | 4902 | if (val && strcasecmp(val, "OCE") == 0) |
| 4903 | return cmd_sta_preset_testparameters_oce(dut, conn, intf, cmd); |
| 4904 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4905 | #if 0 |
| 4906 | val = get_param(cmd, "Supplicant"); |
| 4907 | if (val && strcasecmp(val, "Default") != 0) { |
| 4908 | send_resp(dut, conn, SIGMA_ERROR, |
| 4909 | "ErrorCode,Only default(Vendor) supplicant " |
| 4910 | "supported"); |
| 4911 | return 0; |
| 4912 | } |
| 4913 | #endif |
| 4914 | |
| 4915 | val = get_param(cmd, "RTS"); |
| 4916 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 4917 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4918 | case DRIVER_ATHEROS: |
| 4919 | ath_sta_set_rts(dut, intf, val); |
| 4920 | break; |
| 4921 | default: |
| 4922 | #if 0 |
| 4923 | send_resp(dut, conn, SIGMA_ERROR, |
| 4924 | "ErrorCode,Setting RTS not supported"); |
| 4925 | return 0; |
| 4926 | #else |
| 4927 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 4928 | "Setting RTS not supported"); |
| 4929 | break; |
| 4930 | #endif |
| 4931 | } |
| 4932 | } |
| 4933 | |
| 4934 | #if 0 |
| 4935 | val = get_param(cmd, "FRGMNT"); |
| 4936 | if (val) { |
| 4937 | /* TODO */ |
| 4938 | send_resp(dut, conn, SIGMA_ERROR, |
| 4939 | "ErrorCode,Setting FRGMNT not supported"); |
| 4940 | return 0; |
| 4941 | } |
| 4942 | #endif |
| 4943 | |
| 4944 | #if 0 |
| 4945 | val = get_param(cmd, "Preamble"); |
| 4946 | if (val) { |
| 4947 | /* TODO: Long/Short */ |
| 4948 | send_resp(dut, conn, SIGMA_ERROR, |
| 4949 | "ErrorCode,Setting Preamble not supported"); |
| 4950 | return 0; |
| 4951 | } |
| 4952 | #endif |
| 4953 | |
| 4954 | val = get_param(cmd, "Mode"); |
| 4955 | if (val) { |
| 4956 | if (strcmp(val, "11b") == 0 || |
| 4957 | strcmp(val, "11g") == 0 || |
| 4958 | strcmp(val, "11a") == 0 || |
| 4959 | strcmp(val, "11n") == 0 || |
| 4960 | strcmp(val, "11ng") == 0 || |
| 4961 | strcmp(val, "11nl") == 0 || |
| 4962 | strcmp(val, "11nl(nabg)") == 0 || |
| 4963 | strcmp(val, "AC") == 0 || |
| 4964 | strcmp(val, "11AC") == 0 || |
| 4965 | strcmp(val, "11ac") == 0 || |
| 4966 | strcmp(val, "11na") == 0 || |
Amarnath Hullur Subramanyam | b0db271 | 2018-01-30 19:40:35 -0800 | [diff] [blame] | 4967 | strcmp(val, "11an") == 0 || |
| 4968 | strcmp(val, "11ax") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 4969 | /* STA supports all modes by default */ |
| 4970 | } else { |
| 4971 | send_resp(dut, conn, SIGMA_ERROR, |
| 4972 | "ErrorCode,Setting Mode not supported"); |
| 4973 | return 0; |
| 4974 | } |
Amarnath Hullur Subramanyam | 97d0e53 | 2018-01-31 02:53:02 -0800 | [diff] [blame] | 4975 | |
| 4976 | /* Change the mode only in case of testbed for HE program |
| 4977 | * and for 11a and 11g modes only. */ |
| 4978 | if (dut->program == PROGRAM_HE && |
| 4979 | dut->device_type == STA_testbed) { |
| 4980 | int phymode; |
| 4981 | char buf[60]; |
| 4982 | |
| 4983 | if (strcmp(val, "11a") == 0) { |
Amarnath Hullur Subramanyam | 94dfaf0 | 2018-03-02 19:26:57 -0800 | [diff] [blame] | 4984 | phymode = 1; /* IEEE80211_MODE_11A */ |
| 4985 | } else if (strcmp(val, "11g") == 0) { |
| 4986 | phymode = 3; /* IEEE80211_MODE_11G */ |
| 4987 | } else if (strcmp(val, "11b") == 0) { |
| 4988 | phymode = 2; /* IEEE80211_MODE_11B */ |
| 4989 | } else if (strcmp(val, "11n") == 0 || |
| 4990 | strcmp(val, "11nl") == 0 || |
| 4991 | strcmp(val, "11nl(nabg)") == 0) { |
| 4992 | phymode = 22; /* IEEE80211_MODE_11AGN */ |
| 4993 | } else if (strcmp(val, "11ng") == 0) { |
| 4994 | phymode = 13; /* IEEE80211_MODE_11NG_HT40 */ |
| 4995 | } else if (strcmp(val, "AC") == 0 || |
| 4996 | strcasecmp(val, "11AC") == 0) { |
| 4997 | phymode = 19; /* IEEE80211_MODE_11AC_VHT80 */ |
| 4998 | } else if (strcmp(val, "11na") == 0 || |
| 4999 | strcasecmp(val, "11an") == 0) { |
| 5000 | phymode = 14; /* IEEE80211_MODE_11NA_HT40 */ |
| 5001 | } else if (strcmp(val, "11ax") == 0) { |
| 5002 | phymode = 0; /* IEEE80211_MODE_AUTO */ |
Amarnath Hullur Subramanyam | 97d0e53 | 2018-01-31 02:53:02 -0800 | [diff] [blame] | 5003 | } else { |
| 5004 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 5005 | "Ignoring mode change for mode: %s", |
| 5006 | val); |
| 5007 | phymode = -1; |
| 5008 | } |
| 5009 | if (phymode != -1) { |
| 5010 | snprintf(buf, sizeof(buf), |
| 5011 | "iwpriv %s setphymode %d", |
| 5012 | intf, phymode); |
| 5013 | if (system(buf) != 0) { |
| 5014 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5015 | "iwpriv setting of phymode failed"); |
| 5016 | } |
| 5017 | } |
| 5018 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5019 | } |
| 5020 | |
| 5021 | val = get_param(cmd, "wmm"); |
| 5022 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5023 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5024 | case DRIVER_ATHEROS: |
| 5025 | ath_sta_set_wmm(dut, intf, val); |
| 5026 | break; |
Amarnath Hullur Subramanyam | 75214d2 | 2018-02-04 19:17:11 -0800 | [diff] [blame] | 5027 | case DRIVER_WCN: |
| 5028 | wcn_sta_set_wmm(dut, intf, val); |
| 5029 | break; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5030 | default: |
| 5031 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 5032 | "Setting wmm not supported"); |
| 5033 | break; |
| 5034 | } |
| 5035 | } |
| 5036 | |
| 5037 | val = get_param(cmd, "Powersave"); |
| 5038 | if (val) { |
| 5039 | if (strcmp(val, "0") == 0 || strcasecmp(val, "off") == 0) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5040 | if (get_driver_type(dut) == DRIVER_WCN) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 5041 | if (set_power_save_wcn(dut, intf, 2) < 0) |
Kiran Kumar Lokere | d6149ff | 2018-12-05 20:20:41 -0800 | [diff] [blame] | 5042 | return 0; |
Kiran Kumar Lokere | d6149ff | 2018-12-05 20:20:41 -0800 | [diff] [blame] | 5043 | } |
| 5044 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5045 | if (wpa_command(get_station_ifname(dut), |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5046 | "P2P_SET ps 0") < 0) |
| 5047 | return -2; |
| 5048 | /* Make sure test modes are disabled */ |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5049 | wpa_command(get_station_ifname(dut), "P2P_SET ps 98"); |
| 5050 | wpa_command(get_station_ifname(dut), "P2P_SET ps 96"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5051 | } else if (strcmp(val, "1") == 0 || |
| 5052 | strcasecmp(val, "PSPoll") == 0 || |
| 5053 | strcasecmp(val, "on") == 0) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5054 | if (get_driver_type(dut) == DRIVER_WCN) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 5055 | if (set_power_save_wcn(dut, intf, 1) < 0) |
Kiran Kumar Lokere | d6149ff | 2018-12-05 20:20:41 -0800 | [diff] [blame] | 5056 | return 0; |
Kiran Kumar Lokere | d6149ff | 2018-12-05 20:20:41 -0800 | [diff] [blame] | 5057 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5058 | /* Disable default power save mode */ |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5059 | wpa_command(get_station_ifname(dut), "P2P_SET ps 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5060 | /* Enable PS-Poll test mode */ |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5061 | if (wpa_command(get_station_ifname(dut), |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5062 | "P2P_SET ps 97") < 0 || |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5063 | wpa_command(get_station_ifname(dut), |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5064 | "P2P_SET ps 99") < 0) |
| 5065 | return -2; |
| 5066 | } else if (strcmp(val, "2") == 0 || |
| 5067 | strcasecmp(val, "Fast") == 0) { |
| 5068 | /* TODO */ |
| 5069 | send_resp(dut, conn, SIGMA_ERROR, |
| 5070 | "ErrorCode,Powersave=Fast not supported"); |
| 5071 | return 0; |
| 5072 | } else if (strcmp(val, "3") == 0 || |
| 5073 | strcasecmp(val, "PSNonPoll") == 0) { |
| 5074 | /* Make sure test modes are disabled */ |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5075 | wpa_command(get_station_ifname(dut), "P2P_SET ps 98"); |
| 5076 | wpa_command(get_station_ifname(dut), "P2P_SET ps 96"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5077 | |
| 5078 | /* Enable default power save mode */ |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5079 | if (wpa_command(get_station_ifname(dut), |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5080 | "P2P_SET ps 1") < 0) |
| 5081 | return -2; |
| 5082 | } else |
| 5083 | return -1; |
| 5084 | } |
| 5085 | |
| 5086 | val = get_param(cmd, "NoAck"); |
| 5087 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5088 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5089 | case DRIVER_ATHEROS: |
| 5090 | ath_sta_set_noack(dut, intf, val); |
| 5091 | break; |
Amarnath Hullur Subramanyam | ae8a2d9 | 2018-03-01 06:32:21 -0800 | [diff] [blame] | 5092 | #ifdef NL80211_SUPPORT |
| 5093 | case DRIVER_WCN: |
| 5094 | wcn_sta_set_noack(dut, intf, val); |
| 5095 | break; |
| 5096 | #endif /* NL80211_SUPPORT */ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5097 | default: |
| 5098 | send_resp(dut, conn, SIGMA_ERROR, |
| 5099 | "ErrorCode,Setting NoAck not supported"); |
| 5100 | return 0; |
| 5101 | } |
| 5102 | } |
| 5103 | |
| 5104 | val = get_param(cmd, "IgnoreChswitchProhibit"); |
| 5105 | if (val) { |
| 5106 | /* TODO: Enabled/disabled */ |
| 5107 | if (strcasecmp(val, "Enabled") == 0) { |
| 5108 | send_resp(dut, conn, SIGMA_ERROR, |
| 5109 | "ErrorCode,Enabling IgnoreChswitchProhibit " |
| 5110 | "not supported"); |
| 5111 | return 0; |
| 5112 | } |
| 5113 | } |
| 5114 | |
| 5115 | val = get_param(cmd, "TDLS"); |
| 5116 | if (val) { |
| 5117 | if (strcasecmp(val, "Disabled") == 0) { |
| 5118 | if (wpa_command(intf, "SET tdls_disabled 1")) { |
| 5119 | send_resp(dut, conn, SIGMA_ERROR, |
| 5120 | "ErrorCode,Failed to disable TDLS"); |
| 5121 | return 0; |
| 5122 | } |
| 5123 | } else if (strcasecmp(val, "Enabled") == 0) { |
| 5124 | if (wpa_command(intf, "SET tdls_disabled 0")) { |
| 5125 | send_resp(dut, conn, SIGMA_ERROR, |
| 5126 | "ErrorCode,Failed to enable TDLS"); |
| 5127 | return 0; |
| 5128 | } |
| 5129 | } else { |
| 5130 | send_resp(dut, conn, SIGMA_ERROR, |
| 5131 | "ErrorCode,Unsupported TDLS value"); |
| 5132 | return 0; |
| 5133 | } |
| 5134 | } |
| 5135 | |
| 5136 | val = get_param(cmd, "TDLSmode"); |
| 5137 | if (val) { |
| 5138 | if (strcasecmp(val, "Default") == 0) { |
| 5139 | wpa_command(intf, "SET tdls_testing 0"); |
| 5140 | } else if (strcasecmp(val, "APProhibit") == 0) { |
| 5141 | if (wpa_command(intf, "SET tdls_testing 0x400")) { |
| 5142 | send_resp(dut, conn, SIGMA_ERROR, |
| 5143 | "ErrorCode,Failed to enable ignore " |
| 5144 | "APProhibit TDLS mode"); |
| 5145 | return 0; |
| 5146 | } |
| 5147 | } else if (strcasecmp(val, "HiLoMac") == 0) { |
| 5148 | /* STA should respond with TDLS setup req for a TDLS |
| 5149 | * setup req */ |
| 5150 | if (wpa_command(intf, "SET tdls_testing 0x80")) { |
| 5151 | send_resp(dut, conn, SIGMA_ERROR, |
| 5152 | "ErrorCode,Failed to enable HiLoMac " |
| 5153 | "TDLS mode"); |
| 5154 | return 0; |
| 5155 | } |
| 5156 | } else if (strcasecmp(val, "WeakSecurity") == 0) { |
| 5157 | /* |
| 5158 | * Since all security modes are enabled by default when |
| 5159 | * Sigma control is used, there is no need to do |
| 5160 | * anything here. |
| 5161 | */ |
| 5162 | } else if (strcasecmp(val, "ExistLink") == 0) { |
| 5163 | /* |
| 5164 | * Since we allow new TDLS Setup Request even if there |
| 5165 | * is an existing link, nothing needs to be done for |
| 5166 | * this. |
| 5167 | */ |
| 5168 | } else { |
| 5169 | /* TODO: |
| 5170 | * ExistLink: STA should send TDLS setup req even if |
| 5171 | * direct link already exists |
| 5172 | */ |
| 5173 | send_resp(dut, conn, SIGMA_ERROR, |
| 5174 | "ErrorCode,Unsupported TDLSmode value"); |
| 5175 | return 0; |
| 5176 | } |
| 5177 | } |
| 5178 | |
| 5179 | val = get_param(cmd, "FakePubKey"); |
| 5180 | if (val && atoi(val) && wpa_command(intf, "SET wps_corrupt_pkhash 1")) { |
| 5181 | send_resp(dut, conn, SIGMA_ERROR, |
| 5182 | "ErrorCode,Failed to enable FakePubKey"); |
| 5183 | return 0; |
| 5184 | } |
| 5185 | |
Amarnath Hullur Subramanyam | ae1042b | 2018-02-22 21:52:52 -0800 | [diff] [blame] | 5186 | #ifdef NL80211_SUPPORT |
| 5187 | val = get_param(cmd, "FrgmntSupport"); |
| 5188 | if (val) { |
| 5189 | if (strcasecmp(val, "Enable") == 0) { |
| 5190 | if (sta_set_he_fragmentation(dut, intf, |
| 5191 | HE_FRAG_LEVEL1)) { |
| 5192 | send_resp(dut, conn, SIGMA_ERROR, |
| 5193 | "ErrorCode,Failed to enable HE Fragmentation"); |
| 5194 | return 0; |
| 5195 | } |
| 5196 | } else if (strcasecmp(val, "Disable") == 0) { |
| 5197 | if (sta_set_he_fragmentation(dut, intf, |
| 5198 | HE_FRAG_DISABLE)) { |
| 5199 | send_resp(dut, conn, SIGMA_ERROR, |
| 5200 | "ErrorCode,Failed to disable HE Fragmentation"); |
| 5201 | return 0; |
| 5202 | } |
| 5203 | } |
| 5204 | } |
| 5205 | #endif /* NL80211_SUPPORT */ |
| 5206 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5207 | return 1; |
| 5208 | } |
| 5209 | |
| 5210 | |
| 5211 | static const char * ath_get_radio_name(const char *radio_name) |
| 5212 | { |
| 5213 | if (radio_name == NULL) |
| 5214 | return "wifi0"; |
| 5215 | if (strcmp(radio_name, "wifi1") == 0) |
| 5216 | return "wifi1"; |
| 5217 | if (strcmp(radio_name, "wifi2") == 0) |
| 5218 | return "wifi2"; |
| 5219 | return "wifi0"; |
| 5220 | } |
| 5221 | |
| 5222 | |
| 5223 | static void ath_sta_set_txsp_stream(struct sigma_dut *dut, const char *intf, |
| 5224 | const char *val) |
| 5225 | { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5226 | unsigned int vht_mcsmap = 0; |
| 5227 | int txchainmask = 0; |
| 5228 | const char *basedev = ath_get_radio_name(sigma_radio_ifname[0]); |
| 5229 | |
| 5230 | if (strcasecmp(val, "1") == 0 || strcasecmp(val, "1SS") == 0) { |
| 5231 | if (dut->testbed_flag_txsp == 1) { |
| 5232 | vht_mcsmap = 0xfffc; |
| 5233 | dut->testbed_flag_txsp = 0; |
| 5234 | } else { |
| 5235 | vht_mcsmap = 0xfffe; |
| 5236 | } |
| 5237 | txchainmask = 1; |
| 5238 | } else if (strcasecmp(val, "2") == 0 || strcasecmp(val, "2SS") == 0) { |
| 5239 | if (dut->testbed_flag_txsp == 1) { |
| 5240 | vht_mcsmap = 0xfff0; |
| 5241 | dut->testbed_flag_txsp = 0; |
| 5242 | } else { |
| 5243 | vht_mcsmap = 0xfffa; |
| 5244 | } |
| 5245 | txchainmask = 3; |
| 5246 | } else if (strcasecmp(val, "3") == 0 || strcasecmp(val, "3SS") == 0) { |
| 5247 | if (dut->testbed_flag_txsp == 1) { |
| 5248 | vht_mcsmap = 0xffc0; |
| 5249 | dut->testbed_flag_txsp = 0; |
| 5250 | } else { |
| 5251 | vht_mcsmap = 0xffea; |
| 5252 | } |
| 5253 | txchainmask = 7; |
| 5254 | } else if (strcasecmp(val, "4") == 0 || strcasecmp(val, "4SS") == 0) { |
| 5255 | if (dut->testbed_flag_txsp == 1) { |
| 5256 | vht_mcsmap = 0xff00; |
| 5257 | dut->testbed_flag_txsp = 0; |
| 5258 | } else { |
| 5259 | vht_mcsmap = 0xffaa; |
| 5260 | } |
| 5261 | txchainmask = 15; |
| 5262 | } else { |
| 5263 | if (dut->testbed_flag_txsp == 1) { |
| 5264 | vht_mcsmap = 0xffc0; |
| 5265 | dut->testbed_flag_txsp = 0; |
| 5266 | } else { |
| 5267 | vht_mcsmap = 0xffea; |
| 5268 | } |
| 5269 | } |
| 5270 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 5271 | if (txchainmask) |
| 5272 | run_iwpriv(dut, basedev, "txchainmask %d", txchainmask); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5273 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 5274 | run_iwpriv(dut, intf, "vht_mcsmap 0x%04x", vht_mcsmap); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5275 | } |
| 5276 | |
| 5277 | |
| 5278 | static void ath_sta_set_rxsp_stream(struct sigma_dut *dut, const char *intf, |
| 5279 | const char *val) |
| 5280 | { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5281 | unsigned int vht_mcsmap = 0; |
| 5282 | int rxchainmask = 0; |
| 5283 | const char *basedev = ath_get_radio_name(sigma_radio_ifname[0]); |
| 5284 | |
| 5285 | if (strcasecmp(val, "1") == 0 || strcasecmp(val, "1SS") == 0) { |
| 5286 | if (dut->testbed_flag_rxsp == 1) { |
| 5287 | vht_mcsmap = 0xfffc; |
| 5288 | dut->testbed_flag_rxsp = 0; |
| 5289 | } else { |
| 5290 | vht_mcsmap = 0xfffe; |
| 5291 | } |
| 5292 | rxchainmask = 1; |
| 5293 | } else if (strcasecmp(val, "2") == 0 || strcasecmp(val, "2SS") == 0) { |
| 5294 | if (dut->testbed_flag_rxsp == 1) { |
| 5295 | vht_mcsmap = 0xfff0; |
| 5296 | dut->testbed_flag_rxsp = 0; |
| 5297 | } else { |
| 5298 | vht_mcsmap = 0xfffa; |
| 5299 | } |
| 5300 | rxchainmask = 3; |
| 5301 | } else if (strcasecmp(val, "3") == 0 || strcasecmp(val, "3SS") == 0) { |
| 5302 | if (dut->testbed_flag_rxsp == 1) { |
| 5303 | vht_mcsmap = 0xffc0; |
| 5304 | dut->testbed_flag_rxsp = 0; |
| 5305 | } else { |
| 5306 | vht_mcsmap = 0xffea; |
| 5307 | } |
| 5308 | rxchainmask = 7; |
| 5309 | } else if (strcasecmp(val, "4") == 0 || strcasecmp(val, "4SS") == 0) { |
| 5310 | if (dut->testbed_flag_rxsp == 1) { |
| 5311 | vht_mcsmap = 0xff00; |
| 5312 | dut->testbed_flag_rxsp = 0; |
| 5313 | } else { |
| 5314 | vht_mcsmap = 0xffaa; |
| 5315 | } |
| 5316 | rxchainmask = 15; |
| 5317 | } else { |
| 5318 | if (dut->testbed_flag_rxsp == 1) { |
| 5319 | vht_mcsmap = 0xffc0; |
| 5320 | dut->testbed_flag_rxsp = 0; |
| 5321 | } else { |
| 5322 | vht_mcsmap = 0xffea; |
| 5323 | } |
| 5324 | } |
| 5325 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 5326 | if (rxchainmask) |
| 5327 | run_iwpriv(dut, basedev, "rxchainmask %d", rxchainmask); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5328 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 5329 | run_iwpriv(dut, intf, "vht_mcsmap 0x%04x", vht_mcsmap); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5330 | } |
| 5331 | |
| 5332 | |
| 5333 | void ath_set_zero_crc(struct sigma_dut *dut, const char *val) |
| 5334 | { |
| 5335 | if (strcasecmp(val, "enable") == 0) { |
| 5336 | if (system("athdiag --set --address=0x2a204 --and=0xbfffffff") |
| 5337 | != 0) { |
| 5338 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5339 | "Disable BB_VHTSIGB_CRC_CALC failed"); |
| 5340 | } |
| 5341 | |
| 5342 | if (system("athdiag --set --address=0x2a204 --or=0x80000000") |
| 5343 | != 0) { |
| 5344 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5345 | "Enable FORCE_VHT_SIGB_CRC_VALUE_ZERO failed"); |
| 5346 | } |
| 5347 | } else { |
| 5348 | if (system("athdiag --set --address=0x2a204 --and=0x7fffffff") |
| 5349 | != 0) { |
| 5350 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5351 | "Disable FORCE_VHT_SIGB_CRC_VALUE_ZERO failed"); |
| 5352 | } |
| 5353 | |
| 5354 | if (system("athdiag --set --address=0x2a204 --or=0x40000000") |
| 5355 | != 0) { |
| 5356 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5357 | "Enable BB_VHTSIGB_CRC_CALC failed"); |
| 5358 | } |
| 5359 | } |
| 5360 | } |
| 5361 | |
| 5362 | |
Amarnath Hullur Subramanyam | ebfe6b6 | 2018-01-31 03:04:17 -0800 | [diff] [blame] | 5363 | static int wcn_sta_set_width(struct sigma_dut *dut, const char *intf, |
| 5364 | const char *val) |
| 5365 | { |
| 5366 | char buf[60]; |
| 5367 | |
| 5368 | if (strcmp(val, "20") == 0) { |
| 5369 | snprintf(buf, sizeof(buf), "iwpriv %s chwidth 0", intf); |
| 5370 | dut->chwidth = 0; |
| 5371 | } else if (strcmp(val, "40") == 0) { |
| 5372 | snprintf(buf, sizeof(buf), "iwpriv %s chwidth 1", intf); |
| 5373 | dut->chwidth = 1; |
| 5374 | } else if (strcmp(val, "80") == 0) { |
| 5375 | snprintf(buf, sizeof(buf), "iwpriv %s chwidth 2", intf); |
| 5376 | dut->chwidth = 2; |
Sunil Dutt | b1cccac | 2018-05-22 21:03:12 +0530 | [diff] [blame] | 5377 | } else if (strcasecmp(val, "Auto") == 0) { |
Amarnath Hullur Subramanyam | ebfe6b6 | 2018-01-31 03:04:17 -0800 | [diff] [blame] | 5378 | buf[0] = '\0'; |
| 5379 | } else { |
| 5380 | sigma_dut_print(dut, DUT_MSG_ERROR, "WIDTH %s not supported", |
| 5381 | val); |
| 5382 | return -1; |
| 5383 | } |
| 5384 | |
| 5385 | if (buf[0] != '\0' && system(buf) != 0) { |
| 5386 | sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv chwidth failed"); |
| 5387 | return -1; |
| 5388 | } |
| 5389 | |
| 5390 | return 0; |
| 5391 | } |
| 5392 | |
| 5393 | |
Amarnath Hullur Subramanyam | d8a9db9 | 2018-02-02 18:53:14 -0800 | [diff] [blame] | 5394 | static int nlvendor_sta_set_addba_reject(struct sigma_dut *dut, |
| 5395 | const char *intf, int addbareject) |
| 5396 | { |
| 5397 | #ifdef NL80211_SUPPORT |
| 5398 | struct nl_msg *msg; |
| 5399 | int ret = 0; |
| 5400 | struct nlattr *params; |
| 5401 | int ifindex; |
| 5402 | |
| 5403 | ifindex = if_nametoindex(intf); |
| 5404 | if (ifindex == 0) { |
| 5405 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5406 | "%s: Index for interface %s failed", |
| 5407 | __func__, intf); |
| 5408 | return -1; |
| 5409 | } |
| 5410 | |
| 5411 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 5412 | NL80211_CMD_VENDOR)) || |
| 5413 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 5414 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 5415 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 5416 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 5417 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 5418 | nla_put_u8(msg, |
| 5419 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ACCEPT_ADDBA_REQ, |
| 5420 | !addbareject)) { |
| 5421 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5422 | "%s: err in adding vendor_cmd and vendor_data", |
| 5423 | __func__); |
| 5424 | nlmsg_free(msg); |
| 5425 | return -1; |
| 5426 | } |
| 5427 | nla_nest_end(msg, params); |
| 5428 | |
| 5429 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 5430 | if (ret) { |
| 5431 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5432 | "%s: err in send_and_recv_msgs, ret=%d", |
| 5433 | __func__, ret); |
| 5434 | } |
| 5435 | return ret; |
| 5436 | #else /* NL80211_SUPPORT */ |
| 5437 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5438 | "ADDBA_REJECT cannot be set without NL80211_SUPPORT defined"); |
| 5439 | return -1; |
| 5440 | #endif /* NL80211_SUPPORT */ |
| 5441 | } |
| 5442 | |
| 5443 | |
| 5444 | static int sta_set_addba_reject(struct sigma_dut *dut, const char *intf, |
| 5445 | int addbareject) |
| 5446 | { |
| 5447 | int ret; |
| 5448 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5449 | switch (get_driver_type(dut)) { |
Amarnath Hullur Subramanyam | d8a9db9 | 2018-02-02 18:53:14 -0800 | [diff] [blame] | 5450 | case DRIVER_WCN: |
| 5451 | ret = nlvendor_sta_set_addba_reject(dut, intf, addbareject); |
| 5452 | if (ret) { |
| 5453 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5454 | "nlvendor_sta_set_addba_reject failed, ret:%d", |
| 5455 | ret); |
| 5456 | return ret; |
| 5457 | } |
| 5458 | break; |
| 5459 | default: |
| 5460 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5461 | "errorCode,Unsupported ADDBA_REJECT with the current driver"); |
| 5462 | ret = -1; |
| 5463 | break; |
| 5464 | } |
| 5465 | |
| 5466 | return ret; |
| 5467 | } |
| 5468 | |
| 5469 | |
Amarnath Hullur Subramanyam | 1f65a67 | 2018-03-07 14:50:29 -0800 | [diff] [blame] | 5470 | static int nlvendor_config_send_addba(struct sigma_dut *dut, const char *intf, |
| 5471 | int enable) |
Amarnath Hullur Subramanyam | 9745b3c | 2018-02-04 21:27:57 -0800 | [diff] [blame] | 5472 | { |
| 5473 | #ifdef NL80211_SUPPORT |
| 5474 | struct nl_msg *msg; |
| 5475 | int ret = 0; |
| 5476 | struct nlattr *params; |
| 5477 | int ifindex; |
| 5478 | |
| 5479 | ifindex = if_nametoindex(intf); |
| 5480 | if (ifindex == 0) { |
| 5481 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5482 | "%s: Index for interface %s failed", |
| 5483 | __func__, intf); |
| 5484 | return -1; |
| 5485 | } |
| 5486 | |
| 5487 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 5488 | NL80211_CMD_VENDOR)) || |
| 5489 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 5490 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 5491 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 5492 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 5493 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 5494 | nla_put_u8(msg, |
| 5495 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_SEND_ADDBA_REQ, |
Amarnath Hullur Subramanyam | 1f65a67 | 2018-03-07 14:50:29 -0800 | [diff] [blame] | 5496 | enable)) { |
Amarnath Hullur Subramanyam | 9745b3c | 2018-02-04 21:27:57 -0800 | [diff] [blame] | 5497 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5498 | "%s: err in adding vendor_cmd and vendor_data", |
| 5499 | __func__); |
| 5500 | nlmsg_free(msg); |
| 5501 | return -1; |
| 5502 | } |
| 5503 | nla_nest_end(msg, params); |
| 5504 | |
| 5505 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 5506 | if (ret) { |
| 5507 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5508 | "%s: err in send_and_recv_msgs, ret=%d", |
| 5509 | __func__, ret); |
| 5510 | } |
| 5511 | return ret; |
| 5512 | #else /* NL80211_SUPPORT */ |
| 5513 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5514 | "Disable addba not possible without NL80211_SUPPORT defined"); |
| 5515 | return -1; |
| 5516 | #endif /* NL80211_SUPPORT */ |
| 5517 | } |
| 5518 | |
| 5519 | |
Veerendranath Jakkam | adcd620 | 2019-04-17 12:32:21 +0530 | [diff] [blame] | 5520 | #ifdef NL80211_SUPPORT |
| 5521 | static int nl80211_sta_set_rts(struct sigma_dut *dut, const char *intf, int val) |
| 5522 | { |
| 5523 | struct nl_msg *msg; |
| 5524 | int ret = 0; |
| 5525 | int ifindex; |
| 5526 | |
| 5527 | ifindex = if_nametoindex(intf); |
| 5528 | if (ifindex == 0) { |
| 5529 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5530 | "%s: Index for interface %s failed", |
| 5531 | __func__, intf); |
| 5532 | return -1; |
| 5533 | } |
| 5534 | |
| 5535 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 5536 | NL80211_CMD_SET_WIPHY)) || |
| 5537 | nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, val)) { |
| 5538 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5539 | "%s: err in adding RTS threshold", |
| 5540 | __func__); |
| 5541 | nlmsg_free(msg); |
| 5542 | return -1; |
| 5543 | } |
| 5544 | |
| 5545 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 5546 | if (ret) { |
| 5547 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5548 | "%s: err in send_and_recv_msgs, ret=%d", |
| 5549 | __func__, ret); |
| 5550 | } |
| 5551 | return ret; |
| 5552 | } |
| 5553 | #endif /* NL80211_SUPPORT */ |
| 5554 | |
| 5555 | |
| 5556 | static int sta_set_rts(struct sigma_dut *dut, const char *intf, int val) |
| 5557 | { |
| 5558 | char buf[100]; |
| 5559 | |
| 5560 | #ifdef NL80211_SUPPORT |
| 5561 | if (nl80211_sta_set_rts(dut, intf, val) == 0) |
| 5562 | return 0; |
| 5563 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 5564 | "Fall back to using iwconfig for setting RTS threshold"); |
| 5565 | #endif /* NL80211_SUPPORT */ |
| 5566 | |
| 5567 | snprintf(buf, sizeof(buf), "iwconfig %s rts %d", intf, val); |
| 5568 | if (system(buf) != 0) { |
| 5569 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5570 | "Failed to set RTS threshold %d", val); |
| 5571 | return -1; |
| 5572 | } |
| 5573 | return 0; |
| 5574 | } |
| 5575 | |
| 5576 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5577 | static int cmd_sta_set_wireless_common(const char *intf, struct sigma_dut *dut, |
| 5578 | struct sigma_conn *conn, |
| 5579 | struct sigma_cmd *cmd) |
| 5580 | { |
| 5581 | const char *val; |
Amarnath Hullur Subramanyam | d8a9db9 | 2018-02-02 18:53:14 -0800 | [diff] [blame] | 5582 | int ampdu = -1, addbareject = -1; |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 5583 | char buf[128]; |
| 5584 | int res; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5585 | |
| 5586 | val = get_param(cmd, "40_INTOLERANT"); |
| 5587 | if (val) { |
| 5588 | if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) { |
| 5589 | /* TODO: iwpriv ht40intol through wpa_supplicant */ |
| 5590 | send_resp(dut, conn, SIGMA_ERROR, |
| 5591 | "ErrorCode,40_INTOLERANT not supported"); |
| 5592 | return 0; |
| 5593 | } |
| 5594 | } |
| 5595 | |
| 5596 | val = get_param(cmd, "ADDBA_REJECT"); |
| 5597 | if (val) { |
| 5598 | if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) { |
| 5599 | /* reject any ADDBA with status "decline" */ |
| 5600 | ampdu = 0; |
Amarnath Hullur Subramanyam | d8a9db9 | 2018-02-02 18:53:14 -0800 | [diff] [blame] | 5601 | addbareject = 1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5602 | } else { |
| 5603 | /* accept ADDBA */ |
| 5604 | ampdu = 1; |
Amarnath Hullur Subramanyam | d8a9db9 | 2018-02-02 18:53:14 -0800 | [diff] [blame] | 5605 | addbareject = 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5606 | } |
| 5607 | } |
| 5608 | |
Amarnath Hullur Subramanyam | d8a9db9 | 2018-02-02 18:53:14 -0800 | [diff] [blame] | 5609 | if (addbareject >= 0 && |
| 5610 | sta_set_addba_reject(dut, intf, addbareject) < 0) { |
| 5611 | send_resp(dut, conn, SIGMA_ERROR, |
| 5612 | "ErrorCode,set addba_reject failed"); |
| 5613 | return 0; |
| 5614 | } |
| 5615 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5616 | val = get_param(cmd, "AMPDU"); |
| 5617 | if (val) { |
| 5618 | if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) { |
| 5619 | /* enable AMPDU Aggregation */ |
| 5620 | if (ampdu == 0) { |
| 5621 | send_resp(dut, conn, SIGMA_ERROR, |
| 5622 | "ErrorCode,Mismatch in " |
| 5623 | "addba_reject/ampdu - " |
| 5624 | "not supported"); |
| 5625 | return 0; |
| 5626 | } |
| 5627 | ampdu = 1; |
| 5628 | } else { |
| 5629 | /* disable AMPDU Aggregation */ |
| 5630 | if (ampdu == 1) { |
| 5631 | send_resp(dut, conn, SIGMA_ERROR, |
| 5632 | "ErrorCode,Mismatch in " |
| 5633 | "addba_reject/ampdu - " |
| 5634 | "not supported"); |
| 5635 | return 0; |
| 5636 | } |
| 5637 | ampdu = 0; |
| 5638 | } |
| 5639 | } |
| 5640 | |
| 5641 | if (ampdu >= 0) { |
Amarnath Hullur Subramanyam | 9745b3c | 2018-02-04 21:27:57 -0800 | [diff] [blame] | 5642 | int ret; |
| 5643 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5644 | sigma_dut_print(dut, DUT_MSG_DEBUG, "%s A-MPDU aggregation", |
| 5645 | ampdu ? "Enabling" : "Disabling"); |
| 5646 | snprintf(buf, sizeof(buf), "SET ampdu %d", ampdu); |
Deepak Dhamdhere | 80356cb | 2016-03-28 16:48:32 -0700 | [diff] [blame] | 5647 | if (wpa_command(intf, buf) < 0 && |
| 5648 | iwpriv_sta_set_ampdu(dut, intf, ampdu) < 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5649 | send_resp(dut, conn, SIGMA_ERROR, |
| 5650 | "ErrorCode,set aggr failed"); |
| 5651 | return 0; |
| 5652 | } |
Amarnath Hullur Subramanyam | 9745b3c | 2018-02-04 21:27:57 -0800 | [diff] [blame] | 5653 | |
| 5654 | if (ampdu == 0) { |
| 5655 | /* Disable sending of addba using nl vendor command */ |
Amarnath Hullur Subramanyam | 1f65a67 | 2018-03-07 14:50:29 -0800 | [diff] [blame] | 5656 | ret = nlvendor_config_send_addba(dut, intf, 0); |
Amarnath Hullur Subramanyam | 9745b3c | 2018-02-04 21:27:57 -0800 | [diff] [blame] | 5657 | if (ret) { |
| 5658 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5659 | "Failed to disable addba, ret:%d", |
| 5660 | ret); |
| 5661 | } |
| 5662 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5663 | } |
| 5664 | |
| 5665 | val = get_param(cmd, "AMSDU"); |
| 5666 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5667 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5668 | case DRIVER_ATHEROS: |
Amarnath Hullur Subramanyam | d5bb573 | 2018-02-22 15:50:38 -0800 | [diff] [blame] | 5669 | case DRIVER_WCN: |
| 5670 | iwpriv_sta_set_amsdu(dut, intf, val); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5671 | break; |
| 5672 | default: |
| 5673 | if (strcmp(val, "1") == 0 || |
| 5674 | strcasecmp(val, "Enable") == 0) { |
| 5675 | /* Enable AMSDU Aggregation */ |
| 5676 | send_resp(dut, conn, SIGMA_ERROR, |
| 5677 | "ErrorCode,AMSDU aggregation not supported"); |
| 5678 | return 0; |
| 5679 | } |
| 5680 | break; |
| 5681 | } |
| 5682 | } |
| 5683 | |
| 5684 | val = get_param(cmd, "STBC_RX"); |
| 5685 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5686 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5687 | case DRIVER_ATHEROS: |
| 5688 | ath_sta_set_stbc(dut, intf, val); |
| 5689 | break; |
Pradeep Reddy POTTETI | 4a1f6b3 | 2016-11-23 13:15:21 +0530 | [diff] [blame] | 5690 | case DRIVER_WCN: |
| 5691 | wcn_sta_set_stbc(dut, intf, val); |
| 5692 | break; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5693 | default: |
| 5694 | send_resp(dut, conn, SIGMA_ERROR, |
| 5695 | "ErrorCode,STBC_RX not supported"); |
| 5696 | return 0; |
| 5697 | } |
| 5698 | } |
| 5699 | |
| 5700 | val = get_param(cmd, "WIDTH"); |
| 5701 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5702 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5703 | case DRIVER_WCN: |
Amarnath Hullur Subramanyam | ebfe6b6 | 2018-01-31 03:04:17 -0800 | [diff] [blame] | 5704 | if (wcn_sta_set_width(dut, intf, val) < 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5705 | send_resp(dut, conn, SIGMA_ERROR, |
| 5706 | "ErrorCode,Failed to set WIDTH"); |
| 5707 | return 0; |
| 5708 | } |
| 5709 | break; |
| 5710 | case DRIVER_ATHEROS: |
| 5711 | if (ath_set_width(dut, conn, intf, val) < 0) |
| 5712 | return 0; |
| 5713 | break; |
| 5714 | default: |
| 5715 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5716 | "Setting WIDTH not supported"); |
| 5717 | break; |
| 5718 | } |
| 5719 | } |
| 5720 | |
| 5721 | val = get_param(cmd, "SMPS"); |
| 5722 | if (val) { |
| 5723 | /* TODO: Dynamic/0, Static/1, No Limit/2 */ |
| 5724 | send_resp(dut, conn, SIGMA_ERROR, |
| 5725 | "ErrorCode,SMPS not supported"); |
| 5726 | return 0; |
| 5727 | } |
| 5728 | |
| 5729 | val = get_param(cmd, "TXSP_STREAM"); |
| 5730 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5731 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5732 | case DRIVER_WCN: |
| 5733 | if (wcn_sta_set_sp_stream(dut, intf, val) < 0) { |
| 5734 | send_resp(dut, conn, SIGMA_ERROR, |
| 5735 | "ErrorCode,Failed to set TXSP_STREAM"); |
| 5736 | return 0; |
| 5737 | } |
| 5738 | break; |
| 5739 | case DRIVER_ATHEROS: |
| 5740 | ath_sta_set_txsp_stream(dut, intf, val); |
| 5741 | break; |
| 5742 | default: |
| 5743 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5744 | "Setting TXSP_STREAM not supported"); |
| 5745 | break; |
| 5746 | } |
| 5747 | } |
| 5748 | |
| 5749 | val = get_param(cmd, "RXSP_STREAM"); |
| 5750 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5751 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5752 | case DRIVER_WCN: |
| 5753 | if (wcn_sta_set_sp_stream(dut, intf, val) < 0) { |
| 5754 | send_resp(dut, conn, SIGMA_ERROR, |
| 5755 | "ErrorCode,Failed to set RXSP_STREAM"); |
| 5756 | return 0; |
| 5757 | } |
| 5758 | break; |
| 5759 | case DRIVER_ATHEROS: |
| 5760 | ath_sta_set_rxsp_stream(dut, intf, val); |
| 5761 | break; |
| 5762 | default: |
| 5763 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5764 | "Setting RXSP_STREAM not supported"); |
| 5765 | break; |
| 5766 | } |
| 5767 | } |
| 5768 | |
| 5769 | val = get_param(cmd, "DYN_BW_SGNL"); |
| 5770 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5771 | switch (get_driver_type(dut)) { |
Priyadharshini Gowthaman | 818afef | 2015-11-09 13:28:15 -0800 | [diff] [blame] | 5772 | case DRIVER_WCN: |
Peng Xu | c59afd3 | 2016-11-21 15:01:11 -0800 | [diff] [blame] | 5773 | if (strcasecmp(val, "enable") == 0) { |
| 5774 | snprintf(buf, sizeof(buf), |
| 5775 | "iwpriv %s cwmenable 1", intf); |
| 5776 | if (system(buf) != 0) { |
| 5777 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5778 | "iwpriv cwmenable 1 failed"); |
| 5779 | return 0; |
| 5780 | } |
| 5781 | } else if (strcasecmp(val, "disable") == 0) { |
| 5782 | snprintf(buf, sizeof(buf), |
| 5783 | "iwpriv %s cwmenable 0", intf); |
| 5784 | if (system(buf) != 0) { |
| 5785 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5786 | "iwpriv cwmenable 0 failed"); |
| 5787 | return 0; |
| 5788 | } |
| 5789 | } else { |
| 5790 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5791 | "Unsupported DYN_BW_SGL"); |
| 5792 | } |
| 5793 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5794 | snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 3", intf); |
| 5795 | if (system(buf) != 0) { |
| 5796 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5797 | "Failed to set cts_cbw in DYN_BW_SGNL"); |
| 5798 | return 0; |
| 5799 | } |
Priyadharshini Gowthaman | 818afef | 2015-11-09 13:28:15 -0800 | [diff] [blame] | 5800 | break; |
| 5801 | case DRIVER_ATHEROS: |
Priyadharshini Gowthaman | 8c5b9a4 | 2019-07-31 14:38:48 -0700 | [diff] [blame] | 5802 | novap_reset(dut, intf, 1); |
Priyadharshini Gowthaman | 818afef | 2015-11-09 13:28:15 -0800 | [diff] [blame] | 5803 | ath_config_dyn_bw_sig(dut, intf, val); |
| 5804 | break; |
| 5805 | default: |
| 5806 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5807 | "Failed to set DYN_BW_SGNL"); |
| 5808 | break; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5809 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5810 | } |
| 5811 | |
| 5812 | val = get_param(cmd, "RTS_FORCE"); |
| 5813 | if (val) { |
Priyadharshini Gowthaman | 8c5b9a4 | 2019-07-31 14:38:48 -0700 | [diff] [blame] | 5814 | novap_reset(dut, intf, 1); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5815 | if (strcasecmp(val, "Enable") == 0) { |
Veerendranath Jakkam | adcd620 | 2019-04-17 12:32:21 +0530 | [diff] [blame] | 5816 | if (sta_set_rts(dut, intf, 64) != 0) { |
Priyadharshini Gowthaman | abdb212 | 2015-11-17 11:52:19 +0200 | [diff] [blame] | 5817 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5818 | "Failed to set RTS_FORCE 64"); |
| 5819 | } |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 5820 | res = snprintf(buf, sizeof(buf), |
| 5821 | "wifitool %s beeliner_fw_test 100 1", |
| 5822 | intf); |
| 5823 | if (res < 0 || res >= sizeof(buf) || system(buf) != 0) { |
priyadharshini gowthaman | 270870e | 2015-12-09 10:10:23 -0800 | [diff] [blame] | 5824 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5825 | "wifitool beeliner_fw_test 100 1 failed"); |
| 5826 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5827 | } else if (strcasecmp(val, "Disable") == 0) { |
Veerendranath Jakkam | adcd620 | 2019-04-17 12:32:21 +0530 | [diff] [blame] | 5828 | if (sta_set_rts(dut, intf, 2347) != 0) { |
Priyadharshini Gowthaman | abdb212 | 2015-11-17 11:52:19 +0200 | [diff] [blame] | 5829 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5830 | "Failed to set RTS_FORCE 2347"); |
| 5831 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5832 | } else { |
| 5833 | send_resp(dut, conn, SIGMA_ERROR, |
| 5834 | "ErrorCode,RTS_FORCE value not supported"); |
| 5835 | return 0; |
| 5836 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5837 | } |
| 5838 | |
| 5839 | val = get_param(cmd, "CTS_WIDTH"); |
| 5840 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5841 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5842 | case DRIVER_WCN: |
| 5843 | if (wcn_sta_set_cts_width(dut, intf, val) < 0) { |
| 5844 | send_resp(dut, conn, SIGMA_ERROR, |
| 5845 | "ErrorCode,Failed to set CTS_WIDTH"); |
| 5846 | return 0; |
| 5847 | } |
| 5848 | break; |
| 5849 | case DRIVER_ATHEROS: |
| 5850 | ath_set_cts_width(dut, intf, val); |
| 5851 | break; |
| 5852 | default: |
| 5853 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5854 | "Setting CTS_WIDTH not supported"); |
| 5855 | break; |
| 5856 | } |
| 5857 | } |
| 5858 | |
| 5859 | val = get_param(cmd, "BW_SGNL"); |
| 5860 | if (val) { |
| 5861 | if (strcasecmp(val, "Enable") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 5862 | run_iwpriv(dut, intf, "cwmenable 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5863 | } else if (strcasecmp(val, "Disable") == 0) { |
| 5864 | /* TODO: Disable */ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5865 | } else { |
| 5866 | send_resp(dut, conn, SIGMA_ERROR, |
| 5867 | "ErrorCode,BW_SGNL value not supported"); |
| 5868 | return 0; |
| 5869 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5870 | } |
| 5871 | |
| 5872 | val = get_param(cmd, "Band"); |
| 5873 | if (val) { |
| 5874 | if (strcmp(val, "2.4") == 0 || strcmp(val, "5") == 0) { |
| 5875 | /* STA supports all bands by default */ |
| 5876 | } else { |
| 5877 | send_resp(dut, conn, SIGMA_ERROR, |
| 5878 | "ErrorCode,Unsupported Band"); |
| 5879 | return 0; |
| 5880 | } |
| 5881 | } |
| 5882 | |
| 5883 | val = get_param(cmd, "zero_crc"); |
| 5884 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5885 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5886 | case DRIVER_ATHEROS: |
| 5887 | ath_set_zero_crc(dut, val); |
| 5888 | break; |
| 5889 | default: |
| 5890 | break; |
| 5891 | } |
| 5892 | } |
| 5893 | |
| 5894 | return 1; |
| 5895 | } |
| 5896 | |
| 5897 | |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 5898 | static int sta_set_force_mcs(struct sigma_dut *dut, int force, int mcs) |
| 5899 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5900 | switch (get_driver_type(dut)) { |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 5901 | #ifdef __linux__ |
| 5902 | case DRIVER_WIL6210: |
| 5903 | return wil6210_set_force_mcs(dut, force, mcs); |
| 5904 | #endif /* __linux__ */ |
| 5905 | default: |
| 5906 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5907 | "Unsupported sta_set_force_mcs with the current driver"); |
| 5908 | return -1; |
| 5909 | } |
| 5910 | } |
| 5911 | |
| 5912 | |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 5913 | static int sta_60g_force_rsn_ie(struct sigma_dut *dut, int state) |
| 5914 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5915 | switch (get_driver_type(dut)) { |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 5916 | #ifdef __linux__ |
| 5917 | case DRIVER_WIL6210: |
| 5918 | return wil6210_force_rsn_ie(dut, state); |
| 5919 | #endif /* __linux__ */ |
| 5920 | default: |
| 5921 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5922 | "Unsupported sta_60g_force_rsn_ie with the current driver"); |
| 5923 | return -1; |
| 5924 | } |
| 5925 | } |
| 5926 | |
| 5927 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5928 | static int sta_set_60g_common(struct sigma_dut *dut, struct sigma_conn *conn, |
| 5929 | struct sigma_cmd *cmd) |
| 5930 | { |
| 5931 | const char *val; |
| 5932 | char buf[100]; |
| 5933 | |
| 5934 | val = get_param(cmd, "MSDUSize"); |
| 5935 | if (val) { |
| 5936 | int mtu; |
| 5937 | |
| 5938 | dut->amsdu_size = atoi(val); |
| 5939 | if (dut->amsdu_size > IEEE80211_MAX_DATA_LEN_DMG || |
| 5940 | dut->amsdu_size < IEEE80211_SNAP_LEN_DMG) { |
| 5941 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5942 | "MSDUSize %d is above max %d or below min %d", |
| 5943 | dut->amsdu_size, |
| 5944 | IEEE80211_MAX_DATA_LEN_DMG, |
| 5945 | IEEE80211_SNAP_LEN_DMG); |
| 5946 | dut->amsdu_size = 0; |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 5947 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5948 | } |
| 5949 | |
| 5950 | mtu = dut->amsdu_size - IEEE80211_SNAP_LEN_DMG; |
| 5951 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 5952 | "Setting amsdu_size to %d", mtu); |
| 5953 | snprintf(buf, sizeof(buf), "ifconfig %s mtu %d", |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5954 | get_station_ifname(dut), mtu); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5955 | |
| 5956 | if (system(buf) != 0) { |
| 5957 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set %s", |
| 5958 | buf); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 5959 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5960 | } |
| 5961 | } |
| 5962 | |
| 5963 | val = get_param(cmd, "BAckRcvBuf"); |
| 5964 | if (val) { |
| 5965 | dut->back_rcv_buf = atoi(val); |
| 5966 | if (dut->back_rcv_buf == 0) { |
| 5967 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5968 | "Failed to convert %s or value is 0", |
| 5969 | val); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 5970 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5971 | } |
| 5972 | |
| 5973 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 5974 | "Setting BAckRcvBuf to %s", val); |
| 5975 | } |
| 5976 | |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 5977 | val = get_param(cmd, "MCS_FixedRate"); |
| 5978 | if (val) { |
| 5979 | if (sta_set_force_mcs(dut, 1, atoi(val))) { |
| 5980 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 5981 | "Failed to force MCS"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 5982 | return ERROR_SEND_STATUS; |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 5983 | } |
| 5984 | } |
| 5985 | |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 5986 | return SUCCESS_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5987 | } |
| 5988 | |
| 5989 | |
| 5990 | static int sta_pcp_start(struct sigma_dut *dut, struct sigma_conn *conn, |
| 5991 | struct sigma_cmd *cmd) |
| 5992 | { |
| 5993 | int net_id; |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5994 | const char *ifname; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 5995 | const char *val; |
| 5996 | char buf[100]; |
| 5997 | |
| 5998 | dut->mode = SIGMA_MODE_STATION; |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 5999 | ifname = get_main_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6000 | if (wpa_command(ifname, "PING") != 0) { |
| 6001 | sigma_dut_print(dut, DUT_MSG_ERROR, "Supplicant not running"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6002 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6003 | } |
| 6004 | |
| 6005 | wpa_command(ifname, "FLUSH"); |
| 6006 | net_id = add_network_common(dut, conn, ifname, cmd); |
| 6007 | if (net_id < 0) { |
| 6008 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to add network"); |
| 6009 | return net_id; |
| 6010 | } |
| 6011 | |
| 6012 | /* TODO: mode=2 for the AP; in the future, replace for mode PCP */ |
| 6013 | if (set_network(ifname, net_id, "mode", "2") < 0) { |
| 6014 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6015 | "Failed to set supplicant network mode"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6016 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6017 | } |
| 6018 | |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 6019 | if (set_network(ifname, net_id, "pbss", "1") < 0) |
| 6020 | return -2; |
| 6021 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6022 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
Alexei Avshalom Lazar | fd9f135 | 2018-11-13 14:07:58 +0200 | [diff] [blame] | 6023 | "Supplicant set network with mode 2. network_id %d", |
| 6024 | net_id); |
| 6025 | |
| 6026 | if (set_network(ifname, net_id, "wps_disabled", "0") < 0) { |
| 6027 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 6028 | "Failed to set supplicant to WPS ENABLE"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6029 | return ERROR_SEND_STATUS; |
Alexei Avshalom Lazar | fd9f135 | 2018-11-13 14:07:58 +0200 | [diff] [blame] | 6030 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6031 | |
| 6032 | val = get_param(cmd, "Security"); |
| 6033 | if (val && strcasecmp(val, "OPEN") == 0) { |
| 6034 | dut->ap_key_mgmt = AP_OPEN; |
| 6035 | if (set_network(ifname, net_id, "key_mgmt", "NONE") < 0) { |
| 6036 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6037 | "Failed to set supplicant to %s security", |
| 6038 | val); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6039 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6040 | } |
| 6041 | } else if (val && strcasecmp(val, "WPA2-PSK") == 0) { |
| 6042 | dut->ap_key_mgmt = AP_WPA2_PSK; |
| 6043 | if (set_network(ifname, net_id, "key_mgmt", "WPA-PSK") < 0) { |
| 6044 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6045 | "Failed to set supplicant to %s security", |
| 6046 | val); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6047 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6048 | } |
| 6049 | |
| 6050 | if (set_network(ifname, net_id, "proto", "RSN") < 0) { |
| 6051 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6052 | "Failed to set supplicant to proto RSN"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6053 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6054 | } |
| 6055 | } else if (val) { |
| 6056 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6057 | "Requested Security %s is not supported on 60GHz", |
| 6058 | val); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6059 | return INVALID_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6060 | } |
| 6061 | |
| 6062 | val = get_param(cmd, "Encrypt"); |
| 6063 | if (val && strcasecmp(val, "AES-GCMP") == 0) { |
| 6064 | if (set_network(ifname, net_id, "pairwise", "GCMP") < 0) { |
| 6065 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6066 | "Failed to set supplicant to pairwise GCMP"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6067 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6068 | } |
| 6069 | if (set_network(ifname, net_id, "group", "GCMP") < 0) { |
| 6070 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6071 | "Failed to set supplicant to group GCMP"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6072 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6073 | } |
| 6074 | } else if (val) { |
| 6075 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6076 | "Requested Encrypt %s is not supported on 60 GHz", |
| 6077 | val); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6078 | return INVALID_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6079 | } |
| 6080 | |
| 6081 | val = get_param(cmd, "PSK"); |
| 6082 | if (val && set_network_quoted(ifname, net_id, "psk", val) < 0) { |
| 6083 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set psk %s", |
| 6084 | val); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6085 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6086 | } |
| 6087 | |
| 6088 | /* Convert 60G channel to freq */ |
| 6089 | switch (dut->ap_channel) { |
| 6090 | case 1: |
| 6091 | val = "58320"; |
| 6092 | break; |
| 6093 | case 2: |
| 6094 | val = "60480"; |
| 6095 | break; |
| 6096 | case 3: |
| 6097 | val = "62640"; |
| 6098 | break; |
| 6099 | default: |
| 6100 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6101 | "Failed to configure channel %d. Not supported", |
| 6102 | dut->ap_channel); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6103 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6104 | } |
| 6105 | |
| 6106 | if (set_network(ifname, net_id, "frequency", val) < 0) { |
| 6107 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6108 | "Failed to set supplicant network frequency"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6109 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6110 | } |
| 6111 | |
Alexei Avshalom Lazar | 2eccf4d | 2019-01-31 10:03:59 +0200 | [diff] [blame] | 6112 | if (dut->eap_fragment) { |
| 6113 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 6114 | "Set EAP fragment size to 128 bytes."); |
| 6115 | if (set_network(ifname, net_id, "fragment_size", "128") < 0) |
| 6116 | return ERROR_SEND_STATUS; |
| 6117 | } |
| 6118 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6119 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 6120 | "Supplicant set network with frequency"); |
| 6121 | |
| 6122 | snprintf(buf, sizeof(buf), "SELECT_NETWORK %d", net_id); |
| 6123 | if (wpa_command(ifname, buf) < 0) { |
| 6124 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 6125 | "Failed to select network id %d on %s", |
| 6126 | net_id, ifname); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6127 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6128 | } |
| 6129 | |
| 6130 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Selected network"); |
| 6131 | |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6132 | return SUCCESS_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6133 | } |
| 6134 | |
| 6135 | |
Lior David | 67543f5 | 2017-01-03 19:04:22 +0200 | [diff] [blame] | 6136 | static int wil6210_set_abft_len(struct sigma_dut *dut, int abft_len) |
| 6137 | { |
| 6138 | char buf[128], fname[128]; |
| 6139 | FILE *f; |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 6140 | int res; |
Lior David | 67543f5 | 2017-01-03 19:04:22 +0200 | [diff] [blame] | 6141 | |
| 6142 | if (wil6210_get_debugfs_dir(dut, buf, sizeof(buf))) { |
| 6143 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6144 | "failed to get wil6210 debugfs dir"); |
| 6145 | return -1; |
| 6146 | } |
| 6147 | |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 6148 | res = snprintf(fname, sizeof(fname), "%s/abft_len", buf); |
| 6149 | if (res < 0 || res >= sizeof(fname)) |
| 6150 | return -1; |
Lior David | 67543f5 | 2017-01-03 19:04:22 +0200 | [diff] [blame] | 6151 | f = fopen(fname, "w"); |
| 6152 | if (!f) { |
| 6153 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6154 | "failed to open: %s", fname); |
| 6155 | return -1; |
| 6156 | } |
| 6157 | |
| 6158 | fprintf(f, "%d\n", abft_len); |
| 6159 | fclose(f); |
| 6160 | |
| 6161 | return 0; |
| 6162 | } |
| 6163 | |
| 6164 | |
Alexei Avshalom Lazar | 49498b8 | 2019-01-31 15:16:32 +0200 | [diff] [blame] | 6165 | int sta_set_60g_abft_len(struct sigma_dut *dut, struct sigma_conn *conn, |
| 6166 | int abft_len) |
Lior David | 67543f5 | 2017-01-03 19:04:22 +0200 | [diff] [blame] | 6167 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 6168 | switch (get_driver_type(dut)) { |
Lior David | 67543f5 | 2017-01-03 19:04:22 +0200 | [diff] [blame] | 6169 | case DRIVER_WIL6210: |
| 6170 | return wil6210_set_abft_len(dut, abft_len); |
| 6171 | default: |
| 6172 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6173 | "set abft_len not supported"); |
| 6174 | return -1; |
| 6175 | } |
| 6176 | } |
| 6177 | |
| 6178 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6179 | static int sta_set_60g_pcp(struct sigma_dut *dut, struct sigma_conn *conn, |
| 6180 | struct sigma_cmd *cmd) |
| 6181 | { |
| 6182 | const char *val; |
Lior David | 67543f5 | 2017-01-03 19:04:22 +0200 | [diff] [blame] | 6183 | unsigned int abft_len = 1; /* default is one slot */ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6184 | |
| 6185 | if (dut->dev_role != DEVROLE_PCP) { |
| 6186 | send_resp(dut, conn, SIGMA_INVALID, |
| 6187 | "ErrorCode,Invalid DevRole"); |
| 6188 | return 0; |
| 6189 | } |
| 6190 | |
| 6191 | val = get_param(cmd, "SSID"); |
| 6192 | if (val) { |
| 6193 | if (strlen(val) > sizeof(dut->ap_ssid) - 1) { |
| 6194 | send_resp(dut, conn, SIGMA_INVALID, |
| 6195 | "ErrorCode,Invalid SSID"); |
| 6196 | return -1; |
| 6197 | } |
| 6198 | |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 6199 | strlcpy(dut->ap_ssid, val, sizeof(dut->ap_ssid)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6200 | } |
| 6201 | |
| 6202 | val = get_param(cmd, "CHANNEL"); |
| 6203 | if (val) { |
| 6204 | const char *pos; |
| 6205 | |
| 6206 | dut->ap_channel = atoi(val); |
| 6207 | pos = strchr(val, ';'); |
| 6208 | if (pos) { |
| 6209 | pos++; |
| 6210 | dut->ap_channel_1 = atoi(pos); |
| 6211 | } |
| 6212 | } |
| 6213 | |
| 6214 | switch (dut->ap_channel) { |
| 6215 | case 1: |
| 6216 | case 2: |
| 6217 | case 3: |
| 6218 | break; |
| 6219 | default: |
| 6220 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6221 | "Channel %d is not supported", dut->ap_channel); |
| 6222 | send_resp(dut, conn, SIGMA_ERROR, |
| 6223 | "Requested channel is not supported"); |
| 6224 | return -1; |
| 6225 | } |
| 6226 | |
| 6227 | val = get_param(cmd, "BCNINT"); |
| 6228 | if (val) |
| 6229 | dut->ap_bcnint = atoi(val); |
| 6230 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6231 | val = get_param(cmd, "AllocType"); |
| 6232 | if (val) { |
| 6233 | send_resp(dut, conn, SIGMA_ERROR, |
| 6234 | "ErrorCode,AllocType is not supported yet"); |
| 6235 | return -1; |
| 6236 | } |
| 6237 | |
| 6238 | val = get_param(cmd, "PercentBI"); |
| 6239 | if (val) { |
| 6240 | send_resp(dut, conn, SIGMA_ERROR, |
| 6241 | "ErrorCode,PercentBI is not supported yet"); |
| 6242 | return -1; |
| 6243 | } |
| 6244 | |
| 6245 | val = get_param(cmd, "CBAPOnly"); |
| 6246 | if (val) { |
| 6247 | send_resp(dut, conn, SIGMA_ERROR, |
| 6248 | "ErrorCode,CBAPOnly is not supported yet"); |
| 6249 | return -1; |
| 6250 | } |
| 6251 | |
| 6252 | val = get_param(cmd, "AMPDU"); |
| 6253 | if (val) { |
| 6254 | if (strcasecmp(val, "Enable") == 0) |
| 6255 | dut->ap_ampdu = 1; |
| 6256 | else if (strcasecmp(val, "Disable") == 0) |
| 6257 | dut->ap_ampdu = 2; |
| 6258 | else { |
| 6259 | send_resp(dut, conn, SIGMA_ERROR, |
| 6260 | "ErrorCode,AMPDU value is not Enable nor Disabled"); |
| 6261 | return -1; |
| 6262 | } |
| 6263 | } |
| 6264 | |
| 6265 | val = get_param(cmd, "AMSDU"); |
| 6266 | if (val) { |
| 6267 | if (strcasecmp(val, "Enable") == 0) |
| 6268 | dut->ap_amsdu = 1; |
| 6269 | else if (strcasecmp(val, "Disable") == 0) |
| 6270 | dut->ap_amsdu = 2; |
| 6271 | } |
| 6272 | |
| 6273 | val = get_param(cmd, "NumMSDU"); |
| 6274 | if (val) { |
| 6275 | send_resp(dut, conn, SIGMA_ERROR, |
| 6276 | "ErrorCode, NumMSDU is not supported yet"); |
| 6277 | return -1; |
| 6278 | } |
| 6279 | |
| 6280 | val = get_param(cmd, "ABFTLRang"); |
| 6281 | if (val) { |
| 6282 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
Lior David | 67543f5 | 2017-01-03 19:04:22 +0200 | [diff] [blame] | 6283 | "ABFTLRang parameter %s", val); |
| 6284 | if (strcmp(val, "Gt1") == 0) |
| 6285 | abft_len = 2; /* 2 slots in this case */ |
| 6286 | } |
| 6287 | |
| 6288 | if (sta_set_60g_abft_len(dut, conn, abft_len)) { |
| 6289 | send_resp(dut, conn, SIGMA_ERROR, |
| 6290 | "ErrorCode, Can't set ABFT length"); |
| 6291 | return -1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6292 | } |
| 6293 | |
| 6294 | if (sta_pcp_start(dut, conn, cmd) < 0) { |
| 6295 | send_resp(dut, conn, SIGMA_ERROR, |
| 6296 | "ErrorCode, Can't start PCP role"); |
| 6297 | return -1; |
| 6298 | } |
| 6299 | |
| 6300 | return sta_set_60g_common(dut, conn, cmd); |
| 6301 | } |
| 6302 | |
| 6303 | |
| 6304 | static int sta_set_60g_sta(struct sigma_dut *dut, struct sigma_conn *conn, |
| 6305 | struct sigma_cmd *cmd) |
| 6306 | { |
| 6307 | const char *val = get_param(cmd, "DiscoveryMode"); |
| 6308 | |
| 6309 | if (dut->dev_role != DEVROLE_STA) { |
| 6310 | send_resp(dut, conn, SIGMA_INVALID, |
| 6311 | "ErrorCode,Invalid DevRole"); |
| 6312 | return 0; |
| 6313 | } |
| 6314 | |
| 6315 | if (val) { |
| 6316 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Discovery: %s", val); |
| 6317 | /* Ignore Discovery mode till Driver expose API. */ |
| 6318 | #if 0 |
| 6319 | if (strcasecmp(val, "1") == 0) { |
| 6320 | send_resp(dut, conn, SIGMA_INVALID, |
| 6321 | "ErrorCode,DiscoveryMode 1 not supported"); |
| 6322 | return 0; |
| 6323 | } |
| 6324 | |
| 6325 | if (strcasecmp(val, "0") == 0) { |
| 6326 | /* OK */ |
| 6327 | } else { |
| 6328 | send_resp(dut, conn, SIGMA_INVALID, |
| 6329 | "ErrorCode,DiscoveryMode not supported"); |
| 6330 | return 0; |
| 6331 | } |
| 6332 | #endif |
| 6333 | } |
| 6334 | |
| 6335 | if (start_sta_mode(dut) != 0) |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 6336 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6337 | return sta_set_60g_common(dut, conn, cmd); |
| 6338 | } |
| 6339 | |
| 6340 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 6341 | static enum sigma_cmd_result cmd_sta_disconnect(struct sigma_dut *dut, |
| 6342 | struct sigma_conn *conn, |
| 6343 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6344 | { |
| 6345 | const char *intf = get_param(cmd, "Interface"); |
Jouni Malinen | ed77e67 | 2018-01-10 16:45:13 +0200 | [diff] [blame] | 6346 | const char *val = get_param(cmd, "maintain_profile"); |
vamsi krishna | d605c42 | 2017-09-20 14:56:31 +0530 | [diff] [blame] | 6347 | |
Jouni Malinen | ed77e67 | 2018-01-10 16:45:13 +0200 | [diff] [blame] | 6348 | if (dut->program == PROGRAM_OCE || |
Amarnath Hullur Subramanyam | ebeda9e | 2018-01-31 03:21:48 -0800 | [diff] [blame] | 6349 | dut->program == PROGRAM_HE || |
Jouni Malinen | ed77e67 | 2018-01-10 16:45:13 +0200 | [diff] [blame] | 6350 | (val && atoi(val) == 1)) { |
vamsi krishna | d605c42 | 2017-09-20 14:56:31 +0530 | [diff] [blame] | 6351 | wpa_command(intf, "DISCONNECT"); |
| 6352 | return 1; |
| 6353 | } |
| 6354 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6355 | disconnect_station(dut); |
| 6356 | /* Try to ignore old scan results to avoid HS 2.0R2 test case failures |
| 6357 | * due to cached results. */ |
| 6358 | wpa_command(intf, "SET ignore_old_scan_res 1"); |
| 6359 | wpa_command(intf, "BSS_FLUSH"); |
| 6360 | return 1; |
| 6361 | } |
| 6362 | |
| 6363 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 6364 | static enum sigma_cmd_result cmd_sta_reassoc(struct sigma_dut *dut, |
| 6365 | struct sigma_conn *conn, |
| 6366 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6367 | { |
| 6368 | const char *intf = get_param(cmd, "Interface"); |
| 6369 | const char *bssid = get_param(cmd, "bssid"); |
| 6370 | const char *val = get_param(cmd, "CHANNEL"); |
| 6371 | struct wpa_ctrl *ctrl; |
Srinivas Dasari | 0ebedb1 | 2018-02-14 17:03:51 +0530 | [diff] [blame] | 6372 | char buf[1000]; |
Sunil Dutt | d30ce09 | 2018-01-11 23:56:29 +0530 | [diff] [blame] | 6373 | char result[32]; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6374 | int res; |
| 6375 | int chan = 0; |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6376 | enum sigma_cmd_result status = STATUS_SENT; |
Sunil Dutt | d30ce09 | 2018-01-11 23:56:29 +0530 | [diff] [blame] | 6377 | int fastreassoc = 1; |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6378 | int ft_ds = 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6379 | |
| 6380 | if (bssid == NULL) { |
| 6381 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Missing bssid " |
| 6382 | "argument"); |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6383 | return STATUS_SENT_ERROR; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6384 | } |
| 6385 | |
| 6386 | if (val) |
| 6387 | chan = atoi(val); |
| 6388 | |
| 6389 | if (wifi_chip_type != DRIVER_WCN && wifi_chip_type != DRIVER_AR6003) { |
| 6390 | /* The current network may be from sta_associate or |
| 6391 | * sta_hs2_associate |
| 6392 | */ |
| 6393 | if (set_network(intf, dut->infra_network_id, "bssid", bssid) < |
| 6394 | 0 || |
| 6395 | set_network(intf, 0, "bssid", bssid) < 0) |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6396 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6397 | } |
| 6398 | |
| 6399 | ctrl = open_wpa_mon(intf); |
| 6400 | if (ctrl == NULL) { |
| 6401 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open " |
| 6402 | "wpa_supplicant monitor connection"); |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6403 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6404 | } |
| 6405 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 6406 | if (get_wpa_status(get_station_ifname(dut), "wpa_state", result, |
Sunil Dutt | d30ce09 | 2018-01-11 23:56:29 +0530 | [diff] [blame] | 6407 | sizeof(result)) < 0 || |
| 6408 | strncmp(result, "COMPLETED", 9) != 0) { |
| 6409 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 6410 | "sta_reassoc: Not connected"); |
| 6411 | fastreassoc = 0; |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6412 | } else if (dut->sta_ft_ds) { |
| 6413 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 6414 | "sta_reassoc: Use FT-over-DS"); |
| 6415 | ft_ds = 1; |
Sunil Dutt | d30ce09 | 2018-01-11 23:56:29 +0530 | [diff] [blame] | 6416 | } |
| 6417 | |
Srinivas Dasari | 0ebedb1 | 2018-02-14 17:03:51 +0530 | [diff] [blame] | 6418 | if (dut->rsne_override) { |
| 6419 | #ifdef NL80211_SUPPORT |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 6420 | if (get_driver_type(dut) == DRIVER_WCN && |
| 6421 | dut->config_rsnie == 0) { |
Srinivas Dasari | 0ebedb1 | 2018-02-14 17:03:51 +0530 | [diff] [blame] | 6422 | sta_config_rsnie(dut, 1); |
| 6423 | dut->config_rsnie = 1; |
| 6424 | } |
| 6425 | #endif /* NL80211_SUPPORT */ |
| 6426 | snprintf(buf, sizeof(buf), "TEST_ASSOC_IE %s", |
| 6427 | dut->rsne_override); |
| 6428 | if (wpa_command(intf, buf) < 0) { |
| 6429 | send_resp(dut, conn, SIGMA_ERROR, |
| 6430 | "ErrorCode,Failed to set DEV_CONFIGURE_IE RSNE override"); |
| 6431 | return 0; |
| 6432 | } |
| 6433 | } |
| 6434 | |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6435 | if (ft_ds) { |
| 6436 | if (chan) { |
| 6437 | unsigned int freq; |
| 6438 | |
| 6439 | freq = channel_to_freq(dut, chan); |
| 6440 | if (!freq) { |
| 6441 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6442 | "Invalid channel number provided: %d", |
| 6443 | chan); |
| 6444 | send_resp(dut, conn, SIGMA_INVALID, |
| 6445 | "ErrorCode,Invalid channel number"); |
| 6446 | goto close_mon_conn; |
| 6447 | } |
| 6448 | res = snprintf(buf, sizeof(buf), |
| 6449 | "SCAN TYPE=ONLY freq=%d", freq); |
| 6450 | } else { |
| 6451 | res = snprintf(buf, sizeof(buf), "SCAN TYPE=ONLY"); |
| 6452 | } |
| 6453 | if (res < 0 || res >= (int) sizeof(buf)) { |
| 6454 | send_resp(dut, conn, SIGMA_ERROR, |
| 6455 | "ErrorCode,snprintf failed"); |
| 6456 | goto close_mon_conn; |
| 6457 | } |
| 6458 | if (wpa_command(intf, buf) < 0) { |
| 6459 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 6460 | "Failed to start scan"); |
| 6461 | send_resp(dut, conn, SIGMA_ERROR, |
| 6462 | "ErrorCode,scan failed"); |
| 6463 | goto close_mon_conn; |
| 6464 | } |
| 6465 | |
| 6466 | res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-SCAN-RESULTS", |
| 6467 | buf, sizeof(buf)); |
| 6468 | if (res < 0) { |
| 6469 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 6470 | "Scan did not complete"); |
| 6471 | send_resp(dut, conn, SIGMA_ERROR, |
| 6472 | "ErrorCode,scan did not complete"); |
| 6473 | goto close_mon_conn; |
| 6474 | } |
| 6475 | |
| 6476 | res = snprintf(buf, sizeof(buf), "FT_DS %s", bssid); |
| 6477 | if (res > 0 && res < (int) sizeof(buf)) |
| 6478 | res = wpa_command(intf, buf); |
| 6479 | |
| 6480 | if (res < 0 || res >= (int) sizeof(buf)) { |
| 6481 | send_resp(dut, conn, SIGMA_ERROR, |
| 6482 | "errorCode,FT_DS command failed"); |
| 6483 | status = STATUS_SENT_ERROR; |
| 6484 | goto close_mon_conn; |
| 6485 | } |
| 6486 | } else if (wifi_chip_type == DRIVER_WCN && fastreassoc) { |
Ashwini Patil | 4c8158f | 2017-05-25 12:49:21 +0530 | [diff] [blame] | 6487 | if (chan) { |
| 6488 | unsigned int freq; |
| 6489 | |
Alexei Avshalom Lazar | 093569f | 2018-11-13 14:08:17 +0200 | [diff] [blame] | 6490 | freq = channel_to_freq(dut, chan); |
Ashwini Patil | 4c8158f | 2017-05-25 12:49:21 +0530 | [diff] [blame] | 6491 | if (!freq) { |
| 6492 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6493 | "Invalid channel number provided: %d", |
| 6494 | chan); |
| 6495 | send_resp(dut, conn, SIGMA_INVALID, |
| 6496 | "ErrorCode,Invalid channel number"); |
| 6497 | goto close_mon_conn; |
| 6498 | } |
| 6499 | res = snprintf(buf, sizeof(buf), |
| 6500 | "SCAN TYPE=ONLY freq=%d", freq); |
| 6501 | } else { |
| 6502 | res = snprintf(buf, sizeof(buf), "SCAN TYPE=ONLY"); |
| 6503 | } |
| 6504 | if (res < 0 || res >= (int) sizeof(buf)) { |
| 6505 | send_resp(dut, conn, SIGMA_ERROR, |
| 6506 | "ErrorCode,snprintf failed"); |
| 6507 | goto close_mon_conn; |
| 6508 | } |
| 6509 | if (wpa_command(intf, buf) < 0) { |
| 6510 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 6511 | "Failed to start scan"); |
| 6512 | send_resp(dut, conn, SIGMA_ERROR, |
| 6513 | "ErrorCode,scan failed"); |
| 6514 | goto close_mon_conn; |
| 6515 | } |
| 6516 | |
| 6517 | res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-SCAN-RESULTS", |
| 6518 | buf, sizeof(buf)); |
| 6519 | if (res < 0) { |
| 6520 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 6521 | "Scan did not complete"); |
| 6522 | send_resp(dut, conn, SIGMA_ERROR, |
| 6523 | "ErrorCode,scan did not complete"); |
| 6524 | goto close_mon_conn; |
| 6525 | } |
| 6526 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6527 | if (set_network(intf, dut->infra_network_id, "bssid", "any") |
| 6528 | < 0) { |
| 6529 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set " |
| 6530 | "bssid to any during FASTREASSOC"); |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6531 | status = ERROR_SEND_STATUS; |
Ashwini Patil | 467efef | 2017-05-25 12:18:27 +0530 | [diff] [blame] | 6532 | goto close_mon_conn; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6533 | } |
Vinita Maloo | 54b78cf | 2020-03-30 12:18:19 +0530 | [diff] [blame] | 6534 | res = snprintf(buf, sizeof(buf), "FASTREASSOC %s %d", |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6535 | bssid, chan); |
Vinita Maloo | 54b78cf | 2020-03-30 12:18:19 +0530 | [diff] [blame] | 6536 | if (res < 0 || res >= (int) sizeof(buf) || |
| 6537 | wcn_driver_cmd(intf, buf) < 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6538 | send_resp(dut, conn, SIGMA_ERROR, |
Vinita Maloo | 54b78cf | 2020-03-30 12:18:19 +0530 | [diff] [blame] | 6539 | "errorCode,Failed to run FASTREASSOC"); |
Ashwini Patil | 467efef | 2017-05-25 12:18:27 +0530 | [diff] [blame] | 6540 | goto close_mon_conn; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6541 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6542 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 6543 | "sta_reassoc: Run %s successful", buf); |
| 6544 | } else if (wpa_command(intf, "REASSOCIATE")) { |
| 6545 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to " |
| 6546 | "request reassociation"); |
Ashwini Patil | 467efef | 2017-05-25 12:18:27 +0530 | [diff] [blame] | 6547 | goto close_mon_conn; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6548 | } |
| 6549 | |
| 6550 | res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-CONNECTED", |
| 6551 | buf, sizeof(buf)); |
Ashwini Patil | 467efef | 2017-05-25 12:18:27 +0530 | [diff] [blame] | 6552 | if (res < 0) { |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6553 | send_resp(dut, conn, SIGMA_ERROR, |
| 6554 | "errorCode,Connection did not complete"); |
| 6555 | status = STATUS_SENT_ERROR; |
Ashwini Patil | 467efef | 2017-05-25 12:18:27 +0530 | [diff] [blame] | 6556 | goto close_mon_conn; |
| 6557 | } |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 6558 | status = SUCCESS_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6559 | |
Ashwini Patil | 467efef | 2017-05-25 12:18:27 +0530 | [diff] [blame] | 6560 | close_mon_conn: |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6561 | wpa_ctrl_detach(ctrl); |
| 6562 | wpa_ctrl_close(ctrl); |
Ashwini Patil | 467efef | 2017-05-25 12:18:27 +0530 | [diff] [blame] | 6563 | return status; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6564 | } |
| 6565 | |
| 6566 | |
| 6567 | static void hs2_clear_credentials(const char *intf) |
| 6568 | { |
| 6569 | wpa_command(intf, "REMOVE_CRED all"); |
| 6570 | } |
| 6571 | |
| 6572 | |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 6573 | #ifdef __linux__ |
| 6574 | static int wil6210_get_aid(struct sigma_dut *dut, const char *bssid, |
| 6575 | unsigned int *aid) |
| 6576 | { |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 6577 | const char *pattern = "AID[ \t]+([0-9]+)"; |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 6578 | |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 6579 | return wil6210_get_sta_info_field(dut, bssid, pattern, aid); |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 6580 | } |
| 6581 | #endif /* __linux__ */ |
| 6582 | |
| 6583 | |
| 6584 | static int sta_get_aid_60g(struct sigma_dut *dut, const char *bssid, |
| 6585 | unsigned int *aid) |
| 6586 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 6587 | switch (get_driver_type(dut)) { |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 6588 | #ifdef __linux__ |
| 6589 | case DRIVER_WIL6210: |
| 6590 | return wil6210_get_aid(dut, bssid, aid); |
| 6591 | #endif /* __linux__ */ |
| 6592 | default: |
| 6593 | sigma_dut_print(dut, DUT_MSG_ERROR, "get AID not supported"); |
| 6594 | return -1; |
| 6595 | } |
| 6596 | } |
| 6597 | |
| 6598 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6599 | static int sta_get_parameter_60g(struct sigma_dut *dut, struct sigma_conn *conn, |
| 6600 | struct sigma_cmd *cmd) |
| 6601 | { |
| 6602 | char buf[MAX_CMD_LEN]; |
| 6603 | char bss_list[MAX_CMD_LEN]; |
| 6604 | const char *parameter = get_param(cmd, "Parameter"); |
| 6605 | |
| 6606 | if (parameter == NULL) |
| 6607 | return -1; |
| 6608 | |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 6609 | if (strcasecmp(parameter, "AID") == 0) { |
| 6610 | unsigned int aid = 0; |
| 6611 | char bssid[20]; |
| 6612 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 6613 | if (get_wpa_status(get_station_ifname(dut), "bssid", |
Lior David | cc88b56 | 2017-01-03 18:52:09 +0200 | [diff] [blame] | 6614 | bssid, sizeof(bssid)) < 0) { |
| 6615 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6616 | "could not get bssid"); |
| 6617 | return -2; |
| 6618 | } |
| 6619 | |
| 6620 | if (sta_get_aid_60g(dut, bssid, &aid)) |
| 6621 | return -2; |
| 6622 | |
| 6623 | snprintf(buf, sizeof(buf), "aid,%d", aid); |
| 6624 | sigma_dut_print(dut, DUT_MSG_INFO, "%s", buf); |
| 6625 | send_resp(dut, conn, SIGMA_COMPLETE, buf); |
| 6626 | return 0; |
| 6627 | } |
| 6628 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6629 | if (strcasecmp(parameter, "DiscoveredDevList") == 0) { |
| 6630 | char *bss_line; |
| 6631 | char *bss_id = NULL; |
| 6632 | const char *ifname = get_param(cmd, "Interface"); |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 6633 | char *saveptr; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6634 | |
| 6635 | if (ifname == NULL) { |
| 6636 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 6637 | "For get DiscoveredDevList need Interface name."); |
| 6638 | return -1; |
| 6639 | } |
| 6640 | |
| 6641 | /* |
| 6642 | * Use "BSS RANGE=ALL MASK=0x2" which provides a list |
| 6643 | * of BSSIDs in "bssid=<BSSID>\n" |
| 6644 | */ |
| 6645 | if (wpa_command_resp(ifname, "BSS RANGE=ALL MASK=0x2", |
| 6646 | bss_list, |
| 6647 | sizeof(bss_list)) < 0) { |
| 6648 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6649 | "Failed to get bss list"); |
| 6650 | return -1; |
| 6651 | } |
| 6652 | |
| 6653 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 6654 | "bss list for ifname:%s is:%s", |
| 6655 | ifname, bss_list); |
| 6656 | |
| 6657 | snprintf(buf, sizeof(buf), "DeviceList"); |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 6658 | bss_line = strtok_r(bss_list, "\n", &saveptr); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6659 | while (bss_line) { |
| 6660 | if (sscanf(bss_line, "bssid=%ms", &bss_id) > 0 && |
| 6661 | bss_id) { |
| 6662 | int len; |
| 6663 | |
| 6664 | len = snprintf(buf + strlen(buf), |
| 6665 | sizeof(buf) - strlen(buf), |
| 6666 | ",%s", bss_id); |
| 6667 | free(bss_id); |
| 6668 | bss_id = NULL; |
| 6669 | if (len < 0) { |
| 6670 | sigma_dut_print(dut, |
| 6671 | DUT_MSG_ERROR, |
| 6672 | "Failed to read BSSID"); |
| 6673 | send_resp(dut, conn, SIGMA_ERROR, |
| 6674 | "ErrorCode,Failed to read BSS ID"); |
| 6675 | return 0; |
| 6676 | } |
| 6677 | |
| 6678 | if ((size_t) len >= sizeof(buf) - strlen(buf)) { |
| 6679 | sigma_dut_print(dut, |
| 6680 | DUT_MSG_ERROR, |
| 6681 | "Response buf too small for list"); |
| 6682 | send_resp(dut, conn, |
| 6683 | SIGMA_ERROR, |
| 6684 | "ErrorCode,Response buf too small for list"); |
| 6685 | return 0; |
| 6686 | } |
| 6687 | } |
| 6688 | |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 6689 | bss_line = strtok_r(NULL, "\n", &saveptr); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6690 | } |
| 6691 | |
| 6692 | sigma_dut_print(dut, DUT_MSG_INFO, "DiscoveredDevList is %s", |
| 6693 | buf); |
| 6694 | send_resp(dut, conn, SIGMA_COMPLETE, buf); |
| 6695 | return 0; |
| 6696 | } |
| 6697 | |
| 6698 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter"); |
| 6699 | return 0; |
| 6700 | } |
| 6701 | |
| 6702 | |
Kiran Kumar Lokere | c86d802 | 2018-10-11 13:57:12 -0700 | [diff] [blame] | 6703 | static int sta_get_parameter_he(struct sigma_dut *dut, struct sigma_conn *conn, |
| 6704 | struct sigma_cmd *cmd) |
| 6705 | { |
| 6706 | char buf[MAX_CMD_LEN]; |
| 6707 | const char *parameter = get_param(cmd, "Parameter"); |
| 6708 | |
| 6709 | if (!parameter) |
| 6710 | return -1; |
| 6711 | |
| 6712 | if (strcasecmp(parameter, "RSSI") == 0) { |
| 6713 | char rssi[10]; |
| 6714 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 6715 | if (get_wpa_signal_poll(dut, get_station_ifname(dut), "RSSI", |
Kiran Kumar Lokere | c86d802 | 2018-10-11 13:57:12 -0700 | [diff] [blame] | 6716 | rssi, sizeof(rssi)) < 0) { |
| 6717 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6718 | "Could not get RSSI"); |
| 6719 | return -2; |
| 6720 | } |
| 6721 | |
| 6722 | snprintf(buf, sizeof(buf), "rssi,%s", rssi); |
| 6723 | sigma_dut_print(dut, DUT_MSG_INFO, "RSSI %s", buf); |
| 6724 | send_resp(dut, conn, SIGMA_COMPLETE, buf); |
| 6725 | return 0; |
| 6726 | } |
| 6727 | |
| 6728 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter"); |
| 6729 | return 0; |
| 6730 | } |
| 6731 | |
| 6732 | |
Jouni Malinen | ca0abd3 | 2020-02-09 20:18:10 +0200 | [diff] [blame] | 6733 | static enum sigma_cmd_result sta_get_pmk(struct sigma_dut *dut, |
| 6734 | struct sigma_conn *conn, |
| 6735 | struct sigma_cmd *cmd) |
| 6736 | { |
| 6737 | const char *intf = get_param(cmd, "Interface"); |
| 6738 | char buf[4096], bssid[20], resp[200], *pos, *tmp; |
| 6739 | |
| 6740 | snprintf(buf, sizeof(buf), "PMKSA_GET %d", dut->infra_network_id); |
| 6741 | if (wpa_command_resp(intf, buf, buf, sizeof(buf)) < 0 || |
| 6742 | strncmp(buf, "UNKNOWN COMMAND", 15) == 0) { |
| 6743 | send_resp(dut, conn, SIGMA_ERROR, |
| 6744 | "ErrorCode,PMKSA_GET not supported"); |
| 6745 | return STATUS_SENT_ERROR; |
| 6746 | } |
| 6747 | |
| 6748 | if (strncmp(buf, "FAIL", 4) == 0 || |
| 6749 | get_wpa_status(intf, "bssid", bssid, sizeof(bssid)) < 0) { |
| 6750 | send_resp(dut, conn, SIGMA_ERROR, |
| 6751 | "ErrorCode,Could not find current network"); |
| 6752 | return STATUS_SENT_ERROR; |
| 6753 | } |
| 6754 | |
| 6755 | pos = buf; |
| 6756 | while (pos) { |
| 6757 | if (strncmp(pos, bssid, 17) == 0) { |
| 6758 | pos = strchr(pos, ' '); |
| 6759 | if (!pos) |
Mohammad Asaad Akram | 956bfc3 | 2020-04-08 16:26:18 +0530 | [diff] [blame] | 6760 | break; |
Jouni Malinen | ca0abd3 | 2020-02-09 20:18:10 +0200 | [diff] [blame] | 6761 | pos++; |
| 6762 | pos = strchr(pos, ' '); |
| 6763 | if (!pos) |
Mohammad Asaad Akram | 956bfc3 | 2020-04-08 16:26:18 +0530 | [diff] [blame] | 6764 | break; |
Jouni Malinen | ca0abd3 | 2020-02-09 20:18:10 +0200 | [diff] [blame] | 6765 | pos++; |
| 6766 | tmp = strchr(pos, ' '); |
| 6767 | if (!tmp) |
Mohammad Asaad Akram | 956bfc3 | 2020-04-08 16:26:18 +0530 | [diff] [blame] | 6768 | break; |
Jouni Malinen | ca0abd3 | 2020-02-09 20:18:10 +0200 | [diff] [blame] | 6769 | *tmp = '\0'; |
| 6770 | break; |
| 6771 | } |
Jouni Malinen | ca0abd3 | 2020-02-09 20:18:10 +0200 | [diff] [blame] | 6772 | pos = strchr(pos, '\n'); |
| 6773 | if (pos) |
| 6774 | pos++; |
| 6775 | } |
| 6776 | |
| 6777 | if (!pos) { |
| 6778 | send_resp(dut, conn, SIGMA_ERROR, |
| 6779 | "ErrorCode,PMK not available"); |
| 6780 | return STATUS_SENT_ERROR; |
| 6781 | } |
| 6782 | |
| 6783 | snprintf(resp, sizeof(resp), "PMK,%s", pos); |
| 6784 | send_resp(dut, conn, SIGMA_COMPLETE, resp); |
| 6785 | return STATUS_SENT; |
| 6786 | } |
| 6787 | |
| 6788 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 6789 | static enum sigma_cmd_result cmd_sta_get_parameter(struct sigma_dut *dut, |
| 6790 | struct sigma_conn *conn, |
| 6791 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6792 | { |
| 6793 | const char *program = get_param(cmd, "Program"); |
Jouni Malinen | ca0abd3 | 2020-02-09 20:18:10 +0200 | [diff] [blame] | 6794 | const char *parameter = get_param(cmd, "Parameter"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6795 | |
Jouni Malinen | ca0abd3 | 2020-02-09 20:18:10 +0200 | [diff] [blame] | 6796 | if (!parameter) |
| 6797 | return INVALID_SEND_STATUS; |
| 6798 | |
| 6799 | if (strcasecmp(parameter, "PMK") == 0) |
| 6800 | return sta_get_pmk(dut, conn, cmd); |
| 6801 | |
| 6802 | if (!program) |
| 6803 | return INVALID_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6804 | |
| 6805 | if (strcasecmp(program, "P2PNFC") == 0) |
| 6806 | return p2p_cmd_sta_get_parameter(dut, conn, cmd); |
| 6807 | |
| 6808 | if (strcasecmp(program, "60ghz") == 0) |
| 6809 | return sta_get_parameter_60g(dut, conn, cmd); |
| 6810 | |
Kiran Kumar Lokere | c86d802 | 2018-10-11 13:57:12 -0700 | [diff] [blame] | 6811 | if (strcasecmp(program, "he") == 0) |
| 6812 | return sta_get_parameter_he(dut, conn, cmd); |
| 6813 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6814 | #ifdef ANDROID_NAN |
| 6815 | if (strcasecmp(program, "NAN") == 0) |
Amarnath Hullur Subramanyam | 1854ec6 | 2016-08-11 19:29:35 -0700 | [diff] [blame] | 6816 | return nan_cmd_sta_get_parameter(dut, conn, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6817 | #endif /* ANDROID_NAN */ |
| 6818 | |
Amarnath Hullur Subramanyam | 9c381f5 | 2017-03-17 00:04:41 -0700 | [diff] [blame] | 6819 | #ifdef MIRACAST |
| 6820 | if (strcasecmp(program, "WFD") == 0 || |
| 6821 | strcasecmp(program, "DisplayR2") == 0) |
| 6822 | return miracast_cmd_sta_get_parameter(dut, conn, cmd); |
| 6823 | #endif /* MIRACAST */ |
| 6824 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6825 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter"); |
| 6826 | return 0; |
| 6827 | } |
| 6828 | |
| 6829 | |
| 6830 | static void sta_reset_default_ath(struct sigma_dut *dut, const char *intf, |
| 6831 | const char *type) |
| 6832 | { |
| 6833 | char buf[100]; |
| 6834 | |
| 6835 | if (dut->program == PROGRAM_VHT) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6836 | run_iwpriv(dut, intf, "chwidth 2"); |
| 6837 | run_iwpriv(dut, intf, "mode 11ACVHT80"); |
| 6838 | run_iwpriv(dut, intf, "vhtmcs -1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6839 | } |
| 6840 | |
| 6841 | if (dut->program == PROGRAM_HT) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6842 | run_iwpriv(dut, intf, "chwidth 0"); |
| 6843 | run_iwpriv(dut, intf, "mode 11naht40"); |
| 6844 | run_iwpriv(dut, intf, "set11NRates 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6845 | } |
| 6846 | |
| 6847 | if (dut->program == PROGRAM_VHT || dut->program == PROGRAM_HT) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6848 | run_iwpriv(dut, intf, "powersave 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6849 | |
| 6850 | /* Reset CTS width */ |
| 6851 | snprintf(buf, sizeof(buf), "wifitool %s beeliner_fw_test 54 0", |
| 6852 | intf); |
| 6853 | if (system(buf) != 0) { |
| 6854 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6855 | "wifitool %s beeliner_fw_test 54 0 failed", |
| 6856 | intf); |
| 6857 | } |
| 6858 | |
| 6859 | /* Enable Dynamic Bandwidth signalling by default */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6860 | run_iwpriv(dut, intf, "cwmenable 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6861 | |
| 6862 | snprintf(buf, sizeof(buf), "iwconfig %s rts 2347", intf); |
| 6863 | if (system(buf) != 0) { |
| 6864 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6865 | "iwpriv rts failed"); |
| 6866 | } |
| 6867 | } |
| 6868 | |
| 6869 | if (type && strcasecmp(type, "Testbed") == 0) { |
| 6870 | dut->testbed_flag_txsp = 1; |
| 6871 | dut->testbed_flag_rxsp = 1; |
| 6872 | /* STA has to set spatial stream to 2 per Appendix H */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6873 | run_iwpriv(dut, intf, "vht_mcsmap 0xfff0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6874 | |
| 6875 | /* Disable LDPC per Appendix H */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6876 | run_iwpriv(dut, intf, "ldpc 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6877 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6878 | run_iwpriv(dut, intf, "amsdu 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6879 | |
| 6880 | /* TODO: Disable STBC 2x1 transmit and receive */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6881 | run_iwpriv(dut, intf, "tx_stbc 0"); |
| 6882 | run_iwpriv(dut, intf, "rx_stbc 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6883 | |
| 6884 | /* STA has to disable Short GI per Appendix H */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6885 | run_iwpriv(dut, intf, "shortgi 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6886 | } |
| 6887 | |
| 6888 | if (type && strcasecmp(type, "DUT") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6889 | run_iwpriv(dut, intf, "nss 3"); |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 6890 | dut->sta_nss = 3; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6891 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 6892 | run_iwpriv(dut, intf, "shortgi 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 6893 | } |
| 6894 | } |
| 6895 | |
| 6896 | |
Amarnath Hullur Subramanyam | 2538acc | 2018-02-02 16:15:25 -0800 | [diff] [blame] | 6897 | #ifdef NL80211_SUPPORT |
| 6898 | static int sta_set_he_mcs(struct sigma_dut *dut, const char *intf, |
| 6899 | enum he_mcs_config mcs) |
| 6900 | { |
| 6901 | struct nl_msg *msg; |
| 6902 | int ret = 0; |
| 6903 | struct nlattr *params; |
| 6904 | int ifindex; |
| 6905 | |
| 6906 | ifindex = if_nametoindex(intf); |
| 6907 | if (ifindex == 0) { |
| 6908 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6909 | "%s: Index for interface %s failed", |
| 6910 | __func__, intf); |
| 6911 | return -1; |
| 6912 | } |
| 6913 | |
| 6914 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 6915 | NL80211_CMD_VENDOR)) || |
| 6916 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 6917 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 6918 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 6919 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 6920 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 6921 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MCS, |
| 6922 | mcs)) { |
| 6923 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6924 | "%s: err in adding vendor_cmd and vendor_data", |
| 6925 | __func__); |
| 6926 | nlmsg_free(msg); |
| 6927 | return -1; |
| 6928 | } |
| 6929 | nla_nest_end(msg, params); |
| 6930 | |
| 6931 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 6932 | if (ret) { |
| 6933 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6934 | "%s: err in send_and_recv_msgs, ret=%d", |
| 6935 | __func__, ret); |
| 6936 | } |
| 6937 | return ret; |
| 6938 | } |
| 6939 | #endif /* NL80211_SUPPORT */ |
| 6940 | |
| 6941 | |
Kiran Kumar Lokere | 419f696 | 2018-10-24 19:03:04 -0700 | [diff] [blame] | 6942 | static int sta_set_action_tx_in_he_tb_ppdu(struct sigma_dut *dut, |
| 6943 | const char *intf, int enable) |
| 6944 | { |
| 6945 | #ifdef NL80211_SUPPORT |
| 6946 | struct nl_msg *msg; |
| 6947 | int ret = 0; |
| 6948 | struct nlattr *params; |
| 6949 | int ifindex; |
| 6950 | |
| 6951 | ifindex = if_nametoindex(intf); |
| 6952 | if (ifindex == 0) { |
| 6953 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6954 | "%s: Index for interface %s failed", |
| 6955 | __func__, intf); |
| 6956 | return -1; |
| 6957 | } |
| 6958 | |
| 6959 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 6960 | NL80211_CMD_VENDOR)) || |
| 6961 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 6962 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 6963 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 6964 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 6965 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 6966 | nla_put_u8(msg, |
| 6967 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_ACTION_TX_TB_PPDU, |
| 6968 | enable)) { |
| 6969 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6970 | "%s: err in adding vendor_cmd and vendor_data", |
| 6971 | __func__); |
| 6972 | nlmsg_free(msg); |
| 6973 | return -1; |
| 6974 | } |
| 6975 | nla_nest_end(msg, params); |
| 6976 | |
| 6977 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 6978 | if (ret) { |
| 6979 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6980 | "%s: err in send_and_recv_msgs, ret=%d", |
| 6981 | __func__, ret); |
| 6982 | } |
| 6983 | return ret; |
| 6984 | #else /* NL80211_SUPPORT */ |
| 6985 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 6986 | "HE action Tx TB PPDU cannot be set without NL80211_SUPPORT defined"); |
| 6987 | return -1; |
| 6988 | #endif /* NL80211_SUPPORT */ |
| 6989 | } |
| 6990 | |
| 6991 | |
Amarnath Hullur Subramanyam | 4622a21 | 2018-02-23 12:12:14 -0800 | [diff] [blame] | 6992 | static int sta_set_heconfig_and_wep_tkip(struct sigma_dut *dut, |
| 6993 | const char *intf, int enable) |
| 6994 | { |
| 6995 | #ifdef NL80211_SUPPORT |
| 6996 | struct nl_msg *msg; |
| 6997 | int ret = 0; |
| 6998 | struct nlattr *params; |
| 6999 | int ifindex; |
| 7000 | |
| 7001 | ifindex = if_nametoindex(intf); |
| 7002 | if (ifindex == 0) { |
| 7003 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7004 | "%s: Index for interface %s failed", |
| 7005 | __func__, intf); |
| 7006 | return -1; |
| 7007 | } |
| 7008 | |
| 7009 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7010 | NL80211_CMD_VENDOR)) || |
| 7011 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7012 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7013 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7014 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7015 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7016 | nla_put_u8(msg, |
| 7017 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_WEP_TKIP_IN_HE, |
| 7018 | enable)) { |
| 7019 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7020 | "%s: err in adding vendor_cmd and vendor_data", |
| 7021 | __func__); |
| 7022 | nlmsg_free(msg); |
| 7023 | return -1; |
| 7024 | } |
| 7025 | nla_nest_end(msg, params); |
| 7026 | |
| 7027 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7028 | if (ret) { |
| 7029 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7030 | "%s: err in send_and_recv_msgs, ret=%d", |
| 7031 | __func__, ret); |
| 7032 | } |
| 7033 | return ret; |
| 7034 | #else /* NL80211_SUPPORT */ |
| 7035 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7036 | "HE config enablement cannot be changed without NL80211_SUPPORT defined"); |
| 7037 | return -1; |
| 7038 | #endif /* NL80211_SUPPORT */ |
| 7039 | } |
| 7040 | |
| 7041 | |
Kiran Kumar Lokere | 765bdd8 | 2019-02-24 22:14:43 -0800 | [diff] [blame] | 7042 | #ifdef NL80211_SUPPORT |
Kiran Kumar Lokere | 642f7ce | 2019-02-25 18:28:10 -0800 | [diff] [blame] | 7043 | |
Kiran Kumar Lokere | 765bdd8 | 2019-02-24 22:14:43 -0800 | [diff] [blame] | 7044 | static int sta_set_he_testbed_def(struct sigma_dut *dut, |
| 7045 | const char *intf, int cfg) |
| 7046 | { |
| 7047 | struct nl_msg *msg; |
| 7048 | int ret = 0; |
| 7049 | struct nlattr *params; |
| 7050 | int ifindex; |
| 7051 | |
| 7052 | ifindex = if_nametoindex(intf); |
| 7053 | if (ifindex == 0) { |
| 7054 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7055 | "%s: Index for interface %s failed", |
| 7056 | __func__, intf); |
| 7057 | return -1; |
| 7058 | } |
| 7059 | |
| 7060 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7061 | NL80211_CMD_VENDOR)) || |
| 7062 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7063 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7064 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7065 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7066 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7067 | nla_put_u8(msg, |
| 7068 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_SET_HE_TESTBED_DEFAULTS, |
| 7069 | cfg)) { |
| 7070 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7071 | "%s: err in adding vendor_cmd and vendor_data", |
| 7072 | __func__); |
| 7073 | nlmsg_free(msg); |
| 7074 | return -1; |
| 7075 | } |
| 7076 | nla_nest_end(msg, params); |
| 7077 | |
| 7078 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7079 | if (ret) { |
| 7080 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7081 | "%s: err in send_and_recv_msgs, ret=%d", |
| 7082 | __func__, ret); |
| 7083 | } |
| 7084 | return ret; |
| 7085 | } |
Kiran Kumar Lokere | 642f7ce | 2019-02-25 18:28:10 -0800 | [diff] [blame] | 7086 | |
| 7087 | |
| 7088 | static int sta_set_2g_vht_supp(struct sigma_dut *dut, const char *intf, int cfg) |
| 7089 | { |
| 7090 | struct nl_msg *msg; |
| 7091 | int ret = 0; |
| 7092 | struct nlattr *params; |
| 7093 | int ifindex; |
| 7094 | |
| 7095 | ifindex = if_nametoindex(intf); |
| 7096 | if (ifindex == 0) { |
| 7097 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7098 | "%s: Index for interface %s failed", |
| 7099 | __func__, intf); |
| 7100 | return -1; |
| 7101 | } |
| 7102 | |
| 7103 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7104 | NL80211_CMD_VENDOR)) || |
| 7105 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7106 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7107 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7108 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7109 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7110 | nla_put_u8(msg, |
| 7111 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ENABLE_2G_VHT, |
| 7112 | cfg)) { |
| 7113 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7114 | "%s: err in adding vendor_cmd and vendor_data", |
| 7115 | __func__); |
| 7116 | nlmsg_free(msg); |
| 7117 | return -1; |
| 7118 | } |
| 7119 | nla_nest_end(msg, params); |
| 7120 | |
| 7121 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7122 | if (ret) { |
| 7123 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7124 | "%s: err in send_and_recv_msgs, ret=%d", |
| 7125 | __func__, ret); |
| 7126 | } |
| 7127 | return ret; |
| 7128 | } |
| 7129 | |
Kiran Kumar Lokere | 765bdd8 | 2019-02-24 22:14:43 -0800 | [diff] [blame] | 7130 | #endif /* NL80211_SUPPORT */ |
| 7131 | |
| 7132 | |
Qiwei Cai | b680697 | 2020-01-15 13:52:11 +0800 | [diff] [blame] | 7133 | int sta_set_addba_buf_size(struct sigma_dut *dut, |
| 7134 | const char *intf, int bufsize) |
Amarnath Hullur Subramanyam | 13215de | 2018-02-27 14:12:55 -0800 | [diff] [blame] | 7135 | { |
| 7136 | #ifdef NL80211_SUPPORT |
| 7137 | struct nl_msg *msg; |
| 7138 | int ret = 0; |
| 7139 | struct nlattr *params; |
| 7140 | int ifindex; |
| 7141 | |
| 7142 | ifindex = if_nametoindex(intf); |
| 7143 | if (ifindex == 0) { |
| 7144 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7145 | "%s: Index for interface %s failed", |
| 7146 | __func__, intf); |
| 7147 | return -1; |
| 7148 | } |
| 7149 | |
| 7150 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7151 | NL80211_CMD_VENDOR)) || |
| 7152 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7153 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7154 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7155 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7156 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
Kiran Kumar Lokere | 26e2758 | 2018-08-01 16:18:34 -0700 | [diff] [blame] | 7157 | nla_put_u16(msg, |
| 7158 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADDBA_BUFF_SIZE, |
| 7159 | bufsize)) { |
Amarnath Hullur Subramanyam | 13215de | 2018-02-27 14:12:55 -0800 | [diff] [blame] | 7160 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7161 | "%s: err in adding vendor_cmd and vendor_data", |
| 7162 | __func__); |
| 7163 | nlmsg_free(msg); |
| 7164 | return -1; |
| 7165 | } |
| 7166 | nla_nest_end(msg, params); |
| 7167 | |
| 7168 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7169 | if (ret) { |
| 7170 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7171 | "%s: err in send_and_recv_msgs, ret=%d", |
| 7172 | __func__, ret); |
| 7173 | } |
| 7174 | return ret; |
| 7175 | #else /* NL80211_SUPPORT */ |
| 7176 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7177 | "AddBA bufsize cannot be changed without NL80211_SUPPORT defined"); |
| 7178 | return -1; |
| 7179 | #endif /* NL80211_SUPPORT */ |
| 7180 | } |
| 7181 | |
| 7182 | |
Arif Hussain | 8d5b27b | 2018-05-14 14:31:03 -0700 | [diff] [blame] | 7183 | static int sta_set_tx_beamformee(struct sigma_dut *dut, const char *intf, |
| 7184 | int enable) |
| 7185 | { |
| 7186 | #ifdef NL80211_SUPPORT |
| 7187 | struct nl_msg *msg; |
| 7188 | int ret = 0; |
| 7189 | struct nlattr *params; |
| 7190 | int ifindex; |
| 7191 | |
| 7192 | ifindex = if_nametoindex(intf); |
| 7193 | if (ifindex == 0) { |
| 7194 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7195 | "%s: Index for interface %s failed", |
| 7196 | __func__, intf); |
| 7197 | return -1; |
| 7198 | } |
| 7199 | |
| 7200 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7201 | NL80211_CMD_VENDOR)) || |
| 7202 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7203 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7204 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7205 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7206 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7207 | nla_put_u8(msg, |
| 7208 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ENABLE_TX_BEAMFORMEE, |
| 7209 | enable)) { |
| 7210 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7211 | "%s: err in adding vendor_cmd and vendor_data", |
| 7212 | __func__); |
| 7213 | nlmsg_free(msg); |
| 7214 | return -1; |
| 7215 | } |
| 7216 | nla_nest_end(msg, params); |
| 7217 | |
| 7218 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7219 | if (ret) { |
| 7220 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7221 | "%s: err in send_and_recv_msgs, ret=%d", |
| 7222 | __func__, ret); |
| 7223 | } |
| 7224 | return ret; |
| 7225 | #else /* NL80211_SUPPORT */ |
| 7226 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7227 | "tx beamformee cannot be changed without NL80211_SUPPORT defined"); |
| 7228 | return -1; |
| 7229 | #endif /* NL80211_SUPPORT */ |
| 7230 | } |
| 7231 | |
| 7232 | |
Arif Hussain | 9765f7d | 2018-07-03 08:28:26 -0700 | [diff] [blame] | 7233 | static int sta_set_beamformee_sts(struct sigma_dut *dut, const char *intf, |
| 7234 | int val) |
| 7235 | { |
| 7236 | #ifdef NL80211_SUPPORT |
| 7237 | struct nl_msg *msg; |
| 7238 | int ret = 0; |
| 7239 | struct nlattr *params; |
| 7240 | int ifindex; |
| 7241 | |
| 7242 | ifindex = if_nametoindex(intf); |
| 7243 | if (ifindex == 0) { |
| 7244 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7245 | "%s: Index for interface %s failed, val:%d", |
| 7246 | __func__, intf, val); |
| 7247 | return -1; |
| 7248 | } |
| 7249 | |
| 7250 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7251 | NL80211_CMD_VENDOR)) || |
| 7252 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7253 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7254 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7255 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7256 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7257 | nla_put_u8(msg, |
| 7258 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_TX_BEAMFORMEE_NSTS, |
| 7259 | val)) { |
| 7260 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7261 | "%s: err in adding vendor_cmd and vendor_data, val: %d", |
| 7262 | __func__, val); |
| 7263 | nlmsg_free(msg); |
| 7264 | return -1; |
| 7265 | } |
| 7266 | nla_nest_end(msg, params); |
| 7267 | |
| 7268 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7269 | if (ret) { |
| 7270 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7271 | "%s: err in send_and_recv_msgs, ret=%d, val=%d", |
| 7272 | __func__, ret, val); |
| 7273 | } |
| 7274 | return ret; |
| 7275 | #else /* NL80211_SUPPORT */ |
| 7276 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7277 | "beamformee sts cannot be changed without NL80211_SUPPORT defined"); |
| 7278 | return -1; |
| 7279 | #endif /* NL80211_SUPPORT */ |
| 7280 | } |
| 7281 | |
| 7282 | |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 7283 | #ifdef NL80211_SUPPORT |
Kiran Kumar Lokere | 55eb558 | 2018-08-19 20:03:26 -0700 | [diff] [blame] | 7284 | static int sta_set_mac_padding_duration(struct sigma_dut *dut, const char *intf, |
| 7285 | enum qca_wlan_he_mac_padding_dur val) |
| 7286 | { |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 7287 | struct nl_msg *msg; |
| 7288 | int ret = 0; |
| 7289 | struct nlattr *params; |
| 7290 | int ifindex; |
| 7291 | |
| 7292 | ifindex = if_nametoindex(intf); |
| 7293 | if (ifindex == 0) { |
| 7294 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7295 | "%s: Index for interface %s failed, val:%d", |
| 7296 | __func__, intf, val); |
| 7297 | return -1; |
| 7298 | } |
| 7299 | |
| 7300 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7301 | NL80211_CMD_VENDOR)) || |
| 7302 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7303 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7304 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7305 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7306 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7307 | nla_put_u8(msg, |
| 7308 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MAC_PADDING_DUR, |
| 7309 | val)) { |
| 7310 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7311 | "%s: err in adding vendor_cmd and vendor_data, val: %d", |
| 7312 | __func__, val); |
| 7313 | nlmsg_free(msg); |
| 7314 | return -1; |
| 7315 | } |
| 7316 | nla_nest_end(msg, params); |
| 7317 | |
| 7318 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7319 | if (ret) { |
| 7320 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7321 | "%s: err in send_and_recv_msgs, ret=%d, val=%d", |
| 7322 | __func__, ret, val); |
| 7323 | } |
| 7324 | return ret; |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 7325 | } |
Kiran Kumar Lokere | 55eb558 | 2018-08-19 20:03:26 -0700 | [diff] [blame] | 7326 | #endif /* NL80211_SUPPORT */ |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 7327 | |
| 7328 | |
Kiran Kumar Lokere | 400d68f | 2018-08-29 18:45:11 -0700 | [diff] [blame] | 7329 | static int sta_set_tx_su_ppdu_cfg(struct sigma_dut *dut, const char *intf, |
| 7330 | int val) |
| 7331 | { |
| 7332 | #ifdef NL80211_SUPPORT |
| 7333 | struct nl_msg *msg; |
| 7334 | int ret = 0; |
| 7335 | struct nlattr *params; |
| 7336 | int ifindex; |
| 7337 | |
| 7338 | ifindex = if_nametoindex(intf); |
| 7339 | if (ifindex == 0) { |
| 7340 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7341 | "%s: Index for interface %s failed, val:%d", |
| 7342 | __func__, intf, val); |
| 7343 | return -1; |
| 7344 | } |
| 7345 | |
| 7346 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7347 | NL80211_CMD_VENDOR)) || |
| 7348 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7349 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7350 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7351 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7352 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7353 | nla_put_u8(msg, |
| 7354 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_TX_SUPPDU, |
| 7355 | val)) { |
| 7356 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7357 | "%s: err in adding vendor_cmd and vendor_data, val: %d", |
| 7358 | __func__, val); |
| 7359 | nlmsg_free(msg); |
| 7360 | return -1; |
| 7361 | } |
| 7362 | nla_nest_end(msg, params); |
| 7363 | |
| 7364 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7365 | if (ret) { |
| 7366 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7367 | "%s: err in send_and_recv_msgs, ret=%d, val=%d", |
| 7368 | __func__, ret, val); |
| 7369 | } |
| 7370 | return ret; |
| 7371 | #else /* NL80211_SUPPORT */ |
| 7372 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7373 | "Tx SU PPDU cannot be set without NL80211_SUPPORT defined"); |
| 7374 | return -1; |
| 7375 | #endif /* NL80211_SUPPORT */ |
| 7376 | } |
| 7377 | |
| 7378 | |
Kiran Kumar Lokere | 29c1bb0 | 2018-10-08 17:41:02 -0700 | [diff] [blame] | 7379 | #ifdef NL80211_SUPPORT |
| 7380 | static int sta_set_he_om_ctrl_reset(struct sigma_dut *dut, const char *intf) |
| 7381 | { |
| 7382 | struct nl_msg *msg; |
| 7383 | int ret = 0; |
| 7384 | struct nlattr *params; |
| 7385 | int ifindex; |
| 7386 | |
| 7387 | ifindex = if_nametoindex(intf); |
| 7388 | if (ifindex == 0) { |
| 7389 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7390 | "%s: Index for interface %s failed", |
| 7391 | __func__, intf); |
| 7392 | return -1; |
| 7393 | } |
| 7394 | |
| 7395 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7396 | NL80211_CMD_VENDOR)) || |
| 7397 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7398 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7399 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7400 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7401 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7402 | nla_put_flag(msg, |
| 7403 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_CLEAR_HE_OM_CTRL_CONFIG)) { |
| 7404 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7405 | "%s: err in adding vendor_cmd and vendor_data", |
| 7406 | __func__); |
| 7407 | nlmsg_free(msg); |
| 7408 | return -1; |
| 7409 | } |
| 7410 | nla_nest_end(msg, params); |
| 7411 | |
| 7412 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7413 | if (ret) { |
| 7414 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7415 | "%s: err in send_and_recv_msgs, ret=%d", |
| 7416 | __func__, ret); |
| 7417 | } |
| 7418 | return ret; |
| 7419 | } |
| 7420 | #endif /* NL80211_SUPPORT */ |
| 7421 | |
| 7422 | |
Kiran Kumar Lokere | b101268 | 2018-08-08 17:48:32 -0700 | [diff] [blame] | 7423 | static int sta_set_mu_edca_override(struct sigma_dut *dut, const char *intf, |
| 7424 | int val) |
| 7425 | { |
| 7426 | #ifdef NL80211_SUPPORT |
| 7427 | struct nl_msg *msg; |
| 7428 | int ret = 0; |
| 7429 | struct nlattr *params; |
| 7430 | int ifindex; |
| 7431 | |
| 7432 | ifindex = if_nametoindex(intf); |
| 7433 | if (ifindex == 0) { |
| 7434 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7435 | "%s: Index for interface %s failed, val:%d", |
| 7436 | __func__, intf, val); |
| 7437 | return -1; |
| 7438 | } |
| 7439 | |
| 7440 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7441 | NL80211_CMD_VENDOR)) || |
| 7442 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7443 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7444 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7445 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7446 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7447 | nla_put_u8(msg, |
| 7448 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_OVERRIDE_MU_EDCA, |
| 7449 | val)) { |
| 7450 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7451 | "%s: err in adding vendor_cmd and vendor_data, val: %d", |
| 7452 | __func__, val); |
| 7453 | nlmsg_free(msg); |
| 7454 | return -1; |
| 7455 | } |
| 7456 | nla_nest_end(msg, params); |
| 7457 | |
| 7458 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7459 | if (ret) { |
| 7460 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7461 | "%s: err in send_and_recv_msgs, ret=%d, val=%d", |
| 7462 | __func__, ret, val); |
| 7463 | } |
| 7464 | return ret; |
| 7465 | #else /* NL80211_SUPPORT */ |
| 7466 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7467 | "MU EDCA override cannot be changed without NL80211_SUPPORT defined"); |
| 7468 | return -1; |
| 7469 | #endif /* NL80211_SUPPORT */ |
| 7470 | } |
| 7471 | |
| 7472 | |
Kiran Kumar Lokere | de33e37 | 2018-08-29 16:26:24 -0700 | [diff] [blame] | 7473 | static int sta_set_om_ctrl_supp(struct sigma_dut *dut, const char *intf, |
| 7474 | int val) |
| 7475 | { |
| 7476 | #ifdef NL80211_SUPPORT |
| 7477 | struct nl_msg *msg; |
| 7478 | int ret = 0; |
| 7479 | struct nlattr *params; |
| 7480 | int ifindex; |
| 7481 | |
| 7482 | ifindex = if_nametoindex(intf); |
| 7483 | if (ifindex == 0) { |
| 7484 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7485 | "%s: Index for interface %s failed, val:%d", |
| 7486 | __func__, intf, val); |
| 7487 | return -1; |
| 7488 | } |
| 7489 | |
| 7490 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7491 | NL80211_CMD_VENDOR)) || |
| 7492 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7493 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7494 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7495 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7496 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7497 | nla_put_u8(msg, |
| 7498 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_OM_CTRL_SUPP, |
| 7499 | val)) { |
| 7500 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7501 | "%s: err in adding vendor_cmd and vendor_data, val: %d", |
| 7502 | __func__, val); |
| 7503 | nlmsg_free(msg); |
| 7504 | return -1; |
| 7505 | } |
| 7506 | nla_nest_end(msg, params); |
| 7507 | |
| 7508 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7509 | if (ret) { |
| 7510 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7511 | "%s: err in send_and_recv_msgs, ret=%d, val=%d", |
| 7512 | __func__, ret, val); |
| 7513 | } |
| 7514 | return ret; |
| 7515 | #else /* NL80211_SUPPORT */ |
| 7516 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7517 | "HE OM ctrl cannot be changed without NL80211_SUPPORT defined"); |
| 7518 | return -1; |
| 7519 | #endif /* NL80211_SUPPORT */ |
| 7520 | } |
| 7521 | |
| 7522 | |
Arif Hussain | 480d5f4 | 2019-03-12 14:40:42 -0700 | [diff] [blame] | 7523 | static int sta_set_twt_req_support(struct sigma_dut *dut, const char *intf, |
| 7524 | int val) |
| 7525 | { |
| 7526 | #ifdef NL80211_SUPPORT |
| 7527 | struct nl_msg *msg; |
| 7528 | int ret; |
| 7529 | struct nlattr *params; |
| 7530 | int ifindex; |
| 7531 | |
| 7532 | ifindex = if_nametoindex(intf); |
| 7533 | if (ifindex == 0) { |
| 7534 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7535 | "%s: Index for interface %s failed, val:%d", |
| 7536 | __func__, intf, val); |
| 7537 | return -1; |
| 7538 | } |
| 7539 | |
| 7540 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 7541 | NL80211_CMD_VENDOR)) || |
| 7542 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 7543 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 7544 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 7545 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 7546 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 7547 | nla_put_u8(msg, |
| 7548 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_TWT_REQ_SUPPORT, |
| 7549 | val)) { |
| 7550 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7551 | "%s: err in adding vendor_cmd and vendor_data, val: %d", |
| 7552 | __func__, val); |
| 7553 | nlmsg_free(msg); |
| 7554 | return -1; |
| 7555 | } |
| 7556 | nla_nest_end(msg, params); |
| 7557 | |
| 7558 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 7559 | if (ret) { |
| 7560 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7561 | "%s: err in send_and_recv_msgs, ret=%d, val=%d", |
| 7562 | __func__, ret, val); |
| 7563 | } |
| 7564 | return ret; |
| 7565 | #else /* NL80211_SUPPORT */ |
| 7566 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7567 | "TWT Request cannot be changed without NL80211_SUPPORT defined"); |
| 7568 | return -1; |
| 7569 | #endif /* NL80211_SUPPORT */ |
| 7570 | } |
| 7571 | |
| 7572 | |
Amarnath Hullur Subramanyam | 58f2a6e | 2018-01-31 03:36:00 -0800 | [diff] [blame] | 7573 | static void sta_reset_default_wcn(struct sigma_dut *dut, const char *intf, |
| 7574 | const char *type) |
| 7575 | { |
| 7576 | char buf[60]; |
| 7577 | |
| 7578 | if (dut->program == PROGRAM_HE) { |
| 7579 | /* resetting phymode to auto in case of HE program */ |
| 7580 | snprintf(buf, sizeof(buf), "iwpriv %s setphymode 0", intf); |
| 7581 | if (system(buf) != 0) { |
| 7582 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7583 | "iwpriv %s setphymode failed", intf); |
| 7584 | } |
| 7585 | |
Amarnath Hullur Subramanyam | 9cecb50 | 2018-04-25 13:26:30 -0700 | [diff] [blame] | 7586 | /* reset the rate to Auto rate */ |
| 7587 | snprintf(buf, sizeof(buf), "iwpriv %s set_11ax_rate 0xff", |
| 7588 | intf); |
| 7589 | if (system(buf) != 0) { |
| 7590 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7591 | "iwpriv %s set_11ax_rate 0xff failed", |
| 7592 | intf); |
| 7593 | } |
| 7594 | |
Kiran Kumar Lokere | 86cfe3a | 2018-06-01 11:55:15 -0700 | [diff] [blame] | 7595 | /* reset the LDPC setting */ |
| 7596 | snprintf(buf, sizeof(buf), "iwpriv %s ldpc 1", intf); |
| 7597 | if (system(buf) != 0) { |
| 7598 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7599 | "iwpriv %s ldpc 1 failed", intf); |
| 7600 | } |
| 7601 | |
Kiran Kumar Lokere | d6149ff | 2018-12-05 20:20:41 -0800 | [diff] [blame] | 7602 | /* reset the power save setting */ |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 7603 | set_power_save_wcn(dut, intf, 2); |
Kiran Kumar Lokere | d6149ff | 2018-12-05 20:20:41 -0800 | [diff] [blame] | 7604 | |
Amarnath Hullur Subramanyam | 58f2a6e | 2018-01-31 03:36:00 -0800 | [diff] [blame] | 7605 | /* remove all network profiles */ |
| 7606 | remove_wpa_networks(intf); |
Amarnath Hullur Subramanyam | 2538acc | 2018-02-02 16:15:25 -0800 | [diff] [blame] | 7607 | |
Amarnath Hullur Subramanyam | 13215de | 2018-02-27 14:12:55 -0800 | [diff] [blame] | 7608 | /* Configure ADDBA Req/Rsp buffer size to be 64 */ |
| 7609 | sta_set_addba_buf_size(dut, intf, 64); |
| 7610 | |
Amarnath Hullur Subramanyam | 5f32d57 | 2018-03-02 00:02:33 -0800 | [diff] [blame] | 7611 | #ifdef NL80211_SUPPORT |
Kiran Kumar Lokere | 765bdd8 | 2019-02-24 22:14:43 -0800 | [diff] [blame] | 7612 | /* Reset the device HE capabilities to its default supported |
| 7613 | * configuration. */ |
| 7614 | sta_set_he_testbed_def(dut, intf, 0); |
| 7615 | |
Amarnath Hullur Subramanyam | 5f32d57 | 2018-03-02 00:02:33 -0800 | [diff] [blame] | 7616 | /* Disable noackpolicy for all AC */ |
| 7617 | if (nlvendor_sta_set_noack(dut, intf, 0, QCA_WLAN_AC_ALL)) { |
| 7618 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7619 | "Disable of noackpolicy for all AC failed"); |
| 7620 | } |
| 7621 | #endif /* NL80211_SUPPORT */ |
| 7622 | |
Amarnath Hullur Subramanyam | b1724a5 | 2018-03-07 14:31:46 -0800 | [diff] [blame] | 7623 | /* Enable WMM by default */ |
| 7624 | if (wcn_sta_set_wmm(dut, intf, "on")) { |
| 7625 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7626 | "Enable of WMM in sta_reset_default_wcn failed"); |
| 7627 | } |
| 7628 | |
| 7629 | /* Disable ADDBA_REJECT by default */ |
| 7630 | if (nlvendor_sta_set_addba_reject(dut, intf, 0)) { |
| 7631 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7632 | "Disable of addba_reject in sta_reset_default_wcn failed"); |
| 7633 | } |
| 7634 | |
Amarnath Hullur Subramanyam | 1f65a67 | 2018-03-07 14:50:29 -0800 | [diff] [blame] | 7635 | /* Enable sending of ADDBA by default */ |
| 7636 | if (nlvendor_config_send_addba(dut, intf, 1)) { |
| 7637 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7638 | "Enable sending of ADDBA in sta_reset_default_wcn failed"); |
| 7639 | } |
| 7640 | |
Amarnath Hullur Subramanyam | 63c590a | 2018-03-07 15:26:21 -0800 | [diff] [blame] | 7641 | /* Enable AMPDU by default */ |
| 7642 | iwpriv_sta_set_ampdu(dut, intf, 1); |
| 7643 | |
Subhani Shaik | 8e7a305 | 2018-04-24 14:03:00 -0700 | [diff] [blame] | 7644 | #ifdef NL80211_SUPPORT |
Kiran Kumar Lokere | 26c0f86 | 2020-01-22 11:15:59 -0800 | [diff] [blame] | 7645 | if (wcn_set_he_ltf(dut, intf, QCA_WLAN_HE_LTF_AUTO)) { |
Subhani Shaik | 8e7a305 | 2018-04-24 14:03:00 -0700 | [diff] [blame] | 7646 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7647 | "Set LTF config to default in sta_reset_default_wcn failed"); |
| 7648 | } |
Arif Hussain | 9765f7d | 2018-07-03 08:28:26 -0700 | [diff] [blame] | 7649 | |
Kiran Kumar Lokere | bad5112 | 2018-12-12 19:03:36 -0800 | [diff] [blame] | 7650 | /* set the beamformee NSTS(maximum number of |
| 7651 | * space-time streams) to default DUT config |
| 7652 | */ |
| 7653 | if (sta_set_beamformee_sts(dut, intf, 7)) { |
Arif Hussain | 9765f7d | 2018-07-03 08:28:26 -0700 | [diff] [blame] | 7654 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7655 | "Failed to set BeamformeeSTS"); |
| 7656 | } |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 7657 | |
Kiran Kumar Lokere | 55eb558 | 2018-08-19 20:03:26 -0700 | [diff] [blame] | 7658 | if (sta_set_mac_padding_duration( |
| 7659 | dut, intf, |
| 7660 | QCA_WLAN_HE_NO_ADDITIONAL_PROCESS_TIME)) { |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 7661 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7662 | "Failed to set MAC padding duration"); |
| 7663 | } |
Kiran Kumar Lokere | b101268 | 2018-08-08 17:48:32 -0700 | [diff] [blame] | 7664 | |
| 7665 | if (sta_set_mu_edca_override(dut, intf, 0)) { |
| 7666 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7667 | "ErrorCode,Failed to set MU EDCA override disable"); |
| 7668 | } |
Kiran Kumar Lokere | de33e37 | 2018-08-29 16:26:24 -0700 | [diff] [blame] | 7669 | |
| 7670 | if (sta_set_om_ctrl_supp(dut, intf, 1)) { |
| 7671 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7672 | "Failed to set OM ctrl supp"); |
| 7673 | } |
Kiran Kumar Lokere | 400d68f | 2018-08-29 18:45:11 -0700 | [diff] [blame] | 7674 | |
| 7675 | if (sta_set_tx_su_ppdu_cfg(dut, intf, 1)) { |
| 7676 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7677 | "Failed to set Tx SU PPDU enable"); |
| 7678 | } |
Kiran Kumar Lokere | 29c1bb0 | 2018-10-08 17:41:02 -0700 | [diff] [blame] | 7679 | |
Kiran Kumar Lokere | 419f696 | 2018-10-24 19:03:04 -0700 | [diff] [blame] | 7680 | if (sta_set_action_tx_in_he_tb_ppdu(dut, intf, 0)) { |
| 7681 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7682 | "failed to send TB PPDU Tx cfg"); |
| 7683 | } |
| 7684 | |
Kiran Kumar Lokere | 29c1bb0 | 2018-10-08 17:41:02 -0700 | [diff] [blame] | 7685 | if (sta_set_he_om_ctrl_reset(dut, intf)) { |
| 7686 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7687 | "Failed to set OM ctrl reset"); |
| 7688 | } |
Kiran Kumar Lokere | e5ed442 | 2018-12-18 18:25:02 -0800 | [diff] [blame] | 7689 | |
| 7690 | /* +HTC-HE support default on */ |
| 7691 | if (sta_set_he_htc_supp(dut, intf, 1)) { |
| 7692 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7693 | "Setting of +HTC-HE support failed"); |
| 7694 | } |
Subhani Shaik | 8e7a305 | 2018-04-24 14:03:00 -0700 | [diff] [blame] | 7695 | #endif /* NL80211_SUPPORT */ |
| 7696 | |
Arif Hussain | 8d5b27b | 2018-05-14 14:31:03 -0700 | [diff] [blame] | 7697 | if (sta_set_tx_beamformee(dut, intf, 1)) { |
| 7698 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7699 | "Set tx beamformee enable by default in sta_reset_default_wcn failed"); |
| 7700 | } |
| 7701 | |
Amarnath Hullur Subramanyam | 2538acc | 2018-02-02 16:15:25 -0800 | [diff] [blame] | 7702 | /* Set nss to 1 and MCS 0-7 in case of testbed */ |
| 7703 | if (type && strcasecmp(type, "Testbed") == 0) { |
| 7704 | #ifdef NL80211_SUPPORT |
| 7705 | int ret; |
| 7706 | #endif /* NL80211_SUPPORT */ |
| 7707 | |
| 7708 | snprintf(buf, sizeof(buf), "iwpriv %s nss 1", intf); |
| 7709 | if (system(buf) != 0) { |
| 7710 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7711 | "iwpriv %s nss failed", intf); |
| 7712 | } |
| 7713 | |
| 7714 | #ifdef NL80211_SUPPORT |
| 7715 | ret = sta_set_he_mcs(dut, intf, HE_80_MCS0_7); |
| 7716 | if (ret) { |
| 7717 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7718 | "Setting of MCS failed, ret:%d", |
| 7719 | ret); |
| 7720 | } |
| 7721 | #endif /* NL80211_SUPPORT */ |
Amarnath Hullur Subramanyam | c67621d | 2018-02-04 23:18:01 -0800 | [diff] [blame] | 7722 | |
| 7723 | /* Disable STBC as default */ |
| 7724 | wcn_sta_set_stbc(dut, intf, "0"); |
Amarnath Hullur Subramanyam | d5bb573 | 2018-02-22 15:50:38 -0800 | [diff] [blame] | 7725 | |
| 7726 | /* Disable AMSDU as default */ |
| 7727 | iwpriv_sta_set_amsdu(dut, intf, "0"); |
Amarnath Hullur Subramanyam | 474a17d | 2018-02-22 18:45:54 -0800 | [diff] [blame] | 7728 | |
| 7729 | #ifdef NL80211_SUPPORT |
| 7730 | /* HE fragmentation default off */ |
| 7731 | if (sta_set_he_fragmentation(dut, intf, |
| 7732 | HE_FRAG_DISABLE)) { |
| 7733 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7734 | "Setting of HE fragmentation failed"); |
| 7735 | } |
Kiran Kumar Lokere | bad5112 | 2018-12-12 19:03:36 -0800 | [diff] [blame] | 7736 | |
| 7737 | /* set the beamformee NSTS(maximum number of |
| 7738 | * space-time streams) to default testbed config |
| 7739 | */ |
| 7740 | if (sta_set_beamformee_sts(dut, intf, 3)) { |
| 7741 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7742 | "Failed to set BeamformeeSTS"); |
| 7743 | } |
| 7744 | |
Kiran Kumar Lokere | e5ed442 | 2018-12-18 18:25:02 -0800 | [diff] [blame] | 7745 | /* +HTC-HE support default off */ |
| 7746 | if (sta_set_he_htc_supp(dut, intf, 0)) { |
| 7747 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7748 | "Setting of +HTC-HE support failed"); |
| 7749 | } |
Kiran Kumar Lokere | 765bdd8 | 2019-02-24 22:14:43 -0800 | [diff] [blame] | 7750 | |
| 7751 | /* Set device HE capabilities to testbed default |
| 7752 | * configuration. */ |
| 7753 | if (sta_set_he_testbed_def(dut, intf, 1)) { |
| 7754 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 7755 | "Failed to set HE defaults"); |
| 7756 | } |
Kiran Kumar Lokere | 642f7ce | 2019-02-25 18:28:10 -0800 | [diff] [blame] | 7757 | |
| 7758 | /* Disable VHT support in 2.4 GHz for testbed */ |
| 7759 | sta_set_2g_vht_supp(dut, intf, 0); |
Amarnath Hullur Subramanyam | 474a17d | 2018-02-22 18:45:54 -0800 | [diff] [blame] | 7760 | #endif /* NL80211_SUPPORT */ |
Amarnath Hullur Subramanyam | 4622a21 | 2018-02-23 12:12:14 -0800 | [diff] [blame] | 7761 | |
| 7762 | /* Enable WEP/TKIP with HE capability in testbed */ |
| 7763 | if (sta_set_heconfig_and_wep_tkip(dut, intf, 1)) { |
| 7764 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7765 | "Enabling HE config with WEP/TKIP failed"); |
| 7766 | } |
Amarnath Hullur Subramanyam | 2538acc | 2018-02-02 16:15:25 -0800 | [diff] [blame] | 7767 | } |
Amarnath Hullur Subramanyam | 0acce2c | 2018-03-06 06:05:17 -0800 | [diff] [blame] | 7768 | |
| 7769 | /* Defaults in case of DUT */ |
| 7770 | if (type && strcasecmp(type, "DUT") == 0) { |
Arif Hussain | d48fcc7 | 2018-05-01 18:34:18 -0700 | [diff] [blame] | 7771 | /* Enable STBC by default */ |
| 7772 | wcn_sta_set_stbc(dut, intf, "1"); |
| 7773 | |
Amarnath Hullur Subramanyam | 0acce2c | 2018-03-06 06:05:17 -0800 | [diff] [blame] | 7774 | /* set nss to 2 */ |
| 7775 | snprintf(buf, sizeof(buf), "iwpriv %s nss 2", intf); |
| 7776 | if (system(buf) != 0) { |
| 7777 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7778 | "iwpriv %s nss 2 failed", intf); |
| 7779 | } |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 7780 | dut->sta_nss = 2; |
Amarnath Hullur Subramanyam | 0acce2c | 2018-03-06 06:05:17 -0800 | [diff] [blame] | 7781 | |
| 7782 | #ifdef NL80211_SUPPORT |
Arif Hussain | ae23984 | 2018-05-01 18:20:05 -0700 | [diff] [blame] | 7783 | /* Set HE_MCS to 0-11 */ |
| 7784 | if (sta_set_he_mcs(dut, intf, HE_80_MCS0_11)) { |
Amarnath Hullur Subramanyam | 0acce2c | 2018-03-06 06:05:17 -0800 | [diff] [blame] | 7785 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7786 | "Setting of MCS failed"); |
| 7787 | } |
| 7788 | #endif /* NL80211_SUPPORT */ |
| 7789 | |
| 7790 | /* Disable WEP/TKIP with HE capability in DUT */ |
| 7791 | if (sta_set_heconfig_and_wep_tkip(dut, intf, 0)) { |
| 7792 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7793 | "Enabling HE config with WEP/TKIP failed"); |
| 7794 | } |
| 7795 | } |
Amarnath Hullur Subramanyam | 58f2a6e | 2018-01-31 03:36:00 -0800 | [diff] [blame] | 7796 | } |
| 7797 | } |
| 7798 | |
| 7799 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 7800 | static enum sigma_cmd_result cmd_sta_reset_default(struct sigma_dut *dut, |
| 7801 | struct sigma_conn *conn, |
| 7802 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7803 | { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7804 | const char *intf = get_param(cmd, "Interface"); |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 7805 | const char *band = get_param(cmd, "band"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7806 | const char *type; |
Amarnath Hullur Subramanyam | 9c381f5 | 2017-03-17 00:04:41 -0700 | [diff] [blame] | 7807 | const char *program = get_param(cmd, "program"); |
Ankita Bajaj | 0d5825b | 2017-10-25 16:20:17 +0530 | [diff] [blame] | 7808 | const char *dev_role = get_param(cmd, "DevRole"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7809 | |
Jouni Malinen | b21f054 | 2019-11-04 17:53:38 +0200 | [diff] [blame] | 7810 | if (dut->station_ifname_2g && |
| 7811 | strcmp(dut->station_ifname_2g, intf) == 0) |
| 7812 | dut->use_5g = 0; |
| 7813 | else if (dut->station_ifname_5g && |
| 7814 | strcmp(dut->station_ifname_5g, intf) == 0) |
| 7815 | dut->use_5g = 1; |
| 7816 | |
Amarnath Hullur Subramanyam | 9c381f5 | 2017-03-17 00:04:41 -0700 | [diff] [blame] | 7817 | if (!program) |
| 7818 | program = get_param(cmd, "prog"); |
| 7819 | dut->program = sigma_program_to_enum(program); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7820 | dut->device_type = STA_unknown; |
| 7821 | type = get_param(cmd, "type"); |
| 7822 | if (type && strcasecmp(type, "Testbed") == 0) |
| 7823 | dut->device_type = STA_testbed; |
| 7824 | if (type && strcasecmp(type, "DUT") == 0) |
| 7825 | dut->device_type = STA_dut; |
| 7826 | |
| 7827 | if (dut->program == PROGRAM_TDLS) { |
| 7828 | /* Clear TDLS testing mode */ |
| 7829 | wpa_command(intf, "SET tdls_disabled 0"); |
| 7830 | wpa_command(intf, "SET tdls_testing 0"); |
| 7831 | dut->no_tpk_expiration = 0; |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 7832 | if (get_driver_type(dut) == DRIVER_WCN) { |
Pradeep Reddy POTTETI | 8ce2a23 | 2016-10-28 12:17:32 +0530 | [diff] [blame] | 7833 | /* Enable the WCN driver in TDLS Explicit trigger mode |
| 7834 | */ |
| 7835 | wpa_command(intf, "SET tdls_external_control 0"); |
| 7836 | wpa_command(intf, "SET tdls_trigger_control 0"); |
| 7837 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7838 | } |
| 7839 | |
Amarnath Hullur Subramanyam | 9c381f5 | 2017-03-17 00:04:41 -0700 | [diff] [blame] | 7840 | #ifdef MIRACAST |
| 7841 | if (dut->program == PROGRAM_WFD || |
| 7842 | dut->program == PROGRAM_DISPLAYR2) |
| 7843 | miracast_sta_reset_default(dut, conn, cmd); |
| 7844 | #endif /* MIRACAST */ |
| 7845 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 7846 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7847 | case DRIVER_ATHEROS: |
| 7848 | sta_reset_default_ath(dut, intf, type); |
| 7849 | break; |
Amarnath Hullur Subramanyam | 58f2a6e | 2018-01-31 03:36:00 -0800 | [diff] [blame] | 7850 | case DRIVER_WCN: |
| 7851 | sta_reset_default_wcn(dut, intf, type); |
| 7852 | break; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7853 | default: |
| 7854 | break; |
| 7855 | } |
| 7856 | |
| 7857 | #ifdef ANDROID_NAN |
| 7858 | if (dut->program == PROGRAM_NAN) |
| 7859 | nan_cmd_sta_reset_default(dut, conn, cmd); |
| 7860 | #endif /* ANDROID_NAN */ |
| 7861 | |
Vinay Gannevaram | 3b9fdd3 | 2019-06-14 17:55:44 +0530 | [diff] [blame] | 7862 | if (dut->program == PROGRAM_LOC && |
| 7863 | lowi_cmd_sta_reset_default(dut, conn, cmd) < 0) |
| 7864 | return ERROR_SEND_STATUS; |
| 7865 | |
Jouni Malinen | ba63045 | 2018-06-22 11:49:59 +0300 | [diff] [blame] | 7866 | if (dut->program == PROGRAM_HS2_R2 || dut->program == PROGRAM_HS2_R3) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7867 | unlink("SP/wi-fi.org/pps.xml"); |
| 7868 | if (system("rm -r SP/*") != 0) { |
| 7869 | } |
| 7870 | unlink("next-client-cert.pem"); |
| 7871 | unlink("next-client-key.pem"); |
| 7872 | } |
| 7873 | |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 7874 | /* For WPS program of the 60 GHz band the band type needs to be saved */ |
| 7875 | if (dut->program == PROGRAM_WPS) { |
| 7876 | if (band && strcasecmp(band, "60GHz") == 0) { |
| 7877 | dut->band = WPS_BAND_60G; |
Alexei Avshalom Lazar | eee9ab0 | 2018-12-24 16:27:48 +0200 | [diff] [blame] | 7878 | /* For 60 GHz enable WPS for WPS TCs */ |
| 7879 | dut->wps_disable = 0; |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 7880 | } else { |
| 7881 | dut->band = WPS_BAND_NON_60G; |
| 7882 | } |
Alexei Avshalom Lazar | eee9ab0 | 2018-12-24 16:27:48 +0200 | [diff] [blame] | 7883 | } else if (dut->program == PROGRAM_60GHZ) { |
| 7884 | /* For 60 GHz MAC/PHY TCs WPS must be disabled */ |
| 7885 | dut->wps_disable = 1; |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 7886 | } |
| 7887 | |
Alexei Avshalom Lazar | 157ba06 | 2018-12-23 16:15:26 +0200 | [diff] [blame] | 7888 | if (is_60g_sigma_dut(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7889 | const char *dev_role = get_param(cmd, "DevRole"); |
Alexei Avshalom Lazar | c2a5bb1 | 2018-12-23 16:12:06 +0200 | [diff] [blame] | 7890 | char buf[256]; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7891 | |
Alexei Avshalom Lazar | eee9ab0 | 2018-12-24 16:27:48 +0200 | [diff] [blame] | 7892 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 7893 | "WPS 60 GHz program, wps_disable = %d", |
| 7894 | dut->wps_disable); |
| 7895 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7896 | if (!dev_role) { |
| 7897 | send_resp(dut, conn, SIGMA_ERROR, |
| 7898 | "errorCode,Missing DevRole argument"); |
| 7899 | return 0; |
| 7900 | } |
| 7901 | |
| 7902 | if (strcasecmp(dev_role, "STA") == 0) |
| 7903 | dut->dev_role = DEVROLE_STA; |
| 7904 | else if (strcasecmp(dev_role, "PCP") == 0) |
| 7905 | dut->dev_role = DEVROLE_PCP; |
| 7906 | else { |
| 7907 | send_resp(dut, conn, SIGMA_ERROR, |
| 7908 | "errorCode,Unknown DevRole"); |
| 7909 | return 0; |
| 7910 | } |
| 7911 | |
| 7912 | if (dut->device_type == STA_unknown) { |
| 7913 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7914 | "Device type is not STA testbed or DUT"); |
| 7915 | send_resp(dut, conn, SIGMA_ERROR, |
| 7916 | "errorCode,Unknown device type"); |
| 7917 | return 0; |
| 7918 | } |
Alexei Avshalom Lazar | c2a5bb1 | 2018-12-23 16:12:06 +0200 | [diff] [blame] | 7919 | |
| 7920 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 7921 | "Setting msdu_size to MAX: 7912"); |
| 7922 | snprintf(buf, sizeof(buf), "ifconfig %s mtu 7912", |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 7923 | get_station_ifname(dut)); |
Alexei Avshalom Lazar | c2a5bb1 | 2018-12-23 16:12:06 +0200 | [diff] [blame] | 7924 | |
| 7925 | if (system(buf) != 0) { |
| 7926 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set %s", |
| 7927 | buf); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 7928 | return ERROR_SEND_STATUS; |
Alexei Avshalom Lazar | c2a5bb1 | 2018-12-23 16:12:06 +0200 | [diff] [blame] | 7929 | } |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 7930 | |
| 7931 | if (sta_set_force_mcs(dut, 0, 1)) { |
| 7932 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 7933 | "Failed to reset force MCS"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 7934 | return ERROR_SEND_STATUS; |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 7935 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7936 | } |
| 7937 | |
| 7938 | wpa_command(intf, "WPS_ER_STOP"); |
| 7939 | wpa_command(intf, "FLUSH"); |
vamsi krishna | f39bc1e | 2017-08-23 17:37:53 +0530 | [diff] [blame] | 7940 | wpa_command(intf, "ERP_FLUSH"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7941 | wpa_command(intf, "SET radio_disabled 0"); |
| 7942 | |
Alexei Avshalom Lazar | 744ae8a | 2019-01-31 17:26:46 +0200 | [diff] [blame] | 7943 | dut->wps_forced_version = 0; |
| 7944 | |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 7945 | if (dut->wsc_fragment) { |
| 7946 | dut->wsc_fragment = 0; |
| 7947 | wpa_command(intf, "SET device_name Test client"); |
| 7948 | wpa_command(intf, "SET manufacturer "); |
| 7949 | wpa_command(intf, "SET model_name "); |
| 7950 | wpa_command(intf, "SET model_number "); |
| 7951 | wpa_command(intf, "SET serial_number "); |
| 7952 | } |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 7953 | if (is_60g_sigma_dut(dut) && dut->force_rsn_ie) { |
| 7954 | dut->force_rsn_ie = FORCE_RSN_IE_NONE; |
| 7955 | sta_60g_force_rsn_ie(dut, FORCE_RSN_IE_NONE); |
| 7956 | } |
Alexei Avshalom Lazar | 33f700c | 2018-12-18 16:00:39 +0200 | [diff] [blame] | 7957 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7958 | if (dut->tmp_mac_addr && dut->set_macaddr) { |
| 7959 | dut->tmp_mac_addr = 0; |
| 7960 | if (system(dut->set_macaddr) != 0) { |
| 7961 | sigma_dut_print(dut, DUT_MSG_INFO, "Failed to clear " |
| 7962 | "temporary MAC address"); |
| 7963 | } |
| 7964 | } |
| 7965 | |
| 7966 | set_ps(intf, dut, 0); |
| 7967 | |
Jouni Malinen | ba63045 | 2018-06-22 11:49:59 +0300 | [diff] [blame] | 7968 | if (dut->program == PROGRAM_HS2 || dut->program == PROGRAM_HS2_R2 || |
| 7969 | dut->program == PROGRAM_HS2_R3) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7970 | wpa_command(intf, "SET interworking 1"); |
| 7971 | wpa_command(intf, "SET hs20 1"); |
| 7972 | } |
| 7973 | |
Deepak Dhamdhere | 0fe0e45 | 2017-12-18 14:52:09 -0800 | [diff] [blame] | 7974 | if (dut->program == PROGRAM_HS2_R2 || |
Jouni Malinen | ba63045 | 2018-06-22 11:49:59 +0300 | [diff] [blame] | 7975 | dut->program == PROGRAM_HS2_R3 || |
Deepak Dhamdhere | 0fe0e45 | 2017-12-18 14:52:09 -0800 | [diff] [blame] | 7976 | dut->program == PROGRAM_OCE) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 7977 | wpa_command(intf, "SET pmf 1"); |
| 7978 | } else { |
| 7979 | wpa_command(intf, "SET pmf 0"); |
| 7980 | } |
| 7981 | |
| 7982 | hs2_clear_credentials(intf); |
| 7983 | wpa_command(intf, "SET hessid 00:00:00:00:00:00"); |
| 7984 | wpa_command(intf, "SET access_network_type 15"); |
| 7985 | |
| 7986 | static_ip_file(0, NULL, NULL, NULL); |
| 7987 | kill_dhcp_client(dut, intf); |
| 7988 | clear_ip_addr(dut, intf); |
| 7989 | |
| 7990 | dut->er_oper_performed = 0; |
| 7991 | dut->er_oper_bssid[0] = '\0'; |
| 7992 | |
priyadharshini gowthaman | ad6cbba | 2016-10-04 10:39:58 -0700 | [diff] [blame] | 7993 | if (dut->program == PROGRAM_LOC) { |
| 7994 | /* Disable Interworking by default */ |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 7995 | wpa_command(get_station_ifname(dut), "SET interworking 0"); |
priyadharshini gowthaman | ad6cbba | 2016-10-04 10:39:58 -0700 | [diff] [blame] | 7996 | } |
| 7997 | |
Ashwini Patil | 0040258 | 2017-04-13 12:29:39 +0530 | [diff] [blame] | 7998 | if (dut->program == PROGRAM_MBO) { |
| 7999 | free(dut->non_pref_ch_list); |
| 8000 | dut->non_pref_ch_list = NULL; |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 8001 | free(dut->btm_query_cand_list); |
| 8002 | dut->btm_query_cand_list = NULL; |
Ashwini Patil | c63161e | 2017-04-13 16:30:23 +0530 | [diff] [blame] | 8003 | wpa_command(intf, "SET reject_btm_req_reason 0"); |
Ashwini Patil | a75de5a | 2017-04-13 16:35:05 +0530 | [diff] [blame] | 8004 | wpa_command(intf, "SET ignore_assoc_disallow 0"); |
Ashwini Patil | d174f2c | 2017-04-13 16:49:46 +0530 | [diff] [blame] | 8005 | wpa_command(intf, "SET gas_address3 0"); |
Ashwini Patil | 9183fdb | 2017-04-13 16:58:25 +0530 | [diff] [blame] | 8006 | wpa_command(intf, "SET roaming 1"); |
Ankita Bajaj | 1d97455 | 2018-09-18 16:56:44 +0530 | [diff] [blame] | 8007 | wpa_command(intf, "SET interworking 1"); |
Ashwini Patil | 0040258 | 2017-04-13 12:29:39 +0530 | [diff] [blame] | 8008 | } |
| 8009 | |
Jouni Malinen | 3c367e8 | 2017-06-23 17:01:47 +0300 | [diff] [blame] | 8010 | free(dut->rsne_override); |
| 8011 | dut->rsne_override = NULL; |
| 8012 | |
Jouni Malinen | 6814313 | 2017-09-02 02:34:08 +0300 | [diff] [blame] | 8013 | free(dut->sae_commit_override); |
| 8014 | dut->sae_commit_override = NULL; |
Jouni Malinen | 4b3769d | 2019-10-10 16:20:29 +0300 | [diff] [blame] | 8015 | wpa_command(intf, "SET sae_pmkid_in_assoc 0"); |
Jouni Malinen | 11e5521 | 2019-11-22 21:46:59 +0200 | [diff] [blame] | 8016 | dut->sae_pwe = SAE_PWE_DEFAULT; |
Jouni Malinen | 6814313 | 2017-09-02 02:34:08 +0300 | [diff] [blame] | 8017 | |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 8018 | dut->sta_associate_wait_connect = 0; |
| 8019 | dut->server_cert_hash[0] = '\0'; |
Jouni Malinen | 37d5c69 | 2019-08-19 16:56:55 +0300 | [diff] [blame] | 8020 | dut->server_cert_tod = 0; |
Jouni Malinen | 134fe3c | 2019-06-12 04:16:49 +0300 | [diff] [blame] | 8021 | dut->sta_tod_policy = 0; |
| 8022 | |
Jouni Malinen | d86e582 | 2017-08-29 03:55:32 +0300 | [diff] [blame] | 8023 | dut->dpp_conf_id = -1; |
Jouni Malinen | b1dd21f | 2017-11-13 19:14:29 +0200 | [diff] [blame] | 8024 | free(dut->dpp_peer_uri); |
| 8025 | dut->dpp_peer_uri = NULL; |
Jouni Malinen | 63d5041 | 2017-11-24 11:55:38 +0200 | [diff] [blame] | 8026 | dut->dpp_local_bootstrap = -1; |
Jouni Malinen | 5011fb5 | 2017-12-05 21:00:15 +0200 | [diff] [blame] | 8027 | wpa_command(intf, "SET dpp_config_processing 2"); |
Jouni Malinen | 90776b1 | 2020-05-04 15:34:46 +0300 | [diff] [blame] | 8028 | wpa_command(intf, "SET dpp_mud_url "); |
Jouni Malinen | d86e582 | 2017-08-29 03:55:32 +0300 | [diff] [blame] | 8029 | |
Jouni Malinen | fac9cad | 2017-10-10 18:35:55 +0300 | [diff] [blame] | 8030 | wpa_command(intf, "VENDOR_ELEM_REMOVE 13 *"); |
| 8031 | |
vamsi krishna | a279949 | 2017-12-05 14:28:01 +0530 | [diff] [blame] | 8032 | if (dut->program == PROGRAM_OCE) { |
Ankita Bajaj | a2cb567 | 2017-10-25 16:08:28 +0530 | [diff] [blame] | 8033 | wpa_command(intf, "SET oce 1"); |
vamsi krishna | a279949 | 2017-12-05 14:28:01 +0530 | [diff] [blame] | 8034 | wpa_command(intf, "SET disable_fils 0"); |
Ankita Bajaj | 1bde794 | 2018-01-09 19:15:01 +0530 | [diff] [blame] | 8035 | wpa_command(intf, "FILS_HLP_REQ_FLUSH"); |
| 8036 | dut->fils_hlp = 0; |
| 8037 | #ifdef ANDROID |
| 8038 | hlp_thread_cleanup(dut); |
| 8039 | #endif /* ANDROID */ |
vamsi krishna | a279949 | 2017-12-05 14:28:01 +0530 | [diff] [blame] | 8040 | } |
Ankita Bajaj | a2cb567 | 2017-10-25 16:08:28 +0530 | [diff] [blame] | 8041 | |
Vamsi Krishna | f642d6a | 2020-03-27 12:33:14 +0530 | [diff] [blame] | 8042 | if (dut->program == PROGRAM_QM) |
| 8043 | wpa_command(intf, "SET interworking 1"); |
| 8044 | |
Jouni Malinen | 8179fee | 2019-03-28 03:19:47 +0200 | [diff] [blame] | 8045 | dut->akm_values = 0; |
Jouni Malinen | 6a7c9b4 | 2019-08-20 00:15:59 +0300 | [diff] [blame] | 8046 | dut->sta_ft_ds = 0; |
Jouni Malinen | 8179fee | 2019-03-28 03:19:47 +0200 | [diff] [blame] | 8047 | |
Sunil Dutt | 076081f | 2018-02-05 19:45:50 +0530 | [diff] [blame] | 8048 | #ifdef NL80211_SUPPORT |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 8049 | if (get_driver_type(dut) == DRIVER_WCN && |
Sunil Dutt | 4459508 | 2018-02-12 19:41:45 +0530 | [diff] [blame] | 8050 | dut->config_rsnie == 1) { |
| 8051 | dut->config_rsnie = 0; |
| 8052 | sta_config_rsnie(dut, 0); |
Sunil Dutt | 076081f | 2018-02-05 19:45:50 +0530 | [diff] [blame] | 8053 | } |
| 8054 | #endif /* NL80211_SUPPORT */ |
| 8055 | |
Sunil Dutt | febf8a8 | 2018-02-09 18:50:13 +0530 | [diff] [blame] | 8056 | if (dev_role && strcasecmp(dev_role, "STA-CFON") == 0) { |
| 8057 | dut->dev_role = DEVROLE_STA_CFON; |
| 8058 | return sta_cfon_reset_default(dut, conn, cmd); |
| 8059 | } |
| 8060 | |
Jouni Malinen | 439352d | 2018-09-13 03:42:23 +0300 | [diff] [blame] | 8061 | wpa_command(intf, "SET setband AUTO"); |
| 8062 | |
Vamsi Krishna | c1633d2 | 2020-05-06 18:31:21 +0530 | [diff] [blame] | 8063 | dut->ocvc = 0; |
Jouni Malinen | 67433fc | 2020-06-26 22:50:33 +0300 | [diff] [blame] | 8064 | dut->client_privacy = 0; |
Vamsi Krishna | c1633d2 | 2020-05-06 18:31:21 +0530 | [diff] [blame] | 8065 | |
Sunil Dutt | febf8a8 | 2018-02-09 18:50:13 +0530 | [diff] [blame] | 8066 | if (dut->program != PROGRAM_VHT) |
| 8067 | return cmd_sta_p2p_reset(dut, conn, cmd); |
| 8068 | |
Priyadharshini Gowthaman | a7dfd49 | 2015-11-09 14:34:08 -0800 | [diff] [blame] | 8069 | return 1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8070 | } |
| 8071 | |
| 8072 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 8073 | static enum sigma_cmd_result cmd_sta_get_events(struct sigma_dut *dut, |
| 8074 | struct sigma_conn *conn, |
| 8075 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8076 | { |
| 8077 | const char *program = get_param(cmd, "Program"); |
| 8078 | |
| 8079 | if (program == NULL) |
| 8080 | return -1; |
| 8081 | #ifdef ANDROID_NAN |
| 8082 | if (strcasecmp(program, "NAN") == 0) |
| 8083 | return nan_cmd_sta_get_events(dut, conn, cmd); |
| 8084 | #endif /* ANDROID_NAN */ |
| 8085 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter"); |
| 8086 | return 0; |
| 8087 | } |
| 8088 | |
| 8089 | |
Jouni Malinen | 8290520 | 2018-04-29 17:20:10 +0300 | [diff] [blame] | 8090 | static int sta_exec_action_url(struct sigma_dut *dut, struct sigma_conn *conn, |
| 8091 | struct sigma_cmd *cmd) |
| 8092 | { |
| 8093 | const char *url = get_param(cmd, "url"); |
| 8094 | const char *method = get_param(cmd, "method"); |
| 8095 | pid_t pid; |
| 8096 | int status; |
| 8097 | |
| 8098 | if (!url || !method) |
| 8099 | return -1; |
| 8100 | |
| 8101 | /* TODO: Add support for method,post */ |
| 8102 | if (strcasecmp(method, "get") != 0) { |
| 8103 | send_resp(dut, conn, SIGMA_ERROR, |
| 8104 | "ErrorCode,Unsupported method"); |
| 8105 | return 0; |
| 8106 | } |
| 8107 | |
| 8108 | pid = fork(); |
| 8109 | if (pid < 0) { |
| 8110 | perror("fork"); |
| 8111 | return -1; |
| 8112 | } |
| 8113 | |
| 8114 | if (pid == 0) { |
| 8115 | char * argv[5] = { "wget", "-O", "/dev/null", |
| 8116 | (char *) url, NULL }; |
| 8117 | |
| 8118 | execv("/usr/bin/wget", argv); |
| 8119 | perror("execv"); |
| 8120 | exit(0); |
| 8121 | return -1; |
| 8122 | } |
| 8123 | |
| 8124 | if (waitpid(pid, &status, 0) < 0) { |
| 8125 | perror("waitpid"); |
| 8126 | return -1; |
| 8127 | } |
| 8128 | |
| 8129 | if (WIFEXITED(status)) { |
| 8130 | const char *errmsg; |
| 8131 | |
| 8132 | if (WEXITSTATUS(status) == 0) |
| 8133 | return 1; |
| 8134 | sigma_dut_print(dut, DUT_MSG_INFO, "wget exit status %d", |
| 8135 | WEXITSTATUS(status)); |
| 8136 | switch (WEXITSTATUS(status)) { |
| 8137 | case 4: |
| 8138 | errmsg = "errmsg,Network failure"; |
| 8139 | break; |
| 8140 | case 8: |
| 8141 | errmsg = "errmsg,Server issued an error response"; |
| 8142 | break; |
| 8143 | default: |
| 8144 | errmsg = "errmsg,Unknown failure from wget"; |
| 8145 | break; |
| 8146 | } |
| 8147 | send_resp(dut, conn, SIGMA_ERROR, errmsg); |
| 8148 | return 0; |
| 8149 | } |
| 8150 | |
| 8151 | send_resp(dut, conn, SIGMA_ERROR, "errmsg,Unknown failure"); |
| 8152 | return 0; |
| 8153 | } |
| 8154 | |
| 8155 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 8156 | static enum sigma_cmd_result cmd_sta_exec_action(struct sigma_dut *dut, |
| 8157 | struct sigma_conn *conn, |
| 8158 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8159 | { |
| 8160 | const char *program = get_param(cmd, "Prog"); |
| 8161 | |
Jouni Malinen | 8290520 | 2018-04-29 17:20:10 +0300 | [diff] [blame] | 8162 | if (program && !get_param(cmd, "interface")) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8163 | return -1; |
| 8164 | #ifdef ANDROID_NAN |
Jouni Malinen | 8290520 | 2018-04-29 17:20:10 +0300 | [diff] [blame] | 8165 | if (program && strcasecmp(program, "NAN") == 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8166 | return nan_cmd_sta_exec_action(dut, conn, cmd); |
| 8167 | #endif /* ANDROID_NAN */ |
Jouni Malinen | 8290520 | 2018-04-29 17:20:10 +0300 | [diff] [blame] | 8168 | |
| 8169 | if (program && strcasecmp(program, "Loc") == 0) |
priyadharshini gowthaman | d66913a | 2016-07-29 15:11:17 -0700 | [diff] [blame] | 8170 | return loc_cmd_sta_exec_action(dut, conn, cmd); |
Jouni Malinen | 8290520 | 2018-04-29 17:20:10 +0300 | [diff] [blame] | 8171 | |
| 8172 | if (get_param(cmd, "url")) |
| 8173 | return sta_exec_action_url(dut, conn, cmd); |
| 8174 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8175 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter"); |
| 8176 | return 0; |
| 8177 | } |
| 8178 | |
| 8179 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 8180 | static enum sigma_cmd_result cmd_sta_set_11n(struct sigma_dut *dut, |
| 8181 | struct sigma_conn *conn, |
| 8182 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8183 | { |
| 8184 | const char *intf = get_param(cmd, "Interface"); |
| 8185 | const char *val, *mcs32, *rate; |
| 8186 | |
| 8187 | val = get_param(cmd, "GREENFIELD"); |
| 8188 | if (val) { |
| 8189 | if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) { |
| 8190 | /* Enable GD */ |
| 8191 | send_resp(dut, conn, SIGMA_ERROR, |
| 8192 | "ErrorCode,GF not supported"); |
| 8193 | return 0; |
| 8194 | } |
| 8195 | } |
| 8196 | |
| 8197 | val = get_param(cmd, "SGI20"); |
| 8198 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 8199 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8200 | case DRIVER_ATHEROS: |
| 8201 | ath_sta_set_sgi(dut, intf, val); |
| 8202 | break; |
| 8203 | default: |
| 8204 | send_resp(dut, conn, SIGMA_ERROR, |
| 8205 | "ErrorCode,SGI20 not supported"); |
| 8206 | return 0; |
| 8207 | } |
| 8208 | } |
| 8209 | |
| 8210 | mcs32 = get_param(cmd, "MCS32"); /* HT Duplicate Mode Enable/Disable */ |
| 8211 | rate = get_param(cmd, "MCS_FIXEDRATE"); /* Fixed MCS rate (0..31) */ |
| 8212 | if (mcs32 && rate) { |
| 8213 | /* TODO */ |
| 8214 | send_resp(dut, conn, SIGMA_ERROR, |
| 8215 | "ErrorCode,MCS32,MCS_FIXEDRATE not supported"); |
| 8216 | return 0; |
| 8217 | } else if (mcs32 && !rate) { |
| 8218 | /* TODO */ |
| 8219 | send_resp(dut, conn, SIGMA_ERROR, |
| 8220 | "ErrorCode,MCS32 not supported"); |
| 8221 | return 0; |
| 8222 | } else if (!mcs32 && rate) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 8223 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8224 | case DRIVER_ATHEROS: |
Priyadharshini Gowthaman | 8c5b9a4 | 2019-07-31 14:38:48 -0700 | [diff] [blame] | 8225 | novap_reset(dut, intf, 1); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8226 | ath_sta_set_11nrates(dut, intf, rate); |
| 8227 | break; |
| 8228 | default: |
| 8229 | send_resp(dut, conn, SIGMA_ERROR, |
| 8230 | "ErrorCode,MCS32_FIXEDRATE not supported"); |
| 8231 | return 0; |
| 8232 | } |
| 8233 | } |
| 8234 | |
| 8235 | return cmd_sta_set_wireless_common(intf, dut, conn, cmd); |
| 8236 | } |
| 8237 | |
| 8238 | |
Arif Hussain | 7b47d2d | 2018-05-09 10:44:02 -0700 | [diff] [blame] | 8239 | static void cmd_set_max_he_mcs(struct sigma_dut *dut, const char *intf, |
| 8240 | int mcs_config) |
| 8241 | { |
| 8242 | #ifdef NL80211_SUPPORT |
| 8243 | int ret; |
| 8244 | |
| 8245 | switch (mcs_config) { |
| 8246 | case HE_80_MCS0_7: |
| 8247 | case HE_80_MCS0_9: |
| 8248 | case HE_80_MCS0_11: |
| 8249 | ret = sta_set_he_mcs(dut, intf, mcs_config); |
| 8250 | if (ret) { |
| 8251 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8252 | "cmd_set_max_he_mcs: Setting of MCS:%d failed, ret:%d", |
| 8253 | mcs_config, ret); |
| 8254 | } |
| 8255 | break; |
| 8256 | default: |
| 8257 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8258 | "cmd_set_max_he_mcs: Invalid mcs %d", |
| 8259 | mcs_config); |
| 8260 | break; |
| 8261 | } |
| 8262 | #else /* NL80211_SUPPORT */ |
| 8263 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8264 | "max HE MCS cannot be changed without NL80211_SUPPORT defined"); |
| 8265 | #endif /* NL80211_SUPPORT */ |
| 8266 | } |
| 8267 | |
| 8268 | |
Arif Hussain | 480d5f4 | 2019-03-12 14:40:42 -0700 | [diff] [blame] | 8269 | static int sta_twt_request(struct sigma_dut *dut, struct sigma_conn *conn, |
| 8270 | struct sigma_cmd *cmd) |
| 8271 | { |
| 8272 | #ifdef NL80211_SUPPORT |
| 8273 | struct nlattr *params; |
| 8274 | struct nlattr *attr; |
| 8275 | struct nlattr *attr1; |
| 8276 | struct nl_msg *msg; |
| 8277 | int ifindex, ret; |
| 8278 | const char *val; |
| 8279 | const char *intf = get_param(cmd, "Interface"); |
| 8280 | int wake_interval_exp = 10, nominal_min_wake_dur = 255, |
| 8281 | wake_interval_mantissa = 512; |
| 8282 | int flow_type = 0, twt_trigger = 0, target_wake_time = 0, |
| 8283 | protection = 0; |
| 8284 | |
| 8285 | ifindex = if_nametoindex(intf); |
| 8286 | if (ifindex == 0) { |
| 8287 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8288 | "%s: Index for interface %s failed", |
| 8289 | __func__, intf); |
| 8290 | return -1; |
| 8291 | } |
| 8292 | |
| 8293 | val = get_param(cmd, "FlowType"); |
| 8294 | if (val) { |
| 8295 | flow_type = atoi(val); |
| 8296 | if (flow_type != 0 && flow_type != 1) { |
| 8297 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8298 | "TWT: Invalid FlowType %d", flow_type); |
| 8299 | return -1; |
| 8300 | } |
| 8301 | } |
| 8302 | |
| 8303 | val = get_param(cmd, "TWT_Trigger"); |
| 8304 | if (val) { |
| 8305 | twt_trigger = atoi(val); |
| 8306 | if (twt_trigger != 0 && twt_trigger != 1) { |
| 8307 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8308 | "TWT: Invalid TWT_Trigger %d", |
| 8309 | twt_trigger); |
| 8310 | return -1; |
| 8311 | } |
| 8312 | } |
| 8313 | |
| 8314 | val = get_param(cmd, "Protection"); |
| 8315 | if (val) { |
| 8316 | protection = atoi(val); |
| 8317 | if (protection != 0 && protection != 1) { |
| 8318 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8319 | "TWT: Invalid Protection %d", |
| 8320 | protection); |
| 8321 | return -1; |
| 8322 | } |
| 8323 | } |
| 8324 | |
| 8325 | val = get_param(cmd, "TargetWakeTime"); |
| 8326 | if (val) |
| 8327 | target_wake_time = atoi(val); |
| 8328 | |
| 8329 | val = get_param(cmd, "WakeIntervalMantissa"); |
| 8330 | if (val) |
| 8331 | wake_interval_mantissa = atoi(val); |
| 8332 | |
| 8333 | val = get_param(cmd, "WakeIntervalExp"); |
| 8334 | if (val) |
| 8335 | wake_interval_exp = atoi(val); |
| 8336 | |
| 8337 | val = get_param(cmd, "NominalMinWakeDur"); |
| 8338 | if (val) |
| 8339 | nominal_min_wake_dur = atoi(val); |
| 8340 | |
| 8341 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 8342 | NL80211_CMD_VENDOR)) || |
| 8343 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 8344 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 8345 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 8346 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 8347 | !(attr = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 8348 | !(params = nla_nest_start( |
| 8349 | msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_TWT_SETUP)) || |
| 8350 | !(attr1 = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 8351 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_INTVL_EXP, |
| 8352 | wake_interval_exp) || |
Arif Hussain | 480d5f4 | 2019-03-12 14:40:42 -0700 | [diff] [blame] | 8353 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_REQ_TYPE, 1) || |
Kiran Kumar Lokere | 2cffae5 | 2019-09-26 18:44:15 -0700 | [diff] [blame] | 8354 | (twt_trigger && |
| 8355 | nla_put_flag(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_TRIGGER)) || |
Arif Hussain | 480d5f4 | 2019-03-12 14:40:42 -0700 | [diff] [blame] | 8356 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_FLOW_TYPE, |
| 8357 | flow_type) || |
Kiran Kumar Lokere | 2cffae5 | 2019-09-26 18:44:15 -0700 | [diff] [blame] | 8358 | (protection && |
| 8359 | nla_put_flag(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_PROTECTION)) || |
Arif Hussain | 480d5f4 | 2019-03-12 14:40:42 -0700 | [diff] [blame] | 8360 | nla_put_u32(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_TIME, |
| 8361 | target_wake_time) || |
| 8362 | nla_put_u32(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_DURATION, |
| 8363 | nominal_min_wake_dur) || |
| 8364 | nla_put_u32(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_INTVL_MANTISSA, |
| 8365 | wake_interval_mantissa)) { |
| 8366 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8367 | "%s: err in adding vendor_cmd and vendor_data", |
| 8368 | __func__); |
| 8369 | nlmsg_free(msg); |
| 8370 | return -1; |
| 8371 | } |
| 8372 | nla_nest_end(msg, attr1); |
| 8373 | nla_nest_end(msg, params); |
| 8374 | nla_nest_end(msg, attr); |
| 8375 | |
| 8376 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 8377 | if (ret) { |
| 8378 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8379 | "%s: err in send_and_recv_msgs, ret=%d", |
| 8380 | __func__, ret); |
| 8381 | } |
| 8382 | |
| 8383 | return ret; |
| 8384 | #else /* NL80211_SUPPORT */ |
| 8385 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8386 | "TWT request cannot be done without NL80211_SUPPORT defined"); |
| 8387 | return -1; |
| 8388 | #endif /* NL80211_SUPPORT */ |
| 8389 | } |
| 8390 | |
| 8391 | |
| 8392 | static int sta_twt_teardown(struct sigma_dut *dut, struct sigma_conn *conn, |
| 8393 | struct sigma_cmd *cmd) |
| 8394 | { |
| 8395 | #ifdef NL80211_SUPPORT |
| 8396 | struct nlattr *params; |
| 8397 | struct nlattr *attr; |
| 8398 | struct nlattr *attr1; |
| 8399 | int ifindex, ret; |
| 8400 | struct nl_msg *msg; |
| 8401 | const char *intf = get_param(cmd, "Interface"); |
| 8402 | |
| 8403 | ifindex = if_nametoindex(intf); |
| 8404 | if (ifindex == 0) { |
| 8405 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8406 | "%s: Index for interface %s failed", |
| 8407 | __func__, intf); |
| 8408 | return -1; |
| 8409 | } |
| 8410 | |
| 8411 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 8412 | NL80211_CMD_VENDOR)) || |
| 8413 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 8414 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 8415 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 8416 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 8417 | !(attr = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 8418 | !(params = nla_nest_start( |
| 8419 | msg, |
| 8420 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_TWT_TERMINATE)) || |
| 8421 | !(attr1 = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 8422 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_TWT_SETUP_FLOW_TYPE, 0)) { |
| 8423 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8424 | "%s: err in adding vendor_cmd and vendor_data", |
| 8425 | __func__); |
| 8426 | nlmsg_free(msg); |
| 8427 | return -1; |
| 8428 | } |
| 8429 | nla_nest_end(msg, attr1); |
| 8430 | nla_nest_end(msg, params); |
| 8431 | nla_nest_end(msg, attr); |
| 8432 | |
| 8433 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 8434 | if (ret) { |
| 8435 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8436 | "%s: err in send_and_recv_msgs, ret=%d", |
| 8437 | __func__, ret); |
| 8438 | } |
| 8439 | |
| 8440 | return ret; |
| 8441 | #else /* NL80211_SUPPORT */ |
| 8442 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8443 | "TWT teardown cannot be done without NL80211_SUPPORT defined"); |
| 8444 | return -1; |
| 8445 | #endif /* NL80211_SUPPORT */ |
| 8446 | } |
| 8447 | |
| 8448 | |
Kiran Kumar Lokere | 50eb2cd | 2018-12-18 18:31:28 -0800 | [diff] [blame] | 8449 | static int sta_transmit_omi(struct sigma_dut *dut, struct sigma_conn *conn, |
| 8450 | struct sigma_cmd *cmd) |
| 8451 | { |
| 8452 | #ifdef NL80211_SUPPORT |
| 8453 | struct nlattr *params; |
| 8454 | struct nlattr *attr; |
| 8455 | struct nlattr *attr1; |
| 8456 | struct nl_msg *msg; |
| 8457 | int ifindex, ret; |
| 8458 | const char *val; |
| 8459 | const char *intf = get_param(cmd, "Interface"); |
| 8460 | uint8_t rx_nss = 0xFF, ch_bw = 0xFF, tx_nsts = 0xFF, ulmu_dis = 0, |
| 8461 | ulmu_data_dis = 0; |
| 8462 | |
| 8463 | ifindex = if_nametoindex(intf); |
| 8464 | if (ifindex == 0) { |
| 8465 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8466 | "%s: Index for interface %s failed", |
| 8467 | __func__, intf); |
| 8468 | return -1; |
| 8469 | } |
| 8470 | val = get_param(cmd, "OMCtrl_RxNSS"); |
| 8471 | if (val) |
| 8472 | rx_nss = atoi(val); |
| 8473 | |
| 8474 | val = get_param(cmd, "OMCtrl_ChnlWidth"); |
| 8475 | if (val) |
| 8476 | ch_bw = atoi(val); |
| 8477 | |
| 8478 | val = get_param(cmd, "OMCtrl_ULMUDisable"); |
| 8479 | if (val) |
| 8480 | ulmu_dis = atoi(val); |
| 8481 | |
| 8482 | val = get_param(cmd, "OMCtrl_TxNSTS"); |
| 8483 | if (val) |
| 8484 | tx_nsts = atoi(val); |
| 8485 | |
| 8486 | val = get_param(cmd, "OMCtrl_ULMUDataDisable"); |
| 8487 | if (val) |
| 8488 | ulmu_data_dis = atoi(val); |
| 8489 | |
| 8490 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 8491 | NL80211_CMD_VENDOR)) || |
| 8492 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 8493 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 8494 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 8495 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 8496 | !(attr = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 8497 | !(params = nla_nest_start( |
| 8498 | msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_OMI_TX)) || |
| 8499 | !(attr1 = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 8500 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_HE_OMI_RX_NSS, rx_nss) || |
| 8501 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_HE_OMI_CH_BW, ch_bw) || |
| 8502 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_HE_OMI_TX_NSTS, tx_nsts) || |
| 8503 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_HE_OMI_ULMU_DATA_DISABLE, |
| 8504 | ulmu_data_dis) || |
| 8505 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_HE_OMI_ULMU_DISABLE, |
| 8506 | ulmu_dis)) { |
| 8507 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8508 | "%s: err in adding vendor_cmd and vendor_data", |
| 8509 | __func__); |
| 8510 | nlmsg_free(msg); |
| 8511 | return -1; |
| 8512 | } |
| 8513 | nla_nest_end(msg, attr1); |
| 8514 | nla_nest_end(msg, params); |
| 8515 | nla_nest_end(msg, attr); |
| 8516 | |
| 8517 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 8518 | if (ret) { |
| 8519 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8520 | "%s: err in send_and_recv_msgs, ret=%d", |
| 8521 | __func__, ret); |
| 8522 | } |
| 8523 | |
| 8524 | return ret; |
| 8525 | #else /* NL80211_SUPPORT */ |
| 8526 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8527 | "OMI TX cannot be processed without NL80211_SUPPORT defined"); |
| 8528 | return -1; |
| 8529 | #endif /* NL80211_SUPPORT */ |
| 8530 | } |
| 8531 | |
| 8532 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8533 | static int cmd_sta_set_wireless_vht(struct sigma_dut *dut, |
| 8534 | struct sigma_conn *conn, |
| 8535 | struct sigma_cmd *cmd) |
| 8536 | { |
| 8537 | const char *intf = get_param(cmd, "Interface"); |
| 8538 | const char *val; |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8539 | const char *program; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8540 | int tkip = -1; |
| 8541 | int wep = -1; |
| 8542 | |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8543 | program = get_param(cmd, "Program"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8544 | val = get_param(cmd, "SGI80"); |
| 8545 | if (val) { |
| 8546 | int sgi80; |
| 8547 | |
| 8548 | sgi80 = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0; |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8549 | run_iwpriv(dut, intf, "shortgi %d", sgi80); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8550 | } |
| 8551 | |
| 8552 | val = get_param(cmd, "TxBF"); |
| 8553 | if (val && (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0)) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 8554 | switch (get_driver_type(dut)) { |
Kiran Kumar Lokere | cb57d82 | 2018-07-06 16:37:42 -0700 | [diff] [blame] | 8555 | case DRIVER_WCN: |
| 8556 | if (sta_set_tx_beamformee(dut, intf, 1)) { |
| 8557 | send_resp(dut, conn, SIGMA_ERROR, |
| 8558 | "ErrorCode,Failed to set TX beamformee enable"); |
| 8559 | return 0; |
| 8560 | } |
| 8561 | break; |
| 8562 | case DRIVER_ATHEROS: |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8563 | if (run_iwpriv(dut, intf, "vhtsubfee 1") < 0) { |
Kiran Kumar Lokere | cb57d82 | 2018-07-06 16:37:42 -0700 | [diff] [blame] | 8564 | send_resp(dut, conn, SIGMA_ERROR, |
| 8565 | "ErrorCode,Setting vhtsubfee failed"); |
| 8566 | return 0; |
| 8567 | } |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8568 | if (run_iwpriv(dut, intf, "vhtsubfer 1") < 0) { |
Kiran Kumar Lokere | cb57d82 | 2018-07-06 16:37:42 -0700 | [diff] [blame] | 8569 | send_resp(dut, conn, SIGMA_ERROR, |
| 8570 | "ErrorCode,Setting vhtsubfer failed"); |
| 8571 | return 0; |
| 8572 | } |
| 8573 | break; |
| 8574 | default: |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8575 | sigma_dut_print(dut, DUT_MSG_ERROR, |
Kiran Kumar Lokere | cb57d82 | 2018-07-06 16:37:42 -0700 | [diff] [blame] | 8576 | "Unsupported driver type"); |
| 8577 | break; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8578 | } |
| 8579 | } |
| 8580 | |
| 8581 | val = get_param(cmd, "MU_TxBF"); |
| 8582 | if (val && (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0)) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 8583 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8584 | case DRIVER_ATHEROS: |
| 8585 | ath_sta_set_txsp_stream(dut, intf, "1SS"); |
| 8586 | ath_sta_set_rxsp_stream(dut, intf, "1SS"); |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8587 | run_iwpriv(dut, intf, "vhtmubfee 1"); |
| 8588 | run_iwpriv(dut, intf, "vhtmubfer 1"); |
Sunil Dutt | ae9e5d1 | 2018-06-29 11:50:47 +0530 | [diff] [blame] | 8589 | break; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8590 | case DRIVER_WCN: |
| 8591 | if (wcn_sta_set_sp_stream(dut, intf, "1SS") < 0) { |
| 8592 | send_resp(dut, conn, SIGMA_ERROR, |
| 8593 | "ErrorCode,Failed to set RX/TXSP_STREAM"); |
| 8594 | return 0; |
| 8595 | } |
Sunil Dutt | ae9e5d1 | 2018-06-29 11:50:47 +0530 | [diff] [blame] | 8596 | break; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8597 | default: |
| 8598 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8599 | "Setting SP_STREAM not supported"); |
| 8600 | break; |
| 8601 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8602 | } |
| 8603 | |
| 8604 | val = get_param(cmd, "LDPC"); |
| 8605 | if (val) { |
| 8606 | int ldpc; |
| 8607 | |
| 8608 | ldpc = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0; |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8609 | run_iwpriv(dut, intf, "ldpc %d", ldpc); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8610 | } |
| 8611 | |
Amarnath Hullur Subramanyam | 7bae60e | 2018-01-31 03:46:50 -0800 | [diff] [blame] | 8612 | val = get_param(cmd, "BCC"); |
| 8613 | if (val) { |
| 8614 | int bcc; |
| 8615 | |
| 8616 | bcc = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0; |
| 8617 | /* use LDPC iwpriv itself to set bcc coding, bcc coding |
| 8618 | * is mutually exclusive to bcc */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8619 | run_iwpriv(dut, intf, "ldpc %d", !bcc); |
Amarnath Hullur Subramanyam | 7bae60e | 2018-01-31 03:46:50 -0800 | [diff] [blame] | 8620 | } |
| 8621 | |
Arif Hussain | 7b47d2d | 2018-05-09 10:44:02 -0700 | [diff] [blame] | 8622 | val = get_param(cmd, "MaxHE-MCS_1SS_RxMapLTE80"); |
| 8623 | if (val && dut->sta_nss == 1) |
| 8624 | cmd_set_max_he_mcs(dut, intf, atoi(val)); |
| 8625 | |
| 8626 | val = get_param(cmd, "MaxHE-MCS_2SS_RxMapLTE80"); |
| 8627 | if (val && dut->sta_nss == 2) |
| 8628 | cmd_set_max_he_mcs(dut, intf, atoi(val)); |
| 8629 | |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 8630 | val = get_param(cmd, "MCS_FixedRate"); |
| 8631 | if (val) { |
| 8632 | #ifdef NL80211_SUPPORT |
| 8633 | int mcs, ratecode = 0; |
| 8634 | enum he_mcs_config mcs_config; |
| 8635 | int ret; |
Jouni Malinen | b9b671d | 2019-04-26 13:23:17 +0300 | [diff] [blame] | 8636 | char buf[60]; |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 8637 | |
| 8638 | ratecode = (0x07 & dut->sta_nss) << 5; |
| 8639 | mcs = atoi(val); |
| 8640 | /* Add the MCS to the ratecode */ |
| 8641 | if (mcs >= 0 && mcs <= 11) { |
| 8642 | ratecode += mcs; |
| 8643 | if (dut->device_type == STA_testbed && |
| 8644 | mcs > 7 && mcs <= 11) { |
| 8645 | if (mcs <= 9) |
| 8646 | mcs_config = HE_80_MCS0_9; |
| 8647 | else |
| 8648 | mcs_config = HE_80_MCS0_11; |
| 8649 | ret = sta_set_he_mcs(dut, intf, mcs_config); |
| 8650 | if (ret) { |
| 8651 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8652 | "MCS_FixedRate: mcs setting failed, mcs:%d, mcs_config %d, ret:%d", |
| 8653 | mcs, mcs_config, ret); |
| 8654 | } |
| 8655 | } |
| 8656 | snprintf(buf, sizeof(buf), |
| 8657 | "iwpriv %s set_11ax_rate 0x%03x", |
| 8658 | intf, ratecode); |
| 8659 | if (system(buf) != 0) { |
| 8660 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8661 | "MCS_FixedRate: iwpriv setting of 11ax rates 0x%03x failed", |
| 8662 | ratecode); |
| 8663 | } |
| 8664 | } else { |
| 8665 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8666 | "MCS_FixedRate: HE MCS %d not supported", |
| 8667 | mcs); |
| 8668 | } |
| 8669 | #else /* NL80211_SUPPORT */ |
| 8670 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8671 | "MCS_FixedRate cannot be changed without NL80211_SUPPORT defined"); |
| 8672 | #endif /* NL80211_SUPPORT */ |
| 8673 | } |
| 8674 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8675 | val = get_param(cmd, "opt_md_notif_ie"); |
| 8676 | if (val) { |
| 8677 | char *result = NULL; |
| 8678 | char delim[] = ";"; |
| 8679 | char token[30]; |
| 8680 | int value, config_val = 0; |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 8681 | char *saveptr; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8682 | |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 8683 | strlcpy(token, val, sizeof(token)); |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 8684 | result = strtok_r(token, delim, &saveptr); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8685 | |
| 8686 | /* Extract the NSS information */ |
| 8687 | if (result) { |
| 8688 | value = atoi(result); |
| 8689 | switch (value) { |
| 8690 | case 1: |
| 8691 | config_val = 1; |
| 8692 | break; |
| 8693 | case 2: |
| 8694 | config_val = 3; |
| 8695 | break; |
| 8696 | case 3: |
| 8697 | config_val = 7; |
| 8698 | break; |
| 8699 | case 4: |
| 8700 | config_val = 15; |
| 8701 | break; |
| 8702 | default: |
| 8703 | config_val = 3; |
| 8704 | break; |
| 8705 | } |
| 8706 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8707 | run_iwpriv(dut, intf, "rxchainmask %d", config_val); |
| 8708 | run_iwpriv(dut, intf, "txchainmask %d", config_val); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8709 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8710 | } |
| 8711 | |
| 8712 | /* Extract the channel width information */ |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 8713 | result = strtok_r(NULL, delim, &saveptr); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8714 | if (result) { |
| 8715 | value = atoi(result); |
| 8716 | switch (value) { |
| 8717 | case 20: |
| 8718 | config_val = 0; |
| 8719 | break; |
| 8720 | case 40: |
| 8721 | config_val = 1; |
| 8722 | break; |
| 8723 | case 80: |
| 8724 | config_val = 2; |
| 8725 | break; |
| 8726 | case 160: |
| 8727 | config_val = 3; |
| 8728 | break; |
| 8729 | default: |
| 8730 | config_val = 2; |
| 8731 | break; |
| 8732 | } |
| 8733 | |
| 8734 | dut->chwidth = config_val; |
| 8735 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8736 | run_iwpriv(dut, intf, "chwidth %d", config_val); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8737 | } |
| 8738 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8739 | run_iwpriv(dut, intf, "opmode_notify 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8740 | } |
| 8741 | |
| 8742 | val = get_param(cmd, "nss_mcs_cap"); |
| 8743 | if (val) { |
| 8744 | int nss, mcs; |
| 8745 | char token[20]; |
| 8746 | char *result = NULL; |
| 8747 | unsigned int vht_mcsmap = 0; |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 8748 | char *saveptr; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8749 | |
Peng Xu | b8fc5cc | 2017-05-10 17:27:28 -0700 | [diff] [blame] | 8750 | strlcpy(token, val, sizeof(token)); |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 8751 | result = strtok_r(token, ";", &saveptr); |
Pradeep Reddy POTTETI | cd649a2 | 2016-01-29 12:55:59 +0530 | [diff] [blame] | 8752 | if (!result) { |
| 8753 | sigma_dut_print(dut, DUT_MSG_ERROR, |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8754 | "NSS not specified"); |
| 8755 | send_resp(dut, conn, SIGMA_ERROR, |
| 8756 | "errorCode,NSS not specified"); |
Pradeep Reddy POTTETI | cd649a2 | 2016-01-29 12:55:59 +0530 | [diff] [blame] | 8757 | return 0; |
| 8758 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8759 | nss = atoi(result); |
| 8760 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8761 | run_iwpriv(dut, intf, "nss %d", nss); |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 8762 | dut->sta_nss = nss; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8763 | |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 8764 | result = strtok_r(NULL, ";", &saveptr); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8765 | if (result == NULL) { |
| 8766 | sigma_dut_print(dut, DUT_MSG_ERROR, |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8767 | "MCS not specified"); |
| 8768 | send_resp(dut, conn, SIGMA_ERROR, |
| 8769 | "errorCode,MCS not specified"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8770 | return 0; |
| 8771 | } |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 8772 | result = strtok_r(result, "-", &saveptr); |
| 8773 | result = strtok_r(NULL, "-", &saveptr); |
Pradeep Reddy POTTETI | cd649a2 | 2016-01-29 12:55:59 +0530 | [diff] [blame] | 8774 | if (!result) { |
| 8775 | sigma_dut_print(dut, DUT_MSG_ERROR, |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8776 | "MCS not specified"); |
| 8777 | send_resp(dut, conn, SIGMA_ERROR, |
| 8778 | "errorCode,MCS not specified"); |
Pradeep Reddy POTTETI | cd649a2 | 2016-01-29 12:55:59 +0530 | [diff] [blame] | 8779 | return 0; |
| 8780 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8781 | mcs = atoi(result); |
| 8782 | |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8783 | if (program && strcasecmp(program, "HE") == 0) { |
| 8784 | #ifdef NL80211_SUPPORT |
| 8785 | enum he_mcs_config mcs_config; |
| 8786 | int ret; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8787 | |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8788 | if (mcs >= 0 && mcs <= 7) { |
| 8789 | mcs_config = HE_80_MCS0_7; |
| 8790 | } else if (mcs > 7 && mcs <= 9) { |
| 8791 | mcs_config = HE_80_MCS0_9; |
| 8792 | } else if (mcs > 9 && mcs <= 11) { |
| 8793 | mcs_config = HE_80_MCS0_11; |
| 8794 | } else { |
| 8795 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8796 | "nss_mcs_cap: HE: Invalid mcs: %d", |
| 8797 | mcs); |
| 8798 | send_resp(dut, conn, SIGMA_ERROR, |
| 8799 | "errorCode,Invalid MCS"); |
| 8800 | return 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8801 | } |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8802 | |
| 8803 | ret = sta_set_he_mcs(dut, intf, mcs_config); |
| 8804 | if (ret) { |
| 8805 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8806 | "nss_mcs_cap: HE: Setting of MCS failed, mcs_config: %d, ret: %d", |
| 8807 | mcs_config, ret); |
| 8808 | send_resp(dut, conn, SIGMA_ERROR, |
| 8809 | "errorCode,Failed to set MCS"); |
| 8810 | return 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8811 | } |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8812 | #else /* NL80211_SUPPORT */ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8813 | sigma_dut_print(dut, DUT_MSG_ERROR, |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8814 | "nss_mcs_cap: HE: MCS cannot be changed without NL80211_SUPPORT defined"); |
| 8815 | #endif /* NL80211_SUPPORT */ |
| 8816 | } else { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8817 | run_iwpriv(dut, intf, "vhtmcs %d", mcs); |
Arif Hussain | a37e955 | 2018-06-20 17:05:59 -0700 | [diff] [blame] | 8818 | |
| 8819 | switch (nss) { |
| 8820 | case 1: |
| 8821 | switch (mcs) { |
| 8822 | case 7: |
| 8823 | vht_mcsmap = 0xfffc; |
| 8824 | break; |
| 8825 | case 8: |
| 8826 | vht_mcsmap = 0xfffd; |
| 8827 | break; |
| 8828 | case 9: |
| 8829 | vht_mcsmap = 0xfffe; |
| 8830 | break; |
| 8831 | default: |
| 8832 | vht_mcsmap = 0xfffe; |
| 8833 | break; |
| 8834 | } |
| 8835 | break; |
| 8836 | case 2: |
| 8837 | switch (mcs) { |
| 8838 | case 7: |
| 8839 | vht_mcsmap = 0xfff0; |
| 8840 | break; |
| 8841 | case 8: |
| 8842 | vht_mcsmap = 0xfff5; |
| 8843 | break; |
| 8844 | case 9: |
| 8845 | vht_mcsmap = 0xfffa; |
| 8846 | break; |
| 8847 | default: |
| 8848 | vht_mcsmap = 0xfffa; |
| 8849 | break; |
| 8850 | } |
| 8851 | break; |
| 8852 | case 3: |
| 8853 | switch (mcs) { |
| 8854 | case 7: |
| 8855 | vht_mcsmap = 0xffc0; |
| 8856 | break; |
| 8857 | case 8: |
| 8858 | vht_mcsmap = 0xffd5; |
| 8859 | break; |
| 8860 | case 9: |
| 8861 | vht_mcsmap = 0xffea; |
| 8862 | break; |
| 8863 | default: |
| 8864 | vht_mcsmap = 0xffea; |
| 8865 | break; |
| 8866 | } |
| 8867 | break; |
| 8868 | default: |
| 8869 | vht_mcsmap = 0xffea; |
| 8870 | break; |
| 8871 | } |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8872 | run_iwpriv(dut, intf, "vht_mcsmap 0x%04x", vht_mcsmap); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8873 | } |
| 8874 | } |
| 8875 | |
| 8876 | /* UNSUPPORTED: val = get_param(cmd, "Tx_lgi_rate"); */ |
| 8877 | |
| 8878 | val = get_param(cmd, "Vht_tkip"); |
| 8879 | if (val) |
| 8880 | tkip = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0; |
| 8881 | |
| 8882 | val = get_param(cmd, "Vht_wep"); |
| 8883 | if (val) |
| 8884 | wep = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0; |
| 8885 | |
| 8886 | if (tkip != -1 || wep != -1) { |
| 8887 | if ((tkip == 1 && wep != 0) || (wep == 1 && tkip != 0)) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8888 | run_iwpriv(dut, intf, "htweptkip 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8889 | } else if ((tkip == 0 && wep != 1) || (wep == 0 && tkip != 1)) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 8890 | run_iwpriv(dut, intf, "htweptkip 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8891 | } else { |
| 8892 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8893 | "ErrorCode,mixed mode of VHT TKIP/WEP not supported"); |
| 8894 | return 0; |
| 8895 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8896 | } |
| 8897 | |
Arif Hussain | 55f00da | 2018-07-03 08:28:26 -0700 | [diff] [blame] | 8898 | val = get_param(cmd, "txBandwidth"); |
| 8899 | if (val) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 8900 | switch (get_driver_type(dut)) { |
Arif Hussain | 55f00da | 2018-07-03 08:28:26 -0700 | [diff] [blame] | 8901 | case DRIVER_WCN: |
| 8902 | if (wcn_sta_set_width(dut, intf, val) < 0) { |
| 8903 | send_resp(dut, conn, SIGMA_ERROR, |
| 8904 | "ErrorCode,Failed to set txBandwidth"); |
| 8905 | return 0; |
| 8906 | } |
| 8907 | break; |
| 8908 | case DRIVER_ATHEROS: |
| 8909 | if (ath_set_width(dut, conn, intf, val) < 0) { |
| 8910 | send_resp(dut, conn, SIGMA_ERROR, |
| 8911 | "ErrorCode,Failed to set txBandwidth"); |
| 8912 | return 0; |
| 8913 | } |
| 8914 | break; |
| 8915 | default: |
| 8916 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8917 | "Setting txBandwidth not supported"); |
| 8918 | break; |
| 8919 | } |
| 8920 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 8921 | |
Arif Hussain | 9765f7d | 2018-07-03 08:28:26 -0700 | [diff] [blame] | 8922 | val = get_param(cmd, "BeamformeeSTS"); |
| 8923 | if (val) { |
Kiran Kumar Lokere | bc89d43 | 2018-07-10 12:20:13 -0700 | [diff] [blame] | 8924 | if (sta_set_tx_beamformee(dut, intf, 1)) { |
| 8925 | send_resp(dut, conn, SIGMA_ERROR, |
| 8926 | "ErrorCode,Failed to set TX beamformee enable"); |
| 8927 | return 0; |
| 8928 | } |
| 8929 | |
Arif Hussain | 9765f7d | 2018-07-03 08:28:26 -0700 | [diff] [blame] | 8930 | if (sta_set_beamformee_sts(dut, intf, atoi(val))) { |
| 8931 | send_resp(dut, conn, SIGMA_ERROR, |
| 8932 | "ErrorCode,Failed to set BeamformeeSTS"); |
| 8933 | return 0; |
| 8934 | } |
| 8935 | } |
| 8936 | |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 8937 | val = get_param(cmd, "Trig_MAC_Padding_Dur"); |
| 8938 | if (val) { |
Kiran Kumar Lokere | 55eb558 | 2018-08-19 20:03:26 -0700 | [diff] [blame] | 8939 | #ifdef NL80211_SUPPORT |
| 8940 | enum qca_wlan_he_mac_padding_dur set_val; |
| 8941 | |
| 8942 | switch (atoi(val)) { |
| 8943 | case 16: |
| 8944 | set_val = QCA_WLAN_HE_16US_OF_PROCESS_TIME; |
| 8945 | break; |
| 8946 | case 8: |
| 8947 | set_val = QCA_WLAN_HE_8US_OF_PROCESS_TIME; |
| 8948 | break; |
| 8949 | default: |
| 8950 | set_val = QCA_WLAN_HE_NO_ADDITIONAL_PROCESS_TIME; |
| 8951 | break; |
| 8952 | } |
| 8953 | if (sta_set_mac_padding_duration(dut, intf, set_val)) { |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 8954 | send_resp(dut, conn, SIGMA_ERROR, |
| 8955 | "ErrorCode,Failed to set MAC padding duration"); |
| 8956 | return 0; |
| 8957 | } |
Kiran Kumar Lokere | 55eb558 | 2018-08-19 20:03:26 -0700 | [diff] [blame] | 8958 | #else /* NL80211_SUPPORT */ |
| 8959 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8960 | "MAC padding duration cannot be changed without NL80211_SUPPORT defined"); |
| 8961 | #endif /* NL80211_SUPPORT */ |
Arif Hussain | 68d23f5 | 2018-07-11 13:39:08 -0700 | [diff] [blame] | 8962 | } |
| 8963 | |
Arif Hussain | 480d5f4 | 2019-03-12 14:40:42 -0700 | [diff] [blame] | 8964 | val = get_param(cmd, "TWT_ReqSupport"); |
| 8965 | if (val) { |
| 8966 | int set_val; |
| 8967 | |
| 8968 | if (strcasecmp(val, "Enable") == 0) { |
| 8969 | set_val = 1; |
| 8970 | } else if (strcasecmp(val, "Disable") == 0) { |
| 8971 | set_val = 0; |
| 8972 | } else { |
| 8973 | send_resp(dut, conn, SIGMA_ERROR, |
| 8974 | "ErrorCode,Invalid TWT_ReqSupport"); |
| 8975 | return STATUS_SENT; |
| 8976 | } |
| 8977 | |
| 8978 | if (sta_set_twt_req_support(dut, intf, set_val)) { |
| 8979 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 8980 | "Failed to set TWT req support %d", |
| 8981 | set_val); |
| 8982 | send_resp(dut, conn, SIGMA_ERROR, |
| 8983 | "ErrorCode,Failed to set TWT_ReqSupport"); |
| 8984 | return STATUS_SENT; |
| 8985 | } |
| 8986 | } |
| 8987 | |
Kiran Kumar Lokere | b101268 | 2018-08-08 17:48:32 -0700 | [diff] [blame] | 8988 | val = get_param(cmd, "MU_EDCA"); |
| 8989 | if (val && (strcasecmp(val, "Override") == 0)) { |
| 8990 | if (sta_set_mu_edca_override(dut, intf, 1)) { |
| 8991 | send_resp(dut, conn, SIGMA_ERROR, |
| 8992 | "ErrorCode,Failed to set MU EDCA override"); |
| 8993 | return 0; |
| 8994 | } |
| 8995 | } |
Kiran Kumar Lokere | c658182 | 2018-08-01 16:18:34 -0700 | [diff] [blame] | 8996 | |
Kiran Kumar Lokere | de33e37 | 2018-08-29 16:26:24 -0700 | [diff] [blame] | 8997 | val = get_param(cmd, "OMControl"); |
| 8998 | if (val) { |
| 8999 | int set_val = 1; |
| 9000 | |
| 9001 | if (strcasecmp(val, "Enable") == 0) |
| 9002 | set_val = 1; |
| 9003 | else if (strcasecmp(val, "Disable") == 0) |
| 9004 | set_val = 0; |
| 9005 | |
| 9006 | if (sta_set_om_ctrl_supp(dut, intf, set_val)) { |
| 9007 | send_resp(dut, conn, SIGMA_ERROR, |
| 9008 | "ErrorCode,Failed to set OM ctrl supp"); |
| 9009 | return 0; |
| 9010 | } |
| 9011 | } |
| 9012 | |
Kiran Kumar Lokere | c658182 | 2018-08-01 16:18:34 -0700 | [diff] [blame] | 9013 | val = get_param(cmd, "ADDBAResp_BufSize"); |
| 9014 | if (val) { |
| 9015 | int buf_size; |
| 9016 | |
| 9017 | if (strcasecmp(val, "gt64") == 0) |
| 9018 | buf_size = 256; |
| 9019 | else |
| 9020 | buf_size = 64; |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 9021 | if (get_driver_type(dut) == DRIVER_WCN && |
Kiran Kumar Lokere | c658182 | 2018-08-01 16:18:34 -0700 | [diff] [blame] | 9022 | sta_set_addba_buf_size(dut, intf, buf_size)) { |
| 9023 | send_resp(dut, conn, SIGMA_ERROR, |
| 9024 | "ErrorCode,set addbaresp_buff_size failed"); |
| 9025 | return 0; |
| 9026 | } |
| 9027 | } |
| 9028 | |
| 9029 | val = get_param(cmd, "ADDBAReq_BufSize"); |
| 9030 | if (val) { |
| 9031 | int buf_size; |
| 9032 | |
| 9033 | if (strcasecmp(val, "gt64") == 0) |
| 9034 | buf_size = 256; |
| 9035 | else |
| 9036 | buf_size = 64; |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 9037 | if (get_driver_type(dut) == DRIVER_WCN && |
Kiran Kumar Lokere | c658182 | 2018-08-01 16:18:34 -0700 | [diff] [blame] | 9038 | sta_set_addba_buf_size(dut, intf, buf_size)) { |
| 9039 | send_resp(dut, conn, SIGMA_ERROR, |
| 9040 | "ErrorCode,set addbareq_buff_size failed"); |
| 9041 | return 0; |
| 9042 | } |
| 9043 | } |
| 9044 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9045 | return cmd_sta_set_wireless_common(intf, dut, conn, cmd); |
| 9046 | } |
| 9047 | |
| 9048 | |
| 9049 | static int sta_set_wireless_60g(struct sigma_dut *dut, |
| 9050 | struct sigma_conn *conn, |
| 9051 | struct sigma_cmd *cmd) |
| 9052 | { |
| 9053 | const char *dev_role = get_param(cmd, "DevRole"); |
| 9054 | |
| 9055 | if (!dev_role) { |
| 9056 | send_resp(dut, conn, SIGMA_INVALID, |
| 9057 | "ErrorCode,DevRole not specified"); |
| 9058 | return 0; |
| 9059 | } |
| 9060 | |
| 9061 | if (strcasecmp(dev_role, "PCP") == 0) |
| 9062 | return sta_set_60g_pcp(dut, conn, cmd); |
| 9063 | if (strcasecmp(dev_role, "STA") == 0) |
| 9064 | return sta_set_60g_sta(dut, conn, cmd); |
| 9065 | send_resp(dut, conn, SIGMA_INVALID, |
| 9066 | "ErrorCode,DevRole not supported"); |
| 9067 | return 0; |
| 9068 | } |
| 9069 | |
| 9070 | |
Ankita Bajaj | 0d5825b | 2017-10-25 16:20:17 +0530 | [diff] [blame] | 9071 | static int sta_set_wireless_oce(struct sigma_dut *dut, struct sigma_conn *conn, |
| 9072 | struct sigma_cmd *cmd) |
| 9073 | { |
| 9074 | int status; |
| 9075 | const char *intf = get_param(cmd, "Interface"); |
| 9076 | const char *val = get_param(cmd, "DevRole"); |
| 9077 | |
| 9078 | if (val && strcasecmp(val, "STA-CFON") == 0) { |
| 9079 | status = sta_cfon_set_wireless(dut, conn, cmd); |
| 9080 | if (status) |
| 9081 | return status; |
| 9082 | } |
| 9083 | return cmd_sta_set_wireless_common(intf, dut, conn, cmd); |
| 9084 | } |
| 9085 | |
| 9086 | |
Jouni Malinen | 67433fc | 2020-06-26 22:50:33 +0300 | [diff] [blame] | 9087 | static enum sigma_cmd_result |
| 9088 | sta_set_wireless_wpa3(struct sigma_dut *dut, struct sigma_conn *conn, |
| 9089 | struct sigma_cmd *cmd) |
Vamsi Krishna | c1633d2 | 2020-05-06 18:31:21 +0530 | [diff] [blame] | 9090 | { |
| 9091 | const char *intf = get_param(cmd, "Interface"); |
| 9092 | const char *val; |
| 9093 | |
| 9094 | val = get_param(cmd, "ocvc"); |
| 9095 | if (val) |
| 9096 | dut->ocvc = atoi(val); |
| 9097 | |
Jouni Malinen | 67433fc | 2020-06-26 22:50:33 +0300 | [diff] [blame] | 9098 | val = get_param(cmd, "ClientPrivacy"); |
| 9099 | if (val) { |
| 9100 | dut->client_privacy = atoi(val); |
| 9101 | if (dut->client_privacy && |
| 9102 | (wpa_command(intf, "SET mac_addr 1") < 0 || |
| 9103 | wpa_command(intf, "SET rand_addr_lifetime 1") < 0 || |
| 9104 | wpa_command(intf, "SET preassoc_mac_addr 1") < 0 || |
| 9105 | wpa_command(intf, "SET gas_rand_mac_addr 1") < 0 || |
| 9106 | wpa_command(intf, "SET gas_rand_addr_lifetime 1") < 0)) { |
| 9107 | send_resp(dut, conn, SIGMA_ERROR, |
| 9108 | "errorCode,Failed to enable random MAC address use"); |
| 9109 | return STATUS_SENT_ERROR; |
| 9110 | } |
| 9111 | } |
| 9112 | |
Vamsi Krishna | c1633d2 | 2020-05-06 18:31:21 +0530 | [diff] [blame] | 9113 | return cmd_sta_set_wireless_common(intf, dut, conn, cmd); |
| 9114 | } |
| 9115 | |
| 9116 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 9117 | static enum sigma_cmd_result cmd_sta_set_wireless(struct sigma_dut *dut, |
| 9118 | struct sigma_conn *conn, |
| 9119 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9120 | { |
| 9121 | const char *val; |
| 9122 | |
| 9123 | val = get_param(cmd, "Program"); |
| 9124 | if (val) { |
| 9125 | if (strcasecmp(val, "11n") == 0) |
| 9126 | return cmd_sta_set_11n(dut, conn, cmd); |
Amarnath Hullur Subramanyam | 4f86029 | 2018-01-31 03:49:35 -0800 | [diff] [blame] | 9127 | if (strcasecmp(val, "VHT") == 0 || strcasecmp(val, "HE") == 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9128 | return cmd_sta_set_wireless_vht(dut, conn, cmd); |
| 9129 | if (strcasecmp(val, "60ghz") == 0) |
| 9130 | return sta_set_wireless_60g(dut, conn, cmd); |
Ankita Bajaj | 0d5825b | 2017-10-25 16:20:17 +0530 | [diff] [blame] | 9131 | if (strcasecmp(val, "OCE") == 0) |
| 9132 | return sta_set_wireless_oce(dut, conn, cmd); |
Alexei Avshalom Lazar | 66bb997 | 2018-12-18 16:01:43 +0200 | [diff] [blame] | 9133 | /* sta_set_wireless in WPS program is only used for 60G */ |
| 9134 | if (is_60g_sigma_dut(dut)) |
| 9135 | return sta_set_wireless_60g(dut, conn, cmd); |
Vamsi Krishna | c1633d2 | 2020-05-06 18:31:21 +0530 | [diff] [blame] | 9136 | if (strcasecmp(val, "WPA3") == 0) |
| 9137 | return sta_set_wireless_wpa3(dut, conn, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9138 | send_resp(dut, conn, SIGMA_ERROR, |
| 9139 | "ErrorCode,Program value not supported"); |
| 9140 | } else { |
| 9141 | send_resp(dut, conn, SIGMA_ERROR, |
| 9142 | "ErrorCode,Program argument not available"); |
| 9143 | } |
| 9144 | |
| 9145 | return 0; |
| 9146 | } |
| 9147 | |
| 9148 | |
| 9149 | static void ath_sta_inject_frame(struct sigma_dut *dut, const char *intf, |
| 9150 | int tid) |
| 9151 | { |
| 9152 | char buf[100]; |
| 9153 | int tid_to_dscp [] = { 0x00, 0x20, 0x40, 0x60, 0x80, 0xa0, 0xc0, 0xe0 }; |
| 9154 | |
Pradeep Reddy POTTETI | d31d132 | 2016-10-13 17:22:03 +0530 | [diff] [blame] | 9155 | if (tid < 0 || |
| 9156 | tid >= (int) (sizeof(tid_to_dscp) / sizeof(tid_to_dscp[0]))) { |
| 9157 | sigma_dut_print(dut, DUT_MSG_ERROR, "Unsupported TID: %d", tid); |
| 9158 | return; |
| 9159 | } |
| 9160 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9161 | /* |
| 9162 | * Two ways to ensure that addba request with a |
| 9163 | * non zero TID could be sent out. EV 117296 |
| 9164 | */ |
| 9165 | snprintf(buf, sizeof(buf), |
| 9166 | "ping -c 8 -Q %d `arp -a | grep wlan0 | awk '{print $2}' | tr -d '()'`", |
| 9167 | tid); |
| 9168 | if (system(buf) != 0) { |
| 9169 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9170 | "Ping did not send out"); |
| 9171 | } |
| 9172 | |
| 9173 | snprintf(buf, sizeof(buf), |
| 9174 | "iwconfig %s | grep Access | awk '{print $6}' > %s", |
| 9175 | intf, VI_QOS_TMP_FILE); |
| 9176 | if (system(buf) != 0) |
| 9177 | return; |
| 9178 | |
| 9179 | snprintf(buf, sizeof(buf), |
| 9180 | "ifconfig %s | grep HWaddr | cut -b 39-56 >> %s", |
| 9181 | intf, VI_QOS_TMP_FILE); |
| 9182 | if (system(buf) != 0) |
| 9183 | sigma_dut_print(dut, DUT_MSG_ERROR, "HWaddr matching failed"); |
| 9184 | |
| 9185 | snprintf(buf,sizeof(buf), "sed -n '3,$p' %s >> %s", |
| 9186 | VI_QOS_REFFILE, VI_QOS_TMP_FILE); |
| 9187 | if (system(buf) != 0) { |
| 9188 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9189 | "VI_QOS_TEMP_FILE generation error failed"); |
| 9190 | } |
| 9191 | snprintf(buf, sizeof(buf), "sed '5 c %x' %s > %s", |
| 9192 | tid_to_dscp[tid], VI_QOS_TMP_FILE, VI_QOS_FILE); |
| 9193 | if (system(buf) != 0) { |
| 9194 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9195 | "VI_QOS_FILE generation failed"); |
| 9196 | } |
| 9197 | |
| 9198 | snprintf(buf, sizeof(buf), "sed '5 c %x' %s > %s", |
| 9199 | tid_to_dscp[tid], VI_QOS_TMP_FILE, VI_QOS_FILE); |
| 9200 | if (system(buf) != 0) { |
| 9201 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9202 | "VI_QOS_FILE generation failed"); |
| 9203 | } |
| 9204 | |
| 9205 | snprintf(buf, sizeof(buf), "ethinject %s %s", intf, VI_QOS_FILE); |
| 9206 | if (system(buf) != 0) { |
| 9207 | } |
| 9208 | } |
| 9209 | |
| 9210 | |
| 9211 | static int ath_sta_send_addba(struct sigma_dut *dut, struct sigma_conn *conn, |
| 9212 | struct sigma_cmd *cmd) |
| 9213 | { |
| 9214 | const char *intf = get_param(cmd, "Interface"); |
| 9215 | const char *val; |
| 9216 | int tid = 0; |
| 9217 | char buf[100]; |
| 9218 | |
| 9219 | val = get_param(cmd, "TID"); |
| 9220 | if (val) { |
| 9221 | tid = atoi(val); |
| 9222 | if (tid) |
| 9223 | ath_sta_inject_frame(dut, intf, tid); |
| 9224 | } |
| 9225 | |
| 9226 | /* Command sequence for ADDBA request on Peregrine based devices */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 9227 | run_iwpriv(dut, intf, "setaddbaoper 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9228 | |
| 9229 | snprintf(buf, sizeof(buf), "wifitool %s senddelba 1 %d 1 4", intf, tid); |
| 9230 | if (system(buf) != 0) { |
| 9231 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9232 | "wifitool senddelba failed"); |
| 9233 | } |
| 9234 | |
| 9235 | snprintf(buf, sizeof(buf), "wifitool %s sendaddba 1 %d 64", intf, tid); |
| 9236 | if (system(buf) != 0) { |
| 9237 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9238 | "wifitool sendaddba failed"); |
| 9239 | } |
| 9240 | |
| 9241 | /* UNSUPPORTED: val = get_param(cmd, "Dest_mac"); */ |
| 9242 | |
| 9243 | return 1; |
| 9244 | } |
| 9245 | |
| 9246 | |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9247 | #ifdef __linux__ |
| 9248 | |
| 9249 | static int wil6210_send_addba(struct sigma_dut *dut, const char *dest_mac, |
| 9250 | int agg_size) |
| 9251 | { |
| 9252 | char dir[128], buf[128]; |
| 9253 | FILE *f; |
| 9254 | regex_t re; |
| 9255 | regmatch_t m[2]; |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 9256 | int rc, ret = -1, vring_id, found, res; |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9257 | |
| 9258 | if (wil6210_get_debugfs_dir(dut, dir, sizeof(dir))) { |
| 9259 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9260 | "failed to get wil6210 debugfs dir"); |
| 9261 | return -1; |
| 9262 | } |
| 9263 | |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 9264 | res = snprintf(buf, sizeof(buf), "%s/vrings", dir); |
| 9265 | if (res < 0 || res >= sizeof(buf)) |
| 9266 | return -1; |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9267 | f = fopen(buf, "r"); |
| 9268 | if (!f) { |
| 9269 | sigma_dut_print(dut, DUT_MSG_ERROR, "failed to open: %s", buf); |
Alexei Avshalom Lazar | 2af1d25 | 2018-11-13 14:10:13 +0200 | [diff] [blame] | 9270 | /* newer wil6210 driver renamed file to "rings" */ |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 9271 | res = snprintf(buf, sizeof(buf), "%s/rings", dir); |
| 9272 | if (res < 0 || res >= sizeof(buf)) |
| 9273 | return -1; |
Alexei Avshalom Lazar | 2af1d25 | 2018-11-13 14:10:13 +0200 | [diff] [blame] | 9274 | f = fopen(buf, "r"); |
| 9275 | if (!f) { |
| 9276 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9277 | "failed to open: %s", buf); |
| 9278 | return -1; |
| 9279 | } |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9280 | } |
| 9281 | |
Alexei Avshalom Lazar | 2af1d25 | 2018-11-13 14:10:13 +0200 | [diff] [blame] | 9282 | /* can be either VRING tx... or RING... */ |
| 9283 | if (regcomp(&re, "RING tx_[ \t]*([0-9]+)", REG_EXTENDED)) { |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9284 | sigma_dut_print(dut, DUT_MSG_ERROR, "regcomp failed"); |
| 9285 | goto out; |
| 9286 | } |
| 9287 | |
| 9288 | /* find TX VRING for the mac address */ |
| 9289 | found = 0; |
| 9290 | while (fgets(buf, sizeof(buf), f)) { |
| 9291 | if (strcasestr(buf, dest_mac)) { |
| 9292 | found = 1; |
| 9293 | break; |
| 9294 | } |
| 9295 | } |
| 9296 | |
| 9297 | if (!found) { |
| 9298 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9299 | "no TX VRING for %s", dest_mac); |
| 9300 | goto out; |
| 9301 | } |
| 9302 | |
| 9303 | /* extract VRING ID, "VRING tx_<id> = {" */ |
| 9304 | if (!fgets(buf, sizeof(buf), f)) { |
| 9305 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9306 | "no VRING start line for %s", dest_mac); |
| 9307 | goto out; |
| 9308 | } |
| 9309 | |
| 9310 | rc = regexec(&re, buf, 2, m, 0); |
| 9311 | regfree(&re); |
| 9312 | if (rc || m[1].rm_so < 0) { |
| 9313 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9314 | "no VRING TX ID for %s", dest_mac); |
| 9315 | goto out; |
| 9316 | } |
| 9317 | buf[m[1].rm_eo] = 0; |
| 9318 | vring_id = atoi(&buf[m[1].rm_so]); |
| 9319 | |
| 9320 | /* send the addba command */ |
| 9321 | fclose(f); |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 9322 | res = snprintf(buf, sizeof(buf), "%s/back", dir); |
| 9323 | if (res < 0 || res >= sizeof(buf)) |
| 9324 | return -1; |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9325 | f = fopen(buf, "w"); |
| 9326 | if (!f) { |
| 9327 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9328 | "failed to open: %s", buf); |
| 9329 | return -1; |
| 9330 | } |
| 9331 | |
| 9332 | fprintf(f, "add %d %d\n", vring_id, agg_size); |
| 9333 | |
| 9334 | ret = 0; |
| 9335 | |
| 9336 | out: |
| 9337 | fclose(f); |
| 9338 | |
| 9339 | return ret; |
| 9340 | } |
| 9341 | |
| 9342 | |
Alexei Avshalom Lazar | 79fa3fe | 2018-12-24 15:43:33 +0200 | [diff] [blame] | 9343 | int send_addba_60g(struct sigma_dut *dut, struct sigma_conn *conn, |
| 9344 | struct sigma_cmd *cmd, const char *mac_param) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9345 | { |
| 9346 | const char *val; |
| 9347 | int tid = 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9348 | |
| 9349 | val = get_param(cmd, "TID"); |
| 9350 | if (val) { |
| 9351 | tid = atoi(val); |
| 9352 | if (tid != 0) { |
| 9353 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9354 | "Ignore TID %d for send_addba use TID 0 for 60g since only 0 required on TX", |
| 9355 | tid); |
| 9356 | } |
| 9357 | } |
| 9358 | |
Alexei Avshalom Lazar | 79fa3fe | 2018-12-24 15:43:33 +0200 | [diff] [blame] | 9359 | val = get_param(cmd, mac_param); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9360 | if (!val) { |
| 9361 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9362 | "Currently not supporting addba for 60G without Dest_mac"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 9363 | return ERROR_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9364 | } |
| 9365 | |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9366 | if (wil6210_send_addba(dut, val, dut->back_rcv_buf)) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9367 | return -1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9368 | |
| 9369 | return 1; |
| 9370 | } |
| 9371 | |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9372 | #endif /* __linux__ */ |
| 9373 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9374 | |
Amarnath Hullur Subramanyam | a72c016 | 2018-02-27 14:49:09 -0800 | [diff] [blame] | 9375 | static int wcn_sta_send_addba(struct sigma_dut *dut, struct sigma_conn *conn, |
| 9376 | struct sigma_cmd *cmd) |
| 9377 | { |
| 9378 | #ifdef NL80211_SUPPORT |
| 9379 | const char *intf = get_param(cmd, "Interface"); |
| 9380 | const char *val; |
| 9381 | int tid = -1; |
| 9382 | int bufsize = 64; |
| 9383 | struct nl_msg *msg; |
| 9384 | int ret = 0; |
| 9385 | struct nlattr *params; |
| 9386 | int ifindex; |
| 9387 | |
| 9388 | val = get_param(cmd, "TID"); |
| 9389 | if (val) |
| 9390 | tid = atoi(val); |
| 9391 | |
| 9392 | if (tid == -1) { |
| 9393 | send_resp(dut, conn, SIGMA_ERROR, |
| 9394 | "ErrorCode,sta_send_addba tid invalid"); |
| 9395 | return 0; |
| 9396 | } |
| 9397 | |
| 9398 | /* UNSUPPORTED: val = get_param(cmd, "Dest_mac"); */ |
| 9399 | |
| 9400 | ifindex = if_nametoindex(intf); |
| 9401 | if (ifindex == 0) { |
| 9402 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9403 | "%s: Index for interface %s failed", |
| 9404 | __func__, intf); |
| 9405 | send_resp(dut, conn, SIGMA_ERROR, |
| 9406 | "ErrorCode,sta_send_addba interface invalid"); |
| 9407 | return 0; |
| 9408 | } |
| 9409 | |
| 9410 | if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0, |
| 9411 | NL80211_CMD_VENDOR)) || |
| 9412 | nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) || |
| 9413 | nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) || |
| 9414 | nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD, |
| 9415 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) || |
| 9416 | !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) || |
| 9417 | nla_put_u8(msg, |
| 9418 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADD_DEL_BA_SESSION, |
| 9419 | QCA_WLAN_ADD_BA) || |
| 9420 | nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_BA_TID, |
| 9421 | tid) || |
Kiran Kumar Lokere | 26e2758 | 2018-08-01 16:18:34 -0700 | [diff] [blame] | 9422 | nla_put_u16(msg, |
| 9423 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADDBA_BUFF_SIZE, |
| 9424 | bufsize)) { |
Amarnath Hullur Subramanyam | a72c016 | 2018-02-27 14:49:09 -0800 | [diff] [blame] | 9425 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9426 | "%s: err in adding vendor_cmd and vendor_data", |
| 9427 | __func__); |
| 9428 | nlmsg_free(msg); |
| 9429 | send_resp(dut, conn, SIGMA_ERROR, |
| 9430 | "ErrorCode,sta_send_addba err in adding vendor_cmd and vendor_data"); |
| 9431 | return 0; |
| 9432 | } |
| 9433 | nla_nest_end(msg, params); |
| 9434 | |
| 9435 | ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL); |
| 9436 | if (ret) { |
| 9437 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9438 | "%s: err in send_and_recv_msgs, ret=%d", |
| 9439 | __func__, ret); |
Sunil Dutt | 3060559 | 2018-05-04 20:35:50 +0530 | [diff] [blame] | 9440 | if (ret == -EOPNOTSUPP) |
| 9441 | return 1; |
Amarnath Hullur Subramanyam | a72c016 | 2018-02-27 14:49:09 -0800 | [diff] [blame] | 9442 | send_resp(dut, conn, SIGMA_ERROR, |
| 9443 | "ErrorCode,sta_send_addba err in send_and_recv_msgs"); |
| 9444 | return 0; |
| 9445 | } |
Amarnath Hullur Subramanyam | a72c016 | 2018-02-27 14:49:09 -0800 | [diff] [blame] | 9446 | #else /* NL80211_SUPPORT */ |
| 9447 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 9448 | "sta_send_addba not supported without NL80211_SUPPORT defined"); |
Amarnath Hullur Subramanyam | a72c016 | 2018-02-27 14:49:09 -0800 | [diff] [blame] | 9449 | #endif /* NL80211_SUPPORT */ |
Sunil Dutt | 3060559 | 2018-05-04 20:35:50 +0530 | [diff] [blame] | 9450 | |
| 9451 | return 1; |
Amarnath Hullur Subramanyam | a72c016 | 2018-02-27 14:49:09 -0800 | [diff] [blame] | 9452 | } |
| 9453 | |
| 9454 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 9455 | static enum sigma_cmd_result cmd_sta_send_addba(struct sigma_dut *dut, |
| 9456 | struct sigma_conn *conn, |
| 9457 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9458 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 9459 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9460 | case DRIVER_ATHEROS: |
| 9461 | return ath_sta_send_addba(dut, conn, cmd); |
Amarnath Hullur Subramanyam | a72c016 | 2018-02-27 14:49:09 -0800 | [diff] [blame] | 9462 | case DRIVER_WCN: |
| 9463 | return wcn_sta_send_addba(dut, conn, cmd); |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9464 | #ifdef __linux__ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9465 | case DRIVER_WIL6210: |
Alexei Avshalom Lazar | 79fa3fe | 2018-12-24 15:43:33 +0200 | [diff] [blame] | 9466 | return send_addba_60g(dut, conn, cmd, "Dest_mac"); |
Lior David | 9981b51 | 2017-01-20 13:16:40 +0200 | [diff] [blame] | 9467 | #endif /* __linux__ */ |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9468 | default: |
| 9469 | /* |
| 9470 | * There is no driver specific implementation for other drivers. |
| 9471 | * Ignore the command and report COMPLETE since the following |
| 9472 | * throughput test operation will end up sending ADDBA anyway. |
| 9473 | */ |
| 9474 | return 1; |
| 9475 | } |
| 9476 | } |
| 9477 | |
| 9478 | |
| 9479 | int inject_eth_frame(int s, const void *data, size_t len, |
| 9480 | unsigned short ethtype, char *dst, char *src) |
| 9481 | { |
| 9482 | struct iovec iov[4] = { |
| 9483 | { |
| 9484 | .iov_base = dst, |
| 9485 | .iov_len = ETH_ALEN, |
| 9486 | }, |
| 9487 | { |
| 9488 | .iov_base = src, |
| 9489 | .iov_len = ETH_ALEN, |
| 9490 | }, |
| 9491 | { |
| 9492 | .iov_base = ðtype, |
| 9493 | .iov_len = sizeof(unsigned short), |
| 9494 | }, |
| 9495 | { |
| 9496 | .iov_base = (void *) data, |
| 9497 | .iov_len = len, |
| 9498 | } |
| 9499 | }; |
| 9500 | struct msghdr msg = { |
| 9501 | .msg_name = NULL, |
| 9502 | .msg_namelen = 0, |
| 9503 | .msg_iov = iov, |
| 9504 | .msg_iovlen = 4, |
| 9505 | .msg_control = NULL, |
| 9506 | .msg_controllen = 0, |
| 9507 | .msg_flags = 0, |
| 9508 | }; |
| 9509 | |
| 9510 | return sendmsg(s, &msg, 0); |
| 9511 | } |
| 9512 | |
| 9513 | #if defined(__linux__) || defined(__QNXNTO__) |
| 9514 | |
| 9515 | int inject_frame(int s, const void *data, size_t len, int encrypt) |
| 9516 | { |
| 9517 | #define IEEE80211_RADIOTAP_F_WEP 0x04 |
| 9518 | #define IEEE80211_RADIOTAP_F_FRAG 0x08 |
| 9519 | unsigned char rtap_hdr[] = { |
| 9520 | 0x00, 0x00, /* radiotap version */ |
| 9521 | 0x0e, 0x00, /* radiotap length */ |
| 9522 | 0x02, 0xc0, 0x00, 0x00, /* bmap: flags, tx and rx flags */ |
| 9523 | IEEE80211_RADIOTAP_F_FRAG, /* F_FRAG (fragment if required) */ |
| 9524 | 0x00, /* padding */ |
| 9525 | 0x00, 0x00, /* RX and TX flags to indicate that */ |
| 9526 | 0x00, 0x00, /* this is the injected frame directly */ |
| 9527 | }; |
| 9528 | struct iovec iov[2] = { |
| 9529 | { |
| 9530 | .iov_base = &rtap_hdr, |
| 9531 | .iov_len = sizeof(rtap_hdr), |
| 9532 | }, |
| 9533 | { |
| 9534 | .iov_base = (void *) data, |
| 9535 | .iov_len = len, |
| 9536 | } |
| 9537 | }; |
| 9538 | struct msghdr msg = { |
| 9539 | .msg_name = NULL, |
| 9540 | .msg_namelen = 0, |
| 9541 | .msg_iov = iov, |
| 9542 | .msg_iovlen = 2, |
| 9543 | .msg_control = NULL, |
| 9544 | .msg_controllen = 0, |
| 9545 | .msg_flags = 0, |
| 9546 | }; |
| 9547 | |
| 9548 | if (encrypt) |
| 9549 | rtap_hdr[8] |= IEEE80211_RADIOTAP_F_WEP; |
| 9550 | |
| 9551 | return sendmsg(s, &msg, 0); |
| 9552 | } |
| 9553 | |
| 9554 | |
| 9555 | int open_monitor(const char *ifname) |
| 9556 | { |
| 9557 | #ifdef __QNXNTO__ |
| 9558 | struct sockaddr_dl ll; |
| 9559 | int s; |
| 9560 | |
| 9561 | memset(&ll, 0, sizeof(ll)); |
| 9562 | ll.sdl_family = AF_LINK; |
| 9563 | ll.sdl_index = if_nametoindex(ifname); |
| 9564 | if (ll.sdl_index == 0) { |
| 9565 | perror("if_nametoindex"); |
| 9566 | return -1; |
| 9567 | } |
| 9568 | s = socket(PF_INET, SOCK_RAW, 0); |
| 9569 | #else /* __QNXNTO__ */ |
| 9570 | struct sockaddr_ll ll; |
| 9571 | int s; |
| 9572 | |
| 9573 | memset(&ll, 0, sizeof(ll)); |
| 9574 | ll.sll_family = AF_PACKET; |
| 9575 | ll.sll_ifindex = if_nametoindex(ifname); |
| 9576 | if (ll.sll_ifindex == 0) { |
| 9577 | perror("if_nametoindex"); |
| 9578 | return -1; |
| 9579 | } |
| 9580 | s = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)); |
| 9581 | #endif /* __QNXNTO__ */ |
| 9582 | if (s < 0) { |
| 9583 | perror("socket[PF_PACKET,SOCK_RAW]"); |
| 9584 | return -1; |
| 9585 | } |
| 9586 | |
| 9587 | if (bind(s, (struct sockaddr *) &ll, sizeof(ll)) < 0) { |
| 9588 | perror("monitor socket bind"); |
| 9589 | close(s); |
| 9590 | return -1; |
| 9591 | } |
| 9592 | |
| 9593 | return s; |
| 9594 | } |
| 9595 | |
| 9596 | |
| 9597 | static int hex2num(char c) |
| 9598 | { |
| 9599 | if (c >= '0' && c <= '9') |
| 9600 | return c - '0'; |
| 9601 | if (c >= 'a' && c <= 'f') |
| 9602 | return c - 'a' + 10; |
| 9603 | if (c >= 'A' && c <= 'F') |
| 9604 | return c - 'A' + 10; |
| 9605 | return -1; |
| 9606 | } |
| 9607 | |
| 9608 | |
| 9609 | int hwaddr_aton(const char *txt, unsigned char *addr) |
| 9610 | { |
| 9611 | int i; |
| 9612 | |
| 9613 | for (i = 0; i < 6; i++) { |
| 9614 | int a, b; |
| 9615 | |
| 9616 | a = hex2num(*txt++); |
| 9617 | if (a < 0) |
| 9618 | return -1; |
| 9619 | b = hex2num(*txt++); |
| 9620 | if (b < 0) |
| 9621 | return -1; |
| 9622 | *addr++ = (a << 4) | b; |
| 9623 | if (i < 5 && *txt++ != ':') |
| 9624 | return -1; |
| 9625 | } |
| 9626 | |
| 9627 | return 0; |
| 9628 | } |
| 9629 | |
| 9630 | #endif /* defined(__linux__) || defined(__QNXNTO__) */ |
| 9631 | |
| 9632 | enum send_frame_type { |
| 9633 | DISASSOC, DEAUTH, SAQUERY, AUTH, ASSOCREQ, REASSOCREQ, DLS_REQ |
| 9634 | }; |
| 9635 | enum send_frame_protection { |
| 9636 | CORRECT_KEY, INCORRECT_KEY, UNPROTECTED |
| 9637 | }; |
| 9638 | |
| 9639 | |
| 9640 | static int sta_inject_frame(struct sigma_dut *dut, struct sigma_conn *conn, |
| 9641 | enum send_frame_type frame, |
| 9642 | enum send_frame_protection protected, |
| 9643 | const char *dest) |
| 9644 | { |
| 9645 | #ifdef __linux__ |
| 9646 | unsigned char buf[1000], *pos; |
| 9647 | int s, res; |
| 9648 | char bssid[20], addr[20]; |
| 9649 | char result[32], ssid[100]; |
| 9650 | size_t ssid_len; |
| 9651 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 9652 | if (get_wpa_status(get_station_ifname(dut), "wpa_state", result, |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9653 | sizeof(result)) < 0 || |
| 9654 | strncmp(result, "COMPLETED", 9) != 0) { |
| 9655 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Not connected"); |
| 9656 | return 0; |
| 9657 | } |
| 9658 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 9659 | if (get_wpa_status(get_station_ifname(dut), "bssid", |
| 9660 | bssid, sizeof(bssid)) < 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9661 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not get " |
| 9662 | "current BSSID"); |
| 9663 | return 0; |
| 9664 | } |
| 9665 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 9666 | if (get_wpa_status(get_station_ifname(dut), "address", |
| 9667 | addr, sizeof(addr)) < 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9668 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not get " |
| 9669 | "own MAC address"); |
| 9670 | return 0; |
| 9671 | } |
| 9672 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 9673 | if (get_wpa_status(get_station_ifname(dut), "ssid", ssid, sizeof(ssid)) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9674 | < 0) { |
| 9675 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not get " |
| 9676 | "current SSID"); |
| 9677 | return 0; |
| 9678 | } |
| 9679 | ssid_len = strlen(ssid); |
| 9680 | |
| 9681 | pos = buf; |
| 9682 | |
| 9683 | /* Frame Control */ |
| 9684 | switch (frame) { |
| 9685 | case DISASSOC: |
| 9686 | *pos++ = 0xa0; |
| 9687 | break; |
| 9688 | case DEAUTH: |
| 9689 | *pos++ = 0xc0; |
| 9690 | break; |
| 9691 | case SAQUERY: |
| 9692 | *pos++ = 0xd0; |
| 9693 | break; |
| 9694 | case AUTH: |
| 9695 | *pos++ = 0xb0; |
| 9696 | break; |
| 9697 | case ASSOCREQ: |
| 9698 | *pos++ = 0x00; |
| 9699 | break; |
| 9700 | case REASSOCREQ: |
| 9701 | *pos++ = 0x20; |
| 9702 | break; |
| 9703 | case DLS_REQ: |
| 9704 | *pos++ = 0xd0; |
| 9705 | break; |
| 9706 | } |
| 9707 | |
| 9708 | if (protected == INCORRECT_KEY) |
| 9709 | *pos++ = 0x40; /* Set Protected field to 1 */ |
| 9710 | else |
| 9711 | *pos++ = 0x00; |
| 9712 | |
| 9713 | /* Duration */ |
| 9714 | *pos++ = 0x00; |
| 9715 | *pos++ = 0x00; |
| 9716 | |
| 9717 | /* addr1 = DA (current AP) */ |
| 9718 | hwaddr_aton(bssid, pos); |
| 9719 | pos += 6; |
| 9720 | /* addr2 = SA (own address) */ |
| 9721 | hwaddr_aton(addr, pos); |
| 9722 | pos += 6; |
| 9723 | /* addr3 = BSSID (current AP) */ |
| 9724 | hwaddr_aton(bssid, pos); |
| 9725 | pos += 6; |
| 9726 | |
| 9727 | /* Seq# (to be filled by driver/mac80211) */ |
| 9728 | *pos++ = 0x00; |
| 9729 | *pos++ = 0x00; |
| 9730 | |
| 9731 | if (protected == INCORRECT_KEY) { |
| 9732 | /* CCMP parameters */ |
| 9733 | memcpy(pos, "\x61\x01\x00\x20\x00\x10\x00\x00", 8); |
| 9734 | pos += 8; |
| 9735 | } |
| 9736 | |
| 9737 | if (protected == INCORRECT_KEY) { |
| 9738 | switch (frame) { |
| 9739 | case DEAUTH: |
| 9740 | /* Reason code (encrypted) */ |
| 9741 | memcpy(pos, "\xa7\x39", 2); |
| 9742 | pos += 2; |
| 9743 | break; |
| 9744 | case DISASSOC: |
| 9745 | /* Reason code (encrypted) */ |
| 9746 | memcpy(pos, "\xa7\x39", 2); |
| 9747 | pos += 2; |
| 9748 | break; |
| 9749 | case SAQUERY: |
| 9750 | /* Category|Action|TransID (encrypted) */ |
| 9751 | memcpy(pos, "\x6f\xbd\xe9\x4d", 4); |
| 9752 | pos += 4; |
| 9753 | break; |
| 9754 | default: |
| 9755 | return -1; |
| 9756 | } |
| 9757 | |
| 9758 | /* CCMP MIC */ |
| 9759 | memcpy(pos, "\xc8\xd8\x3b\x06\x5d\xb7\x25\x68", 8); |
| 9760 | pos += 8; |
| 9761 | } else { |
| 9762 | switch (frame) { |
| 9763 | case DEAUTH: |
| 9764 | /* reason code = 8 */ |
| 9765 | *pos++ = 0x08; |
| 9766 | *pos++ = 0x00; |
| 9767 | break; |
| 9768 | case DISASSOC: |
| 9769 | /* reason code = 8 */ |
| 9770 | *pos++ = 0x08; |
| 9771 | *pos++ = 0x00; |
| 9772 | break; |
| 9773 | case SAQUERY: |
| 9774 | /* Category - SA Query */ |
| 9775 | *pos++ = 0x08; |
| 9776 | /* SA query Action - Request */ |
| 9777 | *pos++ = 0x00; |
| 9778 | /* Transaction ID */ |
| 9779 | *pos++ = 0x12; |
| 9780 | *pos++ = 0x34; |
| 9781 | break; |
| 9782 | case AUTH: |
| 9783 | /* Auth Alg (Open) */ |
| 9784 | *pos++ = 0x00; |
| 9785 | *pos++ = 0x00; |
| 9786 | /* Seq# */ |
| 9787 | *pos++ = 0x01; |
| 9788 | *pos++ = 0x00; |
| 9789 | /* Status code */ |
| 9790 | *pos++ = 0x00; |
| 9791 | *pos++ = 0x00; |
| 9792 | break; |
| 9793 | case ASSOCREQ: |
| 9794 | /* Capability Information */ |
| 9795 | *pos++ = 0x31; |
| 9796 | *pos++ = 0x04; |
| 9797 | /* Listen Interval */ |
| 9798 | *pos++ = 0x0a; |
| 9799 | *pos++ = 0x00; |
| 9800 | /* SSID */ |
| 9801 | *pos++ = 0x00; |
| 9802 | *pos++ = ssid_len; |
| 9803 | memcpy(pos, ssid, ssid_len); |
| 9804 | pos += ssid_len; |
| 9805 | /* Supported Rates */ |
| 9806 | memcpy(pos, "\x01\x08\x02\x04\x0b\x16\x0c\x12\x18\x24", |
| 9807 | 10); |
| 9808 | pos += 10; |
| 9809 | /* Extended Supported Rates */ |
| 9810 | memcpy(pos, "\x32\x04\x30\x48\x60\x6c", 6); |
| 9811 | pos += 6; |
| 9812 | /* RSN */ |
| 9813 | memcpy(pos, "\x30\x1a\x01\x00\x00\x0f\xac\x04\x01\x00" |
| 9814 | "\x00\x0f\xac\x04\x01\x00\x00\x0f\xac\x02\xc0" |
| 9815 | "\x00\x00\x00\x00\x0f\xac\x06", 28); |
| 9816 | pos += 28; |
| 9817 | break; |
| 9818 | case REASSOCREQ: |
| 9819 | /* Capability Information */ |
| 9820 | *pos++ = 0x31; |
| 9821 | *pos++ = 0x04; |
| 9822 | /* Listen Interval */ |
| 9823 | *pos++ = 0x0a; |
| 9824 | *pos++ = 0x00; |
| 9825 | /* Current AP */ |
| 9826 | hwaddr_aton(bssid, pos); |
| 9827 | pos += 6; |
| 9828 | /* SSID */ |
| 9829 | *pos++ = 0x00; |
| 9830 | *pos++ = ssid_len; |
| 9831 | memcpy(pos, ssid, ssid_len); |
| 9832 | pos += ssid_len; |
| 9833 | /* Supported Rates */ |
| 9834 | memcpy(pos, "\x01\x08\x02\x04\x0b\x16\x0c\x12\x18\x24", |
| 9835 | 10); |
| 9836 | pos += 10; |
| 9837 | /* Extended Supported Rates */ |
| 9838 | memcpy(pos, "\x32\x04\x30\x48\x60\x6c", 6); |
| 9839 | pos += 6; |
| 9840 | /* RSN */ |
| 9841 | memcpy(pos, "\x30\x1a\x01\x00\x00\x0f\xac\x04\x01\x00" |
| 9842 | "\x00\x0f\xac\x04\x01\x00\x00\x0f\xac\x02\xc0" |
| 9843 | "\x00\x00\x00\x00\x0f\xac\x06", 28); |
| 9844 | pos += 28; |
| 9845 | break; |
| 9846 | case DLS_REQ: |
| 9847 | /* Category - DLS */ |
| 9848 | *pos++ = 0x02; |
| 9849 | /* DLS Action - Request */ |
| 9850 | *pos++ = 0x00; |
| 9851 | /* Destination MACAddress */ |
| 9852 | if (dest) |
| 9853 | hwaddr_aton(dest, pos); |
| 9854 | else |
| 9855 | memset(pos, 0, 6); |
| 9856 | pos += 6; |
| 9857 | /* Source MACAddress */ |
| 9858 | hwaddr_aton(addr, pos); |
| 9859 | pos += 6; |
| 9860 | /* Capability Information */ |
| 9861 | *pos++ = 0x10; /* Privacy */ |
| 9862 | *pos++ = 0x06; /* QoS */ |
| 9863 | /* DLS Timeout Value */ |
| 9864 | *pos++ = 0x00; |
| 9865 | *pos++ = 0x01; |
| 9866 | /* Supported rates */ |
| 9867 | *pos++ = 0x01; |
| 9868 | *pos++ = 0x08; |
| 9869 | *pos++ = 0x0c; /* 6 Mbps */ |
| 9870 | *pos++ = 0x12; /* 9 Mbps */ |
| 9871 | *pos++ = 0x18; /* 12 Mbps */ |
| 9872 | *pos++ = 0x24; /* 18 Mbps */ |
| 9873 | *pos++ = 0x30; /* 24 Mbps */ |
| 9874 | *pos++ = 0x48; /* 36 Mbps */ |
| 9875 | *pos++ = 0x60; /* 48 Mbps */ |
| 9876 | *pos++ = 0x6c; /* 54 Mbps */ |
| 9877 | /* TODO: Extended Supported Rates */ |
| 9878 | /* TODO: HT Capabilities */ |
| 9879 | break; |
| 9880 | } |
| 9881 | } |
| 9882 | |
| 9883 | s = open_monitor("sigmadut"); |
| 9884 | if (s < 0) { |
| 9885 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to open " |
| 9886 | "monitor socket"); |
| 9887 | return 0; |
| 9888 | } |
| 9889 | |
| 9890 | res = inject_frame(s, buf, pos - buf, protected == CORRECT_KEY); |
| 9891 | if (res < 0) { |
| 9892 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to " |
| 9893 | "inject frame"); |
Pradeep Reddy POTTETI | 673d85c | 2016-07-26 19:08:07 +0530 | [diff] [blame] | 9894 | close(s); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9895 | return 0; |
| 9896 | } |
| 9897 | if (res < pos - buf) { |
| 9898 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Only partial " |
| 9899 | "frame sent"); |
Pradeep Reddy POTTETI | 673d85c | 2016-07-26 19:08:07 +0530 | [diff] [blame] | 9900 | close(s); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9901 | return 0; |
| 9902 | } |
| 9903 | |
| 9904 | close(s); |
| 9905 | |
| 9906 | return 1; |
| 9907 | #else /* __linux__ */ |
| 9908 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,sta_send_frame not " |
| 9909 | "yet supported"); |
| 9910 | return 0; |
| 9911 | #endif /* __linux__ */ |
| 9912 | } |
| 9913 | |
| 9914 | |
| 9915 | static int cmd_sta_send_frame_tdls(struct sigma_dut *dut, |
| 9916 | struct sigma_conn *conn, |
| 9917 | struct sigma_cmd *cmd) |
| 9918 | { |
| 9919 | const char *intf = get_param(cmd, "Interface"); |
| 9920 | const char *sta, *val; |
| 9921 | unsigned char addr[ETH_ALEN]; |
| 9922 | char buf[100]; |
| 9923 | |
Alexei Avshalom Lazar | 4a3c2f8 | 2019-05-02 13:35:37 +0300 | [diff] [blame] | 9924 | if (!intf) |
| 9925 | return -1; |
| 9926 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 9927 | sta = get_param(cmd, "peer"); |
| 9928 | if (sta == NULL) |
| 9929 | sta = get_param(cmd, "station"); |
| 9930 | if (sta == NULL) { |
| 9931 | send_resp(dut, conn, SIGMA_ERROR, |
| 9932 | "ErrorCode,Missing peer address"); |
| 9933 | return 0; |
| 9934 | } |
| 9935 | if (hwaddr_aton(sta, addr) < 0) { |
| 9936 | send_resp(dut, conn, SIGMA_ERROR, |
| 9937 | "ErrorCode,Invalid peer address"); |
| 9938 | return 0; |
| 9939 | } |
| 9940 | |
| 9941 | val = get_param(cmd, "type"); |
| 9942 | if (val == NULL) |
| 9943 | return -1; |
| 9944 | |
| 9945 | if (strcasecmp(val, "DISCOVERY") == 0) { |
| 9946 | snprintf(buf, sizeof(buf), "TDLS_DISCOVER %s", sta); |
| 9947 | if (wpa_command(intf, buf) < 0) { |
| 9948 | send_resp(dut, conn, SIGMA_ERROR, |
| 9949 | "ErrorCode,Failed to send TDLS discovery"); |
| 9950 | return 0; |
| 9951 | } |
| 9952 | return 1; |
| 9953 | } |
| 9954 | |
| 9955 | if (strcasecmp(val, "SETUP") == 0) { |
| 9956 | int status = 0, timeout = 0; |
| 9957 | |
| 9958 | val = get_param(cmd, "Status"); |
| 9959 | if (val) |
| 9960 | status = atoi(val); |
| 9961 | |
| 9962 | val = get_param(cmd, "Timeout"); |
| 9963 | if (val) |
| 9964 | timeout = atoi(val); |
| 9965 | |
| 9966 | if (status != 0 && status != 37) { |
| 9967 | send_resp(dut, conn, SIGMA_ERROR, |
| 9968 | "ErrorCode,Unsupported status value"); |
| 9969 | return 0; |
| 9970 | } |
| 9971 | |
| 9972 | if (timeout != 0 && timeout != 301) { |
| 9973 | send_resp(dut, conn, SIGMA_ERROR, |
| 9974 | "ErrorCode,Unsupported timeout value"); |
| 9975 | return 0; |
| 9976 | } |
| 9977 | |
| 9978 | if (status && timeout) { |
| 9979 | send_resp(dut, conn, SIGMA_ERROR, |
| 9980 | "ErrorCode,Unsupported timeout+status " |
| 9981 | "combination"); |
| 9982 | return 0; |
| 9983 | } |
| 9984 | |
| 9985 | if (status == 37 && |
| 9986 | wpa_command(intf, "SET tdls_testing 0x200")) { |
| 9987 | send_resp(dut, conn, SIGMA_ERROR, |
| 9988 | "ErrorCode,Failed to enable " |
| 9989 | "decline setup response test mode"); |
| 9990 | return 0; |
| 9991 | } |
| 9992 | |
| 9993 | if (timeout == 301) { |
| 9994 | int res; |
| 9995 | if (dut->no_tpk_expiration) |
| 9996 | res = wpa_command(intf, |
| 9997 | "SET tdls_testing 0x108"); |
| 9998 | else |
| 9999 | res = wpa_command(intf, |
| 10000 | "SET tdls_testing 0x8"); |
| 10001 | if (res) { |
| 10002 | send_resp(dut, conn, SIGMA_ERROR, |
| 10003 | "ErrorCode,Failed to set short TPK " |
| 10004 | "lifetime"); |
| 10005 | return 0; |
| 10006 | } |
| 10007 | } |
| 10008 | |
| 10009 | snprintf(buf, sizeof(buf), "TDLS_SETUP %s", sta); |
| 10010 | if (wpa_command(intf, buf) < 0) { |
| 10011 | send_resp(dut, conn, SIGMA_ERROR, |
| 10012 | "ErrorCode,Failed to send TDLS setup"); |
| 10013 | return 0; |
| 10014 | } |
| 10015 | return 1; |
| 10016 | } |
| 10017 | |
| 10018 | if (strcasecmp(val, "TEARDOWN") == 0) { |
| 10019 | snprintf(buf, sizeof(buf), "TDLS_TEARDOWN %s", sta); |
| 10020 | if (wpa_command(intf, buf) < 0) { |
| 10021 | send_resp(dut, conn, SIGMA_ERROR, |
| 10022 | "ErrorCode,Failed to send TDLS teardown"); |
| 10023 | return 0; |
| 10024 | } |
| 10025 | return 1; |
| 10026 | } |
| 10027 | |
| 10028 | send_resp(dut, conn, SIGMA_ERROR, |
| 10029 | "ErrorCode,Unsupported TDLS frame"); |
| 10030 | return 0; |
| 10031 | } |
| 10032 | |
| 10033 | |
| 10034 | static int sta_ap_known(const char *ifname, const char *bssid) |
| 10035 | { |
| 10036 | char buf[4096]; |
| 10037 | |
Jouni Malinen | dd32f19 | 2018-09-15 02:55:19 +0300 | [diff] [blame] | 10038 | snprintf(buf, sizeof(buf), "BSS MASK=1 %s", bssid); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10039 | if (wpa_command_resp(ifname, buf, buf, sizeof(buf)) < 0) |
| 10040 | return 0; |
| 10041 | if (strncmp(buf, "id=", 3) != 0) |
| 10042 | return 0; |
| 10043 | return 1; |
| 10044 | } |
| 10045 | |
| 10046 | |
| 10047 | static int sta_scan_ap(struct sigma_dut *dut, const char *ifname, |
| 10048 | const char *bssid) |
| 10049 | { |
| 10050 | int res; |
| 10051 | struct wpa_ctrl *ctrl; |
| 10052 | char buf[256]; |
| 10053 | |
| 10054 | if (sta_ap_known(ifname, bssid)) |
| 10055 | return 0; |
| 10056 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 10057 | "AP not in BSS table - start scan"); |
| 10058 | |
| 10059 | ctrl = open_wpa_mon(ifname); |
| 10060 | if (ctrl == NULL) { |
| 10061 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open " |
| 10062 | "wpa_supplicant monitor connection"); |
| 10063 | return -1; |
| 10064 | } |
| 10065 | |
| 10066 | if (wpa_command(ifname, "SCAN") < 0) { |
| 10067 | sigma_dut_print(dut, DUT_MSG_INFO, "Failed to start scan"); |
| 10068 | wpa_ctrl_detach(ctrl); |
| 10069 | wpa_ctrl_close(ctrl); |
| 10070 | return -1; |
| 10071 | } |
| 10072 | |
| 10073 | res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-SCAN-RESULTS", |
| 10074 | buf, sizeof(buf)); |
| 10075 | |
| 10076 | wpa_ctrl_detach(ctrl); |
| 10077 | wpa_ctrl_close(ctrl); |
| 10078 | |
| 10079 | if (res < 0) { |
| 10080 | sigma_dut_print(dut, DUT_MSG_INFO, "Scan did not complete"); |
| 10081 | return -1; |
| 10082 | } |
| 10083 | |
| 10084 | if (sta_ap_known(ifname, bssid)) |
| 10085 | return 0; |
| 10086 | sigma_dut_print(dut, DUT_MSG_INFO, "AP not in BSS table"); |
| 10087 | return -1; |
| 10088 | } |
| 10089 | |
| 10090 | |
| 10091 | static int cmd_sta_send_frame_hs2_neighadv(struct sigma_dut *dut, |
| 10092 | struct sigma_conn *conn, |
| 10093 | struct sigma_cmd *cmd, |
| 10094 | const char *intf) |
| 10095 | { |
| 10096 | char buf[200]; |
| 10097 | |
| 10098 | snprintf(buf, sizeof(buf), "ndsend 2001:DB8::1 %s", intf); |
| 10099 | if (system(buf) != 0) { |
| 10100 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Failed to run " |
| 10101 | "ndsend"); |
| 10102 | return 0; |
| 10103 | } |
| 10104 | |
| 10105 | return 1; |
| 10106 | } |
| 10107 | |
| 10108 | |
| 10109 | static int cmd_sta_send_frame_hs2_neighsolreq(struct sigma_dut *dut, |
| 10110 | struct sigma_conn *conn, |
| 10111 | struct sigma_cmd *cmd, |
| 10112 | const char *intf) |
| 10113 | { |
| 10114 | char buf[200]; |
| 10115 | const char *ip = get_param(cmd, "SenderIP"); |
| 10116 | |
Peng Xu | 26b356d | 2017-10-04 17:58:16 -0700 | [diff] [blame] | 10117 | if (!ip) |
| 10118 | return 0; |
| 10119 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10120 | snprintf(buf, sizeof(buf), "ndisc6 -nm %s %s -r 4", ip, intf); |
| 10121 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 10122 | if (system(buf) == 0) { |
| 10123 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 10124 | "Neighbor Solicitation got a response " |
| 10125 | "for %s@%s", ip, intf); |
| 10126 | } |
| 10127 | |
| 10128 | return 1; |
| 10129 | } |
| 10130 | |
| 10131 | |
| 10132 | static int cmd_sta_send_frame_hs2_arpprobe(struct sigma_dut *dut, |
| 10133 | struct sigma_conn *conn, |
| 10134 | struct sigma_cmd *cmd, |
| 10135 | const char *ifname) |
| 10136 | { |
| 10137 | char buf[200]; |
| 10138 | const char *ip = get_param(cmd, "SenderIP"); |
| 10139 | |
| 10140 | if (ip == NULL) { |
| 10141 | send_resp(dut, conn, SIGMA_ERROR, |
| 10142 | "ErrorCode,Missing SenderIP parameter"); |
| 10143 | return 0; |
| 10144 | } |
| 10145 | snprintf(buf, sizeof(buf), "arping -I %s -D %s -c 4", ifname, ip); |
| 10146 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 10147 | if (system(buf) != 0) { |
| 10148 | sigma_dut_print(dut, DUT_MSG_INFO, "arping DAD got a response " |
| 10149 | "for %s@%s", ip, ifname); |
| 10150 | } |
| 10151 | |
| 10152 | return 1; |
| 10153 | } |
| 10154 | |
| 10155 | |
| 10156 | static int cmd_sta_send_frame_hs2_arpannounce(struct sigma_dut *dut, |
| 10157 | struct sigma_conn *conn, |
| 10158 | struct sigma_cmd *cmd, |
| 10159 | const char *ifname) |
| 10160 | { |
| 10161 | char buf[200]; |
| 10162 | char ip[16]; |
| 10163 | int s; |
Peng Xu | b375688 | 2017-10-04 14:39:09 -0700 | [diff] [blame] | 10164 | struct ifreq ifr; |
| 10165 | struct sockaddr_in saddr; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10166 | |
| 10167 | s = socket(PF_INET, SOCK_DGRAM, 0); |
Peng Xu | b375688 | 2017-10-04 14:39:09 -0700 | [diff] [blame] | 10168 | if (s < 0) { |
| 10169 | perror("socket"); |
| 10170 | return -1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10171 | } |
| 10172 | |
Peng Xu | b375688 | 2017-10-04 14:39:09 -0700 | [diff] [blame] | 10173 | memset(&ifr, 0, sizeof(ifr)); |
| 10174 | strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name)); |
| 10175 | if (ioctl(s, SIOCGIFADDR, &ifr) < 0) { |
| 10176 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 10177 | "Failed to get %s IP address: %s", |
| 10178 | ifname, strerror(errno)); |
| 10179 | close(s); |
| 10180 | return -1; |
| 10181 | } |
| 10182 | close(s); |
| 10183 | |
| 10184 | memcpy(&saddr, &ifr.ifr_addr, sizeof(struct sockaddr_in)); |
| 10185 | strlcpy(ip, inet_ntoa(saddr.sin_addr), sizeof(ip)); |
| 10186 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10187 | snprintf(buf, sizeof(buf), "arping -I %s -s %s %s -c 4", ifname, ip, |
| 10188 | ip); |
| 10189 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 10190 | if (system(buf) != 0) { |
| 10191 | } |
| 10192 | |
| 10193 | return 1; |
| 10194 | } |
| 10195 | |
| 10196 | |
| 10197 | static int cmd_sta_send_frame_hs2_arpreply(struct sigma_dut *dut, |
| 10198 | struct sigma_conn *conn, |
| 10199 | struct sigma_cmd *cmd, |
| 10200 | const char *ifname) |
| 10201 | { |
| 10202 | char buf[200], addr[20]; |
| 10203 | char dst[ETH_ALEN], src[ETH_ALEN]; |
| 10204 | short ethtype = htons(ETH_P_ARP); |
| 10205 | char *pos; |
| 10206 | int s, res; |
| 10207 | const char *val; |
| 10208 | struct sockaddr_in taddr; |
| 10209 | |
| 10210 | val = get_param(cmd, "dest"); |
| 10211 | if (val) |
| 10212 | hwaddr_aton(val, (unsigned char *) dst); |
| 10213 | |
| 10214 | val = get_param(cmd, "DestIP"); |
| 10215 | if (val) |
| 10216 | inet_aton(val, &taddr.sin_addr); |
Peng Xu | 151c9e1 | 2017-10-04 14:39:09 -0700 | [diff] [blame] | 10217 | else |
| 10218 | return -2; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10219 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10220 | if (get_wpa_status(get_station_ifname(dut), "address", addr, |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10221 | sizeof(addr)) < 0) |
| 10222 | return -2; |
| 10223 | hwaddr_aton(addr, (unsigned char *) src); |
| 10224 | |
| 10225 | pos = buf; |
| 10226 | *pos++ = 0x00; |
| 10227 | *pos++ = 0x01; |
| 10228 | *pos++ = 0x08; |
| 10229 | *pos++ = 0x00; |
| 10230 | *pos++ = 0x06; |
| 10231 | *pos++ = 0x04; |
| 10232 | *pos++ = 0x00; |
| 10233 | *pos++ = 0x02; |
| 10234 | memcpy(pos, src, ETH_ALEN); |
| 10235 | pos += ETH_ALEN; |
| 10236 | memcpy(pos, &taddr.sin_addr, 4); |
| 10237 | pos += 4; |
| 10238 | memcpy(pos, dst, ETH_ALEN); |
| 10239 | pos += ETH_ALEN; |
| 10240 | memcpy(pos, &taddr.sin_addr, 4); |
| 10241 | pos += 4; |
| 10242 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10243 | s = open_monitor(get_station_ifname(dut)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10244 | if (s < 0) { |
| 10245 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to open " |
| 10246 | "monitor socket"); |
| 10247 | return 0; |
| 10248 | } |
| 10249 | |
| 10250 | res = inject_eth_frame(s, buf, pos - buf, ethtype, dst, src); |
| 10251 | if (res < 0) { |
| 10252 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to " |
| 10253 | "inject frame"); |
Pradeep Reddy POTTETI | 673d85c | 2016-07-26 19:08:07 +0530 | [diff] [blame] | 10254 | close(s); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10255 | return 0; |
| 10256 | } |
| 10257 | |
| 10258 | close(s); |
| 10259 | |
| 10260 | return 1; |
| 10261 | } |
| 10262 | |
| 10263 | |
| 10264 | static int cmd_sta_send_frame_hs2_dls_req(struct sigma_dut *dut, |
| 10265 | struct sigma_conn *conn, |
| 10266 | struct sigma_cmd *cmd, |
| 10267 | const char *intf, const char *dest) |
| 10268 | { |
| 10269 | char buf[100]; |
| 10270 | |
| 10271 | if (if_nametoindex("sigmadut") == 0) { |
| 10272 | snprintf(buf, sizeof(buf), |
| 10273 | "iw dev %s interface add sigmadut type monitor", |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10274 | get_station_ifname(dut)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10275 | if (system(buf) != 0 || |
| 10276 | if_nametoindex("sigmadut") == 0) { |
| 10277 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to add " |
| 10278 | "monitor interface with '%s'", buf); |
| 10279 | return -2; |
| 10280 | } |
| 10281 | } |
| 10282 | |
| 10283 | if (system("ifconfig sigmadut up") != 0) { |
| 10284 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set " |
| 10285 | "monitor interface up"); |
| 10286 | return -2; |
| 10287 | } |
| 10288 | |
| 10289 | return sta_inject_frame(dut, conn, DLS_REQ, UNPROTECTED, dest); |
| 10290 | } |
| 10291 | |
| 10292 | |
| 10293 | static int cmd_sta_send_frame_hs2(struct sigma_dut *dut, |
| 10294 | struct sigma_conn *conn, |
| 10295 | struct sigma_cmd *cmd) |
| 10296 | { |
| 10297 | const char *intf = get_param(cmd, "Interface"); |
| 10298 | const char *dest = get_param(cmd, "Dest"); |
| 10299 | const char *type = get_param(cmd, "FrameName"); |
| 10300 | const char *val; |
| 10301 | char buf[200], *pos, *end; |
| 10302 | int count, count2; |
| 10303 | |
| 10304 | if (type == NULL) |
| 10305 | type = get_param(cmd, "Type"); |
| 10306 | |
| 10307 | if (intf == NULL || dest == NULL || type == NULL) |
| 10308 | return -1; |
| 10309 | |
| 10310 | if (strcasecmp(type, "NeighAdv") == 0) |
| 10311 | return cmd_sta_send_frame_hs2_neighadv(dut, conn, cmd, intf); |
| 10312 | |
| 10313 | if (strcasecmp(type, "NeighSolicitReq") == 0) |
| 10314 | return cmd_sta_send_frame_hs2_neighsolreq(dut, conn, cmd, intf); |
| 10315 | |
| 10316 | if (strcasecmp(type, "ARPProbe") == 0) |
| 10317 | return cmd_sta_send_frame_hs2_arpprobe(dut, conn, cmd, intf); |
| 10318 | |
| 10319 | if (strcasecmp(type, "ARPAnnounce") == 0) |
| 10320 | return cmd_sta_send_frame_hs2_arpannounce(dut, conn, cmd, intf); |
| 10321 | |
| 10322 | if (strcasecmp(type, "ARPReply") == 0) |
| 10323 | return cmd_sta_send_frame_hs2_arpreply(dut, conn, cmd, intf); |
| 10324 | |
| 10325 | if (strcasecmp(type, "DLS-request") == 0 || |
| 10326 | strcasecmp(type, "DLSrequest") == 0) |
| 10327 | return cmd_sta_send_frame_hs2_dls_req(dut, conn, cmd, intf, |
| 10328 | dest); |
| 10329 | |
| 10330 | if (strcasecmp(type, "ANQPQuery") != 0 && |
| 10331 | strcasecmp(type, "Query") != 0) { |
| 10332 | send_resp(dut, conn, SIGMA_ERROR, |
| 10333 | "ErrorCode,Unsupported HS 2.0 send frame type"); |
| 10334 | return 0; |
| 10335 | } |
| 10336 | |
| 10337 | if (sta_scan_ap(dut, intf, dest) < 0) { |
| 10338 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Could not find " |
| 10339 | "the requested AP"); |
| 10340 | return 0; |
| 10341 | } |
| 10342 | |
| 10343 | pos = buf; |
| 10344 | end = buf + sizeof(buf); |
| 10345 | count = 0; |
| 10346 | pos += snprintf(pos, end - pos, "ANQP_GET %s ", dest); |
| 10347 | |
| 10348 | val = get_param(cmd, "ANQP_CAP_LIST"); |
| 10349 | if (val && atoi(val)) { |
| 10350 | pos += snprintf(pos, end - pos, "%s257", count > 0 ? "," : ""); |
| 10351 | count++; |
| 10352 | } |
| 10353 | |
| 10354 | val = get_param(cmd, "VENUE_NAME"); |
| 10355 | if (val && atoi(val)) { |
| 10356 | pos += snprintf(pos, end - pos, "%s258", count > 0 ? "," : ""); |
| 10357 | count++; |
| 10358 | } |
| 10359 | |
| 10360 | val = get_param(cmd, "NETWORK_AUTH_TYPE"); |
| 10361 | if (val && atoi(val)) { |
| 10362 | pos += snprintf(pos, end - pos, "%s260", count > 0 ? "," : ""); |
| 10363 | count++; |
| 10364 | } |
| 10365 | |
| 10366 | val = get_param(cmd, "ROAMING_CONS"); |
| 10367 | if (val && atoi(val)) { |
| 10368 | pos += snprintf(pos, end - pos, "%s261", count > 0 ? "," : ""); |
| 10369 | count++; |
| 10370 | } |
| 10371 | |
| 10372 | val = get_param(cmd, "IP_ADDR_TYPE_AVAILABILITY"); |
| 10373 | if (val && atoi(val)) { |
| 10374 | pos += snprintf(pos, end - pos, "%s262", count > 0 ? "," : ""); |
| 10375 | count++; |
| 10376 | } |
| 10377 | |
| 10378 | val = get_param(cmd, "NAI_REALM_LIST"); |
| 10379 | if (val && atoi(val)) { |
| 10380 | pos += snprintf(pos, end - pos, "%s263", count > 0 ? "," : ""); |
| 10381 | count++; |
| 10382 | } |
| 10383 | |
| 10384 | val = get_param(cmd, "3GPP_INFO"); |
| 10385 | if (val && atoi(val)) { |
| 10386 | pos += snprintf(pos, end - pos, "%s264", count > 0 ? "," : ""); |
| 10387 | count++; |
| 10388 | } |
| 10389 | |
| 10390 | val = get_param(cmd, "DOMAIN_LIST"); |
| 10391 | if (val && atoi(val)) { |
| 10392 | pos += snprintf(pos, end - pos, "%s268", count > 0 ? "," : ""); |
| 10393 | count++; |
| 10394 | } |
| 10395 | |
Jouni Malinen | 34cf953 | 2018-04-29 19:26:33 +0300 | [diff] [blame] | 10396 | val = get_param(cmd, "Venue_URL"); |
| 10397 | if (val && atoi(val)) { |
| 10398 | pos += snprintf(pos, end - pos, "%s277", count > 0 ? "," : ""); |
| 10399 | count++; |
| 10400 | } |
| 10401 | |
Jouni Malinen | d3bca5d | 2018-04-29 17:25:23 +0300 | [diff] [blame] | 10402 | val = get_param(cmd, "Advice_Of_Charge"); |
| 10403 | if (val && atoi(val)) { |
| 10404 | pos += snprintf(pos, end - pos, "%s278", count > 0 ? "," : ""); |
| 10405 | count++; |
| 10406 | } |
| 10407 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10408 | if (count && wpa_command(intf, buf)) { |
| 10409 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,ANQP_GET failed"); |
| 10410 | return 0; |
| 10411 | } |
| 10412 | |
| 10413 | pos = buf; |
| 10414 | end = buf + sizeof(buf); |
| 10415 | count2 = 0; |
| 10416 | pos += snprintf(pos, end - pos, "HS20_ANQP_GET %s ", dest); |
| 10417 | |
| 10418 | val = get_param(cmd, "HS_CAP_LIST"); |
| 10419 | if (val && atoi(val)) { |
| 10420 | pos += snprintf(pos, end - pos, "%s2", count2 > 0 ? "," : ""); |
| 10421 | count2++; |
| 10422 | } |
| 10423 | |
| 10424 | val = get_param(cmd, "OPER_NAME"); |
| 10425 | if (val && atoi(val)) { |
| 10426 | pos += snprintf(pos, end - pos, "%s3", count2 > 0 ? "," : ""); |
| 10427 | count2++; |
| 10428 | } |
| 10429 | |
| 10430 | val = get_param(cmd, "WAN_METRICS"); |
| 10431 | if (!val) |
| 10432 | val = get_param(cmd, "WAN_MAT"); |
| 10433 | if (!val) |
| 10434 | val = get_param(cmd, "WAN_MET"); |
| 10435 | if (val && atoi(val)) { |
| 10436 | pos += snprintf(pos, end - pos, "%s4", count2 > 0 ? "," : ""); |
| 10437 | count2++; |
| 10438 | } |
| 10439 | |
| 10440 | val = get_param(cmd, "CONNECTION_CAPABILITY"); |
| 10441 | if (val && atoi(val)) { |
| 10442 | pos += snprintf(pos, end - pos, "%s5", count2 > 0 ? "," : ""); |
| 10443 | count2++; |
| 10444 | } |
| 10445 | |
| 10446 | val = get_param(cmd, "OP_CLASS"); |
| 10447 | if (val && atoi(val)) { |
| 10448 | pos += snprintf(pos, end - pos, "%s7", count2 > 0 ? "," : ""); |
| 10449 | count2++; |
| 10450 | } |
| 10451 | |
| 10452 | val = get_param(cmd, "OSU_PROVIDER_LIST"); |
| 10453 | if (val && atoi(val)) { |
| 10454 | pos += snprintf(pos, end - pos, "%s8", count2 > 0 ? "," : ""); |
| 10455 | count2++; |
| 10456 | } |
| 10457 | |
Jouni Malinen | f67afec | 2018-04-29 19:24:58 +0300 | [diff] [blame] | 10458 | val = get_param(cmd, "OPER_ICON_METADATA"); |
| 10459 | if (!val) |
| 10460 | val = get_param(cmd, "OPERATOR_ICON_METADATA"); |
| 10461 | if (val && atoi(val)) { |
| 10462 | pos += snprintf(pos, end - pos, "%s12", count2 > 0 ? "," : ""); |
| 10463 | count2++; |
| 10464 | } |
| 10465 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10466 | if (count && count2) { |
| 10467 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Wait before sending out " |
| 10468 | "second query"); |
| 10469 | sleep(1); |
| 10470 | } |
| 10471 | |
| 10472 | if (count2 && wpa_command(intf, buf)) { |
| 10473 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,HS20_ANQP_GET " |
| 10474 | "failed"); |
| 10475 | return 0; |
| 10476 | } |
| 10477 | |
| 10478 | val = get_param(cmd, "NAI_HOME_REALM_LIST"); |
| 10479 | if (val) { |
| 10480 | if (count || count2) { |
| 10481 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Wait before " |
| 10482 | "sending out second query"); |
| 10483 | sleep(1); |
| 10484 | } |
| 10485 | |
| 10486 | if (strcmp(val, "1") == 0) |
| 10487 | val = "mail.example.com"; |
| 10488 | snprintf(buf, end - pos, |
| 10489 | "HS20_GET_NAI_HOME_REALM_LIST %s realm=%s", |
| 10490 | dest, val); |
| 10491 | if (wpa_command(intf, buf)) { |
| 10492 | send_resp(dut, conn, SIGMA_ERROR, |
| 10493 | "ErrorCode,HS20_GET_NAI_HOME_REALM_LIST " |
| 10494 | "failed"); |
| 10495 | return 0; |
| 10496 | } |
| 10497 | } |
| 10498 | |
| 10499 | val = get_param(cmd, "ICON_REQUEST"); |
| 10500 | if (val) { |
| 10501 | if (count || count2) { |
| 10502 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Wait before " |
| 10503 | "sending out second query"); |
| 10504 | sleep(1); |
| 10505 | } |
| 10506 | |
| 10507 | snprintf(buf, end - pos, |
| 10508 | "HS20_ICON_REQUEST %s %s", dest, val); |
| 10509 | if (wpa_command(intf, buf)) { |
| 10510 | send_resp(dut, conn, SIGMA_ERROR, |
| 10511 | "ErrorCode,HS20_ICON_REQUEST failed"); |
| 10512 | return 0; |
| 10513 | } |
| 10514 | } |
| 10515 | |
| 10516 | return 1; |
| 10517 | } |
| 10518 | |
| 10519 | |
| 10520 | static int ath_sta_send_frame_vht(struct sigma_dut *dut, |
| 10521 | struct sigma_conn *conn, |
| 10522 | struct sigma_cmd *cmd) |
| 10523 | { |
| 10524 | const char *val; |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10525 | const char *ifname; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10526 | int chwidth, nss; |
| 10527 | |
| 10528 | val = get_param(cmd, "framename"); |
| 10529 | if (!val) |
| 10530 | return -1; |
| 10531 | sigma_dut_print(dut, DUT_MSG_DEBUG, "framename is %s", val); |
| 10532 | |
| 10533 | /* Command sequence to generate Op mode notification */ |
| 10534 | if (val && strcasecmp(val, "Op_md_notif_frm") == 0) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10535 | ifname = get_station_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10536 | |
| 10537 | /* Disable STBC */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 10538 | run_iwpriv(dut, ifname, "tx_stbc 0"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10539 | |
| 10540 | /* Extract Channel width */ |
| 10541 | val = get_param(cmd, "Channel_width"); |
| 10542 | if (val) { |
| 10543 | switch (atoi(val)) { |
| 10544 | case 20: |
| 10545 | chwidth = 0; |
| 10546 | break; |
| 10547 | case 40: |
| 10548 | chwidth = 1; |
| 10549 | break; |
| 10550 | case 80: |
| 10551 | chwidth = 2; |
| 10552 | break; |
| 10553 | case 160: |
| 10554 | chwidth = 3; |
| 10555 | break; |
| 10556 | default: |
| 10557 | chwidth = 2; |
| 10558 | break; |
| 10559 | } |
| 10560 | |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 10561 | run_iwpriv(dut, ifname, "chwidth %d", chwidth); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10562 | } |
| 10563 | |
| 10564 | /* Extract NSS */ |
| 10565 | val = get_param(cmd, "NSS"); |
| 10566 | if (val) { |
| 10567 | switch (atoi(val)) { |
| 10568 | case 1: |
| 10569 | nss = 1; |
| 10570 | break; |
| 10571 | case 2: |
| 10572 | nss = 3; |
| 10573 | break; |
| 10574 | case 3: |
| 10575 | nss = 7; |
| 10576 | break; |
| 10577 | default: |
| 10578 | /* We do not support NSS > 3 */ |
| 10579 | nss = 3; |
| 10580 | break; |
| 10581 | } |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 10582 | run_iwpriv(dut, ifname, "rxchainmask %d", nss); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10583 | } |
| 10584 | |
| 10585 | /* Opmode notify */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 10586 | run_iwpriv(dut, ifname, "opmode_notify 1"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10587 | } |
| 10588 | |
| 10589 | return 1; |
| 10590 | } |
| 10591 | |
| 10592 | |
| 10593 | static int cmd_sta_send_frame_vht(struct sigma_dut *dut, |
| 10594 | struct sigma_conn *conn, |
| 10595 | struct sigma_cmd *cmd) |
| 10596 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10597 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10598 | case DRIVER_ATHEROS: |
| 10599 | return ath_sta_send_frame_vht(dut, conn, cmd); |
| 10600 | default: |
| 10601 | send_resp(dut, conn, SIGMA_ERROR, |
| 10602 | "errorCode,Unsupported sta_set_frame(VHT) with the current driver"); |
| 10603 | return 0; |
| 10604 | } |
| 10605 | } |
| 10606 | |
| 10607 | |
Kiran Kumar Lokere | 419f696 | 2018-10-24 19:03:04 -0700 | [diff] [blame] | 10608 | static int wcn_sta_send_frame_he(struct sigma_dut *dut, struct sigma_conn *conn, |
| 10609 | struct sigma_cmd *cmd) |
| 10610 | { |
| 10611 | const char *val; |
| 10612 | const char *intf = get_param(cmd, "Interface"); |
| 10613 | |
Alexei Avshalom Lazar | 4a3c2f8 | 2019-05-02 13:35:37 +0300 | [diff] [blame] | 10614 | if (!intf) |
| 10615 | return -1; |
| 10616 | |
Kiran Kumar Lokere | 419f696 | 2018-10-24 19:03:04 -0700 | [diff] [blame] | 10617 | val = get_param(cmd, "framename"); |
| 10618 | if (!val) |
| 10619 | return -1; |
| 10620 | sigma_dut_print(dut, DUT_MSG_DEBUG, "framename is %s", val); |
| 10621 | |
| 10622 | /* Command sequence to generate Op mode notification */ |
| 10623 | if (val && strcasecmp(val, "action") == 0) { |
| 10624 | val = get_param(cmd, "PPDUTxType"); |
| 10625 | if (val && strcasecmp(val, "TB") == 0) { |
| 10626 | if (sta_set_action_tx_in_he_tb_ppdu(dut, intf, 1)) { |
| 10627 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10628 | "failed to send TB PPDU Tx cfg"); |
| 10629 | send_resp(dut, conn, SIGMA_ERROR, |
| 10630 | "ErrorCode,set TB PPDU Tx cfg failed"); |
| 10631 | return 0; |
| 10632 | } |
| 10633 | return 1; |
| 10634 | } |
| 10635 | |
| 10636 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10637 | "Action Tx type is not defined"); |
| 10638 | } |
| 10639 | |
| 10640 | return 1; |
| 10641 | } |
| 10642 | |
| 10643 | |
| 10644 | static int cmd_sta_send_frame_he(struct sigma_dut *dut, |
| 10645 | struct sigma_conn *conn, |
| 10646 | struct sigma_cmd *cmd) |
| 10647 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10648 | switch (get_driver_type(dut)) { |
Kiran Kumar Lokere | 419f696 | 2018-10-24 19:03:04 -0700 | [diff] [blame] | 10649 | case DRIVER_WCN: |
| 10650 | return wcn_sta_send_frame_he(dut, conn, cmd); |
| 10651 | default: |
| 10652 | send_resp(dut, conn, SIGMA_ERROR, |
| 10653 | "errorCode,Unsupported sta_set_frame(HE) with the current driver"); |
| 10654 | return 0; |
| 10655 | } |
| 10656 | } |
| 10657 | |
| 10658 | |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 10659 | #ifdef __linux__ |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 10660 | |
| 10661 | static int |
| 10662 | wil6210_send_p2p_frame_60g(struct sigma_dut *dut, struct sigma_cmd *cmd, |
| 10663 | const char *frame_name, const char *dest_mac) |
| 10664 | { |
| 10665 | int isprobereq = strcasecmp(frame_name, "probereq") == 0; |
| 10666 | const char *ssid = get_param(cmd, "ssid"); |
| 10667 | const char *countstr = get_param(cmd, "count"); |
| 10668 | const char *channelstr = get_param(cmd, "channel"); |
| 10669 | const char *group_id = get_param(cmd, "groupid"); |
| 10670 | const char *client_id = get_param(cmd, "clientmac"); |
| 10671 | int count, channel, freq, i; |
| 10672 | const char *fname; |
| 10673 | char frame[1024], src_mac[20], group_id_attr[25], |
| 10674 | device_macstr[3 * ETH_ALEN], client_mac[ETH_ALEN]; |
| 10675 | const char *group_ssid; |
| 10676 | const int group_ssid_prefix_len = 9; |
| 10677 | struct ieee80211_hdr_3addr *hdr = (struct ieee80211_hdr_3addr *) frame; |
| 10678 | size_t framelen = sizeof(frame); |
| 10679 | struct template_frame_tag tags[2]; |
| 10680 | size_t tags_total = ARRAY_SIZE(tags); |
| 10681 | int tag_index, len, dst_len; |
| 10682 | |
| 10683 | if (!countstr || !channelstr) { |
| 10684 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10685 | "Missing argument: count, channel"); |
| 10686 | return -1; |
| 10687 | } |
| 10688 | if (isprobereq && !ssid) { |
| 10689 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10690 | "Missing argument: ssid"); |
| 10691 | return -1; |
| 10692 | } |
| 10693 | if (!isprobereq && (!group_id || !client_id)) { |
| 10694 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10695 | "Missing argument: group_id, client_id"); |
| 10696 | return -1; |
| 10697 | } |
| 10698 | |
| 10699 | count = atoi(countstr); |
| 10700 | channel = atoi(channelstr); |
| 10701 | freq = channel_to_freq(dut, channel); |
| 10702 | |
| 10703 | if (!freq) { |
| 10704 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10705 | "invalid channel: %s", channelstr); |
| 10706 | return -1; |
| 10707 | } |
| 10708 | |
| 10709 | if (isprobereq) { |
| 10710 | if (strcasecmp(ssid, "wildcard") == 0) { |
| 10711 | fname = "probe_req_wildcard.txt"; |
| 10712 | } else if (strcasecmp(ssid, "P2P_Wildcard") == 0) { |
| 10713 | fname = "probe_req_P2P_Wildcard.txt"; |
| 10714 | } else { |
| 10715 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10716 | "invalid probe request type"); |
| 10717 | return -1; |
| 10718 | } |
| 10719 | } else { |
| 10720 | fname = "P2P_device_discovery_req.txt"; |
| 10721 | } |
| 10722 | |
| 10723 | if (parse_template_frame_file(dut, fname, frame, &framelen, |
| 10724 | tags, &tags_total)) { |
| 10725 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10726 | "invalid frame template: %s", fname); |
| 10727 | return -1; |
| 10728 | } |
| 10729 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10730 | if (get_wpa_status(get_station_ifname(dut), "address", |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 10731 | src_mac, sizeof(src_mac)) < 0 || |
| 10732 | parse_mac_address(dut, src_mac, &hdr->addr2[0]) || |
| 10733 | parse_mac_address(dut, dest_mac, &hdr->addr1[0])) |
| 10734 | return -1; |
| 10735 | /* Use wildcard BSSID, since we are in PBSS */ |
| 10736 | memset(&hdr->addr3, 0xFF, ETH_ALEN); |
| 10737 | |
| 10738 | if (!isprobereq) { |
| 10739 | tag_index = find_template_frame_tag(tags, tags_total, 1); |
| 10740 | if (tag_index < 0) { |
| 10741 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10742 | "can't find device id attribute"); |
| 10743 | return -1; |
| 10744 | } |
| 10745 | if (parse_mac_address(dut, client_id, |
| 10746 | (unsigned char *) client_mac)) { |
| 10747 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10748 | "invalid client_id: %s", client_id); |
| 10749 | return -1; |
| 10750 | } |
| 10751 | if (replace_p2p_attribute(dut, &frame[tags[tag_index].offset], |
| 10752 | framelen - tags[tag_index].offset, |
| 10753 | IEEE80211_P2P_ATTR_DEVICE_ID, |
| 10754 | client_mac, ETH_ALEN)) { |
| 10755 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10756 | "fail to replace device id attribute"); |
| 10757 | return -1; |
| 10758 | } |
| 10759 | |
| 10760 | /* |
| 10761 | * group_id arg contains device MAC address followed by |
| 10762 | * space and SSID (DIRECT-somessid). |
| 10763 | * group id attribute contains device address (6 bytes) |
| 10764 | * followed by SSID prefix DIRECT-XX (9 bytes) |
| 10765 | */ |
| 10766 | if (strlen(group_id) < sizeof(device_macstr)) { |
| 10767 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10768 | "group_id arg too short"); |
| 10769 | return -1; |
| 10770 | } |
| 10771 | memcpy(device_macstr, group_id, sizeof(device_macstr)); |
| 10772 | device_macstr[sizeof(device_macstr) - 1] = '\0'; |
| 10773 | if (parse_mac_address(dut, device_macstr, |
| 10774 | (unsigned char *) group_id_attr)) { |
| 10775 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10776 | "fail to parse device address from group_id"); |
| 10777 | return -1; |
| 10778 | } |
| 10779 | group_ssid = strchr(group_id, ' '); |
| 10780 | if (!group_ssid) { |
| 10781 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10782 | "invalid group_id arg, no ssid"); |
| 10783 | return -1; |
| 10784 | } |
| 10785 | group_ssid++; |
| 10786 | len = strlen(group_ssid); |
| 10787 | if (len < group_ssid_prefix_len) { |
| 10788 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10789 | "group_id SSID too short"); |
| 10790 | return -1; |
| 10791 | } |
| 10792 | dst_len = sizeof(group_id_attr) - ETH_ALEN; |
| 10793 | if (len > dst_len) { |
| 10794 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10795 | "group_id SSID (%s) too long", |
| 10796 | group_ssid); |
| 10797 | return -1; |
| 10798 | } |
| 10799 | |
| 10800 | memcpy(group_id_attr + ETH_ALEN, group_ssid, len); |
| 10801 | tag_index = find_template_frame_tag(tags, tags_total, 2); |
| 10802 | if (tag_index < 0) { |
| 10803 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10804 | "can't find group id attribute"); |
| 10805 | return -1; |
| 10806 | } |
| 10807 | if (replace_p2p_attribute(dut, &frame[tags[tag_index].offset], |
| 10808 | framelen - tags[tag_index].offset, |
| 10809 | IEEE80211_P2P_ATTR_GROUP_ID, |
| 10810 | group_id_attr, |
| 10811 | sizeof(group_id_attr))) { |
| 10812 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10813 | "fail to replace group id attribute"); |
| 10814 | return -1; |
| 10815 | } |
| 10816 | } |
| 10817 | |
| 10818 | for (i = 0; i < count; i++) { |
| 10819 | if (wil6210_transmit_frame(dut, freq, |
| 10820 | WIL_TRANSMIT_FRAME_DEFAULT_ROC, |
| 10821 | frame, framelen)) { |
| 10822 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10823 | "fail to transmit probe request frame"); |
| 10824 | return -1; |
| 10825 | } |
| 10826 | } |
| 10827 | |
| 10828 | return 0; |
| 10829 | } |
| 10830 | |
| 10831 | |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 10832 | int wil6210_send_frame_60g(struct sigma_dut *dut, struct sigma_conn *conn, |
| 10833 | struct sigma_cmd *cmd) |
| 10834 | { |
| 10835 | const char *frame_name = get_param(cmd, "framename"); |
| 10836 | const char *mac = get_param(cmd, "dest_mac"); |
| 10837 | |
| 10838 | if (!frame_name || !mac) { |
| 10839 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10840 | "framename and dest_mac must be provided"); |
| 10841 | return -1; |
| 10842 | } |
| 10843 | |
| 10844 | if (strcasecmp(frame_name, "brp") == 0) { |
| 10845 | const char *l_rx = get_param(cmd, "L-RX"); |
| 10846 | int l_rx_i; |
| 10847 | |
| 10848 | if (!l_rx) { |
| 10849 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10850 | "L-RX must be provided"); |
| 10851 | return -1; |
| 10852 | } |
| 10853 | l_rx_i = atoi(l_rx); |
| 10854 | |
| 10855 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 10856 | "dev_send_frame: BRP-RX, dest_mac %s, L-RX %s", |
| 10857 | mac, l_rx); |
| 10858 | if (l_rx_i != 16) { |
| 10859 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10860 | "unsupported L-RX: %s", l_rx); |
| 10861 | return -1; |
| 10862 | } |
| 10863 | |
| 10864 | if (wil6210_send_brp_rx(dut, mac, l_rx_i)) |
| 10865 | return -1; |
| 10866 | } else if (strcasecmp(frame_name, "ssw") == 0) { |
| 10867 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 10868 | "dev_send_frame: SLS, dest_mac %s", mac); |
| 10869 | if (wil6210_send_sls(dut, mac)) |
| 10870 | return -1; |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 10871 | } else if ((strcasecmp(frame_name, "probereq") == 0) || |
| 10872 | (strcasecmp(frame_name, "devdiscreq") == 0)) { |
| 10873 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 10874 | "dev_send_frame: %s, dest_mac %s", frame_name, |
| 10875 | mac); |
| 10876 | if (wil6210_send_p2p_frame_60g(dut, cmd, frame_name, mac)) |
| 10877 | return -1; |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 10878 | } else { |
| 10879 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 10880 | "unsupported frame type: %s", frame_name); |
| 10881 | return -1; |
| 10882 | } |
| 10883 | |
| 10884 | return 1; |
| 10885 | } |
Alexei Avshalom Lazar | a90032d | 2019-05-02 13:34:02 +0300 | [diff] [blame] | 10886 | |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 10887 | #endif /* __linux__ */ |
| 10888 | |
| 10889 | |
| 10890 | static int cmd_sta_send_frame_60g(struct sigma_dut *dut, |
| 10891 | struct sigma_conn *conn, |
| 10892 | struct sigma_cmd *cmd) |
| 10893 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 10894 | switch (get_driver_type(dut)) { |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 10895 | #ifdef __linux__ |
| 10896 | case DRIVER_WIL6210: |
| 10897 | return wil6210_send_frame_60g(dut, conn, cmd); |
| 10898 | #endif /* __linux__ */ |
| 10899 | default: |
| 10900 | send_resp(dut, conn, SIGMA_ERROR, |
| 10901 | "errorCode,Unsupported sta_set_frame(60G) with the current driver"); |
| 10902 | return 0; |
| 10903 | } |
| 10904 | } |
| 10905 | |
| 10906 | |
Ashwini Patil | db59b3c | 2017-04-13 15:19:23 +0530 | [diff] [blame] | 10907 | static int mbo_send_anqp_query(struct sigma_dut *dut, struct sigma_conn *conn, |
| 10908 | const char *intf, struct sigma_cmd *cmd) |
| 10909 | { |
| 10910 | const char *val, *addr; |
| 10911 | char buf[100]; |
| 10912 | |
| 10913 | addr = get_param(cmd, "DestMac"); |
| 10914 | if (!addr) { |
| 10915 | send_resp(dut, conn, SIGMA_INVALID, |
| 10916 | "ErrorCode,AP MAC address is missing"); |
| 10917 | return 0; |
| 10918 | } |
| 10919 | |
| 10920 | val = get_param(cmd, "ANQPQuery_ID"); |
| 10921 | if (!val) { |
| 10922 | send_resp(dut, conn, SIGMA_INVALID, |
| 10923 | "ErrorCode,Missing ANQPQuery_ID"); |
| 10924 | return 0; |
| 10925 | } |
| 10926 | |
| 10927 | if (strcasecmp(val, "NeighborReportReq") == 0) { |
| 10928 | snprintf(buf, sizeof(buf), "ANQP_GET %s 272", addr); |
| 10929 | } else if (strcasecmp(val, "QueryListWithCellPref") == 0) { |
| 10930 | snprintf(buf, sizeof(buf), "ANQP_GET %s 272,mbo:2", addr); |
| 10931 | } else { |
| 10932 | sigma_dut_print(dut, DUT_MSG_ERROR, "Invalid ANQPQuery_ID: %s", |
| 10933 | val); |
| 10934 | send_resp(dut, conn, SIGMA_INVALID, |
| 10935 | "ErrorCode,Invalid ANQPQuery_ID"); |
| 10936 | return 0; |
| 10937 | } |
| 10938 | |
Ashwini Patil | d174f2c | 2017-04-13 16:49:46 +0530 | [diff] [blame] | 10939 | /* Set gas_address3 field to IEEE 802.11-2012 standard compliant form |
| 10940 | * (Address3 = Wildcard BSSID when sent to not-associated AP; |
| 10941 | * if associated, AP BSSID). |
| 10942 | */ |
| 10943 | if (wpa_command(intf, "SET gas_address3 1") < 0) { |
| 10944 | send_resp(dut, conn, SIGMA_ERROR, |
| 10945 | "ErrorCode,Failed to set gas_address3"); |
| 10946 | return 0; |
| 10947 | } |
| 10948 | |
Ashwini Patil | db59b3c | 2017-04-13 15:19:23 +0530 | [diff] [blame] | 10949 | if (wpa_command(intf, buf) < 0) { |
| 10950 | send_resp(dut, conn, SIGMA_ERROR, |
| 10951 | "ErrorCode,Failed to send ANQP query"); |
| 10952 | return 0; |
| 10953 | } |
| 10954 | |
| 10955 | return 1; |
| 10956 | } |
| 10957 | |
| 10958 | |
| 10959 | static int mbo_cmd_sta_send_frame(struct sigma_dut *dut, |
| 10960 | struct sigma_conn *conn, |
| 10961 | const char *intf, |
| 10962 | struct sigma_cmd *cmd) |
| 10963 | { |
| 10964 | const char *val = get_param(cmd, "FrameName"); |
| 10965 | |
| 10966 | if (val && strcasecmp(val, "ANQPQuery") == 0) |
| 10967 | return mbo_send_anqp_query(dut, conn, intf, cmd); |
| 10968 | |
| 10969 | return 2; |
| 10970 | } |
| 10971 | |
| 10972 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 10973 | enum sigma_cmd_result cmd_sta_send_frame(struct sigma_dut *dut, |
| 10974 | struct sigma_conn *conn, |
| 10975 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10976 | { |
| 10977 | const char *intf = get_param(cmd, "Interface"); |
| 10978 | const char *val; |
| 10979 | enum send_frame_type frame; |
| 10980 | enum send_frame_protection protected; |
| 10981 | char buf[100]; |
| 10982 | unsigned char addr[ETH_ALEN]; |
| 10983 | int res; |
| 10984 | |
Alexei Avshalom Lazar | 4a3c2f8 | 2019-05-02 13:35:37 +0300 | [diff] [blame] | 10985 | if (!intf) |
| 10986 | return -1; |
| 10987 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10988 | val = get_param(cmd, "program"); |
| 10989 | if (val == NULL) |
| 10990 | val = get_param(cmd, "frame"); |
| 10991 | if (val && strcasecmp(val, "TDLS") == 0) |
| 10992 | return cmd_sta_send_frame_tdls(dut, conn, cmd); |
| 10993 | if (val && (strcasecmp(val, "HS2") == 0 || |
Jouni Malinen | 1f6ae64 | 2018-06-07 23:56:13 +0300 | [diff] [blame] | 10994 | strcasecmp(val, "HS2-R2") == 0 || |
| 10995 | strcasecmp(val, "HS2-R3") == 0)) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 10996 | return cmd_sta_send_frame_hs2(dut, conn, cmd); |
| 10997 | if (val && strcasecmp(val, "VHT") == 0) |
| 10998 | return cmd_sta_send_frame_vht(dut, conn, cmd); |
Kiran Kumar Lokere | 419f696 | 2018-10-24 19:03:04 -0700 | [diff] [blame] | 10999 | if (val && strcasecmp(val, "HE") == 0) |
| 11000 | return cmd_sta_send_frame_he(dut, conn, cmd); |
priyadharshini gowthaman | d66913a | 2016-07-29 15:11:17 -0700 | [diff] [blame] | 11001 | if (val && strcasecmp(val, "LOC") == 0) |
| 11002 | return loc_cmd_sta_send_frame(dut, conn, cmd); |
Lior David | 0fe101e | 2017-03-09 16:09:50 +0200 | [diff] [blame] | 11003 | if (val && strcasecmp(val, "60GHz") == 0) |
| 11004 | return cmd_sta_send_frame_60g(dut, conn, cmd); |
Ashwini Patil | db59b3c | 2017-04-13 15:19:23 +0530 | [diff] [blame] | 11005 | if (val && strcasecmp(val, "MBO") == 0) { |
| 11006 | res = mbo_cmd_sta_send_frame(dut, conn, intf, cmd); |
| 11007 | if (res != 2) |
| 11008 | return res; |
| 11009 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11010 | |
| 11011 | val = get_param(cmd, "TD_DISC"); |
| 11012 | if (val) { |
| 11013 | if (hwaddr_aton(val, addr) < 0) |
| 11014 | return -1; |
| 11015 | snprintf(buf, sizeof(buf), "TDLS_DISCOVER %s", val); |
| 11016 | if (wpa_command(intf, buf) < 0) { |
| 11017 | send_resp(dut, conn, SIGMA_ERROR, |
| 11018 | "ErrorCode,Failed to send TDLS discovery"); |
| 11019 | return 0; |
| 11020 | } |
| 11021 | return 1; |
| 11022 | } |
| 11023 | |
| 11024 | val = get_param(cmd, "TD_Setup"); |
| 11025 | if (val) { |
| 11026 | if (hwaddr_aton(val, addr) < 0) |
| 11027 | return -1; |
| 11028 | snprintf(buf, sizeof(buf), "TDLS_SETUP %s", val); |
| 11029 | if (wpa_command(intf, buf) < 0) { |
| 11030 | send_resp(dut, conn, SIGMA_ERROR, |
| 11031 | "ErrorCode,Failed to start TDLS setup"); |
| 11032 | return 0; |
| 11033 | } |
| 11034 | return 1; |
| 11035 | } |
| 11036 | |
| 11037 | val = get_param(cmd, "TD_TearDown"); |
| 11038 | if (val) { |
| 11039 | if (hwaddr_aton(val, addr) < 0) |
| 11040 | return -1; |
| 11041 | snprintf(buf, sizeof(buf), "TDLS_TEARDOWN %s", val); |
| 11042 | if (wpa_command(intf, buf) < 0) { |
| 11043 | send_resp(dut, conn, SIGMA_ERROR, |
| 11044 | "ErrorCode,Failed to tear down TDLS link"); |
| 11045 | return 0; |
| 11046 | } |
| 11047 | return 1; |
| 11048 | } |
| 11049 | |
| 11050 | val = get_param(cmd, "TD_ChannelSwitch"); |
| 11051 | if (val) { |
| 11052 | /* TODO */ |
| 11053 | send_resp(dut, conn, SIGMA_ERROR, |
| 11054 | "ErrorCode,TD_ChannelSwitch not yet supported"); |
| 11055 | return 0; |
| 11056 | } |
| 11057 | |
| 11058 | val = get_param(cmd, "TD_NF"); |
| 11059 | if (val) { |
| 11060 | /* TODO */ |
| 11061 | send_resp(dut, conn, SIGMA_ERROR, |
| 11062 | "ErrorCode,TD_NF not yet supported"); |
| 11063 | return 0; |
| 11064 | } |
| 11065 | |
| 11066 | val = get_param(cmd, "PMFFrameType"); |
| 11067 | if (val == NULL) |
| 11068 | val = get_param(cmd, "FrameName"); |
| 11069 | if (val == NULL) |
| 11070 | val = get_param(cmd, "Type"); |
| 11071 | if (val == NULL) |
| 11072 | return -1; |
| 11073 | if (strcasecmp(val, "disassoc") == 0) |
| 11074 | frame = DISASSOC; |
| 11075 | else if (strcasecmp(val, "deauth") == 0) |
| 11076 | frame = DEAUTH; |
| 11077 | else if (strcasecmp(val, "saquery") == 0) |
| 11078 | frame = SAQUERY; |
| 11079 | else if (strcasecmp(val, "auth") == 0) |
| 11080 | frame = AUTH; |
| 11081 | else if (strcasecmp(val, "assocreq") == 0) |
| 11082 | frame = ASSOCREQ; |
| 11083 | else if (strcasecmp(val, "reassocreq") == 0) |
| 11084 | frame = REASSOCREQ; |
| 11085 | else if (strcasecmp(val, "neigreq") == 0) { |
| 11086 | sigma_dut_print(dut, DUT_MSG_INFO, "Got neighbor request"); |
| 11087 | |
| 11088 | val = get_param(cmd, "ssid"); |
| 11089 | if (val == NULL) |
| 11090 | return -1; |
| 11091 | |
| 11092 | res = send_neighbor_request(dut, intf, val); |
| 11093 | if (res) { |
| 11094 | send_resp(dut, conn, SIGMA_ERROR, "errorCode," |
| 11095 | "Failed to send neighbor report request"); |
| 11096 | return 0; |
| 11097 | } |
| 11098 | |
| 11099 | return 1; |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 11100 | } else if (strcasecmp(val, "transmgmtquery") == 0 || |
| 11101 | strcasecmp(val, "BTMQuery") == 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11102 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 11103 | "Got Transition Management Query"); |
| 11104 | |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 11105 | res = send_trans_mgmt_query(dut, intf, cmd); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11106 | if (res) { |
| 11107 | send_resp(dut, conn, SIGMA_ERROR, "errorCode," |
| 11108 | "Failed to send Transition Management Query"); |
| 11109 | return 0; |
| 11110 | } |
| 11111 | |
| 11112 | return 1; |
| 11113 | } else { |
| 11114 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported " |
| 11115 | "PMFFrameType"); |
| 11116 | return 0; |
| 11117 | } |
| 11118 | |
| 11119 | val = get_param(cmd, "PMFProtected"); |
| 11120 | if (val == NULL) |
| 11121 | val = get_param(cmd, "Protected"); |
| 11122 | if (val == NULL) |
| 11123 | return -1; |
| 11124 | if (strcasecmp(val, "Correct-key") == 0 || |
| 11125 | strcasecmp(val, "CorrectKey") == 0) |
| 11126 | protected = CORRECT_KEY; |
| 11127 | else if (strcasecmp(val, "IncorrectKey") == 0) |
| 11128 | protected = INCORRECT_KEY; |
| 11129 | else if (strcasecmp(val, "Unprotected") == 0) |
| 11130 | protected = UNPROTECTED; |
| 11131 | else { |
| 11132 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported " |
| 11133 | "PMFProtected"); |
| 11134 | return 0; |
| 11135 | } |
| 11136 | |
| 11137 | if (protected != UNPROTECTED && |
| 11138 | (frame == AUTH || frame == ASSOCREQ || frame == REASSOCREQ)) { |
| 11139 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Impossible " |
| 11140 | "PMFProtected for auth/assocreq/reassocreq"); |
| 11141 | return 0; |
| 11142 | } |
| 11143 | |
| 11144 | if (if_nametoindex("sigmadut") == 0) { |
| 11145 | snprintf(buf, sizeof(buf), |
| 11146 | "iw dev %s interface add sigmadut type monitor", |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 11147 | get_station_ifname(dut)); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11148 | if (system(buf) != 0 || |
| 11149 | if_nametoindex("sigmadut") == 0) { |
| 11150 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to add " |
| 11151 | "monitor interface with '%s'", buf); |
| 11152 | return -2; |
| 11153 | } |
| 11154 | } |
| 11155 | |
| 11156 | if (system("ifconfig sigmadut up") != 0) { |
| 11157 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set " |
| 11158 | "monitor interface up"); |
| 11159 | return -2; |
| 11160 | } |
| 11161 | |
| 11162 | return sta_inject_frame(dut, conn, frame, protected, NULL); |
| 11163 | } |
| 11164 | |
| 11165 | |
| 11166 | static int cmd_sta_set_parameter_hs2(struct sigma_dut *dut, |
| 11167 | struct sigma_conn *conn, |
| 11168 | struct sigma_cmd *cmd, |
| 11169 | const char *ifname) |
| 11170 | { |
| 11171 | char buf[200]; |
| 11172 | const char *val; |
| 11173 | |
| 11174 | val = get_param(cmd, "ClearARP"); |
| 11175 | if (val && atoi(val) == 1) { |
| 11176 | snprintf(buf, sizeof(buf), "ip neigh flush dev %s", ifname); |
| 11177 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 11178 | if (system(buf) != 0) { |
| 11179 | send_resp(dut, conn, SIGMA_ERROR, |
| 11180 | "errorCode,Failed to clear ARP cache"); |
| 11181 | return 0; |
| 11182 | } |
| 11183 | } |
| 11184 | |
| 11185 | return 1; |
| 11186 | } |
| 11187 | |
| 11188 | |
| 11189 | int cmd_sta_set_parameter(struct sigma_dut *dut, struct sigma_conn *conn, |
| 11190 | struct sigma_cmd *cmd) |
| 11191 | { |
| 11192 | const char *intf = get_param(cmd, "Interface"); |
| 11193 | const char *val; |
| 11194 | |
| 11195 | if (intf == NULL) |
| 11196 | return -1; |
| 11197 | |
| 11198 | val = get_param(cmd, "program"); |
| 11199 | if (val && (strcasecmp(val, "HS2") == 0 || |
Jouni Malinen | 1f6ae64 | 2018-06-07 23:56:13 +0300 | [diff] [blame] | 11200 | strcasecmp(val, "HS2-R2") == 0 || |
| 11201 | strcasecmp(val, "HS2-R3") == 0)) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11202 | return cmd_sta_set_parameter_hs2(dut, conn, cmd, intf); |
| 11203 | |
| 11204 | return -1; |
| 11205 | } |
| 11206 | |
| 11207 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 11208 | static enum sigma_cmd_result cmd_sta_set_macaddr(struct sigma_dut *dut, |
| 11209 | struct sigma_conn *conn, |
| 11210 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11211 | { |
| 11212 | const char *intf = get_param(cmd, "Interface"); |
| 11213 | const char *mac = get_param(cmd, "MAC"); |
| 11214 | |
| 11215 | if (intf == NULL || mac == NULL) |
| 11216 | return -1; |
| 11217 | |
| 11218 | sigma_dut_print(dut, DUT_MSG_INFO, "Change local MAC address for " |
| 11219 | "interface %s to %s", intf, mac); |
| 11220 | |
| 11221 | if (dut->set_macaddr) { |
| 11222 | char buf[128]; |
| 11223 | int res; |
| 11224 | if (strcasecmp(mac, "default") == 0) { |
| 11225 | res = snprintf(buf, sizeof(buf), "%s", |
| 11226 | dut->set_macaddr); |
| 11227 | dut->tmp_mac_addr = 0; |
| 11228 | } else { |
| 11229 | res = snprintf(buf, sizeof(buf), "%s %s", |
| 11230 | dut->set_macaddr, mac); |
| 11231 | dut->tmp_mac_addr = 1; |
| 11232 | } |
| 11233 | if (res < 0 || res >= (int) sizeof(buf)) |
| 11234 | return -1; |
| 11235 | if (system(buf) != 0) { |
| 11236 | send_resp(dut, conn, SIGMA_ERROR, |
| 11237 | "errorCode,Failed to set MAC " |
| 11238 | "address"); |
| 11239 | return 0; |
| 11240 | } |
| 11241 | return 1; |
| 11242 | } |
| 11243 | |
| 11244 | if (strcasecmp(mac, "default") == 0) |
| 11245 | return 1; |
| 11246 | |
| 11247 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported " |
| 11248 | "command"); |
| 11249 | return 0; |
| 11250 | } |
| 11251 | |
| 11252 | |
| 11253 | static int iwpriv_tdlsoffchnmode(struct sigma_dut *dut, |
| 11254 | struct sigma_conn *conn, const char *intf, |
| 11255 | int val) |
| 11256 | { |
| 11257 | char buf[200]; |
| 11258 | int res; |
| 11259 | |
| 11260 | res = snprintf(buf, sizeof(buf), "iwpriv %s tdlsoffchnmode %d", |
| 11261 | intf, val); |
| 11262 | if (res < 0 || res >= (int) sizeof(buf)) |
| 11263 | return -1; |
| 11264 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 11265 | if (system(buf) != 0) { |
| 11266 | send_resp(dut, conn, SIGMA_ERROR, |
| 11267 | "errorCode,Failed to configure offchannel mode"); |
| 11268 | return 0; |
| 11269 | } |
| 11270 | |
| 11271 | return 1; |
| 11272 | } |
| 11273 | |
| 11274 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11275 | static int off_chan_val(enum sec_ch_offset off) |
| 11276 | { |
| 11277 | switch (off) { |
| 11278 | case SEC_CH_NO: |
| 11279 | return 0; |
| 11280 | case SEC_CH_40ABOVE: |
| 11281 | return 40; |
| 11282 | case SEC_CH_40BELOW: |
| 11283 | return -40; |
| 11284 | } |
| 11285 | |
| 11286 | return 0; |
| 11287 | } |
| 11288 | |
| 11289 | |
| 11290 | static int iwpriv_set_offchan(struct sigma_dut *dut, struct sigma_conn *conn, |
| 11291 | const char *intf, int off_ch_num, |
| 11292 | enum sec_ch_offset sec) |
| 11293 | { |
| 11294 | char buf[200]; |
| 11295 | int res; |
| 11296 | |
| 11297 | res = snprintf(buf, sizeof(buf), "iwpriv %s tdlsoffchan %d", |
| 11298 | intf, off_ch_num); |
| 11299 | if (res < 0 || res >= (int) sizeof(buf)) |
| 11300 | return -1; |
| 11301 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 11302 | if (system(buf) != 0) { |
| 11303 | send_resp(dut, conn, SIGMA_ERROR, |
| 11304 | "errorCode,Failed to set offchan"); |
| 11305 | return 0; |
| 11306 | } |
| 11307 | |
| 11308 | res = snprintf(buf, sizeof(buf), "iwpriv %s tdlsecchnoffst %d", |
| 11309 | intf, off_chan_val(sec)); |
| 11310 | if (res < 0 || res >= (int) sizeof(buf)) |
| 11311 | return -1; |
| 11312 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 11313 | if (system(buf) != 0) { |
| 11314 | send_resp(dut, conn, SIGMA_ERROR, |
| 11315 | "errorCode,Failed to set sec chan offset"); |
| 11316 | return 0; |
| 11317 | } |
| 11318 | |
| 11319 | return 1; |
| 11320 | } |
| 11321 | |
| 11322 | |
| 11323 | static int tdls_set_offchannel_offset(struct sigma_dut *dut, |
| 11324 | struct sigma_conn *conn, |
| 11325 | const char *intf, int off_ch_num, |
| 11326 | enum sec_ch_offset sec) |
| 11327 | { |
| 11328 | char buf[200]; |
| 11329 | int res; |
| 11330 | |
| 11331 | res = snprintf(buf, sizeof(buf), "DRIVER TDLSOFFCHANNEL %d", |
| 11332 | off_ch_num); |
| 11333 | if (res < 0 || res >= (int) sizeof(buf)) |
| 11334 | return -1; |
| 11335 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 11336 | |
| 11337 | if (wpa_command(intf, buf) < 0) { |
| 11338 | send_resp(dut, conn, SIGMA_ERROR, |
| 11339 | "ErrorCode,Failed to set offchan"); |
| 11340 | return 0; |
| 11341 | } |
| 11342 | res = snprintf(buf, sizeof(buf), "DRIVER TDLSSECONDARYCHANNELOFFSET %d", |
| 11343 | off_chan_val(sec)); |
| 11344 | if (res < 0 || res >= (int) sizeof(buf)) |
| 11345 | return -1; |
| 11346 | |
| 11347 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 11348 | |
| 11349 | if (wpa_command(intf, buf) < 0) { |
| 11350 | send_resp(dut, conn, SIGMA_ERROR, |
| 11351 | "ErrorCode,Failed to set sec chan offset"); |
| 11352 | return 0; |
| 11353 | } |
| 11354 | |
| 11355 | return 1; |
| 11356 | } |
| 11357 | |
| 11358 | |
| 11359 | static int tdls_set_offchannel_mode(struct sigma_dut *dut, |
| 11360 | struct sigma_conn *conn, |
| 11361 | const char *intf, int val) |
| 11362 | { |
| 11363 | char buf[200]; |
| 11364 | int res; |
| 11365 | |
| 11366 | res = snprintf(buf, sizeof(buf), "DRIVER TDLSOFFCHANNELMODE %d", |
| 11367 | val); |
| 11368 | if (res < 0 || res >= (int) sizeof(buf)) |
| 11369 | return -1; |
| 11370 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf); |
| 11371 | |
| 11372 | if (wpa_command(intf, buf) < 0) { |
| 11373 | send_resp(dut, conn, SIGMA_ERROR, |
| 11374 | "ErrorCode,Failed to configure offchannel mode"); |
| 11375 | return 0; |
| 11376 | } |
| 11377 | |
| 11378 | return 1; |
| 11379 | } |
| 11380 | |
| 11381 | |
| 11382 | static int cmd_sta_set_rfeature_tdls(const char *intf, struct sigma_dut *dut, |
| 11383 | struct sigma_conn *conn, |
| 11384 | struct sigma_cmd *cmd) |
| 11385 | { |
| 11386 | const char *val; |
| 11387 | enum { |
| 11388 | CHSM_NOT_SET, |
| 11389 | CHSM_ENABLE, |
| 11390 | CHSM_DISABLE, |
| 11391 | CHSM_REJREQ, |
| 11392 | CHSM_UNSOLRESP |
| 11393 | } chsm = CHSM_NOT_SET; |
| 11394 | int off_ch_num = -1; |
| 11395 | enum sec_ch_offset sec_ch = SEC_CH_NO; |
| 11396 | int res; |
| 11397 | |
| 11398 | val = get_param(cmd, "Uapsd"); |
| 11399 | if (val) { |
| 11400 | char buf[100]; |
| 11401 | if (strcasecmp(val, "Enable") == 0) |
| 11402 | snprintf(buf, sizeof(buf), "SET ps 99"); |
| 11403 | else if (strcasecmp(val, "Disable") == 0) |
| 11404 | snprintf(buf, sizeof(buf), "SET ps 98"); |
| 11405 | else { |
| 11406 | send_resp(dut, conn, SIGMA_ERROR, "errorCode," |
| 11407 | "Unsupported uapsd parameter value"); |
| 11408 | return 0; |
| 11409 | } |
| 11410 | if (wpa_command(intf, buf)) { |
| 11411 | send_resp(dut, conn, SIGMA_ERROR, |
| 11412 | "ErrorCode,Failed to change U-APSD " |
| 11413 | "powersave mode"); |
| 11414 | return 0; |
| 11415 | } |
| 11416 | } |
| 11417 | |
| 11418 | val = get_param(cmd, "TPKTIMER"); |
| 11419 | if (val && strcasecmp(val, "DISABLE") == 0) { |
| 11420 | if (wpa_command(intf, "SET tdls_testing 0x100")) { |
| 11421 | send_resp(dut, conn, SIGMA_ERROR, |
| 11422 | "ErrorCode,Failed to enable no TPK " |
| 11423 | "expiration test mode"); |
| 11424 | return 0; |
| 11425 | } |
| 11426 | dut->no_tpk_expiration = 1; |
| 11427 | } |
| 11428 | |
| 11429 | val = get_param(cmd, "ChSwitchMode"); |
| 11430 | if (val) { |
| 11431 | if (strcasecmp(val, "Enable") == 0 || |
| 11432 | strcasecmp(val, "Initiate") == 0) |
| 11433 | chsm = CHSM_ENABLE; |
| 11434 | else if (strcasecmp(val, "Disable") == 0 || |
| 11435 | strcasecmp(val, "passive") == 0) |
| 11436 | chsm = CHSM_DISABLE; |
| 11437 | else if (strcasecmp(val, "RejReq") == 0) |
| 11438 | chsm = CHSM_REJREQ; |
| 11439 | else if (strcasecmp(val, "UnSolResp") == 0) |
| 11440 | chsm = CHSM_UNSOLRESP; |
| 11441 | else { |
| 11442 | send_resp(dut, conn, SIGMA_ERROR, |
| 11443 | "ErrorCode,Unknown ChSwitchMode value"); |
| 11444 | return 0; |
| 11445 | } |
| 11446 | } |
| 11447 | |
| 11448 | val = get_param(cmd, "OffChNum"); |
| 11449 | if (val) { |
| 11450 | off_ch_num = atoi(val); |
| 11451 | if (off_ch_num == 0) { |
| 11452 | send_resp(dut, conn, SIGMA_ERROR, |
| 11453 | "ErrorCode,Invalid OffChNum"); |
| 11454 | return 0; |
| 11455 | } |
| 11456 | } |
| 11457 | |
| 11458 | val = get_param(cmd, "SecChOffset"); |
| 11459 | if (val) { |
| 11460 | if (strcmp(val, "20") == 0) |
| 11461 | sec_ch = SEC_CH_NO; |
| 11462 | else if (strcasecmp(val, "40above") == 0) |
| 11463 | sec_ch = SEC_CH_40ABOVE; |
| 11464 | else if (strcasecmp(val, "40below") == 0) |
| 11465 | sec_ch = SEC_CH_40BELOW; |
| 11466 | else { |
| 11467 | send_resp(dut, conn, SIGMA_ERROR, |
| 11468 | "ErrorCode,Unknown SecChOffset value"); |
| 11469 | return 0; |
| 11470 | } |
| 11471 | } |
| 11472 | |
| 11473 | if (chsm == CHSM_NOT_SET) { |
| 11474 | /* no offchannel changes requested */ |
| 11475 | return 1; |
| 11476 | } |
| 11477 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 11478 | if (strcmp(intf, get_main_ifname(dut)) != 0 && |
| 11479 | strcmp(intf, get_station_ifname(dut)) != 0) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11480 | send_resp(dut, conn, SIGMA_ERROR, |
| 11481 | "ErrorCode,Unknown interface"); |
| 11482 | return 0; |
| 11483 | } |
| 11484 | |
| 11485 | switch (chsm) { |
| 11486 | case CHSM_NOT_SET: |
Jouni Malinen | 280f5ba | 2016-08-29 21:33:10 +0300 | [diff] [blame] | 11487 | res = 1; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11488 | break; |
| 11489 | case CHSM_ENABLE: |
| 11490 | if (off_ch_num < 0) { |
| 11491 | send_resp(dut, conn, SIGMA_ERROR, |
| 11492 | "ErrorCode,Missing OffChNum argument"); |
| 11493 | return 0; |
| 11494 | } |
| 11495 | if (wifi_chip_type == DRIVER_WCN) { |
| 11496 | res = tdls_set_offchannel_offset(dut, conn, intf, |
| 11497 | off_ch_num, sec_ch); |
| 11498 | } else { |
| 11499 | res = iwpriv_set_offchan(dut, conn, intf, off_ch_num, |
| 11500 | sec_ch); |
| 11501 | } |
| 11502 | if (res != 1) |
| 11503 | return res; |
| 11504 | if (wifi_chip_type == DRIVER_WCN) |
| 11505 | res = tdls_set_offchannel_mode(dut, conn, intf, 1); |
| 11506 | else |
| 11507 | res = iwpriv_tdlsoffchnmode(dut, conn, intf, 1); |
| 11508 | break; |
| 11509 | case CHSM_DISABLE: |
| 11510 | if (wifi_chip_type == DRIVER_WCN) |
| 11511 | res = tdls_set_offchannel_mode(dut, conn, intf, 2); |
| 11512 | else |
| 11513 | res = iwpriv_tdlsoffchnmode(dut, conn, intf, 2); |
| 11514 | break; |
| 11515 | case CHSM_REJREQ: |
| 11516 | if (wifi_chip_type == DRIVER_WCN) |
| 11517 | res = tdls_set_offchannel_mode(dut, conn, intf, 3); |
| 11518 | else |
| 11519 | res = iwpriv_tdlsoffchnmode(dut, conn, intf, 3); |
| 11520 | break; |
| 11521 | case CHSM_UNSOLRESP: |
| 11522 | if (off_ch_num < 0) { |
| 11523 | send_resp(dut, conn, SIGMA_ERROR, |
| 11524 | "ErrorCode,Missing OffChNum argument"); |
| 11525 | return 0; |
| 11526 | } |
| 11527 | if (wifi_chip_type == DRIVER_WCN) { |
| 11528 | res = tdls_set_offchannel_offset(dut, conn, intf, |
| 11529 | off_ch_num, sec_ch); |
| 11530 | } else { |
| 11531 | res = iwpriv_set_offchan(dut, conn, intf, off_ch_num, |
| 11532 | sec_ch); |
| 11533 | } |
| 11534 | if (res != 1) |
| 11535 | return res; |
| 11536 | if (wifi_chip_type == DRIVER_WCN) |
| 11537 | res = tdls_set_offchannel_mode(dut, conn, intf, 4); |
| 11538 | else |
| 11539 | res = iwpriv_tdlsoffchnmode(dut, conn, intf, 4); |
| 11540 | break; |
| 11541 | } |
| 11542 | |
| 11543 | return res; |
| 11544 | } |
| 11545 | |
| 11546 | |
| 11547 | static int ath_sta_set_rfeature_vht(const char *intf, struct sigma_dut *dut, |
| 11548 | struct sigma_conn *conn, |
| 11549 | struct sigma_cmd *cmd) |
| 11550 | { |
| 11551 | const char *val; |
Srikanth Marepalli | 5415acf | 2018-08-27 12:53:11 +0530 | [diff] [blame] | 11552 | char *token = NULL, *result; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11553 | |
Priyadharshini Gowthaman | 8c5b9a4 | 2019-07-31 14:38:48 -0700 | [diff] [blame] | 11554 | novap_reset(dut, intf, 1); |
priyadharshini gowthaman | e5e2517 | 2015-12-08 14:53:48 -0800 | [diff] [blame] | 11555 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11556 | val = get_param(cmd, "nss_mcs_opt"); |
| 11557 | if (val) { |
| 11558 | /* String (nss_operating_mode; mcs_operating_mode) */ |
| 11559 | int nss, mcs; |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 11560 | char *saveptr; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11561 | |
| 11562 | token = strdup(val); |
| 11563 | if (!token) |
| 11564 | return 0; |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 11565 | result = strtok_r(token, ";", &saveptr); |
Pradeep Reddy POTTETI | 41b8c54 | 2016-06-15 16:09:46 +0530 | [diff] [blame] | 11566 | if (!result) { |
| 11567 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11568 | "VHT NSS not specified"); |
| 11569 | goto failed; |
| 11570 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11571 | if (strcasecmp(result, "def") != 0) { |
| 11572 | nss = atoi(result); |
| 11573 | if (nss == 4) |
| 11574 | ath_disable_txbf(dut, intf); |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 11575 | if (run_iwpriv(dut, intf, "nss %d", nss) < 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11576 | goto failed; |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 11577 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11578 | } |
| 11579 | |
Pradeep Reddy POTTETI | dbf7d71 | 2016-04-28 18:42:07 +0530 | [diff] [blame] | 11580 | result = strtok_r(NULL, ";", &saveptr); |
Pradeep Reddy POTTETI | 41b8c54 | 2016-06-15 16:09:46 +0530 | [diff] [blame] | 11581 | if (!result) { |
| 11582 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11583 | "VHT MCS not specified"); |
| 11584 | goto failed; |
| 11585 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11586 | if (strcasecmp(result, "def") == 0) { |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 11587 | if (run_iwpriv(dut, intf, "set11NRates 0") < 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11588 | goto failed; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11589 | } else { |
| 11590 | mcs = atoi(result); |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 11591 | if (run_iwpriv(dut, intf, "vhtmcs %d", mcs) < 0) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11592 | goto failed; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11593 | } |
| 11594 | /* Channel width gets messed up, fix this */ |
Priyadharshini Gowthaman | b999e9e | 2019-04-22 15:45:55 -0700 | [diff] [blame] | 11595 | run_iwpriv(dut, intf, "chwidth %d", dut->chwidth); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11596 | } |
| 11597 | |
Srikanth Marepalli | 5415acf | 2018-08-27 12:53:11 +0530 | [diff] [blame] | 11598 | free(token); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11599 | return 1; |
| 11600 | failed: |
| 11601 | free(token); |
| 11602 | return 0; |
| 11603 | } |
| 11604 | |
| 11605 | |
| 11606 | static int cmd_sta_set_rfeature_vht(const char *intf, struct sigma_dut *dut, |
| 11607 | struct sigma_conn *conn, |
| 11608 | struct sigma_cmd *cmd) |
| 11609 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 11610 | switch (get_driver_type(dut)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 11611 | case DRIVER_ATHEROS: |
| 11612 | return ath_sta_set_rfeature_vht(intf, dut, conn, cmd); |
| 11613 | default: |
| 11614 | send_resp(dut, conn, SIGMA_ERROR, |
| 11615 | "errorCode,Unsupported sta_set_rfeature(VHT) with the current driver"); |
| 11616 | return 0; |
| 11617 | } |
| 11618 | } |
| 11619 | |
| 11620 | |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11621 | static int wcn_sta_set_rfeature_he(const char *intf, struct sigma_dut *dut, |
| 11622 | struct sigma_conn *conn, |
| 11623 | struct sigma_cmd *cmd) |
| 11624 | { |
| 11625 | const char *val; |
| 11626 | char *token = NULL, *result; |
| 11627 | char buf[60]; |
| 11628 | |
| 11629 | val = get_param(cmd, "nss_mcs_opt"); |
| 11630 | if (val) { |
| 11631 | /* String (nss_operating_mode; mcs_operating_mode) */ |
| 11632 | int nss, mcs, ratecode; |
| 11633 | char *saveptr; |
| 11634 | |
| 11635 | token = strdup(val); |
| 11636 | if (!token) |
| 11637 | return -2; |
| 11638 | |
| 11639 | result = strtok_r(token, ";", &saveptr); |
| 11640 | if (!result) { |
| 11641 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11642 | "HE NSS not specified"); |
| 11643 | goto failed; |
| 11644 | } |
| 11645 | nss = 1; |
| 11646 | if (strcasecmp(result, "def") != 0) |
| 11647 | nss = atoi(result); |
| 11648 | |
| 11649 | result = strtok_r(NULL, ";", &saveptr); |
| 11650 | if (!result) { |
| 11651 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11652 | "HE MCS not specified"); |
| 11653 | goto failed; |
| 11654 | } |
| 11655 | mcs = 7; |
| 11656 | if (strcasecmp(result, "def") != 0) |
| 11657 | mcs = atoi(result); |
| 11658 | |
Arif Hussain | 557bf41 | 2018-05-25 17:29:36 -0700 | [diff] [blame] | 11659 | ratecode = 0x20; /* for nss:1 MCS 0 */ |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11660 | if (nss == 2) { |
Arif Hussain | 557bf41 | 2018-05-25 17:29:36 -0700 | [diff] [blame] | 11661 | ratecode = 0x40; /* for nss:2 MCS 0 */ |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11662 | } else if (nss > 2) { |
| 11663 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11664 | "HE NSS %d not supported", nss); |
| 11665 | goto failed; |
| 11666 | } |
| 11667 | |
Arif Hussain | 557bf41 | 2018-05-25 17:29:36 -0700 | [diff] [blame] | 11668 | snprintf(buf, sizeof(buf), "iwpriv %s nss %d", intf, nss); |
| 11669 | if (system(buf) != 0) { |
| 11670 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11671 | "nss_mcs_opt: iwpriv %s nss %d failed", |
| 11672 | intf, nss); |
| 11673 | goto failed; |
| 11674 | } |
Arif Hussain | ac6c511 | 2018-05-25 17:34:00 -0700 | [diff] [blame] | 11675 | dut->sta_nss = nss; |
Arif Hussain | 557bf41 | 2018-05-25 17:29:36 -0700 | [diff] [blame] | 11676 | |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11677 | /* Add the MCS to the ratecode */ |
| 11678 | if (mcs >= 0 && mcs <= 11) { |
| 11679 | ratecode += mcs; |
Arif Hussain | 557bf41 | 2018-05-25 17:29:36 -0700 | [diff] [blame] | 11680 | #ifdef NL80211_SUPPORT |
| 11681 | if (dut->device_type == STA_testbed) { |
| 11682 | enum he_mcs_config mcs_config; |
| 11683 | int ret; |
| 11684 | |
| 11685 | if (mcs <= 7) |
| 11686 | mcs_config = HE_80_MCS0_7; |
| 11687 | else if (mcs <= 9) |
| 11688 | mcs_config = HE_80_MCS0_9; |
| 11689 | else |
| 11690 | mcs_config = HE_80_MCS0_11; |
| 11691 | ret = sta_set_he_mcs(dut, intf, mcs_config); |
| 11692 | if (ret) { |
| 11693 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11694 | "nss_mcs_opt: mcs setting failed, mcs:%d, mcs_config %d, ret:%d", |
| 11695 | mcs, mcs_config, ret); |
| 11696 | goto failed; |
| 11697 | } |
| 11698 | } |
| 11699 | #endif /* NL80211_SUPPORT */ |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11700 | } else { |
| 11701 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11702 | "HE MCS %d not supported", mcs); |
| 11703 | goto failed; |
| 11704 | } |
| 11705 | snprintf(buf, sizeof(buf), "iwpriv %s set_11ax_rate 0x%03x", |
| 11706 | intf, ratecode); |
| 11707 | if (system(buf) != 0) { |
| 11708 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11709 | "iwpriv setting of 11ax rates failed"); |
| 11710 | goto failed; |
| 11711 | } |
| 11712 | free(token); |
| 11713 | } |
| 11714 | |
| 11715 | val = get_param(cmd, "GI"); |
| 11716 | if (val) { |
Kiran Kumar Lokere | f6592d7 | 2019-01-16 18:44:00 -0800 | [diff] [blame] | 11717 | int fix_rate_sgi; |
| 11718 | |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11719 | if (strcmp(val, "0.8") == 0) { |
Kiran Kumar Lokere | b8fec52 | 2018-05-01 14:26:00 -0700 | [diff] [blame] | 11720 | snprintf(buf, sizeof(buf), "iwpriv %s shortgi 9", intf); |
Kiran Kumar Lokere | f6592d7 | 2019-01-16 18:44:00 -0800 | [diff] [blame] | 11721 | fix_rate_sgi = 1; |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11722 | } else if (strcmp(val, "1.6") == 0) { |
Kiran Kumar Lokere | b8fec52 | 2018-05-01 14:26:00 -0700 | [diff] [blame] | 11723 | snprintf(buf, sizeof(buf), "iwpriv %s shortgi 10", |
| 11724 | intf); |
Kiran Kumar Lokere | f6592d7 | 2019-01-16 18:44:00 -0800 | [diff] [blame] | 11725 | fix_rate_sgi = 2; |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11726 | } else if (strcmp(val, "3.2") == 0) { |
Kiran Kumar Lokere | b8fec52 | 2018-05-01 14:26:00 -0700 | [diff] [blame] | 11727 | snprintf(buf, sizeof(buf), "iwpriv %s shortgi 11", |
| 11728 | intf); |
Kiran Kumar Lokere | f6592d7 | 2019-01-16 18:44:00 -0800 | [diff] [blame] | 11729 | fix_rate_sgi = 3; |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11730 | } else { |
| 11731 | send_resp(dut, conn, SIGMA_ERROR, |
| 11732 | "errorCode,GI value not supported"); |
| 11733 | return 0; |
| 11734 | } |
| 11735 | if (system(buf) != 0) { |
| 11736 | send_resp(dut, conn, SIGMA_ERROR, |
| 11737 | "errorCode,Failed to set shortgi"); |
| 11738 | return 0; |
| 11739 | } |
Kiran Kumar Lokere | f6592d7 | 2019-01-16 18:44:00 -0800 | [diff] [blame] | 11740 | snprintf(buf, sizeof(buf), "iwpriv %s shortgi %d", |
| 11741 | intf, fix_rate_sgi); |
| 11742 | if (system(buf) != 0) { |
| 11743 | send_resp(dut, conn, SIGMA_ERROR, |
| 11744 | "errorCode,Failed to set fix rate shortgi"); |
| 11745 | return STATUS_SENT; |
| 11746 | } |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11747 | } |
| 11748 | |
Subhani Shaik | 8e7a305 | 2018-04-24 14:03:00 -0700 | [diff] [blame] | 11749 | val = get_param(cmd, "LTF"); |
| 11750 | if (val) { |
| 11751 | #ifdef NL80211_SUPPORT |
| 11752 | if (strcmp(val, "3.2") == 0) { |
Kiran Kumar Lokere | 26c0f86 | 2020-01-22 11:15:59 -0800 | [diff] [blame] | 11753 | wcn_set_he_ltf(dut, intf, QCA_WLAN_HE_LTF_1X); |
Subhani Shaik | 8e7a305 | 2018-04-24 14:03:00 -0700 | [diff] [blame] | 11754 | } if (strcmp(val, "6.4") == 0) { |
Kiran Kumar Lokere | 26c0f86 | 2020-01-22 11:15:59 -0800 | [diff] [blame] | 11755 | wcn_set_he_ltf(dut, intf, QCA_WLAN_HE_LTF_2X); |
Subhani Shaik | 8e7a305 | 2018-04-24 14:03:00 -0700 | [diff] [blame] | 11756 | } else if (strcmp(val, "12.8") == 0) { |
Kiran Kumar Lokere | 26c0f86 | 2020-01-22 11:15:59 -0800 | [diff] [blame] | 11757 | wcn_set_he_ltf(dut, intf, QCA_WLAN_HE_LTF_4X); |
Subhani Shaik | 8e7a305 | 2018-04-24 14:03:00 -0700 | [diff] [blame] | 11758 | } else { |
| 11759 | send_resp(dut, conn, SIGMA_ERROR, |
| 11760 | "errorCode, LTF value not supported"); |
| 11761 | return 0; |
| 11762 | } |
| 11763 | #else /* NL80211_SUPPORT */ |
| 11764 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11765 | "LTF cannot be set without NL80211_SUPPORT defined"); |
| 11766 | return -2; |
| 11767 | #endif /* NL80211_SUPPORT */ |
| 11768 | } |
| 11769 | |
Kiran Kumar Lokere | 400d68f | 2018-08-29 18:45:11 -0700 | [diff] [blame] | 11770 | val = get_param(cmd, "TxSUPPDU"); |
| 11771 | if (val) { |
| 11772 | int set_val = 1; |
| 11773 | |
| 11774 | if (strcasecmp(val, "Enable") == 0) |
| 11775 | set_val = 1; |
| 11776 | else if (strcasecmp(val, "Disable") == 0) |
| 11777 | set_val = 0; |
| 11778 | |
| 11779 | if (sta_set_tx_su_ppdu_cfg(dut, intf, set_val)) { |
| 11780 | send_resp(dut, conn, SIGMA_ERROR, |
| 11781 | "ErrorCode,Failed to set Tx SU PPDU config"); |
| 11782 | return 0; |
| 11783 | } |
| 11784 | } |
| 11785 | |
Arif Hussain | 480d5f4 | 2019-03-12 14:40:42 -0700 | [diff] [blame] | 11786 | val = get_param(cmd, "TWT_Setup"); |
| 11787 | if (val) { |
| 11788 | if (strcasecmp(val, "Request") == 0) { |
| 11789 | if (sta_twt_request(dut, conn, cmd)) { |
| 11790 | send_resp(dut, conn, SIGMA_ERROR, |
| 11791 | "ErrorCode,sta_twt_request failed"); |
| 11792 | return STATUS_SENT; |
| 11793 | } |
| 11794 | } else if (strcasecmp(val, "Teardown") == 0) { |
| 11795 | if (sta_twt_teardown(dut, conn, cmd)) { |
| 11796 | send_resp(dut, conn, SIGMA_ERROR, |
| 11797 | "ErrorCode,sta_twt_teardown failed"); |
| 11798 | return STATUS_SENT; |
| 11799 | } |
| 11800 | } |
| 11801 | } |
| 11802 | |
Kiran Kumar Lokere | 50eb2cd | 2018-12-18 18:31:28 -0800 | [diff] [blame] | 11803 | val = get_param(cmd, "transmitOMI"); |
| 11804 | if (val && sta_transmit_omi(dut, conn, cmd)) { |
| 11805 | send_resp(dut, conn, SIGMA_ERROR, |
| 11806 | "ErrorCode,sta_transmit_omi failed"); |
| 11807 | return STATUS_SENT; |
Kiran Kumar Lokere | 29c1bb0 | 2018-10-08 17:41:02 -0700 | [diff] [blame] | 11808 | } |
| 11809 | |
Kiran Kumar Lokere | c310dcd | 2018-12-17 20:56:06 -0800 | [diff] [blame] | 11810 | val = get_param(cmd, "Powersave"); |
| 11811 | if (val) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 11812 | int ps; |
Kiran Kumar Lokere | c310dcd | 2018-12-17 20:56:06 -0800 | [diff] [blame] | 11813 | |
| 11814 | if (strcasecmp(val, "off") == 0) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 11815 | ps = 2; |
Kiran Kumar Lokere | c310dcd | 2018-12-17 20:56:06 -0800 | [diff] [blame] | 11816 | } else if (strcasecmp(val, "on") == 0) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 11817 | ps = 1; |
Kiran Kumar Lokere | c310dcd | 2018-12-17 20:56:06 -0800 | [diff] [blame] | 11818 | } else { |
| 11819 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11820 | "Unsupported Powersave value '%s'", |
| 11821 | val); |
| 11822 | return -1; |
| 11823 | } |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 11824 | if (set_power_save_wcn(dut, intf, ps) < 0) |
| 11825 | return 0; |
Kiran Kumar Lokere | c310dcd | 2018-12-17 20:56:06 -0800 | [diff] [blame] | 11826 | } |
| 11827 | |
Kiran Kumar Lokere | 2c4b7ce | 2019-01-30 12:02:28 -0800 | [diff] [blame] | 11828 | val = get_param(cmd, "MU_EDCA"); |
| 11829 | if (val) { |
| 11830 | if (strcasecmp(val, "Override") == 0) { |
| 11831 | if (sta_set_mu_edca_override(dut, intf, 1)) { |
| 11832 | send_resp(dut, conn, SIGMA_ERROR, |
| 11833 | "errorCode,MU EDCA override set failed"); |
| 11834 | return STATUS_SENT; |
| 11835 | } |
| 11836 | } else if (strcasecmp(val, "Disable") == 0) { |
| 11837 | if (sta_set_mu_edca_override(dut, intf, 0)) { |
| 11838 | send_resp(dut, conn, SIGMA_ERROR, |
| 11839 | "errorCode,MU EDCA override disable failed"); |
| 11840 | return STATUS_SENT; |
| 11841 | } |
| 11842 | } |
| 11843 | } |
| 11844 | |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11845 | return 1; |
| 11846 | |
| 11847 | failed: |
| 11848 | free(token); |
| 11849 | return -2; |
| 11850 | } |
| 11851 | |
| 11852 | |
| 11853 | static int cmd_sta_set_rfeature_he(const char *intf, struct sigma_dut *dut, |
| 11854 | struct sigma_conn *conn, |
| 11855 | struct sigma_cmd *cmd) |
| 11856 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 11857 | switch (get_driver_type(dut)) { |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 11858 | case DRIVER_WCN: |
| 11859 | return wcn_sta_set_rfeature_he(intf, dut, conn, cmd); |
| 11860 | default: |
| 11861 | send_resp(dut, conn, SIGMA_ERROR, |
| 11862 | "errorCode,Unsupported sta_set_rfeature(HE) with the current driver"); |
| 11863 | return 0; |
| 11864 | } |
| 11865 | } |
| 11866 | |
| 11867 | |
Kiran Kumar Lokere | e580c01 | 2019-01-03 17:08:53 -0800 | [diff] [blame] | 11868 | static int cmd_sta_set_power_save_he(const char *intf, struct sigma_dut *dut, |
| 11869 | struct sigma_conn *conn, |
| 11870 | struct sigma_cmd *cmd) |
| 11871 | { |
| 11872 | const char *val; |
| 11873 | |
| 11874 | val = get_param(cmd, "powersave"); |
| 11875 | if (val) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 11876 | int ps; |
Kiran Kumar Lokere | e580c01 | 2019-01-03 17:08:53 -0800 | [diff] [blame] | 11877 | |
| 11878 | if (strcasecmp(val, "off") == 0) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 11879 | ps = 2; |
Kiran Kumar Lokere | e580c01 | 2019-01-03 17:08:53 -0800 | [diff] [blame] | 11880 | } else if (strcasecmp(val, "on") == 0) { |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 11881 | ps = 1; |
Kiran Kumar Lokere | e580c01 | 2019-01-03 17:08:53 -0800 | [diff] [blame] | 11882 | } else { |
| 11883 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11884 | "Unsupported power save config"); |
| 11885 | return -1; |
| 11886 | } |
Vinita S. Maloo | a8b6272 | 2020-04-23 01:45:41 +0530 | [diff] [blame] | 11887 | if (set_power_save_wcn(dut, intf, ps) < 0) |
| 11888 | return 0; |
Kiran Kumar Lokere | e580c01 | 2019-01-03 17:08:53 -0800 | [diff] [blame] | 11889 | return 1; |
| 11890 | } |
| 11891 | |
| 11892 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported command"); |
| 11893 | |
| 11894 | return 0; |
| 11895 | } |
| 11896 | |
| 11897 | |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 11898 | static int btm_query_candidate_list(struct sigma_dut *dut, |
| 11899 | struct sigma_conn *conn, |
| 11900 | struct sigma_cmd *cmd) |
| 11901 | { |
| 11902 | const char *bssid, *info, *op_class, *ch, *phy_type, *pref; |
| 11903 | int len, ret; |
| 11904 | char buf[10]; |
| 11905 | |
| 11906 | /* |
| 11907 | * Neighbor Report elements format: |
| 11908 | * neighbor=<BSSID>,<BSSID Information>,<Operating Class>, |
| 11909 | * <Channel Number>,<PHY Type>[,<hexdump of Optional Subelements>] |
| 11910 | * eg: neighbor=aa:bb:cc:dd:ee:ff,17,81,6,1,030101 |
| 11911 | */ |
| 11912 | |
| 11913 | bssid = get_param(cmd, "Nebor_BSSID"); |
| 11914 | if (!bssid) { |
| 11915 | send_resp(dut, conn, SIGMA_INVALID, |
| 11916 | "errorCode,Nebor_BSSID is missing"); |
| 11917 | return 0; |
| 11918 | } |
| 11919 | |
| 11920 | info = get_param(cmd, "Nebor_Bssid_Info"); |
| 11921 | if (!info) { |
| 11922 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 11923 | "Using default value for Nebor_Bssid_Info: %s", |
| 11924 | DEFAULT_NEIGHBOR_BSSID_INFO); |
| 11925 | info = DEFAULT_NEIGHBOR_BSSID_INFO; |
| 11926 | } |
| 11927 | |
| 11928 | op_class = get_param(cmd, "Nebor_Op_Class"); |
| 11929 | if (!op_class) { |
| 11930 | send_resp(dut, conn, SIGMA_INVALID, |
| 11931 | "errorCode,Nebor_Op_Class is missing"); |
| 11932 | return 0; |
| 11933 | } |
| 11934 | |
| 11935 | ch = get_param(cmd, "Nebor_Op_Ch"); |
| 11936 | if (!ch) { |
| 11937 | send_resp(dut, conn, SIGMA_INVALID, |
| 11938 | "errorCode,Nebor_Op_Ch is missing"); |
| 11939 | return 0; |
| 11940 | } |
| 11941 | |
| 11942 | phy_type = get_param(cmd, "Nebor_Phy_Type"); |
| 11943 | if (!phy_type) { |
| 11944 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 11945 | "Using default value for Nebor_Phy_Type: %s", |
| 11946 | DEFAULT_NEIGHBOR_PHY_TYPE); |
| 11947 | phy_type = DEFAULT_NEIGHBOR_PHY_TYPE; |
| 11948 | } |
| 11949 | |
| 11950 | /* Parse optional subelements */ |
| 11951 | buf[0] = '\0'; |
| 11952 | pref = get_param(cmd, "Nebor_Pref"); |
| 11953 | if (pref) { |
| 11954 | /* hexdump for preferrence subelement */ |
| 11955 | ret = snprintf(buf, sizeof(buf), ",0301%02x", atoi(pref)); |
| 11956 | if (ret < 0 || ret >= (int) sizeof(buf)) { |
| 11957 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11958 | "snprintf failed for optional subelement ret: %d", |
| 11959 | ret); |
| 11960 | send_resp(dut, conn, SIGMA_ERROR, |
| 11961 | "errorCode,snprintf failed for subelement"); |
| 11962 | return 0; |
| 11963 | } |
| 11964 | } |
| 11965 | |
| 11966 | if (!dut->btm_query_cand_list) { |
| 11967 | dut->btm_query_cand_list = calloc(1, NEIGHBOR_REPORT_SIZE); |
| 11968 | if (!dut->btm_query_cand_list) { |
| 11969 | send_resp(dut, conn, SIGMA_ERROR, |
| 11970 | "errorCode,Failed to allocate memory for btm_query_cand_list"); |
| 11971 | return 0; |
| 11972 | } |
| 11973 | } |
| 11974 | |
| 11975 | len = strlen(dut->btm_query_cand_list); |
| 11976 | ret = snprintf(dut->btm_query_cand_list + len, |
| 11977 | NEIGHBOR_REPORT_SIZE - len, " neighbor=%s,%s,%s,%s,%s%s", |
| 11978 | bssid, info, op_class, ch, phy_type, buf); |
| 11979 | if (ret < 0 || ret >= NEIGHBOR_REPORT_SIZE - len) { |
| 11980 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 11981 | "snprintf failed for neighbor report list ret: %d", |
| 11982 | ret); |
| 11983 | send_resp(dut, conn, SIGMA_ERROR, |
| 11984 | "errorCode,snprintf failed for neighbor report"); |
| 11985 | free(dut->btm_query_cand_list); |
| 11986 | dut->btm_query_cand_list = NULL; |
| 11987 | return 0; |
| 11988 | } |
| 11989 | |
| 11990 | return 1; |
| 11991 | } |
| 11992 | |
| 11993 | |
Alexei Avshalom Lazar | bc180dc | 2018-12-18 16:01:14 +0200 | [diff] [blame] | 11994 | int sta_extract_60g_ese(struct sigma_dut *dut, struct sigma_cmd *cmd, |
| 11995 | struct sigma_ese_alloc *allocs, int *allocs_size) |
| 11996 | { |
| 11997 | int max_count = *allocs_size; |
| 11998 | int count = 0, i; |
| 11999 | const char *val; |
| 12000 | |
| 12001 | do { |
| 12002 | val = get_param_indexed(cmd, "AllocID", count); |
| 12003 | if (val) |
| 12004 | count++; |
| 12005 | } while (val); |
| 12006 | |
| 12007 | if (count == 0 || count > max_count) { |
| 12008 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 12009 | "Invalid number of allocations(%d)", count); |
| 12010 | return -1; |
| 12011 | } |
| 12012 | |
| 12013 | for (i = 0; i < count; i++) { |
| 12014 | val = get_param_indexed(cmd, "PercentBI", i); |
| 12015 | if (!val) { |
| 12016 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 12017 | "Missing PercentBI parameter at index %d", |
| 12018 | i); |
| 12019 | return -1; |
| 12020 | } |
| 12021 | allocs[i].percent_bi = atoi(val); |
| 12022 | |
| 12023 | val = get_param_indexed(cmd, "SrcAID", i); |
| 12024 | if (val) |
| 12025 | allocs[i].src_aid = strtol(val, NULL, 0); |
| 12026 | else |
| 12027 | allocs[i].src_aid = ESE_BCAST_AID; |
| 12028 | |
| 12029 | val = get_param_indexed(cmd, "DestAID", i); |
| 12030 | if (val) |
| 12031 | allocs[i].dst_aid = strtol(val, NULL, 0); |
| 12032 | else |
| 12033 | allocs[i].dst_aid = ESE_BCAST_AID; |
| 12034 | |
| 12035 | allocs[i].type = ESE_CBAP; |
| 12036 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 12037 | "Alloc %d PercentBI %d SrcAID %d DstAID %d", |
| 12038 | i, allocs[i].percent_bi, allocs[i].src_aid, |
| 12039 | allocs[i].dst_aid); |
| 12040 | } |
| 12041 | |
| 12042 | *allocs_size = count; |
| 12043 | return 0; |
| 12044 | } |
| 12045 | |
| 12046 | |
| 12047 | static int sta_set_60g_ese(struct sigma_dut *dut, int count, |
| 12048 | struct sigma_ese_alloc *allocs) |
| 12049 | { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 12050 | switch (get_driver_type(dut)) { |
Alexei Avshalom Lazar | bc180dc | 2018-12-18 16:01:14 +0200 | [diff] [blame] | 12051 | #ifdef __linux__ |
| 12052 | case DRIVER_WIL6210: |
| 12053 | if (wil6210_set_ese(dut, count, allocs)) |
| 12054 | return -1; |
| 12055 | return 1; |
| 12056 | #endif /* __linux__ */ |
| 12057 | default: |
| 12058 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 12059 | "Unsupported sta_set_60g_ese with the current driver"); |
| 12060 | return -1; |
| 12061 | } |
| 12062 | } |
| 12063 | |
| 12064 | |
| 12065 | static int cmd_sta_set_rfeature_60g(const char *intf, struct sigma_dut *dut, |
| 12066 | struct sigma_conn *conn, |
| 12067 | struct sigma_cmd *cmd) |
| 12068 | { |
| 12069 | const char *val; |
| 12070 | |
| 12071 | val = get_param(cmd, "ExtSchIE"); |
| 12072 | if (val && !strcasecmp(val, "Enable")) { |
| 12073 | struct sigma_ese_alloc allocs[MAX_ESE_ALLOCS]; |
| 12074 | int count = MAX_ESE_ALLOCS; |
| 12075 | |
| 12076 | if (sta_extract_60g_ese(dut, cmd, allocs, &count)) |
| 12077 | return -1; |
| 12078 | return sta_set_60g_ese(dut, count, allocs); |
| 12079 | } |
| 12080 | |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 12081 | val = get_param(cmd, "MCS_FixedRate"); |
| 12082 | if (val) { |
| 12083 | int sta_mcs = atoi(val); |
| 12084 | |
| 12085 | sigma_dut_print(dut, DUT_MSG_INFO, "Force STA MCS to %d", |
| 12086 | sta_mcs); |
| 12087 | wil6210_set_force_mcs(dut, 1, sta_mcs); |
| 12088 | |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 12089 | return SUCCESS_SEND_STATUS; |
Alexei Avshalom Lazar | aad97b0 | 2018-12-18 16:01:23 +0200 | [diff] [blame] | 12090 | } |
| 12091 | |
Alexei Avshalom Lazar | bc180dc | 2018-12-18 16:01:14 +0200 | [diff] [blame] | 12092 | send_resp(dut, conn, SIGMA_ERROR, |
| 12093 | "errorCode,Invalid sta_set_rfeature(60G)"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 12094 | return STATUS_SENT; |
Alexei Avshalom Lazar | bc180dc | 2018-12-18 16:01:14 +0200 | [diff] [blame] | 12095 | } |
| 12096 | |
| 12097 | |
Jouni Malinen | 6250cb0 | 2020-04-15 13:54:45 +0300 | [diff] [blame] | 12098 | static enum sigma_cmd_result |
| 12099 | cmd_sta_set_rfeature_wpa3(const char *intf, struct sigma_dut *dut, |
| 12100 | struct sigma_conn *conn, |
| 12101 | struct sigma_cmd *cmd) |
| 12102 | { |
Vamsi Krishna | d29bc76 | 2020-05-08 23:23:30 +0530 | [diff] [blame] | 12103 | const char *val, *oci_chan, *oci_frametype; |
Jouni Malinen | 6250cb0 | 2020-04-15 13:54:45 +0300 | [diff] [blame] | 12104 | |
Veerendranath Jakkam | 30bf907 | 2020-04-16 14:37:57 +0530 | [diff] [blame] | 12105 | val = get_param(cmd, "ReassocReq_RSNXE_Used"); |
Jouni Malinen | 6250cb0 | 2020-04-15 13:54:45 +0300 | [diff] [blame] | 12106 | if (val && atoi(val) == 1) { |
| 12107 | if (wpa_command(intf, "SET ft_rsnxe_used 1") < 0) { |
| 12108 | send_resp(dut, conn, SIGMA_ERROR, |
| 12109 | "errorCode,Failed to set ft_rsnxe_used"); |
| 12110 | return STATUS_SENT_ERROR; |
| 12111 | } |
| 12112 | return SUCCESS_SEND_STATUS; |
| 12113 | } |
Vamsi Krishna | d29bc76 | 2020-05-08 23:23:30 +0530 | [diff] [blame] | 12114 | |
| 12115 | oci_chan = get_param(cmd, "OCIChannel"); |
| 12116 | oci_frametype = get_param(cmd, "OCIFrameType"); |
| 12117 | if (oci_chan && oci_frametype) { |
| 12118 | unsigned int oci_freq = channel_to_freq(dut, atoi(oci_chan)); |
| 12119 | char buf[100]; |
| 12120 | |
| 12121 | if (!oci_freq) { |
| 12122 | send_resp(dut, conn, SIGMA_ERROR, |
| 12123 | "errorCode,Invalid OCIChannel number"); |
| 12124 | return STATUS_SENT_ERROR; |
| 12125 | } |
| 12126 | |
| 12127 | if (strcasecmp(oci_frametype, "eapolM2") == 0) { |
| 12128 | snprintf(buf, sizeof(buf), |
| 12129 | "SET oci_freq_override_eapol %d", oci_freq); |
| 12130 | } else if (strcasecmp(oci_frametype, "SAQueryReq") == 0) { |
| 12131 | snprintf(buf, sizeof(buf), |
| 12132 | "SET oci_freq_override_saquery_req %d", |
| 12133 | oci_freq); |
| 12134 | } else if (strcasecmp(oci_frametype, "SAQueryResp") == 0) { |
| 12135 | snprintf(buf, sizeof(buf), |
| 12136 | "SET oci_freq_override_saquery_resp %d", |
| 12137 | oci_freq); |
| 12138 | } else { |
| 12139 | send_resp(dut, conn, SIGMA_ERROR, |
| 12140 | "errorCode,Unsupported OCIFrameType"); |
| 12141 | return STATUS_SENT_ERROR; |
| 12142 | } |
| 12143 | if (wpa_command(intf, buf) < 0) { |
| 12144 | send_resp(dut, conn, SIGMA_ERROR, |
| 12145 | "errorCode,Failed to set oci_freq_override"); |
| 12146 | return STATUS_SENT_ERROR; |
| 12147 | } |
| 12148 | return SUCCESS_SEND_STATUS; |
| 12149 | } |
| 12150 | |
Jouni Malinen | 6250cb0 | 2020-04-15 13:54:45 +0300 | [diff] [blame] | 12151 | send_resp(dut, conn, SIGMA_ERROR, |
| 12152 | "errorCode,Unsupported WPA3 rfeature"); |
| 12153 | return STATUS_SENT_ERROR; |
| 12154 | } |
| 12155 | |
| 12156 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12157 | static enum sigma_cmd_result cmd_sta_set_rfeature(struct sigma_dut *dut, |
| 12158 | struct sigma_conn *conn, |
| 12159 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12160 | { |
| 12161 | const char *intf = get_param(cmd, "Interface"); |
| 12162 | const char *prog = get_param(cmd, "Prog"); |
Ashwini Patil | 68d02cd | 2017-01-10 15:39:16 +0530 | [diff] [blame] | 12163 | const char *val; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12164 | |
| 12165 | if (intf == NULL || prog == NULL) |
| 12166 | return -1; |
| 12167 | |
Ashwini Patil | 5acd738 | 2017-04-13 15:55:04 +0530 | [diff] [blame] | 12168 | /* BSS Transition candidate list for BTM query */ |
| 12169 | val = get_param(cmd, "Nebor_BSSID"); |
| 12170 | if (val && btm_query_candidate_list(dut, conn, cmd) == 0) |
| 12171 | return 0; |
| 12172 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12173 | if (strcasecmp(prog, "TDLS") == 0) |
| 12174 | return cmd_sta_set_rfeature_tdls(intf, dut, conn, cmd); |
| 12175 | |
| 12176 | if (strcasecmp(prog, "VHT") == 0) |
| 12177 | return cmd_sta_set_rfeature_vht(intf, dut, conn, cmd); |
| 12178 | |
Amarnath Hullur Subramanyam | 42c25a0 | 2018-01-31 04:02:27 -0800 | [diff] [blame] | 12179 | if (strcasecmp(prog, "HE") == 0) |
| 12180 | return cmd_sta_set_rfeature_he(intf, dut, conn, cmd); |
| 12181 | |
Ashwini Patil | 68d02cd | 2017-01-10 15:39:16 +0530 | [diff] [blame] | 12182 | if (strcasecmp(prog, "MBO") == 0) { |
| 12183 | val = get_param(cmd, "Cellular_Data_Cap"); |
| 12184 | if (val && |
| 12185 | mbo_set_cellular_data_capa(dut, conn, intf, atoi(val)) == 0) |
| 12186 | return 0; |
Ashwini Patil | 0040258 | 2017-04-13 12:29:39 +0530 | [diff] [blame] | 12187 | |
| 12188 | val = get_param(cmd, "Ch_Pref"); |
| 12189 | if (val && mbo_set_non_pref_ch_list(dut, conn, intf, cmd) == 0) |
| 12190 | return 0; |
| 12191 | |
Ashwini Patil | 68d02cd | 2017-01-10 15:39:16 +0530 | [diff] [blame] | 12192 | return 1; |
| 12193 | } |
| 12194 | |
Alexei Avshalom Lazar | bc180dc | 2018-12-18 16:01:14 +0200 | [diff] [blame] | 12195 | if (strcasecmp(prog, "60GHz") == 0) |
| 12196 | return cmd_sta_set_rfeature_60g(intf, dut, conn, cmd); |
| 12197 | |
Jouni Malinen | 6250cb0 | 2020-04-15 13:54:45 +0300 | [diff] [blame] | 12198 | if (strcasecmp(prog, "WPA3") == 0) |
| 12199 | return cmd_sta_set_rfeature_wpa3(intf, dut, conn, cmd); |
| 12200 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12201 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported Prog"); |
| 12202 | return 0; |
| 12203 | } |
| 12204 | |
| 12205 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12206 | static enum sigma_cmd_result cmd_sta_set_radio(struct sigma_dut *dut, |
| 12207 | struct sigma_conn *conn, |
| 12208 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12209 | { |
| 12210 | const char *intf = get_param(cmd, "Interface"); |
| 12211 | const char *mode = get_param(cmd, "Mode"); |
| 12212 | int res; |
| 12213 | |
| 12214 | if (intf == NULL || mode == NULL) |
| 12215 | return -1; |
| 12216 | |
| 12217 | if (strcasecmp(mode, "On") == 0) |
| 12218 | res = wpa_command(intf, "SET radio_disabled 0"); |
| 12219 | else if (strcasecmp(mode, "Off") == 0) |
| 12220 | res = wpa_command(intf, "SET radio_disabled 1"); |
| 12221 | else |
| 12222 | return -1; |
| 12223 | |
| 12224 | if (res) { |
| 12225 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to change " |
| 12226 | "radio mode"); |
| 12227 | return 0; |
| 12228 | } |
| 12229 | |
| 12230 | return 1; |
| 12231 | } |
| 12232 | |
| 12233 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12234 | static enum sigma_cmd_result cmd_sta_set_pwrsave(struct sigma_dut *dut, |
| 12235 | struct sigma_conn *conn, |
| 12236 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12237 | { |
| 12238 | const char *intf = get_param(cmd, "Interface"); |
| 12239 | const char *mode = get_param(cmd, "Mode"); |
Alexei Avshalom Lazar | e49e387 | 2018-12-23 17:26:57 +0200 | [diff] [blame] | 12240 | const char *prog = get_param(cmd, "program"); |
| 12241 | const char *powersave = get_param(cmd, "powersave"); |
| 12242 | int res = 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12243 | |
Alexei Avshalom Lazar | e49e387 | 2018-12-23 17:26:57 +0200 | [diff] [blame] | 12244 | if (intf == NULL) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12245 | return -1; |
| 12246 | |
Alexei Avshalom Lazar | e49e387 | 2018-12-23 17:26:57 +0200 | [diff] [blame] | 12247 | if (prog && strcasecmp(prog, "60GHz") == 0) { |
| 12248 | /* |
| 12249 | * The CAPI mode parameter does not exist in 60G |
| 12250 | * unscheduled PS. |
| 12251 | */ |
Hu Wang | 5dc3ff1 | 2019-06-14 15:14:26 +0800 | [diff] [blame] | 12252 | if (powersave && strcasecmp(powersave, "unscheduled") == 0) |
Alexei Avshalom Lazar | e49e387 | 2018-12-23 17:26:57 +0200 | [diff] [blame] | 12253 | res = set_ps(intf, dut, 1); |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 12254 | } else if (prog && get_driver_type(dut) == DRIVER_WCN && |
Alexei Avshalom Lazar | 2f6fdb4 | 2019-02-04 14:16:08 +0200 | [diff] [blame] | 12255 | strcasecmp(prog, "HE") == 0) { |
| 12256 | return cmd_sta_set_power_save_he(intf, dut, conn, cmd); |
Alexei Avshalom Lazar | e49e387 | 2018-12-23 17:26:57 +0200 | [diff] [blame] | 12257 | } else { |
| 12258 | if (mode == NULL) |
| 12259 | return -1; |
| 12260 | |
| 12261 | if (strcasecmp(mode, "On") == 0) |
| 12262 | res = set_ps(intf, dut, 1); |
| 12263 | else if (strcasecmp(mode, "Off") == 0) |
| 12264 | res = set_ps(intf, dut, 0); |
| 12265 | else |
| 12266 | return -1; |
| 12267 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12268 | |
| 12269 | if (res) { |
| 12270 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to change " |
| 12271 | "power save mode"); |
| 12272 | return 0; |
| 12273 | } |
| 12274 | |
| 12275 | return 1; |
| 12276 | } |
| 12277 | |
| 12278 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12279 | static enum sigma_cmd_result cmd_sta_bssid_pool(struct sigma_dut *dut, |
| 12280 | struct sigma_conn *conn, |
| 12281 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12282 | { |
| 12283 | const char *intf = get_param(cmd, "Interface"); |
| 12284 | const char *val, *bssid; |
| 12285 | int res; |
| 12286 | char *buf; |
| 12287 | size_t buf_len; |
| 12288 | |
| 12289 | val = get_param(cmd, "BSSID_FILTER"); |
| 12290 | if (val == NULL) |
| 12291 | return -1; |
| 12292 | |
| 12293 | bssid = get_param(cmd, "BSSID_List"); |
| 12294 | if (atoi(val) == 0 || bssid == NULL) { |
| 12295 | /* Disable BSSID filter */ |
| 12296 | if (wpa_command(intf, "SET bssid_filter ")) { |
| 12297 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed " |
| 12298 | "to disable BSSID filter"); |
| 12299 | return 0; |
| 12300 | } |
| 12301 | |
| 12302 | return 1; |
| 12303 | } |
| 12304 | |
| 12305 | buf_len = 100 + strlen(bssid); |
| 12306 | buf = malloc(buf_len); |
| 12307 | if (buf == NULL) |
| 12308 | return -1; |
| 12309 | |
| 12310 | snprintf(buf, buf_len, "SET bssid_filter %s", bssid); |
| 12311 | res = wpa_command(intf, buf); |
| 12312 | free(buf); |
| 12313 | if (res) { |
| 12314 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to enable " |
| 12315 | "BSSID filter"); |
| 12316 | return 0; |
| 12317 | } |
| 12318 | |
| 12319 | return 1; |
| 12320 | } |
| 12321 | |
| 12322 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12323 | static enum sigma_cmd_result cmd_sta_reset_parm(struct sigma_dut *dut, |
| 12324 | struct sigma_conn *conn, |
| 12325 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12326 | { |
| 12327 | const char *intf = get_param(cmd, "Interface"); |
| 12328 | const char *val; |
| 12329 | |
| 12330 | /* TODO: ARP */ |
| 12331 | |
| 12332 | val = get_param(cmd, "HS2_CACHE_PROFILE"); |
| 12333 | if (val && strcasecmp(val, "All") == 0) |
| 12334 | hs2_clear_credentials(intf); |
| 12335 | |
| 12336 | return 1; |
| 12337 | } |
| 12338 | |
| 12339 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12340 | static enum sigma_cmd_result cmd_sta_get_key(struct sigma_dut *dut, |
| 12341 | struct sigma_conn *conn, |
| 12342 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12343 | { |
| 12344 | const char *intf = get_param(cmd, "Interface"); |
| 12345 | const char *key_type = get_param(cmd, "KeyType"); |
| 12346 | char buf[100], resp[200]; |
| 12347 | |
| 12348 | if (key_type == NULL) |
| 12349 | return -1; |
| 12350 | |
| 12351 | if (strcasecmp(key_type, "GTK") == 0) { |
| 12352 | if (wpa_command_resp(intf, "GET gtk", buf, sizeof(buf)) < 0 || |
| 12353 | strncmp(buf, "FAIL", 4) == 0) { |
| 12354 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could " |
| 12355 | "not fetch current GTK"); |
| 12356 | return 0; |
| 12357 | } |
| 12358 | snprintf(resp, sizeof(resp), "KeyValue,%s", buf); |
| 12359 | send_resp(dut, conn, SIGMA_COMPLETE, resp); |
| 12360 | return 0; |
| 12361 | } else { |
| 12362 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported " |
| 12363 | "KeyType"); |
| 12364 | return 0; |
| 12365 | } |
| 12366 | |
| 12367 | return 1; |
| 12368 | } |
| 12369 | |
| 12370 | |
| 12371 | static int hs2_set_policy(struct sigma_dut *dut) |
| 12372 | { |
| 12373 | #ifdef ANDROID |
| 12374 | system("ip rule del prio 23000"); |
| 12375 | if (system("ip rule add from all lookup main prio 23000") != 0) { |
| 12376 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 12377 | "Failed to run:ip rule add from all lookup main prio"); |
| 12378 | return -1; |
| 12379 | } |
| 12380 | if (system("ip route flush cache") != 0) { |
| 12381 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 12382 | "Failed to run ip route flush cache"); |
| 12383 | return -1; |
| 12384 | } |
| 12385 | return 1; |
| 12386 | #else /* ANDROID */ |
| 12387 | return 0; |
| 12388 | #endif /* ANDROID */ |
| 12389 | } |
| 12390 | |
| 12391 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12392 | static enum sigma_cmd_result cmd_sta_hs2_associate(struct sigma_dut *dut, |
| 12393 | struct sigma_conn *conn, |
| 12394 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12395 | { |
| 12396 | const char *intf = get_param(cmd, "Interface"); |
| 12397 | const char *val = get_param(cmd, "Ignore_blacklist"); |
Jouni Malinen | 439352d | 2018-09-13 03:42:23 +0300 | [diff] [blame] | 12398 | const char *band = get_param(cmd, "Band"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12399 | struct wpa_ctrl *ctrl; |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 12400 | int res, r; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12401 | char bssid[20], ssid[40], resp[100], buf[100], blacklisted[100]; |
| 12402 | int tries = 0; |
| 12403 | int ignore_blacklist = 0; |
| 12404 | const char *events[] = { |
| 12405 | "CTRL-EVENT-CONNECTED", |
| 12406 | "INTERWORKING-BLACKLISTED", |
| 12407 | "INTERWORKING-NO-MATCH", |
| 12408 | NULL |
| 12409 | }; |
| 12410 | |
| 12411 | start_sta_mode(dut); |
| 12412 | |
Jouni Malinen | 439352d | 2018-09-13 03:42:23 +0300 | [diff] [blame] | 12413 | if (band) { |
| 12414 | if (strcmp(band, "2.4") == 0) { |
| 12415 | wpa_command(intf, "SET setband 2G"); |
| 12416 | } else if (strcmp(band, "5") == 0) { |
| 12417 | wpa_command(intf, "SET setband 5G"); |
| 12418 | } else { |
| 12419 | send_resp(dut, conn, SIGMA_ERROR, |
| 12420 | "errorCode,Unsupported band"); |
| 12421 | return 0; |
| 12422 | } |
| 12423 | } |
| 12424 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12425 | blacklisted[0] = '\0'; |
| 12426 | if (val && atoi(val)) |
| 12427 | ignore_blacklist = 1; |
| 12428 | |
| 12429 | try_again: |
| 12430 | ctrl = open_wpa_mon(intf); |
| 12431 | if (ctrl == NULL) { |
| 12432 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open " |
| 12433 | "wpa_supplicant monitor connection"); |
| 12434 | return -2; |
| 12435 | } |
| 12436 | |
| 12437 | tries++; |
| 12438 | if (wpa_command(intf, "INTERWORKING_SELECT auto")) { |
| 12439 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to start " |
| 12440 | "Interworking connection"); |
| 12441 | wpa_ctrl_detach(ctrl); |
| 12442 | wpa_ctrl_close(ctrl); |
| 12443 | return 0; |
| 12444 | } |
| 12445 | |
| 12446 | buf[0] = '\0'; |
| 12447 | while (1) { |
| 12448 | char *pos; |
| 12449 | res = get_wpa_cli_events(dut, ctrl, events, buf, sizeof(buf)); |
| 12450 | pos = strstr(buf, "INTERWORKING-BLACKLISTED"); |
| 12451 | if (!pos) |
| 12452 | break; |
| 12453 | pos += 25; |
| 12454 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Found blacklisted AP: %s", |
| 12455 | pos); |
| 12456 | if (!blacklisted[0]) |
| 12457 | memcpy(blacklisted, pos, strlen(pos) + 1); |
| 12458 | } |
| 12459 | |
| 12460 | if (ignore_blacklist && blacklisted[0]) { |
| 12461 | char *end; |
| 12462 | end = strchr(blacklisted, ' '); |
| 12463 | if (end) |
| 12464 | *end = '\0'; |
| 12465 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Try to connect to a blacklisted network: %s", |
| 12466 | blacklisted); |
Jouni Malinen | 3aa7286 | 2019-05-29 23:14:51 +0300 | [diff] [blame] | 12467 | r = snprintf(buf, sizeof(buf), "INTERWORKING_CONNECT %s", |
| 12468 | blacklisted); |
| 12469 | if (r < 0 || r >= sizeof(buf) || wpa_command(intf, buf)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12470 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to start Interworking connection to blacklisted network"); |
| 12471 | wpa_ctrl_detach(ctrl); |
| 12472 | wpa_ctrl_close(ctrl); |
| 12473 | return 0; |
| 12474 | } |
| 12475 | res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-CONNECTED", |
| 12476 | buf, sizeof(buf)); |
| 12477 | } |
| 12478 | |
| 12479 | wpa_ctrl_detach(ctrl); |
| 12480 | wpa_ctrl_close(ctrl); |
| 12481 | |
| 12482 | if (res < 0) { |
| 12483 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Could not " |
| 12484 | "connect"); |
| 12485 | return 0; |
| 12486 | } |
| 12487 | |
| 12488 | if (strstr(buf, "INTERWORKING-NO-MATCH") || |
| 12489 | strstr(buf, "INTERWORKING-BLACKLISTED")) { |
| 12490 | if (tries < 2) { |
| 12491 | sigma_dut_print(dut, DUT_MSG_INFO, "No match found - try again to verify no APs were missed in the scan"); |
| 12492 | goto try_again; |
| 12493 | } |
| 12494 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,No network with " |
| 12495 | "matching credentials found"); |
| 12496 | return 0; |
| 12497 | } |
| 12498 | |
| 12499 | if (get_wpa_status(intf, "bssid", bssid, sizeof(bssid)) < 0 || |
| 12500 | get_wpa_status(intf, "ssid", ssid, sizeof(ssid)) < 0) { |
| 12501 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Could not " |
| 12502 | "get current BSSID/SSID"); |
| 12503 | return 0; |
| 12504 | } |
| 12505 | |
| 12506 | snprintf(resp, sizeof(resp), "SSID,%s,BSSID,%s", ssid, bssid); |
| 12507 | send_resp(dut, conn, SIGMA_COMPLETE, resp); |
| 12508 | hs2_set_policy(dut); |
| 12509 | return 0; |
| 12510 | } |
| 12511 | |
| 12512 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12513 | static enum sigma_cmd_result cmd_sta_hs2_venue_info(struct sigma_dut *dut, |
| 12514 | struct sigma_conn *conn, |
| 12515 | struct sigma_cmd *cmd) |
Jouni Malinen | b639f1c | 2018-09-13 02:39:46 +0300 | [diff] [blame] | 12516 | { |
| 12517 | const char *intf = get_param(cmd, "Interface"); |
| 12518 | const char *display = get_param(cmd, "Display"); |
| 12519 | struct wpa_ctrl *ctrl; |
| 12520 | char buf[300], params[400], *pos; |
| 12521 | char bssid[20]; |
| 12522 | int info_avail = 0; |
| 12523 | unsigned int old_timeout; |
| 12524 | int res; |
| 12525 | |
| 12526 | if (get_wpa_status(intf, "bssid", bssid, sizeof(bssid)) < 0) { |
| 12527 | send_resp(dut, conn, SIGMA_ERROR, |
| 12528 | "ErrorCode,Could not get current BSSID"); |
| 12529 | return 0; |
| 12530 | } |
| 12531 | ctrl = open_wpa_mon(intf); |
| 12532 | if (!ctrl) { |
| 12533 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 12534 | "Failed to open wpa_supplicant monitor connection"); |
| 12535 | return -2; |
| 12536 | } |
| 12537 | |
| 12538 | snprintf(buf, sizeof(buf), "ANQP_GET %s 277", bssid); |
| 12539 | wpa_command(intf, buf); |
| 12540 | |
| 12541 | res = get_wpa_cli_event(dut, ctrl, "GAS-QUERY-DONE", buf, sizeof(buf)); |
| 12542 | if (res < 0) { |
| 12543 | send_resp(dut, conn, SIGMA_ERROR, |
| 12544 | "ErrorCode,Could not complete GAS query"); |
| 12545 | goto fail; |
| 12546 | } |
| 12547 | |
| 12548 | old_timeout = dut->default_timeout; |
| 12549 | dut->default_timeout = 2; |
| 12550 | res = get_wpa_cli_event(dut, ctrl, "RX-VENUE-URL", buf, sizeof(buf)); |
| 12551 | dut->default_timeout = old_timeout; |
| 12552 | if (res < 0) |
| 12553 | goto done; |
| 12554 | pos = strchr(buf, ' '); |
| 12555 | if (!pos) |
| 12556 | goto done; |
| 12557 | pos++; |
| 12558 | pos = strchr(pos, ' '); |
| 12559 | if (!pos) |
| 12560 | goto done; |
| 12561 | pos++; |
| 12562 | info_avail = 1; |
| 12563 | snprintf(params, sizeof(params), "browser %s", pos); |
| 12564 | |
| 12565 | if (display && strcasecmp(display, "Yes") == 0) { |
| 12566 | pid_t pid; |
| 12567 | |
| 12568 | pid = fork(); |
| 12569 | if (pid < 0) { |
| 12570 | perror("fork"); |
| 12571 | return -1; |
| 12572 | } |
| 12573 | |
| 12574 | if (pid == 0) { |
| 12575 | run_hs20_osu(dut, params); |
| 12576 | exit(0); |
| 12577 | } |
| 12578 | } |
| 12579 | |
| 12580 | done: |
| 12581 | snprintf(buf, sizeof(buf), "Info_available,%s", |
| 12582 | info_avail ? "Yes" : "No"); |
| 12583 | send_resp(dut, conn, SIGMA_COMPLETE, buf); |
| 12584 | fail: |
| 12585 | wpa_ctrl_detach(ctrl); |
| 12586 | wpa_ctrl_close(ctrl); |
| 12587 | return 0; |
| 12588 | } |
| 12589 | |
| 12590 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12591 | static int sta_add_credential_uname_pwd(struct sigma_dut *dut, |
| 12592 | struct sigma_conn *conn, |
| 12593 | const char *ifname, |
| 12594 | struct sigma_cmd *cmd) |
| 12595 | { |
| 12596 | const char *val; |
| 12597 | int id; |
| 12598 | |
| 12599 | id = add_cred(ifname); |
| 12600 | if (id < 0) |
| 12601 | return -2; |
| 12602 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Adding credential %d", id); |
| 12603 | |
| 12604 | val = get_param(cmd, "prefer"); |
| 12605 | if (val && atoi(val) > 0) |
| 12606 | set_cred(ifname, id, "priority", "1"); |
| 12607 | |
| 12608 | val = get_param(cmd, "REALM"); |
| 12609 | if (val && set_cred_quoted(ifname, id, "realm", val) < 0) { |
| 12610 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set " |
| 12611 | "realm"); |
| 12612 | return 0; |
| 12613 | } |
| 12614 | |
| 12615 | val = get_param(cmd, "HOME_FQDN"); |
| 12616 | if (val && set_cred_quoted(ifname, id, "domain", val) < 0) { |
| 12617 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set " |
| 12618 | "home_fqdn"); |
| 12619 | return 0; |
| 12620 | } |
| 12621 | |
| 12622 | val = get_param(cmd, "Username"); |
| 12623 | if (val && set_cred_quoted(ifname, id, "username", val) < 0) { |
| 12624 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set " |
| 12625 | "username"); |
| 12626 | return 0; |
| 12627 | } |
| 12628 | |
| 12629 | val = get_param(cmd, "Password"); |
| 12630 | if (val && set_cred_quoted(ifname, id, "password", val) < 0) { |
| 12631 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set " |
| 12632 | "password"); |
| 12633 | return 0; |
| 12634 | } |
| 12635 | |
| 12636 | val = get_param(cmd, "ROOT_CA"); |
| 12637 | if (val) { |
| 12638 | char fname[200]; |
| 12639 | snprintf(fname, sizeof(fname), "%s/%s", sigma_cert_path, val); |
| 12640 | #ifdef __linux__ |
| 12641 | if (!file_exists(fname)) { |
| 12642 | char msg[300]; |
| 12643 | snprintf(msg, sizeof(msg), "ErrorCode,ROOT_CA " |
| 12644 | "file (%s) not found", fname); |
| 12645 | send_resp(dut, conn, SIGMA_ERROR, msg); |
| 12646 | return 0; |
| 12647 | } |
| 12648 | #endif /* __linux__ */ |
| 12649 | if (set_cred_quoted(ifname, id, "ca_cert", fname) < 0) { |
| 12650 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could " |
| 12651 | "not set root CA"); |
| 12652 | return 0; |
| 12653 | } |
| 12654 | } |
| 12655 | |
| 12656 | return 1; |
| 12657 | } |
| 12658 | |
| 12659 | |
| 12660 | static int update_devdetail_imsi(struct sigma_dut *dut, const char *imsi) |
| 12661 | { |
| 12662 | FILE *in, *out; |
| 12663 | char buf[500]; |
| 12664 | int found = 0; |
| 12665 | |
| 12666 | in = fopen("devdetail.xml", "r"); |
| 12667 | if (in == NULL) |
| 12668 | return -1; |
| 12669 | out = fopen("devdetail.xml.tmp", "w"); |
| 12670 | if (out == NULL) { |
| 12671 | fclose(in); |
| 12672 | return -1; |
| 12673 | } |
| 12674 | |
| 12675 | while (fgets(buf, sizeof(buf), in)) { |
| 12676 | char *pos = strstr(buf, "<IMSI>"); |
| 12677 | if (pos) { |
| 12678 | sigma_dut_print(dut, DUT_MSG_INFO, "Updated DevDetail IMSI to %s", |
| 12679 | imsi); |
| 12680 | pos += 6; |
| 12681 | *pos = '\0'; |
| 12682 | fprintf(out, "%s%s</IMSI>\n", buf, imsi); |
| 12683 | found++; |
| 12684 | } else { |
| 12685 | fprintf(out, "%s", buf); |
| 12686 | } |
| 12687 | } |
| 12688 | |
| 12689 | fclose(out); |
| 12690 | fclose(in); |
| 12691 | if (found) |
| 12692 | rename("devdetail.xml.tmp", "devdetail.xml"); |
| 12693 | else |
| 12694 | unlink("devdetail.xml.tmp"); |
| 12695 | |
| 12696 | return 0; |
| 12697 | } |
| 12698 | |
| 12699 | |
| 12700 | static int sta_add_credential_sim(struct sigma_dut *dut, |
| 12701 | struct sigma_conn *conn, |
| 12702 | const char *ifname, struct sigma_cmd *cmd) |
| 12703 | { |
| 12704 | const char *val, *imsi = NULL; |
| 12705 | int id; |
| 12706 | char buf[200]; |
| 12707 | int res; |
| 12708 | const char *pos; |
| 12709 | size_t mnc_len; |
| 12710 | char plmn_mcc[4]; |
| 12711 | char plmn_mnc[4]; |
| 12712 | |
| 12713 | id = add_cred(ifname); |
| 12714 | if (id < 0) |
| 12715 | return -2; |
| 12716 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Adding credential %d", id); |
| 12717 | |
| 12718 | val = get_param(cmd, "prefer"); |
| 12719 | if (val && atoi(val) > 0) |
| 12720 | set_cred(ifname, id, "priority", "1"); |
| 12721 | |
| 12722 | val = get_param(cmd, "PLMN_MCC"); |
| 12723 | if (val == NULL) { |
| 12724 | send_resp(dut, conn, SIGMA_ERROR, |
| 12725 | "errorCode,Missing PLMN_MCC"); |
| 12726 | return 0; |
| 12727 | } |
| 12728 | if (strlen(val) != 3) { |
| 12729 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Invalid MCC"); |
| 12730 | return 0; |
| 12731 | } |
| 12732 | snprintf(plmn_mcc, sizeof(plmn_mcc), "%s", val); |
| 12733 | |
| 12734 | val = get_param(cmd, "PLMN_MNC"); |
| 12735 | if (val == NULL) { |
| 12736 | send_resp(dut, conn, SIGMA_ERROR, |
| 12737 | "errorCode,Missing PLMN_MNC"); |
| 12738 | return 0; |
| 12739 | } |
| 12740 | if (strlen(val) != 2 && strlen(val) != 3) { |
| 12741 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Invalid MNC"); |
| 12742 | return 0; |
| 12743 | } |
| 12744 | snprintf(plmn_mnc, sizeof(plmn_mnc), "%s", val); |
| 12745 | |
| 12746 | val = get_param(cmd, "IMSI"); |
| 12747 | if (val == NULL) { |
| 12748 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Missing SIM " |
| 12749 | "IMSI"); |
| 12750 | return 0; |
| 12751 | } |
| 12752 | |
| 12753 | imsi = pos = val; |
| 12754 | |
| 12755 | if (strncmp(plmn_mcc, pos, 3) != 0) { |
| 12756 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,MCC mismatch"); |
| 12757 | return 0; |
| 12758 | } |
| 12759 | pos += 3; |
| 12760 | |
| 12761 | mnc_len = strlen(plmn_mnc); |
| 12762 | if (mnc_len < 2) { |
| 12763 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,MNC not set"); |
| 12764 | return 0; |
| 12765 | } |
| 12766 | |
| 12767 | if (strncmp(plmn_mnc, pos, mnc_len) != 0) { |
| 12768 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,MNC mismatch"); |
| 12769 | return 0; |
| 12770 | } |
| 12771 | pos += mnc_len; |
| 12772 | |
| 12773 | res = snprintf(buf, sizeof(buf), "%s%s-%s",plmn_mcc, plmn_mnc, pos); |
| 12774 | if (res < 0 || res >= (int) sizeof(buf)) |
| 12775 | return -1; |
| 12776 | if (set_cred_quoted(ifname, id, "imsi", buf) < 0) { |
| 12777 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could " |
| 12778 | "not set IMSI"); |
| 12779 | return 0; |
| 12780 | } |
| 12781 | |
| 12782 | val = get_param(cmd, "Password"); |
| 12783 | if (val && set_cred_quoted(ifname, id, "milenage", val) < 0) { |
| 12784 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could " |
| 12785 | "not set password"); |
| 12786 | return 0; |
| 12787 | } |
| 12788 | |
Jouni Malinen | ba63045 | 2018-06-22 11:49:59 +0300 | [diff] [blame] | 12789 | if (dut->program == PROGRAM_HS2_R2 || dut->program == PROGRAM_HS2_R3) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12790 | /* |
| 12791 | * Set provisioning_sp for the test cases where SIM/USIM |
| 12792 | * provisioning is used. |
| 12793 | */ |
| 12794 | if (val && set_cred_quoted(ifname, id, "provisioning_sp", |
| 12795 | "wi-fi.org") < 0) { |
| 12796 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could " |
| 12797 | "not set provisioning_sp"); |
| 12798 | return 0; |
| 12799 | } |
| 12800 | |
| 12801 | update_devdetail_imsi(dut, imsi); |
| 12802 | } |
| 12803 | |
| 12804 | return 1; |
| 12805 | } |
| 12806 | |
| 12807 | |
| 12808 | static int sta_add_credential_cert(struct sigma_dut *dut, |
| 12809 | struct sigma_conn *conn, |
| 12810 | const char *ifname, |
| 12811 | struct sigma_cmd *cmd) |
| 12812 | { |
| 12813 | const char *val; |
| 12814 | int id; |
| 12815 | |
| 12816 | id = add_cred(ifname); |
| 12817 | if (id < 0) |
| 12818 | return -2; |
| 12819 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Adding credential %d", id); |
| 12820 | |
| 12821 | val = get_param(cmd, "prefer"); |
| 12822 | if (val && atoi(val) > 0) |
| 12823 | set_cred(ifname, id, "priority", "1"); |
| 12824 | |
| 12825 | val = get_param(cmd, "REALM"); |
| 12826 | if (val && set_cred_quoted(ifname, id, "realm", val) < 0) { |
| 12827 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set " |
| 12828 | "realm"); |
| 12829 | return 0; |
| 12830 | } |
| 12831 | |
| 12832 | val = get_param(cmd, "HOME_FQDN"); |
| 12833 | if (val && set_cred_quoted(ifname, id, "domain", val) < 0) { |
| 12834 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set " |
| 12835 | "home_fqdn"); |
| 12836 | return 0; |
| 12837 | } |
| 12838 | |
| 12839 | val = get_param(cmd, "Username"); |
| 12840 | if (val && set_cred_quoted(ifname, id, "username", val) < 0) { |
| 12841 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set " |
| 12842 | "username"); |
| 12843 | return 0; |
| 12844 | } |
| 12845 | |
| 12846 | val = get_param(cmd, "clientCertificate"); |
| 12847 | if (val) { |
| 12848 | char fname[200]; |
| 12849 | snprintf(fname, sizeof(fname), "%s/%s", sigma_cert_path, val); |
| 12850 | #ifdef __linux__ |
| 12851 | if (!file_exists(fname)) { |
| 12852 | char msg[300]; |
| 12853 | snprintf(msg, sizeof(msg), |
| 12854 | "ErrorCode,clientCertificate " |
| 12855 | "file (%s) not found", fname); |
| 12856 | send_resp(dut, conn, SIGMA_ERROR, msg); |
| 12857 | return 0; |
| 12858 | } |
| 12859 | #endif /* __linux__ */ |
| 12860 | if (set_cred_quoted(ifname, id, "client_cert", fname) < 0) { |
| 12861 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could " |
| 12862 | "not set client_cert"); |
| 12863 | return 0; |
| 12864 | } |
| 12865 | if (set_cred_quoted(ifname, id, "private_key", fname) < 0) { |
| 12866 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could " |
| 12867 | "not set private_key"); |
| 12868 | return 0; |
| 12869 | } |
| 12870 | } |
| 12871 | |
| 12872 | val = get_param(cmd, "ROOT_CA"); |
| 12873 | if (val) { |
| 12874 | char fname[200]; |
| 12875 | snprintf(fname, sizeof(fname), "%s/%s", sigma_cert_path, val); |
| 12876 | #ifdef __linux__ |
| 12877 | if (!file_exists(fname)) { |
| 12878 | char msg[300]; |
| 12879 | snprintf(msg, sizeof(msg), "ErrorCode,ROOT_CA " |
| 12880 | "file (%s) not found", fname); |
| 12881 | send_resp(dut, conn, SIGMA_ERROR, msg); |
| 12882 | return 0; |
| 12883 | } |
| 12884 | #endif /* __linux__ */ |
| 12885 | if (set_cred_quoted(ifname, id, "ca_cert", fname) < 0) { |
| 12886 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could " |
| 12887 | "not set root CA"); |
| 12888 | return 0; |
| 12889 | } |
| 12890 | } |
| 12891 | |
| 12892 | return 1; |
| 12893 | } |
| 12894 | |
| 12895 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12896 | static enum sigma_cmd_result cmd_sta_add_credential(struct sigma_dut *dut, |
| 12897 | struct sigma_conn *conn, |
| 12898 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12899 | { |
| 12900 | const char *intf = get_param(cmd, "Interface"); |
| 12901 | const char *type; |
| 12902 | |
| 12903 | start_sta_mode(dut); |
| 12904 | |
| 12905 | type = get_param(cmd, "Type"); |
| 12906 | if (!type) |
| 12907 | return -1; |
| 12908 | |
| 12909 | if (strcasecmp(type, "uname_pwd") == 0) |
| 12910 | return sta_add_credential_uname_pwd(dut, conn, intf, cmd); |
| 12911 | |
| 12912 | if (strcasecmp(type, "sim") == 0) |
| 12913 | return sta_add_credential_sim(dut, conn, intf, cmd); |
| 12914 | |
| 12915 | if (strcasecmp(type, "cert") == 0) |
| 12916 | return sta_add_credential_cert(dut, conn, intf, cmd); |
| 12917 | |
| 12918 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported credential " |
| 12919 | "type"); |
| 12920 | return 0; |
| 12921 | } |
| 12922 | |
| 12923 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 12924 | static enum sigma_cmd_result cmd_sta_scan(struct sigma_dut *dut, |
| 12925 | struct sigma_conn *conn, |
| 12926 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12927 | { |
| 12928 | const char *intf = get_param(cmd, "Interface"); |
Kiran Kumar Lokere | 0044a87 | 2020-03-04 16:38:06 -0800 | [diff] [blame] | 12929 | const char *val, *bssid, *ssid, *scan_freq, *short_ssid; |
Arif Hussain | 66a4af0 | 2019-02-07 15:04:51 -0800 | [diff] [blame] | 12930 | char buf[4096]; |
vamsi krishna | 89ad8c6 | 2017-09-19 12:51:18 +0530 | [diff] [blame] | 12931 | char ssid_hex[65]; |
Kiran Kumar Lokere | 3399af2 | 2020-03-04 16:31:56 -0800 | [diff] [blame] | 12932 | int wildcard_ssid = 0; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12933 | int res; |
Kiran Kumar Lokere | 0044a87 | 2020-03-04 16:38:06 -0800 | [diff] [blame] | 12934 | enum sigma_cmd_result status; |
Jouni Malinen | 228a2fc | 2020-06-22 23:37:45 +0300 | [diff] [blame] | 12935 | struct wpa_ctrl *ctrl = NULL; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12936 | |
Jouni Malinen | 8c1abeb | 2019-11-06 18:48:34 +0200 | [diff] [blame] | 12937 | start_sta_mode(dut); |
| 12938 | |
Arif Hussain | 66a4af0 | 2019-02-07 15:04:51 -0800 | [diff] [blame] | 12939 | val = get_param(cmd, "GetParameter"); |
| 12940 | if (val && strcmp(val, "SSID_BSSID") == 0) { |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 12941 | if (get_wpa_ssid_bssid(dut, get_station_ifname(dut), |
Arif Hussain | 66a4af0 | 2019-02-07 15:04:51 -0800 | [diff] [blame] | 12942 | buf, sizeof(buf)) < 0) { |
| 12943 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 12944 | "Could not get ssid bssid"); |
| 12945 | return ERROR_SEND_STATUS; |
| 12946 | } |
| 12947 | |
| 12948 | sigma_dut_print(dut, DUT_MSG_INFO, "%s", buf); |
| 12949 | send_resp(dut, conn, SIGMA_COMPLETE, buf); |
| 12950 | return STATUS_SENT; |
| 12951 | } |
| 12952 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 12953 | val = get_param(cmd, "HESSID"); |
| 12954 | if (val) { |
| 12955 | res = snprintf(buf, sizeof(buf), "SET hessid %s", val); |
| 12956 | if (res < 0 || res >= (int) sizeof(buf)) |
| 12957 | return -1; |
| 12958 | wpa_command(intf, buf); |
| 12959 | } |
| 12960 | |
| 12961 | val = get_param(cmd, "ACCS_NET_TYPE"); |
| 12962 | if (val) { |
| 12963 | res = snprintf(buf, sizeof(buf), "SET access_network_type %s", |
| 12964 | val); |
| 12965 | if (res < 0 || res >= (int) sizeof(buf)) |
| 12966 | return -1; |
| 12967 | wpa_command(intf, buf); |
| 12968 | } |
| 12969 | |
vamsi krishna | 89ad8c6 | 2017-09-19 12:51:18 +0530 | [diff] [blame] | 12970 | bssid = get_param(cmd, "Bssid"); |
| 12971 | ssid = get_param(cmd, "Ssid"); |
| 12972 | |
Kiran Kumar Lokere | 3399af2 | 2020-03-04 16:31:56 -0800 | [diff] [blame] | 12973 | if (ssid && strcasecmp(ssid, "ZeroLength") == 0 && |
| 12974 | dut->device_type == STA_testbed) { |
| 12975 | ssid = NULL; |
| 12976 | wildcard_ssid = 1; |
| 12977 | } |
| 12978 | |
vamsi krishna | 89ad8c6 | 2017-09-19 12:51:18 +0530 | [diff] [blame] | 12979 | if (ssid) { |
| 12980 | if (2 * strlen(ssid) >= sizeof(ssid_hex)) { |
| 12981 | send_resp(dut, conn, SIGMA_ERROR, |
| 12982 | "ErrorCode,Too long SSID"); |
| 12983 | return 0; |
| 12984 | } |
| 12985 | ascii2hexstr(ssid, ssid_hex); |
| 12986 | } |
| 12987 | |
Kiran Kumar Lokere | 0044a87 | 2020-03-04 16:38:06 -0800 | [diff] [blame] | 12988 | short_ssid = get_param(cmd, "ShortSSID"); |
| 12989 | if (short_ssid) { |
| 12990 | uint32_t short_ssid_hex; |
| 12991 | |
| 12992 | short_ssid_hex = strtoul(short_ssid, NULL, 16); |
| 12993 | short_ssid_hex = ((short_ssid_hex & 0xFF) << 24) | |
| 12994 | (((short_ssid_hex >> 8) & 0xFF) << 16) | |
| 12995 | (((short_ssid_hex >> 16) & 0xFF) << 8) | |
| 12996 | ((short_ssid_hex >> 24) & 0xFF); |
| 12997 | |
| 12998 | res = snprintf(buf, sizeof(buf), |
| 12999 | "VENDOR_ELEM_ADD 14 ff053a%08x", |
| 13000 | short_ssid_hex); |
| 13001 | if (res < 0 || res >= (int) sizeof(buf) || |
| 13002 | wpa_command(intf, buf)) { |
| 13003 | send_resp(dut, conn, SIGMA_ERROR, |
| 13004 | "errorCode,Failed to add short SSID"); |
| 13005 | return STATUS_SENT_ERROR; |
| 13006 | } |
| 13007 | } |
| 13008 | |
Kiran Kumar Lokere | c0deb48 | 2020-03-04 16:35:06 -0800 | [diff] [blame] | 13009 | scan_freq = get_param(cmd, "ChnlFreq"); |
| 13010 | |
Jouni Malinen | 228a2fc | 2020-06-22 23:37:45 +0300 | [diff] [blame] | 13011 | val = get_param(cmd, "WaitCompletion"); |
| 13012 | if (val && atoi(val) == 1) { |
| 13013 | ctrl = open_wpa_mon(intf); |
| 13014 | if (!ctrl) { |
| 13015 | send_resp(dut, conn, SIGMA_ERROR, |
| 13016 | "errorCode,Failed to open monitor socket"); |
| 13017 | return STATUS_SENT_ERROR; |
| 13018 | } |
| 13019 | } |
| 13020 | |
Kiran Kumar Lokere | c0deb48 | 2020-03-04 16:35:06 -0800 | [diff] [blame] | 13021 | res = snprintf(buf, sizeof(buf), "SCAN%s%s%s%s%s%s%s", |
vamsi krishna | 89ad8c6 | 2017-09-19 12:51:18 +0530 | [diff] [blame] | 13022 | bssid ? " bssid=": "", |
| 13023 | bssid ? bssid : "", |
| 13024 | ssid ? " ssid " : "", |
Kiran Kumar Lokere | 3399af2 | 2020-03-04 16:31:56 -0800 | [diff] [blame] | 13025 | ssid ? ssid_hex : "", |
Kiran Kumar Lokere | c0deb48 | 2020-03-04 16:35:06 -0800 | [diff] [blame] | 13026 | wildcard_ssid ? " wildcard_ssid=1" : "", |
| 13027 | scan_freq ? " freq=" : "", |
| 13028 | scan_freq ? scan_freq : ""); |
Kiran Kumar Lokere | 0044a87 | 2020-03-04 16:38:06 -0800 | [diff] [blame] | 13029 | if (res < 0 || res >= (int) sizeof(buf)) { |
| 13030 | send_resp(dut, conn, SIGMA_ERROR, |
| 13031 | "errorCode,Could not build scan command"); |
| 13032 | status = STATUS_SENT_ERROR; |
| 13033 | goto remove_s_ssid; |
| 13034 | } |
vamsi krishna | 89ad8c6 | 2017-09-19 12:51:18 +0530 | [diff] [blame] | 13035 | |
| 13036 | if (wpa_command(intf, buf)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13037 | send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not start " |
| 13038 | "scan"); |
Kiran Kumar Lokere | 0044a87 | 2020-03-04 16:38:06 -0800 | [diff] [blame] | 13039 | status = STATUS_SENT_ERROR; |
| 13040 | } else { |
| 13041 | status = SUCCESS_SEND_STATUS; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13042 | } |
| 13043 | |
Kiran Kumar Lokere | 0044a87 | 2020-03-04 16:38:06 -0800 | [diff] [blame] | 13044 | remove_s_ssid: |
| 13045 | if (short_ssid && wpa_command(intf, "VENDOR_ELEM_REMOVE 14 *")) |
| 13046 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 13047 | "Failed to delete vendor element"); |
| 13048 | |
Jouni Malinen | 228a2fc | 2020-06-22 23:37:45 +0300 | [diff] [blame] | 13049 | if (ctrl) { |
| 13050 | if (status == SUCCESS_SEND_STATUS) { |
| 13051 | res = get_wpa_cli_event(dut, ctrl, |
| 13052 | "CTRL-EVENT-SCAN-RESULTS", |
| 13053 | buf, sizeof(buf)); |
| 13054 | if (res < 0) { |
| 13055 | send_resp(dut, conn, SIGMA_ERROR, |
| 13056 | "ErrorCode,scan did not complete"); |
| 13057 | status = STATUS_SENT_ERROR; |
| 13058 | } |
| 13059 | } |
| 13060 | |
| 13061 | wpa_ctrl_detach(ctrl); |
| 13062 | wpa_ctrl_close(ctrl); |
| 13063 | } |
| 13064 | |
Kiran Kumar Lokere | 0044a87 | 2020-03-04 16:38:06 -0800 | [diff] [blame] | 13065 | return status; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13066 | } |
| 13067 | |
| 13068 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 13069 | static enum sigma_cmd_result cmd_sta_scan_bss(struct sigma_dut *dut, |
| 13070 | struct sigma_conn *conn, |
| 13071 | struct sigma_cmd *cmd) |
Jouni Malinen | 5e5d43d | 2018-01-10 17:29:33 +0200 | [diff] [blame] | 13072 | { |
| 13073 | const char *intf = get_param(cmd, "Interface"); |
| 13074 | const char *bssid; |
| 13075 | char buf[4096], *pos; |
| 13076 | int freq, chan; |
| 13077 | char *ssid; |
| 13078 | char resp[100]; |
| 13079 | int res; |
| 13080 | struct wpa_ctrl *ctrl; |
| 13081 | |
| 13082 | bssid = get_param(cmd, "BSSID"); |
| 13083 | if (!bssid) { |
| 13084 | send_resp(dut, conn, SIGMA_INVALID, |
| 13085 | "errorCode,BSSID argument is missing"); |
| 13086 | return 0; |
| 13087 | } |
| 13088 | |
| 13089 | ctrl = open_wpa_mon(intf); |
| 13090 | if (!ctrl) { |
| 13091 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 13092 | "Failed to open wpa_supplicant monitor connection"); |
| 13093 | return -1; |
| 13094 | } |
| 13095 | |
| 13096 | if (wpa_command(intf, "SCAN TYPE=ONLY")) { |
| 13097 | send_resp(dut, conn, SIGMA_ERROR, |
| 13098 | "errorCode,Could not start scan"); |
| 13099 | wpa_ctrl_detach(ctrl); |
| 13100 | wpa_ctrl_close(ctrl); |
| 13101 | return 0; |
| 13102 | } |
| 13103 | |
| 13104 | res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-SCAN-RESULTS", |
| 13105 | buf, sizeof(buf)); |
| 13106 | |
| 13107 | wpa_ctrl_detach(ctrl); |
| 13108 | wpa_ctrl_close(ctrl); |
| 13109 | |
| 13110 | if (res < 0) { |
| 13111 | send_resp(dut, conn, SIGMA_ERROR, |
| 13112 | "errorCode,Scan did not complete"); |
| 13113 | return 0; |
| 13114 | } |
| 13115 | |
| 13116 | snprintf(buf, sizeof(buf), "BSS %s", bssid); |
| 13117 | if (wpa_command_resp(intf, buf, buf, sizeof(buf)) < 0 || |
| 13118 | strncmp(buf, "id=", 3) != 0) { |
| 13119 | send_resp(dut, conn, SIGMA_ERROR, |
| 13120 | "errorCode,Specified BSSID not found"); |
| 13121 | return 0; |
| 13122 | } |
| 13123 | |
| 13124 | pos = strstr(buf, "\nfreq="); |
| 13125 | if (!pos) { |
| 13126 | send_resp(dut, conn, SIGMA_ERROR, |
| 13127 | "errorCode,Channel not found"); |
| 13128 | return 0; |
| 13129 | } |
| 13130 | freq = atoi(pos + 6); |
| 13131 | chan = freq_to_channel(freq); |
| 13132 | |
| 13133 | pos = strstr(buf, "\nssid="); |
| 13134 | if (!pos) { |
| 13135 | send_resp(dut, conn, SIGMA_ERROR, |
| 13136 | "errorCode,SSID not found"); |
| 13137 | return 0; |
| 13138 | } |
| 13139 | ssid = pos + 6; |
| 13140 | pos = strchr(ssid, '\n'); |
| 13141 | if (pos) |
| 13142 | *pos = '\0'; |
| 13143 | snprintf(resp, sizeof(resp), "ssid,%s,bsschannel,%d", ssid, chan); |
| 13144 | send_resp(dut, conn, SIGMA_COMPLETE, resp); |
| 13145 | return 0; |
| 13146 | } |
| 13147 | |
| 13148 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 13149 | static enum sigma_cmd_result cmd_sta_set_systime(struct sigma_dut *dut, |
| 13150 | struct sigma_conn *conn, |
| 13151 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13152 | { |
| 13153 | #ifdef __linux__ |
| 13154 | struct timeval tv; |
| 13155 | struct tm tm; |
| 13156 | time_t t; |
| 13157 | const char *val; |
Pradeep Reddy POTTETI | 429c69e | 2016-10-13 17:22:03 +0530 | [diff] [blame] | 13158 | int v; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13159 | |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 13160 | wpa_command(get_station_ifname(dut), "PMKSA_FLUSH"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13161 | |
| 13162 | memset(&tm, 0, sizeof(tm)); |
| 13163 | val = get_param(cmd, "seconds"); |
| 13164 | if (val) |
| 13165 | tm.tm_sec = atoi(val); |
| 13166 | val = get_param(cmd, "minutes"); |
| 13167 | if (val) |
| 13168 | tm.tm_min = atoi(val); |
| 13169 | val = get_param(cmd, "hours"); |
| 13170 | if (val) |
| 13171 | tm.tm_hour = atoi(val); |
| 13172 | val = get_param(cmd, "date"); |
| 13173 | if (val) |
| 13174 | tm.tm_mday = atoi(val); |
| 13175 | val = get_param(cmd, "month"); |
Pradeep Reddy POTTETI | 429c69e | 2016-10-13 17:22:03 +0530 | [diff] [blame] | 13176 | if (val) { |
| 13177 | v = atoi(val); |
| 13178 | if (v < 1 || v > 12) { |
| 13179 | send_resp(dut, conn, SIGMA_INVALID, |
| 13180 | "errorCode,Invalid month"); |
| 13181 | return 0; |
| 13182 | } |
| 13183 | tm.tm_mon = v - 1; |
| 13184 | } |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13185 | val = get_param(cmd, "year"); |
| 13186 | if (val) { |
| 13187 | int year = atoi(val); |
| 13188 | #ifdef ANDROID |
| 13189 | if (year > 2035) |
| 13190 | year = 2035; /* years beyond 2035 not supported */ |
| 13191 | #endif /* ANDROID */ |
| 13192 | tm.tm_year = year - 1900; |
| 13193 | } |
| 13194 | t = mktime(&tm); |
| 13195 | if (t == (time_t) -1) { |
| 13196 | send_resp(dut, conn, SIGMA_ERROR, |
| 13197 | "errorCode,Invalid date or time"); |
| 13198 | return 0; |
| 13199 | } |
| 13200 | |
| 13201 | memset(&tv, 0, sizeof(tv)); |
| 13202 | tv.tv_sec = t; |
| 13203 | |
| 13204 | if (settimeofday(&tv, NULL) < 0) { |
| 13205 | sigma_dut_print(dut, DUT_MSG_INFO, "settimeofday failed: %s", |
| 13206 | strerror(errno)); |
| 13207 | send_resp(dut, conn, SIGMA_ERROR, |
| 13208 | "errorCode,Failed to set time"); |
| 13209 | return 0; |
| 13210 | } |
| 13211 | |
| 13212 | return 1; |
| 13213 | #endif /* __linux__ */ |
| 13214 | |
| 13215 | return -1; |
| 13216 | } |
| 13217 | |
| 13218 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 13219 | static enum sigma_cmd_result cmd_sta_osu(struct sigma_dut *dut, |
| 13220 | struct sigma_conn *conn, |
| 13221 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13222 | { |
| 13223 | const char *intf = get_param(cmd, "Interface"); |
Jouni Malinen | 4c8681c | 2018-09-12 23:28:11 +0300 | [diff] [blame] | 13224 | const char *name, *osu_ssid, *val; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13225 | int prod_ess_assoc = 1; |
Jouni Malinen | 4c8681c | 2018-09-12 23:28:11 +0300 | [diff] [blame] | 13226 | char buf[300], bssid[100], ssid[100]; |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13227 | int res; |
| 13228 | struct wpa_ctrl *ctrl; |
| 13229 | |
| 13230 | name = get_param(cmd, "osuFriendlyName"); |
Jouni Malinen | 4c8681c | 2018-09-12 23:28:11 +0300 | [diff] [blame] | 13231 | osu_ssid = get_param(cmd, "osu_ssid"); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13232 | |
| 13233 | val = get_param(cmd, "ProdESSAssoc"); |
| 13234 | if (val) |
| 13235 | prod_ess_assoc = atoi(val); |
| 13236 | |
| 13237 | kill_dhcp_client(dut, intf); |
| 13238 | if (start_dhcp_client(dut, intf) < 0) |
| 13239 | return -2; |
| 13240 | |
| 13241 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Trigger OSU"); |
| 13242 | mkdir("Logs", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); |
| 13243 | res = snprintf(buf, sizeof(buf), |
Jouni Malinen | 4c8681c | 2018-09-12 23:28:11 +0300 | [diff] [blame] | 13244 | "%s %s%s%s %s%s%s signup osu-ca.pem", |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13245 | prod_ess_assoc ? "" : "-N", |
| 13246 | name ? "-O'" : "", name ? name : "", |
Jouni Malinen | 4c8681c | 2018-09-12 23:28:11 +0300 | [diff] [blame] | 13247 | name ? "'" : "", |
| 13248 | osu_ssid ? "-o'" : "", osu_ssid ? osu_ssid : "", |
| 13249 | osu_ssid ? "'" : ""); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13250 | |
Kanchanapally, Vidyullatha | 12b6676 | 2015-12-31 16:46:42 +0530 | [diff] [blame] | 13251 | hs2_set_policy(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13252 | if (run_hs20_osu(dut, buf) < 0) { |
| 13253 | FILE *f; |
| 13254 | |
| 13255 | sigma_dut_print(dut, DUT_MSG_INFO, "Failed to complete OSU"); |
| 13256 | |
| 13257 | f = fopen("hs20-osu-client.res", "r"); |
| 13258 | if (f) { |
| 13259 | char resp[400], res[300], *pos; |
| 13260 | if (!fgets(res, sizeof(res), f)) |
| 13261 | res[0] = '\0'; |
| 13262 | pos = strchr(res, '\n'); |
| 13263 | if (pos) |
| 13264 | *pos = '\0'; |
| 13265 | fclose(f); |
| 13266 | sigma_dut_summary(dut, "hs20-osu-client provisioning failed: %s", |
| 13267 | res); |
| 13268 | snprintf(resp, sizeof(resp), "notify-send '%s'", res); |
| 13269 | if (system(resp) != 0) { |
| 13270 | } |
| 13271 | snprintf(resp, sizeof(resp), |
| 13272 | "SSID,,BSSID,,failureReason,%s", res); |
| 13273 | send_resp(dut, conn, SIGMA_COMPLETE, resp); |
| 13274 | return 0; |
| 13275 | } |
| 13276 | |
| 13277 | send_resp(dut, conn, SIGMA_COMPLETE, "SSID,,BSSID,"); |
| 13278 | return 0; |
| 13279 | } |
| 13280 | |
| 13281 | if (!prod_ess_assoc) |
| 13282 | goto report; |
| 13283 | |
| 13284 | ctrl = open_wpa_mon(intf); |
| 13285 | if (ctrl == NULL) { |
| 13286 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open " |
| 13287 | "wpa_supplicant monitor connection"); |
| 13288 | return -1; |
| 13289 | } |
| 13290 | |
| 13291 | res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-CONNECTED", |
| 13292 | buf, sizeof(buf)); |
| 13293 | |
| 13294 | wpa_ctrl_detach(ctrl); |
| 13295 | wpa_ctrl_close(ctrl); |
| 13296 | |
| 13297 | if (res < 0) { |
| 13298 | sigma_dut_print(dut, DUT_MSG_INFO, "Failed to connect to " |
| 13299 | "network after OSU"); |
| 13300 | send_resp(dut, conn, SIGMA_COMPLETE, "SSID,,BSSID,"); |
| 13301 | return 0; |
| 13302 | } |
| 13303 | |
| 13304 | report: |
| 13305 | if (get_wpa_status(intf, "bssid", bssid, sizeof(bssid)) < 0 || |
| 13306 | get_wpa_status(intf, "ssid", ssid, sizeof(ssid)) < 0) { |
| 13307 | sigma_dut_print(dut, DUT_MSG_INFO, "Failed to get BSSID/SSID"); |
| 13308 | send_resp(dut, conn, SIGMA_COMPLETE, "SSID,,BSSID,"); |
| 13309 | return 0; |
| 13310 | } |
| 13311 | |
| 13312 | snprintf(buf, sizeof(buf), "SSID,%s,BSSID,%s", ssid, bssid); |
| 13313 | send_resp(dut, conn, SIGMA_COMPLETE, buf); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13314 | return 0; |
| 13315 | } |
| 13316 | |
| 13317 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 13318 | static enum sigma_cmd_result cmd_sta_policy_update(struct sigma_dut *dut, |
| 13319 | struct sigma_conn *conn, |
| 13320 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13321 | { |
| 13322 | const char *val; |
| 13323 | int timeout = 120; |
| 13324 | |
| 13325 | val = get_param(cmd, "PolicyUpdate"); |
| 13326 | if (val == NULL || atoi(val) == 0) |
| 13327 | return 1; /* No operation requested */ |
| 13328 | |
| 13329 | val = get_param(cmd, "Timeout"); |
| 13330 | if (val) |
| 13331 | timeout = atoi(val); |
| 13332 | |
| 13333 | if (timeout) { |
| 13334 | /* TODO: time out the command and return |
| 13335 | * PolicyUpdateStatus,TIMEOUT if needed. */ |
| 13336 | } |
| 13337 | |
| 13338 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Trigger policy update"); |
| 13339 | mkdir("Logs", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); |
| 13340 | if (run_hs20_osu(dut, "pol_upd fqdn=wi-fi.org") < 0) { |
| 13341 | send_resp(dut, conn, SIGMA_COMPLETE, "PolicyUpdateStatus,FAIL"); |
| 13342 | return 0; |
| 13343 | } |
| 13344 | |
| 13345 | send_resp(dut, conn, SIGMA_COMPLETE, "PolicyUpdateStatus,SUCCESS"); |
| 13346 | return 0; |
| 13347 | } |
| 13348 | |
| 13349 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 13350 | static enum sigma_cmd_result cmd_sta_er_config(struct sigma_dut *dut, |
| 13351 | struct sigma_conn *conn, |
| 13352 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13353 | { |
| 13354 | struct wpa_ctrl *ctrl; |
| 13355 | const char *intf = get_param(cmd, "Interface"); |
| 13356 | const char *bssid = get_param(cmd, "Bssid"); |
| 13357 | const char *ssid = get_param(cmd, "SSID"); |
| 13358 | const char *security = get_param(cmd, "Security"); |
| 13359 | const char *passphrase = get_param(cmd, "Passphrase"); |
| 13360 | const char *pin = get_param(cmd, "PIN"); |
| 13361 | char buf[1000]; |
| 13362 | char ssid_hex[200], passphrase_hex[200]; |
| 13363 | const char *keymgmt, *cipher; |
| 13364 | |
| 13365 | if (intf == NULL) |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 13366 | intf = get_main_ifname(dut); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13367 | |
| 13368 | if (!bssid) { |
| 13369 | send_resp(dut, conn, SIGMA_ERROR, |
| 13370 | "ErrorCode,Missing Bssid argument"); |
| 13371 | return 0; |
| 13372 | } |
| 13373 | |
| 13374 | if (!ssid) { |
| 13375 | send_resp(dut, conn, SIGMA_ERROR, |
| 13376 | "ErrorCode,Missing SSID argument"); |
| 13377 | return 0; |
| 13378 | } |
| 13379 | |
| 13380 | if (!security) { |
| 13381 | send_resp(dut, conn, SIGMA_ERROR, |
| 13382 | "ErrorCode,Missing Security argument"); |
| 13383 | return 0; |
| 13384 | } |
| 13385 | |
| 13386 | if (!passphrase) { |
| 13387 | send_resp(dut, conn, SIGMA_ERROR, |
| 13388 | "ErrorCode,Missing Passphrase argument"); |
| 13389 | return 0; |
| 13390 | } |
| 13391 | |
| 13392 | if (!pin) { |
| 13393 | send_resp(dut, conn, SIGMA_ERROR, |
| 13394 | "ErrorCode,Missing PIN argument"); |
| 13395 | return 0; |
| 13396 | } |
| 13397 | |
vamsi krishna | 8c9c156 | 2017-05-12 15:51:46 +0530 | [diff] [blame] | 13398 | if (2 * strlen(ssid) >= sizeof(ssid_hex) || |
| 13399 | 2 * strlen(passphrase) >= sizeof(passphrase_hex)) { |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13400 | send_resp(dut, conn, SIGMA_ERROR, |
| 13401 | "ErrorCode,Too long SSID/passphrase"); |
| 13402 | return 0; |
| 13403 | } |
| 13404 | |
| 13405 | ctrl = open_wpa_mon(intf); |
| 13406 | if (ctrl == NULL) { |
| 13407 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open " |
| 13408 | "wpa_supplicant monitor connection"); |
| 13409 | return -2; |
| 13410 | } |
| 13411 | |
| 13412 | if (strcasecmp(security, "wpa2-psk") == 0) { |
| 13413 | keymgmt = "WPA2PSK"; |
| 13414 | cipher = "CCMP"; |
| 13415 | } else { |
| 13416 | wpa_ctrl_detach(ctrl); |
| 13417 | wpa_ctrl_close(ctrl); |
| 13418 | send_resp(dut, conn, SIGMA_ERROR, |
| 13419 | "ErrorCode,Unsupported Security value"); |
| 13420 | return 0; |
| 13421 | } |
| 13422 | |
| 13423 | ascii2hexstr(ssid, ssid_hex); |
| 13424 | ascii2hexstr(passphrase, passphrase_hex); |
| 13425 | snprintf(buf, sizeof(buf), "WPS_REG %s %s %s %s %s %s", |
| 13426 | bssid, pin, ssid_hex, keymgmt, cipher, passphrase_hex); |
| 13427 | |
| 13428 | if (wpa_command(intf, buf) < 0) { |
| 13429 | wpa_ctrl_detach(ctrl); |
| 13430 | wpa_ctrl_close(ctrl); |
| 13431 | send_resp(dut, conn, SIGMA_ERROR, |
| 13432 | "ErrorCode,Failed to start registrar"); |
| 13433 | return 0; |
| 13434 | } |
| 13435 | |
| 13436 | snprintf(dut->er_oper_bssid, sizeof(dut->er_oper_bssid), "%s", bssid); |
| 13437 | dut->er_oper_performed = 1; |
| 13438 | |
| 13439 | return wps_connection_event(dut, conn, ctrl, intf, 0); |
| 13440 | } |
| 13441 | |
| 13442 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 13443 | static enum sigma_cmd_result |
| 13444 | cmd_sta_wps_connect_pw_token(struct sigma_dut *dut, struct sigma_conn *conn, |
| 13445 | struct sigma_cmd *cmd) |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13446 | { |
| 13447 | struct wpa_ctrl *ctrl; |
| 13448 | const char *intf = get_param(cmd, "Interface"); |
| 13449 | const char *bssid = get_param(cmd, "Bssid"); |
| 13450 | char buf[100]; |
| 13451 | |
| 13452 | if (!bssid) { |
| 13453 | send_resp(dut, conn, SIGMA_ERROR, |
| 13454 | "ErrorCode,Missing Bssid argument"); |
| 13455 | return 0; |
| 13456 | } |
| 13457 | |
| 13458 | ctrl = open_wpa_mon(intf); |
| 13459 | if (ctrl == NULL) { |
| 13460 | sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open " |
| 13461 | "wpa_supplicant monitor connection"); |
| 13462 | return -2; |
| 13463 | } |
| 13464 | |
| 13465 | snprintf(buf, sizeof(buf), "WPS_NFC %s", bssid); |
| 13466 | |
| 13467 | if (wpa_command(intf, buf) < 0) { |
| 13468 | wpa_ctrl_detach(ctrl); |
| 13469 | wpa_ctrl_close(ctrl); |
| 13470 | send_resp(dut, conn, SIGMA_ERROR, |
| 13471 | "ErrorCode,Failed to start registrar"); |
| 13472 | return 0; |
| 13473 | } |
| 13474 | |
| 13475 | return wps_connection_event(dut, conn, ctrl, intf, 0); |
| 13476 | } |
| 13477 | |
| 13478 | |
Jouni Malinen | f722271 | 2019-06-13 01:50:21 +0300 | [diff] [blame] | 13479 | static enum sigma_cmd_result cmd_start_wps_registration(struct sigma_dut *dut, |
| 13480 | struct sigma_conn *conn, |
| 13481 | struct sigma_cmd *cmd) |
vamsi krishna | 9b14400 | 2017-09-20 13:28:13 +0530 | [diff] [blame] | 13482 | { |
| 13483 | struct wpa_ctrl *ctrl; |
| 13484 | const char *intf = get_param(cmd, "Interface"); |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 13485 | const char *network_mode = get_param(cmd, "network_mode"); |
Alexei Avshalom Lazar | 043230b | 2019-02-04 14:11:24 +0200 | [diff] [blame] | 13486 | const char *config_method = get_param(cmd, "WPSConfigMethod"); |
| 13487 | const char *role; |
vamsi krishna | 9b14400 | 2017-09-20 13:28:13 +0530 | [diff] [blame] | 13488 | int res; |
| 13489 | char buf[256]; |
| 13490 | const char *events[] = { |
| 13491 | "CTRL-EVENT-CONNECTED", |
| 13492 | "WPS-OVERLAP-DETECTED", |
| 13493 | "WPS-TIMEOUT", |
| 13494 | "WPS-FAIL", |
| 13495 | NULL |
| 13496 | }; |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 13497 | int id = 0; |
vamsi krishna | 9b14400 | 2017-09-20 13:28:13 +0530 | [diff] [blame] | 13498 | |
Alexei Avshalom Lazar | 35ab383 | 2018-12-23 16:49:49 +0200 | [diff] [blame] | 13499 | /* 60G WPS tests do not pass Interface parameter */ |
| 13500 | if (!intf) |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 13501 | intf = get_main_ifname(dut); |
Alexei Avshalom Lazar | 35ab383 | 2018-12-23 16:49:49 +0200 | [diff] [blame] | 13502 | |
Alexei Avshalom Lazar | 043230b | 2019-02-04 14:11:24 +0200 | [diff] [blame] | 13503 | if (dut->mode == SIGMA_MODE_AP) |
| 13504 | return ap_wps_registration(dut, conn, cmd); |
| 13505 | |
| 13506 | if (config_method) { |
| 13507 | /* WFA_CS_WPS_PIN_KEYPAD mode is set when using the |
| 13508 | * sta_wps_enter_pin before calling start_wps_registration. */ |
| 13509 | if (strcasecmp(config_method, "PBC") == 0) |
| 13510 | dut->wps_method = WFA_CS_WPS_PBC; |
| 13511 | } |
| 13512 | if (dut->wps_method == WFA_CS_WPS_NOT_READY) { |
| 13513 | send_resp(dut, conn, SIGMA_ERROR, |
| 13514 | "ErrorCode,WPS parameters not yet set"); |
| 13515 | return STATUS_SENT; |
| 13516 | } |
| 13517 | |
| 13518 | /* Make sure WPS is enabled (also for STA mode) */ |
| 13519 | dut->wps_disable = 0; |
| 13520 | |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 13521 | if (dut->band == WPS_BAND_60G && network_mode && |
| 13522 | strcasecmp(network_mode, "PBSS") == 0) { |
| 13523 | sigma_dut_print(dut, DUT_MSG_DEBUG, |
| 13524 | "Set PBSS network mode, network id %d", id); |
Jouni Malinen | 016ae6c | 2019-11-04 17:00:01 +0200 | [diff] [blame] | 13525 | if (set_network(get_station_ifname(dut), id, "pbss", "1") < 0) |
Alexei Avshalom Lazar | d596b51 | 2018-12-18 16:00:59 +0200 | [diff] [blame] | 13526 | return -2; |
| 13527 | } |
| 13528 | |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 13529 | if (dut->force_rsn_ie) { |
| 13530 | sigma_dut_print(dut, DUT_MSG_DEBUG, "Force RSN_IE: %d", |
| 13531 | dut->force_rsn_ie); |
| 13532 | if (sta_60g_force_rsn_ie(dut, dut->force_rsn_ie) < 0) { |
| 13533 | sigma_dut_print(dut, DUT_MSG_INFO, |
| 13534 | "Failed to force RSN_IE"); |
Jouni Malinen | 0e29cf2 | 2019-02-19 01:13:21 +0200 | [diff] [blame] | 13535 | return ERROR_SEND_STATUS; |
Alexei Avshalom Lazar | b094bf0 | 2018-12-18 16:00:53 +0200 | [diff] [blame] | 13536 | } |
| 13537 | } |
| 13538 | |
vamsi krishna | 9b14400 | 2017-09-20 13:28:13 +0530 | [diff] [blame] | 13539 | ctrl = open_wpa_mon(intf); |
| 13540 | if (!ctrl) { |
| 13541 | sigma_dut_print(dut, DUT_MSG_ERROR, |
| 13542 | "Failed to open wpa_supplicant monitor connection"); |
| 13543 | return -2; |
| 13544 | } |
| 13545 | |
| 13546 | role = get_param(cmd, "WpsRole"); |
| 13547 | if (!role) { |
| 13548 | send_resp(dut, conn, SIGMA_INVALID, |
| 13549 | "ErrorCode,WpsRole not provided"); |
| 13550 | goto fail; |
| 13551 | } |
| 13552 | |
Alexei Avshalom Lazar | 043230b | 2019-02-04 14:11:24 +0200 | [diff] [blame] | 13553 | if (strcasecmp(role, "Enrollee") != 0) { |
| 13554 | /* Registrar role for STA not supported */ |
| 13555 | send_resp(dut, conn, SIGMA_ERROR, |
| 13556 | "ErrorCode,Unsupported WpsRole value"); |
| 13557 | goto fail; |
| 13558 | } |
| 13559 | |
| 13560 | if (is_60g_sigma_dut(dut)) { |
| 13561 | if (dut->wps_method == WFA_CS_WPS_PBC) |
| 13562 | snprintf(buf, sizeof(buf), "WPS_PBC"); |
| 13563 | else /* WFA_CS_WPS_PIN_KEYPAD */ |
| 13564 | snprintf(buf, sizeof(buf), "WPS_PIN any %s", |
| 13565 | dut->wps_pin); |
| 13566 | if (wpa_command(intf, buf) < 0) { |
| 13567 | send_resp(dut, conn, SIGMA_ERROR, |
| 13568 | "ErrorCode,Failed to start WPS"); |
vamsi krishna | 9b14400 | 2017-09-20 13:28:13 +0530 | [diff] [blame] | 13569 | goto fail; |
| 13570 | } |
Alexei Avshalom Lazar | 043230b | 2019-02-04 14:11:24 +0200 | [diff] [blame] | 13571 | res = get_wpa_cli_events(dut, ctrl, events, buf, sizeof(buf)); |
| 13572 | if (res < 0) { |
| 13573 | send_resp(dut, conn, SIGMA_ERROR, |
| 13574 | "ErrorCode,WPS connection did not complete"); |
| 13575 | goto fail; |
| 13576 | } |
| 13577 | if (strstr(buf, "WPS-TIMEOUT")) { |
| 13578 | send_resp(dut, conn, SIGMA_COMPLETE, "WpsState,NoPeer"); |
| 13579 | } else if (strstr(buf, "WPS-OVERLAP-DETECTED")) { |
| 13580 | send_resp(dut, conn, SIGMA_COMPLETE, |
| 13581 | "WpsState,OverlapSession"); |
| 13582 | } else if (strstr(buf, "CTRL-EVENT-CONNECTED")) { |
| 13583 | send_resp(dut, conn, SIGMA_COMPLETE, |
| 13584 | "WpsState,Successful"); |
| 13585 | } else { |
| 13586 | send_resp(dut, conn, SIGMA_COMPLETE, |
| 13587 | "WpsState,Failure"); |
| 13588 | } |
| 13589 | } else { |
| 13590 | if (dut->wps_method == WFA_CS_WPS_PBC) { |
vamsi krishna | 9b14400 | 2017-09-20 13:28:13 +0530 | [diff] [blame] | 13591 | if (wpa_command(intf, "WPS_PBC") < 0) { |
| 13592 | send_resp(dut, conn, SIGMA_ERROR, |
| 13593 | "ErrorCode,Failed to enable PBC"); |
| 13594 | goto fail; |
| 13595 | } |
| 13596 | } else { |
| 13597 | /* TODO: PIN method */ |
| 13598 | send_resp(dut, conn, SIGMA_ERROR, |
| 13599 | "ErrorCode,Unsupported WpsConfigMethod value"); |
| 13600 | goto fail; |
| 13601 | } |
| 13602 | res = get_wpa_cli_events(dut, ctrl, events, buf, sizeof(buf)); |
| 13603 | if (res < 0) { |
| 13604 | send_resp(dut, conn, SIGMA_ERROR, |
| 13605 | "ErrorCode,WPS connection did not complete"); |
| 13606 | goto fail; |
| 13607 | } |
| 13608 | if (strstr(buf, "WPS-TIMEOUT")) { |
| 13609 | send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,NoPeer"); |
| 13610 | } else if (strstr(buf, "WPS-OVERLAP-DETECTED")) { |
| 13611 | send_resp(dut, conn, SIGMA_ERROR, |
| 13612 | "ErrorCode,OverlapSession"); |
| 13613 | } else if (strstr(buf, "CTRL-EVENT-CONNECTED")) { |
| 13614 | send_resp(dut, conn, SIGMA_COMPLETE, "Successful"); |
| 13615 | } else { |
| 13616 | send_resp(dut, conn, SIGMA_ERROR, |
| 13617 | "ErrorCode,WPS operation failed"); |
| 13618 | } |
vamsi krishna | 9b14400 | 2017-09-20 13:28:13 +0530 | [diff] [blame] | 13619 | } |
| 13620 | |
| 13621 | fail: |
| 13622 | wpa_ctrl_detach(ctrl); |
| 13623 | wpa_ctrl_close(ctrl); |
| 13624 | return 0; |
| 13625 | } |
| 13626 | |
| 13627 | |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13628 | static int req_intf(struct sigma_cmd *cmd) |
| 13629 | { |
| 13630 | return get_param(cmd, "interface") == NULL ? -1 : 0; |
| 13631 | } |
| 13632 | |
| 13633 | |
| 13634 | void sta_register_cmds(void) |
| 13635 | { |
| 13636 | sigma_dut_reg_cmd("sta_get_ip_config", req_intf, |
| 13637 | cmd_sta_get_ip_config); |
| 13638 | sigma_dut_reg_cmd("sta_set_ip_config", req_intf, |
| 13639 | cmd_sta_set_ip_config); |
| 13640 | sigma_dut_reg_cmd("sta_get_info", req_intf, cmd_sta_get_info); |
| 13641 | sigma_dut_reg_cmd("sta_get_mac_address", req_intf, |
| 13642 | cmd_sta_get_mac_address); |
| 13643 | sigma_dut_reg_cmd("sta_is_connected", req_intf, cmd_sta_is_connected); |
| 13644 | sigma_dut_reg_cmd("sta_verify_ip_connection", req_intf, |
| 13645 | cmd_sta_verify_ip_connection); |
| 13646 | sigma_dut_reg_cmd("sta_get_bssid", req_intf, cmd_sta_get_bssid); |
| 13647 | sigma_dut_reg_cmd("sta_set_encryption", req_intf, |
| 13648 | cmd_sta_set_encryption); |
| 13649 | sigma_dut_reg_cmd("sta_set_psk", req_intf, cmd_sta_set_psk); |
| 13650 | sigma_dut_reg_cmd("sta_set_eaptls", req_intf, cmd_sta_set_eaptls); |
| 13651 | sigma_dut_reg_cmd("sta_set_eapttls", req_intf, cmd_sta_set_eapttls); |
| 13652 | sigma_dut_reg_cmd("sta_set_eapsim", req_intf, cmd_sta_set_eapsim); |
| 13653 | sigma_dut_reg_cmd("sta_set_peap", req_intf, cmd_sta_set_peap); |
| 13654 | sigma_dut_reg_cmd("sta_set_eapfast", req_intf, cmd_sta_set_eapfast); |
| 13655 | sigma_dut_reg_cmd("sta_set_eapaka", req_intf, cmd_sta_set_eapaka); |
| 13656 | sigma_dut_reg_cmd("sta_set_eapakaprime", req_intf, |
| 13657 | cmd_sta_set_eapakaprime); |
| 13658 | sigma_dut_reg_cmd("sta_set_security", req_intf, cmd_sta_set_security); |
| 13659 | sigma_dut_reg_cmd("sta_set_uapsd", req_intf, cmd_sta_set_uapsd); |
| 13660 | /* TODO: sta_set_ibss */ |
| 13661 | /* TODO: sta_set_mode */ |
| 13662 | sigma_dut_reg_cmd("sta_set_wmm", req_intf, cmd_sta_set_wmm); |
| 13663 | sigma_dut_reg_cmd("sta_associate", req_intf, cmd_sta_associate); |
| 13664 | /* TODO: sta_up_load */ |
| 13665 | sigma_dut_reg_cmd("sta_preset_testparameters", req_intf, |
| 13666 | cmd_sta_preset_testparameters); |
| 13667 | /* TODO: sta_set_system */ |
| 13668 | sigma_dut_reg_cmd("sta_set_11n", req_intf, cmd_sta_set_11n); |
| 13669 | /* TODO: sta_set_rifs_test */ |
| 13670 | sigma_dut_reg_cmd("sta_set_wireless", req_intf, cmd_sta_set_wireless); |
| 13671 | sigma_dut_reg_cmd("sta_send_addba", req_intf, cmd_sta_send_addba); |
| 13672 | /* TODO: sta_send_coexist_mgmt */ |
| 13673 | sigma_dut_reg_cmd("sta_disconnect", req_intf, cmd_sta_disconnect); |
| 13674 | sigma_dut_reg_cmd("sta_reassoc", req_intf, cmd_sta_reassoc); |
| 13675 | sigma_dut_reg_cmd("sta_reassociate", req_intf, cmd_sta_reassoc); |
| 13676 | sigma_dut_reg_cmd("sta_reset_default", req_intf, |
| 13677 | cmd_sta_reset_default); |
| 13678 | sigma_dut_reg_cmd("sta_send_frame", req_intf, cmd_sta_send_frame); |
| 13679 | sigma_dut_reg_cmd("sta_set_macaddr", req_intf, cmd_sta_set_macaddr); |
| 13680 | sigma_dut_reg_cmd("sta_set_rfeature", req_intf, cmd_sta_set_rfeature); |
| 13681 | sigma_dut_reg_cmd("sta_set_radio", req_intf, cmd_sta_set_radio); |
| 13682 | sigma_dut_reg_cmd("sta_set_pwrsave", req_intf, cmd_sta_set_pwrsave); |
Alexei Avshalom Lazar | e49e387 | 2018-12-23 17:26:57 +0200 | [diff] [blame] | 13683 | sigma_dut_reg_cmd("sta_set_power_save", req_intf, cmd_sta_set_pwrsave); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13684 | sigma_dut_reg_cmd("sta_bssid_pool", req_intf, cmd_sta_bssid_pool); |
| 13685 | sigma_dut_reg_cmd("sta_reset_parm", req_intf, cmd_sta_reset_parm); |
| 13686 | sigma_dut_reg_cmd("sta_get_key", req_intf, cmd_sta_get_key); |
| 13687 | sigma_dut_reg_cmd("sta_hs2_associate", req_intf, |
| 13688 | cmd_sta_hs2_associate); |
Jouni Malinen | b639f1c | 2018-09-13 02:39:46 +0300 | [diff] [blame] | 13689 | sigma_dut_reg_cmd("sta_hs2_venue_info", req_intf, |
| 13690 | cmd_sta_hs2_venue_info); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13691 | sigma_dut_reg_cmd("sta_add_credential", req_intf, |
| 13692 | cmd_sta_add_credential); |
| 13693 | sigma_dut_reg_cmd("sta_scan", req_intf, cmd_sta_scan); |
Jouni Malinen | 5e5d43d | 2018-01-10 17:29:33 +0200 | [diff] [blame] | 13694 | sigma_dut_reg_cmd("sta_scan_bss", req_intf, cmd_sta_scan_bss); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13695 | sigma_dut_reg_cmd("sta_set_systime", NULL, cmd_sta_set_systime); |
| 13696 | sigma_dut_reg_cmd("sta_osu", req_intf, cmd_sta_osu); |
| 13697 | sigma_dut_reg_cmd("sta_policy_update", req_intf, cmd_sta_policy_update); |
| 13698 | sigma_dut_reg_cmd("sta_er_config", NULL, cmd_sta_er_config); |
| 13699 | sigma_dut_reg_cmd("sta_wps_connect_pw_token", req_intf, |
| 13700 | cmd_sta_wps_connect_pw_token); |
Jouni Malinen | 8290520 | 2018-04-29 17:20:10 +0300 | [diff] [blame] | 13701 | sigma_dut_reg_cmd("sta_exec_action", NULL, cmd_sta_exec_action); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13702 | sigma_dut_reg_cmd("sta_get_events", req_intf, cmd_sta_get_events); |
| 13703 | sigma_dut_reg_cmd("sta_get_parameter", req_intf, cmd_sta_get_parameter); |
Alexei Avshalom Lazar | 35ab383 | 2018-12-23 16:49:49 +0200 | [diff] [blame] | 13704 | sigma_dut_reg_cmd("start_wps_registration", NULL, |
vamsi krishna | 9b14400 | 2017-09-20 13:28:13 +0530 | [diff] [blame] | 13705 | cmd_start_wps_registration); |
Jouni Malinen | cd4e3c3 | 2015-10-29 12:39:56 +0200 | [diff] [blame] | 13706 | } |