13#ifndef ZEPHYR_INCLUDE_NET_COAP_SERVICE_H_
14#define ZEPHYR_INCLUDE_NET_COAP_SERVICE_H_
20#if defined(CONFIG_COAP_OSCORE)
44#define COAP_SERVICE_AUTOSTART BIT(0)
50struct coap_service_data {
52 struct coap_observer observers[CONFIG_COAP_SERVICE_OBSERVERS];
53 struct coap_pending pending[CONFIG_COAP_SERVICE_PENDING_MESSAGES];
54#if defined(CONFIG_COAP_OSCORE) || defined(__DOXYGEN__)
70 struct coap_resource *res_begin;
71 struct coap_resource *res_end;
72 struct coap_service_data *data;
73#if defined(CONFIG_NET_SOCKETS_ENABLE_DTLS)
75 size_t sec_tag_list_size;
77#if defined(CONFIG_COAP_OSCORE) || defined(__DOXYGEN__)
86#if defined(CONFIG_NET_SOCKETS_ENABLE_DTLS)
87#define __z_coap_service_secure(_sec_tag_list, _sec_tag_list_size) \
88 .sec_tag_list = _sec_tag_list, \
89 .sec_tag_list_size = _sec_tag_list_size,
91#define __z_coap_service_secure(...)
94#if defined(CONFIG_COAP_OSCORE)
96#define __z_coap_oscore_cache_define(_name) \
97 static struct coap_oscore_exchange _CONCAT(coap_oscore_exchange_cache_, \
98 _name)[CONFIG_COAP_OSCORE_EXCHANGE_CACHE_SIZE];
99#define __z_coap_oscore_cache_ptr(_name) (_CONCAT(coap_oscore_exchange_cache_, _name))
100#define __z_coap_service_oscore(_required) .oscore_required = (_required),
101#define __z_coap_service_oscore_data(_cache) \
102 .oscore_exchange_cache = (_cache),
104#define __z_coap_service_oscore(...)
105#define __z_coap_oscore_cache_define(_name)
106#define __z_coap_oscore_cache_ptr(_name) NULL
107#define __z_coap_service_oscore_data(...)
111#define __z_coap_service_define(_name, _host, _port, _flags, _res_begin, _res_end, _sec_tag_list, \
112 _sec_tag_list_size, _oscore_required, _oscore_cache) \
113 static struct coap_service_data _CONCAT(coap_service_data_, _name) = { \
115 __z_coap_service_oscore_data(_oscore_cache) \
117 const STRUCT_SECTION_ITERABLE(coap_service, _name) = { \
118 .name = STRINGIFY(_name), \
120 .port = (uint16_t *)(_port), \
122 .res_begin = (_res_begin), \
123 .res_end = (_res_end), \
124 .data = &_CONCAT(coap_service_data_, _name), \
125 __z_coap_service_secure(_sec_tag_list, _sec_tag_list_size) \
126 __z_coap_service_oscore(_oscore_required) \
168#define COAP_RESOURCE_DEFINE(_name, _service, ...) \
169 STRUCT_SECTION_ITERABLE_ALTERNATE(_CONCAT(coap_resource_, _service), coap_resource, \
189#define COAP_SERVICE_DEFINE(_name, _host, _port, _flags) \
190 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[]; \
191 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[]; \
192 __z_coap_service_define(_name, _host, _port, _flags, \
193 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[0], \
194 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[0], NULL, 0, \
218#define COAPS_SERVICE_DEFINE(_name, _host, _port, _flags, _sec_tag_list, _sec_tag_list_size) \
219 BUILD_ASSERT(IS_ENABLED(CONFIG_NET_SOCKETS_ENABLE_DTLS), \
220 "DTLS is required for CoAP secure (CONFIG_NET_SOCKETS_ENABLE_DTLS)"); \
221 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[]; \
222 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[]; \
223 __z_coap_service_define(_name, _host, _port, _flags, \
224 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[0], \
225 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[0], \
226 _sec_tag_list, _sec_tag_list_size, false, NULL)
245#define COAP_SERVICE_DEFINE_OSCORE(_name, _host, _port, _flags, _oscore_required) \
246 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[]; \
247 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[]; \
248 __z_coap_oscore_cache_define(_name) __z_coap_service_define( \
249 _name, _host, _port, _flags, \
250 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[0], \
251 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[0], NULL, 0, \
252 (_oscore_required), __z_coap_oscore_cache_ptr(_name))
269#define COAPS_SERVICE_DEFINE_OSCORE(_name, _host, _port, _flags, _sec_tag_list, \
270 _sec_tag_list_size, _oscore_required) \
271 BUILD_ASSERT(IS_ENABLED(CONFIG_NET_SOCKETS_ENABLE_DTLS), \
272 "DTLS is required for CoAP secure (CONFIG_NET_SOCKETS_ENABLE_DTLS)"); \
273 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[]; \
274 extern struct coap_resource _CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[]; \
275 __z_coap_oscore_cache_define(_name) \
276 __z_coap_service_define(_name, _host, _port, _flags, \
277 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_start)[0], \
278 &_CONCAT(_CONCAT(_coap_resource_, _name), _list_end)[0], \
279 _sec_tag_list, _sec_tag_list_size, \
280 (_oscore_required), __z_coap_oscore_cache_ptr(_name))
287#define COAP_SERVICE_COUNT(_dst) STRUCT_SECTION_COUNT(coap_service, _dst)
294#define COAP_SERVICE_RESOURCE_COUNT(_service) ((_service)->res_end - (_service)->res_begin)
302#define COAP_SERVICE_HAS_RESOURCE(_service, _resource) \
303 ((_service)->res_begin <= _resource && _resource < (_service)->res_end)
310#define COAP_SERVICE_FOREACH(_it) STRUCT_SECTION_FOREACH(coap_service, _it)
320#define COAP_RESOURCE_FOREACH(_service, _it) \
321 STRUCT_SECTION_FOREACH_ALTERNATE(_CONCAT(coap_resource_, _service), coap_resource, _it)
331#define COAP_SERVICE_FOREACH_RESOURCE(_service, _it) \
332 for (struct coap_resource *_it = (_service)->res_begin; ({ \
333 __ASSERT(_it <= (_service)->res_end, "unexpected list end location"); \
334 _it < (_service)->res_end; \
CoAP implementation for Zephyr.
int coap_service_is_running(const struct coap_service *service)
Query the provided service running state.
int coap_service_send(const struct coap_service *service, const struct coap_packet *cpkt, const struct net_sockaddr *addr, net_socklen_t addr_len, const struct coap_transmission_parameters *params)
Send a CoAP message from the provided service .
int coap_resource_send(const struct coap_resource *resource, const struct coap_packet *cpkt, const struct net_sockaddr *addr, net_socklen_t addr_len, const struct coap_transmission_parameters *params)
Send a CoAP message from the provided resource .
int coap_service_stop(const struct coap_service *service)
Stop the provided service .
int coap_resource_remove_observer_by_addr(struct coap_resource *resource, const struct net_sockaddr *addr)
Lookup an observer by address and remove it from the resource .
int coap_resource_parse_observe(struct coap_resource *resource, const struct coap_packet *request, const struct net_sockaddr *addr)
Parse a CoAP observe request for the provided resource .
int coap_service_start(const struct coap_service *service)
Start the provided service .
int coap_resource_remove_observer_by_token(struct coap_resource *resource, const uint8_t *token, uint8_t token_len)
Lookup an observer by token and remove it from the resource .
uint32_t net_socklen_t
Length of a socket address.
Definition net_ip.h:172
int sec_tag_t
Secure tag, a reference to TLS credential.
Definition tls_credentials.h:90
flags
Definition parser.h:97
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
Represents a remote device that is observing a local resource.
Definition coap.h:333
OSCORE exchange entry.
Definition coap_oscore.h:163
Representation of a CoAP Packet.
Definition coap.h:354
Represents a request awaiting for an acknowledgment (ACK).
Definition coap.h:425
Description of CoAP resource.
Definition coap.h:313
CoAP transmission parameters.
Definition coap.h:406
Generic sockaddr struct.
Definition net_ip.h:455
Iterable sections helpers.
TLS credentials management.