openwrt/package
Bob Cantor a29ab3b79a mac80211: fix no_reload logic (FS#3902)
If drv_mac80211_setup is called twice with the same wifi configuration,
then the second call returns early with error HOSTAPD_START_FAILED.
(wifi works nevertheless, despite the fact that setup is incomplete.  But
"ubus call network.wireless status" erroneously reports that radio0 is down.)

The relevant part of drv_mac80211_setup is,

if [ "$no_reload" != "0" ]; then
        add_ap=1
        ubus wait_for hostapd
        local hostapd_res="$(ubus call hostapd config_add "{\"iface\":\"$primary_ap\", \"config\":\"${hostapd_conf_file}\"}")"
        ret="$?"
        [ "$ret" != 0 -o -z "$hostapd_res" ] && {
                wireless_setup_failed HOSTAPD_START_FAILED
                return
        }
        wireless_add_process "$(jsonfilter -s "$hostapd_res" -l 1 -e @.pid)" "/usr/sbin/hostapd" 1 1
fi

This commit sets no_reload = 0 during the second call of drv_mac80211_setup.

It is perhaps worth providing a way to reproduce the situation
where drv_mac80211_setup is called twice.

When /sbin/wifi is used to turn on wifi,
   uci set wireless.@wifi-iface[0].disabled=0
   uci set wireless.@wifi-device[0].disabled=0
   uci commit
   wifi

/sbin/wifi makes the following ubus calls,
   ubus call network reload
   ubus call network.wireless down
   ubus call network.wireless up

The first and third ubus calls both call drv_mac80211_setup,
while the second ubus call triggers wireless_device_setup_cancel.
So the call sequence becomes,

   drv_mac80211_setup
   wireless_device_setup_cancel
   drv_mac80211_setup

In contrast, when LuCI is used to turn on wifi only a single call
is made to drv_mac80211_setup.

branches affected: trunk, 21.02

Signed-off-by: Bob Cantor <coxede6557@w3boats.com>
2021-06-28 17:24:11 +02:00
..
base-files base-files: fix /tmp/TZ when zoneinfo not installed 2021-06-24 20:00:20 -10:00
boot grub2: update to 2.06 2021-06-21 09:02:26 -10:00
devel binutils: update to 2.35.2 2021-05-23 15:11:38 +02:00
firmware linux-firmware: update to 20210511 2021-06-08 00:38:41 +02:00
kernel mac80211: fix no_reload logic (FS#3902) 2021-06-28 17:24:11 +02:00
libs ustream-ssl: variants conflict with each other 2021-06-21 18:48:03 -10:00
network iwinfo: update to the latest version 2021-06-28 15:45:11 +02:00
system zram-swap: clean up the log messages 2021-06-27 14:49:14 -10:00
utils busybox: sysntpd: add trigger to reload server 2021-06-27 23:54:06 +02:00
Makefile build: fix opkg install step for large package selection 2021-05-12 11:13:53 +02:00