Blame SOURCES/macsec-0031-PAE-Make-KaY-specific-details-available-via-control-.patch

92bdd1
From 7508c2ad99cef6d0691190063ec7735b7759f836 Mon Sep 17 00:00:00 2001
92bdd1
Message-Id: <7508c2ad99cef6d0691190063ec7735b7759f836.1488376602.git.dcaratti@redhat.com>
92bdd1
From: Badrish Adiga H R <badrish.adigahr@gmail.com>
92bdd1
Date: Fri, 16 Dec 2016 01:40:53 +0530
92bdd1
Subject: [PATCH] PAE: Make KaY specific details available via control
92bdd1
 interface
92bdd1
92bdd1
Add KaY details to the STATUS command output.
92bdd1
92bdd1
Signed-off-by: Badrish Adiga H R <badrish.adigahr@hpe.com>
92bdd1
---
92bdd1
 src/pae/ieee802_1x_kay.c    | 49 +++++++++++++++++++++++++++++++++++++++++++++
92bdd1
 src/pae/ieee802_1x_kay.h    |  3 +++
92bdd1
 wpa_supplicant/ctrl_iface.c |  6 ++++++
92bdd1
 3 files changed, 58 insertions(+)
92bdd1
92bdd1
diff --git a/src/pae/ieee802_1x_kay.c b/src/pae/ieee802_1x_kay.c
92bdd1
index 1d6d9a9..cf5782a 100644
92bdd1
--- a/src/pae/ieee802_1x_kay.c
92bdd1
+++ b/src/pae/ieee802_1x_kay.c
92bdd1
@@ -1641,6 +1641,7 @@ ieee802_1x_mka_decode_dist_sak_body(
92bdd1
 	ieee802_1x_cp_signal_newsak(kay->cp);
92bdd1
 	ieee802_1x_cp_sm_step(kay->cp);
92bdd1
 
92bdd1
+	kay->rcvd_keys++;
92bdd1
 	participant->to_use_sak = TRUE;
92bdd1
 
92bdd1
 	return 0;
92bdd1
@@ -3519,3 +3520,51 @@ ieee802_1x_kay_change_cipher_suite(struct ieee802_1x_kay *kay,
92bdd1
 
92bdd1
 	return 0;
92bdd1
 }
92bdd1
+
92bdd1
+
92bdd1
+#ifdef CONFIG_CTRL_IFACE
92bdd1
+/**
92bdd1
+ * ieee802_1x_kay_get_status - Get IEEE 802.1X KaY status details
92bdd1
+ * @sm: Pointer to KaY allocated with ieee802_1x_kay_init()
92bdd1
+ * @buf: Buffer for status information
92bdd1
+ * @buflen: Maximum buffer length
92bdd1
+ * @verbose: Whether to include verbose status information
92bdd1
+ * Returns: Number of bytes written to buf.
92bdd1
+ *
92bdd1
+ * Query KAY status information. This function fills in a text area with current
92bdd1
+ * status information. If the buffer (buf) is not large enough, status
92bdd1
+ * information will be truncated to fit the buffer.
92bdd1
+ */
92bdd1
+int ieee802_1x_kay_get_status(struct ieee802_1x_kay *kay, char *buf,
92bdd1
+			      size_t buflen)
92bdd1
+{
92bdd1
+	int len;
92bdd1
+
92bdd1
+	if (!kay)
92bdd1
+		return 0;
92bdd1
+
92bdd1
+	len = os_snprintf(buf, buflen,
92bdd1
+			  "PAE KaY status=%s\n"
92bdd1
+			  "Authenticated=%s\n"
92bdd1
+			  "Secured=%s\n"
92bdd1
+			  "Failed=%s\n"
92bdd1
+			  "Actor Priority=%u\n"
92bdd1
+			  "Key Server Priority=%u\n"
92bdd1
+			  "Is Key Server=%s\n"
92bdd1
+			  "Number of Keys Distributed=%u\n"
92bdd1
+			  "Number of Keys Received=%u\n",
92bdd1
+			  kay->active ? "Active" : "Not-Active",
92bdd1
+			  kay->authenticated ? "Yes" : "No",
92bdd1
+			  kay->secured ? "Yes" : "No",
92bdd1
+			  kay->failed ? "Yes" : "No",
92bdd1
+			  kay->actor_priority,
92bdd1
+			  kay->key_server_priority,
92bdd1
+			  kay->is_key_server ? "Yes" : "No",
92bdd1
+			  kay->dist_kn - 1,
92bdd1
+			  kay->rcvd_keys);
92bdd1
+	if (os_snprintf_error(buflen, len))
92bdd1
+		return 0;
92bdd1
+
92bdd1
+	return len;
92bdd1
+}
92bdd1
+#endif /* CONFIG_CTRL_IFACE */
92bdd1
diff --git a/src/pae/ieee802_1x_kay.h b/src/pae/ieee802_1x_kay.h
92bdd1
index 9a92d1c..b38e814 100644
92bdd1
--- a/src/pae/ieee802_1x_kay.h
92bdd1
+++ b/src/pae/ieee802_1x_kay.h
92bdd1
@@ -208,6 +208,7 @@ struct ieee802_1x_kay {
92bdd1
 	int mka_algindex;  /* MKA alg table index */
92bdd1
 
92bdd1
 	u32 dist_kn;
92bdd1
+	u32 rcvd_keys;
92bdd1
 	u8 dist_an;
92bdd1
 	time_t dist_time;
92bdd1
 
92bdd1
@@ -267,5 +268,7 @@ int ieee802_1x_kay_enable_tx_sas(struct ieee802_1x_kay *kay,
92bdd1
 int ieee802_1x_kay_enable_rx_sas(struct ieee802_1x_kay *kay,
92bdd1
 				 struct ieee802_1x_mka_ki *lki);
92bdd1
 int ieee802_1x_kay_enable_new_info(struct ieee802_1x_kay *kay);
92bdd1
+int ieee802_1x_kay_get_status(struct ieee802_1x_kay *kay, char *buf,
92bdd1
+			      size_t buflen);
92bdd1
 
92bdd1
 #endif /* IEEE802_1X_KAY_H */
92bdd1
diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c
92bdd1
index c943dee..624e894 100644
92bdd1
--- a/wpa_supplicant/ctrl_iface.c
92bdd1
+++ b/wpa_supplicant/ctrl_iface.c
92bdd1
@@ -2050,6 +2050,12 @@ static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
92bdd1
 			pos += res;
92bdd1
 	}
92bdd1
 
92bdd1
+#ifdef CONFIG_MACSEC
92bdd1
+	res = ieee802_1x_kay_get_status(wpa_s->kay, pos, end - pos);
92bdd1
+	if (res > 0)
92bdd1
+		pos += res;
92bdd1
+#endif /* CONFIG_MACSEC */
92bdd1
+
92bdd1
 	sess_id = eapol_sm_get_session_id(wpa_s->eapol, &sess_id_len);
92bdd1
 	if (sess_id) {
92bdd1
 		char *start = pos;
92bdd1
-- 
92bdd1
2.7.4
92bdd1