Blame SOURCES/macsec-0007-mka-Add-driver-op-to-get-macsec-capabilities.patch

92bdd1
From a25e4efc9e428d968e83398bd8c9c94698ba5851 Mon Sep 17 00:00:00 2001
92bdd1
Message-Id: <a25e4efc9e428d968e83398bd8c9c94698ba5851.1488376601.git.dcaratti@redhat.com>
92bdd1
From: Sabrina Dubroca <sd@queasysnail.net>
92bdd1
Date: Fri, 7 Oct 2016 12:08:12 +0200
92bdd1
Subject: [PATCH] mka: Add driver op to get macsec capabilities
92bdd1
92bdd1
This also implements the macsec_get_capability for the macsec_qca
92bdd1
driver to maintain the existing behavior.
92bdd1
92bdd1
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
92bdd1
---
92bdd1
 src/drivers/driver.h            |  8 ++++++++
92bdd1
 src/drivers/driver_macsec_qca.c | 11 +++++++++++
92bdd1
 src/pae/ieee802_1x_kay.c        | 18 ++++++++++++++++--
92bdd1
 src/pae/ieee802_1x_kay.h        |  1 +
92bdd1
 src/pae/ieee802_1x_secy_ops.c   | 20 ++++++++++++++++++++
92bdd1
 src/pae/ieee802_1x_secy_ops.h   |  1 +
92bdd1
 wpa_supplicant/driver_i.h       |  8 ++++++++
92bdd1
 wpa_supplicant/wpas_kay.c       |  7 +++++++
92bdd1
 8 files changed, 72 insertions(+), 2 deletions(-)
92bdd1
92bdd1
diff --git a/src/drivers/driver.h b/src/drivers/driver.h
92bdd1
index a57aa53..ea4a41f 100644
92bdd1
--- a/src/drivers/driver.h
92bdd1
+++ b/src/drivers/driver.h
92bdd1
@@ -3298,6 +3298,14 @@ struct wpa_driver_ops {
92bdd1
 	int (*macsec_deinit)(void *priv);
92bdd1
 
92bdd1
 	/**
92bdd1
+	 * macsec_get_capability - Inform MKA of this driver's capability
92bdd1
+	 * @priv: Private driver interface data
92bdd1
+	 * @cap: Driver's capability
92bdd1
+	 * Returns: 0 on success, -1 on failure
92bdd1
+	 */
92bdd1
+	int (*macsec_get_capability)(void *priv, enum macsec_cap *cap);
92bdd1
+
92bdd1
+	/**
92bdd1
 	 * enable_protect_frames - Set protect frames status
92bdd1
 	 * @priv: Private driver interface data
92bdd1
 	 * @enabled: TRUE = protect frames enabled
92bdd1
diff --git a/src/drivers/driver_macsec_qca.c b/src/drivers/driver_macsec_qca.c
92bdd1
index 385f7c5..041bcf5 100644
92bdd1
--- a/src/drivers/driver_macsec_qca.c
92bdd1
+++ b/src/drivers/driver_macsec_qca.c
92bdd1
@@ -458,6 +458,16 @@ static int macsec_qca_macsec_deinit(void *priv)
92bdd1
 }
92bdd1
 
92bdd1
 
92bdd1
+static int macsec_qca_get_capability(void *priv, enum macsec_cap *cap)
92bdd1
+{
92bdd1
+	wpa_printf(MSG_DEBUG, "%s", __func__);
92bdd1
+
92bdd1
+	*cap = MACSEC_CAP_INTEG_AND_CONF_0_30_50;
92bdd1
+
92bdd1
+	return 0;
92bdd1
+}
92bdd1
+
92bdd1
+
92bdd1
 static int macsec_qca_enable_protect_frames(void *priv, Boolean enabled)
92bdd1
 {
92bdd1
 	struct macsec_qca_data *drv = priv;
92bdd1
@@ -889,6 +899,7 @@ const struct wpa_driver_ops wpa_driver_macsec_qca_ops = {
92bdd1
 
92bdd1
 	.macsec_init = macsec_qca_macsec_init,
92bdd1
 	.macsec_deinit = macsec_qca_macsec_deinit,
92bdd1
+	.macsec_get_capability = macsec_qca_get_capability,
92bdd1
 	.enable_protect_frames = macsec_qca_enable_protect_frames,
92bdd1
 	.set_replay_protect = macsec_qca_set_replay_protect,
92bdd1
 	.set_current_cipher_suite = macsec_qca_set_current_cipher_suite,
92bdd1
diff --git a/src/pae/ieee802_1x_kay.c b/src/pae/ieee802_1x_kay.c
92bdd1
index a8e7efc..52eeeff 100644
92bdd1
--- a/src/pae/ieee802_1x_kay.c
92bdd1
+++ b/src/pae/ieee802_1x_kay.c
92bdd1
@@ -3069,13 +3069,20 @@ ieee802_1x_kay_init(struct ieee802_1x_kay_ctx *ctx, enum macsec_policy policy,
92bdd1
 		kay->macsec_replay_window = 0;
92bdd1
 		kay->macsec_confidentiality = CONFIDENTIALITY_NONE;
92bdd1
 	} else {
92bdd1
-		kay->macsec_capable = MACSEC_CAP_INTEG_AND_CONF_0_30_50;
92bdd1
+		if (secy_get_capability(kay, &kay->macsec_capable) < 0) {
92bdd1
+			os_free(kay);
92bdd1
+			return NULL;
92bdd1
+		}
92bdd1
+
92bdd1
 		kay->macsec_desired = TRUE;
92bdd1
 		kay->macsec_protect = TRUE;
92bdd1
 		kay->macsec_validate = Strict;
92bdd1
 		kay->macsec_replay_protect = FALSE;
92bdd1
 		kay->macsec_replay_window = 0;
92bdd1
-		kay->macsec_confidentiality = CONFIDENTIALITY_OFFSET_0;
92bdd1
+		if (kay->macsec_capable >= MACSEC_CAP_INTEG_AND_CONF)
92bdd1
+			kay->macsec_confidentiality = CONFIDENTIALITY_OFFSET_0;
92bdd1
+		else
92bdd1
+			kay->macsec_confidentiality = MACSEC_CAP_INTEGRITY;
92bdd1
 	}
92bdd1
 
92bdd1
 	wpa_printf(MSG_DEBUG, "KaY: state machine created");
92bdd1
@@ -3409,6 +3416,7 @@ ieee802_1x_kay_change_cipher_suite(struct ieee802_1x_kay *kay,
92bdd1
 				   unsigned int cs_index)
92bdd1
 {
92bdd1
 	struct ieee802_1x_mka_participant *participant;
92bdd1
+	enum macsec_cap secy_cap;
92bdd1
 
92bdd1
 	if (!kay)
92bdd1
 		return -1;
92bdd1
@@ -3427,6 +3435,12 @@ ieee802_1x_kay_change_cipher_suite(struct ieee802_1x_kay *kay,
92bdd1
 	kay->macsec_csindex = cs_index;
92bdd1
 	kay->macsec_capable = cipher_suite_tbl[kay->macsec_csindex].capable;
92bdd1
 
92bdd1
+	if (secy_get_capability(kay, &secy_cap) < 0)
92bdd1
+		return -3;
92bdd1
+
92bdd1
+	if (kay->macsec_capable > secy_cap)
92bdd1
+		kay->macsec_capable = secy_cap;
92bdd1
+
92bdd1
 	participant = ieee802_1x_kay_get_principal_participant(kay);
92bdd1
 	if (participant) {
92bdd1
 		wpa_printf(MSG_INFO, "KaY: Cipher Suite changed");
92bdd1
diff --git a/src/pae/ieee802_1x_kay.h b/src/pae/ieee802_1x_kay.h
92bdd1
index 144ee90..bf6fbe5 100644
92bdd1
--- a/src/pae/ieee802_1x_kay.h
92bdd1
+++ b/src/pae/ieee802_1x_kay.h
92bdd1
@@ -138,6 +138,7 @@ struct ieee802_1x_kay_ctx {
92bdd1
 	/* abstract wpa driver interface */
92bdd1
 	int (*macsec_init)(void *ctx, struct macsec_init_params *params);
92bdd1
 	int (*macsec_deinit)(void *ctx);
92bdd1
+	int (*macsec_get_capability)(void *priv, enum macsec_cap *cap);
92bdd1
 	int (*enable_protect_frames)(void *ctx, Boolean enabled);
92bdd1
 	int (*set_replay_protect)(void *ctx, Boolean enabled, u32 window);
92bdd1
 	int (*set_current_cipher_suite)(void *ctx, u64 cs);
92bdd1
diff --git a/src/pae/ieee802_1x_secy_ops.c b/src/pae/ieee802_1x_secy_ops.c
92bdd1
index b8fcf05..32ee816 100644
92bdd1
--- a/src/pae/ieee802_1x_secy_ops.c
92bdd1
+++ b/src/pae/ieee802_1x_secy_ops.c
92bdd1
@@ -113,6 +113,26 @@ int secy_cp_control_enable_port(struct ieee802_1x_kay *kay, Boolean enabled)
92bdd1
 }
92bdd1
 
92bdd1
 
