2006-11-23 20:27:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
append DRIVERS "atheros"
|
|
|
|
|
|
|
|
scan_atheros() {
|
|
|
|
local device="$1"
|
|
|
|
local wds
|
|
|
|
local adhoc sta ap
|
|
|
|
|
|
|
|
config_get vifs "$device" vifs
|
|
|
|
for vif in $vifs; do
|
|
|
|
|
|
|
|
config_get ifname "$vif" ifname
|
|
|
|
config_set "$vif" ifname "${ifname:-ath}"
|
|
|
|
|
|
|
|
config_get mode "$vif" mode
|
|
|
|
case "$mode" in
|
2007-05-21 10:22:02 +03:00
|
|
|
adhoc|ahdemo|sta|ap)
|
2006-11-23 20:27:22 +02:00
|
|
|
append $mode "$vif"
|
|
|
|
;;
|
|
|
|
wds)
|
|
|
|
config_get addr "$vif" bssid
|
2006-12-22 09:58:06 +02:00
|
|
|
config_get ssid "$vif" ssid
|
|
|
|
[ -z "$addr" -a -n "$ssid" ] && {
|
|
|
|
config_set "$vif" wds 1
|
|
|
|
config_set "$vif" mode sta
|
|
|
|
mode="sta"
|
|
|
|
addr="$ssid"
|
|
|
|
}
|
|
|
|
${addr:+append $mode "$vif"}
|
2006-11-23 20:27:22 +02:00
|
|
|
;;
|
|
|
|
*) echo "$device($vif): Invalid mode, ignored."; continue;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2006-12-22 09:58:06 +02:00
|
|
|
case "${adhoc:+1}:${sta:+1}:${ap+1}" in
|
2006-11-23 20:27:22 +02:00
|
|
|
# valid mode combinations
|
2006-12-22 09:58:06 +02:00
|
|
|
1::) wds="";;
|
2007-05-31 06:41:01 +03:00
|
|
|
1::1);;
|
2006-11-23 20:27:22 +02:00
|
|
|
:1:1)config_set "$device" nosbeacon 1;; # AP+STA, can't use beacon timers for STA
|
|
|
|
:1:);;
|
|
|
|
::1);;
|
2007-01-08 18:39:40 +02:00
|
|
|
::);;
|
2006-11-23 20:27:22 +02:00
|
|
|
*) echo "$device: Invalid mode combination in config"; return 1;;
|
|
|
|
esac
|
|
|
|
|
2007-05-21 10:22:02 +03:00
|
|
|
config_set "$device" vifs "${ap:+$ap }${adhoc:+$adhoc }${ahdemo:+$ahdemo }${sta:+$sta }${wds:+$wds }"
|
2006-12-22 09:58:06 +02:00
|
|
|
}
|
|
|
|
|
2006-11-23 20:27:22 +02:00
|
|
|
|
|
|
|
disable_atheros() (
|
|
|
|
local device="$1"
|
2006-12-22 09:58:06 +02:00
|
|
|
|
2007-07-22 21:32:47 +03:00
|
|
|
set_wifi_down "$device"
|
2006-12-22 09:58:06 +02:00
|
|
|
# kill all running hostapd and wpa_supplicant processes that
|
|
|
|
# are running on atheros vifs
|
|
|
|
for pid in `pidof hostapd wpa_supplicant`; do
|
|
|
|
grep ath /proc/$pid/cmdline >/dev/null && \
|
|
|
|
kill $pid
|
|
|
|
done
|
2006-11-23 20:27:22 +02:00
|
|
|
|
|
|
|
include /lib/network
|
|
|
|
cd /proc/sys/net
|
|
|
|
for dev in *; do
|
|
|
|
grep "$device" "$dev/%parent" >/dev/null 2>/dev/null && {
|
|
|
|
ifconfig "$dev" down
|
|
|
|
unbridge "$dev"
|
2006-12-22 09:58:06 +02:00
|
|
|
wlanconfig "$dev" destroy
|
2006-11-23 20:27:22 +02:00
|
|
|
}
|
|
|
|
done
|
2006-12-22 09:58:06 +02:00
|
|
|
return 0
|
2006-11-23 20:27:22 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
enable_atheros() {
|
2007-08-04 14:31:40 +03:00
|
|
|
local device="$1"
|
2006-11-23 20:27:22 +02:00
|
|
|
config_get channel "$device" channel
|
|
|
|
config_get vifs "$device" vifs
|
2008-01-25 22:24:25 +02:00
|
|
|
|
|
|
|
[ auto = "$channel" ] && channel=0
|
|
|
|
|
2007-01-04 03:29:01 +02:00
|
|
|
local first=1
|
2006-11-23 20:27:22 +02:00
|
|
|
for vif in $vifs; do
|
|
|
|
nosbeacon=
|
|
|
|
config_get ifname "$vif" ifname
|
|
|
|
config_get enc "$vif" encryption
|
|
|
|
config_get mode "$vif" mode
|
|
|
|
|
|
|
|
[ "$mode" = sta ] && config_get nosbeacon "$device" nosbeacon
|
|
|
|
|
|
|
|
config_get ifname "$vif" ifname
|
|
|
|
ifname=$(wlanconfig "$ifname" create wlandev "$device" wlanmode "$mode" ${nosbeacon:+nosbeacon})
|
|
|
|
[ $? -ne 0 ] && {
|
2006-12-22 09:58:06 +02:00
|
|
|
echo "enable_atheros($device): Failed to set up $mode vif $ifname" >&2
|
2006-11-23 20:27:22 +02:00
|
|
|
continue
|
|
|
|
}
|
2006-12-22 09:58:06 +02:00
|
|
|
config_set "$vif" ifname "$ifname"
|
|
|
|
|
2007-01-04 03:29:01 +02:00
|
|
|
[ "$first" = 1 ] && {
|
|
|
|
# only need to change freq band and channel on the first vif
|
2007-09-29 22:14:42 +03:00
|
|
|
config_get agmode "$device" agmode
|
2008-07-20 03:51:00 +03:00
|
|
|
[ -z "$agmode" ] && config_get agmode "$device" mode
|
|
|
|
|
2007-01-04 03:29:01 +02:00
|
|
|
pureg=0
|
2007-01-10 18:14:16 +02:00
|
|
|
case "$agmode" in
|
|
|
|
*b) agmode=11b;;
|
|
|
|
*bg) agmode=11g;;
|
|
|
|
*g) agmode=11g; pureg=1;;
|
|
|
|
*a) agmode=11a;;
|
2007-04-16 23:59:16 +03:00
|
|
|
*) agmode=auto;;
|
2007-01-04 03:29:01 +02:00
|
|
|
esac
|
2007-01-15 02:10:00 +02:00
|
|
|
iwpriv "$ifname" mode "$agmode"
|
2007-01-04 03:29:01 +02:00
|
|
|
iwpriv "$ifname" pureg "$pureg"
|
2007-04-16 23:59:16 +03:00
|
|
|
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null
|
2007-01-04 03:29:01 +02:00
|
|
|
}
|
2007-02-28 01:10:53 +02:00
|
|
|
|
2007-06-02 05:22:01 +03:00
|
|
|
config_get_bool hidden "$vif" hidden 0
|
2007-02-28 01:10:53 +02:00
|
|
|
iwpriv "$ifname" hide_ssid "$hidden"
|
2006-12-22 10:02:59 +02:00
|
|
|
|
2007-11-28 05:07:18 +02:00
|
|
|
config_get ff "$vif" ff
|
|
|
|
if [ -n "$ff" ]; then
|
|
|
|
iwpriv "$ifname" ff "$ff"
|
|
|
|
fi
|
2007-06-02 05:22:01 +03:00
|
|
|
|
2006-12-22 09:58:06 +02:00
|
|
|
config_get wds "$vif" wds
|
|
|
|
case "$wds" in
|
|
|
|
1|on|enabled) wds=1;;
|
|
|
|
*) wds=0;;
|
|
|
|
esac
|
|
|
|
iwpriv "$ifname" wds "$wds"
|
|
|
|
|
2006-11-23 20:27:22 +02:00
|
|
|
wpa=
|
|
|
|
case "$enc" in
|
|
|
|
WEP|wep)
|
|
|
|
for idx in 1 2 3 4; do
|
|
|
|
config_get key "$vif" "key${idx}"
|
|
|
|
iwconfig "$ifname" enc "[$idx]" "${key:-off}"
|
|
|
|
done
|
|
|
|
config_get key "$vif" key
|
2007-03-24 03:01:18 +02:00
|
|
|
key="${key:-1}"
|
|
|
|
case "$key" in
|
|
|
|
[1234]) iwconfig "$ifname" enc "[$key]";;
|
|
|
|
*) iwconfig "$ifname" enc "$key";;
|
|
|
|
esac
|
2006-11-23 20:27:22 +02:00
|
|
|
;;
|
2007-03-15 05:21:35 +02:00
|
|
|
PSK|psk|PSK2|psk2)
|
|
|
|
config_get key "$vif" key
|
|
|
|
;;
|
2006-11-23 20:27:22 +02:00
|
|
|
esac
|
2006-12-22 09:58:06 +02:00
|
|
|
|
2006-11-23 20:27:22 +02:00
|
|
|
case "$mode" in
|
2006-12-22 09:58:06 +02:00
|
|
|
wds)
|
|
|
|
config_get addr "$vif" bssid
|
|
|
|
iwpriv "$ifname" wds_add "$addr"
|
2006-11-23 20:27:22 +02:00
|
|
|
;;
|
2007-05-21 10:22:02 +03:00
|
|
|
adhoc|ahdemo)
|
2007-03-18 14:59:44 +02:00
|
|
|
config_get addr "$vif" bssid
|
|
|
|
[ -z "$addr" ] || {
|
|
|
|
iwconfig "$ifname" ap "$addr"
|
|
|
|
}
|
|
|
|
;;
|
2006-12-22 09:58:06 +02:00
|
|
|
esac
|
2007-05-21 09:34:05 +03:00
|
|
|
config_get ssid "$vif" ssid
|
2007-03-15 05:21:35 +02:00
|
|
|
|
2007-11-28 21:25:54 +02:00
|
|
|
config_get_bool bgscan "$vif" bgscan
|
|
|
|
[ -n "$bgscan" ] && iwpriv "$ifname" bgscan "$bgscan"
|
2007-03-15 05:21:35 +02:00
|
|
|
|
2007-11-28 21:25:54 +02:00
|
|
|
config_get_bool antdiv "$device" diversity
|
|
|
|
[ -n "$antdiv" ] && sysctl -w dev."$device".diversity="$antdiv" >&-
|
2007-03-15 05:21:35 +02:00
|
|
|
|
|
|
|
config_get antrx "$device" rxantenna
|
2007-11-28 21:25:54 +02:00
|
|
|
[ -n "$antrx" ] && sysctl -w dev."$device".rxantenna="$antrx" >&-
|
2007-03-15 05:21:35 +02:00
|
|
|
|
|
|
|
config_get anttx "$device" txantenna
|
2007-11-28 21:25:54 +02:00
|
|
|
[ -n "$anttx" ] && sysctl -w dev."$device".txantenna="$anttx" >&-
|
2007-03-15 05:21:35 +02:00
|
|
|
|
|
|
|
config_get distance "$device" distance
|
2007-11-28 21:25:54 +02:00
|
|
|
[ -n "$distance" ] && athctrl -i "$device" -d "$distance" >&-
|
2007-03-15 05:21:35 +02:00
|
|
|
|
|
|
|
config_get txpwr "$vif" txpower
|
2007-11-28 21:25:54 +02:00
|
|
|
[ -n "$txpwr" ] && iwconfig "$ifname" txpower "${txpwr%%.*}"
|
2007-03-15 05:21:35 +02:00
|
|
|
|
2007-11-28 22:34:00 +02:00
|
|
|
config_get rate "$vif" rate
|
|
|
|
[ -n "$rate" ] && iwconfig "$ifname" rate "${rate%%.*}"
|
|
|
|
|
2008-01-17 03:23:38 +02:00
|
|
|
config_get mcast_rate "$vif" mcast_rate
|
|
|
|
[ -n "$mcast_rate" ] && iwpriv "$ifname" mcast_rate "${mcast_rate%%.*}"
|
|
|
|
|
2007-06-27 16:25:55 +03:00
|
|
|
config_get frag "$vif" frag
|
2007-11-28 21:25:54 +02:00
|
|
|
[ -n "$frag" ] && iwconfig "$ifname" frag "${frag%%.*}"
|
2007-06-27 16:25:55 +03:00
|
|
|
|
|
|
|
config_get rts "$vif" rts
|
2007-11-28 21:25:54 +02:00
|
|
|
[ -n "$rts" ] && iwconfig "$ifname" rts "${rts%%.*}"
|
2007-06-27 16:25:55 +03:00
|
|
|
|
2007-11-28 22:34:00 +02:00
|
|
|
config_get_bool doth "$vif" 80211h
|
|
|
|
[ -n "$doth" ] && iwpriv "$ifname" doth "$doth"
|
|
|
|
|
|
|
|
config_get_bool comp "$vif" compression
|
|
|
|
[ -n "$comp" ] && iwpriv "$ifname" compression "$comp"
|
|
|
|
|
2008-03-13 16:54:26 +02:00
|
|
|
config_get_bool minrate "$vif" minrate
|
|
|
|
[ -n "$minrate" ] && iwpriv "$ifname" minrate "$minrate"
|
|
|
|
|
|
|
|
config_get_bool maxrate "$vif" maxrate
|
|
|
|
[ -n "$maxrate" ] && iwpriv "$ifname" maxrate "$maxrate"
|
|
|
|
|
2007-11-28 22:34:00 +02:00
|
|
|
config_get_bool burst "$vif" bursting
|
|
|
|
[ -n "$burst" ] && iwpriv "$ifname" burst "$burst"
|
|
|
|
|
|
|
|
config_get_bool wmm "$vif" wmm
|
|
|
|
[ -n "$wmm" ] && iwpriv "$ifname" wmm "$wmm"
|
|
|
|
|
2008-01-17 03:23:38 +02:00
|
|
|
config_get_bool xr "$vif" xr
|
|
|
|
[ -n "$xr" ] && iwpriv "$ifname" xr "$xr"
|
|
|
|
|
|
|
|
config_get_bool ar "$vif" ar
|
|
|
|
[ -n "$ar" ] && iwpriv "$ifname" ar "$ar"
|
|
|
|
|
|
|
|
config_get_bool turbo "$vif" turbo
|
|
|
|
[ -n "$turbo" ] && iwpriv "$ifname" turbo "$turbo"
|
|
|
|
|
2008-02-06 00:25:29 +02:00
|
|
|
config_get_bool doth "$vif" doth 0
|
|
|
|
[ -n "$doth" ] && iwpriv "$ifname" doth "$doth"
|
|
|
|
|
2007-11-28 22:34:00 +02:00
|
|
|
config_get maclist "$vif" maclist
|
|
|
|
[ -n "$maclist" ] && {
|
|
|
|
# flush MAC list
|
|
|
|
iwpriv "$ifname" maccmd 3
|
|
|
|
for mac in $maclist; do
|
|
|
|
iwpriv "$ifname" addmac "$mac"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
config_get macpolicy "$vif" macpolicy
|
|
|
|
case "$macpolicy" in
|
|
|
|
allow)
|
|
|
|
iwpriv "$ifname" maccmd 1
|
|
|
|
;;
|
|
|
|
deny)
|
|
|
|
iwpriv "$ifname" maccmd 2
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# default deny policy if mac list exists
|
|
|
|
[ -n "$maclist" ] && iwpriv "$ifname" maccmd 2
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-12-22 09:58:06 +02:00
|
|
|
ifconfig "$ifname" up
|
2006-11-23 20:27:22 +02:00
|
|
|
local net_cfg bridge
|
|
|
|
net_cfg="$(find_net_config "$vif")"
|
|
|
|
[ -z "$net_cfg" ] || {
|
|
|
|
bridge="$(bridge_interface "$net_cfg")"
|
2006-12-22 09:58:06 +02:00
|
|
|
config_set "$vif" bridge "$bridge"
|
|
|
|
start_net "$ifname" "$net_cfg"
|
2006-11-23 20:27:22 +02:00
|
|
|
}
|
2006-12-27 02:55:59 +02:00
|
|
|
iwconfig "$ifname" essid "$ssid"
|
2007-07-22 21:32:47 +03:00
|
|
|
set_wifi_up "$vif" "$ifname"
|
2006-12-22 09:58:06 +02:00
|
|
|
case "$mode" in
|
|
|
|
ap)
|
2007-05-08 04:11:33 +03:00
|
|
|
config_get_bool isolate "$vif" isolate 0
|
2007-05-10 09:54:47 +03:00
|
|
|
iwpriv "$ifname" ap_bridge "$((isolate^1))"
|
2007-05-08 04:11:33 +03:00
|
|
|
|
2007-04-19 14:42:39 +03:00
|
|
|
if eval "type hostapd_setup_vif" 2>/dev/null >/dev/null; then
|
|
|
|
hostapd_setup_vif "$vif" madwifi || {
|
|
|
|
echo "enable_atheros($device): Failed to set up wpa for interface $ifname" >&2
|
|
|
|
# make sure this wifi interface won't accidentally stay open without encryption
|
|
|
|
ifconfig "$ifname" down
|
|
|
|
wlanconfig "$ifname" destroy
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fi
|
2006-12-22 09:58:06 +02:00
|
|
|
;;
|
|
|
|
wds|sta)
|
2008-02-13 05:40:45 +02:00
|
|
|
config_get_bool usepassphrase "$vif" passphrase 1
|
|
|
|
case "$enc" in
|
2007-03-15 05:21:35 +02:00
|
|
|
PSK|psk|PSK2|psk2)
|
|
|
|
case "$enc" in
|
|
|
|
PSK|psk)
|
2007-10-18 23:51:21 +03:00
|
|
|
proto='proto=WPA'
|
2008-02-13 05:40:45 +02:00
|
|
|
if [ "$usepassphrase" = "1" ]; then
|
|
|
|
passphrase="psk=\"${key}\""
|
|
|
|
else
|
|
|
|
passphrase="psk=${key}"
|
|
|
|
fi
|
2007-10-18 23:51:21 +03:00
|
|
|
;;
|
2007-03-15 05:21:35 +02:00
|
|
|
PSK2|psk2)
|
2007-10-18 23:51:21 +03:00
|
|
|
proto='proto=RSN'
|
2008-02-13 05:40:45 +02:00
|
|
|
if [ "$usepassphrase" = "1" ]; then
|
|
|
|
passphrase="psk=\"${key}\""
|
|
|
|
else
|
|
|
|
passphrase="psk=${key}"
|
|
|
|
fi
|
2007-10-18 23:51:21 +03:00
|
|
|
;;
|
2007-03-15 05:21:35 +02:00
|
|
|
esac
|
|
|
|
cat > /var/run/wpa_supplicant-$ifname.conf <<EOF
|
|
|
|
network={
|
|
|
|
scan_ssid=1
|
|
|
|
ssid="$ssid"
|
|
|
|
key_mgmt=WPA-PSK
|
|
|
|
$proto
|
2008-02-13 05:40:45 +02:00
|
|
|
$passphrase
|
2007-03-15 05:21:35 +02:00
|
|
|
}
|
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
WPA|wpa|WPA2|wpa2)
|
|
|
|
#add wpa_supplicant calls here
|
|
|
|
;;
|
|
|
|
esac
|
2007-07-29 22:20:34 +03:00
|
|
|
[ -z "$proto" ] || wpa_supplicant ${bridge:+ -b $bridge} -B -D wext -i "$ifname" -c /var/run/wpa_supplicant-$ifname.conf
|
2006-12-22 09:58:06 +02:00
|
|
|
;;
|
|
|
|
esac
|
2007-01-04 03:29:01 +02:00
|
|
|
first=0
|
2006-11-23 20:27:22 +02:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
detect_atheros() {
|
|
|
|
cd /proc/sys/dev
|
|
|
|
[ -d ath ] || return
|
2007-03-24 02:43:05 +02:00
|
|
|
for dev in $(ls -d wifi* 2>&-); do
|
2006-11-23 20:27:22 +02:00
|
|
|
config_get type "$dev" type
|
|
|
|
[ "$type" = atheros ] && return
|
|
|
|
cat <<EOF
|
|
|
|
config wifi-device $dev
|
|
|
|
option type atheros
|
2008-01-25 22:24:25 +02:00
|
|
|
option channel auto
|
2007-03-16 01:17:16 +02:00
|
|
|
|
2007-07-04 14:15:12 +03:00
|
|
|
# REMOVE THIS LINE TO ENABLE WIFI:
|
|
|
|
option disabled 1
|
2006-11-23 20:27:22 +02:00
|
|
|
|
|
|
|
config wifi-iface
|
2007-03-15 05:21:35 +02:00
|
|
|
option device $dev
|
2007-03-16 01:17:16 +02:00
|
|
|
option network lan
|
2007-03-15 05:21:35 +02:00
|
|
|
option mode ap
|
|
|
|
option ssid OpenWrt
|
2006-11-23 20:27:22 +02:00
|
|
|
option encryption none
|
|
|
|
EOF
|
|
|
|
done
|
|
|
|
}
|