forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[vslib]: fix create MACsec SA error (sonic-net#986)
* fix get_cipher_name from wrong attr variable Signed-off-by: Ze Gan <ganze718@gmail.com> * Add unittest Signed-off-by: Ze Gan <ganze718@gmail.com> * Re-create failed MACsec SAs Signed-off-by: Ze Gan <ganze718@gmail.com>
- Loading branch information
Showing
8 changed files
with
270 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -449,3 +449,4 @@ zeromq | |
zmq | ||
ZMQ | ||
ZMQ | ||
uncreated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
#include "SwitchStateBase.h" | ||
#include "MACsecAttr.h" | ||
|
||
#include <gtest/gtest.h> | ||
|
||
#include <vector> | ||
|
||
using namespace saivs; | ||
|
||
TEST(SwitchStateBase, loadMACsecAttrFromMACsecSA) | ||
{ | ||
auto sc = std::make_shared<SwitchConfig>(0, ""); | ||
auto scc = std::make_shared<SwitchConfigContainer>(); | ||
|
||
SwitchStateBase ss( | ||
0x2100000000, | ||
std::make_shared<RealObjectIdManager>(0, scc), | ||
sc); | ||
|
||
sai_attribute_t attr; | ||
std::vector<sai_attribute_t> attrs; | ||
MACsecAttr macsecAttr; | ||
|
||
attr.id = SAI_MACSEC_SC_ATTR_FLOW_ID; | ||
attrs.push_back(attr); | ||
attr.id = SAI_MACSEC_SC_ATTR_MACSEC_SCI; | ||
attrs.push_back(attr); | ||
attr.id = SAI_MACSEC_SC_ATTR_ENCRYPTION_ENABLE; | ||
attrs.push_back(attr); | ||
attr.id = SAI_MACSEC_SC_ATTR_MACSEC_CIPHER_SUITE; | ||
attr.value.s32 = sai_macsec_cipher_suite_t::SAI_MACSEC_CIPHER_SUITE_GCM_AES_128; | ||
attrs.push_back(attr); | ||
EXPECT_EQ( | ||
SAI_STATUS_SUCCESS, | ||
ss.create_internal( | ||
SAI_OBJECT_TYPE_MACSEC_SC, | ||
"oid:0x0", | ||
0, | ||
static_cast<uint32_t>(attrs.size()), | ||
attrs.data())); | ||
|
||
attr.id = SAI_MACSEC_SA_ATTR_SC_ID; | ||
attr.value.oid = 0; | ||
ss.loadMACsecAttrFromMACsecSA(0, 1 , &attr, macsecAttr); | ||
|
||
EXPECT_EQ(macsecAttr.m_cipher, MACsecAttr::CIPHER_NAME_GCM_AES_128); | ||
} | ||
|
||
TEST(SwitchStateBase, retryCreateIngressMaCsecSAs) | ||
{ | ||
// Due to this function highly depends on system environment which cannot be tested directly, | ||
// Just create this Test block for passing coverage | ||
auto sc = std::make_shared<SwitchConfig>(0, ""); | ||
auto scc = std::make_shared<SwitchConfigContainer>(); | ||
|
||
SwitchStateBase ss( | ||
0x2100000000, | ||
std::make_shared<RealObjectIdManager>(0, scc), | ||
sc); | ||
|
||
MACsecAttr macsecAttr; | ||
|
||
ss.m_uncreatedIngressMACsecSAs.insert(macsecAttr); | ||
|
||
ss.retryCreateIngressMaCsecSAs(); | ||
} | ||
|
||
TEST(SwitchStateBase, removeMACsecPort) | ||
{ | ||
auto sc = std::make_shared<SwitchConfig>(0, ""); | ||
auto scc = std::make_shared<SwitchConfigContainer>(); | ||
|
||
SwitchStateBase ss( | ||
0x2100000000, | ||
std::make_shared<RealObjectIdManager>(0, scc), | ||
sc); | ||
|
||
auto eq = std::make_shared<EventQueue>(std::make_shared<Signal>()); | ||
|
||
int s = socket(AF_INET, SOCK_DGRAM, 0); | ||
int fd = socket(AF_INET, SOCK_DGRAM, 0); | ||
auto hii = std::make_shared<HostInterfaceInfo>(0, s, fd, "tap", 0, eq); | ||
ss.m_hostif_info_map["tap"] = hii; | ||
|
||
sai_attribute_t attr; | ||
std::vector<sai_attribute_t> attrs; | ||
attr.id = SAI_MACSEC_PORT_ATTR_MACSEC_DIRECTION; | ||
attrs.push_back(attr); | ||
attr.id = SAI_MACSEC_PORT_ATTR_PORT_ID; | ||
attr.value.oid = 0; | ||
attrs.push_back(attr); | ||
ss.create_internal( | ||
SAI_OBJECT_TYPE_MACSEC_PORT, | ||
"oid:0x0", | ||
0, | ||
static_cast<uint32_t>(attrs.size()), | ||
attrs.data()); | ||
|
||
ss.m_macsecFlowPortMap[0] = 0; | ||
ss.m_macsecFlowPortMap[1] = 1; | ||
|
||
MACsecAttr macsecAttr; | ||
ss.m_uncreatedIngressMACsecSAs.insert(macsecAttr); | ||
macsecAttr.m_macsecName = "macsec_vtap"; | ||
ss.m_uncreatedIngressMACsecSAs.insert(macsecAttr); | ||
|
||
EXPECT_EQ(SAI_STATUS_SUCCESS, ss.removeMACsecPort(0)); | ||
EXPECT_EQ(1, ss.m_macsecFlowPortMap.size()); | ||
EXPECT_EQ(1, ss.m_uncreatedIngressMACsecSAs.size()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters