Skip to main content

Constrained Application Protocol

Constrained Application Protocol (CoAP) is a software protocol intended to be used in very simple electronics devices that allows them to communicate interactively over the Internet. It is particularly targeted for small low power sensors, switches, valves and similar components that need to be controlled or supervised remotely, through standard Internet networks. CoAP is an application layer protocol that is intended for use in resource-constrained internet devices, such as WSN nodes. CoAP is designed to easily translate to HTTP for simplified integration with the web, while also meeting specialized requirements such as multicast support, very low overhead, and simplicity. Multicast, low overhead, and simplicity are extremely important for Internet of Things (IoT) and Machine-to-Machine (M2M) devices, which tend to be deeply embedded and have much less memory and power supply than traditional internet devices have. Therefore, efficiency is very important. CoAP can run on most devices that support UDP or a UDP analogue.

The Internet Engineering Task Force (IETF) Constrained RESTful environments (CoRE) Working Group has done the major standardization work for this protocol. In order to make the protocol suitable to IoT and M2M applications, various new functionalities have been added. The core of the protocol is specified in RFC 7252, important extensions are in various stages of the standardization process.

Features

The CoRE group has designed CoAP with the following features in mind:

  • Overhead and parsing complexity.
  • URI and content-type support.
  • Support for the discovery of resources provided by known CoAP services.
  • Simple subscription for a resource, and resulting push notifications.
  • Simple caching based on max-age.

The mapping of CoAP with HTTP is also defined, allowing proxies to be built providing access to CoAP resources via HTTP in a uniform way.

With the introduction of CoAP, a complete networking stack of open standard protocols that are suitable for constrained devices and environments, becomes available.

Message Formats

CoAP makes use of two message types, requests and responses, using a simple binary base header format. The base header may be followed by options in an optimized Type-Length-Value format. CoAP is by default bound to UDP and optionally to DTLS, providing a high level of communications security.

Any bytes after the headers in the packet are considered the message body if any. The length of the message body is implied by the datagram length. When bound to UDP the entire message MUST fit within a single datagram. When used with 6LoWPAN as defined in RFC 4944, messages SHOULD fit into a single IEEE 802.15.4 frame to minimize fragmentation.

Implementations

Name Programming Language Implemented CoAP version Client/Server Implemented CoAP features License
aiocoap Python 3 RFC 7252 Client + Server Blockwise Transfers, Observe (partial) MIT
Californium Java RFC 7252 Client + Server Observe, Blockwise Transfers, DTLS EPL+EDL
cantcoap C++/C RFC 7252 Client + Server BSD
Canopus Go RFC 7252 Client + Server Core Apache License 2.0
CoAP implementation for Go Go RFC 7252 Client + Server Core + Draft Subscribe MIT
CoAP.NET C# RFC 7252, coap-13, coap-08, coap-03 Client + Server Core, Observe, Blockwise Transfers 3-clause BSD
CoAPSharp C#, .NET RFC 7252 Client + Server Core, Observe, Block, RD LGPL
CoAPthon Python RFC 7252 Client + Server + Forward Proxy + Reverse Proxy Observe, Multicast server discovery, CoRE Link Format parsing, Block-wise MIT
Copper JavaScript (Browser Plugin) RFC 7252 Client Observe, Blockwise Transfers 3-clause BSD
eCoAP C RFC 7252 Client + Server Core MIT
Erbium for Contiki C RFC 7252 Client + Server Observe, Blockwise Transfers 3-clause BSD
ETRI CoAP C RFC 7252 Client + Server Core, Observe, Block Commercial
iCoAP Objective-C RFC 7252 Client Core, Observe, Blockwise Transfers MIT
jCoAP Java RFC 7252 Client + Server Observe, Blockwise Transfers Apache License 2.0
libcoap C RFC 7252 Client + Server Observe, Blockwise Transfers BSD/GPL
microcoap C RFC 7252 Client + Server MIT
nCoap Java RFC 7252 Client + Server Observe BSD
node-coap Javascript RFC 7252 Client + Server Core, Observe, Block MIT
Ruby coap Ruby RFC 7252 Client + Server (david) Core, Observe, Block, RD MIT, GPL
Sensinode C Device Library C RFC 7252 Client + Server Core, Observe, Block, RD Commercial
Sensinode Java Device Library Java SE RFC 7252 Client + Server Core, Observe, Block, RD Commercial
Sensinode NanoService Platform Java SE RFC 7252 Cloud Server Core, Observe, Block, RD Commercial
SMCP C RFC 7252 Client + Server Core, Observe, Block MIT
SwiftCoAP Swift RFC 7252 Client + Server Core, Observe, Blockwise Transfers MIT
TinyOS CoapBlip nesC/C coap-13 Client + Server Observe, Blockwise Transfers BSD
txThings Python (Twisted) RFC 7252 Client + Server Blockwise Transfers, Observe (partial) MIT
FreeCoAP C RFC 7252 Client + Server DTLS BSD

Proxy Implementations

  • Squid 3.1.9 with transparent HTTP-CoAP mapping module.http://telecom.dei.unipd.it/pages/read/90/
  • jcoap Proxy https://code.google.com/p/jcoap/
  • Californium cf-proxy https://github.com/mkovatsc/Californium
  • CoAPthon https://github.com/Tanganelli/CoAPthon

CoAP Group Communication

In many CoAP application domains it is essential to have the ability to address several CoAP resources as a group, instead of addressing each resource individually (e.g. to turn on all the CoAP-enabled lights in a room with a single CoAP request triggered by toggling the light switch). To address this need, the IETF has developed an optional extension for CoAP in the form of an experimental RFC: Group Communication for CoAP - RFC 7390 This extension relies on IP multicast to deliver the CoAP request to all group members. The use of multicast has certain benefits such as reducing the number of packets needed to deliver the request to the members. However, multicast also has its limitations such as poor reliability and being cache-unfriendly. An alternative method for CoAP group communication that uses unicasts instead of multicasts relies on having an intermediary, where the groups are created. Clients send their group requests to the intermediary, who in turn sends individual unicast requests to the group members, collects the replies from them, and sends back an aggregated reply to the client.

Source: Wikipedia, Google