summaryrefslogtreecommitdiff
path: root/src/network/networkd-wifi.h
diff options
context:
space:
mode:
authorAlvin Šipraga <alsi@bang-olufsen.dk>2022-12-07 16:43:06 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2022-12-16 03:38:10 +0900
commit986b2514cc68368181ad8b5e2000346fc8394c9a (patch)
tree654a1982f970c2c935ffbc7dd3b81a67141742f8 /src/network/networkd-wifi.h
parent7eb51b8e3e62b7921f29a34a102c102b0966342b (diff)
downloadsystemd-986b2514cc68368181ad8b5e2000346fc8394c9a.tar.gz
network: wifi: check SSID when AP interfaces go up
When an AP goes up, the kernel may emit a netlink event indicating that the interface has gained carrier. In that event, we should check if the SSID has changed before attempting to reconfigure. Not doing so means that the link->ssid member is not updated, leading to a potential mismatch if some of the .network configurations match on SSID=. There are however scenarios where the above heuristic is not enough. Specifically, if the interface carrier state flip-flops within a short enough interval, the internal throttling of netlink events inside the kernel may suppress intermediate linkdown+linkup events (cf. Linux net/core/link_watch.c). So there is no linkup event to react on. To improve on the latter scenario, it is proposed to make newer kernels emit an NL80211_CMD_START_AP multicast event when an AP goes up. This event will not be dropped by link_watch. systemd-networkd can then react to such events as well, and optionally reconfigure the link if the SSID has changed. This will only work with newer kernels though.
Diffstat (limited to 'src/network/networkd-wifi.h')
-rw-r--r--src/network/networkd-wifi.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/network/networkd-wifi.h b/src/network/networkd-wifi.h
index a4ca21e42d..2ef0d302e7 100644
--- a/src/network/networkd-wifi.h
+++ b/src/network/networkd-wifi.h
@@ -3,7 +3,9 @@
#include "sd-netlink.h"
+typedef struct Link Link;
typedef struct Manager Manager;
int manager_genl_process_nl80211_config(sd_netlink *genl, sd_netlink_message *message, Manager *manager);
int manager_genl_process_nl80211_mlme(sd_netlink *genl, sd_netlink_message *message, Manager *manager);
+int link_get_wlan_interface(Link *link);