X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/353dd0a7dfcad2dabdd5bbd049a2d904865eba5f..f2b88b69803a7f6475c49d7a7b8e459f1d974e37:/package/broadcom-wl/files/lib/wifi/broadcom.sh diff --git a/package/broadcom-wl/files/lib/wifi/broadcom.sh b/package/broadcom-wl/files/lib/wifi/broadcom.sh index 7d56c10e0..e22921732 100644 --- a/package/broadcom-wl/files/lib/wifi/broadcom.sh +++ b/package/broadcom-wl/files/lib/wifi/broadcom.sh @@ -42,7 +42,7 @@ scan_broadcom() { local _c= for vif in ${adhoc_if:-$sta_if $ap_if $mon_if}; do - config_set "$vif" ifname "wl0${_c:+.$_c}" + config_set "$vif" ifname "${device}${_c:+.$_c}" _c=$((${_c:-0} + 1)) done config_set "$device" vifs "${adhoc_if:-$sta_if $ap_if $mon_if}" @@ -63,7 +63,6 @@ scan_broadcom() { apsta=0 radio=1 monitor=0 - passive=0 case "$adhoc:$sta:$apmode:$mon" in 1*) ap=0 @@ -84,7 +83,6 @@ scan_broadcom() { ap=0 mssid= monitor=1 - passive=1 ;; ::) radio=0 @@ -93,13 +91,15 @@ scan_broadcom() { } disable_broadcom() { - set_wifi_down "$1" - wlc down + local device="$1" + set_wifi_down "$device" + wlc ifname "$device" down + wlc ifname "$device" bssid `wlc ifname "$device" default_bssid` ( include /lib/network # make sure the interfaces are down and removed from all bridges - for dev in wl0 wl0.1 wl0.2 wl0.3; do + for dev in $device ${device}.1 ${device}.2 ${device}.3; do ifconfig "$dev" down 2>/dev/null >/dev/null && { unbridge "$dev" } @@ -109,6 +109,7 @@ disable_broadcom() { } enable_broadcom() { + local device="$1" local _c config_get channel "$device" channel config_get country "$device" country @@ -124,7 +125,12 @@ enable_broadcom() { config_get maclist "$device" maclist config_get macaddr "$device" macaddr config_get txpower "$device" txpower + config_get frag "$device" frag + config_get rts "$device" rts + config_get hwmode "$device" hwmode local vif_pre_up vif_post_up vif_do_up vif_txpower + local doth=0 + local wmm=0 _c=0 nas="$(which nas)" @@ -139,7 +145,7 @@ enable_broadcom() { } || { slottime="${slottime:--1}" } - + case "$macfilter" in allow|2) macfilter=2; @@ -152,6 +158,15 @@ enable_broadcom() { ;; esac + case "$hwmode" in + *b) hwmode=0;; + *bg) hwmode=1;; + *g) hwmode=2;; + *gst) hwmode=4;; + *lrs) hwmode=5;; + *) hwmode=1;; + esac + for vif in $vifs; do config_get vif_txpower "$vif" txpower @@ -159,7 +174,10 @@ enable_broadcom() { append vif_pre_up "vif $_c" "$N" append vif_post_up "vif $_c" "$N" append vif_do_up "vif $_c" "$N" - + + config_get_bool wmm "$vif" wmm "$wmm" + config_get_bool doth "$vif" doth "$doth" + [ "$mode" = "sta" ] || { config_get_bool hidden "$vif" hidden 0 append vif_pre_up "closed $hidden" "$N" @@ -174,11 +192,15 @@ enable_broadcom() { nasopts= config_get enc "$vif" encryption case "$enc" in - WEP|wep) + *wep*) wsec_r=1 wsec=1 defkey=1 config_get key "$vif" key + case "$enc" in + *shared*) append vif_do_up "wepauth 1" "$N";; + *) append vif_do_up "wepauth 0" "$N";; + esac case "$key" in [1234]) defkey="$key" @@ -193,29 +215,48 @@ enable_broadcom() { *) append vif_do_up "wepkey =1,$key" "$N";; esac ;; - *psk*|*PSK*) + *psk*) wsec_r=1 config_get key "$vif" key + + # psk version + default cipher case "$enc" in - wpa*+wpa2*|WPA*+WPA2*|*psk+*psk2|*PSK+*PSK2) auth=132; wsec=6;; - wpa2*|WPA2*|*PSK2|*psk2) auth=128; wsec=4;; - *aes|*AES) auth=4; wsec=4;; + *mixed*|*psk+psk2*) auth=132; wsec=6;; + *psk2*) auth=128; wsec=4;; *) auth=4; wsec=2;; esac + + # cipher override + case "$enc" in + *tkip+aes*|*tkip+ccmp*|*aes+tkip*|*ccmp+tkip*) wsec=6;; + *aes*|*ccmp*) wsec=4;; + *tkip*) wsec=2;; + esac + eval "${vif}_key=\"\$key\"" nasopts="-k \"\$${vif}_key\"" ;; - *wpa*|*WPA*) + *wpa*) wsec_r=1 eap_r=1 config_get key "$vif" key config_get server "$vif" server config_get port "$vif" port + + # wpa version + default cipher case "$enc" in - wpa*+wpa2*|WPA*+WPA2*) auth=66; wsec=6;; - wpa2*|WPA2*) auth=64; wsec=4;; + *mixed*|*wpa+wpa2*) auth=66; wsec=6;; + *wpa2*) auth=64; wsec=4;; *) auth=2; wsec=2;; esac + + # cipher override + case "$enc" in + *tkip+aes*|*tkip+ccmp*|*aes+tkip*|*ccmp+tkip*) wsec=6;; + *aes*|*ccmp*) wsec=4;; + *tkip*) wsec=2;; + esac + eval "${vif}_key=\"\$key\"" nasopts="-r \"\$${vif}_key\" -h $server -p ${port:-1812}" ;; @@ -224,7 +265,7 @@ enable_broadcom() { append vif_do_up "wpa_auth $auth" "$N" append vif_do_up "wsec_restrict $wsec_r" "$N" append vif_do_up "eap_restrict $eap_r" "$N" - + config_get ssid "$vif" ssid append vif_post_up "vlan_mode 0" "$N" append vif_post_up "ssid $ssid" "$N" @@ -232,68 +273,64 @@ enable_broadcom() { [ "$mode" = "monitor" ] && { append vif_post_up "monitor $monitor" "$N" - append vif_post_up "passive $passive" "$N" } [ "$mode" = "adhoc" ] && { config_get bssid "$vif" bssid [ -n "$bssid" ] && { - append vif_pre_up "des_bssid $bssid" "$N" - append vif_pre_up "allow_mode 1" "$N" + append vif_pre_up "bssid $bssid" "$N" + append vif_pre_up "ibss_merge 0" "$N" + } || { + append vif_pre_up "ibss_merge 1" "$N" } - } || append vif_pre_up "allow_mode 0" "$N" - + } + append vif_post_up "enabled 1" "$N" - + config_get ifname "$vif" ifname #append if_up "ifconfig $ifname up" ";$N" - local net_cfg bridge + local net_cfg net_cfg="$(find_net_config "$vif")" [ -z "$net_cfg" ] || { - bridge="$(bridge_interface "$net_cfg")" append if_up "set_wifi_up '$vif' '$ifname'" ";$N" - append if_up "start_net '$ifname' '$net_cfg' \$(wlc ifname '$ifname' bssid)" ";$N" + append if_up "start_net '$ifname' '$net_cfg'" ";$N" } [ -z "$nasopts" ] || { eval "${vif}_ssid=\"\$ssid\"" nas_mode="-A" - use_nas=1 - [ "$mode" = "sta" ] && { - nas_mode="-S" - [ -z "$bridge" ] || { - append vif_post_up "supplicant 1" "$N" - append vif_post_up "passphrase $key" "$N" - - use_nas=0 - } + [ "$mode" = "sta" ] && nas_mode="-S" + [ -z "$nas" ] || { + nas_cmd="${nas_cmd:+$nas_cmd$N}start-stop-daemon -S -b -p /var/run/nas.$ifname.pid -x $nas -- -P /var/run/nas.$ifname.pid -H 34954 -i $ifname $nas_mode -m $auth -w $wsec -s \"\$${vif}_ssid\" -g 3600 -F $nasopts" } - [ -z "$nas" -o "$use_nas" = "0" ] || nas_cmd="${nas_cmd:+$nas_cmd$N}$nas -P /var/run/nas.$ifname.pid -H 34954 ${bridge:+ -l $bridge} -i $ifname $nas_mode -m $auth -w $wsec -s \"\$${vif}_ssid\" -g 3600 $nasopts &" } _c=$(($_c + 1)) done killall -KILL nas >&- 2>&- - wlc stdin <