A C99 SDK for connecting devices to Microsoft Azure IoT services
Перейти к файлу
Ewerton Scaboro da Silva ddc0969a89 Fix AMQP transport to break infinite loop of link re-ATTACH-ments (#2472)
In iothubtransport_amqp_common.c `number_of_previous_failures` is used to track issues with the AMQP device and either restart or re-connect it as appropriately.
Note: AMQP device (iothubtransport_amqp_device.c) is a subcomponent of the AMQP transport, representing each registered device.
The AMQP transport can either just restart a registered AMQP device (causing just re-ATTACH-ment of AMQP links) or completely reconnect it (with END, CLOSE, OPEN, BEGIN, ...).
When a failure occurs (e.g., the Twin messenger reports an error), the AMQP device goes into an error state itself and `number_of_previous_failures` (on AMQP transport layer) is incremented.
If `number_of_previous_failures` is less than `MAX_NUMBER_OF_DEVICE_FAILURES`, the AMQP device is just restarted.
If `number_of_previous_failures` reaches `MAX_NUMBER_OF_DEVICE_FAILURES`, the AMQP device is completely reconnected.
If `number_of_previous_failures` never reaches `MAX_NUMBER_OF_DEVICE_FAILURES` (iothubtransport_amqp_common.c:1058) then the transport will never force a full reconnection, always trying to stop the registered AMQP device.
When IoTHubTransport_AMQP_Common_Device_DoWork is called (for each registered device), if `send_pending_events` succeeds, `number_of_previous_failures` is set to 0.
But all `send_pending_events` does is to add a message on the outgoing queue of the AMQP messenger, so it is always expected to succeed, always resetting `number_of_previous_failures`.
That prevents in such case the AMQP transport from fully reconnecting with the IoT Hub in specific error scenarios - like when the Twin throttling occurs, causing outgoing Twin messages (e.g, PATCH, i.e., reported properties update) to fail.
The AMQP transport keeps trapped in a loop of just trying to restablish the AMQP links in in this case.
2023-05-10 20:43:25 +00:00
.github chore: update support for IoT help and msft q&a options (#1564) 2020-06-24 08:37:34 -07:00
build ESP pipeline fixes (#1588) 2020-07-17 19:06:14 -07:00
build_all release_2020_07_19_after_bump_version 2020-07-19 22:04:48 -07:00
c-utility@65c27eb4ab Update submodules 2020-07-08 16:36:37 -07:00
certs added a define that can be used as an option to reduce memory footpri… (#1274) 2019-10-24 16:12:03 -07:00
configs Use strict XCode build rules 2018-03-14 16:15:27 -07:00
deps Update submodules 2020-07-08 16:36:37 -07:00
doc Update setting_up_vcpkg.md (#1559) 2020-06-15 11:15:56 -07:00
iothub_client Fix AMQP transport to break infinite loop of link re-ATTACH-ments (#2472) 2023-05-10 20:43:25 +00:00
iothub_service_client Update API version & new test for twin array support (#1539) 2020-06-12 16:00:10 -07:00
jenkins Test PR for raspberry pi Cross Compile step (#1462) 2020-04-03 13:26:13 -07:00
provisioning_client release_2020_07_19_after_bump_version 2020-07-19 22:04:48 -07:00
provisioning_service_client submodule umock update (#1460) 2020-03-16 15:50:56 -07:00
samples Samples: fixed and unified comment related to setting the trusted certificate (#1530) 2020-06-24 17:46:44 -07:00
serializer Fix comment typo 2020-03-26 15:58:13 -07:00
testtools ESP pipeline fixes (#1588) 2020-07-17 19:06:14 -07:00
tools Fixed extension used in leaf certs to be usr_cert extension set from openssl.cnf (#1519) 2020-05-17 16:42:39 -07:00
uamqp@9e851bd6db Update submodules 2020-07-08 16:36:37 -07:00
umqtt@165f6f52f8 Update submodules 2020-07-08 16:36:37 -07:00
.gitattributes Azure IoT SDKs 2015-09-23 01:03:40 -07:00
.gitignore add Visual Studio default build output to .gitignore (#1317) 2019-11-14 10:12:02 -08:00
.gitmodules Adding the macro_utils repo (#936) 2019-04-12 16:09:12 -07:00
CMakeLists.txt dawalton/wolfssl fix (#1330) 2019-11-18 14:48:45 -08:00
LICENSE Add/Update build files after repository move 2016-11-15 14:35:04 -08:00
SECURITY.MD Adding SECURITY.MD file into our repositories. (#1292) 2019-11-05 18:17:47 -08:00
dependencies.cmake Iothub_client_init/deinit implementation 2018-05-30 22:15:49 +00:00
lts_branches.png update lts description 2018-11-11 18:31:06 +00:00
readme.md [ACR2] Update readme.md LTS support table for release lts_02_2020 2020-02-06 10:15:37 -08:00
thirdpartynotice.txt Update third party notice to used code 2018-04-23 13:58:10 -07:00
version.txt release_2020_07_19_after_bump_version 2020-07-19 22:04:48 -07:00

readme.md

Azure IoT C SDKs and Libraries

Build Status

This repository contains the following:

  • Azure IoT Hub Device C SDK to connect devices running C code to Azure IoT Hub.
  • Azure IoT Hub Device Provisioning Service Client SDK for enrolling devices with Azure IoT Device Provisioning Services and managing enrollments lists.
  • Azure IoT Hub Service C SDK to interface with an Azure IoT Hub service instance from a server-side C application.
  • Serializer Library for C to help serialize and deserialize data on your device.

Packages and Libraries

The simplest way to get started with the Azure IoT SDKs is to use the following packages and libraries:

Samples

Here are a set of simple samples that will help you get started:

Compile the SDK

When no package or library is available for your platform or if you want to modify the SDK code, or port the SDK to a new platform, then you can leverage the build environment provided in the repository.

SDK API Reference Documentation

The API reference documentation for the C SDKs can be found here.

Other Azure IoT SDKs

To find Azure IoT SDKs in other languages, please refer to the azure-iot-sdks repository.

Developing Azure IoT Applications

To learn more about building Azure IoT Applications, you can visit the Azure IoT Dev Center.

Key Features and Roadmap

Device Client SDK

✔️ feature available ✖️ feature planned but not supported no support planned

Features mqtt mqtt-ws amqp amqp-ws https Description
Authentication ✔️ ✔️* ✔️ ✔️* ✔️* Connect your device to IoT Hub securely with supported authentication, including private key, SASToken, X-509 Self Signed and Certificate Authority (CA) Signed. *IoT Hub only supports X-509 CA Signed over AMQP and MQTT at the moment.
Send device-to-cloud message ✔️* ✔️* ✔️* ✔️* ✔️* Send device-to-cloud messages (max 256KB) to IoT Hub with the option to add custom properties. IoT Hub only supports batch send over AMQP and HTTPS only at the moment. This SDK supports batch send over HTTP. * Batch send over AMQP and AMQP-WS, and add system properties on D2C messages are in progress.
Receive cloud-to-device messages ✔️* ✔️* ✔️ ✔️ ✔️ Receive cloud-to-device messages and read associated custom and system properties from IoT Hub, with the option to complete/reject/abandon C2D messages. *IoT Hub supports the option to complete/reject/abandon C2D messages over HTTPS and AMQP only at the moment.
Device Twins ✔️* ✔️* ✔️* ✔️* IoT Hub persists a device twin for each device that you connect to IoT Hub. The device can perform operations like get twin tags, subscribe to desired properties. *Send reported properties version and desired properties version are in progress.
Direct Methods ✔️ ✔️ ✔️ ✔️ IoT Hub gives you the ability to invoke direct methods on devices from the cloud. The SDK supports handler for method specific and generic operation.
Upload file to Blob ✔️ A device can initiate a file upload and notifies IoT Hub when the upload is complete. File upload requires HTTPS connection, but can be initiated from client using any protocol for other operations.
Connection Status and Error reporting ✔️* ✔️* ✔️* ✔️* ✖️ Error reporting for IoT Hub supported error code. *This SDK supports error reporting on authentication and Device Not Found.
Retry policies ✔️* ✔️* ✔️* ✔️* ✖️ Retry policy for unsuccessful device-to-cloud messages have two options: no try, exponential backoff with jitter (default). *Custom retry policy is in progress.
Devices multiplexing over single connection ✔️ ✔️ ✔️
Connection Pooling - Specifying number of connections ✖️ ✖️ ✖️

This SDK also contains options you can set and platform specific features. You can find detail list in this document.

Service Client SDK

✔️ feature available ✖️ feature planned but not supported no support planned

Features C Description
Identity registry (CRUD) ✔️* Use your backend app to perform CRUD operation for individual device or in bulk. This SDK supports CRUD operation on individual device with create device from ID/Key pair only.
Cloud-to-device messaging ✔️ Use your backend app to send cloud-to-device messages in AMQP and AMQP-WS, and set up cloud-to-device message receivers.
Direct Methods operations ✔️ Use your backend app to invoke direct method on device.
Device Twins operations ✔️* Use your backend app to perform device twin operations. *Twin reported property update callback and replace twin are in progress.
Query ✖️ Use your backend app to perform query for information.
Jobs ✖️ Use your backend app to perform job operation.
File Upload ✖️ Set up your backend app to send file upload notification receiver.

Provisioning client SDK

This repository contains provisioning client SDK for the Device Provisioning Service.

✔️ feature available ✖️ feature planned but not supported no support planned

Features mqtt mqtt-ws amqp amqp-ws https Description
TPM Individual Enrollment ✔️ ✔️ ✔️ This SDK supports connecting your device to the Device Provisioning Service via individual enrollment using Trusted Platform Module. This quickstart reviews how to create a simulated device for individual enrollment with TPM. TPM over MQTT is currently not supported by the Device Provisioning Service.
X.509 Individual Enrollment ✔️ ✔️ ✔️ ✔️ ✔️ This SDK supports connecting your device to the Device Provisioning Service via individual enrollment using X.509 leaf certificate. This quickstart reviews how to create a simulated device for individual enrollment with X.509.
X.509 Enrollment Group ✔️ ✔️ ✔️ ✔️ ✔️ This SDK supports connecting your device to the Device Provisioning Service via enrollment group using X.509 root certificate.

Provisioniong Service SDK

This repository contains provisioning service client SDK for the Device Provisioning Service to programmatically enroll devices.

Feature Support Description
CRUD Operation with TPM Individual Enrollment ✔️ Programmatically manage device enrollment using TPM with the service SDK. Please visit the samples folder to learn more about this feature.
Bulk CRUD Operation with TPM Individual Enrollment ✔️ Programmatically bulk manage device enrollment using TPM with the service SDK. Please visit the samples folder to learn more about this feature.
CRUD Operation with X.509 Individual Enrollment ✔️ Programmatically manage device enrollment using X.509 individual enrollment with the service SDK. Please visit the samples folder to learn more about this feature.
CRUD Operation with X.509 Group Enrollment ✔️ Programmatically manage device enrollment using X.509 group enrollment with the service SDK. Please visit the samples folder to learn more about this feature.
Query enrollments ✔️ Programmatically query registration states with the service SDK. Please visit the samples folder to learn more about this feature.

OS Platforms and Hardware Compatibility

The IoT Hub device SDK for C can be used with a broad range of OS platforms and devices.

The minimum requirements are for the device platform to support the following:

  • Being capable of establishing an IP connection: only IP-capable devices can communicate directly with Azure IoT Hub.
  • Support TLS: required to establish a secure communication channel with Azure IoT Hub.
  • Support SHA-256 (optional): necessary to generate the secure token for authenticating the device with the service. Different authentication methods are available and not all require SHA-256.
  • Have a Real Time Clock or implement code to connect to an NTP server: necessary for both establishing the TLS connection and generating the secure token for authentication.
  • Having at least 64KB of RAM: the memory footprint of the SDK depends on the SDK and protocol used as well as the platform targeted. The smallest footprint is achieved targeting microcontrollers.
  • Having at least 4KB of RAM set for incoming SSL max content length buffer: For some TLS libraries, this may be a configurable option and default may have been set as 4KB for low memory footprint devices. During TLS handshake, IoT Hub service will send Server Hello which includes IoT Hub server side certificates as part of Server Hello payload. During renewal of these IoT Hub server side certificates, check will be made on IoT Hub service side to prevent Server Hello exceeding 4KB limit so that existing devices which are set for 4KB limit continue to work as before after certificate renewals.

Platform support details can be found in this document. You can find an exhaustive list of the OS platforms the various SDKs have been tested against in the Azure Certified for IoT device catalog. Note that you might still be able to use the SDKs on OS and hardware platforms that are not listed on this page: all the SDKs are open sourced and designed to be portable. If you have suggestions, feedback or issues to report, refer to the Contribution and Support sections below.

Porting the Azure IoT Device Client SDK for C to New Devices

The C SDKs and Libraries:

  • Are written in ANSI C (C99) and avoids compiler extensions to maximize code portability and broad platform compatibility.
  • Expose a platform abstraction layer to isolate OS dependencies (threading and mutual exclusion mechanisms, communications protocol e.g. HTTP). Refer to our porting guide for more information about our abstraction layer.

In the repository you will find instructions and build tools to compile and run the device client SDK for C on Linux, Windows and microcontroller platforms (refer to the links above for more information on compiling the device client for C).

If you are considering porting the device client SDK for C to a new platform, check out the porting guide document.

Contribution, Feedback and Issues

If you encounter any bugs, have suggestions for new features or if you would like to become an active contributor to this project please follow the instructions provided in the contribution guidelines.

Support

  • Have a feature request for SDKs? Please post it on User Voice to help us prioritize.
  • Have a technical question? Ask on Stack Overflow with tag "azure-iot-hub".
  • Need Support? Every customer with an active Azure subscription has access to support with guaranteed response time. Consider submitting a ticket and get assistance from Microsoft support team
  • Found a bug? Please help us fix it by thoroughly documenting it and filing an issue on GitHub (C, Java, .NET, Node.js, Python).

Read more

SDK Folder Structure

/c-utility, /uamqp, /umqtt, /parson

These are git submodules that contain code, such as adapters and protocol implementations, shared with other projects. Note that some of them contain nested submodules.

/blob

This folder contains client components that enable access to Azure blob storage.

/dps_client

This folder contains client library for device provisioning service.

/certs

Contains certificates needed to communicate with Azure IoT Hub.

/doc

This folder contains application development guides and device setup instructions.

/build_all

This folder contains platform-specific build scripts for the client libraries and dependent components.

/iothub_client

Contains Azure IoT Hub client components that provide the raw messaging capabilities of the library. Refer to the API documentation and samples for information on how to use it.

  • build: has one subfolder for each platform (e.g. Windows, Linux, Mbed). Contains makefiles, batch files, and solutions that are used to generate the library binaries.
  • devdoc: contains requirements, designs notes, manuals.
  • inc: public include files.
  • src: client libraries source files.
  • samples: contains simple samples.
  • tests: unit and end-to-end tests for source code.

/serializer

Contains libraries that provide modeling and JSON serialization capabilities on top of the raw messaging library. These libraries facilitate uploading structured data and command and control for use with Azure IoT services. Refer to the API documentation and samples for information on how to use it.

  • build: has one subfolder for each platform (e.g. Windows, Linux, Mbed). Contains makefiles, batch files, and solutions that are used to generate the library binaries.
  • devdoc: contains requirements, designs notes, manuals.
  • inc: public include files.
  • src: client libraries source files.
  • samples: contains simple samples.
  • tests: unit tests and end-to-end tests for source code.

/iothub_service_client

Contains libraries that enable interactions with the IoT Hub service to perform operations such as sending messages to devices and managing the device identity registry.

/testtools

Contains tools that are currently used in testing the client libraries: Mocking Framework (micromock), Generic Test Runner (CTest), Unit Test Project Template, etc.

/tools

Miscellaneous tools: compilembed, mbed_build, traceabilitytool (checks spec requirements vs code implementation).

Long Term Support

The project offers a Long Term Support (LTS) version to allow users that do not need the latest features to be shielded from unwanted changes.

A new LTS version will be created every 6 months. The lifetime of an LTS branch is currently planned for one year. LTS branches receive all bug fixes that fall in one of these categories:

  • security bugfixes
  • critical bugfixes

No new features will be picked up in an LTS branch.

LTS branches are named lts_mm_yyyy, where mm and yyyy are the month and year when the branch was created. An example of such a branch is lts_07_2017.

Schedule1

Below is a table showing the mapping of the LTS branches to the packages released

Package Github Branch LTS Status LTS Start Date Maintenance End Date Removal Date
Vcpkg: 2020-02-07.1
Xenial: 0.2.0.0-26xenial
Trusty: 0.2.0-26trusty
Bionic: 0.2.0.0-19bionic
lts_02_2020 Active 2020-02-04 2021-02-04 2021-02-04
Vcpkg: 2019-07-01.1
Xenial: 0.2.0.0-21xenial
Trusty: 0.2.0-21trusty
Bionic: 0.2.0.0-14bionic
lts_07_2019 Active 2019-07-01 2020-07-01 2020-07-01
  • 1 All scheduled dates are subject to change by the Azure IoT SDK team.

Planned Release Schedule


This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Microsoft collects performance and usage information which may be used to provide and improve Microsoft products and services and enhance your experience. To learn more, review the privacy statement.