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
|
|
|
|
|
|
|
# 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() {
|
|
|
|
config_get channel "$device" channel
|
|
|
|
config_get vifs "$device" vifs
|
2006-12-22 09:58:06 +02:00
|
|
|
|
|
|
|
disable_atheros "$device"
|
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-01-10 18:14:16 +02:00
|
|
|
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-04-16 23:59:16 +03:00
|
|
|
iwconfig "$ifname" channel 0 >/dev/null 2>/dev/null
|
|
|
|
ifconfig "$ifname" up
|
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-06-02 05:22:01 +03:00
|
|
|
config_get_bool ff "$vif" ff 0
|
|
|
|
iwpriv "$ifname" ff "$ff"
|
|
|
|
|
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
|
|
|
|
|
|
|
[ "$mode" = "sta" ] && {
|
|
|
|
config_get_bool bgscan "$vif" bgscan 1
|
|
|
|
iwpriv "$ifname" bgscan "$bgscan"
|
|
|
|
}
|
|
|
|
|
|
|
|
config_get_bool antdiv "$device" diversity 1
|
|
|
|
sysctl -w dev."$device".diversity="$antdiv" >&-
|
|
|
|
|
|
|
|
config_get antrx "$device" rxantenna
|
|
|
|
if [ -n "$antrx" ]; then
|
|
|
|
sysctl -w dev."$device".rxantenna="$antrx" >&-
|
|
|
|
fi
|
|
|
|
|
|
|
|
config_get anttx "$device" txantenna
|
|
|
|
if [ -n "$anttx" ]; then
|
|
|
|
sysctl -w dev."$device".txantenna="$anttx" >&-
|
|
|
|
fi
|
|
|
|
|
|
|
|
config_get distance "$device" distance
|
|
|
|
if [ -n "$distance" ]; then
|
|
|
|
athctrl -i "$device" -d "$distance" >&-
|
|
|
|
fi
|
|
|
|
|
|
|
|
config_get txpwr "$vif" txpower
|
|
|
|
if [ -n "$txpwr" ]; then
|
|
|
|
iwconfig "$ifname" txpower "${txpwr%%.*}"
|
|
|
|
fi
|
|
|
|
|
2006-12-22 09:58:06 +02:00
|
|
|
ifconfig "$ifname" up
|
2007-04-16 23:59:16 +03:00
|
|
|
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null
|
2007-03-15 05:21:35 +02:00
|
|
|
|
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"
|
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)
|
2007-03-15 05:21:35 +02:00
|
|
|
case "$enc" in
|
|
|
|
PSK|psk|PSK2|psk2)
|
|
|
|
case "$enc" in
|
|
|
|
PSK|psk)
|
|
|
|
proto='proto=WPA';;
|
|
|
|
PSK2|psk2)
|
|
|
|
proto='proto=RSN';;
|
|
|
|
esac
|
|
|
|
cat > /var/run/wpa_supplicant-$ifname.conf <<EOF
|
|
|
|
ctrl_interface=/var/run/wpa_supplicant
|
|
|
|
network={
|
|
|
|
scan_ssid=1
|
|
|
|
ssid="$ssid"
|
|
|
|
key_mgmt=WPA-PSK
|
|
|
|
$proto
|
|
|
|
psk="$key"
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
WPA|wpa|WPA2|wpa2)
|
|
|
|
#add wpa_supplicant calls here
|
|
|
|
;;
|
|
|
|
esac
|
2007-03-24 03:03:42 +02:00
|
|
|
[ -z "$proto" ] || wpa_supplicant ${bridge:+ -b $bridge} -Bw -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
|
|
|
|
option channel 5
|
2007-03-15 05:21:35 +02:00
|
|
|
# option diversity 1
|
|
|
|
# option txantenna 0
|
|
|
|
# option rxantenna 0
|
|
|
|
# option distance 2000
|
2007-03-16 01:17:16 +02:00
|
|
|
# disable radio to prevent an open ap after reflashing:
|
2007-03-16 15:56:36 +02:00
|
|
|
option disabled 1
|
2007-03-16 01:17:16 +02:00
|
|
|
|
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
|
|
|
|
option hidden 0
|
|
|
|
# option txpower 15
|
|
|
|
# option bgscan enable
|
2006-11-23 20:27:22 +02:00
|
|
|
option encryption none
|
|
|
|
|
|
|
|
EOF
|
|
|
|
done
|
|
|
|
}
|