From 887119c7b382deb9fb73a638ead5960e4240792c Mon Sep 17 00:00:00 2001 From: Vivien Nicolas Date: Thu, 13 Mar 2025 09:28:42 +0100 Subject: [PATCH 1/9] [darwin-framework-tool] Add XPC connectivity support for HomeKit on iOS (#37794) * [darwin-framework-tool] Add some HomeKit entitlements * [darwin-framework-tool] Ensure that darwin-framework-tool calls dispatch_main() * [darwin] Update src/darwin/Framework/Matter.xcodeproj/project.pbxproj * [darwin-framework-tool] Add XPC connectivity support for HomeKit on iOS * [darwin-framework-tool] Add some logging code to HomeKit support on iOS --- .../common/xpc/DeviceControllerServer.mm | 22 +- .../commands/common/xpc/HomeKitConnector.h | 34 +++ .../commands/common/xpc/HomeKitConnector.mm | 194 ++++++++++++++++++ .../commands/common/xpc/XPCServer.mm | 23 ++- .../darwin-framework-tool.entitlements | 4 + examples/darwin-framework-tool/main.mm | 44 ++-- .../Matter.xcodeproj/project.pbxproj | 28 ++- 7 files changed, 317 insertions(+), 32 deletions(-) create mode 100644 examples/darwin-framework-tool/commands/common/xpc/HomeKitConnector.h create mode 100644 examples/darwin-framework-tool/commands/common/xpc/HomeKitConnector.mm diff --git a/examples/darwin-framework-tool/commands/common/xpc/DeviceControllerServer.mm b/examples/darwin-framework-tool/commands/common/xpc/DeviceControllerServer.mm index 7b0f9ac99c..89b92c4d39 100644 --- a/examples/darwin-framework-tool/commands/common/xpc/DeviceControllerServer.mm +++ b/examples/darwin-framework-tool/commands/common/xpc/DeviceControllerServer.mm @@ -20,6 +20,10 @@ #import +#if TARGET_OS_MACCATALYST || TARGET_OS_IOS +#import "HomeKitConnector.h" +#endif + @interface DeviceControllerXPCServerImpl : NSObject @property (nonatomic, strong) id clientProxy; @property (nonatomic, strong) NSArray * controllers; @@ -331,19 +335,25 @@ - (void)start - (void)stop { +#if TARGET_OS_MACCATALYST || TARGET_OS_IOS + [[HomeKitConnector sharedInstance] stop]; +#endif } - (MTRDeviceController *)createController:(NSString *)controllerID serviceName:(NSString *)serviceName error:(NSError * __autoreleasing *)error { - __auto_type connectBlock = ^NSXPCConnection * - { + NSXPCConnection * (^connectBlock)(void) = nil; #if TARGET_OS_OSX + connectBlock = ^NSXPCConnection * + { return [[NSXPCConnection alloc] initWithMachServiceName:serviceName options:0]; -#else - ChipLogError(chipTool, "NSXPCConnection::initWithMachServiceName is not supported on this platform."); - return nil; -#endif // TARGET_OS_OSX }; +#elif TARGET_OS_MACCATALYST || TARGET_OS_IOS + connectBlock = [[HomeKitConnector sharedInstance] connectBlockFor:controllerID]; + controllerID = [[HomeKitConnector sharedInstance] homeControllerIDFor:controllerID]; +#endif + + VerifyOrReturnValue(nil != connectBlock, nil, ChipLogError(chipTool, "DeviceControllerXPCServerWithServiceName is not supported on this platform.")); return [MTRDeviceController sharedControllerWithID:controllerID xpcConnectBlock:connectBlock]; } @end diff --git a/examples/darwin-framework-tool/commands/common/xpc/HomeKitConnector.h b/examples/darwin-framework-tool/commands/common/xpc/HomeKitConnector.h new file mode 100644 index 0000000000..996d3e4e51 --- /dev/null +++ b/examples/darwin-framework-tool/commands/common/xpc/HomeKitConnector.h @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2025 Project CHIP Authors + * All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface HomeKitConnector : NSObject +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; ++ (instancetype)sharedInstance; + +- (void)start; +- (void)stop; +- (NSString *)homeControllerIDFor:(NSString *)controllerID; +- (NSXPCConnection * (^)(void) )connectBlockFor:(NSString *)controllerID; +@end + +NS_ASSUME_NONNULL_END diff --git a/examples/darwin-framework-tool/commands/common/xpc/HomeKitConnector.mm b/examples/darwin-framework-tool/commands/common/xpc/HomeKitConnector.mm new file mode 100644 index 0000000000..ea6bf64ab8 --- /dev/null +++ b/examples/darwin-framework-tool/commands/common/xpc/HomeKitConnector.mm @@ -0,0 +1,194 @@ +/* + * Copyright (c) 2025 Project CHIP Authors + * All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#import "HomeKitConnector.h" +#import "../CHIPCommandBridge.h" +#import + +#import + +const int64_t kHomeManagerSetupTimeout = 10LL * NSEC_PER_SEC; +NSString * kControllerIdPrefixStr = @(kControllerIdPrefix); + +@interface HomeKitConnector () +@property (nonatomic, assign) BOOL connectorStarted; +@property (nonatomic, strong) HMHomeManager * homeManager; +@property (nonatomic, assign) BOOL homeManagerReady; +@end + +@implementation HomeKitConnector { + dispatch_group_t _homeManagerReadyGroup; +} + ++ (instancetype)sharedInstance +{ + static HomeKitConnector * sharedInstance = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + sharedInstance = [[HomeKitConnector alloc] init]; + }); + return sharedInstance; +} + +- (void)start +{ + VerifyOrReturn(!_connectorStarted); + _connectorStarted = YES; + + _homeManagerReady = NO; + _homeManagerReadyGroup = dispatch_group_create(); + dispatch_group_enter(_homeManagerReadyGroup); + + _homeManager = [[HMHomeManager alloc] init]; + _homeManager.delegate = self; + + // Wait until homeManagerDidUpdateHomes is called or timeout + dispatch_group_wait(_homeManagerReadyGroup, dispatch_time(DISPATCH_TIME_NOW, kHomeManagerSetupTimeout)); + + [self printHomes]; +} + +- (void)stop +{ + VerifyOrReturn(_connectorStarted); + + _homeManager.delegate = nil; + _homeManager = nil; +} + +- (void)homeManagerDidUpdateHomes:(HMHomeManager *)manager +{ + VerifyOrReturn(!_homeManagerReady); + dispatch_group_leave(_homeManagerReadyGroup); +} + +- (HMHome *)homeFor:(NSString *)controllerID +{ + [[HomeKitConnector sharedInstance] start]; + + __auto_type * homes = _homeManager.homes; + VerifyOrReturnValue(0 != homes.count, nil, ChipLogError(chipTool, "HomeKit is not configured with any homes.")); + + NSNumber * fabricId = nil; + if ([controllerID hasPrefix:kControllerIdPrefixStr]) { + __auto_type * fabricIdString = [controllerID substringFromIndex:kControllerIdPrefixStr.length]; + fabricId = @([fabricIdString integerValue]); + } else { + fabricId = CHIPCommandBridge::GetCommissionerFabricId([controllerID UTF8String]); + } + + // When multiple homes exist, the first controller corresponds to the first home, the second controller to the second home, etc. + // If there are fewer homes than controllers, controllers beyond the last home will be associated with the final home in the list. + NSUInteger index = [fabricId unsignedShortValue] - 1; + if (index >= homes.count) { + index = homes.count - 1; + } + + return homes[index]; +} + +- (NSString *)paddedString:(NSString *)string width:(NSUInteger)width +{ + // Using length might not account for all unicode width details, but it's a simple approximation. + NSUInteger length = string.length; + if (length >= width) { + return string; + } + NSMutableString * result = [NSMutableString stringWithString:string]; + for (NSUInteger i = 0; i < (width - length); i++) { + [result appendString:@" "]; + } + return result; +} + +- (NSString *)repeatString:(NSString *)string count:(NSUInteger)count +{ + NSMutableString * result = [NSMutableString string]; + for (NSUInteger i = 0; i < count; i++) { + [result appendString:string]; + } + return result; +} + +- (void)printHomes +{ + for (HMHome * home in _homeManager.homes) { + NSUInteger maxNameLength = 0; + NSUInteger maxNodeIDLength = 0; + NSUInteger maxManufacturerLength = 0; + NSUInteger maxModelLength = 0; + + __auto_type * sortedAccessories = [home.accessories sortedArrayUsingComparator:^NSComparisonResult(HMAccessory * a, HMAccessory * b) { + return [a.name localizedCaseInsensitiveCompare:b.name]; + }]; + + for (HMAccessory * accessory in sortedAccessories) { + maxNameLength = MAX(maxNameLength, accessory.name.length); + maxManufacturerLength = MAX(maxManufacturerLength, accessory.manufacturer.length); + maxModelLength = MAX(maxModelLength, accessory.model.length); + maxNodeIDLength = MAX(maxNodeIDLength, [accessory.matterNodeID stringValue].length); + } + + __auto_type * rows = [NSMutableArray arrayWithCapacity:sortedAccessories.count]; + [sortedAccessories enumerateObjectsUsingBlock:^(HMAccessory * accessory, NSUInteger idx, BOOL * stop) { + if (accessory.matterNodeID == nil || [accessory.matterNodeID integerValue] == 0) { + return; + } + + __auto_type * name = [self paddedString:accessory.name width:maxNameLength]; + __auto_type * manufacturer = [self paddedString:accessory.manufacturer width:maxManufacturerLength]; + __auto_type * model = [self paddedString:accessory.model width:maxModelLength]; + __auto_type * nodeID = [self paddedString:[accessory.matterNodeID stringValue] width:maxNodeIDLength]; + __auto_type * formattedString = [NSString stringWithFormat:@" %@ │ %@ │ %@ │ %@ ", name, manufacturer, model, nodeID]; + [rows addObject:formattedString]; + }]; + + NSUInteger tableWidth = 1 + maxNameLength + 3 + maxManufacturerLength + 3 + maxModelLength + 3 + maxNodeIDLength + 1; + NSLog(@"╔%@╗", [self repeatString:@"═" count:tableWidth]); + NSLog(@"║%@║", [self paddedString:[NSString stringWithFormat:@" %@ [%@] ", home.name, home.matterControllerID] width:tableWidth]); + NSLog(@"╠%@╣", [self repeatString:@"═" count:tableWidth]); + for (NSString * row in rows) { + NSLog(@"║%@║", row); + } + NSLog(@"╚%@╝", [self repeatString:@"═" count:tableWidth]); + } +} + +- (NSString *)homeControllerIDFor:(NSString *)controllerID +{ + __auto_type * home = [self homeFor:controllerID]; + return home.matterControllerID; +} + +- (NSXPCConnection * (^)(void) )connectBlockFor:(NSString *)controllerID; +{ + __auto_type * home = [self homeFor:controllerID]; + ChipLogProgress(chipTool, "Controller '%s' will be associated with home '%s'.", [controllerID UTF8String], [home.matterControllerID UTF8String]); + + if ([controllerID hasPrefix:kControllerIdPrefixStr]) { + if ([home respondsToSelector:NSSelectorFromString(@"matterStartupParametersXPCConnectBlock")]) { + return [home valueForKey:@"matterStartupParametersXPCConnectBlock"]; + } + + ChipLogError(chipTool, "Error: 'matterStartupParametersXPCConnectBlock' not available for controller '%s'.", [controllerID UTF8String]); + return nil; + } else { + return home.matterControllerXPCConnectBlock; + } +} +@end diff --git a/examples/darwin-framework-tool/commands/common/xpc/XPCServer.mm b/examples/darwin-framework-tool/commands/common/xpc/XPCServer.mm index 9aa7e77ec3..bf35e93510 100644 --- a/examples/darwin-framework-tool/commands/common/xpc/XPCServer.mm +++ b/examples/darwin-framework-tool/commands/common/xpc/XPCServer.mm @@ -20,6 +20,10 @@ #import +#if TARGET_OS_MACCATALYST || TARGET_OS_IOS +#import "HomeKitConnector.h" +#endif + @interface XPCServerImpl : NSObject @property (nonatomic, strong) id clientProxy; @property (nonatomic, strong) NSArray * controllers; @@ -239,19 +243,26 @@ - (void)start - (void)stop { +#if TARGET_OS_MACCATALYST || TARGET_OS_IOS + [[HomeKitConnector sharedInstance] stop]; +#endif } - (MTRDeviceController *)createController:(NSString *)controllerID serviceName:(NSString *)serviceName error:(NSError * __autoreleasing *)error { - __auto_type connectBlock = ^NSXPCConnection * - { + NSXPCConnection * (^connectBlock)(void) = nil; #if TARGET_OS_OSX + connectBlock = ^NSXPCConnection * + { return [[NSXPCConnection alloc] initWithMachServiceName:serviceName options:0]; -#else - ChipLogError(chipTool, "NSXPCConnection::initWithMachServiceName is not supported on this platform."); - return nil; -#endif // TARGET_OS_OSX }; +#elif TARGET_OS_MACCATALYST || TARGET_OS_IOS + connectBlock = [[HomeKitConnector sharedInstance] connectBlockFor:controllerID]; + controllerID = [[HomeKitConnector sharedInstance] homeControllerIDFor:controllerID]; +#endif + + VerifyOrReturnValue(nil != connectBlock, nil, ChipLogError(chipTool, "XPCServerWithServiceName is not supported on this platform.")); + __auto_type * uniqueIdentifier = [[NSUUID alloc] initWithUUIDString:controllerID]; __auto_type * xpcParams = [[MTRXPCDeviceControllerParameters alloc] initWithXPConnectionBlock:connectBlock uniqueIdentifier:uniqueIdentifier]; return [[MTRDeviceController alloc] initWithParameters:xpcParams error:error]; diff --git a/examples/darwin-framework-tool/entitlements/darwin-framework-tool.entitlements b/examples/darwin-framework-tool/entitlements/darwin-framework-tool.entitlements index 8b1769796f..5fc25a2d6e 100644 --- a/examples/darwin-framework-tool/entitlements/darwin-framework-tool.entitlements +++ b/examples/darwin-framework-tool/entitlements/darwin-framework-tool.entitlements @@ -8,5 +8,9 @@ group.com.appleinternal.chip-tool + com.apple.developer.homekit + + com.apple.developer.homekit.background-mode + diff --git a/examples/darwin-framework-tool/main.mm b/examples/darwin-framework-tool/main.mm index e89c033633..cb1ab2bc1a 100644 --- a/examples/darwin-framework-tool/main.mm +++ b/examples/darwin-framework-tool/main.mm @@ -38,24 +38,30 @@ int main(int argc, const char * argv[]) { - int exitCode = EXIT_SUCCESS; - @autoreleasepool { - dft::logging::Setup(); + __auto_type * runQueue = dispatch_queue_create("com.chip.main.dft", DISPATCH_QUEUE_SERIAL_WITH_AUTORELEASE_POOL); + dispatch_async(runQueue, ^{ + int exitCode = EXIT_SUCCESS; - Commands commands; - registerCommandsBdx(commands); - registerCommandsPairing(commands); - registerCommandsDCL(commands); - registerCommandsDelay(commands); - registerCommandsDiscover(commands); - registerCommandsInteractive(commands); - registerCommandsMemory(commands); - registerCommandsPayload(commands); - registerClusterOtaSoftwareUpdateProviderInteractive(commands); - registerCommandsStorage(commands); - registerCommandsConfiguration(commands); - registerClusters(commands); - exitCode = commands.Run(argc, (char **) argv); - } - return ConditionalLeaksCheck(exitCode); + @autoreleasepool { + dft::logging::Setup(); + Commands commands; + registerCommandsBdx(commands); + registerCommandsPairing(commands); + registerCommandsDCL(commands); + registerCommandsDelay(commands); + registerCommandsDiscover(commands); + registerCommandsInteractive(commands); + registerCommandsMemory(commands); + registerCommandsPayload(commands); + registerClusterOtaSoftwareUpdateProviderInteractive(commands); + registerCommandsStorage(commands); + registerCommandsConfiguration(commands); + registerClusters(commands); + exitCode = commands.Run(argc, (char **) argv); + } + exit(ConditionalLeaksCheck(exitCode)); + }); + + dispatch_main(); + return EXIT_SUCCESS; } diff --git a/src/darwin/Framework/Matter.xcodeproj/project.pbxproj b/src/darwin/Framework/Matter.xcodeproj/project.pbxproj index 6bdeae34c6..2590899f98 100644 --- a/src/darwin/Framework/Matter.xcodeproj/project.pbxproj +++ b/src/darwin/Framework/Matter.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 55; + objectVersion = 56; objects = { /* Begin PBXBuildFile section */ @@ -391,6 +391,9 @@ B2E0D7B9245B0B5C003C5B48 /* MTRSetupPayload.mm in Sources */ = {isa = PBXBuildFile; fileRef = B2E0D7B0245B0B5C003C5B48 /* MTRSetupPayload.mm */; }; B409D0AE2CCFB89600A7ED5A /* DeviceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B409D0AC2CCFB89600A7ED5A /* DeviceDelegate.h */; }; B409D0AF2CCFB89600A7ED5A /* DeviceDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = B409D0AD2CCFB89600A7ED5A /* DeviceDelegate.mm */; }; + B4382F882D6E231800F79AFC /* HomeKitConnector.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4382F872D6E231800F79AFC /* HomeKitConnector.mm */; platformFilters = (ios, maccatalyst, ); settings = {COMPILER_FLAGS = " -Wno-error=availability -Wno-nullability-completeness"; }; }; + B4382F892D6E231800F79AFC /* HomeKitConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = B4382F862D6E231800F79AFC /* HomeKitConnector.h */; platformFilters = (ios, maccatalyst, ); }; + B4382F8B2D6F554B00F79AFC /* HomeKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4382F8A2D6F554B00F79AFC /* HomeKit.framework */; platformFilters = (ios, maccatalyst, ); }; B43B39EA2CB859A5006AA284 /* DumpMemoryGraphCommand.mm in Sources */ = {isa = PBXBuildFile; fileRef = B43B39E62CB859A5006AA284 /* DumpMemoryGraphCommand.mm */; }; B43B39EB2CB859A5006AA284 /* LeaksTool.mm in Sources */ = {isa = PBXBuildFile; fileRef = B43B39E82CB859A5006AA284 /* LeaksTool.mm */; }; B43B39EC2CB859A5006AA284 /* DumpMemoryGraphCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = B43B39E52CB859A5006AA284 /* DumpMemoryGraphCommand.h */; }; @@ -962,6 +965,9 @@ B2E0D7B0245B0B5C003C5B48 /* MTRSetupPayload.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MTRSetupPayload.mm; sourceTree = ""; }; B409D0AC2CCFB89600A7ED5A /* DeviceDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeviceDelegate.h; sourceTree = ""; }; B409D0AD2CCFB89600A7ED5A /* DeviceDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceDelegate.mm; sourceTree = ""; }; + B4382F862D6E231800F79AFC /* HomeKitConnector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeKitConnector.h; sourceTree = ""; }; + B4382F872D6E231800F79AFC /* HomeKitConnector.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = HomeKitConnector.mm; sourceTree = ""; }; + B4382F8A2D6F554B00F79AFC /* HomeKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HomeKit.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/HomeKit.framework; sourceTree = DEVELOPER_DIR; }; B43B39E42CB859A5006AA284 /* Commands.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Commands.h; sourceTree = ""; }; B43B39E52CB859A5006AA284 /* DumpMemoryGraphCommand.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DumpMemoryGraphCommand.h; sourceTree = ""; }; B43B39E62CB859A5006AA284 /* DumpMemoryGraphCommand.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = DumpMemoryGraphCommand.mm; sourceTree = ""; }; @@ -1012,6 +1018,7 @@ B45373F82A9FEC4F00807602 /* unix-misc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "unix-misc.c"; path = "repo/lib/plat/unix/unix-misc.c"; sourceTree = ""; }; B45373F92A9FEC4F00807602 /* unix-init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "unix-init.c"; path = "repo/lib/plat/unix/unix-init.c"; sourceTree = ""; }; B45373FA2A9FEC4F00807602 /* unix-sockets.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "unix-sockets.c"; path = "repo/lib/plat/unix/unix-sockets.c"; sourceTree = ""; }; + B46C4AA72D6CD2580024F65E /* HomeKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HomeKit.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk/System/iOSSupport/System/Library/Frameworks/HomeKit.framework; sourceTree = DEVELOPER_DIR; }; B4C8E6B32B3453AD00FCD54D /* MTRDiagnosticLogsDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTRDiagnosticLogsDownloader.h; sourceTree = ""; }; B4C8E6B42B3453AD00FCD54D /* MTRDiagnosticLogsDownloader.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MTRDiagnosticLogsDownloader.mm; sourceTree = ""; }; B4D67A362D00DAB700C49965 /* DeviceControllerServer.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceControllerServer.mm; sourceTree = ""; }; @@ -1059,6 +1066,7 @@ 039145F029931B2D00257B3E /* CoreBluetooth.framework in Frameworks */, 039145EE29931B2600257B3E /* Network.framework in Frameworks */, 039145EC29931ABF00257B3E /* Security.framework in Frameworks */, + B4382F8B2D6F554B00F79AFC /* HomeKit.framework in Frameworks */, 039145E52993124800257B3E /* SystemConfiguration.framework in Frameworks */, 039145E3299311FF00257B3E /* IOKit.framework in Frameworks */, 039546962991CEEC006D42A8 /* libCHIP.a in Frameworks */, @@ -1911,6 +1919,8 @@ B4D67A3A2D00DAB700C49965 /* xpc */ = { isa = PBXGroup; children = ( + B4382F862D6E231800F79AFC /* HomeKitConnector.h */, + B4382F872D6E231800F79AFC /* HomeKitConnector.mm */, B4D67A452D07021700C49965 /* XPCServerProtocols.h */, B4D67A362D00DAB700C49965 /* DeviceControllerServer.mm */, B4D67A372D00DAB700C49965 /* XPCServer.mm */, @@ -1959,6 +1969,8 @@ BA09EB3E2474762900605257 /* Frameworks */ = { isa = PBXGroup; children = ( + B46C4AA72D6CD2580024F65E /* HomeKit.framework */, + B4382F8A2D6F554B00F79AFC /* HomeKit.framework */, 039145EF29931B2D00257B3E /* CoreBluetooth.framework */, 039145ED29931B2600257B3E /* Network.framework */, 039145EA29931A4900257B3E /* Security.framework */, @@ -2033,6 +2045,7 @@ 7592BD012CBEE98C00EB74A0 /* EmberMetadata.h in Headers */, 7534D17B2CF8CDDF00F64654 /* AttributePersistenceProvider.h in Headers */, 7592BD022CBEE98C00EB74A0 /* CodegenDataModelProvider.h in Headers */, + B4382F892D6E231800F79AFC /* HomeKitConnector.h in Headers */, 037C3DAD2991BD4F00B7EEE2 /* PairingCommandBridge.h in Headers */, 037C3DBB2991BD5000B7EEE2 /* Commands.h in Headers */, 512431262BA0C8BA000BC136 /* ResetMRPParametersCommand.h in Headers */, @@ -2364,6 +2377,7 @@ 03F430AA2994113500166449 /* sysunix.c in Sources */, 7592BD0E2CC6BCC300EB74A0 /* EmberAttributeDataBuffer.cpp in Sources */, B45373BF2A9FEA9100807602 /* adopt.c in Sources */, + B4382F882D6E231800F79AFC /* HomeKitConnector.mm in Sources */, B4F773CB2CB54B61008C6B23 /* LeakChecker.mm in Sources */, B45373D12A9FEB0C00807602 /* alloc.c in Sources */, B45373DD2A9FEB5300807602 /* base64-decode.c in Sources */, @@ -2658,9 +2672,14 @@ CHIP_BUILD_TOOLS = true; CLANG_ANALYZER_NONNULL = YES; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CODE_SIGN_ENTITLEMENTS = "$(CHIP_ROOT)/examples/darwin-framework-tool/entitlements/darwin-framework-tool.entitlements"; CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = ""; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(SDKROOT)/System/iOSSupport/System/Library/Frameworks", + ); GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", CHIP_HAVE_CONFIG_H, @@ -2717,6 +2736,7 @@ PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SDKROOT = macosx; + SUPPORTS_MACCATALYST = YES; SYSTEM_HEADER_SEARCH_PATHS = "$(CHIP_ROOT)/src/darwin/Framework/CHIP/"; WARNING_CFLAGS = ( "-Wformat", @@ -2734,9 +2754,14 @@ CHIP_BUILD_TOOLS = true; CLANG_ANALYZER_NONNULL = YES; CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CODE_SIGN_ENTITLEMENTS = "$(CHIP_ROOT)/examples/darwin-framework-tool/entitlements/darwin-framework-tool.entitlements"; CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = ""; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(SDKROOT)/System/iOSSupport/System/Library/Frameworks", + ); GCC_PREPROCESSOR_DEFINITIONS = ( "$(inherited)", CHIP_HAVE_CONFIG_H, @@ -2794,6 +2819,7 @@ PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; SDKROOT = macosx; + SUPPORTS_MACCATALYST = YES; SYSTEM_HEADER_SEARCH_PATHS = "$(CHIP_ROOT)/src/darwin/Framework/CHIP/"; WARNING_CFLAGS = ( "-Wformat", From 69a46097e9fa7839f92208800b6c76e4c68544f3 Mon Sep 17 00:00:00 2001 From: bhmanda-silabs <107180296+bhmanda-silabs@users.noreply.github.com> Date: Thu, 13 Mar 2025 22:25:55 +0530 Subject: [PATCH 2/9] [Silabs] Fix the secure soc reset issue (#37965) * Added platform abstraction reset function for EFR and SoC platforms * Renamed the SPAM soft reset API * Added SPAM reset call in matter code * Fixed EFR32 build issue due to namespace is missing * Update examples/platform/silabs/Rpc.cpp Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> * Update src/platform/silabs/SiWx917/OTAImageProcessorImpl.cpp Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> * Update src/platform/silabs/platformAbstraction/SilabsPlatformBase.h Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> * Update src/platform/silabs/platformAbstraction/SilabsPlatformBase.h Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> --------- Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> --- examples/platform/silabs/Rpc.cpp | 6 ++++-- src/platform/silabs/ConfigurationManagerImpl.cpp | 2 +- src/platform/silabs/SiWx917/OTAImageProcessorImpl.cpp | 5 ++++- src/platform/silabs/platformAbstraction/GsdkSpam.cpp | 5 +++++ src/platform/silabs/platformAbstraction/SilabsPlatform.h | 2 ++ .../silabs/platformAbstraction/SilabsPlatformBase.h | 6 ++++++ src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp | 7 +++++++ 7 files changed, 29 insertions(+), 4 deletions(-) diff --git a/examples/platform/silabs/Rpc.cpp b/examples/platform/silabs/Rpc.cpp index d265e65af7..10a364cb56 100644 --- a/examples/platform/silabs/Rpc.cpp +++ b/examples/platform/silabs/Rpc.cpp @@ -21,6 +21,7 @@ #include "pigweed/RpcService.h" #include "pw_sys_io_efr32/init.h" #include +#include #include #if defined(PW_RPC_ATTRIBUTE_SERVICE) && PW_RPC_ATTRIBUTE_SERVICE @@ -73,6 +74,8 @@ size_t pw_trace_GetTraceTimeTicksPerSecond() #endif // defined(PW_RPC_TRACING_SERVICE) && PW_RPC_TRACING_SERVICE +using namespace chip::DeviceLayer::Silabs; + namespace chip { namespace rpc { @@ -117,7 +120,7 @@ class Efr32Device final : public Device osTimer_t mRebootTimerBuffer; osTimerAttr_t mRebootTimerAttr = { .name = "Reboot", .cb_mem = &mRebootTimerBuffer, .cb_size = osTimerCbSize }; - static void RebootHandler(void * timerCbArg) { NVIC_SystemReset(); } + static void RebootHandler(void * timerCbArg) { GetPlatform().SoftwareReset(); } }; #endif // defined(PW_RPC_DEVICE_SERVICE) && PW_RPC_DEVICE_SERVICE @@ -225,6 +228,5 @@ void Init() // Start App task. sRpcTaskHandle = osThreadNew(RunRpcService, nullptr, &kRpcTaskAttr); } - } // namespace rpc } // namespace chip diff --git a/src/platform/silabs/ConfigurationManagerImpl.cpp b/src/platform/silabs/ConfigurationManagerImpl.cpp index 4ed2308402..639beb373a 100644 --- a/src/platform/silabs/ConfigurationManagerImpl.cpp +++ b/src/platform/silabs/ConfigurationManagerImpl.cpp @@ -309,7 +309,7 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg) // Block the task for 500 ms before the reset occurs to allow RPC response to be sent osDelay(pdMS_TO_TICKS(500)); - NVIC_SystemReset(); + Silabs::GetPlatform().SoftwareReset(); } #ifdef SL_WIFI diff --git a/src/platform/silabs/SiWx917/OTAImageProcessorImpl.cpp b/src/platform/silabs/SiWx917/OTAImageProcessorImpl.cpp index dfbe8f17d1..4bae26a975 100644 --- a/src/platform/silabs/SiWx917/OTAImageProcessorImpl.cpp +++ b/src/platform/silabs/SiWx917/OTAImageProcessorImpl.cpp @@ -20,6 +20,7 @@ #include #include #include +#include #include #if CHIP_CONFIG_ENABLE_ICD_SERVER @@ -43,6 +44,8 @@ extern "C" { uint8_t flag = RPS_HEADER; static chip::OTAImageProcessorImpl gImageProcessor; +using namespace chip::DeviceLayer::Silabs; + namespace chip { // Define static memebers @@ -229,7 +232,7 @@ void OTAImageProcessorImpl::HandleApply(intptr_t context) // send system reset request to reset the MCU and upgrade the m4 image ChipLogProgress(SoftwareUpdate, "SoC Soft Reset initiated!"); // Reboots the device - sl_si91x_soc_nvic_reset(); + GetPlatform().SoftwareReset(); } } diff --git a/src/platform/silabs/platformAbstraction/GsdkSpam.cpp b/src/platform/silabs/platformAbstraction/GsdkSpam.cpp index bc221ead6a..7b57604a6c 100644 --- a/src/platform/silabs/platformAbstraction/GsdkSpam.cpp +++ b/src/platform/silabs/platformAbstraction/GsdkSpam.cpp @@ -124,6 +124,11 @@ CHIP_ERROR SilabsPlatform::Init(void) return CHIP_NO_ERROR; } +void SilabsPlatform::SoftwareReset() +{ + NVIC_SystemReset(); +} + CHIP_ERROR SilabsPlatform::FlashInit() { #if defined(SL_TRUSTZONE_NONSECURE) diff --git a/src/platform/silabs/platformAbstraction/SilabsPlatform.h b/src/platform/silabs/platformAbstraction/SilabsPlatform.h index df84224c50..fb596f103a 100644 --- a/src/platform/silabs/platformAbstraction/SilabsPlatform.h +++ b/src/platform/silabs/platformAbstraction/SilabsPlatform.h @@ -61,6 +61,8 @@ class SilabsPlatform : virtual public SilabsPlatformAbstractionBase CHIP_ERROR FlashErasePage(uint32_t addr) override; CHIP_ERROR FlashWritePage(uint32_t addr, const uint8_t * data, size_t size) override; + void SoftwareReset(void) override; + private: friend SilabsPlatform & GetPlatform(void); diff --git a/src/platform/silabs/platformAbstraction/SilabsPlatformBase.h b/src/platform/silabs/platformAbstraction/SilabsPlatformBase.h index 818463ecfb..555847c99e 100644 --- a/src/platform/silabs/platformAbstraction/SilabsPlatformBase.h +++ b/src/platform/silabs/platformAbstraction/SilabsPlatformBase.h @@ -56,6 +56,12 @@ class SilabsPlatformAbstractionBase virtual CHIP_ERROR FlashErasePage(uint32_t addr) { return CHIP_ERROR_NOT_IMPLEMENTED; } virtual CHIP_ERROR FlashWritePage(uint32_t addr, const uint8_t * data, size_t size) { return CHIP_ERROR_NOT_IMPLEMENTED; } + /** + * @brief Function trigger the platform to execute a software reset. + * Anything after this function will not be executed since the device will reboot. + */ + virtual void SoftwareReset(void) = 0; + // BLE Specific Method protected: diff --git a/src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp b/src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp index 6843d55449..4a82cbadb7 100644 --- a/src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp +++ b/src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp @@ -38,6 +38,8 @@ extern "C" { #endif // SL_SI91X_BOARD_INIT #include "sl_event_handler.h" +#include "sl_si91x_hal_soc_soft_reset.h" + #ifdef SL_CATALOG_SIMPLE_BUTTON_PRESENT #include "sl_si91x_button.h" #include "sl_si91x_button_pin_config.h" @@ -208,6 +210,11 @@ uint8_t SilabsPlatform::GetButtonState(uint8_t button) } #endif // SL_CATALOG_SIMPLE_BUTTON_PRESENT +void SilabsPlatform::SoftwareReset() +{ + sl_si91x_soc_nvic_reset(); +} + CHIP_ERROR SilabsPlatform::FlashInit() { return CHIP_NO_ERROR; From 80a647c915dafb7c7bd6b5571f9b6aa7715a1286 Mon Sep 17 00:00:00 2001 From: Sergio Soares Date: Thu, 13 Mar 2025 15:08:42 -0400 Subject: [PATCH 3/9] Remove unused constructor (#38001) --- src/app/server-cluster/ServerClusterContext.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/server-cluster/ServerClusterContext.h b/src/app/server-cluster/ServerClusterContext.h index 41135243bd..6946d16175 100644 --- a/src/app/server-cluster/ServerClusterContext.h +++ b/src/app/server-cluster/ServerClusterContext.h @@ -38,8 +38,6 @@ struct ServerClusterContext PersistentStorageDelegate * const storage = nullptr; /// read/write persistent storage DataModel::InteractionModelContext * const interactionContext = nullptr; /// outside-world communication - ServerClusterContext(ServerClusterContext &&) = default; - bool operator!=(const ServerClusterContext & other) const { return (provider != other.provider) // From a6e6355ac5f4ca4235936fabfab680dd2b7c17d7 Mon Sep 17 00:00:00 2001 From: chirag-silabs <100861685+chirag-silabs@users.noreply.github.com> Date: Fri, 14 Mar 2025 01:22:08 +0530 Subject: [PATCH 4/9] [Silabs] [WiFi] Removing the IP polling from the siwx917 and adding only for rs9116 (#37782) * Using the lwip file from wifi sdk and moving dhcp only for rs9116 * addressing review comments * restyling the PR * renaming the API name * adding the comment for the TA retries * addressing review comments * Update src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.h Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> * Update src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.cpp Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> * Update src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.h Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> * Update src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.cpp Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> * restyling the PR * fixing the build errors * updating the path and submodule --------- Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> --- src/platform/silabs/wifi/BUILD.gn | 4 +- .../silabs/wifi/SiWx/WifiInterfaceImpl.cpp | 72 +++++-------------- .../silabs/wifi/SiWx/WifiInterfaceImpl.h | 4 +- src/platform/silabs/wifi/SiWx/ncp/rs9117.gni | 4 +- .../silabs/wifi/rs911x/WifiInterfaceImpl.cpp | 39 +++++++++- .../silabs/wifi/rs911x/WifiInterfaceImpl.h | 29 ++++++++ .../WiseconnectWifiInterface.cpp | 34 +-------- .../WiseconnectWifiInterface.h | 51 +++---------- third_party/silabs/matter_support | 2 +- 9 files changed, 101 insertions(+), 138 deletions(-) diff --git a/src/platform/silabs/wifi/BUILD.gn b/src/platform/silabs/wifi/BUILD.gn index 32c2175422..ef42ff72ff 100644 --- a/src/platform/silabs/wifi/BUILD.gn +++ b/src/platform/silabs/wifi/BUILD.gn @@ -135,9 +135,7 @@ source_set("wifi-platform") { "${silabs_platform_dir}/wifi/SiWx/WifiInterfaceImpl.h", "${silabs_platform_dir}/wifi/wiseconnect-interface/WiseconnectWifiInterface.cpp", "${silabs_platform_dir}/wifi/wiseconnect-interface/WiseconnectWifiInterface.h", - - # Wi-Fi Config - Using the file sdk support until the wiseconnect file is fixed - "${matter_support_root}/sdk-copies/components/service/network_manager/src/sl_net_for_lwip.c", + "${wifi_sdk_root}/components/service/network_manager/src/sl_net_for_lwip.c", ] public_deps += [ "${lwip_root}:lwip" ] diff --git a/src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.cpp b/src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.cpp index e9bf54ca32..716187ed50 100644 --- a/src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.cpp +++ b/src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.cpp @@ -372,7 +372,10 @@ sl_status_t SetWifiConfigurations() VerifyOrReturnError(status == SL_STATUS_OK, status, ChipLogError(DeviceLayer, "sl_wifi_set_listen_interval failed: 0x%lx", status)); - sl_wifi_advanced_client_configuration_t client_config = { .max_retry_attempts = 5 }; + // This is be triggered on the disconnect use case, providing the amount of TA tries + // Setting the TA retry to 1 and giving the control to the M4 for improved power efficiency + // When max_retry_attempts is set to 0, TA will retry indefinitely. + sl_wifi_advanced_client_configuration_t client_config = { .max_retry_attempts = 1 }; status = sl_wifi_set_advanced_client_configuration(SL_WIFI_CLIENT_INTERFACE, &client_config); VerifyOrReturnError(status == SL_STATUS_OK, status, ChipLogError(DeviceLayer, "sl_wifi_set_advanced_client_configuration failed: 0x%lx", status)); @@ -490,10 +493,6 @@ CHIP_ERROR WifiInterfaceImpl::InitWiFiStack(void) sWifiEventQueue = osMessageQueueNew(kWfxQueueSize, sizeof(WiseconnectWifiInterface::WifiPlatformEvent), nullptr); VerifyOrReturnError(sWifiEventQueue != nullptr, CHIP_ERROR_NO_MEMORY); - status = CreateDHCPTimer(); - VerifyOrReturnError(status == SL_STATUS_OK, CHIP_ERROR_NO_MEMORY, - ChipLogError(DeviceLayer, "CreateDHCPTimer failed: %lx", status)); - return CHIP_NO_ERROR; } @@ -504,7 +503,7 @@ void WifiInterfaceImpl::ProcessEvent(WiseconnectWifiInterface::WifiPlatformEvent case WiseconnectWifiInterface::WifiPlatformEvent::kStationConnect: ChipLogDetail(DeviceLayer, "WifiPlatformEvent::kStationConnect"); wfx_rsi.dev_state.Set(WifiInterface::WifiState::kStationConnected); - ResetDHCPNotificationFlags(); + ResetConnectivityNotificationFlags(); break; case WiseconnectWifiInterface::WifiPlatformEvent::kStationDisconnect: { @@ -513,11 +512,10 @@ void WifiInterfaceImpl::ProcessEvent(WiseconnectWifiInterface::WifiPlatformEvent wfx_rsi.dev_state.Clear(WifiInterface::WifiState::kStationReady) .Clear(WifiInterface::WifiState::kStationConnecting) - .Clear(WifiInterface::WifiState::kStationConnected) - .Clear(WifiInterface::WifiState::kStationDhcpDone); + .Clear(WifiInterface::WifiState::kStationConnected); // TODO: Implement disconnect notify - ResetDHCPNotificationFlags(); + ResetConnectivityNotificationFlags(); #if (CHIP_DEVICE_CONFIG_ENABLE_IPV4) NotifyIPv4Change(false); #endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */ @@ -595,61 +593,29 @@ void WifiInterfaceImpl::ProcessEvent(WiseconnectWifiInterface::WifiPlatformEvent JoinWifiNetwork(); break; - case WiseconnectWifiInterface::WifiPlatformEvent::kStationDoDhcp: - ChipLogDetail(DeviceLayer, "WifiPlatformEvent::kStationDoDhcp"); - StartDHCPTimer(kDhcpPollIntervalMs); - break; - - case WiseconnectWifiInterface::WifiPlatformEvent::kStationDhcpDone: - ChipLogDetail(DeviceLayer, "WifiPlatformEvent::kStationDhcpDone"); - CancelDHCPTimer(); - break; - - case WiseconnectWifiInterface::WifiPlatformEvent::kStationDhcpPoll: - ChipLogDetail(DeviceLayer, "WifiPlatformEvent::kStationDhcpPoll"); - HandleDHCPPolling(); - break; + case WiseconnectWifiInterface::WifiPlatformEvent::kConnectionComplete: + ChipLogDetail(DeviceLayer, "WifiPlatformEvent::kConnectionComplete"); + NotifySuccessfulConnection(); default: break; } } -void WifiInterfaceImpl::HandleDHCPPolling(void) +void WifiInterfaceImpl::NotifySuccessfulConnection(void) { - WiseconnectWifiInterface::WifiPlatformEvent event; - - // TODO: Notify the application that the interface is not set up or Chipdie here because we are in an unkonwn state struct netif * sta_netif = &wifi_client_context.netif; - VerifyOrReturn(sta_netif != nullptr, ChipLogError(DeviceLayer, "HandleDHCPPolling: failed to get STA netif")); + VerifyOrReturn(sta_netif != nullptr, ChipLogError(DeviceLayer, "NotifySuccessfulConnection: failed to get STA netif")); #if (CHIP_DEVICE_CONFIG_ENABLE_IPV4) - uint8_t dhcp_state = dhcpclient_poll(sta_netif); - if (dhcp_state == DHCP_ADDRESS_ASSIGNED && !mHasNotifiedIPv4) - { - GotIPv4Address((uint32_t) sta_netif->ip_addr.u_addr.ip4.addr); - event = WiseconnectWifiInterface::WifiPlatformEvent::kStationDhcpDone; - WiseconnectWifiInterface::PostWifiPlatformEvent(event); - NotifyConnectivity(); - } - else if (dhcp_state == DHCP_OFF) - { - NotifyIPv4Change(false); - } + GotIPv4Address((uint32_t) sta_netif->ip_addr.u_addr.ip4.addr); #endif /* CHIP_DEVICE_CONFIG_ENABLE_IPV4 */ - /* Checks if the assigned IPv6 address is preferred by evaluating - * the first block of IPv6 address ( block 0) - */ - if ((ip6_addr_ispreferred(netif_ip6_addr_state(sta_netif, 0))) && !mHasNotifiedIPv6) - { - char addrStr[chip::Inet::IPAddress::kMaxStringLength] = { 0 }; - VerifyOrReturn(ip6addr_ntoa_r(netif_ip6_addr(sta_netif, 0), addrStr, sizeof(addrStr)) != nullptr); - ChipLogProgress(DeviceLayer, "SLAAC OK: linklocal addr: %s", addrStr); - NotifyIPv6Change(true); - event = WiseconnectWifiInterface::WifiPlatformEvent::kStationDhcpDone; - PostWifiPlatformEvent(event); - NotifyConnectivity(); - } + + char addrStr[chip::Inet::IPAddress::kMaxStringLength] = { 0 }; + VerifyOrReturn(ip6addr_ntoa_r(netif_ip6_addr(sta_netif, 0), addrStr, sizeof(addrStr)) != nullptr); + ChipLogProgress(DeviceLayer, "SLAAC OK: linklocal addr: %s", addrStr); + NotifyIPv6Change(true); + NotifyConnectivity(); } sl_status_t WifiInterfaceImpl::JoinWifiNetwork(void) diff --git a/src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.h b/src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.h index 54bac8c239..6c79d43d4e 100644 --- a/src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.h +++ b/src/platform/silabs/wifi/SiWx/WifiInterfaceImpl.h @@ -97,10 +97,10 @@ class WifiInterfaceImpl final : public WiseconnectWifiInterface sl_status_t JoinWifiNetwork(); /** - * @brief Processing function responsible of executing the DHCP polling operation until we have an IPv6 or IPv4 address + * @brief Processing function responsible for notifying the upper layers of a succesful connection attempt. * */ - void HandleDHCPPolling(); + void NotifySuccessfulConnection(); static WifiInterfaceImpl mInstance; }; diff --git a/src/platform/silabs/wifi/SiWx/ncp/rs9117.gni b/src/platform/silabs/wifi/SiWx/ncp/rs9117.gni index 6149173a42..42089d3729 100644 --- a/src/platform/silabs/wifi/SiWx/ncp/rs9117.gni +++ b/src/platform/silabs/wifi/SiWx/ncp/rs9117.gni @@ -43,9 +43,6 @@ rs9117_src_sapi = [ "${wifi_sdk_root}/components/device/silabs/si91x/wireless/ncp_interface/spi/sl_si91x_spi.c", "${wifi_sdk_root}/components/device/silabs/si91x/wireless/ncp_interface/sl_si91x_ncp_driver.c", - # Wi-Fi Config - Using the file sdk support until the wiseconnect file is fixed - "${matter_support_root}/sdk-copies/components/service/network_manager/src/sl_net_for_lwip.c", - # wifi component "${wifi_sdk_root}/components/protocol/wifi/src/sl_wifi_basic_credentials.c", "${wifi_sdk_root}/components/protocol/wifi/src/sl_wifi_callback_framework.c", @@ -54,6 +51,7 @@ rs9117_src_sapi = [ # basic_network_manager component "${wifi_sdk_root}/components/service/network_manager/src/sl_net_credentials.c", "${wifi_sdk_root}/components/service/network_manager/src/sl_net_basic_profiles.c", + "${wifi_sdk_root}/components/service/network_manager/src/sl_net_for_lwip.c", # si91x_basic_buffers component "${wifi_sdk_root}/components/device/silabs/si91x/wireless/memory/malloc_buffers.c", diff --git a/src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.cpp b/src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.cpp index 8276360a38..045564dbbd 100644 --- a/src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.cpp +++ b/src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.cpp @@ -72,6 +72,9 @@ osThreadAttr_t kDrvTaskAttr = { .name = "drv_rsi", osMessageQueueId_t sWifiEventQueue = NULL; +// DHCP Polling interval for the IPv4/IPv6 +constexpr uint32_t kDhcpPollIntervalMs = 250; + uint8_t wfx_rsi_drv_buf[WFX_RSI_BUF_SZ]; wfx_wifi_scan_ext_t temp_reset; @@ -314,7 +317,7 @@ void WifiInterfaceImpl::ProcessEvent(WifiPlatformEvent event) case WiseconnectWifiInterface::WifiPlatformEvent::kStationConnect: { ChipLogDetail(DeviceLayer, "WiseconnectWifiInterface::WifiPlatformEvent::kStationConnect"); wfx_rsi.dev_state.Set(WifiInterface::WifiState::kStationConnected); - ResetDHCPNotificationFlags(); + ResetConnectivityNotificationFlags(); chip::DeviceLayer::Silabs::Lwip::SetLwipStationLinkUp(); } break; @@ -327,7 +330,7 @@ void WifiInterfaceImpl::ProcessEvent(WifiPlatformEvent event) .Clear(WifiInterface::WifiState::kStationDhcpDone); /* TODO: Implement disconnect notify */ - ResetDHCPNotificationFlags(); + ResetConnectivityNotificationFlags(); chip::DeviceLayer::Silabs::Lwip::SetLwipStationLinkDown(); #if (CHIP_DEVICE_CONFIG_ENABLE_IPV4) @@ -404,7 +407,7 @@ void WifiInterfaceImpl::ProcessEvent(WifiPlatformEvent event) JoinWifiNetwork(); } break; - case WiseconnectWifiInterface::WifiPlatformEvent::kStationDoDhcp: { + case WiseconnectWifiInterface::WifiPlatformEvent::kConnectionComplete: { StartDHCPTimer(kDhcpPollIntervalMs); } break; @@ -606,6 +609,36 @@ void WifiInterfaceImpl::JoinWifiNetwork(void) } } +void WifiInterfaceImpl::DHCPTimerEventHandler(void * arg) +{ + WifiPlatformEvent event = WiseconnectWifiInterface::WifiPlatformEvent::kStationDhcpPoll; + WifiInterfaceImpl::GetInstance().PostWifiPlatformEvent(event); +} + +void WifiInterfaceImpl::CancelDHCPTimer(void) +{ + VerifyOrReturn(osTimerIsRunning(mDHCPTimer), ChipLogDetail(DeviceLayer, "CancelDHCPTimer: timer not running")); + VerifyOrReturn(osTimerStop(mDHCPTimer) == osOK, ChipLogError(DeviceLayer, "CancelDHCPTimer: failed to stop timer")); +} + +void WifiInterfaceImpl::StartDHCPTimer(uint32_t timeout) +{ + // Cancel timer if already started + CancelDHCPTimer(); + + VerifyOrReturn(osTimerStart(mDHCPTimer, pdMS_TO_TICKS(timeout)) == osOK, + ChipLogError(DeviceLayer, "StartDHCPTimer: failed to start timer")); +} + +sl_status_t WifiInterfaceImpl::CreateDHCPTimer() +{ + // TODO: Use LWIP timer instead of creating a new one here + mDHCPTimer = osTimerNew(DHCPTimerEventHandler, osTimerPeriodic, nullptr, nullptr); + VerifyOrReturnError(mDHCPTimer != nullptr, SL_STATUS_ALLOCATION_FAILED); + + return SL_STATUS_OK; +} + void WifiInterfaceImpl::HandleDHCPPolling(void) { struct netif * sta_netif; diff --git a/src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.h b/src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.h index 967732bfae..1f4b3d204f 100644 --- a/src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.h +++ b/src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.h @@ -103,6 +103,35 @@ class WifiInterfaceImpl final : public WiseconnectWifiInterface */ void HandleDHCPPolling(); + /** + * @brief Function cancels the DHCP timer if it is running. + * If the timer isn't running, function doesn't do anything. + */ + void CancelDHCPTimer(); + + /** + * @brief Function starts the DHCP timer with the given timeout. + * + * TODO: change input to milliseconds type + * + * @param timeout timer duration in milliseconds + */ + void StartDHCPTimer(uint32_t timeout); + + /** + * @brief Function creates the DHCP timer + * + * + * @return sl_status_t SL_STATUS_OK, the timer was successfully created + */ + sl_status_t CreateDHCPTimer(); + + /** + * @brief Callback function for the DHCP timer event. + */ + static void DHCPTimerEventHandler(void * arg); + + osTimerId_t mDHCPTimer; static WifiInterfaceImpl mInstance; }; diff --git a/src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.cpp b/src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.cpp index df9be69663..6373602355 100644 --- a/src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.cpp +++ b/src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.cpp @@ -128,27 +128,6 @@ CHIP_ERROR WiseconnectWifiInterface::TriggerDisconnection() return CHIP_NO_ERROR; } -void WiseconnectWifiInterface::DHCPTimerEventHandler(void * arg) -{ - WifiPlatformEvent event = WifiPlatformEvent::kStationDhcpPoll; - WiseconnectWifiInterface::GetInstance().PostWifiPlatformEvent(event); -} - -void WiseconnectWifiInterface::CancelDHCPTimer(void) -{ - VerifyOrReturn(osTimerIsRunning(mDHCPTimer), ChipLogDetail(DeviceLayer, "CancelDHCPTimer: timer not running")); - VerifyOrReturn(osTimerStop(mDHCPTimer) == osOK, ChipLogError(DeviceLayer, "CancelDHCPTimer: failed to stop timer")); -} - -void WiseconnectWifiInterface::StartDHCPTimer(uint32_t timeout) -{ - // Cancel timer if already started - CancelDHCPTimer(); - - VerifyOrReturn(osTimerStart(mDHCPTimer, pdMS_TO_TICKS(timeout)) == osOK, - ChipLogError(DeviceLayer, "StartDHCPTimer: failed to start timer")); -} - void WiseconnectWifiInterface::NotifyConnectivity(void) { VerifyOrReturn(!mHasNotifiedWifiConnectivity); @@ -157,22 +136,13 @@ void WiseconnectWifiInterface::NotifyConnectivity(void) mHasNotifiedWifiConnectivity = true; } -sl_status_t WiseconnectWifiInterface::CreateDHCPTimer() -{ - // TODO: Use LWIP timer instead of creating a new one here - mDHCPTimer = osTimerNew(DHCPTimerEventHandler, osTimerPeriodic, nullptr, nullptr); - VerifyOrReturnError(mDHCPTimer != nullptr, SL_STATUS_ALLOCATION_FAILED); - - return SL_STATUS_OK; -} - -void WiseconnectWifiInterface::ResetDHCPNotificationFlags(void) +void WiseconnectWifiInterface::ResetConnectivityNotificationFlags(void) { ResetIPNotificationStates(); mHasNotifiedWifiConnectivity = false; - WifiPlatformEvent event = WifiPlatformEvent::kStationDoDhcp; + WifiPlatformEvent event = WifiPlatformEvent::kConnectionComplete; PostWifiPlatformEvent(event); } diff --git a/src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.h b/src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.h index cf565c508b..f9a46b87ed 100644 --- a/src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.h +++ b/src/platform/silabs/wifi/wiseconnect-interface/WiseconnectWifiInterface.h @@ -29,19 +29,17 @@ namespace Silabs { class WiseconnectWifiInterface : public WifiInterface { public: - static constexpr uint32_t kDhcpPollIntervalMs = 250; - enum class WifiPlatformEvent : uint8_t { - kStationConnect = 0, - kStationDisconnect = 1, - kAPStart = 2, - kAPStop = 3, - kScan = 4, /* This combines the scan start and scan result events */ - kStationStartJoin = 5, - kStationDoDhcp = 6, - kStationDhcpDone = 7, - kStationDhcpPoll = 8, + kStationConnect = 0, + kStationDisconnect = 1, + kAPStart = 2, + kAPStop = 3, + kScan = 4, /* This combines the scan start and scan result events */ + kStationStartJoin = 5, + kConnectionComplete = 6, /* This combines the DHCP for RS9116 and Notify for SiWx917 */ + kStationDhcpDone = 7, + kStationDhcpPoll = 8, }; virtual ~WiseconnectWifiInterface() = default; @@ -102,29 +100,6 @@ class WiseconnectWifiInterface : public WifiInterface */ static void MatterWifiTask(void * arg); - /** - * @brief Function cancels the DHCP timer if it is running. - * If the timer isn't running, function doesn't do anything. - */ - void CancelDHCPTimer(); - - /** - * @brief Function starts the DHCP timer with the given timeout. - * - * TODO: change input to milliseconds type - * - * @param timeout timer duration in milliseconds - */ - void StartDHCPTimer(uint32_t timeout); - - /** - * @brief Function creates the DHCP timer - * - * - * @return sl_status_t SL_STATUS_OK, the timer was successfully created - */ - sl_status_t CreateDHCPTimer(); - /** * @brief Notify the application about the connectivity status if it has not been notified yet. */ @@ -141,7 +116,7 @@ class WiseconnectWifiInterface : public WifiInterface * @brief Function resets the IP and connectiity flags and triggers the DHCP operation * */ - void ResetDHCPNotificationFlags(); + void ResetConnectivityNotificationFlags(); private: /** @@ -153,12 +128,6 @@ class WiseconnectWifiInterface : public WifiInterface */ static WiseconnectWifiInterface & GetInstance(); - /** - * @brief Callback function for the DHCP timer event. - */ - static void DHCPTimerEventHandler(void * arg); - - osTimerId_t mDHCPTimer; bool mHasNotifiedWifiConnectivity = false; }; diff --git a/third_party/silabs/matter_support b/third_party/silabs/matter_support index d39e1d9bcb..8548a549ca 160000 --- a/third_party/silabs/matter_support +++ b/third_party/silabs/matter_support @@ -1 +1 @@ -Subproject commit d39e1d9bcbdcb74fd7b9e2377e7cecf0aa619e1c +Subproject commit 8548a549cab7e6102c524ef45a2ebb17f20c954c From 23841532805109f547b57c2504cf4aec2a828449 Mon Sep 17 00:00:00 2001 From: Marius Preda Date: Thu, 13 Mar 2025 22:00:54 +0200 Subject: [PATCH 5/9] =?UTF-8?q?[NXP]=20Improve=20DnssdImplBr=20to=20handle?= =?UTF-8?q?=20a=20list=20of=20queries=20instead=20of=20a=20si=E2=80=A6=20(?= =?UTF-8?q?#37962)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [NXP] Improve DnssdImplBr to handle a list of queries instead of a single instance This commit adds support for handling multiple queries at the same time. For example, if the device is trying to do multiple CASE sessions at once, each of them will trigger a node resolve. The new implementation uses lists for handling resolve or browse operations at the same time. Also, the list allows determining if a query is in progress and let mDNS module handle it according to specification. This means that we will not restart the query but allow the normal resolve/browse operation to continue as defined in the mDNS specification. Signed-off-by: Marius Preda * Restyled by whitespace * Restyled by clang-format --------- Signed-off-by: Marius Preda Co-authored-by: Restyled.io --- src/platform/nxp/common/DnssdImpl.cpp | 2 +- src/platform/nxp/common/DnssdImplBr.cpp | 319 ++++++++++++++++-------- 2 files changed, 216 insertions(+), 105 deletions(-) diff --git a/src/platform/nxp/common/DnssdImpl.cpp b/src/platform/nxp/common/DnssdImpl.cpp index 65061aa80c..58dc2b9e88 100644 --- a/src/platform/nxp/common/DnssdImpl.cpp +++ b/src/platform/nxp/common/DnssdImpl.cpp @@ -51,7 +51,7 @@ CHIP_ERROR ChipDnssdInit(DnssdAsyncReturnCallback initCallback, DnssdAsyncReturn void ChipDnssdShutdown() { - // Empty implementation. Intentionally left blank + NxpChipDnssdShutdown(); } CHIP_ERROR ChipDnssdPublishService(const DnssdService * service, DnssdPublishCallback callback, void * context) diff --git a/src/platform/nxp/common/DnssdImplBr.cpp b/src/platform/nxp/common/DnssdImplBr.cpp index 7f6aa25fa6..ae9a600929 100644 --- a/src/platform/nxp/common/DnssdImplBr.cpp +++ b/src/platform/nxp/common/DnssdImplBr.cpp @@ -28,6 +28,8 @@ #include #include +#include "fsl_component_generic_list.h" + #include using namespace ::chip::DeviceLayer; @@ -65,6 +67,7 @@ struct DnsServiceTxtEntries struct mDnsQueryCtx { + list_element_t link; void * matterCtx; chip::Dnssd::DnssdService mMdnsService; DnsServiceTxtEntries mServiceTxtEntry; @@ -104,6 +107,13 @@ enum ResolveStep : uint8_t kResolveStepIpAddr, }; +enum NameType : uint8_t +{ + kNameTypeInstance = 0, + kNameTypeHost, + kNameTypeService, +}; + static const char * GetProtocolString(DnssdServiceProtocol protocol); static void OtBrowseCallback(otInstance * aInstance, const otMdnsBrowseResult * aResult); @@ -121,6 +131,9 @@ static void DispatchResolveError(intptr_t context); static void HandleResolveCleanup(mDnsQueryCtx & resolveContext, ResolveStep stepType); +static mDnsQueryCtx * GetResolveElement(const char * instanceName, NameType aType); +static mDnsQueryCtx * GetBrowseElement(const char * instanceName); + static CHIP_ERROR ResolveBySrp(otInstance * thrInstancePtr, char * serviceName, mDnsQueryCtx * context, DnssdService * mdnsReq); static CHIP_ERROR BrowseBySrp(otInstance * thrInstancePtr, char * serviceName, mDnsQueryCtx * context); static CHIP_ERROR FromSrpCacheToMdnsData(const otSrpServerService * service, const otSrpServerHost * host, @@ -129,15 +142,13 @@ static CHIP_ERROR FromSrpCacheToMdnsData(const otSrpServerService * service, con static CHIP_ERROR FromServiceTypeToMdnsData(chip::Dnssd::DnssdService & mdnsService, const char * aServiceType); -static bool bBrowseInProgress = false; // ID 0 is reserved for host static uint32_t mRegisterServiceId = 1; static uint8_t mNetifIndex = 0; -// Matter currently only supports one browse and resolve operation at a time so there is no need to create a list -// If the Matter implementation evolves in the future this functionality can be extended to a list. -static mDnsQueryCtx * mBrowseContext = nullptr; -static mDnsQueryCtx * mResolveContext = nullptr; +static list_label_t mResolveList; +static list_label_t mBrowseList; +static bool mListIsInit = false; #if USE_MDNS_NEXT_SERVICE_API static otMdnsService * mServiceList[kServiceListSize]; @@ -147,8 +158,15 @@ static uint32_t mServiceListFreeIndex; CHIP_ERROR NxpChipDnssdInit(DnssdAsyncReturnCallback initCallback, DnssdAsyncReturnCallback errorCallback, void * context) { struct netif * extNetif = (ConnectivityManagerImpl().GetExternalInterface()).GetPlatformInterface(); + mNetifIndex = netif_get_index(extNetif); + + if (!mListIsInit) + { + mListIsInit = true; + LIST_Init(&mResolveList, 0); + LIST_Init(&mBrowseList, 0); + } - mNetifIndex = netif_get_index(extNetif); initCallback(context, CHIP_NO_ERROR); return CHIP_NO_ERROR; @@ -156,8 +174,36 @@ CHIP_ERROR NxpChipDnssdInit(DnssdAsyncReturnCallback initCallback, DnssdAsyncRet void NxpChipDnssdShutdown() { - // Empty implementation. Intentionally left blank + if (mListIsInit) + { + // Stop all browse operations and clean the browse list + otInstance * thrInstancePtr = ThreadStackMgrImpl().OTInstance(); + mDnsQueryCtx * pQueryContext = reinterpret_cast(LIST_GetHead(&mBrowseList)); + ; + + while (pQueryContext) + { + otMdnsStopBrowser(thrInstancePtr, &pQueryContext->mBrowseInfo); + LIST_RemoveElement(&pQueryContext->link); + Platform::Delete(pQueryContext); + + pQueryContext = reinterpret_cast(LIST_GetHead(&mBrowseList)); + } + + // Stop all resolve operations and clean the resolve list + pQueryContext = reinterpret_cast(LIST_GetHead(&mResolveList)); + + while (pQueryContext) + { + otMdnsStopSrvResolver(thrInstancePtr, &pQueryContext->mSrvInfo); + LIST_RemoveElement(&pQueryContext->link); + Platform::Delete(pQueryContext); + + pQueryContext = reinterpret_cast(LIST_GetHead(&mResolveList)); + } + } } + #if USE_MDNS_NEXT_SERVICE_API CHIP_ERROR NxpChipDnssdRemoveServices() { @@ -357,53 +403,62 @@ CHIP_ERROR NxpChipDnssdBrowse(const char * type, DnssdServiceProtocol protocol, Inet::InterfaceId interface, DnssdBrowseCallback callback, void * context, intptr_t * browseIdentifier) { - *browseIdentifier = reinterpret_cast(nullptr); - CHIP_ERROR error = CHIP_NO_ERROR; - CHIP_ERROR srpBrowseError = CHIP_NO_ERROR; - otInstance * thrInstancePtr = ThreadStackMgrImpl().OTInstance(); + *browseIdentifier = reinterpret_cast(nullptr); + CHIP_ERROR error = CHIP_NO_ERROR; + CHIP_ERROR srpBrowseError = CHIP_NO_ERROR; + otInstance * thrInstancePtr = ThreadStackMgrImpl().OTInstance(); + mDnsQueryCtx * pBrowseContext = nullptr; + char serviceType[chip::Dnssd::kDnssdTypeAndProtocolMaxSize + 1]; if (type == nullptr || callback == nullptr) return CHIP_ERROR_INVALID_ARGUMENT; - if (mBrowseContext != nullptr) + snprintf(serviceType, sizeof(serviceType), "%s.%s", type, GetProtocolString(protocol)); + pBrowseContext = reinterpret_cast(GetResolveElement(serviceType, kNameTypeService)); + if (pBrowseContext != nullptr) { - NxpChipDnssdStopBrowse(reinterpret_cast(mBrowseContext)); + // In case there is an ongoing query let it continue using OT's mDNS management + return CHIP_NO_ERROR; } - mBrowseContext = Platform::New(context, callback); - VerifyOrReturnError(mBrowseContext != nullptr, CHIP_ERROR_NO_MEMORY); + pBrowseContext = Platform::New(context, callback); + VerifyOrReturnError(pBrowseContext != nullptr, CHIP_ERROR_NO_MEMORY); + + Platform::CopyString(pBrowseContext->mServiceType, sizeof(pBrowseContext->mServiceType), serviceType); // First try to browse the service in the SRP cache - snprintf(mBrowseContext->mServiceType, sizeof(mBrowseContext->mServiceType), "%s.%s", type, GetProtocolString(protocol)); // After browsing in the SRP cache we will continue with regular mDNS browse - srpBrowseError = BrowseBySrp(thrInstancePtr, mBrowseContext->mServiceType, mBrowseContext); + srpBrowseError = BrowseBySrp(thrInstancePtr, pBrowseContext->mServiceType, pBrowseContext); // Proceed to generate a mDNS query - mBrowseContext->mBrowseInfo.mServiceType = mBrowseContext->mServiceType; - mBrowseContext->mBrowseInfo.mSubTypeLabel = nullptr; - mBrowseContext->mBrowseInfo.mInfraIfIndex = mNetifIndex; - mBrowseContext->mBrowseInfo.mCallback = OtBrowseCallback; + pBrowseContext->mBrowseInfo.mServiceType = pBrowseContext->mServiceType; + pBrowseContext->mBrowseInfo.mSubTypeLabel = nullptr; + pBrowseContext->mBrowseInfo.mInfraIfIndex = mNetifIndex; + pBrowseContext->mBrowseInfo.mCallback = OtBrowseCallback; + + LIST_AddTail(&mBrowseList, (list_element_handle_t) pBrowseContext); - error = MapOpenThreadError(otMdnsStartBrowser(thrInstancePtr, &mBrowseContext->mBrowseInfo)); + error = MapOpenThreadError(otMdnsStartBrowser(thrInstancePtr, &pBrowseContext->mBrowseInfo)); if (CHIP_NO_ERROR == error) { - bBrowseInProgress = true; - *browseIdentifier = reinterpret_cast(mBrowseContext); + *browseIdentifier = reinterpret_cast(pBrowseContext); } else { + LIST_RemoveElement(&pBrowseContext->link); if (srpBrowseError == CHIP_NO_ERROR) { // In this case, we need to send a final browse indication to signal the Matter App that there are no more - // browse results coming - mBrowseContext->error = error; - DeviceLayer::PlatformMgr().ScheduleWork(DispatchBrowseEmpty, reinterpret_cast(mBrowseContext)); + // browse results coming but the result is no error since we have a match in the SRP cache. + error = CHIP_NO_ERROR; + pBrowseContext->error = CHIP_NO_ERROR; + DeviceLayer::PlatformMgr().ScheduleWork(DispatchBrowseEmpty, reinterpret_cast(pBrowseContext)); } else { - Platform::Delete(mBrowseContext); - mBrowseContext = nullptr; + Platform::Delete(pBrowseContext); + pBrowseContext = nullptr; } } return error; @@ -411,19 +466,20 @@ CHIP_ERROR NxpChipDnssdBrowse(const char * type, DnssdServiceProtocol protocol, CHIP_ERROR NxpChipDnssdStopBrowse(intptr_t browseIdentifier) { - mDnsQueryCtx * browseContext = reinterpret_cast(browseIdentifier); - otInstance * thrInstancePtr = ThreadStackMgrImpl().OTInstance(); - otError error = OT_ERROR_INVALID_ARGS; - - // browseContext is only valid when bBrowseInProgress is true. The Matter stack can call this function even with a browseContext - // that has been freed in DispatchBrowseEmpty. - if ((true == bBrowseInProgress) && (browseContext)) + mDnsQueryCtx * pBrowseContext = reinterpret_cast(browseIdentifier); + otInstance * thrInstancePtr = ThreadStackMgrImpl().OTInstance(); + otError error = OT_ERROR_INVALID_ARGS; + + // The Matter stack can call this function even with a browseContext that has been + // freed in DispatchBrowseEmpty. If the browseContext is successfully freed from the + // browse list then we consider it valid and proceed to stop the mDNS browse operation. + if (kLIST_Ok == LIST_RemoveElement(&pBrowseContext->link)) { - error = otMdnsStopBrowser(thrInstancePtr, &browseContext->mBrowseInfo); - browseContext->error = MapOpenThreadError(error); + error = otMdnsStopBrowser(thrInstancePtr, &pBrowseContext->mBrowseInfo); + pBrowseContext->error = MapOpenThreadError(error); // browse context will be freed in DispatchBrowseEmpty - DispatchBrowseEmpty(reinterpret_cast(browseContext)); + DispatchBrowseEmpty(reinterpret_cast(pBrowseContext)); } return MapOpenThreadError(error); } @@ -431,61 +487,65 @@ CHIP_ERROR NxpChipDnssdStopBrowse(intptr_t browseIdentifier) CHIP_ERROR NxpChipDnssdResolve(DnssdService * browseResult, Inet::InterfaceId interface, DnssdResolveCallback callback, void * context) { - ChipError error = CHIP_ERROR_NOT_FOUND; + ChipError error = CHIP_ERROR_NOT_FOUND; + mDnsQueryCtx * pResolveContext = nullptr; if (browseResult == nullptr || callback == nullptr) return CHIP_ERROR_INVALID_ARGUMENT; otInstance * thrInstancePtr = ThreadStackMgrImpl().OTInstance(); - if (mResolveContext != nullptr) + pResolveContext = reinterpret_cast(GetResolveElement(browseResult->mName, kNameTypeInstance)); + if (pResolveContext != nullptr) { - // In case there is an ongoing query and NxpChipDnssdResolveNoLongerNeeded has not been called yet - // free the allocated context and do a proper cleanup of the previous transaction - NxpChipDnssdResolveNoLongerNeeded(mResolveContext->mMdnsService.mName); + // In case there is an ongoing query let it continue using OT's mDNS management + return CHIP_NO_ERROR; } - mResolveContext = Platform::New(context, callback); - VerifyOrReturnError(mResolveContext != nullptr, CHIP_ERROR_NO_MEMORY); + pResolveContext = Platform::New(context, callback); + VerifyOrReturnError(pResolveContext != nullptr, CHIP_ERROR_NO_MEMORY); // First try to find the service in the SRP cache, use default.service.arpa as domain name - snprintf(mResolveContext->mServiceType, sizeof(mResolveContext->mServiceType), "%s.%s", browseResult->mType, + snprintf(pResolveContext->mServiceType, sizeof(pResolveContext->mServiceType), "%s.%s", browseResult->mType, GetProtocolString(browseResult->mProtocol)); - error = ResolveBySrp(thrInstancePtr, mResolveContext->mServiceType, mResolveContext, browseResult); + error = ResolveBySrp(thrInstancePtr, pResolveContext->mServiceType, pResolveContext, browseResult); // If the SRP cache returns not found, proceed to generate a MDNS query if (CHIP_ERROR_NOT_FOUND == error) { // The otMdnsSrvResolver structure contains only pointers to instance name and service type strings // Use the memory from mMdnsService.mName to store the instance name string we are looking for - Platform::CopyString(mResolveContext->mMdnsService.mName, sizeof(mResolveContext->mMdnsService.mName), browseResult->mName); + Platform::CopyString(pResolveContext->mMdnsService.mName, sizeof(pResolveContext->mMdnsService.mName), browseResult->mName); + + pResolveContext->mSrvInfo.mInfraIfIndex = mNetifIndex; + pResolveContext->mSrvInfo.mCallback = OtServiceCallback; + pResolveContext->mSrvInfo.mServiceInstance = pResolveContext->mMdnsService.mName; + pResolveContext->mSrvInfo.mServiceType = pResolveContext->mServiceType; - mResolveContext->mSrvInfo.mInfraIfIndex = mNetifIndex; - mResolveContext->mSrvInfo.mCallback = OtServiceCallback; - mResolveContext->mSrvInfo.mServiceInstance = mResolveContext->mMdnsService.mName; - mResolveContext->mSrvInfo.mServiceType = mResolveContext->mServiceType; + LIST_AddTail(&mResolveList, (list_element_handle_t) pResolveContext); - error = MapOpenThreadError(otMdnsStartSrvResolver(thrInstancePtr, &mResolveContext->mSrvInfo)); + error = MapOpenThreadError(otMdnsStartSrvResolver(thrInstancePtr, &pResolveContext->mSrvInfo)); } if (error != CHIP_NO_ERROR) { - Platform::Delete(mResolveContext); - mResolveContext = nullptr; + LIST_RemoveElement(&pResolveContext->link); + Platform::Delete(pResolveContext); } return error; } void NxpChipDnssdResolveNoLongerNeeded(const char * instanceName) { - if (mResolveContext != nullptr) + mDnsQueryCtx * pResolveContext = reinterpret_cast(GetResolveElement(instanceName, kNameTypeInstance)); + if (pResolveContext != nullptr) { - if (strcmp(instanceName, mResolveContext->mMdnsService.mName) == 0) + if (strcmp(instanceName, pResolveContext->mMdnsService.mName) == 0) { - otMdnsStopSrvResolver(ThreadStackMgrImpl().OTInstance(), &mResolveContext->mSrvInfo); + otMdnsStopSrvResolver(ThreadStackMgrImpl().OTInstance(), &pResolveContext->mSrvInfo); - Platform::Delete(mResolveContext); - mResolveContext = nullptr; + LIST_RemoveElement(&pResolveContext->link); + Platform::Delete(pResolveContext); } } } @@ -681,7 +741,7 @@ static CHIP_ERROR FromServiceTypeToMdnsData(chip::Dnssd::DnssdService & mdnsServ { return CHIP_ERROR_INVALID_ARGUMENT; } - Platform::CopyString(mdnsService.mType, MATTER_ARRAY_SIZE(mdnsService.mType), aServiceType); + Platform::CopyString(mdnsService.mType, substringSize + 1, aServiceType); // Extract from the .. the . part. protocolSubstringStart = aServiceType + substringSize; @@ -722,11 +782,15 @@ static CHIP_ERROR FromServiceTypeToMdnsData(chip::Dnssd::DnssdService & mdnsServ static void OtBrowseCallback(otInstance * aInstance, const otMdnsBrowseResult * aResult) { CHIP_ERROR error; + mDnsQueryCtx * pBrowseContext = nullptr; // Ingnore reponses with TTL 0, the record is no longer valid and was removed from the mDNS cache VerifyOrReturn(aResult->mTtl > 0); - mDnsQueryCtx * tmpContext = Platform::New(mBrowseContext->matterCtx, mBrowseContext->mDnsBrowseCallback); + pBrowseContext = reinterpret_cast(GetResolveElement(aResult->mServiceType, kNameTypeService)); + VerifyOrReturn(pBrowseContext != nullptr); + + mDnsQueryCtx * tmpContext = Platform::New(pBrowseContext->matterCtx, pBrowseContext->mDnsBrowseCallback); VerifyOrReturn(tmpContext != nullptr); Platform::CopyString(tmpContext->mMdnsService.mName, sizeof(tmpContext->mMdnsService.mName), aResult->mServiceInstance); @@ -745,40 +809,44 @@ static void OtBrowseCallback(otInstance * aInstance, const otMdnsBrowseResult * static void OtServiceCallback(otInstance * aInstance, const otMdnsSrvResult * aResult) { CHIP_ERROR error; + mDnsQueryCtx * pResolveContext = nullptr; // Ingnore reponses with TTL 0, the record is no longer valid and was removed from the mDNS cache VerifyOrReturn(aResult->mTtl > 0); - VerifyOrReturn(mResolveContext != nullptr); + pResolveContext = GetResolveElement(aResult->mServiceInstance, kNameTypeInstance); + VerifyOrReturn(pResolveContext != nullptr); - error = FromServiceTypeToMdnsData(mResolveContext->mMdnsService, aResult->mServiceType); - mResolveContext->error = error; + error = FromServiceTypeToMdnsData(pResolveContext->mMdnsService, aResult->mServiceType); + pResolveContext->error = error; if (CHIP_NO_ERROR == error) { - Platform::CopyString(mResolveContext->mMdnsService.mName, sizeof(mResolveContext->mMdnsService.mName), + Platform::CopyString(pResolveContext->mMdnsService.mName, sizeof(pResolveContext->mMdnsService.mName), aResult->mServiceInstance); - Platform::CopyString(mResolveContext->mMdnsService.mHostName, sizeof(mResolveContext->mMdnsService.mHostName), + Platform::CopyString(pResolveContext->mMdnsService.mHostName, sizeof(pResolveContext->mMdnsService.mHostName), aResult->mHostName); - mResolveContext->mMdnsService.mPort = aResult->mPort; - mResolveContext->mMdnsService.mTtlSeconds = aResult->mTtl; - DeviceLayer::PlatformMgr().ScheduleWork(DispatchTxtResolve, reinterpret_cast(mResolveContext)); + pResolveContext->mMdnsService.mPort = aResult->mPort; + pResolveContext->mMdnsService.mTtlSeconds = aResult->mTtl; + DeviceLayer::PlatformMgr().ScheduleWork(DispatchTxtResolve, reinterpret_cast(pResolveContext)); } else { - HandleResolveCleanup(*mResolveContext, kResolveStepSrv); + HandleResolveCleanup(*pResolveContext, kResolveStepSrv); } } static void OtTxtCallback(otInstance * aInstance, const otMdnsTxtResult * aResult) { - bool bSendDispatch = true; + bool bSendDispatch = true; + mDnsQueryCtx * pResolveContext = nullptr; // Ingnore reponses with TTL 0, the record is no longer valid and was removed from the mDNS cache VerifyOrReturn(aResult->mTtl > 0); - VerifyOrReturn(mResolveContext != nullptr); + pResolveContext = GetResolveElement(aResult->mServiceInstance, kNameTypeInstance); + VerifyOrReturn(pResolveContext != nullptr); // Check if TXT record was included in the response. if (aResult->mTxtDataLength != 0) @@ -787,7 +855,7 @@ static void OtTxtCallback(otInstance * aInstance, const otMdnsTxtResult * aResul otDnsInitTxtEntryIterator(&iterator, aResult->mTxtData, aResult->mTxtDataLength); otDnsTxtEntry txtEntry; - chip::FixedBufferAllocator alloc(mResolveContext->mServiceTxtEntry.mBuffer); + chip::FixedBufferAllocator alloc(pResolveContext->mServiceTxtEntry.mBuffer); uint8_t entryIndex = 0; while ((otDnsGetNextTxtEntry(&iterator, &txtEntry) == OT_ERROR_NONE) && entryIndex < 64) @@ -795,9 +863,9 @@ static void OtTxtCallback(otInstance * aInstance, const otMdnsTxtResult * aResul if (txtEntry.mKey == nullptr || txtEntry.mValue == nullptr) continue; - mResolveContext->mServiceTxtEntry.mTxtEntries[entryIndex].mKey = alloc.Clone(txtEntry.mKey); - mResolveContext->mServiceTxtEntry.mTxtEntries[entryIndex].mData = alloc.Clone(txtEntry.mValue, txtEntry.mValueLength); - mResolveContext->mServiceTxtEntry.mTxtEntries[entryIndex].mDataSize = txtEntry.mValueLength; + pResolveContext->mServiceTxtEntry.mTxtEntries[entryIndex].mKey = alloc.Clone(txtEntry.mKey); + pResolveContext->mServiceTxtEntry.mTxtEntries[entryIndex].mData = alloc.Clone(txtEntry.mValue, txtEntry.mValueLength); + pResolveContext->mServiceTxtEntry.mTxtEntries[entryIndex].mDataSize = txtEntry.mValueLength; entryIndex++; } @@ -807,22 +875,22 @@ static void OtTxtCallback(otInstance * aInstance, const otMdnsTxtResult * aResul } else { - mResolveContext->mMdnsService.mTextEntries = mResolveContext->mServiceTxtEntry.mTxtEntries; - mResolveContext->mMdnsService.mTextEntrySize = entryIndex; + pResolveContext->mMdnsService.mTextEntries = pResolveContext->mServiceTxtEntry.mTxtEntries; + pResolveContext->mMdnsService.mTextEntrySize = entryIndex; } } else { - mResolveContext->mMdnsService.mTextEntrySize = 0; + pResolveContext->mMdnsService.mTextEntrySize = 0; } if (bSendDispatch) { - DeviceLayer::PlatformMgr().ScheduleWork(DispatchAddressResolve, reinterpret_cast(mResolveContext)); + DeviceLayer::PlatformMgr().ScheduleWork(DispatchAddressResolve, reinterpret_cast(pResolveContext)); } else { - HandleResolveCleanup(*mResolveContext, kResolveStepTxt); + HandleResolveCleanup(*pResolveContext, kResolveStepTxt); } } @@ -831,12 +899,13 @@ static void OtAddressCallback(otInstance * aInstance, const otMdnsAddressResult // Ingnore reponses with TTL 0, the record is no longer valid and was removed from the mDNS cache VerifyOrReturn((aResult->mAddressesLength > 0) && (aResult->mAddresses[0].mTtl > 0)); - VerifyOrReturn(mResolveContext != nullptr); + mDnsQueryCtx * pResolveContext = GetResolveElement(aResult->mHostName, kNameTypeHost); + VerifyOrReturn(pResolveContext != nullptr); - mResolveContext->mMdnsService.mAddressType = Inet::IPAddressType::kIPv6; - mResolveContext->mMdnsService.mAddress = std::optional(ToIPAddress(aResult->mAddresses[0].mAddress)); + pResolveContext->mMdnsService.mAddressType = Inet::IPAddressType::kIPv6; + pResolveContext->mMdnsService.mAddress = std::optional(ToIPAddress(aResult->mAddresses[0].mAddress)); - DeviceLayer::PlatformMgr().ScheduleWork(DispatchResolve, reinterpret_cast(mResolveContext)); + DeviceLayer::PlatformMgr().ScheduleWork(DispatchResolve, reinterpret_cast(pResolveContext)); } static void DispatchBrowseEmpty(intptr_t context) @@ -844,8 +913,6 @@ static void DispatchBrowseEmpty(intptr_t context) auto * browseContext = reinterpret_cast(context); browseContext->mDnsBrowseCallback(browseContext->matterCtx, nullptr, 0, true, browseContext->error); Platform::Delete(browseContext); - mBrowseContext = nullptr; - bBrowseInProgress = false; } static void DispatchBrowse(intptr_t context) @@ -897,40 +964,42 @@ static void DispatchAddressResolve(intptr_t context) static void DispatchResolve(intptr_t context) { - mDnsQueryCtx * resolveContext = reinterpret_cast(context); - Dnssd::DnssdService & service = resolveContext->mMdnsService; + mDnsQueryCtx * pResolveContext = reinterpret_cast(context); + Dnssd::DnssdService & service = pResolveContext->mMdnsService; Span ipAddrs; // Stop Address resolver, we have finished resolving the service - otMdnsStopIp6AddressResolver(ThreadStackMgrImpl().OTInstance(), &resolveContext->mAddrInfo); + otMdnsStopIp6AddressResolver(ThreadStackMgrImpl().OTInstance(), &pResolveContext->mAddrInfo); if (service.mAddress.has_value()) { ipAddrs = Span(&*service.mAddress, 1); } - // Signal that the context will be freed and that the resolve operation is stopped because Matter will - // try do stop it again on the mDnsResolveCallback - mResolveContext = nullptr; + // The context will be freed and the resolve operation is stopped. Matter will + // try to stop it again on the mDnsResolveCallback but nothing will happen because the + // element is no longer present in the list. + LIST_RemoveElement(&pResolveContext->link); - resolveContext->mDnsResolveCallback(resolveContext->matterCtx, &service, ipAddrs, resolveContext->error); - Platform::Delete(resolveContext); + pResolveContext->mDnsResolveCallback(pResolveContext->matterCtx, &service, ipAddrs, pResolveContext->error); + Platform::Delete(pResolveContext); } static void DispatchResolveError(intptr_t context) { - mDnsQueryCtx * resolveContext = reinterpret_cast(context); + mDnsQueryCtx * pResolveContext = reinterpret_cast(context); Span ipAddrs; - // Signal that the context will be freed and that the resolve operation is stopped because Matter will - // try do stop it again on the mDnsResolveCallback - mResolveContext = nullptr; + // The context will be freed and the resolve operation is stopped. Matter will + // try to stop it again on the mDnsResolveCallback but nothing will happen because the + // element is no longer present in the list. + LIST_RemoveElement(&pResolveContext->link); - resolveContext->mDnsResolveCallback(resolveContext->matterCtx, nullptr, ipAddrs, resolveContext->error); - Platform::Delete(resolveContext); + pResolveContext->mDnsResolveCallback(pResolveContext->matterCtx, nullptr, ipAddrs, pResolveContext->error); + Platform::Delete(pResolveContext); } -void HandleResolveCleanup(mDnsQueryCtx & resolveContext, ResolveStep stepType) +static void HandleResolveCleanup(mDnsQueryCtx & resolveContext, ResolveStep stepType) { switch (stepType) { @@ -948,5 +1017,47 @@ void HandleResolveCleanup(mDnsQueryCtx & resolveContext, ResolveStep stepType) DeviceLayer::PlatformMgr().ScheduleWork(DispatchResolve, reinterpret_cast(&resolveContext)); } +static mDnsQueryCtx * GetResolveElement(const char * aName, NameType aType) +{ + mDnsQueryCtx * pResolveContext = nullptr; + + if (aType == kNameTypeService) + { + pResolveContext = reinterpret_cast(LIST_GetHead(&mBrowseList)); + } + else + { + pResolveContext = reinterpret_cast(LIST_GetHead(&mResolveList)); + } + + while (pResolveContext) + { + if (aType == kNameTypeInstance) + { + if (strcmp(aName, pResolveContext->mMdnsService.mName) == 0) + { + break; + } + } + else if (aType == kNameTypeHost) + { + if (strcmp(aName, pResolveContext->mMdnsService.mHostName) == 0) + { + break; + } + } + else if (aType == kNameTypeService) + { + if (strcmp(aName, pResolveContext->mServiceType) == 0) + { + break; + } + } + pResolveContext = reinterpret_cast(LIST_GetNext(&pResolveContext->link)); + } + + return pResolveContext; +} + } // namespace Dnssd } // namespace chip From 54f6335670d13f749a7d31daa7b703ef6921ac41 Mon Sep 17 00:00:00 2001 From: Yufeng Wang Date: Thu, 13 Mar 2025 13:12:32 -0700 Subject: [PATCH 6/9] Fix the Build Flags Conflict (#37991) * Fix the Build Flags Conflict * Restyled by gn --------- Co-authored-by: Restyled.io --- examples/camera-app/linux/BUILD.gn | 23 +++++++++++------------ examples/camera-controller/BUILD.gn | 8 ++++++-- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/examples/camera-app/linux/BUILD.gn b/examples/camera-app/linux/BUILD.gn index e992304943..b738a57667 100644 --- a/examples/camera-app/linux/BUILD.gn +++ b/examples/camera-app/linux/BUILD.gn @@ -16,18 +16,26 @@ import("//build_overrides/build.gni") import("//build_overrides/chip.gni") import("${chip_root}/build/chip/tools.gni") -import("${chip_root}/src/app/common_flags.gni") assert(chip_build_tools) -config("includes") { +config("config") { + cflags = [ + "-Wconversion", + "-Wno-shadow", + ] + include_dirs = [ - ".", "include", + "include/clusters/chime", + "${chip_root}/examples/camera-app/camera-common/include", + "${chip_root}/third_party/libdatachannel/repo/include", ] } executable("chip-camera-app") { + configs += [ ":config" ] + sources = [ "${chip_root}/examples/camera-app/linux/src/camera-device.cpp", "${chip_root}/examples/camera-app/linux/src/clusters/chime/chime-manager.cpp", @@ -47,15 +55,6 @@ executable("chip-camera-app") { lib_dirs = [ rebase_path("${chip_root}/third_party/libdatachannel/repo/build") ] - include_dirs = [ - "include", - "include/clusters/chime", - "${chip_root}/examples/camera-app/camera-common/include", - "${chip_root}/third_party/libdatachannel/repo/include", - ] - - cflags = [ "-Wconversion" ] - output_dir = root_out_dir } diff --git a/examples/camera-controller/BUILD.gn b/examples/camera-controller/BUILD.gn index 6e70d89c3e..9ba1f71c5a 100644 --- a/examples/camera-controller/BUILD.gn +++ b/examples/camera-controller/BUILD.gn @@ -23,12 +23,18 @@ import("${chip_root}/src/lib/core/core.gni") assert(chip_build_tools) config("config") { + cflags = [ + "-Wconversion", + "-Wno-shadow", + ] + include_dirs = [ ".", "${chip_root}/examples/common", "${chip_root}/zzz_generated/app-common/app-common", "${chip_root}/zzz_generated/chip-tool", "${chip_root}/src/lib", + "${chip_root}/third_party/libdatachannel/repo/include", ] defines = [ "CONFIG_USE_SEPARATE_EVENTLOOP=${config_use_separate_eventloop}" ] @@ -114,8 +120,6 @@ executable("camera-controller") { lib_dirs = [ rebase_path("${chip_root}/third_party/libdatachannel/repo/build") ] - include_dirs = [ "${chip_root}/third_party/libdatachannel/repo/include" ] - output_dir = root_out_dir } From 733de99e571013903703e49f51524f4cecef437b Mon Sep 17 00:00:00 2001 From: Adrian Gielniewski Date: Thu, 13 Mar 2025 21:28:09 +0100 Subject: [PATCH 7/9] [nrfconnect] Increase heap size for all-clusters-app (#38000) Increase heap size as CASE Session establishment fails with `CHIP_ERROR_NO_MEMORY`. Signed-off-by: Adrian Gielniewski --- examples/all-clusters-app/nrfconnect/prj.conf | 2 +- examples/all-clusters-app/nrfconnect/prj_dfu.conf | 2 +- examples/all-clusters-app/nrfconnect/prj_release.conf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/all-clusters-app/nrfconnect/prj.conf b/examples/all-clusters-app/nrfconnect/prj.conf index 731a3741f2..935fd99acd 100644 --- a/examples/all-clusters-app/nrfconnect/prj.conf +++ b/examples/all-clusters-app/nrfconnect/prj.conf @@ -59,4 +59,4 @@ CONFIG_CHIP_ENABLE_READ_CLIENT=y CONFIG_PM_PARTITION_SIZE_SETTINGS_STORAGE=0x8000 # Increase heap size -CONFIG_CHIP_MALLOC_SYS_HEAP_SIZE=10240 +CONFIG_CHIP_MALLOC_SYS_HEAP_SIZE=32768 diff --git a/examples/all-clusters-app/nrfconnect/prj_dfu.conf b/examples/all-clusters-app/nrfconnect/prj_dfu.conf index e09b17d3c6..b0031de942 100644 --- a/examples/all-clusters-app/nrfconnect/prj_dfu.conf +++ b/examples/all-clusters-app/nrfconnect/prj_dfu.conf @@ -57,4 +57,4 @@ CONFIG_CHIP_FACTORY_DATA_BUILD=y CONFIG_CHIP_ENABLE_READ_CLIENT=y # Increase heap size -CONFIG_CHIP_MALLOC_SYS_HEAP_SIZE=10240 +CONFIG_CHIP_MALLOC_SYS_HEAP_SIZE=32768 diff --git a/examples/all-clusters-app/nrfconnect/prj_release.conf b/examples/all-clusters-app/nrfconnect/prj_release.conf index d02d498d21..37dbde55a5 100644 --- a/examples/all-clusters-app/nrfconnect/prj_release.conf +++ b/examples/all-clusters-app/nrfconnect/prj_release.conf @@ -68,4 +68,4 @@ CONFIG_LTO=y CONFIG_ISR_TABLES_LOCAL_DECLARATION=y # Increase heap size -CONFIG_CHIP_MALLOC_SYS_HEAP_SIZE=10240 +CONFIG_CHIP_MALLOC_SYS_HEAP_SIZE=32768 From 62dbd5d7d4ef757937e3a2f28300b060a25ad925 Mon Sep 17 00:00:00 2001 From: lpbeliveau-silabs <112982107+lpbeliveau-silabs@users.noreply.github.com> Date: Thu, 13 Mar 2025 17:24:31 -0400 Subject: [PATCH 8/9] [Silabs] BaseApplication Init refactor (#37985) * Refactor of BaseApplication to reduce code copied accross examples * Removed unused method * Update examples/platform/silabs/BaseApplication.h Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> * Update examples/platform/silabs/BaseApplication.h * Update examples/platform/silabs/BaseApplication.h * Update examples/platform/silabs/BaseApplication.h --------- Co-authored-by: Mathieu Kardous <84793247+mkardous-silabs@users.noreply.github.com> --- .../silabs/include/AppTask.h | 4 ++-- .../silabs/src/AppTask.cpp | 8 +------ examples/chef/silabs/include/AppTask.h | 4 ++-- examples/chef/silabs/src/AppTask.cpp | 9 +------- .../silabs/include/AppTask.h | 4 ++-- .../silabs/src/AppTask.cpp | 9 +------- .../light-switch-app/silabs/include/AppTask.h | 4 ++-- .../light-switch-app/silabs/src/AppTask.cpp | 9 +------- .../lighting-app/silabs/include/AppTask.h | 4 ++-- examples/lighting-app/silabs/src/AppTask.cpp | 9 +------- examples/lit-icd-app/silabs/include/AppTask.h | 4 ++-- examples/lit-icd-app/silabs/src/AppTask.cpp | 9 +------- examples/lock-app/silabs/include/AppTask.h | 4 ++-- examples/lock-app/silabs/src/AppTask.cpp | 9 +------- examples/platform/silabs/BaseApplication.cpp | 21 +++++++++++++++++++ examples/platform/silabs/BaseApplication.h | 5 +++++ examples/pump-app/silabs/include/AppTask.h | 4 ++-- examples/pump-app/silabs/src/AppTask.cpp | 9 +------- .../refrigerator-app/silabs/include/AppTask.h | 4 ++-- .../refrigerator-app/silabs/src/AppTask.cpp | 8 +------ .../silabs/include/AppTask.h | 4 ++-- .../smoke-co-alarm-app/silabs/src/AppTask.cpp | 9 +------- examples/thermostat/silabs/include/AppTask.h | 4 ++-- examples/thermostat/silabs/src/AppTask.cpp | 8 +------ examples/window-app/silabs/include/AppTask.h | 4 ++-- examples/window-app/silabs/src/AppTask.cpp | 9 +------- .../platformAbstraction/WiseMcuSpam.cpp | 2 -- 27 files changed, 62 insertions(+), 119 deletions(-) diff --git a/examples/air-quality-sensor-app/silabs/include/AppTask.h b/examples/air-quality-sensor-app/silabs/include/AppTask.h index 4a42295ffd..c4d68b6542 100644 --- a/examples/air-quality-sensor-app/silabs/include/AppTask.h +++ b/examples/air-quality-sensor-app/silabs/include/AppTask.h @@ -89,11 +89,11 @@ class AppTask : public BaseApplication static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/air-quality-sensor-app/silabs/src/AppTask.cpp b/examples/air-quality-sensor-app/silabs/src/AppTask.cpp index facbcf3de5..6bc60872b0 100644 --- a/examples/air-quality-sensor-app/silabs/src/AppTask.cpp +++ b/examples/air-quality-sensor-app/silabs/src/AppTask.cpp @@ -68,7 +68,7 @@ using namespace chip::app::Clusters; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -77,12 +77,6 @@ CHIP_ERROR AppTask::Init() GetLCD().SetCustomUI(AirQualitySensorUI::DrawUI); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - ChipLogDetail(AppServer, "BaseApplication::Init() failed"); - appError(err); - } err = SensorManager::SensorMgr().Init(); if (err != CHIP_NO_ERROR) { diff --git a/examples/chef/silabs/include/AppTask.h b/examples/chef/silabs/include/AppTask.h index b6c6d8a271..16278f3af6 100644 --- a/examples/chef/silabs/include/AppTask.h +++ b/examples/chef/silabs/include/AppTask.h @@ -80,11 +80,11 @@ class AppTask : public BaseApplication static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/chef/silabs/src/AppTask.cpp b/examples/chef/silabs/src/AppTask.cpp index c9066ea121..4531084a9e 100644 --- a/examples/chef/silabs/src/AppTask.cpp +++ b/examples/chef/silabs/src/AppTask.cpp @@ -58,18 +58,11 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - return err; } diff --git a/examples/energy-management-app/silabs/include/AppTask.h b/examples/energy-management-app/silabs/include/AppTask.h index b7105da428..9141c4e99d 100644 --- a/examples/energy-management-app/silabs/include/AppTask.h +++ b/examples/energy-management-app/silabs/include/AppTask.h @@ -85,11 +85,11 @@ class AppTask : public BaseApplication static void UpdateClusterState(intptr_t context); /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/energy-management-app/silabs/src/AppTask.cpp b/examples/energy-management-app/silabs/src/AppTask.cpp index c4f0c3be79..e217ed6ed7 100644 --- a/examples/energy-management-app/silabs/src/AppTask.cpp +++ b/examples/energy-management-app/silabs/src/AppTask.cpp @@ -177,7 +177,7 @@ void ApplicationShutdown() chip::DeviceLayer::PlatformMgr().UnlockChipStack(); } -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -190,13 +190,6 @@ CHIP_ERROR AppTask::Init() #endif #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - ApplicationInit(); #ifdef SL_MATTER_TEST_EVENT_TRIGGER_ENABLED diff --git a/examples/light-switch-app/silabs/include/AppTask.h b/examples/light-switch-app/silabs/include/AppTask.h index 71ca4b427b..1f014fb11d 100644 --- a/examples/light-switch-app/silabs/include/AppTask.h +++ b/examples/light-switch-app/silabs/include/AppTask.h @@ -80,11 +80,11 @@ class AppTask : public BaseApplication static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/light-switch-app/silabs/src/AppTask.cpp b/examples/light-switch-app/silabs/src/AppTask.cpp index 2ffaf11a73..df9a66f10d 100644 --- a/examples/light-switch-app/silabs/src/AppTask.cpp +++ b/examples/light-switch-app/silabs/src/AppTask.cpp @@ -71,7 +71,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -80,13 +80,6 @@ CHIP_ERROR AppTask::Init() GetLCD().Init((uint8_t *) "Light Switch"); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - err = LightSwitchMgr::GetInstance().Init(kLightSwitchEndpoint, kGenericSwitchEndpoint); if (err != CHIP_NO_ERROR) { diff --git a/examples/lighting-app/silabs/include/AppTask.h b/examples/lighting-app/silabs/include/AppTask.h index c42415d886..e52c904363 100644 --- a/examples/lighting-app/silabs/include/AppTask.h +++ b/examples/lighting-app/silabs/include/AppTask.h @@ -88,11 +88,11 @@ class AppTask : public BaseApplication static void UpdateClusterState(intptr_t context); /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/lighting-app/silabs/src/AppTask.cpp b/examples/lighting-app/silabs/src/AppTask.cpp index f3e624e988..191e7066a4 100644 --- a/examples/lighting-app/silabs/src/AppTask.cpp +++ b/examples/lighting-app/silabs/src/AppTask.cpp @@ -62,7 +62,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -71,13 +71,6 @@ CHIP_ERROR AppTask::Init() GetLCD().Init((uint8_t *) "Lighting-App"); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - err = LightMgr().Init(); if (err != CHIP_NO_ERROR) { diff --git a/examples/lit-icd-app/silabs/include/AppTask.h b/examples/lit-icd-app/silabs/include/AppTask.h index e4440f78d7..c145e938b3 100644 --- a/examples/lit-icd-app/silabs/include/AppTask.h +++ b/examples/lit-icd-app/silabs/include/AppTask.h @@ -104,11 +104,11 @@ class AppTask : public BaseApplication, public chip::app::ICDStateObserver static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/lit-icd-app/silabs/src/AppTask.cpp b/examples/lit-icd-app/silabs/src/AppTask.cpp index d7e97d0bb2..828ba687fe 100644 --- a/examples/lit-icd-app/silabs/src/AppTask.cpp +++ b/examples/lit-icd-app/silabs/src/AppTask.cpp @@ -68,7 +68,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -77,13 +77,6 @@ CHIP_ERROR AppTask::Init() GetLCD().Init((uint8_t *) "LIT ICD"); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - return err; } diff --git a/examples/lock-app/silabs/include/AppTask.h b/examples/lock-app/silabs/include/AppTask.h index fb911e3ff0..6327f18a3d 100644 --- a/examples/lock-app/silabs/include/AppTask.h +++ b/examples/lock-app/silabs/include/AppTask.h @@ -89,11 +89,11 @@ class AppTask : public BaseApplication static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/lock-app/silabs/src/AppTask.cpp b/examples/lock-app/silabs/src/AppTask.cpp index 3dd0a0ba7c..4a930cca44 100644 --- a/examples/lock-app/silabs/src/AppTask.cpp +++ b/examples/lock-app/silabs/src/AppTask.cpp @@ -116,7 +116,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; @@ -126,13 +126,6 @@ CHIP_ERROR AppTask::Init() GetLCD().Init((uint8_t *) "Lock-App", true); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - #if defined(ENABLE_CHIP_SHELL) err = RegisterLockEvents(); if (err != CHIP_NO_ERROR) diff --git a/examples/platform/silabs/BaseApplication.cpp b/examples/platform/silabs/BaseApplication.cpp index bba2aa311a..767d5aede6 100644 --- a/examples/platform/silabs/BaseApplication.cpp +++ b/examples/platform/silabs/BaseApplication.cpp @@ -264,6 +264,27 @@ CHIP_ERROR BaseApplication::StartAppTask(osThreadFunc_t taskFunction) } CHIP_ERROR BaseApplication::Init() +{ + CHIP_ERROR err = BaseInit(); + if (err != CHIP_NO_ERROR) + { + SILABS_LOG("BaseInit() failed"); + appError(err); + return err; + } + + err = AppInit(); + if (err != CHIP_NO_ERROR) + { + SILABS_LOG("AppInit() failed"); + appError(err); + return err; + } + + return err; +} + +CHIP_ERROR BaseApplication::BaseInit() { CHIP_ERROR err = CHIP_NO_ERROR; diff --git a/examples/platform/silabs/BaseApplication.h b/examples/platform/silabs/BaseApplication.h index 93c6c7d95f..dcebb88298 100644 --- a/examples/platform/silabs/BaseApplication.h +++ b/examples/platform/silabs/BaseApplication.h @@ -176,6 +176,11 @@ class BaseApplication protected: CHIP_ERROR Init(); + CHIP_ERROR BaseInit(); + /** @brief Template for to implement a Application specific init. + * Function is called after the BaseApplication::Init function. + */ + virtual CHIP_ERROR AppInit() = 0; /** * @brief Function called to start the function timer diff --git a/examples/pump-app/silabs/include/AppTask.h b/examples/pump-app/silabs/include/AppTask.h index 921ae9a269..129d6282ec 100644 --- a/examples/pump-app/silabs/include/AppTask.h +++ b/examples/pump-app/silabs/include/AppTask.h @@ -75,11 +75,11 @@ class AppTask : public BaseApplication static void UpdateClusterState(intptr_t context); /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/pump-app/silabs/src/AppTask.cpp b/examples/pump-app/silabs/src/AppTask.cpp index df76fcca21..19d2b6841d 100644 --- a/examples/pump-app/silabs/src/AppTask.cpp +++ b/examples/pump-app/silabs/src/AppTask.cpp @@ -71,7 +71,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -80,13 +80,6 @@ CHIP_ERROR AppTask::Init() GetLCD().Init((uint8_t *) "Pump-App"); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - err = PumpMgr().Init(); if (err != CHIP_NO_ERROR) { diff --git a/examples/refrigerator-app/silabs/include/AppTask.h b/examples/refrigerator-app/silabs/include/AppTask.h index 36c4581b29..5b1efd6100 100644 --- a/examples/refrigerator-app/silabs/include/AppTask.h +++ b/examples/refrigerator-app/silabs/include/AppTask.h @@ -84,11 +84,11 @@ class AppTask : public BaseApplication static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/refrigerator-app/silabs/src/AppTask.cpp b/examples/refrigerator-app/silabs/src/AppTask.cpp index 34e71cd591..fe2e0828df 100644 --- a/examples/refrigerator-app/silabs/src/AppTask.cpp +++ b/examples/refrigerator-app/silabs/src/AppTask.cpp @@ -75,7 +75,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -84,12 +84,6 @@ CHIP_ERROR AppTask::Init() GetLCD().Init((uint8_t *) "Refrigrator-App"); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - ChipLogError(AppServer, "BaseApplication::Init() failed"); - appError(err); - } err = RefrigeratorMgr().Init(); if (err != CHIP_NO_ERROR) { diff --git a/examples/smoke-co-alarm-app/silabs/include/AppTask.h b/examples/smoke-co-alarm-app/silabs/include/AppTask.h index 0cfd86fa01..eefddcaa53 100644 --- a/examples/smoke-co-alarm-app/silabs/include/AppTask.h +++ b/examples/smoke-co-alarm-app/silabs/include/AppTask.h @@ -79,11 +79,11 @@ class AppTask : public BaseApplication static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/smoke-co-alarm-app/silabs/src/AppTask.cpp b/examples/smoke-co-alarm-app/silabs/src/AppTask.cpp index 7ef8b1c7a0..868c1ee854 100644 --- a/examples/smoke-co-alarm-app/silabs/src/AppTask.cpp +++ b/examples/smoke-co-alarm-app/silabs/src/AppTask.cpp @@ -54,7 +54,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -63,13 +63,6 @@ CHIP_ERROR AppTask::Init() GetLCD().Init((uint8_t *) "Smoke-CO-Alarm-App"); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - err = AlarmMgr().Init(); if (err != CHIP_NO_ERROR) { diff --git a/examples/thermostat/silabs/include/AppTask.h b/examples/thermostat/silabs/include/AppTask.h index e411229942..f5537c1058 100644 --- a/examples/thermostat/silabs/include/AppTask.h +++ b/examples/thermostat/silabs/include/AppTask.h @@ -91,11 +91,11 @@ class AppTask : public BaseApplication static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; /** * @brief PB0 Button event processing function diff --git a/examples/thermostat/silabs/src/AppTask.cpp b/examples/thermostat/silabs/src/AppTask.cpp index 2a704b6550..74da4b5614 100644 --- a/examples/thermostat/silabs/src/AppTask.cpp +++ b/examples/thermostat/silabs/src/AppTask.cpp @@ -73,7 +73,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler); @@ -83,12 +83,6 @@ CHIP_ERROR AppTask::Init() GetLCD().SetCustomUI(ThermostatUI::DrawUI); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } err = SensorMgr().Init(); if (err != CHIP_NO_ERROR) { diff --git a/examples/window-app/silabs/include/AppTask.h b/examples/window-app/silabs/include/AppTask.h index ea9f6e5e19..414a45a5f2 100644 --- a/examples/window-app/silabs/include/AppTask.h +++ b/examples/window-app/silabs/include/AppTask.h @@ -59,9 +59,9 @@ class AppTask : public BaseApplication static AppTask sAppTask; /** - * @brief AppTask initialisation function + * @brief Override of BaseApplication::AppInit() virtual method, called by BaseApplication::Init() * * @return CHIP_ERROR */ - CHIP_ERROR Init(); + CHIP_ERROR AppInit() override; }; diff --git a/examples/window-app/silabs/src/AppTask.cpp b/examples/window-app/silabs/src/AppTask.cpp index de1bdcb4a8..2610b35077 100644 --- a/examples/window-app/silabs/src/AppTask.cpp +++ b/examples/window-app/silabs/src/AppTask.cpp @@ -45,7 +45,7 @@ using namespace ::chip::DeviceLayer; AppTask AppTask::sAppTask; -CHIP_ERROR AppTask::Init() +CHIP_ERROR AppTask::AppInit() { CHIP_ERROR err = CHIP_NO_ERROR; chip::DeviceLayer::Silabs::GetPlatform().SetButtonsCb(WindowManager::ButtonEventHandler); @@ -54,13 +54,6 @@ CHIP_ERROR AppTask::Init() GetLCD().Init((uint8_t *) "Window-App"); #endif - err = BaseApplication::Init(); - if (err != CHIP_NO_ERROR) - { - SILABS_LOG("BaseApplication::Init() failed"); - appError(err); - } - err = WindowManager::sWindow.Init(); if (err != CHIP_NO_ERROR) diff --git a/src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp b/src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp index 4a82cbadb7..f5791ceb54 100644 --- a/src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp +++ b/src/platform/silabs/platformAbstraction/WiseMcuSpam.cpp @@ -94,8 +94,6 @@ SilabsPlatform::SilabsButtonCb SilabsPlatform::mButtonCallback = nullptr; CHIP_ERROR SilabsPlatform::Init(void) { - mButtonCallback = nullptr; - // TODO: Setting the highest priority for SVCall_IRQn to avoid the HardFault issue NVIC_SetPriority(SVCall_IRQn, CORE_INTERRUPT_HIGHEST_PRIORITY); From f2177074b497f3d9d902c14c6e20f113d8a64db6 Mon Sep 17 00:00:00 2001 From: Jeff Tung <100387939+jtung-apple@users.noreply.github.com> Date: Thu, 13 Mar 2025 16:02:18 -0700 Subject: [PATCH 9/9] [Darwin] MTRMockCB reference in MTRTestCase should not be behind HAVE_NSTASK (#38004) --- src/darwin/Framework/CHIPTests/TestHelpers/MTRTestCase.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/darwin/Framework/CHIPTests/TestHelpers/MTRTestCase.mm b/src/darwin/Framework/CHIPTests/TestHelpers/MTRTestCase.mm index 02be960cc2..f460055f63 100644 --- a/src/darwin/Framework/CHIPTests/TestHelpers/MTRTestCase.mm +++ b/src/darwin/Framework/CHIPTests/TestHelpers/MTRTestCase.mm @@ -27,8 +27,6 @@ // Tasks that are not scoped to a specific test, but rather to a specific test suite. static NSMutableSet * sRunningCrossTestTasks; -static MTRMockCB * sMockCB; - static void ClearTaskSet(NSMutableSet * __strong & tasks) { for (NSTask * task in tasks) { @@ -39,6 +37,8 @@ static void ClearTaskSet(NSMutableSet * __strong & tasks) } #endif // HAVE_NSTASK +static MTRMockCB * sMockCB; + @implementation MTRTestCase { #if HAVE_NSTASK NSMutableSet * _runningTasks;