blob: 9ac42a2af134a66e217c0d171748e7e7ca861078 [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
developerbf812932022-10-17 17:37:29 +0800261 // Get current radio setting
developer63d72772022-10-07 09:42:31 +0800262 ret = wifi_getRadioOperatingParameters(radio_parameter.radio_index, &operationParam);
263 if (ret != RETURN_OK)
264 fprintf(stderr, "[Get OperatingParameters failed!!!]\n");
developerbf812932022-10-17 17:37:29 +0800265 operationParam.enable = TRUE;
developer91f80742022-10-04 15:20:18 +0800266
developer91f80742022-10-04 15:20:18 +0800267 // Channel
developer63d72772022-10-07 09:42:31 +0800268 operationParam.autoChannelEnabled = radio_parameter.auto_channel;
269 operationParam.channel = radio_parameter.channel;
developer91f80742022-10-04 15:20:18 +0800270
developer25e07812022-10-13 15:27:02 +0800271 //bandwidth
272 if (radio_parameter.bandwidth == 20){
273 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_20MHZ;
274 }else if (radio_parameter.bandwidth == 40){
275 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_40MHZ;
276 }else if (radio_parameter.bandwidth == 80){
277 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_80MHZ;
278 }else if (radio_parameter.bandwidth == 160){
279 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_160MHZ;
280 }
developer91f80742022-10-04 15:20:18 +0800281
282 // htmode
developer63d72772022-10-07 09:42:31 +0800283 unsigned int mode = 0; // enum wifi_ieee80211Variant_t
developer91f80742022-10-04 15:20:18 +0800284 if (strcmp(radio_parameter.band, "2g") == 0) {
developer63d72772022-10-07 09:42:31 +0800285 mode |= WIFI_80211_VARIANT_B | WIFI_80211_VARIANT_G;
developer91f80742022-10-04 15:20:18 +0800286 if (strcmp(radio_parameter.htmode, "NOHT") == 0 || strcmp(radio_parameter.htmode, "NONE") == 0)
287 strcpy(radio_parameter.htmode, "11G");
288
developer63d72772022-10-07 09:42:31 +0800289 if (strstr(radio_parameter.htmode, "HE") != NULL)
290 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AX;
developer91f80742022-10-04 15:20:18 +0800291
developer63d72772022-10-07 09:42:31 +0800292 } else if (strcmp(radio_parameter.band, "5g") == 0) {
293 mode |= WIFI_80211_VARIANT_A;
developer91f80742022-10-04 15:20:18 +0800294 if (strcmp(radio_parameter.htmode, "NOHT") == 0 || strcmp(radio_parameter.htmode, "NONE") == 0)
295 strcpy(radio_parameter.htmode, "11A");
developer63d72772022-10-07 09:42:31 +0800296
297 if (strstr(radio_parameter.htmode, "HE") != NULL)
298 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC | WIFI_80211_VARIANT_AX;
developer8d8d6302022-10-18 16:36:37 +0800299 }else if (strcmp(radio_parameter.band, "6g") == 0) {
300 mode |= WIFI_80211_VARIANT_A | WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC | WIFI_80211_VARIANT_AX;;
301 }
developer91f80742022-10-04 15:20:18 +0800302
303 if (strstr(radio_parameter.htmode, "VHT") != NULL)
developer63d72772022-10-07 09:42:31 +0800304 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC;
developer91f80742022-10-04 15:20:18 +0800305 else if (strstr(radio_parameter.htmode, "HT") != NULL && strstr(radio_parameter.htmode, "NO") == NULL)
developer63d72772022-10-07 09:42:31 +0800306 mode |= WIFI_80211_VARIANT_N;
developer91f80742022-10-04 15:20:18 +0800307
developer63d72772022-10-07 09:42:31 +0800308 operationParam.variant = mode;
developer91f80742022-10-04 15:20:18 +0800309
developer63d72772022-10-07 09:42:31 +0800310 // apply setting
311 ret = wifi_setRadioOperatingParameters(radio_parameter.radio_index, &operationParam);
developer91f80742022-10-04 15:20:18 +0800312 if (ret != RETURN_OK)
developer63d72772022-10-07 09:42:31 +0800313 fprintf(stderr, "[Apply setting failed!!!]\n");
developer91f80742022-10-04 15:20:18 +0800314
developerbb58a932022-11-07 16:58:17 +0800315 // Country
316 fprintf(stderr, "Set Country: %s\n", radio_parameter.country);
317 ret = wifi_setRadioCountryCode(radio_parameter.radio_index, radio_parameter.country);
318 if (ret != RETURN_OK)
319 fprintf(stderr, "[Set Country failed!!!]\n");
320 ret = 0;
321
322 // hwmode
323 fprintf(stderr, "Set hwmode: %s\n", radio_parameter.hwmode);
324 ret = wifi_setRadioHwMode(radio_parameter.radio_index, radio_parameter.hwmode);
325 if (ret != RETURN_OK)
326 fprintf(stderr, "[Set hwmode failed!!!]\n");
327 ret = 0;
328
329 // noscan
330 fprintf(stderr, "Set noscan: %s \n", radio_parameter.noscan);
331 if(strlen(radio_parameter.noscan)){
332 ret = wifi_setNoscan(radio_parameter.radio_index, radio_parameter.noscan);
333 if (ret != RETURN_OK)
334 fprintf(stderr, "[Set noscan failed!!!]\n");
335 }
336 ret = 0;
337
developer91f80742022-10-04 15:20:18 +0800338}
339
developerff42a302022-10-19 17:40:23 +0800340void set_ap_param(wifi_ap_param ap_param , wifi_vap_info_map_t *map)
developer91f80742022-10-04 15:20:18 +0800341{
342 int ret = 0;
developer63d72772022-10-07 09:42:31 +0800343 int vap_index_in_map = 0;
344 wifi_vap_info_t vap_info = {0};
developerbf812932022-10-17 17:37:29 +0800345 BOOL radio_enable = FALSE;
346
developerff42a302022-10-19 17:40:23 +0800347 if(ap_param.radio_index == -1)
348 return;
349
developerbf812932022-10-17 17:37:29 +0800350 wifi_getRadioEnable(ap_param.radio_index, &radio_enable);
351 if (radio_enable == FALSE)
352 return;
developer63d72772022-10-07 09:42:31 +0800353
developerff42a302022-10-19 17:40:23 +0800354
355 // get the index of the map
356 for (int i = 0; i < map->num_vaps; i++) {
357 if (map->vap_array[i].vap_index == ap_param.ap_index) {
358 vap_index_in_map = i;
359 break;
developer63d72772022-10-07 09:42:31 +0800360 }
361 }
362
developerff42a302022-10-19 17:40:23 +0800363
developerf7e50b02022-10-14 10:07:58 +0800364 fprintf(stderr, "Start setting ap\n");
365
developerff42a302022-10-19 17:40:23 +0800366 vap_info = map->vap_array[vap_index_in_map];
developerf7e50b02022-10-14 10:07:58 +0800367 vap_info.u.bss_info.enabled = TRUE;
368 if (set_ap_bssid(vap_info.radio_index, vap_index_in_map, &vap_info.u.bss_info.bssid) == -1) {
369 fprintf(stderr, "Get mac address failed.\n");
370 return -1;
371 }
developer91f80742022-10-04 15:20:18 +0800372
developer91f80742022-10-04 15:20:18 +0800373 // SSID
developer63d72772022-10-07 09:42:31 +0800374 strncpy(vap_info.u.bss_info.ssid, ap_param.ssid, 33);
375 vap_info.u.bss_info.ssid[32] = '\0';
developer91f80742022-10-04 15:20:18 +0800376
developerff378f22022-10-13 13:33:57 +0800377 vap_info.u.bss_info.security.mode = ap_param.security.mode;
378 vap_info.u.bss_info.security.encr = ap_param.security.encr;
379 vap_info.u.bss_info.security.mfp = ap_param.security.mfp;
380 vap_info.u.bss_info.security.u.key.type = ap_param.security.u.key.type;
381 strncpy(vap_info.u.bss_info.security.u.key.key, ap_param.security.u.key.key, 64);
developer8d8d6302022-10-18 16:36:37 +0800382
383
developer63d72772022-10-07 09:42:31 +0800384 // Replace the setting with uci config
developerff42a302022-10-19 17:40:23 +0800385 map->vap_array[vap_index_in_map] = vap_info;
developer91f80742022-10-04 15:20:18 +0800386}
387
388int apply_uci_config ()
389{
390 struct uci_context *uci_ctx = uci_alloc_context();
391 struct uci_package *uci_pkg = NULL;
392 struct uci_element *e;
393 // struct uci_section *s;
394 const char cfg_name[] = "wireless";
395 int max_radio_num = 0;
396 BOOL parsing_radio = FALSE;
developer8d8d6302022-10-18 16:36:37 +0800397 int apCount[3] = {0};
developerff42a302022-10-19 17:40:23 +0800398 wifi_vap_info_map_t vap_map[3] = {0};
399 int ret = 0;
400 int i = 0;
developer91f80742022-10-04 15:20:18 +0800401
402 wifi_getMaxRadioNumber(&max_radio_num);
403 fprintf(stderr, "max radio number: %d\n", max_radio_num);
developerff42a302022-10-19 17:40:23 +0800404 for (i = 0; i < max_radio_num ;i++ ){
405 ret = wifi_getRadioVapInfoMap(i, &vap_map[i]);
406 if (ret != RETURN_OK) { // if failed, we set assume this vap as the first vap.
407 fprintf(stderr, "[Get vap map failed!!!]\n");
408 vap_map[i].num_vaps = MAX_NUM_VAP_PER_RADIO;
409 }
410 }
developer91f80742022-10-04 15:20:18 +0800411 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};
developer8d8d6302022-10-18 16:36:37 +0800423 int phyId = 0;
developer91f80742022-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) {
developer8d8d6302022-10-18 16:36:37 +0800428 sscanf(s->e.name, "radio%d", &phyId);
429 radio_param.radio_index = phy_index_to_radio(phyId);
developer91f80742022-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) {
developer91f80742022-10-04 15:20:18 +0800433 parsing_radio = FALSE;
developer91f80742022-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)
developer6feac682022-10-18 17:44:13 +0800454 set_noscan(&radio_param, op->v.string);
developer91f80742022-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
developer8d8d6302022-10-18 16:36:37 +0800459 if (strcmp(op->e.name, "device") == 0){
developer91f80742022-10-04 15:20:18 +0800460 set_radionum(&ap_param, op->v.string);
developer8d8d6302022-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){
developer91f80742022-10-04 15:20:18 +0800467 set_ssid(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800468 }else if (strcmp(op->e.name, "encryption") == 0){
developer91f80742022-10-04 15:20:18 +0800469 set_encryption(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800470 }else if (strcmp(op->e.name, "key") == 0){
developer91f80742022-10-04 15:20:18 +0800471 set_key(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800472 }else{
developer91f80742022-10-04 15:20:18 +0800473 fprintf(stderr, "[%s %s not set!]\n", op->e.name, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800474 }
developer91f80742022-10-04 15:20:18 +0800475 }
476 }
477 if (parsing_radio == TRUE)
478 set_radio_param(radio_param);
479 else
developerff42a302022-10-19 17:40:23 +0800480 set_ap_param(ap_param, &vap_map[ap_param.radio_index]);
developer91f80742022-10-04 15:20:18 +0800481 }
482
developerff42a302022-10-19 17:40:23 +0800483 for (i = 0; i < max_radio_num ;i++ ){
484 ret = wifi_createVAP(i, &vap_map[i]);
485 if (ret != RETURN_OK)
486 fprintf(stderr, "[Apply vap setting failed!!!]\n");
487 }
488
developer91f80742022-10-04 15:20:18 +0800489 uci_unload(uci_ctx, uci_pkg);
490 uci_free_context(uci_ctx);
491 return RETURN_OK;
492}
493
494int main(int argc, char **argv)
495{
496 if (argc != 2 || strcmp(argv[1], "reload") != 0) {
497 fprintf(stderr, "Usage: wifi reload.\nThis tool is only for RDKB MSP/SQC test.\n");
498 return -1;
499 }
500 apply_uci_config();
501 return 0;
502}