92bdd1
+int secy_get_capability(struct ieee802_1x_kay *kay, enum macsec_cap *cap)
92bdd1
+{
92bdd1
+	struct ieee802_1x_kay_ctx *ops;
92bdd1
+
92bdd1
+	if (!kay) {
92bdd1
+		wpa_printf(MSG_ERROR, "KaY: %s params invalid", __func__);
92bdd1
+		return -1;
92bdd1
+	}
92bdd1
+
92bdd1
+	ops = kay->ctx;
92bdd1
+	if (!ops || !ops->macsec_get_capability) {
92bdd1
+		wpa_printf(MSG_ERROR,
92bdd1
+			   "KaY: secy macsec_get_capability operation not supported");
92bdd1
+		return -1;
92bdd1
+	}
92bdd1
+
92bdd1
+	return ops->macsec_get_capability(ops->ctx, cap);
92bdd1
+}
92bdd1
+
92bdd1
+
92bdd1
 int secy_get_receive_lowest_pn(struct ieee802_1x_kay *kay,
92bdd1
 			       struct receive_sa *rxsa)
92bdd1
 {
92bdd1
diff --git a/src/pae/ieee802_1x_secy_ops.h b/src/pae/ieee802_1x_secy_ops.h
92bdd1
index 120ca3c..bfd5737 100644
92bdd1
--- a/src/pae/ieee802_1x_secy_ops.h
92bdd1
+++ b/src/pae/ieee802_1x_secy_ops.h
92bdd1
@@ -28,6 +28,7 @@ int secy_cp_control_confidentiality_offset(struct ieee802_1x_kay *kay,
92bdd1
 int secy_cp_control_enable_port(struct ieee802_1x_kay *kay, Boolean flag);
92bdd1
 
92bdd1
 /****** KaY -> SecY *******/
92bdd1
+int secy_get_capability(struct ieee802_1x_kay *kay, enum macsec_cap *cap);
92bdd1
 int secy_get_receive_lowest_pn(struct ieee802_1x_kay *kay,
92bdd1
 			       struct receive_sa *rxsa);
92bdd1
 int secy_get_transmit_next_pn(struct ieee802_1x_kay *kay,
92bdd1
diff --git a/wpa_supplicant/driver_i.h b/wpa_supplicant/driver_i.h
92bdd1
index d47395c..5d5dcf0 100644
92bdd1
--- a/wpa_supplicant/driver_i.h
92bdd1
+++ b/wpa_supplicant/driver_i.h
92bdd1
@@ -715,6 +715,14 @@ static inline int wpa_drv_macsec_deinit(struct wpa_supplicant *wpa_s)
92bdd1
 	return wpa_s->driver->macsec_deinit(wpa_s->drv_priv);
92bdd1
 }
92bdd1
 
92bdd1
+static inline int wpa_drv_macsec_get_capability(struct wpa_supplicant *wpa_s,
92bdd1
+						enum macsec_cap *cap)
92bdd1
+{
92bdd1
+	if (!wpa_s->driver->macsec_get_capability)
92bdd1
+		return -1;
92bdd1
+	return wpa_s->driver->macsec_get_capability(wpa_s->drv_priv, cap);
92bdd1
+}
92bdd1
+
92bdd1
 static inline int wpa_drv_enable_protect_frames(struct wpa_supplicant *wpa_s,
92bdd1
 						Boolean enabled)
92bdd1
 {
92bdd1
diff --git a/wpa_supplicant/wpas_kay.c b/wpa_supplicant/wpas_kay.c
92bdd1
index 4163b61..29b7b56 100644
92bdd1
--- a/wpa_supplicant/wpas_kay.c
92bdd1
+++ b/wpa_supplicant/wpas_kay.c
92bdd1
@@ -38,6 +38,12 @@ static int wpas_macsec_deinit(void *priv)
92bdd1
 }
92bdd1
 
92bdd1
 
92bdd1
+static int wpas_macsec_get_capability(void *priv, enum macsec_cap *cap)
92bdd1
+{
92bdd1
+	return wpa_drv_macsec_get_capability(priv, cap);
92bdd1
+}
92bdd1
+
92bdd1
+
92bdd1
 static int wpas_enable_protect_frames(void *wpa_s, Boolean enabled)
92bdd1
 {
92bdd1
 	return wpa_drv_enable_protect_frames(wpa_s, enabled);
92bdd1
@@ -191,6 +197,7 @@ int ieee802_1x_alloc_kay_sm(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
92bdd1
 
92bdd1
 	kay_ctx->macsec_init = wpas_macsec_init;
92bdd1
 	kay_ctx->macsec_deinit = wpas_macsec_deinit;
92bdd1
+	kay_ctx->macsec_get_capability = wpas_macsec_get_capability;
92bdd1
 	kay_ctx->enable_protect_frames = wpas_enable_protect_frames;
92bdd1
 	kay_ctx->set_replay_protect = wpas_set_replay_protect;
92bdd1
 	kay_ctx->set_current_cipher_suite = wpas_set_current_cipher_suite;
92bdd1
-- 
92bdd1
2.7.4
92bdd1