[openSUSE/wicked] 0c40b9: wireless: Add missing GCMP to group capabilities
Branch: refs/heads/testing Home: https://github.com/openSUSE/wicked Commit: 0c40b925b71df792cea942b54ce4e1340f8d3fee https://github.com/openSUSE/wicked/commit/0c40b925b71df792cea942b54ce4e1340f... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M src/wireless.c Log Message: ----------- wireless: Add missing GCMP to group capabilities This avoid debug message: ``` wickedd[6821]: wlan1: unable to translate Group capability gcmp ``` Commit: 3f832be771756c23f4ccb05b4dcebae243f23847 https://github.com/openSUSE/wicked/commit/3f832be771756c23f4ccb05b4dcebae243... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M src/wireless.c Log Message: ----------- wirless: Fix bss->rsn->management-group wpa_supplicant send the Management-Group for a bss (scan-result) in a different format then in capabilities, thus we need to have the cipher name also without `-` bettween (e.g. `AES-128-CMAC` was given as `AES128CMAC`) Commit: 71759c08e5941dd159f779992e1f61c51fe6e2e4 https://github.com/openSUSE/wicked/commit/71759c08e5941dd159f779992e1f61c51f... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M include/wicked/wireless.h M schema/constants.xml.in M src/wireless.c M util/mkconst.c Log Message: ----------- xml: Remove orphan wireless constant types This commit remove the orphan types created with eed7dddbc. Commit: f95d15e52848ba4934ea4394c1fc1f06e270aa2b https://github.com/openSUSE/wicked/commit/f95d15e52848ba4934ea4394c1fc1f06e2... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M client/compat.c M client/suse/compat-suse.c M include/wicked/wireless.h M man/ifcfg-wireless.5.in M man/src/ifcfg-wireless.5.md M schema/constants.xml.in M schema/wireless.xml M src/dbus-objects/wireless.c M src/wireless.c M util/mkconst.c Log Message: ----------- wireless: Add support for PMF (ieee80211w) Add a option to set `PMF`. It can be `disabled`, `optional` or `required`. For ifcfg configuration files use: ``` WIRELESS_PMF=[disabled|optional|required] ``` Commit: f02e3d908122125310fdf64069f1035eb997b368 https://github.com/openSUSE/wicked/commit/f02e3d908122125310fdf64069f1035eb9... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M client/suse/compat-suse.c M man/ifcfg-wireless.5.in M man/src/ifcfg-wireless.5.md Log Message: ----------- wireless: Add ifcfg variable WIRELESS_KEY_MGMT Commit: 0e72c1ed2548d3248acb9100fe0db38d35dc51f5 https://github.com/openSUSE/wicked/commit/0e72c1ed2548d3248acb9100fe0db38d35... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M src/wireless.c Log Message: ----------- wireless: Use correct key_mgmt_map for wpa_supplicant Commit: 332649e0c44fa8b427694277a8d0271ffe875912 https://github.com/openSUSE/wicked/commit/332649e0c44fa8b427694277a8d0271ffe... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M src/dbus-objects/wireless.c Log Message: ----------- wireless-dbus: Rename ni_objectmode_mask_from_dbus to ni_objectmode_bitmap_from_dbus Commit: c3a21f6b2968c9c9d62aa81da3d73cc8b18c5342 https://github.com/openSUSE/wicked/commit/c3a21f6b2968c9c9d62aa81da3d73cc8b1... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M client/compat.c M client/suse/compat-suse.c M include/wicked/wireless.h M src/dbus-objects/wireless.c M src/wireless.c Log Message: ----------- wireless: Set key-management default based on capabilities We use the passphrase to detect a PSK configuration and the eap-method for EAP. Once a config is detected and the key-management wasn't set explicit, we use defaults for PSK or EAP. The default is all known suitable key-managment methods, but only those who are mentioned in capabilities. PMF will be enabled (optional), once it isn't set via config and a "newer" key-management method is used. Commit: 36c2f7ce1f55d4edcd0d879332acaade55f3debb https://github.com/openSUSE/wicked/commit/36c2f7ce1f55d4edcd0d879332acaade55... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M include/wicked/wireless.h M src/wireless.c Log Message: ----------- wireless: Do not use mlock for network The usage of mlock is wrong here, as we protect a struct, which has the pointer to the password, but not the password it self. Commit: 09ebe0a6a4263e1b26991a1f621ec60a89d6a54f https://github.com/openSUSE/wicked/commit/09ebe0a6a4263e1b26991a1f621ec60a89... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M client/suse/compat-suse.c M include/wicked/wireless.h M src/dbus-objects/wireless.c M src/wireless.c Log Message: ----------- wireless: Use refcount api for ni_wireless_network_t Commit: 514f626684aaf8d5da5ead736942afa75cfb1176 https://github.com/openSUSE/wicked/commit/514f626684aaf8d5da5ead736942afa75c... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M src/wpa-supplicant.c Log Message: ----------- wpa_supplicant: Add missing free of wpa-nif properties Commit: 82d3700e3274d19a51b963bb25a2f46f5b15e497 https://github.com/openSUSE/wicked/commit/82d3700e3274d19a51b963bb25a2f46f5b... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M man/ifcfg-wireless.5.in M man/src/ifcfg-wireless.5.md Log Message: ----------- man: ifcfg-wireless nicer output of WIRELESS_ESSID special chars Commit: e2f5ec3073ef48703e8d2a45c93eee7e70a6f17f https://github.com/openSUSE/wicked/commit/e2f5ec3073ef48703e8d2a45c93eee7e70... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M src/wpa-supplicant.c M src/wpa-supplicant.h Log Message: ----------- wpa-supplicant: Get properties of fi.w1.wpa_supplicant1 Commit: d5313a6d0f39f5cfe92e0c213269040b05ac53d4 https://github.com/openSUSE/wicked/commit/d5313a6d0f39f5cfe92e0c213269040b05... Author: Clemens Famulla-Conrad <cfamullaconrad@suse.de> Date: 2022-06-28 (Tue, 28 Jun 2022) Changed paths: M src/wireless.c Log Message: ----------- wireless: Fix default key_mgmt for none FT support in wpa_supplicant Commit: 5ee0e2586a02ec2de344feda7f3de56b13fb77d2 https://github.com/openSUSE/wicked/commit/5ee0e2586a02ec2de344feda7f3de56b13... Author: Marius Tomaschewski <mt@suse.de> Date: 2022-07-04 (Mon, 04 Jul 2022) Changed paths: M client/compat.c M client/suse/compat-suse.c M include/wicked/wireless.h M man/ifcfg-wireless.5.in M man/src/ifcfg-wireless.5.md M schema/constants.xml.in M schema/wireless.xml M src/dbus-objects/wireless.c M src/wireless.c M src/wpa-supplicant.c M src/wpa-supplicant.h M util/mkconst.c Log Message: ----------- Merge pull request https://github.com/openSUSE/wicked/pull/920 wireless: add support for WPA3 (Enterprise and Personal) - Add variable to specify specific key management bit mask WIRELESS_KEY_MGMT - Add variable to for Protected Management Frame setting WIRELESS_PMF - Improve the default setting for key management Compare: https://github.com/openSUSE/wicked/compare/2fd8a3f32d26...5ee0e2586a02
participants (1)
-
Marius Tomaschewski