X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/f67f1954fb20ab83cc5e7265ba70c49fb1a82061..0920594b94d2449dbef5c95ea3fea1b193195286:/package/hostapd/patches/320-nl80211_multicall_fixes.patch?ds=inline diff --git a/package/hostapd/patches/320-nl80211_multicall_fixes.patch b/package/hostapd/patches/320-nl80211_multicall_fixes.patch index 9bd736970..6a8926d47 100644 --- a/package/hostapd/patches/320-nl80211_multicall_fixes.patch +++ b/package/hostapd/patches/320-nl80211_multicall_fixes.patch @@ -1,40 +1,32 @@ --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c -@@ -1468,7 +1468,6 @@ nla_put_failure: - } - - --#ifndef HOSTAPD - struct wiphy_info_data { - int max_scan_ssids; - int ap_supported; -@@ -1613,7 +1612,6 @@ static int wpa_driver_nl80211_capa(struc - - return 0; - } --#endif /* HOSTAPD */ - - - static int wpa_driver_nl80211_init_nl(struct wpa_driver_nl80211_data *drv) -@@ -1825,6 +1823,7 @@ static void * wpa_driver_nl80211_init(vo +@@ -2289,6 +2289,7 @@ static void * wpa_driver_nl80211_init(vo drv->monitor_ifidx = -1; drv->monitor_sock = -1; - drv->ioctl_sock = -1; + drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED; + drv->nlmode = NL80211_IFTYPE_STATION; if (wpa_driver_nl80211_init_nl(drv)) { os_free(drv); -@@ -1988,32 +1987,32 @@ wpa_driver_nl80211_finish_drv_init(struc +@@ -2446,37 +2447,37 @@ wpa_driver_nl80211_finish_drv_init(struc drv->ifindex = if_nametoindex(bss->ifname); drv->first_bss.ifindex = drv->ifindex; -#ifndef HOSTAPD -- if (wpa_driver_nl80211_set_mode(bss, IEEE80211_MODE_INFRA) < 0) { -- wpa_printf(MSG_DEBUG, "nl80211: Could not configure driver to " +- /* +- * Make sure the interface starts up in station mode unless this is a +- * dynamically added interface (e.g., P2P) that was already configured +- * with proper iftype. +- */ +- if ((drv->global == NULL || +- drv->ifindex != drv->global->if_add_ifindex) && +- wpa_driver_nl80211_set_mode(bss, NL80211_IFTYPE_STATION) < 0) { +- wpa_printf(MSG_ERROR, "nl80211: Could not configure driver to " - "use managed mode"); +- return -1; - } - -- if (linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 1)) { +- if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1)) { - if (rfkill_is_blocked(drv->rfkill)) { - wpa_printf(MSG_DEBUG, "nl80211: Could not yet enable " - "interface '%s' due to rfkill", @@ -44,14 +36,25 @@ - } else { - wpa_printf(MSG_ERROR, "nl80211: Could not set " - "interface '%s' UP", bss->ifname); -- return -1; + if (drv->nlmode == NL80211_IFTYPE_STATION) { -+ if (wpa_driver_nl80211_set_mode(bss, IEEE80211_MODE_INFRA) < 0) { -+ wpa_printf(MSG_DEBUG, "nl80211: Could not configure driver to " ++ /* ++ * Make sure the interface starts up in station mode unless this is a ++ * dynamically added interface (e.g., P2P) that was already configured ++ * with proper iftype. ++ */ ++ if ((drv->global == NULL || ++ drv->ifindex != drv->global->if_add_ifindex) && ++ wpa_driver_nl80211_set_mode(bss, NL80211_IFTYPE_STATION) < 0) { ++ wpa_printf(MSG_ERROR, "nl80211: Could not configure driver to " + "use managed mode"); -+ } -+ -+ if (linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 1)) { + return -1; + } +- } + +- netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, +- 1, IF_OPER_DORMANT); +-#endif /* HOSTAPD */ ++ if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1)) { + if (rfkill_is_blocked(drv->rfkill)) { + wpa_printf(MSG_DEBUG, "nl80211: Could not yet enable " + "interface '%s' due to rfkill", @@ -63,40 +66,11 @@ + "interface '%s' UP", bss->ifname); + return -1; + } - } -- } - -- if (wpa_driver_nl80211_capa(drv)) -- return -1; -+ if (wpa_driver_nl80211_capa(drv)) -+ return -1; - -- netlink_send_oper_ifla(drv->netlink, drv->ifindex, -- 1, IF_OPER_DORMANT); --#endif /* HOSTAPD */ -+ netlink_send_oper_ifla(drv->netlink, drv->ifindex, -+ 1, IF_OPER_DORMANT); ++ } ++ ++ netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, ++ 1, IF_OPER_DORMANT); + } - if (linux_get_ifhwaddr(drv->ioctl_sock, bss->ifname, drv->addr)) + if (wpa_driver_nl80211_capa(drv)) return -1; -@@ -3738,7 +3737,8 @@ static void nl80211_remove_iface(struct - - #ifdef HOSTAPD - /* stop listening for EAPOL on this interface */ -- del_ifidx(drv, ifidx); -+ if (drv->nlmode == NL80211_IFTYPE_AP) -+ del_ifidx(drv, ifidx); - #endif /* HOSTAPD */ - - msg = nlmsg_alloc(); -@@ -3811,7 +3811,8 @@ static int nl80211_create_iface_once(str - - #ifdef HOSTAPD - /* start listening for EAPOL on this interface */ -- add_ifidx(drv, ifidx); -+ if (drv->nlmode == NL80211_IFTYPE_AP) -+ add_ifidx(drv, ifidx); - #endif /* HOSTAPD */ - - if (addr && iftype != NL80211_IFTYPE_MONITOR &&