21#define min(a,b) ((a) < (b) ? (a) : (b))
25#ifndef COAP_ETAG_MAX_BYTES
26#define COAP_ETAG_MAX_BYTES 4
28#if COAP_ETAG_MAX_BYTES < 1 || COAP_ETAG_MAX_BYTES > 8
29#error COAP_ETAG_MAX_BYTES byte size invalid
32#define COAP_LG_XMIT_TXT_SCALAR (8)
34#if COAP_Q_BLOCK_SUPPORT
35static int blocks_delete_entry(
coap_rblock_t *rec_blocks, uint32_t block_num);
39#if COAP_Q_BLOCK_SUPPORT
85 if (block->
szx == 7) {
97 if (block->
m && (length % 1024) != 0) {
99 length - (length % 1024), length);
100 length -= length % 1024;
133 block->
m = block_b.
m;
143 unsigned int blk_size,
size_t total) {
145 size_t avail = pdu->
max_size - token_options;
146 unsigned int start = num << (blk_size + 4);
147 unsigned int can_use_bert = block->
defined == 0 || block->
bert;
149 assert(start <= total);
150 memset(block, 0,
sizeof(*block));
152 block->
szx = block->
aszx = blk_size;
153 if (can_use_bert && blk_size == 6 && avail >= 1024 && session !=
NULL &&
158 block->
chunk_size = (uint32_t)((avail / 1024) * 1024);
160 block->
chunk_size = (size_t)1 << (blk_size + 4);
161 if (avail < block->chunk_size && (total - start) >= avail) {
167 coap_log_debug(
"not enough space, even the smallest block does not fit (1)\n");
170 new_blk_size =
coap_flsll((
long long)avail) - 5;
173 block->
szx = new_blk_size;
174 block->
num <<= szx - block->
szx;
175 block->
chunk_size = (size_t)1 << (new_blk_size + 4);
186 unsigned char buf[4];
191 start = block->
num << (block->
szx + 4);
192 if (block->
num != 0 && data_length <= start) {
202 block->
szx, data_length))
207 ((block_b.
num << 4) |
220 unsigned char buf[4];
224 start = block->
num << (block->
szx + 4);
225 if (block->
num != 0 && data_length <= start) {
233 block->
szx, data_length))
248 unsigned int block_num,
unsigned char block_szx) {
250 start = block_num << (block_szx + 4);
256 min(len - start, ((
size_t)1 << (block_szx + 4))),
263 unsigned int start = block->
num << (block->
szx + 4);
271 max_size = ((pdu->
max_size - token_options) / 1024) * 1024;
273 max_size = (size_t)1 << (block->
szx + 4);
278 min(len - start, max_size),
293 unsigned char buf[4];
295 int block2_requested = 0;
296#if COAP_SERVER_SUPPORT
298 coap_digest_t digest;
299 coap_digest_ctx_t *dctx =
NULL;
302 memset(&block2, 0,
sizeof(block2));
309 block2_requested = 1;
310 if (block2.
num != 0 && length <= (block2.
num << (block2.
szx + 4))) {
313 length >> (block2.
szx + 4));
321#if COAP_SERVER_SUPPORT
324 dctx = coap_digest_setup();
327 if (request && request->
session &&
331 if (!coap_digest_update(dctx, data, length))
333 if (!coap_digest_final(dctx, &digest))
336 memcpy(&etag, digest.key,
sizeof(etag));
337#if COAP_ETAG_MAX_BYTES != 8
360 if (block2_requested) {
413#if COAP_SERVER_SUPPORT
414 coap_digest_free(dctx);
423 uint32_t block_mode) {
431 uint32_t block_mode) {
437#if ! COAP_Q_BLOCK_SUPPORT
445 size_t max_block_size) {
456 switch (max_block_size) {
467 coap_log_info(
"coap_context_set_max_block_size: Invalid max block size (%" PRIuS ")\n",
472 max_block_size = (
coap_fls((uint32_t)max_block_size >> 4) - 1) & 0x07;
480 const uint8_t *b,
size_t blen) {
481 return alen == blen && (alen == 0 || memcmp(a, b, alen) == 0);
488 uint64_t token_match =
492 LL_FOREACH(session->
lg_xmit, lg_xmit) {
498#if COAP_CLIENT_SUPPORT
529 LL_PREPEND(session->
lg_xmit, lg_xmit);
534#if COAP_CLIENT_SUPPORT
538 lg_crcv = coap_find_lg_crcv(session, pdu);
540 lg_xmit->b.b1.state_token = lg_crcv->state_token;
552#if COAP_CLIENT_SUPPORT
560 ret = coap_cancel_observe_lkd(session, token, type);
576 coap_log_debug(
"** %s: coap_cancel_observe: COAP_BLOCK_USE_LIBCOAP not enabled\n",
581 LL_FOREACH_SAFE(session->lg_crcv, lg_crcv, q) {
582 if (lg_crcv->observe_set) {
583 if ((!token && !lg_crcv->app_token->length) || (token &&
589#if COAP_Q_BLOCK_SUPPORT
595 lg_crcv->obs_token[0] ?
596 lg_crcv->obs_token[0] :
606 lg_crcv->observe_set = 0;
616 if (lg_crcv->o_block_option) {
619 lg_crcv->o_blk_size),
622 if (lg_crcv->obs_data) {
623 coap_add_data_large_request_lkd(session, pdu,
624 lg_crcv->obs_data->length,
625 lg_crcv->obs_data->data,
NULL,
NULL);
627 coap_add_data_large_request_lkd(session, pdu, size, data,
NULL,
NULL);
638#if COAP_Q_BLOCK_SUPPORT
640 if (using_q_block1) {
641 mid = coap_send_q_block1(session, block, pdu, COAP_SEND_INC_PDU);
660 uint64_t token_match =
664 LL_FOREACH(session->lg_crcv, lg_crcv) {
682 lg_crcv = coap_block_new_lg_crcv(session, m_lg_crcv->sent_pdu,
NULL);
684 if (m_lg_crcv->obs_data) {
685 m_lg_crcv->obs_data->ref++;
686 lg_crcv->obs_data = m_lg_crcv->obs_data;
688 LL_PREPEND(session->lg_crcv, lg_crcv);
694#if COAP_OSCORE_SUPPORT
708 lg_crcv = coap_find_lg_crcv(session, pdu);
715 ++lg_crcv->retry_counter);
727 if (!lg_crcv->obs_token) {
729 if (!lg_crcv->obs_token) {
732 lg_crcv->obs_token_cnt = 1;
737 if (lg_crcv->obs_token[0] ==
NULL)
757#if COAP_SERVER_SUPPORT
774 LL_FOREACH(session->
lg_xmit, lg_xmit) {
791 memcmp(lg_xmit->
b.
b2.
rtag, rtag, rtag_length) != 0)
817#if COAP_Q_BLOCK_SUPPORT
823 int have_block_defined = 0;
825 uint8_t max_blk_size;
827 size_t token_options;
830#if COAP_Q_BLOCK_SUPPORT
834#if !COAP_SERVER_SUPPORT
840 coap_log_warn(
"coap_add_data_large: PDU already contains data\n");
848 coap_log_debug(
"** %s: coap_add_data_large: COAP_BLOCK_USE_LIBCOAP not enabled\n",
862#define MAX_BLK_LEN ((1UL << 20) * (1 << (6 + 4)))
863#if UINT_MAX < MAX_BLK_LEN
865#define MAX_BLK_LEN UINT_MAX
873#if COAP_SERVER_SUPPORT
885 coap_digest_t digest;
886 coap_digest_ctx_t *dctx = coap_digest_setup();
892 if (coap_digest_update(dctx, data, length)) {
893 if (coap_digest_final(dctx, &digest)) {
894 memcpy(&etag, digest.key,
sizeof(etag));
895#if COAP_ETAG_MAX_BYTES != 8
901 coap_digest_free(dctx);
921 if (etag == etag_r) {
936#if COAP_Q_BLOCK_SUPPORT
952 LL_FOREACH_SAFE(session->
lg_xmit, lg_xmit, q) {
957#if COAP_CLIENT_SUPPORT
960 LL_DELETE(session->
lg_xmit, lg_xmit);
963 if (!is_mcast && !last_all_sent)
971#if COAP_Q_BLOCK_SUPPORT
972 if (session->
block_mode & COAP_BLOCK_HAS_Q_BLOCK) {
985#if COAP_SERVER_SUPPORT
990 lg_xmit = coap_find_lg_xmit_response(session, request, resource, query);
994 LL_DELETE(session->
lg_xmit, lg_xmit);
1002#if COAP_OSCORE_SUPPORT
1003 if (session->oscore_encryption) {
1011 avail = pdu->
max_size - token_options;
1014#if COAP_OSCORE_SUPPORT
1023 blk_size =
coap_flsll((
long long)avail) - 4 - 1;
1029 if (max_blk_size && blk_size > max_blk_size)
1030 blk_size = max_blk_size;
1034 if (block.
szx < blk_size)
1035 blk_size = block.
szx;
1036 have_block_defined = 1;
1038#if COAP_Q_BLOCK_SUPPORT
1041 if (have_block_defined) {
1043 coap_log_warn(
"Both BlockX and Q-BlockX cannot be set at the same time\n");
1047 if (block.
szx < blk_size)
1048 blk_size = block.
szx;
1049 have_block_defined = 1;
1050 option = alt_option;
1055 if (avail < 16 && ((ssize_t)length > avail || have_block_defined)) {
1057 coap_log_debug(
"not enough space, even the smallest block does not fit (2)\n");
1061 chunk = (size_t)1 << (blk_size + 4);
1062 if ((have_block_defined && block.
num != 0) || single_request ||
1067 if (length >= block.
num * chunk) {
1068#if COAP_SERVER_SUPPORT
1074 (
unsigned int)length),
1088 (block.
num << 4) | (block.
m << 3) | block.
aszx),
1093 if (chunk > length - block.
num * chunk)
1094 rem = length - block.
num * chunk;
1101 }
else if ((have_block_defined && length > chunk) || (ssize_t)length > avail) {
1126 lg_xmit->blk_size = blk_size;
1127 lg_xmit->option = option;
1129 if (!lg_xmit->data_info)
1131 lg_xmit->data_info->ref = 0;
1132 lg_xmit->data_info->data = data;
1133 lg_xmit->data_info->length = length;
1134#if COAP_Q_BLOCK_SUPPORT
1135 lg_xmit->non_timeout_random_ticks =
1138 lg_xmit->data_info->get_func = get_func;
1139 lg_xmit->data_info->release_func = release_func;
1140 lg_xmit->data_info->app_ptr = app_ptr;
1147 if (!lg_xmit->b.b1.app_token)
1155 lg_xmit->b.b1.count = 1;
1157 lg_xmit->b.b1.count);
1166 (
unsigned int)length),
1179 lg_xmit->b.b2.resource = resource;
1182 if (lg_xmit->b.b2.query) {
1183 memcpy(lg_xmit->b.b2.query->s, query->
s, query->
length);
1186 lg_xmit->b.b2.query =
NULL;
1191 sizeof(lg_xmit->b.b2.rtag));
1192 memcpy(lg_xmit->b.b2.rtag,
coap_opt_value(opt), lg_xmit->b.b2.rtag_length);
1193 lg_xmit->b.b2.rtag_set = 1;
1195 lg_xmit->b.b2.rtag_set = 0;
1197 lg_xmit->b.b2.etag = etag;
1198 lg_xmit->b.b2.request_method = request_method;
1205 lg_xmit->b.b2.maxage_expire = 0;
1210 (
unsigned int)length),
1215 blk_size, lg_xmit->data_info->length))
1222 (block.
num << 4) | (block.
m << 3) | block.
aszx),
1230 avail = pdu->
max_size - token_options;
1235#if COAP_OSCORE_SUPPORT
1238 if (avail < (ssize_t)chunk) {
1241 coap_log_warn(
"not enough space, even the smallest block does not fit (3)\n");
1244 blk_size =
coap_flsll((
long long)avail) - 4 - 1;
1245 block.
num = block.
num << (lg_xmit->blk_size - blk_size);
1246 lg_xmit->blk_size = blk_size;
1247 chunk = (size_t)1 << (lg_xmit->blk_size + 4);
1253 (block.
num << 4) | (block.
m << 3) | lg_xmit->blk_size),
1256#if COAP_Q_BLOCK_SUPPORT
1258 lg_xmit->send_blocks.used = 1;
1259 lg_xmit->send_blocks.range[0].end = (uint32_t)((lg_xmit->data_info->length - 1) / chunk);
1263 if (rem > lg_xmit->data_info->length - block.
num * chunk)
1264 rem = lg_xmit->data_info->length - block.
num * chunk;
1266#if COAP_CONSTRAINED_STACK
1268 static uint8_t l_data[1024];
1270 uint8_t l_data[1024];
1274 assert(rem <= 1024);
1275 if (get_func(session, rem, block.
num * chunk, l_data, &l_length, lg_xmit->data_info->app_ptr)) {
1286 lg_xmit->b.b1.bert_size = rem;
1288 lg_xmit->last_block = -1;
1291 LL_PREPEND(session->
lg_xmit,lg_xmit);
1294 if (have_block_defined) {
1298 (0 << 4) | (0 << 3) | blk_size), buf);
1303 (
unsigned int)length),
1309 (
unsigned int)length),
1318 if (get_func(session, length, 0, l_data, &l_length, app_ptr)) {
1339 }
else if (release_func) {
1345#if COAP_CLIENT_SUPPORT
1350 const uint8_t *data,
1357 ret = coap_add_data_large_request_lkd(session, pdu, length, data,
1358 release_func, app_ptr);
1367 const uint8_t *data,
1381 length, data, release_func,
NULL, app_ptr, 0, 0);
1394 ret = coap_add_data_large_request_app_lkd(session, pdu, length,
1395 release_func, get_func, app_ptr);
1415 length,
NULL, release_func, get_func,
1420#if COAP_SERVER_SUPPORT
1427 uint16_t media_type,
1431 const uint8_t *data,
1437 ret = coap_add_data_large_response_lkd(resource, session, request,
1438 response, query, media_type, maxage, etag,
1439 length, data, release_func, app_ptr);
1450 uint16_t media_type,
1454 const uint8_t *data,
1458 unsigned char buf[4];
1460 int block_requested = 0;
1461 int single_request = 0;
1462#if COAP_Q_BLOCK_SUPPORT
1463 uint32_t block_opt = (session->
block_mode & COAP_BLOCK_HAS_Q_BLOCK) ?
1469 memset(&block, 0,
sizeof(block));
1476 block_requested = 1;
1477 if (block.
num != 0 && length <= (block.
num << (block.
szx + 4))) {
1480 length >> (block.
szx + 4));
1485#if COAP_Q_BLOCK_SUPPORT
1487 block_requested = 1;
1488 if (block.
num != 0 && length <= (block.
num << (block.
szx + 4))) {
1491 length >> (block.
szx + 4));
1495 if (!(session->
block_mode & COAP_BLOCK_HAS_Q_BLOCK)) {
1516 if (block_requested) {
1540 query, maxage, etag, length, data,
1541 release_func,
NULL, app_ptr, single_request,
1544 goto error_released;
1554#if COAP_ERROR_PHRASE_LENGTH > 0
1572#if COAP_Q_BLOCK_SUPPORT
1582 LL_FOREACH_SAFE(session->
lg_xmit, lg_xmit, q) {
1586 LL_DELETE(session->
lg_xmit, lg_xmit);
1590 if (*tim_rem > lg_xmit->
last_all_sent + idle_timeout - now) {
1596 if (lg_xmit->
last_sent + partial_timeout <= now) {
1600#if COAP_CLIENT_SUPPORT
1604 LL_DELETE(session->
lg_xmit, lg_xmit);
1607 if (!is_mcast && !last_all_sent)
1611 if (*tim_rem > lg_xmit->
last_sent + partial_timeout - now) {
1612 *tim_rem = lg_xmit->
last_sent + partial_timeout - now;
1621#if COAP_CLIENT_SUPPORT
1622#if COAP_Q_BLOCK_SUPPORT
1627 uint64_t token =
STATE_TOKEN_FULL(lg_crcv->state_token, ++lg_crcv->retry_counter);
1639 pdu->
type = lg_crcv->last_type;
1651 int block_payload_set = -1;
1662 if (lg_crcv->rec_blocks.used &&
1663 (lg_crcv->rec_blocks.used < 2 ||
1666 block = lg_crcv->rec_blocks.range[0].end + 1;
1667 block_size = (size_t)1 << (lg_crcv->szx + 4);
1668 sofar = block * block_size;
1669 if (sofar < lg_crcv->total_len) {
1672 pdu = coap_build_missing_pdu(session, lg_crcv);
1678 (block << 4) | (1 << 3) | lg_crcv->szx),
1686 for (i = 0; i < lg_crcv->rec_blocks.used; i++) {
1687 if (block < (
int)lg_crcv->rec_blocks.range[i].begin &&
1688 lg_crcv->rec_blocks.range[i].begin != 0) {
1691 pdu = coap_build_missing_pdu(session, lg_crcv);
1696 if (block_payload_set == -1)
1698 for (; block < (int)lg_crcv->rec_blocks.range[i].begin &&
1702 (block << 4) | (0 << 3) | lg_crcv->szx),
1706 if (block < (
int)lg_crcv->rec_blocks.range[i].end) {
1707 block = lg_crcv->rec_blocks.range[i].end;
1710 block_size = (size_t)1 << (lg_crcv->szx + 4);
1711 sofar = (block + 1) * block_size;
1712 if (sofar < lg_crcv->total_len) {
1715 pdu = coap_build_missing_pdu(session, lg_crcv);
1719 sofar = (lg_crcv->total_len + block_size - 1)/block_size;
1721 if (block_payload_set == -1)
1723 for (; block < (ssize_t)sofar &&
1727 (block << 4) | (0 << 3) | lg_crcv->szx),
1734 lg_crcv->rec_blocks.retry++;
1735 if (block_payload_set != -1)
1736 lg_crcv->rec_blocks.processing_payload_set = block_payload_set;
1751#if COAP_Q_BLOCK_SUPPORT
1757#if COAP_Q_BLOCK_SUPPORT
1759 session->
block_mode & COAP_BLOCK_HAS_Q_BLOCK)
1765 LL_FOREACH_SAFE(session->lg_crcv, lg_crcv, q) {
1769#if COAP_Q_BLOCK_SUPPORT
1771 size_t scaled_timeout = receive_timeout *
1772 ((size_t)1 << lg_crcv->rec_blocks.retry);
1780 if (lg_crcv->rec_blocks.last_seen + scaled_timeout <= now) {
1783 coap_request_missing_q_block2(session, lg_crcv);
1785 if (*tim_rem > lg_crcv->rec_blocks.last_seen + scaled_timeout - now) {
1786 *tim_rem = lg_crcv->rec_blocks.last_seen + scaled_timeout - now;
1794 if (!lg_crcv->observe_set && lg_crcv->last_used &&
1795 lg_crcv->last_used + partial_timeout <= now) {
1796#if COAP_Q_BLOCK_SUPPORT
1800 LL_DELETE(session->lg_crcv, lg_crcv);
1801 coap_block_delete_lg_crcv(session, lg_crcv);
1802 }
else if (!lg_crcv->observe_set && lg_crcv->last_used) {
1804 if (*tim_rem > lg_crcv->last_used + partial_timeout - now) {
1805 *tim_rem = lg_crcv->last_used + partial_timeout - now;
1814#if COAP_SERVER_SUPPORT
1815#if COAP_Q_BLOCK_SUPPORT
1827 if (lg_srcv->last_token)
1828 coap_add_token(pdu, lg_srcv->last_token->length, lg_srcv->last_token->s);
1839add_408_block(
coap_pdu_t *pdu, uint32_t block) {
1843 assert(block < (1U << 20));
1846 if (block >= (1U << 20)) {
1848 }
else if (block < 24) {
1850 val[0] = (uint8_t)block;
1851 }
else if (block < 0x100) {
1854 val[1] = (uint8_t)block;
1855 }
else if (block < 0x10000) {
1858 val[1] = (uint8_t)((block >> 8) & 0xff);
1859 val[2] = (uint8_t)(block & 0xff);
1863 val[1] = (uint8_t)((block >> 24) & 0xff);
1864 val[2] = (uint8_t)((block >> 16) & 0xff);
1865 val[3] = (uint8_t)((block >> 8) & 0xff);
1866 val[4] = (uint8_t)(block & 0xff);
1882 for (i = 0; i < rec_blocks->
used; i++) {
1883 if (block_num < rec_blocks->range[i].begin)
1885 if (block_num <= rec_blocks->range[i].end)
1891#if COAP_SERVER_SUPPORT
1893check_if_next_block(
coap_rblock_t *rec_blocks, uint32_t block_num) {
1894 if (rec_blocks->
used == 0) {
1895 return block_num == 0 ? 1 : 0;
1897 if (rec_blocks->
range[rec_blocks->
used-1].
end + 1 == block_num)
1914 for (i = 0; i < rec_blocks->
used; i++) {
1915 if (block < rec_blocks->range[i].begin)
1917 if (block < rec_blocks->range[i].end)
1923#if COAP_CLIENT_SUPPORT
1924#if COAP_Q_BLOCK_SUPPORT
1928 if (rec_blocks->
used &&
1930 rec_blocks->processing_payload_set)
1938 if (rec_blocks->
used > 1 &&
1940 rec_blocks->processing_payload_set)
1947#if COAP_SERVER_SUPPORT
1948#if COAP_Q_BLOCK_SUPPORT
1978 uint32_t inc_to_block) {
1981 uint32_t block_size = (uint32_t)1 << (lg_srcv->szx + 4);
1982 uint32_t first_missing;
1983 uint32_t missing_payload;
1984 uint32_t last_payload_block;
1987 uint32_t end_block = ((uint32_t)lg_srcv->total_len + block_size - 1) / block_size - 1;
1991 (int32_t)(inc_to_block /
COAP_MAX_PAYLOADS(session)) == lg_srcv->r_m_payload_set)
1994 if (inc_to_block != end_block) {
1998 if (lg_srcv->rec_blocks.range[0].begin != 0) {
2001 first_missing = lg_srcv->rec_blocks.range[0].end + 1;
2003 if (first_missing > end_block)
2007 if (inc_to_block != end_block && inc_to_block > last_payload_block) {
2008 inc_to_block = last_payload_block;
2012 for (i = 0; i < lg_srcv->rec_blocks.used; i++) {
2013 if (block < (int32_t)lg_srcv->rec_blocks.range[i].begin &&
2014 lg_srcv->rec_blocks.range[i].begin != 0) {
2017 pdu = pdu_408_build(session, lg_srcv);
2022 for (; block < (int32_t)lg_srcv->rec_blocks.range[i].begin; block++) {
2023 if (!add_408_block(pdu, block)) {
2029 if (block < (int32_t)lg_srcv->rec_blocks.range[i].end) {
2030 block = lg_srcv->rec_blocks.range[i].end;
2033 if (inc_to_block == end_block && block < (int32_t)inc_to_block) {
2036 pdu = pdu_408_build(session, lg_srcv);
2041 for (; block <= (int32_t)inc_to_block && count <
COAP_MAX_PAYLOADS(session); block++) {
2042 if (!add_408_block(pdu, block)) {
2051 lg_srcv->rec_blocks.retry++;
2067#if COAP_Q_BLOCK_SUPPORT
2073#if COAP_Q_BLOCK_SUPPORT
2075 session->
block_mode & COAP_BLOCK_HAS_Q_BLOCK)
2081 LL_FOREACH_SAFE(session->lg_srcv, lg_srcv, q) {
2082 if (lg_srcv->dont_timeout) {
2089#if COAP_Q_BLOCK_SUPPORT
2091 size_t scaled_timeout = receive_timeout *
2092 ((size_t)1 << lg_srcv->rec_blocks.retry);
2098 if (lg_srcv->rec_blocks.last_seen + scaled_timeout <= now) {
2099 uint32_t block_size = (size_t)1 << (lg_srcv->szx + 4);
2102 if (!coap_request_missing_q_block1(session, lg_srcv,
2103 ((uint32_t)lg_srcv->total_len + block_size - 1) / block_size - 1))
2106 if (*tim_rem > lg_srcv->rec_blocks.last_seen + scaled_timeout - now) {
2107 *tim_rem = lg_srcv->rec_blocks.last_seen + scaled_timeout - now;
2114 if (lg_srcv->no_more_seen)
2116 if (lg_srcv->last_used && lg_srcv->last_used + partial_timeout <= now) {
2117#if COAP_Q_BLOCK_SUPPORT
2134 if (lg_srcv->last_token)
2135 coap_add_token(pdu, lg_srcv->last_token->length, lg_srcv->last_token->s);
2137 (
const uint8_t *)
"Missing interim block");
2141 LL_DELETE(session->lg_srcv, lg_srcv);
2142 coap_block_delete_lg_srcv(session, lg_srcv);
2143 }
else if (lg_srcv->last_used) {
2145 if (*tim_rem > lg_srcv->last_used + partial_timeout - now) {
2146 *tim_rem = lg_srcv->last_used + partial_timeout - now;
2155#if COAP_Q_BLOCK_SUPPORT
2161 uint32_t delayqueue_cnt,
2163 const uint8_t *ptoken;
2165 size_t ltoken_length;
2169 size_t chunk = ((size_t)1 << (lg_xmit->
blk_size + 4));
2177 block->
num = lg_xmit->send_blocks.range[0].begin;
2179 offset = block->
num * chunk;
2196 (lg_xmit->send_blocks.used > 1 ||
2209 coap_log_debug(
"Q-Block: %s block %d\n", is_first ?
"First" :
"Next", block->
num);
2230 ((block->
num) << 4) |
2251 coap_send_pdu_t send_pdu) {
2254 uint32_t delayqueue_cnt = 0;
2264 if (send_pdu == COAP_SEND_INC_PDU) {
2270 blocks_delete_entry(&lg_xmit->send_blocks, l_block.
num);
2283 (send_pdu == COAP_SEND_INC_PDU ? 1 : 0);
2284 LL_FOREACH(session->
delayqueue, delayqueue) {
2291 if (send_pdu == COAP_SEND_INC_PDU) {
2296 blocks_delete_entry(&lg_xmit->send_blocks, l_block.
num);
2312 block_pdu = coap_next_block_to_send(session, lg_xmit, &l_block, pdu, delayqueue_cnt, 1);
2317 while (block_pdu && lg_xmit->send_blocks.used) {
2321#if COAP_CONSTRAINED_STACK
2323 static uint8_t l_data[1024];
2325 uint8_t l_data[1024];
2328 size_t chunk = ((size_t)1 << (lg_xmit->
blk_size + 4));
2331 assert(chunk <= 1024);
2333 block.
num * chunk, l_data, &l_length,
2358 blocks_delete_entry(&lg_xmit->send_blocks, block.
num);
2363 t_pdu = coap_next_block_to_send(session, lg_xmit, &l_block, block_pdu, delayqueue_cnt, 0);
2394#if COAP_CLIENT_SUPPORT
2407 LL_FOREACH_SAFE(session->
lg_xmit, lg_xmit, q) {
2408 coap_tick_t non_timeout = lg_xmit->non_timeout_random_ticks;
2412 if (now <= non_timeout) {
2414 *tim_rem = non_timeout - now;
2417 timed_out = now - non_timeout;
2419 if (lg_xmit->
last_payload && lg_xmit->send_blocks.used) {
2423 size_t chunk = (size_t)1 << (lg_xmit->
blk_size + 4);
2426 coap_log_debug(
"Q-Block: Timeout - start next MAX_PAYLOADS_SET\n");
2427 memset(&block, 0,
sizeof(block));
2428 block.
num = lg_xmit->send_blocks.range[0].begin;
2429 offset = block.
num * chunk;
2432 coap_send_q_blocks(session, lg_xmit, block, lg_xmit->
sent_pdu, COAP_SEND_SKIP_PDU);
2433 if (*tim_rem > non_timeout) {
2434 *tim_rem = non_timeout;
2448 LL_DELETE(session->
lg_xmit, lg_xmit);
2463#if COAP_SERVER_SUPPORT
2476 LL_FOREACH_SAFE(session->
lg_xmit, lg_xmit, q) {
2477 coap_tick_t non_timeout = lg_xmit->non_timeout_random_ticks;
2479 if (now <= non_timeout) {
2481 *tim_rem = non_timeout - now;
2484 timed_out = now - non_timeout;
2486 if (lg_xmit->
last_payload && lg_xmit->send_blocks.used) {
2490 size_t chunk = (size_t)1 << (lg_xmit->
blk_size + 4);
2493 memset(&block, 0,
sizeof(block));
2494 block.
num = lg_xmit->send_blocks.range[0].begin;
2495 offset = block.
num * chunk;
2499 coap_send_q_blocks(session, lg_xmit, block, lg_xmit->
sent_pdu, COAP_SEND_SKIP_PDU);
2500 if (*tim_rem > non_timeout) {
2501 *tim_rem = non_timeout;
2515 LL_DELETE(session->
lg_xmit, lg_xmit);
2519 if (*tim_rem > lg_xmit->
last_all_sent + 4 * non_timeout - now) {
2531#if COAP_CLIENT_SUPPORT
2545 if (opt && lg_crcv) {
2546 int observe_action = -1;
2553 if (lg_crcv->obs_token_cnt <= block_num) {
2557 (block_num + 1) *
sizeof(lg_crcv->obs_token[0]));
2560 lg_crcv->obs_token = tmp;
2561 for (i = lg_crcv->obs_token_cnt; i < block_num + 1; i++) {
2562 lg_crcv->obs_token[i] =
NULL;
2567 if (lg_crcv->obs_token_cnt <= block_num)
2568 lg_crcv->obs_token_cnt = block_num + 1;
2571 if (lg_crcv->obs_token[block_num] ==
NULL)
2575 if (block_num < lg_crcv->obs_token_cnt) {
2576 return lg_crcv->obs_token[block_num];
2583#if COAP_Q_BLOCK_SUPPORT
2588 coap_send_pdu_t send_request) {
2591 uint64_t token_match =
2595 LL_FOREACH(session->
lg_xmit, lg_xmit) {
2604 return coap_send_q_blocks(session, lg_xmit, block, request, send_request);
2609#if COAP_SERVER_SUPPORT
2610#if COAP_Q_BLOCK_SUPPORT
2621 coap_send_pdu_t send_response) {
2626 LL_FOREACH(session->
lg_xmit, lg_xmit) {
2634 return coap_send_q_blocks(session, lg_xmit, block, response, send_response);
2644 if (data_info->
ref > 0) {
2656#if COAP_CLIENT_SUPPORT
2657#if COAP_Q_BLOCK_SUPPORT
2690 11, (
const uint8_t *)
".well-known");
2692 4, (
const uint8_t *)
"core");
2705 (0 << 4) | (0 << 3) | 0),
2730 if (lg_crcv ==
NULL)
2733 coap_log_debug(
"** %s: lg_crcv %p initialized - stateless token xxxxx%011llx\n",
2737 lg_crcv->initial = 1;
2755 const uint8_t *data;
2758 if (data_len < lg_xmit->data_info->length) {
2769 if (!lg_crcv->app_token) {
2770 coap_block_delete_lg_crcv(session, lg_crcv);
2776 lg_crcv->retry_counter = 1;
2777 lg_crcv->state_token = state_token;
2784 new_token = track_fetch_observe(pdu, lg_crcv, 0, &pdu->
actual_token);
2792 lg_crcv->o_blk_size = block.
aszx;
2803#if (COAP_MAX_LOGGING_LEVEL < _COAP_LOG_DEBUG)
2806 if (lg_crcv ==
NULL)
2809 if (lg_crcv->ref > 0) {
2815 if (lg_crcv->obs_data) {
2817 lg_crcv->obs_data =
NULL;
2823 for (i = 0; i < lg_crcv->obs_token_cnt; i++) {
2832#if COAP_SERVER_SUPPORT
2836#if (COAP_MAX_LOGGING_LEVEL < _COAP_LOG_DEBUG)
2839 if (lg_srcv ==
NULL)
2842 if (lg_srcv->ref > 0) {
2859 if (lg_xmit ==
NULL)
2862 if (lg_xmit->
ref > 0) {
2879#if COAP_SERVER_SUPPORT
2886add_block_send(uint32_t num,
int is_continue, send_track *out_blocks,
2887 uint32_t *count, uint32_t max_count) {
2890 for (i = 0; i < *count && *count < max_count; i++) {
2891 if (num == out_blocks[i].num)
2893 else if (num < out_blocks[i].num) {
2895 memmove(&out_blocks[i], &out_blocks[i+1], *count - i -1);
2896 out_blocks[i].num = num;
2897 out_blocks[i].is_continue = is_continue;
2902 if (*count < max_count) {
2903 out_blocks[i].num = num;
2904 out_blocks[i].is_continue = is_continue;
2937 uint16_t block_opt = 0;
2938 send_track *out_blocks =
NULL;
2939 const char *error_phrase;
2944 uint32_t request_cnt, i;
2947#if COAP_Q_BLOCK_SUPPORT
2952 if (!(session->
block_mode & COAP_BLOCK_HAS_Q_BLOCK))
2959 coap_log_warn(
"Block2 and Q-Block2 cannot be in the same request\n");
2960 coap_add_data(response,
sizeof(
"Both Block2 and Q-Block2 invalid")-1,
2961 (
const uint8_t *)
"Both Block2 and Q-Block2 invalid");
2963 goto skip_app_handler;
2970 if (block.
num == 0) {
2971#if COAP_Q_BLOCK_SUPPORT
2981 lg_xmit = coap_find_lg_xmit_response(session, pdu, resource, query);
2982 if (lg_xmit ==
NULL)
2985#if COAP_Q_BLOCK_SUPPORT
2991 goto internal_issue;
3004 if (etag == lg_xmit->
b.
b2.
etag) {
3017 chunk = (size_t)1 << (lg_xmit->
blk_size + 4);
3020 coap_log_debug(
"found Block option, block is BERT, block nr. %u, M %d\n",
3021 block.
num, block.
m);
3023 coap_log_debug(
"found Block option, block size is %u, block nr. %u, M %d\n",
3024 1 << (block.
szx + 4), block.
num, block.
m);
3027 if (block.
num == 0) {
3033 block.
num = (uint32_t)((chunk >> (block.
szx + 4)) - 1);
3034 chunk = (size_t)1 << (lg_xmit->
blk_size + 4);
3035#if COAP_Q_BLOCK_SUPPORT
3036 lg_xmit->send_blocks.range[0].begin = block.
num;
3037 lg_xmit->send_blocks.range[0].end = (uint32_t)((lg_xmit->
data_info->
length - 1) / chunk);
3040 coap_log_debug(
"new Block size is %u, block number %u completed\n",
3041 (1 << (block.
szx + 4)), block.
num);
3043 coap_log_debug(
"ignoring request to increase Block size from %u to %u\n",
3047 coap_log_debug(
"ignoring request to change Block size from %u to %u\n",
3048 (1 << (lg_xmit->
blk_size + 4)), (1 << (block.
szx + 4)));
3060#if COAP_Q_BLOCK_SUPPORT
3073 sizeof(
"Changing blocksize during request invalid")-1,
3074 (
const uint8_t *)
"Changing blocksize during request invalid");
3076 goto skip_app_handler;
3078#if COAP_Q_BLOCK_SUPPORT
3083 goto call_app_handler;
3087 num + i < max_block; i++) {
3088 add_block_send(num + i, 1, out_blocks, &request_cnt,
3096 num + i < max_block; i++) {
3097 add_block_send(num + i, 0, out_blocks, &request_cnt,
3102 add_block_send(num, 0, out_blocks, &request_cnt,
3105 add_block_send(num, 0, out_blocks, &request_cnt, 1);
3109 if (request_cnt == 0) {
3112 out_blocks[0].num = 0;
3113 out_blocks[0].is_continue = 0;
3117 for (i = 0; i < request_cnt; i++) {
3121 block.
num = out_blocks[i].num;
3123 if (i + 1 < request_cnt) {
3130 if (out_blocks[i].is_continue) {
3142 goto internal_issue;
3145 if (out_blocks[i].is_continue)
3160 goto internal_issue;
3167 offset = block.
num * chunk;
3171 ((out_pdu->
max_size - token_options) /1024) * 1024;
3182 goto internal_issue;
3184 if (!(offset + chunk < lg_xmit->data_info->length)) {
3192 if (!(offset + chunk < lg_xmit->data_info->length)) {
3210 goto internal_issue;
3218 goto internal_issue;
3220 if (i + 1 < request_cnt) {
3230 goto skip_app_handler;
3231#if COAP_Q_BLOCK_SUPPORT
3241 (
const uint8_t *)error_phrase);
3252#if COAP_Q_BLOCK_SUPPORT
3254blocks_delete_entry(
coap_rblock_t *rec_blocks, uint32_t block_num) {
3262 for (i = 0; i < rec_blocks->
used; i++) {
3263 if (block_num >= rec_blocks->
range[i].
begin &&
3264 block_num <= rec_blocks->range[i].end) {
3266 if (block_num == rec_blocks->
range[i].
begin) {
3267 if (block_num == rec_blocks->
range[i].
end) {
3269 if (i + 1 < rec_blocks->
used) {
3270 memmove(&rec_blocks->
range[i], &rec_blocks->
range[i+1],
3271 (rec_blocks->
used - i) *
sizeof(rec_blocks->
range[0]));
3277 }
else if (block_num == rec_blocks->
range[i].
end) {
3282 if (i == rec_blocks->
used)
3284 memmove(&rec_blocks->
range[i], &rec_blocks->
range[i+1],
3285 sizeof(rec_blocks->
range[i]) * (rec_blocks->
used - i));
3292 memmove(&rec_blocks->
range[i+1], &rec_blocks->
range[i],
3293 (rec_blocks->
used - i) *
sizeof(rec_blocks->
range[0]));
3294 rec_blocks->
range[i].
end = block_num - 1;
3295 rec_blocks->
range[i+1].
begin = block_num + 1;
3316 rec_blocks->
retry = 0;
3318 for (i = 0; i < rec_blocks->
used; i++) {
3319 if (block_num >= rec_blocks->
range[i].
begin &&
3320 block_num <= rec_blocks->range[i].end)
3323 if (block_num < rec_blocks->range[i].begin) {
3324 if (block_num + 1 == rec_blocks->
range[i].
begin) {
3331 memmove(&rec_blocks->
range[i+1], &rec_blocks->
range[i],
3332 (rec_blocks->
used - i) *
sizeof(rec_blocks->
range[0]));
3338 if (block_num == rec_blocks->
range[i].
end + 1) {
3339 rec_blocks->
range[i].
end = block_num;
3340 if (i + 1 < rec_blocks->
used) {
3341 if (rec_blocks->
range[i+1].
begin == block_num + 1) {
3344 if (i+2 < rec_blocks->
used) {
3345 memmove(&rec_blocks->
range[i+1], &rec_blocks->
range[i+2],
3346 (rec_blocks->
used - (i+2)) *
sizeof(rec_blocks->
range[0]));
3354 if (i == rec_blocks->
used) {
3369#if COAP_SERVER_SUPPORT
3389 const uint8_t *data =
NULL;
3394 uint16_t block_option = 0;
3401 const uint8_t *rtag;
3402 uint32_t max_block_szx;
3404 unsigned int saved_num;
3405 size_t saved_offset;
3406 int lg_srcv_is_refed = 0;
3407#if COAP_Q_BLOCK_SUPPORT
3408 int request_missing = 0;
3412 *pfree_lg_srcv =
NULL;
3419#if COAP_Q_BLOCK_SUPPORT
3422 coap_add_data(response,
sizeof(
"Block1 + Q-Block1 together")-1,
3423 (
const uint8_t *)
"Block1 + Q-Block1 together");
3425 goto skip_app_handler;
3429#if COAP_Q_BLOCK_SUPPORT
3435 if (!block_option ||
3449 goto skip_app_handler;
3451 goto call_app_handler;
3466#if COAP_Q_BLOCK_SUPPORT
3469 coap_log_info(
"Q-Block1: Size1 and RTag options required\n");
3471 goto skip_app_handler;
3475 rtag_length =
min(rtag_length, 8);
3486 goto skip_app_handler;
3494 if (max_block_szx == 0 || max_block_szx > block.
szx) {
3495 max_block_szx = block.
szx;
3497 max_body = ((1UL << 20) * (1 << (max_block_szx + 4)));
3501 (total > max_body)) {
3506 if (max_body_size == 0 || max_body < max_body_size) {
3507 max_body_size = max_body;
3514 snprintf(buf,
sizeof(buf),
"Max body size %" PRIu32, max_body_size);
3518 goto skip_app_handler;
3521 offset = block.
num << (block.
szx + 4);
3524#
if COAP_Q_BLOCK_SUPPORT
3543 if (total < (length + offset + (block.
m ? 1 : 0)))
3544 total = length + offset + (block.
m ? 1 : 0);
3546 *added_block = block.
m;
3548 goto call_app_handler;
3554 LL_FOREACH(session->lg_srcv, lg_srcv) {
3555 if (rtag_opt || lg_srcv->rtag_set == 1) {
3556 if (!(rtag_opt && lg_srcv->rtag_set == 1))
3558 if (lg_srcv->rtag_length != rtag_length ||
3559 memcmp(lg_srcv->rtag, rtag, rtag_length) != 0)
3562 if (resource == lg_srcv->resource) {
3565 if ((lg_srcv->resource == context->unknown_resource ||
3566 resource == context->proxy_uri_resource) &&
3573 (
const uint8_t *)
"Missing block 0");
3575 goto skip_app_handler;
3581 if (lg_srcv ==
NULL) {
3583 (
const uint8_t *)
"Memory issue");
3585 goto skip_app_handler;
3590 lg_srcv->resource = resource;
3591 if (resource == context->unknown_resource ||
3592 resource == context->proxy_uri_resource)
3594 lg_srcv->content_format = fmt;
3595 lg_srcv->total_len = total;
3597 if (!block.
bert && block.
num == 0 && max_block_szx != 0 &&
3598 max_block_szx < block.
szx) {
3599 lg_srcv->szx = max_block_szx;
3601 lg_srcv->szx = block.
szx;
3603 lg_srcv->block_option = block_option;
3606 memcpy(lg_srcv->observe,
coap_opt_value(observe), lg_srcv->observe_length);
3607 lg_srcv->observe_set = 1;
3610 lg_srcv->rtag_length = (uint8_t)rtag_length;
3611 memcpy(lg_srcv->rtag,
coap_opt_value(rtag_opt), lg_srcv->rtag_length);
3612 lg_srcv->rtag_set = 1;
3614 lg_srcv->body_data =
NULL;
3615#if COAP_Q_BLOCK_SUPPORT
3616 lg_srcv->r_m_payload_set = -1;
3618 LL_PREPEND(session->lg_srcv, lg_srcv);
3621 coap_lg_srcv_reference_lkd(lg_srcv);
3622 lg_srcv_is_refed = 1;
3626 !check_if_next_block(&lg_srcv->rec_blocks, block.
num)) {
3628 (
const uint8_t *)
"Missing interim block");
3630 goto skip_app_handler;
3633 if (fmt != lg_srcv->content_format) {
3634 coap_add_data(response,
sizeof(
"Content-Format mismatch")-1,
3635 (
const uint8_t *)
"Content-Format mismatch");
3640#if COAP_Q_BLOCK_SUPPORT
3642 if (total != lg_srcv->total_len) {
3644 (
const uint8_t *)
"Size1 mismatch");
3654 lg_srcv->last_type = pdu->
type;
3657 saved_num = block.
num;
3658 saved_offset = offset;
3660 while (offset < saved_offset + length) {
3661 uint32_t block_m = block.
m;
3669 if (block.
bert && offset + 1024 < saved_offset + length)
3678#if COAP_Q_BLOCK_SUPPORT
3680 request_missing = 1;
3688 offset = block.
num << (block.
szx + 4);
3693#if COAP_Q_BLOCK_SUPPORT
3694 if (request_missing) {
3695 coap_request_missing_q_block1(session, lg_srcv, block.
num);
3696 goto skip_app_handler;
3702#if COAP_Q_BLOCK_SUPPORT
3703 lg_srcv->rec_blocks.processing_payload_set =
3706 if (lg_srcv->total_len < saved_offset + length) {
3707 lg_srcv->total_len = saved_offset + length;
3710#define USE_BLOCK_DATA_HANDLER (context && context->block_data_cb && \
3711 !resource->is_proxy_uri && \
3712 !resource->is_reverse_proxy && \
3713 ((session->block_mode & COAP_SINGLE_BLOCK_OR_Q) || block.bert) && \
3714 (resource->flags & COAP_RESOURCE_USE_BLOCK_DATA_HANDLER))
3716 if (USE_BLOCK_DATA_HANDLER) {
3721 &lg_srcv->body_data,
3722 length, data, saved_offset,
3723 lg_srcv->total_len));
3726 goto skip_app_handler;
3730 saved_offset, lg_srcv->total_len);
3731 if (!lg_srcv->body_data) {
3733 (
const uint8_t *)
"Memory issue");
3735 goto skip_app_handler;
3739#if COAP_Q_BLOCK_SUPPORT
3741 goto q_block_1_check;
3763 goto skip_app_handler;
3765#if COAP_Q_BLOCK_SUPPORT
3775#if COAP_Q_BLOCK_SUPPORT
3780 if (lg_srcv->rec_blocks.used == 1 &&
3784 if (block.
num != lg_srcv->rec_blocks.range[0].end) {
3786 saved_num = block.
num = lg_srcv->rec_blocks.range[0].end;
3788 }
else if (lg_srcv->rec_blocks.used > 1 &&
3790 lg_srcv->rec_blocks.range[lg_srcv->rec_blocks.used-1].begin <
3791 lg_srcv->rec_blocks.range[lg_srcv->rec_blocks.used-1].end &&
3792 (lg_srcv->rec_blocks.range[lg_srcv->rec_blocks.used-1].end %
COAP_MAX_PAYLOADS(session)) + 1
3799 coap_request_missing_q_block1(session, lg_srcv, block.
num);
3800 goto skip_app_handler;
3801 }
else if (lg_srcv->rec_blocks.used > 1 &&
3809 coap_request_missing_q_block1(session, lg_srcv, block.
num);
3810 goto skip_app_handler;
3815 goto skip_app_handler;
3819 goto skip_app_handler;
3825 if (!block.
bert && saved_num == 0 && max_block_szx != 0 &&
3826 max_block_szx < block.
aszx) {
3827 block.
aszx = max_block_szx;
3858 LL_FOREACH(session->lg_srcv, sg) {
3859 if (lg_srcv == sg) {
3865 goto skip_app_handler;
3868 if (lg_srcv->last_token) {
3869 coap_update_token(response, lg_srcv->last_token->length, lg_srcv->last_token->s);
3877#if COAP_Q_BLOCK_SUPPORT
3882 lg_srcv->no_more_seen = 1;
3896#if COAP_Q_BLOCK_SUPPORT
3898 coap_request_missing_q_block1(session, lg_srcv, block.
num);
3902 goto skip_app_handler;
3912 if (lg_srcv->observe_set) {
3914 lg_srcv->observe_length, lg_srcv->observe);
3917 if (lg_srcv->body_data) {
3926 if (USE_BLOCK_DATA_HANDLER) {
3935 lg_srcv->dont_timeout = 1;
3936 *pfree_lg_srcv = lg_srcv;
3939 if (lg_srcv_is_refed)
3940 coap_lg_srcv_release_lkd(session, lg_srcv);
3944 LL_DELETE(session->lg_srcv, lg_srcv);
3945 coap_block_delete_lg_srcv(session, lg_srcv);
3948 if (lg_srcv_is_refed)
3949 coap_lg_srcv_release_lkd(session, lg_srcv);
3954#if COAP_CLIENT_SUPPORT
3955#if COAP_Q_BLOCK_SUPPORT
3957derive_cbor_value(
const uint8_t **bp,
size_t rem_len) {
3958 uint32_t value = **bp & 0x1f;
3962 }
else if (value == 24) {
3964 return (uint32_t)-1;
3968 }
else if (value == 25) {
3970 return (uint32_t)-1;
3978 return (uint32_t)-1;
3979 value = (uint32_t)(**bp) << 24;
3981 value |= **bp << 16;
3999 if (sent || lg_xmit || lg_crcv) {
4003 const uint8_t *data;
4013 }
else if (lg_xmit) {
4016 size_t blk_size = (size_t)1 << (lg_xmit->
blk_size + 4);
4017 size_t offset = (lg_xmit->
last_block + 1) * blk_size;
4020 data_len = (lg_xmit->
data_info->
length - offset) > blk_size ? blk_size :
4021 lg_xmit->data_info->length - offset;
4024 sent = lg_crcv->sent_pdu;
4033 ++lg_crcv->retry_counter);
4047 track_fetch_observe(echo_pdu, lg_crcv, 0, &echo_pdu->
actual_token);
4048#if COAP_OSCORE_SUPPORT
4049 if (session->oscore_encryption &&
4056 lg_crcv->state_token = token;
4106 int lg_crcv_is_refed = 0;
4111 size_t chunk = (size_t)1 << (lg_xmit->
blk_size + 4);
4114 lg_crcv = coap_find_lg_crcv(session, rcvd);
4117 coap_lg_crcv_reference_lkd(lg_crcv);
4118 lg_crcv_is_refed = 1;
4128 coap_log_debug(
"found Block option, block size is %u, block nr. %u\n",
4129 1 << (block.
szx + 4), block.
num);
4135 1 << (block.
szx + 4), 1 << (lg_xmit->
blk_size + 4));
4141 block.
num = (uint32_t)((chunk >> (block.
szx + 4)) - 1);
4142 chunk = (size_t)1 << (lg_xmit->
blk_size + 4);
4143#if COAP_Q_BLOCK_SUPPORT
4144 lg_xmit->send_blocks.range[0].begin = block.
num;
4145 lg_xmit->send_blocks.range[0].end = (uint32_t)((lg_xmit->
data_info->
length -1) / chunk);
4148 coap_log_debug(
"new Block size is %u, block number %u completed\n",
4149 1 << (block.
szx + 4), block.
num);
4154 track_echo(session, rcvd);
4155#if COAP_Q_BLOCK_SUPPORT
4158 coap_send_q_blocks(session, lg_xmit, block, lg_xmit->
sent_pdu, COAP_SEND_SKIP_PDU);
4159 goto skip_app_handler;
4174 goto skip_app_handler;
4179 if ((block.
num + 1) * chunk < lg_xmit->data_info->length) {
4195 new_token = track_fetch_observe(lg_xmit->
sent_pdu, lg_crcv, block.
num + 1,
4198 assert(len <=
sizeof(buf));
4200 memcpy(buf, new_token->
s, len);
4219 offset = block.
num * chunk;
4221 size_t token_options = pdu->
data ? (size_t)(pdu->
data - pdu->
token) :
4224 ((pdu->
max_size - token_options) /1024) * 1024;
4236#if COAP_CONSTRAINED_STACK
4238 static uint8_t l_data[1024];
4240 uint8_t l_data[1024];
4244 assert(chunk <= 1024);
4246 block.
num * chunk, l_data, &l_length,
4261#if COAP_Q_BLOCK_SUPPORT
4264 if (coap_send_q_block1(session, block, pdu,
4267 goto skip_app_handler;
4274 goto skip_app_handler;
4284 int observe_action = -1;
4287 goto lg_xmit_finished;
4297 goto lg_xmit_finished;
4303 goto call_app_handler;
4305 goto lg_xmit_finished;
4307 if (check_freshness(session, rcvd, sent, lg_xmit,
NULL))
4308 goto skip_app_handler;
4309#if COAP_Q_BLOCK_SUPPORT
4314 goto skip_app_handler;
4318 const uint8_t *data;
4323 uint16_t fmt = fmt_opt ?
4333 coap_log_debug(
"Unexpected 4.08 - protocol violation - ignore\n");
4334 goto skip_app_handler;
4339 const uint8_t *bp = data;
4342 for (i = 0; (bp < data + length) &&
4344 if ((*bp & 0xc0) != 0x00)
4346 block.
num = derive_cbor_value(&bp, data + length - bp);
4348 if (block.
num > (1 << 20) -1)
4350 block.
m = (block.
num + 1) * chunk < lg_xmit->data_info->length;
4355 if (lg_xmit->send_blocks.used) {
4357 block.
num = lg_xmit->send_blocks.range[0].begin;
4358 block.
m = (block.
num + 1) * chunk < lg_xmit->data_info->length;
4359 coap_send_q_blocks(session, lg_xmit, block, lg_xmit->
sent_pdu, COAP_SEND_MISSING);
4361 goto skip_app_handler;
4364 coap_log_info(
"Invalid application/missing-blocks+cbor-seq\n");
4367 goto lg_xmit_finished;
4369 goto call_app_handler;
4381 lg_crcv->retry_counter = lg_xmit->
b.
b1.
count;
4392 lg_crcv->sent_pdu->lg_xmit = 0;
4404 LL_DELETE(session->
lg_xmit, lg_xmit);
4408 if (lg_crcv_is_refed)
4409 coap_lg_crcv_release_lkd(session, lg_crcv);
4413 if (lg_crcv_is_refed)
4414 coap_lg_crcv_release_lkd(session, lg_crcv);
4427 const uint8_t *data,
size_t offset,
size_t total) {
4440 const uint8_t *data,
size_t offset,
size_t total) {
4443 if (body_data ==
NULL && total) {
4446 if (body_data ==
NULL)
4450 if (SIZE_MAX - length < 8 || offset > SIZE_MAX - length - 8) {
4456 if (offset + length <= total && body_data->length >= total) {
4457 memcpy(&body_data->
s[offset], data, length);
4473 memcpy(&body_data->
s[offset], data, length);
4482#if COAP_CLIENT_SUPPORT
4502#if COAP_Q_BLOCK_SUPPORT
4506 uint16_t block_opt = 0;
4508 int ack_rst_sent = 0;
4512 memset(&block, 0,
sizeof(block));
4513#if COAP_Q_BLOCK_SUPPORT
4514 memset(&qblock, 0,
sizeof(qblock));
4516 lg_crcv = coap_find_lg_crcv(session, rcvd);
4524 const uint8_t *data;
4527 size_t size2 = size_opt ?
4539#if COAP_Q_BLOCK_SUPPORT
4542 coap_log_warn(
"Both Block1 and Q-Block1 not supported in a response\n");
4548 if (!(session->
block_mode & COAP_BLOCK_HAS_Q_BLOCK)) {
4553 track_echo(session, rcvd);
4554 if (have_block && (block.
m || length)) {
4558 uint16_t fmt = fmt_opt ?
4565 size_t saved_offset;
4568#if COAP_Q_BLOCK_SUPPORT
4571 coap_log_info(
"Q-Block2: Size2 and ETag options required\n");
4588 goto expire_lg_crcv;
4591 chunk = (size_t)1 << (block.
szx + 4);
4592 offset = block.
num * chunk;
4593 if (size2 < (offset + length)) {
4595 size2 = offset + length + 1;
4597 size2 = offset + length;
4599 saved_offset = offset;
4601 if (lg_crcv->initial) {
4602#if COAP_Q_BLOCK_SUPPORT
4605 lg_crcv->initial = 0;
4606 if (lg_crcv->body_data) {
4608 lg_crcv->body_data =
NULL;
4611 lg_crcv->etag_length = (uint8_t)
min(
coap_opt_length(etag_opt),
sizeof(lg_crcv->etag));
4612 memcpy(lg_crcv->etag,
coap_opt_value(etag_opt), lg_crcv->etag_length);
4613 lg_crcv->etag_set = 1;
4615 lg_crcv->etag_set = 0;
4617 lg_crcv->total_len = size2;
4618 lg_crcv->content_format = fmt;
4619 lg_crcv->szx = block.
szx;
4620 lg_crcv->block_option = block_opt;
4621 lg_crcv->last_type = rcvd->
type;
4622 lg_crcv->rec_blocks.used = 0;
4623 lg_crcv->rec_blocks.total_blocks = 0;
4624#if COAP_Q_BLOCK_SUPPORT
4625 lg_crcv->rec_blocks.processing_payload_set = 0;
4628 if (lg_crcv->total_len < size2)
4629 lg_crcv->total_len = size2;
4633 uint8_t max_block_szx;
4636 if (max_block_szx == 0 || max_block_szx > block.
szx) {
4637 max_block_szx = block.
szx;
4639 max_body = ((1UL << 20) * (1 << (max_block_szx + 4)));
4643 (size2 > max_body)) {
4646 if (max_body_size == 0 || max_body < max_body_size) {
4647 max_body_size = max_body;
4659 lg_crcv->etag, lg_crcv->etag_length)) {
4663 ++lg_crcv->retry_counter);
4667#if COAP_Q_BLOCK_SUPPORT
4672 coap_log_warn(
"Data body updated during receipt - new request started\n");
4676 lg_crcv->initial = 1;
4678 lg_crcv->body_data =
NULL;
4691 (0 << 4) | (0 << 3) | block.
aszx),
4697 goto skip_app_handler;
4699 }
else if (lg_crcv->etag_set) {
4705 if (fmt != lg_crcv->content_format) {
4709#if COAP_Q_BLOCK_SUPPORT
4712 size2, lg_crcv->total_len);
4716 if (block.
num == 0) {
4722 memcpy(lg_crcv->observe,
coap_opt_value(obs_opt), lg_crcv->observe_length);
4723 lg_crcv->observe_set = 1;
4725 lg_crcv->observe_set = 0;
4729 while (offset < saved_offset + length) {
4731#if COAP_Q_BLOCK_SUPPORT
4735 coap_log_debug(
"found Block option, block size is %u, block nr. %u\n",
4736 1 << (block.
szx + 4), block.
num);
4743#if COAP_Q_BLOCK_SUPPORT
4745 if (lg_crcv->rec_blocks.used > 1 &&
4746 (block.
num == lg_crcv->rec_blocks.range[lg_crcv->rec_blocks.used-1].end ||
4747 block.
num == lg_crcv->rec_blocks.range[lg_crcv->rec_blocks.used-1].end - 1) &&
4748 lg_crcv->rec_blocks.range[lg_crcv->rec_blocks.used-1].begin <
4749 lg_crcv->rec_blocks.range[lg_crcv->rec_blocks.used-1].end &&
4750 (lg_crcv->rec_blocks.range[lg_crcv->rec_blocks.used-1].end %
COAP_MAX_PAYLOADS(session)) + 1
4757 coap_request_missing_q_block2(session, lg_crcv);
4758 }
else if (lg_crcv->rec_blocks.used &&
4759 this_payload_set > lg_crcv->rec_blocks.processing_payload_set &&
4760 this_payload_set != lg_crcv->rec_blocks.latest_payload_set) {
4761 coap_request_missing_q_block2(session, lg_crcv);
4764 lg_crcv->rec_blocks.latest_payload_set = this_payload_set;
4770 offset = block.
num << (block.
szx + 4);
4776 if (updated_block) {
4783 if (size2 < saved_offset + length) {
4784 size2 = saved_offset + length;
4791 &lg_crcv->body_data,
4793 saved_offset, size2));
4799 saved_offset, size2);
4800 if (lg_crcv->body_data ==
NULL) {
4813#if COAP_Q_BLOCK_SUPPORT
4819 if (check_all_blocks_in_for_payload_set(session,
4820 &lg_crcv->rec_blocks)) {
4821 block.
num = lg_crcv->rec_blocks.range[0].end;
4823 lg_crcv->rec_blocks.processing_payload_set =
4825 if (check_any_blocks_next_payload_set(session,
4826 &lg_crcv->rec_blocks)) {
4828 coap_request_missing_q_block2(session, lg_crcv);
4829 goto skip_app_handler;
4834 goto skip_app_handler;
4838 goto skip_app_handler;
4862 ((block.
num + 1) << 4) |
4863 (block.
m << 3) | block.
aszx),
4868 coap_add_data_large_internal(session,
NULL, pdu,
NULL,
NULL, -1, 0, length, data,
NULL,
NULL,
NULL,
4873 goto skip_app_handler;
4876 goto skip_app_handler;
4881#if COAP_Q_BLOCK_SUPPORT
4883 lg_crcv->total_len : size2;
4892 if (lg_crcv->app_token)
4894 lg_crcv->app_token->s);
4897 goto call_app_handler;
4899#if COAP_Q_BLOCK_SUPPORT
4905 if (lg_crcv->observe_set) {
4907 lg_crcv->observe_length, lg_crcv->observe);
4909 rcvd->
body_data = lg_crcv->body_data ? lg_crcv->body_data->s :
NULL;
4910#if COAP_Q_BLOCK_SUPPORT
4919 lg_crcv->total_len : saved_offset + length;
4927#if COAP_Q_BLOCK_SUPPORT
4929 lg_crcv->total_len : size2;
4942 if (lg_crcv->app_token)
4944 lg_crcv->app_token->s);
4947 body_free = lg_crcv->body_data;
4948 lg_crcv->body_data =
NULL;
4952 if (lg_crcv->observe_set == 0) {
4954 LL_DELETE(session->lg_crcv, lg_crcv);
4955 coap_block_delete_lg_crcv(session, lg_crcv);
4956 goto skip_app_handler;
4959 lg_crcv->initial = 1;
4962 goto skip_app_handler;
4977 memcpy(lg_crcv->observe,
coap_opt_value(obs_opt), lg_crcv->observe_length);
4978 lg_crcv->observe_set = 1;
4980 lg_crcv->observe_set = 0;
4989 goto expire_lg_crcv;
4994#if COAP_OSCORE_SUPPORT
4995 if (check_freshness(session, rcvd,
4996 (session->oscore_encryption == 0) ? sent :
NULL,
4999 if (check_freshness(session, rcvd, sent,
NULL, lg_crcv))
5001 goto skip_app_handler;
5002 goto expire_lg_crcv;
5011 const uint8_t *data;
5018 ++lg_crcv->retry_counter);
5026#if COAP_PROXY_SUPPORT
5027 coap_proxy_req_t *proxy_req = session->
context->proxy_list_count ?
5028 coap_proxy_map_outgoing_request(session, rcvd,
NULL) :
NULL;
5034 proxy_req->token_used =
new;
5035 coap_proxy_log_entry(proxy_req->incoming, proxy_req->pdu, proxy_req->token_used,
"upd");
5039 coap_log_debug(
"* Retransmitting PDU with Uri-Path-Abbrev replaced (1)\n");
5043 goto skip_app_handler;
5046 goto expire_lg_crcv;
5049 goto expire_lg_crcv;
5051 if (!block.
m && !lg_crcv->observe_set) {
5061 lg_crcv->last_used -= adjust;
5075#
if COAP_Q_BLOCK_SUPPORT
5082 goto skip_app_handler;
5085 const uint8_t *data;
5089#if COAP_Q_BLOCK_SUPPORT
5090 if (session->
block_mode & COAP_BLOCK_PROBE_Q_BLOCK) {
5096 if (block.
num != 0) {
5098 size_t chunk = (size_t)1 << (block.
szx + 4);
5103 goto call_app_handler;
5106#if COAP_Q_BLOCK_SUPPORT
5110 if (!(session->
block_mode & COAP_BLOCK_HAS_Q_BLOCK)) {
5116 lg_crcv = coap_block_new_lg_crcv(session, sent,
NULL);
5119 LL_PREPEND(session->lg_crcv, lg_crcv);
5120 return coap_handle_response_get_block(context, session, sent, rcvd,
5133 track_echo(session, rcvd);
5135 lg_crcv = coap_block_new_lg_crcv(session, sent,
NULL);
5138 LL_PREPEND(session->lg_crcv, lg_crcv);
5139 return coap_handle_response_get_block(context, session, sent, rcvd,
5151 lg_crcv = coap_block_new_lg_crcv(session, sent,
NULL);
5154 LL_PREPEND(session->lg_crcv, lg_crcv);
5155 return coap_handle_response_get_block(context, session, sent, rcvd,
5173 if (lg_crcv->app_token)
5175 lg_crcv->app_token->s);
5179 LL_DELETE(session->lg_crcv, lg_crcv);
5180 coap_block_delete_lg_crcv(session, lg_crcv);
5192#if COAP_SERVER_SUPPORT
5201 if (response->
code == 0)
5203 lg_xmit = coap_find_lg_xmit_response(session, request, resource, query);
5211#if COAP_CLIENT_SUPPORT
5214 uint64_t token_match =
5220 if (session->lg_crcv) {
5221 LL_FOREACH(session->lg_crcv, lg_crcv) {
5226 lg_crcv->app_token->s);
5234 LL_FOREACH(session->
lg_xmit, lg_xmit) {
int coap_is_mcast(const coap_address_t *a)
Checks if given address a denotes a multicast address.
void coap_address_copy(coap_address_t *dst, const coap_address_t *src)
int coap_address_equals(const coap_address_t *a, const coap_address_t *b)
Compares given address objects a and b.
static void coap_block_release_lg_xmit_data(coap_session_t *session, coap_lg_xmit_data_t *data_info)
#define COAP_ETAG_MAX_BYTES
COAP_STATIC_INLINE int full_match(const uint8_t *a, size_t alen, const uint8_t *b, size_t blen)
static int coap_add_data_large_internal(coap_session_t *session, const coap_pdu_t *request, coap_pdu_t *pdu, coap_resource_t *resource, const coap_string_t *query, int maxage, uint64_t etag, size_t length, const uint8_t *data, coap_release_large_data_t release_func, coap_get_large_data_t get_func, void *app_ptr, int single_request, coap_pdu_code_t request_method)
static int blocks_add_entry(coap_rblock_t *rec_blocks, uint32_t block_num, uint32_t block_m)
static int check_all_blocks_in(coap_rblock_t *rec_blocks)
static int setup_block_b(coap_session_t *session, coap_pdu_t *pdu, coap_block_b_t *block, unsigned int num, unsigned int blk_size, size_t total)
#define COAP_LG_XMIT_TXT_SCALAR
static int check_if_received_block(coap_rblock_t *rec_blocks, uint32_t block_num)
int coap_flsll(long long j)
int coap_fls(unsigned int i)
struct coap_lg_crcv_t coap_lg_crcv_t
struct coap_resource_t coap_resource_t
struct coap_lg_srcv_t coap_lg_srcv_t
@ COAP_NACK_TOO_MANY_RETRIES
#define COAP_SOCKET_MULTICAST
socket is used for multicast communication
Library specific build wrapper for coap_internal.h.
void * coap_realloc_type(coap_memory_tag_t type, void *p, size_t size)
Reallocates a chunk p of bytes created by coap_malloc_type() or coap_realloc_type() and returns a poi...
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().
uint8_t coap_unique_id[8]
uint16_t coap_option_num_t
uint8_t coap_opt_t
Use byte-oriented access methods here because sliding a complex struct coap_opt_t over the data buffe...
#define COAP_OPTION_CONTENT_TYPE
@ COAP_OPTION_CONTENT_FORMAT
@ COAP_OPTION_URI_PATH_ABB
coap_mid_t coap_send_rst_lkd(coap_session_t *session, const coap_pdu_t *request)
Sends an RST message with code 0 for the specified request to dst.
void coap_call_response_handler(coap_session_t *session, coap_pdu_t *sent, coap_pdu_t *rcvd, void *body_free)
coap_mid_t coap_send_ack_lkd(coap_session_t *session, const coap_pdu_t *request)
Sends an ACK message with code 0 for the specified request to dst.
#define COAP_BLOCK_MAX_SIZE_MASK
#define coap_check_update_token(a, b)
int coap_context_set_max_block_size_lkd(coap_context_t *context, size_t max_block_size)
Set the context level maximum block size that the server supports when sending or receiving packets w...
void coap_context_set_block_mode_lkd(coap_context_t *context, uint32_t block_mode)
Set the context level CoAP block handling bits for handling RFC7959.
#define COAP_BLOCK_MAX_SIZE_SET(a)
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...
COAP_STATIC_INLINE void coap_lg_xmit_reference_lkd(coap_lg_xmit_t *lg_xmit)
Increment reference counter on a lg_xmit.
void coap_block_delete_lg_xmit(coap_session_t *session, coap_lg_xmit_t *lg_xmit)
Remove a lg_xmit.
#define STATE_TOKEN_FULL(t, r)
#define COAP_SINGLE_BLOCK_OR_Q
#define STATE_TOKEN_BASE(t)
coap_binary_t * coap_block_build_body_lkd(coap_binary_t *body_data, size_t length, const uint8_t *data, size_t offset, size_t total)
Re-assemble payloads into a body.
#define COAP_BLOCK_SET_MASK
COAP_STATIC_INLINE void coap_lg_xmit_release_lkd(coap_session_t *session, coap_lg_xmit_t *lg_xmit)
Decrement reference counter on a lg_xmit.
coap_lg_xmit_t * coap_find_lg_xmit(coap_session_t *session, coap_pdu_t *pdu)
Find the current lg_xmit for the session that matches the pdu.
#define COAP_BLOCK_MAX_SIZE_GET(a)
int coap_block_check_lg_xmit_timeouts(coap_session_t *session, coap_tick_t now, coap_tick_t *tim_rem)
COAP_API void coap_context_set_block_mode(coap_context_t *context, uint32_t block_mode)
Set the context level CoAP block handling bits for handling RFC7959.
COAP_API int coap_add_data_large_response(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, coap_pdu_t *response, const coap_string_t *query, uint16_t media_type, int maxage, uint64_t etag, size_t length, const uint8_t *data, coap_release_large_data_t release_func, void *app_ptr)
Associates given data with the response pdu that is passed as fourth parameter.
int(* coap_get_large_data_t)(coap_session_t *session, size_t max, size_t offset, uint8_t *data, size_t *length, void *app_ptr)
Callback handler for getting the data based on app_ptr provided to coap_add_data_large_request_app() ...
#define COAP_BLOCK_USE_M_Q_BLOCK
#define COAP_OPT_BLOCK_SZX(opt)
Returns the value of the SZX-field of a Block option opt.
#define COAP_BLOCK_STLESS_BLOCK2
COAP_API int coap_add_data_large_request(coap_session_t *session, coap_pdu_t *pdu, size_t length, const uint8_t *data, coap_release_large_data_t release_func, void *app_ptr)
Associates given data with the pdu that is passed as second parameter.
#define COAP_BLOCK_TRY_Q_BLOCK
#define COAP_BLOCK_STLESS_FETCH
COAP_API int coap_context_set_max_block_size(coap_context_t *context, size_t max_block_size)
Set the context level maximum block size that the server supports when sending or receiving packets w...
int coap_add_block_b_data(coap_pdu_t *pdu, size_t len, const uint8_t *data, coap_block_b_t *block)
Adds the appropriate payload data of the body to the pdu.
#define COAP_BLOCK_SINGLE_BODY
int coap_write_block_b_opt(coap_session_t *session, coap_block_b_t *block, coap_option_num_t number, coap_pdu_t *pdu, size_t data_length)
Writes a block option of type number to message pdu.
int coap_add_block(coap_pdu_t *pdu, size_t len, const uint8_t *data, unsigned int block_num, unsigned char block_szx)
Adds the block_num block of size 1 << (block_szx + 4) from source data to pdu.
COAP_API coap_binary_t * coap_block_build_body(coap_binary_t *body_data, size_t length, const uint8_t *data, size_t offset, size_t total)
Re-assemble payloads into a body.
void(* coap_release_large_data_t)(coap_session_t *session, void *app_ptr)
Callback handler for de-allocating the data based on app_ptr provided to coap_add_data_large_*() func...
void coap_add_data_blocked_response(const coap_pdu_t *request, coap_pdu_t *response, uint16_t media_type, int maxage, size_t length, const uint8_t *data)
Adds the appropriate part of data to the response pdu.
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.
#define COAP_OPT_BLOCK_MORE(opt)
Returns the value of the More-bit of a Block option opt.
unsigned int coap_opt_block_num(const coap_opt_t *block_opt)
Returns the value of field num in the given block option block_opt.
int coap_get_block(const coap_pdu_t *pdu, coap_option_num_t number, coap_block_t *block)
Initializes block from pdu.
#define COAP_BLOCK_NOT_RANDOM_BLOCK1
#define COAP_OPT_BLOCK_END_BYTE(opt)
Returns the value of the last byte of opt.
int coap_write_block_opt(coap_block_t *block, coap_option_num_t number, coap_pdu_t *pdu, size_t data_length)
Writes a block option of type number to message pdu.
COAP_API int coap_add_data_large_request_app(coap_session_t *session, coap_pdu_t *pdu, size_t length, coap_release_large_data_t release_func, coap_get_large_data_t get_func, void *app_ptr)
Associates given data callback with the pdu that is passed as second parameter.
#define COAP_BLOCK_FORCE_Q_BLOCK
#define COAP_BLOCK_USE_LIBCOAP
time_t coap_time_t
CoAP time in seconds since epoch.
uint64_t coap_tick_t
This data type represents internal timer ticks with COAP_TICKS_PER_SECOND resolution.
coap_time_t coap_ticks_to_rt(coap_tick_t t)
Helper function that converts coap ticks to wallclock time.
#define COAP_TICKS_PER_SECOND
Use ms resolution on POSIX systems.
#define COAP_MAX_DELAY_TICKS
int coap_handle_event_lkd(coap_context_t *context, coap_event_t event, coap_session_t *session)
Invokes the event handler of context for the given event and data.
uint16_t coap_new_message_id_lkd(coap_session_t *session)
Returns a new message id and updates session->tx_mid accordingly.
int coap_client_delay_first(coap_session_t *session)
Delay the sending of the first client request until some other negotiation has completed.
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.
void coap_register_block_data_handler(coap_context_t *context, coap_block_data_handler_t block_data_handler)
Sets up a handler that is called for each received block during a block-wise transfer when COAP_BLOCK...
coap_response_t(* coap_block_data_handler_t)(coap_session_t *session, coap_pdu_t *pdu, coap_resource_t *resource, coap_binary_t **body_data, size_t length, const uint8_t *data, size_t offset, size_t total)
Definition of the block data handler function.
void coap_ticks(coap_tick_t *t)
Returns the current value of an internal tick counter.
@ COAP_RESPONSE_OK
Response is fine.
unsigned int coap_encode_var_safe(uint8_t *buf, size_t length, unsigned int val)
Encodes multiple-length byte sequences.
unsigned int coap_decode_var_bytes(const uint8_t *buf, size_t len)
Decodes multiple-length byte sequences.
uint64_t coap_decode_var_bytes8(const uint8_t *buf, size_t len)
Decodes multiple-length byte sequences.
unsigned int coap_encode_var_safe8(uint8_t *buf, size_t length, uint64_t val)
Encodes multiple-length byte sequences.
@ COAP_EVENT_BLOCK_ISSUE
Triggered when a block transfer could not be handled.
@ COAP_EVENT_PARTIAL_BLOCK
Triggered when not all of a large body has been received.
@ COAP_EVENT_XMIT_BLOCK_FAIL
Triggered when not all of a large body has been transmitted.
#define coap_lock_callback(func)
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_lock(failed)
Dummy for no thread-safe code.
#define coap_log_debug(...)
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_info(...)
#define coap_log_warn(...)
#define COAP_OBSERVE_CANCEL
The value COAP_OBSERVE_CANCEL in a GET/FETCH request option COAP_OPTION_OBSERVE indicates that the ob...
#define COAP_OBSERVE_ESTABLISH
The value COAP_OBSERVE_ESTABLISH in a GET/FETCH request option COAP_OPTION_OBSERVE indicates a new ob...
COAP_API int coap_cancel_observe(coap_session_t *session, coap_binary_t *token, coap_pdu_type_t message_type)
Cancel an observe that is being tracked by the client large receive logic.
coap_opt_t * coap_option_next(coap_opt_iterator_t *oi)
Updates the iterator oi to point to the next option.
uint32_t coap_opt_length(const coap_opt_t *opt)
Returns the length of the given option.
coap_opt_iterator_t * coap_option_iterator_init(const coap_pdu_t *pdu, coap_opt_iterator_t *oi, const coap_opt_filter_t *filter)
Initializes the given option iterator oi to point to the beginning of the pdu's option list.
size_t coap_opt_encode_size(uint16_t delta, size_t length)
Compute storage bytes needed for an option with given delta and length.
#define COAP_OPT_ALL
Pre-defined filter that includes all options.
coap_opt_t * coap_check_option(const coap_pdu_t *pdu, coap_option_num_t number, coap_opt_iterator_t *oi)
Retrieves the first option of number number from pdu.
const uint8_t * coap_opt_value(const coap_opt_t *opt)
Returns a pointer to the value of the given option.
int coap_option_filter_set(coap_opt_filter_t *filter, coap_option_num_t option)
Sets the corresponding entry for number in filter.
int coap_rebuild_pdu_for_proxy(coap_pdu_t *pdu)
Convert PDU to use Proxy-Scheme option if Proxy-Uri option is present.
size_t coap_oscore_overhead(coap_session_t *session, coap_pdu_t *pdu)
Determine the additional data size requirements for adding in OSCORE.
#define COAP_PDU_IS_RESPONSE(pdu)
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.
size_t coap_insert_option(coap_pdu_t *pdu, coap_option_num_t number, size_t len, const uint8_t *data)
Inserts option of given number in the pdu with the appropriate data.
int coap_remove_option(coap_pdu_t *pdu, coap_option_num_t number)
Removes (first) option of given number from the pdu.
int coap_update_token(coap_pdu_t *pdu, size_t len, const uint8_t *data)
Updates token in pdu with length len and data.
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.
size_t coap_update_option(coap_pdu_t *pdu, coap_option_num_t number, size_t len, const uint8_t *data)
Updates existing first option of given number in the pdu with the new data.
#define COAP_PAYLOAD_START
int coap_pdu_check_resize(coap_pdu_t *pdu, size_t size)
Dynamically grows the size of pdu to new_size if needed.
#define COAP_PDU_IS_REQUEST(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.
const char * coap_response_phrase(unsigned char code)
Returns a human-readable response phrase for the specified CoAP response code.
#define COAP_MEDIATYPE_APPLICATION_MB_CBOR_SEQ
int coap_mid_t
coap_mid_t is used to store the CoAP Message ID of a CoAP PDU.
#define COAP_RESPONSE_CODE(N)
#define COAP_RESPONSE_CLASS(C)
coap_pdu_code_t
Set of codes available for a PDU.
coap_pdu_type_t
CoAP PDU message type definitions.
#define COAP_MEDIATYPE_TEXT_PLAIN
int coap_add_token(coap_pdu_t *pdu, size_t len, const uint8_t *data)
Adds token of length len to pdu.
size_t coap_add_option(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_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.
int coap_get_data_large(const coap_pdu_t *pdu, size_t *len, const uint8_t **data, size_t *offset, size_t *total)
Retrieves the data from a PDU, with support for large bodies of data that spans multiple PDUs.
#define COAP_INVALID_MID
Indicates an invalid message id.
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.
@ COAP_REQUEST_CODE_FETCH
#define COAP_NON_RECEIVE_TIMEOUT_TICKS(s)
The NON_RECEIVE_TIMEOUT definition for the session (s).
#define COAP_NON_TIMEOUT_TICKS(s)
void coap_handle_nack(coap_session_t *session, coap_pdu_t *sent, const coap_nack_reason_t reason, const coap_mid_t mid)
#define COAP_MAX_TRANSMIT_WAIT_TICKS(s)
#define COAP_NON_PARTIAL_TIMEOUT_TICKS(s)
The NON_PARTIAL_TIMEOUT definition for the session (s).
coap_tick_t coap_get_non_timeout_random_ticks(coap_session_t *session)
#define COAP_MAX_PAYLOADS(s)
size_t coap_session_max_pdu_size_lkd(const coap_session_t *session)
Get maximum acceptable PDU size.
#define COAP_NON_MAX_RETRANSMIT(s)
#define COAP_PROTO_NOT_RELIABLE(p)
#define COAP_PROTO_RELIABLE(p)
void coap_session_new_token(coap_session_t *session, size_t *len, uint8_t *data)
Creates a new token for use.
@ COAP_SESSION_TYPE_CLIENT
client-side
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_binary_t * coap_new_binary(size_t size)
Returns a new binary object with at least size bytes storage 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...
coap_binary_t * coap_resize_binary(coap_binary_t *s, size_t size)
Resizes the given coap_binary_t object.
void coap_delete_binary(coap_binary_t *s)
Deletes the given coap_binary_t object and releases any memory allocated.
#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_string_t * coap_new_string(size_t size)
Returns a new string object with at least size+1 bytes storage allocated.
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.
int coap_q_block_is_supported(void)
Check whether Q-BlockX is available.
#define COAP_STATIC_INLINE
coap_address_t remote
remote address and port
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
CoAP binary data definition.
size_t length
length of binary data
Structure of Block options with BERT support.
unsigned int num
block number
unsigned int bert
Operating as BERT.
unsigned int aszx
block size (0-7 including BERT
unsigned int defined
Set if block found.
unsigned int m
1 if more blocks follow, 0 otherwise
unsigned int szx
block size (0-6)
Structure of Block options.
unsigned int num
block number
unsigned int szx
block size
unsigned int m
1 if more blocks follow, 0 otherwise
The CoAP stack's global state is stored in a coap_context_t object.
coap_block_data_handler_t block_data_cb
Called with each block data during block transfers.
uint32_t max_body_size
Max supported body size or 0 is unlimited.
uint32_t block_mode
Zero or more COAP_BLOCK_ or'd options.
uint64_t state_token
state token
size_t bert_size
size of last BERT block
uint32_t count
the number of packets sent for payload
coap_binary_t * app_token
original PDU token
coap_pdu_code_t request_method
Method used to request this data.
uint8_t rtag_length
RTag length.
coap_string_t * query
Associated query for the resource.
coap_resource_t * resource
associated resource
coap_time_t maxage_expire
When this entry expires.
uint8_t rtag_set
Set if RTag is in receive PDU.
uint8_t rtag[8]
RTag for block checking.
coap_get_large_data_t get_func
Where to get data id needed.
void * app_ptr
application provided ptr for de-alloc function
uint32_t ref
Reference count.
const uint8_t * data
large data ptr
size_t length
large data length
coap_release_large_data_t release_func
large data de-alloc function
Structure to hold large body (many blocks) transmission information.
coap_tick_t last_all_sent
Last time all data sent or 0.
uint8_t blk_size
large block transmission size
coap_tick_t last_sent
Last time any data sent.
coap_lg_xmit_data_t * data_info
Pointer to large data information.
int last_block
last acknowledged block number Block1 last transmitted Q-Block2
union coap_lg_xmit_t::@065323167333303053164351157057215157001006370010 b
coap_tick_t last_payload
Last time MAX_PAYLOAD was sent or 0.
coap_pdu_t * sent_pdu
The sent pdu with all the data.
uint32_t ref
Reference count.
uint16_t option
large block transmission CoAP option
struct coap_lg_xmit_t * next
coap_tick_t last_obs
Last time used (Observe tracking) or 0.
Iterator to run through PDU options.
coap_option_num_t number
decoded option number
uint8_t * token
first byte of token (or extended length bytes prefix), if any, or options
coap_lg_xmit_t * lg_xmit
Holds ptr to lg_xmit if sending a set of blocks.
size_t body_length
Holds body data length.
size_t max_size
maximum size for token, options and payload, or zero for variable size pdu
const uint8_t * body_data
Holds ptr to re-assembled data or NULL.
size_t body_offset
Holds body data offset.
coap_pdu_code_t code
request method (value 1–31) or response code (value 64-255)
coap_bin_const_t actual_token
Actual token in pdu.
uint8_t * data
first byte of payload, if any
size_t used_size
used bytes of storage for token, options and payload
coap_session_t * session
Session responsible for PDU or NULL.
size_t body_total
Holds body data total size.
coap_pdu_type_t type
message type
Structure to keep track of received blocks.
uint32_t total_blocks
Set to block no + 1 when More bit unset.
uint32_t used
Number of range blocks in use.
struct coap_lg_range range[COAP_RBLOCK_CNT]
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...
coap_lg_xmit_t * lg_xmit
list of large transmissions
uint32_t block_mode
Zero or more COAP_BLOCK_ or'd options.
coap_socket_t sock
socket object for the session, if any
uint8_t csm_bert_rem_support
CSM TCP BERT blocks supported (remote).
uint64_t tx_token
Next token number to use.
uint8_t is_rate_limiting
Currently NON rate limiting.
coap_mid_t remote_test_mid
mid used for checking remote support
uint8_t csm_bert_loc_support
CSM TCP BERT blocks supported (local).
coap_addr_tuple_t addr_info
remote/local address info
coap_proto_t proto
protocol used
coap_bin_const_t * last_token
uint8_t no_path_abbrev
Set is remote does not support Uri-Path-Abbrev.
uint8_t con_active
Active CON request sent.
coap_queue_t * delayqueue
list of delayed messages waiting to be sent
uint32_t tx_rtag
Next Request-Tag number to use.
coap_session_type_t type
client or server side socket
coap_context_t * context
session's context
coap_bin_const_t * echo
last token used to make a request
coap_socket_flags_t flags
1 or more of COAP_SOCKET* flag values
CoAP string data definition.
size_t length
length of string