/* * * Copyright (c) 2023 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. */ #pragma once #include #include #include #include #include #include #include PLATFORM_FACTORY_DATA_PROVIDER_IMPL_HEADER namespace chip { using FactoryProvider = DeviceLayer::FactoryDataProvider; using FactoryProviderImpl = DeviceLayer::FactoryDataProviderImpl; using FactoryDataDriver = DeviceLayer::FactoryDataDriver; using Tags = FactoryProvider::FactoryDataId; /** * OTA custom payload that uses Matter TLVs. * The custom payload is used when factory data needs updating. * Factory data will be encoded using Matter TLV format to make * use of the ChipTlv reader. A payload contains metadata (size of * TLVs) and the TLVs themselves contained in a structure. * If no factory data need to be updated, the metadata will be 0 */ struct OTAFactoryPayload { Optional mCertDacKey; Optional mCertDac; Optional mCertPai; Optional mCertDeclaration; void Clear() { mCertDacKey.ClearValue(); mCertDac.ClearValue(); mCertPai.ClearValue(); mCertDeclaration.ClearValue(); } }; class OTAFactoryDataProcessor : public OTATlvProcessor { public: CHIP_ERROR Init() override; CHIP_ERROR Clear() override; CHIP_ERROR ApplyAction() override; CHIP_ERROR AbortAction() override; private: CHIP_ERROR ProcessInternal(ByteSpan & block) override; CHIP_ERROR DecodeTlv(); CHIP_ERROR Update(uint8_t tag, Optional & optional); OTAFactoryPayload mPayload; OTADataAccumulator mAccumulator; FactoryDataDriver * mFactoryDataDriver = nullptr; }; } // namespace chip