blob: 6151ba617fd353c3e42fafd3b2680220f945e0a0 [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 }
258 operationParam.enable = TRUE;
developer91f80742022-10-04 15:20:18 +0800259
260 fprintf(stderr, "Start setting radio\n");
developer63d72772022-10-07 09:42:31 +0800261 ret = wifi_getRadioOperatingParameters(radio_parameter.radio_index, &operationParam);
262 if (ret != RETURN_OK)
263 fprintf(stderr, "[Get OperatingParameters failed!!!]\n");
developer91f80742022-10-04 15:20:18 +0800264
developer91f80742022-10-04 15:20:18 +0800265 // Channel
developer63d72772022-10-07 09:42:31 +0800266 operationParam.autoChannelEnabled = radio_parameter.auto_channel;
267 operationParam.channel = radio_parameter.channel;
developer91f80742022-10-04 15:20:18 +0800268
developer25e07812022-10-13 15:27:02 +0800269 //bandwidth
270 if (radio_parameter.bandwidth == 20){
271 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_20MHZ;
272 }else if (radio_parameter.bandwidth == 40){
273 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_40MHZ;
274 }else if (radio_parameter.bandwidth == 80){
275 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_80MHZ;
276 }else if (radio_parameter.bandwidth == 160){
277 operationParam.channelWidth = WIFI_CHANNELBANDWIDTH_160MHZ;
278 }
developer91f80742022-10-04 15:20:18 +0800279 // Country
280 fprintf(stderr, "Set Country: %s\n", radio_parameter.country);
281 ret = wifi_setRadioCountryCode(radio_parameter.radio_index, radio_parameter.country);
282 if (ret != RETURN_OK)
283 fprintf(stderr, "[Set Country failed!!!]\n");
284 ret = 0;
285
286 // hwmode
287 fprintf(stderr, "Set hwmode: %s\n", radio_parameter.hwmode);
288 ret = wifi_setRadioHwMode(radio_parameter.radio_index, radio_parameter.hwmode);
289 if (ret != RETURN_OK)
290 fprintf(stderr, "[Set hwmode failed!!!]\n");
291 ret = 0;
292
293 // htmode
developer63d72772022-10-07 09:42:31 +0800294 unsigned int mode = 0; // enum wifi_ieee80211Variant_t
developer91f80742022-10-04 15:20:18 +0800295 if (strcmp(radio_parameter.band, "2g") == 0) {
developer63d72772022-10-07 09:42:31 +0800296 mode |= WIFI_80211_VARIANT_B | WIFI_80211_VARIANT_G;
developer91f80742022-10-04 15:20:18 +0800297 if (strcmp(radio_parameter.htmode, "NOHT") == 0 || strcmp(radio_parameter.htmode, "NONE") == 0)
298 strcpy(radio_parameter.htmode, "11G");
299
developer63d72772022-10-07 09:42:31 +0800300 if (strstr(radio_parameter.htmode, "HE") != NULL)
301 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AX;
developer91f80742022-10-04 15:20:18 +0800302
developer63d72772022-10-07 09:42:31 +0800303 } else if (strcmp(radio_parameter.band, "5g") == 0) {
304 mode |= WIFI_80211_VARIANT_A;
developer91f80742022-10-04 15:20:18 +0800305 if (strcmp(radio_parameter.htmode, "NOHT") == 0 || strcmp(radio_parameter.htmode, "NONE") == 0)
306 strcpy(radio_parameter.htmode, "11A");
developer63d72772022-10-07 09:42:31 +0800307
308 if (strstr(radio_parameter.htmode, "HE") != NULL)
309 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC | WIFI_80211_VARIANT_AX;
developer8d8d6302022-10-18 16:36:37 +0800310 }else if (strcmp(radio_parameter.band, "6g") == 0) {
311 mode |= WIFI_80211_VARIANT_A | WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC | WIFI_80211_VARIANT_AX;;
312 }
developer91f80742022-10-04 15:20:18 +0800313
314 if (strstr(radio_parameter.htmode, "VHT") != NULL)
developer63d72772022-10-07 09:42:31 +0800315 mode |= WIFI_80211_VARIANT_N | WIFI_80211_VARIANT_AC;
developer91f80742022-10-04 15:20:18 +0800316 else if (strstr(radio_parameter.htmode, "HT") != NULL && strstr(radio_parameter.htmode, "NO") == NULL)
developer63d72772022-10-07 09:42:31 +0800317 mode |= WIFI_80211_VARIANT_N;
developer91f80742022-10-04 15:20:18 +0800318
developer63d72772022-10-07 09:42:31 +0800319 operationParam.variant = mode;
developer91f80742022-10-04 15:20:18 +0800320
developer6feac682022-10-18 17:44:13 +0800321 // noscan
322 fprintf(stderr, "Set noscan: %s\n", radio_parameter.noscan);
323 ret = wifi_setNoscan(radio_parameter.radio_index, radio_parameter.noscan);
324 if (ret != RETURN_OK)
325 fprintf(stderr, "[Set noscan failed!!!]\n");
326 ret = 0;
327
developer63d72772022-10-07 09:42:31 +0800328 // apply setting
329 ret = wifi_setRadioOperatingParameters(radio_parameter.radio_index, &operationParam);
developer91f80742022-10-04 15:20:18 +0800330 if (ret != RETURN_OK)
developer63d72772022-10-07 09:42:31 +0800331 fprintf(stderr, "[Apply setting failed!!!]\n");
developer91f80742022-10-04 15:20:18 +0800332
333}
334
335void set_ap_param(wifi_ap_param ap_param)
336{
337 int ret = 0;
developer63d72772022-10-07 09:42:31 +0800338 int vap_index_in_map = 0;
339 wifi_vap_info_t vap_info = {0};
340 wifi_vap_info_map_t vap_map = {0};
341
developer8d8d6302022-10-18 16:36:37 +0800342 if(ap_param.radio_index == -1)
343 return;
developer63d72772022-10-07 09:42:31 +0800344 ret = wifi_getRadioVapInfoMap(ap_param.radio_index, &vap_map);
345 if (ret != RETURN_OK) { // if failed, we set assume this vap as the first vap.
346 fprintf(stderr, "[Get vap map failed!!!]\n");
347 vap_map.num_vaps = MAX_NUM_VAP_PER_RADIO;
348 } else { // get the index of the map
349 for (int i = 0; i < vap_map.num_vaps; i++) {
350 if (vap_map.vap_array[i].vap_index == ap_param.ap_index) {
351 vap_index_in_map = i;
352 break;
353 }
354 }
355 }
356
developerf7e50b02022-10-14 10:07:58 +0800357 fprintf(stderr, "Start setting ap\n");
358
developer63d72772022-10-07 09:42:31 +0800359 vap_info = vap_map.vap_array[vap_index_in_map];
developerf7e50b02022-10-14 10:07:58 +0800360 vap_info.u.bss_info.enabled = TRUE;
361 if (set_ap_bssid(vap_info.radio_index, vap_index_in_map, &vap_info.u.bss_info.bssid) == -1) {
362 fprintf(stderr, "Get mac address failed.\n");
363 return -1;
364 }
developer91f80742022-10-04 15:20:18 +0800365
developer91f80742022-10-04 15:20:18 +0800366 // SSID
developer63d72772022-10-07 09:42:31 +0800367 strncpy(vap_info.u.bss_info.ssid, ap_param.ssid, 33);
368 vap_info.u.bss_info.ssid[32] = '\0';
developer91f80742022-10-04 15:20:18 +0800369
developerff378f22022-10-13 13:33:57 +0800370 vap_info.u.bss_info.security.mode = ap_param.security.mode;
371 vap_info.u.bss_info.security.encr = ap_param.security.encr;
372 vap_info.u.bss_info.security.mfp = ap_param.security.mfp;
373 vap_info.u.bss_info.security.u.key.type = ap_param.security.u.key.type;
374 strncpy(vap_info.u.bss_info.security.u.key.key, ap_param.security.u.key.key, 64);
developer8d8d6302022-10-18 16:36:37 +0800375
376
developer63d72772022-10-07 09:42:31 +0800377 // Replace the setting with uci config
378 vap_map.vap_array[vap_index_in_map] = vap_info;
379 ret = wifi_createVAP(ap_param.radio_index, &vap_map);
380 if (ret != RETURN_OK)
381 fprintf(stderr, "[Apply vap setting failed!!!]\n");
382
developer91f80742022-10-04 15:20:18 +0800383 // restart ap
384 wifi_setApEnable(ap_param.ap_index, FALSE);
385 wifi_setApEnable(ap_param.ap_index, TRUE);
386}
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};
developer91f80742022-10-04 15:20:18 +0800398
399 wifi_getMaxRadioNumber(&max_radio_num);
400 fprintf(stderr, "max radio number: %d\n", max_radio_num);
401 if (uci_load(uci_ctx, cfg_name, &uci_pkg) != UCI_OK) {
402 uci_free_context(uci_ctx);
403 fprintf(stderr, "%s: load uci failed.\n", __func__);
404 return RETURN_ERR;
405 }
406
407 uci_foreach_element(&uci_pkg->sections, e) {
408
409 struct uci_section *s = uci_to_section(e);
410 struct uci_element *option = NULL;
411 wifi_radio_param radio_param = {0};
412 wifi_ap_param ap_param = {0};
developer8d8d6302022-10-18 16:36:37 +0800413 int phyId = 0;
developer91f80742022-10-04 15:20:18 +0800414 radio_param.radio_index = -1;
415 ap_param.ap_index = -1;
416
417 if (strcmp(s->type, "wifi-device") == 0) {
developer8d8d6302022-10-18 16:36:37 +0800418 sscanf(s->e.name, "radio%d", &phyId);
419 radio_param.radio_index = phy_index_to_radio(phyId);
developer91f80742022-10-04 15:20:18 +0800420 parsing_radio = TRUE;
421 fprintf(stderr, "\n----- Start parsing radio %d config. -----\n", radio_param.radio_index);
422 } else if (strcmp(s->type, "wifi-iface") == 0) {
developer91f80742022-10-04 15:20:18 +0800423 parsing_radio = FALSE;
developer91f80742022-10-04 15:20:18 +0800424 }
425
426 uci_foreach_element(&s->options, option) {
427
428 struct uci_option *op = uci_to_option(option);
429 if (parsing_radio == TRUE) {
430 // transform the type from input string and store the value in radio_param.
431 if (strcmp(op->e.name, "channel") == 0)
432 set_channel(&radio_param, op->v.string);
433 else if (strcmp(op->e.name, "hwmode") == 0)
434 set_hwmode(&radio_param, op->v.string);
435 else if (strcmp(op->e.name, "htmode") == 0)
436 set_htmode(&radio_param, op->v.string);
437 else if (strcmp(op->e.name, "disabled") == 0)
438 set_disable(&radio_param, op->v.string);
439 else if (strcmp(op->e.name, "band") == 0)
440 set_band(&radio_param, op->v.string);
441 else if (strcmp(op->e.name, "country") == 0)
442 set_country(&radio_param, op->v.string);
443 else if (strcmp(op->e.name, "noscan") == 0)
developer6feac682022-10-18 17:44:13 +0800444 set_noscan(&radio_param, op->v.string);
developer91f80742022-10-04 15:20:18 +0800445 else
446 fprintf(stderr, "[%s %s not set!]\n", op->e.name, op->v.string);
447 } else {
448 // parsing iface
developer8d8d6302022-10-18 16:36:37 +0800449 if (strcmp(op->e.name, "device") == 0){
developer91f80742022-10-04 15:20:18 +0800450 set_radionum(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800451 if (ap_param.radio_index != -1){
452 ap_param.ap_index = ap_param.radio_index + apCount[ap_param.radio_index]*max_radio_num;
453 fprintf(stderr, "\n----- Start parsing ap %d config. -----\n", ap_param.ap_index);
454 apCount[ap_param.radio_index] ++ ;
455 }
456 }else if (strcmp(op->e.name, "ssid") == 0){
developer91f80742022-10-04 15:20:18 +0800457 set_ssid(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800458 }else if (strcmp(op->e.name, "encryption") == 0){
developer91f80742022-10-04 15:20:18 +0800459 set_encryption(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800460 }else if (strcmp(op->e.name, "key") == 0){
developer91f80742022-10-04 15:20:18 +0800461 set_key(&ap_param, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800462 }else{
developer91f80742022-10-04 15:20:18 +0800463 fprintf(stderr, "[%s %s not set!]\n", op->e.name, op->v.string);
developer8d8d6302022-10-18 16:36:37 +0800464 }
developer91f80742022-10-04 15:20:18 +0800465 }
466 }
467 if (parsing_radio == TRUE)
468 set_radio_param(radio_param);
469 else
470 set_ap_param(ap_param);
471 }
472
473 uci_unload(uci_ctx, uci_pkg);
474 uci_free_context(uci_ctx);
475 return RETURN_OK;
476}
477
478int main(int argc, char **argv)
479{
480 if (argc != 2 || strcmp(argv[1], "reload") != 0) {
481 fprintf(stderr, "Usage: wifi reload.\nThis tool is only for RDKB MSP/SQC test.\n");
482 return -1;
483 }
484 apply_uci_config();
485 return 0;
486}