mac80211: make sure existing iface belongs to correct (fullmac) phy
[oweals/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         wpa_supplicant_prepare_interface "$ifname" nl80211 || return 1
594         wpa_supplicant_prepare_interface "$ifname" nl80211 || {
595                 iw dev "$ifname" del
596                 return 1
597         }
598         if [ "$mode" = "sta" ]; then
599                 wpa_supplicant_add_network "$ifname"
600         else
601                 wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$noscan"
602         fi
603
604         NEWSPLIST="${NEWSPLIST}$ifname "
605
606         if [ "${NEWAPLIST%% *}" != "${OLDAPLIST%% *}" ]; then
607                 [ "$spobj" ] && ubus call wpa_supplicant config_remove "{\"iface\":\"$ifname\"}"
608                 add_sp=1
609         fi
610         [ "$enable" = 0 ] && {
611                 ubus call wpa_supplicant config_remove "{\"iface\":\"$ifname\"}"
612                 ip link set dev "$ifname" down
613                 return 0
614         }
615         [ -z "$spobj" ] && add_sp=1
616
617         if [ "$add_sp" = "1" ]; then
618                 wpa_supplicant_run "$ifname" "$hostapd_ctrl"
619         else
620                 ubus call $spobj reload
621         fi
622 }
623
624 mac80211_setup_supplicant_noctl() {
625         local enable=$1
626         local spobj="$(ubus -S list | grep wpa_supplicant.${ifname})"
627         wpa_supplicant_prepare_interface "$ifname" nl80211 || {
628                 iw dev "$ifname" del
629                 return 1
630         }
631
632         wpa_supplicant_add_network "$ifname" "$freq" "$htmode" "$noscan"
633
634         NEWSPLIST="${NEWSPLIST}$ifname "
635         [ "$enable" = 0 ] && {
636                 ubus call wpa_supplicant config_remove "{\"iface\":\"$ifname\"}"
637                 ip link set dev "$ifname" down
638                 return 0
639         }
640         if [ -z "$spobj" ]; then
641                 wpa_supplicant_run "$ifname"
642         else
643                 ubus call $spobj reload
644         fi
645 }
646
647 mac80211_prepare_iw_htmode() {
648         case "$htmode" in
649                 VHT20|HT20) iw_htmode=HT20;;
650                 HT40*|VHT40|VHT160)
651                         case "$hwmode" in
652                                 a)
653                                         case "$(( ($channel / 4) % 2 ))" in
654                                                 1) iw_htmode="HT40+" ;;
655                                                 0) iw_htmode="HT40-";;
656                                         esac
657                                 ;;
658                                 *)
659                                         case "$htmode" in
660                                                 HT40+) iw_htmode="HT40+";;
661                                                 HT40-) iw_htmode="HT40-";;
662                                                 *)
663                                                         if [ "$channel" -lt 7 ]; then
664                                                                 iw_htmode="HT40+"
665                                                         else
666                                                                 iw_htmode="HT40-"
667                                                         fi
668                                                 ;;
669                                         esac
670                                 ;;
671                         esac
672                         [ "$auto_channel" -gt 0 ] && iw_htmode="HT40+"
673                 ;;
674                 VHT80)
675                         iw_htmode="80MHZ"
676                 ;;
677                 NONE|NOHT)
678                         iw_htmode="NOHT"
679                 ;;
680                 *) iw_htmode="" ;;
681         esac
682 }
683
684 mac80211_setup_adhoc() {
685         local enable=$1
686         json_get_vars bssid ssid key mcast_rate
687
688         NEWUMLIST="${NEWUMLIST}$ifname "
689
690         [ "$enable" = 0 ] && {
691                 ip link set dev "$ifname" down
692                 return 0
693         }
694
695         keyspec=
696         [ "$auth_type" = "wep" ] && {
697                 set_default key 1
698                 case "$key" in
699                         [1234])
700                                 local idx
701                                 for idx in 1 2 3 4; do
702                                         json_get_var ikey "key$idx"
703
704                                         [ -n "$ikey" ] && {
705                                                 ikey="$(($idx - 1)):$(prepare_key_wep "$ikey")"
706                                                 [ $idx -eq $key ] && ikey="d:$ikey"
707                                                 append keyspec "$ikey"
708                                         }
709                                 done
710                         ;;
711                         *)
712                                 append keyspec "d:0:$(prepare_key_wep "$key")"
713                         ;;
714                 esac
715         }
716
717         brstr=
718         for br in $basic_rate_list; do
719                 wpa_supplicant_add_rate brstr "$br"
720         done
721
722         mcval=
723         [ -n "$mcast_rate" ] && wpa_supplicant_add_rate mcval "$mcast_rate"
724
725         iw dev "$ifname" ibss join "$ssid" $freq $iw_htmode fixed-freq $bssid \
726                 beacon-interval $beacon_int \
727                 ${brstr:+basic-rates $brstr} \
728                 ${mcval:+mcast-rate $mcval} \
729                 ${keyspec:+keys $keyspec}
730 }
731
732 mac80211_setup_mesh() {
733         local enable=$1
734         json_get_vars ssid mesh_id mcast_rate
735
736         NEWUMLIST="${NEWUMLIST}$ifname "
737
738         [ "$enable" = 0 ] && {
739                 ip link set dev "$ifname" down
740                 return 0
741         }
742
743         mcval=
744         [ -n "$mcast_rate" ] && wpa_supplicant_add_rate mcval "$mcast_rate"
745         [ -n "$mesh_id" ] && ssid="$mesh_id"
746
747         iw dev "$ifname" mesh join "$ssid" freq $freq $iw_htmode \
748                 ${mcval:+mcast-rate $mcval} \
749                 beacon-interval $beacon_int
750 }
751
752 mac80211_setup_vif() {
753         local name="$1"
754         local failed
755         local action=up
756
757         json_select data
758         json_get_vars ifname
759         json_select ..
760
761         json_select config
762         json_get_vars mode
763         json_get_var vif_txpower
764         json_get_var vif_enable enable 1
765
766         [ "$vif_enable" = 1 ] || action=down
767         if [ "$mode" != "ap" ] || [ "$ifname" = "$ap_ifname" ]; then
768                 logger ip link set dev "$ifname" $action
769                 ip link set dev "$ifname" "$action" || {
770                         wireless_setup_vif_failed IFUP_ERROR
771                         json_select ..
772                         return
773                 }
774                 [ -z "$vif_txpower" ] || iw dev "$ifname" set txpower fixed "${vif_txpower%%.*}00"
775         fi
776
777         case "$mode" in
778                 mesh)
779                         wireless_vif_parse_encryption
780                         freq="$(get_freq "$phy" "$channel")"
781                         if [ "$wpa" -gt 0 -o "$auto_channel" -gt 0 ] || chan_is_dfs "$phy" "$channel"; then
782                                 mac80211_setup_supplicant $vif_enable || failed=1
783                         else
784                                 mac80211_setup_mesh $vif_enable
785                         fi
786                         for var in $MP_CONFIG_INT $MP_CONFIG_BOOL $MP_CONFIG_STRING; do
787                                 json_get_var mp_val "$var"
788                                 [ -n "$mp_val" ] && iw dev "$ifname" set mesh_param "$var" "$mp_val"
789                         done
790                 ;;
791                 adhoc)
792                         wireless_vif_parse_encryption
793                         if [ "$wpa" -gt 0 -o "$auto_channel" -gt 0 ]; then
794                                 freq="$(get_freq "$phy" "$channel")"
795                                 mac80211_setup_supplicant_noctl $vif_enable || failed=1
796                         else
797                                 mac80211_setup_adhoc $vif_enable
798                         fi
799                 ;;
800                 sta)
801                         mac80211_setup_supplicant $vif_enable || failed=1
802                 ;;
803         esac
804
805         json_select ..
806         [ -n "$failed" ] || wireless_add_vif "$name" "$ifname"
807 }
808
809 get_freq() {
810         local phy="$1"
811         local chan="$2"
812         iw "$phy" info | grep -E -m1 "(\* ${chan:-....} MHz${chan:+|\\[$chan\\]})" | grep MHz | awk '{print $2}'
813 }
814
815 chan_is_dfs() {
816         local phy="$1"
817         local chan="$2"
818         iw "$phy" info | grep -E -m1 "(\* ${chan:-....} MHz${chan:+|\\[$chan\\]})" | grep -q "MHz.*radar detection"
819         return $!
820 }
821
822 mac80211_vap_cleanup() {
823         local service="$1"
824         local vaps="$2"
825
826         for wdev in $vaps; do
827                 [ "$service" != "none" ] && ubus call ${service} config_remove "{\"iface\":\"$wdev\"}"
828                 ip link set dev "$wdev" down 2>/dev/null
829                 iw dev "$wdev" del
830         done
831 }
832
833 mac80211_interface_cleanup() {
834         local phy="$1"
835         local primary_ap=$(uci -q -P /var/state get wireless._${phy}.aplist)
836         primary_ap=${primary_ap%% *}
837
838         mac80211_vap_cleanup hostapd "${primary_ap}"
839         mac80211_vap_cleanup wpa_supplicant "$(uci -q -P /var/state get wireless._${phy}.splist)"
840         mac80211_vap_cleanup none "$(uci -q -P /var/state get wireless._${phy}.umlist)"
841 }
842
843 mac80211_set_noscan() {
844         hostapd_noscan=1
845 }
846
847 drv_mac80211_cleanup() {
848         hostapd_common_cleanup
849 }
850
851 drv_mac80211_setup() {
852         json_select config
853         json_get_vars \
854                 phy macaddr path \
855                 country chanbw distance \
856                 txpower antenna_gain \
857                 rxantenna txantenna \
858                 frag rts beacon_int:100 htmode
859         json_get_values basic_rate_list basic_rate
860         json_select ..
861
862         find_phy || {
863                 echo "Could not find PHY for device '$1'"
864                 wireless_set_retry 0
865                 return 1
866         }
867
868         [ -z "$(uci -q -P /var/state show wireless._${phy})" ] && {
869                 uci -q -P /var/state set wireless._${phy}=phy
870                 wireless_set_data phy="$phy"
871         }
872
873         OLDAPLIST=$(uci -q -P /var/state get wireless._${phy}.aplist)
874         OLDSPLIST=$(uci -q -P /var/state get wireless._${phy}.splist)
875         OLDUMLIST=$(uci -q -P /var/state get wireless._${phy}.umlist)
876
877         local wdev
878         local cwdev
879         local found
880
881         for wdev in $(list_phy_interfaces "$phy"); do
882                 found=0
883                 for cwdev in $OLDAPLIST $OLDSPLIST $OLDUMLIST; do
884                         if [ "$wdev" = "$cwdev" ]; then
885                                 found=1
886                                 break
887                         fi
888                 done
889                 if [ "$found" = "0" ]; then
890                         ip link set dev "$wdev" down
891                         iw dev "$wdev" del
892                 fi
893         done
894
895         # convert channel to frequency
896         [ "$auto_channel" -gt 0 ] || freq="$(get_freq "$phy" "$channel")"
897
898         [ -n "$country" ] && {
899                 iw reg get | grep -q "^country $country:" || {
900                         iw reg set "$country"
901                         sleep 1
902                 }
903         }
904
905         hostapd_conf_file="/var/run/hostapd-$phy.conf"
906
907         no_ap=1
908         macidx=0
909         staidx=0
910
911         [ -n "$chanbw" ] && {
912                 for file in /sys/kernel/debug/ieee80211/$phy/ath9k*/chanbw /sys/kernel/debug/ieee80211/$phy/ath5k/bwmode; do
913                         [ -f "$file" ] && echo "$chanbw" > "$file"
914                 done
915         }
916
917         set_default rxantenna 0xffffffff
918         set_default txantenna 0xffffffff
919         set_default distance 0
920         set_default antenna_gain 0
921
922         [ "$txantenna" = "all" ] && txantenna=0xffffffff
923         [ "$rxantenna" = "all" ] && rxantenna=0xffffffff
924
925         iw phy "$phy" set antenna $txantenna $rxantenna >/dev/null 2>&1
926         iw phy "$phy" set antenna_gain $antenna_gain
927         iw phy "$phy" set distance "$distance"
928
929         if [ -n "$txpower" ]; then
930                 iw phy "$phy" set txpower fixed "${txpower%%.*}00"
931         else
932                 iw phy "$phy" set txpower auto
933         fi
934
935         [ -n "$frag" ] && iw phy "$phy" set frag "${frag%%.*}"
936         [ -n "$rts" ] && iw phy "$phy" set rts "${rts%%.*}"
937
938         has_ap=
939         hostapd_ctrl=
940         ap_ifname=
941         hostapd_noscan=
942         for_each_interface "ap" mac80211_check_ap
943
944         rm -f "$hostapd_conf_file"
945
946         for_each_interface "sta adhoc mesh" mac80211_set_noscan
947         [ -n "$has_ap" ] && mac80211_hostapd_setup_base "$phy"
948
949         mac80211_prepare_iw_htmode
950         for_each_interface "sta adhoc mesh monitor" mac80211_prepare_vif
951         NEWAPLIST=
952         for_each_interface "ap" mac80211_prepare_vif
953         NEW_MD5=$(test -e "${hostapd_conf_file}" && md5sum ${hostapd_conf_file})
954         OLD_MD5=$(uci -q -P /var/state get wireless._${phy}.md5)
955         if [ "${NEWAPLIST}" != "${OLDAPLIST}" ]; then
956                 mac80211_vap_cleanup hostapd "${OLDAPLIST}"
957                 [ -n "${NEWAPLIST}" ] && mac80211_iw_interface_add "$phy" "${NEWAPLIST%% *}" __ap || return
958         fi
959         local add_ap=0
960         local primary_ap=${NEWAPLIST%% *}
961         [ -n "$hostapd_ctrl" ] && {
962                 local no_reload=1
963                 if [ -n "$(ubus list | grep hostapd.$primary_ap)" ]; then
964                         [ "${NEW_MD5}" = "${OLD_MD5}" ] || {
965                                 ubus call hostapd.$primary_ap reload
966                                 no_reload=$?
967                                 if [ "$no_reload" != "0" ]; then
968                                         mac80211_vap_cleanup hostapd "${OLDAPLIST}"
969                                         [ -n "${NEWAPLIST}" ] && mac80211_iw_interface_add "$phy" "${NEWAPLIST%% *}" __ap || return
970                                 fi
971                         }
972                 fi
973                 if [ "$no_reload" != "0" ]; then
974                         add_ap=1
975                         ubus wait_for hostapd
976                         ubus call hostapd config_add "{\"iface\":\"$primary_ap\", \"config\":\"${hostapd_conf_file}\"}"
977                         local hostapd_pid=$(ubus call service list '{"name": "hostapd"}' | jsonfilter -l 1 -e "@['hostapd'].instances['hostapd'].pid")
978                         wireless_add_process "$hostapd_pid" "/usr/sbin/hostapd" 1
979                 fi
980                 ret="$?"
981                 [ "$ret" != 0 ] && {
982                         wireless_setup_failed HOSTAPD_START_FAILED
983                         return
984                 }
985         }
986         uci -q -P /var/state set wireless._${phy}.aplist="${NEWAPLIST}"
987         uci -q -P /var/state set wireless._${phy}.md5="${NEW_MD5}"
988
989         [ "${add_ap}" = 1 ] && sleep 1
990         for_each_interface "ap" mac80211_setup_vif
991
992         NEWSPLIST=
993         NEWUMLIST=
994
995         for_each_interface "sta adhoc mesh monitor" mac80211_setup_vif
996
997         uci -q -P /var/state set wireless._${phy}.splist="${NEWSPLIST}"
998         uci -q -P /var/state set wireless._${phy}.umlist="${NEWUMLIST}"
999
1000         local foundvap
1001         local dropvap=""
1002         for oldvap in $OLDSPLIST; do
1003                 foundvap=0
1004                 for newvap in $NEWSPLIST; do
1005                         [ "$oldvap" = "$newvap" ] && foundvap=1
1006                 done
1007                 [ "$foundvap" = "0" ] && dropvap="$dropvap $oldvap"
1008         done
1009         [ -n "$dropvap" ] && mac80211_vap_cleanup wpa_supplicant "$dropvap"
1010         wireless_set_up
1011 }
1012
1013 _list_phy_interfaces() {
1014         local phy="$1"
1015         if [ -d "/sys/class/ieee80211/${phy}/device/net" ]; then
1016                 ls "/sys/class/ieee80211/${phy}/device/net" 2>/dev/null;
1017         else
1018                 ls "/sys/class/ieee80211/${phy}/device" 2>/dev/null | grep net: | sed -e 's,net:,,g'
1019         fi
1020 }
1021
1022 list_phy_interfaces() {
1023         local phy="$1"
1024
1025         for dev in $(_list_phy_interfaces "$phy"); do
1026                 readlink "/sys/class/net/${dev}/phy80211" | grep -q "/${phy}\$" || continue
1027                 echo "$dev"
1028         done
1029 }
1030
1031 drv_mac80211_teardown() {
1032         wireless_process_kill_all
1033
1034         json_select data
1035         json_get_vars phy
1036         json_select ..
1037
1038         mac80211_interface_cleanup "$phy"
1039         uci -q -P /var/state revert wireless._${phy}
1040 }
1041
1042 add_driver mac80211