2 append DRIVERS
"mac80211"
4 mac80211_hostapd_setup_base
() {
8 cfgfile
="/var/run/hostapd-$phy.conf"
9 macfile
="/var/run/hostapd-$phy.maclist"
10 [ -e "$macfile" ] && rm -f "$macfile"
12 config_get device
"$vif" device
13 config_get country
"$device" country
14 config_get hwmode
"$device" hwmode
15 config_get channel
"$device" channel
16 config_get beacon_int
"$device" beacon_int
17 config_get basic_rate_list
"$device" basic_rate
18 config_get_bool noscan
"$device" noscan
19 config_get_bool short_preamble
"$device" short_preamble
"0"
21 hostapd_set_log_options base_cfg
"$device"
23 [ -n "$channel" -a -z "$hwmode" ] && wifi_fixup_hwmode
"$device"
25 [ "$channel" = auto
] && {
26 channel
=$
(iw phy
"$phy" info | \
27 sed -ne '/MHz/ { /disabled\|passive\|radar/d; s/.*\[//; s/\].*//; p; q }')
28 config_set
"$device" channel
"$channel"
32 config_get hwmode_11n
"$device" hwmode_11n
33 [ -n "$hwmode_11n" ] && {
35 append base_cfg
"ieee80211n=1" "$N"
36 config_get htmode
"$device" htmode
37 config_get ht_capab_list
"$device" ht_capab
39 HT20|HT40
+|HT40-
) ht_capab
="[$htmode]";;
42 for cap
in $ht_capab_list; do
43 ht_capab
="$ht_capab[$cap]"
45 [ -n "$ht_capab" ] && append base_cfg
"ht_capab=$ht_capab" "$N"
50 [ -n "$country" ] && country_ie
=1
51 config_get_bool country_ie
"$device" country_ie
"$country_ie"
52 [ "$country_ie" -gt 0 ] && append base_cfg
"ieee80211d=1" "$N"
54 config_get macfilter
"$vif" macfilter
57 append base_cfg
"macaddr_acl=1" "$N"
58 append base_cfg
"accept_mac_file=$macfile" "$N"
61 append base_cfg
"macaddr_acl=0" "$N"
62 append base_cfg
"deny_mac_file=$macfile" "$N"
65 config_get maclist
"$vif" maclist
66 [ -n "$maclist" ] && {
67 for mac
in $maclist; do
68 echo "$mac" >> $macfile
73 [ -n "$basic_rate_list" ] && {
74 for br
in $basic_rate_list; do
75 brval
="$(($br / 100))"
76 [ -n "$brstr" ] && brstr
="$brstr "
81 append base_cfg
"preamble=$short_preamble" "$N"
83 cat >> "$cfgfile" <<EOF
84 ctrl_interface=/var/run/hostapd-$phy
89 wmm_ac_bk_txop_limit=0
94 wmm_ac_be_txop_limit=0
99 wmm_ac_vi_txop_limit=94
104 wmm_ac_vo_txop_limit=47
106 tx_queue_data3_aifs=7
107 tx_queue_data3_cwmin=15
108 tx_queue_data3_cwmax=1023
109 tx_queue_data3_burst=0
110 tx_queue_data2_aifs=3
111 tx_queue_data2_cwmin=15
112 tx_queue_data2_cwmax=63
113 tx_queue_data2_burst=0
114 tx_queue_data1_aifs=1
115 tx_queue_data1_cwmin=7
116 tx_queue_data1_cwmax=15
117 tx_queue_data1_burst=3.0
118 tx_queue_data0_aifs=1
119 tx_queue_data0_cwmin=3
120 tx_queue_data0_cwmax=7
121 tx_queue_data0_burst=1.5
122 ${hwmode:+hw_mode=$hwmode}
123 ${channel:+channel=$channel}
124 ${beacon_int:+beacon_int=$beacon_int}
125 ${country:+country_code=$country}
126 ${noscan:+noscan=$noscan}
127 ${brstr:+basic_rates=$brstr}
133 mac80211_hostapd_setup_bss
() {
138 cfgfile
="/var/run/hostapd-$phy.conf"
139 config_get ifname
"$vif" ifname
141 if [ -f "$cfgfile" ]; then
142 append hostapd_cfg
"bss=$ifname" "$N"
144 mac80211_hostapd_setup_base
"$phy" "$ifname"
145 append hostapd_cfg
"interface=$ifname" "$N"
149 net_cfg
="$(find_net_config "$vif")"
150 [ -z "$net_cfg" ] || bridge
="$(bridge_interface "$net_cfg")"
151 config_set
"$vif" bridge
"$bridge"
153 hostapd_set_bss_options hostapd_cfg
"$vif"
155 config_get_bool wds
"$vif" wds
0
156 [ "$wds" -gt 0 ] && append hostapd_cfg
"wds_sta=1" "$N"
158 local macaddr hidden maxassoc wmm
159 config_get macaddr
"$vif" macaddr
160 config_get maxassoc
"$vif" maxassoc
161 config_get dtim_period
"$vif" dtim_period
162 config_get max_listen_int
"$vif" max_listen_int
163 config_get_bool hidden
"$vif" hidden
0
164 config_get_bool wmm
"$vif" wmm
1
165 cat >> /var
/run
/hostapd-
$phy.conf
<<EOF
169 ignore_broadcast_ssid=$hidden
170 ${dtim_period:+dtim_period=$dtim_period}
171 ${max_listen_int:+max_listen_interval=$max_listen_int}
172 ${maxassoc:+max_num_sta=$maxassoc}
176 mac80211_start_vif
() {
181 net_cfg
="$(find_net_config "$vif")"
182 [ -z "$net_cfg" ] || start_net
"$ifname" "$net_cfg"
184 set_wifi_up
"$vif" "$ifname"
187 find_mac80211_phy
() {
190 local macaddr
="$(config_get "$device" macaddr | tr 'A-Z' 'a-z')"
191 config_get phy
"$device" phy
192 [ -z "$phy" -a -n "$macaddr" ] && {
193 for phy
in $
(ls /sys
/class
/ieee80211
2>/dev
/null
); do
194 [ "$macaddr" = "$(cat /sys/class/ieee80211/${phy}/macaddress)" ] ||
continue
195 config_set
"$device" phy
"$phy"
198 config_get phy
"$device" phy
200 [ -n "$phy" -a -d "/sys/class/ieee80211/$phy" ] ||
{
201 echo "PHY for wifi device $1 not found"
204 [ -z "$macaddr" ] && {
205 config_set
"$device" macaddr
"$(cat /sys/class/ieee80211/${phy}/macaddress)"
212 local adhoc sta ap monitor mesh disabled
214 config_get vifs
"$device" vifs
216 config_get_bool disabled
"$vif" disabled
0
217 [ $disabled = 0 ] ||
continue
219 config_get mode
"$vif" mode
221 adhoc|sta|ap|monitor|mesh
)
224 *) echo "$device($vif): Invalid mode, ignored."; continue;;
228 config_set
"$device" vifs
"${ap:+$ap }${adhoc:+$adhoc }${sta:+$sta }${monitor:+$monitor }${mesh:+$mesh}"
231 list_phy_interfaces
() {
233 if [ -d "/sys/class/ieee80211/${phy}/device/net" ]; then
234 ls "/sys/class/ieee80211/${phy}/device/net" 2>/dev
/null
;
236 ls "/sys/class/ieee80211/${phy}/device" 2>/dev
/null |
grep net
: |
sed -e 's,net:,,g'
243 find_mac80211_phy
"$device" ||
return 0
244 config_get phy
"$device" phy
246 set_wifi_down
"$device"
247 # kill all running hostapd and wpa_supplicant processes that
248 # are running on atheros/mac80211 vifs
249 for pid
in `pidof hostapd`; do
250 grep -E "$phy" /proc
/$pid/cmdline
>/dev
/null
&& \
255 for wdev
in $
(list_phy_interfaces
"$phy"); do
256 [ -f "/var/run/$wdev.pid" ] && kill $
(cat /var
/run
/$wdev.pid
) >&/dev
/null
2>&1
257 for pid
in `pidof wpa_supplicant`; do
258 grep "$wdev" /proc
/$pid/cmdline
>/dev
/null
&& \
261 ifconfig
"$wdev" down
2>/dev
/null
272 iw
"$phy" info |
grep -E -m1 "(\* ${chan:-....} MHz${chan:+|\\[$chan\\]})" | grep MHz | awk '{print $2}'
275 mac80211_generate_mac() {
278 local oIFS="$IFS"; IFS=":"; set -- $mac; IFS="$oIFS"
281 [ $off -gt 0 ] && b2mask=0x02
283 printf "%02x
:%s
:%s
:%s
:%02x
:%02x
" \
284 $(( 0x$1 | $b2mask )) $2 $3 $4 \
285 $(( (0x$5 + ($off / 0x100)) % 0x100 )) \
286 $(( (0x$6 + $off) % 0x100 ))
291 config_get channel "$device" channel
292 config_get vifs "$device" vifs
293 config_get txpower "$device" txpower
294 config_get country "$device" country
295 config_get distance "$device" distance
296 config_get txantenna "$device" txantenna all
297 config_get rxantenna "$device" rxantenna all
298 config_get frag "$device" frag
299 config_get rts "$device" rts
300 find_mac80211_phy "$device" || return 0
301 config_get phy "$device" phy
306 local hostapd_ctrl=""
308 [ -n "$country" ] && {
309 iw reg get | grep -q "^country
$country:" || {
310 iw reg set "$country"
315 config_get ath9k_chanbw "$device" ath9k_chanbw
316 [ -n "$ath9k_chanbw" -a -d /sys/kernel/debug/ieee80211/$phy/ath9k ] && echo "$ath9k_chanbw" > /sys/kernel/debug/ieee80211/$phy/ath9k/chanbw
318 [ -n "$country" ] && iw reg set "$country"
319 [ "$channel" = "auto
" -o "$channel" = "0" ] || {
323 iw phy "$phy" set antenna $txantenna $rxantenna >/dev/null 2>&1
325 [ -n "$distance" ] && iw phy "$phy" set distance "$distance"
326 [ -n "$frag" ] && iw phy "$phy" set frag "${frag%%.*}"
327 [ -n "$rts" ] && iw phy "$phy" set rts "${rts%%.*}"
330 # convert channel to frequency
331 local freq="$
(get_freq
"$phy" "${fixed:+$channel}")"
333 wifi_fixup_hwmode "$device" "g
"
335 config_get ifname "$vif" ifname
336 [ -n "$ifname" ] || {
337 [ $i -gt 0 ] && ifname="wlan
${phy#phy}-$i" || ifname="wlan
${phy#phy}"
339 config_set "$vif" ifname "$ifname"
341 config_get mode "$vif" mode
342 config_get ssid "$vif" ssid
344 # It is far easier to delete and create the desired interface
347 iw phy "$phy" interface add "$ifname" type adhoc
350 # Hostapd will handle recreating the interface and
351 # it's accompanying monitor
352 apidx="$
(($apidx + 1))"
353 [ "$apidx" -gt 1 ] || iw phy "$phy" interface add "$ifname" type managed
356 config_get mesh_id "$vif" mesh_id
357 iw phy "$phy" interface add "$ifname" type mp mesh_id "$mesh_id"
360 iw phy "$phy" interface add "$ifname" type monitor
364 config_get_bool wds "$vif" wds 0
365 [ "$wds" -gt 0 ] && wdsflag="4addr on
"
366 iw phy "$phy" interface add "$ifname" type managed $wdsflag
367 config_get_bool powersave "$vif" powersave 0
368 [ "$powersave" -gt 0 ] && powersave="on
" || powersave="off
"
369 iw "$ifname" set power_save "$powersave"
373 # All interfaces must have unique mac addresses
374 # which can either be explicitly set in the device
375 # section, or automatically generated
376 config_get macaddr "$device" macaddr
377 config_get vif_mac "$vif" macaddr
378 [ -n "$vif_mac" ] || {
379 vif_mac="$
(mac80211_generate_mac
$macidx $macaddr)"
380 macidx="$
(($macidx + 1))"
382 [ "$mode" = "ap
" ] || ifconfig "$ifname" hw ether "$vif_mac"
383 config_set "$vif" macaddr "$vif_mac"
387 # ALL ap functionality will be passed to hostapd
391 # ALL station functionality will be passed to wpa_supplicant
393 if [ ! "$mode" = "ap
" ]; then
394 # We attempt to set the channel for all interfaces, although
395 # mac80211 may not support it or the driver might not yet
396 # for ap mode this is handled by hostapd
397 [ -n "$fixed" -a -n "$channel" ] && iw dev "$ifname" set channel "$channel"
404 rm -f /var/run/hostapd-$phy.conf
406 config_get mode "$vif" mode
407 [ "$mode" = "ap
" ] || continue
408 mac80211_hostapd_setup_bss "$phy" "$vif"
412 [ -n "$start_hostapd" ] && {
413 hostapd -P /var/run/wifi-$phy.pid -B /var/run/hostapd-$phy.conf || {
414 echo "Failed to start hostapd
for $phy"
420 config_get mode "$vif" mode
421 config_get ifname "$vif" ifname
422 [ "$mode" = "ap
" ] || continue
423 hostapd_ctrl="${hostapd_ctrl:-/var/run/hostapd-$phy/$ifname}"
424 mac80211_start_vif "$vif" "$ifname"
429 config_get mode "$vif" mode
430 config_get ifname "$vif" ifname
431 [ "$mode" = "ap
" ] || ifconfig "$ifname" up
433 config_get vif_txpower "$vif" txpower
434 # use vif_txpower (from wifi-iface) to override txpower (from
435 # wifi-device) if the latter doesn't exist
436 txpower="${txpower:-$vif_txpower}"
437 [ -z "$txpower" ] || iw dev "$ifname" set txpower fixed "${txpower%%.*}00"
441 config_get bssid "$vif" bssid
442 config_get ssid "$vif" ssid
443 config_get beacon_int "$device" beacon_int
444 config_get basic_rate_list "$device" basic_rate
445 config_get encryption "$vif" encryption
446 config_get key "$vif" key 1
447 config_get mcast_rate "$vif" mcast_rate
450 [ "$encryption" == "psk
" -o "$encryption" == "psk2
" ] && {
451 if eval "type wpa_supplicant_setup_vif
" 2>/dev/null >/dev/null; then
452 wpa_supplicant_setup_vif "$vif" nl80211 "${hostapd_ctrl:+-H $hostapd_ctrl}" $freq || {
453 echo "enable_mac80211
($device): Failed to
set up wpa_supplicant
for interface
$ifname" >&2
454 # make sure this wifi interface won't accidentally stay open without encryption
455 ifconfig "$ifname" down
461 [ "$encryption" == "wep
" ] && {
465 for idx in 1 2 3 4; do
467 config_get ikey "$vif" "key
$idx"
470 ikey="$
(($idx - 1)):$
(prepare_key_wep
"$ikey")"
471 [ $idx -eq $key ] && ikey="d
:$ikey"
472 append keyspec "$ikey"
476 *) append keyspec "d
:0:$
(prepare_key_wep
"$key")" ;;
480 local br brval brsub brstr
481 [ -n "$basic_rate_list" ] && {
482 for br in $basic_rate_list; do
483 brval="$
(($br / 1000))"
484 brsub="$
((($br / 100) % 10))"
485 [ "$brsub" -gt 0 ] && brval="$brval.
$brsub"
486 [ -n "$brstr" ] && brstr="$brstr,"
492 [ -n "$mcast_rate" ] && {
493 mcval="$
(($mcast_rate / 1000))"
494 mcsub="$
(( ($mcast_rate / 100) % 10 ))"
495 [ "$mcsub" -gt 0 ] && mcval="$mcval.
$mcsub"
498 config_get htmode "$device" htmode
500 HT20|HT40+|HT40-|NOHT) ;;
504 iw dev "$ifname" ibss join "$ssid" $freq $htmode \
505 ${fixed:+fixed-freq} $bssid \
506 ${beacon_int:+beacon-interval $beacon_int} \
507 ${brstr:+basic-rates $brstr} \
508 ${mcval:+mcast-rate $mcval} \
509 ${keyspec:+keys $keyspec}
512 if eval "type wpa_supplicant_setup_vif
" 2>/dev/null >/dev/null; then
513 wpa_supplicant_setup_vif "$vif" nl80211 "${hostapd_ctrl:+-H $hostapd_ctrl}" || {
514 echo "enable_mac80211
($device): Failed to
set up wpa_supplicant
for interface
$ifname" >&2
515 # make sure this wifi interface won't accidentally stay open without encryption
516 ifconfig "$ifname" down
522 [ "$mode" = "ap
" ] || mac80211_start_vif "$vif" "$ifname"
528 check_mac80211_device() {
529 config_get phy "$1" phy
531 find_mac80211_phy "$1" >/dev/null || return 0
532 config_get phy "$1" phy
534 [ "$phy" = "$dev" ] && found=1
541 config_get type "radio
$devidx" type
542 [ -n "$type" ] || break
543 devidx=$(($devidx + 1))
545 for dev in $(ls /sys/class/ieee80211); do
547 config_foreach check_mac80211_device wifi-device
548 [ "$found" -gt 0 ] && continue
554 for cap in $(iw phy "$dev" info | grep 'Capabilities:' | cut -d: -f2); do
555 ht_cap="$
(($ht_cap |
$cap))"
558 [ "$ht_cap" -gt 0 ] && {
560 append ht_capab " option htmode HT20
" "$N"
562 list=" list ht_capab
"
563 [ "$
(($ht_cap & 1))" -eq 1 ] && append ht_capab "$list LDPC
" "$N"
564 [ "$
(($ht_cap & 16))" -eq 16 ] && append ht_capab "$list GF
" "$N"
565 [ "$
(($ht_cap & 32))" -eq 32 ] && append ht_capab "$list SHORT-GI-20
" "$N"
566 [ "$
(($ht_cap & 64))" -eq 64 ] && append ht_capab "$list SHORT-GI-40
" "$N"
567 [ "$
(($ht_cap & 128))" -eq 128 ] && append ht_capab "$list TX-STBC
" "$N"
568 [ "$
(($ht_cap & 768))" -eq 256 ] && append ht_capab "$list RX-STBC1
" "$N"
569 [ "$
(($ht_cap & 768))" -eq 512 ] && append ht_capab "$list RX-STBC12
" "$N"
570 [ "$
(($ht_cap & 768))" -eq 768 ] && append ht_capab "$list RX-STBC123
" "$N"
571 [ "$
(($ht_cap & 4096))" -eq 4096 ] && append ht_capab "$list DSSS_CCK-40
" "$N"
573 iw phy "$dev" info | grep -q '2412 MHz' || { mode_band="a
"; channel="36"; }
576 config wifi-device radio$devidx
578 option channel ${channel}
579 option macaddr $(cat /sys/class/ieee80211/${dev}/macaddress)
580 option hwmode 11${mode_11n}${mode_band}
582 # REMOVE THIS LINE TO ENABLE WIFI:
586 option device radio$devidx
590 option encryption none
593 devidx=$(($devidx + 1))