mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
497c8b0922
This commit introduces preliminary support for joining networks secured via WPA3-personal. So far it was only tested with the one OpenWRT AP configured for WPA3 (see excerpt below) where it WPA3-only as well as WPA2/WPA3 mixed worked fine. Scan results excerpt: 00:11:22:33:44:55 5180 -45 [WPA2-SAE-CCMP][SAE-H2E][ESS][UTF-8] PewPew 00:11:22:33:44:55 2412 -67 [WPA2-PSK+SAE+PSK-SHA256-CCMP][SAE-H2E][ESS][UTF-8] PewPew2 Issue #4861.
133 lines
4.0 KiB
Makefile
133 lines
4.0 KiB
Makefile
WS_CONTRIB_DIR := $(call select_from_ports,wpa_supplicant)/src/app/wpa_supplicant
|
|
WS_DIR := $(REP_DIR)/src/lib/wpa_supplicant
|
|
|
|
LIBS += libc libcrypto libssl wpa_driver_nl80211
|
|
|
|
SHARED_LIB = yes
|
|
LD_OPT += --version-script=$(WS_DIR)/symbol.map
|
|
|
|
CC_OPT += -Wno-unused-function
|
|
|
|
CC_CXX_OPT += -fpermissive
|
|
|
|
SRC_C += main.c ctrl_iface_genode.c
|
|
INC_DIR += $(REP_DIR)/include
|
|
|
|
|
|
# wpa_supplicant
|
|
SRC_C_wpa_supplicant = bssid_ignore.c \
|
|
bgscan.c \
|
|
bgscan_simple.c \
|
|
bss.c \
|
|
config.c \
|
|
config_file.c \
|
|
ctrl_iface.c \
|
|
eap_register.c \
|
|
events.c \
|
|
notify.c \
|
|
op_classes.c \
|
|
robust_av.c \
|
|
rrm.c \
|
|
scan.c \
|
|
sme.c \
|
|
wmm_ac.c \
|
|
wpa_supplicant.c \
|
|
wpas_glue.c
|
|
#
|
|
# Disable warning as the pointer in question is only used as
|
|
# token to check against a stored pointer.
|
|
#
|
|
CC_OPT_wpa_supplicant/bss += -Wno-use-after-free
|
|
|
|
SRC_C += $(addprefix wpa_supplicant/, $(SRC_C_wpa_supplicant))
|
|
INC_DIR += $(WS_CONTRIB_DIR)/wpa_supplicant
|
|
CC_OPT += -DCONFIG_BACKEND_FILE -DCONFIG_NO_CONFIG_WRITE \
|
|
-DCONFIG_SME -DCONFIG_CTRL_IFACE \
|
|
-DCONFIG_BGSCAN -DCONFIG_BGSCAN_SIMPLE \
|
|
-DCONFIG_OPENSSL_CMAC -DCONFIG_SHA256 \
|
|
-DCONFIG_SAE -DCONFIG_ECC
|
|
|
|
CC_OPT += -DTLS_DEFAULT_CIPHERS=\"DEFAULT:!EXP:!LOW\"
|
|
|
|
INC_DIR += $(WS_CONTRIB_DIR)/src/
|
|
|
|
# common
|
|
SRC_C_common = ieee802_11_common.c wpa_common.c hw_features_common.c \
|
|
ctrl_iface_common.c sae.c dragonfly.c
|
|
SRC_C += $(addprefix src/common/, $(SRC_C_common))
|
|
INC_DIR += $(WS_CONTRIB_DIR)/src/common
|
|
|
|
# crypto
|
|
SRC_C_crypto = crypto_openssl.c \
|
|
dh_groups.c \
|
|
ms_funcs.c \
|
|
random.c \
|
|
sha1-prf.c \
|
|
sha1-tlsprf.c \
|
|
sha256-prf.c \
|
|
sha256-kdf.c \
|
|
tls_openssl.c
|
|
SRC_C += $(addprefix src/crypto/, $(SRC_C_crypto))
|
|
INC_DIR += $(WS_CONTRIB_DIR)/src/crypto
|
|
|
|
SRC_C += src/drivers/driver_common.c
|
|
|
|
# eap_common
|
|
SRC_C_eap_common = chap.c \
|
|
eap_common.c \
|
|
eap_peap_common.c
|
|
SRC_C += $(addprefix src/eap_common/, $(SRC_C_eap_common))
|
|
INC_DIR += $(WS_CONTRIB_DIR)/src/eap_common
|
|
|
|
# eap_peer
|
|
SRC_C_eap_peer = eap.c \
|
|
eap_gtc.c \
|
|
eap_leap.c \
|
|
eap_md5.c \
|
|
eap_methods.c \
|
|
eap_mschapv2.c \
|
|
eap_otp.c \
|
|
eap_peap.c \
|
|
eap_tls.c \
|
|
eap_tls_common.c \
|
|
eap_ttls.c \
|
|
mschapv2.c
|
|
SRC_C += $(addprefix src/eap_peer/, $(SRC_C_eap_peer))
|
|
INC_DIR += $(WS_CONTRIB_DIR)/src/eap_peer
|
|
CC_OPT += -DEAP_TLS -DEAP_PEAP -DEAP_TTLS -DEAP_MD5 -DEAP_MSCHAPv2 \
|
|
-DEAP_OTP -DEAP_LEAP
|
|
|
|
# eapol_supp
|
|
SRC_C += src/eapol_supp/eapol_supp_sm.c
|
|
INC_DIR += $(WS_CONTRIB_DIR)/src/eapol_supp
|
|
CC_OPT += -DIEEE8021X_EAPOL
|
|
|
|
# rsn_supp
|
|
SRC_C_rsn_supp = pmksa_cache.c \
|
|
preauth.c \
|
|
wpa.c \
|
|
wpa_ie.c
|
|
SRC_C += $(addprefix src/rsn_supp/, $(SRC_C_rsn_supp))
|
|
INC_DIR += $(WS_CONTRIB_DIR)/src/rsn_supp
|
|
CC_OPT += -DCONFIG_PEERKEY
|
|
|
|
# utils
|
|
SRC_C_utils = base64.c \
|
|
bitfield.c \
|
|
common.c \
|
|
config.c \
|
|
eloop.c \
|
|
os_unix.c \
|
|
radiotap.c \
|
|
wpa_debug.c \
|
|
wpabuf.c
|
|
SRC_C += $(addprefix src/utils/, $(SRC_C_utils))
|
|
INC_DIR += $(WS_CONTRIB_DIR)/src/utils
|
|
CC_OPT += -DCONFIG_ELOOP_POLL
|
|
|
|
vpath %.c $(WS_CONTRIB_DIR)
|
|
vpath %.c $(WS_DIR)
|
|
vpath %.cc $(WS_DIR)
|
|
|
|
CC_CXX_WARN_STRICT =
|