11ea700b98d85d2ce5ade63af7613d1a4e56bf39
[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 . /lib/netifd/mac80211.sh
5
6 init_wireless_driver "$@"
7
8 MP_CONFIG_INT="mesh_retry_timeout mesh_confirm_timeout mesh_holding_timeout mesh_max_peer_links
9 mesh_max_retries mesh_ttl mesh_element_ttl mesh_hwmp_max_preq_retries
10 mesh_path_refresh_time mesh_min_discovery_timeout mesh_hwmp_active_path_timeout
11 mesh_hwmp_preq_min_interval mesh_hwmp_net_diameter_traversal_time mesh_hwmp_rootmode
12 mesh_hwmp_rann_interval mesh_gate_announcements mesh_sync_offset_max_neighor
13 mesh_rssi_threshold mesh_hwmp_active_path_to_root_timeout mesh_hwmp_root_interval
14 mesh_hwmp_confirmation_interval mesh_awake_window mesh_plink_timeout"
15 MP_CONFIG_BOOL="mesh_auto_open_plinks mesh_fwding"
16 MP_CONFIG_STRING="mesh_power_mode"
17
18 NEWAPLIST=
19 OLDAPLIST=
20 NEWSPLIST=
21 OLDSPLIST=
22 NEWUMLIST=
23 OLDUMLIST=
24
25 drv_mac80211_init_device_config() {
26 hostapd_common_add_device_config
27
28 config_add_string path phy 'macaddr:macaddr'
29 config_add_string hwmode
30 config_add_string tx_burst
31 config_add_string distance
32 config_add_int beacon_int chanbw frag rts
33 config_add_int rxantenna txantenna antenna_gain txpower
34 config_add_boolean noscan ht_coex acs_exclude_dfs
35 config_add_array ht_capab
36 config_add_array channels
37 config_add_array scan_list
38 config_add_boolean \
39 rxldpc \
40 short_gi_80 \
41 short_gi_160 \
42 tx_stbc_2by1 \
43 su_beamformer \
44 su_beamformee \
45 mu_beamformer \
46 mu_beamformee \
47 vht_txop_ps \
48 htc_vht \
49 rx_antenna_pattern \
50 tx_antenna_pattern
51 config_add_int vht_max_a_mpdu_len_exp vht_max_mpdu vht_link_adapt vht160 rx_stbc tx_stbc
52 config_add_boolean \
53 ldpc \
54 greenfield \
55 short_gi_20 \
56 short_gi_40 \
57 max_amsdu \
58 dsss_cck_40
59 }
60
61 drv_mac80211_init_iface_config() {
62 hostapd_common_add_bss_config
63
64 config_add_string 'macaddr:macaddr' ifname
65
66 config_add_boolean wds powersave enable
67 config_add_string wds_bridge
68 config_add_int maxassoc
69 config_add_int max_listen_int
70 config_add_int dtim_period
71 config_add_int start_disabled
72
73 # mesh
74 config_add_string mesh_id
75 config_add_int $MP_CONFIG_INT
76 config_add_boolean $MP_CONFIG_BOOL
77 config_add_string $MP_CONFIG_STRING
78 }
79
80 mac80211_add_capabilities() {
81 local __var="$1"; shift
82 local __mask="$1"; shift
83 local __out= oifs
84
85 oifs="$IFS"
86 IFS=:
87 for capab in "$@"; do
88 set -- $capab
89
90 [ "$(($4))" -gt 0 ] || continue
91 [ "$(($__mask & $2))" -eq "$((${3:-$2}))" ] || continue
92 __out="$__out[$1]"
93 done
94 IFS="$oifs"
95
96 export -n -- "$__var=$__out"
97 }
98
99 mac80211_hostapd_setup_base() {
100 local phy="$1"
101
102 json_select config
103
104 [ "$auto_channel" -gt 0 ] && channel=acs_survey
105
106 [ "$auto_channel" -gt 0 ] && json_get_vars acs_exclude_dfs
107 [ -n "$acs_exclude_dfs" ] && [ "$acs_exclude_dfs" -gt 0 ] &&
108 append base_cfg "acs_exclude_dfs=1" "$N"
109
110 json_get_vars noscan ht_coex
111 json_get_values ht_capab_list ht_capab tx_burst
112 json_get_values channel_list channels
113
114 [ "$auto_channel" = 0 ] && [ -z "$channel_list" ] && \
115 channel_list="$channel"
116
117 set_default noscan 0
118
119 [ "$noscan" -gt 0 ] && hostapd_noscan=1
120 [ "$tx_burst" = 0 ] && tx_burst=
121
122 ieee80211n=1
123 ht_capab=
124 case "$htmode" in
125 VHT20|HT20|HE20) ;;
126 HT40*|VHT40|VHT80|VHT160|HE40|HE80|HE160)
127 case "$hwmode" in
128 a)
129 case "$(( ($channel / 4) % 2 ))" in
130 1) ht_capab="[HT40+]";;
131 0) ht_capab="[HT40-]";;
132 esac
133 ;;
134 *)
135 case "$htmode" in
136 HT40+) ht_capab="[HT40+]";;
137 HT40-) ht_capab="[HT40-]";;
138 *)
139 if [ "$channel" -lt 7 ]; then
140 ht_capab="[HT40+]"
141 else
142 ht_capab="[HT40-]"
143 fi
144 ;;
145 esac
146 ;;
147 esac
148 [ "$auto_channel" -gt 0 ] && ht_capab="[HT40+]"
149 ;;
150 *) ieee80211n= ;;
151 esac
152
153 [ -n "$ieee80211n" ] && {
154 append base_cfg "ieee80211n=1" "$N"
155
156 set_default ht_coex 0
157 append base_cfg "ht_coex=$ht_coex" "$N"
158
159 json_get_vars \
160 ldpc:1 \
161 greenfield:0 \
162 short_gi_20:1 \
163 short_gi_40:1 \
164 tx_stbc:1 \
165 rx_stbc:3 \
166 max_amsdu:1 \
167 dsss_cck_40:1
168
169 ht_cap_mask=0
170 for cap in $(iw phy "$phy" info | grep 'Capabilities:' | cut -d: -f2); do
171 ht_cap_mask="$(($ht_cap_mask | $cap))"
172 done
173
174 cap_rx_stbc=$((($ht_cap_mask >> 8) & 3))
175 [ "$rx_stbc" -lt "$cap_rx_stbc" ] && cap_rx_stbc="$rx_stbc"
176 ht_cap_mask="$(( ($ht_cap_mask & ~(0x300)) | ($cap_rx_stbc << 8) ))"
177
178 mac80211_add_capabilities ht_capab_flags $ht_cap_mask \
179 LDPC:0x1::$ldpc \
180 GF:0x10::$greenfield \
181 SHORT-GI-20:0x20::$short_gi_20 \
182 SHORT-GI-40:0x40::$short_gi_40 \
183 TX-STBC:0x80::$tx_stbc \
184 RX-STBC1:0x300:0x100:1 \
185 RX-STBC12:0x300:0x200:1 \
186 RX-STBC123:0x300:0x300:1 \
187 MAX-AMSDU-7935:0x800::$max_amsdu \
188 DSSS_CCK-40:0x1000::$dsss_cck_40
189
190 ht_capab="$ht_capab$ht_capab_flags"
191 [ -n "$ht_capab" ] && append base_cfg "ht_capab=$ht_capab" "$N"
192 }
193
194 # 802.11ac
195 enable_ac=0
196 vht_oper_chwidth=0
197 vht_center_seg0=
198
199 idx="$channel"
200 case "$htmode" in
201 VHT20|HE20) enable_ac=1;;
202 VHT40|HE40)
203 case "$(( ($channel / 4) % 2 ))" in
204 1) idx=$(($channel + 2));;
205 0) idx=$(($channel - 2));;
206 esac
207 enable_ac=1
208 vht_center_seg0=$idx
209 ;;
210 VHT80|HE80)
211 case "$(( ($channel / 4) % 4 ))" in
212 1) idx=$(($channel + 6));;
213 2) idx=$(($channel + 2));;
214 3) idx=$(($channel - 2));;
215 0) idx=$(($channel - 6));;
216 esac
217 enable_ac=1
218 vht_oper_chwidth=1
219 vht_center_seg0=$idx
220 ;;
221 VHT160|HE160)
222 case "$channel" in
223 36|40|44|48|52|56|60|64) idx=50;;
224 100|104|108|112|116|120|124|128) idx=114;;
225 esac
226 enable_ac=1
227 vht_oper_chwidth=2
228 vht_center_seg0=$idx
229 ;;
230 esac
231 [ "$hwmode" = "a" ] || enable_ac=0
232
233 if [ "$enable_ac" != "0" ]; then
234 json_get_vars \
235 rxldpc:1 \
236 short_gi_80:1 \
237 short_gi_160:1 \
238 tx_stbc_2by1:1 \
239 su_beamformer:1 \
240 su_beamformee:1 \
241 mu_beamformer:1 \
242 mu_beamformee:1 \
243 vht_txop_ps:1 \
244 htc_vht:1 \
245 rx_antenna_pattern:1 \
246 tx_antenna_pattern:1 \
247 vht_max_a_mpdu_len_exp:7 \
248 vht_max_mpdu:11454 \
249 rx_stbc:4 \
250 vht_link_adapt:3 \
251 vht160:2
252
253 set_default tx_burst 2.0
254 append base_cfg "ieee80211ac=1" "$N"
255 vht_cap=0
256 for cap in $(iw phy "$phy" info | awk -F "[()]" '/VHT Capabilities/ { print $2 }'); do
257 vht_cap="$(($vht_cap | $cap))"
258 done
259
260 append base_cfg "vht_oper_chwidth=$vht_oper_chwidth" "$N"
261 append base_cfg "vht_oper_centr_freq_seg0_idx=$vht_center_seg0" "$N"
262
263 cap_rx_stbc=$((($vht_cap >> 8) & 7))
264 [ "$rx_stbc" -lt "$cap_rx_stbc" ] && cap_rx_stbc="$rx_stbc"
265 vht_cap="$(( ($vht_cap & ~(0x700)) | ($cap_rx_stbc << 8) ))"
266
267 mac80211_add_capabilities vht_capab $vht_cap \
268 RXLDPC:0x10::$rxldpc \
269 SHORT-GI-80:0x20::$short_gi_80 \
270 SHORT-GI-160:0x40::$short_gi_160 \
271 TX-STBC-2BY1:0x80::$tx_stbc_2by1 \
272 SU-BEAMFORMER:0x800::$su_beamformer \
273 SU-BEAMFORMEE:0x1000::$su_beamformee \
274 MU-BEAMFORMER:0x80000::$mu_beamformer \
275 MU-BEAMFORMEE:0x100000::$mu_beamformee \
276 VHT-TXOP-PS:0x200000::$vht_txop_ps \
277 HTC-VHT:0x400000::$htc_vht \
278 RX-ANTENNA-PATTERN:0x10000000::$rx_antenna_pattern \
279 TX-ANTENNA-PATTERN:0x20000000::$tx_antenna_pattern \
280 RX-STBC-1:0x700:0x100:1 \
281 RX-STBC-12:0x700:0x200:1 \
282 RX-STBC-123:0x700:0x300:1 \
283 RX-STBC-1234:0x700:0x400:1 \
284
285 # supported Channel widths
286 vht160_hw=0
287 [ "$(($vht_cap & 12))" -eq 4 -a 1 -le "$vht160" ] && \
288 vht160_hw=1
289 [ "$(($vht_cap & 12))" -eq 8 -a 2 -le "$vht160" ] && \
290 vht160_hw=2
291 [ "$vht160_hw" = 1 ] && vht_capab="$vht_capab[VHT160]"
292 [ "$vht160_hw" = 2 ] && vht_capab="$vht_capab[VHT160-80PLUS80]"
293
294 # maximum MPDU length
295 vht_max_mpdu_hw=3895
296 [ "$(($vht_cap & 3))" -ge 1 -a 7991 -le "$vht_max_mpdu" ] && \
297 vht_max_mpdu_hw=7991
298 [ "$(($vht_cap & 3))" -ge 2 -a 11454 -le "$vht_max_mpdu" ] && \
299 vht_max_mpdu_hw=11454
300 [ "$vht_max_mpdu_hw" != 3895 ] && \
301 vht_capab="$vht_capab[MAX-MPDU-$vht_max_mpdu_hw]"
302
303 # maximum A-MPDU length exponent
304 vht_max_a_mpdu_len_exp_hw=0
305 [ "$(($vht_cap & 58720256))" -ge 8388608 -a 1 -le "$vht_max_a_mpdu_len_exp" ] && \
306 vht_max_a_mpdu_len_exp_hw=1
307 [ "$(($vht_cap & 58720256))" -ge 16777216 -a 2 -le "$vht_max_a_mpdu_len_exp" ] && \
308 vht_max_a_mpdu_len_exp_hw=2
309 [ "$(($vht_cap & 58720256))" -ge 25165824 -a 3 -le "$vht_max_a_mpdu_len_exp" ] && \
310 vht_max_a_mpdu_len_exp_hw=3
311 [ "$(($vht_cap & 58720256))" -ge 33554432 -a 4 -le "$vht_max_a_mpdu_len_exp" ] && \
312 vht_max_a_mpdu_len_exp_hw=4
313 [ "$(($vht_cap & 58720256))" -ge 41943040 -a 5 -le "$vht_max_a_mpdu_len_exp" ] && \
314 vht_max_a_mpdu_len_exp_hw=5
315 [ "$(($vht_cap & 58720256))" -ge 50331648 -a 6 -le "$vht_max_a_mpdu_len_exp" ] && \
316 vht_max_a_mpdu_len_exp_hw=6
317 [ "$(($vht_cap & 58720256))" -ge 58720256 -a 7 -le "$vht_max_a_mpdu_len_exp" ] && \
318 vht_max_a_mpdu_len_exp_hw=7
319 vht_capab="$vht_capab[MAX-A-MPDU-LEN-EXP$vht_max_a_mpdu_len_exp_hw]"
320
321 # whether or not the STA supports link adaptation using VHT variant
322 vht_link_adapt_hw=0
323 [ "$(($vht_cap & 201326592))" -ge 134217728 -a 2 -le "$vht_link_adapt" ] && \
324 vht_link_adapt_hw=2
325 [ "$(($vht_cap & 201326592))" -ge 201326592 -a 3 -le "$vht_link_adapt" ] && \
326 vht_link_adapt_hw=3
327 [ "$vht_link_adapt_hw" != 0 ] && \
328 vht_capab="$vht_capab[VHT-LINK-ADAPT-$vht_link_adapt_hw]"
329
330 [ -n "$vht_capab" ] && append base_cfg "vht_capab=$vht_capab" "$N"
331 fi
332
333 # 802.11ax
334 enable_ax=0
335 case "$htmode" in
336 HE*) enable_ax=1 ;;
337 esac
338
339 if [ "$enable_ax" != "0" ]; then
340 append base_cfg "ieee80211ax=1" "$N"
341 [ "$hwmode" = "a" ] && {
342 append base_cfg "he_oper_chwidth=$vht_oper_chwidth" "$N"
343 append base_cfg "he_oper_centr_freq_seg0_idx=$vht_center_seg0" "$N"
344 }
345 append base_cfg "he_default_pe_duration=4" "$N"
346 append base_cfg "he_rts_threshold=1023" "$N"
347 append base_cfg "he_su_beamformer=1" "$N"
348 append base_cfg "he_su_beamformee=1" "$N"
349 append base_cfg "he_mu_beamformer=1023" "$N"
350 fi
351
352 hostapd_prepare_device_config "$hostapd_conf_file" nl80211
353 cat >> "$hostapd_conf_file" <<EOF
354 ${channel:+channel=$channel}
355 ${channel_list:+chanlist=$channel_list}
356 ${hostapd_noscan:+noscan=1}
357 ${tx_burst:+tx_queue_data2_burst=$tx_burst}
358 $base_cfg
359
360 EOF
361 json_select ..
362 radio_md5sum=$(md5sum $hostapd_conf_file | cut -d" " -f1)
363 echo "radio_config_id=${radio_md5sum}" >> $hostapd_conf_file
364 }
365
366 mac80211_hostapd_setup_bss() {
367 local phy="$1"
368 local ifname="$2"
369 local macaddr="$3"
370 local type="$4"
371
372 hostapd_cfg=
373 append hostapd_cfg "$type=$ifname" "$N"
374
375 hostapd_set_bss_options hostapd_cfg "$phy" "$vif" || return 1
376 json_get_vars wds wds_bridge dtim_period max_listen_int start_disabled
377
378 set_default wds 0
379 set_default start_disabled 0
380
381 [ "$wds" -gt 0 ] && {
382 append hostapd_cfg "wds_sta=1" "$N"
383 [ -n "$wds_bridge" ] && append hostapd_cfg "wds_bridge=$wds_bridge" "$N"
384 }
385 [ "$staidx" -gt 0 -o "$start_disabled" -eq 1 ] && append hostapd_cfg "start_disabled=1" "$N"
386
387 cat >> /var/run/hostapd-$phy.conf <<EOF
388 $hostapd_cfg
389 bssid=$macaddr
390 ${dtim_period:+dtim_period=$dtim_period}
391 ${max_listen_int:+max_listen_interval=$max_listen_int}
392 EOF
393 }
394
395 mac80211_get_addr() {
396 local phy="$1"
397 local idx="$(($2 + 1))"
398
399 head -n $idx /sys/class/ieee80211/${phy}/addresses | tail -n1
400 }
401
402 mac80211_generate_mac() {
403 local phy="$1"
404 local id="${macidx:-0}"
405
406 local ref="$(cat /sys/class/ieee80211/${phy}/macaddress)"
407 local mask="$(cat /sys/class/ieee80211/${phy}/address_mask)"
408
409 [ "$mask" = "00:00:00:00:00:00" ] && {
410 mask="ff:ff:ff:ff:ff:ff";
411
412 [ "$(wc -l < /sys/class/ieee80211/${phy}/addresses)" -gt 1 ] && {
413 addr="$(mac80211_get_addr "$phy" "$id")"
414 [ -n "$addr" ] && {
415 echo "$addr"
416 return
417 }
418 }
419 }
420
421 local oIFS="$IFS"; IFS=":"; set -- $mask; IFS="$oIFS"
422
423 local mask1=$1
424 local mask6=$6
425
426 local oIFS="$IFS"; IFS=":"; set -- $ref; IFS="$oIFS"
427
428 macidx=$(($id + 1))
429 [ "$((0x$mask1))" -gt 0 ] && {
430 b1="0x$1"
431 [ "$id" -gt 0 ] && \
432 b1=$(($b1 ^ ((($id - !($b1 & 2)) << 2) | 0x2)))
433 printf "%02x:%s:%s:%s:%s:%s" $b1 $2 $3 $4 $5 $6
434 return
435 }
436
437 [ "$((0x$mask6))" -lt 255 ] && {
438 printf "%s:%s:%s:%s:%s:%02x" $1 $2 $3 $4 $5 $(( 0x$6 ^ $id ))
439 return
440 }
441
442 off2=$(( (0x$6 + $id) / 0x100 ))
443 printf "%s:%s:%s:%s:%02x:%02x" \
444 $1 $2 $3 $4 \
445 $(( (0x$5 + $off2) % 0x100 )) \
446 $(( (0x$6 + $id) % 0x100 ))
447 }
448
449 find_phy() {
450 [ -n "$phy" -a -d /sys/class/ieee80211/$phy ] && return 0
451 [ -n "$path" ] && {
452 phy="$(mac80211_path_to_phy "$path")"
453 [ -n "$phy" ] && return 0
454 }
455 [ -n "$macaddr" ] && {
456 for phy in $(ls /sys/class/ieee80211 2>/dev/null); do
457 grep -i -q "$macaddr" "/sys/class/ieee80211/${phy}/macaddress" && return 0
458 done
459 }
460 return 1
461 }
462
463 mac80211_check_ap() {
464 has_ap=1
465 }
466
467 mac80211_iw_interface_add() {
468 local phy="$1"
469 local ifname="$2"
470 local type="$3"
471 local wdsflag="$4"
472 local rc
473 local oldifname
474
475 iw phy "$phy" interface add "$ifname" type "$type" $wdsflag >/dev/null 2>&1
476 rc="$?"
477
478 [ "$rc" = 233 ] && {
479 # Device might have just been deleted, give the kernel some time to finish cleaning it up
480 sleep 1
481
482 iw phy "$phy" interface add "$ifname" type "$type" $wdsflag >/dev/null 2>&1
483 rc="$?"
484 }
485
486 [ "$rc" = 233 ] && {
487 # Keep matching pre-existing interface
488 [ -d "/sys/class/ieee80211/${phy}/device/net/${ifname}" ] && \
489 case "$(iw dev $ifname info | grep "^\ttype" | cut -d' ' -f2- 2>/dev/null)" in
490 "AP")
491 [ "$type" = "__ap" ] && rc=0
492 ;;
493 "IBSS")
494 [ "$type" = "adhoc" ] && rc=0
495 ;;
496 "managed")
497 [ "$type" = "managed" ] && rc=0
498 ;;
499 "mesh point")
500 [ "$type" = "mp" ] && rc=0
501 ;;
502 "monitor")
503 [ "$type" = "monitor" ] && rc=0
504 ;;
505 esac
506 }
507
508 [ "$rc" = 233 ] && {
509 iw dev "$ifname" del >/dev/null 2>&1
510 [ "$?" = 0 ] && {
511 sleep 1
512
513 iw phy "$phy" interface add "$ifname" type "$type" $wdsflag >/dev/null 2>&1
514 rc="$?"
515 }
516 }
517
518 [ "$rc" != 0 ] && {
519 # Device might not support virtual interfaces, so the interface never got deleted in the first place.
520 # Check if the interface already exists, and avoid failing in this case.
521 [ -d "/sys/class/ieee80211/${phy}/device/net/${ifname}" ] && rc=0
522 }
523
524 [ "$rc" != 0 ] && {
525 # Device doesn't support virtual interfaces and may have existing interface other than ifname.
526 oldifname="$(basename "/sys/class/ieee80211/${phy}/device/net"/* 2>/dev/null)"
527 [ "$oldifname" ] && ip link set "$oldifname" name "$ifname" 1>/dev/null 2>&1
528 rc="$?"
529 }
530
531 [ "$rc" != 0 ] && wireless_setup_failed INTERFACE_CREATION_FAILED
532 return $rc
533 }
534
535 mac80211_prepare_vif() {
536 json_select config
537
538 json_get_vars ifname mode ssid wds powersave macaddr enable wpa_psk_file vlan_file
539
540 [ -n "$ifname" ] || ifname="wlan${phy#phy}${if_idx:+-$if_idx}"
541 if_idx=$((${if_idx:-0} + 1))
542
543 set_default wds 0
544 set_default powersave 0
545
546 json_select ..
547
548 [ -n "$macaddr" ] || {
549 macaddr="$(mac80211_generate_mac $phy)"
550 macidx="$(($macidx + 1))"
551 }
552
553 json_add_object data
554 json_add_string ifname "$ifname"
555 json_close_object
556
557 [ "$mode" == "ap" ] && {
558 [ -z "$wpa_psk_file" ] && hostapd_set_psk "$ifname"
559 [ -z "$vlan_file" ] && hostapd_set_vlan "$ifname"
560 }
561
562 json_select config
563
564 # It is far easier to delete and create the desired interface
565 case "$mode" in
566 adhoc)
567 mac80211_iw_interface_add "$phy" "$ifname" adhoc || return
568 ;;
569 ap)
570 # Hostapd will handle recreating the interface and
571 # subsequent virtual APs belonging to the same PHY
572 if [ -n "$hostapd_ctrl" ]; then
573 type=bss
574 else
575 type=interface
576 fi
577
578 mac80211_hostapd_setup_bss "$phy" "$ifname" "$macaddr" "$type" || return
579
580 NEWAPLIST="${NEWAPLIST}$ifname "
581 [ -n "$hostapd_ctrl" ] || {
582 ap_ifname="${ifname}"
583 hostapd_ctrl="${hostapd_ctrl:-/var/run/hostapd/$ifname}"
584 }
585 ;;
586 mesh)
587 mac80211_iw_interface_add "$phy" "$ifname" mp || return
588 ;;
589 monitor)
590 mac80211_iw_interface_add "$phy" "$ifname" monitor || return
591 ;;
592 sta)
593 local wdsflag=
594 [ "$enable" = 0 ] || staidx="$(($staidx + 1))"
595 [ "$wds" -gt 0 ] && wdsflag="4addr on"
596 mac80211_iw_interface_add "$phy" "$ifname" managed "$wdsflag" || return
597 if [ "$wds" -gt 0 ]; then
598 iw "$ifname" set 4addr on
599 else
600 iw "$ifname" set 4addr off
601 fi
602 [ "$powersave" -gt 0 ] && powersave="on" || powersave="off"
603 iw "$ifname" set power_save "$powersave"
604 ;;
605 esac
606
607 case "$mode" in
608 monitor|mesh)
609 [ "$auto_channel" -gt 0 ] || iw dev "$ifname" set channel "$channel" $iw_htmode
610 ;;
611 esac
612
613 if [ "$mode" != "ap" ]; then
614 # ALL ap functionality will be passed to hostapd
615 # All interfaces must have unique mac addresses
616 # which can either be explicitly set in the device
617 # section, or automatically generated
618 ip link set dev "$ifname" address "$macaddr"
619 fi
620
621 json_select ..
622 }
623
624 mac80211_setup_supplicant() {
625 local enable=$1
626 local add_sp=0
627 local spobj="$(ubus -S list | grep wpa_supplicant.${ifname})"
628
629 [ "$enable" = 0 ] && {
630 ubus call wpa_supplicant.${phy} config_del "{\"iface\":\"$ifname\"}"
631 ip link set dev "$ifname" down
632 iw dev "$ifname" del
633 return 0
634 }
635
636 wpa_supplicant_prepare_interface "$ifname" nl80211 || {
637 iw dev "$ifname" del
638 return 1
639 }
640 if [ "$mode" = "sta" ]; then
641 wpa_supplicant_add_network "$ifname"
642 else
643 wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$noscan"
644 fi
645
646 NEWSPLIST="${NEWSPLIST}$ifname "
647
648 if [ "${NEWAPLIST%% *}" != "${OLDAPLIST%% *}" ]; then
649 [ "$spobj" ] && ubus call wpa_supplicant config_remove "{\"iface\":\"$ifname\"}"
650 add_sp=1
651 fi
652 [ -z "$spobj" ] && add_sp=1
653
654 NEW_MD5_SP=$(test -e "${_config}" && md5sum ${_config})
655 OLD_MD5_SP=$(uci -q -P /var/state get wireless._${phy}.md5_${ifname})
656 if [ "$add_sp" = "1" ]; then
657 wpa_supplicant_run "$ifname" "$hostapd_ctrl"
658 else
659 [ "${NEW_MD5_SP}" == "${OLD_MD5_SP}" ] || ubus call $spobj reload
660 fi
661 uci -q -P /var/state set wireless._${phy}.md5_${ifname}="${NEW_MD5_SP}"
662 return 0
663 }
664
665 mac80211_setup_supplicant_noctl() {
666 local enable=$1
667 local spobj="$(ubus -S list | grep wpa_supplicant.${ifname})"
668 wpa_supplicant_prepare_interface "$ifname" nl80211 || {
669 iw dev "$ifname" del
670 return 1
671 }
672
673 wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$noscan"
674
675 NEWSPLIST="${NEWSPLIST}$ifname "
676 [ "$enable" = 0 ] && {
677 ubus call wpa_supplicant config_remove "{\"iface\":\"$ifname\"}"
678 ip link set dev "$ifname" down
679 return 0
680 }
681 if [ -z "$spobj" ]; then
682 wpa_supplicant_run "$ifname"
683 else
684 ubus call $spobj reload
685 fi
686 }
687
688 mac80211_prepare_iw_htmode() {
689 case "$htmode" in
690 VHT20|HT20) iw_htmode=HT20;;
691 HT40*|VHT40|VHT160)
692 case "$hwmode" in
693 a)
694 case "$(( ($channel / 4) % 2 ))" in
695 1) iw_htmode="HT40+" ;;
696 0) iw_htmode="HT40-";;
697 esac
698 ;;
699 *)
700 case "$htmode" in
701 HT40+) iw_htmode="HT40+";;
702 HT40-) iw_htmode="HT40-";;
703 *)
704 if [ "$channel" -lt 7 ]; then
705 iw_htmode="HT40+"
706 else
707 iw_htmode="HT40-"
708 fi
709 ;;
710 esac
711 ;;
712 esac
713 [ "$auto_channel" -gt 0 ] && iw_htmode="HT40+"
714 ;;
715 VHT80)
716 iw_htmode="80MHZ"
717 ;;
718 NONE|NOHT)
719 iw_htmode="NOHT"
720 ;;
721 *) iw_htmode="" ;;
722 esac
723 }
724
725 mac80211_setup_adhoc() {
726 local enable=$1
727 json_get_vars bssid ssid key mcast_rate
728
729 NEWUMLIST="${NEWUMLIST}$ifname "
730
731 [ "$enable" = 0 ] && {
732 ip link set dev "$ifname" down
733 return 0
734 }
735
736 keyspec=
737 [ "$auth_type" = "wep" ] && {
738 set_default key 1
739 case "$key" in
740 [1234])
741 local idx
742 for idx in 1 2 3 4; do
743 json_get_var ikey "key$idx"
744
745 [ -n "$ikey" ] && {
746 ikey="$(($idx - 1)):$(prepare_key_wep "$ikey")"
747 [ $idx -eq $key ] && ikey="d:$ikey"
748 append keyspec "$ikey"
749 }
750 done
751 ;;
752 *)
753 append keyspec "d:0:$(prepare_key_wep "$key")"
754 ;;
755 esac
756 }
757
758 brstr=
759 for br in $basic_rate_list; do
760 wpa_supplicant_add_rate brstr "$br"
761 done
762
763 mcval=
764 [ -n "$mcast_rate" ] && wpa_supplicant_add_rate mcval "$mcast_rate"
765
766 iw dev "$ifname" ibss join "$ssid" $freq $iw_htmode fixed-freq $bssid \
767 beacon-interval $beacon_int \
768 ${brstr:+basic-rates $brstr} \
769 ${mcval:+mcast-rate $mcval} \
770 ${keyspec:+keys $keyspec}
771 }
772
773 mac80211_setup_mesh() {
774 local enable=$1
775 json_get_vars ssid mesh_id mcast_rate
776
777 NEWUMLIST="${NEWUMLIST}$ifname "
778
779 [ "$enable" = 0 ] && {
780 ip link set dev "$ifname" down
781 return 0
782 }
783
784 mcval=
785 [ -n "$mcast_rate" ] && wpa_supplicant_add_rate mcval "$mcast_rate"
786 [ -n "$mesh_id" ] && ssid="$mesh_id"
787
788 iw dev "$ifname" mesh join "$ssid" freq $freq $iw_htmode \
789 ${mcval:+mcast-rate $mcval} \
790 beacon-interval $beacon_int
791 }
792
793 mac80211_setup_vif() {
794 local name="$1"
795 local failed
796 local action=up
797
798 json_select data
799 json_get_vars ifname
800 json_select ..
801
802 json_select config
803 json_get_vars mode
804 json_get_var vif_txpower
805 json_get_var vif_enable enable 1
806
807 [ "$vif_enable" = 1 ] || action=down
808 if [ "$mode" != "ap" ] || [ "$ifname" = "$ap_ifname" ]; then
809 ip link set dev "$ifname" "$action" || {
810 wireless_setup_vif_failed IFUP_ERROR
811 json_select ..
812 return
813 }
814 [ -z "$vif_txpower" ] || iw dev "$ifname" set txpower fixed "${vif_txpower%%.*}00"
815 fi
816
817 case "$mode" in
818 mesh)
819 wireless_vif_parse_encryption
820 [ -z "$htmode" ] && htmode="NOHT";
821 freq="$(get_freq "$phy" "$channel")"
822 if [ "$wpa" -gt 0 -o "$auto_channel" -gt 0 ] || chan_is_dfs "$phy" "$channel"; then
823 mac80211_setup_supplicant $vif_enable || failed=1
824 else
825 mac80211_setup_mesh $vif_enable
826 fi
827 for var in $MP_CONFIG_INT $MP_CONFIG_BOOL $MP_CONFIG_STRING; do
828 json_get_var mp_val "$var"
829 [ -n "$mp_val" ] && iw dev "$ifname" set mesh_param "$var" "$mp_val"
830 done
831 ;;
832 adhoc)
833 wireless_vif_parse_encryption
834 if [ "$wpa" -gt 0 -o "$auto_channel" -gt 0 ]; then
835 freq="$(get_freq "$phy" "$channel")"
836 mac80211_setup_supplicant_noctl $vif_enable || failed=1
837 else
838 mac80211_setup_adhoc $vif_enable
839 fi
840 ;;
841 sta)
842 mac80211_setup_supplicant $vif_enable || failed=1
843 ;;
844 esac
845
846 json_select ..
847 [ -n "$failed" ] || wireless_add_vif "$name" "$ifname"
848 }
849
850 get_freq() {
851 local phy="$1"
852 local chan="$2"
853 iw "$phy" info | grep -E -m1 "(\* ${chan:-....} MHz${chan:+|\\[$chan\\]})" | grep MHz | awk '{print $2}'
854 }
855
856 chan_is_dfs() {
857 local phy="$1"
858 local chan="$2"
859 iw "$phy" info | grep -E -m1 "(\* ${chan:-....} MHz${chan:+|\\[$chan\\]})" | grep -q "MHz.*radar detection"
860 return $!
861 }
862
863 mac80211_vap_cleanup() {
864 local service="$1"
865 local vaps="$2"
866
867 for wdev in $vaps; do
868 [ "$service" != "none" ] && ubus call ${service} config_remove "{\"iface\":\"$wdev\"}"
869 ip link set dev "$wdev" down 2>/dev/null
870 iw dev "$wdev" del
871 done
872 }
873
874 mac80211_interface_cleanup() {
875 local phy="$1"
876 local primary_ap=$(uci -q -P /var/state get wireless._${phy}.aplist)
877 primary_ap=${primary_ap%% *}
878
879 mac80211_vap_cleanup hostapd "${primary_ap}"
880 mac80211_vap_cleanup wpa_supplicant "$(uci -q -P /var/state get wireless._${phy}.splist)"
881 mac80211_vap_cleanup none "$(uci -q -P /var/state get wireless._${phy}.umlist)"
882 }
883
884 mac80211_set_noscan() {
885 hostapd_noscan=1
886 }
887
888 drv_mac80211_cleanup() {
889 hostapd_common_cleanup
890 }
891
892 drv_mac80211_setup() {
893 json_select config
894 json_get_vars \
895 phy macaddr path \
896 country chanbw distance \
897 txpower antenna_gain \
898 rxantenna txantenna \
899 frag rts beacon_int:100 htmode
900 json_get_values basic_rate_list basic_rate
901 json_get_values scan_list scan_list
902 json_select ..
903
904 find_phy || {
905 echo "Could not find PHY for device '$1'"
906 wireless_set_retry 0
907 return 1
908 }
909
910 [ -z "$(uci -q -P /var/state show wireless._${phy})" ] && {
911 uci -q -P /var/state set wireless._${phy}=phy
912 wireless_set_data phy="$phy"
913 }
914
915 OLDAPLIST=$(uci -q -P /var/state get wireless._${phy}.aplist)
916 OLDSPLIST=$(uci -q -P /var/state get wireless._${phy}.splist)
917 OLDUMLIST=$(uci -q -P /var/state get wireless._${phy}.umlist)
918
919 local wdev
920 local cwdev
921 local found
922
923 for wdev in $(list_phy_interfaces "$phy"); do
924 found=0
925 for cwdev in $OLDAPLIST $OLDSPLIST $OLDUMLIST; do
926 if [ "$wdev" = "$cwdev" ]; then
927 found=1
928 break
929 fi
930 done
931 if [ "$found" = "0" ]; then
932 ip link set dev "$wdev" down
933 iw dev "$wdev" del
934 fi
935 done
936
937 # convert channel to frequency
938 [ "$auto_channel" -gt 0 ] || freq="$(get_freq "$phy" "$channel")"
939
940 [ -n "$country" ] && {
941 iw reg get | grep -q "^country $country:" || {
942 iw reg set "$country"
943 sleep 1
944 }
945 }
946
947 hostapd_conf_file="/var/run/hostapd-$phy.conf"
948
949 no_ap=1
950 macidx=0
951 staidx=0
952
953 [ -n "$chanbw" ] && {
954 for file in /sys/kernel/debug/ieee80211/$phy/ath9k*/chanbw /sys/kernel/debug/ieee80211/$phy/ath5k/bwmode; do
955 [ -f "$file" ] && echo "$chanbw" > "$file"
956 done
957 }
958
959 set_default rxantenna 0xffffffff
960 set_default txantenna 0xffffffff
961 set_default distance 0
962 set_default antenna_gain 0
963
964 [ "$txantenna" = "all" ] && txantenna=0xffffffff
965 [ "$rxantenna" = "all" ] && rxantenna=0xffffffff
966
967 iw phy "$phy" set antenna $txantenna $rxantenna >/dev/null 2>&1
968 iw phy "$phy" set antenna_gain $antenna_gain >/dev/null 2>&1
969 iw phy "$phy" set distance "$distance" >/dev/null 2>&1
970
971 if [ -n "$txpower" ]; then
972 iw phy "$phy" set txpower fixed "${txpower%%.*}00"
973 else
974 iw phy "$phy" set txpower auto
975 fi
976
977 [ -n "$frag" ] && iw phy "$phy" set frag "${frag%%.*}"
978 [ -n "$rts" ] && iw phy "$phy" set rts "${rts%%.*}"
979
980 has_ap=
981 hostapd_ctrl=
982 ap_ifname=
983 hostapd_noscan=
984 for_each_interface "ap" mac80211_check_ap
985
986 rm -f "$hostapd_conf_file"
987
988 for_each_interface "sta adhoc mesh" mac80211_set_noscan
989 [ -n "$has_ap" ] && mac80211_hostapd_setup_base "$phy"
990
991 mac80211_prepare_iw_htmode
992 for_each_interface "sta adhoc mesh monitor" mac80211_prepare_vif
993 NEWAPLIST=
994 for_each_interface "ap" mac80211_prepare_vif
995 NEW_MD5=$(test -e "${hostapd_conf_file}" && md5sum ${hostapd_conf_file})
996 OLD_MD5=$(uci -q -P /var/state get wireless._${phy}.md5)
997 if [ "${NEWAPLIST}" != "${OLDAPLIST}" ]; then
998 mac80211_vap_cleanup hostapd "${OLDAPLIST}"
999 fi
1000 [ -n "${NEWAPLIST}" ] && mac80211_iw_interface_add "$phy" "${NEWAPLIST%% *}" __ap
1001 local add_ap=0
1002 local primary_ap=${NEWAPLIST%% *}
1003 [ -n "$hostapd_ctrl" ] && {
1004 local no_reload=1
1005 if [ -n "$(ubus list | grep hostapd.$primary_ap)" ]; then
1006 [ "${NEW_MD5}" = "${OLD_MD5}" ] || {
1007 ubus call hostapd.$primary_ap reload
1008 no_reload=$?
1009 if [ "$no_reload" != "0" ]; then
1010 mac80211_vap_cleanup hostapd "${OLDAPLIST}"
1011 mac80211_vap_cleanup wpa_supplicant "$(uci -q -P /var/state get wireless._${phy}.splist)"
1012 mac80211_vap_cleanup none "$(uci -q -P /var/state get wireless._${phy}.umlist)"
1013 sleep 2
1014 mac80211_iw_interface_add "$phy" "${NEWAPLIST%% *}" __ap
1015 for_each_interface "sta adhoc mesh monitor" mac80211_prepare_vif
1016 fi
1017 }
1018 fi
1019 if [ "$no_reload" != "0" ]; then
1020 add_ap=1
1021 ubus wait_for hostapd
1022 ubus call hostapd config_add "{\"iface\":\"$primary_ap\", \"config\":\"${hostapd_conf_file}\"}"
1023 local hostapd_pid=$(ubus call service list '{"name": "wpad"}' | jsonfilter -l 1 -e "@['wpad'].instances['hostapd'].pid")
1024 wireless_add_process "$hostapd_pid" "/usr/sbin/hostapd" 1
1025 fi
1026 ret="$?"
1027 [ "$ret" != 0 ] && {
1028 wireless_setup_failed HOSTAPD_START_FAILED
1029 return
1030 }
1031 }
1032 uci -q -P /var/state set wireless._${phy}.aplist="${NEWAPLIST}"
1033 uci -q -P /var/state set wireless._${phy}.md5="${NEW_MD5}"
1034
1035 [ "${add_ap}" = 1 ] && sleep 1
1036 for_each_interface "ap" mac80211_setup_vif
1037
1038 NEWSPLIST=
1039 NEWUMLIST=
1040
1041 for_each_interface "sta adhoc mesh monitor" mac80211_setup_vif
1042
1043 uci -q -P /var/state set wireless._${phy}.splist="${NEWSPLIST}"
1044 uci -q -P /var/state set wireless._${phy}.umlist="${NEWUMLIST}"
1045
1046 local foundvap
1047 local dropvap=""
1048 for oldvap in $OLDSPLIST; do
1049 foundvap=0
1050 for newvap in $NEWSPLIST; do
1051 [ "$oldvap" = "$newvap" ] && foundvap=1
1052 done
1053 [ "$foundvap" = "0" ] && dropvap="$dropvap $oldvap"
1054 done
1055 [ -n "$dropvap" ] && mac80211_vap_cleanup wpa_supplicant "$dropvap"
1056 wireless_set_up
1057 }
1058
1059 _list_phy_interfaces() {
1060 local phy="$1"
1061 if [ -d "/sys/class/ieee80211/${phy}/device/net" ]; then
1062 ls "/sys/class/ieee80211/${phy}/device/net" 2>/dev/null;
1063 else
1064 ls "/sys/class/ieee80211/${phy}/device" 2>/dev/null | grep net: | sed -e 's,net:,,g'
1065 fi
1066 }
1067
1068 list_phy_interfaces() {
1069 local phy="$1"
1070
1071 for dev in $(_list_phy_interfaces "$phy"); do
1072 readlink "/sys/class/net/${dev}/phy80211" | grep -q "/${phy}\$" || continue
1073 echo "$dev"
1074 done
1075 }
1076
1077 drv_mac80211_teardown() {
1078 json_select data
1079 json_get_vars phy
1080 json_select ..
1081
1082 mac80211_interface_cleanup "$phy"
1083 uci -q -P /var/state revert wireless._${phy}
1084 }
1085
1086 add_driver mac80211