Skip to content

Commit

Permalink
Fix fabric removal logic in group counter (#15977)
Browse files Browse the repository at this point in the history
* Fix fabric removal logic in group counter
  • Loading branch information
jepenven-silabs authored and pull[bot] committed Oct 2, 2023
1 parent d34ade7 commit 9874772
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 34 deletions.
2 changes: 2 additions & 0 deletions src/transport/GroupPeerMessageCounter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,8 @@ void GroupPeerTable::RemoveAndCompactFabric(uint32_t tableIndex)
return;
}
mGroupFabrics[tableIndex].mFabricIndex = kUndefinedFabricIndex;
new (&mGroupFabrics[tableIndex]) GroupFabric();

// To maintain logic integrity Fabric array cannot have empty slot in between data
// Find the last non empty element
for (uint32_t i = CHIP_CONFIG_MAX_FABRICS - 1; i > tableIndex; i--)
Expand Down
62 changes: 28 additions & 34 deletions src/transport/tests/TestGroupMessageCounter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,61 +348,57 @@ void ReorderPeerRemovalTest(nlTestSuite * inSuite, void * inContext)
NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetNodeIdAt(1, 0, false) == 9);
}

// Disabled for devices with fabric count lower than 12
#if CHIP_CONFIG_MAX_FABRICS > 12
void ReorderFabricRemovalTest(nlTestSuite * inSuite, void * inContext)
{
CHIP_ERROR err = CHIP_NO_ERROR;
chip::Transport::PeerMessageCounter * counter = nullptr;
TestGroupPeerTable mGroupPeerMsgCounter;

err = mGroupPeerMsgCounter.FindOrAddPeer(1, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(2, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(3, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(4, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(5, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(6, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(7, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(8, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(9, 1, false, counter);
for (uint8_t i = 0; i < CHIP_CONFIG_MAX_FABRICS; i++)
{
err = mGroupPeerMsgCounter.FindOrAddPeer(static_cast<chip::FabricIndex>(i + 1), 1, false, counter);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
}

// Try removing last Fabric first
err = counter->VerifyOrTrustFirstGroup(1234);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
counter->CommitGroup(1234);

err = mGroupPeerMsgCounter.FabricRemoved(CHIP_CONFIG_MAX_FABRICS);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetFabricIndexAt(CHIP_CONFIG_MAX_FABRICS - 1) == kUndefinedFabricIndex);

err = mGroupPeerMsgCounter.FindOrAddPeer(CHIP_CONFIG_MAX_FABRICS, 1, false, counter);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);

// Verify that the counter was indeed cleared
err = counter->VerifyOrTrustFirstGroup(1234);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);

// Set a counter that will be moved around
err = counter->VerifyOrTrustFirstGroup(5656);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
counter->CommitGroup(5656);

err = counter->VerifyOrTrustFirstGroup(4756);
NL_TEST_ASSERT(inSuite, err != CHIP_NO_ERROR);

err = mGroupPeerMsgCounter.FindOrAddPeer(10, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(11, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(12, 1, false, counter);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
NL_TEST_ASSERT(inSuite, counter != nullptr);

// Per Spec CHIP_CONFIG_MAX_FABRICS can only be as low as 4
err = mGroupPeerMsgCounter.RemovePeer(3, 1, false);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetFabricIndexAt(2) == 12);
err = mGroupPeerMsgCounter.RemovePeer(8, 1, false);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetFabricIndexAt(7) == 11);
err = mGroupPeerMsgCounter.RemovePeer(11, 1, false);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetFabricIndexAt(7) == 10);
err = mGroupPeerMsgCounter.RemovePeer(1, 1, false);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);

NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetFabricIndexAt(0) == 9);
err = mGroupPeerMsgCounter.RemovePeer(10, 1, false);
NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetFabricIndexAt(2) == CHIP_CONFIG_MAX_FABRICS);
err = mGroupPeerMsgCounter.RemovePeer(2, 1, false);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetFabricIndexAt(7) == 0);
NL_TEST_ASSERT(inSuite, mGroupPeerMsgCounter.GetFabricIndexAt(1) == CHIP_CONFIG_MAX_FABRICS - 1);

// Validate that counter value were moved around correctly
err = mGroupPeerMsgCounter.FindOrAddPeer(9, 1, false, counter);
err = mGroupPeerMsgCounter.FindOrAddPeer(CHIP_CONFIG_MAX_FABRICS, 1, false, counter);
NL_TEST_ASSERT(inSuite, err == CHIP_NO_ERROR);
err = counter->VerifyOrTrustFirstGroup(4756);
NL_TEST_ASSERT(inSuite, err != CHIP_NO_ERROR);
}
#endif // CHIP_CONFIG_MAX_FABRICS > 12

void GroupMessageCounterTest(nlTestSuite * inSuite, void * inContext)
{

Expand Down Expand Up @@ -471,9 +467,7 @@ const nlTest sTests[] =
NL_TEST_DEF("Counter Rollover", CounterCommitRolloverTest),
NL_TEST_DEF("Counter Trust first", CounterTrustFirstTest),
NL_TEST_DEF("Reorder Peer removal", ReorderPeerRemovalTest),
#if CHIP_CONFIG_MAX_FABRICS > 12
NL_TEST_DEF("Reorder Fabric Removal", ReorderFabricRemovalTest),
#endif // CHIP_CONFIG_MAX_FABRICS > 12
NL_TEST_DEF("Group Message Counter", GroupMessageCounterTest),
NL_TEST_SENTINEL()
};
Expand Down

0 comments on commit 9874772

Please sign in to comment.