2006-10-15 23:27:34 +08:00
|
|
|
append DRIVERS "broadcom"
|
|
|
|
|
2006-10-16 00:23:36 +08:00
|
|
|
find_vif_config() {(
|
|
|
|
local vif="$1"
|
|
|
|
local cfg
|
|
|
|
local ifname
|
|
|
|
|
|
|
|
config_get cfg "$vif" network
|
|
|
|
|
|
|
|
[ -z "$cfg" ] && {
|
|
|
|
include /lib/network
|
2006-07-30 11:09:09 +08:00
|
|
|
scan_interfaces
|
2006-10-16 00:23:36 +08:00
|
|
|
|
|
|
|
config_get ifname "$vif" ifnamea
|
|
|
|
|
|
|
|
cfg="$(find_config "$ifname")"
|
|
|
|
}
|
|
|
|
[ -z "$cfg" ] && return 0
|
|
|
|
echo "$cfg"
|
|
|
|
)}
|
|
|
|
|
|
|
|
bridge_interface() {(
|
|
|
|
local cfg="$1"
|
|
|
|
[ -z "$cfg" ] && return 0
|
|
|
|
|
|
|
|
include /lib/network
|
|
|
|
scan_interfaces
|
|
|
|
|
|
|
|
config_get iftype "$cfg" type
|
|
|
|
[ "$iftype" = bridge ] && config_get "$iftype" ifname
|
|
|
|
)}
|
2006-07-30 11:09:09 +08:00
|
|
|
|
2006-06-25 23:42:53 +08:00
|
|
|
scan_broadcom() {
|
|
|
|
local device="$1"
|
|
|
|
|
|
|
|
config_get vifs "$device" vifs
|
|
|
|
for vif in $vifs; do
|
|
|
|
config_get mode "$vif" mode
|
|
|
|
case "$mode" in
|
|
|
|
adhoc)
|
|
|
|
adhoc=1
|
|
|
|
adhoc_if="$vif"
|
|
|
|
;;
|
|
|
|
sta)
|
|
|
|
sta=1
|
|
|
|
sta_if="$vif"
|
|
|
|
;;
|
|
|
|
ap)
|
|
|
|
ap=1
|
|
|
|
ap_if="${ap_if:+$ap_if }$vif"
|
|
|
|
;;
|
|
|
|
*) echo "$device($vif): Invalid mode";;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
local _c=
|
|
|
|
for vif in ${adhoc_if:-$sta_if $ap_if}; do
|
|
|
|
config_set "$vif" ifname "wl0${_c:+.$_c}"
|
|
|
|
_c=$((${_c:-0} + 1))
|
|
|
|
done
|
|
|
|
|
|
|
|
ifdown="down"
|
|
|
|
for vif in 0 1 2 3; do
|
|
|
|
append ifdown "vif $vif" "$N"
|
|
|
|
append ifdown "enabled 0" "$N"
|
|
|
|
done
|
|
|
|
|
|
|
|
ap=1
|
|
|
|
infra=1
|
|
|
|
mssid=1
|
|
|
|
apsta=0
|
|
|
|
radio=1
|
|
|
|
case "$adhoc:$sta:$ap" in
|
|
|
|
1*)
|
|
|
|
ap=0
|
|
|
|
mssid=0
|
|
|
|
infra=0
|
|
|
|
;;
|
|
|
|
:1:1)
|
|
|
|
apsta=1
|
|
|
|
wet=1
|
|
|
|
;;
|
|
|
|
:1:)
|
|
|
|
wet=1
|
|
|
|
ap=0
|
|
|
|
mssid=0
|
|
|
|
;;
|
|
|
|
::)
|
|
|
|
radio=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-10-15 23:27:34 +08:00
|
|
|
disable_broadcom() {
|
|
|
|
wlc down
|
2006-10-15 23:50:02 +08:00
|
|
|
(
|
|
|
|
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
|
|
|
|
ifconfig "$dev" down 2>/dev/null >/dev/null && {
|
|
|
|
unbridge "$dev"
|
|
|
|
}
|
|
|
|
done
|
|
|
|
)
|
2006-10-15 23:27:34 +08:00
|
|
|
}
|
2006-06-25 23:42:53 +08:00
|
|
|
|
2006-10-15 23:27:34 +08:00
|
|
|
enable_broadcom() {
|
2006-06-25 23:42:53 +08:00
|
|
|
local _c
|
|
|
|
config_get channel "$device" channel
|
|
|
|
config_get country "$device" country
|
|
|
|
config_get maxassoc "$device" maxassoc
|
|
|
|
|
|
|
|
_c=0
|
|
|
|
nas="$(which nas)"
|
|
|
|
nas_cmd=
|
2006-06-26 00:20:13 +08:00
|
|
|
if_up=
|
2006-06-25 23:42:53 +08:00
|
|
|
for vif in ${adhoc_if:-$sta_if $ap_if}; do
|
|
|
|
append vif_pre_up "vif $_c" "$N"
|
|
|
|
append vif_post_up "vif $_c" "$N"
|
|
|
|
|
|
|
|
[ "$vif" = "$sta_if" ] || {
|
|
|
|
config_get_bool hidden "$vif" hidden 1
|
|
|
|
append vif_pre_up "closed $hidden" "$N"
|
|
|
|
config_get_bool isolate "$vif" isolate
|
|
|
|
append vif_pre_up "ap_isolate $hidden" "$N"
|
|
|
|
}
|
|
|
|
|
|
|
|
wsec_r=0
|
|
|
|
eap_r=0
|
|
|
|
wsec=0
|
|
|
|
auth=0
|
|
|
|
nasopts=
|
|
|
|
config_get enc "$vif" encryption
|
|
|
|
case "$enc" in
|
|
|
|
WEP|wep)
|
|
|
|
wsec_r=1
|
|
|
|
;;
|
|
|
|
*psk*|*PSK*)
|
|
|
|
wsec_r=1
|
|
|
|
config_get key "$vif" key
|
|
|
|
case "$enc" in
|
|
|
|
wpa2*|WPA2*|PSK2*|psk2*) auth=128; wsec=4;;
|
|
|
|
*) auth=4; crypto=2;;
|
|
|
|
esac
|
|
|
|
eval "${vif}_key=\"\$key\""
|
|
|
|
nasopts="-k \"\$${vif}_key\""
|
|
|
|
;;
|
|
|
|
*wpa*|*WPA*)
|
|
|
|
wsec_r=1
|
|
|
|
eap_r=1
|
|
|
|
config_get key "$vif" key
|
|
|
|
config_get server "$vif" server
|
|
|
|
config_get port "$vif" port
|
|
|
|
case "$enc" in
|
|
|
|
wpa2*|WPA2*) auth=64; wsec=4;;
|
|
|
|
*) auth=2; crypto=2;;
|
|
|
|
esac
|
|
|
|
eval "${vif}_key=\"\$key\""
|
|
|
|
nasopts="-r \"\$${vif}_key\" -h $server -p $port"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
append vif_post_up "wsec $wsec" "$N"
|
|
|
|
append vif_post_up "wpa_auth $auth" "$N"
|
|
|
|
append vif_post_up "wsec_restrict $wsec_r" "$N"
|
|
|
|
append vif_post_up "eap_restrict $eap_r" "$N"
|
|
|
|
|
|
|
|
config_get ssid "$vif" ssid
|
2006-08-27 19:22:19 +08:00
|
|
|
append vif_post_up "vlan_mode 0"
|
2006-06-25 23:42:53 +08:00
|
|
|
append vif_post_up "ssid $ssid" "$N"
|
|
|
|
append vif_post_up "enabled 1" "$N"
|
|
|
|
|
2006-06-26 00:20:13 +08:00
|
|
|
config_get ifname "$vif" ifname
|
|
|
|
append if_up "ifconfig $ifname up" ";$N"
|
2006-10-16 00:23:36 +08:00
|
|
|
net_cfg="$(find_vif_config "$vif")"
|
|
|
|
[ -z "$net_cfg" ] || {
|
|
|
|
bridge="$(bridge_interface "$net_cfg")"
|
|
|
|
append if_up "start_net '$ifname' '$net_cfg'" ";$N"
|
|
|
|
}
|
2006-06-25 23:42:53 +08:00
|
|
|
[ -z "$nasopts" ] || {
|
|
|
|
eval "${vif}_ssid=\"\$ssid\""
|
|
|
|
mode="-A"
|
|
|
|
[ "$vif" = "$sta_if" ] && mode="-S"
|
2006-06-26 00:32:13 +08:00
|
|
|
[ -z "$nas" ] || nas_cmd="${nas_cmd:+$nas_cmd$N}$nas -P /var/run/nas.$ifname.pid -H 34954 ${bridge:+ -l $bridge} -i $ifname $mode -m $auth -w $crypto -s \"\$${vif}_ssid\" -g 3600 $nasopts &"
|
2006-06-25 23:42:53 +08:00
|
|
|
}
|
|
|
|
_c=$(($_c + 1))
|
|
|
|
done
|
|
|
|
killall -KILL nas >&- 2>&-
|
2006-06-26 00:20:13 +08:00
|
|
|
wlc stdin <<EOF
|
2006-06-25 23:42:53 +08:00
|
|
|
$ifdown
|
|
|
|
|
|
|
|
mssid $mssid
|
|
|
|
ap $ap
|
|
|
|
apsta $apsta
|
|
|
|
infra $infra
|
|
|
|
${wet:+wet 1}
|
|
|
|
|
|
|
|
radio ${radio:-1}
|
|
|
|
macfilter 0
|
|
|
|
maclist none
|
|
|
|
wds none
|
|
|
|
channel ${channel:-0}
|
|
|
|
country ${country:-IL0}
|
|
|
|
maxassoc ${maxassoc:-128}
|
|
|
|
|
|
|
|
$vif_pre_up
|
|
|
|
up
|
|
|
|
$vif_post_up
|
|
|
|
EOF
|
2006-06-26 00:20:13 +08:00
|
|
|
eval "$if_up"
|
2006-10-16 00:23:36 +08:00
|
|
|
eval "$nas_cmd"
|
2006-06-25 23:42:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-15 23:27:34 +08:00
|
|
|
detect_broadcom() {
|
|
|
|
[ -f /proc/net/wl0 ] || return
|
|
|
|
config_get type wl0 type
|
|
|
|
[ "$type" = broadcom ] && return
|
|
|
|
cat <<EOF
|
|
|
|
config wifi-device wl0
|
|
|
|
option type broadcom
|
|
|
|
option channel 5
|
|
|
|
|
|
|
|
config wifi-iface
|
|
|
|
option device wl0
|
|
|
|
option mode ap
|
|
|
|
option ssid OpenWrt
|
|
|
|
option hidden 0
|
|
|
|
option encryption none
|
|
|
|
|
|
|
|
EOF
|
|
|
|
}
|