Skip to content

Commit ed33404

Browse files
committed
Use marker only in AddNOC case
Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no>
1 parent 9ae96ce commit ed33404

File tree

3 files changed

+3
-20
lines changed

3 files changed

+3
-20
lines changed

src/app/FailSafeContext.cpp

+1-6
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,12 @@ namespace {
4040

4141
// Tags for marker storage
4242
constexpr TLV::Tag kMarkerFabricIndexTag = TLV::ContextTag(0);
43-
constexpr TLV::Tag kMarkerIsAdditionTag = TLV::ContextTag(1);
4443

4544
constexpr size_t MarkerContextTLVMaxSize()
4645
{
4746
// Add 2x uncommitted uint64_t to leave space for backwards/forwards
4847
// versioning for this critical feature that runs at boot.
49-
return TLV::EstimateStructOverhead(sizeof(FabricIndex), sizeof(bool), sizeof(uint64_t), sizeof(uint64_t));
48+
return TLV::EstimateStructOverhead(sizeof(FabricIndex), sizeof(uint64_t), sizeof(uint64_t));
5049
}
5150

5251
} // namespace
@@ -198,9 +197,6 @@ CHIP_ERROR FailSafeContext::GetMarker(Marker & outMarker)
198197
ReturnErrorOnFailure(reader.Next(kMarkerFabricIndexTag));
199198
ReturnErrorOnFailure(reader.Get(outMarker.fabricIndex));
200199

201-
ReturnErrorOnFailure(reader.Next(kMarkerIsAdditionTag));
202-
ReturnErrorOnFailure(reader.Get(outMarker.isAddition));
203-
204200
// Don't try to exit container: we got all we needed. This allows us to
205201
// avoid erroring-out on newer versions.
206202

@@ -218,7 +214,6 @@ CHIP_ERROR FailSafeContext::StoreMarker(const Marker & marker)
218214
TLV::TLVType outerType;
219215
ReturnErrorOnFailure(writer.StartContainer(TLV::AnonymousTag(), TLV::kTLVType_Structure, outerType));
220216
ReturnErrorOnFailure(writer.Put(kMarkerFabricIndexTag, marker.fabricIndex));
221-
ReturnErrorOnFailure(writer.Put(kMarkerIsAdditionTag, marker.isAddition));
222217
ReturnErrorOnFailure(writer.EndContainer(outerType));
223218

224219
const auto markerContextTLVLength = writer.GetLengthWritten();

src/app/FailSafeContext.h

+2-11
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class FailSafeContext
6161
{
6262
mFabricIndex = nocFabricIndex;
6363

64-
Marker marker{ mFabricIndex, true };
64+
Marker marker{ mFabricIndex };
6565
return StoreMarker(marker) == CHIP_NO_ERROR;
6666
}
6767

@@ -71,14 +71,6 @@ class FailSafeContext
7171
mFabricIndex = nocFabricIndex;
7272
}
7373

74-
bool SetUpdateNocCommandStarted(FabricIndex nocFabricIndex)
75-
{
76-
mFabricIndex = nocFabricIndex;
77-
78-
Marker marker{ mFabricIndex, false };
79-
return StoreMarker(marker) == CHIP_NO_ERROR;
80-
}
81-
8274
void SetUpdateNocCommandInvoked() { mUpdateNocCommandHasBeenInvoked = true; }
8375
void SetAddTrustedRootCertInvoked() { mAddTrustedRootCertHasBeenInvoked = true; }
8476
void SetCsrRequestForUpdateNoc(bool isForUpdateNoc) { mIsCsrRequestForUpdateNoc = isForUpdateNoc; }
@@ -134,9 +126,8 @@ class FailSafeContext
134126
struct Marker
135127
{
136128
Marker() = default;
137-
Marker(FabricIndex fabricIndex_, bool isAddition_) : fabricIndex{ fabricIndex_ }, isAddition{ isAddition_ } {}
129+
Marker(FabricIndex fabricIndex_) : fabricIndex{ fabricIndex_ } {}
138130
FabricIndex fabricIndex = kUndefinedFabricIndex;
139-
bool isAddition = false;
140131
};
141132

142133
PersistentStorageDelegate * mStorage = nullptr;

src/app/clusters/operational-credentials-server/operational-credentials-server.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -812,9 +812,6 @@ bool emberAfOperationalCredentialsClusterUpdateNOCCallback(app::CommandHandler *
812812
// Flush acks before really slow work
813813
commandObj->FlushAcksRightAwayOnSlowCommand();
814814

815-
// Inform FailSafeContext about starting updating NOC for specified fabric
816-
VerifyOrExit(failSafeContext.SetUpdateNocCommandStarted(fabricIndex), nonDefaultStatus = Status::Failure);
817-
818815
err = fabricTable.UpdatePendingFabricWithOperationalKeystore(fabricIndex, NOCValue, ICACValue.ValueOr(ByteSpan{}));
819816
VerifyOrExit(err == CHIP_NO_ERROR, nocResponse = ConvertToNOCResponseStatus(err));
820817

0 commit comments

Comments
 (0)