Re: brcmfmac: how to setup SAE on RPi // Re: [PATCH] wifi: brcmsmac: advertise MFP_CAPABLE to enable WPA3
Arend Van Spriel <arend.vanspriel-dY08KVG/lbpWk0Htik3J/[email protected]> Thu, 27 Jun 2024 16:46:52 +0200
| Newsgroups | gmane.linux.kernel.wireless.general,gmane.linux.drivers.hostap |
|---|---|
| Message-ID | <[email protected]> |
--000000000000b3b780061be03355 Content-Type: text/plain; format=flowed; charset="UTF-8" Content-Transfer-Encoding: 8bit On June 27, 2024 3:46:35 PM KeithG <[email protected]> wrote: > On Thu, Jun 27, 2024 at 6:34 AM KeithG <[email protected]> wrote: >> >> On Thu, Jun 27, 2024 at 12:01 AM Arend Van Spriel >> <arend.vanspriel-dY08KVG/lbpWk0Htik3J/[email protected]> wrote: >>> >>> On June 27, 2024 12:47:02 AM KeithG <[email protected]> wrote: >>> >>>> On Wed, Jun 26, 2024 at 7:30 AM Arend Van Spriel >>>> <arend.vanspriel-dY08KVG/lbpWk0Htik3J/[email protected]> wrote: >>>>> >>>>> On June 26, 2024 2:05:07 PM KeithG <[email protected]> wrote: >>>>> >>>>>> On Wed, Jun 26, 2024 at 2:48 AM Arend Van Spriel >>>>>> <arend.vanspriel-dY08KVG/lbpWk0Htik3J/[email protected]> wrote: >>>>>>> >>>>>>> On June 21, 2024 2:24:19 PM KeithG <[email protected]> wrote: >>>>>>> >>>>>>>> On Fri, Jun 21, 2024 at 4:09 AM Arend van Spriel >>>>>>>> <arend.vanspriel-dY08KVG/lbpWk0Htik3J/[email protected]> wrote: >>>>>>>>> >>>>>>>>> + Jouni >>>>>>>>> >>>>>>>>> On 6/20/2024 8:25 PM, KeithG wrote: >>>>>>>>>> 1718907734.308740: wlan0: WPA: AP group 0x10 network profile group >>>>>>>>>> 0x18; available group 0x10 >>>>>>>>>> 1718907734.308748: wlan0: WPA: using GTK CCMP >>>>>>>>>> 1718907734.308758: wlan0: WPA: AP pairwise 0x10 network profile >>>>>>>>>> pairwise 0x10; available pairwise 0x10 >>>>>>>>>> 1718907734.308767: wlan0: WPA: using PTK CCMP >>>>>>>>>> 1718907734.308772: wlan0: WPA: AP key_mgmt 0x400 network profile >>>>>>>>>> key_mgmt 0x400; available key_mgmt 0x0 >>>>>>>>> >>>>>>>>> >>>>>>>>> I suspect the message above indicates the problem as there is no >>>>>>>>> available key_mgmt to select so looked it up in the code and here it is: >>>>>>>>> >>>>>>>>> sel = ie.key_mgmt & ssid->key_mgmt; >>>>>>>>> #ifdef CONFIG_SAE >>>>>>>>> if ((!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SAE) && >>>>>>>>> !(wpa_s->drv_flags2 & WPA_DRIVER_FLAGS2_SAE_OFFLOAD_STA)) || >>>>>>>>> wpas_is_sae_avoided(wpa_s, ssid, &ie)) >>>>>>>>> sel &= ~(WPA_KEY_MGMT_SAE | WPA_KEY_MGMT_SAE_EXT_KEY | >>>>>>>>> WPA_KEY_MGMT_FT_SAE | >>>>>>>>> WPA_KEY_MGMT_FT_SAE_EXT_KEY); >>>>>>>>> #endif /* CONFIG_SAE */ >>>>>>>>> #ifdef CONFIG_IEEE80211R >>>>>>>>> if (!(wpa_s->drv_flags & (WPA_DRIVER_FLAGS_SME | >>>>>>>>> WPA_DRIVER_FLAGS_UPDATE_FT_IES))) >>>>>>>>> sel &= ~WPA_KEY_MGMT_FT; >>>>>>>>> #endif /* CONFIG_IEEE80211R */ >>>>>>>>> wpa_dbg(wpa_s, MSG_DEBUG, >>>>>>>>> "WPA: AP key_mgmt 0x%x network profile key_mgmt 0x%x; >>>>>>>>> available key_mgmt 0x%x", >>>>>>>>> ie.key_mgmt, ssid->key_mgmt, sel); >>>>>>>>> >>>>>>>>> So 0x400 matches the expectation: >>>>>>>>> >>>>>>>>> #define WPA_KEY_MGMT_SAE BIT(10) >>>>>>>>> >>>>>>>>> You already confirmed that the driver reports SAE and SAE offload >>>>>>>>> support. So it seems wpas_is_sae_avoided() must return true. That will >>>>>>>>> check whether the AP and network profile are setup to MFP. This seems to >>>>>>>>> be the fact as your hostapd.conf and wpa_supplicant.conf both have >>>>>>>>> ieee80211w=2 defined. This function can only return true when >>>>>>>>> is enabled in configuration file: >>>>>>>>> >>>>>>>>> # sae_check_mfp: Require PMF support to select SAE key_mgmt >>>>>>>>> # 0 = Do not check PMF for SAE (default) >>>>>>>>> # 1 = Limit SAE when PMF is not enabled >>>>>>>>> # >>>>>>>>> # When enabled SAE will not be selected if PMF will not be used >>>>>>>>> # for the connection. >>>>>>>>> # Scenarios where this check will limit SAE: >>>>>>>>> # 1) ieee80211w=0 is set for the network >>>>>>>>> # 2) The AP does not have PMF enabled. >>>>>>>>> # 3) ieee80211w is unset, pmf=1 is enabled globally, and >>>>>>>>> # the device does not support the BIP cipher. >>>>>>>>> # Consider the configuration of global parameterss sae_check_mfp=1, >>>>>>>>> pmf=1 and a >>>>>>>>> # network configured with ieee80211w unset and key_mgmt=SAE WPA-PSK. >>>>>>>>> # In the example WPA-PSK will be used if the device does not support >>>>>>>>> # the BIP cipher or the AP has PMF disabled. >>>>>>>>> # Limiting SAE with this check can avoid failing to associate to an AP >>>>>>>>> # that is configured with sae_requires_mfp=1 if the device does >>>>>>>>> # not support PMF due to lack of the BIP cipher. >>>>>>>>> >>>>>>>>> The default is not to check it and you wpa_supplicant.conf does not >>>>>>>>> specify it. >>>>>>>>> >>>>>>>>> # cat /etc/wpa_supplicant/wpa_supplicant-wlan0.conf >>>>>>>>> ctrl_interface=DIR=/run/wpa_supplicant GROUP=netdev >>>>>>>>> update_config=1 >>>>>>>>> network={ >>>>>>>>> ssid="deskSAE" >>>>>>>>> sae_password="secret123" >>>>>>>>> proto=RSN >>>>>>>>> key_mgmt=SAE >>>>>>>>> pairwise=CCMP >>>>>>>>> ieee80211w=2 >>>>>>>>> } >>>>>>>>> >>>>>>>>> $ cat /etc/hostapd/hostapd.conf >>>>>>>>> # interface and driver >>>>>>>>> interface=ap0 >>>>>>>>> driver=nl80211 >>>>>>>>> >>>>>>>>> # WIFI-Config >>>>>>>>> ssid=deskSAE >>>>>>>>> channel=1 >>>>>>>>> hw_mode=g >>>>>>>>> >>>>>>>>> wpa=2 >>>>>>>>> wpa_key_mgmt=SAE >>>>>>>>> wpa_pairwise=CCMP >>>>>>>>> sae_password=secret123 >>>>>>>>> sae_groups=19 >>>>>>>>> ieee80211w=2 >>>>>>>>> sae_pwe=0 >>>>>>>>> >>>>>>>>> Regards, >>>>>>>>> Arend >>>>>>>>> >>>>>>>>> >>>>>>>>>> 1718907734.308779: wlan0: WPA: Failed to select authenticated key >>>>>>>>>> management type >>>>>>>>>> 1718907734.308787: wlan0: WPA: Failed to set WPA key management and >>>>>>>>>> encryption suites >>>>>>>> >>>>>>>> Arend, >>>>>>>> >>>>>>>> I find the wpa_supplicant docs really hard to understand. I have read >>>>>>>> through your response a few times and am still a bit confused. Does >>>>>>>> this have to do with a pure wpa3 versus a wpa2/3 AP? >>>>>>> >>>>>>> Correct. If I am not mistaken MFP aka PMF aka 802.11w is mandatory for WPA3. >>>>>>> >>>>>>>> I have tried editing my hostapd.conf and my wpa_supplicant.conf and >>>>>>>> still cannot get a connection, so I must be doing something wrong. >>>>>>>> I commented the ieee80211w line on both and it would not connect. >>>>>>>> I tried changing the wpa_key_mgmt on both ends to be 'SAE WPA_PSK' and >>>>>>>> it still would not connect. >>>>>>>> >>>>>>>> What *should* the configurations be in the hostapd.conf and >>>>>>>> wpa_supplicant.conf to negotiate this as a pure wpa3 setup? What >>>>>>>> should it be to be a wpa2/3 setup? My phone worked fine to connect >>>>>>>> with the original hostapd setup, but I have no idea what it is doing >>>>>>> >>>>>>> As I mentioned in my previous email both config files listed above look >>>>>>> okay to me (might be wrong though). The problem seems to be with >>>>>>> wpas_is_sae_avoided(). For it to return true the config should have: >>>>>>> >>>>>>> sae_check_mfp=1 >>>>>>> >>>>>>> But you don't have that and default is 0 so it should check for MFP. This >>>>>>> is where my trail ends. To learn more I would add additional debug prints. >>>>>>> Are you comfortable rebuilding wpa_supplicant from source? >>>>>>> >>>>>>> Regards, >>>>>>> Arend >>>>>> >>>>>> Arend, >>>>>> >>>>>> Thanks for the reply. I could try to rebuild wpa_supplicant from >>>>>> source. This is on RPi, so debian *.debs which are a pain, but I think >>>>>> I can do it. >>>>>> >>>>>> Do I understand correctly that 'sae_check_mfp=1' is supposed to be in >>>>>> the hostapd.conf and wpa_supplicant.conf? I can try that and see if >>>>>> anything changes. >>>>> >>>>> Ok. We can try first to put following in wpa_supplicant.conf: >>>>> >>>>> sae_check_mfp=0 >>>>> >>>>> Let me know if that makes any difference. >>>>> >>>>>> Why would I have to re-build wpa_supplicant? >>>>> >>>>> I would provide a patch with additional debug prints so I get better >>>>> understanding what is going wrong. Would be great if you can apply that and >>>>> rebuild. >>>>> >>>>> Regards, >>>>> Arend >>>> Arend, >>>> >>>> I was able to try it this afternoon. >>>> My hostapd is still: >>>> # interface and driver >>>> interface=ap0 >>>> driver=nl80211 >>>> >>>> # WIFI-Config >>>> ssid=deskSAE >>>> channel=1 >>>> hw_mode=g >>>> >>>> wpa=2 >>>> wpa_key_mgmt=SAE >>>> wpa_pairwise=CCMP >>>> sae_password=secret123 >>>> sae_groups=19 >>>> ieee80211w=2 >>>> sae_pwe=0 >>>> >>>> and I can still connect from my phone to this AP. >>>> >>>> I tried this as my /etc/wpa_supplicant/wpa_supplicant-wlan0.conf >>>> ctrl_interface=DIR=/run/wpa_supplicant GROUP=netdev >>>> update_config=1 >>>> network={ >>>> ssid="deskSAE" >>>> sae_password="secret123" >>>> proto=RSN >>>> key_mgmt=SAE >>>> pairwise=CCMP >>>> ieee80211w=2 >>>> sae_check_mfp=1 >>>> } >>>> >>>> and when I try to connect, I get: >>>> # wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant-wlan0.conf >>>> Successfully initialized wpa_supplicant >>>> Line 10: unknown network field 'sae_check_mfp'. >>>> Line 11: failed to parse network block. >>> >>> Right. The setting sae_check_mfp is a global setting like update_config. So >>> it should be moved outside the network block. >>> >>> Regards, >>> Arend >> Arend, >> >> Thanks for the hand holding, I am out of my depth here! >> >> I tried this config and get a similar result. >> ctrl_interface=DIR=/run/wpa_supplicant GROUP=netdev >> update_config=1 >> sae_check_mfp=1 >> network={ >> ssid="deskSAE" >> sae_password="secret123" >> proto=RSN >> key_mgmt=SAE >> pairwise=CCMP >> ieee80211w=2 >> } >> # wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant-wlan0.conf >> Successfully initialized wpa_supplicant >> Line 3: unknown global field 'sae_check_mfp=1'. >> Line 3: Invalid configuration line 'sae_check_mfp=1'. >> Failed to read or parse configuration >> '/etc/wpa_supplicant/wpa_supplicant-wlan0.conf'. >> : CTRL-EVENT-DSCP-POLICY clear_all >> >> seems it doesn't recognize this parameter. >> >> Keith > > Replying to my own post. > I re-built wpa_supplicant from the current git: > # wpa_supplicant -v > wpa_supplicant v2.11-devel-hostap_2_10-2215-gc9db4925f > Copyright (c) 2003-2022, Jouni Malinen <[email protected]> and contributors > > It now seems to recognize the 'sae_check_mfp' parameter, but still > does not connect: > # wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant-wlan0.conf > Successfully initialized wpa_supplicant > wlan0: Trying to associate with SSID 'deskSAE' > wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:00:00:00:00:00 status_code=16 > wlan0: Added BSSID d8:3a:dd:60:a3:0c into ignore list, ignoring for 10 seconds > wlan0: Removed BSSID d8:3a:dd:60:a3:0c from ignore list (clear) > wlan0: Trying to associate with SSID 'deskSAE' > wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:00:00:00:00:00 status_code=16 > wlan0: Added BSSID d8:3a:dd:60:a3:0c into ignore list, ignoring for 10 seconds > wlan0: Removed BSSID d8:3a:dd:60:a3:0c from ignore list (clear) > wlan0: Trying to associate with SSID 'deskSAE' > wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:00:00:00:00:00 status_code=16 > wlan0: Added BSSID d8:3a:dd:60:a3:0c into ignore list, ignoring for 10 seconds > wlan0: Removed BSSID d8:3a:dd:60:a3:0c from ignore list (clear) > wlan0: Trying to associate with SSID 'deskSAE' > wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:00:00:00:00:00 status_code=16 > wlan0: Added BSSID d8:3a:dd:60:a3:0c into ignore list, ignoring for 10 seconds > wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="deskSAE" > auth_failures=1 duration=10 reason=CONN_FAILED > wlan0: CTRL-EVENT-SSID-REENABLED id=0 ssid="deskSAE" > wlan0: BSSID d8:3a:dd:60:a3:0c ignore list count incremented to 2, > ignoring for 10 seconds > wlan0: Removed BSSID d8:3a:dd:60:a3:0c from ignore list (clear) > wlan0: Trying to associate with SSID 'deskSAE' > wlan0: CTRL-EVENT-ASSOC-REJECT bssid=00:00:00:00:00:00 status_code=16 > wlan0: Added BSSID d8:3a:dd:60:a3:0c into ignore list, ignoring for 10 seconds > wlan0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="deskSAE" > auth_failures=2 duration=20 reason=CONN_FAILED > ^Cp2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all > p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all > nl80211: deinit ifname=p2p-dev-wlan0 disabled_11b_rates=0 > p2p-dev-wlan0: CTRL-EVENT-TERMINATING > wlan0: CTRL-EVENT-DSCP-POLICY clear_all > wlan0: Removed BSSID d8:3a:dd:60:a3:0c from ignore list (clear) > wlan0: CTRL-EVENT-DSCP-POLICY clear_all > nl80211: deinit ifname=wlan0 disabled_11b_rates=0 > wlan0: CTRL-EVENT-TERMINATING > > I tried setting the 'sae_check_mfp' to both 1 and 0 and still cannot > connect with this 'current' version of wpa_supplicant. Right. So I should have asked about the wpa_supplicant from the start. Let me work on patch for debugging this based on git version (SHA1: c9db4925f). Regards, Arend --000000000000b3b780061be03355 Content-Type: application/pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature 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 2Gzj3QNJRLsZu1TLyOyBBIr/BE7UiY3RabgRzknBGAPmzhS+fmyM8OtM5BYBsFBrSUFtZZO2p/tf Nbc24J2zf2peoZ8MK+7WQqummYlOnz+FyDkA9EybeNMcS5C+xi/PAgMBAAGjggHdMIIB2TAOBgNV HQ8BAf8EBAMCBaAwgaMGCCsGAQUFBwEBBIGWMIGTME4GCCsGAQUFBzAChkJodHRwOi8vc2VjdXJl Lmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2djY3IzcGVyc29uYWxzaWduMmNhMjAyMC5jcnQwQQYI KwYBBQUHMAGGNWh0dHA6Ly9vY3NwLmdsb2JhbHNpZ24uY29tL2dzZ2NjcjNwZXJzb25hbHNpZ24y Y2EyMDIwME0GA1UdIARGMEQwQgYKKwYBBAGgMgEoCjA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3 dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzAJBgNVHRMEAjAAMEkGA1UdHwRCMEAwPqA8oDqG OGh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vZ3NnY2NyM3BlcnNvbmFsc2lnbjJjYTIwMjAuY3Js MCcGA1UdEQQgMB6BHGFyZW5kLnZhbnNwcmllbEBicm9hZGNvbS5jb20wEwYDVR0lBAwwCgYIKwYB BQUHAwQwHwYDVR0jBBgwFoAUljPR5lgXWzR1ioFWZNW+SN6hj88wHQYDVR0OBBYEFIikAXd8CEtv ZbDflDRnf3tuStPuMA0GCSqGSIb3DQEBCwUAA4IBAQCdS5XCYx6k2GGZui9DlFsFm75khkqAU7rT zBX04sJU1+B1wtgmWTVIzW7ugdtDZ4gzaV0S9xRhpDErjJaltxPbCylb1DEsLj+AIvBR34caW6ZG sQk444t0HPb29HnWYj+OllIGMbdJWr0/P95ZrKk2bP24ub3ZP/8SyzrohfIba9WZKMq6g2nTLZE3 BtkeSGJx/8dy0h8YmRn+adOrxKXHxhSL8BNn8wsmIZyYWe6fRcBtO3Ks2DOLyHCdkoFlN8x9VUQF N2ulEgqCbRKkx+qNirW86eF138lr1gRxzclu/38ko//MmkAYR/+hP3WnBll7zbpIt0jc9wyFkSqH p8a1MYICbTCCAmkCAQEwazBbMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1z YTExMC8GA1UEAxMoR2xvYmFsU2lnbiBHQ0MgUjMgUGVyc29uYWxTaWduIDIgQ0EgMjAyMAIMTv1t bpIzNUky46LXMA0GCWCGSAFlAwQCAQUAoIHUMC8GCSqGSIb3DQEJBDEiBCDij90rB5dqVuFC55Vu TgjiLMHf9EQCzsVhWU1fj5ab8jAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJ BTEPFw0yNDA2MjcxNDQ2NTRaMGkGCSqGSIb3DQEJDzFcMFowCwYJYIZIAWUDBAEqMAsGCWCGSAFl AwQBFjALBglghkgBZQMEAQIwCgYIKoZIhvcNAwcwCwYJKoZIhvcNAQEKMAsGCSqGSIb3DQEBBzAL BglghkgBZQMEAgEwDQYJKoZIhvcNAQEBBQAEggEAxAUhiVMCxrlODZhPpiOzIglyY+6aKOM94wY3 K+YjBcEtXw6itkkCSna8bu+7qHcIL9DPEAFRQdbVftIER0W7xk78GbPq5AUS7PAqeYsW2upfVH/7 2XRUylxurT3F0WmLnUhHMZVP/rCqe7lk+Xa3YLIF14eKiFVIypCfTO6Dcj2XCUtryzddOrxmuBGm UTjvJ2QANJFY1RHAhavz7kjBQ+XJ2TrBpY2tg4H/cZ14xm57xtdoz6LbsGSf5hdVbrclebCcPV1E PUSk8527/Xj5KclqBjkPwL39LPPhHej1dvysU16mukeMs+rhxJ75wqtyhroaFtsDpTG8wG8kqba+ 5w== --000000000000b3b780061be03355--