Skip to content

Commit 51a600f

Browse files
committed
[Darwin] MTRDeviceController should clear attribute cache on pairing start
1 parent 9d2f350 commit 51a600f

File tree

3 files changed

+214
-80
lines changed

3 files changed

+214
-80
lines changed

src/darwin/Framework/CHIP/MTRDeviceController.mm

+37-10
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
#import "MTRPersistentStorageDelegateBridge.h"
4545
#import "MTRServerEndpoint_Internal.h"
4646
#import "MTRSetupPayload.h"
47+
#import "MTRUnfairLock.h"
4748
#import "NSDataSpanConversion.h"
4849
#import "NSStringSpanConversion.h"
4950
#import <setup_payload/ManualSetupPayloadGenerator.h>
@@ -607,6 +608,13 @@ - (BOOL)setupCommissioningSessionWithPayload:(MTRSetupPayload *)payload
607608
error:(NSError * __autoreleasing *)error
608609
{
609610
auto block = ^BOOL {
611+
// First reset previous information about this new nodeID
612+
os_unfair_lock_lock(&_deviceMapLock);
613+
[self _removeDeviceWithNodeID:newNodeID device:nil];
614+
os_unfair_lock_unlock(&_deviceMapLock);
615+
[_controllerDataStore clearResumptionInfoForNodeID:newNodeID];
616+
[_controllerDataStore clearStoredAttributesForNodeID:newNodeID];
617+
610618
// Try to get a QR code if possible (because it has a better
611619
// discriminator, etc), then fall back to manual code if that fails.
612620
NSString * pairingCode = [payload qrCodeString:nil];
@@ -632,6 +640,13 @@ - (BOOL)setupCommissioningSessionWithDiscoveredDevice:(MTRCommissionableBrowserR
632640
error:(NSError * __autoreleasing *)error
633641
{
634642
auto block = ^BOOL {
643+
// First reset previous information about this new nodeID
644+
os_unfair_lock_lock(&_deviceMapLock);
645+
[self _removeDeviceWithNodeID:newNodeID device:nil];
646+
os_unfair_lock_unlock(&_deviceMapLock);
647+
[_controllerDataStore clearResumptionInfoForNodeID:newNodeID];
648+
[_controllerDataStore clearStoredAttributesForNodeID:newNodeID];
649+
635650
chip::NodeId nodeId = [newNodeID unsignedLongLongValue];
636651
self->_operationalCredentialsDelegate->SetDeviceID(nodeId);
637652

@@ -897,18 +912,30 @@ - (MTRDevice *)deviceForNodeID:(NSNumber *)nodeID
897912
return deviceToReturn;
898913
}
899914

900-
- (void)removeDevice:(MTRDevice *)device
915+
// Remove a device from the device map, optionally with a specific object
916+
- (void)_removeDeviceWithNodeID:(NSNumber *)nodeID device:(MTRDevice * _Nullable)deviceToRemove
901917
{
902-
os_unfair_lock_lock(&_deviceMapLock);
903-
auto * nodeID = device.nodeID;
904-
MTRDevice * deviceToRemove = _nodeIDToDeviceMap[nodeID];
905-
if (deviceToRemove == device) {
906-
[deviceToRemove invalidate];
907-
_nodeIDToDeviceMap[nodeID] = nil;
908-
} else {
909-
MTR_LOG_ERROR("Error: Cannot remove device %p with nodeID %llu", device, nodeID.unsignedLongLongValue);
918+
os_unfair_lock_assert_owner(&_deviceMapLock);
919+
920+
MTRDevice * device = _nodeIDToDeviceMap[nodeID];
921+
if (!device) {
922+
MTR_LOG_INFO("No device to remove with nodeID %llu", nodeID.unsignedLongLongValue);
923+
return;
910924
}
911-
os_unfair_lock_unlock(&_deviceMapLock);
925+
926+
if (deviceToRemove && (device != deviceToRemove)) {
927+
MTR_LOG_ERROR("Error: Cannot remove device %p with nodeID %llu", deviceToRemove, nodeID.unsignedLongLongValue);
928+
return;
929+
}
930+
931+
[deviceToRemove invalidate];
932+
_nodeIDToDeviceMap[nodeID] = nil;
933+
}
934+
935+
- (void)removeDevice:(MTRDevice *)device
936+
{
937+
std::lock_guard lock(_deviceMapLock);
938+
[self _removeDeviceWithNodeID:device.nodeID device:device];
912939
}
913940

914941
- (void)setDeviceControllerDelegate:(id<MTRDeviceControllerDelegate>)delegate queue:(dispatch_queue_t)queue

src/darwin/Framework/CHIP/MTRDeviceControllerDataStore.h

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ NS_ASSUME_NONNULL_BEGIN
5353
- (nullable MTRCASESessionResumptionInfo *)findResumptionInfoByNodeID:(NSNumber *)nodeID;
5454
- (nullable MTRCASESessionResumptionInfo *)findResumptionInfoByResumptionID:(NSData *)resumptionID;
5555
- (void)storeResumptionInfo:(MTRCASESessionResumptionInfo *)resumptionInfo;
56+
- (void)clearResumptionInfoForNodeID:(NSNumber *)nodeID;
5657
- (void)clearAllResumptionInfo;
5758

5859
/**

0 commit comments

Comments
 (0)