22#define ADVANCE_OPT(o,e,step) if ((e) < step) { \
23 coap_log_debug("cannot advance opt past end\n"); \
34#define ADVANCE_OPT_CHECK(o,e,step) do { \
35 ADVANCE_OPT(o,e,step); \
51 result->
delta = (*opt & 0xf0) >> 4;
52 result->
length = *opt & 0x0f;
54 switch (result->
delta) {
65 result->
delta = ((*opt & 0xff) << 8) + 269;
66 if (result->
delta < 269) {
73 result->
delta += *opt & 0xff;
89 result->
length = ((*opt & 0xff) << 8) + 269;
93 result->
length += *opt & 0xff;
105 if (length < result->length) {
111#undef ADVANCE_OPT_CHECK
113 return (opt + result->
length) - opt_start;
175 assert(optsize <= oi->length);
215 length = *opt & 0x0f;
216 switch (*opt & 0xf0) {
237 length = (*opt++ << 8) + 269;
252 switch (*opt & 0xf0) {
266 switch (*opt & 0x0f) {
280 return (
const uint8_t *)opt + ofs;
293 uint16_t delta,
size_t length) {
303 }
else if (delta < 269) {
320 opt[++skip] = ((delta - 269) >> 8) & 0xff;
321 opt[++skip] = (delta - 269) & 0xff;
325 opt[0] |= length & 0x0f;
326 }
else if (length < 269) {
327 if (maxlen < skip + 2) {
328 coap_log_debug(
"insufficient space to encode option length %zu\n",
336 if (maxlen < skip + 3) {
343 opt[++skip] = ((length - 269) >> 8) & 0xff;
344 opt[++skip] = (length - 269) & 0xff;
373 const uint8_t *val,
size_t length) {
387 if (maxlen < length) {
393 memcpy(opt, val, length);
398#define LONG_MASK ((1 << COAP_OPT_FILTER_LONG) - 1)
400 (~LONG_MASK & ((1 << (COAP_OPT_FILTER_LONG + COAP_OPT_FILTER_SHORT)) - 1))
436 uint16_t nr, mask = 0;
443 if (((of->
mask & nr) > 0) && (of->
long_opts[lindex] == number)) {
455 nr <<= 1, lindex++) {
457 if (((of->
mask & nr) > 0) && (of->
short_opts[lindex] == (number & 0xff))) {
485 of->
mask |= 1 << (lindex - 1);
518 if (length > MEMP_LEN_COAPOPTLIST) {
519 coap_log_crit(
"coap_new_optlist: size too large (%zu > MEMP_LEN_COAPOPTLIST)\n",
530 node->
data = (uint8_t *)&node[1];
531 memcpy(node->
data, data, length);
545 return a < b ? -1 : 1;
554 if (options && *options) {
556 coap_log_warn(
"coap_add_optlist_pdu: PDU already contains data\n");
562 LL_FOREACH((*options), opt) {
577 LL_APPEND((*head), node);
598 LL_FOREACH_SAFE(queue, elt, tmp) {
int coap_fls(unsigned int i)
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().
size_t coap_opt_parse(const coap_opt_t *opt, size_t length, coap_option_t *result)
Parses the option pointed to by opt into result.
filter_op_t
Operation specifiers for coap_filter_op().
#define ADVANCE_OPT_CHECK(o, e, step)
size_t coap_opt_size(const coap_opt_t *opt)
Returns the size of the given option, taking into account a possible option jump.
COAP_STATIC_INLINE int opt_finished(coap_opt_iterator_t *oi)
static int coap_internal_delete(coap_optlist_t *node)
#define ADVANCE_OPT(o, e, step)
static int coap_option_filter_op(coap_opt_filter_t *filter, coap_option_num_t number, enum filter_op_t op)
Applies op on filter with respect to number.
COAP_STATIC_INLINE int is_long_option(coap_option_num_t number)
Returns true iff number denotes an option number larger than 255.
static int order_opts(void *a, void *b)
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_log_debug(...)
#define coap_log_warn(...)
#define coap_log_crit(...)
coap_opt_t * coap_option_next(coap_opt_iterator_t *oi)
Updates the iterator oi to point to the next option.
coap_optlist_t * coap_new_optlist(uint16_t number, size_t length, const uint8_t *data)
Create a new optlist entry.
size_t coap_opt_encode(coap_opt_t *opt, size_t maxlen, uint16_t delta, const uint8_t *val, size_t length)
Encodes option with given delta into opt.
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.
void coap_delete_optlist(coap_optlist_t *queue)
Removes all entries from the optlist_chain, freeing off their memory usage.
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_FILTER_SHORT
The number of option types below 256 that can be stored in an option filter.
int coap_option_filter_unset(coap_opt_filter_t *filter, coap_option_num_t option)
Clears the corresponding entry for number in filter.
int coap_add_optlist_pdu(coap_pdu_t *pdu, coap_optlist_t **options)
The current optlist of optlist_chain is first sorted (as per RFC7272 ordering requirements) and then ...
#define COAP_OPT_FILTER_LONG
The number of option types above 255 that can be stored in an option filter.
void coap_option_filter_clear(coap_opt_filter_t *filter)
Clears filter filter.
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.
int coap_insert_optlist(coap_optlist_t **head, coap_optlist_t *node)
Adds optlist to the given optlist_chain.
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_get(coap_opt_filter_t *filter, coap_option_num_t option)
Checks if number is contained in filter.
int coap_option_filter_set(coap_opt_filter_t *filter, coap_option_num_t option)
Sets the corresponding entry for number in filter.
size_t coap_opt_setheader(coap_opt_t *opt, size_t maxlen, uint16_t delta, size_t length)
Encodes the given delta and length values into opt.
#define COAP_PAYLOAD_START
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.
#define COAP_STATIC_INLINE
uint8_t short_opts[COAP_OPT_FILTER_SHORT]
uint16_t long_opts[COAP_OPT_FILTER_LONG]
Iterator to run through PDU options.
coap_opt_t * next_option
pointer to the unparsed next option
coap_opt_filter_t filter
option filter
unsigned int bad
iterator object is ok if not set
size_t length
remaining length of PDU
unsigned int filtered
denotes whether or not filter is used
coap_option_num_t number
decoded option number
Representation of CoAP options.
Representation of chained list of CoAP options to install.
uint16_t number
the option number (no delta coding)
size_t length
the option value length
uint8_t * data
the option data
uint8_t * token
first byte of token (or extended length bytes prefix), if any, or options
uint8_t * data
first byte of payload, if any
uint32_t e_token_length
length of Token space (includes leading extended bytes
size_t used_size
used bytes of storage for token, options and payload