mac80211: fix stbc configuration
[openwrt/openwrt.git] / package / kernel / mac80211 / files / lib / netifd / wireless / mac80211.sh
1 #!/bin/sh
2 . /lib/netifd/netifd-wireless.sh
3 . /lib/netifd/hostapd.sh
4
5 init_wireless_driver "$@"
6
7 MP_CONFIG_INT="mesh_retry_timeout mesh_confirm_timeout mesh_holding_timeout mesh_max_peer_links
8 mesh_max_retries mesh_ttl mesh_element_ttl mesh_hwmp_max_preq_retries
9 mesh_path_refresh_time mesh_min_discovery_timeout mesh_hwmp_active_path_timeout
10 mesh_hwmp_preq_min_interval mesh_hwmp_net_diameter_traversal_time mesh_hwmp_rootmode
11 mesh_hwmp_rann_interval mesh_gate_announcements mesh_sync_offset_max_neighor
12 mesh_rssi_threshold mesh_hwmp_active_path_to_root_timeout mesh_hwmp_root_interval
13 mesh_hwmp_confirmation_interval mesh_awake_window mesh_plink_timeout"
14 MP_CONFIG_BOOL="mesh_auto_open_plinks mesh_fwding"
15 MP_CONFIG_STRING="mesh_power_mode"
16
17 drv_mac80211_init_device_config() {
18 hostapd_common_add_device_config
19
20 config_add_string path phy 'macaddr:macaddr'
21 config_add_string hwmode
22 config_add_int beacon_int chanbw frag rts
23 config_add_int rxantenna txantenna antenna_gain txpower distance
24 config_add_boolean noscan
25 config_add_array ht_capab
26 config_add_boolean \
27 rxldpc \
28 short_gi_80 \
29 short_gi_160 \
30 tx_stbc_2by1 \
31 su_beamformer \
32 su_beamformee \
33 mu_beamformer \
34 mu_beamformee \
35 vht_txop_ps \
36 htc_vht \
37 rx_antenna_pattern \
38 tx_antenna_pattern
39 config_add_int vht_max_mpdu vht_link_adapt vht160 rx_stbc tx_stbc
40 }
41
42 drv_mac80211_init_iface_config() {
43 hostapd_common_add_bss_config
44
45 config_add_string 'macaddr:macaddr' ifname
46
47 config_add_boolean wds powersave
48 config_add_int maxassoc
49 config_add_int max_listen_int
50 config_add_int dtim_interval
51
52 # mesh
53 config_add_string mesh_id
54 config_add_int $MP_CONFIG_INT
55 config_add_boolean $MP_CONFIG_BOOL
56 config_add_string $MP_CONFIG_STRING
57 }
58
59 mac80211_add_capabilities() {
60 local __var="$1"; shift
61 local __mask="$1"; shift
62 local __out= oifs
63
64 oifs="$IFS"
65 IFS=:
66 for capab in "$@"; do
67 set -- $capab
68
69 [ "$(($4))" -gt 0 ] || continue
70 [ "$(($__mask & $2))" -eq "$((${3:-$2}))" ] || continue
71 __out="$__out[$1]"
72 done
73 IFS="$oifs"
74
75 export -n -- "$__var=$__out"
76 }
77
78 mac80211_hostapd_setup_base() {
79 local phy="$1"
80
81 json_select config
82
83 [ "$auto_channel" -gt 0 ] && channel=acs_survey
84
85 json_get_vars noscan htmode
86 json_get_values ht_capab_list ht_capab
87
88 ieee80211n=1
89 ht_capab=
90 case "$htmode" in
91 VHT20|HT20) ;;
92 HT40*|VHT40|VHT80|VHT160)
93 case "$hwmode" in
94 a)
95 case "$(( ($channel / 4) % 2 ))" in
96 1) ht_capab="[HT40+]";;
97 0) ht_capab="[HT40-]";;
98 esac
99 ;;
100 *)
101 case "$htmode" in
102 HT40+) ht_capab="[HT40+]";;
103 HT40-) ht_capab="[HT40-]";;
104 *)
105 if [ "$channel" -lt 7 ]; then
106 ht_capab="[HT40+]"
107 else
108 ht_capab="[HT40-]"
109 fi
110 ;;
111 esac
112 ;;
113 esac
114 [ "$auto_channel" -gt 0 ] && ht_capab="[HT40+]"
115 ;;
116 *) ieee80211n= ;;
117 esac
118
119 [ -n "$ieee80211n" ] && {
120 append base_cfg "ieee80211n=1" "$N"
121
122 json_get_vars \
123 ldpc:1 \
124 greenfield:1 \
125 short_gi_20:1 \
126 short_gi_40:1 \
127 tx_stbc:1 \
128 rx_stbc:3 \
129 dsss_cck_40:1
130
131 ht_cap_mask=0
132 for cap in $(iw phy "$phy" info | grep 'Capabilities:' | cut -d: -f2); do
133 ht_cap_mask="$(($ht_cap_mask | $cap))"
134 done
135
136 cap_rx_stbc=$((($ht_cap_mask >> 8) & 3))
137 [ "$rx_stbc" -lt "$cap_rx_stbc" ] && cap_rx_stbc="$rx_stbc"
138 ht_cap_mask="$(( ($ht_cap_mask & ~(0x300)) | ($cap_rx_stbc << 8) ))"
139
140 mac80211_add_capabilities ht_capab_flags $ht_cap_mask \
141 LDPC:0x1::$ldpc \
142 GF:0x10::$greenfield \
143 SHORT-GI-20:0x20::$short_gi_20 \
144 SHORT-GI-40:0x40::$short_gi_40 \
145 TX-STBC:0x80::$tx_stbc \
146 RX-STBC1:0x300:0x100:1 \
147 RX-STBC12:0x300:0x200:1 \
148 RX-STBC123:0x300:0x300:1 \
149 DSSS_CCK-40:0x1000::$dsss_cck_40
150
151 ht_capab="$ht_capab$ht_capab_flags"
152 [ -n "$ht_capab" ] && append base_cfg "ht_capab=$ht_capab" "$N"
153 }
154
155 # 802.11ac
156 enable_ac=0
157 idx="$channel"
158 case "$htmode" in
159 VHT20) enable_ac=1;;
160 VHT40)
161 case "$(( ($channel / 4) % 2 ))" in
162 1) idx=$(($channel + 2));;
163 0) idx=$(($channel - 2));;
164 esac
165 enable_ac=1
166 append base_cfg "vht_oper_chwidth=0" "$N"
167 append base_cfg "vht_oper_centr_freq_seg0_idx=$idx" "$N"
168 ;;
169 VHT80)
170 case "$(( ($channel / 4) % 4 ))" in
171 1) idx=$(($channel + 6));;
172 2) idx=$(($channel + 2));;
173 3) idx=$(($channel - 2));;
174 0) idx=$(($channel - 6));;
175 esac
176 enable_ac=1
177 append base_cfg "vht_oper_chwidth=1" "$N"
178 append base_cfg "vht_oper_centr_freq_seg0_idx=$idx" "$N"
179 ;;
180 VHT160)
181 case "$channel" in
182 36|40|44|48|52|56|60|64) idx=50;;
183 100|104|108|112|116|120|124|128) idx=114;;
184 esac
185 enable_ac=1
186 append base_cfg "vht_oper_chwidth=2" "$N"
187 append base_cfg "vht_oper_centr_freq_seg0_idx=$idx" "$N"
188 ;;
189 esac
190
191 if [ "$enable_ac" != "0" ]; then
192 json_get_vars \
193 rxldpc:1 \
194 short_gi_80:1 \
195 short_gi_160:1 \
196 tx_stbc_2by1:1 \
197 su_beamformer:1 \
198 su_beamformee:1 \
199 mu_beamformer:1 \
200 mu_beamformee:1 \
201 vht_txop_ps:1 \
202 htc_vht:1 \
203 rx_antenna_pattern:1 \
204 tx_antenna_pattern:1 \
205 vht_max_mpdu:11454 \
206 rx_stbc:4 \
207 tx_stbc:4 \
208 vht_link_adapt:3 \
209 vht160:2
210
211 append base_cfg "ieee80211ac=1" "$N"
212 vht_cap=0
213 for cap in $(iw phy "$phy" info | awk -F "[()]" '/VHT Capabilities/ { print $2 }'); do
214 vht_cap="$(($vht_cap | $cap))"
215 done
216
217 cap_rx_stbc=$((($vht_cap >> 8) & 7))
218 [ "$rx_stbc" -lt "$cap_rx_stbc" ] && cap_rx_stbc="$rx_stbc"
219 ht_cap_mask="$(( ($vht_cap & ~(0x700)) | ($cap_rx_stbc << 8) ))"
220
221 mac80211_add_capabilities vht_capab $vht_cap \
222 RXLDPC:0x10::$rxldpc \
223 SHORT-GI-80:0x20::$short_gi_80 \
224 SHORT-GI-160:0x40::$short_gi_160 \
225 TX-STBC-2BY1:0x80::$tx_stbc \
226 SU-BEAMFORMER:0x800::$su_beamformer \
227 SU-BEAMFORMEE:0x1000::$su_beamformee \
228 MU-BEAMFORMER:0x80000::$mu_beamformer \
229 MU-BEAMFORMEE:0x100000::$mu_beamformee \
230 VHT-TXOP-PS:0x200000::$vht_txop_ps \
231 HTC-VHT:0x400000::$htc_vht \
232 RX-ANTENNA-PATTERN:0x10000000::$rx_antenna_pattern \
233 TX-ANTENNA-PATTERN:0x20000000::$tx_antenna_pattern \
234 RX-STBC1:0x700:0x100:1 \
235 RX-STBC12:0x700:0x200:1 \
236 RX-STBC123:0x700:0x300:1 \
237 RX-STBC1234:0x700:0x400:1 \
238
239 # supported Channel widths
240 vht160_hw=0
241 [ "$(($vht_cap & 12))" -eq 4 -a 1 -le "$vht160" ] && \
242 vht160_hw=1
243 [ "$(($vht_cap & 12))" -eq 8 -a 2 -le "$vht160" ] && \
244 vht160_hw=2
245 [ "$vht160_hw" = 1 ] && vht_capab="$vht_capab[VHT160]"
246 [ "$vht160_hw" = 2 ] && vht_capab="$vht_capab[VHT160-80PLUS80]"
247
248 # maximum MPDU length
249 vht_max_mpdu_hw=3895
250 [ "$(($vht_cap & 3))" -ge 1 -a 7991 -le "$vht_max_mpdu" ] && \
251 vht_max_mpdu_hw=7991
252 [ "$(($vht_cap & 3))" -ge 2 -a 11454 -le "$vht_max_mpdu" ] && \
253 vht_max_mpdu_hw=11454
254 [ "$vht_max_mpdu_hw" != 3895 ] && \
255 vht_capab="$vht_capab[MAX-MPDU-$vht_max_mpdu_hw]"
256
257 # whether or not the STA supports link adaptation using VHT variant
258 vht_link_adapt_hw=0
259 [ "$(($vht_cap & 201326592))" -ge 134217728 -a 2 -le "$vht_link_adapt" ] && \
260 vht_link_adapt_hw=2
261 [ "$(($vht_cap & 201326592))" -ge 201326592 -a 3 -le "$vht_link_adapt" ] && \
262 vht_link_adapt_hw=3
263 [ "$vht_link_adapt_hw" != 0 ] && \
264 vht_capab="$vht_capab[VHT-LINK-ADAPT-$vht_link_adapt_hw]"
265
266 [ -n "$vht_capab" ] && append base_cfg "vht_capab=$vht_capab" "$N"
267 fi
268
269 hostapd_prepare_device_config "$hostapd_conf_file" nl80211
270 cat >> "$hostapd_conf_file" <<EOF
271 ${channel:+channel=$channel}
272 ${noscan:+noscan=$noscan}
273 $base_cfg
274
275 EOF
276 json_select ..
277 }
278
279 mac80211_hostapd_setup_bss() {
280 local phy="$1"
281 local ifname="$2"
282 local macaddr="$3"
283 local type="$4"
284
285 hostapd_cfg=
286 append hostapd_cfg "$type=$ifname" "$N"
287
288 hostapd_set_bss_options hostapd_cfg "$vif" || return 1
289 json_get_vars wds dtim_period max_listen_int
290
291 set_default wds 0
292
293 [ "$wds" -gt 0 ] && append hostapd_cfg "wds_sta=1" "$N"
294 [ "$staidx" -gt 0 ] && append hostapd_cfg "start_disabled=1" "$N"
295
296 cat >> /var/run/hostapd-$phy.conf <<EOF
297 $hostapd_cfg
298 bssid=$macaddr
299 ${dtim_period:+dtim_period=$dtim_period}
300 ${max_listen_int:+max_listen_interval=$max_listen_int}
301 EOF
302 }
303
304 mac80211_generate_mac() {
305 local phy="$1"
306 local id="${macidx:-0}"
307
308 local ref="$(cat /sys/class/ieee80211/${phy}/macaddress)"
309 local mask="$(cat /sys/class/ieee80211/${phy}/address_mask)"
310
311 [ "$mask" = "00:00:00:00:00:00" ] && mask="ff:ff:ff:ff:ff:ff";
312 local oIFS="$IFS"; IFS=":"; set -- $mask; IFS="$oIFS"
313
314 local mask1=$1
315 local mask6=$6
316
317 local oIFS="$IFS"; IFS=":"; set -- $ref; IFS="$oIFS"
318
319 macidx=$(($id + 1))
320 [ "$((0x$mask1))" -gt 0 ] && {
321 b1="0x$1"
322 [ "$id" -gt 0 ] && \
323 b1=$(($b1 ^ ((($id - 1) << 2) | 0x2)))
324 printf "%02x:%s:%s:%s:%s:%s" $b1 $2 $3 $4 $5 $6
325 return
326 }
327
328 [ "$((0x$mask6))" -lt 255 ] && {
329 printf "%s:%s:%s:%s:%s:%02x" $1 $2 $3 $4 $5 $(( 0x$6 ^ $id ))
330 return
331 }
332
333 off2=$(( (0x$6 + $id) / 0x100 ))
334 printf "%s:%s:%s:%s:%02x:%02x" \
335 $1 $2 $3 $4 \
336 $(( (0x$5 + $off2) % 0x100 )) \
337 $(( (0x$6 + $id) % 0x100 ))
338 }
339
340 find_phy() {
341 [ -n "$phy" -a -d /sys/class/ieee80211/$phy ] && return 0
342 [ -n "$path" -a -d "/sys/devices/$path/ieee80211" ] && {
343 phy="$(ls /sys/devices/$path/ieee80211 | grep -m 1 phy)"
344 [ -n "$phy" ] && return 0
345 }
346 [ -n "$macaddr" ] && {
347 for phy in $(ls /sys/class/ieee80211 2>/dev/null); do
348 grep -i -q "$macaddr" "/sys/class/ieee80211/${phy}/macaddress" && return 0
349 done
350 }
351 return 1
352 }
353
354 mac80211_check_ap() {
355 has_ap=1
356 }
357
358 mac80211_prepare_vif() {
359 json_select config
360
361 json_get_vars ifname mode ssid wds powersave macaddr
362
363 [ -n "$ifname" ] || ifname="wlan${phy#phy}${if_idx:+-$if_idx}"
364 if_idx=$((${if_idx:-0} + 1))
365
366 set_default wds 0
367 set_default powersave 0
368
369 json_select ..
370
371 [ -n "$macaddr" ] || {
372 macaddr="$(mac80211_generate_mac $phy)"
373 macidx="$(($macidx + 1))"
374 }
375
376 json_add_object data
377 json_add_string ifname "$ifname"
378 json_close_object
379 json_select config
380
381 # It is far easier to delete and create the desired interface
382 case "$mode" in
383 adhoc)
384 iw phy "$phy" interface add "$ifname" type adhoc
385 ;;
386 ap)
387 # Hostapd will handle recreating the interface and
388 # subsequent virtual APs belonging to the same PHY
389 if [ -n "$hostapd_ctrl" ]; then
390 type=bss
391 else
392 type=interface
393 fi
394
395 mac80211_hostapd_setup_bss "$phy" "$ifname" "$macaddr" "$type" || return
396
397 [ -n "$hostapd_ctrl" ] || {
398 iw phy "$phy" interface add "$ifname" type managed
399 hostapd_ctrl="${hostapd_ctrl:-/var/run/hostapd/$ifname}"
400 }
401 ;;
402 mesh)
403 json_get_vars key mesh_id
404 if [ -n "$key" ]; then
405 iw phy "$phy" interface add "$ifname" type mp
406 else
407 iw phy "$phy" interface add "$ifname" type mp mesh_id "$mesh_id"
408 fi
409 ;;
410 monitor)
411 iw phy "$phy" interface add "$ifname" type monitor
412 ;;
413 sta)
414 local wdsflag=
415 staidx="$(($staidx + 1))"
416 [ "$wds" -gt 0 ] && wdsflag="4addr on"
417 iw phy "$phy" interface add "$ifname" type managed $wdsflag
418 [ "$powersave" -gt 0 ] && powersave="on" || powersave="off"
419 iw "$ifname" set power_save "$powersave"
420 ;;
421 esac
422
423 case "$mode" in
424 monitor|mesh)
425 [ "$auto_channel" -gt 0 ] || iw dev "$ifname" set channel "$channel" $htmode
426 ;;
427 esac
428
429 if [ "$mode" != "ap" ]; then
430 # ALL ap functionality will be passed to hostapd
431 # All interfaces must have unique mac addresses
432 # which can either be explicitly set in the device
433 # section, or automatically generated
434 ifconfig "$ifname" hw ether "$macaddr"
435 fi
436
437 json_select ..
438 }
439
440 mac80211_setup_supplicant() {
441 wpa_supplicant_prepare_interface "$ifname" nl80211 || return 1
442 wpa_supplicant_add_network "$ifname"
443 wpa_supplicant_run "$ifname" ${hostapd_ctrl:+-H $hostapd_ctrl}
444 }
445
446 mac80211_setup_adhoc() {
447 json_get_vars bssid ssid key mcast_rate
448
449 keyspec=
450 [ "$auth_type" == "wep" ] && {
451 set_default key 1
452 case "$key" in
453 [1234])
454 local idx
455 for idx in 1 2 3 4; do
456 json_get_var ikey "key$idx"
457
458 [ -n "$ikey" ] && {
459 ikey="$(($idx - 1)):$(prepare_key_wep "$ikey")"
460 [ $idx -eq $key ] && ikey="d:$ikey"
461 append keyspec "$ikey"
462 }
463 done
464 ;;
465 *)
466 append keyspec "d:0:$(prepare_key_wep "$key")"
467 ;;
468 esac
469 }
470
471 brstr=
472 for br in $basic_rate_list; do
473 hostapd_add_rate brstr "$br"
474 done
475
476 mcval=
477 [ -n "$mcast_rate" ] && hostapd_add_rate mcval "$mcast_rate"
478
479 iw dev "$ifname" ibss join "$ssid" $freq $htmode fixed-freq $bssid \
480 ${beacon_int:+beacon-interval $beacon_int} \
481 ${brstr:+basic-rates $brstr} \
482 ${mcval:+mcast-rate $mcval} \
483 ${keyspec:+keys $keyspec}
484 }
485
486 mac80211_setup_vif() {
487 local name="$1"
488 local failed
489
490 json_select data
491 json_get_vars ifname
492 json_select ..
493
494 json_select config
495 json_get_vars mode
496 json_get_var vif_txpower txpower
497
498 ifconfig "$ifname" up || {
499 wireless_setup_vif_failed IFUP_ERROR
500 json_select ..
501 return
502 }
503
504 set_default vif_txpower "$txpower"
505 [ -z "$vif_txpower" ] || iw dev "$ifname" set txpower fixed "${vif_txpower%%.*}00"
506
507 case "$mode" in
508 mesh)
509 for var in $MP_CONFIG_INT $MP_CONFIG_BOOL $MP_CONFIG_STRING; do
510 json_get_var mp_val "$var"
511 [ -n "$mp_val" ] && iw dev "$ifname" set mesh_param "$var" "$mp_val"
512 done
513
514 # authsae
515 json_get_vars key
516 if [ -n "$key" ]; then
517 if [ -e "/lib/wifi/authsae.sh" ]; then
518 . /lib/wifi/authsae.sh
519 authsae_start_interface || failed=1
520 else
521 wireless_setup_vif_failed AUTHSAE_NOT_INSTALLED
522 json_select ..
523 return
524 fi
525 fi
526 ;;
527 adhoc)
528 wireless_vif_parse_encryption
529 if [ "$wpa" -gt 0 -o "$auto_channel" -gt 0 ]; then
530 mac80211_setup_supplicant || failed=1
531 else
532 mac80211_setup_adhoc
533 fi
534 ;;
535 sta)
536 mac80211_setup_supplicant || failed=1
537 ;;
538 esac
539
540 json_select ..
541 [ -n "$failed" ] || wireless_add_vif "$name" "$ifname"
542 }
543
544 get_freq() {
545 local phy="$1"
546 local chan="$2"
547 iw "$phy" info | grep -E -m1 "(\* ${chan:-....} MHz${chan:+|\\[$chan\\]})" | grep MHz | awk '{print $2}'
548 }
549
550 mac80211_interface_cleanup() {
551 local phy="$1"
552
553 for wdev in $(list_phy_interfaces "$phy"); do
554 ifconfig "$wdev" down 2>/dev/null
555 iw dev "$wdev" del
556 done
557 }
558
559 drv_mac80211_cleanup() {
560 hostapd_common_cleanup
561 }
562
563 drv_mac80211_setup() {
564 json_select config
565 json_get_vars \
566 phy macaddr path \
567 country chanbw distance \
568 txpower antenna_gain \
569 rxantenna txantenna \
570 frag rts beacon_int
571 json_get_values basic_rate_list basic_rate
572 json_select ..
573
574 find_phy || {
575 echo "Could not find PHY for device '$1'"
576 wireless_set_retry 0
577 return 1
578 }
579
580 wireless_set_data phy="$phy"
581 mac80211_interface_cleanup "$phy"
582
583 # convert channel to frequency
584 [ "$auto_channel" -gt 0 ] || freq="$(get_freq "$phy" "$channel")"
585
586 [ -n "$country" ] && {
587 iw reg get | grep -q "^country $country:" || {
588 iw reg set "$country"
589 sleep 1
590 }
591 }
592
593 hostapd_conf_file="/var/run/hostapd-$phy.conf"
594
595 no_ap=1
596 macidx=0
597 staidx=0
598
599 [ -n "$chanbw" ] && {
600 for file in /sys/kernel/debug/ieee80211/$phy/ath9k/chanbw /sys/kernel/debug/ieee80211/$phy/ath5k/bwmode; do
601 [ -f "$file" ] && echo "$chanbw" > "$file"
602 done
603 }
604
605 set_default rxantenna all
606 set_default txantenna all
607 set_default distance 0
608 set_default antenna_gain 0
609
610 iw phy "$phy" set antenna $txantenna $rxantenna >/dev/null 2>&1
611 iw phy "$phy" set antenna_gain $antenna_gain
612 iw phy "$phy" set distance "$distance"
613
614 [ -n "$frag" ] && iw phy "$phy" set frag "${frag%%.*}"
615 [ -n "$rts" ] && iw phy "$phy" set rts "${rts%%.*}"
616
617 has_ap=
618 hostapd_ctrl=
619 for_each_interface "ap" mac80211_check_ap
620
621 rm -f "$hostapd_conf_file"
622 [ -n "$has_ap" ] && mac80211_hostapd_setup_base "$phy"
623
624 for_each_interface "sta adhoc mesh monitor" mac80211_prepare_vif
625 for_each_interface "ap" mac80211_prepare_vif
626
627 [ -n "$hostapd_ctrl" ] && {
628 /usr/sbin/hostapd -P /var/run/wifi-$phy.pid -B "$hostapd_conf_file"
629 ret="$?"
630 wireless_add_process "$(cat /var/run/wifi-$phy.pid)" "/usr/sbin/hostapd" 1
631 [ "$ret" != 0 ] && {
632 wireless_setup_failed HOSTAPD_START_FAILED
633 return
634 }
635 }
636
637 for_each_interface "ap sta adhoc mesh monitor" mac80211_setup_vif
638
639 wireless_set_up
640 }
641
642 list_phy_interfaces() {
643 local phy="$1"
644 if [ -d "/sys/class/ieee80211/${phy}/device/net" ]; then
645 ls "/sys/class/ieee80211/${phy}/device/net" 2>/dev/null;
646 else
647 ls "/sys/class/ieee80211/${phy}/device" 2>/dev/null | grep net: | sed -e 's,net:,,g'
648 fi
649 }
650
651 drv_mac80211_teardown() {
652 wireless_process_kill_all
653
654 json_select data
655 json_get_vars phy
656 json_select ..
657
658 mac80211_interface_cleanup "$phy"
659 }
660
661 add_driver mac80211