blob: b1c6c954ff8b216bec5e81f9aa2d305b20e7655d [file] [log] [blame]
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001/*
2 * Sigma Control API DUT (station/AP)
3 * Copyright (c) 2010-2011, Atheros Communications, Inc.
Jouni Malinen9d7e31d2017-12-22 18:55:04 +02004 * Copyright (c) 2011-2017, Qualcomm Atheros, Inc.
Jouni Malinenc12ea4a2018-01-05 21:07:10 +02005 * Copyright (c) 2018, The Linux Foundation
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006 * 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 Malinen82905202018-04-29 17:20:10 +030013#include <sys/wait.h>
Jouni Malinencd4e3c32015-10-29 12:39:56 +020014#ifdef __linux__
Lior Davidcc88b562017-01-03 18:52:09 +020015#include <regex.h>
16#include <dirent.h>
Jouni Malinencd4e3c32015-10-29 12:39:56 +020017#include <sys/time.h>
18#include <netpacket/packet.h>
19#include <linux/if_ether.h>
20#ifdef ANDROID
21#include <cutils/properties.h>
22#include <android/log.h>
23#include "keystore_get.h"
24#else /* ANDROID */
25#include <ifaddrs.h>
26#endif /* ANDROID */
27#include <netdb.h>
28#endif /* __linux__ */
29#ifdef __QNXNTO__
30#include <net/if_dl.h>
31#endif /* __QNXNTO__ */
32#include "wpa_ctrl.h"
33#include "wpa_helpers.h"
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -070034#include "miracast.h"
Jouni Malinencd4e3c32015-10-29 12:39:56 +020035
36/* Temporary files for sta_send_addba */
37#define VI_QOS_TMP_FILE "/tmp/vi-qos.tmp"
38#define VI_QOS_FILE "/tmp/vi-qos.txt"
39#define VI_QOS_REFFILE "/etc/vi-qos.txt"
40
41/*
42 * MTU for Ethernet need to take into account 8-byte SNAP header
43 * to be added when encapsulating Ethernet frame into 802.11
44 */
45#ifndef IEEE80211_MAX_DATA_LEN_DMG
46#define IEEE80211_MAX_DATA_LEN_DMG 7920
47#endif
48#ifndef IEEE80211_SNAP_LEN_DMG
49#define IEEE80211_SNAP_LEN_DMG 8
50#endif
51
Ashwini Patil00402582017-04-13 12:29:39 +053052#define NON_PREF_CH_LIST_SIZE 100
Ashwini Patil5acd7382017-04-13 15:55:04 +053053#define NEIGHBOR_REPORT_SIZE 1000
54#define DEFAULT_NEIGHBOR_BSSID_INFO "17"
55#define DEFAULT_NEIGHBOR_PHY_TYPE "1"
Ashwini Patil00402582017-04-13 12:29:39 +053056
Jouni Malinencd4e3c32015-10-29 12:39:56 +020057extern char *sigma_wpas_ctrl;
58extern char *sigma_cert_path;
59extern enum driver_type wifi_chip_type;
60extern char *sigma_radio_ifname[];
61
Lior David0fe101e2017-03-09 16:09:50 +020062#ifdef __linux__
63#define WIL_WMI_MAX_PAYLOAD 248
64#define WIL_WMI_BF_TRIG_CMDID 0x83a
65
66struct wil_wmi_header {
67 uint8_t mid;
68 uint8_t reserved;
69 uint16_t cmd;
70 uint32_t ts;
71} __attribute__((packed));
72
73enum wil_wmi_bf_trig_type {
74 WIL_WMI_SLS,
75 WIL_WMI_BRP_RX,
76 WIL_WMI_BRP_TX,
77};
78
79struct wil_wmi_bf_trig_cmd {
80 /* enum wil_wmi_bf_trig_type */
81 uint32_t bf_type;
82 /* cid when type == WMI_BRP_RX */
83 uint32_t sta_id;
84 uint32_t reserved;
85 /* mac address when type = WIL_WMI_SLS */
86 uint8_t dest_mac[6];
87} __attribute__((packed));
88#endif /* __linux__ */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020089
90#ifdef ANDROID
91
92static int add_ipv6_rule(struct sigma_dut *dut, const char *ifname);
93
94#define ANDROID_KEYSTORE_GET 'g'
95#define ANDROID_KEYSTORE_GET_PUBKEY 'b'
96
97static int android_keystore_get(char cmd, const char *key, unsigned char *val)
98{
Jouni Malinencd4e3c32015-10-29 12:39:56 +020099 /* Android 4.3 changed keystore design, so need to use keystore_get() */
100#ifndef KEYSTORE_MESSAGE_SIZE
101#define KEYSTORE_MESSAGE_SIZE 65535
102#endif /* KEYSTORE_MESSAGE_SIZE */
103
104 ssize_t len;
105 uint8_t *value = NULL;
106
107 __android_log_print(ANDROID_LOG_DEBUG, "sigma_dut",
108 "keystore command '%c' key '%s' --> keystore_get",
109 cmd, key);
110
111 len = keystore_get(key, strlen(key), &value);
112 if (len < 0) {
113 __android_log_print(ANDROID_LOG_DEBUG, "sigma_dut",
114 "keystore_get() failed");
115 return -1;
116 }
117
118 if (len > KEYSTORE_MESSAGE_SIZE)
119 len = KEYSTORE_MESSAGE_SIZE;
120 memcpy(val, value, len);
121 free(value);
122 return len;
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200123}
124#endif /* ANDROID */
125
126
127int set_ps(const char *intf, struct sigma_dut *dut, int enabled)
128{
129#ifdef __linux__
130 char buf[100];
131
132 if (wifi_chip_type == DRIVER_WCN) {
133 if (enabled) {
134 snprintf(buf, sizeof(buf), "iwpriv wlan0 dump 906");
Pradeep Reddy POTTETI625b3702016-09-20 17:09:58 +0530135 if (system(buf) != 0)
136 goto set_power_save;
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200137 } else {
138 snprintf(buf, sizeof(buf), "iwpriv wlan0 dump 905");
Pradeep Reddy POTTETI625b3702016-09-20 17:09:58 +0530139 if (system(buf) != 0)
140 goto set_power_save;
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200141 snprintf(buf, sizeof(buf), "iwpriv wlan0 dump 912");
Pradeep Reddy POTTETI625b3702016-09-20 17:09:58 +0530142 if (system(buf) != 0)
143 goto set_power_save;
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200144 }
145
146 return 0;
147 }
148
Pradeep Reddy POTTETI625b3702016-09-20 17:09:58 +0530149set_power_save:
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200150 snprintf(buf, sizeof(buf), "./iw dev %s set power_save %s",
151 intf, enabled ? "on" : "off");
152 if (system(buf) != 0) {
153 snprintf(buf, sizeof(buf), "iw dev %s set power_save %s",
154 intf, enabled ? "on" : "off");
Pradeep Reddy POTTETI625b3702016-09-20 17:09:58 +0530155 if (system(buf) != 0) {
156 sigma_dut_print(dut, DUT_MSG_ERROR,
157 "Failed to set power save %s",
158 enabled ? "on" : "off");
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200159 return -1;
Pradeep Reddy POTTETI625b3702016-09-20 17:09:58 +0530160 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200161 }
162
163 return 0;
164#else /* __linux__ */
165 return -1;
166#endif /* __linux__ */
167}
168
169
Lior Davidcc88b562017-01-03 18:52:09 +0200170#ifdef __linux__
Lior David0fe101e2017-03-09 16:09:50 +0200171
Lior Davidcc88b562017-01-03 18:52:09 +0200172static int wil6210_get_debugfs_dir(struct sigma_dut *dut, char *path,
173 size_t len)
174{
175 DIR *dir, *wil_dir;
176 struct dirent *entry;
177 int ret = -1;
178 const char *root_path = "/sys/kernel/debug/ieee80211";
179
180 dir = opendir(root_path);
181 if (!dir)
182 return -2;
183
184 while ((entry = readdir(dir))) {
185 if (strcmp(entry->d_name, ".") == 0 ||
186 strcmp(entry->d_name, "..") == 0)
187 continue;
188
189 if (snprintf(path, len, "%s/%s/wil6210",
190 root_path, entry->d_name) >= (int) len) {
191 ret = -3;
192 break;
193 }
194
195 wil_dir = opendir(path);
196 if (wil_dir) {
197 closedir(wil_dir);
198 ret = 0;
199 break;
200 }
201 }
202
203 closedir(dir);
204 return ret;
205}
Lior David0fe101e2017-03-09 16:09:50 +0200206
207
208static int wil6210_wmi_send(struct sigma_dut *dut, uint16_t command,
209 void *payload, uint16_t length)
210{
211 struct {
212 struct wil_wmi_header hdr;
213 char payload[WIL_WMI_MAX_PAYLOAD];
214 } __attribute__((packed)) cmd;
215 char buf[128], fname[128];
216 size_t towrite, written;
217 FILE *f;
218
219 if (length > WIL_WMI_MAX_PAYLOAD) {
220 sigma_dut_print(dut, DUT_MSG_ERROR,
221 "payload too large(%u, max %u)",
222 length, WIL_WMI_MAX_PAYLOAD);
223 return -1;
224 }
225
226 memset(&cmd.hdr, 0, sizeof(cmd.hdr));
227 cmd.hdr.cmd = command;
228 memcpy(cmd.payload, payload, length);
229
230 if (wil6210_get_debugfs_dir(dut, buf, sizeof(buf))) {
231 sigma_dut_print(dut, DUT_MSG_ERROR,
232 "failed to get wil6210 debugfs dir");
233 return -1;
234 }
235
236 snprintf(fname, sizeof(fname), "%s/wmi_send", buf);
237 f = fopen(fname, "wb");
238 if (!f) {
239 sigma_dut_print(dut, DUT_MSG_ERROR,
240 "failed to open: %s", fname);
241 return -1;
242 }
243
244 towrite = sizeof(cmd.hdr) + length;
245 written = fwrite(&cmd, 1, towrite, f);
246 fclose(f);
247 if (written != towrite) {
248 sigma_dut_print(dut, DUT_MSG_ERROR,
249 "failed to send wmi %u", command);
250 return -1;
251 }
252
253 return 0;
254}
255
256
257static int wil6210_get_sta_info_field(struct sigma_dut *dut, const char *bssid,
258 const char *pattern, unsigned int *field)
259{
260 char buf[128], fname[128];
261 FILE *f;
262 regex_t re;
263 regmatch_t m[2];
264 int rc, ret = -1;
265
266 if (wil6210_get_debugfs_dir(dut, buf, sizeof(buf))) {
267 sigma_dut_print(dut, DUT_MSG_ERROR,
268 "failed to get wil6210 debugfs dir");
269 return -1;
270 }
271
272 snprintf(fname, sizeof(fname), "%s/stations", buf);
273 f = fopen(fname, "r");
274 if (!f) {
275 sigma_dut_print(dut, DUT_MSG_ERROR,
276 "failed to open: %s", fname);
277 return -1;
278 }
279
280 if (regcomp(&re, pattern, REG_EXTENDED)) {
281 sigma_dut_print(dut, DUT_MSG_ERROR,
282 "regcomp failed: %s", pattern);
283 goto out;
284 }
285
286 /*
287 * find the entry for the mac address
288 * line is of the form: [n] 11:22:33:44:55:66 state AID aid
289 */
290 while (fgets(buf, sizeof(buf), f)) {
291 if (strcasestr(buf, bssid)) {
292 /* extract the field (CID/AID/state) */
293 rc = regexec(&re, buf, 2, m, 0);
294 if (!rc && (m[1].rm_so >= 0)) {
295 buf[m[1].rm_eo] = 0;
296 *field = atoi(&buf[m[1].rm_so]);
297 ret = 0;
298 break;
299 }
300 }
301 }
302
303 regfree(&re);
304 if (ret)
305 sigma_dut_print(dut, DUT_MSG_ERROR,
306 "could not extract field");
307
308out:
309 fclose(f);
310
311 return ret;
312}
313
314
315static int wil6210_get_cid(struct sigma_dut *dut, const char *bssid,
316 unsigned int *cid)
317{
318 const char *pattern = "\\[([0-9]+)\\]";
319
320 return wil6210_get_sta_info_field(dut, bssid, pattern, cid);
321}
322
323
324static int wil6210_send_brp_rx(struct sigma_dut *dut, const char *mac,
325 int l_rx)
326{
Rakesh Sunki556237d2017-03-30 14:49:31 -0700327 struct wil_wmi_bf_trig_cmd cmd;
Lior David0fe101e2017-03-09 16:09:50 +0200328 unsigned int cid;
329
Rakesh Sunki556237d2017-03-30 14:49:31 -0700330 memset(&cmd, 0, sizeof(cmd));
331
Lior David0fe101e2017-03-09 16:09:50 +0200332 if (wil6210_get_cid(dut, mac, &cid))
333 return -1;
334
335 cmd.bf_type = WIL_WMI_BRP_RX;
336 cmd.sta_id = cid;
337 /* training length (l_rx) is ignored, FW always uses length 16 */
338 return wil6210_wmi_send(dut, WIL_WMI_BF_TRIG_CMDID,
339 &cmd, sizeof(cmd));
340}
341
342
343static int wil6210_send_sls(struct sigma_dut *dut, const char *mac)
344{
Rakesh Sunki556237d2017-03-30 14:49:31 -0700345 struct wil_wmi_bf_trig_cmd cmd;
346
347 memset(&cmd, 0, sizeof(cmd));
Lior David0fe101e2017-03-09 16:09:50 +0200348
349 if (parse_mac_address(dut, mac, (unsigned char *)&cmd.dest_mac))
350 return -1;
351
352 cmd.bf_type = WIL_WMI_SLS;
353 return wil6210_wmi_send(dut, WIL_WMI_BF_TRIG_CMDID,
354 &cmd, sizeof(cmd));
355}
356
Lior Davidcc88b562017-01-03 18:52:09 +0200357#endif /* __linux__ */
358
359
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200360static void static_ip_file(int proto, const char *addr, const char *mask,
361 const char *gw)
362{
363 if (proto) {
364 FILE *f = fopen("static-ip", "w");
365 if (f) {
366 fprintf(f, "%d %s %s %s\n", proto, addr,
367 mask ? mask : "N/A",
368 gw ? gw : "N/A");
369 fclose(f);
370 }
371 } else {
372 unlink("static-ip");
373 }
374}
375
376
377static int send_neighbor_request(struct sigma_dut *dut, const char *intf,
378 const char *ssid)
379{
380#ifdef __linux__
381 char buf[100];
382
383 snprintf(buf, sizeof(buf), "iwpriv %s neighbor %s",
384 intf, ssid);
385 sigma_dut_print(dut, DUT_MSG_INFO, "Request: %s", buf);
386
387 if (system(buf) != 0) {
388 sigma_dut_print(dut, DUT_MSG_ERROR,
389 "iwpriv neighbor request failed");
390 return -1;
391 }
392
393 sigma_dut_print(dut, DUT_MSG_INFO, "iwpriv neighbor request send");
394
395 return 0;
396#else /* __linux__ */
397 return -1;
398#endif /* __linux__ */
399}
400
401
402static int send_trans_mgmt_query(struct sigma_dut *dut, const char *intf,
Ashwini Patil5acd7382017-04-13 15:55:04 +0530403 struct sigma_cmd *cmd)
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200404{
Ashwini Patil5acd7382017-04-13 15:55:04 +0530405 const char *val;
406 int reason_code = 0;
407 char buf[1024];
408
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200409 /*
410 * In the earlier builds we used WNM_QUERY and in later
411 * builds used WNM_BSS_QUERY.
412 */
413
Ashwini Patil5acd7382017-04-13 15:55:04 +0530414 val = get_param(cmd, "BTMQuery_Reason_Code");
415 if (val)
416 reason_code = atoi(val);
417
418 val = get_param(cmd, "Cand_List");
419 if (val && atoi(val) == 1 && dut->btm_query_cand_list) {
420 snprintf(buf, sizeof(buf), "WNM_BSS_QUERY %d%s", reason_code,
421 dut->btm_query_cand_list);
422 free(dut->btm_query_cand_list);
423 dut->btm_query_cand_list = NULL;
424 } else {
425 snprintf(buf, sizeof(buf), "WNM_BSS_QUERY %d", reason_code);
426 }
427
428 if (wpa_command(intf, buf) != 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200429 sigma_dut_print(dut, DUT_MSG_ERROR,
430 "transition management query failed");
431 return -1;
432 }
433
434 sigma_dut_print(dut, DUT_MSG_DEBUG,
435 "transition management query sent");
436
437 return 0;
438}
439
440
441int is_ip_addr(const char *str)
442{
443 const char *pos = str;
444 struct in_addr addr;
445
446 while (*pos) {
447 if (*pos != '.' && (*pos < '0' || *pos > '9'))
448 return 0;
449 pos++;
450 }
451
452 return inet_aton(str, &addr);
453}
454
455
456int is_ipv6_addr(const char *str)
457{
458 struct sockaddr_in6 addr;
459
460 return inet_pton(AF_INET6, str, &(addr.sin6_addr));
461}
462
463
464int get_ip_config(struct sigma_dut *dut, const char *ifname, char *buf,
465 size_t buf_len)
466{
vamsi krishnaa11d0732018-05-16 12:19:48 +0530467 char tmp[256];
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200468 char ip[16], mask[15], dns[16], sec_dns[16];
469 int is_dhcp = 0;
470 int s;
471#ifdef ANDROID
472 char prop[PROPERTY_VALUE_MAX];
vamsi krishnaa11d0732018-05-16 12:19:48 +0530473#else /* ANDROID */
474 FILE *f;
475#ifdef __linux__
476 const char *str_ps;
477#endif /* __linux__ */
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200478#endif /* ANDROID */
479
480 ip[0] = '\0';
481 mask[0] = '\0';
482 dns[0] = '\0';
483 sec_dns[0] = '\0';
484
485 s = socket(PF_INET, SOCK_DGRAM, 0);
486 if (s >= 0) {
487 struct ifreq ifr;
488 struct sockaddr_in saddr;
489
490 memset(&ifr, 0, sizeof(ifr));
Peng Xub8fc5cc2017-05-10 17:27:28 -0700491 strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200492 if (ioctl(s, SIOCGIFADDR, &ifr) < 0) {
493 sigma_dut_print(dut, DUT_MSG_INFO, "Failed to get "
494 "%s IP address: %s",
495 ifname, strerror(errno));
496 } else {
497 memcpy(&saddr, &ifr.ifr_addr,
498 sizeof(struct sockaddr_in));
Peng Xub8fc5cc2017-05-10 17:27:28 -0700499 strlcpy(ip, inet_ntoa(saddr.sin_addr), sizeof(ip));
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200500 }
501
502 if (ioctl(s, SIOCGIFNETMASK, &ifr) == 0) {
503 memcpy(&saddr, &ifr.ifr_addr,
504 sizeof(struct sockaddr_in));
Peng Xub8fc5cc2017-05-10 17:27:28 -0700505 strlcpy(mask, inet_ntoa(saddr.sin_addr), sizeof(mask));
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200506 }
507 close(s);
508 }
509
510#ifdef ANDROID
511 snprintf(tmp, sizeof(tmp), "dhcp.%s.pid", ifname);
512 if (property_get(tmp, prop, NULL) != 0 && atoi(prop) > 0) {
513 snprintf(tmp, sizeof(tmp), "dhcp.%s.result", ifname);
514 if (property_get(tmp, prop, NULL) != 0 &&
515 strcmp(prop, "ok") == 0) {
516 snprintf(tmp, sizeof(tmp), "dhcp.%s.ipaddress",
517 ifname);
518 if (property_get(tmp, prop, NULL) != 0 &&
519 strcmp(ip, prop) == 0)
520 is_dhcp = 1;
521 }
522 }
523
524 snprintf(tmp, sizeof(tmp), "dhcp.%s.dns1", ifname);
Peng Xub8fc5cc2017-05-10 17:27:28 -0700525 if (property_get(tmp, prop, NULL) != 0)
526 strlcpy(dns, prop, sizeof(dns));
527 else if (property_get("net.dns1", prop, NULL) != 0)
528 strlcpy(dns, prop, sizeof(dns));
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200529
530 snprintf(tmp, sizeof(tmp), "dhcp.%s.dns2", ifname);
Peng Xub8fc5cc2017-05-10 17:27:28 -0700531 if (property_get(tmp, prop, NULL) != 0)
532 strlcpy(sec_dns, prop, sizeof(sec_dns));
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200533#else /* ANDROID */
534#ifdef __linux__
Sarvepalli, Rajesh Babua76c6442016-03-18 20:34:26 +0530535 if (get_driver_type() == DRIVER_OPENWRT)
536 str_ps = "ps -w";
537 else
538 str_ps = "ps ax";
539 snprintf(tmp, sizeof(tmp),
540 "%s | grep dhclient | grep -v grep | grep -q %s",
541 str_ps, ifname);
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200542 if (system(tmp) == 0)
543 is_dhcp = 1;
544 else {
Sarvepalli, Rajesh Babua76c6442016-03-18 20:34:26 +0530545 snprintf(tmp, sizeof(tmp),
546 "%s | grep udhcpc | grep -v grep | grep -q %s",
547 str_ps, ifname);
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200548 if (system(tmp) == 0)
549 is_dhcp = 1;
550 else {
Sarvepalli, Rajesh Babua76c6442016-03-18 20:34:26 +0530551 snprintf(tmp, sizeof(tmp),
552 "%s | grep dhcpcd | grep -v grep | grep -q %s",
553 str_ps, ifname);
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200554 if (system(tmp) == 0)
555 is_dhcp = 1;
556 }
557 }
558#endif /* __linux__ */
559
560 f = fopen("/etc/resolv.conf", "r");
561 if (f) {
vamsi krishnaa11d0732018-05-16 12:19:48 +0530562 char *pos, *pos2;
563
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200564 while (fgets(tmp, sizeof(tmp), f)) {
565 if (strncmp(tmp, "nameserver", 10) != 0)
566 continue;
567 pos = tmp + 10;
568 while (*pos == ' ' || *pos == '\t')
569 pos++;
570 pos2 = pos;
571 while (*pos2) {
572 if (*pos2 == '\n' || *pos2 == '\r') {
573 *pos2 = '\0';
574 break;
575 }
576 pos2++;
577 }
Peng Xub8fc5cc2017-05-10 17:27:28 -0700578 if (!dns[0])
579 strlcpy(dns, pos, sizeof(dns));
580 else if (!sec_dns[0])
581 strlcpy(sec_dns, pos, sizeof(sec_dns));
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200582 }
583 fclose(f);
584 }
585#endif /* ANDROID */
586
587 snprintf(buf, buf_len, "dhcp,%d,ip,%s,mask,%s,primary-dns,%s",
588 is_dhcp, ip, mask, dns);
589 buf[buf_len - 1] = '\0';
590
591 return 0;
592}
593
594
595
596
597int get_ipv6_config(struct sigma_dut *dut, const char *ifname, char *buf,
598 size_t buf_len)
599{
600#ifdef __linux__
601#ifdef ANDROID
602 char cmd[200], result[1000], *pos, *end;
603 FILE *f;
604 size_t len;
605
606 snprintf(cmd, sizeof(cmd), "ip addr show dev %s scope global", ifname);
607 f = popen(cmd, "r");
608 if (f == NULL)
609 return -1;
610 len = fread(result, 1, sizeof(result) - 1, f);
611 pclose(f);
612 if (len == 0)
613 return -1;
614 result[len] = '\0';
615 sigma_dut_print(dut, DUT_MSG_DEBUG, "%s result: %s\n", cmd, result);
616
617 pos = strstr(result, "inet6 ");
618 if (pos == NULL)
619 return -1;
620 pos += 6;
621 end = strchr(pos, ' ');
622 if (end)
623 *end = '\0';
624 end = strchr(pos, '/');
625 if (end)
626 *end = '\0';
627 snprintf(buf, buf_len, "ip,%s", pos);
628 buf[buf_len - 1] = '\0';
629 return 0;
630#else /* ANDROID */
631 struct ifaddrs *ifaddr, *ifa;
632 int res, found = 0;
633 char host[NI_MAXHOST];
634
635 if (getifaddrs(&ifaddr) < 0) {
636 perror("getifaddrs");
637 return -1;
638 }
639
640 for (ifa = ifaddr; ifa; ifa = ifa->ifa_next) {
641 if (strcasecmp(ifname, ifa->ifa_name) != 0)
642 continue;
643 if (ifa->ifa_addr == NULL ||
644 ifa->ifa_addr->sa_family != AF_INET6)
645 continue;
646
647 res = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in6),
648 host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
649 if (res != 0) {
650 sigma_dut_print(dut, DUT_MSG_DEBUG, "getnameinfo: %s",
651 gai_strerror(res));
652 continue;
653 }
654 if (strncmp(host, "fe80::", 6) == 0)
655 continue; /* skip link-local */
656
657 sigma_dut_print(dut, DUT_MSG_DEBUG, "ifaddr: %s", host);
658 found = 1;
659 break;
660 }
661
662 freeifaddrs(ifaddr);
663
664 if (found) {
665 char *pos;
666 pos = strchr(host, '%');
667 if (pos)
668 *pos = '\0';
669 snprintf(buf, buf_len, "ip,%s", host);
670 buf[buf_len - 1] = '\0';
671 return 0;
672 }
673
674#endif /* ANDROID */
675#endif /* __linux__ */
676 return -1;
677}
678
679
680static int cmd_sta_get_ip_config(struct sigma_dut *dut,
681 struct sigma_conn *conn,
682 struct sigma_cmd *cmd)
683{
684 const char *intf = get_param(cmd, "Interface");
685 const char *ifname;
686 char buf[200];
687 const char *val;
688 int type = 1;
689
690 if (intf == NULL)
691 return -1;
692
693 if (strcmp(intf, get_main_ifname()) == 0)
694 ifname = get_station_ifname();
695 else
696 ifname = intf;
697
698 /*
699 * UCC may assume the IP address to be available immediately after
700 * association without trying to run sta_get_ip_config multiple times.
701 * Sigma CAPI does not specify this command as a block command that
702 * would wait for the address to become available, but to pass tests
703 * more reliably, it looks like such a wait may be needed here.
704 */
705 if (wait_ip_addr(dut, ifname, 15) < 0) {
706 sigma_dut_print(dut, DUT_MSG_INFO, "Could not get IP address "
707 "for sta_get_ip_config");
708 /*
709 * Try to continue anyway since many UCC tests do not really
710 * care about the return value from here..
711 */
712 }
713
714 val = get_param(cmd, "Type");
715 if (val)
716 type = atoi(val);
717 if (type == 2 || dut->last_set_ip_config_ipv6) {
718 int i;
719
720 /*
721 * Since we do not have proper wait for IPv6 addresses, use a
722 * fixed two second delay here as a workaround for UCC script
723 * assuming IPv6 address is available when this command returns.
724 * Some scripts did not use Type,2 properly for IPv6, so include
725 * also the cases where the previous sta_set_ip_config indicated
726 * use of IPv6.
727 */
728 sigma_dut_print(dut, DUT_MSG_INFO, "Wait up to extra ten seconds in sta_get_ip_config for IPv6 address");
729 for (i = 0; i < 10; i++) {
730 sleep(1);
731 if (get_ipv6_config(dut, ifname, buf, sizeof(buf)) == 0)
732 {
733 sigma_dut_print(dut, DUT_MSG_INFO, "Found IPv6 address");
734 send_resp(dut, conn, SIGMA_COMPLETE, buf);
735#ifdef ANDROID
736 sigma_dut_print(dut, DUT_MSG_INFO,
737 "Adding IPv6 rule on Android");
738 add_ipv6_rule(dut, intf);
739#endif /* ANDROID */
740
741 return 0;
742 }
743 }
744 }
745 if (type == 1) {
746 if (get_ip_config(dut, ifname, buf, sizeof(buf)) < 0)
747 return -2;
748 } else if (type == 2) {
749 if (get_ipv6_config(dut, ifname, buf, sizeof(buf)) < 0)
750 return -2;
751 } else {
752 send_resp(dut, conn, SIGMA_ERROR,
753 "errorCode,Unsupported address type");
754 return 0;
755 }
756
757 send_resp(dut, conn, SIGMA_COMPLETE, buf);
758 return 0;
759}
760
761
762static void kill_dhcp_client(struct sigma_dut *dut, const char *ifname)
763{
764#ifdef __linux__
765 char buf[200];
766 char path[128];
767 struct stat s;
768
769#ifdef ANDROID
770 snprintf(path, sizeof(path), "/data/misc/dhcp/dhcpcd-%s.pid", ifname);
771#else /* ANDROID */
772 snprintf(path, sizeof(path), "/var/run/dhclient-%s.pid", ifname);
773#endif /* ANDROID */
774 if (stat(path, &s) == 0) {
775 snprintf(buf, sizeof(buf), "kill `cat %s`", path);
776 sigma_dut_print(dut, DUT_MSG_INFO,
777 "Kill previous DHCP client: %s", buf);
778 if (system(buf) != 0)
779 sigma_dut_print(dut, DUT_MSG_INFO,
780 "Failed to kill DHCP client");
781 unlink(path);
782 sleep(1);
783 } else {
784 snprintf(path, sizeof(path), "/var/run/dhcpcd-%s.pid", ifname);
785
786 if (stat(path, &s) == 0) {
787 snprintf(buf, sizeof(buf), "kill `cat %s`", path);
788 sigma_dut_print(dut, DUT_MSG_INFO,
789 "Kill previous DHCP client: %s", buf);
790 if (system(buf) != 0)
791 sigma_dut_print(dut, DUT_MSG_INFO,
792 "Failed to kill DHCP client");
793 unlink(path);
794 sleep(1);
795 }
796 }
797#endif /* __linux__ */
798}
799
800
801static int start_dhcp_client(struct sigma_dut *dut, const char *ifname)
802{
803#ifdef __linux__
804 char buf[200];
805
806#ifdef ANDROID
Purushottam Kushwaha46d64262016-08-23 17:57:53 +0530807 if (access("/system/bin/dhcpcd", F_OK) != -1) {
808 snprintf(buf, sizeof(buf),
809 "/system/bin/dhcpcd -b %s", ifname);
810 } else if (access("/system/bin/dhcptool", F_OK) != -1) {
811 snprintf(buf, sizeof(buf), "/system/bin/dhcptool %s &", ifname);
812 } else {
813 sigma_dut_print(dut, DUT_MSG_ERROR,
814 "DHCP client program missing");
815 return 0;
816 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200817#else /* ANDROID */
818 snprintf(buf, sizeof(buf),
819 "dhclient -nw -pf /var/run/dhclient-%s.pid %s",
820 ifname, ifname);
821#endif /* ANDROID */
822 sigma_dut_print(dut, DUT_MSG_INFO, "Start DHCP client: %s", buf);
823 if (system(buf) != 0) {
824 snprintf(buf, sizeof(buf), "dhcpcd -t 0 %s &", ifname);
825 if (system(buf) != 0) {
826 sigma_dut_print(dut, DUT_MSG_INFO,
827 "Failed to start DHCP client");
828#ifndef ANDROID
829 return -1;
830#endif /* ANDROID */
831 }
832 }
833#endif /* __linux__ */
834
835 return 0;
836}
837
838
839static int clear_ip_addr(struct sigma_dut *dut, const char *ifname)
840{
841#ifdef __linux__
842 char buf[200];
843
844 snprintf(buf, sizeof(buf), "ip addr flush dev %s", ifname);
845 if (system(buf) != 0) {
846 sigma_dut_print(dut, DUT_MSG_INFO,
847 "Failed to clear IP addresses");
848 return -1;
849 }
850#endif /* __linux__ */
851
852 return 0;
853}
854
855
856#ifdef ANDROID
857static int add_ipv6_rule(struct sigma_dut *dut, const char *ifname)
858{
859 char cmd[200], *result, *pos;
860 FILE *fp;
Pradeep Reddy POTTETIf58a1fe2016-10-13 17:22:03 +0530861 int tableid;
862 size_t len, result_len = 1000;
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200863
864 snprintf(cmd, sizeof(cmd), "ip -6 route list table all | grep %s",
865 ifname);
866 fp = popen(cmd, "r");
867 if (fp == NULL)
868 return -1;
869
870 result = malloc(result_len);
Pradeep Reddy POTTETI673d85c2016-07-26 19:08:07 +0530871 if (result == NULL) {
872 fclose(fp);
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200873 return -1;
Pradeep Reddy POTTETI673d85c2016-07-26 19:08:07 +0530874 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200875
Pradeep Reddy POTTETIf58a1fe2016-10-13 17:22:03 +0530876 len = fread(result, 1, result_len - 1, fp);
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200877 fclose(fp);
878
879 if (len == 0) {
880 free(result);
881 return -1;
882 }
Pradeep Reddy POTTETIf58a1fe2016-10-13 17:22:03 +0530883 result[len] = '\0';
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200884
885 pos = strstr(result, "table ");
886 if (pos == NULL) {
887 free(result);
888 return -1;
889 }
890
891 pos += strlen("table ");
892 tableid = atoi(pos);
893 if (tableid != 0) {
894 if (system("ip -6 rule del prio 22000") != 0) {
895 /* ignore any error */
896 }
897 snprintf(cmd, sizeof(cmd),
898 "ip -6 rule add from all lookup %d prio 22000",
899 tableid);
900 if (system(cmd) != 0) {
901 sigma_dut_print(dut, DUT_MSG_INFO,
902 "Failed to run %s", cmd);
903 free(result);
904 return -1;
905 }
906 } else {
907 sigma_dut_print(dut, DUT_MSG_INFO,
908 "No Valid Table Id found %s", pos);
909 free(result);
910 return -1;
911 }
912 free(result);
913
914 return 0;
915}
916#endif /* ANDROID */
917
918
Ankita Bajaj1bde7942018-01-09 19:15:01 +0530919int set_ipv4_addr(struct sigma_dut *dut, const char *ifname,
920 const char *ip, const char *mask)
921{
922 char buf[200];
923
924 snprintf(buf, sizeof(buf), "ifconfig %s %s netmask %s",
925 ifname, ip, mask);
926 return system(buf) == 0;
927}
928
929
930int set_ipv4_gw(struct sigma_dut *dut, const char *gw)
931{
932 char buf[200];
933
934 if (!is_ip_addr(gw)) {
935 sigma_dut_print(dut, DUT_MSG_DEBUG, "Invalid gw addr - %s", gw);
936 return -1;
937 }
938
939 snprintf(buf, sizeof(buf), "route add default gw %s", gw);
940 if (!dut->no_ip_addr_set && system(buf) != 0) {
941 snprintf(buf, sizeof(buf), "ip ro re default via %s",
942 gw);
943 if (system(buf) != 0)
944 return 0;
945 }
946
947 return 1;
948}
949
950
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200951static int cmd_sta_set_ip_config(struct sigma_dut *dut,
952 struct sigma_conn *conn,
953 struct sigma_cmd *cmd)
954{
955 const char *intf = get_param(cmd, "Interface");
956 const char *ifname;
957 char buf[200];
958 const char *val, *ip, *mask, *gw;
959 int type = 1;
960
961 if (intf == NULL)
962 return -1;
963
964 if (strcmp(intf, get_main_ifname()) == 0)
965 ifname = get_station_ifname();
966 else
967 ifname = intf;
968
969 if (if_nametoindex(ifname) == 0) {
970 send_resp(dut, conn, SIGMA_ERROR,
971 "ErrorCode,Unknown interface");
972 return 0;
973 }
974
975 val = get_param(cmd, "Type");
976 if (val) {
977 type = atoi(val);
Ankita Bajaj1bde7942018-01-09 19:15:01 +0530978 if (type < 1 || type > 3) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +0200979 send_resp(dut, conn, SIGMA_ERROR,
980 "ErrorCode,Unsupported address type");
981 return 0;
982 }
983 }
984
985 dut->last_set_ip_config_ipv6 = 0;
986
987 val = get_param(cmd, "dhcp");
988 if (val && (strcmp(val, "1") == 0 || strcasecmp(val, "true") == 0)) {
989 static_ip_file(0, NULL, NULL, NULL);
990#ifdef __linux__
991 if (type == 2) {
992 dut->last_set_ip_config_ipv6 = 1;
993 sigma_dut_print(dut, DUT_MSG_INFO, "Using IPv6 "
994 "stateless address autoconfiguration");
995#ifdef ANDROID
996 /*
997 * This sleep is required as the assignment in case of
998 * Android is taking time and is done by the kernel.
999 * The subsequent ping for IPv6 is impacting HS20 test
1000 * case.
1001 */
1002 sleep(2);
1003 add_ipv6_rule(dut, intf);
1004#endif /* ANDROID */
1005 /* Assume this happens by default */
1006 return 1;
1007 }
Ankita Bajaj1bde7942018-01-09 19:15:01 +05301008 if (type != 3) {
1009 kill_dhcp_client(dut, ifname);
1010 if (start_dhcp_client(dut, ifname) < 0)
1011 return -2;
1012 } else {
1013 sigma_dut_print(dut, DUT_MSG_DEBUG,
1014 "Using FILS HLP DHCPv4 Rapid Commit");
1015 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001016
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001017 return 1;
1018#endif /* __linux__ */
1019 return -2;
1020 }
1021
1022 ip = get_param(cmd, "ip");
Pradeep Reddy POTTETIb18c5652016-01-18 12:45:37 +05301023 if (!ip) {
1024 send_resp(dut, conn, SIGMA_INVALID,
1025 "ErrorCode,Missing IP address");
1026 return 0;
1027 }
1028
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001029 mask = get_param(cmd, "mask");
Pradeep Reddy POTTETIb18c5652016-01-18 12:45:37 +05301030 if (!mask) {
1031 send_resp(dut, conn, SIGMA_INVALID,
1032 "ErrorCode,Missing subnet mask");
1033 return 0;
1034 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001035
1036 if (type == 2) {
1037 int net = atoi(mask);
1038
1039 if ((net < 0 && net > 64) || !is_ipv6_addr(ip))
1040 return -1;
1041
1042 if (dut->no_ip_addr_set) {
1043 snprintf(buf, sizeof(buf),
1044 "sysctl net.ipv6.conf.%s.disable_ipv6=1",
1045 ifname);
1046 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
1047 if (system(buf) != 0) {
1048 sigma_dut_print(dut, DUT_MSG_DEBUG,
1049 "Failed to disable IPv6 address before association");
1050 }
1051 } else {
1052 snprintf(buf, sizeof(buf),
1053 "ip -6 addr del %s/%s dev %s",
1054 ip, mask, ifname);
1055 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
1056 if (system(buf) != 0) {
1057 /*
1058 * This command may fail if the address being
1059 * deleted does not exist. Inaction here is
1060 * intentional.
1061 */
1062 }
1063
1064 snprintf(buf, sizeof(buf),
1065 "ip -6 addr add %s/%s dev %s",
1066 ip, mask, ifname);
1067 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
1068 if (system(buf) != 0) {
1069 send_resp(dut, conn, SIGMA_ERROR,
1070 "ErrorCode,Failed to set IPv6 address");
1071 return 0;
1072 }
1073 }
1074
1075 dut->last_set_ip_config_ipv6 = 1;
1076 static_ip_file(6, ip, mask, NULL);
1077 return 1;
1078 } else if (type == 1) {
Pradeep Reddy POTTETIb18c5652016-01-18 12:45:37 +05301079 if (!is_ip_addr(ip) || !is_ip_addr(mask))
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001080 return -1;
1081 }
1082
1083 kill_dhcp_client(dut, ifname);
1084
1085 if (!dut->no_ip_addr_set) {
Ankita Bajaj1bde7942018-01-09 19:15:01 +05301086 if (!set_ipv4_addr(dut, ifname, ip, mask)) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001087 send_resp(dut, conn, SIGMA_ERROR,
1088 "ErrorCode,Failed to set IP address");
1089 return 0;
1090 }
1091 }
1092
1093 gw = get_param(cmd, "defaultGateway");
1094 if (gw) {
Ankita Bajaj1bde7942018-01-09 19:15:01 +05301095 if (set_ipv4_gw(dut, gw) < 1) {
1096 send_resp(dut, conn, SIGMA_ERROR,
1097 "ErrorCode,Failed to set default gateway");
1098 return 0;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001099 }
1100 }
1101
1102 val = get_param(cmd, "primary-dns");
1103 if (val) {
1104 /* TODO */
1105 sigma_dut_print(dut, DUT_MSG_INFO, "Ignored primary-dns %s "
1106 "setting", val);
1107 }
1108
1109 val = get_param(cmd, "secondary-dns");
1110 if (val) {
1111 /* TODO */
1112 sigma_dut_print(dut, DUT_MSG_INFO, "Ignored secondary-dns %s "
1113 "setting", val);
1114 }
1115
1116 static_ip_file(4, ip, mask, gw);
1117
1118 return 1;
1119}
1120
1121
1122static int cmd_sta_get_info(struct sigma_dut *dut, struct sigma_conn *conn,
1123 struct sigma_cmd *cmd)
1124{
1125 /* const char *intf = get_param(cmd, "Interface"); */
1126 /* TODO: could report more details here */
1127 send_resp(dut, conn, SIGMA_COMPLETE, "vendor,Atheros");
1128 return 0;
1129}
1130
1131
1132static int cmd_sta_get_mac_address(struct sigma_dut *dut,
1133 struct sigma_conn *conn,
1134 struct sigma_cmd *cmd)
1135{
1136 /* const char *intf = get_param(cmd, "Interface"); */
1137 char addr[20], resp[50];
1138
Ankita Bajaj0d5825b2017-10-25 16:20:17 +05301139 if (dut->dev_role == DEVROLE_STA_CFON)
1140 return sta_cfon_get_mac_address(dut, conn, cmd);
1141
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001142 if (get_wpa_status(get_station_ifname(), "address", addr, sizeof(addr))
1143 < 0)
1144 return -2;
1145
1146 snprintf(resp, sizeof(resp), "mac,%s", addr);
1147 send_resp(dut, conn, SIGMA_COMPLETE, resp);
1148 return 0;
1149}
1150
1151
1152static int cmd_sta_is_connected(struct sigma_dut *dut, struct sigma_conn *conn,
1153 struct sigma_cmd *cmd)
1154{
1155 /* const char *intf = get_param(cmd, "Interface"); */
1156 int connected = 0;
1157 char result[32];
1158 if (get_wpa_status(get_station_ifname(), "wpa_state", result,
1159 sizeof(result)) < 0) {
1160 sigma_dut_print(dut, DUT_MSG_INFO, "Could not get interface "
1161 "%s status", get_station_ifname());
1162 return -2;
1163 }
1164
1165 sigma_dut_print(dut, DUT_MSG_DEBUG, "wpa_state=%s", result);
1166 if (strncmp(result, "COMPLETED", 9) == 0)
1167 connected = 1;
1168
1169 if (connected)
1170 send_resp(dut, conn, SIGMA_COMPLETE, "connected,1");
1171 else
1172 send_resp(dut, conn, SIGMA_COMPLETE, "connected,0");
1173
1174 return 0;
1175}
1176
1177
1178static int cmd_sta_verify_ip_connection(struct sigma_dut *dut,
1179 struct sigma_conn *conn,
1180 struct sigma_cmd *cmd)
1181{
1182 /* const char *intf = get_param(cmd, "Interface"); */
1183 const char *dst, *timeout;
1184 int wait_time = 90;
1185 char buf[100];
1186 int res;
1187
1188 dst = get_param(cmd, "destination");
1189 if (dst == NULL || !is_ip_addr(dst))
1190 return -1;
1191
1192 timeout = get_param(cmd, "timeout");
1193 if (timeout) {
1194 wait_time = atoi(timeout);
1195 if (wait_time < 1)
1196 wait_time = 1;
1197 }
1198
1199 /* TODO: force renewal of IP lease if DHCP is enabled */
1200
1201 snprintf(buf, sizeof(buf), "ping %s -c 3 -W %d", dst, wait_time);
1202 res = system(buf);
1203 sigma_dut_print(dut, DUT_MSG_DEBUG, "ping returned: %d", res);
1204 if (res == 0)
1205 send_resp(dut, conn, SIGMA_COMPLETE, "connected,1");
1206 else if (res == 256)
1207 send_resp(dut, conn, SIGMA_COMPLETE, "connected,0");
1208 else
1209 return -2;
1210
1211 return 0;
1212}
1213
1214
1215static int cmd_sta_get_bssid(struct sigma_dut *dut, struct sigma_conn *conn,
1216 struct sigma_cmd *cmd)
1217{
1218 /* const char *intf = get_param(cmd, "Interface"); */
1219 char bssid[20], resp[50];
1220
1221 if (get_wpa_status(get_station_ifname(), "bssid", bssid, sizeof(bssid))
1222 < 0)
Peng Xub8fc5cc2017-05-10 17:27:28 -07001223 strlcpy(bssid, "00:00:00:00:00:00", sizeof(bssid));
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001224
1225 snprintf(resp, sizeof(resp), "bssid,%s", bssid);
1226 send_resp(dut, conn, SIGMA_COMPLETE, resp);
1227 return 0;
1228}
1229
1230
1231#ifdef __SAMSUNG__
1232static int add_use_network(const char *ifname)
1233{
1234 char buf[100];
1235
1236 snprintf(buf, sizeof(buf), "USE_NETWORK ON");
1237 wpa_command(ifname, buf);
1238 return 0;
1239}
1240#endif /* __SAMSUNG__ */
1241
1242
1243static int add_network_common(struct sigma_dut *dut, struct sigma_conn *conn,
1244 const char *ifname, struct sigma_cmd *cmd)
1245{
1246 const char *ssid = get_param(cmd, "ssid");
1247 int id;
1248 const char *val;
1249
1250 if (ssid == NULL)
1251 return -1;
1252
1253 start_sta_mode(dut);
1254
1255#ifdef __SAMSUNG__
1256 add_use_network(ifname);
1257#endif /* __SAMSUNG__ */
1258
1259 id = add_network(ifname);
1260 if (id < 0)
1261 return -2;
1262 sigma_dut_print(dut, DUT_MSG_DEBUG, "Adding network %d", id);
1263
1264 if (set_network_quoted(ifname, id, "ssid", ssid) < 0)
1265 return -2;
1266
1267 dut->infra_network_id = id;
1268 snprintf(dut->infra_ssid, sizeof(dut->infra_ssid), "%s", ssid);
1269
1270 val = get_param(cmd, "program");
1271 if (!val)
1272 val = get_param(cmd, "prog");
1273 if (val && strcasecmp(val, "hs2") == 0) {
1274 char buf[100];
1275 snprintf(buf, sizeof(buf), "ENABLE_NETWORK %d no-connect", id);
1276 wpa_command(ifname, buf);
1277
1278 val = get_param(cmd, "prefer");
1279 if (val && atoi(val) > 0)
1280 set_network(ifname, id, "priority", "1");
1281 }
1282
1283 return id;
1284}
1285
1286
1287static int cmd_sta_set_encryption(struct sigma_dut *dut,
1288 struct sigma_conn *conn,
1289 struct sigma_cmd *cmd)
1290{
1291 const char *intf = get_param(cmd, "Interface");
1292 const char *ssid = get_param(cmd, "ssid");
1293 const char *type = get_param(cmd, "encpType");
1294 const char *ifname;
1295 char buf[200];
1296 int id;
1297
1298 if (intf == NULL || ssid == NULL)
1299 return -1;
1300
1301 if (strcmp(intf, get_main_ifname()) == 0)
1302 ifname = get_station_ifname();
1303 else
1304 ifname = intf;
1305
1306 id = add_network_common(dut, conn, ifname, cmd);
1307 if (id < 0)
1308 return id;
1309
1310 if (set_network(ifname, id, "key_mgmt", "NONE") < 0)
1311 return -2;
1312
1313 if (type && strcasecmp(type, "wep") == 0) {
1314 const char *val;
1315 int i;
1316
1317 val = get_param(cmd, "activeKey");
1318 if (val) {
1319 int keyid;
1320 keyid = atoi(val);
1321 if (keyid < 1 || keyid > 4)
1322 return -1;
1323 snprintf(buf, sizeof(buf), "%d", keyid - 1);
1324 if (set_network(ifname, id, "wep_tx_keyidx", buf) < 0)
1325 return -2;
1326 }
1327
1328 for (i = 0; i < 4; i++) {
1329 snprintf(buf, sizeof(buf), "key%d", i + 1);
1330 val = get_param(cmd, buf);
1331 if (val == NULL)
1332 continue;
1333 snprintf(buf, sizeof(buf), "wep_key%d", i);
1334 if (set_network(ifname, id, buf, val) < 0)
1335 return -2;
1336 }
1337 }
1338
1339 return 1;
1340}
1341
1342
1343static int set_wpa_common(struct sigma_dut *dut, struct sigma_conn *conn,
1344 const char *ifname, struct sigma_cmd *cmd)
1345{
1346 const char *val;
1347 int id;
Jouni Malinenad395a22017-09-01 21:13:46 +03001348 int cipher_set = 0;
Jouni Malinen47dcc952017-10-09 16:43:24 +03001349 int owe;
Sunil Duttc75a1e62018-01-11 20:47:50 +05301350 int suite_b = 0;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001351
1352 id = add_network_common(dut, conn, ifname, cmd);
1353 if (id < 0)
1354 return id;
1355
Jouni Malinen47dcc952017-10-09 16:43:24 +03001356 val = get_param(cmd, "Type");
1357 owe = val && strcasecmp(val, "OWE") == 0;
1358
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001359 val = get_param(cmd, "keyMgmtType");
Jouni Malinen47dcc952017-10-09 16:43:24 +03001360 if (!val && owe)
1361 val = "OWE";
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001362 if (val == NULL) {
1363 send_resp(dut, conn, SIGMA_INVALID, "errorCode,Missing keyMgmtType");
1364 return 0;
1365 }
1366 if (strcasecmp(val, "wpa") == 0 ||
1367 strcasecmp(val, "wpa-psk") == 0) {
1368 if (set_network(ifname, id, "proto", "WPA") < 0)
1369 return -2;
1370 } else if (strcasecmp(val, "wpa2") == 0 ||
1371 strcasecmp(val, "wpa2-psk") == 0 ||
1372 strcasecmp(val, "wpa2-ft") == 0 ||
1373 strcasecmp(val, "wpa2-sha256") == 0) {
1374 if (set_network(ifname, id, "proto", "WPA2") < 0)
1375 return -2;
Pradeep Reddy POTTETI6d04b3b2016-11-15 14:51:26 +05301376 } else if (strcasecmp(val, "wpa2-wpa-psk") == 0 ||
1377 strcasecmp(val, "wpa2-wpa-ent") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001378 if (set_network(ifname, id, "proto", "WPA WPA2") < 0)
1379 return -2;
Jouni Malinenad395a22017-09-01 21:13:46 +03001380 } else if (strcasecmp(val, "SuiteB") == 0) {
Sunil Duttc75a1e62018-01-11 20:47:50 +05301381 suite_b = 1;
Jouni Malinenad395a22017-09-01 21:13:46 +03001382 if (set_network(ifname, id, "proto", "WPA2") < 0)
1383 return -2;
Jouni Malinen47dcc952017-10-09 16:43:24 +03001384 } else if (strcasecmp(val, "OWE") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001385 } else {
1386 send_resp(dut, conn, SIGMA_INVALID, "errorCode,Unrecognized keyMgmtType value");
1387 return 0;
1388 }
1389
1390 val = get_param(cmd, "encpType");
Jouni Malinenad395a22017-09-01 21:13:46 +03001391 if (val) {
1392 cipher_set = 1;
1393 if (strcasecmp(val, "tkip") == 0) {
1394 if (set_network(ifname, id, "pairwise", "TKIP") < 0)
1395 return -2;
1396 } else if (strcasecmp(val, "aes-ccmp") == 0) {
1397 if (set_network(ifname, id, "pairwise", "CCMP") < 0)
1398 return -2;
1399 } else if (strcasecmp(val, "aes-ccmp-tkip") == 0) {
1400 if (set_network(ifname, id, "pairwise",
1401 "CCMP TKIP") < 0)
1402 return -2;
1403 } else if (strcasecmp(val, "aes-gcmp") == 0) {
1404 if (set_network(ifname, id, "pairwise", "GCMP") < 0)
1405 return -2;
1406 if (set_network(ifname, id, "group", "GCMP") < 0)
1407 return -2;
1408 } else {
1409 send_resp(dut, conn, SIGMA_ERROR,
1410 "errorCode,Unrecognized encpType value");
1411 return 0;
1412 }
1413 }
1414
1415 val = get_param(cmd, "PairwiseCipher");
1416 if (val) {
1417 cipher_set = 1;
1418 /* TODO: Support space separated list */
1419 if (strcasecmp(val, "AES-GCMP-256") == 0) {
1420 if (set_network(ifname, id, "pairwise", "GCMP-256") < 0)
1421 return -2;
1422 } else if (strcasecmp(val, "AES-CCMP-256") == 0) {
1423 if (set_network(ifname, id, "pairwise",
1424 "CCMP-256") < 0)
1425 return -2;
1426 } else if (strcasecmp(val, "AES-GCMP-128") == 0) {
1427 if (set_network(ifname, id, "pairwise", "GCMP") < 0)
1428 return -2;
1429 } else if (strcasecmp(val, "AES-CCMP-128") == 0) {
1430 if (set_network(ifname, id, "pairwise", "CCMP") < 0)
1431 return -2;
1432 } else {
1433 send_resp(dut, conn, SIGMA_ERROR,
1434 "errorCode,Unrecognized PairwiseCipher value");
1435 return 0;
1436 }
1437 }
1438
Jouni Malinen47dcc952017-10-09 16:43:24 +03001439 if (!cipher_set && !owe) {
Jouni Malinenad395a22017-09-01 21:13:46 +03001440 send_resp(dut, conn, SIGMA_ERROR,
1441 "errorCode,Missing encpType and PairwiseCipher");
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001442 return 0;
1443 }
Jouni Malinenad395a22017-09-01 21:13:46 +03001444
1445 val = get_param(cmd, "GroupCipher");
1446 if (val) {
1447 if (strcasecmp(val, "AES-GCMP-256") == 0) {
1448 if (set_network(ifname, id, "group", "GCMP-256") < 0)
1449 return -2;
1450 } else if (strcasecmp(val, "AES-CCMP-256") == 0) {
1451 if (set_network(ifname, id, "group", "CCMP-256") < 0)
1452 return -2;
1453 } else if (strcasecmp(val, "AES-GCMP-128") == 0) {
1454 if (set_network(ifname, id, "group", "GCMP") < 0)
1455 return -2;
1456 } else if (strcasecmp(val, "AES-CCMP-128") == 0) {
1457 if (set_network(ifname, id, "group", "CCMP") < 0)
1458 return -2;
1459 } else {
1460 send_resp(dut, conn, SIGMA_ERROR,
1461 "errorCode,Unrecognized GroupCipher value");
1462 return 0;
1463 }
1464 }
1465
Jouni Malinen7b239522017-09-14 21:37:18 +03001466 val = get_param(cmd, "GroupMgntCipher");
Jouni Malinenad395a22017-09-01 21:13:46 +03001467 if (val) {
Jouni Malinene8898cb2017-09-26 17:55:26 +03001468 const char *cipher;
1469
1470 if (strcasecmp(val, "BIP-GMAC-256") == 0) {
1471 cipher = "BIP-GMAC-256";
1472 } else if (strcasecmp(val, "BIP-CMAC-256") == 0) {
1473 cipher = "BIP-CMAC-256";
1474 } else if (strcasecmp(val, "BIP-GMAC-128") == 0) {
1475 cipher = "BIP-GMAC-128";
1476 } else if (strcasecmp(val, "BIP-CMAC-128") == 0) {
1477 cipher = "AES-128-CMAC";
1478 } else {
1479 send_resp(dut, conn, SIGMA_INVALID,
1480 "errorCode,Unsupported GroupMgntCipher");
1481 return 0;
1482 }
1483 if (set_network(ifname, id, "group_mgmt", cipher) < 0) {
1484 send_resp(dut, conn, SIGMA_INVALID,
1485 "errorCode,Failed to set GroupMgntCipher");
1486 return 0;
1487 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001488 }
1489
1490 dut->sta_pmf = STA_PMF_DISABLED;
vamsi krishnaf39bc1e2017-08-23 17:37:53 +05301491
1492 if (dut->program == PROGRAM_OCE) {
1493 dut->sta_pmf = STA_PMF_OPTIONAL;
1494 if (set_network(ifname, id, "ieee80211w", "1") < 0)
1495 return -2;
1496 }
1497
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001498 val = get_param(cmd, "PMF");
1499 if (val) {
1500 if (strcasecmp(val, "Required") == 0 ||
1501 strcasecmp(val, "Forced_Required") == 0) {
1502 dut->sta_pmf = STA_PMF_REQUIRED;
1503 if (set_network(ifname, id, "ieee80211w", "2") < 0)
1504 return -2;
1505 } else if (strcasecmp(val, "Optional") == 0) {
1506 dut->sta_pmf = STA_PMF_OPTIONAL;
1507 if (set_network(ifname, id, "ieee80211w", "1") < 0)
1508 return -2;
1509 } else if (strcasecmp(val, "Disabled") == 0 ||
1510 strcasecmp(val, "Forced_Disabled") == 0) {
1511 dut->sta_pmf = STA_PMF_DISABLED;
1512 } else {
1513 send_resp(dut, conn, SIGMA_INVALID, "errorCode,Unrecognized PMF value");
1514 return 0;
1515 }
Sunil Duttc75a1e62018-01-11 20:47:50 +05301516 } else if (owe || suite_b) {
Jouni Malinen1287cd72018-01-04 17:08:01 +02001517 dut->sta_pmf = STA_PMF_REQUIRED;
1518 if (set_network(ifname, id, "ieee80211w", "2") < 0)
1519 return -2;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001520 }
1521
1522 return id;
1523}
1524
1525
1526static int cmd_sta_set_psk(struct sigma_dut *dut, struct sigma_conn *conn,
1527 struct sigma_cmd *cmd)
1528{
1529 const char *intf = get_param(cmd, "Interface");
Jouni Malinen992a81e2017-08-22 13:57:47 +03001530 const char *type = get_param(cmd, "Type");
Jouni Malinen1287cd72018-01-04 17:08:01 +02001531 const char *pmf = get_param(cmd, "PMF");
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001532 const char *ifname, *val, *alg;
1533 int id;
1534
1535 if (intf == NULL)
1536 return -1;
1537
1538 if (strcmp(intf, get_main_ifname()) == 0)
1539 ifname = get_station_ifname();
1540 else
1541 ifname = intf;
1542
1543 id = set_wpa_common(dut, conn, ifname, cmd);
1544 if (id < 0)
1545 return id;
1546
1547 val = get_param(cmd, "keyMgmtType");
1548 alg = get_param(cmd, "micAlg");
1549
Jouni Malinen992a81e2017-08-22 13:57:47 +03001550 if (type && strcasecmp(type, "SAE") == 0) {
1551 if (val && strcasecmp(val, "wpa2-ft") == 0) {
1552 if (set_network(ifname, id, "key_mgmt", "FT-SAE") < 0)
1553 return -2;
1554 } else {
1555 if (set_network(ifname, id, "key_mgmt", "SAE") < 0)
1556 return -2;
1557 }
1558 if (wpa_command(ifname, "SET sae_groups ") != 0) {
1559 sigma_dut_print(dut, DUT_MSG_ERROR,
1560 "Failed to clear sae_groups to default");
1561 return -2;
1562 }
Jouni Malinen1287cd72018-01-04 17:08:01 +02001563 if (!pmf) {
1564 dut->sta_pmf = STA_PMF_REQUIRED;
1565 if (set_network(ifname, id, "ieee80211w", "2") < 0)
1566 return -2;
1567 }
Jouni Malinen0ab50f42017-08-31 01:34:59 +03001568 } else if (type && strcasecmp(type, "PSK-SAE") == 0) {
1569 if (val && strcasecmp(val, "wpa2-ft") == 0) {
1570 if (set_network(ifname, id, "key_mgmt",
1571 "FT-SAE FT-PSK") < 0)
1572 return -2;
1573 } else {
1574 if (set_network(ifname, id, "key_mgmt",
1575 "SAE WPA-PSK") < 0)
1576 return -2;
1577 }
1578 if (wpa_command(ifname, "SET sae_groups ") != 0) {
1579 sigma_dut_print(dut, DUT_MSG_ERROR,
1580 "Failed to clear sae_groups to default");
1581 return -2;
1582 }
Jouni Malinen1287cd72018-01-04 17:08:01 +02001583 if (!pmf) {
1584 dut->sta_pmf = STA_PMF_OPTIONAL;
1585 if (set_network(ifname, id, "ieee80211w", "1") < 0)
1586 return -2;
1587 }
Jouni Malinen992a81e2017-08-22 13:57:47 +03001588 } else if (alg && strcasecmp(alg, "SHA-256") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001589 if (set_network(ifname, id, "key_mgmt", "WPA-PSK-SHA256") < 0)
1590 return -2;
1591 } else if (alg && strcasecmp(alg, "SHA-1") == 0) {
1592 if (set_network(ifname, id, "key_mgmt", "WPA-PSK") < 0)
1593 return -2;
Ashwini Patil6dbf7b02017-03-20 13:42:11 +05301594 } else if (val && strcasecmp(val, "wpa2-ft") == 0) {
1595 if (set_network(ifname, id, "key_mgmt", "FT-PSK") < 0)
1596 return -2;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001597 } else if ((val && strcasecmp(val, "wpa2-sha256") == 0) ||
1598 dut->sta_pmf == STA_PMF_REQUIRED) {
1599 if (set_network(ifname, id, "key_mgmt",
1600 "WPA-PSK WPA-PSK-SHA256") < 0)
1601 return -2;
1602 } else if (dut->sta_pmf == STA_PMF_OPTIONAL) {
1603 if (set_network(ifname, id, "key_mgmt",
1604 "WPA-PSK WPA-PSK-SHA256") < 0)
1605 return -2;
1606 } else {
1607 if (set_network(ifname, id, "key_mgmt", "WPA-PSK") < 0)
1608 return -2;
1609 }
1610
1611 val = get_param(cmd, "passPhrase");
1612 if (val == NULL)
1613 return -1;
Jouni Malinen2126f422017-10-11 23:24:33 +03001614 if (type && strcasecmp(type, "SAE") == 0) {
1615 if (set_network_quoted(ifname, id, "sae_password", val) < 0)
1616 return -2;
1617 } else {
1618 if (set_network_quoted(ifname, id, "psk", val) < 0)
1619 return -2;
1620 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001621
Jouni Malinen992a81e2017-08-22 13:57:47 +03001622 val = get_param(cmd, "ECGroupID");
1623 if (val) {
1624 char buf[50];
1625
1626 snprintf(buf, sizeof(buf), "SET sae_groups %u", atoi(val));
1627 if (wpa_command(ifname, buf) != 0) {
1628 sigma_dut_print(dut, DUT_MSG_ERROR,
1629 "Failed to clear sae_groups");
1630 return -2;
1631 }
1632 }
1633
Jouni Malinen68143132017-09-02 02:34:08 +03001634 val = get_param(cmd, "InvalidSAEElement");
1635 if (val) {
1636 free(dut->sae_commit_override);
1637 dut->sae_commit_override = strdup(val);
1638 }
1639
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001640 return 1;
1641}
1642
1643
1644static int set_eap_common(struct sigma_dut *dut, struct sigma_conn *conn,
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05301645 const char *ifname, int username_identity,
1646 struct sigma_cmd *cmd)
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001647{
vamsi krishnaf39bc1e2017-08-23 17:37:53 +05301648 const char *val, *alg, *akm;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001649 int id;
1650 char buf[200];
1651#ifdef ANDROID
1652 unsigned char kvalue[KEYSTORE_MESSAGE_SIZE];
1653 int length;
1654#endif /* ANDROID */
1655
1656 id = set_wpa_common(dut, conn, ifname, cmd);
1657 if (id < 0)
1658 return id;
1659
1660 val = get_param(cmd, "keyMgmtType");
1661 alg = get_param(cmd, "micAlg");
vamsi krishnaf39bc1e2017-08-23 17:37:53 +05301662 akm = get_param(cmd, "AKMSuiteType");
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001663
Jouni Malinenad395a22017-09-01 21:13:46 +03001664 if (val && strcasecmp(val, "SuiteB") == 0) {
1665 if (set_network(ifname, id, "key_mgmt", "WPA-EAP-SUITE-B-192") <
1666 0)
1667 return -2;
1668 } else if (alg && strcasecmp(alg, "SHA-256") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001669 if (set_network(ifname, id, "key_mgmt", "WPA-EAP-SHA256") < 0)
1670 return -2;
1671 } else if (alg && strcasecmp(alg, "SHA-1") == 0) {
1672 if (set_network(ifname, id, "key_mgmt", "WPA-EAP") < 0)
1673 return -2;
1674 } else if (val && strcasecmp(val, "wpa2-ft") == 0) {
1675 if (set_network(ifname, id, "key_mgmt", "FT-EAP") < 0)
1676 return -2;
1677 } else if ((val && strcasecmp(val, "wpa2-sha256") == 0) ||
1678 dut->sta_pmf == STA_PMF_REQUIRED) {
1679 if (set_network(ifname, id, "key_mgmt",
1680 "WPA-EAP WPA-EAP-SHA256") < 0)
1681 return -2;
vamsi krishnaf39bc1e2017-08-23 17:37:53 +05301682 } else if (akm && atoi(akm) == 14) {
1683 if (dut->sta_pmf == STA_PMF_OPTIONAL ||
1684 dut->sta_pmf == STA_PMF_REQUIRED) {
1685 if (set_network(ifname, id, "key_mgmt",
1686 "WPA-EAP-SHA256 FILS-SHA256") < 0)
1687 return -2;
1688 } else {
1689 if (set_network(ifname, id, "key_mgmt",
1690 "WPA-EAP FILS-SHA256") < 0)
1691 return -2;
1692 }
1693
1694 if (set_network(ifname, id, "erp", "1") < 0)
1695 return -2;
1696 } else if (akm && atoi(akm) == 15) {
1697 if (dut->sta_pmf == STA_PMF_OPTIONAL ||
1698 dut->sta_pmf == STA_PMF_REQUIRED) {
1699 if (set_network(ifname, id, "key_mgmt",
1700 "WPA-EAP-SHA256 FILS-SHA384") < 0)
1701 return -2;
1702 } else {
1703 if (set_network(ifname, id, "key_mgmt",
1704 "WPA-EAP FILS-SHA384") < 0)
1705 return -2;
1706 }
1707
1708 if (set_network(ifname, id, "erp", "1") < 0)
1709 return -2;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001710 } else if (dut->sta_pmf == STA_PMF_OPTIONAL) {
1711 if (set_network(ifname, id, "key_mgmt",
1712 "WPA-EAP WPA-EAP-SHA256") < 0)
1713 return -2;
1714 } else {
1715 if (set_network(ifname, id, "key_mgmt", "WPA-EAP") < 0)
1716 return -2;
1717 }
1718
1719 val = get_param(cmd, "trustedRootCA");
1720 if (val) {
1721#ifdef ANDROID
1722 snprintf(buf, sizeof(buf), "CACERT_%s", val);
1723 length = android_keystore_get(ANDROID_KEYSTORE_GET, buf,
1724 kvalue);
1725 if (length > 0) {
1726 sigma_dut_print(dut, DUT_MSG_INFO,
1727 "Use Android keystore [%s]", buf);
1728 snprintf(buf, sizeof(buf), "keystore://CACERT_%s",
1729 val);
1730 goto ca_cert_selected;
1731 }
1732#endif /* ANDROID */
1733
1734 snprintf(buf, sizeof(buf), "%s/%s", sigma_cert_path, val);
1735#ifdef __linux__
1736 if (!file_exists(buf)) {
1737 char msg[300];
1738 snprintf(msg, sizeof(msg), "ErrorCode,trustedRootCA "
1739 "file (%s) not found", buf);
1740 send_resp(dut, conn, SIGMA_ERROR, msg);
1741 return -3;
1742 }
1743#endif /* __linux__ */
1744#ifdef ANDROID
1745ca_cert_selected:
1746#endif /* ANDROID */
1747 if (set_network_quoted(ifname, id, "ca_cert", buf) < 0)
1748 return -2;
1749 }
1750
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05301751 if (username_identity) {
1752 val = get_param(cmd, "username");
1753 if (val) {
1754 if (set_network_quoted(ifname, id, "identity", val) < 0)
1755 return -2;
1756 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001757
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05301758 val = get_param(cmd, "password");
1759 if (val) {
1760 if (set_network_quoted(ifname, id, "password", val) < 0)
1761 return -2;
1762 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001763 }
1764
1765 return id;
1766}
1767
1768
Jouni Malinen5eabb2a2017-10-03 18:17:30 +03001769static int set_tls_cipher(const char *ifname, int id, const char *cipher)
1770{
1771 const char *val;
1772
1773 if (!cipher)
1774 return 0;
1775
1776 if (strcasecmp(cipher, "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384") == 0)
1777 val = "ECDHE-ECDSA-AES256-GCM-SHA384";
1778 else if (strcasecmp(cipher,
1779 "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384") == 0)
1780 val = "ECDHE-RSA-AES256-GCM-SHA384";
1781 else if (strcasecmp(cipher, "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384") == 0)
1782 val = "DHE-RSA-AES256-GCM-SHA384";
1783 else if (strcasecmp(cipher,
1784 "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256") == 0)
1785 val = "ECDHE-ECDSA-AES128-GCM-SHA256";
1786 else
1787 return -1;
1788
1789 /* Need to clear phase1="tls_suiteb=1" to allow cipher enforcement */
1790 set_network_quoted(ifname, id, "phase1", "");
1791
1792 return set_network_quoted(ifname, id, "openssl_ciphers", val);
1793}
1794
1795
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001796static int cmd_sta_set_eaptls(struct sigma_dut *dut, struct sigma_conn *conn,
1797 struct sigma_cmd *cmd)
1798{
1799 const char *intf = get_param(cmd, "Interface");
1800 const char *ifname, *val;
1801 int id;
1802 char buf[200];
1803#ifdef ANDROID
1804 unsigned char kvalue[KEYSTORE_MESSAGE_SIZE];
1805 int length;
1806 int jb_or_newer = 0;
1807 char prop[PROPERTY_VALUE_MAX];
1808#endif /* ANDROID */
1809
1810 if (intf == NULL)
1811 return -1;
1812
1813 if (strcmp(intf, get_main_ifname()) == 0)
1814 ifname = get_station_ifname();
1815 else
1816 ifname = intf;
1817
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05301818 id = set_eap_common(dut, conn, ifname, 1, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001819 if (id < 0)
1820 return id;
1821
1822 if (set_network(ifname, id, "eap", "TLS") < 0)
1823 return -2;
1824
Pradeep Reddy POTTETI9f6c2132016-05-05 16:28:19 +05301825 if (!get_param(cmd, "username") &&
1826 set_network_quoted(ifname, id, "identity",
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001827 "wifi-user@wifilabs.local") < 0)
1828 return -2;
1829
1830 val = get_param(cmd, "clientCertificate");
1831 if (val == NULL)
1832 return -1;
1833#ifdef ANDROID
1834 snprintf(buf, sizeof(buf), "USRPKEY_%s", val);
1835 length = android_keystore_get(ANDROID_KEYSTORE_GET, buf, kvalue);
1836 if (length < 0) {
1837 /*
1838 * JB started reporting keystore type mismatches, so retry with
1839 * the GET_PUBKEY command if the generic GET fails.
1840 */
1841 length = android_keystore_get(ANDROID_KEYSTORE_GET_PUBKEY,
1842 buf, kvalue);
1843 }
1844
1845 if (property_get("ro.build.version.release", prop, NULL) != 0) {
1846 sigma_dut_print(dut, DUT_MSG_DEBUG, "Android release %s", prop);
1847 if (strncmp(prop, "4.0", 3) != 0)
1848 jb_or_newer = 1;
1849 } else
1850 jb_or_newer = 1; /* assume newer */
1851
1852 if (jb_or_newer && length > 0) {
1853 sigma_dut_print(dut, DUT_MSG_INFO,
1854 "Use Android keystore [%s]", buf);
1855 if (set_network(ifname, id, "engine", "1") < 0)
1856 return -2;
1857 if (set_network_quoted(ifname, id, "engine_id", "keystore") < 0)
1858 return -2;
1859 snprintf(buf, sizeof(buf), "USRPKEY_%s", val);
1860 if (set_network_quoted(ifname, id, "key_id", buf) < 0)
1861 return -2;
1862 snprintf(buf, sizeof(buf), "keystore://USRCERT_%s", val);
1863 if (set_network_quoted(ifname, id, "client_cert", buf) < 0)
1864 return -2;
1865 return 1;
1866 } else if (length > 0) {
1867 sigma_dut_print(dut, DUT_MSG_INFO,
1868 "Use Android keystore [%s]", buf);
1869 snprintf(buf, sizeof(buf), "keystore://USRPKEY_%s", val);
1870 if (set_network_quoted(ifname, id, "private_key", buf) < 0)
1871 return -2;
1872 snprintf(buf, sizeof(buf), "keystore://USRCERT_%s", val);
1873 if (set_network_quoted(ifname, id, "client_cert", buf) < 0)
1874 return -2;
1875 return 1;
1876 }
1877#endif /* ANDROID */
1878
1879 snprintf(buf, sizeof(buf), "%s/%s", sigma_cert_path, val);
1880#ifdef __linux__
1881 if (!file_exists(buf)) {
1882 char msg[300];
1883 snprintf(msg, sizeof(msg), "ErrorCode,clientCertificate file "
1884 "(%s) not found", buf);
1885 send_resp(dut, conn, SIGMA_ERROR, msg);
1886 return -3;
1887 }
1888#endif /* __linux__ */
1889 if (set_network_quoted(ifname, id, "private_key", buf) < 0)
1890 return -2;
1891 if (set_network_quoted(ifname, id, "client_cert", buf) < 0)
1892 return -2;
1893
1894 if (set_network_quoted(ifname, id, "private_key_passwd", "wifi") < 0)
1895 return -2;
1896
Jouni Malinen5eabb2a2017-10-03 18:17:30 +03001897 val = get_param(cmd, "keyMgmtType");
1898 if (val && strcasecmp(val, "SuiteB") == 0) {
1899 val = get_param(cmd, "CertType");
1900 if (val && strcasecmp(val, "RSA") == 0) {
1901 if (set_network_quoted(ifname, id, "phase1",
1902 "tls_suiteb=1") < 0)
1903 return -2;
1904 } else {
1905 if (set_network_quoted(ifname, id, "openssl_ciphers",
1906 "SUITEB192") < 0)
1907 return -2;
1908 }
1909
1910 val = get_param(cmd, "TLSCipher");
1911 if (set_tls_cipher(ifname, id, val) < 0) {
1912 send_resp(dut, conn, SIGMA_ERROR,
1913 "ErrorCode,Unsupported TLSCipher value");
1914 return -3;
1915 }
1916 }
1917
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001918 return 1;
1919}
1920
1921
1922static int cmd_sta_set_eapttls(struct sigma_dut *dut, struct sigma_conn *conn,
1923 struct sigma_cmd *cmd)
1924{
1925 const char *intf = get_param(cmd, "Interface");
1926 const char *ifname;
1927 int id;
1928
1929 if (intf == NULL)
1930 return -1;
1931
1932 if (strcmp(intf, get_main_ifname()) == 0)
1933 ifname = get_station_ifname();
1934 else
1935 ifname = intf;
1936
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05301937 id = set_eap_common(dut, conn, ifname, 1, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001938 if (id < 0)
1939 return id;
1940
1941 if (set_network(ifname, id, "eap", "TTLS") < 0) {
1942 send_resp(dut, conn, SIGMA_ERROR,
1943 "errorCode,Failed to set TTLS method");
1944 return 0;
1945 }
1946
1947 if (set_network_quoted(ifname, id, "phase2", "auth=MSCHAPV2") < 0) {
1948 send_resp(dut, conn, SIGMA_ERROR,
1949 "errorCode,Failed to set MSCHAPv2 for TTLS Phase 2");
1950 return 0;
1951 }
1952
1953 return 1;
1954}
1955
1956
1957static int cmd_sta_set_eapsim(struct sigma_dut *dut, struct sigma_conn *conn,
1958 struct sigma_cmd *cmd)
1959{
1960 const char *intf = get_param(cmd, "Interface");
1961 const char *ifname;
1962 int id;
1963
1964 if (intf == NULL)
1965 return -1;
1966
1967 if (strcmp(intf, get_main_ifname()) == 0)
1968 ifname = get_station_ifname();
1969 else
1970 ifname = intf;
1971
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05301972 id = set_eap_common(dut, conn, ifname, !dut->sim_no_username, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001973 if (id < 0)
1974 return id;
1975
1976 if (set_network(ifname, id, "eap", "SIM") < 0)
1977 return -2;
1978
1979 return 1;
1980}
1981
1982
1983static int cmd_sta_set_peap(struct sigma_dut *dut, struct sigma_conn *conn,
1984 struct sigma_cmd *cmd)
1985{
1986 const char *intf = get_param(cmd, "Interface");
1987 const char *ifname, *val;
1988 int id;
1989 char buf[100];
1990
1991 if (intf == NULL)
1992 return -1;
1993
1994 if (strcmp(intf, get_main_ifname()) == 0)
1995 ifname = get_station_ifname();
1996 else
1997 ifname = intf;
1998
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05301999 id = set_eap_common(dut, conn, ifname, 1, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002000 if (id < 0)
2001 return id;
2002
2003 if (set_network(ifname, id, "eap", "PEAP") < 0)
2004 return -2;
2005
2006 val = get_param(cmd, "innerEAP");
2007 if (val) {
2008 if (strcasecmp(val, "MSCHAPv2") == 0) {
2009 if (set_network_quoted(ifname, id, "phase2",
2010 "auth=MSCHAPV2") < 0)
2011 return -2;
2012 } else if (strcasecmp(val, "GTC") == 0) {
2013 if (set_network_quoted(ifname, id, "phase2",
2014 "auth=GTC") < 0)
2015 return -2;
2016 } else
2017 return -1;
2018 }
2019
2020 val = get_param(cmd, "peapVersion");
2021 if (val) {
2022 int ver = atoi(val);
2023 if (ver < 0 || ver > 1)
2024 return -1;
2025 snprintf(buf, sizeof(buf), "peapver=%d", ver);
2026 if (set_network_quoted(ifname, id, "phase1", buf) < 0)
2027 return -2;
2028 }
2029
2030 return 1;
2031}
2032
2033
2034static int cmd_sta_set_eapfast(struct sigma_dut *dut, struct sigma_conn *conn,
2035 struct sigma_cmd *cmd)
2036{
2037 const char *intf = get_param(cmd, "Interface");
2038 const char *ifname, *val;
2039 int id;
2040 char buf[100];
2041
2042 if (intf == NULL)
2043 return -1;
2044
2045 if (strcmp(intf, get_main_ifname()) == 0)
2046 ifname = get_station_ifname();
2047 else
2048 ifname = intf;
2049
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05302050 id = set_eap_common(dut, conn, ifname, 1, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002051 if (id < 0)
2052 return id;
2053
2054 if (set_network(ifname, id, "eap", "FAST") < 0)
2055 return -2;
2056
2057 val = get_param(cmd, "innerEAP");
2058 if (val) {
2059 if (strcasecmp(val, "MSCHAPV2") == 0) {
2060 if (set_network_quoted(ifname, id, "phase2",
2061 "auth=MSCHAPV2") < 0)
2062 return -2;
2063 } else if (strcasecmp(val, "GTC") == 0) {
2064 if (set_network_quoted(ifname, id, "phase2",
2065 "auth=GTC") < 0)
2066 return -2;
2067 } else
2068 return -1;
2069 }
2070
2071 val = get_param(cmd, "validateServer");
2072 if (val) {
2073 /* TODO */
2074 sigma_dut_print(dut, DUT_MSG_INFO, "Ignored EAP-FAST "
2075 "validateServer=%s", val);
2076 }
2077
2078 val = get_param(cmd, "pacFile");
2079 if (val) {
2080 snprintf(buf, sizeof(buf), "blob://%s", val);
2081 if (set_network_quoted(ifname, id, "pac_file", buf) < 0)
2082 return -2;
2083 }
2084
2085 if (set_network_quoted(ifname, id, "phase1", "fast_provisioning=2") <
2086 0)
2087 return -2;
2088
2089 return 1;
2090}
2091
2092
2093static int cmd_sta_set_eapaka(struct sigma_dut *dut, struct sigma_conn *conn,
2094 struct sigma_cmd *cmd)
2095{
2096 const char *intf = get_param(cmd, "Interface");
2097 const char *ifname;
2098 int id;
2099
2100 if (intf == NULL)
2101 return -1;
2102
2103 if (strcmp(intf, get_main_ifname()) == 0)
2104 ifname = get_station_ifname();
2105 else
2106 ifname = intf;
2107
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05302108 id = set_eap_common(dut, conn, ifname, !dut->sim_no_username, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002109 if (id < 0)
2110 return id;
2111
2112 if (set_network(ifname, id, "eap", "AKA") < 0)
2113 return -2;
2114
2115 return 1;
2116}
2117
2118
2119static int cmd_sta_set_eapakaprime(struct sigma_dut *dut,
2120 struct sigma_conn *conn,
2121 struct sigma_cmd *cmd)
2122{
2123 const char *intf = get_param(cmd, "Interface");
2124 const char *ifname;
2125 int id;
2126
2127 if (intf == NULL)
2128 return -1;
2129
2130 if (strcmp(intf, get_main_ifname()) == 0)
2131 ifname = get_station_ifname();
2132 else
2133 ifname = intf;
2134
Bala Krishna Bhamidipati73d7af02016-03-24 12:27:56 +05302135 id = set_eap_common(dut, conn, ifname, !dut->sim_no_username, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002136 if (id < 0)
2137 return id;
2138
2139 if (set_network(ifname, id, "eap", "AKA'") < 0)
2140 return -2;
2141
2142 return 1;
2143}
2144
2145
2146static int sta_set_open(struct sigma_dut *dut, struct sigma_conn *conn,
2147 struct sigma_cmd *cmd)
2148{
2149 const char *intf = get_param(cmd, "Interface");
2150 const char *ifname;
2151 int id;
2152
2153 if (strcmp(intf, get_main_ifname()) == 0)
2154 ifname = get_station_ifname();
2155 else
2156 ifname = intf;
2157
2158 id = add_network_common(dut, conn, ifname, cmd);
2159 if (id < 0)
2160 return id;
2161
2162 if (set_network(ifname, id, "key_mgmt", "NONE") < 0)
2163 return -2;
2164
2165 return 1;
2166}
2167
2168
Jouni Malinen47dcc952017-10-09 16:43:24 +03002169static int sta_set_owe(struct sigma_dut *dut, struct sigma_conn *conn,
2170 struct sigma_cmd *cmd)
2171{
2172 const char *intf = get_param(cmd, "Interface");
2173 const char *ifname, *val;
2174 int id;
2175
2176 if (intf == NULL)
2177 return -1;
2178
2179 if (strcmp(intf, get_main_ifname()) == 0)
2180 ifname = get_station_ifname();
2181 else
2182 ifname = intf;
2183
2184 id = set_wpa_common(dut, conn, ifname, cmd);
2185 if (id < 0)
2186 return id;
2187
2188 if (set_network(ifname, id, "key_mgmt", "OWE") < 0)
2189 return -2;
2190
2191 val = get_param(cmd, "ECGroupID");
Jouni Malinenfac9cad2017-10-10 18:35:55 +03002192 if (val && strcmp(val, "0") == 0) {
2193 if (wpa_command(ifname,
2194 "VENDOR_ELEM_ADD 13 ff23200000783590fb7440e03d5b3b33911f86affdcc6b4411b707846ac4ff08ddc8831ccd") != 0) {
2195 sigma_dut_print(dut, DUT_MSG_ERROR,
2196 "Failed to set OWE DH Param element override");
2197 return -2;
2198 }
2199 } else if (val && set_network(ifname, id, "owe_group", val) < 0) {
Jouni Malinen47dcc952017-10-09 16:43:24 +03002200 sigma_dut_print(dut, DUT_MSG_ERROR,
2201 "Failed to clear owe_group");
2202 return -2;
2203 }
2204
2205 return 1;
2206}
2207
2208
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002209static int cmd_sta_set_security(struct sigma_dut *dut, struct sigma_conn *conn,
2210 struct sigma_cmd *cmd)
2211{
2212 const char *type = get_param(cmd, "Type");
2213
2214 if (type == NULL) {
2215 send_resp(dut, conn, SIGMA_ERROR,
2216 "ErrorCode,Missing Type argument");
2217 return 0;
2218 }
2219
2220 if (strcasecmp(type, "OPEN") == 0)
2221 return sta_set_open(dut, conn, cmd);
Jouni Malinen47dcc952017-10-09 16:43:24 +03002222 if (strcasecmp(type, "OWE") == 0)
2223 return sta_set_owe(dut, conn, cmd);
Jouni Malinen992a81e2017-08-22 13:57:47 +03002224 if (strcasecmp(type, "PSK") == 0 ||
Jouni Malinen0ab50f42017-08-31 01:34:59 +03002225 strcasecmp(type, "PSK-SAE") == 0 ||
Jouni Malinen992a81e2017-08-22 13:57:47 +03002226 strcasecmp(type, "SAE") == 0)
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002227 return cmd_sta_set_psk(dut, conn, cmd);
2228 if (strcasecmp(type, "EAPTLS") == 0)
2229 return cmd_sta_set_eaptls(dut, conn, cmd);
2230 if (strcasecmp(type, "EAPTTLS") == 0)
2231 return cmd_sta_set_eapttls(dut, conn, cmd);
2232 if (strcasecmp(type, "EAPPEAP") == 0)
2233 return cmd_sta_set_peap(dut, conn, cmd);
2234 if (strcasecmp(type, "EAPSIM") == 0)
2235 return cmd_sta_set_eapsim(dut, conn, cmd);
2236 if (strcasecmp(type, "EAPFAST") == 0)
2237 return cmd_sta_set_eapfast(dut, conn, cmd);
2238 if (strcasecmp(type, "EAPAKA") == 0)
2239 return cmd_sta_set_eapaka(dut, conn, cmd);
2240 if (strcasecmp(type, "EAPAKAPRIME") == 0)
2241 return cmd_sta_set_eapakaprime(dut, conn, cmd);
Amarnath Hullur Subramanyam81b11cd2018-01-30 19:07:17 -08002242 if (strcasecmp(type, "wep") == 0)
2243 return cmd_sta_set_encryption(dut, conn, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002244
2245 send_resp(dut, conn, SIGMA_ERROR,
2246 "ErrorCode,Unsupported Type value");
2247 return 0;
2248}
2249
2250
2251int ath6kl_client_uapsd(struct sigma_dut *dut, const char *intf, int uapsd)
2252{
2253#ifdef __linux__
2254 /* special handling for ath6kl */
2255 char path[128], fname[128], *pos;
2256 ssize_t res;
2257 FILE *f;
2258
2259 snprintf(path, sizeof(path), "/sys/class/net/%s/phy80211", intf);
2260 res = readlink(path, path, sizeof(path));
2261 if (res < 0)
2262 return 0; /* not ath6kl */
2263
2264 if (res >= (int) sizeof(path))
2265 res = sizeof(path) - 1;
2266 path[res] = '\0';
2267 pos = strrchr(path, '/');
2268 if (pos == NULL)
2269 pos = path;
2270 else
2271 pos++;
2272 snprintf(fname, sizeof(fname),
2273 "/sys/kernel/debug/ieee80211/%s/ath6kl/"
2274 "create_qos", pos);
2275 if (!file_exists(fname))
2276 return 0; /* not ath6kl */
2277
2278 if (uapsd) {
2279 f = fopen(fname, "w");
2280 if (f == NULL)
2281 return -1;
2282
2283 sigma_dut_print(dut, DUT_MSG_DEBUG, "Use ath6kl create_qos");
2284 fprintf(f, "4 2 2 1 2 9999999 9999999 9999999 7777777 0 4 "
2285 "45000 200 56789000 56789000 5678900 0 0 9999999 "
2286 "20000 0\n");
2287 fclose(f);
2288 } else {
2289 snprintf(fname, sizeof(fname),
2290 "/sys/kernel/debug/ieee80211/%s/ath6kl/"
2291 "delete_qos", pos);
2292
2293 f = fopen(fname, "w");
2294 if (f == NULL)
2295 return -1;
2296
2297 sigma_dut_print(dut, DUT_MSG_DEBUG, "Use ath6kl delete_qos");
2298 fprintf(f, "2 4\n");
2299 fclose(f);
2300 }
2301#endif /* __linux__ */
2302
2303 return 0;
2304}
2305
2306
2307static int cmd_sta_set_uapsd(struct sigma_dut *dut, struct sigma_conn *conn,
2308 struct sigma_cmd *cmd)
2309{
2310 const char *intf = get_param(cmd, "Interface");
2311 /* const char *ssid = get_param(cmd, "ssid"); */
2312 const char *val;
2313 int max_sp_len = 4;
2314 int ac_be = 1, ac_bk = 1, ac_vi = 1, ac_vo = 1;
2315 char buf[100];
2316 int ret1, ret2;
2317
2318 val = get_param(cmd, "maxSPLength");
2319 if (val) {
2320 max_sp_len = atoi(val);
2321 if (max_sp_len != 0 && max_sp_len != 1 && max_sp_len != 2 &&
2322 max_sp_len != 4)
2323 return -1;
2324 }
2325
2326 val = get_param(cmd, "acBE");
2327 if (val)
2328 ac_be = atoi(val);
2329
2330 val = get_param(cmd, "acBK");
2331 if (val)
2332 ac_bk = atoi(val);
2333
2334 val = get_param(cmd, "acVI");
2335 if (val)
2336 ac_vi = atoi(val);
2337
2338 val = get_param(cmd, "acVO");
2339 if (val)
2340 ac_vo = atoi(val);
2341
2342 dut->client_uapsd = ac_be || ac_bk || ac_vi || ac_vo;
2343
2344 snprintf(buf, sizeof(buf), "P2P_SET client_apsd %d,%d,%d,%d;%d",
2345 ac_be, ac_bk, ac_vi, ac_vo, max_sp_len);
2346 ret1 = wpa_command(intf, buf);
2347
2348 snprintf(buf, sizeof(buf), "SET uapsd %d,%d,%d,%d;%d",
2349 ac_be, ac_bk, ac_vi, ac_vo, max_sp_len);
2350 ret2 = wpa_command(intf, buf);
2351
2352 if (ret1 && ret2) {
2353 sigma_dut_print(dut, DUT_MSG_INFO, "Failed to set client mode "
2354 "UAPSD parameters.");
2355 return -2;
2356 }
2357
2358 if (ath6kl_client_uapsd(dut, intf, dut->client_uapsd) < 0) {
2359 send_resp(dut, conn, SIGMA_ERROR,
2360 "ErrorCode,Failed to set ath6kl QoS parameters");
2361 return 0;
2362 }
2363
2364 return 1;
2365}
2366
2367
2368static int cmd_sta_set_wmm(struct sigma_dut *dut, struct sigma_conn *conn,
2369 struct sigma_cmd *cmd)
2370{
2371 char buf[1000];
2372 const char *intf = get_param(cmd, "Interface");
2373 const char *grp = get_param(cmd, "Group");
2374 const char *act = get_param(cmd, "Action");
2375 const char *tid = get_param(cmd, "Tid");
2376 const char *dir = get_param(cmd, "Direction");
2377 const char *psb = get_param(cmd, "Psb");
2378 const char *up = get_param(cmd, "Up");
2379 const char *fixed = get_param(cmd, "Fixed");
2380 const char *size = get_param(cmd, "Size");
2381 const char *msize = get_param(cmd, "Maxsize");
2382 const char *minsi = get_param(cmd, "Min_srvc_intrvl");
2383 const char *maxsi = get_param(cmd, "Max_srvc_intrvl");
2384 const char *inact = get_param(cmd, "Inactivity");
2385 const char *sus = get_param(cmd, "Suspension");
2386 const char *mindr = get_param(cmd, "Mindatarate");
2387 const char *meandr = get_param(cmd, "Meandatarate");
2388 const char *peakdr = get_param(cmd, "Peakdatarate");
2389 const char *phyrate = get_param(cmd, "Phyrate");
2390 const char *burstsize = get_param(cmd, "Burstsize");
2391 const char *sba = get_param(cmd, "Sba");
2392 int direction;
2393 int handle;
Peng Xu93319622017-10-04 17:58:16 -07002394 float sba_fv = 0;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002395 int fixed_int;
2396 int psb_ts;
2397
2398 if (intf == NULL || grp == NULL || act == NULL )
2399 return -1;
2400
2401 if (strcasecmp(act, "addts") == 0) {
2402 if (tid == NULL || dir == NULL || psb == NULL ||
2403 up == NULL || fixed == NULL || size == NULL)
2404 return -1;
2405
2406 /*
2407 * Note: Sigma CAPI spec lists uplink, downlink, and bidi as the
2408 * possible values, but WMM-AC and V-E test scripts use "UP,
2409 * "DOWN", and "BIDI".
2410 */
2411 if (strcasecmp(dir, "uplink") == 0 ||
2412 strcasecmp(dir, "up") == 0) {
2413 direction = 0;
2414 } else if (strcasecmp(dir, "downlink") == 0 ||
2415 strcasecmp(dir, "down") == 0) {
2416 direction = 1;
2417 } else if (strcasecmp(dir, "bidi") == 0) {
2418 direction = 2;
2419 } else {
2420 sigma_dut_print(dut, DUT_MSG_ERROR,
2421 "Direction %s not supported", dir);
2422 return -1;
2423 }
2424
2425 if (strcasecmp(psb, "legacy") == 0) {
2426 psb_ts = 0;
2427 } else if (strcasecmp(psb, "uapsd") == 0) {
2428 psb_ts = 1;
2429 } else {
2430 sigma_dut_print(dut, DUT_MSG_ERROR,
2431 "PSB %s not supported", psb);
2432 return -1;
2433 }
2434
2435 if (atoi(tid) < 0 || atoi(tid) > 7) {
2436 sigma_dut_print(dut, DUT_MSG_ERROR,
2437 "TID %s not supported", tid);
2438 return -1;
2439 }
2440
2441 if (strcasecmp(fixed, "true") == 0) {
2442 fixed_int = 1;
2443 } else {
2444 fixed_int = 0;
2445 }
2446
Peng Xu93319622017-10-04 17:58:16 -07002447 if (sba)
2448 sba_fv = atof(sba);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002449
2450 dut->dialog_token++;
2451 handle = 7000 + dut->dialog_token;
2452
2453 /*
2454 * size: convert to hex
2455 * maxsi: convert to hex
2456 * mindr: convert to hex
2457 * meandr: convert to hex
2458 * peakdr: convert to hex
2459 * burstsize: convert to hex
2460 * phyrate: convert to hex
2461 * sba: convert to hex with modification
2462 * minsi: convert to integer
2463 * sus: convert to integer
2464 * inact: convert to integer
2465 * maxsi: convert to integer
2466 */
2467
2468 /*
2469 * The Nominal MSDU Size field is 2 octets long and contains an
2470 * unsigned integer that specifies the nominal size, in octets,
2471 * of MSDUs belonging to the traffic under this traffic
2472 * specification and is defined in Figure 16. If the Fixed
2473 * subfield is set to 1, then the size of the MSDU is fixed and
2474 * is indicated by the Size Subfield. If the Fixed subfield is
2475 * set to 0, then the size of the MSDU might not be fixed and
2476 * the Size indicates the nominal MSDU size.
2477 *
2478 * The Surplus Bandwidth Allowance Factor field is 2 octets long
2479 * and specifies the excess allocation of time (and bandwidth)
2480 * over and above the stated rates required to transport an MSDU
2481 * belonging to the traffic in this TSPEC. This field is
2482 * represented as an unsigned binary number with an implicit
2483 * binary point after the leftmost 3 bits. For example, an SBA
2484 * of 1.75 is represented as 0x3800. This field is included to
2485 * account for retransmissions. As such, the value of this field
2486 * must be greater than unity.
2487 */
2488
2489 snprintf(buf, sizeof(buf),
2490 "iwpriv %s addTspec %d %s %d %d %s 0x%X"
2491 " 0x%X 0x%X 0x%X"
2492 " 0x%X 0x%X 0x%X"
2493 " 0x%X %d %d %d %d"
2494 " %d %d",
2495 intf, handle, tid, direction, psb_ts, up,
2496 (unsigned int) ((fixed_int << 15) | atoi(size)),
2497 msize ? atoi(msize) : 0,
2498 mindr ? atoi(mindr) : 0,
2499 meandr ? atoi(meandr) : 0,
2500 peakdr ? atoi(peakdr) : 0,
2501 burstsize ? atoi(burstsize) : 0,
2502 phyrate ? atoi(phyrate) : 0,
2503 sba ? ((unsigned int) (((int) sba_fv << 13) |
2504 (int)((sba_fv - (int) sba_fv) *
2505 8192))) : 0,
2506 minsi ? atoi(minsi) : 0,
2507 sus ? atoi(sus) : 0,
2508 0, 0,
2509 inact ? atoi(inact) : 0,
2510 maxsi ? atoi(maxsi) : 0);
2511
2512 if (system(buf) != 0) {
2513 sigma_dut_print(dut, DUT_MSG_ERROR,
2514 "iwpriv addtspec request failed");
2515 send_resp(dut, conn, SIGMA_ERROR,
2516 "errorCode,Failed to execute addTspec command");
2517 return 0;
2518 }
2519
2520 sigma_dut_print(dut, DUT_MSG_INFO,
2521 "iwpriv addtspec request send");
2522
2523 /* Mapping handle to a TID */
2524 dut->tid_to_handle[atoi(tid)] = handle;
2525 } else if (strcasecmp(act, "delts") == 0) {
2526 if (tid == NULL)
2527 return -1;
2528
2529 if (atoi(tid) < 0 || atoi(tid) > 7) {
2530 sigma_dut_print(dut, DUT_MSG_ERROR,
2531 "TID %s not supported", tid);
2532 send_resp(dut, conn, SIGMA_ERROR,
2533 "errorCode,Unsupported TID");
2534 return 0;
2535 }
2536
2537 handle = dut->tid_to_handle[atoi(tid)];
2538
2539 if (handle < 7000 || handle > 7255) {
2540 /* Invalid handle ie no mapping for that TID */
2541 sigma_dut_print(dut, DUT_MSG_ERROR,
2542 "handle-> %d not found", handle);
2543 }
2544
2545 snprintf(buf, sizeof(buf), "iwpriv %s delTspec %d",
2546 intf, handle);
2547
2548 if (system(buf) != 0) {
2549 sigma_dut_print(dut, DUT_MSG_ERROR,
2550 "iwpriv deltspec request failed");
2551 send_resp(dut, conn, SIGMA_ERROR,
2552 "errorCode,Failed to execute delTspec command");
2553 return 0;
2554 }
2555
2556 sigma_dut_print(dut, DUT_MSG_INFO,
2557 "iwpriv deltspec request send");
2558
2559 dut->tid_to_handle[atoi(tid)] = 0;
2560 } else {
2561 sigma_dut_print(dut, DUT_MSG_ERROR,
2562 "Action type %s not supported", act);
2563 send_resp(dut, conn, SIGMA_ERROR,
2564 "errorCode,Unsupported Action");
2565 return 0;
2566 }
2567
2568 return 1;
2569}
2570
2571
vamsi krishna52e16f92017-08-29 12:37:34 +05302572static int find_network(struct sigma_dut *dut, const char *ssid)
2573{
2574 char list[4096];
2575 char *pos;
2576
2577 sigma_dut_print(dut, DUT_MSG_DEBUG,
2578 "Search for profile based on SSID: '%s'", ssid);
2579 if (wpa_command_resp(get_station_ifname(), "LIST_NETWORKS",
2580 list, sizeof(list)) < 0)
2581 return -1;
2582 pos = strstr(list, ssid);
2583 if (!pos || pos == list || pos[-1] != '\t' || pos[strlen(ssid)] != '\t')
2584 return -1;
2585
2586 while (pos > list && pos[-1] != '\n')
2587 pos--;
2588 dut->infra_network_id = atoi(pos);
2589 snprintf(dut->infra_ssid, sizeof(dut->infra_ssid), "%s", ssid);
2590 return 0;
2591}
2592
2593
Sunil Dutt44595082018-02-12 19:41:45 +05302594#ifdef NL80211_SUPPORT
2595static int sta_config_rsnie(struct sigma_dut *dut, int val)
2596{
2597 struct nl_msg *msg;
2598 int ret;
2599 struct nlattr *params;
2600 int ifindex;
2601
2602 ifindex = if_nametoindex("wlan0");
2603 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
2604 NL80211_CMD_VENDOR)) ||
2605 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
2606 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
2607 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
2608 QCA_NL80211_VENDOR_SUBCMD_SET_WIFI_CONFIGURATION) ||
2609 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
2610 nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_CONFIG_RSN_IE, val)) {
2611 sigma_dut_print(dut, DUT_MSG_ERROR,
2612 "%s: err in adding vendor_cmd and vendor_data",
2613 __func__);
2614 nlmsg_free(msg);
2615 return -1;
2616 }
2617 nla_nest_end(msg, params);
2618
2619 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
2620 if (ret) {
2621 sigma_dut_print(dut, DUT_MSG_ERROR,
2622 "%s: err in send_and_recv_msgs, ret=%d",
2623 __func__, ret);
2624 return ret;
2625 }
2626
2627 return 0;
2628}
2629#endif /* NL80211_SUPPORT */
2630
2631
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002632static int cmd_sta_associate(struct sigma_dut *dut, struct sigma_conn *conn,
2633 struct sigma_cmd *cmd)
2634{
2635 /* const char *intf = get_param(cmd, "Interface"); */
2636 const char *ssid = get_param(cmd, "ssid");
2637 const char *wps_param = get_param(cmd, "WPS");
2638 const char *bssid = get_param(cmd, "bssid");
Jouni Malinen46a19b62017-06-23 14:31:27 +03002639 const char *chan = get_param(cmd, "channel");
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002640 int wps = 0;
Jouni Malinen3c367e82017-06-23 17:01:47 +03002641 char buf[1000], extra[50];
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002642
2643 if (ssid == NULL)
2644 return -1;
2645
Jouni Malinen3c367e82017-06-23 17:01:47 +03002646 if (dut->rsne_override) {
Sunil Dutt44595082018-02-12 19:41:45 +05302647#ifdef NL80211_SUPPORT
2648 if (get_driver_type() == DRIVER_WCN) {
2649 sta_config_rsnie(dut, 1);
2650 dut->config_rsnie = 1;
2651 }
2652#endif /* NL80211_SUPPORT */
Jouni Malinen3c367e82017-06-23 17:01:47 +03002653 snprintf(buf, sizeof(buf), "TEST_ASSOC_IE %s",
2654 dut->rsne_override);
2655 if (wpa_command(get_station_ifname(), buf) < 0) {
2656 send_resp(dut, conn, SIGMA_ERROR,
2657 "ErrorCode,Failed to set DEV_CONFIGURE_IE RSNE override");
2658 return 0;
2659 }
2660 }
2661
Jouni Malinen68143132017-09-02 02:34:08 +03002662 if (dut->sae_commit_override) {
2663 snprintf(buf, sizeof(buf), "SET sae_commit_override %s",
2664 dut->sae_commit_override);
2665 if (wpa_command(get_station_ifname(), buf) < 0) {
2666 send_resp(dut, conn, SIGMA_ERROR,
2667 "ErrorCode,Failed to set SAE commit override");
2668 return 0;
2669 }
2670 }
Ankita Bajaj1bde7942018-01-09 19:15:01 +05302671#ifdef ANDROID
2672 if (dut->fils_hlp)
2673 process_fils_hlp(dut);
2674#endif /* ANDROID */
Jouni Malinen68143132017-09-02 02:34:08 +03002675
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002676 if (wps_param &&
2677 (strcmp(wps_param, "1") == 0 || strcasecmp(wps_param, "On") == 0))
2678 wps = 1;
2679
2680 if (wps) {
2681 if (dut->wps_method == WFA_CS_WPS_NOT_READY) {
2682 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,WPS "
2683 "parameters not yet set");
2684 return 0;
2685 }
2686 if (dut->wps_method == WFA_CS_WPS_PBC) {
2687 if (wpa_command(get_station_ifname(), "WPS_PBC") < 0)
2688 return -2;
2689 } else {
2690 snprintf(buf, sizeof(buf), "WPS_PIN any %s",
2691 dut->wps_pin);
2692 if (wpa_command(get_station_ifname(), buf) < 0)
2693 return -2;
2694 }
2695 } else {
vamsi krishna52e16f92017-08-29 12:37:34 +05302696 if (strcmp(ssid, dut->infra_ssid) == 0) {
2697 sigma_dut_print(dut, DUT_MSG_DEBUG,
2698 "sta_associate for the most recently added network");
2699 } else if (find_network(dut, ssid) < 0) {
2700 sigma_dut_print(dut, DUT_MSG_DEBUG,
2701 "sta_associate for a previously stored network profile");
2702 send_resp(dut, conn, SIGMA_ERROR,
2703 "ErrorCode,Profile not found");
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002704 return 0;
2705 }
2706
2707 if (bssid &&
2708 set_network(get_station_ifname(), dut->infra_network_id,
2709 "bssid", bssid) < 0) {
2710 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,"
2711 "Invalid bssid argument");
2712 return 0;
2713 }
2714
Jouni Malinen46a19b62017-06-23 14:31:27 +03002715 extra[0] = '\0';
2716 if (chan)
2717 snprintf(extra, sizeof(extra), " freq=%u",
2718 channel_to_freq(atoi(chan)));
2719 snprintf(buf, sizeof(buf), "SELECT_NETWORK %d%s",
2720 dut->infra_network_id, extra);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02002721 if (wpa_command(get_station_ifname(), buf) < 0) {
2722 sigma_dut_print(dut, DUT_MSG_INFO, "Failed to select "
2723 "network id %d on %s",
2724 dut->infra_network_id,
2725 get_station_ifname());
2726 return -2;
2727 }
2728 }
2729
2730 return 1;
2731}
2732
2733
2734static int run_hs20_osu(struct sigma_dut *dut, const char *params)
2735{
2736 char buf[500], cmd[200];
2737 int res;
2738
2739 /* Use hs20-osu-client file at the current dir, if found; otherwise use
2740 * default path */
2741 res = snprintf(cmd, sizeof(cmd),
2742 "%s -w \"%s\" -r hs20-osu-client.res %s%s -dddKt -f Logs/hs20-osu-client.txt",
2743 file_exists("./hs20-osu-client") ?
2744 "./hs20-osu-client" : "hs20-osu-client",
2745 sigma_wpas_ctrl,
2746 dut->summary_log ? "-s " : "",
2747 dut->summary_log ? dut->summary_log : "");
2748 if (res < 0 || res >= (int) sizeof(cmd))
2749 return -1;
2750
2751 res = snprintf(buf, sizeof(buf), "%s %s", cmd, params);
2752 if (res < 0 || res >= (int) sizeof(buf))
2753 return -1;
2754 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
2755
2756 if (system(buf) != 0) {
2757 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to run: %s", buf);
2758 return -1;
2759 }
2760 sigma_dut_print(dut, DUT_MSG_DEBUG,
2761 "Completed hs20-osu-client operation");
2762
2763 return 0;
2764}
2765
2766
2767static int download_ppsmo(struct sigma_dut *dut,
2768 struct sigma_conn *conn,
2769 const char *intf,
2770 struct sigma_cmd *cmd)
2771{
2772 const char *name, *path, *val;
2773 char url[500], buf[600], fbuf[100];
2774 char *fqdn = NULL;
2775
2776 name = get_param(cmd, "FileName");
2777 path = get_param(cmd, "FilePath");
2778 if (name == NULL || path == NULL)
2779 return -1;
2780
2781 if (strcasecmp(path, "VendorSpecific") == 0) {
2782 snprintf(url, sizeof(url), "PPS/%s", name);
2783 sigma_dut_print(dut, DUT_MSG_INFO, "Use pre-configured PPS MO "
2784 "from the device (%s)", url);
2785 if (!file_exists(url)) {
2786 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Requested "
2787 "PPS MO file does not exist");
2788 return 0;
2789 }
2790 snprintf(buf, sizeof(buf), "cp %s pps-tnds.xml", url);
2791 if (system(buf) != 0) {
2792 send_resp(dut, conn, SIGMA_ERROR,
2793 "errorCode,Failed to copy PPS MO");
2794 return 0;
2795 }
2796 } else if (strncasecmp(path, "http:", 5) != 0 &&
2797 strncasecmp(path, "https:", 6) != 0) {
2798 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,"
2799 "Unsupported FilePath value");
2800 return 0;
2801 } else {
2802 snprintf(url, sizeof(url), "%s/%s", path, name);
2803 sigma_dut_print(dut, DUT_MSG_INFO, "Downloading PPS MO from %s",
2804 url);
2805 snprintf(buf, sizeof(buf), "wget -T 10 -t 3 -O pps-tnds.xml '%s'", url);
2806 remove("pps-tnds.xml");
2807 if (system(buf) != 0) {
2808 send_resp(dut, conn, SIGMA_ERROR,
2809 "errorCode,Failed to download PPS MO");
2810 return 0;
2811 }
2812 }
2813
2814 if (run_hs20_osu(dut, "from_tnds pps-tnds.xml pps.xml") < 0) {
2815 send_resp(dut, conn, SIGMA_ERROR,
2816 "errorCode,Failed to parse downloaded PPSMO");
2817 return 0;
2818 }
2819 unlink("pps-tnds.xml");
2820
2821 val = get_param(cmd, "managementTreeURI");
2822 if (val) {
2823 const char *pos, *end;
2824 sigma_dut_print(dut, DUT_MSG_DEBUG, "managementTreeURI: %s",
2825 val);
2826 if (strncmp(val, "./Wi-Fi/", 8) != 0) {
2827 send_resp(dut, conn, SIGMA_ERROR,
2828 "errorCode,Invalid managementTreeURI prefix");
2829 return 0;
2830 }
2831 pos = val + 8;
2832 end = strchr(pos, '/');
2833 if (end == NULL ||
2834 strcmp(end, "/PerProviderSubscription") != 0) {
2835 send_resp(dut, conn, SIGMA_ERROR,
2836 "errorCode,Invalid managementTreeURI postfix");
2837 return 0;
2838 }
2839 if (end - pos >= (int) sizeof(fbuf)) {
2840 send_resp(dut, conn, SIGMA_ERROR,
2841 "errorCode,Too long FQDN in managementTreeURI");
2842 return 0;
2843 }
2844 memcpy(fbuf, pos, end - pos);
2845 fbuf[end - pos] = '\0';
2846 fqdn = fbuf;
2847 sigma_dut_print(dut, DUT_MSG_INFO,
2848 "FQDN from managementTreeURI: %s", fqdn);
2849 } else if (run_hs20_osu(dut, "get_fqdn pps.xml") == 0) {
2850 FILE *f = fopen("pps-fqdn", "r");
2851 if (f) {
2852 if (fgets(fbuf, sizeof(fbuf), f)) {
2853 fbuf[sizeof(fbuf) - 1] = '\0';
2854 fqdn = fbuf;
2855 sigma_dut_print(dut, DUT_MSG_DEBUG,
2856 "Use FQDN %s", fqdn);
2857 }
2858 fclose(f);
2859 }
2860 }
2861
2862 if (fqdn == NULL) {
2863 send_resp(dut, conn, SIGMA_ERROR,
2864 "errorCode,No FQDN specified");
2865 return 0;
2866 }
2867
2868 mkdir("SP", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
2869 snprintf(buf, sizeof(buf), "SP/%s", fqdn);
2870 mkdir(buf, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
2871
2872 snprintf(buf, sizeof(buf), "SP/%s/pps.xml", fqdn);
2873 if (rename("pps.xml", buf) < 0) {
2874 send_resp(dut, conn, SIGMA_ERROR,
2875 "errorCode,Could not move PPS MO");
2876 return 0;
2877 }
2878
2879 if (strcasecmp(path, "VendorSpecific") == 0) {
2880 snprintf(buf, sizeof(buf), "cp Certs/ca.pem SP/%s/ca.pem",
2881 fqdn);
2882 if (system(buf)) {
2883 send_resp(dut, conn, SIGMA_ERROR,
2884 "errorCode,Failed to copy OSU CA cert");
2885 return 0;
2886 }
2887
2888 snprintf(buf, sizeof(buf),
2889 "cp Certs/aaa-ca.pem SP/%s/aaa-ca.pem",
2890 fqdn);
2891 if (system(buf)) {
2892 send_resp(dut, conn, SIGMA_ERROR,
2893 "errorCode,Failed to copy AAA CA cert");
2894 return 0;
2895 }
2896 } else {
2897 snprintf(buf, sizeof(buf),
2898 "dl_osu_ca SP/%s/pps.xml SP/%s/ca.pem",
2899 fqdn, fqdn);
2900 if (run_hs20_osu(dut, buf) < 0) {
2901 send_resp(dut, conn, SIGMA_ERROR,
2902 "errorCode,Failed to download OSU CA cert");
2903 return 0;
2904 }
2905
2906 snprintf(buf, sizeof(buf),
2907 "dl_aaa_ca SP/%s/pps.xml SP/%s/aaa-ca.pem",
2908 fqdn, fqdn);
2909 if (run_hs20_osu(dut, buf) < 0) {
2910 sigma_dut_print(dut, DUT_MSG_INFO,
2911 "Failed to download AAA CA cert");
2912 }
2913 }
2914
2915 if (file_exists("next-client-cert.pem")) {
2916 snprintf(buf, sizeof(buf), "SP/%s/client-cert.pem", fqdn);
2917 if (rename("next-client-cert.pem", buf) < 0) {
2918 send_resp(dut, conn, SIGMA_ERROR,
2919 "errorCode,Could not move client certificate");
2920 return 0;
2921 }
2922 }
2923
2924 if (file_exists("next-client-key.pem")) {
2925 snprintf(buf, sizeof(buf), "SP/%s/client-key.pem", fqdn);
2926 if (rename("next-client-key.pem", buf) < 0) {
2927 send_resp(dut, conn, SIGMA_ERROR,
2928 "errorCode,Could not move client key");
2929 return 0;
2930 }
2931 }
2932
2933 snprintf(buf, sizeof(buf), "set_pps SP/%s/pps.xml", fqdn);
2934 if (run_hs20_osu(dut, buf) < 0) {
2935 send_resp(dut, conn, SIGMA_ERROR,
2936 "errorCode,Failed to configure credential from "
2937 "PPSMO");
2938 return 0;
2939 }
2940
2941 return 1;
2942}
2943
2944
2945static int download_cert(struct sigma_dut *dut,
2946 struct sigma_conn *conn,
2947 const char *intf,
2948 struct sigma_cmd *cmd)
2949{
2950 const char *name, *path;
2951 char url[500], buf[600];
2952
2953 name = get_param(cmd, "FileName");
2954 path = get_param(cmd, "FilePath");
2955 if (name == NULL || path == NULL)
2956 return -1;
2957
2958 if (strcasecmp(path, "VendorSpecific") == 0) {
2959 snprintf(url, sizeof(url), "Certs/%s-cert.pem", name);
2960 sigma_dut_print(dut, DUT_MSG_INFO, "Use pre-configured client "
2961 "certificate from the device (%s)", url);
2962 if (!file_exists(url)) {
2963 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Requested "
2964 "certificate file does not exist");
2965 return 0;
2966 }
2967 snprintf(buf, sizeof(buf), "cp %s next-client-cert.pem", url);
2968 if (system(buf) != 0) {
2969 send_resp(dut, conn, SIGMA_ERROR,
2970 "errorCode,Failed to copy client "
2971 "certificate");
2972 return 0;
2973 }
2974
2975 snprintf(url, sizeof(url), "Certs/%s-key.pem", name);
2976 sigma_dut_print(dut, DUT_MSG_INFO, "Use pre-configured client "
2977 "private key from the device (%s)", url);
2978 if (!file_exists(url)) {
2979 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Requested "
2980 "private key file does not exist");
2981 return 0;
2982 }
2983 snprintf(buf, sizeof(buf), "cp %s next-client-key.pem", url);
2984 if (system(buf) != 0) {
2985 send_resp(dut, conn, SIGMA_ERROR,
2986 "errorCode,Failed to copy client key");
2987 return 0;
2988 }
2989 } else if (strncasecmp(path, "http:", 5) != 0 &&
2990 strncasecmp(path, "https:", 6) != 0) {
2991 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,"
2992 "Unsupported FilePath value");
2993 return 0;
2994 } else {
2995 snprintf(url, sizeof(url), "%s/%s.pem", path, name);
2996 sigma_dut_print(dut, DUT_MSG_INFO, "Downloading client "
2997 "certificate/key from %s", url);
2998 snprintf(buf, sizeof(buf),
2999 "wget -T 10 -t 3 -O next-client-cert.pem '%s'", url);
3000 if (system(buf) != 0) {
3001 send_resp(dut, conn, SIGMA_ERROR,
3002 "errorCode,Failed to download client "
3003 "certificate");
3004 return 0;
3005 }
3006
3007 if (system("cp next-client-cert.pem next-client-key.pem") != 0)
3008 {
3009 send_resp(dut, conn, SIGMA_ERROR,
3010 "errorCode,Failed to copy client key");
3011 return 0;
3012 }
3013 }
3014
3015 return 1;
3016}
3017
3018
3019static int cmd_sta_preset_testparameters_hs2_r2(struct sigma_dut *dut,
3020 struct sigma_conn *conn,
3021 const char *intf,
3022 struct sigma_cmd *cmd)
3023{
3024 const char *val;
3025
3026 val = get_param(cmd, "FileType");
3027 if (val && strcasecmp(val, "PPSMO") == 0)
3028 return download_ppsmo(dut, conn, intf, cmd);
3029 if (val && strcasecmp(val, "CERT") == 0)
3030 return download_cert(dut, conn, intf, cmd);
3031 if (val) {
3032 send_resp(dut, conn, SIGMA_ERROR,
3033 "ErrorCode,Unsupported FileType");
3034 return 0;
3035 }
3036
3037 return 1;
3038}
3039
3040
Ankita Bajaja2cb5672017-10-25 16:08:28 +05303041static int cmd_sta_preset_testparameters_oce(struct sigma_dut *dut,
3042 struct sigma_conn *conn,
3043 const char *intf,
3044 struct sigma_cmd *cmd)
3045{
3046 const char *val;
Ankita Bajaj1bde7942018-01-09 19:15:01 +05303047 char buf[1000];
3048 char text[20];
3049 unsigned char addr[ETH_ALEN];
Ankita Bajaja2cb5672017-10-25 16:08:28 +05303050
3051 val = get_param(cmd, "OCESupport");
3052 if (val && strcasecmp(val, "Disable") == 0) {
3053 if (wpa_command(intf, "SET oce 0") < 0) {
3054 send_resp(dut, conn, SIGMA_ERROR,
3055 "ErrorCode,Failed to disable OCE");
3056 return 0;
3057 }
3058 } else if (val && strcasecmp(val, "Enable") == 0) {
3059 if (wpa_command(intf, "SET oce 1") < 0) {
3060 send_resp(dut, conn, SIGMA_ERROR,
3061 "ErrorCode,Failed to enable OCE");
3062 return 0;
3063 }
3064 }
3065
vamsi krishnaa2799492017-12-05 14:28:01 +05303066 val = get_param(cmd, "FILScap");
3067 if (val && (atoi(val) == 1)) {
3068 if (wpa_command(intf, "SET disable_fils 0") < 0) {
3069 send_resp(dut, conn, SIGMA_ERROR,
3070 "ErrorCode,Failed to enable FILS");
3071 return 0;
3072 }
3073 } else if (val && (atoi(val) == 0)) {
3074 if (wpa_command(intf, "SET disable_fils 1") < 0) {
3075 send_resp(dut, conn, SIGMA_ERROR,
3076 "ErrorCode,Failed to disable FILS");
3077 return 0;
3078 }
3079 }
3080
Ankita Bajaj1bde7942018-01-09 19:15:01 +05303081 val = get_param(cmd, "FILSHLP");
3082 if (val && strcasecmp(val, "Enable") == 0) {
3083 if (get_wpa_status(get_station_ifname(), "address", text,
3084 sizeof(text)) < 0)
3085 return -2;
3086 hwaddr_aton(text, addr);
3087 snprintf(buf, sizeof(buf),
3088 "FILS_HLP_REQ_ADD ff:ff:ff:ff:ff:ff "
3089 "080045100140000040004011399e00000000ffffffff00440043"
3090 "012cb30001010600fd4f46410000000000000000000000000000"
3091 "000000000000"
3092 "%02x%02x%02x%02x%02x%02x"
3093 "0000000000000000000000000000000000000000000000000000"
3094 "0000000000000000000000000000000000000000000000000000"
3095 "0000000000000000000000000000000000000000000000000000"
3096 "0000000000000000000000000000000000000000000000000000"
3097 "0000000000000000000000000000000000000000000000000000"
3098 "0000000000000000000000000000000000000000000000000000"
3099 "0000000000000000000000000000000000000000000000000000"
3100 "0000000000000000000000000000000000000000638253633501"
3101 "013d0701000af549d29b390205dc3c12616e64726f69642d6468"
3102 "63702d382e302e30370a0103060f1a1c333a3b2b5000ff00",
3103 addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]);
3104 if (wpa_command(intf, buf)) {
3105 send_resp(dut, conn, SIGMA_ERROR,
3106 "ErrorCode,Failed to add HLP");
3107 return 0;
3108 }
3109 dut->fils_hlp = 1;
3110 }
3111
Ankita Bajaja2cb5672017-10-25 16:08:28 +05303112 return 1;
3113}
3114
3115
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003116static void ath_sta_set_noack(struct sigma_dut *dut, const char *intf,
3117 const char *val)
3118{
3119 int counter = 0;
3120 char token[50];
3121 char *result;
3122 char buf[100];
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05303123 char *saveptr;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003124
Peng Xub8fc5cc2017-05-10 17:27:28 -07003125 strlcpy(token, val, sizeof(token));
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003126 token[sizeof(token) - 1] = '\0';
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05303127 result = strtok_r(token, ":", &saveptr);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003128 while (result) {
3129 if (strcmp(result, "disable") == 0) {
3130 snprintf(buf, sizeof(buf),
3131 "iwpriv %s noackpolicy %d 1 0",
3132 intf, counter);
3133 } else {
3134 snprintf(buf, sizeof(buf),
3135 "iwpriv %s noackpolicy %d 1 1",
3136 intf, counter);
3137 }
3138 if (system(buf) != 0) {
3139 sigma_dut_print(dut, DUT_MSG_ERROR,
3140 "iwpriv noackpolicy failed");
3141 }
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05303142 result = strtok_r(NULL, ":", &saveptr);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003143 counter++;
3144 }
3145}
3146
3147
3148static void ath_sta_set_rts(struct sigma_dut *dut, const char *intf,
3149 const char *val)
3150{
3151 char buf[100];
3152
3153 snprintf(buf, sizeof(buf), "iwconfig %s rts %s", intf, val);
3154 if (system(buf) != 0) {
3155 sigma_dut_print(dut, DUT_MSG_ERROR, "iwconfig RTS failed");
3156 }
3157}
3158
3159
3160static void ath_sta_set_wmm(struct sigma_dut *dut, const char *intf,
3161 const char *val)
3162{
3163 char buf[100];
3164
3165 if (strcasecmp(val, "off") == 0) {
3166 snprintf(buf, sizeof(buf), "iwpriv %s wmm 0", intf);
3167 if (system(buf) != 0) {
3168 sigma_dut_print(dut, DUT_MSG_ERROR,
3169 "Failed to turn off WMM");
3170 }
3171 }
3172}
3173
3174
Amarnath Hullur Subramanyam75214d22018-02-04 19:17:11 -08003175static int wcn_sta_set_wmm(struct sigma_dut *dut, const char *intf,
3176 const char *val)
3177{
3178#ifdef NL80211_SUPPORT
3179 struct nl_msg *msg;
3180 int ret = 0;
3181 struct nlattr *params;
3182 int ifindex;
3183 int wmmenable = 1;
3184
3185 if (val &&
3186 (strcasecmp(val, "off") == 0 || strcmp(val, "0") == 0))
3187 wmmenable = 0;
3188
3189 ifindex = if_nametoindex(intf);
3190 if (ifindex == 0) {
3191 sigma_dut_print(dut, DUT_MSG_ERROR,
3192 "%s: Index for interface %s failed",
3193 __func__, intf);
3194 return -1;
3195 }
3196
3197 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
3198 NL80211_CMD_VENDOR)) ||
3199 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
3200 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
3201 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
3202 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
3203 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
3204 nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_WMM_ENABLE,
3205 wmmenable)) {
3206 sigma_dut_print(dut, DUT_MSG_ERROR,
3207 "%s: err in adding vendor_cmd and vendor_data",
3208 __func__);
3209 nlmsg_free(msg);
3210 return -1;
3211 }
3212 nla_nest_end(msg, params);
3213
3214 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
3215 if (ret) {
3216 sigma_dut_print(dut, DUT_MSG_ERROR,
3217 "%s: err in send_and_recv_msgs, ret=%d",
3218 __func__, ret);
3219 }
3220 return ret;
3221#else /* NL80211_SUPPORT */
3222 sigma_dut_print(dut, DUT_MSG_ERROR,
3223 "WMM cannot be changed without NL80211_SUPPORT defined");
3224 return -1;
3225#endif /* NL80211_SUPPORT */
3226}
3227
3228
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003229static void ath_sta_set_sgi(struct sigma_dut *dut, const char *intf,
3230 const char *val)
3231{
3232 char buf[100];
3233 int sgi20;
3234
3235 sgi20 = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0;
3236
3237 snprintf(buf, sizeof(buf), "iwpriv %s shortgi %d", intf, sgi20);
3238 if (system(buf) != 0)
3239 sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv shortgi failed");
3240}
3241
3242
3243static void ath_sta_set_11nrates(struct sigma_dut *dut, const char *intf,
3244 const char *val)
3245{
3246 char buf[100];
Pradeep Reddy POTTETI67376b72016-10-25 20:08:17 +05303247 int rate_code, v;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003248
3249 /* Disable Tx Beam forming when using a fixed rate */
3250 ath_disable_txbf(dut, intf);
3251
Pradeep Reddy POTTETI67376b72016-10-25 20:08:17 +05303252 v = atoi(val);
3253 if (v < 0 || v > 32) {
3254 sigma_dut_print(dut, DUT_MSG_ERROR,
3255 "Invalid Fixed MCS rate: %d", v);
3256 return;
3257 }
3258 rate_code = 0x80 + v;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003259
3260 snprintf(buf, sizeof(buf), "iwpriv %s set11NRates 0x%x",
3261 intf, rate_code);
3262 if (system(buf) != 0) {
3263 sigma_dut_print(dut, DUT_MSG_ERROR,
3264 "iwpriv set11NRates failed");
3265 }
3266
3267 /* Channel width gets messed up, fix this */
3268 snprintf(buf, sizeof(buf), "iwpriv %s chwidth %d", intf, dut->chwidth);
3269 if (system(buf) != 0)
3270 sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv chwidth failed");
3271}
3272
3273
Amarnath Hullur Subramanyamd5bb5732018-02-22 15:50:38 -08003274static void iwpriv_sta_set_amsdu(struct sigma_dut *dut, const char *intf,
3275 const char *val)
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003276{
3277 char buf[60];
3278
3279 if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0)
3280 snprintf(buf, sizeof(buf), "iwpriv %s amsdu 2", intf);
3281 else
3282 snprintf(buf, sizeof(buf), "iwpriv %s amsdu 1", intf);
3283
3284 if (system(buf) != 0)
3285 sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv amsdu failed");
3286}
3287
3288
Deepak Dhamdhere80356cb2016-03-28 16:48:32 -07003289static int iwpriv_sta_set_ampdu(struct sigma_dut *dut, const char *intf,
3290 int ampdu)
3291{
3292 char buf[60];
Amarnath Hullur Subramanyam63c590a2018-03-07 15:26:21 -08003293 int maxaggregation = 63;
Deepak Dhamdhere80356cb2016-03-28 16:48:32 -07003294
Amarnath Hullur Subramanyam63c590a2018-03-07 15:26:21 -08003295 if (ampdu)
3296 ampdu = maxaggregation;
Deepak Dhamdhere80356cb2016-03-28 16:48:32 -07003297 snprintf(buf, sizeof(buf), "iwpriv %s ampdu %d", intf, ampdu);
3298 if (system(buf) != 0) {
3299 sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv ampdu failed");
3300 return -1;
3301 }
3302
3303 return 0;
3304}
3305
3306
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003307static void ath_sta_set_stbc(struct sigma_dut *dut, const char *intf,
3308 const char *val)
3309{
3310 char buf[60];
3311
3312 snprintf(buf, sizeof(buf), "iwpriv %s tx_stbc %s", intf, val);
3313 if (system(buf) != 0) {
3314 sigma_dut_print(dut, DUT_MSG_ERROR,
3315 "iwpriv tx_stbc failed");
3316 }
3317
3318 snprintf(buf, sizeof(buf), "iwpriv %s rx_stbc %s", intf, val);
3319 if (system(buf) != 0) {
3320 sigma_dut_print(dut, DUT_MSG_ERROR,
3321 "iwpriv rx_stbc failed");
3322 }
3323}
3324
3325
3326static int wcn_sta_set_cts_width(struct sigma_dut *dut, const char *intf,
3327 const char *val)
3328{
3329 char buf[60];
3330
Peng Xucc317ed2017-05-18 16:44:37 -07003331 if (strcmp(val, "160") == 0) {
3332 snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 5", intf);
3333 } else if (strcmp(val, "80") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003334 snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 3", intf);
3335 } else if (strcmp(val, "40") == 0) {
3336 snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 2", intf);
3337 } else if (strcmp(val, "20") == 0) {
3338 snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 1", intf);
3339 } else if (strcasecmp(val, "Auto") == 0) {
3340 buf[0] = '\0';
3341 } else {
3342 sigma_dut_print(dut, DUT_MSG_ERROR,
3343 "WIDTH/CTS_WIDTH value not supported");
3344 return -1;
3345 }
3346
3347 if (buf[0] != '\0' && system(buf) != 0) {
3348 sigma_dut_print(dut, DUT_MSG_ERROR,
3349 "Failed to set WIDTH/CTS_WIDTH");
3350 return -1;
3351 }
3352
3353 return 0;
3354}
3355
3356
3357int ath_set_width(struct sigma_dut *dut, struct sigma_conn *conn,
3358 const char *intf, const char *val)
3359{
3360 char buf[60];
3361
3362 if (strcasecmp(val, "Auto") == 0) {
3363 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 0", intf);
3364 dut->chwidth = 0;
3365 } else if (strcasecmp(val, "20") == 0) {
3366 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 0", intf);
3367 dut->chwidth = 0;
3368 } else if (strcasecmp(val, "40") == 0) {
3369 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 1", intf);
3370 dut->chwidth = 1;
3371 } else if (strcasecmp(val, "80") == 0) {
3372 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 2", intf);
3373 dut->chwidth = 2;
3374 } else if (strcasecmp(val, "160") == 0) {
3375 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 3", intf);
3376 dut->chwidth = 3;
3377 } else {
3378 send_resp(dut, conn, SIGMA_ERROR,
3379 "ErrorCode,WIDTH not supported");
3380 return -1;
3381 }
3382
3383 if (system(buf) != 0) {
3384 sigma_dut_print(dut, DUT_MSG_ERROR,
3385 "iwpriv chwidth failed");
3386 }
3387
3388 return 0;
3389}
3390
3391
3392static int wcn_sta_set_sp_stream(struct sigma_dut *dut, const char *intf,
3393 const char *val)
3394{
3395 char buf[60];
Arif Hussainac6c5112018-05-25 17:34:00 -07003396 int sta_nss;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003397
Amarnath Hullur Subramanyamd5374fa2018-02-25 19:00:24 -08003398 if (strcmp(val, "1SS") == 0 || strcmp(val, "1") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003399 snprintf(buf, sizeof(buf), "iwpriv %s nss 1", intf);
Arif Hussainac6c5112018-05-25 17:34:00 -07003400 sta_nss = 1;
Amarnath Hullur Subramanyamd5374fa2018-02-25 19:00:24 -08003401 } else if (strcmp(val, "2SS") == 0 || strcmp(val, "2") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003402 snprintf(buf, sizeof(buf), "iwpriv %s nss 2", intf);
Arif Hussainac6c5112018-05-25 17:34:00 -07003403 sta_nss = 2;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003404 } else {
3405 sigma_dut_print(dut, DUT_MSG_ERROR,
3406 "SP_STREAM value not supported");
3407 return -1;
3408 }
3409
3410 if (system(buf) != 0) {
3411 sigma_dut_print(dut, DUT_MSG_ERROR,
3412 "Failed to set SP_STREAM");
3413 return -1;
3414 }
3415
Arif Hussainac6c5112018-05-25 17:34:00 -07003416 dut->sta_nss = sta_nss;
3417
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003418 return 0;
3419}
3420
3421
Pradeep Reddy POTTETI4a1f6b32016-11-23 13:15:21 +05303422static void wcn_sta_set_stbc(struct sigma_dut *dut, const char *intf,
3423 const char *val)
3424{
3425 char buf[60];
3426
3427 snprintf(buf, sizeof(buf), "iwpriv %s tx_stbc %s", intf, val);
3428 if (system(buf) != 0)
3429 sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv tx_stbc failed");
3430
3431 snprintf(buf, sizeof(buf), "iwpriv %s rx_stbc %s", intf, val);
3432 if (system(buf) != 0)
3433 sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv rx_stbc failed");
3434}
3435
3436
Ashwini Patil68d02cd2017-01-10 15:39:16 +05303437static int mbo_set_cellular_data_capa(struct sigma_dut *dut,
3438 struct sigma_conn *conn,
3439 const char *intf, int capa)
3440{
3441 char buf[32];
3442
3443 if (capa > 0 && capa < 4) {
3444 snprintf(buf, sizeof(buf), "SET mbo_cell_capa %d", capa);
3445 if (wpa_command(intf, buf) < 0) {
3446 send_resp(dut, conn, SIGMA_ERROR,
3447 "ErrorCode, Failed to set cellular data capability");
3448 return 0;
3449 }
3450 return 1;
3451 }
3452
3453 sigma_dut_print(dut, DUT_MSG_ERROR,
3454 "Invalid Cellular data capability: %d", capa);
3455 send_resp(dut, conn, SIGMA_INVALID,
3456 "ErrorCode,Invalid cellular data capability");
3457 return 0;
3458}
3459
3460
Ashwini Patil9183fdb2017-04-13 16:58:25 +05303461static int mbo_set_roaming(struct sigma_dut *dut, struct sigma_conn *conn,
3462 const char *intf, const char *val)
3463{
3464 if (strcasecmp(val, "Disable") == 0) {
3465 if (wpa_command(intf, "SET roaming 0") < 0) {
3466 send_resp(dut, conn, SIGMA_ERROR,
3467 "ErrorCode,Failed to disable roaming");
3468 return 0;
3469 }
3470 return 1;
3471 }
3472
3473 if (strcasecmp(val, "Enable") == 0) {
3474 if (wpa_command(intf, "SET roaming 1") < 0) {
3475 send_resp(dut, conn, SIGMA_ERROR,
3476 "ErrorCode,Failed to enable roaming");
3477 return 0;
3478 }
3479 return 1;
3480 }
3481
3482 sigma_dut_print(dut, DUT_MSG_ERROR,
3483 "Invalid value provided for roaming: %s", val);
3484 send_resp(dut, conn, SIGMA_INVALID,
3485 "ErrorCode,Unknown value provided for Roaming");
3486 return 0;
3487}
3488
3489
Ashwini Patila75de5a2017-04-13 16:35:05 +05303490static int mbo_set_assoc_disallow(struct sigma_dut *dut,
3491 struct sigma_conn *conn,
3492 const char *intf, const char *val)
3493{
3494 if (strcasecmp(val, "Disable") == 0) {
3495 if (wpa_command(intf, "SET ignore_assoc_disallow 1") < 0) {
3496 send_resp(dut, conn, SIGMA_ERROR,
3497 "ErrorCode,Failed to disable Assoc_disallow");
3498 return 0;
3499 }
3500 return 1;
3501 }
3502
3503 if (strcasecmp(val, "Enable") == 0) {
3504 if (wpa_command(intf, "SET ignore_assoc_disallow 0") < 0) {
3505 send_resp(dut, conn, SIGMA_ERROR,
3506 "ErrorCode,Failed to enable Assoc_disallow");
3507 return 0;
3508 }
3509 return 1;
3510 }
3511
3512 sigma_dut_print(dut, DUT_MSG_ERROR,
3513 "Invalid value provided for Assoc_disallow: %s", val);
3514 send_resp(dut, conn, SIGMA_INVALID,
3515 "ErrorCode,Unknown value provided for Assoc_disallow");
3516 return 0;
3517}
3518
3519
Ashwini Patilc63161e2017-04-13 16:30:23 +05303520static int mbo_set_bss_trans_req(struct sigma_dut *dut, struct sigma_conn *conn,
3521 const char *intf, const char *val)
3522{
3523 if (strcasecmp(val, "Reject") == 0) {
3524 if (wpa_command(intf, "SET reject_btm_req_reason 1") < 0) {
3525 send_resp(dut, conn, SIGMA_ERROR,
3526 "ErrorCode,Failed to Reject BTM Request");
3527 return 0;
3528 }
3529 return 1;
3530 }
3531
3532 if (strcasecmp(val, "Accept") == 0) {
3533 if (wpa_command(intf, "SET reject_btm_req_reason 0") < 0) {
3534 send_resp(dut, conn, SIGMA_ERROR,
3535 "ErrorCode,Failed to Accept BTM Request");
3536 return 0;
3537 }
3538 return 1;
3539 }
3540
3541 sigma_dut_print(dut, DUT_MSG_ERROR,
3542 "Invalid value provided for BSS_Transition: %s", val);
3543 send_resp(dut, conn, SIGMA_INVALID,
3544 "ErrorCode,Unknown value provided for BSS_Transition");
3545 return 0;
3546}
3547
3548
Ashwini Patil00402582017-04-13 12:29:39 +05303549static int mbo_set_non_pref_ch_list(struct sigma_dut *dut,
3550 struct sigma_conn *conn,
3551 const char *intf,
3552 struct sigma_cmd *cmd)
3553{
3554 const char *ch, *pref, *op_class, *reason;
3555 char buf[120];
3556 int len, ret;
3557
3558 pref = get_param(cmd, "Ch_Pref");
3559 if (!pref)
3560 return 1;
3561
3562 if (strcasecmp(pref, "clear") == 0) {
3563 free(dut->non_pref_ch_list);
3564 dut->non_pref_ch_list = NULL;
3565 } else {
3566 op_class = get_param(cmd, "Ch_Op_Class");
3567 if (!op_class) {
3568 send_resp(dut, conn, SIGMA_INVALID,
3569 "ErrorCode,Ch_Op_Class not provided");
3570 return 0;
3571 }
3572
3573 ch = get_param(cmd, "Ch_Pref_Num");
3574 if (!ch) {
3575 send_resp(dut, conn, SIGMA_INVALID,
3576 "ErrorCode,Ch_Pref_Num not provided");
3577 return 0;
3578 }
3579
3580 reason = get_param(cmd, "Ch_Reason_Code");
3581 if (!reason) {
3582 send_resp(dut, conn, SIGMA_INVALID,
3583 "ErrorCode,Ch_Reason_Code not provided");
3584 return 0;
3585 }
3586
3587 if (!dut->non_pref_ch_list) {
3588 dut->non_pref_ch_list =
3589 calloc(1, NON_PREF_CH_LIST_SIZE);
3590 if (!dut->non_pref_ch_list) {
3591 send_resp(dut, conn, SIGMA_ERROR,
3592 "ErrorCode,Failed to allocate memory for non_pref_ch_list");
3593 return 0;
3594 }
3595 }
3596 len = strlen(dut->non_pref_ch_list);
3597 ret = snprintf(dut->non_pref_ch_list + len,
3598 NON_PREF_CH_LIST_SIZE - len,
3599 " %s:%s:%s:%s", op_class, ch, pref, reason);
3600 if (ret > 0 && ret < NON_PREF_CH_LIST_SIZE - len) {
3601 sigma_dut_print(dut, DUT_MSG_DEBUG, "non_pref_list: %s",
3602 dut->non_pref_ch_list);
3603 } else {
3604 sigma_dut_print(dut, DUT_MSG_ERROR,
3605 "snprintf failed for non_pref_list, ret = %d",
3606 ret);
3607 send_resp(dut, conn, SIGMA_ERROR,
3608 "ErrorCode,snprintf failed");
3609 free(dut->non_pref_ch_list);
3610 dut->non_pref_ch_list = NULL;
3611 return 0;
3612 }
3613 }
3614
3615 ret = snprintf(buf, sizeof(buf), "SET non_pref_chan%s",
3616 dut->non_pref_ch_list ? dut->non_pref_ch_list : " ");
3617 if (ret < 0 || ret >= (int) sizeof(buf)) {
3618 sigma_dut_print(dut, DUT_MSG_DEBUG,
3619 "snprintf failed for set non_pref_chan, ret: %d",
3620 ret);
3621 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,snprint failed");
3622 return 0;
3623 }
3624
3625 if (wpa_command(intf, buf) < 0) {
3626 send_resp(dut, conn, SIGMA_ERROR,
3627 "ErrorCode,Failed to set non-preferred channel list");
3628 return 0;
3629 }
3630
3631 return 1;
3632}
3633
3634
Amarnath Hullur Subramanyam474a17d2018-02-22 18:45:54 -08003635#ifdef NL80211_SUPPORT
Amarnath Hullur Subramanyamae8a2d92018-03-01 06:32:21 -08003636
Amarnath Hullur Subramanyam474a17d2018-02-22 18:45:54 -08003637static int sta_set_he_fragmentation(struct sigma_dut *dut, const char *intf,
3638 enum he_fragmentation_val frag)
3639{
3640 struct nl_msg *msg;
3641 int ret = 0;
3642 struct nlattr *params;
3643 int ifindex;
3644
3645 ifindex = if_nametoindex(intf);
3646 if (ifindex == 0) {
3647 sigma_dut_print(dut, DUT_MSG_ERROR,
3648 "%s: Index for interface %s failed",
3649 __func__, intf);
3650 return -1;
3651 }
3652
3653 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
3654 NL80211_CMD_VENDOR)) ||
3655 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
3656 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
3657 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
3658 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
3659 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
3660 nla_put_u8(msg,
3661 QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_FRAGMENTATION,
3662 frag)) {
3663 sigma_dut_print(dut, DUT_MSG_ERROR,
3664 "%s: err in adding vendor_cmd and vendor_data",
3665 __func__);
3666 nlmsg_free(msg);
3667 return -1;
3668 }
3669 nla_nest_end(msg, params);
3670
3671 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
3672 if (ret) {
3673 sigma_dut_print(dut, DUT_MSG_ERROR,
3674 "%s: err in send_and_recv_msgs, ret=%d",
3675 __func__, ret);
3676 }
3677 return ret;
3678}
Amarnath Hullur Subramanyamae8a2d92018-03-01 06:32:21 -08003679
3680
Subhani Shaik8e7a3052018-04-24 14:03:00 -07003681static int sta_set_he_ltf(struct sigma_dut *dut, const char *intf,
3682 enum qca_wlan_he_ltf_cfg ltf)
3683{
3684 struct nl_msg *msg;
3685 int ret = 0;
3686 struct nlattr *params;
3687 int ifindex;
3688
3689 ifindex = if_nametoindex(intf);
3690 if (ifindex == 0) {
3691 sigma_dut_print(dut, DUT_MSG_ERROR,
3692 "%s: Index for interface %s failed",
3693 __func__, intf);
3694 return -1;
3695 }
3696
3697 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
3698 NL80211_CMD_VENDOR)) ||
3699 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
3700 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
3701 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
3702 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
3703 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
3704 nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_LTF,
3705 ltf)) {
3706 sigma_dut_print(dut, DUT_MSG_ERROR,
3707 "%s: err in adding vendor_cmd and vendor_data",
3708 __func__);
3709 nlmsg_free(msg);
3710 return -1;
3711 }
3712 nla_nest_end(msg, params);
3713
3714 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
3715 if (ret) {
3716 sigma_dut_print(dut, DUT_MSG_ERROR,
3717 "%s: err in send_and_recv_msgs, ret=%d",
3718 __func__, ret);
3719 }
3720 return ret;
3721}
3722
3723
Amarnath Hullur Subramanyamae8a2d92018-03-01 06:32:21 -08003724static int nlvendor_sta_set_noack(struct sigma_dut *dut, const char *intf,
3725 int noack, enum qca_wlan_ac_type ac)
3726{
3727 struct nl_msg *msg;
3728 int ret = 0;
3729 struct nlattr *params;
3730 int ifindex;
3731
3732 ifindex = if_nametoindex(intf);
3733 if (ifindex == 0) {
3734 sigma_dut_print(dut, DUT_MSG_ERROR,
3735 "%s: Index for interface %s failed",
3736 __func__, intf);
3737 return -1;
3738 }
3739
3740 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
3741 NL80211_CMD_VENDOR)) ||
3742 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
3743 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
3744 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
3745 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
3746 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
3747 nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ENABLE_NO_ACK,
3748 noack) ||
3749 nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_NO_ACK_AC,
3750 ac)) {
3751 sigma_dut_print(dut, DUT_MSG_ERROR,
3752 "%s: err in adding vendor_cmd and vendor_data",
3753 __func__);
3754 nlmsg_free(msg);
3755 return -1;
3756 }
3757 nla_nest_end(msg, params);
3758
3759 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
3760 if (ret) {
3761 sigma_dut_print(dut, DUT_MSG_ERROR,
3762 "%s: err in send_and_recv_msgs, ret=%d",
3763 __func__, ret);
3764 }
3765 return ret;
3766}
3767
3768
3769static void wcn_sta_set_noack(struct sigma_dut *dut, const char *intf,
3770 const char *val)
3771{
3772 int noack, ret;
3773 char token[100];
3774 char *result;
3775 char *saveptr;
3776 enum qca_wlan_ac_type ac = QCA_WLAN_AC_BE;
3777
3778 strlcpy(token, val, sizeof(token));
3779 token[sizeof(token) - 1] = '\0';
3780 result = strtok_r(token, ":", &saveptr);
3781 while (result) {
3782 noack = strcasecmp(result, "Disable") != 0;
3783 ret = nlvendor_sta_set_noack(dut, intf, noack, ac);
3784 if (ret) {
3785 sigma_dut_print(dut, DUT_MSG_ERROR,
3786 "nlvendor_sta_set_noack failed for ac:%d, ret:%d",
3787 ac, ret);
3788 }
3789 result = strtok_r(NULL, ":", &saveptr);
3790 ac++;
3791 }
3792}
3793
Amarnath Hullur Subramanyam474a17d2018-02-22 18:45:54 -08003794#endif /* NL80211_SUPPORT */
3795
3796
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003797static int cmd_sta_preset_testparameters(struct sigma_dut *dut,
3798 struct sigma_conn *conn,
3799 struct sigma_cmd *cmd)
3800{
3801 const char *intf = get_param(cmd, "Interface");
3802 const char *val;
3803
3804 val = get_param(cmd, "Program");
Peng Xue9fa7952017-05-09 15:59:49 -07003805 if (val && strcasecmp(val, "HS2-R2") == 0)
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003806 return cmd_sta_preset_testparameters_hs2_r2(dut, conn, intf,
3807 cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003808
priyadharshini gowthamand66913a2016-07-29 15:11:17 -07003809 if (val && strcasecmp(val, "LOC") == 0)
3810 return loc_cmd_sta_preset_testparameters(dut, conn, cmd);
3811
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003812#ifdef ANDROID_NAN
3813 if (val && strcasecmp(val, "NAN") == 0)
3814 return nan_cmd_sta_preset_testparameters(dut, conn, cmd);
3815#endif /* ANDROID_NAN */
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -07003816#ifdef MIRACAST
3817 if (val && (strcasecmp(val, "WFD") == 0 ||
3818 strcasecmp(val, "DisplayR2") == 0))
3819 return miracast_preset_testparameters(dut, conn, cmd);
3820#endif /* MIRACAST */
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003821
Ashwini Patil68d02cd2017-01-10 15:39:16 +05303822 if (val && strcasecmp(val, "MBO") == 0) {
3823 val = get_param(cmd, "Cellular_Data_Cap");
3824 if (val &&
3825 mbo_set_cellular_data_capa(dut, conn, intf, atoi(val)) == 0)
3826 return 0;
Ashwini Patil00402582017-04-13 12:29:39 +05303827
3828 val = get_param(cmd, "Ch_Pref");
3829 if (val && mbo_set_non_pref_ch_list(dut, conn, intf, cmd) == 0)
3830 return 0;
3831
Ashwini Patilc63161e2017-04-13 16:30:23 +05303832 val = get_param(cmd, "BSS_Transition");
3833 if (val && mbo_set_bss_trans_req(dut, conn, intf, val) == 0)
3834 return 0;
3835
Ashwini Patila75de5a2017-04-13 16:35:05 +05303836 val = get_param(cmd, "Assoc_Disallow");
3837 if (val && mbo_set_assoc_disallow(dut, conn, intf, val) == 0)
3838 return 0;
3839
Ashwini Patil9183fdb2017-04-13 16:58:25 +05303840 val = get_param(cmd, "Roaming");
3841 if (val && mbo_set_roaming(dut, conn, intf, val) == 0)
3842 return 0;
3843
Ashwini Patil68d02cd2017-01-10 15:39:16 +05303844 return 1;
3845 }
3846
Ankita Bajaja2cb5672017-10-25 16:08:28 +05303847 if (val && strcasecmp(val, "OCE") == 0)
3848 return cmd_sta_preset_testparameters_oce(dut, conn, intf, cmd);
3849
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003850#if 0
3851 val = get_param(cmd, "Supplicant");
3852 if (val && strcasecmp(val, "Default") != 0) {
3853 send_resp(dut, conn, SIGMA_ERROR,
3854 "ErrorCode,Only default(Vendor) supplicant "
3855 "supported");
3856 return 0;
3857 }
3858#endif
3859
3860 val = get_param(cmd, "RTS");
3861 if (val) {
3862 switch (get_driver_type()) {
3863 case DRIVER_ATHEROS:
3864 ath_sta_set_rts(dut, intf, val);
3865 break;
3866 default:
3867#if 0
3868 send_resp(dut, conn, SIGMA_ERROR,
3869 "ErrorCode,Setting RTS not supported");
3870 return 0;
3871#else
3872 sigma_dut_print(dut, DUT_MSG_DEBUG,
3873 "Setting RTS not supported");
3874 break;
3875#endif
3876 }
3877 }
3878
3879#if 0
3880 val = get_param(cmd, "FRGMNT");
3881 if (val) {
3882 /* TODO */
3883 send_resp(dut, conn, SIGMA_ERROR,
3884 "ErrorCode,Setting FRGMNT not supported");
3885 return 0;
3886 }
3887#endif
3888
3889#if 0
3890 val = get_param(cmd, "Preamble");
3891 if (val) {
3892 /* TODO: Long/Short */
3893 send_resp(dut, conn, SIGMA_ERROR,
3894 "ErrorCode,Setting Preamble not supported");
3895 return 0;
3896 }
3897#endif
3898
3899 val = get_param(cmd, "Mode");
3900 if (val) {
3901 if (strcmp(val, "11b") == 0 ||
3902 strcmp(val, "11g") == 0 ||
3903 strcmp(val, "11a") == 0 ||
3904 strcmp(val, "11n") == 0 ||
3905 strcmp(val, "11ng") == 0 ||
3906 strcmp(val, "11nl") == 0 ||
3907 strcmp(val, "11nl(nabg)") == 0 ||
3908 strcmp(val, "AC") == 0 ||
3909 strcmp(val, "11AC") == 0 ||
3910 strcmp(val, "11ac") == 0 ||
3911 strcmp(val, "11na") == 0 ||
Amarnath Hullur Subramanyamb0db2712018-01-30 19:40:35 -08003912 strcmp(val, "11an") == 0 ||
3913 strcmp(val, "11ax") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003914 /* STA supports all modes by default */
3915 } else {
3916 send_resp(dut, conn, SIGMA_ERROR,
3917 "ErrorCode,Setting Mode not supported");
3918 return 0;
3919 }
Amarnath Hullur Subramanyam97d0e532018-01-31 02:53:02 -08003920
3921 /* Change the mode only in case of testbed for HE program
3922 * and for 11a and 11g modes only. */
3923 if (dut->program == PROGRAM_HE &&
3924 dut->device_type == STA_testbed) {
3925 int phymode;
3926 char buf[60];
3927
3928 if (strcmp(val, "11a") == 0) {
Amarnath Hullur Subramanyam94dfaf02018-03-02 19:26:57 -08003929 phymode = 1; /* IEEE80211_MODE_11A */
3930 } else if (strcmp(val, "11g") == 0) {
3931 phymode = 3; /* IEEE80211_MODE_11G */
3932 } else if (strcmp(val, "11b") == 0) {
3933 phymode = 2; /* IEEE80211_MODE_11B */
3934 } else if (strcmp(val, "11n") == 0 ||
3935 strcmp(val, "11nl") == 0 ||
3936 strcmp(val, "11nl(nabg)") == 0) {
3937 phymode = 22; /* IEEE80211_MODE_11AGN */
3938 } else if (strcmp(val, "11ng") == 0) {
3939 phymode = 13; /* IEEE80211_MODE_11NG_HT40 */
3940 } else if (strcmp(val, "AC") == 0 ||
3941 strcasecmp(val, "11AC") == 0) {
3942 phymode = 19; /* IEEE80211_MODE_11AC_VHT80 */
3943 } else if (strcmp(val, "11na") == 0 ||
3944 strcasecmp(val, "11an") == 0) {
3945 phymode = 14; /* IEEE80211_MODE_11NA_HT40 */
3946 } else if (strcmp(val, "11ax") == 0) {
3947 phymode = 0; /* IEEE80211_MODE_AUTO */
Amarnath Hullur Subramanyam97d0e532018-01-31 02:53:02 -08003948 } else {
3949 sigma_dut_print(dut, DUT_MSG_DEBUG,
3950 "Ignoring mode change for mode: %s",
3951 val);
3952 phymode = -1;
3953 }
3954 if (phymode != -1) {
3955 snprintf(buf, sizeof(buf),
3956 "iwpriv %s setphymode %d",
3957 intf, phymode);
3958 if (system(buf) != 0) {
3959 sigma_dut_print(dut, DUT_MSG_ERROR,
3960 "iwpriv setting of phymode failed");
3961 }
3962 }
3963 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003964 }
3965
3966 val = get_param(cmd, "wmm");
3967 if (val) {
3968 switch (get_driver_type()) {
3969 case DRIVER_ATHEROS:
3970 ath_sta_set_wmm(dut, intf, val);
3971 break;
Amarnath Hullur Subramanyam75214d22018-02-04 19:17:11 -08003972 case DRIVER_WCN:
3973 wcn_sta_set_wmm(dut, intf, val);
3974 break;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02003975 default:
3976 sigma_dut_print(dut, DUT_MSG_DEBUG,
3977 "Setting wmm not supported");
3978 break;
3979 }
3980 }
3981
3982 val = get_param(cmd, "Powersave");
3983 if (val) {
3984 if (strcmp(val, "0") == 0 || strcasecmp(val, "off") == 0) {
3985 if (wpa_command(get_station_ifname(),
3986 "P2P_SET ps 0") < 0)
3987 return -2;
3988 /* Make sure test modes are disabled */
3989 wpa_command(get_station_ifname(), "P2P_SET ps 98");
3990 wpa_command(get_station_ifname(), "P2P_SET ps 96");
3991 } else if (strcmp(val, "1") == 0 ||
3992 strcasecmp(val, "PSPoll") == 0 ||
3993 strcasecmp(val, "on") == 0) {
3994 /* Disable default power save mode */
3995 wpa_command(get_station_ifname(), "P2P_SET ps 0");
3996 /* Enable PS-Poll test mode */
3997 if (wpa_command(get_station_ifname(),
3998 "P2P_SET ps 97") < 0 ||
3999 wpa_command(get_station_ifname(),
4000 "P2P_SET ps 99") < 0)
4001 return -2;
4002 } else if (strcmp(val, "2") == 0 ||
4003 strcasecmp(val, "Fast") == 0) {
4004 /* TODO */
4005 send_resp(dut, conn, SIGMA_ERROR,
4006 "ErrorCode,Powersave=Fast not supported");
4007 return 0;
4008 } else if (strcmp(val, "3") == 0 ||
4009 strcasecmp(val, "PSNonPoll") == 0) {
4010 /* Make sure test modes are disabled */
4011 wpa_command(get_station_ifname(), "P2P_SET ps 98");
4012 wpa_command(get_station_ifname(), "P2P_SET ps 96");
4013
4014 /* Enable default power save mode */
4015 if (wpa_command(get_station_ifname(),
4016 "P2P_SET ps 1") < 0)
4017 return -2;
4018 } else
4019 return -1;
4020 }
4021
4022 val = get_param(cmd, "NoAck");
4023 if (val) {
4024 switch (get_driver_type()) {
4025 case DRIVER_ATHEROS:
4026 ath_sta_set_noack(dut, intf, val);
4027 break;
Amarnath Hullur Subramanyamae8a2d92018-03-01 06:32:21 -08004028#ifdef NL80211_SUPPORT
4029 case DRIVER_WCN:
4030 wcn_sta_set_noack(dut, intf, val);
4031 break;
4032#endif /* NL80211_SUPPORT */
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004033 default:
4034 send_resp(dut, conn, SIGMA_ERROR,
4035 "ErrorCode,Setting NoAck not supported");
4036 return 0;
4037 }
4038 }
4039
4040 val = get_param(cmd, "IgnoreChswitchProhibit");
4041 if (val) {
4042 /* TODO: Enabled/disabled */
4043 if (strcasecmp(val, "Enabled") == 0) {
4044 send_resp(dut, conn, SIGMA_ERROR,
4045 "ErrorCode,Enabling IgnoreChswitchProhibit "
4046 "not supported");
4047 return 0;
4048 }
4049 }
4050
4051 val = get_param(cmd, "TDLS");
4052 if (val) {
4053 if (strcasecmp(val, "Disabled") == 0) {
4054 if (wpa_command(intf, "SET tdls_disabled 1")) {
4055 send_resp(dut, conn, SIGMA_ERROR,
4056 "ErrorCode,Failed to disable TDLS");
4057 return 0;
4058 }
4059 } else if (strcasecmp(val, "Enabled") == 0) {
4060 if (wpa_command(intf, "SET tdls_disabled 0")) {
4061 send_resp(dut, conn, SIGMA_ERROR,
4062 "ErrorCode,Failed to enable TDLS");
4063 return 0;
4064 }
4065 } else {
4066 send_resp(dut, conn, SIGMA_ERROR,
4067 "ErrorCode,Unsupported TDLS value");
4068 return 0;
4069 }
4070 }
4071
4072 val = get_param(cmd, "TDLSmode");
4073 if (val) {
4074 if (strcasecmp(val, "Default") == 0) {
4075 wpa_command(intf, "SET tdls_testing 0");
4076 } else if (strcasecmp(val, "APProhibit") == 0) {
4077 if (wpa_command(intf, "SET tdls_testing 0x400")) {
4078 send_resp(dut, conn, SIGMA_ERROR,
4079 "ErrorCode,Failed to enable ignore "
4080 "APProhibit TDLS mode");
4081 return 0;
4082 }
4083 } else if (strcasecmp(val, "HiLoMac") == 0) {
4084 /* STA should respond with TDLS setup req for a TDLS
4085 * setup req */
4086 if (wpa_command(intf, "SET tdls_testing 0x80")) {
4087 send_resp(dut, conn, SIGMA_ERROR,
4088 "ErrorCode,Failed to enable HiLoMac "
4089 "TDLS mode");
4090 return 0;
4091 }
4092 } else if (strcasecmp(val, "WeakSecurity") == 0) {
4093 /*
4094 * Since all security modes are enabled by default when
4095 * Sigma control is used, there is no need to do
4096 * anything here.
4097 */
4098 } else if (strcasecmp(val, "ExistLink") == 0) {
4099 /*
4100 * Since we allow new TDLS Setup Request even if there
4101 * is an existing link, nothing needs to be done for
4102 * this.
4103 */
4104 } else {
4105 /* TODO:
4106 * ExistLink: STA should send TDLS setup req even if
4107 * direct link already exists
4108 */
4109 send_resp(dut, conn, SIGMA_ERROR,
4110 "ErrorCode,Unsupported TDLSmode value");
4111 return 0;
4112 }
4113 }
4114
4115 val = get_param(cmd, "FakePubKey");
4116 if (val && atoi(val) && wpa_command(intf, "SET wps_corrupt_pkhash 1")) {
4117 send_resp(dut, conn, SIGMA_ERROR,
4118 "ErrorCode,Failed to enable FakePubKey");
4119 return 0;
4120 }
4121
Amarnath Hullur Subramanyamae1042b2018-02-22 21:52:52 -08004122#ifdef NL80211_SUPPORT
4123 val = get_param(cmd, "FrgmntSupport");
4124 if (val) {
4125 if (strcasecmp(val, "Enable") == 0) {
4126 if (sta_set_he_fragmentation(dut, intf,
4127 HE_FRAG_LEVEL1)) {
4128 send_resp(dut, conn, SIGMA_ERROR,
4129 "ErrorCode,Failed to enable HE Fragmentation");
4130 return 0;
4131 }
4132 } else if (strcasecmp(val, "Disable") == 0) {
4133 if (sta_set_he_fragmentation(dut, intf,
4134 HE_FRAG_DISABLE)) {
4135 send_resp(dut, conn, SIGMA_ERROR,
4136 "ErrorCode,Failed to disable HE Fragmentation");
4137 return 0;
4138 }
4139 }
4140 }
4141#endif /* NL80211_SUPPORT */
4142
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004143 return 1;
4144}
4145
4146
4147static const char * ath_get_radio_name(const char *radio_name)
4148{
4149 if (radio_name == NULL)
4150 return "wifi0";
4151 if (strcmp(radio_name, "wifi1") == 0)
4152 return "wifi1";
4153 if (strcmp(radio_name, "wifi2") == 0)
4154 return "wifi2";
4155 return "wifi0";
4156}
4157
4158
4159static void ath_sta_set_txsp_stream(struct sigma_dut *dut, const char *intf,
4160 const char *val)
4161{
4162 char buf[60];
4163 unsigned int vht_mcsmap = 0;
4164 int txchainmask = 0;
4165 const char *basedev = ath_get_radio_name(sigma_radio_ifname[0]);
4166
4167 if (strcasecmp(val, "1") == 0 || strcasecmp(val, "1SS") == 0) {
4168 if (dut->testbed_flag_txsp == 1) {
4169 vht_mcsmap = 0xfffc;
4170 dut->testbed_flag_txsp = 0;
4171 } else {
4172 vht_mcsmap = 0xfffe;
4173 }
4174 txchainmask = 1;
4175 } else if (strcasecmp(val, "2") == 0 || strcasecmp(val, "2SS") == 0) {
4176 if (dut->testbed_flag_txsp == 1) {
4177 vht_mcsmap = 0xfff0;
4178 dut->testbed_flag_txsp = 0;
4179 } else {
4180 vht_mcsmap = 0xfffa;
4181 }
4182 txchainmask = 3;
4183 } else if (strcasecmp(val, "3") == 0 || strcasecmp(val, "3SS") == 0) {
4184 if (dut->testbed_flag_txsp == 1) {
4185 vht_mcsmap = 0xffc0;
4186 dut->testbed_flag_txsp = 0;
4187 } else {
4188 vht_mcsmap = 0xffea;
4189 }
4190 txchainmask = 7;
4191 } else if (strcasecmp(val, "4") == 0 || strcasecmp(val, "4SS") == 0) {
4192 if (dut->testbed_flag_txsp == 1) {
4193 vht_mcsmap = 0xff00;
4194 dut->testbed_flag_txsp = 0;
4195 } else {
4196 vht_mcsmap = 0xffaa;
4197 }
4198 txchainmask = 15;
4199 } else {
4200 if (dut->testbed_flag_txsp == 1) {
4201 vht_mcsmap = 0xffc0;
4202 dut->testbed_flag_txsp = 0;
4203 } else {
4204 vht_mcsmap = 0xffea;
4205 }
4206 }
4207
4208 if (txchainmask) {
4209 snprintf(buf, sizeof(buf), "iwpriv %s txchainmask %d",
4210 basedev, txchainmask);
4211 if (system(buf) != 0) {
4212 sigma_dut_print(dut, DUT_MSG_ERROR,
4213 "iwpriv txchainmask failed");
4214 }
4215 }
4216
4217 snprintf(buf, sizeof(buf), "iwpriv %s vht_mcsmap 0x%04x",
4218 intf, vht_mcsmap);
4219 if (system(buf) != 0) {
4220 sigma_dut_print(dut, DUT_MSG_ERROR,
4221 "iwpriv %s vht_mcsmap 0x%04x failed",
4222 intf, vht_mcsmap);
4223 }
4224}
4225
4226
4227static void ath_sta_set_rxsp_stream(struct sigma_dut *dut, const char *intf,
4228 const char *val)
4229{
4230 char buf[60];
4231 unsigned int vht_mcsmap = 0;
4232 int rxchainmask = 0;
4233 const char *basedev = ath_get_radio_name(sigma_radio_ifname[0]);
4234
4235 if (strcasecmp(val, "1") == 0 || strcasecmp(val, "1SS") == 0) {
4236 if (dut->testbed_flag_rxsp == 1) {
4237 vht_mcsmap = 0xfffc;
4238 dut->testbed_flag_rxsp = 0;
4239 } else {
4240 vht_mcsmap = 0xfffe;
4241 }
4242 rxchainmask = 1;
4243 } else if (strcasecmp(val, "2") == 0 || strcasecmp(val, "2SS") == 0) {
4244 if (dut->testbed_flag_rxsp == 1) {
4245 vht_mcsmap = 0xfff0;
4246 dut->testbed_flag_rxsp = 0;
4247 } else {
4248 vht_mcsmap = 0xfffa;
4249 }
4250 rxchainmask = 3;
4251 } else if (strcasecmp(val, "3") == 0 || strcasecmp(val, "3SS") == 0) {
4252 if (dut->testbed_flag_rxsp == 1) {
4253 vht_mcsmap = 0xffc0;
4254 dut->testbed_flag_rxsp = 0;
4255 } else {
4256 vht_mcsmap = 0xffea;
4257 }
4258 rxchainmask = 7;
4259 } else if (strcasecmp(val, "4") == 0 || strcasecmp(val, "4SS") == 0) {
4260 if (dut->testbed_flag_rxsp == 1) {
4261 vht_mcsmap = 0xff00;
4262 dut->testbed_flag_rxsp = 0;
4263 } else {
4264 vht_mcsmap = 0xffaa;
4265 }
4266 rxchainmask = 15;
4267 } else {
4268 if (dut->testbed_flag_rxsp == 1) {
4269 vht_mcsmap = 0xffc0;
4270 dut->testbed_flag_rxsp = 0;
4271 } else {
4272 vht_mcsmap = 0xffea;
4273 }
4274 }
4275
4276 if (rxchainmask) {
4277 snprintf(buf, sizeof(buf), "iwpriv %s rxchainmask %d",
4278 basedev, rxchainmask);
4279 if (system(buf) != 0) {
4280 sigma_dut_print(dut, DUT_MSG_ERROR,
4281 "iwpriv rxchainmask failed");
4282 }
4283 }
4284
4285 snprintf(buf, sizeof(buf), "iwpriv %s vht_mcsmap 0x%04x",
4286 intf, vht_mcsmap);
4287 if (system(buf) != 0) {
4288 sigma_dut_print(dut, DUT_MSG_ERROR,
4289 "iwpriv %s vht_mcsmap 0x%04x",
4290 intf, vht_mcsmap);
4291 }
4292}
4293
4294
4295void ath_set_zero_crc(struct sigma_dut *dut, const char *val)
4296{
4297 if (strcasecmp(val, "enable") == 0) {
4298 if (system("athdiag --set --address=0x2a204 --and=0xbfffffff")
4299 != 0) {
4300 sigma_dut_print(dut, DUT_MSG_ERROR,
4301 "Disable BB_VHTSIGB_CRC_CALC failed");
4302 }
4303
4304 if (system("athdiag --set --address=0x2a204 --or=0x80000000")
4305 != 0) {
4306 sigma_dut_print(dut, DUT_MSG_ERROR,
4307 "Enable FORCE_VHT_SIGB_CRC_VALUE_ZERO failed");
4308 }
4309 } else {
4310 if (system("athdiag --set --address=0x2a204 --and=0x7fffffff")
4311 != 0) {
4312 sigma_dut_print(dut, DUT_MSG_ERROR,
4313 "Disable FORCE_VHT_SIGB_CRC_VALUE_ZERO failed");
4314 }
4315
4316 if (system("athdiag --set --address=0x2a204 --or=0x40000000")
4317 != 0) {
4318 sigma_dut_print(dut, DUT_MSG_ERROR,
4319 "Enable BB_VHTSIGB_CRC_CALC failed");
4320 }
4321 }
4322}
4323
4324
Amarnath Hullur Subramanyamebfe6b62018-01-31 03:04:17 -08004325static int wcn_sta_set_width(struct sigma_dut *dut, const char *intf,
4326 const char *val)
4327{
4328 char buf[60];
4329
4330 if (strcmp(val, "20") == 0) {
4331 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 0", intf);
4332 dut->chwidth = 0;
4333 } else if (strcmp(val, "40") == 0) {
4334 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 1", intf);
4335 dut->chwidth = 1;
4336 } else if (strcmp(val, "80") == 0) {
4337 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 2", intf);
4338 dut->chwidth = 2;
Sunil Duttb1cccac2018-05-22 21:03:12 +05304339 } else if (strcasecmp(val, "Auto") == 0) {
Amarnath Hullur Subramanyamebfe6b62018-01-31 03:04:17 -08004340 buf[0] = '\0';
4341 } else {
4342 sigma_dut_print(dut, DUT_MSG_ERROR, "WIDTH %s not supported",
4343 val);
4344 return -1;
4345 }
4346
4347 if (buf[0] != '\0' && system(buf) != 0) {
4348 sigma_dut_print(dut, DUT_MSG_ERROR, "iwpriv chwidth failed");
4349 return -1;
4350 }
4351
4352 return 0;
4353}
4354
4355
Amarnath Hullur Subramanyamd8a9db92018-02-02 18:53:14 -08004356static int nlvendor_sta_set_addba_reject(struct sigma_dut *dut,
4357 const char *intf, int addbareject)
4358{
4359#ifdef NL80211_SUPPORT
4360 struct nl_msg *msg;
4361 int ret = 0;
4362 struct nlattr *params;
4363 int ifindex;
4364
4365 ifindex = if_nametoindex(intf);
4366 if (ifindex == 0) {
4367 sigma_dut_print(dut, DUT_MSG_ERROR,
4368 "%s: Index for interface %s failed",
4369 __func__, intf);
4370 return -1;
4371 }
4372
4373 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
4374 NL80211_CMD_VENDOR)) ||
4375 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
4376 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
4377 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
4378 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
4379 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
4380 nla_put_u8(msg,
4381 QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ACCEPT_ADDBA_REQ,
4382 !addbareject)) {
4383 sigma_dut_print(dut, DUT_MSG_ERROR,
4384 "%s: err in adding vendor_cmd and vendor_data",
4385 __func__);
4386 nlmsg_free(msg);
4387 return -1;
4388 }
4389 nla_nest_end(msg, params);
4390
4391 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
4392 if (ret) {
4393 sigma_dut_print(dut, DUT_MSG_ERROR,
4394 "%s: err in send_and_recv_msgs, ret=%d",
4395 __func__, ret);
4396 }
4397 return ret;
4398#else /* NL80211_SUPPORT */
4399 sigma_dut_print(dut, DUT_MSG_ERROR,
4400 "ADDBA_REJECT cannot be set without NL80211_SUPPORT defined");
4401 return -1;
4402#endif /* NL80211_SUPPORT */
4403}
4404
4405
4406static int sta_set_addba_reject(struct sigma_dut *dut, const char *intf,
4407 int addbareject)
4408{
4409 int ret;
4410
4411 switch (get_driver_type()) {
4412 case DRIVER_WCN:
4413 ret = nlvendor_sta_set_addba_reject(dut, intf, addbareject);
4414 if (ret) {
4415 sigma_dut_print(dut, DUT_MSG_ERROR,
4416 "nlvendor_sta_set_addba_reject failed, ret:%d",
4417 ret);
4418 return ret;
4419 }
4420 break;
4421 default:
4422 sigma_dut_print(dut, DUT_MSG_ERROR,
4423 "errorCode,Unsupported ADDBA_REJECT with the current driver");
4424 ret = -1;
4425 break;
4426 }
4427
4428 return ret;
4429}
4430
4431
Amarnath Hullur Subramanyam1f65a672018-03-07 14:50:29 -08004432static int nlvendor_config_send_addba(struct sigma_dut *dut, const char *intf,
4433 int enable)
Amarnath Hullur Subramanyam9745b3c2018-02-04 21:27:57 -08004434{
4435#ifdef NL80211_SUPPORT
4436 struct nl_msg *msg;
4437 int ret = 0;
4438 struct nlattr *params;
4439 int ifindex;
4440
4441 ifindex = if_nametoindex(intf);
4442 if (ifindex == 0) {
4443 sigma_dut_print(dut, DUT_MSG_ERROR,
4444 "%s: Index for interface %s failed",
4445 __func__, intf);
4446 return -1;
4447 }
4448
4449 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
4450 NL80211_CMD_VENDOR)) ||
4451 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
4452 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
4453 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
4454 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
4455 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
4456 nla_put_u8(msg,
4457 QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_SEND_ADDBA_REQ,
Amarnath Hullur Subramanyam1f65a672018-03-07 14:50:29 -08004458 enable)) {
Amarnath Hullur Subramanyam9745b3c2018-02-04 21:27:57 -08004459 sigma_dut_print(dut, DUT_MSG_ERROR,
4460 "%s: err in adding vendor_cmd and vendor_data",
4461 __func__);
4462 nlmsg_free(msg);
4463 return -1;
4464 }
4465 nla_nest_end(msg, params);
4466
4467 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
4468 if (ret) {
4469 sigma_dut_print(dut, DUT_MSG_ERROR,
4470 "%s: err in send_and_recv_msgs, ret=%d",
4471 __func__, ret);
4472 }
4473 return ret;
4474#else /* NL80211_SUPPORT */
4475 sigma_dut_print(dut, DUT_MSG_ERROR,
4476 "Disable addba not possible without NL80211_SUPPORT defined");
4477 return -1;
4478#endif /* NL80211_SUPPORT */
4479}
4480
4481
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004482static int cmd_sta_set_wireless_common(const char *intf, struct sigma_dut *dut,
4483 struct sigma_conn *conn,
4484 struct sigma_cmd *cmd)
4485{
4486 const char *val;
Amarnath Hullur Subramanyamd8a9db92018-02-02 18:53:14 -08004487 int ampdu = -1, addbareject = -1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004488 char buf[30];
4489
4490 val = get_param(cmd, "40_INTOLERANT");
4491 if (val) {
4492 if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) {
4493 /* TODO: iwpriv ht40intol through wpa_supplicant */
4494 send_resp(dut, conn, SIGMA_ERROR,
4495 "ErrorCode,40_INTOLERANT not supported");
4496 return 0;
4497 }
4498 }
4499
4500 val = get_param(cmd, "ADDBA_REJECT");
4501 if (val) {
4502 if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) {
4503 /* reject any ADDBA with status "decline" */
4504 ampdu = 0;
Amarnath Hullur Subramanyamd8a9db92018-02-02 18:53:14 -08004505 addbareject = 1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004506 } else {
4507 /* accept ADDBA */
4508 ampdu = 1;
Amarnath Hullur Subramanyamd8a9db92018-02-02 18:53:14 -08004509 addbareject = 0;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004510 }
4511 }
4512
Amarnath Hullur Subramanyamd8a9db92018-02-02 18:53:14 -08004513 if (addbareject >= 0 &&
4514 sta_set_addba_reject(dut, intf, addbareject) < 0) {
4515 send_resp(dut, conn, SIGMA_ERROR,
4516 "ErrorCode,set addba_reject failed");
4517 return 0;
4518 }
4519
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004520 val = get_param(cmd, "AMPDU");
4521 if (val) {
4522 if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) {
4523 /* enable AMPDU Aggregation */
4524 if (ampdu == 0) {
4525 send_resp(dut, conn, SIGMA_ERROR,
4526 "ErrorCode,Mismatch in "
4527 "addba_reject/ampdu - "
4528 "not supported");
4529 return 0;
4530 }
4531 ampdu = 1;
4532 } else {
4533 /* disable AMPDU Aggregation */
4534 if (ampdu == 1) {
4535 send_resp(dut, conn, SIGMA_ERROR,
4536 "ErrorCode,Mismatch in "
4537 "addba_reject/ampdu - "
4538 "not supported");
4539 return 0;
4540 }
4541 ampdu = 0;
4542 }
4543 }
4544
4545 if (ampdu >= 0) {
Amarnath Hullur Subramanyam9745b3c2018-02-04 21:27:57 -08004546 int ret;
4547
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004548 sigma_dut_print(dut, DUT_MSG_DEBUG, "%s A-MPDU aggregation",
4549 ampdu ? "Enabling" : "Disabling");
4550 snprintf(buf, sizeof(buf), "SET ampdu %d", ampdu);
Deepak Dhamdhere80356cb2016-03-28 16:48:32 -07004551 if (wpa_command(intf, buf) < 0 &&
4552 iwpriv_sta_set_ampdu(dut, intf, ampdu) < 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004553 send_resp(dut, conn, SIGMA_ERROR,
4554 "ErrorCode,set aggr failed");
4555 return 0;
4556 }
Amarnath Hullur Subramanyam9745b3c2018-02-04 21:27:57 -08004557
4558 if (ampdu == 0) {
4559 /* Disable sending of addba using nl vendor command */
Amarnath Hullur Subramanyam1f65a672018-03-07 14:50:29 -08004560 ret = nlvendor_config_send_addba(dut, intf, 0);
Amarnath Hullur Subramanyam9745b3c2018-02-04 21:27:57 -08004561 if (ret) {
4562 sigma_dut_print(dut, DUT_MSG_ERROR,
4563 "Failed to disable addba, ret:%d",
4564 ret);
4565 }
4566 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004567 }
4568
4569 val = get_param(cmd, "AMSDU");
4570 if (val) {
4571 switch (get_driver_type()) {
4572 case DRIVER_ATHEROS:
Amarnath Hullur Subramanyamd5bb5732018-02-22 15:50:38 -08004573 case DRIVER_WCN:
4574 iwpriv_sta_set_amsdu(dut, intf, val);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004575 break;
4576 default:
4577 if (strcmp(val, "1") == 0 ||
4578 strcasecmp(val, "Enable") == 0) {
4579 /* Enable AMSDU Aggregation */
4580 send_resp(dut, conn, SIGMA_ERROR,
4581 "ErrorCode,AMSDU aggregation not supported");
4582 return 0;
4583 }
4584 break;
4585 }
4586 }
4587
4588 val = get_param(cmd, "STBC_RX");
4589 if (val) {
4590 switch (get_driver_type()) {
4591 case DRIVER_ATHEROS:
4592 ath_sta_set_stbc(dut, intf, val);
4593 break;
Pradeep Reddy POTTETI4a1f6b32016-11-23 13:15:21 +05304594 case DRIVER_WCN:
4595 wcn_sta_set_stbc(dut, intf, val);
4596 break;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004597 default:
4598 send_resp(dut, conn, SIGMA_ERROR,
4599 "ErrorCode,STBC_RX not supported");
4600 return 0;
4601 }
4602 }
4603
4604 val = get_param(cmd, "WIDTH");
4605 if (val) {
4606 switch (get_driver_type()) {
4607 case DRIVER_WCN:
Amarnath Hullur Subramanyamebfe6b62018-01-31 03:04:17 -08004608 if (wcn_sta_set_width(dut, intf, val) < 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004609 send_resp(dut, conn, SIGMA_ERROR,
4610 "ErrorCode,Failed to set WIDTH");
4611 return 0;
4612 }
4613 break;
4614 case DRIVER_ATHEROS:
4615 if (ath_set_width(dut, conn, intf, val) < 0)
4616 return 0;
4617 break;
4618 default:
4619 sigma_dut_print(dut, DUT_MSG_ERROR,
4620 "Setting WIDTH not supported");
4621 break;
4622 }
4623 }
4624
4625 val = get_param(cmd, "SMPS");
4626 if (val) {
4627 /* TODO: Dynamic/0, Static/1, No Limit/2 */
4628 send_resp(dut, conn, SIGMA_ERROR,
4629 "ErrorCode,SMPS not supported");
4630 return 0;
4631 }
4632
4633 val = get_param(cmd, "TXSP_STREAM");
4634 if (val) {
4635 switch (get_driver_type()) {
4636 case DRIVER_WCN:
4637 if (wcn_sta_set_sp_stream(dut, intf, val) < 0) {
4638 send_resp(dut, conn, SIGMA_ERROR,
4639 "ErrorCode,Failed to set TXSP_STREAM");
4640 return 0;
4641 }
4642 break;
4643 case DRIVER_ATHEROS:
4644 ath_sta_set_txsp_stream(dut, intf, val);
4645 break;
4646 default:
4647 sigma_dut_print(dut, DUT_MSG_ERROR,
4648 "Setting TXSP_STREAM not supported");
4649 break;
4650 }
4651 }
4652
4653 val = get_param(cmd, "RXSP_STREAM");
4654 if (val) {
4655 switch (get_driver_type()) {
4656 case DRIVER_WCN:
4657 if (wcn_sta_set_sp_stream(dut, intf, val) < 0) {
4658 send_resp(dut, conn, SIGMA_ERROR,
4659 "ErrorCode,Failed to set RXSP_STREAM");
4660 return 0;
4661 }
4662 break;
4663 case DRIVER_ATHEROS:
4664 ath_sta_set_rxsp_stream(dut, intf, val);
4665 break;
4666 default:
4667 sigma_dut_print(dut, DUT_MSG_ERROR,
4668 "Setting RXSP_STREAM not supported");
4669 break;
4670 }
4671 }
4672
4673 val = get_param(cmd, "DYN_BW_SGNL");
4674 if (val) {
Priyadharshini Gowthaman818afef2015-11-09 13:28:15 -08004675 switch (get_driver_type()) {
4676 case DRIVER_WCN:
Peng Xuc59afd32016-11-21 15:01:11 -08004677 if (strcasecmp(val, "enable") == 0) {
4678 snprintf(buf, sizeof(buf),
4679 "iwpriv %s cwmenable 1", intf);
4680 if (system(buf) != 0) {
4681 sigma_dut_print(dut, DUT_MSG_ERROR,
4682 "iwpriv cwmenable 1 failed");
4683 return 0;
4684 }
4685 } else if (strcasecmp(val, "disable") == 0) {
4686 snprintf(buf, sizeof(buf),
4687 "iwpriv %s cwmenable 0", intf);
4688 if (system(buf) != 0) {
4689 sigma_dut_print(dut, DUT_MSG_ERROR,
4690 "iwpriv cwmenable 0 failed");
4691 return 0;
4692 }
4693 } else {
4694 sigma_dut_print(dut, DUT_MSG_ERROR,
4695 "Unsupported DYN_BW_SGL");
4696 }
4697
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004698 snprintf(buf, sizeof(buf), "iwpriv %s cts_cbw 3", intf);
4699 if (system(buf) != 0) {
4700 sigma_dut_print(dut, DUT_MSG_ERROR,
4701 "Failed to set cts_cbw in DYN_BW_SGNL");
4702 return 0;
4703 }
Priyadharshini Gowthaman818afef2015-11-09 13:28:15 -08004704 break;
4705 case DRIVER_ATHEROS:
priyadharshini gowthamane5e25172015-12-08 14:53:48 -08004706 novap_reset(dut, intf);
Priyadharshini Gowthaman818afef2015-11-09 13:28:15 -08004707 ath_config_dyn_bw_sig(dut, intf, val);
4708 break;
4709 default:
4710 sigma_dut_print(dut, DUT_MSG_ERROR,
4711 "Failed to set DYN_BW_SGNL");
4712 break;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004713 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004714 }
4715
4716 val = get_param(cmd, "RTS_FORCE");
4717 if (val) {
priyadharshini gowthamane5e25172015-12-08 14:53:48 -08004718 novap_reset(dut, intf);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004719 if (strcasecmp(val, "Enable") == 0) {
4720 snprintf(buf, sizeof(buf), "iwconfig %s rts 64", intf);
Priyadharshini Gowthamanabdb2122015-11-17 11:52:19 +02004721 if (system(buf) != 0) {
4722 sigma_dut_print(dut, DUT_MSG_ERROR,
4723 "Failed to set RTS_FORCE 64");
4724 }
priyadharshini gowthaman270870e2015-12-09 10:10:23 -08004725 snprintf(buf, sizeof(buf),
4726 "wifitool %s beeliner_fw_test 100 1", intf);
4727 if (system(buf) != 0) {
4728 sigma_dut_print(dut, DUT_MSG_ERROR,
4729 "wifitool beeliner_fw_test 100 1 failed");
4730 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004731 } else if (strcasecmp(val, "Disable") == 0) {
4732 snprintf(buf, sizeof(buf), "iwconfig %s rts 2347",
4733 intf);
Priyadharshini Gowthamanabdb2122015-11-17 11:52:19 +02004734 if (system(buf) != 0) {
4735 sigma_dut_print(dut, DUT_MSG_ERROR,
4736 "Failed to set RTS_FORCE 2347");
4737 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004738 } else {
4739 send_resp(dut, conn, SIGMA_ERROR,
4740 "ErrorCode,RTS_FORCE value not supported");
4741 return 0;
4742 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02004743 }
4744
4745 val = get_param(cmd, "CTS_WIDTH");
4746 if (val) {
4747 switch (get_driver_type()) {
4748 case DRIVER_WCN:
4749 if (wcn_sta_set_cts_width(dut, intf, val) < 0) {
4750 send_resp(dut, conn, SIGMA_ERROR,
4751 "ErrorCode,Failed to set CTS_WIDTH");
4752 return 0;
4753 }
4754 break;
4755 case DRIVER_ATHEROS:
4756 ath_set_cts_width(dut, intf, val);
4757 break;
4758 default:
4759 sigma_dut_print(dut, DUT_MSG_ERROR,
4760 "Setting CTS_WIDTH not supported");
4761 break;
4762 }
4763 }
4764
4765 val = get_param(cmd, "BW_SGNL");
4766 if (val) {
4767 if (strcasecmp(val, "Enable") == 0) {
4768 snprintf(buf, sizeof(buf), "iwpriv %s cwmenable 1",
4769 intf);
4770 } else if (strcasecmp(val, "Disable") == 0) {
4771 /* TODO: Disable */
4772 buf[0] = '\0';
4773 } else {
4774 send_resp(dut, conn, SIGMA_ERROR,
4775 "ErrorCode,BW_SGNL value not supported");
4776 return 0;
4777 }
4778
4779 if (buf[0] != '\0' && system(buf) != 0) {
4780 sigma_dut_print(dut, DUT_MSG_ERROR,
4781 "Failed to set BW_SGNL");
4782 }
4783 }
4784
4785 val = get_param(cmd, "Band");
4786 if (val) {
4787 if (strcmp(val, "2.4") == 0 || strcmp(val, "5") == 0) {
4788 /* STA supports all bands by default */
4789 } else {
4790 send_resp(dut, conn, SIGMA_ERROR,
4791 "ErrorCode,Unsupported Band");
4792 return 0;
4793 }
4794 }
4795
4796 val = get_param(cmd, "zero_crc");
4797 if (val) {
4798 switch (get_driver_type()) {
4799 case DRIVER_ATHEROS:
4800 ath_set_zero_crc(dut, val);
4801 break;
4802 default:
4803 break;
4804 }
4805 }
4806
4807 return 1;
4808}
4809
4810
4811static int sta_set_60g_common(struct sigma_dut *dut, struct sigma_conn *conn,
4812 struct sigma_cmd *cmd)
4813{
4814 const char *val;
4815 char buf[100];
4816
4817 val = get_param(cmd, "MSDUSize");
4818 if (val) {
4819 int mtu;
4820
4821 dut->amsdu_size = atoi(val);
4822 if (dut->amsdu_size > IEEE80211_MAX_DATA_LEN_DMG ||
4823 dut->amsdu_size < IEEE80211_SNAP_LEN_DMG) {
4824 sigma_dut_print(dut, DUT_MSG_ERROR,
4825 "MSDUSize %d is above max %d or below min %d",
4826 dut->amsdu_size,
4827 IEEE80211_MAX_DATA_LEN_DMG,
4828 IEEE80211_SNAP_LEN_DMG);
4829 dut->amsdu_size = 0;
4830 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4831 }
4832
4833 mtu = dut->amsdu_size - IEEE80211_SNAP_LEN_DMG;
4834 sigma_dut_print(dut, DUT_MSG_DEBUG,
4835 "Setting amsdu_size to %d", mtu);
4836 snprintf(buf, sizeof(buf), "ifconfig %s mtu %d",
4837 get_station_ifname(), mtu);
4838
4839 if (system(buf) != 0) {
4840 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set %s",
4841 buf);
4842 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4843 }
4844 }
4845
4846 val = get_param(cmd, "BAckRcvBuf");
4847 if (val) {
4848 dut->back_rcv_buf = atoi(val);
4849 if (dut->back_rcv_buf == 0) {
4850 sigma_dut_print(dut, DUT_MSG_ERROR,
4851 "Failed to convert %s or value is 0",
4852 val);
4853 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4854 }
4855
4856 sigma_dut_print(dut, DUT_MSG_DEBUG,
4857 "Setting BAckRcvBuf to %s", val);
4858 }
4859
4860 return SIGMA_DUT_SUCCESS_CALLER_SEND_STATUS;
4861}
4862
4863
4864static int sta_pcp_start(struct sigma_dut *dut, struct sigma_conn *conn,
4865 struct sigma_cmd *cmd)
4866{
4867 int net_id;
4868 char *ifname;
4869 const char *val;
4870 char buf[100];
4871
4872 dut->mode = SIGMA_MODE_STATION;
4873 ifname = get_main_ifname();
4874 if (wpa_command(ifname, "PING") != 0) {
4875 sigma_dut_print(dut, DUT_MSG_ERROR, "Supplicant not running");
4876 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4877 }
4878
4879 wpa_command(ifname, "FLUSH");
4880 net_id = add_network_common(dut, conn, ifname, cmd);
4881 if (net_id < 0) {
4882 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to add network");
4883 return net_id;
4884 }
4885
4886 /* TODO: mode=2 for the AP; in the future, replace for mode PCP */
4887 if (set_network(ifname, net_id, "mode", "2") < 0) {
4888 sigma_dut_print(dut, DUT_MSG_ERROR,
4889 "Failed to set supplicant network mode");
4890 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4891 }
4892
4893 sigma_dut_print(dut, DUT_MSG_DEBUG,
4894 "Supplicant set network with mode 2");
4895
4896 val = get_param(cmd, "Security");
4897 if (val && strcasecmp(val, "OPEN") == 0) {
4898 dut->ap_key_mgmt = AP_OPEN;
4899 if (set_network(ifname, net_id, "key_mgmt", "NONE") < 0) {
4900 sigma_dut_print(dut, DUT_MSG_ERROR,
4901 "Failed to set supplicant to %s security",
4902 val);
4903 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4904 }
4905 } else if (val && strcasecmp(val, "WPA2-PSK") == 0) {
4906 dut->ap_key_mgmt = AP_WPA2_PSK;
4907 if (set_network(ifname, net_id, "key_mgmt", "WPA-PSK") < 0) {
4908 sigma_dut_print(dut, DUT_MSG_ERROR,
4909 "Failed to set supplicant to %s security",
4910 val);
4911 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4912 }
4913
4914 if (set_network(ifname, net_id, "proto", "RSN") < 0) {
4915 sigma_dut_print(dut, DUT_MSG_ERROR,
4916 "Failed to set supplicant to proto RSN");
4917 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4918 }
4919 } else if (val) {
4920 sigma_dut_print(dut, DUT_MSG_ERROR,
4921 "Requested Security %s is not supported on 60GHz",
4922 val);
4923 return SIGMA_DUT_INVALID_CALLER_SEND_STATUS;
4924 }
4925
4926 val = get_param(cmd, "Encrypt");
4927 if (val && strcasecmp(val, "AES-GCMP") == 0) {
4928 if (set_network(ifname, net_id, "pairwise", "GCMP") < 0) {
4929 sigma_dut_print(dut, DUT_MSG_ERROR,
4930 "Failed to set supplicant to pairwise GCMP");
4931 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4932 }
4933 if (set_network(ifname, net_id, "group", "GCMP") < 0) {
4934 sigma_dut_print(dut, DUT_MSG_ERROR,
4935 "Failed to set supplicant to group GCMP");
4936 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4937 }
4938 } else if (val) {
4939 sigma_dut_print(dut, DUT_MSG_ERROR,
4940 "Requested Encrypt %s is not supported on 60 GHz",
4941 val);
4942 return SIGMA_DUT_INVALID_CALLER_SEND_STATUS;
4943 }
4944
4945 val = get_param(cmd, "PSK");
4946 if (val && set_network_quoted(ifname, net_id, "psk", val) < 0) {
4947 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set psk %s",
4948 val);
4949 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4950 }
4951
4952 /* Convert 60G channel to freq */
4953 switch (dut->ap_channel) {
4954 case 1:
4955 val = "58320";
4956 break;
4957 case 2:
4958 val = "60480";
4959 break;
4960 case 3:
4961 val = "62640";
4962 break;
4963 default:
4964 sigma_dut_print(dut, DUT_MSG_ERROR,
4965 "Failed to configure channel %d. Not supported",
4966 dut->ap_channel);
4967 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4968 }
4969
4970 if (set_network(ifname, net_id, "frequency", val) < 0) {
4971 sigma_dut_print(dut, DUT_MSG_ERROR,
4972 "Failed to set supplicant network frequency");
4973 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4974 }
4975
4976 sigma_dut_print(dut, DUT_MSG_DEBUG,
4977 "Supplicant set network with frequency");
4978
4979 snprintf(buf, sizeof(buf), "SELECT_NETWORK %d", net_id);
4980 if (wpa_command(ifname, buf) < 0) {
4981 sigma_dut_print(dut, DUT_MSG_INFO,
4982 "Failed to select network id %d on %s",
4983 net_id, ifname);
4984 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
4985 }
4986
4987 sigma_dut_print(dut, DUT_MSG_DEBUG, "Selected network");
4988
4989 return SIGMA_DUT_SUCCESS_CALLER_SEND_STATUS;
4990}
4991
4992
Lior David67543f52017-01-03 19:04:22 +02004993static int wil6210_set_abft_len(struct sigma_dut *dut, int abft_len)
4994{
4995 char buf[128], fname[128];
4996 FILE *f;
4997
4998 if (wil6210_get_debugfs_dir(dut, buf, sizeof(buf))) {
4999 sigma_dut_print(dut, DUT_MSG_ERROR,
5000 "failed to get wil6210 debugfs dir");
5001 return -1;
5002 }
5003
5004 snprintf(fname, sizeof(fname), "%s/abft_len", buf);
5005 f = fopen(fname, "w");
5006 if (!f) {
5007 sigma_dut_print(dut, DUT_MSG_ERROR,
5008 "failed to open: %s", fname);
5009 return -1;
5010 }
5011
5012 fprintf(f, "%d\n", abft_len);
5013 fclose(f);
5014
5015 return 0;
5016}
5017
5018
5019static int sta_set_60g_abft_len(struct sigma_dut *dut, struct sigma_conn *conn,
5020 int abft_len)
5021{
5022 switch (get_driver_type()) {
5023 case DRIVER_WIL6210:
5024 return wil6210_set_abft_len(dut, abft_len);
5025 default:
5026 sigma_dut_print(dut, DUT_MSG_ERROR,
5027 "set abft_len not supported");
5028 return -1;
5029 }
5030}
5031
5032
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005033static int sta_set_60g_pcp(struct sigma_dut *dut, struct sigma_conn *conn,
5034 struct sigma_cmd *cmd)
5035{
5036 const char *val;
Lior David67543f52017-01-03 19:04:22 +02005037 unsigned int abft_len = 1; /* default is one slot */
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005038
5039 if (dut->dev_role != DEVROLE_PCP) {
5040 send_resp(dut, conn, SIGMA_INVALID,
5041 "ErrorCode,Invalid DevRole");
5042 return 0;
5043 }
5044
5045 val = get_param(cmd, "SSID");
5046 if (val) {
5047 if (strlen(val) > sizeof(dut->ap_ssid) - 1) {
5048 send_resp(dut, conn, SIGMA_INVALID,
5049 "ErrorCode,Invalid SSID");
5050 return -1;
5051 }
5052
Peng Xub8fc5cc2017-05-10 17:27:28 -07005053 strlcpy(dut->ap_ssid, val, sizeof(dut->ap_ssid));
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005054 }
5055
5056 val = get_param(cmd, "CHANNEL");
5057 if (val) {
5058 const char *pos;
5059
5060 dut->ap_channel = atoi(val);
5061 pos = strchr(val, ';');
5062 if (pos) {
5063 pos++;
5064 dut->ap_channel_1 = atoi(pos);
5065 }
5066 }
5067
5068 switch (dut->ap_channel) {
5069 case 1:
5070 case 2:
5071 case 3:
5072 break;
5073 default:
5074 sigma_dut_print(dut, DUT_MSG_ERROR,
5075 "Channel %d is not supported", dut->ap_channel);
5076 send_resp(dut, conn, SIGMA_ERROR,
5077 "Requested channel is not supported");
5078 return -1;
5079 }
5080
5081 val = get_param(cmd, "BCNINT");
5082 if (val)
5083 dut->ap_bcnint = atoi(val);
5084
5085
5086 val = get_param(cmd, "ExtSchIE");
5087 if (val) {
5088 send_resp(dut, conn, SIGMA_ERROR,
5089 "ErrorCode,ExtSchIE is not supported yet");
5090 return -1;
5091 }
5092
5093 val = get_param(cmd, "AllocType");
5094 if (val) {
5095 send_resp(dut, conn, SIGMA_ERROR,
5096 "ErrorCode,AllocType is not supported yet");
5097 return -1;
5098 }
5099
5100 val = get_param(cmd, "PercentBI");
5101 if (val) {
5102 send_resp(dut, conn, SIGMA_ERROR,
5103 "ErrorCode,PercentBI is not supported yet");
5104 return -1;
5105 }
5106
5107 val = get_param(cmd, "CBAPOnly");
5108 if (val) {
5109 send_resp(dut, conn, SIGMA_ERROR,
5110 "ErrorCode,CBAPOnly is not supported yet");
5111 return -1;
5112 }
5113
5114 val = get_param(cmd, "AMPDU");
5115 if (val) {
5116 if (strcasecmp(val, "Enable") == 0)
5117 dut->ap_ampdu = 1;
5118 else if (strcasecmp(val, "Disable") == 0)
5119 dut->ap_ampdu = 2;
5120 else {
5121 send_resp(dut, conn, SIGMA_ERROR,
5122 "ErrorCode,AMPDU value is not Enable nor Disabled");
5123 return -1;
5124 }
5125 }
5126
5127 val = get_param(cmd, "AMSDU");
5128 if (val) {
5129 if (strcasecmp(val, "Enable") == 0)
5130 dut->ap_amsdu = 1;
5131 else if (strcasecmp(val, "Disable") == 0)
5132 dut->ap_amsdu = 2;
5133 }
5134
5135 val = get_param(cmd, "NumMSDU");
5136 if (val) {
5137 send_resp(dut, conn, SIGMA_ERROR,
5138 "ErrorCode, NumMSDU is not supported yet");
5139 return -1;
5140 }
5141
5142 val = get_param(cmd, "ABFTLRang");
5143 if (val) {
5144 sigma_dut_print(dut, DUT_MSG_DEBUG,
Lior David67543f52017-01-03 19:04:22 +02005145 "ABFTLRang parameter %s", val);
5146 if (strcmp(val, "Gt1") == 0)
5147 abft_len = 2; /* 2 slots in this case */
5148 }
5149
5150 if (sta_set_60g_abft_len(dut, conn, abft_len)) {
5151 send_resp(dut, conn, SIGMA_ERROR,
5152 "ErrorCode, Can't set ABFT length");
5153 return -1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005154 }
5155
5156 if (sta_pcp_start(dut, conn, cmd) < 0) {
5157 send_resp(dut, conn, SIGMA_ERROR,
5158 "ErrorCode, Can't start PCP role");
5159 return -1;
5160 }
5161
5162 return sta_set_60g_common(dut, conn, cmd);
5163}
5164
5165
5166static int sta_set_60g_sta(struct sigma_dut *dut, struct sigma_conn *conn,
5167 struct sigma_cmd *cmd)
5168{
5169 const char *val = get_param(cmd, "DiscoveryMode");
5170
5171 if (dut->dev_role != DEVROLE_STA) {
5172 send_resp(dut, conn, SIGMA_INVALID,
5173 "ErrorCode,Invalid DevRole");
5174 return 0;
5175 }
5176
5177 if (val) {
5178 sigma_dut_print(dut, DUT_MSG_DEBUG, "Discovery: %s", val);
5179 /* Ignore Discovery mode till Driver expose API. */
5180#if 0
5181 if (strcasecmp(val, "1") == 0) {
5182 send_resp(dut, conn, SIGMA_INVALID,
5183 "ErrorCode,DiscoveryMode 1 not supported");
5184 return 0;
5185 }
5186
5187 if (strcasecmp(val, "0") == 0) {
5188 /* OK */
5189 } else {
5190 send_resp(dut, conn, SIGMA_INVALID,
5191 "ErrorCode,DiscoveryMode not supported");
5192 return 0;
5193 }
5194#endif
5195 }
5196
5197 if (start_sta_mode(dut) != 0)
5198 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
5199 return sta_set_60g_common(dut, conn, cmd);
5200}
5201
5202
5203static int cmd_sta_disconnect(struct sigma_dut *dut, struct sigma_conn *conn,
5204 struct sigma_cmd *cmd)
5205{
5206 const char *intf = get_param(cmd, "Interface");
Jouni Malinened77e672018-01-10 16:45:13 +02005207 const char *val = get_param(cmd, "maintain_profile");
vamsi krishnad605c422017-09-20 14:56:31 +05305208
Jouni Malinened77e672018-01-10 16:45:13 +02005209 if (dut->program == PROGRAM_OCE ||
Amarnath Hullur Subramanyamebeda9e2018-01-31 03:21:48 -08005210 dut->program == PROGRAM_HE ||
Jouni Malinened77e672018-01-10 16:45:13 +02005211 (val && atoi(val) == 1)) {
vamsi krishnad605c422017-09-20 14:56:31 +05305212 wpa_command(intf, "DISCONNECT");
5213 return 1;
5214 }
5215
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005216 disconnect_station(dut);
5217 /* Try to ignore old scan results to avoid HS 2.0R2 test case failures
5218 * due to cached results. */
5219 wpa_command(intf, "SET ignore_old_scan_res 1");
5220 wpa_command(intf, "BSS_FLUSH");
5221 return 1;
5222}
5223
5224
5225static int cmd_sta_reassoc(struct sigma_dut *dut, struct sigma_conn *conn,
5226 struct sigma_cmd *cmd)
5227{
5228 const char *intf = get_param(cmd, "Interface");
5229 const char *bssid = get_param(cmd, "bssid");
5230 const char *val = get_param(cmd, "CHANNEL");
5231 struct wpa_ctrl *ctrl;
Srinivas Dasari0ebedb12018-02-14 17:03:51 +05305232 char buf[1000];
Sunil Duttd30ce092018-01-11 23:56:29 +05305233 char result[32];
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005234 int res;
5235 int chan = 0;
Ashwini Patil467efef2017-05-25 12:18:27 +05305236 int status = 0;
Sunil Duttd30ce092018-01-11 23:56:29 +05305237 int fastreassoc = 1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005238
5239 if (bssid == NULL) {
5240 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Missing bssid "
5241 "argument");
5242 return 0;
5243 }
5244
5245 if (val)
5246 chan = atoi(val);
5247
5248 if (wifi_chip_type != DRIVER_WCN && wifi_chip_type != DRIVER_AR6003) {
5249 /* The current network may be from sta_associate or
5250 * sta_hs2_associate
5251 */
5252 if (set_network(intf, dut->infra_network_id, "bssid", bssid) <
5253 0 ||
5254 set_network(intf, 0, "bssid", bssid) < 0)
5255 return -2;
5256 }
5257
5258 ctrl = open_wpa_mon(intf);
5259 if (ctrl == NULL) {
5260 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open "
5261 "wpa_supplicant monitor connection");
5262 return -1;
5263 }
5264
Sunil Duttd30ce092018-01-11 23:56:29 +05305265 if (get_wpa_status(get_station_ifname(), "wpa_state", result,
5266 sizeof(result)) < 0 ||
5267 strncmp(result, "COMPLETED", 9) != 0) {
5268 sigma_dut_print(dut, DUT_MSG_DEBUG,
5269 "sta_reassoc: Not connected");
5270 fastreassoc = 0;
5271 }
5272
Srinivas Dasari0ebedb12018-02-14 17:03:51 +05305273 if (dut->rsne_override) {
5274#ifdef NL80211_SUPPORT
5275 if (get_driver_type() == DRIVER_WCN && dut->config_rsnie == 0) {
5276 sta_config_rsnie(dut, 1);
5277 dut->config_rsnie = 1;
5278 }
5279#endif /* NL80211_SUPPORT */
5280 snprintf(buf, sizeof(buf), "TEST_ASSOC_IE %s",
5281 dut->rsne_override);
5282 if (wpa_command(intf, buf) < 0) {
5283 send_resp(dut, conn, SIGMA_ERROR,
5284 "ErrorCode,Failed to set DEV_CONFIGURE_IE RSNE override");
5285 return 0;
5286 }
5287 }
5288
Sunil Duttd30ce092018-01-11 23:56:29 +05305289 if (wifi_chip_type == DRIVER_WCN && fastreassoc) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005290#ifdef ANDROID
Ashwini Patil4c8158f2017-05-25 12:49:21 +05305291 if (chan) {
5292 unsigned int freq;
5293
5294 freq = channel_to_freq(chan);
5295 if (!freq) {
5296 sigma_dut_print(dut, DUT_MSG_ERROR,
5297 "Invalid channel number provided: %d",
5298 chan);
5299 send_resp(dut, conn, SIGMA_INVALID,
5300 "ErrorCode,Invalid channel number");
5301 goto close_mon_conn;
5302 }
5303 res = snprintf(buf, sizeof(buf),
5304 "SCAN TYPE=ONLY freq=%d", freq);
5305 } else {
5306 res = snprintf(buf, sizeof(buf), "SCAN TYPE=ONLY");
5307 }
5308 if (res < 0 || res >= (int) sizeof(buf)) {
5309 send_resp(dut, conn, SIGMA_ERROR,
5310 "ErrorCode,snprintf failed");
5311 goto close_mon_conn;
5312 }
5313 if (wpa_command(intf, buf) < 0) {
5314 sigma_dut_print(dut, DUT_MSG_INFO,
5315 "Failed to start scan");
5316 send_resp(dut, conn, SIGMA_ERROR,
5317 "ErrorCode,scan failed");
5318 goto close_mon_conn;
5319 }
5320
5321 res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-SCAN-RESULTS",
5322 buf, sizeof(buf));
5323 if (res < 0) {
5324 sigma_dut_print(dut, DUT_MSG_INFO,
5325 "Scan did not complete");
5326 send_resp(dut, conn, SIGMA_ERROR,
5327 "ErrorCode,scan did not complete");
5328 goto close_mon_conn;
5329 }
5330
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005331 if (set_network(intf, dut->infra_network_id, "bssid", "any")
5332 < 0) {
5333 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set "
5334 "bssid to any during FASTREASSOC");
Ashwini Patil467efef2017-05-25 12:18:27 +05305335 status = -2;
5336 goto close_mon_conn;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005337 }
5338 res = snprintf(buf, sizeof(buf), "DRIVER FASTREASSOC %s %d",
5339 bssid, chan);
5340 if (res > 0 && res < (int) sizeof(buf))
5341 res = wpa_command(intf, buf);
5342
5343 if (res < 0 || res >= (int) sizeof(buf)) {
5344 send_resp(dut, conn, SIGMA_ERROR,
5345 "errorCode,Failed to run DRIVER FASTREASSOC");
Ashwini Patil467efef2017-05-25 12:18:27 +05305346 goto close_mon_conn;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005347 }
5348#else /* ANDROID */
5349 sigma_dut_print(dut, DUT_MSG_DEBUG,
5350 "Reassoc using iwpriv - skip chan=%d info",
5351 chan);
5352 snprintf(buf, sizeof(buf), "iwpriv %s reassoc", intf);
5353 if (system(buf) != 0) {
5354 sigma_dut_print(dut, DUT_MSG_ERROR, "%s failed", buf);
Ashwini Patil467efef2017-05-25 12:18:27 +05305355 status = -2;
5356 goto close_mon_conn;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005357 }
5358#endif /* ANDROID */
5359 sigma_dut_print(dut, DUT_MSG_INFO,
5360 "sta_reassoc: Run %s successful", buf);
5361 } else if (wpa_command(intf, "REASSOCIATE")) {
5362 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to "
5363 "request reassociation");
Ashwini Patil467efef2017-05-25 12:18:27 +05305364 goto close_mon_conn;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005365 }
5366
5367 res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-CONNECTED",
5368 buf, sizeof(buf));
Ashwini Patil467efef2017-05-25 12:18:27 +05305369 if (res < 0) {
5370 sigma_dut_print(dut, DUT_MSG_INFO, "Connection did not complete");
5371 status = -1;
5372 goto close_mon_conn;
5373 }
5374 status = 1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005375
Ashwini Patil467efef2017-05-25 12:18:27 +05305376close_mon_conn:
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005377 wpa_ctrl_detach(ctrl);
5378 wpa_ctrl_close(ctrl);
Ashwini Patil467efef2017-05-25 12:18:27 +05305379 return status;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005380}
5381
5382
5383static void hs2_clear_credentials(const char *intf)
5384{
5385 wpa_command(intf, "REMOVE_CRED all");
5386}
5387
5388
Lior Davidcc88b562017-01-03 18:52:09 +02005389#ifdef __linux__
5390static int wil6210_get_aid(struct sigma_dut *dut, const char *bssid,
5391 unsigned int *aid)
5392{
Lior David0fe101e2017-03-09 16:09:50 +02005393 const char *pattern = "AID[ \t]+([0-9]+)";
Lior Davidcc88b562017-01-03 18:52:09 +02005394
Lior David0fe101e2017-03-09 16:09:50 +02005395 return wil6210_get_sta_info_field(dut, bssid, pattern, aid);
Lior Davidcc88b562017-01-03 18:52:09 +02005396}
5397#endif /* __linux__ */
5398
5399
5400static int sta_get_aid_60g(struct sigma_dut *dut, const char *bssid,
5401 unsigned int *aid)
5402{
5403 switch (get_driver_type()) {
5404#ifdef __linux__
5405 case DRIVER_WIL6210:
5406 return wil6210_get_aid(dut, bssid, aid);
5407#endif /* __linux__ */
5408 default:
5409 sigma_dut_print(dut, DUT_MSG_ERROR, "get AID not supported");
5410 return -1;
5411 }
5412}
5413
5414
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005415static int sta_get_parameter_60g(struct sigma_dut *dut, struct sigma_conn *conn,
5416 struct sigma_cmd *cmd)
5417{
5418 char buf[MAX_CMD_LEN];
5419 char bss_list[MAX_CMD_LEN];
5420 const char *parameter = get_param(cmd, "Parameter");
5421
5422 if (parameter == NULL)
5423 return -1;
5424
Lior Davidcc88b562017-01-03 18:52:09 +02005425 if (strcasecmp(parameter, "AID") == 0) {
5426 unsigned int aid = 0;
5427 char bssid[20];
5428
5429 if (get_wpa_status(get_station_ifname(), "bssid",
5430 bssid, sizeof(bssid)) < 0) {
5431 sigma_dut_print(dut, DUT_MSG_ERROR,
5432 "could not get bssid");
5433 return -2;
5434 }
5435
5436 if (sta_get_aid_60g(dut, bssid, &aid))
5437 return -2;
5438
5439 snprintf(buf, sizeof(buf), "aid,%d", aid);
5440 sigma_dut_print(dut, DUT_MSG_INFO, "%s", buf);
5441 send_resp(dut, conn, SIGMA_COMPLETE, buf);
5442 return 0;
5443 }
5444
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005445 if (strcasecmp(parameter, "DiscoveredDevList") == 0) {
5446 char *bss_line;
5447 char *bss_id = NULL;
5448 const char *ifname = get_param(cmd, "Interface");
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05305449 char *saveptr;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005450
5451 if (ifname == NULL) {
5452 sigma_dut_print(dut, DUT_MSG_INFO,
5453 "For get DiscoveredDevList need Interface name.");
5454 return -1;
5455 }
5456
5457 /*
5458 * Use "BSS RANGE=ALL MASK=0x2" which provides a list
5459 * of BSSIDs in "bssid=<BSSID>\n"
5460 */
5461 if (wpa_command_resp(ifname, "BSS RANGE=ALL MASK=0x2",
5462 bss_list,
5463 sizeof(bss_list)) < 0) {
5464 sigma_dut_print(dut, DUT_MSG_ERROR,
5465 "Failed to get bss list");
5466 return -1;
5467 }
5468
5469 sigma_dut_print(dut, DUT_MSG_DEBUG,
5470 "bss list for ifname:%s is:%s",
5471 ifname, bss_list);
5472
5473 snprintf(buf, sizeof(buf), "DeviceList");
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05305474 bss_line = strtok_r(bss_list, "\n", &saveptr);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005475 while (bss_line) {
5476 if (sscanf(bss_line, "bssid=%ms", &bss_id) > 0 &&
5477 bss_id) {
5478 int len;
5479
5480 len = snprintf(buf + strlen(buf),
5481 sizeof(buf) - strlen(buf),
5482 ",%s", bss_id);
5483 free(bss_id);
5484 bss_id = NULL;
5485 if (len < 0) {
5486 sigma_dut_print(dut,
5487 DUT_MSG_ERROR,
5488 "Failed to read BSSID");
5489 send_resp(dut, conn, SIGMA_ERROR,
5490 "ErrorCode,Failed to read BSS ID");
5491 return 0;
5492 }
5493
5494 if ((size_t) len >= sizeof(buf) - strlen(buf)) {
5495 sigma_dut_print(dut,
5496 DUT_MSG_ERROR,
5497 "Response buf too small for list");
5498 send_resp(dut, conn,
5499 SIGMA_ERROR,
5500 "ErrorCode,Response buf too small for list");
5501 return 0;
5502 }
5503 }
5504
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05305505 bss_line = strtok_r(NULL, "\n", &saveptr);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005506 }
5507
5508 sigma_dut_print(dut, DUT_MSG_INFO, "DiscoveredDevList is %s",
5509 buf);
5510 send_resp(dut, conn, SIGMA_COMPLETE, buf);
5511 return 0;
5512 }
5513
5514 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter");
5515 return 0;
5516}
5517
5518
5519static int cmd_sta_get_parameter(struct sigma_dut *dut, struct sigma_conn *conn,
5520 struct sigma_cmd *cmd)
5521{
5522 const char *program = get_param(cmd, "Program");
5523
5524 if (program == NULL)
5525 return -1;
5526
5527 if (strcasecmp(program, "P2PNFC") == 0)
5528 return p2p_cmd_sta_get_parameter(dut, conn, cmd);
5529
5530 if (strcasecmp(program, "60ghz") == 0)
5531 return sta_get_parameter_60g(dut, conn, cmd);
5532
5533#ifdef ANDROID_NAN
5534 if (strcasecmp(program, "NAN") == 0)
Amarnath Hullur Subramanyam1854ec62016-08-11 19:29:35 -07005535 return nan_cmd_sta_get_parameter(dut, conn, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005536#endif /* ANDROID_NAN */
5537
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -07005538#ifdef MIRACAST
5539 if (strcasecmp(program, "WFD") == 0 ||
5540 strcasecmp(program, "DisplayR2") == 0)
5541 return miracast_cmd_sta_get_parameter(dut, conn, cmd);
5542#endif /* MIRACAST */
5543
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005544 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter");
5545 return 0;
5546}
5547
5548
5549static void sta_reset_default_ath(struct sigma_dut *dut, const char *intf,
5550 const char *type)
5551{
5552 char buf[100];
5553
5554 if (dut->program == PROGRAM_VHT) {
5555 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 2", intf);
5556 if (system(buf) != 0) {
5557 sigma_dut_print(dut, DUT_MSG_ERROR,
5558 "iwpriv %s chwidth failed", intf);
5559 }
5560
5561 snprintf(buf, sizeof(buf), "iwpriv %s mode 11ACVHT80", intf);
5562 if (system(buf) != 0) {
5563 sigma_dut_print(dut, DUT_MSG_ERROR,
5564 "iwpriv %s mode 11ACVHT80 failed",
5565 intf);
5566 }
5567
5568 snprintf(buf, sizeof(buf), "iwpriv %s vhtmcs -1", intf);
5569 if (system(buf) != 0) {
5570 sigma_dut_print(dut, DUT_MSG_ERROR,
5571 "iwpriv %s vhtmcs -1 failed", intf);
5572 }
5573 }
5574
5575 if (dut->program == PROGRAM_HT) {
5576 snprintf(buf, sizeof(buf), "iwpriv %s chwidth 0", intf);
5577 if (system(buf) != 0) {
5578 sigma_dut_print(dut, DUT_MSG_ERROR,
5579 "iwpriv %s chwidth failed", intf);
5580 }
5581
5582 snprintf(buf, sizeof(buf), "iwpriv %s mode 11naht40", intf);
5583 if (system(buf) != 0) {
5584 sigma_dut_print(dut, DUT_MSG_ERROR,
5585 "iwpriv %s mode 11naht40 failed",
5586 intf);
5587 }
5588
5589 snprintf(buf, sizeof(buf), "iwpriv %s set11NRates 0", intf);
5590 if (system(buf) != 0) {
5591 sigma_dut_print(dut, DUT_MSG_ERROR,
5592 "iwpriv set11NRates failed");
5593 }
5594 }
5595
5596 if (dut->program == PROGRAM_VHT || dut->program == PROGRAM_HT) {
5597 snprintf(buf, sizeof(buf), "iwpriv %s powersave 0", intf);
5598 if (system(buf) != 0) {
5599 sigma_dut_print(dut, DUT_MSG_ERROR,
5600 "disabling powersave failed");
5601 }
5602
5603 /* Reset CTS width */
5604 snprintf(buf, sizeof(buf), "wifitool %s beeliner_fw_test 54 0",
5605 intf);
5606 if (system(buf) != 0) {
5607 sigma_dut_print(dut, DUT_MSG_ERROR,
5608 "wifitool %s beeliner_fw_test 54 0 failed",
5609 intf);
5610 }
5611
5612 /* Enable Dynamic Bandwidth signalling by default */
5613 snprintf(buf, sizeof(buf), "iwpriv %s cwmenable 1", intf);
5614 if (system(buf) != 0) {
5615 sigma_dut_print(dut, DUT_MSG_ERROR,
5616 "iwpriv %s cwmenable 1 failed", intf);
5617 }
5618
5619 snprintf(buf, sizeof(buf), "iwconfig %s rts 2347", intf);
5620 if (system(buf) != 0) {
5621 sigma_dut_print(dut, DUT_MSG_ERROR,
5622 "iwpriv rts failed");
5623 }
5624 }
5625
5626 if (type && strcasecmp(type, "Testbed") == 0) {
5627 dut->testbed_flag_txsp = 1;
5628 dut->testbed_flag_rxsp = 1;
5629 /* STA has to set spatial stream to 2 per Appendix H */
5630 snprintf(buf, sizeof(buf), "iwpriv %s vht_mcsmap 0xfff0", intf);
5631 if (system(buf) != 0) {
5632 sigma_dut_print(dut, DUT_MSG_ERROR,
5633 "iwpriv vht_mcsmap failed");
5634 }
5635
5636 /* Disable LDPC per Appendix H */
5637 snprintf(buf, sizeof(buf), "iwpriv %s ldpc 0", intf);
5638 if (system(buf) != 0) {
5639 sigma_dut_print(dut, DUT_MSG_ERROR,
5640 "iwpriv %s ldpc 0 failed", intf);
5641 }
5642
5643 snprintf(buf, sizeof(buf), "iwpriv %s amsdu 1", intf);
5644 if (system(buf) != 0) {
5645 sigma_dut_print(dut, DUT_MSG_ERROR,
5646 "iwpriv amsdu failed");
5647 }
5648
5649 /* TODO: Disable STBC 2x1 transmit and receive */
5650 snprintf(buf, sizeof(buf), "iwpriv %s tx_stbc 0", intf);
5651 if (system(buf) != 0) {
5652 sigma_dut_print(dut, DUT_MSG_ERROR,
5653 "Disable tx_stbc 0 failed");
5654 }
5655
5656 snprintf(buf, sizeof(buf), "iwpriv %s rx_stbc 0", intf);
5657 if (system(buf) != 0) {
5658 sigma_dut_print(dut, DUT_MSG_ERROR,
5659 "Disable rx_stbc 0 failed");
5660 }
5661
5662 /* STA has to disable Short GI per Appendix H */
5663 snprintf(buf, sizeof(buf), "iwpriv %s shortgi 0", intf);
5664 if (system(buf) != 0) {
5665 sigma_dut_print(dut, DUT_MSG_ERROR,
5666 "iwpriv %s shortgi 0 failed", intf);
5667 }
5668 }
5669
5670 if (type && strcasecmp(type, "DUT") == 0) {
5671 snprintf(buf, sizeof(buf), "iwpriv %s nss 3", intf);
5672 if (system(buf) != 0) {
5673 sigma_dut_print(dut, DUT_MSG_ERROR,
5674 "iwpriv %s nss 3 failed", intf);
5675 }
Arif Hussainac6c5112018-05-25 17:34:00 -07005676 dut->sta_nss = 3;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005677
5678 snprintf(buf, sizeof(buf), "iwpriv %s shortgi 1", intf);
5679 if (system(buf) != 0) {
5680 sigma_dut_print(dut, DUT_MSG_ERROR,
5681 "iwpriv %s shortgi 1 failed", intf);
5682 }
5683 }
5684}
5685
5686
Amarnath Hullur Subramanyam2538acc2018-02-02 16:15:25 -08005687#ifdef NL80211_SUPPORT
5688static int sta_set_he_mcs(struct sigma_dut *dut, const char *intf,
5689 enum he_mcs_config mcs)
5690{
5691 struct nl_msg *msg;
5692 int ret = 0;
5693 struct nlattr *params;
5694 int ifindex;
5695
5696 ifindex = if_nametoindex(intf);
5697 if (ifindex == 0) {
5698 sigma_dut_print(dut, DUT_MSG_ERROR,
5699 "%s: Index for interface %s failed",
5700 __func__, intf);
5701 return -1;
5702 }
5703
5704 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
5705 NL80211_CMD_VENDOR)) ||
5706 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
5707 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
5708 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
5709 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
5710 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
5711 nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MCS,
5712 mcs)) {
5713 sigma_dut_print(dut, DUT_MSG_ERROR,
5714 "%s: err in adding vendor_cmd and vendor_data",
5715 __func__);
5716 nlmsg_free(msg);
5717 return -1;
5718 }
5719 nla_nest_end(msg, params);
5720
5721 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
5722 if (ret) {
5723 sigma_dut_print(dut, DUT_MSG_ERROR,
5724 "%s: err in send_and_recv_msgs, ret=%d",
5725 __func__, ret);
5726 }
5727 return ret;
5728}
5729#endif /* NL80211_SUPPORT */
5730
5731
Amarnath Hullur Subramanyam4622a212018-02-23 12:12:14 -08005732static int sta_set_heconfig_and_wep_tkip(struct sigma_dut *dut,
5733 const char *intf, int enable)
5734{
5735#ifdef NL80211_SUPPORT
5736 struct nl_msg *msg;
5737 int ret = 0;
5738 struct nlattr *params;
5739 int ifindex;
5740
5741 ifindex = if_nametoindex(intf);
5742 if (ifindex == 0) {
5743 sigma_dut_print(dut, DUT_MSG_ERROR,
5744 "%s: Index for interface %s failed",
5745 __func__, intf);
5746 return -1;
5747 }
5748
5749 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
5750 NL80211_CMD_VENDOR)) ||
5751 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
5752 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
5753 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
5754 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
5755 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
5756 nla_put_u8(msg,
5757 QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_WEP_TKIP_IN_HE,
5758 enable)) {
5759 sigma_dut_print(dut, DUT_MSG_ERROR,
5760 "%s: err in adding vendor_cmd and vendor_data",
5761 __func__);
5762 nlmsg_free(msg);
5763 return -1;
5764 }
5765 nla_nest_end(msg, params);
5766
5767 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
5768 if (ret) {
5769 sigma_dut_print(dut, DUT_MSG_ERROR,
5770 "%s: err in send_and_recv_msgs, ret=%d",
5771 __func__, ret);
5772 }
5773 return ret;
5774#else /* NL80211_SUPPORT */
5775 sigma_dut_print(dut, DUT_MSG_ERROR,
5776 "HE config enablement cannot be changed without NL80211_SUPPORT defined");
5777 return -1;
5778#endif /* NL80211_SUPPORT */
5779}
5780
5781
Amarnath Hullur Subramanyam13215de2018-02-27 14:12:55 -08005782static int sta_set_addba_buf_size(struct sigma_dut *dut,
5783 const char *intf, int bufsize)
5784{
5785#ifdef NL80211_SUPPORT
5786 struct nl_msg *msg;
5787 int ret = 0;
5788 struct nlattr *params;
5789 int ifindex;
5790
5791 ifindex = if_nametoindex(intf);
5792 if (ifindex == 0) {
5793 sigma_dut_print(dut, DUT_MSG_ERROR,
5794 "%s: Index for interface %s failed",
5795 __func__, intf);
5796 return -1;
5797 }
5798
5799 if (!(msg = nl80211_drv_msg(dut, dut->nl_ctx, ifindex, 0,
5800 NL80211_CMD_VENDOR)) ||
5801 nla_put_u32(msg, NL80211_ATTR_IFINDEX, ifindex) ||
5802 nla_put_u32(msg, NL80211_ATTR_VENDOR_ID, OUI_QCA) ||
5803 nla_put_u32(msg, NL80211_ATTR_VENDOR_SUBCMD,
5804 QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION) ||
5805 !(params = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA)) ||
5806 nla_put_u8(msg,
5807 QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADDBA_BUFF_SIZE,
5808 bufsize)) {
5809 sigma_dut_print(dut, DUT_MSG_ERROR,
5810 "%s: err in adding vendor_cmd and vendor_data",
5811 __func__);
5812 nlmsg_free(msg);
5813 return -1;
5814 }
5815 nla_nest_end(msg, params);
5816
5817 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
5818 if (ret) {
5819 sigma_dut_print(dut, DUT_MSG_ERROR,
5820 "%s: err in send_and_recv_msgs, ret=%d",
5821 __func__, ret);
5822 }
5823 return ret;
5824#else /* NL80211_SUPPORT */
5825 sigma_dut_print(dut, DUT_MSG_ERROR,
5826 "AddBA bufsize cannot be changed without NL80211_SUPPORT defined");
5827 return -1;
5828#endif /* NL80211_SUPPORT */
5829}
5830
5831
Amarnath Hullur Subramanyam58f2a6e2018-01-31 03:36:00 -08005832static void sta_reset_default_wcn(struct sigma_dut *dut, const char *intf,
5833 const char *type)
5834{
5835 char buf[60];
5836
5837 if (dut->program == PROGRAM_HE) {
5838 /* resetting phymode to auto in case of HE program */
5839 snprintf(buf, sizeof(buf), "iwpriv %s setphymode 0", intf);
5840 if (system(buf) != 0) {
5841 sigma_dut_print(dut, DUT_MSG_ERROR,
5842 "iwpriv %s setphymode failed", intf);
5843 }
5844
Amarnath Hullur Subramanyam9cecb502018-04-25 13:26:30 -07005845 /* reset the rate to Auto rate */
5846 snprintf(buf, sizeof(buf), "iwpriv %s set_11ax_rate 0xff",
5847 intf);
5848 if (system(buf) != 0) {
5849 sigma_dut_print(dut, DUT_MSG_ERROR,
5850 "iwpriv %s set_11ax_rate 0xff failed",
5851 intf);
5852 }
5853
Amarnath Hullur Subramanyam58f2a6e2018-01-31 03:36:00 -08005854 /* remove all network profiles */
5855 remove_wpa_networks(intf);
Amarnath Hullur Subramanyam2538acc2018-02-02 16:15:25 -08005856
Amarnath Hullur Subramanyam13215de2018-02-27 14:12:55 -08005857 /* Configure ADDBA Req/Rsp buffer size to be 64 */
5858 sta_set_addba_buf_size(dut, intf, 64);
5859
Amarnath Hullur Subramanyam5f32d572018-03-02 00:02:33 -08005860#ifdef NL80211_SUPPORT
5861 /* Disable noackpolicy for all AC */
5862 if (nlvendor_sta_set_noack(dut, intf, 0, QCA_WLAN_AC_ALL)) {
5863 sigma_dut_print(dut, DUT_MSG_ERROR,
5864 "Disable of noackpolicy for all AC failed");
5865 }
5866#endif /* NL80211_SUPPORT */
5867
Amarnath Hullur Subramanyamb1724a52018-03-07 14:31:46 -08005868 /* Enable WMM by default */
5869 if (wcn_sta_set_wmm(dut, intf, "on")) {
5870 sigma_dut_print(dut, DUT_MSG_ERROR,
5871 "Enable of WMM in sta_reset_default_wcn failed");
5872 }
5873
5874 /* Disable ADDBA_REJECT by default */
5875 if (nlvendor_sta_set_addba_reject(dut, intf, 0)) {
5876 sigma_dut_print(dut, DUT_MSG_ERROR,
5877 "Disable of addba_reject in sta_reset_default_wcn failed");
5878 }
5879
Amarnath Hullur Subramanyam1f65a672018-03-07 14:50:29 -08005880 /* Enable sending of ADDBA by default */
5881 if (nlvendor_config_send_addba(dut, intf, 1)) {
5882 sigma_dut_print(dut, DUT_MSG_ERROR,
5883 "Enable sending of ADDBA in sta_reset_default_wcn failed");
5884 }
5885
Amarnath Hullur Subramanyam63c590a2018-03-07 15:26:21 -08005886 /* Enable AMPDU by default */
5887 iwpriv_sta_set_ampdu(dut, intf, 1);
5888
Subhani Shaik8e7a3052018-04-24 14:03:00 -07005889#ifdef NL80211_SUPPORT
5890 if (sta_set_he_ltf(dut, intf, QCA_WLAN_HE_LTF_AUTO)) {
5891 sigma_dut_print(dut, DUT_MSG_ERROR,
5892 "Set LTF config to default in sta_reset_default_wcn failed");
5893 }
5894#endif /* NL80211_SUPPORT */
5895
Amarnath Hullur Subramanyam2538acc2018-02-02 16:15:25 -08005896 /* Set nss to 1 and MCS 0-7 in case of testbed */
5897 if (type && strcasecmp(type, "Testbed") == 0) {
5898#ifdef NL80211_SUPPORT
5899 int ret;
5900#endif /* NL80211_SUPPORT */
5901
5902 snprintf(buf, sizeof(buf), "iwpriv %s nss 1", intf);
5903 if (system(buf) != 0) {
5904 sigma_dut_print(dut, DUT_MSG_ERROR,
5905 "iwpriv %s nss failed", intf);
5906 }
5907
5908#ifdef NL80211_SUPPORT
5909 ret = sta_set_he_mcs(dut, intf, HE_80_MCS0_7);
5910 if (ret) {
5911 sigma_dut_print(dut, DUT_MSG_ERROR,
5912 "Setting of MCS failed, ret:%d",
5913 ret);
5914 }
5915#endif /* NL80211_SUPPORT */
Amarnath Hullur Subramanyamc67621d2018-02-04 23:18:01 -08005916
5917 /* Disable STBC as default */
5918 wcn_sta_set_stbc(dut, intf, "0");
Amarnath Hullur Subramanyamd5bb5732018-02-22 15:50:38 -08005919
5920 /* Disable AMSDU as default */
5921 iwpriv_sta_set_amsdu(dut, intf, "0");
Amarnath Hullur Subramanyam474a17d2018-02-22 18:45:54 -08005922
5923#ifdef NL80211_SUPPORT
5924 /* HE fragmentation default off */
5925 if (sta_set_he_fragmentation(dut, intf,
5926 HE_FRAG_DISABLE)) {
5927 sigma_dut_print(dut, DUT_MSG_ERROR,
5928 "Setting of HE fragmentation failed");
5929 }
5930#endif /* NL80211_SUPPORT */
Amarnath Hullur Subramanyam4622a212018-02-23 12:12:14 -08005931
5932 /* Enable WEP/TKIP with HE capability in testbed */
5933 if (sta_set_heconfig_and_wep_tkip(dut, intf, 1)) {
5934 sigma_dut_print(dut, DUT_MSG_ERROR,
5935 "Enabling HE config with WEP/TKIP failed");
5936 }
Amarnath Hullur Subramanyam2538acc2018-02-02 16:15:25 -08005937 }
Amarnath Hullur Subramanyam0acce2c2018-03-06 06:05:17 -08005938
5939 /* Defaults in case of DUT */
5940 if (type && strcasecmp(type, "DUT") == 0) {
Arif Hussaind48fcc72018-05-01 18:34:18 -07005941 /* Enable STBC by default */
5942 wcn_sta_set_stbc(dut, intf, "1");
5943
Amarnath Hullur Subramanyam0acce2c2018-03-06 06:05:17 -08005944 /* set nss to 2 */
5945 snprintf(buf, sizeof(buf), "iwpriv %s nss 2", intf);
5946 if (system(buf) != 0) {
5947 sigma_dut_print(dut, DUT_MSG_ERROR,
5948 "iwpriv %s nss 2 failed", intf);
5949 }
Arif Hussainac6c5112018-05-25 17:34:00 -07005950 dut->sta_nss = 2;
Amarnath Hullur Subramanyam0acce2c2018-03-06 06:05:17 -08005951
5952#ifdef NL80211_SUPPORT
Arif Hussainae239842018-05-01 18:20:05 -07005953 /* Set HE_MCS to 0-11 */
5954 if (sta_set_he_mcs(dut, intf, HE_80_MCS0_11)) {
Amarnath Hullur Subramanyam0acce2c2018-03-06 06:05:17 -08005955 sigma_dut_print(dut, DUT_MSG_ERROR,
5956 "Setting of MCS failed");
5957 }
5958#endif /* NL80211_SUPPORT */
5959
5960 /* Disable WEP/TKIP with HE capability in DUT */
5961 if (sta_set_heconfig_and_wep_tkip(dut, intf, 0)) {
5962 sigma_dut_print(dut, DUT_MSG_ERROR,
5963 "Enabling HE config with WEP/TKIP failed");
5964 }
5965 }
Amarnath Hullur Subramanyam58f2a6e2018-01-31 03:36:00 -08005966 }
5967}
5968
5969
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005970static int cmd_sta_reset_default(struct sigma_dut *dut,
5971 struct sigma_conn *conn,
5972 struct sigma_cmd *cmd)
5973{
5974 int cmd_sta_p2p_reset(struct sigma_dut *dut, struct sigma_conn *conn,
5975 struct sigma_cmd *cmd);
5976 const char *intf = get_param(cmd, "Interface");
5977 const char *type;
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -07005978 const char *program = get_param(cmd, "program");
Ankita Bajaj0d5825b2017-10-25 16:20:17 +05305979 const char *dev_role = get_param(cmd, "DevRole");
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005980
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -07005981 if (!program)
5982 program = get_param(cmd, "prog");
5983 dut->program = sigma_program_to_enum(program);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005984 dut->device_type = STA_unknown;
5985 type = get_param(cmd, "type");
5986 if (type && strcasecmp(type, "Testbed") == 0)
5987 dut->device_type = STA_testbed;
5988 if (type && strcasecmp(type, "DUT") == 0)
5989 dut->device_type = STA_dut;
5990
5991 if (dut->program == PROGRAM_TDLS) {
5992 /* Clear TDLS testing mode */
5993 wpa_command(intf, "SET tdls_disabled 0");
5994 wpa_command(intf, "SET tdls_testing 0");
5995 dut->no_tpk_expiration = 0;
Pradeep Reddy POTTETI8ce2a232016-10-28 12:17:32 +05305996 if (get_driver_type() == DRIVER_WCN) {
5997 /* Enable the WCN driver in TDLS Explicit trigger mode
5998 */
5999 wpa_command(intf, "SET tdls_external_control 0");
6000 wpa_command(intf, "SET tdls_trigger_control 0");
6001 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006002 }
6003
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -07006004#ifdef MIRACAST
6005 if (dut->program == PROGRAM_WFD ||
6006 dut->program == PROGRAM_DISPLAYR2)
6007 miracast_sta_reset_default(dut, conn, cmd);
6008#endif /* MIRACAST */
6009
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006010 switch (get_driver_type()) {
6011 case DRIVER_ATHEROS:
6012 sta_reset_default_ath(dut, intf, type);
6013 break;
Amarnath Hullur Subramanyam58f2a6e2018-01-31 03:36:00 -08006014 case DRIVER_WCN:
6015 sta_reset_default_wcn(dut, intf, type);
6016 break;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006017 default:
6018 break;
6019 }
6020
6021#ifdef ANDROID_NAN
6022 if (dut->program == PROGRAM_NAN)
6023 nan_cmd_sta_reset_default(dut, conn, cmd);
6024#endif /* ANDROID_NAN */
6025
6026 if (dut->program == PROGRAM_HS2_R2) {
6027 unlink("SP/wi-fi.org/pps.xml");
6028 if (system("rm -r SP/*") != 0) {
6029 }
6030 unlink("next-client-cert.pem");
6031 unlink("next-client-key.pem");
6032 }
6033
6034 if (dut->program == PROGRAM_60GHZ) {
6035 const char *dev_role = get_param(cmd, "DevRole");
6036
6037 if (!dev_role) {
6038 send_resp(dut, conn, SIGMA_ERROR,
6039 "errorCode,Missing DevRole argument");
6040 return 0;
6041 }
6042
6043 if (strcasecmp(dev_role, "STA") == 0)
6044 dut->dev_role = DEVROLE_STA;
6045 else if (strcasecmp(dev_role, "PCP") == 0)
6046 dut->dev_role = DEVROLE_PCP;
6047 else {
6048 send_resp(dut, conn, SIGMA_ERROR,
6049 "errorCode,Unknown DevRole");
6050 return 0;
6051 }
6052
6053 if (dut->device_type == STA_unknown) {
6054 sigma_dut_print(dut, DUT_MSG_ERROR,
6055 "Device type is not STA testbed or DUT");
6056 send_resp(dut, conn, SIGMA_ERROR,
6057 "errorCode,Unknown device type");
6058 return 0;
6059 }
6060 }
6061
6062 wpa_command(intf, "WPS_ER_STOP");
6063 wpa_command(intf, "FLUSH");
vamsi krishnaf39bc1e2017-08-23 17:37:53 +05306064 wpa_command(intf, "ERP_FLUSH");
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006065 wpa_command(intf, "SET radio_disabled 0");
6066
6067 if (dut->tmp_mac_addr && dut->set_macaddr) {
6068 dut->tmp_mac_addr = 0;
6069 if (system(dut->set_macaddr) != 0) {
6070 sigma_dut_print(dut, DUT_MSG_INFO, "Failed to clear "
6071 "temporary MAC address");
6072 }
6073 }
6074
6075 set_ps(intf, dut, 0);
6076
6077 if (dut->program == PROGRAM_HS2 || dut->program == PROGRAM_HS2_R2) {
6078 wpa_command(intf, "SET interworking 1");
6079 wpa_command(intf, "SET hs20 1");
6080 }
6081
Deepak Dhamdhere0fe0e452017-12-18 14:52:09 -08006082 if (dut->program == PROGRAM_HS2_R2 ||
6083 dut->program == PROGRAM_OCE) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006084 wpa_command(intf, "SET pmf 1");
6085 } else {
6086 wpa_command(intf, "SET pmf 0");
6087 }
6088
6089 hs2_clear_credentials(intf);
6090 wpa_command(intf, "SET hessid 00:00:00:00:00:00");
6091 wpa_command(intf, "SET access_network_type 15");
6092
6093 static_ip_file(0, NULL, NULL, NULL);
6094 kill_dhcp_client(dut, intf);
6095 clear_ip_addr(dut, intf);
6096
6097 dut->er_oper_performed = 0;
6098 dut->er_oper_bssid[0] = '\0';
6099
priyadharshini gowthamanad6cbba2016-10-04 10:39:58 -07006100 if (dut->program == PROGRAM_LOC) {
6101 /* Disable Interworking by default */
6102 wpa_command(get_station_ifname(), "SET interworking 0");
6103 }
6104
Ashwini Patil00402582017-04-13 12:29:39 +05306105 if (dut->program == PROGRAM_MBO) {
6106 free(dut->non_pref_ch_list);
6107 dut->non_pref_ch_list = NULL;
Ashwini Patil5acd7382017-04-13 15:55:04 +05306108 free(dut->btm_query_cand_list);
6109 dut->btm_query_cand_list = NULL;
Ashwini Patilc63161e2017-04-13 16:30:23 +05306110 wpa_command(intf, "SET reject_btm_req_reason 0");
Ashwini Patila75de5a2017-04-13 16:35:05 +05306111 wpa_command(intf, "SET ignore_assoc_disallow 0");
Ashwini Patild174f2c2017-04-13 16:49:46 +05306112 wpa_command(intf, "SET gas_address3 0");
Ashwini Patil9183fdb2017-04-13 16:58:25 +05306113 wpa_command(intf, "SET roaming 1");
Ashwini Patil00402582017-04-13 12:29:39 +05306114 }
6115
Jouni Malinen3c367e82017-06-23 17:01:47 +03006116 free(dut->rsne_override);
6117 dut->rsne_override = NULL;
6118
Jouni Malinen68143132017-09-02 02:34:08 +03006119 free(dut->sae_commit_override);
6120 dut->sae_commit_override = NULL;
6121
Jouni Malinend86e5822017-08-29 03:55:32 +03006122 dut->dpp_conf_id = -1;
Jouni Malinenb1dd21f2017-11-13 19:14:29 +02006123 free(dut->dpp_peer_uri);
6124 dut->dpp_peer_uri = NULL;
Jouni Malinen63d50412017-11-24 11:55:38 +02006125 dut->dpp_local_bootstrap = -1;
Jouni Malinen5011fb52017-12-05 21:00:15 +02006126 wpa_command(intf, "SET dpp_config_processing 2");
Jouni Malinend86e5822017-08-29 03:55:32 +03006127
Jouni Malinenfac9cad2017-10-10 18:35:55 +03006128 wpa_command(intf, "VENDOR_ELEM_REMOVE 13 *");
6129
vamsi krishnaa2799492017-12-05 14:28:01 +05306130 if (dut->program == PROGRAM_OCE) {
Ankita Bajaja2cb5672017-10-25 16:08:28 +05306131 wpa_command(intf, "SET oce 1");
vamsi krishnaa2799492017-12-05 14:28:01 +05306132 wpa_command(intf, "SET disable_fils 0");
Ankita Bajaj1bde7942018-01-09 19:15:01 +05306133 wpa_command(intf, "FILS_HLP_REQ_FLUSH");
6134 dut->fils_hlp = 0;
6135#ifdef ANDROID
6136 hlp_thread_cleanup(dut);
6137#endif /* ANDROID */
vamsi krishnaa2799492017-12-05 14:28:01 +05306138 }
Ankita Bajaja2cb5672017-10-25 16:08:28 +05306139
Sunil Dutt076081f2018-02-05 19:45:50 +05306140#ifdef NL80211_SUPPORT
Sunil Dutt44595082018-02-12 19:41:45 +05306141 if (get_driver_type() == DRIVER_WCN &&
6142 dut->config_rsnie == 1) {
6143 dut->config_rsnie = 0;
6144 sta_config_rsnie(dut, 0);
Sunil Dutt076081f2018-02-05 19:45:50 +05306145 }
6146#endif /* NL80211_SUPPORT */
6147
Sunil Duttfebf8a82018-02-09 18:50:13 +05306148 if (dev_role && strcasecmp(dev_role, "STA-CFON") == 0) {
6149 dut->dev_role = DEVROLE_STA_CFON;
6150 return sta_cfon_reset_default(dut, conn, cmd);
6151 }
6152
6153 if (dut->program != PROGRAM_VHT)
6154 return cmd_sta_p2p_reset(dut, conn, cmd);
6155
Priyadharshini Gowthamana7dfd492015-11-09 14:34:08 -08006156 return 1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006157}
6158
6159
6160static int cmd_sta_get_events(struct sigma_dut *dut, struct sigma_conn *conn,
6161 struct sigma_cmd *cmd)
6162{
6163 const char *program = get_param(cmd, "Program");
6164
6165 if (program == NULL)
6166 return -1;
6167#ifdef ANDROID_NAN
6168 if (strcasecmp(program, "NAN") == 0)
6169 return nan_cmd_sta_get_events(dut, conn, cmd);
6170#endif /* ANDROID_NAN */
6171 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter");
6172 return 0;
6173}
6174
6175
Jouni Malinen82905202018-04-29 17:20:10 +03006176static int sta_exec_action_url(struct sigma_dut *dut, struct sigma_conn *conn,
6177 struct sigma_cmd *cmd)
6178{
6179 const char *url = get_param(cmd, "url");
6180 const char *method = get_param(cmd, "method");
6181 pid_t pid;
6182 int status;
6183
6184 if (!url || !method)
6185 return -1;
6186
6187 /* TODO: Add support for method,post */
6188 if (strcasecmp(method, "get") != 0) {
6189 send_resp(dut, conn, SIGMA_ERROR,
6190 "ErrorCode,Unsupported method");
6191 return 0;
6192 }
6193
6194 pid = fork();
6195 if (pid < 0) {
6196 perror("fork");
6197 return -1;
6198 }
6199
6200 if (pid == 0) {
6201 char * argv[5] = { "wget", "-O", "/dev/null",
6202 (char *) url, NULL };
6203
6204 execv("/usr/bin/wget", argv);
6205 perror("execv");
6206 exit(0);
6207 return -1;
6208 }
6209
6210 if (waitpid(pid, &status, 0) < 0) {
6211 perror("waitpid");
6212 return -1;
6213 }
6214
6215 if (WIFEXITED(status)) {
6216 const char *errmsg;
6217
6218 if (WEXITSTATUS(status) == 0)
6219 return 1;
6220 sigma_dut_print(dut, DUT_MSG_INFO, "wget exit status %d",
6221 WEXITSTATUS(status));
6222 switch (WEXITSTATUS(status)) {
6223 case 4:
6224 errmsg = "errmsg,Network failure";
6225 break;
6226 case 8:
6227 errmsg = "errmsg,Server issued an error response";
6228 break;
6229 default:
6230 errmsg = "errmsg,Unknown failure from wget";
6231 break;
6232 }
6233 send_resp(dut, conn, SIGMA_ERROR, errmsg);
6234 return 0;
6235 }
6236
6237 send_resp(dut, conn, SIGMA_ERROR, "errmsg,Unknown failure");
6238 return 0;
6239}
6240
6241
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006242static int cmd_sta_exec_action(struct sigma_dut *dut, struct sigma_conn *conn,
6243 struct sigma_cmd *cmd)
6244{
6245 const char *program = get_param(cmd, "Prog");
6246
Jouni Malinen82905202018-04-29 17:20:10 +03006247 if (program && !get_param(cmd, "interface"))
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006248 return -1;
6249#ifdef ANDROID_NAN
Jouni Malinen82905202018-04-29 17:20:10 +03006250 if (program && strcasecmp(program, "NAN") == 0)
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006251 return nan_cmd_sta_exec_action(dut, conn, cmd);
6252#endif /* ANDROID_NAN */
Jouni Malinen82905202018-04-29 17:20:10 +03006253
6254 if (program && strcasecmp(program, "Loc") == 0)
priyadharshini gowthamand66913a2016-07-29 15:11:17 -07006255 return loc_cmd_sta_exec_action(dut, conn, cmd);
Jouni Malinen82905202018-04-29 17:20:10 +03006256
6257 if (get_param(cmd, "url"))
6258 return sta_exec_action_url(dut, conn, cmd);
6259
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006260 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported parameter");
6261 return 0;
6262}
6263
6264
6265static int cmd_sta_set_11n(struct sigma_dut *dut, struct sigma_conn *conn,
6266 struct sigma_cmd *cmd)
6267{
6268 const char *intf = get_param(cmd, "Interface");
6269 const char *val, *mcs32, *rate;
6270
6271 val = get_param(cmd, "GREENFIELD");
6272 if (val) {
6273 if (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0) {
6274 /* Enable GD */
6275 send_resp(dut, conn, SIGMA_ERROR,
6276 "ErrorCode,GF not supported");
6277 return 0;
6278 }
6279 }
6280
6281 val = get_param(cmd, "SGI20");
6282 if (val) {
6283 switch (get_driver_type()) {
6284 case DRIVER_ATHEROS:
6285 ath_sta_set_sgi(dut, intf, val);
6286 break;
6287 default:
6288 send_resp(dut, conn, SIGMA_ERROR,
6289 "ErrorCode,SGI20 not supported");
6290 return 0;
6291 }
6292 }
6293
6294 mcs32 = get_param(cmd, "MCS32"); /* HT Duplicate Mode Enable/Disable */
6295 rate = get_param(cmd, "MCS_FIXEDRATE"); /* Fixed MCS rate (0..31) */
6296 if (mcs32 && rate) {
6297 /* TODO */
6298 send_resp(dut, conn, SIGMA_ERROR,
6299 "ErrorCode,MCS32,MCS_FIXEDRATE not supported");
6300 return 0;
6301 } else if (mcs32 && !rate) {
6302 /* TODO */
6303 send_resp(dut, conn, SIGMA_ERROR,
6304 "ErrorCode,MCS32 not supported");
6305 return 0;
6306 } else if (!mcs32 && rate) {
6307 switch (get_driver_type()) {
6308 case DRIVER_ATHEROS:
priyadharshini gowthamane5e25172015-12-08 14:53:48 -08006309 novap_reset(dut, intf);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006310 ath_sta_set_11nrates(dut, intf, rate);
6311 break;
6312 default:
6313 send_resp(dut, conn, SIGMA_ERROR,
6314 "ErrorCode,MCS32_FIXEDRATE not supported");
6315 return 0;
6316 }
6317 }
6318
6319 return cmd_sta_set_wireless_common(intf, dut, conn, cmd);
6320}
6321
6322
Arif Hussain7b47d2d2018-05-09 10:44:02 -07006323static void cmd_set_max_he_mcs(struct sigma_dut *dut, const char *intf,
6324 int mcs_config)
6325{
6326#ifdef NL80211_SUPPORT
6327 int ret;
6328
6329 switch (mcs_config) {
6330 case HE_80_MCS0_7:
6331 case HE_80_MCS0_9:
6332 case HE_80_MCS0_11:
6333 ret = sta_set_he_mcs(dut, intf, mcs_config);
6334 if (ret) {
6335 sigma_dut_print(dut, DUT_MSG_ERROR,
6336 "cmd_set_max_he_mcs: Setting of MCS:%d failed, ret:%d",
6337 mcs_config, ret);
6338 }
6339 break;
6340 default:
6341 sigma_dut_print(dut, DUT_MSG_ERROR,
6342 "cmd_set_max_he_mcs: Invalid mcs %d",
6343 mcs_config);
6344 break;
6345 }
6346#else /* NL80211_SUPPORT */
6347 sigma_dut_print(dut, DUT_MSG_ERROR,
6348 "max HE MCS cannot be changed without NL80211_SUPPORT defined");
6349#endif /* NL80211_SUPPORT */
6350}
6351
6352
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006353static int cmd_sta_set_wireless_vht(struct sigma_dut *dut,
6354 struct sigma_conn *conn,
6355 struct sigma_cmd *cmd)
6356{
6357 const char *intf = get_param(cmd, "Interface");
6358 const char *val;
6359 char buf[30];
6360 int tkip = -1;
6361 int wep = -1;
6362
6363 val = get_param(cmd, "SGI80");
6364 if (val) {
6365 int sgi80;
6366
6367 sgi80 = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0;
6368 snprintf(buf, sizeof(buf), "iwpriv %s shortgi %d", intf, sgi80);
6369 if (system(buf) != 0) {
6370 sigma_dut_print(dut, DUT_MSG_ERROR,
6371 "iwpriv shortgi failed");
6372 }
6373 }
6374
6375 val = get_param(cmd, "TxBF");
6376 if (val && (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0)) {
6377 snprintf(buf, sizeof(buf), "iwpriv %s vhtsubfee 1", intf);
6378 if (system(buf) != 0) {
6379 sigma_dut_print(dut, DUT_MSG_ERROR,
6380 "iwpriv vhtsubfee failed");
6381 }
6382 snprintf(buf, sizeof(buf), "iwpriv %s vhtsubfer 1", intf);
6383 if (system(buf) != 0) {
6384 sigma_dut_print(dut, DUT_MSG_ERROR,
6385 "iwpriv vhtsubfer failed");
6386 }
6387 }
6388
6389 val = get_param(cmd, "MU_TxBF");
6390 if (val && (strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0)) {
6391 switch (get_driver_type()) {
6392 case DRIVER_ATHEROS:
6393 ath_sta_set_txsp_stream(dut, intf, "1SS");
6394 ath_sta_set_rxsp_stream(dut, intf, "1SS");
6395 case DRIVER_WCN:
6396 if (wcn_sta_set_sp_stream(dut, intf, "1SS") < 0) {
6397 send_resp(dut, conn, SIGMA_ERROR,
6398 "ErrorCode,Failed to set RX/TXSP_STREAM");
6399 return 0;
6400 }
6401 default:
6402 sigma_dut_print(dut, DUT_MSG_ERROR,
6403 "Setting SP_STREAM not supported");
6404 break;
6405 }
6406 snprintf(buf, sizeof(buf), "iwpriv %s vhtmubfee 1", intf);
6407 if (system(buf) != 0) {
6408 sigma_dut_print(dut, DUT_MSG_ERROR,
6409 "iwpriv vhtmubfee failed");
6410 }
6411 snprintf(buf, sizeof(buf), "iwpriv %s vhtmubfer 1", intf);
6412 if (system(buf) != 0) {
6413 sigma_dut_print(dut, DUT_MSG_ERROR,
6414 "iwpriv vhtmubfer failed");
6415 }
6416 }
6417
6418 val = get_param(cmd, "LDPC");
6419 if (val) {
6420 int ldpc;
6421
6422 ldpc = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0;
6423 snprintf(buf, sizeof(buf), "iwpriv %s ldpc %d", intf, ldpc);
6424 if (system(buf) != 0) {
6425 sigma_dut_print(dut, DUT_MSG_ERROR,
6426 "iwpriv ldpc failed");
6427 }
6428 }
6429
Amarnath Hullur Subramanyam7bae60e2018-01-31 03:46:50 -08006430 val = get_param(cmd, "BCC");
6431 if (val) {
6432 int bcc;
6433
6434 bcc = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0;
6435 /* use LDPC iwpriv itself to set bcc coding, bcc coding
6436 * is mutually exclusive to bcc */
6437 snprintf(buf, sizeof(buf), "iwpriv %s ldpc %d", intf, !bcc);
6438 if (system(buf) != 0) {
6439 sigma_dut_print(dut, DUT_MSG_ERROR,
6440 "Enabling/Disabling of BCC failed");
6441 }
6442 }
6443
Arif Hussain7b47d2d2018-05-09 10:44:02 -07006444 val = get_param(cmd, "MaxHE-MCS_1SS_RxMapLTE80");
6445 if (val && dut->sta_nss == 1)
6446 cmd_set_max_he_mcs(dut, intf, atoi(val));
6447
6448 val = get_param(cmd, "MaxHE-MCS_2SS_RxMapLTE80");
6449 if (val && dut->sta_nss == 2)
6450 cmd_set_max_he_mcs(dut, intf, atoi(val));
6451
Arif Hussainac6c5112018-05-25 17:34:00 -07006452 val = get_param(cmd, "MCS_FixedRate");
6453 if (val) {
6454#ifdef NL80211_SUPPORT
6455 int mcs, ratecode = 0;
6456 enum he_mcs_config mcs_config;
6457 int ret;
6458
6459 ratecode = (0x07 & dut->sta_nss) << 5;
6460 mcs = atoi(val);
6461 /* Add the MCS to the ratecode */
6462 if (mcs >= 0 && mcs <= 11) {
6463 ratecode += mcs;
6464 if (dut->device_type == STA_testbed &&
6465 mcs > 7 && mcs <= 11) {
6466 if (mcs <= 9)
6467 mcs_config = HE_80_MCS0_9;
6468 else
6469 mcs_config = HE_80_MCS0_11;
6470 ret = sta_set_he_mcs(dut, intf, mcs_config);
6471 if (ret) {
6472 sigma_dut_print(dut, DUT_MSG_ERROR,
6473 "MCS_FixedRate: mcs setting failed, mcs:%d, mcs_config %d, ret:%d",
6474 mcs, mcs_config, ret);
6475 }
6476 }
6477 snprintf(buf, sizeof(buf),
6478 "iwpriv %s set_11ax_rate 0x%03x",
6479 intf, ratecode);
6480 if (system(buf) != 0) {
6481 sigma_dut_print(dut, DUT_MSG_ERROR,
6482 "MCS_FixedRate: iwpriv setting of 11ax rates 0x%03x failed",
6483 ratecode);
6484 }
6485 } else {
6486 sigma_dut_print(dut, DUT_MSG_ERROR,
6487 "MCS_FixedRate: HE MCS %d not supported",
6488 mcs);
6489 }
6490#else /* NL80211_SUPPORT */
6491 sigma_dut_print(dut, DUT_MSG_ERROR,
6492 "MCS_FixedRate cannot be changed without NL80211_SUPPORT defined");
6493#endif /* NL80211_SUPPORT */
6494 }
6495
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006496 val = get_param(cmd, "opt_md_notif_ie");
6497 if (val) {
6498 char *result = NULL;
6499 char delim[] = ";";
6500 char token[30];
6501 int value, config_val = 0;
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05306502 char *saveptr;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006503
Peng Xub8fc5cc2017-05-10 17:27:28 -07006504 strlcpy(token, val, sizeof(token));
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05306505 result = strtok_r(token, delim, &saveptr);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006506
6507 /* Extract the NSS information */
6508 if (result) {
6509 value = atoi(result);
6510 switch (value) {
6511 case 1:
6512 config_val = 1;
6513 break;
6514 case 2:
6515 config_val = 3;
6516 break;
6517 case 3:
6518 config_val = 7;
6519 break;
6520 case 4:
6521 config_val = 15;
6522 break;
6523 default:
6524 config_val = 3;
6525 break;
6526 }
6527
6528 snprintf(buf, sizeof(buf), "iwpriv %s rxchainmask %d",
6529 intf, config_val);
6530 if (system(buf) != 0) {
6531 sigma_dut_print(dut, DUT_MSG_ERROR,
6532 "iwpriv rxchainmask failed");
6533 }
6534
6535 snprintf(buf, sizeof(buf), "iwpriv %s txchainmask %d",
6536 intf, config_val);
6537 if (system(buf) != 0) {
6538 sigma_dut_print(dut, DUT_MSG_ERROR,
6539 "iwpriv txchainmask failed");
6540 }
6541 }
6542
6543 /* Extract the channel width information */
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05306544 result = strtok_r(NULL, delim, &saveptr);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006545 if (result) {
6546 value = atoi(result);
6547 switch (value) {
6548 case 20:
6549 config_val = 0;
6550 break;
6551 case 40:
6552 config_val = 1;
6553 break;
6554 case 80:
6555 config_val = 2;
6556 break;
6557 case 160:
6558 config_val = 3;
6559 break;
6560 default:
6561 config_val = 2;
6562 break;
6563 }
6564
6565 dut->chwidth = config_val;
6566
6567 snprintf(buf, sizeof(buf), "iwpriv %s chwidth %d",
6568 intf, config_val);
6569 if (system(buf) != 0) {
6570 sigma_dut_print(dut, DUT_MSG_ERROR,
6571 "iwpriv chwidth failed");
6572 }
6573 }
6574
6575 snprintf(buf, sizeof(buf), "iwpriv %s opmode_notify 1", intf);
6576 if (system(buf) != 0) {
6577 sigma_dut_print(dut, DUT_MSG_ERROR,
6578 "iwpriv opmode_notify failed");
6579 }
6580 }
6581
6582 val = get_param(cmd, "nss_mcs_cap");
6583 if (val) {
6584 int nss, mcs;
6585 char token[20];
6586 char *result = NULL;
6587 unsigned int vht_mcsmap = 0;
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05306588 char *saveptr;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006589
Peng Xub8fc5cc2017-05-10 17:27:28 -07006590 strlcpy(token, val, sizeof(token));
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05306591 result = strtok_r(token, ";", &saveptr);
Pradeep Reddy POTTETIcd649a22016-01-29 12:55:59 +05306592 if (!result) {
6593 sigma_dut_print(dut, DUT_MSG_ERROR,
6594 "VHT NSS not specified");
6595 return 0;
6596 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006597 nss = atoi(result);
6598
6599 snprintf(buf, sizeof(buf), "iwpriv %s nss %d", intf, nss);
6600 if (system(buf) != 0) {
6601 sigma_dut_print(dut, DUT_MSG_ERROR,
6602 "iwpriv nss failed");
6603 }
Arif Hussainac6c5112018-05-25 17:34:00 -07006604 dut->sta_nss = nss;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006605
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05306606 result = strtok_r(NULL, ";", &saveptr);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006607 if (result == NULL) {
6608 sigma_dut_print(dut, DUT_MSG_ERROR,
6609 "VHTMCS NOT SPECIFIED!");
6610 return 0;
6611 }
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05306612 result = strtok_r(result, "-", &saveptr);
6613 result = strtok_r(NULL, "-", &saveptr);
Pradeep Reddy POTTETIcd649a22016-01-29 12:55:59 +05306614 if (!result) {
6615 sigma_dut_print(dut, DUT_MSG_ERROR,
6616 "VHT MCS not specified");
6617 return 0;
6618 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006619 mcs = atoi(result);
6620
6621 snprintf(buf, sizeof(buf), "iwpriv %s vhtmcs %d", intf, mcs);
6622 if (system(buf) != 0) {
6623 sigma_dut_print(dut, DUT_MSG_ERROR,
6624 "iwpriv mcs failed");
6625 }
6626
6627 switch (nss) {
6628 case 1:
6629 switch (mcs) {
6630 case 7:
6631 vht_mcsmap = 0xfffc;
6632 break;
6633 case 8:
6634 vht_mcsmap = 0xfffd;
6635 break;
6636 case 9:
6637 vht_mcsmap = 0xfffe;
6638 break;
6639 default:
6640 vht_mcsmap = 0xfffe;
6641 break;
6642 }
6643 break;
6644 case 2:
6645 switch (mcs) {
6646 case 7:
6647 vht_mcsmap = 0xfff0;
6648 break;
6649 case 8:
6650 vht_mcsmap = 0xfff5;
6651 break;
6652 case 9:
6653 vht_mcsmap = 0xfffa;
6654 break;
6655 default:
6656 vht_mcsmap = 0xfffa;
6657 break;
6658 }
6659 break;
6660 case 3:
6661 switch (mcs) {
6662 case 7:
6663 vht_mcsmap = 0xffc0;
6664 break;
6665 case 8:
6666 vht_mcsmap = 0xffd5;
6667 break;
6668 case 9:
6669 vht_mcsmap = 0xffea;
6670 break;
6671 default:
6672 vht_mcsmap = 0xffea;
6673 break;
6674 }
6675 break;
6676 default:
6677 vht_mcsmap = 0xffea;
6678 break;
6679 }
6680 snprintf(buf, sizeof(buf), "iwpriv %s vht_mcsmap 0x%04x",
6681 intf, vht_mcsmap);
6682 if (system(buf) != 0) {
6683 sigma_dut_print(dut, DUT_MSG_ERROR,
6684 "iwpriv vht_mcsmap failed");
6685 }
6686 }
6687
6688 /* UNSUPPORTED: val = get_param(cmd, "Tx_lgi_rate"); */
6689
6690 val = get_param(cmd, "Vht_tkip");
6691 if (val)
6692 tkip = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0;
6693
6694 val = get_param(cmd, "Vht_wep");
6695 if (val)
6696 wep = strcmp(val, "1") == 0 || strcasecmp(val, "Enable") == 0;
6697
6698 if (tkip != -1 || wep != -1) {
6699 if ((tkip == 1 && wep != 0) || (wep == 1 && tkip != 0)) {
6700 snprintf(buf, sizeof(buf), "iwpriv %s htweptkip 1",
6701 intf);
6702 } else if ((tkip == 0 && wep != 1) || (wep == 0 && tkip != 1)) {
6703 snprintf(buf, sizeof(buf), "iwpriv %s htweptkip 0",
6704 intf);
6705 } else {
6706 sigma_dut_print(dut, DUT_MSG_ERROR,
6707 "ErrorCode,mixed mode of VHT TKIP/WEP not supported");
6708 return 0;
6709 }
6710
6711 if (system(buf) != 0) {
6712 sigma_dut_print(dut, DUT_MSG_ERROR,
6713 "iwpriv htweptkip failed");
6714 }
6715 }
6716
6717 val = get_param(cmd, "txBandwidth");
6718 if (val) {
6719 switch (get_driver_type()) {
Amarnath Hullur Subramanyam4f860292018-01-31 03:49:35 -08006720 case DRIVER_WCN:
6721 if (wcn_sta_set_width(dut, intf, val) < 0) {
6722 send_resp(dut, conn, SIGMA_ERROR,
6723 "ErrorCode,Failed to set txBandwidth");
6724 return 0;
6725 }
6726 break;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006727 case DRIVER_ATHEROS:
6728 if (ath_set_width(dut, conn, intf, val) < 0) {
6729 send_resp(dut, conn, SIGMA_ERROR,
6730 "ErrorCode,Failed to set txBandwidth");
6731 return 0;
6732 }
6733 break;
6734 default:
6735 sigma_dut_print(dut, DUT_MSG_ERROR,
6736 "Setting txBandwidth not supported");
6737 break;
6738 }
6739 }
6740
6741 return cmd_sta_set_wireless_common(intf, dut, conn, cmd);
6742}
6743
6744
6745static int sta_set_wireless_60g(struct sigma_dut *dut,
6746 struct sigma_conn *conn,
6747 struct sigma_cmd *cmd)
6748{
6749 const char *dev_role = get_param(cmd, "DevRole");
6750
6751 if (!dev_role) {
6752 send_resp(dut, conn, SIGMA_INVALID,
6753 "ErrorCode,DevRole not specified");
6754 return 0;
6755 }
6756
6757 if (strcasecmp(dev_role, "PCP") == 0)
6758 return sta_set_60g_pcp(dut, conn, cmd);
6759 if (strcasecmp(dev_role, "STA") == 0)
6760 return sta_set_60g_sta(dut, conn, cmd);
6761 send_resp(dut, conn, SIGMA_INVALID,
6762 "ErrorCode,DevRole not supported");
6763 return 0;
6764}
6765
6766
Ankita Bajaj0d5825b2017-10-25 16:20:17 +05306767static int sta_set_wireless_oce(struct sigma_dut *dut, struct sigma_conn *conn,
6768 struct sigma_cmd *cmd)
6769{
6770 int status;
6771 const char *intf = get_param(cmd, "Interface");
6772 const char *val = get_param(cmd, "DevRole");
6773
6774 if (val && strcasecmp(val, "STA-CFON") == 0) {
6775 status = sta_cfon_set_wireless(dut, conn, cmd);
6776 if (status)
6777 return status;
6778 }
6779 return cmd_sta_set_wireless_common(intf, dut, conn, cmd);
6780}
6781
6782
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006783static int cmd_sta_set_wireless(struct sigma_dut *dut, struct sigma_conn *conn,
6784 struct sigma_cmd *cmd)
6785{
6786 const char *val;
6787
6788 val = get_param(cmd, "Program");
6789 if (val) {
6790 if (strcasecmp(val, "11n") == 0)
6791 return cmd_sta_set_11n(dut, conn, cmd);
Amarnath Hullur Subramanyam4f860292018-01-31 03:49:35 -08006792 if (strcasecmp(val, "VHT") == 0 || strcasecmp(val, "HE") == 0)
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006793 return cmd_sta_set_wireless_vht(dut, conn, cmd);
6794 if (strcasecmp(val, "60ghz") == 0)
6795 return sta_set_wireless_60g(dut, conn, cmd);
Ankita Bajaj0d5825b2017-10-25 16:20:17 +05306796 if (strcasecmp(val, "OCE") == 0)
6797 return sta_set_wireless_oce(dut, conn, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006798 send_resp(dut, conn, SIGMA_ERROR,
6799 "ErrorCode,Program value not supported");
6800 } else {
6801 send_resp(dut, conn, SIGMA_ERROR,
6802 "ErrorCode,Program argument not available");
6803 }
6804
6805 return 0;
6806}
6807
6808
6809static void ath_sta_inject_frame(struct sigma_dut *dut, const char *intf,
6810 int tid)
6811{
6812 char buf[100];
6813 int tid_to_dscp [] = { 0x00, 0x20, 0x40, 0x60, 0x80, 0xa0, 0xc0, 0xe0 };
6814
Pradeep Reddy POTTETId31d1322016-10-13 17:22:03 +05306815 if (tid < 0 ||
6816 tid >= (int) (sizeof(tid_to_dscp) / sizeof(tid_to_dscp[0]))) {
6817 sigma_dut_print(dut, DUT_MSG_ERROR, "Unsupported TID: %d", tid);
6818 return;
6819 }
6820
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006821 /*
6822 * Two ways to ensure that addba request with a
6823 * non zero TID could be sent out. EV 117296
6824 */
6825 snprintf(buf, sizeof(buf),
6826 "ping -c 8 -Q %d `arp -a | grep wlan0 | awk '{print $2}' | tr -d '()'`",
6827 tid);
6828 if (system(buf) != 0) {
6829 sigma_dut_print(dut, DUT_MSG_ERROR,
6830 "Ping did not send out");
6831 }
6832
6833 snprintf(buf, sizeof(buf),
6834 "iwconfig %s | grep Access | awk '{print $6}' > %s",
6835 intf, VI_QOS_TMP_FILE);
6836 if (system(buf) != 0)
6837 return;
6838
6839 snprintf(buf, sizeof(buf),
6840 "ifconfig %s | grep HWaddr | cut -b 39-56 >> %s",
6841 intf, VI_QOS_TMP_FILE);
6842 if (system(buf) != 0)
6843 sigma_dut_print(dut, DUT_MSG_ERROR, "HWaddr matching failed");
6844
6845 snprintf(buf,sizeof(buf), "sed -n '3,$p' %s >> %s",
6846 VI_QOS_REFFILE, VI_QOS_TMP_FILE);
6847 if (system(buf) != 0) {
6848 sigma_dut_print(dut, DUT_MSG_ERROR,
6849 "VI_QOS_TEMP_FILE generation error failed");
6850 }
6851 snprintf(buf, sizeof(buf), "sed '5 c %x' %s > %s",
6852 tid_to_dscp[tid], VI_QOS_TMP_FILE, VI_QOS_FILE);
6853 if (system(buf) != 0) {
6854 sigma_dut_print(dut, DUT_MSG_ERROR,
6855 "VI_QOS_FILE generation failed");
6856 }
6857
6858 snprintf(buf, sizeof(buf), "sed '5 c %x' %s > %s",
6859 tid_to_dscp[tid], VI_QOS_TMP_FILE, VI_QOS_FILE);
6860 if (system(buf) != 0) {
6861 sigma_dut_print(dut, DUT_MSG_ERROR,
6862 "VI_QOS_FILE generation failed");
6863 }
6864
6865 snprintf(buf, sizeof(buf), "ethinject %s %s", intf, VI_QOS_FILE);
6866 if (system(buf) != 0) {
6867 }
6868}
6869
6870
6871static int ath_sta_send_addba(struct sigma_dut *dut, struct sigma_conn *conn,
6872 struct sigma_cmd *cmd)
6873{
6874 const char *intf = get_param(cmd, "Interface");
6875 const char *val;
6876 int tid = 0;
6877 char buf[100];
6878
6879 val = get_param(cmd, "TID");
6880 if (val) {
6881 tid = atoi(val);
6882 if (tid)
6883 ath_sta_inject_frame(dut, intf, tid);
6884 }
6885
6886 /* Command sequence for ADDBA request on Peregrine based devices */
6887 snprintf(buf, sizeof(buf), "iwpriv %s setaddbaoper 1", intf);
6888 if (system(buf) != 0) {
6889 sigma_dut_print(dut, DUT_MSG_ERROR,
6890 "iwpriv setaddbaoper failed");
6891 }
6892
6893 snprintf(buf, sizeof(buf), "wifitool %s senddelba 1 %d 1 4", intf, tid);
6894 if (system(buf) != 0) {
6895 sigma_dut_print(dut, DUT_MSG_ERROR,
6896 "wifitool senddelba failed");
6897 }
6898
6899 snprintf(buf, sizeof(buf), "wifitool %s sendaddba 1 %d 64", intf, tid);
6900 if (system(buf) != 0) {
6901 sigma_dut_print(dut, DUT_MSG_ERROR,
6902 "wifitool sendaddba failed");
6903 }
6904
6905 /* UNSUPPORTED: val = get_param(cmd, "Dest_mac"); */
6906
6907 return 1;
6908}
6909
6910
Lior David9981b512017-01-20 13:16:40 +02006911#ifdef __linux__
6912
6913static int wil6210_send_addba(struct sigma_dut *dut, const char *dest_mac,
6914 int agg_size)
6915{
6916 char dir[128], buf[128];
6917 FILE *f;
6918 regex_t re;
6919 regmatch_t m[2];
6920 int rc, ret = -1, vring_id, found;
6921
6922 if (wil6210_get_debugfs_dir(dut, dir, sizeof(dir))) {
6923 sigma_dut_print(dut, DUT_MSG_ERROR,
6924 "failed to get wil6210 debugfs dir");
6925 return -1;
6926 }
6927
6928 snprintf(buf, sizeof(buf), "%s/vrings", dir);
6929 f = fopen(buf, "r");
6930 if (!f) {
6931 sigma_dut_print(dut, DUT_MSG_ERROR, "failed to open: %s", buf);
6932 return -1;
6933 }
6934
6935 if (regcomp(&re, "VRING tx_[ \t]*([0-9]+)", REG_EXTENDED)) {
6936 sigma_dut_print(dut, DUT_MSG_ERROR, "regcomp failed");
6937 goto out;
6938 }
6939
6940 /* find TX VRING for the mac address */
6941 found = 0;
6942 while (fgets(buf, sizeof(buf), f)) {
6943 if (strcasestr(buf, dest_mac)) {
6944 found = 1;
6945 break;
6946 }
6947 }
6948
6949 if (!found) {
6950 sigma_dut_print(dut, DUT_MSG_ERROR,
6951 "no TX VRING for %s", dest_mac);
6952 goto out;
6953 }
6954
6955 /* extract VRING ID, "VRING tx_<id> = {" */
6956 if (!fgets(buf, sizeof(buf), f)) {
6957 sigma_dut_print(dut, DUT_MSG_ERROR,
6958 "no VRING start line for %s", dest_mac);
6959 goto out;
6960 }
6961
6962 rc = regexec(&re, buf, 2, m, 0);
6963 regfree(&re);
6964 if (rc || m[1].rm_so < 0) {
6965 sigma_dut_print(dut, DUT_MSG_ERROR,
6966 "no VRING TX ID for %s", dest_mac);
6967 goto out;
6968 }
6969 buf[m[1].rm_eo] = 0;
6970 vring_id = atoi(&buf[m[1].rm_so]);
6971
6972 /* send the addba command */
6973 fclose(f);
6974 snprintf(buf, sizeof(buf), "%s/back", dir);
6975 f = fopen(buf, "w");
6976 if (!f) {
6977 sigma_dut_print(dut, DUT_MSG_ERROR,
6978 "failed to open: %s", buf);
6979 return -1;
6980 }
6981
6982 fprintf(f, "add %d %d\n", vring_id, agg_size);
6983
6984 ret = 0;
6985
6986out:
6987 fclose(f);
6988
6989 return ret;
6990}
6991
6992
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006993static int send_addba_60g(struct sigma_dut *dut, struct sigma_conn *conn,
6994 struct sigma_cmd *cmd)
6995{
6996 const char *val;
6997 int tid = 0;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02006998
6999 val = get_param(cmd, "TID");
7000 if (val) {
7001 tid = atoi(val);
7002 if (tid != 0) {
7003 sigma_dut_print(dut, DUT_MSG_ERROR,
7004 "Ignore TID %d for send_addba use TID 0 for 60g since only 0 required on TX",
7005 tid);
7006 }
7007 }
7008
7009 val = get_param(cmd, "Dest_mac");
7010 if (!val) {
7011 sigma_dut_print(dut, DUT_MSG_ERROR,
7012 "Currently not supporting addba for 60G without Dest_mac");
7013 return SIGMA_DUT_ERROR_CALLER_SEND_STATUS;
7014 }
7015
Lior David9981b512017-01-20 13:16:40 +02007016 if (wil6210_send_addba(dut, val, dut->back_rcv_buf))
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007017 return -1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007018
7019 return 1;
7020}
7021
Lior David9981b512017-01-20 13:16:40 +02007022#endif /* __linux__ */
7023
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007024
Amarnath Hullur Subramanyama72c0162018-02-27 14:49:09 -08007025static int wcn_sta_send_addba(struct sigma_dut *dut, struct sigma_conn *conn,
7026 struct sigma_cmd *cmd)
7027{
7028#ifdef NL80211_SUPPORT
7029 const char *intf = get_param(cmd, "Interface");
7030 const char *val;
7031 int tid = -1;
7032 int bufsize = 64;
7033 struct nl_msg *msg;
7034 int ret = 0;
7035 struct nlattr *params;
7036 int ifindex;
7037
7038 val = get_param(cmd, "TID");
7039 if (val)
7040 tid = atoi(val);
7041
7042 if (tid == -1) {
7043 send_resp(dut, conn, SIGMA_ERROR,
7044 "ErrorCode,sta_send_addba tid invalid");
7045 return 0;
7046 }
7047
7048 /* UNSUPPORTED: val = get_param(cmd, "Dest_mac"); */
7049
7050 ifindex = if_nametoindex(intf);
7051 if (ifindex == 0) {
7052 sigma_dut_print(dut, DUT_MSG_ERROR,
7053 "%s: Index for interface %s failed",
7054 __func__, intf);
7055 send_resp(dut, conn, SIGMA_ERROR,
7056 "ErrorCode,sta_send_addba interface invalid");
7057 return 0;
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_ADD_DEL_BA_SESSION,
7069 QCA_WLAN_ADD_BA) ||
7070 nla_put_u8(msg, QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_BA_TID,
7071 tid) ||
7072 nla_put_u8(msg,
7073 QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADDBA_BUFF_SIZE,
7074 bufsize)) {
7075 sigma_dut_print(dut, DUT_MSG_ERROR,
7076 "%s: err in adding vendor_cmd and vendor_data",
7077 __func__);
7078 nlmsg_free(msg);
7079 send_resp(dut, conn, SIGMA_ERROR,
7080 "ErrorCode,sta_send_addba err in adding vendor_cmd and vendor_data");
7081 return 0;
7082 }
7083 nla_nest_end(msg, params);
7084
7085 ret = send_and_recv_msgs(dut, dut->nl_ctx, msg, NULL, NULL);
7086 if (ret) {
7087 sigma_dut_print(dut, DUT_MSG_ERROR,
7088 "%s: err in send_and_recv_msgs, ret=%d",
7089 __func__, ret);
Sunil Dutt30605592018-05-04 20:35:50 +05307090 if (ret == -EOPNOTSUPP)
7091 return 1;
Amarnath Hullur Subramanyama72c0162018-02-27 14:49:09 -08007092 send_resp(dut, conn, SIGMA_ERROR,
7093 "ErrorCode,sta_send_addba err in send_and_recv_msgs");
7094 return 0;
7095 }
Amarnath Hullur Subramanyama72c0162018-02-27 14:49:09 -08007096#else /* NL80211_SUPPORT */
7097 sigma_dut_print(dut, DUT_MSG_ERROR,
7098 "sta_send_addba not supported without NL80211_SUPPORT defined");
Amarnath Hullur Subramanyama72c0162018-02-27 14:49:09 -08007099#endif /* NL80211_SUPPORT */
Sunil Dutt30605592018-05-04 20:35:50 +05307100
7101 return 1;
Amarnath Hullur Subramanyama72c0162018-02-27 14:49:09 -08007102}
7103
7104
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007105static int cmd_sta_send_addba(struct sigma_dut *dut, struct sigma_conn *conn,
7106 struct sigma_cmd *cmd)
7107{
7108 switch (get_driver_type()) {
7109 case DRIVER_ATHEROS:
7110 return ath_sta_send_addba(dut, conn, cmd);
Amarnath Hullur Subramanyama72c0162018-02-27 14:49:09 -08007111 case DRIVER_WCN:
7112 return wcn_sta_send_addba(dut, conn, cmd);
Lior David9981b512017-01-20 13:16:40 +02007113#ifdef __linux__
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007114 case DRIVER_WIL6210:
7115 return send_addba_60g(dut, conn, cmd);
Lior David9981b512017-01-20 13:16:40 +02007116#endif /* __linux__ */
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007117 default:
7118 /*
7119 * There is no driver specific implementation for other drivers.
7120 * Ignore the command and report COMPLETE since the following
7121 * throughput test operation will end up sending ADDBA anyway.
7122 */
7123 return 1;
7124 }
7125}
7126
7127
7128int inject_eth_frame(int s, const void *data, size_t len,
7129 unsigned short ethtype, char *dst, char *src)
7130{
7131 struct iovec iov[4] = {
7132 {
7133 .iov_base = dst,
7134 .iov_len = ETH_ALEN,
7135 },
7136 {
7137 .iov_base = src,
7138 .iov_len = ETH_ALEN,
7139 },
7140 {
7141 .iov_base = &ethtype,
7142 .iov_len = sizeof(unsigned short),
7143 },
7144 {
7145 .iov_base = (void *) data,
7146 .iov_len = len,
7147 }
7148 };
7149 struct msghdr msg = {
7150 .msg_name = NULL,
7151 .msg_namelen = 0,
7152 .msg_iov = iov,
7153 .msg_iovlen = 4,
7154 .msg_control = NULL,
7155 .msg_controllen = 0,
7156 .msg_flags = 0,
7157 };
7158
7159 return sendmsg(s, &msg, 0);
7160}
7161
7162#if defined(__linux__) || defined(__QNXNTO__)
7163
7164int inject_frame(int s, const void *data, size_t len, int encrypt)
7165{
7166#define IEEE80211_RADIOTAP_F_WEP 0x04
7167#define IEEE80211_RADIOTAP_F_FRAG 0x08
7168 unsigned char rtap_hdr[] = {
7169 0x00, 0x00, /* radiotap version */
7170 0x0e, 0x00, /* radiotap length */
7171 0x02, 0xc0, 0x00, 0x00, /* bmap: flags, tx and rx flags */
7172 IEEE80211_RADIOTAP_F_FRAG, /* F_FRAG (fragment if required) */
7173 0x00, /* padding */
7174 0x00, 0x00, /* RX and TX flags to indicate that */
7175 0x00, 0x00, /* this is the injected frame directly */
7176 };
7177 struct iovec iov[2] = {
7178 {
7179 .iov_base = &rtap_hdr,
7180 .iov_len = sizeof(rtap_hdr),
7181 },
7182 {
7183 .iov_base = (void *) data,
7184 .iov_len = len,
7185 }
7186 };
7187 struct msghdr msg = {
7188 .msg_name = NULL,
7189 .msg_namelen = 0,
7190 .msg_iov = iov,
7191 .msg_iovlen = 2,
7192 .msg_control = NULL,
7193 .msg_controllen = 0,
7194 .msg_flags = 0,
7195 };
7196
7197 if (encrypt)
7198 rtap_hdr[8] |= IEEE80211_RADIOTAP_F_WEP;
7199
7200 return sendmsg(s, &msg, 0);
7201}
7202
7203
7204int open_monitor(const char *ifname)
7205{
7206#ifdef __QNXNTO__
7207 struct sockaddr_dl ll;
7208 int s;
7209
7210 memset(&ll, 0, sizeof(ll));
7211 ll.sdl_family = AF_LINK;
7212 ll.sdl_index = if_nametoindex(ifname);
7213 if (ll.sdl_index == 0) {
7214 perror("if_nametoindex");
7215 return -1;
7216 }
7217 s = socket(PF_INET, SOCK_RAW, 0);
7218#else /* __QNXNTO__ */
7219 struct sockaddr_ll ll;
7220 int s;
7221
7222 memset(&ll, 0, sizeof(ll));
7223 ll.sll_family = AF_PACKET;
7224 ll.sll_ifindex = if_nametoindex(ifname);
7225 if (ll.sll_ifindex == 0) {
7226 perror("if_nametoindex");
7227 return -1;
7228 }
7229 s = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
7230#endif /* __QNXNTO__ */
7231 if (s < 0) {
7232 perror("socket[PF_PACKET,SOCK_RAW]");
7233 return -1;
7234 }
7235
7236 if (bind(s, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
7237 perror("monitor socket bind");
7238 close(s);
7239 return -1;
7240 }
7241
7242 return s;
7243}
7244
7245
7246static int hex2num(char c)
7247{
7248 if (c >= '0' && c <= '9')
7249 return c - '0';
7250 if (c >= 'a' && c <= 'f')
7251 return c - 'a' + 10;
7252 if (c >= 'A' && c <= 'F')
7253 return c - 'A' + 10;
7254 return -1;
7255}
7256
7257
7258int hwaddr_aton(const char *txt, unsigned char *addr)
7259{
7260 int i;
7261
7262 for (i = 0; i < 6; i++) {
7263 int a, b;
7264
7265 a = hex2num(*txt++);
7266 if (a < 0)
7267 return -1;
7268 b = hex2num(*txt++);
7269 if (b < 0)
7270 return -1;
7271 *addr++ = (a << 4) | b;
7272 if (i < 5 && *txt++ != ':')
7273 return -1;
7274 }
7275
7276 return 0;
7277}
7278
7279#endif /* defined(__linux__) || defined(__QNXNTO__) */
7280
7281enum send_frame_type {
7282 DISASSOC, DEAUTH, SAQUERY, AUTH, ASSOCREQ, REASSOCREQ, DLS_REQ
7283};
7284enum send_frame_protection {
7285 CORRECT_KEY, INCORRECT_KEY, UNPROTECTED
7286};
7287
7288
7289static int sta_inject_frame(struct sigma_dut *dut, struct sigma_conn *conn,
7290 enum send_frame_type frame,
7291 enum send_frame_protection protected,
7292 const char *dest)
7293{
7294#ifdef __linux__
7295 unsigned char buf[1000], *pos;
7296 int s, res;
7297 char bssid[20], addr[20];
7298 char result[32], ssid[100];
7299 size_t ssid_len;
7300
7301 if (get_wpa_status(get_station_ifname(), "wpa_state", result,
7302 sizeof(result)) < 0 ||
7303 strncmp(result, "COMPLETED", 9) != 0) {
7304 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Not connected");
7305 return 0;
7306 }
7307
7308 if (get_wpa_status(get_station_ifname(), "bssid", bssid, sizeof(bssid))
7309 < 0) {
7310 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not get "
7311 "current BSSID");
7312 return 0;
7313 }
7314
7315 if (get_wpa_status(get_station_ifname(), "address", addr, sizeof(addr))
7316 < 0) {
7317 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not get "
7318 "own MAC address");
7319 return 0;
7320 }
7321
7322 if (get_wpa_status(get_station_ifname(), "ssid", ssid, sizeof(ssid))
7323 < 0) {
7324 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not get "
7325 "current SSID");
7326 return 0;
7327 }
7328 ssid_len = strlen(ssid);
7329
7330 pos = buf;
7331
7332 /* Frame Control */
7333 switch (frame) {
7334 case DISASSOC:
7335 *pos++ = 0xa0;
7336 break;
7337 case DEAUTH:
7338 *pos++ = 0xc0;
7339 break;
7340 case SAQUERY:
7341 *pos++ = 0xd0;
7342 break;
7343 case AUTH:
7344 *pos++ = 0xb0;
7345 break;
7346 case ASSOCREQ:
7347 *pos++ = 0x00;
7348 break;
7349 case REASSOCREQ:
7350 *pos++ = 0x20;
7351 break;
7352 case DLS_REQ:
7353 *pos++ = 0xd0;
7354 break;
7355 }
7356
7357 if (protected == INCORRECT_KEY)
7358 *pos++ = 0x40; /* Set Protected field to 1 */
7359 else
7360 *pos++ = 0x00;
7361
7362 /* Duration */
7363 *pos++ = 0x00;
7364 *pos++ = 0x00;
7365
7366 /* addr1 = DA (current AP) */
7367 hwaddr_aton(bssid, pos);
7368 pos += 6;
7369 /* addr2 = SA (own address) */
7370 hwaddr_aton(addr, pos);
7371 pos += 6;
7372 /* addr3 = BSSID (current AP) */
7373 hwaddr_aton(bssid, pos);
7374 pos += 6;
7375
7376 /* Seq# (to be filled by driver/mac80211) */
7377 *pos++ = 0x00;
7378 *pos++ = 0x00;
7379
7380 if (protected == INCORRECT_KEY) {
7381 /* CCMP parameters */
7382 memcpy(pos, "\x61\x01\x00\x20\x00\x10\x00\x00", 8);
7383 pos += 8;
7384 }
7385
7386 if (protected == INCORRECT_KEY) {
7387 switch (frame) {
7388 case DEAUTH:
7389 /* Reason code (encrypted) */
7390 memcpy(pos, "\xa7\x39", 2);
7391 pos += 2;
7392 break;
7393 case DISASSOC:
7394 /* Reason code (encrypted) */
7395 memcpy(pos, "\xa7\x39", 2);
7396 pos += 2;
7397 break;
7398 case SAQUERY:
7399 /* Category|Action|TransID (encrypted) */
7400 memcpy(pos, "\x6f\xbd\xe9\x4d", 4);
7401 pos += 4;
7402 break;
7403 default:
7404 return -1;
7405 }
7406
7407 /* CCMP MIC */
7408 memcpy(pos, "\xc8\xd8\x3b\x06\x5d\xb7\x25\x68", 8);
7409 pos += 8;
7410 } else {
7411 switch (frame) {
7412 case DEAUTH:
7413 /* reason code = 8 */
7414 *pos++ = 0x08;
7415 *pos++ = 0x00;
7416 break;
7417 case DISASSOC:
7418 /* reason code = 8 */
7419 *pos++ = 0x08;
7420 *pos++ = 0x00;
7421 break;
7422 case SAQUERY:
7423 /* Category - SA Query */
7424 *pos++ = 0x08;
7425 /* SA query Action - Request */
7426 *pos++ = 0x00;
7427 /* Transaction ID */
7428 *pos++ = 0x12;
7429 *pos++ = 0x34;
7430 break;
7431 case AUTH:
7432 /* Auth Alg (Open) */
7433 *pos++ = 0x00;
7434 *pos++ = 0x00;
7435 /* Seq# */
7436 *pos++ = 0x01;
7437 *pos++ = 0x00;
7438 /* Status code */
7439 *pos++ = 0x00;
7440 *pos++ = 0x00;
7441 break;
7442 case ASSOCREQ:
7443 /* Capability Information */
7444 *pos++ = 0x31;
7445 *pos++ = 0x04;
7446 /* Listen Interval */
7447 *pos++ = 0x0a;
7448 *pos++ = 0x00;
7449 /* SSID */
7450 *pos++ = 0x00;
7451 *pos++ = ssid_len;
7452 memcpy(pos, ssid, ssid_len);
7453 pos += ssid_len;
7454 /* Supported Rates */
7455 memcpy(pos, "\x01\x08\x02\x04\x0b\x16\x0c\x12\x18\x24",
7456 10);
7457 pos += 10;
7458 /* Extended Supported Rates */
7459 memcpy(pos, "\x32\x04\x30\x48\x60\x6c", 6);
7460 pos += 6;
7461 /* RSN */
7462 memcpy(pos, "\x30\x1a\x01\x00\x00\x0f\xac\x04\x01\x00"
7463 "\x00\x0f\xac\x04\x01\x00\x00\x0f\xac\x02\xc0"
7464 "\x00\x00\x00\x00\x0f\xac\x06", 28);
7465 pos += 28;
7466 break;
7467 case REASSOCREQ:
7468 /* Capability Information */
7469 *pos++ = 0x31;
7470 *pos++ = 0x04;
7471 /* Listen Interval */
7472 *pos++ = 0x0a;
7473 *pos++ = 0x00;
7474 /* Current AP */
7475 hwaddr_aton(bssid, pos);
7476 pos += 6;
7477 /* SSID */
7478 *pos++ = 0x00;
7479 *pos++ = ssid_len;
7480 memcpy(pos, ssid, ssid_len);
7481 pos += ssid_len;
7482 /* Supported Rates */
7483 memcpy(pos, "\x01\x08\x02\x04\x0b\x16\x0c\x12\x18\x24",
7484 10);
7485 pos += 10;
7486 /* Extended Supported Rates */
7487 memcpy(pos, "\x32\x04\x30\x48\x60\x6c", 6);
7488 pos += 6;
7489 /* RSN */
7490 memcpy(pos, "\x30\x1a\x01\x00\x00\x0f\xac\x04\x01\x00"
7491 "\x00\x0f\xac\x04\x01\x00\x00\x0f\xac\x02\xc0"
7492 "\x00\x00\x00\x00\x0f\xac\x06", 28);
7493 pos += 28;
7494 break;
7495 case DLS_REQ:
7496 /* Category - DLS */
7497 *pos++ = 0x02;
7498 /* DLS Action - Request */
7499 *pos++ = 0x00;
7500 /* Destination MACAddress */
7501 if (dest)
7502 hwaddr_aton(dest, pos);
7503 else
7504 memset(pos, 0, 6);
7505 pos += 6;
7506 /* Source MACAddress */
7507 hwaddr_aton(addr, pos);
7508 pos += 6;
7509 /* Capability Information */
7510 *pos++ = 0x10; /* Privacy */
7511 *pos++ = 0x06; /* QoS */
7512 /* DLS Timeout Value */
7513 *pos++ = 0x00;
7514 *pos++ = 0x01;
7515 /* Supported rates */
7516 *pos++ = 0x01;
7517 *pos++ = 0x08;
7518 *pos++ = 0x0c; /* 6 Mbps */
7519 *pos++ = 0x12; /* 9 Mbps */
7520 *pos++ = 0x18; /* 12 Mbps */
7521 *pos++ = 0x24; /* 18 Mbps */
7522 *pos++ = 0x30; /* 24 Mbps */
7523 *pos++ = 0x48; /* 36 Mbps */
7524 *pos++ = 0x60; /* 48 Mbps */
7525 *pos++ = 0x6c; /* 54 Mbps */
7526 /* TODO: Extended Supported Rates */
7527 /* TODO: HT Capabilities */
7528 break;
7529 }
7530 }
7531
7532 s = open_monitor("sigmadut");
7533 if (s < 0) {
7534 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to open "
7535 "monitor socket");
7536 return 0;
7537 }
7538
7539 res = inject_frame(s, buf, pos - buf, protected == CORRECT_KEY);
7540 if (res < 0) {
7541 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to "
7542 "inject frame");
Pradeep Reddy POTTETI673d85c2016-07-26 19:08:07 +05307543 close(s);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007544 return 0;
7545 }
7546 if (res < pos - buf) {
7547 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Only partial "
7548 "frame sent");
Pradeep Reddy POTTETI673d85c2016-07-26 19:08:07 +05307549 close(s);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007550 return 0;
7551 }
7552
7553 close(s);
7554
7555 return 1;
7556#else /* __linux__ */
7557 send_resp(dut, conn, SIGMA_ERROR, "errorCode,sta_send_frame not "
7558 "yet supported");
7559 return 0;
7560#endif /* __linux__ */
7561}
7562
7563
7564static int cmd_sta_send_frame_tdls(struct sigma_dut *dut,
7565 struct sigma_conn *conn,
7566 struct sigma_cmd *cmd)
7567{
7568 const char *intf = get_param(cmd, "Interface");
7569 const char *sta, *val;
7570 unsigned char addr[ETH_ALEN];
7571 char buf[100];
7572
7573 sta = get_param(cmd, "peer");
7574 if (sta == NULL)
7575 sta = get_param(cmd, "station");
7576 if (sta == NULL) {
7577 send_resp(dut, conn, SIGMA_ERROR,
7578 "ErrorCode,Missing peer address");
7579 return 0;
7580 }
7581 if (hwaddr_aton(sta, addr) < 0) {
7582 send_resp(dut, conn, SIGMA_ERROR,
7583 "ErrorCode,Invalid peer address");
7584 return 0;
7585 }
7586
7587 val = get_param(cmd, "type");
7588 if (val == NULL)
7589 return -1;
7590
7591 if (strcasecmp(val, "DISCOVERY") == 0) {
7592 snprintf(buf, sizeof(buf), "TDLS_DISCOVER %s", sta);
7593 if (wpa_command(intf, buf) < 0) {
7594 send_resp(dut, conn, SIGMA_ERROR,
7595 "ErrorCode,Failed to send TDLS discovery");
7596 return 0;
7597 }
7598 return 1;
7599 }
7600
7601 if (strcasecmp(val, "SETUP") == 0) {
7602 int status = 0, timeout = 0;
7603
7604 val = get_param(cmd, "Status");
7605 if (val)
7606 status = atoi(val);
7607
7608 val = get_param(cmd, "Timeout");
7609 if (val)
7610 timeout = atoi(val);
7611
7612 if (status != 0 && status != 37) {
7613 send_resp(dut, conn, SIGMA_ERROR,
7614 "ErrorCode,Unsupported status value");
7615 return 0;
7616 }
7617
7618 if (timeout != 0 && timeout != 301) {
7619 send_resp(dut, conn, SIGMA_ERROR,
7620 "ErrorCode,Unsupported timeout value");
7621 return 0;
7622 }
7623
7624 if (status && timeout) {
7625 send_resp(dut, conn, SIGMA_ERROR,
7626 "ErrorCode,Unsupported timeout+status "
7627 "combination");
7628 return 0;
7629 }
7630
7631 if (status == 37 &&
7632 wpa_command(intf, "SET tdls_testing 0x200")) {
7633 send_resp(dut, conn, SIGMA_ERROR,
7634 "ErrorCode,Failed to enable "
7635 "decline setup response test mode");
7636 return 0;
7637 }
7638
7639 if (timeout == 301) {
7640 int res;
7641 if (dut->no_tpk_expiration)
7642 res = wpa_command(intf,
7643 "SET tdls_testing 0x108");
7644 else
7645 res = wpa_command(intf,
7646 "SET tdls_testing 0x8");
7647 if (res) {
7648 send_resp(dut, conn, SIGMA_ERROR,
7649 "ErrorCode,Failed to set short TPK "
7650 "lifetime");
7651 return 0;
7652 }
7653 }
7654
7655 snprintf(buf, sizeof(buf), "TDLS_SETUP %s", sta);
7656 if (wpa_command(intf, buf) < 0) {
7657 send_resp(dut, conn, SIGMA_ERROR,
7658 "ErrorCode,Failed to send TDLS setup");
7659 return 0;
7660 }
7661 return 1;
7662 }
7663
7664 if (strcasecmp(val, "TEARDOWN") == 0) {
7665 snprintf(buf, sizeof(buf), "TDLS_TEARDOWN %s", sta);
7666 if (wpa_command(intf, buf) < 0) {
7667 send_resp(dut, conn, SIGMA_ERROR,
7668 "ErrorCode,Failed to send TDLS teardown");
7669 return 0;
7670 }
7671 return 1;
7672 }
7673
7674 send_resp(dut, conn, SIGMA_ERROR,
7675 "ErrorCode,Unsupported TDLS frame");
7676 return 0;
7677}
7678
7679
7680static int sta_ap_known(const char *ifname, const char *bssid)
7681{
7682 char buf[4096];
7683
7684 snprintf(buf, sizeof(buf), "BSS %s", bssid);
7685 if (wpa_command_resp(ifname, buf, buf, sizeof(buf)) < 0)
7686 return 0;
7687 if (strncmp(buf, "id=", 3) != 0)
7688 return 0;
7689 return 1;
7690}
7691
7692
7693static int sta_scan_ap(struct sigma_dut *dut, const char *ifname,
7694 const char *bssid)
7695{
7696 int res;
7697 struct wpa_ctrl *ctrl;
7698 char buf[256];
7699
7700 if (sta_ap_known(ifname, bssid))
7701 return 0;
7702 sigma_dut_print(dut, DUT_MSG_DEBUG,
7703 "AP not in BSS table - start scan");
7704
7705 ctrl = open_wpa_mon(ifname);
7706 if (ctrl == NULL) {
7707 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open "
7708 "wpa_supplicant monitor connection");
7709 return -1;
7710 }
7711
7712 if (wpa_command(ifname, "SCAN") < 0) {
7713 sigma_dut_print(dut, DUT_MSG_INFO, "Failed to start scan");
7714 wpa_ctrl_detach(ctrl);
7715 wpa_ctrl_close(ctrl);
7716 return -1;
7717 }
7718
7719 res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-SCAN-RESULTS",
7720 buf, sizeof(buf));
7721
7722 wpa_ctrl_detach(ctrl);
7723 wpa_ctrl_close(ctrl);
7724
7725 if (res < 0) {
7726 sigma_dut_print(dut, DUT_MSG_INFO, "Scan did not complete");
7727 return -1;
7728 }
7729
7730 if (sta_ap_known(ifname, bssid))
7731 return 0;
7732 sigma_dut_print(dut, DUT_MSG_INFO, "AP not in BSS table");
7733 return -1;
7734}
7735
7736
7737static int cmd_sta_send_frame_hs2_neighadv(struct sigma_dut *dut,
7738 struct sigma_conn *conn,
7739 struct sigma_cmd *cmd,
7740 const char *intf)
7741{
7742 char buf[200];
7743
7744 snprintf(buf, sizeof(buf), "ndsend 2001:DB8::1 %s", intf);
7745 if (system(buf) != 0) {
7746 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Failed to run "
7747 "ndsend");
7748 return 0;
7749 }
7750
7751 return 1;
7752}
7753
7754
7755static int cmd_sta_send_frame_hs2_neighsolreq(struct sigma_dut *dut,
7756 struct sigma_conn *conn,
7757 struct sigma_cmd *cmd,
7758 const char *intf)
7759{
7760 char buf[200];
7761 const char *ip = get_param(cmd, "SenderIP");
7762
Peng Xu26b356d2017-10-04 17:58:16 -07007763 if (!ip)
7764 return 0;
7765
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007766 snprintf(buf, sizeof(buf), "ndisc6 -nm %s %s -r 4", ip, intf);
7767 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
7768 if (system(buf) == 0) {
7769 sigma_dut_print(dut, DUT_MSG_INFO,
7770 "Neighbor Solicitation got a response "
7771 "for %s@%s", ip, intf);
7772 }
7773
7774 return 1;
7775}
7776
7777
7778static int cmd_sta_send_frame_hs2_arpprobe(struct sigma_dut *dut,
7779 struct sigma_conn *conn,
7780 struct sigma_cmd *cmd,
7781 const char *ifname)
7782{
7783 char buf[200];
7784 const char *ip = get_param(cmd, "SenderIP");
7785
7786 if (ip == NULL) {
7787 send_resp(dut, conn, SIGMA_ERROR,
7788 "ErrorCode,Missing SenderIP parameter");
7789 return 0;
7790 }
7791 snprintf(buf, sizeof(buf), "arping -I %s -D %s -c 4", ifname, ip);
7792 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
7793 if (system(buf) != 0) {
7794 sigma_dut_print(dut, DUT_MSG_INFO, "arping DAD got a response "
7795 "for %s@%s", ip, ifname);
7796 }
7797
7798 return 1;
7799}
7800
7801
7802static int cmd_sta_send_frame_hs2_arpannounce(struct sigma_dut *dut,
7803 struct sigma_conn *conn,
7804 struct sigma_cmd *cmd,
7805 const char *ifname)
7806{
7807 char buf[200];
7808 char ip[16];
7809 int s;
Peng Xub3756882017-10-04 14:39:09 -07007810 struct ifreq ifr;
7811 struct sockaddr_in saddr;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007812
7813 s = socket(PF_INET, SOCK_DGRAM, 0);
Peng Xub3756882017-10-04 14:39:09 -07007814 if (s < 0) {
7815 perror("socket");
7816 return -1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007817 }
7818
Peng Xub3756882017-10-04 14:39:09 -07007819 memset(&ifr, 0, sizeof(ifr));
7820 strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
7821 if (ioctl(s, SIOCGIFADDR, &ifr) < 0) {
7822 sigma_dut_print(dut, DUT_MSG_INFO,
7823 "Failed to get %s IP address: %s",
7824 ifname, strerror(errno));
7825 close(s);
7826 return -1;
7827 }
7828 close(s);
7829
7830 memcpy(&saddr, &ifr.ifr_addr, sizeof(struct sockaddr_in));
7831 strlcpy(ip, inet_ntoa(saddr.sin_addr), sizeof(ip));
7832
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007833 snprintf(buf, sizeof(buf), "arping -I %s -s %s %s -c 4", ifname, ip,
7834 ip);
7835 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
7836 if (system(buf) != 0) {
7837 }
7838
7839 return 1;
7840}
7841
7842
7843static int cmd_sta_send_frame_hs2_arpreply(struct sigma_dut *dut,
7844 struct sigma_conn *conn,
7845 struct sigma_cmd *cmd,
7846 const char *ifname)
7847{
7848 char buf[200], addr[20];
7849 char dst[ETH_ALEN], src[ETH_ALEN];
7850 short ethtype = htons(ETH_P_ARP);
7851 char *pos;
7852 int s, res;
7853 const char *val;
7854 struct sockaddr_in taddr;
7855
7856 val = get_param(cmd, "dest");
7857 if (val)
7858 hwaddr_aton(val, (unsigned char *) dst);
7859
7860 val = get_param(cmd, "DestIP");
7861 if (val)
7862 inet_aton(val, &taddr.sin_addr);
Peng Xu151c9e12017-10-04 14:39:09 -07007863 else
7864 return -2;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007865
7866 if (get_wpa_status(get_station_ifname(), "address", addr,
7867 sizeof(addr)) < 0)
7868 return -2;
7869 hwaddr_aton(addr, (unsigned char *) src);
7870
7871 pos = buf;
7872 *pos++ = 0x00;
7873 *pos++ = 0x01;
7874 *pos++ = 0x08;
7875 *pos++ = 0x00;
7876 *pos++ = 0x06;
7877 *pos++ = 0x04;
7878 *pos++ = 0x00;
7879 *pos++ = 0x02;
7880 memcpy(pos, src, ETH_ALEN);
7881 pos += ETH_ALEN;
7882 memcpy(pos, &taddr.sin_addr, 4);
7883 pos += 4;
7884 memcpy(pos, dst, ETH_ALEN);
7885 pos += ETH_ALEN;
7886 memcpy(pos, &taddr.sin_addr, 4);
7887 pos += 4;
7888
7889 s = open_monitor(get_station_ifname());
7890 if (s < 0) {
7891 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to open "
7892 "monitor socket");
7893 return 0;
7894 }
7895
7896 res = inject_eth_frame(s, buf, pos - buf, ethtype, dst, src);
7897 if (res < 0) {
7898 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to "
7899 "inject frame");
Pradeep Reddy POTTETI673d85c2016-07-26 19:08:07 +05307900 close(s);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02007901 return 0;
7902 }
7903
7904 close(s);
7905
7906 return 1;
7907}
7908
7909
7910static int cmd_sta_send_frame_hs2_dls_req(struct sigma_dut *dut,
7911 struct sigma_conn *conn,
7912 struct sigma_cmd *cmd,
7913 const char *intf, const char *dest)
7914{
7915 char buf[100];
7916
7917 if (if_nametoindex("sigmadut") == 0) {
7918 snprintf(buf, sizeof(buf),
7919 "iw dev %s interface add sigmadut type monitor",
7920 get_station_ifname());
7921 if (system(buf) != 0 ||
7922 if_nametoindex("sigmadut") == 0) {
7923 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to add "
7924 "monitor interface with '%s'", buf);
7925 return -2;
7926 }
7927 }
7928
7929 if (system("ifconfig sigmadut up") != 0) {
7930 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set "
7931 "monitor interface up");
7932 return -2;
7933 }
7934
7935 return sta_inject_frame(dut, conn, DLS_REQ, UNPROTECTED, dest);
7936}
7937
7938
7939static int cmd_sta_send_frame_hs2(struct sigma_dut *dut,
7940 struct sigma_conn *conn,
7941 struct sigma_cmd *cmd)
7942{
7943 const char *intf = get_param(cmd, "Interface");
7944 const char *dest = get_param(cmd, "Dest");
7945 const char *type = get_param(cmd, "FrameName");
7946 const char *val;
7947 char buf[200], *pos, *end;
7948 int count, count2;
7949
7950 if (type == NULL)
7951 type = get_param(cmd, "Type");
7952
7953 if (intf == NULL || dest == NULL || type == NULL)
7954 return -1;
7955
7956 if (strcasecmp(type, "NeighAdv") == 0)
7957 return cmd_sta_send_frame_hs2_neighadv(dut, conn, cmd, intf);
7958
7959 if (strcasecmp(type, "NeighSolicitReq") == 0)
7960 return cmd_sta_send_frame_hs2_neighsolreq(dut, conn, cmd, intf);
7961
7962 if (strcasecmp(type, "ARPProbe") == 0)
7963 return cmd_sta_send_frame_hs2_arpprobe(dut, conn, cmd, intf);
7964
7965 if (strcasecmp(type, "ARPAnnounce") == 0)
7966 return cmd_sta_send_frame_hs2_arpannounce(dut, conn, cmd, intf);
7967
7968 if (strcasecmp(type, "ARPReply") == 0)
7969 return cmd_sta_send_frame_hs2_arpreply(dut, conn, cmd, intf);
7970
7971 if (strcasecmp(type, "DLS-request") == 0 ||
7972 strcasecmp(type, "DLSrequest") == 0)
7973 return cmd_sta_send_frame_hs2_dls_req(dut, conn, cmd, intf,
7974 dest);
7975
7976 if (strcasecmp(type, "ANQPQuery") != 0 &&
7977 strcasecmp(type, "Query") != 0) {
7978 send_resp(dut, conn, SIGMA_ERROR,
7979 "ErrorCode,Unsupported HS 2.0 send frame type");
7980 return 0;
7981 }
7982
7983 if (sta_scan_ap(dut, intf, dest) < 0) {
7984 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Could not find "
7985 "the requested AP");
7986 return 0;
7987 }
7988
7989 pos = buf;
7990 end = buf + sizeof(buf);
7991 count = 0;
7992 pos += snprintf(pos, end - pos, "ANQP_GET %s ", dest);
7993
7994 val = get_param(cmd, "ANQP_CAP_LIST");
7995 if (val && atoi(val)) {
7996 pos += snprintf(pos, end - pos, "%s257", count > 0 ? "," : "");
7997 count++;
7998 }
7999
8000 val = get_param(cmd, "VENUE_NAME");
8001 if (val && atoi(val)) {
8002 pos += snprintf(pos, end - pos, "%s258", count > 0 ? "," : "");
8003 count++;
8004 }
8005
8006 val = get_param(cmd, "NETWORK_AUTH_TYPE");
8007 if (val && atoi(val)) {
8008 pos += snprintf(pos, end - pos, "%s260", count > 0 ? "," : "");
8009 count++;
8010 }
8011
8012 val = get_param(cmd, "ROAMING_CONS");
8013 if (val && atoi(val)) {
8014 pos += snprintf(pos, end - pos, "%s261", count > 0 ? "," : "");
8015 count++;
8016 }
8017
8018 val = get_param(cmd, "IP_ADDR_TYPE_AVAILABILITY");
8019 if (val && atoi(val)) {
8020 pos += snprintf(pos, end - pos, "%s262", count > 0 ? "," : "");
8021 count++;
8022 }
8023
8024 val = get_param(cmd, "NAI_REALM_LIST");
8025 if (val && atoi(val)) {
8026 pos += snprintf(pos, end - pos, "%s263", count > 0 ? "," : "");
8027 count++;
8028 }
8029
8030 val = get_param(cmd, "3GPP_INFO");
8031 if (val && atoi(val)) {
8032 pos += snprintf(pos, end - pos, "%s264", count > 0 ? "," : "");
8033 count++;
8034 }
8035
8036 val = get_param(cmd, "DOMAIN_LIST");
8037 if (val && atoi(val)) {
8038 pos += snprintf(pos, end - pos, "%s268", count > 0 ? "," : "");
8039 count++;
8040 }
8041
Jouni Malinen34cf9532018-04-29 19:26:33 +03008042 val = get_param(cmd, "Venue_URL");
8043 if (val && atoi(val)) {
8044 pos += snprintf(pos, end - pos, "%s277", count > 0 ? "," : "");
8045 count++;
8046 }
8047
Jouni Malinend3bca5d2018-04-29 17:25:23 +03008048 val = get_param(cmd, "Advice_Of_Charge");
8049 if (val && atoi(val)) {
8050 pos += snprintf(pos, end - pos, "%s278", count > 0 ? "," : "");
8051 count++;
8052 }
8053
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008054 if (count && wpa_command(intf, buf)) {
8055 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,ANQP_GET failed");
8056 return 0;
8057 }
8058
8059 pos = buf;
8060 end = buf + sizeof(buf);
8061 count2 = 0;
8062 pos += snprintf(pos, end - pos, "HS20_ANQP_GET %s ", dest);
8063
8064 val = get_param(cmd, "HS_CAP_LIST");
8065 if (val && atoi(val)) {
8066 pos += snprintf(pos, end - pos, "%s2", count2 > 0 ? "," : "");
8067 count2++;
8068 }
8069
8070 val = get_param(cmd, "OPER_NAME");
8071 if (val && atoi(val)) {
8072 pos += snprintf(pos, end - pos, "%s3", count2 > 0 ? "," : "");
8073 count2++;
8074 }
8075
8076 val = get_param(cmd, "WAN_METRICS");
8077 if (!val)
8078 val = get_param(cmd, "WAN_MAT");
8079 if (!val)
8080 val = get_param(cmd, "WAN_MET");
8081 if (val && atoi(val)) {
8082 pos += snprintf(pos, end - pos, "%s4", count2 > 0 ? "," : "");
8083 count2++;
8084 }
8085
8086 val = get_param(cmd, "CONNECTION_CAPABILITY");
8087 if (val && atoi(val)) {
8088 pos += snprintf(pos, end - pos, "%s5", count2 > 0 ? "," : "");
8089 count2++;
8090 }
8091
8092 val = get_param(cmd, "OP_CLASS");
8093 if (val && atoi(val)) {
8094 pos += snprintf(pos, end - pos, "%s7", count2 > 0 ? "," : "");
8095 count2++;
8096 }
8097
8098 val = get_param(cmd, "OSU_PROVIDER_LIST");
8099 if (val && atoi(val)) {
8100 pos += snprintf(pos, end - pos, "%s8", count2 > 0 ? "," : "");
8101 count2++;
8102 }
8103
Jouni Malinenf67afec2018-04-29 19:24:58 +03008104 val = get_param(cmd, "OPER_ICON_METADATA");
8105 if (!val)
8106 val = get_param(cmd, "OPERATOR_ICON_METADATA");
8107 if (val && atoi(val)) {
8108 pos += snprintf(pos, end - pos, "%s12", count2 > 0 ? "," : "");
8109 count2++;
8110 }
8111
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008112 if (count && count2) {
8113 sigma_dut_print(dut, DUT_MSG_DEBUG, "Wait before sending out "
8114 "second query");
8115 sleep(1);
8116 }
8117
8118 if (count2 && wpa_command(intf, buf)) {
8119 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,HS20_ANQP_GET "
8120 "failed");
8121 return 0;
8122 }
8123
8124 val = get_param(cmd, "NAI_HOME_REALM_LIST");
8125 if (val) {
8126 if (count || count2) {
8127 sigma_dut_print(dut, DUT_MSG_DEBUG, "Wait before "
8128 "sending out second query");
8129 sleep(1);
8130 }
8131
8132 if (strcmp(val, "1") == 0)
8133 val = "mail.example.com";
8134 snprintf(buf, end - pos,
8135 "HS20_GET_NAI_HOME_REALM_LIST %s realm=%s",
8136 dest, val);
8137 if (wpa_command(intf, buf)) {
8138 send_resp(dut, conn, SIGMA_ERROR,
8139 "ErrorCode,HS20_GET_NAI_HOME_REALM_LIST "
8140 "failed");
8141 return 0;
8142 }
8143 }
8144
8145 val = get_param(cmd, "ICON_REQUEST");
8146 if (val) {
8147 if (count || count2) {
8148 sigma_dut_print(dut, DUT_MSG_DEBUG, "Wait before "
8149 "sending out second query");
8150 sleep(1);
8151 }
8152
8153 snprintf(buf, end - pos,
8154 "HS20_ICON_REQUEST %s %s", dest, val);
8155 if (wpa_command(intf, buf)) {
8156 send_resp(dut, conn, SIGMA_ERROR,
8157 "ErrorCode,HS20_ICON_REQUEST failed");
8158 return 0;
8159 }
8160 }
8161
8162 return 1;
8163}
8164
8165
8166static int ath_sta_send_frame_vht(struct sigma_dut *dut,
8167 struct sigma_conn *conn,
8168 struct sigma_cmd *cmd)
8169{
8170 const char *val;
8171 char *ifname;
8172 char buf[100];
8173 int chwidth, nss;
8174
8175 val = get_param(cmd, "framename");
8176 if (!val)
8177 return -1;
8178 sigma_dut_print(dut, DUT_MSG_DEBUG, "framename is %s", val);
8179
8180 /* Command sequence to generate Op mode notification */
8181 if (val && strcasecmp(val, "Op_md_notif_frm") == 0) {
8182 ifname = get_station_ifname();
8183
8184 /* Disable STBC */
8185 snprintf(buf, sizeof(buf),
8186 "iwpriv %s tx_stbc 0", ifname);
8187 if (system(buf) != 0) {
8188 sigma_dut_print(dut, DUT_MSG_ERROR,
8189 "iwpriv tx_stbc 0 failed!");
8190 }
8191
8192 /* Extract Channel width */
8193 val = get_param(cmd, "Channel_width");
8194 if (val) {
8195 switch (atoi(val)) {
8196 case 20:
8197 chwidth = 0;
8198 break;
8199 case 40:
8200 chwidth = 1;
8201 break;
8202 case 80:
8203 chwidth = 2;
8204 break;
8205 case 160:
8206 chwidth = 3;
8207 break;
8208 default:
8209 chwidth = 2;
8210 break;
8211 }
8212
8213 snprintf(buf, sizeof(buf), "iwpriv %s chwidth %d",
8214 ifname, chwidth);
8215 if (system(buf) != 0) {
8216 sigma_dut_print(dut, DUT_MSG_ERROR,
8217 "iwpriv chwidth failed!");
8218 }
8219 }
8220
8221 /* Extract NSS */
8222 val = get_param(cmd, "NSS");
8223 if (val) {
8224 switch (atoi(val)) {
8225 case 1:
8226 nss = 1;
8227 break;
8228 case 2:
8229 nss = 3;
8230 break;
8231 case 3:
8232 nss = 7;
8233 break;
8234 default:
8235 /* We do not support NSS > 3 */
8236 nss = 3;
8237 break;
8238 }
8239 snprintf(buf, sizeof(buf),
8240 "iwpriv %s rxchainmask %d", ifname, nss);
8241 if (system(buf) != 0) {
8242 sigma_dut_print(dut, DUT_MSG_ERROR,
8243 "iwpriv rxchainmask failed!");
8244 }
8245 }
8246
8247 /* Opmode notify */
8248 snprintf(buf, sizeof(buf), "iwpriv %s opmode_notify 1", ifname);
8249 if (system(buf) != 0) {
8250 sigma_dut_print(dut, DUT_MSG_ERROR,
8251 "iwpriv opmode_notify failed!");
8252 } else {
8253 sigma_dut_print(dut, DUT_MSG_INFO,
8254 "Sent out the notify frame!");
8255 }
8256 }
8257
8258 return 1;
8259}
8260
8261
8262static int cmd_sta_send_frame_vht(struct sigma_dut *dut,
8263 struct sigma_conn *conn,
8264 struct sigma_cmd *cmd)
8265{
8266 switch (get_driver_type()) {
8267 case DRIVER_ATHEROS:
8268 return ath_sta_send_frame_vht(dut, conn, cmd);
8269 default:
8270 send_resp(dut, conn, SIGMA_ERROR,
8271 "errorCode,Unsupported sta_set_frame(VHT) with the current driver");
8272 return 0;
8273 }
8274}
8275
8276
Lior David0fe101e2017-03-09 16:09:50 +02008277#ifdef __linux__
8278int wil6210_send_frame_60g(struct sigma_dut *dut, struct sigma_conn *conn,
8279 struct sigma_cmd *cmd)
8280{
8281 const char *frame_name = get_param(cmd, "framename");
8282 const char *mac = get_param(cmd, "dest_mac");
8283
8284 if (!frame_name || !mac) {
8285 sigma_dut_print(dut, DUT_MSG_ERROR,
8286 "framename and dest_mac must be provided");
8287 return -1;
8288 }
8289
8290 if (strcasecmp(frame_name, "brp") == 0) {
8291 const char *l_rx = get_param(cmd, "L-RX");
8292 int l_rx_i;
8293
8294 if (!l_rx) {
8295 sigma_dut_print(dut, DUT_MSG_ERROR,
8296 "L-RX must be provided");
8297 return -1;
8298 }
8299 l_rx_i = atoi(l_rx);
8300
8301 sigma_dut_print(dut, DUT_MSG_INFO,
8302 "dev_send_frame: BRP-RX, dest_mac %s, L-RX %s",
8303 mac, l_rx);
8304 if (l_rx_i != 16) {
8305 sigma_dut_print(dut, DUT_MSG_ERROR,
8306 "unsupported L-RX: %s", l_rx);
8307 return -1;
8308 }
8309
8310 if (wil6210_send_brp_rx(dut, mac, l_rx_i))
8311 return -1;
8312 } else if (strcasecmp(frame_name, "ssw") == 0) {
8313 sigma_dut_print(dut, DUT_MSG_INFO,
8314 "dev_send_frame: SLS, dest_mac %s", mac);
8315 if (wil6210_send_sls(dut, mac))
8316 return -1;
8317 } else {
8318 sigma_dut_print(dut, DUT_MSG_ERROR,
8319 "unsupported frame type: %s", frame_name);
8320 return -1;
8321 }
8322
8323 return 1;
8324}
8325#endif /* __linux__ */
8326
8327
8328static int cmd_sta_send_frame_60g(struct sigma_dut *dut,
8329 struct sigma_conn *conn,
8330 struct sigma_cmd *cmd)
8331{
8332 switch (get_driver_type()) {
8333#ifdef __linux__
8334 case DRIVER_WIL6210:
8335 return wil6210_send_frame_60g(dut, conn, cmd);
8336#endif /* __linux__ */
8337 default:
8338 send_resp(dut, conn, SIGMA_ERROR,
8339 "errorCode,Unsupported sta_set_frame(60G) with the current driver");
8340 return 0;
8341 }
8342}
8343
8344
Ashwini Patildb59b3c2017-04-13 15:19:23 +05308345static int mbo_send_anqp_query(struct sigma_dut *dut, struct sigma_conn *conn,
8346 const char *intf, struct sigma_cmd *cmd)
8347{
8348 const char *val, *addr;
8349 char buf[100];
8350
8351 addr = get_param(cmd, "DestMac");
8352 if (!addr) {
8353 send_resp(dut, conn, SIGMA_INVALID,
8354 "ErrorCode,AP MAC address is missing");
8355 return 0;
8356 }
8357
8358 val = get_param(cmd, "ANQPQuery_ID");
8359 if (!val) {
8360 send_resp(dut, conn, SIGMA_INVALID,
8361 "ErrorCode,Missing ANQPQuery_ID");
8362 return 0;
8363 }
8364
8365 if (strcasecmp(val, "NeighborReportReq") == 0) {
8366 snprintf(buf, sizeof(buf), "ANQP_GET %s 272", addr);
8367 } else if (strcasecmp(val, "QueryListWithCellPref") == 0) {
8368 snprintf(buf, sizeof(buf), "ANQP_GET %s 272,mbo:2", addr);
8369 } else {
8370 sigma_dut_print(dut, DUT_MSG_ERROR, "Invalid ANQPQuery_ID: %s",
8371 val);
8372 send_resp(dut, conn, SIGMA_INVALID,
8373 "ErrorCode,Invalid ANQPQuery_ID");
8374 return 0;
8375 }
8376
Ashwini Patild174f2c2017-04-13 16:49:46 +05308377 /* Set gas_address3 field to IEEE 802.11-2012 standard compliant form
8378 * (Address3 = Wildcard BSSID when sent to not-associated AP;
8379 * if associated, AP BSSID).
8380 */
8381 if (wpa_command(intf, "SET gas_address3 1") < 0) {
8382 send_resp(dut, conn, SIGMA_ERROR,
8383 "ErrorCode,Failed to set gas_address3");
8384 return 0;
8385 }
8386
Ashwini Patildb59b3c2017-04-13 15:19:23 +05308387 if (wpa_command(intf, buf) < 0) {
8388 send_resp(dut, conn, SIGMA_ERROR,
8389 "ErrorCode,Failed to send ANQP query");
8390 return 0;
8391 }
8392
8393 return 1;
8394}
8395
8396
8397static int mbo_cmd_sta_send_frame(struct sigma_dut *dut,
8398 struct sigma_conn *conn,
8399 const char *intf,
8400 struct sigma_cmd *cmd)
8401{
8402 const char *val = get_param(cmd, "FrameName");
8403
8404 if (val && strcasecmp(val, "ANQPQuery") == 0)
8405 return mbo_send_anqp_query(dut, conn, intf, cmd);
8406
8407 return 2;
8408}
8409
8410
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008411int cmd_sta_send_frame(struct sigma_dut *dut, struct sigma_conn *conn,
8412 struct sigma_cmd *cmd)
8413{
8414 const char *intf = get_param(cmd, "Interface");
8415 const char *val;
8416 enum send_frame_type frame;
8417 enum send_frame_protection protected;
8418 char buf[100];
8419 unsigned char addr[ETH_ALEN];
8420 int res;
8421
8422 val = get_param(cmd, "program");
8423 if (val == NULL)
8424 val = get_param(cmd, "frame");
8425 if (val && strcasecmp(val, "TDLS") == 0)
8426 return cmd_sta_send_frame_tdls(dut, conn, cmd);
8427 if (val && (strcasecmp(val, "HS2") == 0 ||
8428 strcasecmp(val, "HS2-R2") == 0))
8429 return cmd_sta_send_frame_hs2(dut, conn, cmd);
8430 if (val && strcasecmp(val, "VHT") == 0)
8431 return cmd_sta_send_frame_vht(dut, conn, cmd);
priyadharshini gowthamand66913a2016-07-29 15:11:17 -07008432 if (val && strcasecmp(val, "LOC") == 0)
8433 return loc_cmd_sta_send_frame(dut, conn, cmd);
Lior David0fe101e2017-03-09 16:09:50 +02008434 if (val && strcasecmp(val, "60GHz") == 0)
8435 return cmd_sta_send_frame_60g(dut, conn, cmd);
Ashwini Patildb59b3c2017-04-13 15:19:23 +05308436 if (val && strcasecmp(val, "MBO") == 0) {
8437 res = mbo_cmd_sta_send_frame(dut, conn, intf, cmd);
8438 if (res != 2)
8439 return res;
8440 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008441
8442 val = get_param(cmd, "TD_DISC");
8443 if (val) {
8444 if (hwaddr_aton(val, addr) < 0)
8445 return -1;
8446 snprintf(buf, sizeof(buf), "TDLS_DISCOVER %s", val);
8447 if (wpa_command(intf, buf) < 0) {
8448 send_resp(dut, conn, SIGMA_ERROR,
8449 "ErrorCode,Failed to send TDLS discovery");
8450 return 0;
8451 }
8452 return 1;
8453 }
8454
8455 val = get_param(cmd, "TD_Setup");
8456 if (val) {
8457 if (hwaddr_aton(val, addr) < 0)
8458 return -1;
8459 snprintf(buf, sizeof(buf), "TDLS_SETUP %s", val);
8460 if (wpa_command(intf, buf) < 0) {
8461 send_resp(dut, conn, SIGMA_ERROR,
8462 "ErrorCode,Failed to start TDLS setup");
8463 return 0;
8464 }
8465 return 1;
8466 }
8467
8468 val = get_param(cmd, "TD_TearDown");
8469 if (val) {
8470 if (hwaddr_aton(val, addr) < 0)
8471 return -1;
8472 snprintf(buf, sizeof(buf), "TDLS_TEARDOWN %s", val);
8473 if (wpa_command(intf, buf) < 0) {
8474 send_resp(dut, conn, SIGMA_ERROR,
8475 "ErrorCode,Failed to tear down TDLS link");
8476 return 0;
8477 }
8478 return 1;
8479 }
8480
8481 val = get_param(cmd, "TD_ChannelSwitch");
8482 if (val) {
8483 /* TODO */
8484 send_resp(dut, conn, SIGMA_ERROR,
8485 "ErrorCode,TD_ChannelSwitch not yet supported");
8486 return 0;
8487 }
8488
8489 val = get_param(cmd, "TD_NF");
8490 if (val) {
8491 /* TODO */
8492 send_resp(dut, conn, SIGMA_ERROR,
8493 "ErrorCode,TD_NF not yet supported");
8494 return 0;
8495 }
8496
8497 val = get_param(cmd, "PMFFrameType");
8498 if (val == NULL)
8499 val = get_param(cmd, "FrameName");
8500 if (val == NULL)
8501 val = get_param(cmd, "Type");
8502 if (val == NULL)
8503 return -1;
8504 if (strcasecmp(val, "disassoc") == 0)
8505 frame = DISASSOC;
8506 else if (strcasecmp(val, "deauth") == 0)
8507 frame = DEAUTH;
8508 else if (strcasecmp(val, "saquery") == 0)
8509 frame = SAQUERY;
8510 else if (strcasecmp(val, "auth") == 0)
8511 frame = AUTH;
8512 else if (strcasecmp(val, "assocreq") == 0)
8513 frame = ASSOCREQ;
8514 else if (strcasecmp(val, "reassocreq") == 0)
8515 frame = REASSOCREQ;
8516 else if (strcasecmp(val, "neigreq") == 0) {
8517 sigma_dut_print(dut, DUT_MSG_INFO, "Got neighbor request");
8518
8519 val = get_param(cmd, "ssid");
8520 if (val == NULL)
8521 return -1;
8522
8523 res = send_neighbor_request(dut, intf, val);
8524 if (res) {
8525 send_resp(dut, conn, SIGMA_ERROR, "errorCode,"
8526 "Failed to send neighbor report request");
8527 return 0;
8528 }
8529
8530 return 1;
Ashwini Patil5acd7382017-04-13 15:55:04 +05308531 } else if (strcasecmp(val, "transmgmtquery") == 0 ||
8532 strcasecmp(val, "BTMQuery") == 0) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008533 sigma_dut_print(dut, DUT_MSG_DEBUG,
8534 "Got Transition Management Query");
8535
Ashwini Patil5acd7382017-04-13 15:55:04 +05308536 res = send_trans_mgmt_query(dut, intf, cmd);
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008537 if (res) {
8538 send_resp(dut, conn, SIGMA_ERROR, "errorCode,"
8539 "Failed to send Transition Management Query");
8540 return 0;
8541 }
8542
8543 return 1;
8544 } else {
8545 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported "
8546 "PMFFrameType");
8547 return 0;
8548 }
8549
8550 val = get_param(cmd, "PMFProtected");
8551 if (val == NULL)
8552 val = get_param(cmd, "Protected");
8553 if (val == NULL)
8554 return -1;
8555 if (strcasecmp(val, "Correct-key") == 0 ||
8556 strcasecmp(val, "CorrectKey") == 0)
8557 protected = CORRECT_KEY;
8558 else if (strcasecmp(val, "IncorrectKey") == 0)
8559 protected = INCORRECT_KEY;
8560 else if (strcasecmp(val, "Unprotected") == 0)
8561 protected = UNPROTECTED;
8562 else {
8563 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported "
8564 "PMFProtected");
8565 return 0;
8566 }
8567
8568 if (protected != UNPROTECTED &&
8569 (frame == AUTH || frame == ASSOCREQ || frame == REASSOCREQ)) {
8570 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Impossible "
8571 "PMFProtected for auth/assocreq/reassocreq");
8572 return 0;
8573 }
8574
8575 if (if_nametoindex("sigmadut") == 0) {
8576 snprintf(buf, sizeof(buf),
8577 "iw dev %s interface add sigmadut type monitor",
8578 get_station_ifname());
8579 if (system(buf) != 0 ||
8580 if_nametoindex("sigmadut") == 0) {
8581 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to add "
8582 "monitor interface with '%s'", buf);
8583 return -2;
8584 }
8585 }
8586
8587 if (system("ifconfig sigmadut up") != 0) {
8588 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to set "
8589 "monitor interface up");
8590 return -2;
8591 }
8592
8593 return sta_inject_frame(dut, conn, frame, protected, NULL);
8594}
8595
8596
8597static int cmd_sta_set_parameter_hs2(struct sigma_dut *dut,
8598 struct sigma_conn *conn,
8599 struct sigma_cmd *cmd,
8600 const char *ifname)
8601{
8602 char buf[200];
8603 const char *val;
8604
8605 val = get_param(cmd, "ClearARP");
8606 if (val && atoi(val) == 1) {
8607 snprintf(buf, sizeof(buf), "ip neigh flush dev %s", ifname);
8608 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
8609 if (system(buf) != 0) {
8610 send_resp(dut, conn, SIGMA_ERROR,
8611 "errorCode,Failed to clear ARP cache");
8612 return 0;
8613 }
8614 }
8615
8616 return 1;
8617}
8618
8619
8620int cmd_sta_set_parameter(struct sigma_dut *dut, struct sigma_conn *conn,
8621 struct sigma_cmd *cmd)
8622{
8623 const char *intf = get_param(cmd, "Interface");
8624 const char *val;
8625
8626 if (intf == NULL)
8627 return -1;
8628
8629 val = get_param(cmd, "program");
8630 if (val && (strcasecmp(val, "HS2") == 0 ||
8631 strcasecmp(val, "HS2-R2") == 0))
8632 return cmd_sta_set_parameter_hs2(dut, conn, cmd, intf);
8633
8634 return -1;
8635}
8636
8637
8638static int cmd_sta_set_macaddr(struct sigma_dut *dut, struct sigma_conn *conn,
8639 struct sigma_cmd *cmd)
8640{
8641 const char *intf = get_param(cmd, "Interface");
8642 const char *mac = get_param(cmd, "MAC");
8643
8644 if (intf == NULL || mac == NULL)
8645 return -1;
8646
8647 sigma_dut_print(dut, DUT_MSG_INFO, "Change local MAC address for "
8648 "interface %s to %s", intf, mac);
8649
8650 if (dut->set_macaddr) {
8651 char buf[128];
8652 int res;
8653 if (strcasecmp(mac, "default") == 0) {
8654 res = snprintf(buf, sizeof(buf), "%s",
8655 dut->set_macaddr);
8656 dut->tmp_mac_addr = 0;
8657 } else {
8658 res = snprintf(buf, sizeof(buf), "%s %s",
8659 dut->set_macaddr, mac);
8660 dut->tmp_mac_addr = 1;
8661 }
8662 if (res < 0 || res >= (int) sizeof(buf))
8663 return -1;
8664 if (system(buf) != 0) {
8665 send_resp(dut, conn, SIGMA_ERROR,
8666 "errorCode,Failed to set MAC "
8667 "address");
8668 return 0;
8669 }
8670 return 1;
8671 }
8672
8673 if (strcasecmp(mac, "default") == 0)
8674 return 1;
8675
8676 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported "
8677 "command");
8678 return 0;
8679}
8680
8681
8682static int iwpriv_tdlsoffchnmode(struct sigma_dut *dut,
8683 struct sigma_conn *conn, const char *intf,
8684 int val)
8685{
8686 char buf[200];
8687 int res;
8688
8689 res = snprintf(buf, sizeof(buf), "iwpriv %s tdlsoffchnmode %d",
8690 intf, val);
8691 if (res < 0 || res >= (int) sizeof(buf))
8692 return -1;
8693 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
8694 if (system(buf) != 0) {
8695 send_resp(dut, conn, SIGMA_ERROR,
8696 "errorCode,Failed to configure offchannel mode");
8697 return 0;
8698 }
8699
8700 return 1;
8701}
8702
8703
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008704static int off_chan_val(enum sec_ch_offset off)
8705{
8706 switch (off) {
8707 case SEC_CH_NO:
8708 return 0;
8709 case SEC_CH_40ABOVE:
8710 return 40;
8711 case SEC_CH_40BELOW:
8712 return -40;
8713 }
8714
8715 return 0;
8716}
8717
8718
8719static int iwpriv_set_offchan(struct sigma_dut *dut, struct sigma_conn *conn,
8720 const char *intf, int off_ch_num,
8721 enum sec_ch_offset sec)
8722{
8723 char buf[200];
8724 int res;
8725
8726 res = snprintf(buf, sizeof(buf), "iwpriv %s tdlsoffchan %d",
8727 intf, off_ch_num);
8728 if (res < 0 || res >= (int) sizeof(buf))
8729 return -1;
8730 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
8731 if (system(buf) != 0) {
8732 send_resp(dut, conn, SIGMA_ERROR,
8733 "errorCode,Failed to set offchan");
8734 return 0;
8735 }
8736
8737 res = snprintf(buf, sizeof(buf), "iwpriv %s tdlsecchnoffst %d",
8738 intf, off_chan_val(sec));
8739 if (res < 0 || res >= (int) sizeof(buf))
8740 return -1;
8741 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
8742 if (system(buf) != 0) {
8743 send_resp(dut, conn, SIGMA_ERROR,
8744 "errorCode,Failed to set sec chan offset");
8745 return 0;
8746 }
8747
8748 return 1;
8749}
8750
8751
8752static int tdls_set_offchannel_offset(struct sigma_dut *dut,
8753 struct sigma_conn *conn,
8754 const char *intf, int off_ch_num,
8755 enum sec_ch_offset sec)
8756{
8757 char buf[200];
8758 int res;
8759
8760 res = snprintf(buf, sizeof(buf), "DRIVER TDLSOFFCHANNEL %d",
8761 off_ch_num);
8762 if (res < 0 || res >= (int) sizeof(buf))
8763 return -1;
8764 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
8765
8766 if (wpa_command(intf, buf) < 0) {
8767 send_resp(dut, conn, SIGMA_ERROR,
8768 "ErrorCode,Failed to set offchan");
8769 return 0;
8770 }
8771 res = snprintf(buf, sizeof(buf), "DRIVER TDLSSECONDARYCHANNELOFFSET %d",
8772 off_chan_val(sec));
8773 if (res < 0 || res >= (int) sizeof(buf))
8774 return -1;
8775
8776 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
8777
8778 if (wpa_command(intf, buf) < 0) {
8779 send_resp(dut, conn, SIGMA_ERROR,
8780 "ErrorCode,Failed to set sec chan offset");
8781 return 0;
8782 }
8783
8784 return 1;
8785}
8786
8787
8788static int tdls_set_offchannel_mode(struct sigma_dut *dut,
8789 struct sigma_conn *conn,
8790 const char *intf, int val)
8791{
8792 char buf[200];
8793 int res;
8794
8795 res = snprintf(buf, sizeof(buf), "DRIVER TDLSOFFCHANNELMODE %d",
8796 val);
8797 if (res < 0 || res >= (int) sizeof(buf))
8798 return -1;
8799 sigma_dut_print(dut, DUT_MSG_DEBUG, "Run: %s", buf);
8800
8801 if (wpa_command(intf, buf) < 0) {
8802 send_resp(dut, conn, SIGMA_ERROR,
8803 "ErrorCode,Failed to configure offchannel mode");
8804 return 0;
8805 }
8806
8807 return 1;
8808}
8809
8810
8811static int cmd_sta_set_rfeature_tdls(const char *intf, struct sigma_dut *dut,
8812 struct sigma_conn *conn,
8813 struct sigma_cmd *cmd)
8814{
8815 const char *val;
8816 enum {
8817 CHSM_NOT_SET,
8818 CHSM_ENABLE,
8819 CHSM_DISABLE,
8820 CHSM_REJREQ,
8821 CHSM_UNSOLRESP
8822 } chsm = CHSM_NOT_SET;
8823 int off_ch_num = -1;
8824 enum sec_ch_offset sec_ch = SEC_CH_NO;
8825 int res;
8826
8827 val = get_param(cmd, "Uapsd");
8828 if (val) {
8829 char buf[100];
8830 if (strcasecmp(val, "Enable") == 0)
8831 snprintf(buf, sizeof(buf), "SET ps 99");
8832 else if (strcasecmp(val, "Disable") == 0)
8833 snprintf(buf, sizeof(buf), "SET ps 98");
8834 else {
8835 send_resp(dut, conn, SIGMA_ERROR, "errorCode,"
8836 "Unsupported uapsd parameter value");
8837 return 0;
8838 }
8839 if (wpa_command(intf, buf)) {
8840 send_resp(dut, conn, SIGMA_ERROR,
8841 "ErrorCode,Failed to change U-APSD "
8842 "powersave mode");
8843 return 0;
8844 }
8845 }
8846
8847 val = get_param(cmd, "TPKTIMER");
8848 if (val && strcasecmp(val, "DISABLE") == 0) {
8849 if (wpa_command(intf, "SET tdls_testing 0x100")) {
8850 send_resp(dut, conn, SIGMA_ERROR,
8851 "ErrorCode,Failed to enable no TPK "
8852 "expiration test mode");
8853 return 0;
8854 }
8855 dut->no_tpk_expiration = 1;
8856 }
8857
8858 val = get_param(cmd, "ChSwitchMode");
8859 if (val) {
8860 if (strcasecmp(val, "Enable") == 0 ||
8861 strcasecmp(val, "Initiate") == 0)
8862 chsm = CHSM_ENABLE;
8863 else if (strcasecmp(val, "Disable") == 0 ||
8864 strcasecmp(val, "passive") == 0)
8865 chsm = CHSM_DISABLE;
8866 else if (strcasecmp(val, "RejReq") == 0)
8867 chsm = CHSM_REJREQ;
8868 else if (strcasecmp(val, "UnSolResp") == 0)
8869 chsm = CHSM_UNSOLRESP;
8870 else {
8871 send_resp(dut, conn, SIGMA_ERROR,
8872 "ErrorCode,Unknown ChSwitchMode value");
8873 return 0;
8874 }
8875 }
8876
8877 val = get_param(cmd, "OffChNum");
8878 if (val) {
8879 off_ch_num = atoi(val);
8880 if (off_ch_num == 0) {
8881 send_resp(dut, conn, SIGMA_ERROR,
8882 "ErrorCode,Invalid OffChNum");
8883 return 0;
8884 }
8885 }
8886
8887 val = get_param(cmd, "SecChOffset");
8888 if (val) {
8889 if (strcmp(val, "20") == 0)
8890 sec_ch = SEC_CH_NO;
8891 else if (strcasecmp(val, "40above") == 0)
8892 sec_ch = SEC_CH_40ABOVE;
8893 else if (strcasecmp(val, "40below") == 0)
8894 sec_ch = SEC_CH_40BELOW;
8895 else {
8896 send_resp(dut, conn, SIGMA_ERROR,
8897 "ErrorCode,Unknown SecChOffset value");
8898 return 0;
8899 }
8900 }
8901
8902 if (chsm == CHSM_NOT_SET) {
8903 /* no offchannel changes requested */
8904 return 1;
8905 }
8906
8907 if (strcmp(intf, get_main_ifname()) != 0 &&
8908 strcmp(intf, get_station_ifname()) != 0) {
8909 send_resp(dut, conn, SIGMA_ERROR,
8910 "ErrorCode,Unknown interface");
8911 return 0;
8912 }
8913
8914 switch (chsm) {
8915 case CHSM_NOT_SET:
Jouni Malinen280f5ba2016-08-29 21:33:10 +03008916 res = 1;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008917 break;
8918 case CHSM_ENABLE:
8919 if (off_ch_num < 0) {
8920 send_resp(dut, conn, SIGMA_ERROR,
8921 "ErrorCode,Missing OffChNum argument");
8922 return 0;
8923 }
8924 if (wifi_chip_type == DRIVER_WCN) {
8925 res = tdls_set_offchannel_offset(dut, conn, intf,
8926 off_ch_num, sec_ch);
8927 } else {
8928 res = iwpriv_set_offchan(dut, conn, intf, off_ch_num,
8929 sec_ch);
8930 }
8931 if (res != 1)
8932 return res;
8933 if (wifi_chip_type == DRIVER_WCN)
8934 res = tdls_set_offchannel_mode(dut, conn, intf, 1);
8935 else
8936 res = iwpriv_tdlsoffchnmode(dut, conn, intf, 1);
8937 break;
8938 case CHSM_DISABLE:
8939 if (wifi_chip_type == DRIVER_WCN)
8940 res = tdls_set_offchannel_mode(dut, conn, intf, 2);
8941 else
8942 res = iwpriv_tdlsoffchnmode(dut, conn, intf, 2);
8943 break;
8944 case CHSM_REJREQ:
8945 if (wifi_chip_type == DRIVER_WCN)
8946 res = tdls_set_offchannel_mode(dut, conn, intf, 3);
8947 else
8948 res = iwpriv_tdlsoffchnmode(dut, conn, intf, 3);
8949 break;
8950 case CHSM_UNSOLRESP:
8951 if (off_ch_num < 0) {
8952 send_resp(dut, conn, SIGMA_ERROR,
8953 "ErrorCode,Missing OffChNum argument");
8954 return 0;
8955 }
8956 if (wifi_chip_type == DRIVER_WCN) {
8957 res = tdls_set_offchannel_offset(dut, conn, intf,
8958 off_ch_num, sec_ch);
8959 } else {
8960 res = iwpriv_set_offchan(dut, conn, intf, off_ch_num,
8961 sec_ch);
8962 }
8963 if (res != 1)
8964 return res;
8965 if (wifi_chip_type == DRIVER_WCN)
8966 res = tdls_set_offchannel_mode(dut, conn, intf, 4);
8967 else
8968 res = iwpriv_tdlsoffchnmode(dut, conn, intf, 4);
8969 break;
8970 }
8971
8972 return res;
8973}
8974
8975
8976static int ath_sta_set_rfeature_vht(const char *intf, struct sigma_dut *dut,
8977 struct sigma_conn *conn,
8978 struct sigma_cmd *cmd)
8979{
8980 const char *val;
8981 char *token, *result;
8982
priyadharshini gowthamane5e25172015-12-08 14:53:48 -08008983 novap_reset(dut, intf);
8984
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008985 val = get_param(cmd, "nss_mcs_opt");
8986 if (val) {
8987 /* String (nss_operating_mode; mcs_operating_mode) */
8988 int nss, mcs;
8989 char buf[50];
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05308990 char *saveptr;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02008991
8992 token = strdup(val);
8993 if (!token)
8994 return 0;
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05308995 result = strtok_r(token, ";", &saveptr);
Pradeep Reddy POTTETI41b8c542016-06-15 16:09:46 +05308996 if (!result) {
8997 sigma_dut_print(dut, DUT_MSG_ERROR,
8998 "VHT NSS not specified");
8999 goto failed;
9000 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02009001 if (strcasecmp(result, "def") != 0) {
9002 nss = atoi(result);
9003 if (nss == 4)
9004 ath_disable_txbf(dut, intf);
9005 snprintf(buf, sizeof(buf), "iwpriv %s nss %d",
9006 intf, nss);
9007 if (system(buf) != 0) {
9008 sigma_dut_print(dut, DUT_MSG_ERROR,
9009 "iwpriv nss failed");
9010 goto failed;
9011 }
9012 }
9013
Pradeep Reddy POTTETIdbf7d712016-04-28 18:42:07 +05309014 result = strtok_r(NULL, ";", &saveptr);
Pradeep Reddy POTTETI41b8c542016-06-15 16:09:46 +05309015 if (!result) {
9016 sigma_dut_print(dut, DUT_MSG_ERROR,
9017 "VHT MCS not specified");
9018 goto failed;
9019 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +02009020 if (strcasecmp(result, "def") == 0) {
9021 snprintf(buf, sizeof(buf), "iwpriv %s set11NRates 0",
9022 intf);
9023 if (system(buf) != 0) {
9024 sigma_dut_print(dut, DUT_MSG_ERROR,
9025 "iwpriv set11NRates failed");
9026 goto failed;
9027 }
9028
9029 } else {
9030 mcs = atoi(result);
9031 snprintf(buf, sizeof(buf), "iwpriv %s vhtmcs %d",
9032 intf, mcs);
9033 if (system(buf) != 0) {
9034 sigma_dut_print(dut, DUT_MSG_ERROR,
9035 "iwpriv vhtmcs failed");
9036 goto failed;
9037 }
9038 }
9039 /* Channel width gets messed up, fix this */
9040 snprintf(buf, sizeof(buf), "iwpriv %s chwidth %d",
9041 intf, dut->chwidth);
9042 if (system(buf) != 0) {
9043 sigma_dut_print(dut, DUT_MSG_ERROR,
9044 "iwpriv chwidth failed");
9045 }
9046 }
9047
9048 return 1;
9049failed:
9050 free(token);
9051 return 0;
9052}
9053
9054
9055static int cmd_sta_set_rfeature_vht(const char *intf, struct sigma_dut *dut,
9056 struct sigma_conn *conn,
9057 struct sigma_cmd *cmd)
9058{
9059 switch (get_driver_type()) {
9060 case DRIVER_ATHEROS:
9061 return ath_sta_set_rfeature_vht(intf, dut, conn, cmd);
9062 default:
9063 send_resp(dut, conn, SIGMA_ERROR,
9064 "errorCode,Unsupported sta_set_rfeature(VHT) with the current driver");
9065 return 0;
9066 }
9067}
9068
9069
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009070static int wcn_sta_set_rfeature_he(const char *intf, struct sigma_dut *dut,
9071 struct sigma_conn *conn,
9072 struct sigma_cmd *cmd)
9073{
9074 const char *val;
9075 char *token = NULL, *result;
9076 char buf[60];
9077
9078 val = get_param(cmd, "nss_mcs_opt");
9079 if (val) {
9080 /* String (nss_operating_mode; mcs_operating_mode) */
9081 int nss, mcs, ratecode;
9082 char *saveptr;
9083
9084 token = strdup(val);
9085 if (!token)
9086 return -2;
9087
9088 result = strtok_r(token, ";", &saveptr);
9089 if (!result) {
9090 sigma_dut_print(dut, DUT_MSG_ERROR,
9091 "HE NSS not specified");
9092 goto failed;
9093 }
9094 nss = 1;
9095 if (strcasecmp(result, "def") != 0)
9096 nss = atoi(result);
9097
9098 result = strtok_r(NULL, ";", &saveptr);
9099 if (!result) {
9100 sigma_dut_print(dut, DUT_MSG_ERROR,
9101 "HE MCS not specified");
9102 goto failed;
9103 }
9104 mcs = 7;
9105 if (strcasecmp(result, "def") != 0)
9106 mcs = atoi(result);
9107
Arif Hussain557bf412018-05-25 17:29:36 -07009108 ratecode = 0x20; /* for nss:1 MCS 0 */
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009109 if (nss == 2) {
Arif Hussain557bf412018-05-25 17:29:36 -07009110 ratecode = 0x40; /* for nss:2 MCS 0 */
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009111 } else if (nss > 2) {
9112 sigma_dut_print(dut, DUT_MSG_ERROR,
9113 "HE NSS %d not supported", nss);
9114 goto failed;
9115 }
9116
Arif Hussain557bf412018-05-25 17:29:36 -07009117 snprintf(buf, sizeof(buf), "iwpriv %s nss %d", intf, nss);
9118 if (system(buf) != 0) {
9119 sigma_dut_print(dut, DUT_MSG_ERROR,
9120 "nss_mcs_opt: iwpriv %s nss %d failed",
9121 intf, nss);
9122 goto failed;
9123 }
Arif Hussainac6c5112018-05-25 17:34:00 -07009124 dut->sta_nss = nss;
Arif Hussain557bf412018-05-25 17:29:36 -07009125
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009126 /* Add the MCS to the ratecode */
9127 if (mcs >= 0 && mcs <= 11) {
9128 ratecode += mcs;
Arif Hussain557bf412018-05-25 17:29:36 -07009129#ifdef NL80211_SUPPORT
9130 if (dut->device_type == STA_testbed) {
9131 enum he_mcs_config mcs_config;
9132 int ret;
9133
9134 if (mcs <= 7)
9135 mcs_config = HE_80_MCS0_7;
9136 else if (mcs <= 9)
9137 mcs_config = HE_80_MCS0_9;
9138 else
9139 mcs_config = HE_80_MCS0_11;
9140 ret = sta_set_he_mcs(dut, intf, mcs_config);
9141 if (ret) {
9142 sigma_dut_print(dut, DUT_MSG_ERROR,
9143 "nss_mcs_opt: mcs setting failed, mcs:%d, mcs_config %d, ret:%d",
9144 mcs, mcs_config, ret);
9145 goto failed;
9146 }
9147 }
9148#endif /* NL80211_SUPPORT */
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009149 } else {
9150 sigma_dut_print(dut, DUT_MSG_ERROR,
9151 "HE MCS %d not supported", mcs);
9152 goto failed;
9153 }
9154 snprintf(buf, sizeof(buf), "iwpriv %s set_11ax_rate 0x%03x",
9155 intf, ratecode);
9156 if (system(buf) != 0) {
9157 sigma_dut_print(dut, DUT_MSG_ERROR,
9158 "iwpriv setting of 11ax rates failed");
9159 goto failed;
9160 }
9161 free(token);
9162 }
9163
9164 val = get_param(cmd, "GI");
9165 if (val) {
9166 if (strcmp(val, "0.8") == 0) {
Kiran Kumar Lokereb8fec522018-05-01 14:26:00 -07009167 snprintf(buf, sizeof(buf), "iwpriv %s shortgi 9", intf);
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009168 } else if (strcmp(val, "1.6") == 0) {
Kiran Kumar Lokereb8fec522018-05-01 14:26:00 -07009169 snprintf(buf, sizeof(buf), "iwpriv %s shortgi 10",
9170 intf);
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009171 } else if (strcmp(val, "3.2") == 0) {
Kiran Kumar Lokereb8fec522018-05-01 14:26:00 -07009172 snprintf(buf, sizeof(buf), "iwpriv %s shortgi 11",
9173 intf);
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009174 } else {
9175 send_resp(dut, conn, SIGMA_ERROR,
9176 "errorCode,GI value not supported");
9177 return 0;
9178 }
9179 if (system(buf) != 0) {
9180 send_resp(dut, conn, SIGMA_ERROR,
9181 "errorCode,Failed to set shortgi");
9182 return 0;
9183 }
9184 }
9185
Subhani Shaik8e7a3052018-04-24 14:03:00 -07009186 val = get_param(cmd, "LTF");
9187 if (val) {
9188#ifdef NL80211_SUPPORT
9189 if (strcmp(val, "3.2") == 0) {
9190 sta_set_he_ltf(dut, intf, QCA_WLAN_HE_LTF_1X);
9191 } if (strcmp(val, "6.4") == 0) {
9192 sta_set_he_ltf(dut, intf, QCA_WLAN_HE_LTF_2X);
9193 } else if (strcmp(val, "12.8") == 0) {
9194 sta_set_he_ltf(dut, intf, QCA_WLAN_HE_LTF_4X);
9195 } else {
9196 send_resp(dut, conn, SIGMA_ERROR,
9197 "errorCode, LTF value not supported");
9198 return 0;
9199 }
9200#else /* NL80211_SUPPORT */
9201 sigma_dut_print(dut, DUT_MSG_ERROR,
9202 "LTF cannot be set without NL80211_SUPPORT defined");
9203 return -2;
9204#endif /* NL80211_SUPPORT */
9205 }
9206
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009207 return 1;
9208
9209failed:
9210 free(token);
9211 return -2;
9212}
9213
9214
9215static int cmd_sta_set_rfeature_he(const char *intf, struct sigma_dut *dut,
9216 struct sigma_conn *conn,
9217 struct sigma_cmd *cmd)
9218{
9219 switch (get_driver_type()) {
9220 case DRIVER_WCN:
9221 return wcn_sta_set_rfeature_he(intf, dut, conn, cmd);
9222 default:
9223 send_resp(dut, conn, SIGMA_ERROR,
9224 "errorCode,Unsupported sta_set_rfeature(HE) with the current driver");
9225 return 0;
9226 }
9227}
9228
9229
Ashwini Patil5acd7382017-04-13 15:55:04 +05309230static int btm_query_candidate_list(struct sigma_dut *dut,
9231 struct sigma_conn *conn,
9232 struct sigma_cmd *cmd)
9233{
9234 const char *bssid, *info, *op_class, *ch, *phy_type, *pref;
9235 int len, ret;
9236 char buf[10];
9237
9238 /*
9239 * Neighbor Report elements format:
9240 * neighbor=<BSSID>,<BSSID Information>,<Operating Class>,
9241 * <Channel Number>,<PHY Type>[,<hexdump of Optional Subelements>]
9242 * eg: neighbor=aa:bb:cc:dd:ee:ff,17,81,6,1,030101
9243 */
9244
9245 bssid = get_param(cmd, "Nebor_BSSID");
9246 if (!bssid) {
9247 send_resp(dut, conn, SIGMA_INVALID,
9248 "errorCode,Nebor_BSSID is missing");
9249 return 0;
9250 }
9251
9252 info = get_param(cmd, "Nebor_Bssid_Info");
9253 if (!info) {
9254 sigma_dut_print(dut, DUT_MSG_INFO,
9255 "Using default value for Nebor_Bssid_Info: %s",
9256 DEFAULT_NEIGHBOR_BSSID_INFO);
9257 info = DEFAULT_NEIGHBOR_BSSID_INFO;
9258 }
9259
9260 op_class = get_param(cmd, "Nebor_Op_Class");
9261 if (!op_class) {
9262 send_resp(dut, conn, SIGMA_INVALID,
9263 "errorCode,Nebor_Op_Class is missing");
9264 return 0;
9265 }
9266
9267 ch = get_param(cmd, "Nebor_Op_Ch");
9268 if (!ch) {
9269 send_resp(dut, conn, SIGMA_INVALID,
9270 "errorCode,Nebor_Op_Ch is missing");
9271 return 0;
9272 }
9273
9274 phy_type = get_param(cmd, "Nebor_Phy_Type");
9275 if (!phy_type) {
9276 sigma_dut_print(dut, DUT_MSG_INFO,
9277 "Using default value for Nebor_Phy_Type: %s",
9278 DEFAULT_NEIGHBOR_PHY_TYPE);
9279 phy_type = DEFAULT_NEIGHBOR_PHY_TYPE;
9280 }
9281
9282 /* Parse optional subelements */
9283 buf[0] = '\0';
9284 pref = get_param(cmd, "Nebor_Pref");
9285 if (pref) {
9286 /* hexdump for preferrence subelement */
9287 ret = snprintf(buf, sizeof(buf), ",0301%02x", atoi(pref));
9288 if (ret < 0 || ret >= (int) sizeof(buf)) {
9289 sigma_dut_print(dut, DUT_MSG_ERROR,
9290 "snprintf failed for optional subelement ret: %d",
9291 ret);
9292 send_resp(dut, conn, SIGMA_ERROR,
9293 "errorCode,snprintf failed for subelement");
9294 return 0;
9295 }
9296 }
9297
9298 if (!dut->btm_query_cand_list) {
9299 dut->btm_query_cand_list = calloc(1, NEIGHBOR_REPORT_SIZE);
9300 if (!dut->btm_query_cand_list) {
9301 send_resp(dut, conn, SIGMA_ERROR,
9302 "errorCode,Failed to allocate memory for btm_query_cand_list");
9303 return 0;
9304 }
9305 }
9306
9307 len = strlen(dut->btm_query_cand_list);
9308 ret = snprintf(dut->btm_query_cand_list + len,
9309 NEIGHBOR_REPORT_SIZE - len, " neighbor=%s,%s,%s,%s,%s%s",
9310 bssid, info, op_class, ch, phy_type, buf);
9311 if (ret < 0 || ret >= NEIGHBOR_REPORT_SIZE - len) {
9312 sigma_dut_print(dut, DUT_MSG_ERROR,
9313 "snprintf failed for neighbor report list ret: %d",
9314 ret);
9315 send_resp(dut, conn, SIGMA_ERROR,
9316 "errorCode,snprintf failed for neighbor report");
9317 free(dut->btm_query_cand_list);
9318 dut->btm_query_cand_list = NULL;
9319 return 0;
9320 }
9321
9322 return 1;
9323}
9324
9325
Jouni Malinencd4e3c32015-10-29 12:39:56 +02009326static int cmd_sta_set_rfeature(struct sigma_dut *dut, struct sigma_conn *conn,
9327 struct sigma_cmd *cmd)
9328{
9329 const char *intf = get_param(cmd, "Interface");
9330 const char *prog = get_param(cmd, "Prog");
Ashwini Patil68d02cd2017-01-10 15:39:16 +05309331 const char *val;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02009332
9333 if (intf == NULL || prog == NULL)
9334 return -1;
9335
Ashwini Patil5acd7382017-04-13 15:55:04 +05309336 /* BSS Transition candidate list for BTM query */
9337 val = get_param(cmd, "Nebor_BSSID");
9338 if (val && btm_query_candidate_list(dut, conn, cmd) == 0)
9339 return 0;
9340
Jouni Malinencd4e3c32015-10-29 12:39:56 +02009341 if (strcasecmp(prog, "TDLS") == 0)
9342 return cmd_sta_set_rfeature_tdls(intf, dut, conn, cmd);
9343
9344 if (strcasecmp(prog, "VHT") == 0)
9345 return cmd_sta_set_rfeature_vht(intf, dut, conn, cmd);
9346
Amarnath Hullur Subramanyam42c25a02018-01-31 04:02:27 -08009347 if (strcasecmp(prog, "HE") == 0)
9348 return cmd_sta_set_rfeature_he(intf, dut, conn, cmd);
9349
Ashwini Patil68d02cd2017-01-10 15:39:16 +05309350 if (strcasecmp(prog, "MBO") == 0) {
9351 val = get_param(cmd, "Cellular_Data_Cap");
9352 if (val &&
9353 mbo_set_cellular_data_capa(dut, conn, intf, atoi(val)) == 0)
9354 return 0;
Ashwini Patil00402582017-04-13 12:29:39 +05309355
9356 val = get_param(cmd, "Ch_Pref");
9357 if (val && mbo_set_non_pref_ch_list(dut, conn, intf, cmd) == 0)
9358 return 0;
9359
Ashwini Patil68d02cd2017-01-10 15:39:16 +05309360 return 1;
9361 }
9362
Jouni Malinencd4e3c32015-10-29 12:39:56 +02009363 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported Prog");
9364 return 0;
9365}
9366
9367
9368static int cmd_sta_set_radio(struct sigma_dut *dut, struct sigma_conn *conn,
9369 struct sigma_cmd *cmd)
9370{
9371 const char *intf = get_param(cmd, "Interface");
9372 const char *mode = get_param(cmd, "Mode");
9373 int res;
9374
9375 if (intf == NULL || mode == NULL)
9376 return -1;
9377
9378 if (strcasecmp(mode, "On") == 0)
9379 res = wpa_command(intf, "SET radio_disabled 0");
9380 else if (strcasecmp(mode, "Off") == 0)
9381 res = wpa_command(intf, "SET radio_disabled 1");
9382 else
9383 return -1;
9384
9385 if (res) {
9386 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to change "
9387 "radio mode");
9388 return 0;
9389 }
9390
9391 return 1;
9392}
9393
9394
9395static int cmd_sta_set_pwrsave(struct sigma_dut *dut, struct sigma_conn *conn,
9396 struct sigma_cmd *cmd)
9397{
9398 const char *intf = get_param(cmd, "Interface");
9399 const char *mode = get_param(cmd, "Mode");
9400 int res;
9401
9402 if (intf == NULL || mode == NULL)
9403 return -1;
9404
9405 if (strcasecmp(mode, "On") == 0)
9406 res = set_ps(intf, dut, 1);
9407 else if (strcasecmp(mode, "Off") == 0)
9408 res = set_ps(intf, dut, 0);
9409 else
9410 return -1;
9411
9412 if (res) {
9413 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to change "
9414 "power save mode");
9415 return 0;
9416 }
9417
9418 return 1;
9419}
9420
9421
9422static int cmd_sta_bssid_pool(struct sigma_dut *dut, struct sigma_conn *conn,
9423 struct sigma_cmd *cmd)
9424{
9425 const char *intf = get_param(cmd, "Interface");
9426 const char *val, *bssid;
9427 int res;
9428 char *buf;
9429 size_t buf_len;
9430
9431 val = get_param(cmd, "BSSID_FILTER");
9432 if (val == NULL)
9433 return -1;
9434
9435 bssid = get_param(cmd, "BSSID_List");
9436 if (atoi(val) == 0 || bssid == NULL) {
9437 /* Disable BSSID filter */
9438 if (wpa_command(intf, "SET bssid_filter ")) {
9439 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed "
9440 "to disable BSSID filter");
9441 return 0;
9442 }
9443
9444 return 1;
9445 }
9446
9447 buf_len = 100 + strlen(bssid);
9448 buf = malloc(buf_len);
9449 if (buf == NULL)
9450 return -1;
9451
9452 snprintf(buf, buf_len, "SET bssid_filter %s", bssid);
9453 res = wpa_command(intf, buf);
9454 free(buf);
9455 if (res) {
9456 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to enable "
9457 "BSSID filter");
9458 return 0;
9459 }
9460
9461 return 1;
9462}
9463
9464
9465static int cmd_sta_reset_parm(struct sigma_dut *dut, struct sigma_conn *conn,
9466 struct sigma_cmd *cmd)
9467{
9468 const char *intf = get_param(cmd, "Interface");
9469 const char *val;
9470
9471 /* TODO: ARP */
9472
9473 val = get_param(cmd, "HS2_CACHE_PROFILE");
9474 if (val && strcasecmp(val, "All") == 0)
9475 hs2_clear_credentials(intf);
9476
9477 return 1;
9478}
9479
9480
9481static int cmd_sta_get_key(struct sigma_dut *dut, struct sigma_conn *conn,
9482 struct sigma_cmd *cmd)
9483{
9484 const char *intf = get_param(cmd, "Interface");
9485 const char *key_type = get_param(cmd, "KeyType");
9486 char buf[100], resp[200];
9487
9488 if (key_type == NULL)
9489 return -1;
9490
9491 if (strcasecmp(key_type, "GTK") == 0) {
9492 if (wpa_command_resp(intf, "GET gtk", buf, sizeof(buf)) < 0 ||
9493 strncmp(buf, "FAIL", 4) == 0) {
9494 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could "
9495 "not fetch current GTK");
9496 return 0;
9497 }
9498 snprintf(resp, sizeof(resp), "KeyValue,%s", buf);
9499 send_resp(dut, conn, SIGMA_COMPLETE, resp);
9500 return 0;
9501 } else {
9502 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Unsupported "
9503 "KeyType");
9504 return 0;
9505 }
9506
9507 return 1;
9508}
9509
9510
9511static int hs2_set_policy(struct sigma_dut *dut)
9512{
9513#ifdef ANDROID
9514 system("ip rule del prio 23000");
9515 if (system("ip rule add from all lookup main prio 23000") != 0) {
9516 sigma_dut_print(dut, DUT_MSG_ERROR,
9517 "Failed to run:ip rule add from all lookup main prio");
9518 return -1;
9519 }
9520 if (system("ip route flush cache") != 0) {
9521 sigma_dut_print(dut, DUT_MSG_ERROR,
9522 "Failed to run ip route flush cache");
9523 return -1;
9524 }
9525 return 1;
9526#else /* ANDROID */
9527 return 0;
9528#endif /* ANDROID */
9529}
9530
9531
9532static int cmd_sta_hs2_associate(struct sigma_dut *dut,
9533 struct sigma_conn *conn,
9534 struct sigma_cmd *cmd)
9535{
9536 const char *intf = get_param(cmd, "Interface");
9537 const char *val = get_param(cmd, "Ignore_blacklist");
9538 struct wpa_ctrl *ctrl;
9539 int res;
9540 char bssid[20], ssid[40], resp[100], buf[100], blacklisted[100];
9541 int tries = 0;
9542 int ignore_blacklist = 0;
9543 const char *events[] = {
9544 "CTRL-EVENT-CONNECTED",
9545 "INTERWORKING-BLACKLISTED",
9546 "INTERWORKING-NO-MATCH",
9547 NULL
9548 };
9549
9550 start_sta_mode(dut);
9551
9552 blacklisted[0] = '\0';
9553 if (val && atoi(val))
9554 ignore_blacklist = 1;
9555
9556try_again:
9557 ctrl = open_wpa_mon(intf);
9558 if (ctrl == NULL) {
9559 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open "
9560 "wpa_supplicant monitor connection");
9561 return -2;
9562 }
9563
9564 tries++;
9565 if (wpa_command(intf, "INTERWORKING_SELECT auto")) {
9566 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to start "
9567 "Interworking connection");
9568 wpa_ctrl_detach(ctrl);
9569 wpa_ctrl_close(ctrl);
9570 return 0;
9571 }
9572
9573 buf[0] = '\0';
9574 while (1) {
9575 char *pos;
9576 res = get_wpa_cli_events(dut, ctrl, events, buf, sizeof(buf));
9577 pos = strstr(buf, "INTERWORKING-BLACKLISTED");
9578 if (!pos)
9579 break;
9580 pos += 25;
9581 sigma_dut_print(dut, DUT_MSG_DEBUG, "Found blacklisted AP: %s",
9582 pos);
9583 if (!blacklisted[0])
9584 memcpy(blacklisted, pos, strlen(pos) + 1);
9585 }
9586
9587 if (ignore_blacklist && blacklisted[0]) {
9588 char *end;
9589 end = strchr(blacklisted, ' ');
9590 if (end)
9591 *end = '\0';
9592 sigma_dut_print(dut, DUT_MSG_DEBUG, "Try to connect to a blacklisted network: %s",
9593 blacklisted);
9594 snprintf(buf, sizeof(buf), "INTERWORKING_CONNECT %s",
9595 blacklisted);
9596 if (wpa_command(intf, buf)) {
9597 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Failed to start Interworking connection to blacklisted network");
9598 wpa_ctrl_detach(ctrl);
9599 wpa_ctrl_close(ctrl);
9600 return 0;
9601 }
9602 res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-CONNECTED",
9603 buf, sizeof(buf));
9604 }
9605
9606 wpa_ctrl_detach(ctrl);
9607 wpa_ctrl_close(ctrl);
9608
9609 if (res < 0) {
9610 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Could not "
9611 "connect");
9612 return 0;
9613 }
9614
9615 if (strstr(buf, "INTERWORKING-NO-MATCH") ||
9616 strstr(buf, "INTERWORKING-BLACKLISTED")) {
9617 if (tries < 2) {
9618 sigma_dut_print(dut, DUT_MSG_INFO, "No match found - try again to verify no APs were missed in the scan");
9619 goto try_again;
9620 }
9621 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,No network with "
9622 "matching credentials found");
9623 return 0;
9624 }
9625
9626 if (get_wpa_status(intf, "bssid", bssid, sizeof(bssid)) < 0 ||
9627 get_wpa_status(intf, "ssid", ssid, sizeof(ssid)) < 0) {
9628 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Could not "
9629 "get current BSSID/SSID");
9630 return 0;
9631 }
9632
9633 snprintf(resp, sizeof(resp), "SSID,%s,BSSID,%s", ssid, bssid);
9634 send_resp(dut, conn, SIGMA_COMPLETE, resp);
9635 hs2_set_policy(dut);
9636 return 0;
9637}
9638
9639
9640static int sta_add_credential_uname_pwd(struct sigma_dut *dut,
9641 struct sigma_conn *conn,
9642 const char *ifname,
9643 struct sigma_cmd *cmd)
9644{
9645 const char *val;
9646 int id;
9647
9648 id = add_cred(ifname);
9649 if (id < 0)
9650 return -2;
9651 sigma_dut_print(dut, DUT_MSG_DEBUG, "Adding credential %d", id);
9652
9653 val = get_param(cmd, "prefer");
9654 if (val && atoi(val) > 0)
9655 set_cred(ifname, id, "priority", "1");
9656
9657 val = get_param(cmd, "REALM");
9658 if (val && set_cred_quoted(ifname, id, "realm", val) < 0) {
9659 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set "
9660 "realm");
9661 return 0;
9662 }
9663
9664 val = get_param(cmd, "HOME_FQDN");
9665 if (val && set_cred_quoted(ifname, id, "domain", val) < 0) {
9666 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set "
9667 "home_fqdn");
9668 return 0;
9669 }
9670
9671 val = get_param(cmd, "Username");
9672 if (val && set_cred_quoted(ifname, id, "username", val) < 0) {
9673 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set "
9674 "username");
9675 return 0;
9676 }
9677
9678 val = get_param(cmd, "Password");
9679 if (val && set_cred_quoted(ifname, id, "password", val) < 0) {
9680 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set "
9681 "password");
9682 return 0;
9683 }
9684
9685 val = get_param(cmd, "ROOT_CA");
9686 if (val) {
9687 char fname[200];
9688 snprintf(fname, sizeof(fname), "%s/%s", sigma_cert_path, val);
9689#ifdef __linux__
9690 if (!file_exists(fname)) {
9691 char msg[300];
9692 snprintf(msg, sizeof(msg), "ErrorCode,ROOT_CA "
9693 "file (%s) not found", fname);
9694 send_resp(dut, conn, SIGMA_ERROR, msg);
9695 return 0;
9696 }
9697#endif /* __linux__ */
9698 if (set_cred_quoted(ifname, id, "ca_cert", fname) < 0) {
9699 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could "
9700 "not set root CA");
9701 return 0;
9702 }
9703 }
9704
9705 return 1;
9706}
9707
9708
9709static int update_devdetail_imsi(struct sigma_dut *dut, const char *imsi)
9710{
9711 FILE *in, *out;
9712 char buf[500];
9713 int found = 0;
9714
9715 in = fopen("devdetail.xml", "r");
9716 if (in == NULL)
9717 return -1;
9718 out = fopen("devdetail.xml.tmp", "w");
9719 if (out == NULL) {
9720 fclose(in);
9721 return -1;
9722 }
9723
9724 while (fgets(buf, sizeof(buf), in)) {
9725 char *pos = strstr(buf, "<IMSI>");
9726 if (pos) {
9727 sigma_dut_print(dut, DUT_MSG_INFO, "Updated DevDetail IMSI to %s",
9728 imsi);
9729 pos += 6;
9730 *pos = '\0';
9731 fprintf(out, "%s%s</IMSI>\n", buf, imsi);
9732 found++;
9733 } else {
9734 fprintf(out, "%s", buf);
9735 }
9736 }
9737
9738 fclose(out);
9739 fclose(in);
9740 if (found)
9741 rename("devdetail.xml.tmp", "devdetail.xml");
9742 else
9743 unlink("devdetail.xml.tmp");
9744
9745 return 0;
9746}
9747
9748
9749static int sta_add_credential_sim(struct sigma_dut *dut,
9750 struct sigma_conn *conn,
9751 const char *ifname, struct sigma_cmd *cmd)
9752{
9753 const char *val, *imsi = NULL;
9754 int id;
9755 char buf[200];
9756 int res;
9757 const char *pos;
9758 size_t mnc_len;
9759 char plmn_mcc[4];
9760 char plmn_mnc[4];
9761
9762 id = add_cred(ifname);
9763 if (id < 0)
9764 return -2;
9765 sigma_dut_print(dut, DUT_MSG_DEBUG, "Adding credential %d", id);
9766
9767 val = get_param(cmd, "prefer");
9768 if (val && atoi(val) > 0)
9769 set_cred(ifname, id, "priority", "1");
9770
9771 val = get_param(cmd, "PLMN_MCC");
9772 if (val == NULL) {
9773 send_resp(dut, conn, SIGMA_ERROR,
9774 "errorCode,Missing PLMN_MCC");
9775 return 0;
9776 }
9777 if (strlen(val) != 3) {
9778 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Invalid MCC");
9779 return 0;
9780 }
9781 snprintf(plmn_mcc, sizeof(plmn_mcc), "%s", val);
9782
9783 val = get_param(cmd, "PLMN_MNC");
9784 if (val == NULL) {
9785 send_resp(dut, conn, SIGMA_ERROR,
9786 "errorCode,Missing PLMN_MNC");
9787 return 0;
9788 }
9789 if (strlen(val) != 2 && strlen(val) != 3) {
9790 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Invalid MNC");
9791 return 0;
9792 }
9793 snprintf(plmn_mnc, sizeof(plmn_mnc), "%s", val);
9794
9795 val = get_param(cmd, "IMSI");
9796 if (val == NULL) {
9797 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Missing SIM "
9798 "IMSI");
9799 return 0;
9800 }
9801
9802 imsi = pos = val;
9803
9804 if (strncmp(plmn_mcc, pos, 3) != 0) {
9805 send_resp(dut, conn, SIGMA_ERROR, "errorCode,MCC mismatch");
9806 return 0;
9807 }
9808 pos += 3;
9809
9810 mnc_len = strlen(plmn_mnc);
9811 if (mnc_len < 2) {
9812 send_resp(dut, conn, SIGMA_ERROR, "errorCode,MNC not set");
9813 return 0;
9814 }
9815
9816 if (strncmp(plmn_mnc, pos, mnc_len) != 0) {
9817 send_resp(dut, conn, SIGMA_ERROR, "errorCode,MNC mismatch");
9818 return 0;
9819 }
9820 pos += mnc_len;
9821
9822 res = snprintf(buf, sizeof(buf), "%s%s-%s",plmn_mcc, plmn_mnc, pos);
9823 if (res < 0 || res >= (int) sizeof(buf))
9824 return -1;
9825 if (set_cred_quoted(ifname, id, "imsi", buf) < 0) {
9826 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could "
9827 "not set IMSI");
9828 return 0;
9829 }
9830
9831 val = get_param(cmd, "Password");
9832 if (val && set_cred_quoted(ifname, id, "milenage", val) < 0) {
9833 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could "
9834 "not set password");
9835 return 0;
9836 }
9837
9838 if (dut->program == PROGRAM_HS2_R2) {
9839 /*
9840 * Set provisioning_sp for the test cases where SIM/USIM
9841 * provisioning is used.
9842 */
9843 if (val && set_cred_quoted(ifname, id, "provisioning_sp",
9844 "wi-fi.org") < 0) {
9845 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could "
9846 "not set provisioning_sp");
9847 return 0;
9848 }
9849
9850 update_devdetail_imsi(dut, imsi);
9851 }
9852
9853 return 1;
9854}
9855
9856
9857static int sta_add_credential_cert(struct sigma_dut *dut,
9858 struct sigma_conn *conn,
9859 const char *ifname,
9860 struct sigma_cmd *cmd)
9861{
9862 const char *val;
9863 int id;
9864
9865 id = add_cred(ifname);
9866 if (id < 0)
9867 return -2;
9868 sigma_dut_print(dut, DUT_MSG_DEBUG, "Adding credential %d", id);
9869
9870 val = get_param(cmd, "prefer");
9871 if (val && atoi(val) > 0)
9872 set_cred(ifname, id, "priority", "1");
9873
9874 val = get_param(cmd, "REALM");
9875 if (val && set_cred_quoted(ifname, id, "realm", val) < 0) {
9876 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set "
9877 "realm");
9878 return 0;
9879 }
9880
9881 val = get_param(cmd, "HOME_FQDN");
9882 if (val && set_cred_quoted(ifname, id, "domain", val) < 0) {
9883 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set "
9884 "home_fqdn");
9885 return 0;
9886 }
9887
9888 val = get_param(cmd, "Username");
9889 if (val && set_cred_quoted(ifname, id, "username", val) < 0) {
9890 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not set "
9891 "username");
9892 return 0;
9893 }
9894
9895 val = get_param(cmd, "clientCertificate");
9896 if (val) {
9897 char fname[200];
9898 snprintf(fname, sizeof(fname), "%s/%s", sigma_cert_path, val);
9899#ifdef __linux__
9900 if (!file_exists(fname)) {
9901 char msg[300];
9902 snprintf(msg, sizeof(msg),
9903 "ErrorCode,clientCertificate "
9904 "file (%s) not found", fname);
9905 send_resp(dut, conn, SIGMA_ERROR, msg);
9906 return 0;
9907 }
9908#endif /* __linux__ */
9909 if (set_cred_quoted(ifname, id, "client_cert", fname) < 0) {
9910 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could "
9911 "not set client_cert");
9912 return 0;
9913 }
9914 if (set_cred_quoted(ifname, id, "private_key", fname) < 0) {
9915 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could "
9916 "not set private_key");
9917 return 0;
9918 }
9919 }
9920
9921 val = get_param(cmd, "ROOT_CA");
9922 if (val) {
9923 char fname[200];
9924 snprintf(fname, sizeof(fname), "%s/%s", sigma_cert_path, val);
9925#ifdef __linux__
9926 if (!file_exists(fname)) {
9927 char msg[300];
9928 snprintf(msg, sizeof(msg), "ErrorCode,ROOT_CA "
9929 "file (%s) not found", fname);
9930 send_resp(dut, conn, SIGMA_ERROR, msg);
9931 return 0;
9932 }
9933#endif /* __linux__ */
9934 if (set_cred_quoted(ifname, id, "ca_cert", fname) < 0) {
9935 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could "
9936 "not set root CA");
9937 return 0;
9938 }
9939 }
9940
9941 return 1;
9942}
9943
9944
9945static int cmd_sta_add_credential(struct sigma_dut *dut,
9946 struct sigma_conn *conn,
9947 struct sigma_cmd *cmd)
9948{
9949 const char *intf = get_param(cmd, "Interface");
9950 const char *type;
9951
9952 start_sta_mode(dut);
9953
9954 type = get_param(cmd, "Type");
9955 if (!type)
9956 return -1;
9957
9958 if (strcasecmp(type, "uname_pwd") == 0)
9959 return sta_add_credential_uname_pwd(dut, conn, intf, cmd);
9960
9961 if (strcasecmp(type, "sim") == 0)
9962 return sta_add_credential_sim(dut, conn, intf, cmd);
9963
9964 if (strcasecmp(type, "cert") == 0)
9965 return sta_add_credential_cert(dut, conn, intf, cmd);
9966
9967 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,Unsupported credential "
9968 "type");
9969 return 0;
9970}
9971
9972
9973static int cmd_sta_scan(struct sigma_dut *dut, struct sigma_conn *conn,
9974 struct sigma_cmd *cmd)
9975{
9976 const char *intf = get_param(cmd, "Interface");
vamsi krishna89ad8c62017-09-19 12:51:18 +05309977 const char *val, *bssid, *ssid;
Jouni Malinencd4e3c32015-10-29 12:39:56 +02009978 char buf[100];
vamsi krishna89ad8c62017-09-19 12:51:18 +05309979 char ssid_hex[65];
Jouni Malinencd4e3c32015-10-29 12:39:56 +02009980 int res;
9981
9982 val = get_param(cmd, "HESSID");
9983 if (val) {
9984 res = snprintf(buf, sizeof(buf), "SET hessid %s", val);
9985 if (res < 0 || res >= (int) sizeof(buf))
9986 return -1;
9987 wpa_command(intf, buf);
9988 }
9989
9990 val = get_param(cmd, "ACCS_NET_TYPE");
9991 if (val) {
9992 res = snprintf(buf, sizeof(buf), "SET access_network_type %s",
9993 val);
9994 if (res < 0 || res >= (int) sizeof(buf))
9995 return -1;
9996 wpa_command(intf, buf);
9997 }
9998
vamsi krishna89ad8c62017-09-19 12:51:18 +05309999 bssid = get_param(cmd, "Bssid");
10000 ssid = get_param(cmd, "Ssid");
10001
10002 if (ssid) {
10003 if (2 * strlen(ssid) >= sizeof(ssid_hex)) {
10004 send_resp(dut, conn, SIGMA_ERROR,
10005 "ErrorCode,Too long SSID");
10006 return 0;
10007 }
10008 ascii2hexstr(ssid, ssid_hex);
10009 }
10010
10011 res = snprintf(buf, sizeof(buf), "SCAN%s%s%s%s",
10012 bssid ? " bssid=": "",
10013 bssid ? bssid : "",
10014 ssid ? " ssid " : "",
10015 ssid ? ssid_hex : "");
10016 if (res < 0 || res >= (int) sizeof(buf))
10017 return -1;
10018
10019 if (wpa_command(intf, buf)) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010020 send_resp(dut, conn, SIGMA_ERROR, "errorCode,Could not start "
10021 "scan");
10022 return 0;
10023 }
10024
10025 return 1;
10026}
10027
10028
Jouni Malinen5e5d43d2018-01-10 17:29:33 +020010029static int cmd_sta_scan_bss(struct sigma_dut *dut, struct sigma_conn *conn,
10030 struct sigma_cmd *cmd)
10031{
10032 const char *intf = get_param(cmd, "Interface");
10033 const char *bssid;
10034 char buf[4096], *pos;
10035 int freq, chan;
10036 char *ssid;
10037 char resp[100];
10038 int res;
10039 struct wpa_ctrl *ctrl;
10040
10041 bssid = get_param(cmd, "BSSID");
10042 if (!bssid) {
10043 send_resp(dut, conn, SIGMA_INVALID,
10044 "errorCode,BSSID argument is missing");
10045 return 0;
10046 }
10047
10048 ctrl = open_wpa_mon(intf);
10049 if (!ctrl) {
10050 sigma_dut_print(dut, DUT_MSG_ERROR,
10051 "Failed to open wpa_supplicant monitor connection");
10052 return -1;
10053 }
10054
10055 if (wpa_command(intf, "SCAN TYPE=ONLY")) {
10056 send_resp(dut, conn, SIGMA_ERROR,
10057 "errorCode,Could not start scan");
10058 wpa_ctrl_detach(ctrl);
10059 wpa_ctrl_close(ctrl);
10060 return 0;
10061 }
10062
10063 res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-SCAN-RESULTS",
10064 buf, sizeof(buf));
10065
10066 wpa_ctrl_detach(ctrl);
10067 wpa_ctrl_close(ctrl);
10068
10069 if (res < 0) {
10070 send_resp(dut, conn, SIGMA_ERROR,
10071 "errorCode,Scan did not complete");
10072 return 0;
10073 }
10074
10075 snprintf(buf, sizeof(buf), "BSS %s", bssid);
10076 if (wpa_command_resp(intf, buf, buf, sizeof(buf)) < 0 ||
10077 strncmp(buf, "id=", 3) != 0) {
10078 send_resp(dut, conn, SIGMA_ERROR,
10079 "errorCode,Specified BSSID not found");
10080 return 0;
10081 }
10082
10083 pos = strstr(buf, "\nfreq=");
10084 if (!pos) {
10085 send_resp(dut, conn, SIGMA_ERROR,
10086 "errorCode,Channel not found");
10087 return 0;
10088 }
10089 freq = atoi(pos + 6);
10090 chan = freq_to_channel(freq);
10091
10092 pos = strstr(buf, "\nssid=");
10093 if (!pos) {
10094 send_resp(dut, conn, SIGMA_ERROR,
10095 "errorCode,SSID not found");
10096 return 0;
10097 }
10098 ssid = pos + 6;
10099 pos = strchr(ssid, '\n');
10100 if (pos)
10101 *pos = '\0';
10102 snprintf(resp, sizeof(resp), "ssid,%s,bsschannel,%d", ssid, chan);
10103 send_resp(dut, conn, SIGMA_COMPLETE, resp);
10104 return 0;
10105}
10106
10107
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010108static int cmd_sta_set_systime(struct sigma_dut *dut, struct sigma_conn *conn,
10109 struct sigma_cmd *cmd)
10110{
10111#ifdef __linux__
10112 struct timeval tv;
10113 struct tm tm;
10114 time_t t;
10115 const char *val;
Pradeep Reddy POTTETI429c69e2016-10-13 17:22:03 +053010116 int v;
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010117
10118 wpa_command(get_station_ifname(), "PMKSA_FLUSH");
10119
10120 memset(&tm, 0, sizeof(tm));
10121 val = get_param(cmd, "seconds");
10122 if (val)
10123 tm.tm_sec = atoi(val);
10124 val = get_param(cmd, "minutes");
10125 if (val)
10126 tm.tm_min = atoi(val);
10127 val = get_param(cmd, "hours");
10128 if (val)
10129 tm.tm_hour = atoi(val);
10130 val = get_param(cmd, "date");
10131 if (val)
10132 tm.tm_mday = atoi(val);
10133 val = get_param(cmd, "month");
Pradeep Reddy POTTETI429c69e2016-10-13 17:22:03 +053010134 if (val) {
10135 v = atoi(val);
10136 if (v < 1 || v > 12) {
10137 send_resp(dut, conn, SIGMA_INVALID,
10138 "errorCode,Invalid month");
10139 return 0;
10140 }
10141 tm.tm_mon = v - 1;
10142 }
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010143 val = get_param(cmd, "year");
10144 if (val) {
10145 int year = atoi(val);
10146#ifdef ANDROID
10147 if (year > 2035)
10148 year = 2035; /* years beyond 2035 not supported */
10149#endif /* ANDROID */
10150 tm.tm_year = year - 1900;
10151 }
10152 t = mktime(&tm);
10153 if (t == (time_t) -1) {
10154 send_resp(dut, conn, SIGMA_ERROR,
10155 "errorCode,Invalid date or time");
10156 return 0;
10157 }
10158
10159 memset(&tv, 0, sizeof(tv));
10160 tv.tv_sec = t;
10161
10162 if (settimeofday(&tv, NULL) < 0) {
10163 sigma_dut_print(dut, DUT_MSG_INFO, "settimeofday failed: %s",
10164 strerror(errno));
10165 send_resp(dut, conn, SIGMA_ERROR,
10166 "errorCode,Failed to set time");
10167 return 0;
10168 }
10169
10170 return 1;
10171#endif /* __linux__ */
10172
10173 return -1;
10174}
10175
10176
10177static int cmd_sta_osu(struct sigma_dut *dut, struct sigma_conn *conn,
10178 struct sigma_cmd *cmd)
10179{
10180 const char *intf = get_param(cmd, "Interface");
10181 const char *name, *val;
10182 int prod_ess_assoc = 1;
10183 char buf[200], bssid[100], ssid[100];
10184 int res;
10185 struct wpa_ctrl *ctrl;
10186
10187 name = get_param(cmd, "osuFriendlyName");
10188
10189 val = get_param(cmd, "ProdESSAssoc");
10190 if (val)
10191 prod_ess_assoc = atoi(val);
10192
10193 kill_dhcp_client(dut, intf);
10194 if (start_dhcp_client(dut, intf) < 0)
10195 return -2;
10196
10197 sigma_dut_print(dut, DUT_MSG_DEBUG, "Trigger OSU");
10198 mkdir("Logs", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
10199 res = snprintf(buf, sizeof(buf),
10200 "%s %s%s%s signup osu-ca.pem",
10201 prod_ess_assoc ? "" : "-N",
10202 name ? "-O'" : "", name ? name : "",
10203 name ? "'" : "");
10204
Kanchanapally, Vidyullatha12b66762015-12-31 16:46:42 +053010205 hs2_set_policy(dut);
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010206 if (run_hs20_osu(dut, buf) < 0) {
10207 FILE *f;
10208
10209 sigma_dut_print(dut, DUT_MSG_INFO, "Failed to complete OSU");
10210
10211 f = fopen("hs20-osu-client.res", "r");
10212 if (f) {
10213 char resp[400], res[300], *pos;
10214 if (!fgets(res, sizeof(res), f))
10215 res[0] = '\0';
10216 pos = strchr(res, '\n');
10217 if (pos)
10218 *pos = '\0';
10219 fclose(f);
10220 sigma_dut_summary(dut, "hs20-osu-client provisioning failed: %s",
10221 res);
10222 snprintf(resp, sizeof(resp), "notify-send '%s'", res);
10223 if (system(resp) != 0) {
10224 }
10225 snprintf(resp, sizeof(resp),
10226 "SSID,,BSSID,,failureReason,%s", res);
10227 send_resp(dut, conn, SIGMA_COMPLETE, resp);
10228 return 0;
10229 }
10230
10231 send_resp(dut, conn, SIGMA_COMPLETE, "SSID,,BSSID,");
10232 return 0;
10233 }
10234
10235 if (!prod_ess_assoc)
10236 goto report;
10237
10238 ctrl = open_wpa_mon(intf);
10239 if (ctrl == NULL) {
10240 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open "
10241 "wpa_supplicant monitor connection");
10242 return -1;
10243 }
10244
10245 res = get_wpa_cli_event(dut, ctrl, "CTRL-EVENT-CONNECTED",
10246 buf, sizeof(buf));
10247
10248 wpa_ctrl_detach(ctrl);
10249 wpa_ctrl_close(ctrl);
10250
10251 if (res < 0) {
10252 sigma_dut_print(dut, DUT_MSG_INFO, "Failed to connect to "
10253 "network after OSU");
10254 send_resp(dut, conn, SIGMA_COMPLETE, "SSID,,BSSID,");
10255 return 0;
10256 }
10257
10258report:
10259 if (get_wpa_status(intf, "bssid", bssid, sizeof(bssid)) < 0 ||
10260 get_wpa_status(intf, "ssid", ssid, sizeof(ssid)) < 0) {
10261 sigma_dut_print(dut, DUT_MSG_INFO, "Failed to get BSSID/SSID");
10262 send_resp(dut, conn, SIGMA_COMPLETE, "SSID,,BSSID,");
10263 return 0;
10264 }
10265
10266 snprintf(buf, sizeof(buf), "SSID,%s,BSSID,%s", ssid, bssid);
10267 send_resp(dut, conn, SIGMA_COMPLETE, buf);
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010268 return 0;
10269}
10270
10271
10272static int cmd_sta_policy_update(struct sigma_dut *dut, struct sigma_conn *conn,
10273 struct sigma_cmd *cmd)
10274{
10275 const char *val;
10276 int timeout = 120;
10277
10278 val = get_param(cmd, "PolicyUpdate");
10279 if (val == NULL || atoi(val) == 0)
10280 return 1; /* No operation requested */
10281
10282 val = get_param(cmd, "Timeout");
10283 if (val)
10284 timeout = atoi(val);
10285
10286 if (timeout) {
10287 /* TODO: time out the command and return
10288 * PolicyUpdateStatus,TIMEOUT if needed. */
10289 }
10290
10291 sigma_dut_print(dut, DUT_MSG_DEBUG, "Trigger policy update");
10292 mkdir("Logs", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
10293 if (run_hs20_osu(dut, "pol_upd fqdn=wi-fi.org") < 0) {
10294 send_resp(dut, conn, SIGMA_COMPLETE, "PolicyUpdateStatus,FAIL");
10295 return 0;
10296 }
10297
10298 send_resp(dut, conn, SIGMA_COMPLETE, "PolicyUpdateStatus,SUCCESS");
10299 return 0;
10300}
10301
10302
10303static int cmd_sta_er_config(struct sigma_dut *dut, struct sigma_conn *conn,
10304 struct sigma_cmd *cmd)
10305{
10306 struct wpa_ctrl *ctrl;
10307 const char *intf = get_param(cmd, "Interface");
10308 const char *bssid = get_param(cmd, "Bssid");
10309 const char *ssid = get_param(cmd, "SSID");
10310 const char *security = get_param(cmd, "Security");
10311 const char *passphrase = get_param(cmd, "Passphrase");
10312 const char *pin = get_param(cmd, "PIN");
10313 char buf[1000];
10314 char ssid_hex[200], passphrase_hex[200];
10315 const char *keymgmt, *cipher;
10316
10317 if (intf == NULL)
10318 intf = get_main_ifname();
10319
10320 if (!bssid) {
10321 send_resp(dut, conn, SIGMA_ERROR,
10322 "ErrorCode,Missing Bssid argument");
10323 return 0;
10324 }
10325
10326 if (!ssid) {
10327 send_resp(dut, conn, SIGMA_ERROR,
10328 "ErrorCode,Missing SSID argument");
10329 return 0;
10330 }
10331
10332 if (!security) {
10333 send_resp(dut, conn, SIGMA_ERROR,
10334 "ErrorCode,Missing Security argument");
10335 return 0;
10336 }
10337
10338 if (!passphrase) {
10339 send_resp(dut, conn, SIGMA_ERROR,
10340 "ErrorCode,Missing Passphrase argument");
10341 return 0;
10342 }
10343
10344 if (!pin) {
10345 send_resp(dut, conn, SIGMA_ERROR,
10346 "ErrorCode,Missing PIN argument");
10347 return 0;
10348 }
10349
vamsi krishna8c9c1562017-05-12 15:51:46 +053010350 if (2 * strlen(ssid) >= sizeof(ssid_hex) ||
10351 2 * strlen(passphrase) >= sizeof(passphrase_hex)) {
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010352 send_resp(dut, conn, SIGMA_ERROR,
10353 "ErrorCode,Too long SSID/passphrase");
10354 return 0;
10355 }
10356
10357 ctrl = open_wpa_mon(intf);
10358 if (ctrl == NULL) {
10359 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open "
10360 "wpa_supplicant monitor connection");
10361 return -2;
10362 }
10363
10364 if (strcasecmp(security, "wpa2-psk") == 0) {
10365 keymgmt = "WPA2PSK";
10366 cipher = "CCMP";
10367 } else {
10368 wpa_ctrl_detach(ctrl);
10369 wpa_ctrl_close(ctrl);
10370 send_resp(dut, conn, SIGMA_ERROR,
10371 "ErrorCode,Unsupported Security value");
10372 return 0;
10373 }
10374
10375 ascii2hexstr(ssid, ssid_hex);
10376 ascii2hexstr(passphrase, passphrase_hex);
10377 snprintf(buf, sizeof(buf), "WPS_REG %s %s %s %s %s %s",
10378 bssid, pin, ssid_hex, keymgmt, cipher, passphrase_hex);
10379
10380 if (wpa_command(intf, buf) < 0) {
10381 wpa_ctrl_detach(ctrl);
10382 wpa_ctrl_close(ctrl);
10383 send_resp(dut, conn, SIGMA_ERROR,
10384 "ErrorCode,Failed to start registrar");
10385 return 0;
10386 }
10387
10388 snprintf(dut->er_oper_bssid, sizeof(dut->er_oper_bssid), "%s", bssid);
10389 dut->er_oper_performed = 1;
10390
10391 return wps_connection_event(dut, conn, ctrl, intf, 0);
10392}
10393
10394
10395static int cmd_sta_wps_connect_pw_token(struct sigma_dut *dut,
10396 struct sigma_conn *conn,
10397 struct sigma_cmd *cmd)
10398{
10399 struct wpa_ctrl *ctrl;
10400 const char *intf = get_param(cmd, "Interface");
10401 const char *bssid = get_param(cmd, "Bssid");
10402 char buf[100];
10403
10404 if (!bssid) {
10405 send_resp(dut, conn, SIGMA_ERROR,
10406 "ErrorCode,Missing Bssid argument");
10407 return 0;
10408 }
10409
10410 ctrl = open_wpa_mon(intf);
10411 if (ctrl == NULL) {
10412 sigma_dut_print(dut, DUT_MSG_ERROR, "Failed to open "
10413 "wpa_supplicant monitor connection");
10414 return -2;
10415 }
10416
10417 snprintf(buf, sizeof(buf), "WPS_NFC %s", bssid);
10418
10419 if (wpa_command(intf, buf) < 0) {
10420 wpa_ctrl_detach(ctrl);
10421 wpa_ctrl_close(ctrl);
10422 send_resp(dut, conn, SIGMA_ERROR,
10423 "ErrorCode,Failed to start registrar");
10424 return 0;
10425 }
10426
10427 return wps_connection_event(dut, conn, ctrl, intf, 0);
10428}
10429
10430
vamsi krishna9b144002017-09-20 13:28:13 +053010431static int cmd_start_wps_registration(struct sigma_dut *dut,
10432 struct sigma_conn *conn,
10433 struct sigma_cmd *cmd)
10434{
10435 struct wpa_ctrl *ctrl;
10436 const char *intf = get_param(cmd, "Interface");
10437 const char *role, *method;
10438 int res;
10439 char buf[256];
10440 const char *events[] = {
10441 "CTRL-EVENT-CONNECTED",
10442 "WPS-OVERLAP-DETECTED",
10443 "WPS-TIMEOUT",
10444 "WPS-FAIL",
10445 NULL
10446 };
10447
10448 ctrl = open_wpa_mon(intf);
10449 if (!ctrl) {
10450 sigma_dut_print(dut, DUT_MSG_ERROR,
10451 "Failed to open wpa_supplicant monitor connection");
10452 return -2;
10453 }
10454
10455 role = get_param(cmd, "WpsRole");
10456 if (!role) {
10457 send_resp(dut, conn, SIGMA_INVALID,
10458 "ErrorCode,WpsRole not provided");
10459 goto fail;
10460 }
10461
10462 if (strcasecmp(role, "Enrollee") == 0) {
10463 method = get_param(cmd, "WpsConfigMethod");
10464 if (!method) {
10465 send_resp(dut, conn, SIGMA_INVALID,
10466 "ErrorCode,WpsConfigMethod not provided");
10467 goto fail;
10468 }
10469 if (strcasecmp(method, "PBC") == 0) {
10470 if (wpa_command(intf, "WPS_PBC") < 0) {
10471 send_resp(dut, conn, SIGMA_ERROR,
10472 "ErrorCode,Failed to enable PBC");
10473 goto fail;
10474 }
10475 } else {
10476 /* TODO: PIN method */
10477 send_resp(dut, conn, SIGMA_ERROR,
10478 "ErrorCode,Unsupported WpsConfigMethod value");
10479 goto fail;
10480 }
10481 res = get_wpa_cli_events(dut, ctrl, events, buf, sizeof(buf));
10482 if (res < 0) {
10483 send_resp(dut, conn, SIGMA_ERROR,
10484 "ErrorCode,WPS connection did not complete");
10485 goto fail;
10486 }
10487 if (strstr(buf, "WPS-TIMEOUT")) {
10488 send_resp(dut, conn, SIGMA_ERROR, "ErrorCode,NoPeer");
10489 } else if (strstr(buf, "WPS-OVERLAP-DETECTED")) {
10490 send_resp(dut, conn, SIGMA_ERROR,
10491 "ErrorCode,OverlapSession");
10492 } else if (strstr(buf, "CTRL-EVENT-CONNECTED")) {
10493 send_resp(dut, conn, SIGMA_COMPLETE, "Successful");
10494 } else {
10495 send_resp(dut, conn, SIGMA_ERROR,
10496 "ErrorCode,WPS operation failed");
10497 }
10498 } else {
10499 /* TODO: Registrar role */
10500 send_resp(dut, conn, SIGMA_ERROR,
10501 "ErrorCode,Unsupported WpsRole value");
10502 }
10503
10504fail:
10505 wpa_ctrl_detach(ctrl);
10506 wpa_ctrl_close(ctrl);
10507 return 0;
10508}
10509
10510
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010511static int req_intf(struct sigma_cmd *cmd)
10512{
10513 return get_param(cmd, "interface") == NULL ? -1 : 0;
10514}
10515
10516
10517void sta_register_cmds(void)
10518{
10519 sigma_dut_reg_cmd("sta_get_ip_config", req_intf,
10520 cmd_sta_get_ip_config);
10521 sigma_dut_reg_cmd("sta_set_ip_config", req_intf,
10522 cmd_sta_set_ip_config);
10523 sigma_dut_reg_cmd("sta_get_info", req_intf, cmd_sta_get_info);
10524 sigma_dut_reg_cmd("sta_get_mac_address", req_intf,
10525 cmd_sta_get_mac_address);
10526 sigma_dut_reg_cmd("sta_is_connected", req_intf, cmd_sta_is_connected);
10527 sigma_dut_reg_cmd("sta_verify_ip_connection", req_intf,
10528 cmd_sta_verify_ip_connection);
10529 sigma_dut_reg_cmd("sta_get_bssid", req_intf, cmd_sta_get_bssid);
10530 sigma_dut_reg_cmd("sta_set_encryption", req_intf,
10531 cmd_sta_set_encryption);
10532 sigma_dut_reg_cmd("sta_set_psk", req_intf, cmd_sta_set_psk);
10533 sigma_dut_reg_cmd("sta_set_eaptls", req_intf, cmd_sta_set_eaptls);
10534 sigma_dut_reg_cmd("sta_set_eapttls", req_intf, cmd_sta_set_eapttls);
10535 sigma_dut_reg_cmd("sta_set_eapsim", req_intf, cmd_sta_set_eapsim);
10536 sigma_dut_reg_cmd("sta_set_peap", req_intf, cmd_sta_set_peap);
10537 sigma_dut_reg_cmd("sta_set_eapfast", req_intf, cmd_sta_set_eapfast);
10538 sigma_dut_reg_cmd("sta_set_eapaka", req_intf, cmd_sta_set_eapaka);
10539 sigma_dut_reg_cmd("sta_set_eapakaprime", req_intf,
10540 cmd_sta_set_eapakaprime);
10541 sigma_dut_reg_cmd("sta_set_security", req_intf, cmd_sta_set_security);
10542 sigma_dut_reg_cmd("sta_set_uapsd", req_intf, cmd_sta_set_uapsd);
10543 /* TODO: sta_set_ibss */
10544 /* TODO: sta_set_mode */
10545 sigma_dut_reg_cmd("sta_set_wmm", req_intf, cmd_sta_set_wmm);
10546 sigma_dut_reg_cmd("sta_associate", req_intf, cmd_sta_associate);
10547 /* TODO: sta_up_load */
10548 sigma_dut_reg_cmd("sta_preset_testparameters", req_intf,
10549 cmd_sta_preset_testparameters);
10550 /* TODO: sta_set_system */
10551 sigma_dut_reg_cmd("sta_set_11n", req_intf, cmd_sta_set_11n);
10552 /* TODO: sta_set_rifs_test */
10553 sigma_dut_reg_cmd("sta_set_wireless", req_intf, cmd_sta_set_wireless);
10554 sigma_dut_reg_cmd("sta_send_addba", req_intf, cmd_sta_send_addba);
10555 /* TODO: sta_send_coexist_mgmt */
10556 sigma_dut_reg_cmd("sta_disconnect", req_intf, cmd_sta_disconnect);
10557 sigma_dut_reg_cmd("sta_reassoc", req_intf, cmd_sta_reassoc);
10558 sigma_dut_reg_cmd("sta_reassociate", req_intf, cmd_sta_reassoc);
10559 sigma_dut_reg_cmd("sta_reset_default", req_intf,
10560 cmd_sta_reset_default);
10561 sigma_dut_reg_cmd("sta_send_frame", req_intf, cmd_sta_send_frame);
10562 sigma_dut_reg_cmd("sta_set_macaddr", req_intf, cmd_sta_set_macaddr);
10563 sigma_dut_reg_cmd("sta_set_rfeature", req_intf, cmd_sta_set_rfeature);
10564 sigma_dut_reg_cmd("sta_set_radio", req_intf, cmd_sta_set_radio);
10565 sigma_dut_reg_cmd("sta_set_pwrsave", req_intf, cmd_sta_set_pwrsave);
10566 sigma_dut_reg_cmd("sta_bssid_pool", req_intf, cmd_sta_bssid_pool);
10567 sigma_dut_reg_cmd("sta_reset_parm", req_intf, cmd_sta_reset_parm);
10568 sigma_dut_reg_cmd("sta_get_key", req_intf, cmd_sta_get_key);
10569 sigma_dut_reg_cmd("sta_hs2_associate", req_intf,
10570 cmd_sta_hs2_associate);
10571 sigma_dut_reg_cmd("sta_add_credential", req_intf,
10572 cmd_sta_add_credential);
10573 sigma_dut_reg_cmd("sta_scan", req_intf, cmd_sta_scan);
Jouni Malinen5e5d43d2018-01-10 17:29:33 +020010574 sigma_dut_reg_cmd("sta_scan_bss", req_intf, cmd_sta_scan_bss);
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010575 sigma_dut_reg_cmd("sta_set_systime", NULL, cmd_sta_set_systime);
10576 sigma_dut_reg_cmd("sta_osu", req_intf, cmd_sta_osu);
10577 sigma_dut_reg_cmd("sta_policy_update", req_intf, cmd_sta_policy_update);
10578 sigma_dut_reg_cmd("sta_er_config", NULL, cmd_sta_er_config);
10579 sigma_dut_reg_cmd("sta_wps_connect_pw_token", req_intf,
10580 cmd_sta_wps_connect_pw_token);
Jouni Malinen82905202018-04-29 17:20:10 +030010581 sigma_dut_reg_cmd("sta_exec_action", NULL, cmd_sta_exec_action);
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010582 sigma_dut_reg_cmd("sta_get_events", req_intf, cmd_sta_get_events);
10583 sigma_dut_reg_cmd("sta_get_parameter", req_intf, cmd_sta_get_parameter);
vamsi krishna9b144002017-09-20 13:28:13 +053010584 sigma_dut_reg_cmd("start_wps_registration", req_intf,
10585 cmd_start_wps_registration);
Jouni Malinencd4e3c32015-10-29 12:39:56 +020010586}