blob: 0682965fa1d740e0c9a2e483c579be3495a4f669 [file] [log] [blame]
developer402bf2a2022-10-04 15:20:18 +08001#include <stdio.h>
2#include <string.h>
3#include <stdlib.h>
4#include <ctype.h>
5#include <uci.h>
6#include "wifi-test-tool.h"
7
developer4c2edbe2022-10-18 16:36:37 +08008
9static int _syscmd(char *cmd, char *retBuf, int retBufSize)
10{
11 FILE *f;
12 char *ptr = retBuf;
13 int bufSize=retBufSize, bufbytes=0, readbytes=0, cmd_ret=0;
14
15
16 if((f = popen(cmd, "r")) == NULL) {
17 fprintf(stderr,"\npopen %s error\n", cmd);
18 return RETURN_ERR;
19 }
20
21 while(!feof(f))
22 {
23 *ptr = 0;
24 if(bufSize>=128) {
25 bufbytes=128;
26 } else {
27 bufbytes=bufSize-1;
28 }
29
30 fgets(ptr,bufbytes,f);
31 readbytes=strlen(ptr);
32
33 if(!readbytes)
34 break;
35
36 bufSize-=readbytes;
37 ptr += readbytes;
38 }
39 cmd_ret = pclose(f);
40 retBuf[retBufSize-1]=0;
41
42 return cmd_ret >> 8;
43}
44
45int phy_index_to_radio(int phyIndex)
46{
47 char cmd[128] = {0};
48 char buf[64] = {0};
49 int radioIndex = 0;
50 snprintf(cmd, sizeof(cmd), "ls /tmp | grep phy%d | cut -d '-' -f2 | tr -d '\n'", phyIndex);
51 _syscmd(cmd, buf, sizeof(buf));
52
53 if (strlen(buf) == 0 || strstr(buf, "wifi") == NULL) {
54 fprintf(stderr, "%s: failed to get wifi index\n", __func__);
55 return RETURN_ERR;
56 }
57 sscanf(buf, "wifi%d", &radioIndex);
58 fprintf(stderr, "%s: radio index = %d \n", __func__, radioIndex);
59 return radioIndex;
60}
61
developer402bf2a2022-10-04 15:20:18 +080062void set_channel(wifi_radio_param *radio_param, char *channel)
63{
developerab985802022-10-07 09:42:31 +080064 if (strcmp(channel, "auto") == 0) {
65 radio_param->auto_channel = TRUE;
66 radio_param->channel = 0;
67 } else {
developer402bf2a2022-10-04 15:20:18 +080068 radio_param->auto_channel = FALSE;
developerab985802022-10-07 09:42:31 +080069 radio_param->channel = strtol(channel, NULL, 10);
developer402bf2a2022-10-04 15:20:18 +080070 }
developerab985802022-10-07 09:42:31 +080071 return;
developer402bf2a2022-10-04 15:20:18 +080072}
73
developer02a4a1b2022-10-06 17:16:43 +080074void set_country(wifi_radio_param *radio_param, char *country)
developer402bf2a2022-10-04 15:20:18 +080075{
76 strcpy(radio_param->country, country);
77}
78
developer02a4a1b2022-10-06 17:16:43 +080079void set_band(wifi_radio_param *radio_param, char *band)
developer402bf2a2022-10-04 15:20:18 +080080{
81 strcpy(radio_param->band, band);
82}
83
developer54afa2c2022-10-18 17:44:13 +080084void set_noscan(wifi_radio_param *radio_param, char *noscan)
85{
86 snprintf(radio_param->noscan, 2, "%s", noscan);
87 radio_param->noscan[1] = '\0';
88}
89
developer402bf2a2022-10-04 15:20:18 +080090void set_hwmode(wifi_radio_param *radio_param, char *hwmode)
91{
92 if (strncmp(hwmode, "11a", 3) == 0)
93 strcpy(radio_param->hwmode, "a");
94 if (strncmp(hwmode, "11b", 3) == 0)
95 strcpy(radio_param->hwmode, "b");
96 if (strncmp(hwmode, "11g", 3) == 0)
97 strcpy(radio_param->hwmode, "g");
98}
99
100void set_htmode(wifi_radio_param *radio_param, char *htmode)
101{
102 char tmp[16] = {0};
103 char *ptr = htmode;
104 ULONG bandwidth = 0;
105 radio_param->bandwidth = 20;
106 while (*ptr) {
107 if (isdigit(*ptr)) {
108 bandwidth = strtoul(ptr, NULL, 10);
109 radio_param->bandwidth = bandwidth;
110 break;
111 }
112 ptr++;
113 }
114
115 // HT40 -> 11NGHT40PLUS
116 // VHT40+ -> 11ACVHT40PLUS
117 // HE80 -> 11AXHE80
118 if (strstr(htmode, "+") != NULL) {
119 strncpy(tmp, htmode, strlen(htmode) - 1);
120 strcat(tmp, "PLUS");
121 } else if (strstr(htmode, "-") != NULL) {
122 strncpy(tmp, htmode, strlen(htmode) - 1);
123 strcat(tmp, "MINUS");
124 } else
125 strcpy(tmp, htmode);
126
127
128 if (strstr(htmode, "VHT") != NULL) {
129 snprintf(radio_param->htmode, sizeof(radio_param->htmode), "11AC%s", tmp);
130 } else if (strstr(htmode, "HT") != NULL && strstr(htmode, "NO") == NULL) {
131 snprintf(radio_param->htmode, sizeof(radio_param->htmode), "11NG%s", tmp);
132 } else if (strstr(htmode, "HE") != NULL) {
133 snprintf(radio_param->htmode, sizeof(radio_param->htmode), "11AX%s", tmp);
134 } else { // NOHT or NONE should be parsed with the band, so just fill the original string.
135 strcpy(radio_param->htmode, tmp);
136 }
137
138}
139
140void set_disable(wifi_radio_param *radio_param, char *disable)
141{
142 if (strcmp(disable, "1") == 0)
143 radio_param->disabled = TRUE;
144 else
145 radio_param->disabled = FALSE;
146}
147
148void set_radionum(wifi_ap_param *ap_param, char *radio_name)
149{
150 int radio_num;
151 char *ptr = radio_name;
developer4c2edbe2022-10-18 16:36:37 +0800152 int phyId = 0;
developer402bf2a2022-10-04 15:20:18 +0800153
154 while (*ptr) {
155 if (isdigit(*ptr)) {
156 radio_num = strtoul(ptr, NULL, 10);
developer4c2edbe2022-10-18 16:36:37 +0800157 phyId = phy_index_to_radio(radio_num);
158 ap_param->radio_index = phyId;
developer402bf2a2022-10-04 15:20:18 +0800159 break;
160 }
161 ptr++;
162 }
163}
164
165void set_ssid(wifi_ap_param *ap_param, char *ssid)
166{
167 strncpy(ap_param->ssid, ssid, 32);
168}
169
170void set_encryption(wifi_ap_param *ap_param, char *encryption_mode)
171{
developer3ddad2f2022-10-13 13:33:57 +0800172 if (strcmp(encryption_mode, "none") == 0) {
173 ap_param->security.mode = wifi_security_mode_none;
174 ap_param->security.encr = wifi_encryption_none;
175 }else if(strncmp(encryption_mode, "psk2", 4) == 0){
176 ap_param->security.mode = wifi_security_mode_wpa2_personal;
177 }else if(strncmp(encryption_mode, "psk-",4) == 0){
178 ap_param->security.mode = wifi_security_mode_wpa_wpa2_personal;
179 }else if(strncmp(encryption_mode, "psk",3) == 0){
180 ap_param->security.mode = wifi_security_mode_wpa_personal;
181 }else if(strncmp(encryption_mode, "wpa2",4) == 0){
182 ap_param->security.mode = wifi_security_mode_wpa2_enterprise;
183 }else if(strncmp(encryption_mode, "wpa-",4) == 0){
184 ap_param->security.mode = wifi_security_mode_wpa_wpa2_enterprise;
185 }else if(strcmp(encryption_mode, "sae") == 0){
186 ap_param->security.mode = wifi_security_mode_wpa3_personal;
187 }else if(strcmp(encryption_mode, "wpa3") == 0){
188 ap_param->security.mode = wifi_security_mode_wpa3_enterprise;
189 }else if(strcmp(encryption_mode, "sae-mixed") == 0){
190 ap_param->security.mode = wifi_security_mode_wpa3_transition;
developer402bf2a2022-10-04 15:20:18 +0800191 }
192
developer3ddad2f2022-10-13 13:33:57 +0800193 if(strstr(encryption_mode, "tkip") && (strstr(encryption_mode, "ccmp") || strstr(encryption_mode, "aes") )){
194 ap_param->security.encr = wifi_encryption_aes_tkip;
195 }else if (strstr(encryption_mode, "tkip")){
196 ap_param->security.encr = wifi_encryption_tkip;
197 }else{
198 ap_param->security.encr = wifi_encryption_aes;
developer402bf2a2022-10-04 15:20:18 +0800199 }
developer3ddad2f2022-10-13 13:33:57 +0800200
201 if(!strcmp(encryption_mode, "wpa3") || !strcmp(encryption_mode, "sae")){
202 ap_param->security.mfp = wifi_mfp_cfg_required;
203 }else if (!strcmp(encryption_mode, "sae-mixed")){
204 ap_param->security.mfp = wifi_mfp_cfg_optional;
205 }else{
206 ap_param->security.mfp = wifi_mfp_cfg_disabled;
207 }
208
209 if (!strcmp(encryption_mode, "sae")){
210 ap_param->security.u.key.type = wifi_security_key_type_sae;
211 }else if (!strcmp(encryption_mode, "sae-mixed")){
212 ap_param->security.u.key.type = wifi_security_key_type_psk_sae;
213 }else{
214 ap_param->security.u.key.type = wifi_security_key_type_psk;
developer402bf2a2022-10-04 15:20:18 +0800215 }
developer3ddad2f2022-10-13 13:33:57 +0800216
developer402bf2a2022-10-04 15:20:18 +0800217}
218
219void set_key(wifi_ap_param *ap_param, char *key)
220{
developer3ddad2f2022-10-13 13:33:57 +0800221 strncpy(ap_param->security.u.key.key, key, 64);
developer402bf2a2022-10-04 15:20:18 +0800222}
223
developerf9b2ef02022-10-14 10:07:58 +0800224int set_ap_bssid(int radio_index, int offset, mac_address_t *bssid)
225{
226 FILE *f;
227 char mac_file[64] = {0};
228 char mac_address[20] = {0};
229 char *tmp = NULL;
230
231 sprintf(mac_file, "/sys/class/net/wlan%d/address", radio_index);
232 f = fopen(mac_file, "r");
233 if (f == NULL)
234 return -1;
235 fgets(mac_address, 20, f);
236 fclose(f);
237
238 sscanf(mac_address, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx", &(*bssid)[0], &(*bssid)[1], &(*bssid)[2], &(*bssid)[3], &(*bssid)[4], &(*bssid)[5]);
239 (*bssid)[0] += (offset + 1)*2;
240 return 0;
241}
242
developer402bf2a2022-10-04 15:20:18 +0800243void set_radio_param(wifi_radio_param radio_parameter)
244{
245 BOOL enable;
246 BOOL current;
developer402bf2a2022-10-04 15:20:18 +0800247 int ret = 0;
248 struct params param;
developerab985802022-10-07 09:42:31 +0800249 wifi_radio_operationParam_t operationParam = {0};
250
developer4c2edbe2022-10-18 16:36:37 +0800251 if(radio_parameter.radio_index == -1)
252 return;
253
developerab985802022-10-07 09:42:31 +0800254 if (radio_parameter.disabled == TRUE) {
255 wifi_setRadioEnable(radio_parameter.radio_index, FALSE);
256 return;
257 }
developer402bf2a2022-10-04 15:20:18 +0800258
259 fprintf(stderr, "Start setting radio\n");
developer18615812022-10-17 17:37:29 +0800260
261 wifi_setRadioEnable(radio_parameter.radio_index, TRUE);
262 sleep(1);
263
264 // Get current radio setting
developerab985802022-10-07 09:42:31 +0800265 ret = wifi_getRadioOperatingParameters(radio_parameter.radio_index, &operationParam);
266 if (ret != RETURN_OK)
267 fprintf(stderr, "[Get OperatingParameters failed!!!]\n");
developer18615812022-10-17 17:37:29 +0800268 operationParam.enable = TRUE;
developer402bf2a2022-10-04 15:20:18 +0800269
developer402bf2a2022-10-04 15:20:18 +0800270 // Channel
developerab985802022-10-07 09:42:31 +0800271 operationParam.autoChannelEnabled = radio_parameter.auto_channel;
272 operationParam.channel = radio_parameter.channel;
developer402bf2a2022-10-04 15:20:18 +0800273
developerae3f8412022-10-13 15:27:02 +0800274 //bandwidth
275 if (radio_parameter.bandwidth == 20){
276 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_20MHZ;
277 }else if (radio_parameter.bandwidth == 40){
278 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_40MHZ;
279 }else if (radio_parameter.bandwidth == 80){
280 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_80MHZ;
281 }else if (radio_parameter.bandwidth == 160){
282 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_160MHZ;
283 }
developer402bf2a2022-10-04 15:20:18 +0800284 // Country
285 fprintf(stderr, "Set Country: %s\n", radio_parameter.country);
286 ret = wifi_setRadioCountryCode(radio_parameter.radio_index, radio_parameter.country);
287 if (ret != RETURN_OK)
288 fprintf(stderr, "[Set Country failed!!!]\n");
289 ret = 0;
290
291 // hwmode
292 fprintf(stderr, "Set hwmode: %s\n", radio_parameter.hwmode);
293 ret = wifi_setRadioHwMode(radio_parameter.radio_index, radio_parameter.hwmode);
294 if (ret != RETURN_OK)
295 fprintf(stderr, "[Set hwmode failed!!!]\n");
296 ret = 0;
297
298 // htmode
developerab985802022-10-07 09:42:31 +0800299 unsigned int mode = 0; // enum wifi_ieee80211Variant_t
developer402bf2a2022-10-04 15:20:18 +0800300 if (strcmp(radio_parameter.band, "2g") == 0) {
developerab985802022-10-07 09:42:31 +0800301 mode |= WIFI_80211_VARIANT_B | WIFI_80211_VARIANT_G;
developer402bf2a2022-10-04 15:20:18 +0800302 if (strcmp(radio_parameter.htmode, "NOHT") == 0 || strcmp(radio_parameter.htmode, "NONE") == 0)
303 strcpy(radio_parameter.htmode, "11G");
304
developerab985802022-10-07 09:42:31 +0800305 if (strstr(radio_parameter.htmode, "HE") != NULL)
306 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AX;
developer402bf2a2022-10-04 15:20:18 +0800307
developerab985802022-10-07 09:42:31 +0800308 } else if (strcmp(radio_parameter.band, "5g") == 0) {
309 mode |= WIFI_80211_VARIANT_A;
developer402bf2a2022-10-04 15:20:18 +0800310 if (strcmp(radio_parameter.htmode, "NOHT") == 0 || strcmp(radio_parameter.htmode, "NONE") == 0)
311 strcpy(radio_parameter.htmode, "11A");
developerab985802022-10-07 09:42:31 +0800312
313 if (strstr(radio_parameter.htmode, "HE") != NULL)
314 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC | WIFI_80211_VARIANT_AX;
developer4c2edbe2022-10-18 16:36:37 +0800315 }else if (strcmp(radio_parameter.band, "6g") == 0) {
316 mode |= WIFI_80211_VARIANT_A | WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC | WIFI_80211_VARIANT_AX;;
317 }
developer402bf2a2022-10-04 15:20:18 +0800318
319 if (strstr(radio_parameter.htmode, "VHT") != NULL)
developerab985802022-10-07 09:42:31 +0800320 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC;
developer402bf2a2022-10-04 15:20:18 +0800321 else if (strstr(radio_parameter.htmode, "HT") != NULL && strstr(radio_parameter.htmode, "NO") == NULL)
developerab985802022-10-07 09:42:31 +0800322 mode |= WIFI_80211_VARIANT_N;
developer402bf2a2022-10-04 15:20:18 +0800323
developerab985802022-10-07 09:42:31 +0800324 operationParam.variant = mode;
developer402bf2a2022-10-04 15:20:18 +0800325
developer54afa2c2022-10-18 17:44:13 +0800326 // noscan
327 fprintf(stderr, "Set noscan: %s\n", radio_parameter.noscan);
328 ret = wifi_setNoscan(radio_parameter.radio_index, radio_parameter.noscan);
329 if (ret != RETURN_OK)
330 fprintf(stderr, "[Set noscan failed!!!]\n");
331 ret = 0;
332
developerab985802022-10-07 09:42:31 +0800333 // apply setting
334 ret = wifi_setRadioOperatingParameters(radio_parameter.radio_index, &operationParam);
developer402bf2a2022-10-04 15:20:18 +0800335 if (ret != RETURN_OK)
developerab985802022-10-07 09:42:31 +0800336 fprintf(stderr, "[Apply setting failed!!!]\n");
developer402bf2a2022-10-04 15:20:18 +0800337
338}
339
340void set_ap_param(wifi_ap_param ap_param)
341{
342 int ret = 0;
developerab985802022-10-07 09:42:31 +0800343 int vap_index_in_map = 0;
344 wifi_vap_info_t vap_info = {0};
345 wifi_vap_info_map_t vap_map = {0};
developer18615812022-10-17 17:37:29 +0800346 BOOL radio_enable = FALSE;
347
348 wifi_getRadioEnable(ap_param.radio_index, &radio_enable);
349 if (radio_enable == FALSE)
350 return;
developerab985802022-10-07 09:42:31 +0800351
developer4c2edbe2022-10-18 16:36:37 +0800352 if(ap_param.radio_index == -1)
353 return;
developerab985802022-10-07 09:42:31 +0800354 ret = wifi_getRadioVapInfoMap(ap_param.radio_index, &vap_map);
355 if (ret != RETURN_OK) { // if failed, we set assume this vap as the first vap.
356 fprintf(stderr, "[Get vap map failed!!!]\n");
357 vap_map.num_vaps = MAX_NUM_VAP_PER_RADIO;
358 } else { // get the index of the map
359 for (int i = 0; i < vap_map.num_vaps; i++) {
360 if (vap_map.vap_array[i].vap_index == ap_param.ap_index) {
361 vap_index_in_map = i;
362 break;
363 }
364 }
365 }
366
developerf9b2ef02022-10-14 10:07:58 +0800367 fprintf(stderr, "Start setting ap\n");
368
developerab985802022-10-07 09:42:31 +0800369 vap_info = vap_map.vap_array[vap_index_in_map];
developerf9b2ef02022-10-14 10:07:58 +0800370 vap_info.u.bss_info.enabled = TRUE;
371 if (set_ap_bssid(vap_info.radio_index, vap_index_in_map, &vap_info.u.bss_info.bssid) == -1) {
372 fprintf(stderr, "Get mac address failed.\n");
373 return -1;
374 }
developer402bf2a2022-10-04 15:20:18 +0800375
developer402bf2a2022-10-04 15:20:18 +0800376 // SSID
developerab985802022-10-07 09:42:31 +0800377 strncpy(vap_info.u.bss_info.ssid, ap_param.ssid, 33);
378 vap_info.u.bss_info.ssid[32] = '\0';
developer402bf2a2022-10-04 15:20:18 +0800379
developer3ddad2f2022-10-13 13:33:57 +0800380 vap_info.u.bss_info.security.mode = ap_param.security.mode;
381 vap_info.u.bss_info.security.encr = ap_param.security.encr;
382 vap_info.u.bss_info.security.mfp = ap_param.security.mfp;
383 vap_info.u.bss_info.security.u.key.type = ap_param.security.u.key.type;
384 strncpy(vap_info.u.bss_info.security.u.key.key, ap_param.security.u.key.key, 64);
developer4c2edbe2022-10-18 16:36:37 +0800385
386
developerab985802022-10-07 09:42:31 +0800387 // Replace the setting with uci config
388 vap_map.vap_array[vap_index_in_map] = vap_info;
389 ret = wifi_createVAP(ap_param.radio_index, &vap_map);
390 if (ret != RETURN_OK)
391 fprintf(stderr, "[Apply vap setting failed!!!]\n");
392
developer402bf2a2022-10-04 15:20:18 +0800393 // restart ap
394 wifi_setApEnable(ap_param.ap_index, FALSE);
395 wifi_setApEnable(ap_param.ap_index, TRUE);
396}
397
398int apply_uci_config ()
399{
400 struct uci_context *uci_ctx = uci_alloc_context();
401 struct uci_package *uci_pkg = NULL;
402 struct uci_element *e;
403 // struct uci_section *s;
404 const char cfg_name[] = "wireless";
405 int max_radio_num = 0;
406 BOOL parsing_radio = FALSE;
developer4c2edbe2022-10-18 16:36:37 +0800407 int apCount[3] = {0};
developer402bf2a2022-10-04 15:20:18 +0800408
409 wifi_getMaxRadioNumber(&max_radio_num);
410 fprintf(stderr, "max radio number: %d\n", max_radio_num);
411 if (uci_load(uci_ctx, cfg_name, &uci_pkg) != UCI_OK) {
412 uci_free_context(uci_ctx);
413 fprintf(stderr, "%s: load uci failed.\n", __func__);
414 return RETURN_ERR;
415 }
416
417 uci_foreach_element(&uci_pkg->sections, e) {
418
419 struct uci_section *s = uci_to_section(e);
420 struct uci_element *option = NULL;
421 wifi_radio_param radio_param = {0};
422 wifi_ap_param ap_param = {0};
developer4c2edbe2022-10-18 16:36:37 +0800423 int phyId = 0;
developer402bf2a2022-10-04 15:20:18 +0800424 radio_param.radio_index = -1;
425 ap_param.ap_index = -1;
426
427 if (strcmp(s->type, "wifi-device") == 0) {
developer4c2edbe2022-10-18 16:36:37 +0800428 sscanf(s->e.name, "radio%d", &phyId);
429 radio_param.radio_index = phy_index_to_radio(phyId);
developer402bf2a2022-10-04 15:20:18 +0800430 parsing_radio = TRUE;
431 fprintf(stderr, "\n----- Start parsing radio %d config. -----\n", radio_param.radio_index);
432 } else if (strcmp(s->type, "wifi-iface") == 0) {
developer402bf2a2022-10-04 15:20:18 +0800433 parsing_radio = FALSE;
developer402bf2a2022-10-04 15:20:18 +0800434 }
435
436 uci_foreach_element(&s->options, option) {
437
438 struct uci_option *op = uci_to_option(option);
439 if (parsing_radio == TRUE) {
440 // transform the type from input string and store the value in radio_param.
441 if (strcmp(op->e.name, "channel") == 0)
442 set_channel(&radio_param, op->v.string);
443 else if (strcmp(op->e.name, "hwmode") == 0)
444 set_hwmode(&radio_param, op->v.string);
445 else if (strcmp(op->e.name, "htmode") == 0)
446 set_htmode(&radio_param, op->v.string);
447 else if (strcmp(op->e.name, "disabled") == 0)
448 set_disable(&radio_param, op->v.string);
449 else if (strcmp(op->e.name, "band") == 0)
450 set_band(&radio_param, op->v.string);
451 else if (strcmp(op->e.name, "country") == 0)
452 set_country(&radio_param, op->v.string);
453 else if (strcmp(op->e.name, "noscan") == 0)
developer54afa2c2022-10-18 17:44:13 +0800454 set_noscan(&radio_param, op->v.string);
developer402bf2a2022-10-04 15:20:18 +0800455 else
456 fprintf(stderr, "[%s %s not set!]\n", op->e.name, op->v.string);
457 } else {
458 // parsing iface
developer4c2edbe2022-10-18 16:36:37 +0800459 if (strcmp(op->e.name, "device") == 0){
developer402bf2a2022-10-04 15:20:18 +0800460 set_radionum(&ap_param, op->v.string);
developer4c2edbe2022-10-18 16:36:37 +0800461 if (ap_param.radio_index != -1){
462 ap_param.ap_index = ap_param.radio_index + apCount[ap_param.radio_index]*max_radio_num;
463 fprintf(stderr, "\n----- Start parsing ap %d config. -----\n", ap_param.ap_index);
464 apCount[ap_param.radio_index] ++ ;
465 }
466 }else if (strcmp(op->e.name, "ssid") == 0){
developer402bf2a2022-10-04 15:20:18 +0800467 set_ssid(&ap_param, op->v.string);
developer4c2edbe2022-10-18 16:36:37 +0800468 }else if (strcmp(op->e.name, "encryption") == 0){
developer402bf2a2022-10-04 15:20:18 +0800469 set_encryption(&ap_param, op->v.string);
developer4c2edbe2022-10-18 16:36:37 +0800470 }else if (strcmp(op->e.name, "key") == 0){
developer402bf2a2022-10-04 15:20:18 +0800471 set_key(&ap_param, op->v.string);
developer4c2edbe2022-10-18 16:36:37 +0800472 }else{
developer402bf2a2022-10-04 15:20:18 +0800473 fprintf(stderr, "[%s %s not set!]\n", op->e.name, op->v.string);
developer4c2edbe2022-10-18 16:36:37 +0800474 }
developer402bf2a2022-10-04 15:20:18 +0800475 }
476 }
477 if (parsing_radio == TRUE)
478 set_radio_param(radio_param);
479 else
480 set_ap_param(ap_param);
481 }
482
483 uci_unload(uci_ctx, uci_pkg);
484 uci_free_context(uci_ctx);
485 return RETURN_OK;
486}
487
488int main(int argc, char **argv)
489{
490 if (argc != 2 || strcmp(argv[1], "reload") != 0) {
491 fprintf(stderr, "Usage: wifi reload.\nThis tool is only for RDKB MSP/SQC test.\n");
492 return -1;
493 }
494 apply_uci_config();
495 return 0;
496}