blob: 51faf9812d4442b86179226a9332cb2f3486c7ab [file] [log] [blame]
developer91f80742022-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
developer8d8d6302022-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
developer91f80742022-10-04 15:20:18 +080062void set_channel(wifi_radio_param *radio_param, char *channel)
63{
developer63d72772022-10-07 09:42:31 +080064 if (strcmp(channel, "auto") == 0) {
65 radio_param->auto_channel = TRUE;
66 radio_param->channel = 0;
67 } else {
developer91f80742022-10-04 15:20:18 +080068 radio_param->auto_channel = FALSE;
developer63d72772022-10-07 09:42:31 +080069 radio_param->channel = strtol(channel, NULL, 10);
developer91f80742022-10-04 15:20:18 +080070 }
developer63d72772022-10-07 09:42:31 +080071 return;
developer91f80742022-10-04 15:20:18 +080072}
73
developer52c6ca22022-10-06 17:16:43 +080074void set_country(wifi_radio_param *radio_param, char *country)
developer91f80742022-10-04 15:20:18 +080075{
76 strcpy(radio_param->country, country);
77}
78
developer52c6ca22022-10-06 17:16:43 +080079void set_band(wifi_radio_param *radio_param, char *band)
developer91f80742022-10-04 15:20:18 +080080{
81 strcpy(radio_param->band, band);
82}
83
developer6feac682022-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
developer91f80742022-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;
developer8d8d6302022-10-18 16:36:37 +0800152 int phyId = 0;
developer91f80742022-10-04 15:20:18 +0800153
154 while (*ptr) {
155 if (isdigit(*ptr)) {
156 radio_num = strtoul(ptr, NULL, 10);
developer8d8d6302022-10-18 16:36:37 +0800157 phyId = phy_index_to_radio(radio_num);
158 ap_param->radio_index = phyId;
developer91f80742022-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{
developerff378f22022-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;
developer91f80742022-10-04 15:20:18 +0800191 }
192
developerff378f22022-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;
developer91f80742022-10-04 15:20:18 +0800199 }
developerff378f22022-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;
developer91f80742022-10-04 15:20:18 +0800215 }
developerff378f22022-10-13 13:33:57 +0800216
developer91f80742022-10-04 15:20:18 +0800217}
218
219void set_key(wifi_ap_param *ap_param, char *key)
220{
developerff378f22022-10-13 13:33:57 +0800221 strncpy(ap_param->security.u.key.key, key, 64);
developer91f80742022-10-04 15:20:18 +0800222}
223
developerf7e50b02022-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
developer91f80742022-10-04 15:20:18 +0800243void set_radio_param(wifi_radio_param radio_parameter)
244{
245 BOOL enable;
246 BOOL current;
developer91f80742022-10-04 15:20:18 +0800247 int ret = 0;
248 struct params param;
developer63d72772022-10-07 09:42:31 +0800249 wifi_radio_operationParam_t operationParam = {0};
250
developer8d8d6302022-10-18 16:36:37 +0800251 if(radio_parameter.radio_index == -1)
252 return;
253
developer63d72772022-10-07 09:42:31 +0800254 if (radio_parameter.disabled == TRUE) {
255 wifi_setRadioEnable(radio_parameter.radio_index, FALSE);
256 return;
257 }
developer91f80742022-10-04 15:20:18 +0800258
259 fprintf(stderr, "Start setting radio\n");
developerbf812932022-10-17 17:37:29 +0800260
261 wifi_setRadioEnable(radio_parameter.radio_index, TRUE);
262 sleep(1);
263
264 // Get current radio setting
developer63d72772022-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");
developerbf812932022-10-17 17:37:29 +0800268 operationParam.enable = TRUE;
developer91f80742022-10-04 15:20:18 +0800269
developer91f80742022-10-04 15:20:18 +0800270 // Channel
developer63d72772022-10-07 09:42:31 +0800271 operationParam.autoChannelEnabled = radio_parameter.auto_channel;
272 operationParam.channel = radio_parameter.channel;
developer91f80742022-10-04 15:20:18 +0800273
developer25e07812022-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 }
developer91f80742022-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
developer63d72772022-10-07 09:42:31 +0800299 unsigned int mode = 0; // enum wifi_ieee80211Variant_t
developer91f80742022-10-04 15:20:18 +0800300 if (strcmp(radio_parameter.band, "2g") == 0) {
developer63d72772022-10-07 09:42:31 +0800301 mode |= WIFI_80211_VARIANT_B | WIFI_80211_VARIANT_G;
developer91f80742022-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
developer63d72772022-10-07 09:42:31 +0800305 if (strstr(radio_parameter.htmode, "HE") != NULL)
306 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AX;
developer91f80742022-10-04 15:20:18 +0800307
developer63d72772022-10-07 09:42:31 +0800308 } else if (strcmp(radio_parameter.band, "5g") == 0) {
309 mode |= WIFI_80211_VARIANT_A;
developer91f80742022-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");
developer63d72772022-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;
developer8d8d6302022-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 }
developer91f80742022-10-04 15:20:18 +0800318
319 if (strstr(radio_parameter.htmode, "VHT") != NULL)
developer63d72772022-10-07 09:42:31 +0800320 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC;
developer91f80742022-10-04 15:20:18 +0800321 else if (strstr(radio_parameter.htmode, "HT") != NULL && strstr(radio_parameter.htmode, "NO") == NULL)
developer63d72772022-10-07 09:42:31 +0800322 mode |= WIFI_80211_VARIANT_N;
developer91f80742022-10-04 15:20:18 +0800323
developer63d72772022-10-07 09:42:31 +0800324 operationParam.variant = mode;
developer91f80742022-10-04 15:20:18 +0800325
developer6feac682022-10-18 17:44:13 +0800326 // noscan
developerff42a302022-10-19 17:40:23 +0800327 fprintf(stderr, "Set noscan: %s \n", radio_parameter.noscan);
328 if(strlen(radio_parameter.noscan)){
329 ret = wifi_setNoscan(radio_parameter.radio_index, radio_parameter.noscan);
330 if (ret != RETURN_OK)
331 fprintf(stderr, "[Set noscan failed!!!]\n");
332 }
developer6feac682022-10-18 17:44:13 +0800333 ret = 0;
334
developer63d72772022-10-07 09:42:31 +0800335 // apply setting
336 ret = wifi_setRadioOperatingParameters(radio_parameter.radio_index, &operationParam);
developer91f80742022-10-04 15:20:18 +0800337 if (ret != RETURN_OK)
developer63d72772022-10-07 09:42:31 +0800338 fprintf(stderr, "[Apply setting failed!!!]\n");
developer91f80742022-10-04 15:20:18 +0800339
340}
341
developerff42a302022-10-19 17:40:23 +0800342void set_ap_param(wifi_ap_param ap_param , wifi_vap_info_map_t *map)
developer91f80742022-10-04 15:20:18 +0800343{
344 int ret = 0;
developer63d72772022-10-07 09:42:31 +0800345 int vap_index_in_map = 0;
346 wifi_vap_info_t vap_info = {0};
developerbf812932022-10-17 17:37:29 +0800347 BOOL radio_enable = FALSE;
348
developerff42a302022-10-19 17:40:23 +0800349 if(ap_param.radio_index == -1)
350 return;
351
developerbf812932022-10-17 17:37:29 +0800352 wifi_getRadioEnable(ap_param.radio_index, &radio_enable);
353 if (radio_enable == FALSE)
354 return;
developer63d72772022-10-07 09:42:31 +0800355
developerff42a302022-10-19 17:40:23 +0800356
357 // get the index of the map
358 for (int i = 0; i < map->num_vaps; i++) {
359 if (map->vap_array[i].vap_index == ap_param.ap_index) {
360 vap_index_in_map = i;
361 break;
developer63d72772022-10-07 09:42:31 +0800362 }
363 }
364
developerff42a302022-10-19 17:40:23 +0800365
developerf7e50b02022-10-14 10:07:58 +0800366 fprintf(stderr, "Start setting ap\n");
367
developerff42a302022-10-19 17:40:23 +0800368 vap_info = map->vap_array[vap_index_in_map];
developerf7e50b02022-10-14 10:07:58 +0800369 vap_info.u.bss_info.enabled = TRUE;
370 if (set_ap_bssid(vap_info.radio_index, vap_index_in_map, &vap_info.u.bss_info.bssid) == -1) {
371 fprintf(stderr, "Get mac address failed.\n");
372 return -1;
373 }
developer91f80742022-10-04 15:20:18 +0800374
developer91f80742022-10-04 15:20:18 +0800375 // SSID
developer63d72772022-10-07 09:42:31 +0800376 strncpy(vap_info.u.bss_info.ssid, ap_param.ssid, 33);
377 vap_info.u.bss_info.ssid[32] = '\0';
developer91f80742022-10-04 15:20:18 +0800378
developerff378f22022-10-13 13:33:57 +0800379 vap_info.u.bss_info.security.mode = ap_param.security.mode;
380 vap_info.u.bss_info.security.encr = ap_param.security.encr;
381 vap_info.u.bss_info.security.mfp = ap_param.security.mfp;
382 vap_info.u.bss_info.security.u.key.type = ap_param.security.u.key.type;
383 strncpy(vap_info.u.bss_info.security.u.key.key, ap_param.security.u.key.key, 64);
developer8d8d6302022-10-18 16:36:37 +0800384
385
developer63d72772022-10-07 09:42:31 +0800386 // Replace the setting with uci config
developerff42a302022-10-19 17:40:23 +0800387 map->vap_array[vap_index_in_map] = vap_info;
developer91f80742022-10-04 15:20:18 +0800388}
389
390int apply_uci_config ()
391{
392 struct uci_context *uci_ctx = uci_alloc_context();
393 struct uci_package *uci_pkg = NULL;
394 struct uci_element *e;
395 // struct uci_section *s;
396 const char cfg_name[] = "wireless";
397 int max_radio_num = 0;
398 BOOL parsing_radio = FALSE;
developer8d8d6302022-10-18 16:36:37 +0800399 int apCount[3] = {0};
developerff42a302022-10-19 17:40:23 +0800400 wifi_vap_info_map_t vap_map[3] = {0};
401 int ret = 0;
402 int i = 0;
developer91f80742022-10-04 15:20:18 +0800403
404 wifi_getMaxRadioNumber(&max_radio_num);
405 fprintf(stderr, "max radio number: %d\n", max_radio_num);
developerff42a302022-10-19 17:40:23 +0800406 for (i = 0; i < max_radio_num ;i++ ){
407 ret = wifi_getRadioVapInfoMap(i, &vap_map[i]);
408 if (ret != RETURN_OK) { // if failed, we set assume this vap as the first vap.
409 fprintf(stderr, "[Get vap map failed!!!]\n");
410 vap_map[i].num_vaps = MAX_NUM_VAP_PER_RADIO;
411 }
412 }
developer91f80742022-10-04 15:20:18 +0800413 if (uci_load(uci_ctx, cfg_name, &uci_pkg) != UCI_OK) {
414 uci_free_context(uci_ctx);
415 fprintf(stderr, "%s: load uci failed.\n", __func__);
416 return RETURN_ERR;
417 }
418
419 uci_foreach_element(&uci_pkg->sections, e) {
420
421 struct uci_section *s = uci_to_section(e);
422 struct uci_element *option = NULL;
423 wifi_radio_param radio_param = {0};
424 wifi_ap_param ap_param = {0};
developer8d8d6302022-10-18 16:36:37 +0800425 int phyId = 0;
developer91f80742022-10-04 15:20:18 +0800426 radio_param.radio_index = -1;
427 ap_param.ap_index = -1;
428
429 if (strcmp(s->type, "wifi-device") == 0) {
developer8d8d6302022-10-18 16:36:37 +0800430 sscanf(s->e.name, "radio%d", &phyId);
431 radio_param.radio_index = phy_index_to_radio(phyId);
developer91f80742022-10-04 15:20:18 +0800432 parsing_radio = TRUE;
433 fprintf(stderr, "\n----- Start parsing radio %d config. -----\n", radio_param.radio_index);
434 } else if (strcmp(s->type, "wifi-iface") == 0) {
developer91f80742022-10-04 15:20:18 +0800435 parsing_radio = FALSE;
developer91f80742022-10-04 15:20:18 +0800436 }
437
438 uci_foreach_element(&s->options, option) {
439
440 struct uci_option *op = uci_to_option(option);
441 if (parsing_radio == TRUE) {
442 // transform the type from input string and store the value in radio_param.
443 if (strcmp(op->e.name, "channel") == 0)
444 set_channel(&radio_param, op->v.string);
445 else if (strcmp(op->e.name, "hwmode") == 0)
446 set_hwmode(&radio_param, op->v.string);
447 else if (strcmp(op->e.name, "htmode") == 0)
448 set_htmode(&radio_param, op->v.string);
449 else if (strcmp(op->e.name, "disabled") == 0)
450 set_disable(&radio_param, op->v.string);
451 else if (strcmp(op->e.name, "band") == 0)
452 set_band(&radio_param, op->v.string);
453 else if (strcmp(op->e.name, "country") == 0)
454 set_country(&radio_param, op->v.string);
455 else if (strcmp(op->e.name, "noscan") == 0)
developer6feac682022-10-18 17:44:13 +0800456 set_noscan(&radio_param, op->v.string);
developer91f80742022-10-04 15:20:18 +0800457 else
458 fprintf(stderr, "[%s %s not set!]\n", op->e.name, op->v.string);
459 } else {
460 // parsing iface
developer8d8d6302022-10-18 16:36:37 +0800461 if (strcmp(op->e.name, "device") == 0){
developer91f80742022-10-04 15:20:18 +0800462 set_radionum(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800463 if (ap_param.radio_index != -1){
464 ap_param.ap_index = ap_param.radio_index + apCount[ap_param.radio_index]*max_radio_num;
465 fprintf(stderr, "\n----- Start parsing ap %d config. -----\n", ap_param.ap_index);
466 apCount[ap_param.radio_index] ++ ;
467 }
468 }else if (strcmp(op->e.name, "ssid") == 0){
developer91f80742022-10-04 15:20:18 +0800469 set_ssid(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800470 }else if (strcmp(op->e.name, "encryption") == 0){
developer91f80742022-10-04 15:20:18 +0800471 set_encryption(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800472 }else if (strcmp(op->e.name, "key") == 0){
developer91f80742022-10-04 15:20:18 +0800473 set_key(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800474 }else{
developer91f80742022-10-04 15:20:18 +0800475 fprintf(stderr, "[%s %s not set!]\n", op->e.name, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800476 }
developer91f80742022-10-04 15:20:18 +0800477 }
478 }
479 if (parsing_radio == TRUE)
480 set_radio_param(radio_param);
481 else
developerff42a302022-10-19 17:40:23 +0800482 set_ap_param(ap_param, &vap_map[ap_param.radio_index]);
developer91f80742022-10-04 15:20:18 +0800483 }
484
developerff42a302022-10-19 17:40:23 +0800485 for (i = 0; i < max_radio_num ;i++ ){
486 ret = wifi_createVAP(i, &vap_map[i]);
487 if (ret != RETURN_OK)
488 fprintf(stderr, "[Apply vap setting failed!!!]\n");
489 }
490
developer91f80742022-10-04 15:20:18 +0800491 uci_unload(uci_ctx, uci_pkg);
492 uci_free_context(uci_ctx);
493 return RETURN_OK;
494}
495
496int main(int argc, char **argv)
497{
498 if (argc != 2 || strcmp(argv[1], "reload") != 0) {
499 fprintf(stderr, "Usage: wifi reload.\nThis tool is only for RDKB MSP/SQC test.\n");
500 return -1;
501 }
502 apply_uci_config();
503 return 0;
504}