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