2 append DRIVERS
"mac80211"
7 local macaddr
="$(config_get "$device" macaddr | tr 'A-Z' 'a-z')"
8 config_get phy
"$device" phy
9 [ -z "$phy" -a -n "$macaddr" ] && {
10 for phy
in $
(ls /sys
/class
/ieee80211
2>/dev
/null
); do
11 [ "$macaddr" = "$(cat /sys/class/ieee80211/${phy}/macaddress)" ] ||
continue
12 config_set
"$device" phy
"$phy"
15 config_get phy
"$device" phy
17 [ -n "$phy" -a -d "/sys/class/ieee80211/$phy" ] ||
{
18 echo "PHY for wifi device $1 not found"
21 [ -z "$macaddr" ] && {
22 config_set
"$device" macaddr
"$(cat /sys/class/ieee80211/${phy}/macaddress)"
29 local adhoc sta ap monitor mesh
31 config_get vifs
"$device" vifs
33 config_get mode
"$vif" mode
35 adhoc|sta|ap|monitor|mesh
)
38 *) echo "$device($vif): Invalid mode, ignored."; continue;;
42 config_set
"$device" vifs
"${ap:+$ap }${adhoc:+$adhoc }${sta:+$sta }${monitor:+$monitor }${mesh:+$mesh}"
49 find_mac80211_phy
"$device" ||
return 0
50 config_get phy
"$device" phy
52 set_wifi_down
"$device"
53 # kill all running hostapd and wpa_supplicant processes that
54 # are running on atheros/mac80211 vifs
55 for pid
in `pidof hostapd wpa_supplicant`; do
56 grep wlan
/proc
/$pid/cmdline
>/dev
/null
&& \
61 for wdev
in $
(ls /sys
/class
/ieee80211
/${phy}/device
/net
2>/dev
/null
); do
62 ifconfig
"$wdev" down
2>/dev
/null
72 iw
"$phy" info |
grep -E -m1 "(\* ${chan:-....} MHz${chan:+|\\[$chan\\]})" | grep MHz | awk '{print $2}'
76 config_get channel "$device" channel
77 config_get vifs "$device" vifs
78 config_get txpower "$device" txpower
79 find_mac80211_phy "$device" || return 0
80 config_get phy "$device" phy
84 [ "$channel" = "auto
" -o "$channel" = "0" ] || {
89 # convert channel to frequency
90 local freq="$
(get_freq
"$phy" "${fixed:+$channel}")"
92 wifi_fixup_hwmode "$device" "g
"
94 while [ -d "/sys
/class
/net
/wlan
$i" ]; do
98 config_get ifname "$vif" ifname
102 config_set "$vif" ifname "$ifname"
104 config_get enc "$vif" encryption
105 config_get mode "$vif" mode
106 config_get ssid "$vif" ssid
108 # It is far easier to delete and create the desired interface
111 iw phy "$phy" interface add "$ifname" type adhoc
114 # Hostapd will handle recreating the interface and
115 # it's accompanying monitor
116 iw phy "$phy" interface add "$ifname" type managed
119 config_get mesh_id "$vif" mesh_id
120 iw phy "$phy" interface add "$ifname" type mp mesh_id "$mesh_id"
123 iw phy "$phy" interface add "$ifname" type monitor
126 iw phy "$phy" interface add "$ifname" type managed
130 # All interfaces must have unique mac addresses
131 # which can either be explicitly set in the device
132 # section, or automatically generated
133 config_get macaddr "$device" macaddr
134 local mac_1="${macaddr%%:*}"
135 local mac_2="${macaddr#*:}"
137 config_get vif_mac "$vif" macaddr
138 [ -n "$vif_mac" ] || {
139 if [ "$i" -gt 0 ]; then
140 offset="$
(( 2 + $i * 4 ))"
144 vif_mac="$
( printf %02x $
(($mac_1 + $offset)) ):$mac_2"
146 ifconfig "$ifname" hw ether "$vif_mac"
148 # We attempt to set teh channel for all interfaces, although
149 # mac80211 may not support it or the driver might not yet
150 [ -n "$fixed" ] && iw dev "$ifname" set channel "$channel"
159 # ALL ap functionality will be passed to hostapd
161 # !! mesh / adhoc / station !!
162 # none -> NO encryption
164 # wep + keymgmt = '' -> we use iw to connect to the
167 # wep + keymgmt = 'NONE' -> wpa_supplicant will be
168 # configured to handle the wep connection
169 if [ ! "$mode" = "ap
" ]; then
172 config_get keymgmt "$vif" keymgmt
173 if [ -e "$keymgmt" ]; then
174 for idx in 1 2 3 4; do
177 config_get key "$vif" "key
${idx}"
178 if [ -n "$key" ]; then
179 append keystring "${zidx}:${key} "
185 config_get key "$vif" key
190 # txpower is not yet implemented in iw
191 config_get vif_txpower "$vif" txpower
192 # use vif_txpower (from wifi-iface) to override txpower (from
193 # wifi-device) if the latter doesn't exist
194 txpower="${txpower:-$vif_txpower}"
195 [ -z "$txpower" ] || iwconfig "$ifname" txpower "${txpower%%.*}"
197 config_get frag "$vif" frag
198 if [ -n "$frag" ]; then
199 iw phy "$phy" set frag "${frag%%.*}"
202 config_get rts "$vif" rts
203 if [ -n "$rts" ]; then
204 iw phy "$phy" set rts "${frag%%.*}"
207 ifconfig "$ifname" up
210 net_cfg="$
(find_net_config
"$vif")"
211 [ -z "$net_cfg" ] || {
212 bridge="$
(bridge_interface
"$net_cfg")"
213 config_set "$vif" bridge "$bridge"
214 start_net "$ifname" "$net_cfg"
217 set_wifi_up "$vif" "$ifname"
220 if eval "type hostapd_setup_vif
" 2>/dev/null >/dev/null; then
221 hostapd_setup_vif "$vif" nl80211 || {
222 echo "enable_mac80211
($device): Failed to
set up wpa
for interface
$ifname" >&2
223 # make sure this wifi interface won't accidentally stay open without encryption
224 ifconfig "$ifname" down
230 config_get bssid "$vif" bssid
231 iw dev "$ifname" ibss join "$ssid" $freq ${fixed:+fixed-freq} $bssid
236 iw dev "$ifname" connect "$ssid"
239 if [ -e "$keymgmt" ]; then
240 [ -n "$keystring" ] &&
241 iw dev "$ifname" connect "$ssid" key "$keystring"
243 if eval "type wpa_supplicant_setup_vif
" 2>/dev/null >/dev/null; then
244 wpa_supplicant_setup_vif "$vif" wext || {
245 echo "enable_mac80211
($device): Failed to
set up wpa_supplicant
for interface
$ifname" >&2
246 # make sure this wifi interface won't accidentally stay open without encryption
247 ifconfig "$ifname" down
254 if eval "type wpa_supplicant_setup_vif
" 2>/dev/null >/dev/null; then
255 wpa_supplicant_setup_vif "$vif" wext || {
256 echo "enable_mac80211
($device): Failed to
set up wpa_supplicant
for interface
$ifname" >&2
257 # make sure this wifi interface won't accidentally stay open without encryption
258 ifconfig "$ifname" down
272 config_get phy "$1" phy
274 find_mac80211_phy "$1" || return 0
275 config_get phy "$1" phy
277 [ "$phy" = "$dev" ] && found=1
283 for dev in $(ls /sys/class/ieee80211); do
285 config_foreach check_device wifi-device
286 [ "$found" -gt 0 ] && continue
289 config_get type "wifi
$devidx" type
290 [ -n "$type" ] || break
291 devidx=$(($devidx + 1))
295 iw phy "$dev" info | grep -q 'HT cap' && mode_11n="n
"
296 iw phy "$dev" info | grep -q '2412 MHz' || mode_band="a
"
299 config wifi-device wifi$devidx
302 option macaddr $(cat /sys/class/ieee80211/${dev}/macaddress)
303 option hwmode 11${mode_11n}${mode_band}
304 # REMOVE THIS LINE TO ENABLE WIFI:
308 option device wifi$devidx
312 option encryption none