18#if COAP_SERVER_SUPPORT
21#ifdef COAP_EPOLL_SUPPORT
23#include <sys/timerfd.h>
27#define min(a,b) ((a) < (b) ? (a) : (b))
38#define PRINT_WITH_OFFSET(Buf,Offset,Char) \
39 if ((Offset) == 0) { \
40 (*(Buf)++) = (Char); \
48#define PRINT_COND_WITH_OFFSET(Buf,Bufend,Offset,Char,Result) { \
49 if ((Buf) < (Bufend)) { \
50 PRINT_WITH_OFFSET(Buf,Offset,Char); \
60#define COPY_COND_WITH_OFFSET(Buf,Bufend,Offset,Str,Length,Result) { \
62 for (i = 0; i < (Length); i++) { \
63 PRINT_COND_WITH_OFFSET((Buf), (Bufend), (Offset), (Str)[i], (Result)); \
67#ifndef WITHOUT_QUERY_FILTER
71 const uint8_t *next_token = text->
s;
72 size_t remaining_length = text->
length;
79 while (remaining_length) {
81 const uint8_t *token = next_token;
82 next_token = (
unsigned char *)memchr(token,
' ', remaining_length);
85 token_length = next_token - token;
86 remaining_length -= (token_length + 1);
89 token_length = remaining_length;
93 if (token_length >= pattern->
length &&
94 (match_prefix || pattern->
length == token_length) &&
95 memcmp(token, pattern->
s, pattern->
length) == 0)
104 size_t *buflen,
size_t offset,
108 result = coap_print_wellknown_lkd(context, buf, buflen, offset, query_filter);
119coap_print_wellknown_lkd(
coap_context_t *context,
unsigned char *buf,
120 size_t *buflen,
size_t offset,
123 unsigned char *p = buf;
124 const uint8_t *bufend = buf + *buflen;
125 size_t left, written = 0;
127 const size_t old_offset = offset;
128 int subsequent_resource = 0;
129#ifdef WITHOUT_QUERY_FILTER
134#ifndef WITHOUT_QUERY_FILTER
137 unsigned char *next_query = (
unsigned char *)memchr(query_filterm->
s,
'&', query_filterm->
length);
138 size_t query_filterm_rem;
142 query_filter.
s = query_filterm->
s;
144 query_filter.
length = next_query - query_filter.
s;
146 query_filterm_rem = query_filterm->
length - query_filter.
length - 1;
149 query_filterm_rem = 0;
152 while (query_filter.
length) {
160#define MATCH_URI 0x01
161#define MATCH_PREFIX 0x02
163 resource_param.
s = query_filter.
s;
165 resource_param.
s[resource_param.
length] !=
'=')
169 if (resource_param.
length == 4 &&
170 memcmp(resource_param.
s,
"href", 4) == 0)
175 query_filter.
s + resource_param.
length + 1;
177 assert((resource_param.
length + 1) <= query_filter.
length);
178 query_pattern.length =
181 if (query_pattern.length &&
182 (query_pattern.s[0] ==
'/') && ((flags & MATCH_URI) == MATCH_URI)) {
184 query_pattern.length--;
187 if (query_pattern.length &&
188 query_pattern.s[query_pattern.length-1] ==
'*') {
189 query_pattern.length--;
190 flags |= MATCH_PREFIX;
194 RESOURCES_ITER(context->resources, r) {
203 if (resource_param.
length) {
205 if (flags & MATCH_URI) {
206 if (!match(r->uri_path, &query_pattern, (flags & MATCH_PREFIX) != 0))
212 if (!attr || !attr->value)
214 unquoted_val = *attr->value;
216 if (attr->value->length >= 2 && attr->value->s[0] ==
'"') {
220 if (!match(&unquoted_val, &query_pattern, (flags & MATCH_PREFIX) != 0))
225 if (!subsequent_resource) {
226 subsequent_resource = 1;
228 PRINT_COND_WITH_OFFSET(p, bufend, offset,
',', written);
243 query_filter.
s = next_query;
245 next_query = (
unsigned char *)memchr(next_query,
'&', query_filterm_rem);
247 query_filter.
length = next_query - query_filter.
s;
249 query_filterm_rem = query_filterm_rem - query_filter.
length - 1;
251 query_filter.
length = query_filterm_rem;
252 query_filterm_rem = 0;
255 query_filter.
length = query_filterm_rem;
256 query_filterm_rem = 0;
261 RESOURCES_ITER(context->resources, r) {
271 if (!subsequent_resource) {
272 subsequent_resource = 1;
274 PRINT_COND_WITH_OFFSET(p, bufend, offset,
',', written);
289#ifndef WITHOUT_QUERY_FILTER
302 if (result + old_offset - offset < *buflen) {
328 }
else if (!uri_path) {
334 r->uri_path = uri_path;
345static const uint8_t coap_unknown_resource_uri[] =
360 r->uri_path =
coap_new_str_const(coap_unknown_resource_uri,
sizeof(coap_unknown_resource_uri)-1);
375static const uint8_t coap_proxy_resource_uri[] =
380 size_t host_name_count,
381 const char *host_name_list[],
int flags) {
393 r->uri_path =
coap_new_str_const(coap_proxy_resource_uri,
sizeof(coap_proxy_resource_uri)-1);
395 for (i = 0; i < (
sizeof(r->handler) /
sizeof(r->handler[0])); i++) {
396 r->handler[i] = handler;
398 if (host_name_count) {
401 if (r->proxy_name_list) {
402 for (i = 0; i < host_name_count; i++) {
403 r->proxy_name_list[i] =
405 strlen(host_name_list[i]));
406 if (!r->proxy_name_list[i]) {
407 coap_log_err(
"coap_resource_proxy_uri_init: unable to add host name\n");
410 r->proxy_name_list =
NULL;
415 r->proxy_name_count = i;
420 coap_log_debug(
"coap_resource_proxy_uri_init2: no memory left\n");
428 size_t host_name_count,
const char *host_name_list[]) {
433static const uint8_t coap_rev_proxy_resource_uri[] =
447 r->is_reverse_proxy = 1;
450 sizeof(coap_rev_proxy_resource_uri)-1);
474 if (!resource || !name)
495 LL_PREPEND(resource->link_attr, attr);
508 if (!resource || !name)
511 LL_FOREACH(resource->link_attr, attr) {
512 if (attr->name->length == name->
length &&
513 memcmp(attr->name->s, name->
s, name->
length) == 0)
540 coap_deleting_resource_t deleting);
543coap_free_resource(
coap_resource_t *resource, coap_deleting_resource_t deleting) {
550 context = resource->context;
552 if (!context->observe_no_clear) {
553 coap_resource_notify_observers_lkd(resource, deleting);
554 coap_notify_observers(context, resource, deleting);
557 if (context->resource_deleted_cb)
560 context->observe_user_data));
562 if (context->release_userdata_cb && resource->user_data) {
568 LL_FOREACH_SAFE(resource->link_attr, attr, tmp) coap_delete_attr(attr);
574 LL_FOREACH_SAFE(resource->subscribers, obs, otmp) {
575 coap_delete_observer_internal(resource, obs->session, obs);
577 if (resource->proxy_name_count && resource->proxy_name_list) {
580 for (i = 0; i < resource->proxy_name_count; i++) {
592 coap_add_resource_lkd(context, resource);
599 if (resource->is_unknown) {
600 if (context->unknown_resource)
601 coap_free_resource(context->unknown_resource, COAP_DELETING_RESOURCE);
602 context->unknown_resource = resource;
603 }
else if (resource->is_proxy_uri) {
604 if (context->proxy_uri_resource)
605 coap_free_resource(context->proxy_uri_resource, COAP_DELETING_RESOURCE);
606 context->proxy_uri_resource = resource;
612 coap_log_warn(
"coap_add_resource: Duplicate uri_path '%*.*s', old resource deleted\n",
613 (
int)resource->uri_path->length, (
int)resource->uri_path->length,
614 resource->uri_path->s);
615 coap_delete_resource_lkd(r);
617 RESOURCES_ADD(context->resources, resource);
618#if COAP_WITH_OBSERVE_PERSIST
619 if (context->unknown_pdu && context->dyn_resource_save_file &&
620 context->dyn_resource_added_cb && resource->observable) {
623 raw_packet.
s = context->unknown_pdu->token -
624 context->unknown_pdu->hdr_size;
625 raw_packet.
length = context->unknown_pdu->used_size +
626 context->unknown_pdu->hdr_size;
630 context->observe_user_data));
634 assert(resource->context ==
NULL);
635 resource->context = context;
647 ret = coap_delete_resource_lkd(resource);
658 coap_deleting_resource_t deleting;
663 context = resource->context;
670 if (context && context->context_going_away) {
671 deleting = COAP_DELETING_RESOURCE_ON_EXIT;
673 deleting = COAP_DELETING_RESOURCE;
675 if (resource->is_unknown) {
676 if (context && context->unknown_resource == resource) {
677 context->unknown_resource =
NULL;
679 }
else if (resource->is_proxy_uri) {
680 if (context && context->proxy_uri_resource == resource) {
681 context->proxy_uri_resource =
NULL;
683 }
else if (context) {
685 RESOURCES_DELETE(context->resources, resource);
687 if (resource->is_dynamic) {
695 coap_free_resource(resource, deleting);
705 RESOURCE_ITER_SAFE(context->resources, r, tmp) {
706 coap_delete_resource_lkd(r);
709 context->resources =
NULL;
711 if (context->unknown_resource) {
712 coap_delete_resource_lkd(context->unknown_resource);
713 context->unknown_resource =
NULL;
715 if (context->proxy_uri_resource) {
716 coap_delete_resource_lkd(context->proxy_uri_resource);
717 context->proxy_uri_resource =
NULL;
726 result = coap_get_resource_from_uri_path_lkd(context, uri_path);
739 RESOURCES_FIND(context->resources, uri_path, result);
746 unsigned char *buf,
size_t *len,
size_t *offset) {
747 unsigned char *p = buf;
748 const uint8_t *bufend = buf + *len;
752 const size_t old_offset = *offset;
755 PRINT_COND_WITH_OFFSET(p, bufend, *offset,
'<', *len);
756 PRINT_COND_WITH_OFFSET(p, bufend, *offset,
'/', *len);
758 COPY_COND_WITH_OFFSET(p, bufend, *offset,
759 resource->uri_path->s, resource->uri_path->length, *len);
761 PRINT_COND_WITH_OFFSET(p, bufend, *offset,
'>', *len);
763 LL_FOREACH(resource->link_attr, attr) {
765 PRINT_COND_WITH_OFFSET(p, bufend, *offset,
';', *len);
767 COPY_COND_WITH_OFFSET(p, bufend, *offset,
768 attr->name->s, attr->name->length, *len);
770 if (attr->value && attr->value->s) {
771 PRINT_COND_WITH_OFFSET(p, bufend, *offset,
'=', *len);
773 COPY_COND_WITH_OFFSET(p, bufend, *offset,
774 attr->value->s, attr->value->length, *len);
778 if (resource->observable) {
779 COPY_COND_WITH_OFFSET(p, bufend, *offset,
";obs", 4, *len);
782#if COAP_OSCORE_SUPPORT
785 COPY_COND_WITH_OFFSET(p, bufend, *offset,
";osc", 4, *len);
796 if (result + old_offset - *offset < *len) {
815 assert(method > 0 && (
size_t)(method-1) <
817 resource->handler[method-1] = handler;
828 LL_FOREACH(resource->subscribers, s) {
829 if (s->session == session &&
845 LL_FOREACH(resource->subscribers, s) {
846 if (s->session == session
871 s = coap_find_observer(resource, session, token);
880 cache_ignore_options,
881 sizeof(cache_ignore_options)/
sizeof(cache_ignore_options[0]));
883 s = coap_find_observer_cache_key(resource, session, cache_key);
886 coap_delete_observer(resource, session, &s->pdu->actual_token);
898#if (COAP_RESOURCE_MAX_SUBSCRIBER > 0)
899 uint32_t subscriber_count = 0;
900 LL_COUNT(resource->subscribers, s, subscriber_count);
901 if (subscriber_count >= COAP_RESOURCE_MAX_SUBSCRIBER) {
914 coap_subscription_init(s);
917 if (s->pdu ==
NULL) {
924 s->pdu->max_size = 0;
927 if (cache_key ==
NULL) {
930 cache_ignore_options,
931 sizeof(cache_ignore_options)/
sizeof(cache_ignore_options[0]));
932 if (cache_key ==
NULL) {
939 s->cache_key = cache_key;
941 session->ref_subscriptions++;
944 LL_PREPEND(resource->subscribers, s);
946 coap_log_debug(
"create new subscription %p key 0x%02x%02x%02x%02x\n",
947 (
void *)s, s->cache_key->key[0], s->cache_key->key[1],
948 s->cache_key->key[2], s->cache_key->key[3]);
954#if COAP_OSCORE_SUPPORT
957 if (session->recipient_ctx && session->recipient_ctx->recipient_id) {
971 uint8_t info_buffer[60];
972 uint8_t *info_buf = info_buffer;
973 size_t info_len =
sizeof(info_buffer);
980 session->recipient_ctx->recipient_id->s,
981 session->recipient_ctx->recipient_id->length);
982 if (session->recipient_ctx->osc_ctx &&
983 session->recipient_ctx->osc_ctx->id_context) {
986 session->recipient_ctx->osc_ctx->id_context->s,
987 session->recipient_ctx->osc_ctx->id_context->length);
993 if (association->
aad) {
1009 if (association->
nonce) {
1021 if (ret >
sizeof(info_buffer)) {
1024 ret =
sizeof(info_buffer);
1031 memcpy(s->pdu->token - request->
hdr_size,
1033 raw_packet.
s = s->pdu->token - request->
hdr_size;
1036 &session->endpoint->bind_addr,
1040 session->
context->observe_user_data));
1041#if COAP_OSCORE_SUPPORT
1045 if (resource->context->track_observe_value_cb) {
1047 coap_lock_callback(resource->context->track_observe_value_cb(resource->context,resource->uri_path,
1049 resource->context->observe_user_data));
1060 RESOURCES_ITER(context->resources, r) {
1061 s = coap_find_observer(r, session, token);
1075 char outbuf[2 * 8 + 1] =
"";
1080 for (i = 0; i < s->pdu->actual_token.length; i++) {
1081 size_t size = strlen(outbuf);
1083 snprintf(&outbuf[size],
sizeof(outbuf)-size,
"%02x",
1084 s->pdu->actual_token.s[i]);
1088 coap_log_debug(
"removed subscription '/%*.*s%s%*.*s' (%p) with token '%s' key 0x%02x%02x%02x%02x\n",
1089 uri_path ? (
int)uri_path->
length : 0, uri_path ? (
int)uri_path->
length : 0,
1090 uri_path ? (
char *)uri_path->
s :
"",
1091 uri_query ?
"?" :
"",
1092 uri_query ? (
int)uri_query->
length : 0, uri_query ? (
int)uri_query->
length : 0,
1093 uri_query ? (
char *)uri_query->
s :
"",
1094 (
void *)s, outbuf, s->cache_key->key[0], s->cache_key->key[1],
1095 s->cache_key->key[2], s-> cache_key->key[3]);
1099 if (session->
context->observe_deleted_cb)
1101 session->
context->observe_user_data));
1103 if (resource->subscribers) {
1104 LL_DELETE(resource->subscribers, s);
1105 assert(session->ref_subscriptions > 0);
1106 session->ref_subscriptions--;
1121 s = coap_find_observer(resource, session, token);
1123 coap_delete_observer_internal(resource, session, s);
1134 s = coap_find_observer(resource, session, token);
1135 if (!s && large_fetch) {
1144 cache_ignore_options,
1145 sizeof(cache_ignore_options)/
sizeof(cache_ignore_options[0]));
1147 s = coap_find_observer_cache_key(resource, session, cache_key);
1150 ret = coap_delete_observer(resource, session, &s->pdu->actual_token);
1155 coap_delete_observer_internal(resource, session, s);
1163 RESOURCES_ITER(context->resources, resource) {
1165 LL_FOREACH_SAFE(resource->subscribers, s, tmp) {
1166 if (s->session == session) {
1167 if (context->observe_deleted_cb)
1168 coap_lock_callback(context->observe_deleted_cb(session, s, context->observe_user_data));
1169 assert(resource->subscribers);
1170 LL_DELETE(resource->subscribers, s);
1182 coap_deleting_resource_t deleting) {
1193 if (r->observable && (r->dirty || r->partiallydirty)) {
1194 if (r->list_being_traversed)
1196 r->list_being_traversed = 1;
1198 coap_resource_reference_lkd(r);
1200 r->partiallydirty = 0;
1202 LL_FOREACH_SAFE(r->subscribers, obs, otmp) {
1207 if ((r->dirty == 0 && obs->dirty == 0) || obs->session->is_rate_limiting) {
1212 context->observe_pending = 1;
1220 obs_session = obs->session;
1225 if (obs->session->con_active >=
COAP_NSTART(obs->session) &&
1227 (obs->non_cnt >= COAP_OBS_MAX_NON))) {
1232 if (obs->session->lg_xmit && obs->session->lg_xmit->last_all_sent == 0 &&
1233 obs->session->lg_xmit->last_obs &&
1244 coap_log_debug(
"coap_check_notify: pdu init failed, resource stays "
1245 "partially dirty\n");
1246 goto next_one_fail_no_pending;
1250 obs->pdu->actual_token.s)) {
1251 coap_log_debug(
"coap_check_notify: cannot add token, resource stays "
1252 "partially dirty\n");
1254 goto next_one_fail_no_pending;
1262 obs->non_cnt < COAP_OBS_MAX_NON)) {
1268 case COAP_NOT_DELETING_RESOURCE:
1284#if COAP_Q_BLOCK_SUPPORT
1297 h = r->handler[obs->pdu->code - 1];
1304 (
int)r->uri_path->length, (
int)r->uri_path->length,
1315 r->list_being_traversed = 0;
1316 coap_resource_release_lkd(r);
1320 h(r, obs->session, obs->pdu, query, response),
1326 r->list_being_traversed = 0;
1327 coap_resource_release_lkd(r);
1333 coap_log_warn(
"handle_request: Invalid PDU response code (%d.%02d)\n",
1335 response->
code & 0x1f);
1340 r->list_being_traversed = 0;
1341 coap_resource_release_lkd(r);
1352 coap_delete_observer(r, obs_session, &obs_pdu->
actual_token);
1356 case COAP_DELETING_RESOURCE_ON_EXIT:
1365 case COAP_DELETING_RESOURCE:
1379 LL_FOREACH(r->subscribers, s) {
1395#if COAP_Q_BLOCK_SUPPORT
1401 mid = coap_send_q_block2(obs_session, r, query, obs_pdu->
code,
1402 block, response, 1);
1410#if COAP_Q_BLOCK_SUPPORT
1414 coap_log_debug(
"* %s: coap_check_notify: sending failed, resource stays "
1422 LL_FOREACH(r->subscribers, s) {
1432 r->partiallydirty = 1;
1437 context->observe_pending = 1;
1438next_one_fail_no_pending:
1439 r->partiallydirty = 1;
1446 r->list_being_traversed = 0;
1448 coap_resource_release_lkd(r);
1461 ret = coap_resource_notify_observers_lkd(r, COAP_NOT_DELETING_RESOURCE);
1473 ret = coap_resource_notify_observers_lkd(r, COAP_NOT_DELETING_RESOURCE);
1480 coap_deleting_resource_t deleting) {
1484 if (!r->subscribers)
1489 r->observe = (r->observe + 1) & 0xFFFFFF;
1493 if (r->context->track_observe_value_cb) {
1495 if ((r->observe % r->context->observe_save_freq) == 0)
1498 r->context->observe_user_data));
1501 coap_notify_observers(r->context, r, deleting);
1507 resource->flags = (resource->flags &
1514 resource->user_data = data;
1519 return resource->user_data;
1525 context->release_userdata_cb = callback;
1530 if (resource->is_unknown || resource->is_proxy_uri) {
1532 coap_log_debug(
"coap_resource_set_get_observable: Not supported for Unknown or Proxy URIs\n");
1533 resource->observable = 0;
1535 resource->observable = mode ? 1 : 0;
1542 return resource->uri_path;
1549 coap_check_notify_lkd(context);
1557 if (context->observe_pending) {
1558 context->observe_pending = 0;
1559 RESOURCES_ITER(context->resources, r) {
1560 coap_notify_observers(context, r, COAP_NOT_DELETING_RESOURCE);
1567 uint32_t start_observe_no) {
1571 resource->observe = start_observe_no & 0xffffff;
1591 LL_FOREACH_SAFE(resource->subscribers, obs, otmp) {
1592 if (obs->session == session &&
1597 if (obs->fail_cnt >= COAP_OBS_MAX_FAIL) {
1599 &obs->pdu->actual_token);
1600 coap_delete_observer(resource, session, token);
1612 RESOURCES_ITER(context->resources, r) {
1613 coap_remove_failed_observers(context, r, session, token);
1631#if COAP_WITH_OBSERVE_PERSIST
1633 context->unknown_pdu = pdu;
1634 context->unknown_session = session;
1637#if COAP_WITH_OBSERVE_PERSIST
1639 context->unknown_pdu =
NULL;
1640 context->unknown_session =
NULL;
1644 resource->is_dynamic = 1;
int coap_is_af_unix(const coap_address_t *a)
Checks if given address a denotes a AF_UNIX address.
struct coap_cache_key_t coap_cache_key_t
struct coap_attr_t coap_attr_t
struct coap_subscription_t coap_subscription_t
struct coap_resource_t coap_resource_t
Library specific build wrapper for coap_internal.h.
void * coap_malloc_type(coap_memory_tag_t type, size_t size)
Allocates a chunk of size bytes and returns a pointer to the newly allocated memory.
void coap_free_type(coap_memory_tag_t type, void *p)
Releases the memory that was allocated by coap_malloc_type().
COAP_DEPRECATED COAP_API int coap_resource_set_dirty(coap_resource_t *r, const coap_string_t *query)
void coap_check_code_lg_xmit(const coap_session_t *session, const coap_pdu_t *request, coap_pdu_t *response, const coap_resource_t *resource, const coap_string_t *query)
The function checks that the code in a newly formed lg_xmit created by coap_add_data_large_response_l...
int coap_get_block_b(const coap_session_t *session, const coap_pdu_t *pdu, coap_option_num_t number, coap_block_b_t *block)
Initializes block from pdu.
void coap_delete_cache_key(coap_cache_key_t *cache_key)
Delete the cache-key.
coap_cache_key_t * coap_cache_derive_key_w_ignore(const coap_session_t *session, const coap_pdu_t *pdu, coap_cache_session_based_t session_based, const uint16_t *ignore_options, size_t ignore_count)
Calculates a cache-key for the given CoAP PDU.
@ COAP_CACHE_IS_SESSION_BASED
uint64_t coap_tick_t
This data type represents internal timer ticks with COAP_TICKS_PER_SECOND resolution.
#define COAP_TICKS_PER_SECOND
Use ms resolution on POSIX systems.
COAP_API coap_resource_t * coap_get_resource_from_uri_path(coap_context_t *context, coap_str_const_t *uri_path)
Returns the resource identified by the unique string uri_path.
#define COAP_RESOURCE_FLAGS_NOTIFY_NON
Observe Notifications will be sent non-confirmable by default.
coap_resource_t * coap_resource_proxy_uri_init(coap_method_handler_t handler, size_t host_name_count, const char *host_name_list[])
Creates a new resource object for handling proxy URIs.
coap_attr_t * coap_add_attr(coap_resource_t *resource, coap_str_const_t *name, coap_str_const_t *value, int flags)
Registers a new attribute with the given resource.
#define COAP_ATTR_FLAGS_RELEASE_VALUE
coap_print_status_t coap_print_link(const coap_resource_t *resource, unsigned char *buf, size_t *len, size_t *offset)
Writes a description of this resource in link-format to given text buffer.
coap_resource_t * coap_resource_proxy_uri_init2(coap_method_handler_t handler, size_t host_name_count, const char *host_name_list[], int flags)
Creates a new resource object for handling proxy URIs with configurable control over multicast reques...
#define COAP_RESOURCE_FLAGS_NOTIFY_NON_ALWAYS
Observe Notifications will always be sent non-confirmable.
#define COAP_RESOURCE_HANDLE_WELLKNOWN_CORE
Define this when invoking coap_resource_unknown_init2() if .well-known/core is to be passed to the un...
#define COAP_ATTR_FLAGS_RELEASE_NAME
void coap_resource_set_mode(coap_resource_t *resource, int mode)
Sets the notification message type of resource resource to given mode.
#define COAP_RESOURCE_SAFE_REQUEST_HANDLER
Don't lock this resource when calling app call-back handler for requests as handler will not be manip...
#define COAP_PRINT_STATUS_TRUNC
void(* coap_method_handler_t)(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response)
Definition of message handler function.
void coap_resource_release_userdata_handler(coap_context_t *context, coap_resource_release_userdata_handler_t callback)
Defines the context wide callback to use to when the resource is deleted to release the data held in ...
#define COAP_RESOURCE_FLAGS_OSCORE_ONLY
Define this resource as an OSCORE enabled access only.
COAP_API coap_print_status_t coap_print_wellknown(coap_context_t *context, unsigned char *buf, size_t *buflen, size_t offset, const coap_string_t *query_filter)
Prints the names of all known resources for context to buf.
#define COAP_RESOURCE_FLAGS_NOTIFY_CON
Observe Notifications will be sent confirmable.
coap_resource_t * coap_resource_reverse_proxy_init(coap_method_handler_t handler, int flags)
Creates a new resource object for the reverse-proxy resource handler with control over multicast requ...
COAP_API int coap_delete_resource(coap_context_t *context, coap_resource_t *resource)
Deletes a resource identified by resource.
void coap_register_handler(coap_resource_t *resource, coap_request_t method, coap_method_handler_t handler)
Registers the specified handler as message handler for the request type method.
#define COAP_PRINT_STATUS_MAX
void(* coap_resource_release_userdata_handler_t)(void *user_data)
Definition of release resource user_data callback function.
void coap_register_request_handler(coap_resource_t *resource, coap_request_t method, coap_method_handler_t handler)
Registers the specified handler as message handler for the request type method.
coap_resource_t * coap_resource_init(coap_str_const_t *uri_path, int flags)
Creates a new resource object and initializes the link field to the string uri_path.
void coap_resource_set_userdata(coap_resource_t *resource, void *data)
Sets the user_data.
uint32_t coap_print_status_t
Status word to encode the result of conditional print or copy operations such as coap_print_link().
#define COAP_PRINT_STATUS_ERROR
coap_str_const_t * coap_resource_get_uri_path(coap_resource_t *resource)
Get the uri_path from a resource.
coap_resource_t * coap_resource_unknown_init2(coap_method_handler_t put_handler, int flags)
Creates a new resource object for the unknown resource handler with support for PUT and configurable ...
coap_str_const_t * coap_attr_get_value(coap_attr_t *attribute)
Returns attribute's value.
#define COAP_PRINT_OUTPUT_LENGTH(v)
coap_attr_t * coap_find_attr(coap_resource_t *resource, coap_str_const_t *name)
Returns resource's coap_attr_t object with given name if found, NULL otherwise.
void * coap_resource_get_userdata(coap_resource_t *resource)
Gets the user_data.
COAP_API void coap_add_resource(coap_context_t *context, coap_resource_t *resource)
Registers the given resource for context.
#define COAP_RESOURCE_FLAGS_RELEASE_URI
The URI passed to coap_resource_init() is free'd by coap_delete_resource().
coap_resource_t * coap_resource_unknown_init(coap_method_handler_t put_handler)
Creates a new resource object for the unknown resource handler with support for PUT.
#define COAP_RESOURCE_HIDE_WELLKNOWN_CORE
Hide this resource from .well-known/core.
uint16_t coap_new_message_id_lkd(coap_session_t *session)
Returns a new message id and updates session->tx_mid accordingly.
coap_mid_t coap_send_internal(coap_session_t *session, coap_pdu_t *pdu, coap_pdu_t *request_pdu)
Sends a CoAP message to given peer.
int coap_check_code_class(coap_session_t *session, coap_pdu_t *pdu)
Check whether the pdu contains a valid code class.
void coap_cancel_all_messages(coap_context_t *context, coap_session_t *session, coap_bin_const_t *token)
Cancels all outstanding messages for session session that have the specified token.
void coap_ticks(coap_tick_t *t)
Returns the current value of an internal tick counter.
unsigned int coap_encode_var_safe(uint8_t *buf, size_t length, unsigned int val)
Encodes multiple-length byte sequences.
#define coap_lock_specific_callback_release(lock, func, failed)
Dummy for no thread-safe code.
#define coap_lock_callback(func)
Dummy for no thread-safe code.
#define coap_lock_init(lock)
Dummy for no thread-safe code.
#define coap_lock_callback_ret(r, func)
Dummy for no thread-safe code.
#define coap_lock_unlock()
Dummy for no thread-safe code.
#define coap_lock_check_locked()
Dummy for no thread-safe code.
#define coap_lock_callback_release(func, failed)
Dummy for no thread-safe code.
#define coap_lock_lock(failed)
Dummy for no thread-safe code.
#define coap_log_debug(...)
coap_log_t coap_get_log_level(void)
Get the current logging level.
void coap_show_pdu(coap_log_t level, const coap_pdu_t *pdu)
Display the contents of the specified pdu.
const char * coap_session_str(const coap_session_t *session)
Get session description.
#define coap_log_warn(...)
#define coap_log_err(...)
void coap_persist_set_observe_num(coap_resource_t *resource, uint32_t observe_num)
Sets the current observe number value.
void coap_resource_set_get_observable(coap_resource_t *resource, int mode)
Set whether a resource is observable.
COAP_API void coap_check_notify(coap_context_t *context)
Checks all known resources to see if they are dirty and then notifies subscribed observers.
COAP_API int coap_resource_notify_observers(coap_resource_t *resource, const coap_string_t *query)
Initiate the sending of an Observe packet for all observers of resource, optionally matching query if...
size_t oscore_cbor_put_nil(uint8_t **buffer, size_t *buf_size)
size_t oscore_cbor_put_bytes(uint8_t **buffer, size_t *buf_size, const uint8_t *bytes, size_t bytes_len)
size_t oscore_cbor_put_array(uint8_t **buffer, size_t *buf_size, size_t elements)
oscore_association_t * oscore_find_association(coap_session_t *session, coap_bin_const_t *token)
coap_pdu_t * coap_pdu_reference_lkd(coap_pdu_t *pdu)
Increment reference counter on a pdu to stop it prematurely getting freed off when coap_delete_pdu() ...
void coap_delete_pdu_lkd(coap_pdu_t *pdu)
Dispose of an CoAP PDU and free off associated storage.
int coap_remove_option(coap_pdu_t *pdu, coap_option_num_t number)
Removes (first) option of given number from the pdu.
coap_pdu_t * coap_pdu_duplicate_lkd(const coap_pdu_t *old_pdu, coap_session_t *session, size_t token_length, const uint8_t *token, coap_opt_filter_t *drop_options, coap_bool_t expand_opt_abb)
Duplicate an existing PDU.
COAP_STATIC_INLINE void coap_pdu_release_lkd(coap_pdu_t *pdu)
size_t coap_add_option_internal(coap_pdu_t *pdu, coap_option_num_t number, size_t len, const uint8_t *data)
Adds option of given number to pdu that is passed as first parameter.
int coap_mid_t
coap_mid_t is used to store the CoAP Message ID of a CoAP PDU.
coap_request_t
CoAP PDU Request methods.
#define COAP_RESPONSE_CODE(N)
#define COAP_RESPONSE_CLASS(C)
int coap_add_token(coap_pdu_t *pdu, size_t len, const uint8_t *data)
Adds token of length len to pdu.
int coap_get_data(const coap_pdu_t *pdu, size_t *len, const uint8_t **data)
Retrieves the length and data pointer of specified PDU.
coap_pdu_t * coap_pdu_init(coap_pdu_type_t type, coap_pdu_code_t code, coap_mid_t mid, size_t size)
Creates a new CoAP PDU with at least enough storage space for the given size maximum message size.
#define COAP_INVALID_MID
Indicates an invalid message id.
#define COAP_DEFAULT_URI_WELLKNOWN
well-known resources URI
int coap_add_data(coap_pdu_t *pdu, size_t len, const uint8_t *data)
Adds given data to the pdu that is passed as first parameter.
size_t coap_session_max_pdu_size_lkd(const coap_session_t *session)
Get maximum acceptable PDU size.
void coap_session_release_lkd(coap_session_t *session)
Decrement reference counter on a session.
coap_session_t * coap_session_reference_lkd(coap_session_t *session)
Increment reference counter on a session.
#define COAP_PROTO_NOT_RELIABLE(p)
void coap_delete_bin_const(coap_bin_const_t *s)
Deletes the given const binary data and releases any memory allocated.
void coap_delete_str_const(coap_str_const_t *s)
Deletes the given const string and releases any memory allocated.
coap_bin_const_t * coap_new_bin_const(const uint8_t *data, size_t size)
Take the specified byte array (text) and create a coap_bin_const_t * Returns a new const binary objec...
#define coap_binary_equal(binary1, binary2)
Compares the two binary data for equality.
#define coap_string_equal(string1, string2)
Compares the two strings for equality.
coap_str_const_t * coap_new_str_const(const uint8_t *data, size_t size)
Returns a new const string object with at least size+1 bytes storage allocated, and the provided data...
void coap_delete_string(coap_string_t *s)
Deletes the given string and releases any memory allocated.
coap_string_t * coap_get_uri_path(const coap_pdu_t *request)
Extract uri_path string from request PDU.
coap_string_t * coap_get_query(const coap_pdu_t *request)
Extract query string from request PDU according to escape rules in 6.5.8.
coap_address_t local
local address and port
CoAP binary data definition with const data.
size_t length
length of binary data
const uint8_t * s
read-only binary data
Structure of Block options with BERT support.
unsigned int aszx
block size (0-7 including BERT
unsigned int m
1 if more blocks follow, 0 otherwise
unsigned int szx
block size (0-6)
The CoAP stack's global state is stored in a coap_context_t object.
uint32_t dynamic_cur
Current number of dynamic resources.
coap_resource_dynamic_create_t dyn_create_handler
Dynamic resource create handler.
uint32_t dynamic_max
Max number of dynamic resources or 0 is unlimited.
uint8_t * token
first byte of token (or extended length bytes prefix), if any, or options
coap_pdu_code_t code
request method (value 1–31) or response code (value 64-255)
uint8_t hdr_size
actual size used for protocol-specific header (0 until header is encoded)
coap_bin_const_t actual_token
Actual token in pdu.
coap_mid_t mid
message id, if any, in regular host byte order
coap_pdu_type_t type
message type
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...
coap_addr_tuple_t addr_info
remote/local address info
coap_proto_t proto
protocol used
coap_context_t * context
session's context
CoAP string data definition with const data.
const uint8_t * s
read-only string data
size_t length
length of string
CoAP string data definition.
size_t length
length of string
coap_bin_const_t * partial_iv