2 * Wireless Network Adapter configuration utility
4 * Copyright (C) 2005 Felix Fietkau <nbd@openwrt.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
25 #define ADD_VIF_RETRIES 5
28 /*------------------------------------------------------------------*/
30 * Macro to handle errors when setting WE
31 * Print a nice error message and exit...
32 * We define them as macro so that "return" do the right thing.
33 * The "do {...} while(0)" is a standard trick
35 #define ERR_SET_EXT(rname, request) \
36 fprintf(stderr, "Error for wireless request \"%s\" (%X) :\n", \
39 #define ABORT_ARG_NUM(rname, request) \
41 ERR_SET_EXT(rname, request); \
42 fprintf(stderr, " too few arguments.\n"); \
45 #define ABORT_ARG_TYPE(rname, request, arg) \
47 ERR_SET_EXT(rname, request); \
48 fprintf(stderr, " invalid argument \"%s\".\n", arg); \
51 #define ABORT_ARG_SIZE(rname, request, max) \
53 ERR_SET_EXT(rname, request); \
54 fprintf(stderr, " argument too big (max %d)\n", max); \
57 /*------------------------------------------------------------------*/
59 * Wrapper to push some Wireless Parameter in the driver
60 * Use standard wrapper and add pretty error message if fail...
62 #define IW_SET_EXT_ERR(skfd, ifname, request, wrq, rname) \
64 if(iw_set_ext(skfd, ifname, request, wrq) < 0) { \
65 ERR_SET_EXT(rname, request); \
66 fprintf(stderr, " SET failed on device %-1.16s ; %s.\n", \
67 ifname, strerror(errno)); \
70 /*------------------------------------------------------------------*/
72 * Wrapper to extract some Wireless Parameter out of the driver
73 * Use standard wrapper and add pretty error message if fail...
75 #define IW_GET_EXT_ERR(skfd, ifname, request, wrq, rname) \
77 if(iw_get_ext(skfd, ifname, request, wrq) < 0) { \
78 ERR_SET_EXT(rname, request); \
79 fprintf(stderr, " GET failed on device %-1.16s ; %s.\n", \
80 ifname, strerror(errno)); \
83 static void set_wext_ssid(int skfd
, char *ifname
);
86 static char buffer
[128];
87 static int wpa_enc
= 0;
89 static char *wl_var(char *name
)
91 sprintf(buffer
, "%s_%s", prefix
, name
);
95 static char *vif_var(int vif
, char *name
)
100 sprintf(buffer
, "%s.%d_%s", prefix
, vif
, name
);
104 static int nvram_enabled(char *name
)
106 return (nvram_match(name
, "1") || nvram_match(name
, "on") || nvram_match(name
, "enabled") || nvram_match(name
, "true") || nvram_match(name
, "yes") ? 1 : 0);
109 static int nvram_disabled(char *name
)
111 return (nvram_match(name
, "0") || nvram_match(name
, "off") || nvram_match(name
, "disabled") || nvram_match(name
, "false") || nvram_match(name
, "no") ? 1 : 0);
115 /* Quarter dBm units to mW
116 * Table starts at QDBM_OFFSET, so the first entry is mW for qdBm=153
117 * Table is offset so the last entry is largest mW value that fits in
121 #define QDBM_OFFSET 153
122 #define QDBM_TABLE_LEN 40
124 /* Smallest mW value that will round up to the first table entry, QDBM_OFFSET.
125 * Value is ( mW(QDBM_OFFSET - 1) + mW(QDBM_OFFSET) ) / 2
127 #define QDBM_TABLE_LOW_BOUND 6493
129 /* Largest mW value that will round down to the last table entry,
130 * QDBM_OFFSET + QDBM_TABLE_LEN-1.
131 * Value is ( mW(QDBM_OFFSET + QDBM_TABLE_LEN - 1) + mW(QDBM_OFFSET + QDBM_TABLE_LEN) ) / 2.
133 #define QDBM_TABLE_HIGH_BOUND 64938
135 static const uint16 nqdBm_to_mW_map
[QDBM_TABLE_LEN
] = {
136 /* qdBm: +0 +1 +2 +3 +4 +5 +6 +7 */
137 /* 153: */ 6683, 7079, 7499, 7943, 8414, 8913, 9441, 10000,
138 /* 161: */ 10593, 11220, 11885, 12589, 13335, 14125, 14962, 15849,
139 /* 169: */ 16788, 17783, 18836, 19953, 21135, 22387, 23714, 25119,
140 /* 177: */ 26607, 28184, 29854, 31623, 33497, 35481, 37584, 39811,
141 /* 185: */ 42170, 44668, 47315, 50119, 53088, 56234, 59566, 63096
144 unsigned char mw_to_qdbm(uint16 mw
)
151 /* handle boundary case */
155 offset
= QDBM_OFFSET
;
157 /* move mw into the range of the table */
158 while (mw_uint
< QDBM_TABLE_LOW_BOUND
) {
163 for (qdbm
= 0; qdbm
< QDBM_TABLE_LEN
-1; qdbm
++) {
164 boundary
= nqdBm_to_mW_map
[qdbm
] + (nqdBm_to_mW_map
[qdbm
+1] - nqdBm_to_mW_map
[qdbm
])/2;
165 if (mw_uint
< boundary
) break;
168 qdbm
+= (unsigned char)offset
;
173 static int bcom_ioctl(int skfd
, char *ifname
, int cmd
, void *buf
, int len
)
183 ifr
.ifr_data
= (caddr_t
) &ioc
;
184 strncpy(ifr
.ifr_name
, ifname
, IFNAMSIZ
);
186 ret
= ioctl(skfd
, SIOCDEVPRIVATE
, &ifr
);
190 fprintf(stderr
, "IOCTL %d failed: %d\n", cmd
, ret
);
196 static int bcom_set_var(int skfd
, char *ifname
, char *var
, void *val
, int len
)
201 if (strlen(var
) + 1 > sizeof(buf
) || len
> sizeof(buf
))
204 bzero(buf
, sizeof(buf
));
206 memcpy(&buf
[strlen(var
) + 1], val
, len
);
208 ret
= bcom_ioctl(skfd
, ifname
, WLC_SET_VAR
, buf
, sizeof(buf
));
212 fprintf(stderr
, "SET_VAR %s failed: %d\n", var
, ret
);
218 static int bcom_get_var(int skfd
, char *ifname
, char *var
, void *buf
, int len
)
222 if (strlen(var
) + 1 > sizeof(buf
) || len
> sizeof(buf
))
225 bzero(buf
, sizeof(buf
));
228 ret
= bcom_ioctl(skfd
, ifname
, WLC_GET_VAR
, buf
, sizeof(buf
));
232 fprintf(stderr
, "GET_VAR %s failed: %d\n", var
, ret
);
238 static int bcom_set_bss_var(int skfd
, char *ifname
, int bss
, char *var
, void *val
, int len
)
243 bzero(buf
, sizeof(buf
));
244 if (strlen(var
) + len
+ 8 > sizeof(buf
) || len
> sizeof(buf
))
247 // "bsscfg:<name>\x00" <bss> <data>
248 i
= sprintf(buf
, "bsscfg:%s", var
);
251 memcpy(buf
+ i
, &bss
, sizeof(bss
));
254 memcpy(buf
+ i
, val
, len
);
257 ret
= bcom_ioctl(skfd
, ifname
, WLC_SET_VAR
, buf
, i
);
261 fprintf(stderr
, "SET_BSS_VAR %s failed: %d\n", var
, ret
);
267 static int bcom_set_int(int skfd
, char *ifname
, char *var
, int val
)
269 return bcom_set_var(skfd
, ifname
, var
, &val
, sizeof(val
));
272 static int bcom_set_bss_int(int skfd
, char *ifname
, int bss
, char *var
, int val
)
274 return bcom_set_bss_var(skfd
, ifname
, bss
, var
, &val
, sizeof(val
));
277 static int is_new_bcom(int skfd
, char *ifname
)
282 bcom_ioctl(skfd
, ifname
, WLC_DUMP
, buf
, 8192);
284 if (strstr(buf
, "3.130"))
290 static int bcom_get_wsec(int vif
)
294 if (nvram_match(vif_var(vif
, "crypto"), "tkip"))
296 else if (nvram_match(vif_var(vif
, "crypto"), "aes"))
298 else if (nvram_match(vif_var(vif
, "crypto"), "tkip+aes") || nvram_match(vif_var(vif
, "crypto"), "aes+tkip"))
299 val
= TKIP_ENABLED
| AES_ENABLED
;
306 static int bcom_get_wauth(int vif
)
308 char *v
, *next
, var
[80];
311 if (!(v
= nvram_get(vif_var(vif
, "akm"))))
312 v
= nvram_safe_get(vif_var(vif
, "auth_mode"));
314 foreach(var
, v
, next
) {
315 if (strcmp(var
, "psk") == 0)
317 else if (strcmp(var
, "psk2") == 0)
318 res
|= WPA2_AUTH_PSK
;
319 else if (strcmp(var
, "wpa") == 0)
320 res
|= WPA_AUTH_UNSPECIFIED
;
321 else if (strcmp(var
, "wpa2") == 0)
322 res
|= WPA2_AUTH_UNSPECIFIED
;
328 static void stop_bcom(int skfd
, char *ifname
)
333 if (bcom_ioctl(skfd
, ifname
, WLC_GET_MAGIC
, &val
, sizeof(val
)) < 0)
338 bcom_ioctl(skfd
, ifname
, WLC_SET_SSID
, &ssid
, sizeof(ssid
));
339 bcom_ioctl(skfd
, ifname
, WLC_DOWN
, NULL
, 0);
343 static void start_bcom(int skfd
, char *ifname
)
347 if (bcom_ioctl(skfd
, ifname
, WLC_GET_MAGIC
, &val
, sizeof(val
)) < 0)
350 bcom_ioctl(skfd
, ifname
, WLC_UP
, &val
, sizeof(val
));
353 static int setup_bcom_wds(int skfd
, char *ifname
)
360 if (v
= nvram_get(wl_var("wds"))) {
361 struct maclist
*wdslist
= (struct maclist
*) buf
;
362 struct ether_addr
*addr
= wdslist
->ea
;
365 memset(buf
, 0, 8192);
366 foreach(wbuf
, v
, next
) {
367 if (ether_atoe(wbuf
, addr
->ether_addr_octet
)) {
373 bcom_ioctl(skfd
, ifname
, WLC_SET_WDSLIST
, buf
, sizeof(buf
));
378 static void set_wext_mode(skfd
, ifname
)
381 int ap
= 0, infra
= 0, wet
= 0;
383 /* Set operation mode */
384 ap
= !nvram_match(wl_var("mode"), "sta") && !nvram_match(wl_var("mode"), "wet");
385 infra
= !nvram_disabled(wl_var("infra"));
386 wet
= !ap
&& nvram_match(wl_var("mode"), "wet");
388 wrq
.u
.mode
= (!infra
? IW_MODE_ADHOC
: (ap
? IW_MODE_MASTER
: (wet
? IW_MODE_REPEAT
: IW_MODE_INFRA
)));
389 IW_SET_EXT_ERR(skfd
, ifname
, SIOCSIWMODE
, &wrq
, "Set Mode");
393 void start_watchdog(int skfd
, char *ifname
)
397 unsigned char buf
[8192], buf2
[8192], wbuf
[80], *p
, *tmp
;
398 int wds
= 0, i
, j
, restart_wds
;
404 system("kill $(cat /var/run/wifi.pid) 2>&- >&-");
405 f
= fopen("/var/run/wifi.pid", "w");
406 fprintf(f
, "%d\n", getpid());
409 v
= nvram_safe_get(wl_var("wds"));
410 memset(buf2
, 0, 8192);
412 foreach(wbuf
, v
, next
) {
413 if (ether_atoe(wbuf
, p
)) {
418 v
= nvram_safe_get(wl_var("ssid"));
419 ssid
.SSID_len
= strlen(v
);
420 strncpy(ssid
.SSID
, v
, 32);
426 bcom_ioctl(skfd
, ifname
, WLC_GET_AP
, &i
, sizeof(i
));
429 if (bcom_ioctl(skfd
, ifname
, WLC_GET_BSSID
, buf
, 6) < 0)
431 memcpy(buf
+ 6, "\x00\x00\x00\x00\x00\x00", 6);
432 if (memcmp(buf
, buf
+ 6, 6) == 0)
435 memset(buf
, 0, 8192);
436 strcpy(buf
, "sta_info");
437 bcom_ioctl(skfd
, ifname
, WLC_GET_BSSID
, buf
+ strlen(buf
) + 1, 6);
438 if (bcom_ioctl(skfd
, ifname
, WLC_GET_VAR
, buf
, 8192) < 0) {
441 sta_info_t
*sta
= (sta_info_t
*) (buf
+ 4);
442 if ((sta
->flags
& 0x18) != 0x18)
449 bcom_ioctl(skfd
, ifname
, WLC_SET_SSID
, &ssid
, sizeof(ssid
));
456 for (i
= 0; i
< wds
; i
++) {
457 memset(buf
, 0, 8192);
458 strcpy(buf
, "sta_info");
459 memcpy(buf
+ strlen(buf
) + 1, p
, 6);
460 if (bcom_ioctl(skfd
, ifname
, WLC_GET_VAR
, buf
, 8192) < 0) {
462 sta_info_t
*sta
= (sta_info_t
*) (buf
+ 4);
463 if (!(sta
->flags
& 0x40)) {
472 setup_bcom_wds(skfd
, ifname
);
476 static void setup_bcom_vif_sec(int skfd
, char *ifname
, int vif
)
478 int val
, wep
, wsec
, i
;
481 wsec
= bcom_get_wsec(vif
);
483 val
= bcom_get_wauth(vif
);
487 bcom_set_bss_int(skfd
, ifname
, vif
, "wpa_auth", val
);
490 if (WPA_AUTH_PSK
| WPA2_AUTH_PSK
) {
491 v
= nvram_safe_get(wl_var("wpa_psk"));
492 if ((strlen(v
) >= 8) && (strlen(v
) < 63) && nvram_match(wl_var("mode"), "wet") && (vif
== 0)) {
493 /* Enable in-driver WPA supplicant */
496 pmk
.key_len
= (unsigned short) strlen(v
);
497 pmk
.flags
= WSEC_PASSPHRASE
;
499 bcom_ioctl(skfd
, ifname
, WLC_SET_WSEC_PMK
, &pmk
, sizeof(pmk
));
500 bcom_set_int(skfd
, ifname
, "sup_wpa", 1);
502 bcom_set_int(skfd
, ifname
, "sup_wpa", 0);
505 bcom_set_bss_int(skfd
, ifname
, vif
, "eap_restrict", 1);
506 bcom_set_bss_int(skfd
, ifname
, vif
, "wsec", wsec
);
507 bcom_set_bss_int(skfd
, ifname
, vif
, "wsec_restrict", 1);
509 bcom_set_bss_int(skfd
, ifname
, vif
, "eap_restrict", 0);
510 if (wep
= nvram_enabled(vif_var(vif
, "wep"))) {
511 wep
= atoi(nvram_safe_get(vif_var(vif
, "key")));
512 if ((wep
>= 1) && (wep
<= 4)) {
513 for (i
= 1; i
< 4; i
++) {
515 char name
[5] = "key0";
516 unsigned char *kdata
= k
.data
;
519 bzero(&k
, sizeof(k
));
521 kstr
= nvram_safe_get(vif_var(vif
, name
));
522 k
.len
= strlen(kstr
);
523 if ((k
.len
== 10) || (k
.len
== 26)) {
526 fprintf(stderr
, "Adding WEP key %d to VIF %d: ", i
, vif
);
530 strncpy(name
, kstr
, 2);
532 *kdata
= (unsigned char) strtoul(name
, NULL
, 16);
534 fprintf(stderr
, "%02x", *kdata
);
541 fprintf(stderr
, "\n");
546 if ((k
.len
> 0) && (i
== wep
))
547 k
.flags
= WL_PRIMARY_KEY
;
549 bcom_set_bss_var(skfd
, ifname
, vif
, "wsec_key", &k
, sizeof(k
));
552 bcom_set_bss_int(skfd
, ifname
, vif
, "wsec", WEP_ENABLED
);
553 bcom_set_bss_int(skfd
, ifname
, vif
, "wsec_restrict", 1);
554 bcom_set_bss_int(skfd
, ifname
, vif
, "auth", nvram_enabled(vif_var(vif
, "auth")));
562 bcom_set_bss_int(skfd
, ifname
, vif
, "wsec", 0);
563 bcom_set_bss_int(skfd
, ifname
, vif
, "wsec_restrict", 0);
566 // bcom_set_bss_int(skfd, ifname, vif, "auth", atoi(nvram_safe_get(vif_var(vif, "auth"))));
569 static void setup_bcom_vif(int skfd
, char *ifname
, int vif
)
571 int val
, wep
, wsec
, i
;
575 s
= nvram_safe_get(vif_var(vif
, "ssid"));
576 strncpy(ssid
.SSID
, s
, sizeof(ssid
.SSID
));
577 ssid
.SSID_len
= strlen(ssid
.SSID
);
578 ssid
.SSID_len
= ((ssid
.SSID_len
> sizeof(ssid
.SSID
)) ? sizeof(ssid
.SSID
) : ssid
.SSID_len
);
579 bcom_set_bss_var(skfd
, ifname
, vif
, "ssid", &ssid
, sizeof(ssid
));
581 val
= nvram_enabled(vif_var(vif
, "closed"));
582 bcom_set_bss_int(skfd
, ifname
, vif
, "closednet", val
);
584 val
= nvram_enabled(wl_var("ap_isolate"));
585 bcom_set_bss_int(skfd
, ifname
, vif
, "ap_isolate", val
);
589 static void start_bcom_vif(int skfd
, char *ifname
, int vif
)
596 for (i
= 0; i
< ADD_VIF_RETRIES
; i
++) {
597 if (bcom_set_var(skfd
, ifname
, "bss" , cfg
, sizeof(cfg
)) == 0)
603 static void setup_bcom_common(int skfd
, char *ifname
)
606 char buf
[8192], wbuf
[80], *v
;
608 nvram_set(wl_var("ifname"), ifname
);
611 strncpy(buf
, nvram_safe_get(wl_var("country_code")), 4);
613 bcom_ioctl(skfd
, ifname
, WLC_SET_COUNTRY
, buf
, 4);
615 if (v
= nvram_get(wl_var("txpwr"))) {
617 val
= mw_to_qdbm(val
);
618 bcom_set_int(skfd
, ifname
, "qtxpower", val
);
621 /* Set other options */
622 val
= nvram_enabled(wl_var("lazywds"));
623 bcom_ioctl(skfd
, ifname
, WLC_SET_LAZYWDS
, &val
, sizeof(val
));
625 if (v
= nvram_get(wl_var("dtim"))) {
627 bcom_ioctl(skfd
, ifname
, WLC_SET_DTIMPRD
, &val
, sizeof(val
));
629 if (v
= nvram_get(wl_var("bcn"))) {
631 bcom_ioctl(skfd
, ifname
, WLC_SET_BCNPRD
, &val
, sizeof(val
));
633 if (v
= nvram_get(wl_var("antdiv"))) {
635 bcom_ioctl(skfd
, ifname
, WLC_SET_ANTDIV
, &val
, sizeof(val
));
637 if (v
= nvram_get(wl_var("txant"))) {
639 bcom_ioctl(skfd
, ifname
, WLC_SET_TXANT
, &val
, sizeof(val
));
641 if (v
= nvram_get(wl_var("maxassoc"))) {
643 bcom_set_int(skfd
, ifname
, "maxassoc", val
);
646 val
= nvram_enabled(wl_var("frameburst"));
647 bcom_ioctl(skfd
, ifname
, WLC_SET_FAKEFRAG
, &val
, sizeof(val
));
649 ap
= !nvram_match(wl_var("mode"), "sta") && !nvram_match(wl_var("mode"), "wet");
652 val
= setup_bcom_wds(skfd
, ifname
);
654 if ((!ap
|| val
) && is_new_bcom(skfd
, ifname
))
655 start_watchdog(skfd
, ifname
);
657 /* Set up afterburner, disabled it if WDS is enabled */
658 if (val
|| nvram_enabled(wl_var("lazywds"))) {
662 if (nvram_enabled(wl_var("afterburner")))
664 if (nvram_disabled(wl_var("afterburner")))
668 bcom_set_var(skfd
, ifname
, "afterburner_override", &val
, sizeof(val
));
670 /* Set up MAC list */
671 if (nvram_match(wl_var("macmode"), "allow"))
672 val
= WLC_MACMODE_ALLOW
;
673 else if (nvram_match(wl_var("macmode"), "deny"))
674 val
= WLC_MACMODE_DENY
;
676 val
= WLC_MACMODE_DISABLED
;
678 if ((val
!= WLC_MACMODE_DISABLED
) && (v
= nvram_get(wl_var("maclist")))) {
679 struct maclist
*mac_list
;
680 struct ether_addr
*addr
;
683 memset(buf
, 0, 8192);
684 mac_list
= (struct maclist
*) buf
;
687 foreach(wbuf
, v
, next
) {
688 if (ether_atoe(wbuf
, addr
->ether_addr_octet
)) {
693 bcom_ioctl(skfd
, ifname
, WLC_SET_MACLIST
, buf
, sizeof(buf
));
695 val
= WLC_MACMODE_DISABLED
;
697 bcom_ioctl(skfd
, ifname
, WLC_SET_MACMODE
, &val
, sizeof(val
));
700 bcom_ioctl(skfd
, ifname
, WLC_GET_PHYTYPE
, &val
, sizeof(val
));
702 int override
= WLC_G_PROTECTION_OFF
;
703 int control
= WLC_G_PROTECTION_CTL_OFF
;
705 if (v
= nvram_get(wl_var("gmode")))
713 bcom_ioctl(skfd
, ifname
, WLC_SET_GMODE
, &val
, sizeof(val
));
715 if (nvram_match(wl_var("gmode_protection"), "auto")) {
716 override
= WLC_G_PROTECTION_AUTO
;
717 control
= WLC_G_PROTECTION_CTL_OVERLAP
;
719 if (nvram_enabled(wl_var("gmode_protection"))) {
720 override
= WLC_G_PROTECTION_ON
;
721 control
= WLC_G_PROTECTION_CTL_OVERLAP
;
723 bcom_ioctl(skfd
, ifname
, WLC_SET_GMODE_PROTECTION_CONTROL
, &override
, sizeof(control
));
724 bcom_ioctl(skfd
, ifname
, WLC_SET_GMODE_PROTECTION_OVERRIDE
, &override
, sizeof(override
));
727 if (nvram_match(wl_var("plcphdr"), "long"))
730 val
= WLC_PLCP_SHORT
;
732 bcom_ioctl(skfd
, ifname
, WLC_SET_PLCPHDR
, &val
, sizeof(val
));
737 static void setup_bcom_new(int skfd
, char *ifname
)
740 int iface
[16], ifaces
= 1;
741 int ap
, apsta
, sta
, wet
;
744 if (bcom_ioctl(skfd
, ifname
, WLC_GET_MAGIC
, &val
, sizeof(val
)) < 0)
749 for (i
= 0; i
< 16; i
++) {
750 int cfg
[2]; /* index, enabled */
755 bcom_set_var(skfd
, ifname
, "bss", cfg
, sizeof(cfg
));
757 if ((i
> 0) && nvram_enabled(vif_var(i
, "enabled")) && (i
== 0 || nvram_get(vif_var(i
, "ssid")))) {
763 set_wext_mode(skfd
, ifname
);
765 ap
= nvram_match(wl_var("mode"), "ap") || nvram_match(wl_var("mode"), "apsta");
766 apsta
= nvram_match(wl_var("mode"), "apsta");
767 sta
= nvram_match(wl_var("mode"), "sta");
769 bcom_set_int(skfd
, ifname
, "apsta", apsta
);
770 bcom_set_int(skfd
, ifname
, "mssid", (ifaces
> 1));
772 for (i
= 0; i
< (sta
? 0 : ifaces
); i
++) {
774 fprintf(stderr
, "setup_bcom_vif(%d) start\n", iface
[i
]);
776 setup_bcom_vif(skfd
, ifname
, iface
[i
]);
778 fprintf(stderr
, "setup_bcom_vif(%d) end\n", iface
[i
]);
783 if ((val
= atoi(nvram_safe_get(wl_var("rate")))) > 0) {
785 bcom_set_int(skfd
, ifname
, "bg_rate", val
);
786 bcom_set_int(skfd
, ifname
, "a_rate", val
);
788 if (v
= nvram_get(wl_var("rts"))) {
790 bcom_set_int(skfd
, ifname
, "rtsthresh", val
);
792 if (v
= nvram_get(wl_var("frag"))) {
794 bcom_set_int(skfd
, ifname
, "fragthresh", val
);
797 val
= (nvram_disabled(wl_var("radio")) ? (1 | (1 << 16)) : 0);
798 bcom_ioctl(skfd
, ifname
, WLC_SET_RADIO
, &val
, sizeof(val
));
800 setup_bcom_common(skfd
, ifname
);
801 start_bcom(skfd
, ifname
);
803 val
= atoi(nvram_safe_get(wl_var("channel")));
805 bcom_ioctl(skfd
, ifname
, WLC_SET_CHANNEL
, &val
, sizeof(val
));
808 bcom_ioctl(skfd
, ifname
, WLC_SET_CS_SCAN_TIMER
, &val
, sizeof(val
));
810 for (i
= 0; i
< (sta
? 0 : ifaces
); i
++) {
811 setup_bcom_vif_sec(skfd
, ifname
, iface
[i
]);
814 for (i
= 0; i
< (sta
? 0 : ifaces
); i
++) {
815 start_bcom_vif(skfd
, ifname
, iface
[i
]);
819 static void setup_bcom_old(int skfd
, char *ifname
)
826 if (bcom_ioctl(skfd
, ifname
, WLC_GET_MAGIC
, &val
, sizeof(val
)) < 0)
829 setup_bcom_common(skfd
, ifname
);
831 if ((val
= atoi(nvram_safe_get(wl_var("rate")))) > 0) {
833 bcom_ioctl(skfd
, ifname
, 13, &val
, sizeof(val
));
835 if (v
= nvram_get(wl_var("frag"))) {
837 bcom_ioctl(skfd
, ifname
, WLC_SET_FRAG
, &val
, sizeof(val
));
839 if (v
= nvram_get(wl_var("rts"))) {
841 bcom_ioctl(skfd
, ifname
, WLC_SET_RTS
, &val
, sizeof(val
));
844 val
= nvram_enabled(wl_var("closed"));
845 bcom_ioctl(skfd
, ifname
, WLC_SET_CLOSED
, &val
, sizeof(val
));
847 val
= nvram_enabled(wl_var("ap_isolate"));
848 bcom_set_int(skfd
, ifname
, "ap_isolate", val
);
850 start_bcom(skfd
, ifname
);
851 set_wext_ssid(skfd
, ifname
);
853 val
= bcom_get_wauth(0);
854 bcom_ioctl(skfd
, ifname
, WLC_SET_WPA_AUTH
, &val
, sizeof(val
));
856 if (val
& (WPA_AUTH_PSK
| WPA2_AUTH_PSK
)) {
857 v
= nvram_safe_get(wl_var("wpa_psk"));
858 if ((strlen(v
) >= 8) && (strlen(v
) < 63) && nvram_match(wl_var("mode"), "wet")) {
859 /* Enable in-driver WPA supplicant */
862 pmk
.key_len
= (unsigned short) strlen(v
);
863 pmk
.flags
= WSEC_PASSPHRASE
;
865 bcom_ioctl(skfd
, ifname
, WLC_SET_WSEC_PMK
, &pmk
, sizeof(pmk
));
866 bcom_set_int(skfd
, ifname
, "sup_wpa", 1);
871 bcom_ioctl(skfd
, ifname
, WLC_SET_EAP_RESTRICT
, &val
, sizeof(val
));
872 val
= bcom_get_wsec(0);
873 bcom_ioctl(skfd
, ifname
, WLC_SET_WSEC
, &val
, sizeof(val
));
876 bcom_ioctl(skfd
, ifname
, WLC_SET_WSEC
, &val
, sizeof(val
));
877 bcom_ioctl(skfd
, ifname
, WLC_SET_EAP_RESTRICT
, &val
, sizeof(val
));
878 bcom_set_int(skfd
, ifname
, "sup_wpa", 0);
881 if (v
= nvram_get(wl_var("auth"))) {
883 bcom_ioctl(skfd
, ifname
, WLC_SET_AUTH
, &val
, sizeof(val
));
888 static void set_wext_ssid(int skfd
, char *ifname
)
891 char essid
[IW_ESSID_MAX_SIZE
+ 1];
894 buffer
= nvram_get(wl_var("ssid"));
896 if (!buffer
|| (strlen(buffer
) > IW_ESSID_MAX_SIZE
))
899 wrq
.u
.essid
.flags
= 1;
900 strcpy(essid
, buffer
);
901 wrq
.u
.essid
.pointer
= (caddr_t
) essid
;
902 wrq
.u
.essid
.length
= strlen(essid
) + 1;
903 IW_SET_EXT_ERR(skfd
, ifname
, SIOCSIWESSID
, &wrq
, "Set ESSID");
906 static void setup_wext_wep(int skfd
, char *ifname
)
912 unsigned char key
[IW_ENCODING_TOKEN_MAX
];
914 memset(&wrq
, 0, sizeof(wrq
));
915 strcpy(keystr
, "key1");
916 for (i
= 1; i
<= 4; i
++) {
917 if (keyval
= nvram_get(wl_var(keystr
))) {
918 keylen
= iw_in_key(keyval
, key
);
921 wrq
.u
.data
.length
= keylen
;
922 wrq
.u
.data
.pointer
= (caddr_t
) key
;
923 wrq
.u
.data
.flags
= i
;
924 IW_SET_EXT_ERR(skfd
, ifname
, SIOCSIWENCODE
, &wrq
, "Set Encode");
930 memset(&wrq
, 0, sizeof(wrq
));
931 i
= atoi(nvram_safe_get(wl_var("key")));
932 if (i
> 0 && i
< 4) {
933 wrq
.u
.data
.flags
= i
| IW_ENCODE_RESTRICTED
;
934 IW_SET_EXT_ERR(skfd
, ifname
, SIOCSIWENCODE
, &wrq
, "Set Encode");
938 static void setup_wext(int skfd
, char *ifname
)
944 int channel
= atoi(nvram_safe_get(wl_var("channel")));
948 wrq
.u
.freq
.flags
= 0;
951 wrq
.u
.freq
.flags
= IW_FREQ_FIXED
;
952 wrq
.u
.freq
.m
= channel
;
953 IW_SET_EXT_ERR(skfd
, ifname
, SIOCSIWFREQ
, &wrq
, "Set Frequency");
956 /* Disable radio if wlX_radio is set and not enabled */
957 wrq
.u
.txpower
.disabled
= nvram_disabled(wl_var("radio"));
959 wrq
.u
.txpower
.value
= -1;
960 wrq
.u
.txpower
.fixed
= 1;
961 wrq
.u
.txpower
.flags
= IW_TXPOW_DBM
;
962 IW_SET_EXT_ERR(skfd
, ifname
, SIOCSIWTXPOW
, &wrq
, "Set Tx Power");
965 if (nvram_enabled(wl_var("wep")) && !wpa_enc
)
966 setup_wext_wep(skfd
, ifname
);
969 set_wext_ssid(skfd
, ifname
);
973 static int setup_interfaces(int skfd
, char *ifname
, char *args
[], int count
)
978 /* Avoid "Unused parameter" warning */
979 args
= args
; count
= count
;
981 if(iw_get_ext(skfd
, ifname
, SIOCGIWNAME
, &wrq
) < 0)
984 if (strncmp(ifname
, "ath", 3) == 0) {
985 set_wext_mode(skfd
, ifname
);
986 setup_wext(skfd
, ifname
);
988 if (is_new_bcom(skfd
, ifname
)) {
990 fprintf(stderr
, "New Broadcom driver detected.\n");
992 stop_bcom(skfd
, ifname
);
994 fprintf(stderr
, "Setup start.\n");
996 setup_bcom_new(skfd
, ifname
);
998 fprintf(stderr
, "Setup done.\n");
1002 fprintf(stderr
, "Old Broadcom driver detected.\n");
1004 stop_bcom(skfd
, ifname
);
1005 set_wext_mode(skfd
, ifname
);
1006 setup_bcom_old(skfd
, ifname
);
1007 setup_wext(skfd
, ifname
);
1014 int main(int argc
, char **argv
)
1017 if((skfd
= iw_sockets_open()) < 0) {
1022 prefix
= strdup("wl0");
1023 iw_enum_devices(skfd
, &setup_interfaces
, NULL
, 0);