[PATCH] Fixbug : Failure in receive lowest PN setting
Ze Gan
ganze718 at gmail.com
Thu Jul 2 00:16:52 EDT 2020
To set the PN for receive SA will fail because the SCI wasn't provided.
Signed-off-by: Ze Gan <ganze718 at gmail.com>
---
src/drivers/driver_macsec_linux.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/drivers/driver_macsec_linux.c b/src/drivers/driver_macsec_linux.c
index 36a0757fe..3111e3cdc 100644
--- a/src/drivers/driver_macsec_linux.c
+++ b/src/drivers/driver_macsec_linux.c
@@ -712,6 +712,9 @@ static int macsec_drv_set_receive_lowest_pn(void *priv, struct receive_sa *sa)
if (!msg)
return ret;
+ if (nla_put_rxsc_config(msg, mka_sci_u64(&sa->sc->sci)))
+ goto nla_put_failure;
+
nest = nla_nest_start(msg, MACSEC_ATTR_SA_CONFIG);
if (!nest)
goto nla_put_failure;
--
2.17.1
More information about the Hostap
mailing list