Skip to content

Commit e023667

Browse files
Created Device Instance Info Provider (#18767)
The new Device Instance Info Provider provides API for accessing factory-provisioned device instance identifiers. All removed Configuration Manager method occurrences were replaced with a new Device Instance Info Provider API. Added LegacyDeviceInstanceInfoProvider implementation that preserves the existing ConfigurationManager methods.
1 parent e7bb258 commit e023667

21 files changed

+414
-179
lines changed

examples/common/pigweed/rpc_services/Device.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "platform/ConfigurationManager.h"
2929
#include "platform/DiagnosticDataProvider.h"
3030
#include "platform/PlatformManager.h"
31+
#include <platform/DeviceInstanceInfoProvider.h>
3132
#include <setup_payload/QRCodeSetupPayloadGenerator.h>
3233

3334
namespace chip {
@@ -141,7 +142,7 @@ class Device : public pw_rpc::nanopb::Device::Service<Device>
141142
response.has_pairing_info = true;
142143
}
143144

144-
if (DeviceLayer::ConfigurationMgr().GetSerialNumber(response.serial_number, sizeof(response.serial_number)) ==
145+
if (DeviceLayer::GetDeviceInstanceInfoProvider()->GetSerialNumber(response.serial_number, sizeof(response.serial_number)) ==
145146
CHIP_NO_ERROR)
146147
{
147148
snprintf(response.serial_number, sizeof(response.serial_number), CHIP_DEVICE_CONFIG_TEST_SERIAL_NUMBER);

examples/lighting-app/cyw30739/src/ZclCallbacks.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "LightingManager.h"
2121
#include <app-common/zap-generated/attributes/Accessors.h>
2222
#include <platform/CHIPDeviceLayer.h>
23+
#include <platform/DeviceInstanceInfoProvider.h>
2324

2425
using namespace chip;
2526
using namespace chip::app::Clusters;
@@ -32,7 +33,7 @@ void emberAfBasicClusterInitCallback(EndpointId endpoint)
3233
uint8_t dayOfMonth;
3334
char cString[16] = "00000000";
3435

35-
if (ConfigurationMgr().GetManufacturingDate(year, month, dayOfMonth) == CHIP_NO_ERROR)
36+
if (GetDeviceInstanceInfoProvider()->GetManufacturingDate(year, month, dayOfMonth) == CHIP_NO_ERROR)
3637
{
3738
snprintf(cString, sizeof(cString), "%04u%02u%02u", year, month, dayOfMonth);
3839
}

examples/lock-app/cyw30739/src/ZclCallbacks.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <BoltLockManager.h>
2121
#include <app-common/zap-generated/attributes/Accessors.h>
2222
#include <platform/CHIPDeviceLayer.h>
23+
#include <platform/DeviceInstanceInfoProvider.h>
2324

2425
using namespace chip;
2526
using namespace chip::app::Clusters;
@@ -32,7 +33,7 @@ void emberAfBasicClusterInitCallback(EndpointId endpoint)
3233
uint8_t dayOfMonth;
3334
char cString[16] = "00000000";
3435

35-
if (ConfigurationMgr().GetManufacturingDate(year, month, dayOfMonth) == CHIP_NO_ERROR)
36+
if (GetDeviceInstanceInfoProvider()->GetManufacturingDate(year, month, dayOfMonth) == CHIP_NO_ERROR)
3637
{
3738
snprintf(cString, sizeof(cString), "%04u%02u%02u", year, month, dayOfMonth);
3839
}

src/app/clusters/basic/basic.cpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <app/util/attribute-storage.h>
2727
#include <platform/CHIPDeviceLayer.h>
2828
#include <platform/ConfigurationManager.h>
29+
#include <platform/DeviceInstanceInfoProvider.h>
2930
#include <platform/PlatformManager.h>
3031

3132
#include <cstddef>
@@ -125,7 +126,7 @@ CHIP_ERROR BasicAttrAccess::Read(const ConcreteReadAttributePath & aPath, Attrib
125126

126127
case HardwareVersion::Id: {
127128
uint16_t hardwareVersion = 0;
128-
status = ConfigurationMgr().GetHardwareVersion(hardwareVersion);
129+
status = GetDeviceInstanceInfoProvider()->GetHardwareVersion(hardwareVersion);
129130
if (status == CHIP_NO_ERROR)
130131
{
131132
status = aEncoder.Encode(hardwareVersion);
@@ -136,7 +137,7 @@ CHIP_ERROR BasicAttrAccess::Read(const ConcreteReadAttributePath & aPath, Attrib
136137
case HardwareVersionString::Id: {
137138
constexpr size_t kMaxLen = DeviceLayer::ConfigurationManager::kMaxHardwareVersionStringLength;
138139
char hardwareVersionString[kMaxLen + 1] = { 0 };
139-
status = ConfigurationMgr().GetHardwareVersionString(hardwareVersionString, sizeof(hardwareVersionString));
140+
status = GetDeviceInstanceInfoProvider()->GetHardwareVersionString(hardwareVersionString, sizeof(hardwareVersionString));
140141
status = EncodeStringOnSuccess(status, aEncoder, hardwareVersionString, kMaxLen);
141142
break;
142143
}
@@ -165,7 +166,8 @@ CHIP_ERROR BasicAttrAccess::Read(const ConcreteReadAttributePath & aPath, Attrib
165166
uint16_t manufacturingYear;
166167
uint8_t manufacturingMonth;
167168
uint8_t manufacturingDayOfMonth;
168-
status = ConfigurationMgr().GetManufacturingDate(manufacturingYear, manufacturingMonth, manufacturingDayOfMonth);
169+
status =
170+
GetDeviceInstanceInfoProvider()->GetManufacturingDate(manufacturingYear, manufacturingMonth, manufacturingDayOfMonth);
169171

170172
// TODO: Remove defaulting once proper runtime defaulting of unimplemented factory data is done
171173
if (status == CHIP_DEVICE_ERROR_CONFIG_NOT_FOUND || status == CHIP_ERROR_UNSUPPORTED_CHIP_FEATURE)
@@ -237,7 +239,7 @@ CHIP_ERROR BasicAttrAccess::Read(const ConcreteReadAttributePath & aPath, Attrib
237239
case SerialNumber::Id: {
238240
constexpr size_t kMaxLen = DeviceLayer::ConfigurationManager::kMaxSerialNumberLength;
239241
char serialNumberString[kMaxLen + 1] = { 0 };
240-
status = ConfigurationMgr().GetSerialNumber(serialNumberString, sizeof(serialNumberString));
242+
status = GetDeviceInstanceInfoProvider()->GetSerialNumber(serialNumberString, sizeof(serialNumberString));
241243

242244
// TODO: Remove defaulting once proper runtime defaulting of unimplemented factory data is done
243245
if (status == CHIP_DEVICE_ERROR_CONFIG_NOT_FOUND || status == CHIP_ERROR_UNSUPPORTED_CHIP_FEATURE)

src/app/clusters/ota-requestor/DefaultOTARequestor.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <app/clusters/ota-requestor/ota-requestor-server.h>
2525
#include <lib/core/CHIPEncoding.h>
2626
#include <platform/CHIPDeviceLayer.h>
27+
#include <platform/DeviceInstanceInfoProvider.h>
2728
#include <platform/OTAImageProcessor.h>
2829
#include <protocols/bdx/BdxUri.h>
2930
#include <zap-generated/CHIPClusters.h>
@@ -733,7 +734,7 @@ CHIP_ERROR DefaultOTARequestor::SendQueryImageRequest(OperationalDeviceProxy & d
733734
args.requestorCanConsent.SetValue(!Basic::IsLocalConfigDisabled() && mOtaRequestorDriver->CanConsent());
734735

735736
uint16_t hardwareVersion;
736-
if (DeviceLayer::ConfigurationMgr().GetHardwareVersion(hardwareVersion) == CHIP_NO_ERROR)
737+
if (DeviceLayer::GetDeviceInstanceInfoProvider()->GetHardwareVersion(hardwareVersion) == CHIP_NO_ERROR)
737738
{
738739
args.hardwareVersion.SetValue(hardwareVersion);
739740
}

src/app/server/Dnssd.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#include <platform/ConfigurationManager.h>
3232
#include <protocols/secure_channel/PASESession.h>
3333
#if CHIP_ENABLE_ROTATING_DEVICE_ID && defined(CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID)
34+
#include <platform/DeviceInstanceInfoProvider.h>
3435
#include <setup_payload/AdditionalDataPayloadGenerator.h>
3536
#endif
3637
#include <credentials/FabricTable.h>
@@ -498,7 +499,8 @@ CHIP_ERROR DnssdServer::GenerateRotatingDeviceId(char rotatingDeviceIdHexBuffer[
498499
MutableByteSpan rotatingDeviceIdUniqueIdSpan(rotatingDeviceIdUniqueId);
499500
size_t rotatingDeviceIdValueOutputSize = 0;
500501

501-
ReturnErrorOnFailure(chip::DeviceLayer::ConfigurationMgr().GetRotatingDeviceIdUniqueId(rotatingDeviceIdUniqueIdSpan));
502+
ReturnErrorOnFailure(
503+
chip::DeviceLayer::GetDeviceInstanceInfoProvider()->GetRotatingDeviceIdUniqueId(rotatingDeviceIdUniqueIdSpan));
502504
ReturnErrorOnFailure(
503505
chip::DeviceLayer::ConfigurationMgr().GetLifetimeCounter(additionalDataPayloadParams.rotatingDeviceIdLifetimeCounter));
504506
additionalDataPayloadParams.rotatingDeviceIdUniqueId = rotatingDeviceIdUniqueIdSpan;

src/include/platform/ConfigurationManager.h

+12-19
Original file line numberDiff line numberDiff line change
@@ -85,27 +85,20 @@ class ConfigurationManager
8585
kMaxLanguageTagLength = 5 // ISO 639-1 standard language codes
8686
};
8787

88-
virtual CHIP_ERROR GetVendorName(char * buf, size_t bufSize) = 0;
89-
virtual CHIP_ERROR GetVendorId(uint16_t & vendorId) = 0;
90-
virtual CHIP_ERROR GetProductName(char * buf, size_t bufSize) = 0;
91-
virtual CHIP_ERROR GetProductId(uint16_t & productId) = 0;
92-
virtual CHIP_ERROR GetHardwareVersionString(char * buf, size_t bufSize) = 0;
93-
virtual CHIP_ERROR GetHardwareVersion(uint16_t & hardwareVer) = 0;
94-
virtual CHIP_ERROR GetSerialNumber(char * buf, size_t bufSize) = 0;
95-
virtual CHIP_ERROR GetPrimaryMACAddress(MutableByteSpan buf) = 0;
96-
virtual CHIP_ERROR GetPrimaryWiFiMACAddress(uint8_t * buf) = 0;
97-
virtual CHIP_ERROR GetPrimary802154MACAddress(uint8_t * buf) = 0;
98-
virtual CHIP_ERROR GetManufacturingDate(uint16_t & year, uint8_t & month, uint8_t & dayOfMonth) = 0;
99-
virtual CHIP_ERROR GetSoftwareVersionString(char * buf, size_t bufSize) = 0;
100-
virtual CHIP_ERROR GetSoftwareVersion(uint32_t & softwareVer) = 0;
88+
virtual CHIP_ERROR GetVendorName(char * buf, size_t bufSize) = 0;
89+
virtual CHIP_ERROR GetVendorId(uint16_t & vendorId) = 0;
90+
virtual CHIP_ERROR GetProductName(char * buf, size_t bufSize) = 0;
91+
virtual CHIP_ERROR GetProductId(uint16_t & productId) = 0;
92+
virtual CHIP_ERROR GetPrimaryMACAddress(MutableByteSpan buf) = 0;
93+
virtual CHIP_ERROR GetPrimaryWiFiMACAddress(uint8_t * buf) = 0;
94+
virtual CHIP_ERROR GetPrimary802154MACAddress(uint8_t * buf) = 0;
95+
virtual CHIP_ERROR GetSoftwareVersionString(char * buf, size_t bufSize) = 0;
96+
virtual CHIP_ERROR GetSoftwareVersion(uint32_t & softwareVer) = 0;
10197
#if CHIP_ENABLE_ROTATING_DEVICE_ID && defined(CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID)
10298
// Lifetime counter is monotonic counter that is incremented upon each commencement of advertising
103-
virtual CHIP_ERROR GetLifetimeCounter(uint16_t & lifetimeCounter) = 0;
104-
virtual CHIP_ERROR IncrementLifetimeCounter() = 0;
105-
// Unique ID is identifier utilized for the rotating device ID calculation purpose as an input key. It is separate identifier
106-
// from the Basic cluster unique ID.
107-
virtual CHIP_ERROR GetRotatingDeviceIdUniqueId(MutableByteSpan & uniqueIdSpan) = 0;
108-
virtual CHIP_ERROR SetRotatingDeviceIdUniqueId(const ByteSpan & uniqueIdSpan) = 0;
99+
virtual CHIP_ERROR GetLifetimeCounter(uint16_t & lifetimeCounter) = 0;
100+
virtual CHIP_ERROR IncrementLifetimeCounter() = 0;
101+
virtual CHIP_ERROR SetRotatingDeviceIdUniqueId(const ByteSpan & uniqueIdSpan) = 0;
109102
#endif
110103
virtual CHIP_ERROR GetRegulatoryLocation(uint8_t & location) = 0;
111104
virtual CHIP_ERROR GetCountryCode(char * buf, size_t bufSize, size_t & codeLen) = 0;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
/*
2+
*
3+
* Copyright (c) 2022 Project CHIP Authors
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
#pragma once
18+
19+
#include <lib/core/CHIPError.h>
20+
#include <lib/support/Span.h>
21+
22+
namespace chip {
23+
namespace DeviceLayer {
24+
25+
class DeviceInstanceInfoProvider
26+
{
27+
public:
28+
DeviceInstanceInfoProvider() = default;
29+
virtual ~DeviceInstanceInfoProvider() = default;
30+
31+
/**
32+
* @brief Obtain the Serial Number from the device's factory data.
33+
*
34+
* The SerialNumber attribute specifies a human readable serial number
35+
*
36+
* @param[in, out] buf Buffer to copy string.
37+
* On CHIP_NO_ERROR return from this function this buffer will be null-terminated.
38+
* On error CHIP_ERROR_BUFFER_TOO_SMALL there is no guarantee that buffer will be null-terminated.
39+
* @param[in] bufSize Size of data, including the null terminator, that can be written to buf.
40+
* This size should be +1 higher than maximum possible string.
41+
* @returns CHIP_NO_ERROR on success, or another CHIP_ERROR from the underlying implementation
42+
* if access fails.
43+
*/
44+
virtual CHIP_ERROR GetSerialNumber(char * buf, size_t bufSize) = 0;
45+
46+
/**
47+
* @brief Obtain a manufacturing date from the device's factory data.
48+
*
49+
* The ManufacturingDate attribute specifies the date that the Node was manufactured.
50+
* Output values are returned in ISO 8601, where:
51+
* The first month of the year is January and its returning value is equal to 1.
52+
* The first day of a month starts from 1.
53+
*
54+
* @param[out] year Reference to location where manufacturing year will be stored
55+
* @param[out] month 1-based value [range 1-12] Reference to location where manufacturing month will be stored
56+
* @param[out] day 1-based value [range 1-31] Reference to location where manufacturing day will be stored
57+
* @returns CHIP_NO_ERROR on success, or another CHIP_ERROR from the underlying implementation
58+
* if access fails.
59+
*/
60+
virtual CHIP_ERROR GetManufacturingDate(uint16_t & year, uint8_t & month, uint8_t & day) = 0;
61+
62+
/**
63+
* @brief Obtain a Hardware Version from the device's factory data.
64+
*
65+
* @param[out] hardwareVersion Reference to location where the hardware version integer will be copied
66+
* @returns CHIP_NO_ERROR on success, or another CHIP_ERROR from the underlying implementation
67+
* if access fails.
68+
*/
69+
virtual CHIP_ERROR GetHardwareVersion(uint16_t & hardwareVersion) = 0;
70+
71+
/**
72+
* @brief Obtain a Hardware Version String from the device's factory data.
73+
*
74+
* The HardwareVersionString can be used to provide a more user-friendly value than that
75+
* represented by the HardwareVersion attribute.
76+
*
77+
* @param[in, out] buf Buffer to copy string.
78+
* On CHIP_NO_ERROR return from this function this buffer will be null-terminated.
79+
* On error CHIP_ERROR_BUFFER_TOO_SMALL there is no guarantee that buffer will be null-terminated.
80+
* @param[in] bufSize Size of data, including the null terminator, that can be written to buf.
81+
* This size should be +1 higher than maximum possible string.
82+
* @returns CHIP_NO_ERROR on success, CHIP_ERROR_BUFFER_TOO_SMALL if the buffer was too small to fit string and null
83+
* terminating. or another CHIP_ERROR from the underlying implementation if access fails.
84+
*/
85+
virtual CHIP_ERROR GetHardwareVersionString(char * buf, size_t bufSize) = 0;
86+
87+
/**
88+
* @brief Obtain a Rotating Device ID Unique ID from the device's factory data.
89+
*
90+
* The unique identifier consists of a randomly-generated 128-bit or longer octet string which
91+
* was programmed during factory provisioning or delivered to the device by the vendor using
92+
* secure means after a software update.
93+
*
94+
* @param[out] uniqueIdSpan Reference to location where the Rotating Device ID Unique ID will be copied
95+
* According to specification input size of span buffer should be declared with at least 16 Bytes
96+
* length The size of uniqueIdSpan is reduced to actual value on success
97+
* @returns CHIP_NO_ERROR on success, or another CHIP_ERROR from the underlying implementation
98+
* if access fails.
99+
*/
100+
virtual CHIP_ERROR GetRotatingDeviceIdUniqueId(MutableByteSpan & uniqueIdSpan) = 0;
101+
};
102+
103+
/**
104+
* Instance getter for the global DeviceInstanceInfoProvider.
105+
*
106+
* Callers have to externally synchronize usage of this function.
107+
*
108+
* @return The pointer to global device instance info provider. Assume never null.
109+
*/
110+
DeviceInstanceInfoProvider * GetDeviceInstanceInfoProvider();
111+
112+
/**
113+
* Instance setter for the global DeviceInstanceInfoProvider.
114+
*
115+
* Callers have to externally synchronize usage of this function.
116+
*
117+
* If the `provider` is nullptr, no change is done.
118+
*
119+
* @param[in] provider the DeviceInstanceInfoProvider pointer to start returning with the getter
120+
*/
121+
void SetDeviceInstanceInfoProvider(DeviceInstanceInfoProvider * provider);
122+
123+
} // namespace DeviceLayer
124+
} // namespace chip

src/include/platform/internal/GenericConfigurationManagerImpl.h

+9-5
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ class ProvisioningDataSet;
4040

4141
namespace Internal {
4242

43+
#if CHIP_USE_TRANSITIONAL_DEVICE_INSTANCE_INFO_PROVIDER
44+
template <class ConfigClass>
45+
class LegacyDeviceInstanceInfoProvider;
46+
#endif // CHIP_USE_TRANSITIONAL_DEVICE_INSTANCE_INFO_PROVIDER
47+
4348
#if CHIP_USE_TRANSITIONAL_COMMISSIONABLE_DATA_PROVIDER
4449
template <class ConfigClass>
4550
class LegacyTemporaryCommissionableDataProvider;
@@ -63,23 +68,18 @@ class GenericConfigurationManagerImpl : public ConfigurationManager
6368
CHIP_ERROR GetVendorId(uint16_t & vendorId) override;
6469
CHIP_ERROR GetProductName(char * buf, size_t bufSize) override;
6570
CHIP_ERROR GetProductId(uint16_t & productId) override;
66-
CHIP_ERROR GetHardwareVersionString(char * buf, size_t bufSize) override;
67-
CHIP_ERROR GetHardwareVersion(uint16_t & hardwareVer) override;
6871
CHIP_ERROR StoreHardwareVersion(uint16_t hardwareVer) override;
6972
CHIP_ERROR GetSoftwareVersionString(char * buf, size_t bufSize) override;
7073
CHIP_ERROR GetSoftwareVersion(uint32_t & softwareVer) override;
7174
CHIP_ERROR StoreSoftwareVersion(uint32_t softwareVer) override;
72-
CHIP_ERROR GetSerialNumber(char * buf, size_t bufSize) override;
7375
CHIP_ERROR StoreSerialNumber(const char * serialNum, size_t serialNumLen) override;
7476
CHIP_ERROR GetPrimaryMACAddress(MutableByteSpan buf) override;
7577
CHIP_ERROR GetPrimaryWiFiMACAddress(uint8_t * buf) override;
7678
CHIP_ERROR GetPrimary802154MACAddress(uint8_t * buf) override;
77-
CHIP_ERROR GetManufacturingDate(uint16_t & year, uint8_t & month, uint8_t & dayOfMonth) override;
7879
CHIP_ERROR StoreManufacturingDate(const char * mfgDate, size_t mfgDateLen) override;
7980
#if CHIP_ENABLE_ROTATING_DEVICE_ID && defined(CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID)
8081
CHIP_ERROR GetLifetimeCounter(uint16_t & lifetimeCounter) override;
8182
CHIP_ERROR IncrementLifetimeCounter() override;
82-
CHIP_ERROR GetRotatingDeviceIdUniqueId(MutableByteSpan & uniqueIdSpan) override;
8383
CHIP_ERROR SetRotatingDeviceIdUniqueId(const ByteSpan & uniqueIdSpan) override;
8484
#endif
8585
CHIP_ERROR GetFailSafeArmed(bool & val) override;
@@ -127,6 +127,10 @@ class GenericConfigurationManagerImpl : public ConfigurationManager
127127
uint8_t mRotatingDeviceIdUniqueId[kRotatingDeviceIDUniqueIDLength] = CHIP_DEVICE_CONFIG_ROTATING_DEVICE_ID_UNIQUE_ID;
128128
#endif
129129

130+
#if CHIP_USE_TRANSITIONAL_DEVICE_INSTANCE_INFO_PROVIDER
131+
friend LegacyDeviceInstanceInfoProvider<ConfigClass>;
132+
#endif // CHIP_USE_TRANSITIONAL_DEVICE_INSTANCE_INFO_PROVIDER
133+
130134
#if CHIP_USE_TRANSITIONAL_COMMISSIONABLE_DATA_PROVIDER
131135
friend LegacyTemporaryCommissionableDataProvider<ConfigClass>;
132136
#endif // CHIP_USE_TRANSITIONAL_COMMISSIONABLE_DATA_PROVIDER

0 commit comments

Comments
 (0)