Skip to main content

Matter: Distributed Compliance Ledger (DCL)

·3 mins·
Matter Espressif IoT Esp32
Author
Shu Chen
Table of Contents

Espressif Matter Series #8

As Matter promised, Device Manufacturers (Vendors) don’t have to build their own Phone APP or Cloud service if they don’t want to. A Matter device will be able to work with all Matter enabled ecosystems seamlessly.

But how could the Matter device’s information be published, so that it can be retrieved by Matter ecosystems, in a secure manner? Today, we will talk about the Distributed Compliance Ledger (DCL) in Matter.

What is DCL?
#

The Matter DCL is a cryptographically secure, distributed storage network based on blockchain technology. It allows Connectivity Standards Alliance (CSA) and authorized Vendors to publish information about their Matter devices. This information can then be retrieved using DCL clients.

What kind of information will be stored in DCL?

The device information is divided into five databases (it’s called schemas in DCL):

  • Vendor Schema: Provide general information about a Vendor such as the Company legal name, Preferred brand name associated with the VendorID, the Landing page URL for the vendor, etc.
  • DeviceModel Schema: Provide general information about a device, such as ProductName, Product ID, PartNumber, Commissioning info, etc. This information is shared across all software versions of the product.
  • DeviceSoftwareVersionModel Scheme: Provide software version specific information. e.g Release Notes URL, FirmwareDigests, OTA Software Image URL, etc.

Note: Only the URL is stored in DCL, so vendors need to store the OTA images in their own location and only publish the image URL to DCL.

  • Compliance Test Result Schema: Provide compliance and test result data about the device.
  • PAA Schema: Provide a list of Product Attestation Authorities Certificates for the approved PAAs (learn more from Matter security model).

How will this information be used by Matter ecosystems?

With all this device information stored in DCL, Matter ecosystems may consult the DCL for:

  • checking device certification compliance status
  • verifying Device Attestation Certificate (DAC) (by tracing back to it’s PAA)
  • getting commissioning instructions, links to manuals, and product information
  • checking OTA status and upgrade the device to latest firmware
  • ……

How DCL Works?
#

The DCL is a network of independent servers, which are owned and hosted by CSA and its members. Each server holds a copy of the database containing the information about Matter devices, and they communicate with each other using cryptographically secure protocol.

Does every Vendor have to setup its own DCL server? No.

CSA provides DCL server setup, which allows public access to DCL information using DCL client, it also allows members with write access to publish their Matter devices’ information to DCL.

Vendors could also setup dedicated DCL server. The Vendor’s setup will be available to this Vendor’s clients only. A Vendor MAY choose to grant its DCL server access to others.

Write access to DCL is restricted

  • Vendors can add new device models that belong to the VendorID that is associated with the public key of that vendor (either via CSA’s DCL server or its own DCL server). VendorID is associated to the vendor public key during vendor account creation process.
  • Vendors can update a subset of existing device model information, such as product name, product description, firmware and hardware info. Updates are only allowed if the device is associated with the same vendor account.
  • CSA Certification Center can write or revoke the Compliance status of a device model to the Ledger.

Read access from DCL is public

  • Read DeviceModel info, including firmware and hardware versions from the DCL.
  • Read the Device compliance state from the DCL.
  • Read the Product Attestation Authorities certificates.

Typical Workflow
#

Let’s go through an example, say there are following roles:

  • Connectivity Standards Alliance (CSA)
  • Vendor A
  • Bulb B (made by A)
  • Test House T
  • Ecosystem G
  • Ecosystem H
  • Consumer C

The typical workflow looks like:

Consumer C enjoys all these seamlessly.

Related

Matter: Thread Border Router in Matter
·3 mins
Espressif Matter Thread Esp32 IoT
Espressif Matter Series* #5* In the Previous Articles, we talked about Matter from several aspects.
Matter: Bridge for Non-Matter Devices
·4 mins
Matter Zigbee Espressif IoT Esp32
Espressif Matter Series* #4* Several big IoT ecosystems have announced integrated support for Matter, e.
Matter Security Model
·4 mins
Matter Esp32 IoT
Espressif Matter Series #7 Matter is a protocol designed with security and privacy in mind.