coap_get_log_level:
  103|  5.38M|coap_get_log_level(void) {
  104|  5.38M|  return maxlog;
  105|  5.38M|}
coap_set_log_level:
  108|  3.10k|coap_set_log_level(coap_log_t level) {
  109|  3.10k|  if (level > COAP_MAX_LOGGING_LEVEL)
  ------------------
  |  |   48|  3.10k|#define COAP_MAX_LOGGING_LEVEL 8
  ------------------
  |  Branch (109:7): [True: 0, False: 3.10k]
  ------------------
  110|      0|    level = COAP_MAX_LOGGING_LEVEL;
  ------------------
  |  |   48|      0|#define COAP_MAX_LOGGING_LEVEL 8
  ------------------
  111|  3.10k|  maxlog = level;
  112|  3.10k|}
coap_show_pdu:
  812|  1.56k|coap_show_pdu(coap_log_t level, const coap_pdu_t *pdu) {
  813|       |#if COAP_CONSTRAINED_STACK
  814|       |  /* Proxy-Uri: can be 1034 bytes long */
  815|       |  /* buf and outbuf can be protected by m_show_pdu if needed */
  816|       |  static unsigned char buf[USE_BUF_SIZE];
  817|       |  static char outbuf[COAP_DEBUG_BUF_SIZE];
  818|       |#else /* ! COAP_CONSTRAINED_STACK */
  819|       |  /* Proxy-Uri: can be 1034 bytes long */
  820|  1.56k|  unsigned char buf[USE_BUF_SIZE];
  821|  1.56k|  char outbuf[COAP_DEBUG_BUF_SIZE];
  822|  1.56k|#endif /* ! COAP_CONSTRAINED_STACK */
  823|  1.56k|  size_t buf_len = 0; /* takes the number of bytes written to buf */
  824|  1.56k|  int have_options = 0;
  825|  1.56k|  uint32_t i;
  826|  1.56k|  coap_opt_iterator_t opt_iter;
  827|  1.56k|  coap_opt_t *option;
  828|  1.56k|  int content_format = -1;
  829|  1.56k|  size_t data_len;
  830|  1.56k|  const uint8_t *data;
  831|  1.56k|  uint32_t opt_len;
  832|  1.56k|  const uint8_t *opt_val;
  833|  1.56k|  size_t outbuflen = 0;
  834|  1.56k|  int is_oscore_payload = 0;
  835|  1.56k|  const char *exp;
  836|  1.56k|  uint32_t value;
  837|       |
  838|       |  /* Save time if not needed */
  839|  1.56k|  if (level > coap_get_log_level())
  ------------------
  |  Branch (839:7): [True: 1.56k, False: 0]
  ------------------
  840|  1.56k|    return;
  841|       |
  842|       |#if COAP_THREAD_SAFE
  843|       |  coap_mutex_lock(&m_show_pdu);
  844|       |#endif /* COAP_THREAD_SAFE */
  845|      0|  if (!pdu->session || COAP_PROTO_NOT_RELIABLE(pdu->session->proto)) {
  ------------------
  |  |   41|      0|#define COAP_PROTO_NOT_RELIABLE(p) ((p)==COAP_PROTO_UDP || (p)==COAP_PROTO_DTLS)
  |  |  ------------------
  |  |  |  Branch (41:37): [True: 0, False: 0]
  |  |  |  Branch (41:60): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (845:7): [True: 0, False: 0]
  ------------------
  846|      0|    snprintf(outbuf, sizeof(outbuf), "v:%d t:%s c:%s i:%04x {",
  847|      0|             COAP_DEFAULT_VERSION, msg_type_string(pdu->type),
  ------------------
  |  |   35|      0|#define COAP_DEFAULT_VERSION      1 /* version of CoAP supported */
  ------------------
  848|      0|             msg_code_string(pdu->code), pdu->mid);
  849|      0|  } else if (pdu->session->proto == COAP_PROTO_WS ||
  ------------------
  |  Branch (849:14): [True: 0, False: 0]
  ------------------
  850|      0|             pdu->session->proto == COAP_PROTO_WSS) {
  ------------------
  |  Branch (850:14): [True: 0, False: 0]
  ------------------
  851|      0|    if (pdu->type != COAP_MESSAGE_CON)
  ------------------
  |  Branch (851:9): [True: 0, False: 0]
  ------------------
  852|      0|      coap_log_alert("WebSocket: type != CON\n");
  ------------------
  |  |   90|      0|#define coap_log_alert(...) coap_log(COAP_LOG_ALERT, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  853|      0|    snprintf(outbuf, sizeof(outbuf), "v:WebSocket c:%s {",
  854|      0|             msg_code_string(pdu->code));
  855|      0|  } else {
  856|      0|    if (pdu->type != COAP_MESSAGE_CON)
  ------------------
  |  Branch (856:9): [True: 0, False: 0]
  ------------------
  857|      0|      coap_log_alert("Reliable: type != CON\n");
  ------------------
  |  |   90|      0|#define coap_log_alert(...) coap_log(COAP_LOG_ALERT, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  858|      0|    snprintf(outbuf, sizeof(outbuf), "v:Reliable c:%s {",
  859|      0|             msg_code_string(pdu->code));
  860|      0|  }
  861|       |
  862|      0|  for (i = 0; i < pdu->actual_token.length; i++) {
  ------------------
  |  Branch (862:15): [True: 0, False: 0]
  ------------------
  863|      0|    outbuflen = strlen(outbuf);
  864|      0|    snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,
  865|      0|             "%02x", pdu->actual_token.s[i]);
  866|      0|  }
  867|      0|  outbuflen = strlen(outbuf);
  868|      0|  snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  "}");
  869|       |
  870|       |  /* show options, if any */
  871|      0|  coap_option_iterator_init(pdu, &opt_iter, COAP_OPT_ALL);
  ------------------
  |  |  230|      0|#define COAP_OPT_ALL NULL
  ------------------
  872|       |
  873|      0|  outbuflen = strlen(outbuf);
  874|      0|  snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  " [");
  875|      0|  while ((option = coap_option_next(&opt_iter))) {
  ------------------
  |  Branch (875:10): [True: 0, False: 0]
  ------------------
  876|      0|    buf[0] = '\000';
  877|      0|    if (!have_options) {
  ------------------
  |  Branch (877:9): [True: 0, False: 0]
  ------------------
  878|      0|      have_options = 1;
  879|      0|    } else {
  880|      0|      outbuflen = strlen(outbuf);
  881|      0|      snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  ",");
  882|      0|    }
  883|       |
  884|      0|    if (pdu->code == COAP_SIGNALING_CODE_CSM) {
  ------------------
  |  Branch (884:9): [True: 0, False: 0]
  ------------------
  885|      0|      switch ((coap_sig_csm_opt_t)opt_iter.number) {
  886|      0|      case COAP_SIG_OPT_EXTENDED_TOKEN_LENGTH:
  ------------------
  |  Branch (886:7): [True: 0, False: 0]
  ------------------
  887|      0|      case COAP_SIG_OPT_MAX_MESSAGE_SIZE:
  ------------------
  |  Branch (887:7): [True: 0, False: 0]
  ------------------
  888|      0|        buf_len = snprintf((char *)buf, sizeof(buf), "%u",
  889|      0|                           coap_decode_var_bytes(coap_opt_value(option),
  890|      0|                                                 coap_opt_length(option)));
  891|      0|        break;
  892|      0|      case COAP_SIG_OPT_BLOCK_WISE_TRANSFER:
  ------------------
  |  Branch (892:7): [True: 0, False: 0]
  ------------------
  893|      0|      default:
  ------------------
  |  Branch (893:7): [True: 0, False: 0]
  ------------------
  894|      0|        buf_len = 0;
  895|      0|        break;
  896|      0|      }
  897|      0|    } else if (pdu->code == COAP_SIGNALING_CODE_PING ||
  ------------------
  |  Branch (897:16): [True: 0, False: 0]
  ------------------
  898|      0|               pdu->code == COAP_SIGNALING_CODE_PONG) {
  ------------------
  |  Branch (898:16): [True: 0, False: 0]
  ------------------
  899|      0|      switch ((coap_sig_ping_opt_t)opt_iter.number) {
  900|      0|      case COAP_SIG_OPT_CUSTODY:
  ------------------
  |  Branch (900:7): [True: 0, False: 0]
  ------------------
  901|      0|      default:
  ------------------
  |  Branch (901:7): [True: 0, False: 0]
  ------------------
  902|      0|        buf_len = 0;
  903|      0|      }
  904|      0|    } else if (pdu->code == COAP_SIGNALING_CODE_RELEASE) {
  ------------------
  |  Branch (904:16): [True: 0, False: 0]
  ------------------
  905|      0|      switch ((coap_sig_release_opt_t)opt_iter.number) {
  906|      0|      case COAP_SIG_OPT_ALTERNATIVE_ADDRESS:
  ------------------
  |  Branch (906:7): [True: 0, False: 0]
  ------------------
  907|      0|        buf_len = print_readable(coap_opt_value(option),
  908|      0|                                 coap_opt_length(option),
  909|      0|                                 buf, sizeof(buf), 0);
  910|      0|        break;
  911|      0|      case COAP_SIG_OPT_HOLD_OFF:
  ------------------
  |  Branch (911:7): [True: 0, False: 0]
  ------------------
  912|      0|        buf_len = snprintf((char *)buf, sizeof(buf), "%u",
  913|      0|                           coap_decode_var_bytes(coap_opt_value(option),
  914|      0|                                                 coap_opt_length(option)));
  915|      0|        break;
  916|      0|      default:
  ------------------
  |  Branch (916:7): [True: 0, False: 0]
  ------------------
  917|      0|        buf_len = 0;
  918|      0|        break;
  919|      0|      }
  920|      0|    } else if (pdu->code == COAP_SIGNALING_CODE_ABORT) {
  ------------------
  |  Branch (920:16): [True: 0, False: 0]
  ------------------
  921|      0|      switch ((coap_sig_abort_opt_t)opt_iter.number) {
  922|      0|      case COAP_SIG_OPT_BAD_CSM_OPTION:
  ------------------
  |  Branch (922:7): [True: 0, False: 0]
  ------------------
  923|      0|        buf_len = snprintf((char *)buf, sizeof(buf), "%u",
  924|      0|                           coap_decode_var_bytes(coap_opt_value(option),
  925|      0|                                                 coap_opt_length(option)));
  926|      0|        break;
  927|      0|      default:
  ------------------
  |  Branch (927:7): [True: 0, False: 0]
  ------------------
  928|      0|        buf_len = 0;
  929|      0|        break;
  930|      0|      }
  931|      0|    } else {
  932|      0|      switch ((coap_code_opt_num_t)opt_iter.number) {
  933|      0|      case COAP_OPTION_CONTENT_FORMAT:
  ------------------
  |  Branch (933:7): [True: 0, False: 0]
  ------------------
  934|      0|      case COAP_OPTION_ACCEPT:
  ------------------
  |  Branch (934:7): [True: 0, False: 0]
  ------------------
  935|      0|        content_format = (int)coap_decode_var_bytes(coap_opt_value(option),
  936|      0|                                                    coap_opt_length(option));
  937|       |
  938|      0|        buf_len = print_content_format(content_format, buf, sizeof(buf));
  939|      0|        break;
  940|       |
  941|      0|      case COAP_OPTION_BLOCK1:
  ------------------
  |  Branch (941:7): [True: 0, False: 0]
  ------------------
  942|      0|      case COAP_OPTION_BLOCK2:
  ------------------
  |  Branch (942:7): [True: 0, False: 0]
  ------------------
  943|      0|      case COAP_OPTION_Q_BLOCK1:
  ------------------
  |  Branch (943:7): [True: 0, False: 0]
  ------------------
  944|      0|      case COAP_OPTION_Q_BLOCK2:
  ------------------
  |  Branch (944:7): [True: 0, False: 0]
  ------------------
  945|       |        /* split block option into number/more/size where more is the
  946|       |         * letter M if set, the _ otherwise */
  947|      0|        if (COAP_OPT_BLOCK_SZX(option) == 7) {
  ------------------
  |  |   96|      0|  (coap_opt_length(opt) ? (COAP_OPT_BLOCK_END_BYTE(opt) & 0x07) : 0)
  |  |  ------------------
  |  |  |  |   87|      0|  ((coap_opt_length(opt) && coap_opt_value(opt)) ? \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:5): [True: 0, False: 0]
  |  |  |  |  |  Branch (87:29): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|   *(coap_opt_value(opt) + (coap_opt_length(opt)-1)) : 0)
  |  |  ------------------
  |  |  |  Branch (96:4): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (947:13): [True: 0, False: 0]
  ------------------
  948|      0|          if (coap_get_data(pdu, &data_len, &data))
  ------------------
  |  Branch (948:15): [True: 0, False: 0]
  ------------------
  949|      0|            buf_len = snprintf((char *)buf, sizeof(buf), "%u/%c/BERT(%" PRIuS ")",
  950|      0|                               coap_opt_block_num(option), /* block number */
  951|      0|                               COAP_OPT_BLOCK_MORE(option) ? 'M' : '_', /* M bit */
  ------------------
  |  |   92|      0|  (coap_opt_length(opt) ? (COAP_OPT_BLOCK_END_BYTE(opt) & 0x08) : 0)
  |  |  ------------------
  |  |  |  |   87|      0|  ((coap_opt_length(opt) && coap_opt_value(opt)) ? \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:5): [True: 0, False: 0]
  |  |  |  |  |  Branch (87:29): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|   *(coap_opt_value(opt) + (coap_opt_length(opt)-1)) : 0)
  |  |  ------------------
  |  |  |  Branch (92:3): [True: 0, False: 0]
  |  |  |  Branch (92:4): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  952|      0|                               data_len);
  953|      0|          else
  954|      0|            buf_len = snprintf((char *)buf, sizeof(buf), "%u/%c/BERT",
  955|      0|                               coap_opt_block_num(option), /* block number */
  956|      0|                               COAP_OPT_BLOCK_MORE(option) ? 'M' : '_'); /* M bit */
  ------------------
  |  |   92|      0|  (coap_opt_length(opt) ? (COAP_OPT_BLOCK_END_BYTE(opt) & 0x08) : 0)
  |  |  ------------------
  |  |  |  |   87|      0|  ((coap_opt_length(opt) && coap_opt_value(opt)) ? \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:5): [True: 0, False: 0]
  |  |  |  |  |  Branch (87:29): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|   *(coap_opt_value(opt) + (coap_opt_length(opt)-1)) : 0)
  |  |  ------------------
  |  |  |  Branch (92:3): [True: 0, False: 0]
  |  |  |  Branch (92:4): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  957|      0|        } else {
  958|      0|          buf_len = snprintf((char *)buf, sizeof(buf), "%u/%c/%u",
  959|      0|                             coap_opt_block_num(option), /* block number */
  960|      0|                             COAP_OPT_BLOCK_MORE(option) ? 'M' : '_', /* M bit */
  ------------------
  |  |   92|      0|  (coap_opt_length(opt) ? (COAP_OPT_BLOCK_END_BYTE(opt) & 0x08) : 0)
  |  |  ------------------
  |  |  |  |   87|      0|  ((coap_opt_length(opt) && coap_opt_value(opt)) ? \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:5): [True: 0, False: 0]
  |  |  |  |  |  Branch (87:29): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|   *(coap_opt_value(opt) + (coap_opt_length(opt)-1)) : 0)
  |  |  ------------------
  |  |  |  Branch (92:3): [True: 0, False: 0]
  |  |  |  Branch (92:4): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  961|      0|                             (1 << (COAP_OPT_BLOCK_SZX(option) + 4))); /* block size */
  ------------------
  |  |   96|      0|  (coap_opt_length(opt) ? (COAP_OPT_BLOCK_END_BYTE(opt) & 0x07) : 0)
  |  |  ------------------
  |  |  |  |   87|      0|  ((coap_opt_length(opt) && coap_opt_value(opt)) ? \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (87:5): [True: 0, False: 0]
  |  |  |  |  |  Branch (87:29): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |   88|      0|   *(coap_opt_value(opt) + (coap_opt_length(opt)-1)) : 0)
  |  |  ------------------
  |  |  |  Branch (96:4): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  962|      0|        }
  963|       |
  964|      0|        break;
  965|       |
  966|      0|      case COAP_OPTION_OSCORE:
  ------------------
  |  Branch (966:7): [True: 0, False: 0]
  ------------------
  967|      0|        opt_len = coap_opt_length(option);
  968|      0|        buf[0] = '\000';
  969|      0|        if (opt_len) {
  ------------------
  |  Branch (969:13): [True: 0, False: 0]
  ------------------
  970|      0|          size_t ofs = 1;
  971|      0|          size_t cnt;
  972|       |
  973|      0|          opt_val = coap_opt_value(option);
  974|      0|          if (opt_val[0] & 0x20) {
  ------------------
  |  Branch (974:15): [True: 0, False: 0]
  ------------------
  975|       |            /* Group Flag */
  976|      0|            snprintf((char *)buf, sizeof(buf), "grp");
  977|      0|          }
  978|      0|          if (opt_val[0] & 0x07) {
  ------------------
  |  Branch (978:15): [True: 0, False: 0]
  ------------------
  979|       |            /* Partial IV */
  980|      0|            cnt = opt_val[0] & 0x07;
  981|      0|            if (cnt > opt_len - ofs)
  ------------------
  |  Branch (981:17): [True: 0, False: 0]
  ------------------
  982|      0|              goto no_more;
  983|      0|            buf_len = strlen((char *)buf);
  984|      0|            snprintf((char *)&buf[buf_len], sizeof(buf)-buf_len, "%spIV=0x",
  985|      0|                     buf_len ? "," : "");
  ------------------
  |  Branch (985:22): [True: 0, False: 0]
  ------------------
  986|      0|            for (i = 0; (uint32_t)i < cnt; i++) {
  ------------------
  |  Branch (986:25): [True: 0, False: 0]
  ------------------
  987|      0|              buf_len = strlen((char *)buf);
  988|      0|              snprintf((char *)&buf[buf_len], sizeof(buf)-buf_len,
  989|      0|                       "%02x", opt_val[ofs + i]);
  990|      0|            }
  991|      0|            ofs += cnt;
  992|      0|          }
  993|      0|          if (opt_val[0] & 0x10) {
  ------------------
  |  Branch (993:15): [True: 0, False: 0]
  ------------------
  994|       |            /* kid context */
  995|      0|            if (ofs >= opt_len)
  ------------------
  |  Branch (995:17): [True: 0, False: 0]
  ------------------
  996|      0|              goto no_more;
  997|      0|            cnt = opt_val[ofs];
  998|      0|            if (cnt > opt_len - ofs - 1)
  ------------------
  |  Branch (998:17): [True: 0, False: 0]
  ------------------
  999|      0|              goto no_more;
 1000|      0|            ofs++;
 1001|      0|            buf_len = strlen((char *)buf);
 1002|      0|            snprintf((char *)&buf[buf_len], sizeof(buf)-buf_len, "%skc=0x",
 1003|      0|                     buf_len ? "," : "");
  ------------------
  |  Branch (1003:22): [True: 0, False: 0]
  ------------------
 1004|      0|            for (i = 0; (uint32_t)i < cnt; i++) {
  ------------------
  |  Branch (1004:25): [True: 0, False: 0]
  ------------------
 1005|      0|              buf_len = strlen((char *)buf);
 1006|      0|              snprintf((char *)&buf[buf_len], sizeof(buf)-buf_len,
 1007|      0|                       "%02x", opt_val[ofs + i]);
 1008|      0|            }
 1009|      0|            ofs += cnt;
 1010|      0|          }
 1011|      0|          if (opt_val[0] & 0x08) {
  ------------------
  |  Branch (1011:15): [True: 0, False: 0]
  ------------------
 1012|       |            /* kid */
 1013|      0|            if (ofs >= opt_len)
  ------------------
  |  Branch (1013:17): [True: 0, False: 0]
  ------------------
 1014|      0|              goto no_more;
 1015|      0|            cnt = opt_len - ofs;
 1016|      0|            buf_len = strlen((char *)buf);
 1017|      0|            snprintf((char *)&buf[buf_len], sizeof(buf)-buf_len, "%skid=0x",
 1018|      0|                     buf_len ? "," : "");
  ------------------
  |  Branch (1018:22): [True: 0, False: 0]
  ------------------
 1019|      0|            for (i = 0; (uint32_t)i < cnt; i++) {
  ------------------
  |  Branch (1019:25): [True: 0, False: 0]
  ------------------
 1020|      0|              buf_len = strlen((char *)buf);
 1021|      0|              snprintf((char *)&buf[buf_len], sizeof(buf)-buf_len,
 1022|      0|                       "%02x", opt_val[ofs + i]);
 1023|      0|            }
 1024|      0|          }
 1025|      0|        }
 1026|      0|no_more:
 1027|      0|        buf_len = strlen((char *)buf);
 1028|      0|        is_oscore_payload = 1;
 1029|      0|        break;
 1030|       |
 1031|      0|      case COAP_OPTION_URI_PORT:
  ------------------
  |  Branch (1031:7): [True: 0, False: 0]
  ------------------
 1032|      0|      case COAP_OPTION_MAXAGE:
  ------------------
  |  Branch (1032:7): [True: 0, False: 0]
  ------------------
 1033|      0|      case COAP_OPTION_OBSERVE:
  ------------------
  |  Branch (1033:7): [True: 0, False: 0]
  ------------------
 1034|      0|      case COAP_OPTION_SIZE1:
  ------------------
  |  Branch (1034:7): [True: 0, False: 0]
  ------------------
 1035|      0|      case COAP_OPTION_SIZE2:
  ------------------
  |  Branch (1035:7): [True: 0, False: 0]
  ------------------
 1036|      0|      case COAP_OPTION_HOP_LIMIT:
  ------------------
  |  Branch (1036:7): [True: 0, False: 0]
  ------------------
 1037|      0|        if (coap_opt_length(option)) {
  ------------------
  |  Branch (1037:13): [True: 0, False: 0]
  ------------------
 1038|       |          /* show values as unsigned decimal value */
 1039|      0|          buf_len = snprintf((char *)buf, sizeof(buf), "%u",
 1040|      0|                             coap_decode_var_bytes(coap_opt_value(option),
 1041|      0|                                                   coap_opt_length(option)));
 1042|      0|        }
 1043|      0|        break;
 1044|       |
 1045|      0|      case COAP_OPTION_IF_MATCH:
  ------------------
  |  Branch (1045:7): [True: 0, False: 0]
  ------------------
 1046|      0|      case COAP_OPTION_ETAG:
  ------------------
  |  Branch (1046:7): [True: 0, False: 0]
  ------------------
 1047|      0|      case COAP_OPTION_ECHO:
  ------------------
  |  Branch (1047:7): [True: 0, False: 0]
  ------------------
 1048|      0|      case COAP_OPTION_NORESPONSE:
  ------------------
  |  Branch (1048:7): [True: 0, False: 0]
  ------------------
 1049|      0|      case COAP_OPTION_RTAG:
  ------------------
  |  Branch (1049:7): [True: 0, False: 0]
  ------------------
 1050|      0|        opt_len = coap_opt_length(option);
 1051|      0|        opt_val = coap_opt_value(option);
 1052|      0|        snprintf((char *)buf, sizeof(buf), "0x");
 1053|      0|        for (i = 0; (uint32_t)i < opt_len; i++) {
  ------------------
  |  Branch (1053:21): [True: 0, False: 0]
  ------------------
 1054|      0|          buf_len = strlen((char *)buf);
 1055|      0|          snprintf((char *)&buf[buf_len], sizeof(buf)-buf_len,
 1056|      0|                   "%02x", opt_val[i]);
 1057|      0|        }
 1058|      0|        buf_len = strlen((char *)buf);
 1059|      0|        break;
 1060|      0|      case COAP_OPTION_URI_PATH_ABB:
  ------------------
  |  Branch (1060:7): [True: 0, False: 0]
  ------------------
 1061|      0|        value = coap_decode_var_bytes(coap_opt_value(option),
 1062|      0|                                      coap_opt_length(option));
 1063|      0|        exp = coap_map_abbrev_uri_path(coap_upa_server_mapping_chain, value);
 1064|      0|        if (!exp) {
  ------------------
  |  Branch (1064:13): [True: 0, False: 0]
  ------------------
 1065|      0|          exp = coap_map_abbrev_uri_path(coap_upa_client_fallback_chain, value);
 1066|      0|        }
 1067|      0|        if (exp) {
  ------------------
  |  Branch (1067:13): [True: 0, False: 0]
  ------------------
 1068|      0|          snprintf((char *)&buf, sizeof(buf), "%s", exp);
 1069|      0|        } else {
 1070|      0|          snprintf((char *)&buf, sizeof(buf), "(%" PRIu32 ")", value);
 1071|      0|        }
 1072|      0|        buf_len = strlen((char *)buf);
 1073|      0|        break;
 1074|      0|      case COAP_OPTION_URI_PATH:
  ------------------
  |  Branch (1074:7): [True: 0, False: 0]
  ------------------
 1075|      0|      case COAP_OPTION_PROXY_URI:
  ------------------
  |  Branch (1075:7): [True: 0, False: 0]
  ------------------
 1076|      0|      case COAP_OPTION_URI_HOST:
  ------------------
  |  Branch (1076:7): [True: 0, False: 0]
  ------------------
 1077|      0|      case COAP_OPTION_LOCATION_PATH:
  ------------------
  |  Branch (1077:7): [True: 0, False: 0]
  ------------------
 1078|      0|      case COAP_OPTION_LOCATION_QUERY:
  ------------------
  |  Branch (1078:7): [True: 0, False: 0]
  ------------------
 1079|      0|      case COAP_OPTION_PROXY_SCHEME:
  ------------------
  |  Branch (1079:7): [True: 0, False: 0]
  ------------------
 1080|      0|      case COAP_OPTION_URI_QUERY:
  ------------------
  |  Branch (1080:7): [True: 0, False: 0]
  ------------------
 1081|      0|        buf_len = print_readable(coap_opt_value(option),
 1082|      0|                                 coap_opt_length(option),
 1083|      0|                                 buf, sizeof(buf), 0);
 1084|      0|        break;
 1085|      0|      case COAP_OPTION_IF_NONE_MATCH:
  ------------------
  |  Branch (1085:7): [True: 0, False: 0]
  ------------------
 1086|      0|      case COAP_OPTION_EDHOC:
  ------------------
  |  Branch (1086:7): [True: 0, False: 0]
  ------------------
 1087|      0|      default:
  ------------------
  |  Branch (1087:7): [True: 0, False: 0]
  ------------------
 1088|      0|        buf_len = print_readable(coap_opt_value(option),
 1089|      0|                                 coap_opt_length(option),
 1090|      0|                                 buf, sizeof(buf), 1);
 1091|      0|      }
 1092|      0|    }
 1093|      0|    outbuflen = strlen(outbuf);
 1094|      0|    snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,
 1095|      0|             " %s:%.*s", coap_option_string(pdu->code, opt_iter.number),
 1096|      0|             (int)buf_len, buf);
 1097|      0|  }
 1098|       |
 1099|      0|  outbuflen = strlen(outbuf);
 1100|      0|  snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  " ]");
 1101|       |
 1102|      0|  if (coap_get_data(pdu, &data_len, &data)) {
  ------------------
  |  Branch (1102:7): [True: 0, False: 0]
  ------------------
 1103|      0|    if (!enable_data_for_show_pdu) {
  ------------------
  |  Branch (1103:9): [True: 0, False: 0]
  ------------------
 1104|       |      /* Only output data if wanted */
 1105|      0|      outbuflen = strlen(outbuf);
 1106|      0|      snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  " :: ");
 1107|      0|      outbuflen = strlen(outbuf);
 1108|      0|      snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,
 1109|      0|               "data length %"PRIuS " (data suppressed)\n", data_len);
 1110|      0|      COAP_DO_SHOW_OUTPUT_LINE;
  ------------------
  |  |  779|      0|  do {                                      \
  |  |  780|      0|    if (use_fprintf_for_show_pdu) {         \
  |  |  ------------------
  |  |  |  Branch (780:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  781|      0|      fprintf(COAP_DEBUG_FD, "%s", outbuf); \
  |  |  ------------------
  |  |  |  |   37|      0|#define COAP_DEBUG_FD stdout
  |  |  ------------------
  |  |  782|      0|    }                                       \
  |  |  783|      0|    else {                                  \
  |  |  784|      0|      coap_log(level, "%s", outbuf);        \
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  785|      0|    }                                       \
  |  |  786|      0|  } while (0)
  |  |  ------------------
  |  |  |  Branch (786:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1111|       |#if COAP_THREAD_SAFE
 1112|       |      coap_mutex_unlock(&m_show_pdu);
 1113|       |#endif /* COAP_THREAD_SAFE */
 1114|      0|      return;
 1115|      0|    }
 1116|       |
 1117|      0|    outbuflen = strlen(outbuf);
 1118|      0|    snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  " :: ");
 1119|       |
 1120|      0|    if (is_binary(content_format) || !isprint(data[0]) || is_oscore_payload) {
  ------------------
  |  Branch (1120:9): [True: 0, False: 0]
  |  Branch (1120:38): [True: 0, False: 0]
  |  Branch (1120:59): [True: 0, False: 0]
  ------------------
 1121|      0|      size_t keep_data_len = data_len;
 1122|      0|      const uint8_t *keep_data = data;
 1123|       |
 1124|      0|      outbuflen = strlen(outbuf);
 1125|      0|      snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,
 1126|      0|               "binary data length %"PRIuS "\n", data_len);
 1127|      0|      COAP_DO_SHOW_OUTPUT_LINE;
  ------------------
  |  |  779|      0|  do {                                      \
  |  |  780|      0|    if (use_fprintf_for_show_pdu) {         \
  |  |  ------------------
  |  |  |  Branch (780:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  781|      0|      fprintf(COAP_DEBUG_FD, "%s", outbuf); \
  |  |  ------------------
  |  |  |  |   37|      0|#define COAP_DEBUG_FD stdout
  |  |  ------------------
  |  |  782|      0|    }                                       \
  |  |  783|      0|    else {                                  \
  |  |  784|      0|      coap_log(level, "%s", outbuf);        \
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  785|      0|    }                                       \
  |  |  786|      0|  } while (0)
  |  |  ------------------
  |  |  |  Branch (786:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1128|       |      /*
 1129|       |       * Output hex dump of binary data as a continuous entry
 1130|       |       */
 1131|      0|      outbuf[0] = '\000';
 1132|      0|      snprintf(outbuf, sizeof(outbuf),  "<<");
 1133|      0|      while (data_len--) {
  ------------------
  |  Branch (1133:14): [True: 0, False: 0]
  ------------------
 1134|      0|        outbuflen = strlen(outbuf);
 1135|      0|        snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,
 1136|      0|                 "%02x", *data++);
 1137|      0|      }
 1138|      0|      outbuflen = strlen(outbuf);
 1139|      0|      snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  ">>");
 1140|      0|      data_len = keep_data_len;
 1141|      0|      data = keep_data;
 1142|      0|      outbuflen = strlen(outbuf);
 1143|      0|      if (outbuflen == sizeof(outbuf)-1)
  ------------------
  |  Branch (1143:11): [True: 0, False: 0]
  ------------------
 1144|      0|        outbuflen--;
 1145|      0|      snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  "\n");
 1146|      0|      COAP_DO_SHOW_OUTPUT_LINE;
  ------------------
  |  |  779|      0|  do {                                      \
  |  |  780|      0|    if (use_fprintf_for_show_pdu) {         \
  |  |  ------------------
  |  |  |  Branch (780:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  781|      0|      fprintf(COAP_DEBUG_FD, "%s", outbuf); \
  |  |  ------------------
  |  |  |  |   37|      0|#define COAP_DEBUG_FD stdout
  |  |  ------------------
  |  |  782|      0|    }                                       \
  |  |  783|      0|    else {                                  \
  |  |  784|      0|      coap_log(level, "%s", outbuf);        \
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  785|      0|    }                                       \
  |  |  786|      0|  } while (0)
  |  |  ------------------
  |  |  |  Branch (786:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1147|       |      /*
 1148|       |       * Output ascii readable (if possible), immediately under the
 1149|       |       * hex value of the character output above to help binary debugging
 1150|       |       */
 1151|      0|      outbuf[0] = '\000';
 1152|      0|      snprintf(outbuf, sizeof(outbuf),  "<<");
 1153|      0|      while (data_len--) {
  ------------------
  |  Branch (1153:14): [True: 0, False: 0]
  ------------------
 1154|      0|        outbuflen = strlen(outbuf);
 1155|      0|        snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,
 1156|      0|                 "%c ", isprint(*data) ? *data : '.');
  ------------------
  |  Branch (1156:25): [True: 0, False: 0]
  ------------------
 1157|      0|        data++;
 1158|      0|      }
 1159|      0|      outbuflen = strlen(outbuf);
 1160|      0|      snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  ">>");
 1161|      0|    } else {
 1162|      0|      size_t max_length;
 1163|       |
 1164|      0|      outbuflen = strlen(outbuf);
 1165|      0|      max_length = sizeof(outbuf)-outbuflen;
 1166|      0|      if (max_length > 1) {
  ------------------
  |  Branch (1166:11): [True: 0, False: 0]
  ------------------
 1167|      0|        outbuf[outbuflen++] = '\'';
 1168|      0|        outbuf[outbuflen] = '\000';
 1169|      0|        max_length--;
 1170|      0|      }
 1171|      0|      if (max_length > 1) {
  ------------------
  |  Branch (1171:11): [True: 0, False: 0]
  ------------------
 1172|      0|        outbuflen += print_readable(data, data_len,
 1173|      0|                                    (unsigned char *)&outbuf[outbuflen],
 1174|      0|                                    max_length, 0);
 1175|      0|      }
 1176|       |      /* print_readable may be handling unprintables - hence headroom of 4 */
 1177|      0|      if (outbuflen < sizeof(outbuf)-4-1) {
  ------------------
  |  Branch (1177:11): [True: 0, False: 0]
  ------------------
 1178|      0|        outbuf[outbuflen++] = '\'';
 1179|      0|        outbuf[outbuflen] = '\000';
 1180|      0|      }
 1181|      0|    }
 1182|      0|  }
 1183|       |
 1184|      0|  outbuflen = strlen(outbuf);
 1185|      0|  if (outbuflen == sizeof(outbuf)-1)
  ------------------
  |  Branch (1185:7): [True: 0, False: 0]
  ------------------
 1186|      0|    outbuflen--;
 1187|      0|  snprintf(&outbuf[outbuflen], sizeof(outbuf)-outbuflen,  "\n");
 1188|      0|  COAP_DO_SHOW_OUTPUT_LINE;
  ------------------
  |  |  779|      0|  do {                                      \
  |  |  780|      0|    if (use_fprintf_for_show_pdu) {         \
  |  |  ------------------
  |  |  |  Branch (780:9): [True: 0, False: 0]
  |  |  ------------------
  |  |  781|      0|      fprintf(COAP_DEBUG_FD, "%s", outbuf); \
  |  |  ------------------
  |  |  |  |   37|      0|#define COAP_DEBUG_FD stdout
  |  |  ------------------
  |  |  782|      0|    }                                       \
  |  |  783|      0|    else {                                  \
  |  |  784|      0|      coap_log(level, "%s", outbuf);        \
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  785|      0|    }                                       \
  |  |  786|      0|  } while (0)
  |  |  ------------------
  |  |  |  Branch (786:12): [Folded, False: 0]
  |  |  ------------------
  ------------------
 1189|       |
 1190|       |#if COAP_THREAD_SAFE
 1191|       |  coap_mutex_unlock(&m_show_pdu);
 1192|       |#endif /* COAP_THREAD_SAFE */
 1193|      0|}
coap_debug_reset:
 1581|  3.10k|coap_debug_reset(void) {
 1582|       |  log_handler = NULL;
 1583|  3.10k|  maxlog = COAP_LOG_WARN;
 1584|  3.10k|  use_fprintf_for_show_pdu = 1;
 1585|  3.10k|  num_packet_loss_intervals = 0;
 1586|  3.10k|  packet_loss_level = 0;
 1587|  3.10k|  num_packet_fail_intervals = 0;
 1588|  3.10k|  packet_fail_level = 0;
 1589|  3.10k|  send_packet_count = 0;
 1590|  3.10k|  num_packet_drop_intervals = 0;
 1591|  3.10k|  packet_drop_level = 0;
 1592|  3.10k|  recv_packet_count = 0;
 1593|  3.10k|}

coap_fls:
   21|  26.1k|coap_fls(unsigned int i) {
   22|  26.1k|  return coap_flsll(i);
   23|  26.1k|}
coap_flsll:
   28|  26.1k|coap_flsll(long long j) {
   29|  26.1k|  unsigned long long i = (unsigned long long)j;
   30|  26.1k|  int n;
   31|  87.3k|  for (n = 0; i; n++)
  ------------------
  |  Branch (31:15): [True: 61.2k, False: 26.1k]
  ------------------
   32|  61.2k|    i >>= 1;
   33|  26.1k|  return n;
   34|  26.1k|}
coap_decode_var_bytes:
   38|     15|coap_decode_var_bytes(const uint8_t *buf, size_t len) {
   39|     15|  unsigned int i, n = 0;
   40|     25|  for (i = 0; i < len; ++i)
  ------------------
  |  Branch (40:15): [True: 10, False: 15]
  ------------------
   41|     10|    n = (n << 8) + buf[i];
   42|       |
   43|     15|  return n;
   44|     15|}

coap_memory_init:
  623|  3.10k|coap_memory_init(void) {
  624|  3.10k|}
coap_malloc_type:
  627|  7.64k|coap_malloc_type(coap_memory_tag_t type, size_t size) {
  628|  7.64k|  void *ptr;
  629|       |
  630|  7.64k|  (void)type;
  631|  7.64k|  ptr = malloc(size);
  632|       |#if COAP_MEMORY_TYPE_TRACK
  633|       |  assert(type < COAP_MEM_TAG_LAST);
  634|       |  if (ptr) {
  635|       |    track_counts[type]++;
  636|       |    if (track_counts[type] > peak_counts[type])
  637|       |      peak_counts[type] = track_counts[type];
  638|       |  } else {
  639|       |    fail_counts[type]++;
  640|       |  }
  641|       |#endif /* COAP_MEMORY_TYPE_TRACK */
  642|  7.64k|  return ptr;
  643|  7.64k|}
coap_realloc_type:
  646|    554|coap_realloc_type(coap_memory_tag_t type, void *p, size_t size) {
  647|    554|  void *ptr;
  648|       |
  649|    554|  (void)type;
  650|    554|  ptr = realloc(p, size);
  651|       |#if COAP_MEMORY_TYPE_TRACK
  652|       |  if (ptr) {
  653|       |    assert(type < COAP_MEM_TAG_LAST);
  654|       |    if (!p)
  655|       |      track_counts[type]++;
  656|       |    if (track_counts[type] > peak_counts[type])
  657|       |      peak_counts[type] = track_counts[type];
  658|       |  } else {
  659|       |    fail_counts[type]++;
  660|       |  }
  661|       |#endif /* COAP_MEMORY_TYPE_TRACK */
  662|    554|  return ptr;
  663|    554|}
coap_free_type:
  666|  12.4k|coap_free_type(coap_memory_tag_t type, void *p) {
  667|  12.4k|  (void)type;
  668|       |#if COAP_MEMORY_TYPE_TRACK
  669|       |  assert(type < COAP_MEM_TAG_LAST);
  670|       |  if (p)
  671|       |    track_counts[type]--;
  672|       |#endif /* COAP_MEMORY_TYPE_TRACK */
  673|  12.4k|  free(p);
  674|  12.4k|}

coap_startup:
 5447|  3.10k|coap_startup(void) {
 5448|  3.10k|  coap_tick_t now;
 5449|  3.10k|#ifndef WITH_CONTIKI
 5450|  3.10k|  uint64_t us;
 5451|  3.10k|#endif /* !WITH_CONTIKI */
 5452|       |
 5453|  3.10k|  if (coap_started)
  ------------------
  |  Branch (5453:7): [True: 0, False: 3.10k]
  ------------------
 5454|      0|    return;
 5455|  3.10k|  coap_started = 1;
 5456|       |
 5457|       |#if COAP_THREAD_SAFE
 5458|       |  coap_lock_init(&global_lock);
 5459|       |  coap_mutex_init(&m_show_pdu);
 5460|       |  coap_mutex_init(&m_log_impl);
 5461|       |  coap_mutex_init(&m_io_threads);
 5462|       |#endif /* COAP_THREAD_SAFE */
 5463|       |
 5464|       |#if defined(HAVE_WINSOCK2_H)
 5465|       |  WORD wVersionRequested = MAKEWORD(2, 2);
 5466|       |  WSADATA wsaData;
 5467|       |  WSAStartup(wVersionRequested, &wsaData);
 5468|       |#endif
 5469|  3.10k|  coap_clock_init();
 5470|  3.10k|  coap_ticks(&now);
 5471|  3.10k|#ifndef WITH_CONTIKI
 5472|  3.10k|  us = coap_ticks_to_rt_us(now);
 5473|       |  /* Be accurate to the nearest (approx) us */
 5474|  3.10k|  coap_prng_init_lkd((unsigned int)us);
 5475|       |#else /* WITH_CONTIKI */
 5476|       |  coap_start_io_process();
 5477|       |#endif /* WITH_CONTIKI */
 5478|  3.10k|  coap_memory_init();
 5479|  3.10k|  coap_dtls_startup();
 5480|       |#ifdef WITH_LWIP
 5481|       |  coap_io_lwip_init();
 5482|       |#endif /* WITH_LWIP */
 5483|  3.10k|#if COAP_SERVER_SUPPORT
 5484|  3.10k|  static coap_str_const_t well_known = { sizeof(".well-known/core")-1,
 5485|  3.10k|                                         (const uint8_t *)".well-known/core"
 5486|  3.10k|                                       };
 5487|  3.10k|  memset(&resource_uri_wellknown, 0, sizeof(resource_uri_wellknown));
 5488|  3.10k|  resource_uri_wellknown.ref = 1;
 5489|  3.10k|  resource_uri_wellknown.handler[COAP_REQUEST_GET-1] = hnd_get_wellknown_lkd;
 5490|  3.10k|  resource_uri_wellknown.flags = COAP_RESOURCE_FLAGS_HAS_MCAST_SUPPORT;
  ------------------
  |  |   89|  3.10k|#define COAP_RESOURCE_FLAGS_HAS_MCAST_SUPPORT 0x8
  ------------------
 5491|  3.10k|  resource_uri_wellknown.uri_path = &well_known;
 5492|  3.10k|#endif /* COAP_SERVER_SUPPORT */
 5493|  3.10k|  send_recv_terminate = 0;
 5494|  3.10k|  coap_prng_lkd(&coap_unique_id, sizeof(coap_unique_id));
 5495|  3.10k|}
coap_cleanup:
 5498|  3.10k|coap_cleanup(void) {
 5499|  3.10k|  if (!coap_started)
  ------------------
  |  Branch (5499:7): [True: 0, False: 3.10k]
  ------------------
 5500|      0|    return;
 5501|  3.10k|  coap_started = 0;
 5502|       |#if defined(HAVE_WINSOCK2_H)
 5503|       |  WSACleanup();
 5504|       |#elif defined(WITH_CONTIKI)
 5505|       |  coap_stop_io_process();
 5506|       |#endif
 5507|       |#ifdef WITH_LWIP
 5508|       |  coap_io_lwip_cleanup();
 5509|       |#endif /* WITH_LWIP */
 5510|  3.10k|  coap_dtls_shutdown();
 5511|       |
 5512|  3.10k|  coap_delete_upa_chain(coap_upa_client_fallback_chain);
 5513|  3.10k|  coap_upa_client_fallback_chain = NULL;
 5514|  3.10k|  coap_delete_upa_chain(coap_upa_server_mapping_chain);
 5515|  3.10k|  coap_upa_server_mapping_chain = NULL;
 5516|       |#if COAP_THREAD_SAFE
 5517|       |  coap_mutex_destroy(&m_show_pdu);
 5518|       |  coap_mutex_destroy(&m_log_impl);
 5519|       |  coap_mutex_destroy(&m_io_threads);
 5520|       |#endif /* COAP_THREAD_SAFE */
 5521|       |
 5522|  3.10k|  coap_debug_reset();
 5523|  3.10k|}

coap_dtls_is_supported:
  191|      3|coap_dtls_is_supported(void) {
  192|      3|  if (SSLeay() < 0x10100000L) {
  ------------------
  |  Branch (192:7): [True: 0, False: 3]
  ------------------
  193|      0|    coap_log_warn("OpenSSL version 1.1.0 or later is required\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  194|      0|    return 0;
  195|      0|  }
  196|      3|#if OPENSSL_VERSION_NUMBER >= 0x10101000L
  197|       |  /*
  198|       |   * For 1.1.1, we need to use SSL_CTX_set_client_hello_cb()
  199|       |   * which is not in 1.1.0 instead of SSL_CTX_set_tlsext_servername_callback()
  200|       |   *
  201|       |   * However, there could be a runtime undefined external reference error
  202|       |   * as SSL_CTX_set_client_hello_cb() is not there in 1.1.0.
  203|       |   */
  204|      3|  if (SSLeay() < 0x10101000L) {
  ------------------
  |  Branch (204:7): [True: 0, False: 3]
  ------------------
  205|      0|    coap_log_warn("OpenSSL version 1.1.1 or later is required\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  206|      0|    return 0;
  207|      0|  }
  208|      3|#endif /* OPENSSL_VERSION_NUMBER >= 0x10101000L */
  209|      3|  return 1;
  210|      3|}
coap_tls_is_supported:
  213|      4|coap_tls_is_supported(void) {
  214|      4|#if !COAP_DISABLE_TCP
  215|      4|  if (SSLeay() < 0x10100000L) {
  ------------------
  |  Branch (215:7): [True: 0, False: 4]
  ------------------
  216|      0|    coap_log_warn("OpenSSL version 1.1.0 or later is required\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  217|      0|    return 0;
  218|      0|  }
  219|      4|#if OPENSSL_VERSION_NUMBER >= 0x10101000L
  220|      4|  if (SSLeay() < 0x10101000L) {
  ------------------
  |  Branch (220:7): [True: 0, False: 4]
  ------------------
  221|      0|    coap_log_warn("OpenSSL version 1.1.1 or later is required\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  222|      0|    return 0;
  223|      0|  }
  224|      4|#endif /* OPENSSL_VERSION_NUMBER >= 0x10101000L */
  225|      4|  return 1;
  226|       |#else /* COAP_DISABLE_TCP */
  227|       |  return 0;
  228|       |#endif /* COAP_DISABLE_TCP */
  229|      4|}
coap_dtls_startup:
  304|  3.10k|coap_dtls_startup(void) {
  305|  3.10k|  SSL_load_error_strings();
  306|  3.10k|  SSL_library_init();
  307|  3.10k|#if OPENSSL_VERSION_NUMBER < 0x40000000L
  308|       |  ENGINE_load_dynamic();
  309|  3.10k|#endif /* OPENSSL_VERSION_NUMBER < 0x40000000L */
  310|  3.10k|}
coap_dtls_shutdown:
  313|  3.10k|coap_dtls_shutdown(void) {
  314|  3.10k|#if OPENSSL_VERSION_NUMBER < 0x30000000L
  315|  3.10k|  if (pkcs11_engine) {
  ------------------
  |  Branch (315:7): [True: 0, False: 3.10k]
  ------------------
  316|       |    /* Release the functional reference from ENGINE_init() */
  317|      0|    ENGINE_finish(pkcs11_engine);
  318|      0|    pkcs11_engine = NULL;
  319|      0|  }
  320|  3.10k|  if (defined_engine) {
  ------------------
  |  Branch (320:7): [True: 0, False: 3.10k]
  ------------------
  321|       |    /* Release the functional reference from ENGINE_init() */
  322|      0|    ENGINE_finish(defined_engine);
  323|      0|    defined_engine = NULL;
  324|      0|  }
  325|       |#elif OPENSSL_VERSION_NUMBER < 0x40000000L
  326|       |  pkcs11_engine = NULL;
  327|       |  defined_engine = NULL;
  328|       |#endif /* OPENSSL_VERSION_NUMBER >= 0x30000000L && < 0x40000000L */
  329|       |  ERR_free_strings();
  ------------------
  |  Branch (329:3): [Folded, False: 3.10k]
  ------------------
  330|  3.10k|  coap_dtls_set_log_level(COAP_LOG_EMERG);
  331|  3.10k|}
coap_dtls_set_log_level:
  590|  3.10k|coap_dtls_set_log_level(coap_log_t level) {
  591|  3.10k|  dtls_log_level = level;
  592|  3.10k|}

coap_opt_parse:
   41|  59.0M|coap_opt_parse(const coap_opt_t *opt, size_t length, coap_option_t *result) {
   42|       |
   43|  59.0M|  const coap_opt_t *opt_start = opt; /* store where parsing starts  */
   44|       |
   45|  59.0M|  assert(opt);
  ------------------
  |  Branch (45:3): [True: 59.0M, False: 0]
  ------------------
   46|  59.0M|  assert(result);
  ------------------
  |  Branch (46:3): [True: 59.0M, False: 0]
  ------------------
   47|       |
   48|  59.0M|  if (length < 1)
  ------------------
  |  Branch (48:7): [True: 4.50k, False: 59.0M]
  ------------------
   49|  4.50k|    return 0;
   50|       |
   51|  59.0M|  result->delta = (*opt & 0xf0) >> 4;
   52|  59.0M|  result->length = *opt & 0x0f;
   53|       |
   54|  59.0M|  switch (result->delta) {
   55|    558|  case 15:
  ------------------
  |  Branch (55:3): [True: 558, False: 59.0M]
  ------------------
   56|    558|    if (*opt != COAP_PAYLOAD_START) {
  ------------------
  |  |   96|    558|#define COAP_PAYLOAD_START 0xFF /* payload marker */
  ------------------
  |  Branch (56:9): [True: 213, False: 345]
  ------------------
   57|    213|      coap_log_debug("ignored reserved option delta 15\n");
  ------------------
  |  |  126|    213|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|    213|#define coap_log(level, ...) do { \
  |  |  |  |  291|    213|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 213]
  |  |  |  |  ------------------
  |  |  |  |  292|    213|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|    213|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 213]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   58|    213|    }
   59|    558|    return 0;
   60|  1.23k|  case 14:
  ------------------
  |  Branch (60:3): [True: 1.23k, False: 59.0M]
  ------------------
   61|       |    /* Handle two-byte value: First, the MSB + 269 is stored as delta value.
   62|       |     * After that, the option pointer is advanced to the LSB which is handled
   63|       |     * just like case delta == 13. */
   64|  1.23k|    ADVANCE_OPT_CHECK(opt,length,1);
  ------------------
  |  |   34|  1.23k|#define ADVANCE_OPT_CHECK(o,e,step) do { \
  |  |   35|  1.23k|    ADVANCE_OPT(o,e,step);               \
  |  |  ------------------
  |  |  |  |   22|  1.23k|#define ADVANCE_OPT(o,e,step) if ((e) < step) {           \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (22:35): [True: 0, False: 1.23k]
  |  |  |  |  ------------------
  |  |  |  |   23|      0|    coap_log_debug("cannot advance opt past end\n"); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   24|      0|    return 0;                                             \
  |  |  |  |   25|  1.23k|  } else {                                                \
  |  |  |  |   26|  1.23k|    (e) -= step;                                          \
  |  |  |  |   27|  1.23k|    (o) = ((o)) + step;                                   \
  |  |  |  |   28|  1.23k|  }
  |  |  ------------------
  |  |   36|  1.23k|    if ((e) < 1)                         \
  |  |  ------------------
  |  |  |  Branch (36:9): [True: 54, False: 1.17k]
  |  |  ------------------
  |  |   37|  1.23k|      return 0;                          \
  |  |   38|  1.23k|  } while (0)
  |  |  ------------------
  |  |  |  Branch (38:12): [Folded, False: 1.17k]
  |  |  ------------------
  ------------------
   65|  1.17k|    result->delta = ((*opt & 0xff) << 8) + 269;
   66|  1.17k|    if (result->delta < 269) {
  ------------------
  |  Branch (66:9): [True: 6, False: 1.17k]
  ------------------
   67|      6|      coap_log_debug("delta too large\n");
  ------------------
  |  |  126|      6|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      6|#define coap_log(level, ...) do { \
  |  |  |  |  291|      6|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 6]
  |  |  |  |  ------------------
  |  |  |  |  292|      6|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      6|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 6]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   68|      6|      return 0;
   69|      6|    }
   70|       |  /* fall through */
   71|  5.64k|  case 13:
  ------------------
  |  Branch (71:3): [True: 4.46k, False: 59.0M]
  ------------------
   72|  5.64k|    ADVANCE_OPT_CHECK(opt,length,1);
  ------------------
  |  |   34|  5.64k|#define ADVANCE_OPT_CHECK(o,e,step) do { \
  |  |   35|  5.64k|    ADVANCE_OPT(o,e,step);               \
  |  |  ------------------
  |  |  |  |   22|  5.64k|#define ADVANCE_OPT(o,e,step) if ((e) < step) {           \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (22:35): [True: 0, False: 5.64k]
  |  |  |  |  ------------------
  |  |  |  |   23|      0|    coap_log_debug("cannot advance opt past end\n"); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   24|      0|    return 0;                                             \
  |  |  |  |   25|  5.64k|  } else {                                                \
  |  |  |  |   26|  5.64k|    (e) -= step;                                          \
  |  |  |  |   27|  5.64k|    (o) = ((o)) + step;                                   \
  |  |  |  |   28|  5.64k|  }
  |  |  ------------------
  |  |   36|  5.64k|    if ((e) < 1)                         \
  |  |  ------------------
  |  |  |  Branch (36:9): [True: 93, False: 5.54k]
  |  |  ------------------
  |  |   37|  5.64k|      return 0;                          \
  |  |   38|  5.64k|  } while (0)
  |  |  ------------------
  |  |  |  Branch (38:12): [Folded, False: 5.54k]
  |  |  ------------------
  ------------------
   73|  5.54k|    result->delta += *opt & 0xff;
   74|  5.54k|    break;
   75|       |
   76|  59.0M|  default:
  ------------------
  |  Branch (76:3): [True: 59.0M, False: 6.25k]
  ------------------
   77|  59.0M|    ;
   78|  59.0M|  }
   79|       |
   80|  59.0M|  switch (result->length) {
   81|     78|  case 15:
  ------------------
  |  Branch (81:3): [True: 78, False: 59.0M]
  ------------------
   82|     78|    coap_log_debug("found reserved option length 15\n");
  ------------------
  |  |  126|     78|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     78|#define coap_log(level, ...) do { \
  |  |  |  |  291|     78|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 78]
  |  |  |  |  ------------------
  |  |  |  |  292|     78|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     78|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 78]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   83|     78|    return 0;
   84|  5.35k|  case 14:
  ------------------
  |  Branch (84:3): [True: 5.35k, False: 59.0M]
  ------------------
   85|       |    /* Handle two-byte value: First, the MSB + 269 is stored as delta value.
   86|       |     * After that, the option pointer is advanced to the LSB which is handled
   87|       |     * just like case delta == 13. */
   88|  5.35k|    ADVANCE_OPT_CHECK(opt,length,1);
  ------------------
  |  |   34|  5.35k|#define ADVANCE_OPT_CHECK(o,e,step) do { \
  |  |   35|  5.35k|    ADVANCE_OPT(o,e,step);               \
  |  |  ------------------
  |  |  |  |   22|  5.35k|#define ADVANCE_OPT(o,e,step) if ((e) < step) {           \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (22:35): [True: 0, False: 5.35k]
  |  |  |  |  ------------------
  |  |  |  |   23|      0|    coap_log_debug("cannot advance opt past end\n"); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   24|      0|    return 0;                                             \
  |  |  |  |   25|  5.35k|  } else {                                                \
  |  |  |  |   26|  5.35k|    (e) -= step;                                          \
  |  |  |  |   27|  5.35k|    (o) = ((o)) + step;                                   \
  |  |  |  |   28|  5.35k|  }
  |  |  ------------------
  |  |   36|  5.35k|    if ((e) < 1)                         \
  |  |  ------------------
  |  |  |  Branch (36:9): [True: 45, False: 5.30k]
  |  |  ------------------
  |  |   37|  5.35k|      return 0;                          \
  |  |   38|  5.35k|  } while (0)
  |  |  ------------------
  |  |  |  Branch (38:12): [Folded, False: 5.30k]
  |  |  ------------------
  ------------------
   89|  5.30k|    result->length = ((*opt & 0xff) << 8) + 269;
   90|       |  /* fall through */
   91|  41.1k|  case 13:
  ------------------
  |  Branch (91:3): [True: 35.8k, False: 58.9M]
  ------------------
   92|  41.1k|    ADVANCE_OPT_CHECK(opt,length,1);
  ------------------
  |  |   34|  41.1k|#define ADVANCE_OPT_CHECK(o,e,step) do { \
  |  |   35|  41.1k|    ADVANCE_OPT(o,e,step);               \
  |  |  ------------------
  |  |  |  |   22|  41.1k|#define ADVANCE_OPT(o,e,step) if ((e) < step) {           \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (22:35): [True: 0, False: 41.1k]
  |  |  |  |  ------------------
  |  |  |  |   23|      0|    coap_log_debug("cannot advance opt past end\n"); \
  |  |  |  |  ------------------
  |  |  |  |  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |   24|      0|    return 0;                                             \
  |  |  |  |   25|  41.1k|  } else {                                                \
  |  |  |  |   26|  41.1k|    (e) -= step;                                          \
  |  |  |  |   27|  41.1k|    (o) = ((o)) + step;                                   \
  |  |  |  |   28|  41.1k|  }
  |  |  ------------------
  |  |   36|  41.1k|    if ((e) < 1)                         \
  |  |  ------------------
  |  |  |  Branch (36:9): [True: 57, False: 41.0k]
  |  |  ------------------
  |  |   37|  41.1k|      return 0;                          \
  |  |   38|  41.1k|  } while (0)
  |  |  ------------------
  |  |  |  Branch (38:12): [Folded, False: 41.0k]
  |  |  ------------------
  ------------------
   93|  41.0k|    result->length += *opt & 0xff;
   94|  41.0k|    break;
   95|       |
   96|  58.9M|  default:
  ------------------
  |  Branch (96:3): [True: 58.9M, False: 41.2k]
  ------------------
   97|  58.9M|    ;
   98|  59.0M|  }
   99|       |
  100|       |  /* ADVANCE_OPT() is correct here */
  101|  59.0M|  ADVANCE_OPT(opt,length,1);
  ------------------
  |  |   22|  59.0M|#define ADVANCE_OPT(o,e,step) if ((e) < step) {           \
  |  |  ------------------
  |  |  |  Branch (22:35): [True: 0, False: 59.0M]
  |  |  ------------------
  |  |   23|      0|    coap_log_debug("cannot advance opt past end\n"); \
  |  |  ------------------
  |  |  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  |  |  ------------------
  |  |  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   24|      0|    return 0;                                             \
  |  |   25|  59.0M|  } else {                                                \
  |  |   26|  59.0M|    (e) -= step;                                          \
  |  |   27|  59.0M|    (o) = ((o)) + step;                                   \
  |  |   28|  59.0M|  }
  ------------------
  102|       |  /* opt now points to value, if present */
  103|       |
  104|  59.0M|  result->value = opt;
  105|  59.0M|  if (length < result->length) {
  ------------------
  |  Branch (105:7): [True: 870, False: 59.0M]
  ------------------
  106|    870|    coap_log_debug("invalid option length\n");
  ------------------
  |  |  126|    870|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|    870|#define coap_log(level, ...) do { \
  |  |  |  |  291|    870|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 870]
  |  |  |  |  ------------------
  |  |  |  |  292|    870|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|    870|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 870]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  107|    870|    return 0;
  108|    870|  }
  109|       |
  110|  59.0M|#undef ADVANCE_OPT
  111|  59.0M|#undef ADVANCE_OPT_CHECK
  112|       |
  113|  59.0M|  return (opt + result->length) - opt_start;
  114|  59.0M|}
coap_option_iterator_init:
  118|  6.98k|                          const coap_opt_filter_t *filter) {
  119|  6.98k|  assert(pdu);
  ------------------
  |  Branch (119:3): [True: 6.98k, False: 0]
  ------------------
  120|  6.98k|  assert(pdu->token);
  ------------------
  |  Branch (120:3): [True: 6.98k, False: 0]
  ------------------
  121|  6.98k|  assert(oi);
  ------------------
  |  Branch (121:3): [True: 6.98k, False: 0]
  ------------------
  122|       |
  123|  6.98k|  memset(oi, 0, sizeof(coap_opt_iterator_t));
  124|       |
  125|  6.98k|  oi->next_option = pdu->token + pdu->e_token_length;
  126|  6.98k|  if (pdu->token + pdu->used_size <= oi->next_option) {
  ------------------
  |  Branch (126:7): [True: 210, False: 6.77k]
  ------------------
  127|    210|    oi->bad = 1;
  128|    210|    return NULL;
  129|    210|  }
  130|       |
  131|  6.77k|  oi->length = pdu->used_size - pdu->e_token_length;
  132|       |
  133|  6.77k|  if (filter) {
  ------------------
  |  Branch (133:7): [True: 6.77k, False: 0]
  ------------------
  134|  6.77k|    memcpy(&oi->filter, filter, sizeof(coap_opt_filter_t));
  135|  6.77k|    oi->filtered = 1;
  136|  6.77k|  }
  137|  6.77k|  return oi;
  138|  6.98k|}
coap_option_next:
  153|  9.12M|coap_option_next(coap_opt_iterator_t *oi) {
  154|  9.12M|  coap_option_t option;
  155|  9.12M|  coap_opt_t *current_opt = NULL;
  156|  9.12M|  size_t optsize;
  157|       |
  158|  9.12M|  assert(oi);
  ------------------
  |  Branch (158:3): [True: 9.12M, False: 0]
  ------------------
  159|       |
  160|  9.12M|  if (opt_finished(oi))
  ------------------
  |  Branch (160:7): [True: 1.55k, False: 9.12M]
  ------------------
  161|  1.55k|    return NULL;
  162|       |
  163|  30.0M|  while (1) {
  ------------------
  |  Branch (163:10): [True: 30.0M, Folded]
  ------------------
  164|       |    /* oi->next_option always points to the next option to deliver; as
  165|       |     * opt_finished() filters out any bad conditions, we can assume that
  166|       |     * oi->next_option is valid. */
  167|  30.0M|    current_opt = oi->next_option;
  168|       |
  169|       |    /*
  170|       |     * Advance internal pointer to next option.
  171|       |     * optsize will be 0 when no more options
  172|       |     */
  173|  30.0M|    optsize = coap_opt_parse(oi->next_option, oi->length, &option);
  174|  30.0M|    if (optsize) {
  ------------------
  |  Branch (174:9): [True: 30.0M, False: 4.84k]
  ------------------
  175|  30.0M|      assert(optsize <= oi->length);
  ------------------
  |  Branch (175:7): [True: 30.0M, False: 0]
  ------------------
  176|       |
  177|  30.0M|      oi->next_option += optsize;
  178|  30.0M|      oi->length -= optsize;
  179|       |
  180|  30.0M|      oi->number += option.delta;
  181|  30.0M|    } else {                        /* current option is malformed */
  182|  4.84k|      oi->bad = 1;
  183|  4.84k|      return NULL;
  184|  4.84k|    }
  185|       |
  186|       |    /* Exit the while loop when:
  187|       |     *   - no filtering is done at all
  188|       |     *   - the filter matches for the current option
  189|       |     */
  190|  30.0M|    if (!oi->filtered ||
  ------------------
  |  Branch (190:9): [True: 0, False: 30.0M]
  ------------------
  191|  30.0M|        coap_option_filter_get(&oi->filter, oi->number) > 0)
  ------------------
  |  Branch (191:9): [True: 9.12M, False: 20.9M]
  ------------------
  192|  9.12M|      break;
  193|  30.0M|  }
  194|       |
  195|  9.12M|  return current_opt;
  196|  9.12M|}
coap_check_option:
  200|  3.14k|                  coap_opt_iterator_t *oi) {
  201|  3.14k|  coap_opt_filter_t f;
  202|       |
  203|  3.14k|  coap_option_filter_clear(&f);
  204|  3.14k|  coap_option_filter_set(&f, number);
  205|       |
  206|  3.14k|  coap_option_iterator_init(pdu, oi, &f);
  207|       |
  208|  3.14k|  return coap_option_next(oi);
  209|  3.14k|}
coap_opt_length:
  212|  38.0M|coap_opt_length(const coap_opt_t *opt) {
  213|  38.0M|  uint32_t length;
  214|       |
  215|  38.0M|  length = *opt & 0x0f;
  216|  38.0M|  switch (*opt & 0xf0) {
  217|      0|  case 0xf0:
  ------------------
  |  Branch (217:3): [True: 0, False: 38.0M]
  ------------------
  218|      0|    coap_log_debug("illegal option delta\n");
  ------------------
  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  219|      0|    return 0;
  220|    530|  case 0xe0:
  ------------------
  |  Branch (220:3): [True: 530, False: 38.0M]
  ------------------
  221|    530|    ++opt;
  222|       |  /* fall through */
  223|       |  /* to skip another byte */
  224|  3.05k|  case 0xd0:
  ------------------
  |  Branch (224:3): [True: 2.52k, False: 38.0M]
  ------------------
  225|  3.05k|    ++opt;
  226|       |  /* fall through */
  227|       |  /* to skip another byte */
  228|  38.0M|  default:
  ------------------
  |  Branch (228:3): [True: 38.0M, False: 3.05k]
  ------------------
  229|  38.0M|    ++opt;
  230|  38.0M|  }
  231|       |
  232|  38.0M|  switch (length) {
  233|      0|  case 0x0f:
  ------------------
  |  Branch (233:3): [True: 0, False: 38.0M]
  ------------------
  234|      0|    coap_log_debug("illegal option length\n");
  ------------------
  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  235|      0|    return 0;
  236|  4.30k|  case 0x0e:
  ------------------
  |  Branch (236:3): [True: 4.30k, False: 38.0M]
  ------------------
  237|  4.30k|    length = (*opt++ << 8) + 269;
  238|       |  /* fall through */
  239|  38.1k|  case 0x0d:
  ------------------
  |  Branch (239:3): [True: 33.8k, False: 38.0M]
  ------------------
  240|  38.1k|    length += *opt++;
  241|  38.1k|    break;
  242|  38.0M|  default:
  ------------------
  |  Branch (242:3): [True: 38.0M, False: 38.1k]
  ------------------
  243|  38.0M|    ;
  244|  38.0M|  }
  245|  38.0M|  return length;
  246|  38.0M|}
coap_opt_value:
  249|  38.0M|coap_opt_value(const coap_opt_t *opt) {
  250|  38.0M|  size_t ofs = 1;
  251|       |
  252|  38.0M|  switch (*opt & 0xf0) {
  253|      0|  case 0xf0:
  ------------------
  |  Branch (253:3): [True: 0, False: 38.0M]
  ------------------
  254|      0|    coap_log_debug("illegal option delta\n");
  ------------------
  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  255|      0|    return 0;
  256|    530|  case 0xe0:
  ------------------
  |  Branch (256:3): [True: 530, False: 38.0M]
  ------------------
  257|    530|    ++ofs;
  258|       |  /* fall through */
  259|  3.05k|  case 0xd0:
  ------------------
  |  Branch (259:3): [True: 2.52k, False: 38.0M]
  ------------------
  260|  3.05k|    ++ofs;
  261|  3.05k|    break;
  262|  38.0M|  default:
  ------------------
  |  Branch (262:3): [True: 38.0M, False: 3.05k]
  ------------------
  263|  38.0M|    ;
  264|  38.0M|  }
  265|       |
  266|  38.0M|  switch (*opt & 0x0f) {
  267|      0|  case 0x0f:
  ------------------
  |  Branch (267:3): [True: 0, False: 38.0M]
  ------------------
  268|      0|    coap_log_debug("illegal option length\n");
  ------------------
  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  269|      0|    return 0;
  270|  4.30k|  case 0x0e:
  ------------------
  |  Branch (270:3): [True: 4.30k, False: 38.0M]
  ------------------
  271|  4.30k|    ++ofs;
  272|       |  /* fall through */
  273|  38.1k|  case 0x0d:
  ------------------
  |  Branch (273:3): [True: 33.8k, False: 38.0M]
  ------------------
  274|  38.1k|    ++ofs;
  275|  38.1k|    break;
  276|  38.0M|  default:
  ------------------
  |  Branch (276:3): [True: 38.0M, False: 38.1k]
  ------------------
  277|  38.0M|    ;
  278|  38.0M|  }
  279|       |
  280|  38.0M|  return (const uint8_t *)opt + ofs;
  281|  38.0M|}
coap_option_filter_clear:
  491|  8.77k|coap_option_filter_clear(coap_opt_filter_t *filter) {
  492|  8.77k|  memset(filter, 0, sizeof(coap_opt_filter_t));
  493|  8.77k|}
coap_option_filter_set:
  496|  5.38M|coap_option_filter_set(coap_opt_filter_t *filter, coap_option_num_t option) {
  497|  5.38M|  return coap_option_filter_op(filter, option, FILTER_SET);
  498|  5.38M|}
coap_option_filter_get:
  506|  30.0M|coap_option_filter_get(coap_opt_filter_t *filter, coap_option_num_t option) {
  507|  30.0M|  return coap_option_filter_op(filter, option, FILTER_GET);
  508|  30.0M|}
coap_option.c:opt_finished:
  141|  9.12M|opt_finished(coap_opt_iterator_t *oi) {
  142|  9.12M|  assert(oi);
  ------------------
  |  Branch (142:3): [True: 9.12M, False: 0]
  ------------------
  143|       |
  144|  9.12M|  if (oi->bad || oi->length == 0 ||
  ------------------
  |  Branch (144:7): [True: 210, False: 9.12M]
  |  Branch (144:18): [True: 1.14k, False: 9.12M]
  ------------------
  145|  9.12M|      !oi->next_option || *oi->next_option == COAP_PAYLOAD_START) {
  ------------------
  |  |   96|  9.12M|#define COAP_PAYLOAD_START 0xFF /* payload marker */
  ------------------
  |  Branch (145:7): [True: 0, False: 9.12M]
  |  Branch (145:27): [True: 201, False: 9.12M]
  ------------------
  146|  1.55k|    oi->bad = 1;
  147|  1.55k|  }
  148|       |
  149|  9.12M|  return oi->bad;
  150|  9.12M|}
coap_option.c:coap_option_filter_op:
  433|  35.4M|                      enum filter_op_t op) {
  434|  35.4M|  size_t lindex = 0;
  435|  35.4M|  coap_opt_filter_t *of = filter;
  436|  35.4M|  uint16_t nr, mask = 0;
  437|       |
  438|  35.4M|  if (is_long_option(number)) {
  ------------------
  |  Branch (438:7): [True: 801k, False: 34.6M]
  ------------------
  439|   801k|    mask = LONG_MASK;
  ------------------
  |  |  398|   801k|#define LONG_MASK ((1 << COAP_OPT_FILTER_LONG) - 1)
  |  |  ------------------
  |  |  |  |  208|   801k|#define COAP_OPT_FILTER_LONG  2
  |  |  ------------------
  ------------------
  440|       |
  441|   955k|    for (nr = 1; lindex < COAP_OPT_FILTER_LONG; nr <<= 1, lindex++) {
  ------------------
  |  |  208|   955k|#define COAP_OPT_FILTER_LONG  2
  ------------------
  |  Branch (441:18): [True: 893k, False: 62.1k]
  ------------------
  442|       |
  443|   893k|      if (((of->mask & nr) > 0) && (of->long_opts[lindex] == number)) {
  ------------------
  |  Branch (443:11): [True: 761k, False: 132k]
  |  Branch (443:36): [True: 739k, False: 21.7k]
  ------------------
  444|   739k|        if (op == FILTER_CLEAR) {
  ------------------
  |  Branch (444:13): [True: 0, False: 739k]
  ------------------
  445|      0|          of->mask &= ~nr;
  446|      0|        }
  447|       |
  448|   739k|        return 1;
  449|   739k|      }
  450|   893k|    }
  451|  34.6M|  } else {
  452|  34.6M|    mask = SHORT_MASK;
  ------------------
  |  |  400|  34.6M|  (~LONG_MASK & ((1 << (COAP_OPT_FILTER_LONG + COAP_OPT_FILTER_SHORT)) - 1))
  |  |  ------------------
  |  |  |  |  398|  34.6M|#define LONG_MASK ((1 << COAP_OPT_FILTER_LONG) - 1)
  |  |  |  |  ------------------
  |  |  |  |  |  |  208|  34.6M|#define COAP_OPT_FILTER_LONG  2
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                 (~LONG_MASK & ((1 << (COAP_OPT_FILTER_LONG + COAP_OPT_FILTER_SHORT)) - 1))
  |  |  ------------------
  |  |  |  |  208|  34.6M|#define COAP_OPT_FILTER_LONG  2
  |  |  ------------------
  |  |                 (~LONG_MASK & ((1 << (COAP_OPT_FILTER_LONG + COAP_OPT_FILTER_SHORT)) - 1))
  |  |  ------------------
  |  |  |  |  200|  34.6M|#define COAP_OPT_FILTER_SHORT 6
  |  |  ------------------
  ------------------
  453|       |
  454|   226M|    for (nr = 1 << COAP_OPT_FILTER_LONG; lindex < COAP_OPT_FILTER_SHORT;
  ------------------
  |  |  208|  34.6M|#define COAP_OPT_FILTER_LONG  2
  ------------------
                  for (nr = 1 << COAP_OPT_FILTER_LONG; lindex < COAP_OPT_FILTER_SHORT;
  ------------------
  |  |  200|   226M|#define COAP_OPT_FILTER_SHORT 6
  ------------------
  |  Branch (454:42): [True: 205M, False: 20.8M]
  ------------------
  455|   205M|         nr <<= 1, lindex++) {
  456|       |
  457|   205M|      if (((of->mask & nr) > 0) && (of->short_opts[lindex] == (number & 0xff))) {
  ------------------
  |  Branch (457:11): [True: 34.6M, False: 171M]
  |  Branch (457:36): [True: 13.7M, False: 20.9M]
  ------------------
  458|  13.7M|        if (op == FILTER_CLEAR) {
  ------------------
  |  Branch (458:13): [True: 0, False: 13.7M]
  ------------------
  459|      0|          of->mask &= ~nr;
  460|      0|        }
  461|       |
  462|  13.7M|        return 1;
  463|  13.7M|      }
  464|   205M|    }
  465|  34.6M|  }
  466|       |
  467|       |  /* number was not found, so there is nothing to do if op is CLEAR or GET */
  468|  20.9M|  if ((op == FILTER_CLEAR) || (op == FILTER_GET)) {
  ------------------
  |  Branch (468:7): [True: 0, False: 20.9M]
  |  Branch (468:31): [True: 20.9M, False: 26.1k]
  ------------------
  469|  20.9M|    return 0;
  470|  20.9M|  }
  471|       |
  472|       |  /* handle FILTER_SET: */
  473|       |
  474|  26.1k|  lindex = coap_fls(~of->mask & mask);
  475|  26.1k|  if (!lindex) {
  ------------------
  |  Branch (475:7): [True: 18.1k, False: 8.02k]
  ------------------
  476|  18.1k|    return 0;
  477|  18.1k|  }
  478|       |
  479|  8.02k|  if (is_long_option(number)) {
  ------------------
  |  Branch (479:7): [True: 237, False: 7.78k]
  ------------------
  480|    237|    of->long_opts[lindex - 1] = number;
  481|  7.78k|  } else {
  482|  7.78k|    of->short_opts[lindex - COAP_OPT_FILTER_LONG - 1] = (uint8_t)number;
  ------------------
  |  |  208|  7.78k|#define COAP_OPT_FILTER_LONG  2
  ------------------
  483|  7.78k|  }
  484|       |
  485|  8.02k|  of->mask |= 1 << (lindex - 1);
  486|       |
  487|  8.02k|  return 1;
  488|  26.1k|}
coap_option.c:is_long_option:
  404|  35.4M|is_long_option(coap_option_num_t number) {
  405|  35.4M|  return number > 255;
  406|  35.4M|}

coap_pdu_clear:
   47|  3.10k|coap_pdu_clear(coap_pdu_t *pdu, size_t size) {
   48|  3.10k|  assert(pdu);
  ------------------
  |  Branch (48:3): [True: 3.10k, False: 0]
  ------------------
   49|  3.10k|  assert(pdu->token);
  ------------------
  |  Branch (49:3): [True: 3.10k, False: 0]
  ------------------
   50|  3.10k|  assert(pdu->max_hdr_size >= COAP_PDU_MAX_UDP_HEADER_SIZE);
  ------------------
  |  Branch (50:3): [True: 3.10k, False: 0]
  ------------------
   51|  3.10k|  if (pdu->alloc_size > size)
  ------------------
  |  Branch (51:7): [True: 0, False: 3.10k]
  ------------------
   52|      0|    pdu->alloc_size = size;
   53|  3.10k|  pdu->type = 0;
   54|  3.10k|  pdu->code = 0;
   55|  3.10k|  pdu->ref = 0;
   56|  3.10k|  pdu->hdr_size = 0;
   57|  3.10k|  pdu->actual_token.length = 0;
   58|  3.10k|  pdu->e_token_length = 0;
   59|  3.10k|  pdu->crit_opt = 0;
   60|  3.10k|  pdu->mid = 0;
   61|  3.10k|  pdu->max_opt = 0;
   62|  3.10k|  pdu->max_size = size;
   63|  3.10k|  pdu->used_size = 0;
   64|  3.10k|  pdu->data = NULL;
   65|  3.10k|  pdu->body_data = NULL;
   66|  3.10k|  pdu->body_length = 0;
   67|  3.10k|  pdu->body_offset = 0;
   68|  3.10k|  pdu->body_total = 0;
   69|  3.10k|  pdu->lg_xmit = NULL;
   70|  3.10k|  pdu->session = NULL;
   71|       |  pdu->data_free = NULL;
   72|  3.10k|}
coap_pdu_init:
  105|  3.10k|              size_t size) {
  106|  3.10k|  coap_pdu_t *pdu;
  107|       |
  108|  3.10k|#ifndef RIOT_VERSION
  109|  3.10k|  assert(type <= 0x3);
  ------------------
  |  Branch (109:3): [True: 3.10k, False: 0]
  ------------------
  110|  3.10k|  assert(code <= 0xff);
  ------------------
  |  Branch (110:3): [True: 3.10k, False: 0]
  ------------------
  111|  3.10k|  assert(mid >= 0 && mid <= 0xffff);
  ------------------
  |  Branch (111:3): [True: 3.10k, False: 0]
  |  Branch (111:3): [True: 3.10k, False: 0]
  ------------------
  112|  3.10k|#endif /* RIOT_VERSION */
  113|       |
  114|       |#if defined(WITH_LWIP) && MEMP_USE_CUSTOM_POOLS
  115|       |#if MEMP_STATS
  116|       |  /* Reserve 1 PDU for a response packet */
  117|       |  if (memp_pools[MEMP_COAP_PDU]->stats->used + 1 >=
  118|       |      memp_pools[MEMP_COAP_PDU]->stats->avail) {
  119|       |    memp_pools[MEMP_COAP_PDU]->stats->err++;
  120|       |    return NULL;
  121|       |  }
  122|       |#endif /* MEMP_STATS */
  123|       |#endif /* LWIP && MEMP_USE_CUSTOM_POOLS */
  124|  3.10k|  pdu = coap_malloc_type(COAP_PDU, sizeof(coap_pdu_t));
  125|  3.10k|  if (!pdu)
  ------------------
  |  Branch (125:7): [True: 0, False: 3.10k]
  ------------------
  126|      0|    return NULL;
  127|       |
  128|       |#if COAP_DEFAULT_MAX_PDU_RX_SIZE <= COAP_MAX_MESSAGE_SIZE_TCP16
  129|       |  /* on TCP, the CoAP header will also have a maximum length of 4 bytes */
  130|       |  pdu->max_hdr_size = COAP_PDU_MAX_UDP_HEADER_SIZE;
  131|       |#else
  132|  3.10k|  pdu->max_hdr_size = COAP_PDU_MAX_TCP_HEADER_SIZE;
  ------------------
  |  |  108|  3.10k|#define COAP_PDU_MAX_TCP_HEADER_SIZE 6
  ------------------
  133|  3.10k|#endif
  134|  3.10k|  if (size > ((size_t)COAP_DEFAULT_MAX_PDU_RX_SIZE - pdu->max_hdr_size)) {
  ------------------
  |  |   84|  3.10k|#define COAP_DEFAULT_MAX_PDU_RX_SIZE (8UL*1024*1024+256)
  ------------------
  |  Branch (134:7): [True: 0, False: 3.10k]
  ------------------
  135|      0|    coap_free_type(COAP_PDU, pdu);
  136|      0|    return NULL;
  137|      0|  }
  138|       |
  139|  3.10k|  pdu->alloc_size = min(size, COAP_DEFAULT_MTU);
  ------------------
  |  |   37|  3.10k|#define min(a,b) ((a) < (b) ? (a) : (b))
  |  |  ------------------
  |  |  |  Branch (37:19): [True: 2.55k, False: 558]
  |  |  ------------------
  ------------------
  140|       |#ifdef WITH_LWIP
  141|       |  pdu->pbuf = pbuf_alloc(PBUF_TRANSPORT, pdu->alloc_size + pdu->max_hdr_size,
  142|       |                         PBUF_RAM);
  143|       |  if (pdu->pbuf == NULL) {
  144|       |    coap_free_type(COAP_PDU, pdu);
  145|       |    return NULL;
  146|       |  }
  147|       |  pdu->token = (uint8_t *)pdu->pbuf->payload + pdu->max_hdr_size;
  148|       |#else /* ! WITH_LWIP */
  149|  3.10k|  uint8_t *buf;
  150|  3.10k|  buf = coap_malloc_type(COAP_PDU_BUF, pdu->alloc_size + pdu->max_hdr_size);
  151|  3.10k|  if (buf == NULL) {
  ------------------
  |  Branch (151:7): [True: 0, False: 3.10k]
  ------------------
  152|      0|    coap_free_type(COAP_PDU, pdu);
  153|      0|    return NULL;
  154|      0|  }
  155|  3.10k|  pdu->token = buf + pdu->max_hdr_size;
  156|  3.10k|#endif /* ! WITH_LWIP */
  157|  3.10k|  coap_pdu_clear(pdu, size);
  158|  3.10k|  pdu->mid = mid;
  159|  3.10k|  pdu->type = type;
  160|  3.10k|  pdu->code = code;
  161|  3.10k|  return pdu;
  162|  3.10k|}
coap_delete_pdu:
  190|  3.10k|coap_delete_pdu(coap_pdu_t *pdu) {
  191|  3.10k|  coap_lock_lock(return);
  192|  3.10k|  coap_delete_pdu_lkd(pdu);
  193|  3.10k|  coap_lock_unlock();
  194|  3.10k|}
coap_delete_pdu_lkd:
  197|  3.10k|coap_delete_pdu_lkd(coap_pdu_t *pdu) {
  198|  3.10k|  if (pdu != NULL) {
  ------------------
  |  Branch (198:7): [True: 3.10k, False: 0]
  ------------------
  199|  3.10k|    if (pdu->ref) {
  ------------------
  |  Branch (199:9): [True: 0, False: 3.10k]
  ------------------
  200|      0|      pdu->ref--;
  201|      0|      return;
  202|      0|    }
  203|       |#ifdef WITH_LWIP
  204|       |    pbuf_free(pdu->pbuf);
  205|       |#else
  206|  3.10k|    if (pdu->token != NULL)
  ------------------
  |  Branch (206:9): [True: 3.10k, False: 0]
  ------------------
  207|  3.10k|      coap_free_type(COAP_PDU_BUF, pdu->token - pdu->max_hdr_size);
  208|  3.10k|#endif
  209|  3.10k|    coap_delete_binary(pdu->data_free);
  210|  3.10k|    coap_free_type(COAP_PDU, pdu);
  211|  3.10k|  }
  212|  3.10k|}
coap_pdu_resize:
  341|  3.10k|coap_pdu_resize(coap_pdu_t *pdu, size_t new_size) {
  342|  3.10k|  if (new_size > pdu->alloc_size) {
  ------------------
  |  Branch (342:7): [True: 554, False: 2.55k]
  ------------------
  343|       |    /* Expanding the PDU usage */
  344|    554|#if !defined(WITH_LWIP)
  345|    554|    uint8_t *new_hdr;
  346|       |#else /* WITH_LWIP */
  347|       |    struct pbuf *new_hdr;
  348|       |#endif /* WITH_LWIP */
  349|    554|    size_t offset;
  350|       |
  351|    554|    if (pdu->max_size && new_size > pdu->max_size) {
  ------------------
  |  Branch (351:9): [True: 554, False: 0]
  |  Branch (351:26): [True: 0, False: 554]
  ------------------
  352|      0|      coap_log_warn("coap_pdu_resize: pdu too big\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  353|      0|      return 0;
  354|      0|    }
  355|    554|    if (pdu->data != NULL) {
  ------------------
  |  Branch (355:9): [True: 0, False: 554]
  ------------------
  356|      0|      assert(pdu->data > pdu->token);
  ------------------
  |  Branch (356:7): [True: 0, False: 0]
  ------------------
  357|      0|      offset = pdu->data - pdu->token;
  358|    554|    } else {
  359|    554|      offset = 0;
  360|    554|    }
  361|    554|#if !defined(WITH_LWIP)
  362|    554|    new_hdr = (uint8_t *)coap_realloc_type(COAP_PDU_BUF,
  363|    554|                                           pdu->token - pdu->max_hdr_size,
  364|    554|                                           new_size + pdu->max_hdr_size);
  365|       |#else /* WITH_LWIP */
  366|       |    new_hdr = pbuf_alloc(PBUF_TRANSPORT, new_size + pdu->max_hdr_size, PBUF_RAM);
  367|       |#endif /* WITH_LWIP */
  368|    554|    if (new_hdr == NULL) {
  ------------------
  |  Branch (368:9): [True: 0, False: 554]
  ------------------
  369|      0|      coap_log_warn("coap_pdu_resize: realloc failed\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  370|      0|      return 0;
  371|      0|    }
  372|    554|#if !defined(WITH_LWIP)
  373|    554|    pdu->token = new_hdr + pdu->max_hdr_size;
  374|       |#else /* WITH_LWIP */
  375|       |    memcpy(new_hdr->payload, pdu->pbuf->payload, pdu->pbuf->len);
  376|       |    pbuf_free(pdu->pbuf);
  377|       |    pdu->pbuf = new_hdr;
  378|       |    pdu->token = (uint8_t *)pdu->pbuf->payload + pdu->max_hdr_size;
  379|       |#endif /* WITH_LWIP */
  380|    554|    if (offset > 0)
  ------------------
  |  Branch (380:9): [True: 0, False: 554]
  ------------------
  381|      0|      pdu->data = pdu->token + offset;
  382|    554|    else
  383|    554|      pdu->data = NULL;
  384|    554|    if (pdu->actual_token.length < COAP_TOKEN_EXT_1B_BIAS)
  ------------------
  |  |   56|    554|#define COAP_TOKEN_EXT_1B_BIAS 13
  ------------------
  |  Branch (384:9): [True: 554, False: 0]
  ------------------
  385|    554|      pdu->actual_token.s = &pdu->token[0];
  386|      0|    else if (pdu->actual_token.length < COAP_TOKEN_EXT_2B_BIAS)
  ------------------
  |  |   57|      0|#define COAP_TOKEN_EXT_2B_BIAS 269 /* 13 + 256 */
  ------------------
  |  Branch (386:14): [True: 0, False: 0]
  ------------------
  387|      0|      pdu->actual_token.s = &pdu->token[1];
  388|      0|    else
  389|      0|      pdu->actual_token.s = &pdu->token[2];
  390|    554|    pdu->alloc_size = new_size;
  391|    554|  }
  392|  3.10k|  return 1;
  393|  3.10k|}
coap_pdu_parse_header_size:
 1078|  3.10k|                           const uint8_t *data) {
 1079|  3.10k|  assert(data);
  ------------------
  |  Branch (1079:3): [True: 3.10k, False: 0]
  ------------------
 1080|  3.10k|  size_t header_size = 0;
 1081|       |
 1082|  3.10k|  if (proto == COAP_PROTO_TCP || proto==COAP_PROTO_TLS) {
  ------------------
  |  Branch (1082:7): [True: 0, False: 3.10k]
  |  Branch (1082:34): [True: 0, False: 3.10k]
  ------------------
 1083|      0|    uint8_t len = *data >> 4;
 1084|      0|    if (len < 13)
  ------------------
  |  Branch (1084:9): [True: 0, False: 0]
  ------------------
 1085|      0|      header_size = 2;
 1086|      0|    else if (len==13)
  ------------------
  |  Branch (1086:14): [True: 0, False: 0]
  ------------------
 1087|      0|      header_size = 3;
 1088|      0|    else if (len==14)
  ------------------
  |  Branch (1088:14): [True: 0, False: 0]
  ------------------
 1089|      0|      header_size = 4;
 1090|      0|    else
 1091|      0|      header_size = 6;
 1092|  3.10k|  } else if (proto == COAP_PROTO_WS || proto==COAP_PROTO_WSS) {
  ------------------
  |  Branch (1092:14): [True: 3.10k, False: 0]
  |  Branch (1092:40): [True: 0, False: 0]
  ------------------
 1093|  3.10k|    header_size = 2;
 1094|  3.10k|  } else if (proto == COAP_PROTO_UDP || proto==COAP_PROTO_DTLS) {
  ------------------
  |  Branch (1094:14): [True: 0, False: 0]
  |  Branch (1094:41): [True: 0, False: 0]
  ------------------
 1095|      0|    header_size = 4;
 1096|      0|  }
 1097|       |
 1098|  3.10k|  return header_size;
 1099|  3.10k|}
coap_pdu_parse_header:
 1161|  3.10k|coap_pdu_parse_header(coap_pdu_t *pdu, coap_proto_t proto) {
 1162|  3.10k|  uint8_t *hdr = pdu->token - pdu->hdr_size;
 1163|  3.10k|  uint8_t e_token_length;
 1164|       |
 1165|  3.10k|  if (proto == COAP_PROTO_UDP || proto == COAP_PROTO_DTLS) {
  ------------------
  |  Branch (1165:7): [True: 0, False: 3.10k]
  |  Branch (1165:34): [True: 0, False: 3.10k]
  ------------------
 1166|      0|    assert(pdu->hdr_size == 4);
  ------------------
  |  Branch (1166:5): [True: 0, False: 0]
  ------------------
 1167|      0|    if ((hdr[0] >> 6) != COAP_DEFAULT_VERSION) {
  ------------------
  |  |   35|      0|#define COAP_DEFAULT_VERSION      1 /* version of CoAP supported */
  ------------------
  |  Branch (1167:9): [True: 0, False: 0]
  ------------------
 1168|      0|      coap_log_debug("coap_pdu_parse: UDP version not supported\n");
  ------------------
  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1169|      0|      return 0;
 1170|      0|    }
 1171|      0|    pdu->type = (hdr[0] >> 4) & 0x03;
 1172|      0|    pdu->code = hdr[1];
 1173|      0|    pdu->mid = (uint16_t)hdr[2] << 8 | hdr[3];
 1174|  3.10k|  } else if (proto == COAP_PROTO_TCP || proto == COAP_PROTO_TLS) {
  ------------------
  |  Branch (1174:14): [True: 0, False: 3.10k]
  |  Branch (1174:41): [True: 0, False: 3.10k]
  ------------------
 1175|      0|    assert(pdu->hdr_size >= 2 && pdu->hdr_size <= 6);
  ------------------
  |  Branch (1175:5): [True: 0, False: 0]
  |  Branch (1175:5): [True: 0, False: 0]
  ------------------
 1176|      0|    pdu->type = COAP_MESSAGE_CON;
 1177|      0|    pdu->code = hdr[pdu->hdr_size-1];
 1178|      0|    pdu->mid = 0;
 1179|  3.10k|  } else if (proto == COAP_PROTO_WS || proto == COAP_PROTO_WSS) {
  ------------------
  |  Branch (1179:14): [True: 3.10k, False: 0]
  |  Branch (1179:40): [True: 0, False: 0]
  ------------------
 1180|  3.10k|    assert(pdu->hdr_size == 2);
  ------------------
  |  Branch (1180:5): [True: 3.10k, False: 0]
  ------------------
 1181|  3.10k|    pdu->type = COAP_MESSAGE_CON;
 1182|  3.10k|    pdu->code = hdr[pdu->hdr_size-1];
 1183|  3.10k|    pdu->mid = 0;
 1184|  3.10k|  } else {
 1185|      0|    coap_log_debug("coap_pdu_parse: unsupported protocol\n");
  ------------------
  |  |  126|      0|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1186|      0|    return 0;
 1187|      0|  }
 1188|       |
 1189|  3.10k|  e_token_length = hdr[0] & 0x0f;
 1190|  3.10k|  if (e_token_length < COAP_TOKEN_EXT_1B_TKL) {
  ------------------
  |  |   54|  3.10k|#define COAP_TOKEN_EXT_1B_TKL 13
  ------------------
  |  Branch (1190:7): [True: 2.98k, False: 128]
  ------------------
 1191|  2.98k|    pdu->e_token_length = e_token_length;
 1192|  2.98k|    pdu->actual_token.length = pdu->e_token_length;
 1193|  2.98k|    pdu->actual_token.s = &pdu->token[0];
 1194|  2.98k|  } else if (e_token_length == COAP_TOKEN_EXT_1B_TKL) {
  ------------------
  |  |   54|    128|#define COAP_TOKEN_EXT_1B_TKL 13
  ------------------
  |  Branch (1194:14): [True: 58, False: 70]
  ------------------
 1195|     58|    if (pdu->used_size < 1)
  ------------------
  |  Branch (1195:9): [True: 1, False: 57]
  ------------------
 1196|      1|      goto bad_ext_token;
 1197|     57|    pdu->e_token_length = pdu->token[0] + COAP_TOKEN_EXT_1B_BIAS + 1;
  ------------------
  |  |   56|     57|#define COAP_TOKEN_EXT_1B_BIAS 13
  ------------------
 1198|     57|    pdu->actual_token.length = pdu->e_token_length - 1;
 1199|     57|    pdu->actual_token.s = &pdu->token[1];
 1200|     70|  } else if (e_token_length == COAP_TOKEN_EXT_2B_TKL) {
  ------------------
  |  |   55|     70|#define COAP_TOKEN_EXT_2B_TKL 14
  ------------------
  |  Branch (1200:14): [True: 67, False: 3]
  ------------------
 1201|     67|    if (pdu->used_size < 2)
  ------------------
  |  Branch (1201:9): [True: 2, False: 65]
  ------------------
 1202|      2|      goto bad_ext_token;
 1203|     65|    pdu->e_token_length = ((uint16_t)pdu->token[0] << 8) + pdu->token[1] +
 1204|     65|                          COAP_TOKEN_EXT_2B_BIAS + 2;
  ------------------
  |  |   57|     65|#define COAP_TOKEN_EXT_2B_BIAS 269 /* 13 + 256 */
  ------------------
 1205|     65|    pdu->actual_token.length = pdu->e_token_length - 2;
 1206|     65|    pdu->actual_token.s = &pdu->token[2];
 1207|     65|  }
 1208|  3.10k|  if (pdu->e_token_length > pdu->alloc_size || e_token_length == 15) {
  ------------------
  |  Branch (1208:7): [True: 28, False: 3.07k]
  |  Branch (1208:48): [True: 3, False: 3.07k]
  ------------------
 1209|     31|    goto bad_ext_token;
 1210|     31|  }
 1211|  3.07k|  return 1;
 1212|       |
 1213|     34|bad_ext_token:
 1214|       |  /* Invalid PDU provided - not wise to assert here though */
 1215|     34|  coap_log_debug("coap_pdu_parse: PDU header extended token size broken\n");
  ------------------
  |  |  126|     34|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     34|#define coap_log(level, ...) do { \
  |  |  |  |  291|     34|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 34]
  |  |  |  |  ------------------
  |  |  |  |  292|     34|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     34|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 34]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1216|     34|  pdu->e_token_length = 0;
 1217|     34|  pdu->actual_token.length = 0;
 1218|     34|  return 0;
 1219|  3.10k|}
coap_pdu_parse_opt_base:
 1290|  14.7M|coap_pdu_parse_opt_base(coap_option_num_t number, size_t len, const uint8_t *opt_val) {
 1291|  14.7M|  int res = 1;
 1292|       |
 1293|  14.7M|  switch ((coap_code_opt_num_t)number) {
 1294|  33.9k|  case COAP_OPTION_IF_MATCH:
  ------------------
  |  Branch (1294:3): [True: 33.9k, False: 14.7M]
  ------------------
 1295|  33.9k|    if (len > 8)
  ------------------
  |  Branch (1295:9): [True: 1.02k, False: 32.9k]
  ------------------
 1296|  1.02k|      res = 0;
 1297|  33.9k|    break;
 1298|  1.84M|  case COAP_OPTION_URI_HOST:
  ------------------
  |  Branch (1298:3): [True: 1.84M, False: 12.9M]
  ------------------
 1299|  1.84M|    if (len < 1 || len > 255)
  ------------------
  |  Branch (1299:9): [True: 1.84M, False: 1.70k]
  |  Branch (1299:20): [True: 1.02k, False: 687]
  ------------------
 1300|  1.84M|      res = 0;
 1301|  1.84M|    break;
 1302|   111k|  case COAP_OPTION_ETAG:
  ------------------
  |  Branch (1302:3): [True: 111k, False: 14.6M]
  ------------------
 1303|   111k|    if (len < 1 || len > 8)
  ------------------
  |  Branch (1303:9): [True: 109k, False: 2.19k]
  |  Branch (1303:20): [True: 1.68k, False: 513]
  ------------------
 1304|   111k|      res = 0;
 1305|   111k|    break;
 1306|   820k|  case COAP_OPTION_IF_NONE_MATCH:
  ------------------
  |  Branch (1306:3): [True: 820k, False: 13.9M]
  ------------------
 1307|   820k|    if (len != 0)
  ------------------
  |  Branch (1307:9): [True: 2.09k, False: 818k]
  ------------------
 1308|  2.09k|      res = 0;
 1309|   820k|    break;
 1310|  4.69k|  case COAP_OPTION_OBSERVE:
  ------------------
  |  Branch (1310:3): [True: 4.69k, False: 14.7M]
  ------------------
 1311|  4.69k|    if (len > 3)
  ------------------
  |  Branch (1311:9): [True: 2.31k, False: 2.38k]
  ------------------
 1312|  2.31k|      res = 0;
 1313|  4.69k|    break;
 1314|  2.19k|  case COAP_OPTION_URI_PORT:
  ------------------
  |  Branch (1314:3): [True: 2.19k, False: 14.7M]
  ------------------
 1315|  2.19k|    if (len > 2)
  ------------------
  |  Branch (1315:9): [True: 1.17k, False: 1.02k]
  ------------------
 1316|  1.17k|      res = 0;
 1317|  2.19k|    break;
 1318|   103k|  case COAP_OPTION_LOCATION_PATH:
  ------------------
  |  Branch (1318:3): [True: 103k, False: 14.6M]
  ------------------
 1319|  5.24M|  case COAP_OPTION_URI_PATH:
  ------------------
  |  Branch (1319:3): [True: 5.14M, False: 9.62M]
  ------------------
 1320|  5.24M|    if (len > 255)
  ------------------
  |  Branch (1320:9): [True: 1.07k, False: 5.24M]
  ------------------
 1321|  1.07k|      res = 0;
 1322|  5.24M|    if (coap_check_dots(opt_val, len)) {
  ------------------
  |  Branch (1322:9): [True: 2.49k, False: 5.24M]
  ------------------
 1323|  2.49k|      res = 0;
 1324|  2.49k|    }
 1325|  5.24M|    break;
 1326|  48.8k|  case COAP_OPTION_OSCORE:
  ------------------
  |  Branch (1326:3): [True: 48.8k, False: 14.7M]
  ------------------
 1327|  48.8k|    if (len > 255)
  ------------------
  |  Branch (1327:9): [True: 1.01k, False: 47.8k]
  ------------------
 1328|  1.01k|      res = 0;
 1329|  48.8k|    break;
 1330|  2.34k|  case COAP_OPTION_CONTENT_FORMAT:
  ------------------
  |  Branch (1330:3): [True: 2.34k, False: 14.7M]
  ------------------
 1331|  2.34k|    if (len > 2)
  ------------------
  |  Branch (1331:9): [True: 1.21k, False: 1.13k]
  ------------------
 1332|  1.21k|      res = 0;
 1333|  2.34k|    break;
 1334|  83.9k|  case COAP_OPTION_URI_PATH_ABB:
  ------------------
  |  Branch (1334:3): [True: 83.9k, False: 14.6M]
  ------------------
 1335|  83.9k|    if (len > 4)
  ------------------
  |  Branch (1335:9): [True: 1.21k, False: 82.7k]
  ------------------
 1336|  1.21k|      res = 0;
 1337|  83.9k|    break;
 1338|  8.81k|  case COAP_OPTION_MAXAGE:
  ------------------
  |  Branch (1338:3): [True: 8.81k, False: 14.7M]
  ------------------
 1339|  8.81k|    if (len > 4)
  ------------------
  |  Branch (1339:9): [True: 1.21k, False: 7.59k]
  ------------------
 1340|  1.21k|      res = 0;
 1341|  8.81k|    break;
 1342|  17.5k|  case COAP_OPTION_URI_QUERY:
  ------------------
  |  Branch (1342:3): [True: 17.5k, False: 14.7M]
  ------------------
 1343|  17.5k|    if (len < 1 || len > 255)
  ------------------
  |  Branch (1343:9): [True: 3.20k, False: 14.3k]
  |  Branch (1343:20): [True: 1.00k, False: 13.3k]
  ------------------
 1344|  4.20k|      res = 0;
 1345|  17.5k|    break;
 1346|  39.0k|  case COAP_OPTION_HOP_LIMIT:
  ------------------
  |  Branch (1346:3): [True: 39.0k, False: 14.7M]
  ------------------
 1347|  39.0k|    if (len != 1)
  ------------------
  |  Branch (1347:9): [True: 38.8k, False: 231]
  ------------------
 1348|  38.8k|      res = 0;
 1349|  39.0k|    break;
 1350|  3.07k|  case COAP_OPTION_ACCEPT:
  ------------------
  |  Branch (1350:3): [True: 3.07k, False: 14.7M]
  ------------------
 1351|  3.07k|    if (len > 2)
  ------------------
  |  Branch (1351:9): [True: 1.56k, False: 1.51k]
  ------------------
 1352|  1.56k|      res = 0;
 1353|  3.07k|    break;
 1354|   527k|  case COAP_OPTION_Q_BLOCK1:
  ------------------
  |  Branch (1354:3): [True: 527k, False: 14.2M]
  ------------------
 1355|   527k|    if (len > 3)
  ------------------
  |  Branch (1355:9): [True: 1.53k, False: 525k]
  ------------------
 1356|  1.53k|      res = 0;
 1357|   527k|    break;
 1358|  88.6k|  case COAP_OPTION_LOCATION_QUERY:
  ------------------
  |  Branch (1358:3): [True: 88.6k, False: 14.6M]
  ------------------
 1359|  88.6k|    if (len > 255)
  ------------------
  |  Branch (1359:9): [True: 975, False: 87.7k]
  ------------------
 1360|    975|      res = 0;
 1361|  88.6k|    break;
 1362|  1.80k|  case COAP_OPTION_EDHOC:
  ------------------
  |  Branch (1362:3): [True: 1.80k, False: 14.7M]
  ------------------
 1363|  1.80k|    if (len != 0)
  ------------------
  |  Branch (1363:9): [True: 1.31k, False: 483]
  ------------------
 1364|  1.31k|      res = 0;
 1365|  1.80k|    break;
 1366|  1.45k|  case COAP_OPTION_BLOCK2:
  ------------------
  |  Branch (1366:3): [True: 1.45k, False: 14.7M]
  ------------------
 1367|  1.45k|    if (len > 3)
  ------------------
  |  Branch (1367:9): [True: 1.02k, False: 427]
  ------------------
 1368|  1.02k|      res = 0;
 1369|  1.45k|    break;
 1370|  2.66k|  case COAP_OPTION_BLOCK1:
  ------------------
  |  Branch (1370:3): [True: 2.66k, False: 14.7M]
  ------------------
 1371|  2.66k|    if (len > 3)
  ------------------
  |  Branch (1371:9): [True: 2.39k, False: 270]
  ------------------
 1372|  2.39k|      res = 0;
 1373|  2.66k|    break;
 1374|  1.35k|  case COAP_OPTION_SIZE2:
  ------------------
  |  Branch (1374:3): [True: 1.35k, False: 14.7M]
  ------------------
 1375|  1.35k|    if (len > 4)
  ------------------
  |  Branch (1375:9): [True: 1.00k, False: 344]
  ------------------
 1376|  1.00k|      res = 0;
 1377|  1.35k|    break;
 1378|  31.8k|  case COAP_OPTION_Q_BLOCK2:
  ------------------
  |  Branch (1378:3): [True: 31.8k, False: 14.7M]
  ------------------
 1379|  31.8k|    if (len > 3)
  ------------------
  |  Branch (1379:9): [True: 1.29k, False: 30.5k]
  ------------------
 1380|  1.29k|      res = 0;
 1381|  31.8k|    break;
 1382|  13.7k|  case COAP_OPTION_PROXY_URI:
  ------------------
  |  Branch (1382:3): [True: 13.7k, False: 14.7M]
  ------------------
 1383|  13.7k|    if (len < 1 || len > 1034)
  ------------------
  |  Branch (1383:9): [True: 5.78k, False: 7.94k]
  |  Branch (1383:20): [True: 999, False: 6.94k]
  ------------------
 1384|  6.78k|      res = 0;
 1385|  13.7k|    break;
 1386|  3.13k|  case COAP_OPTION_PROXY_SCHEME:
  ------------------
  |  Branch (1386:3): [True: 3.13k, False: 14.7M]
  ------------------
 1387|  3.13k|    if (len < 1 || len > 255)
  ------------------
  |  Branch (1387:9): [True: 1.68k, False: 1.45k]
  |  Branch (1387:20): [True: 1.05k, False: 394]
  ------------------
 1388|  2.73k|      res = 0;
 1389|  3.13k|    break;
 1390|  2.86k|  case COAP_OPTION_SIZE1:
  ------------------
  |  Branch (1390:3): [True: 2.86k, False: 14.7M]
  ------------------
 1391|  2.86k|    if (len > 4)
  ------------------
  |  Branch (1391:9): [True: 1.00k, False: 1.85k]
  ------------------
 1392|  1.00k|      res = 0;
 1393|  2.86k|    break;
 1394|  1.71k|  case COAP_OPTION_ECHO:
  ------------------
  |  Branch (1394:3): [True: 1.71k, False: 14.7M]
  ------------------
 1395|  1.71k|    if (len > 40)
  ------------------
  |  Branch (1395:9): [True: 1.13k, False: 582]
  ------------------
 1396|  1.13k|      res = 0;
 1397|  1.71k|    break;
 1398|   125k|  case COAP_OPTION_NORESPONSE:
  ------------------
  |  Branch (1398:3): [True: 125k, False: 14.6M]
  ------------------
 1399|   125k|    if (len > 1)
  ------------------
  |  Branch (1399:9): [True: 1.02k, False: 123k]
  ------------------
 1400|  1.02k|      res = 0;
 1401|   125k|    break;
 1402|  1.63k|  case COAP_OPTION_RTAG:
  ------------------
  |  Branch (1402:3): [True: 1.63k, False: 14.7M]
  ------------------
 1403|  1.63k|    if (len > 8)
  ------------------
  |  Branch (1403:9): [True: 1.18k, False: 454]
  ------------------
 1404|  1.18k|      res = 0;
 1405|  1.63k|    break;
 1406|  5.69M|  default:
  ------------------
  |  Branch (1406:3): [True: 5.69M, False: 9.07M]
  ------------------
 1407|  5.69M|    ;
 1408|  14.7M|  }
 1409|  14.7M|  return res;
 1410|  14.7M|}
coap_pdu_parse_opt:
 1446|  3.07k|coap_pdu_parse_opt(coap_pdu_t *pdu, coap_opt_filter_t *error_opts) {
 1447|  3.07k|  int good = 1;
 1448|       |
 1449|  3.07k|  coap_option_filter_clear(error_opts);
 1450|       |
 1451|       |  /* sanity checks */
 1452|  3.07k|  if (pdu->code == 0) {
  ------------------
  |  Branch (1452:7): [True: 20, False: 3.05k]
  ------------------
 1453|     20|    if (pdu->used_size != 0 || pdu->e_token_length) {
  ------------------
  |  Branch (1453:9): [True: 18, False: 2]
  |  Branch (1453:32): [True: 1, False: 1]
  ------------------
 1454|     19|      coap_log_debug("coap_pdu_parse: empty message is not empty\n");
  ------------------
  |  |  126|     19|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     19|#define coap_log(level, ...) do { \
  |  |  |  |  291|     19|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 19]
  |  |  |  |  ------------------
  |  |  |  |  292|     19|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     19|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 19]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1455|     19|      return 0;
 1456|     19|    }
 1457|     20|  }
 1458|       |
 1459|  3.05k|  if (pdu->e_token_length > pdu->used_size) {
  ------------------
  |  Branch (1459:7): [True: 5, False: 3.05k]
  ------------------
 1460|      5|    coap_log_debug("coap_pdu_parse: invalid Token\n");
  ------------------
  |  |  126|      5|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      5|#define coap_log(level, ...) do { \
  |  |  |  |  291|      5|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 5]
  |  |  |  |  ------------------
  |  |  |  |  292|      5|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      5|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 5]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1461|      5|    return 0;
 1462|      5|  }
 1463|       |
 1464|  3.05k|  pdu->max_opt = 0;
 1465|  3.05k|  if (pdu->code == 0) {
  ------------------
  |  Branch (1465:7): [True: 1, False: 3.04k]
  ------------------
 1466|       |    /* empty packet */
 1467|      1|    pdu->used_size = 0;
 1468|      1|    pdu->data = NULL;
 1469|  3.04k|  } else {
 1470|       |    /* skip header + token */
 1471|  3.04k|    coap_opt_t *opt = pdu->token + pdu->e_token_length;
 1472|  3.04k|    size_t length = pdu->used_size - pdu->e_token_length;
 1473|       |
 1474|  13.6M|    while (length > 0 && *opt != COAP_PAYLOAD_START) {
  ------------------
  |  |   96|  13.6M|#define COAP_PAYLOAD_START 0xFF /* payload marker */
  ------------------
  |  Branch (1474:12): [True: 13.6M, False: 2.37k]
  |  Branch (1474:26): [True: 13.6M, False: 194]
  ------------------
 1475|  13.6M|#if (COAP_MAX_LOGGING_LEVEL >= _COAP_LOG_WARN)
 1476|  13.6M|      coap_opt_t *opt_last = opt;
 1477|  13.6M|#endif
 1478|  13.6M|      size_t optsize = next_option_safe(&opt, &length, &pdu->max_opt);
 1479|  13.6M|      uint32_t len;
 1480|  13.6M|      const uint8_t *opt_val;
 1481|       |
 1482|  13.6M|      if (optsize == 0) {
  ------------------
  |  Branch (1482:11): [True: 482, False: 13.6M]
  ------------------
 1483|    482|        coap_log_debug("coap_pdu_parse: %d.%02d: offset %u malformed option\n",
  ------------------
  |  |  126|    482|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|    482|#define coap_log(level, ...) do { \
  |  |  |  |  291|    482|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 482]
  |  |  |  |  ------------------
  |  |  |  |  292|    482|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|    482|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 482]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1484|    482|                       pdu->code >> 5, pdu->code & 0x1F,
 1485|    482|                       (int)(opt_last - pdu->token - pdu->e_token_length));
 1486|    482|        coap_option_filter_set(error_opts, pdu->max_opt);
 1487|    482|        good = 0;
 1488|    482|        break;
 1489|    482|      }
 1490|  13.6M|      len = coap_opt_length((const uint8_t *)opt - optsize);
 1491|  13.6M|      opt_val = coap_opt_value((const uint8_t *)opt - optsize);
 1492|  13.6M|      if (COAP_PDU_IS_SIGNALING(pdu) ?
  ------------------
  |  |  102|  13.6M|#define COAP_PDU_IS_SIGNALING(pdu) ((pdu)->code >= 224)
  |  |  ------------------
  |  |  |  Branch (102:36): [True: 4.73M, False: 8.92M]
  |  |  ------------------
  ------------------
  |  Branch (1492:11): [True: 5.37M, False: 8.28M]
  ------------------
 1493|  4.73M|          !coap_pdu_parse_opt_csm(pdu->code, pdu->max_opt, len) :
 1494|  13.6M|          !coap_pdu_parse_opt_base(pdu->max_opt, len, opt_val)) {
 1495|  5.37M|        coap_log_warn("coap_pdu_parse: %d.%02d: offset %u option %u has bad length %" PRIu32 " or value\n",
  ------------------
  |  |  108|  5.37M|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|  5.37M|#define coap_log(level, ...) do { \
  |  |  |  |  291|  5.37M|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 5.37M]
  |  |  |  |  ------------------
  |  |  |  |  292|  5.37M|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|  5.37M|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 5.37M]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1496|  5.37M|                      pdu->code >> 5, pdu->code & 0x1F,
 1497|  5.37M|                      (int)(opt_last - pdu->token - pdu->e_token_length), pdu->max_opt,
 1498|  5.37M|                      len);
 1499|  5.37M|        coap_option_filter_set(error_opts, pdu->max_opt);
 1500|  5.37M|        good = 0;
 1501|  5.37M|      }
 1502|  13.6M|    }
 1503|       |
 1504|  3.04k|    if (!good) {
  ------------------
  |  Branch (1504:9): [True: 1.47k, False: 1.57k]
  ------------------
 1505|       |      /*
 1506|       |       * Dump the options in the PDU for analysis, space separated except
 1507|       |       * error options which are prefixed by *
 1508|       |       * Two rows - hex and ascii (if printable)
 1509|       |       */
 1510|  1.47k|      static char outbuf[COAP_DEBUG_BUF_SIZE];
 1511|  1.47k|      char *obp;
 1512|  1.47k|      size_t tlen;
 1513|  1.47k|      size_t outbuflen;
 1514|  1.47k|      int i;
 1515|  1.47k|      int ok;
 1516|       |
 1517|  4.43k|      for (i = 0; i < 2; i++) {
  ------------------
  |  Branch (1517:19): [True: 2.95k, False: 1.47k]
  ------------------
 1518|  2.95k|        opt = pdu->token + pdu->e_token_length;
 1519|  2.95k|        length = pdu->used_size - pdu->e_token_length;
 1520|  2.95k|        pdu->max_opt = 0;
 1521|       |
 1522|  2.95k|        outbuflen = sizeof(outbuf);
 1523|  2.95k|        obp = outbuf;
 1524|  2.95k|        ok = write_prefix(&obp, &outbuflen, "O: ", 3);
 1525|       |        /*
 1526|       |         * Not safe to check for 'ok' here as a lot of variables may get
 1527|       |         * partially changed due to lack of outbuflen */
 1528|  15.3M|        while (length > 0 && *opt != COAP_PAYLOAD_START) {
  ------------------
  |  |   96|  15.3M|#define COAP_PAYLOAD_START 0xFF /* payload marker */
  ------------------
  |  Branch (1528:16): [True: 15.3M, False: 2.82k]
  |  Branch (1528:30): [True: 15.3M, False: 132]
  ------------------
 1529|  15.3M|          coap_opt_t *opt_last = opt;
 1530|  15.3M|          size_t optsize = next_option_safe(&opt, &length, &pdu->max_opt);
 1531|  15.3M|          const uint32_t len =
 1532|  15.3M|              optsize ? coap_opt_length((const uint8_t *)opt - optsize) : 0;
  ------------------
  |  Branch (1532:15): [True: 15.3M, False: 964]
  ------------------
 1533|  15.3M|          const uint8_t *opt_val =
 1534|  15.3M|              optsize ?  coap_opt_value((const uint8_t *)opt - optsize) : 0;
  ------------------
  |  Branch (1534:15): [True: 15.3M, False: 964]
  ------------------
 1535|       |
 1536|  15.3M|          if (!optsize || (COAP_PDU_IS_SIGNALING(pdu) ?
  ------------------
  |  |  102|  15.3M|#define COAP_PDU_IS_SIGNALING(pdu) ((pdu)->code >= 224)
  |  |  ------------------
  |  |  |  Branch (102:36): [True: 9.46M, False: 5.84M]
  |  |  ------------------
  ------------------
  |  Branch (1536:15): [True: 964, False: 15.3M]
  |  Branch (1536:27): [True: 10.7M, False: 4.55M]
  ------------------
 1537|  9.46M|                           !coap_pdu_parse_opt_csm(pdu->code, pdu->max_opt, len) :
 1538|  15.3M|                           !coap_pdu_parse_opt_base(pdu->max_opt, len, opt_val))) {
 1539|  10.7M|            ok = ok && write_prefix(&obp, &outbuflen, "*", 1);
  ------------------
  |  Branch (1539:18): [True: 70.9k, False: 10.6M]
  |  Branch (1539:24): [True: 70.9k, False: 26]
  ------------------
 1540|  10.7M|            if (!optsize) {
  ------------------
  |  Branch (1540:17): [True: 964, False: 10.7M]
  ------------------
 1541|       |              /* Skip to end of options to output all data */
 1542|    964|              opt = pdu->token + pdu->used_size;
 1543|    964|              length = 0;
 1544|    964|            }
 1545|  10.7M|          } else {
 1546|  4.55M|            ok = ok && write_prefix(&obp, &outbuflen, " ", 1);
  ------------------
  |  Branch (1546:18): [True: 43.4k, False: 4.51M]
  |  Branch (1546:24): [True: 43.4k, False: 20]
  ------------------
 1547|  4.55M|          }
 1548|  15.3M|          tlen = opt - opt_last;
 1549|   103M|          while (tlen) {
  ------------------
  |  Branch (1549:18): [True: 88.5M, False: 15.3M]
  ------------------
 1550|  88.5M|            tlen--;
 1551|  88.5M|            ok = ok && write_char(&obp, &outbuflen, *opt_last, i);
  ------------------
  |  Branch (1551:18): [True: 1.09M, False: 87.4M]
  |  Branch (1551:24): [True: 1.09M, False: 840]
  ------------------
 1552|  88.5M|            opt_last++;
 1553|  88.5M|          }
 1554|  15.3M|        }
 1555|  2.95k|        if (length && *opt == COAP_PAYLOAD_START) {
  ------------------
  |  |   96|    132|#define COAP_PAYLOAD_START 0xFF /* payload marker */
  ------------------
  |  Branch (1555:13): [True: 132, False: 2.82k]
  |  Branch (1555:23): [True: 132, False: 0]
  ------------------
 1556|    132|          write_char(&obp, &outbuflen, *opt, i);
 1557|    132|        }
 1558|       |        /* write_*() always leaves a spare byte to null terminate */
 1559|  2.95k|        *obp = '\000';
 1560|  2.95k|        coap_log_debug("%s\n", outbuf);
  ------------------
  |  |  126|  2.95k|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|  2.95k|#define coap_log(level, ...) do { \
  |  |  |  |  291|  2.95k|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 2.95k]
  |  |  |  |  ------------------
  |  |  |  |  292|  2.95k|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|  2.95k|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 2.95k]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1561|  2.95k|      }
 1562|  1.47k|    }
 1563|       |
 1564|  3.04k|    if (length > 0) {
  ------------------
  |  Branch (1564:9): [True: 194, False: 2.85k]
  ------------------
 1565|    194|      assert(*opt == COAP_PAYLOAD_START);
  ------------------
  |  Branch (1565:7): [True: 194, False: 0]
  ------------------
 1566|    194|      opt++;
 1567|    194|      length--;
 1568|       |
 1569|    194|      if (length == 0) {
  ------------------
  |  Branch (1569:11): [True: 22, False: 172]
  ------------------
 1570|     22|        coap_log_debug("coap_pdu_parse: message ending in payload start marker\n");
  ------------------
  |  |  126|     22|#define coap_log_debug(...) coap_log(COAP_LOG_DEBUG, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     22|#define coap_log(level, ...) do { \
  |  |  |  |  291|     22|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 22]
  |  |  |  |  ------------------
  |  |  |  |  292|     22|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     22|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 22]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1571|     22|        return 0;
 1572|     22|      }
 1573|    194|    }
 1574|  3.02k|    if (length > 0)
  ------------------
  |  Branch (1574:9): [True: 172, False: 2.85k]
  ------------------
 1575|    172|      pdu->data = (uint8_t *)opt;
 1576|  2.85k|    else
 1577|  2.85k|      pdu->data = NULL;
 1578|  3.02k|  }
 1579|       |
 1580|  3.02k|  return good;
 1581|  3.05k|}
coap_pdu_parse:
 1587|  3.10k|               coap_pdu_t *pdu) {
 1588|  3.10k|  coap_opt_filter_t error_opts;
 1589|       |
 1590|  3.10k|  return coap_pdu_parse2(proto, data, length, pdu, &error_opts);
 1591|  3.10k|}
coap_pdu_parse2:
 1598|  3.10k|                coap_opt_filter_t *error_opts) {
 1599|  3.10k|  size_t hdr_size;
 1600|       |
 1601|  3.10k|  if (length == 0)
  ------------------
  |  Branch (1601:7): [True: 0, False: 3.10k]
  ------------------
 1602|      0|    return 0;
 1603|  3.10k|  hdr_size = coap_pdu_parse_header_size(proto, data);
 1604|  3.10k|  if (!hdr_size || hdr_size > length)
  ------------------
  |  Branch (1604:7): [True: 0, False: 3.10k]
  |  Branch (1604:20): [True: 1, False: 3.10k]
  ------------------
 1605|      1|    return 0;
 1606|  3.10k|  if (hdr_size > pdu->max_hdr_size)
  ------------------
  |  Branch (1606:7): [True: 0, False: 3.10k]
  ------------------
 1607|      0|    return 0;
 1608|  3.10k|  if (!coap_pdu_resize(pdu, length - hdr_size))
  ------------------
  |  Branch (1608:7): [True: 0, False: 3.10k]
  ------------------
 1609|      0|    return 0;
 1610|  3.10k|  if (pdu->token - hdr_size != data)
  ------------------
  |  Branch (1610:7): [True: 3.10k, False: 0]
  ------------------
 1611|  3.10k|    memcpy(pdu->token - hdr_size, data, length);
 1612|  3.10k|  pdu->hdr_size = (uint8_t)hdr_size;
 1613|  3.10k|  pdu->used_size = length - hdr_size;
 1614|  3.10k|  return coap_pdu_parse_header(pdu, proto) && coap_pdu_parse_opt(pdu, error_opts);
  ------------------
  |  Branch (1614:10): [True: 3.07k, False: 34]
  |  Branch (1614:47): [True: 1.56k, False: 1.51k]
  ------------------
 1615|  3.10k|}
coap_pdu_encode_header:
 1618|  1.56k|coap_pdu_encode_header(coap_pdu_t *pdu, coap_proto_t proto) {
 1619|  1.56k|  uint8_t e_token_length;
 1620|       |
 1621|  1.56k|  if (pdu->actual_token.length < COAP_TOKEN_EXT_1B_BIAS) {
  ------------------
  |  |   56|  1.56k|#define COAP_TOKEN_EXT_1B_BIAS 13
  ------------------
  |  Branch (1621:7): [True: 1.50k, False: 63]
  ------------------
 1622|  1.50k|    e_token_length = (uint8_t)pdu->actual_token.length;
 1623|  1.50k|  } else if (pdu->actual_token.length < COAP_TOKEN_EXT_2B_BIAS) {
  ------------------
  |  |   57|     63|#define COAP_TOKEN_EXT_2B_BIAS 269 /* 13 + 256 */
  ------------------
  |  Branch (1623:14): [True: 25, False: 38]
  ------------------
 1624|     25|    e_token_length = COAP_TOKEN_EXT_1B_TKL;
  ------------------
  |  |   54|     25|#define COAP_TOKEN_EXT_1B_TKL 13
  ------------------
 1625|     38|  } else if (pdu->actual_token.length <= COAP_TOKEN_EXT_MAX) {
  ------------------
  |  |   60|     38|#define COAP_TOKEN_EXT_MAX 65804UL /* 13 + 256 + 65535 */
  ------------------
  |  Branch (1625:14): [True: 38, False: 0]
  ------------------
 1626|     38|    e_token_length = COAP_TOKEN_EXT_2B_TKL;
  ------------------
  |  |   55|     38|#define COAP_TOKEN_EXT_2B_TKL 14
  ------------------
 1627|     38|  } else {
 1628|      0|    coap_log_warn("coap_pdu_encode_header: Token size too large. PDU ignored\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1629|      0|    return 0;
 1630|      0|  }
 1631|  1.56k|  if (COAP_PROTO_NOT_RELIABLE(proto)) {
  ------------------
  |  |   41|  1.56k|#define COAP_PROTO_NOT_RELIABLE(p) ((p)==COAP_PROTO_UDP || (p)==COAP_PROTO_DTLS)
  |  |  ------------------
  |  |  |  Branch (41:37): [True: 0, False: 1.56k]
  |  |  |  Branch (41:60): [True: 0, False: 1.56k]
  |  |  ------------------
  ------------------
 1632|      0|    assert(pdu->max_hdr_size >= 4);
  ------------------
  |  Branch (1632:5): [True: 0, False: 0]
  ------------------
 1633|      0|    if (pdu->max_hdr_size < 4) {
  ------------------
  |  Branch (1633:9): [True: 0, False: 0]
  ------------------
 1634|      0|      coap_log_warn("coap_pdu_encode_header: not enough space for UDP-style header\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1635|      0|      return 0;
 1636|      0|    }
 1637|      0|    pdu->token[-4] = COAP_DEFAULT_VERSION << 6
  ------------------
  |  |   35|      0|#define COAP_DEFAULT_VERSION      1 /* version of CoAP supported */
  ------------------
 1638|      0|                     | pdu->type << 4
 1639|      0|                     | e_token_length;
 1640|      0|    pdu->token[-3] = pdu->code;
 1641|      0|    pdu->token[-2] = (uint8_t)(pdu->mid >> 8);
 1642|      0|    pdu->token[-1] = (uint8_t)(pdu->mid);
 1643|      0|    pdu->hdr_size = 4;
 1644|      0|#if !COAP_DISABLE_TCP
 1645|  1.56k|  } else if (COAP_PROTO_RELIABLE(proto)) {
  ------------------
  |  |   42|  1.56k|#define COAP_PROTO_RELIABLE(p) ((p)==COAP_PROTO_TCP || (p)==COAP_PROTO_TLS || \
  |  |  ------------------
  |  |  |  Branch (42:33): [True: 0, False: 1.56k]
  |  |  |  Branch (42:56): [True: 0, False: 1.56k]
  |  |  ------------------
  |  |   43|  1.56k|                                (p)==COAP_PROTO_WS || (p)==COAP_PROTO_WSS)
  |  |  ------------------
  |  |  |  Branch (43:33): [True: 1.56k, False: 0]
  |  |  |  Branch (43:55): [True: 0, False: 0]
  |  |  ------------------
  ------------------
 1646|  1.56k|    size_t len;
 1647|  1.56k|    assert(pdu->used_size >= pdu->e_token_length);
  ------------------
  |  Branch (1647:5): [True: 1.56k, False: 0]
  ------------------
 1648|  1.56k|    if (pdu->used_size < pdu->e_token_length) {
  ------------------
  |  Branch (1648:9): [True: 0, False: 1.56k]
  ------------------
 1649|      0|      coap_log_warn("coap_pdu_encode_header: corrupted PDU\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1650|      0|      return 0;
 1651|      0|    }
 1652|       |
 1653|       |    /* A lot of the reliable code assumes type is CON */
 1654|  1.56k|    if (pdu->type != COAP_MESSAGE_CON)
  ------------------
  |  Branch (1654:9): [True: 0, False: 1.56k]
  ------------------
 1655|      0|      pdu->type = COAP_MESSAGE_CON;
 1656|       |
 1657|  1.56k|    if (proto == COAP_PROTO_WS || proto == COAP_PROTO_WSS)
  ------------------
  |  Branch (1657:9): [True: 1.56k, False: 0]
  |  Branch (1657:35): [True: 0, False: 0]
  ------------------
 1658|  1.56k|      len = 0;
 1659|      0|    else
 1660|      0|      len = pdu->used_size - pdu->e_token_length;
 1661|  1.56k|    if (len <= COAP_MAX_MESSAGE_SIZE_TCP0) {
  ------------------
  |  |   43|  1.56k|#define COAP_MAX_MESSAGE_SIZE_TCP0 (COAP_MESSAGE_SIZE_OFFSET_TCP8-1) /* 12 */
  |  |  ------------------
  |  |  |  |   38|  1.56k|#define COAP_MESSAGE_SIZE_OFFSET_TCP8 13
  |  |  ------------------
  ------------------
  |  Branch (1661:9): [True: 1.56k, False: 0]
  ------------------
 1662|  1.56k|      assert(pdu->max_hdr_size >= 2);
  ------------------
  |  Branch (1662:7): [True: 1.56k, False: 0]
  ------------------
 1663|  1.56k|      if (pdu->max_hdr_size < 2) {
  ------------------
  |  Branch (1663:11): [True: 0, False: 1.56k]
  ------------------
 1664|      0|        coap_log_warn("coap_pdu_encode_header: not enough space for TCP0 header\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1665|      0|        return 0;
 1666|      0|      }
 1667|  1.56k|      pdu->token[-2] = (uint8_t)len << 4
 1668|  1.56k|                       | e_token_length;
 1669|  1.56k|      pdu->token[-1] = pdu->code;
 1670|  1.56k|      pdu->hdr_size = 2;
 1671|  1.56k|    } else if (len <= COAP_MAX_MESSAGE_SIZE_TCP8) {
  ------------------
  |  |   44|      0|#define COAP_MAX_MESSAGE_SIZE_TCP8 (COAP_MESSAGE_SIZE_OFFSET_TCP16-1) /* 268 */
  |  |  ------------------
  |  |  |  |   39|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP16 269 /* 13 + 256 */
  |  |  ------------------
  ------------------
  |  Branch (1671:16): [True: 0, False: 0]
  ------------------
 1672|      0|      assert(pdu->max_hdr_size >= 3);
  ------------------
  |  Branch (1672:7): [True: 0, False: 0]
  ------------------
 1673|      0|      if (pdu->max_hdr_size < 3) {
  ------------------
  |  Branch (1673:11): [True: 0, False: 0]
  ------------------
 1674|      0|        coap_log_warn("coap_pdu_encode_header: not enough space for TCP8 header\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1675|      0|        return 0;
 1676|      0|      }
 1677|      0|      pdu->token[-3] = 13 << 4 | e_token_length;
 1678|      0|      pdu->token[-2] = (uint8_t)(len - COAP_MESSAGE_SIZE_OFFSET_TCP8);
  ------------------
  |  |   38|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP8 13
  ------------------
 1679|      0|      pdu->token[-1] = pdu->code;
 1680|      0|      pdu->hdr_size = 3;
 1681|      0|    } else if (len <= COAP_MAX_MESSAGE_SIZE_TCP16) {
  ------------------
  |  |   45|      0|#define COAP_MAX_MESSAGE_SIZE_TCP16 (COAP_MESSAGE_SIZE_OFFSET_TCP32-1) /* 65804 */
  |  |  ------------------
  |  |  |  |   40|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP32 65805 /* 269 + 65536 */
  |  |  ------------------
  ------------------
  |  Branch (1681:16): [True: 0, False: 0]
  ------------------
 1682|      0|      assert(pdu->max_hdr_size >= 4);
  ------------------
  |  Branch (1682:7): [True: 0, False: 0]
  ------------------
 1683|      0|      if (pdu->max_hdr_size < 4) {
  ------------------
  |  Branch (1683:11): [True: 0, False: 0]
  ------------------
 1684|      0|        coap_log_warn("coap_pdu_encode_header: not enough space for TCP16 header\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1685|      0|        return 0;
 1686|      0|      }
 1687|      0|      pdu->token[-4] = 14 << 4 | e_token_length;
 1688|      0|      pdu->token[-3] = (uint8_t)((len - COAP_MESSAGE_SIZE_OFFSET_TCP16) >> 8);
  ------------------
  |  |   39|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP16 269 /* 13 + 256 */
  ------------------
 1689|      0|      pdu->token[-2] = (uint8_t)(len - COAP_MESSAGE_SIZE_OFFSET_TCP16);
  ------------------
  |  |   39|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP16 269 /* 13 + 256 */
  ------------------
 1690|      0|      pdu->token[-1] = pdu->code;
 1691|      0|      pdu->hdr_size = 4;
 1692|      0|    } else {
 1693|      0|      assert(pdu->max_hdr_size >= 6);
  ------------------
  |  Branch (1693:7): [True: 0, False: 0]
  ------------------
 1694|      0|      if (pdu->max_hdr_size < 6) {
  ------------------
  |  Branch (1694:11): [True: 0, False: 0]
  ------------------
 1695|      0|        coap_log_warn("coap_pdu_encode_header: not enough space for TCP32 header\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1696|      0|        return 0;
 1697|      0|      }
 1698|      0|      pdu->token[-6] = 15 << 4 | e_token_length;
 1699|      0|      pdu->token[-5] = (uint8_t)((len - COAP_MESSAGE_SIZE_OFFSET_TCP32) >> 24);
  ------------------
  |  |   40|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP32 65805 /* 269 + 65536 */
  ------------------
 1700|      0|      pdu->token[-4] = (uint8_t)((len - COAP_MESSAGE_SIZE_OFFSET_TCP32) >> 16);
  ------------------
  |  |   40|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP32 65805 /* 269 + 65536 */
  ------------------
 1701|      0|      pdu->token[-3] = (uint8_t)((len - COAP_MESSAGE_SIZE_OFFSET_TCP32) >> 8);
  ------------------
  |  |   40|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP32 65805 /* 269 + 65536 */
  ------------------
 1702|      0|      pdu->token[-2] = (uint8_t)(len - COAP_MESSAGE_SIZE_OFFSET_TCP32);
  ------------------
  |  |   40|      0|#define COAP_MESSAGE_SIZE_OFFSET_TCP32 65805 /* 269 + 65536 */
  ------------------
 1703|      0|      pdu->token[-1] = pdu->code;
 1704|      0|      pdu->hdr_size = 6;
 1705|      0|    }
 1706|  1.56k|#endif /* ! COAP_DISABLE_TCP */
 1707|  1.56k|  } else {
 1708|      0|    coap_log_warn("coap_pdu_encode_header: unsupported protocol\n");
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
 1709|      0|  }
 1710|  1.56k|  return pdu->hdr_size;
 1711|  1.56k|}
coap_pdu.c:coap_pdu_parse_opt_csm:
 1222|  14.1M|coap_pdu_parse_opt_csm(coap_pdu_code_t code, coap_option_num_t option, size_t len) {
 1223|  14.1M|  switch ((coap_pdu_signaling_proto_t)code) {
 1224|   122k|  case COAP_SIGNALING_CSM:
  ------------------
  |  Branch (1224:3): [True: 122k, False: 14.0M]
  ------------------
 1225|   122k|    switch ((coap_sig_csm_opt_t)option) {
 1226|  3.09k|    case COAP_SIG_OPT_MAX_MESSAGE_SIZE:
  ------------------
  |  Branch (1226:5): [True: 3.09k, False: 119k]
  ------------------
 1227|  3.09k|      if (len > 4)
  ------------------
  |  Branch (1227:11): [True: 1.98k, False: 1.10k]
  ------------------
 1228|  1.98k|        goto bad;
 1229|  1.10k|      break;
 1230|  2.68k|    case COAP_SIG_OPT_BLOCK_WISE_TRANSFER:
  ------------------
  |  Branch (1230:5): [True: 2.68k, False: 119k]
  ------------------
 1231|  2.68k|      if (len > 0)
  ------------------
  |  Branch (1231:11): [True: 1.12k, False: 1.56k]
  ------------------
 1232|  1.12k|        goto bad;
 1233|  1.56k|      break;
 1234|  3.35k|    case COAP_SIG_OPT_EXTENDED_TOKEN_LENGTH:
  ------------------
  |  Branch (1234:5): [True: 3.35k, False: 118k]
  ------------------
 1235|  3.35k|      if (len > 3)
  ------------------
  |  Branch (1235:11): [True: 1.53k, False: 1.81k]
  ------------------
 1236|  1.53k|        goto bad;
 1237|  1.81k|      break;
 1238|   113k|    default:
  ------------------
  |  Branch (1238:5): [True: 113k, False: 9.13k]
  ------------------
 1239|   113k|      if (option & 0x01)
  ------------------
  |  Branch (1239:11): [True: 17.4k, False: 95.5k]
  ------------------
 1240|  17.4k|        goto bad; /* Critical */
 1241|   122k|    }
 1242|   100k|    break;
 1243|   100k|  case COAP_SIGNALING_PING:
  ------------------
  |  Branch (1243:3): [True: 2.75k, False: 14.1M]
  ------------------
 1244|  9.48k|  case COAP_SIGNALING_PONG:
  ------------------
  |  Branch (1244:3): [True: 6.73k, False: 14.1M]
  ------------------
 1245|  9.48k|    switch ((coap_sig_ping_opt_t)option) {
 1246|  2.14k|    case COAP_SIG_OPT_CUSTODY:
  ------------------
  |  Branch (1246:5): [True: 2.14k, False: 7.34k]
  ------------------
 1247|  2.14k|      if (len > 0)
  ------------------
  |  Branch (1247:11): [True: 1.09k, False: 1.04k]
  ------------------
 1248|  1.09k|        goto bad;
 1249|  1.04k|      break;
 1250|  7.34k|    default:
  ------------------
  |  Branch (1250:5): [True: 7.34k, False: 2.14k]
  ------------------
 1251|  7.34k|      if (option & 0x01)
  ------------------
  |  Branch (1251:11): [True: 4.59k, False: 2.74k]
  ------------------
 1252|  4.59k|        goto bad; /* Critical */
 1253|  9.48k|    }
 1254|  3.79k|    break;
 1255|  26.2k|  case COAP_SIGNALING_RELEASE:
  ------------------
  |  Branch (1255:3): [True: 26.2k, False: 14.1M]
  ------------------
 1256|  26.2k|    switch ((coap_sig_release_opt_t)option) {
 1257|  12.4k|    case COAP_SIG_OPT_ALTERNATIVE_ADDRESS:
  ------------------
  |  Branch (1257:5): [True: 12.4k, False: 13.7k]
  ------------------
 1258|  12.4k|      if (len < 1 || len > 255)
  ------------------
  |  Branch (1258:11): [True: 10.4k, False: 1.98k]
  |  Branch (1258:22): [True: 1.18k, False: 803]
  ------------------
 1259|  11.6k|        goto bad;
 1260|    803|      break;
 1261|  5.28k|    case COAP_SIG_OPT_HOLD_OFF:
  ------------------
  |  Branch (1261:5): [True: 5.28k, False: 20.9k]
  ------------------
 1262|  5.28k|      if (len > 3)
  ------------------
  |  Branch (1262:11): [True: 1.87k, False: 3.41k]
  ------------------
 1263|  1.87k|        goto bad;
 1264|  3.41k|      break;
 1265|  8.50k|    default:
  ------------------
  |  Branch (1265:5): [True: 8.50k, False: 17.7k]
  ------------------
 1266|  8.50k|      if (option & 0x01)
  ------------------
  |  Branch (1266:11): [True: 6.74k, False: 1.76k]
  ------------------
 1267|  6.74k|        goto bad; /* Critical */
 1268|  26.2k|    }
 1269|  5.98k|    break;
 1270|  16.7k|  case COAP_SIGNALING_ABORT:
  ------------------
  |  Branch (1270:3): [True: 16.7k, False: 14.1M]
  ------------------
 1271|  16.7k|    switch ((coap_sig_abort_opt_t)option) {
 1272|  2.03k|    case COAP_SIG_OPT_BAD_CSM_OPTION:
  ------------------
  |  Branch (1272:5): [True: 2.03k, False: 14.6k]
  ------------------
 1273|  2.03k|      if (len > 2)
  ------------------
  |  Branch (1273:11): [True: 1.17k, False: 857]
  ------------------
 1274|  1.17k|        goto bad;
 1275|    857|      break;
 1276|  14.6k|    default:
  ------------------
  |  Branch (1276:5): [True: 14.6k, False: 2.03k]
  ------------------
 1277|  14.6k|      if (option & 0x01)
  ------------------
  |  Branch (1277:11): [True: 12.0k, False: 2.63k]
  ------------------
 1278|  12.0k|        goto bad; /* Critical */
 1279|  16.7k|    }
 1280|  3.49k|    break;
 1281|  14.0M|  default:
  ------------------
  |  Branch (1281:3): [True: 14.0M, False: 174k]
  ------------------
 1282|  14.0M|    goto bad;
 1283|  14.1M|  }
 1284|   113k|  return 1;
 1285|  14.0M|bad:
 1286|  14.0M|  return 0;
 1287|  14.1M|}
coap_pdu.c:next_option_safe:
 1053|  28.9M|next_option_safe(coap_opt_t **optp, size_t *length, uint16_t *max_opt) {
 1054|  28.9M|  coap_option_t option;
 1055|  28.9M|  size_t optsize;
 1056|       |
 1057|  28.9M|  assert(optp);
  ------------------
  |  Branch (1057:3): [True: 28.9M, False: 0]
  ------------------
 1058|  28.9M|  assert(*optp);
  ------------------
  |  Branch (1058:3): [True: 28.9M, False: 0]
  ------------------
 1059|  28.9M|  assert(length);
  ------------------
  |  Branch (1059:3): [True: 28.9M, False: 0]
  ------------------
 1060|       |
 1061|  28.9M|  optsize = coap_opt_parse(*optp, *length, &option);
 1062|  28.9M|  assert(optsize <= *length);
  ------------------
  |  Branch (1062:3): [True: 28.9M, False: 0]
  ------------------
 1063|       |
 1064|       |  /* signal an error if this option would exceed the
 1065|       |   * allowed number space */
 1066|  28.9M|  if ((uint32_t)(*max_opt) + option.delta > COAP_MAX_OPT) {
  ------------------
  |  |  105|  28.9M|#define COAP_MAX_OPT 65535 /**< the highest option number we know */
  ------------------
  |  Branch (1066:7): [True: 30, False: 28.9M]
  ------------------
 1067|     30|    return 0;
 1068|     30|  }
 1069|  28.9M|  *max_opt += option.delta;
 1070|  28.9M|  *optp += optsize;
 1071|  28.9M|  *length -= optsize;
 1072|       |
 1073|  28.9M|  return optsize;
 1074|  28.9M|}
coap_pdu.c:write_prefix:
 1413|   117k|write_prefix(char **obp, size_t *len, const char *prf, size_t prflen) {
 1414|       |  /* Make sure space for null terminating byte */
 1415|   117k|  if (*len < prflen +1) {
  ------------------
  |  Branch (1415:7): [True: 46, False: 117k]
  ------------------
 1416|     46|    return 0;
 1417|     46|  }
 1418|       |
 1419|   117k|  memcpy(*obp, prf, prflen);
 1420|   117k|  *obp += prflen;
 1421|   117k|  *len -= prflen;
 1422|   117k|  return 1;
 1423|   117k|}
coap_pdu.c:write_char:
 1426|  1.09M|write_char(char **obp, size_t *len, int c, int printable) {
 1427|       |  /* Make sure space for null terminating byte */
 1428|  1.09M|  if (*len < 2 +1) {
  ------------------
  |  Branch (1428:7): [True: 910, False: 1.09M]
  ------------------
 1429|    910|    return 0;
 1430|    910|  }
 1431|       |
 1432|  1.09M|  if (!printable) {
  ------------------
  |  Branch (1432:7): [True: 548k, False: 548k]
  ------------------
 1433|   548k|    const uint8_t hex[] = "0123456789abcdef";
 1434|   548k|    (*obp)[0] = hex[(c & 0xf0) >> 4];
 1435|   548k|    (*obp)[1] = hex[c & 0x0f];
 1436|   548k|  } else {
 1437|   548k|    (*obp)[0] = isprint(c) ? c : '.';
  ------------------
  |  Branch (1437:17): [True: 81.2k, False: 467k]
  ------------------
 1438|   548k|    (*obp)[1] = ' ';
 1439|   548k|  }
 1440|  1.09M|  *obp += 2;
 1441|  1.09M|  *len -= 2;
 1442|  1.09M|  return 1;
 1443|  1.09M|}

coap_prng_init_lkd:
  180|  3.10k|coap_prng_init_lkd(unsigned int seed) {
  181|  3.10k|#ifdef HAVE_GETRANDOM
  182|       |  /* No seed to seed the random source if getrandom() is used */
  183|  3.10k|  (void)seed;
  184|       |#elif defined(HAVE_RANDOM)
  185|       |  srandom(seed);
  186|       |#else /* !HAVE_GETRANDOM  && !HAVE_RANDOM */
  187|       |  srand(seed);
  188|       |#endif /* !HAVE_GETRANDOM */
  189|  3.10k|}
coap_prng_lkd:
  192|  3.10k|coap_prng_lkd(void *buf, size_t len) {
  193|  3.10k|  if (!rand_func) {
  ------------------
  |  Branch (193:7): [True: 0, False: 3.10k]
  ------------------
  194|      0|    return 0;
  195|      0|  }
  196|       |
  197|  3.10k|  return rand_func(buf, len);
  198|  3.10k|}
coap_prng.c:coap_prng_default:
  110|  3.10k|coap_prng_default(void *buf, size_t len) {
  111|       |#if defined(MBEDTLS_ENTROPY_HARDWARE_ALT)
  112|       |  /* mbedtls_hardware_poll() returns 0 on success */
  113|       |  return (mbedtls_hardware_poll(NULL, buf, len, NULL) ? 0 : 1);
  114|       |
  115|       |#elif defined(__ZEPHYR__)
  116|       |  /* Use Zephyr's cryptographically secure random number generator */
  117|       |  if (!buf || len == 0) {
  118|       |    return 0;
  119|       |  }
  120|       |
  121|       |  sys_rand_get(buf, len);
  122|       |  return 1;
  123|       |
  124|       |#elif defined(HAVE_GETRANDOM)
  125|  3.10k|  return (getrandom(buf, len, 0) > 0) ? 1 : 0;
  ------------------
  |  Branch (125:10): [True: 3.10k, False: 0]
  ------------------
  126|       |
  127|       |#elif defined(HAVE_RANDOM)
  128|       |#define RAND_BYTES (RAND_MAX >= 0xffffff ? 3 : (RAND_MAX >= 0xffff ? 2 : 1))
  129|       |  unsigned char *dst = (unsigned char *)buf;
  130|       |
  131|       |  if (len) {
  132|       |    uint8_t byte_counter = RAND_BYTES;
  133|       |    uint32_t r_v = random();
  134|       |
  135|       |    while (1) {
  136|       |      *dst++ = r_v & 0xFF;
  137|       |      if (!--len) {
  138|       |        break;
  139|       |      }
  140|       |      if (--byte_counter) {
  141|       |        r_v >>= 8;
  142|       |      } else {
  143|       |        r_v = random();
  144|       |        byte_counter = RAND_BYTES;
  145|       |      }
  146|       |    }
  147|       |  }
  148|       |  return 1;
  149|       |#elif defined(RIOT_VERSION)
  150|       |#include <random.h>
  151|       |  random_bytes(buf, len);
  152|       |  return 1;
  153|       |
  154|       |#elif defined(WITH_CONTIKI)
  155|       |  return csprng_rand(buf, len);
  156|       |
  157|       |#elif defined(_WIN32)
  158|       |  return coap_prng_impl(buf,len);
  159|       |
  160|       |#else /* !MBEDTLS_ENTROPY_HARDWARE_ALT && !HAVE_GETRANDOM &&
  161|       |         !HAVE_RANDOM && !_WIN32 */
  162|       |#error "CVE-2021-34430: using rand() for crypto randoms is not secure!"
  163|       |#error "Please update you C-library and rerun the auto-configuration."
  164|       |  unsigned char *dst = (unsigned char *)buf;
  165|       |  while (len--)
  166|       |    *dst++ = rand() & 0xFF;
  167|       |  return 1;
  168|       |#endif /* !MBEDTLS_ENTROPY_HARDWARE_ALT && !HAVE_GETRANDOM &&
  169|       |          !HAVE_RANDOM && !_WIN32 */
  170|  3.10k|}

coap_new_string:
   21|  1.43k|coap_new_string(size_t size) {
   22|  1.43k|  coap_string_t *s;
   23|       |#if defined(WITH_LWIP) && MEMP_USE_CUSTOM_POOLS && ! MEM_USE_POOLS
   24|       |  if (size >= MEMP_LEN_COAPSTRING) {
   25|       |    coap_log_crit("coap_new_string: size too large (%" PRIuS " +1 > MEMP_LEN_COAPSTRING)\n",
   26|       |                  size);
   27|       |    return NULL;
   28|       |  }
   29|       |#endif /* WITH_LWIP && MEMP_USE_CUSTOM_POOLS */
   30|       |  /* Check no overflow (including a 8 byte small headroom) */
   31|  1.43k|  if (size > SIZE_MAX - sizeof(coap_str_bin_union_t) - 1 - 8) {
  ------------------
  |  Branch (31:7): [True: 0, False: 1.43k]
  ------------------
   32|      0|    return NULL;
   33|      0|  }
   34|       |
   35|  1.43k|  s = (coap_string_t *)coap_malloc_type(COAP_STRING,
   36|  1.43k|                                        sizeof(coap_str_bin_union_t) + size + 1);
   37|  1.43k|  if (!s) {
  ------------------
  |  Branch (37:7): [True: 0, False: 1.43k]
  ------------------
   38|      0|    coap_log_crit("coap_new_string: malloc: failed\n");
  ------------------
  |  |   96|      0|#define coap_log_crit(...) coap_log(COAP_LOG_CRIT, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
   39|      0|    return NULL;
   40|      0|  }
   41|       |
   42|  1.43k|  memset(s, 0, sizeof(coap_str_bin_union_t));
   43|  1.43k|  s->s = ((unsigned char *)s) + sizeof(coap_str_bin_union_t);
   44|  1.43k|  s->s[size] = '\000';
   45|  1.43k|  s->length = size;
   46|  1.43k|  return s;
   47|  1.43k|}
coap_delete_string:
   50|  3.12k|coap_delete_string(coap_string_t *s) {
   51|  3.12k|  coap_free_type(COAP_STRING, s);
   52|  3.12k|}
coap_delete_binary:
  114|  3.10k|coap_delete_binary(coap_binary_t *s) {
  115|  3.10k|  coap_free_type(COAP_STRING, s);
  116|  3.10k|}

coap_tcp_is_supported:
   35|      3|coap_tcp_is_supported(void) {
   36|      3|  return !COAP_DISABLE_TCP;
  ------------------
  |  |   23|      3|#define COAP_DISABLE_TCP 0
  ------------------
   37|      3|}

coap_clock_init:
   68|  3.10k|coap_clock_init(void) {
   69|  3.10k|#ifdef COAP_CLOCK
   70|  3.10k|  struct timespec tv;
   71|  3.10k|  clock_gettime(COAP_CLOCK, &tv);
  ------------------
  |  |   43|  3.10k|#define COAP_CLOCK CLOCK_REALTIME
  ------------------
   72|       |#else /* _POSIX_TIMERS */
   73|       |  struct timeval tv;
   74|       |  gettimeofday(&tv, NULL);
   75|       |#endif /* not _POSIX_TIMERS */
   76|       |
   77|  3.10k|  coap_clock_offset = tv.tv_sec;
   78|  3.10k|}
coap_ticks:
   90|  3.10k|coap_ticks(coap_tick_t *t) {
   91|  3.10k|  coap_tick_t tmp;
   92|       |
   93|  3.10k|#ifdef COAP_CLOCK
   94|  3.10k|  struct timespec tv;
   95|  3.10k|  clock_gettime(COAP_CLOCK, &tv);
  ------------------
  |  |   43|  3.10k|#define COAP_CLOCK CLOCK_REALTIME
  ------------------
   96|       |  /* Possible errors are (see clock_gettime(2)):
   97|       |   *  EFAULT tp points outside the accessible address space.
   98|       |   *  EINVAL The clk_id specified is not supported on this system.
   99|       |   * Both cases should not be possible here.
  100|       |   */
  101|       |
  102|  3.10k|  tmp = SHR_FP(tv.tv_nsec * Q(FRAC, (COAP_TICKS_PER_SECOND/1000000000.0)), FRAC);
  ------------------
  |  |   87|  3.10k|#define SHR_FP(val,frac) (((coap_tick_t)((val) + (1 << ((frac) - 1)))) >> (frac))
  ------------------
  103|       |#else /* _POSIX_TIMERS */
  104|       |  /* Fall back to gettimeofday() */
  105|       |
  106|       |  struct timeval tv;
  107|       |  gettimeofday(&tv, NULL);
  108|       |  /* Possible errors are (see gettimeofday(2)):
  109|       |   *  EFAULT One of tv or tz pointed outside the accessible address space.
  110|       |   *  EINVAL Timezone (or something else) is invalid.
  111|       |   * Both cases should not be possible here.
  112|       |   */
  113|       |
  114|       |  tmp = SHR_FP(tv.tv_usec * Q(FRAC, (COAP_TICKS_PER_SECOND/1000000.0)), FRAC);
  115|       |#endif /* not _POSIX_TIMERS */
  116|       |
  117|       |  /* Finally, convert temporary FP representation to multiple of
  118|       |   * COAP_TICKS_PER_SECOND */
  119|  3.10k|  *t = tmp + (tv.tv_sec - coap_clock_offset) * COAP_TICKS_PER_SECOND;
  ------------------
  |  |  164|  3.10k|#define COAP_TICKS_PER_SECOND ((coap_tick_t)(1000U))
  ------------------
  120|  3.10k|}
coap_ticks_to_rt_us:
  128|  3.10k|coap_ticks_to_rt_us(coap_tick_t t) {
  129|  3.10k|  return (uint64_t)coap_clock_offset * 1000000 + (uint64_t)t * 1000000 / COAP_TICKS_PER_SECOND;
  ------------------
  |  |  164|  3.10k|#define COAP_TICKS_PER_SECOND ((coap_tick_t)(1000U))
  ------------------
  130|  3.10k|}

coap_split_proxy_uri:
  351|    547|coap_split_proxy_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri) {
  352|    547|  return coap_split_uri_sub(str_var, len, uri, COAP_URI_CHECK_PROXY);
  353|    547|}
coap_check_dots:
  668|  5.24M|coap_check_dots(const uint8_t *s, size_t len) {
  669|  5.24M|  uint8_t p;
  670|       |
  671|  5.24M|  if (!len)
  ------------------
  |  Branch (671:7): [True: 5.19M, False: 50.7k]
  ------------------
  672|  5.19M|    return 0;
  673|       |
  674|  50.7k|  p = *s;
  675|       |
  676|       |  /* Check 'first' char */
  677|  50.7k|  if (p == '%' && len >=3) {
  ------------------
  |  Branch (677:7): [True: 2.73k, False: 48.0k]
  |  Branch (677:19): [True: 2.52k, False: 205]
  ------------------
  678|  2.52k|    if (s[1] == '2' && (s[2] == 'E' || s[2] == 'e')) {
  ------------------
  |  Branch (678:9): [True: 795, False: 1.73k]
  |  Branch (678:25): [True: 204, False: 591]
  |  Branch (678:40): [True: 267, False: 324]
  ------------------
  679|    471|      s += 2;
  680|    471|      len -= 2;
  681|    471|    }
  682|  2.52k|    p = '.';
  683|  2.52k|  }
  684|  50.7k|  if (p != '.')
  ------------------
  |  Branch (684:7): [True: 46.5k, False: 4.26k]
  ------------------
  685|  46.5k|    return 0;
  686|  4.26k|  if (len == 1)
  ------------------
  |  Branch (686:7): [True: 1.11k, False: 3.15k]
  ------------------
  687|  1.11k|    return 1;
  688|       |
  689|       |  /* Check 'second' char, first is '.' */
  690|  3.15k|  s++;
  691|  3.15k|  len--;
  692|  3.15k|  assert(len);
  ------------------
  |  Branch (692:3): [True: 3.15k, False: 0]
  ------------------
  693|  3.15k|  p = *s;
  694|  3.15k|  if (p == '%' && len >=3) {
  ------------------
  |  Branch (694:7): [True: 1.87k, False: 1.28k]
  |  Branch (694:19): [True: 1.47k, False: 397]
  ------------------
  695|  1.47k|    if (s[1] == '2' && (s[2] == 'E' || s[2] == 'e')) {
  ------------------
  |  Branch (695:9): [True: 1.19k, False: 283]
  |  Branch (695:25): [True: 201, False: 990]
  |  Branch (695:40): [True: 726, False: 264]
  ------------------
  696|    927|      len -= 2;
  697|    927|    }
  698|  1.47k|    p = '.';
  699|  1.47k|  }
  700|  3.15k|  if (p != '.')
  ------------------
  |  Branch (700:7): [True: 1.13k, False: 2.02k]
  ------------------
  701|  1.13k|    return 0;
  702|  2.02k|  if (len == 1)
  ------------------
  |  Branch (702:7): [True: 1.37k, False: 644]
  ------------------
  703|  1.37k|    return 2;
  704|       |
  705|    644|  return 0;
  706|  2.02k|}
coap_get_query:
 1103|  1.56k|coap_get_query(const coap_pdu_t *request) {
 1104|  1.56k|  coap_opt_iterator_t opt_iter;
 1105|  1.56k|  coap_opt_filter_t f;
 1106|  1.56k|  coap_opt_t *q;
 1107|  1.56k|  coap_string_t *query = NULL;
 1108|  1.56k|  size_t length = 0;
 1109|  1.56k|  static const uint8_t hex[] = "0123456789ABCDEF";
 1110|       |
 1111|  1.56k|  coap_option_filter_clear(&f);
 1112|  1.56k|  coap_option_filter_set(&f, COAP_OPTION_URI_QUERY);
 1113|  1.56k|  coap_option_iterator_init(request, &opt_iter, &f);
 1114|  14.1k|  while ((q = coap_option_next(&opt_iter))) {
  ------------------
  |  Branch (1114:10): [True: 12.6k, False: 1.56k]
  ------------------
 1115|  12.6k|    uint16_t seg_len = coap_opt_length(q), i;
 1116|  12.6k|    const uint8_t *seg= coap_opt_value(q);
 1117|   132k|    for (i = 0; i < seg_len; i++) {
  ------------------
  |  Branch (1117:17): [True: 119k, False: 12.6k]
  ------------------
 1118|   119k|      if (is_unescaped_in_query(seg[i]))
  ------------------
  |  Branch (1118:11): [True: 6.17k, False: 113k]
  ------------------
 1119|  6.17k|        length += 1;
 1120|   113k|      else
 1121|   113k|        length += 3;
 1122|   119k|    }
 1123|  12.6k|    length += 1;
 1124|  12.6k|  }
 1125|  1.56k|  if (length > 0)
  ------------------
  |  Branch (1125:7): [True: 290, False: 1.27k]
  ------------------
 1126|    290|    length -= 1;
 1127|  1.56k|  if (length > 0) {
  ------------------
  |  Branch (1127:7): [True: 290, False: 1.27k]
  ------------------
 1128|    290|    query = coap_new_string(length);
 1129|    290|    if (query) {
  ------------------
  |  Branch (1129:9): [True: 290, False: 0]
  ------------------
 1130|    290|      query->length = length;
 1131|    290|      unsigned char *s = query->s;
 1132|    290|      coap_option_iterator_init(request, &opt_iter, &f);
 1133|  12.9k|      while ((q = coap_option_next(&opt_iter))) {
  ------------------
  |  Branch (1133:14): [True: 12.6k, False: 290]
  ------------------
 1134|  12.6k|        if (s != query->s)
  ------------------
  |  Branch (1134:13): [True: 12.3k, False: 290]
  ------------------
 1135|  12.3k|          *s++ = '&';
 1136|  12.6k|        uint16_t seg_len = coap_opt_length(q), i;
 1137|  12.6k|        const uint8_t *seg= coap_opt_value(q);
 1138|   132k|        for (i = 0; i < seg_len; i++) {
  ------------------
  |  Branch (1138:21): [True: 119k, False: 12.6k]
  ------------------
 1139|   119k|          if (is_unescaped_in_query(seg[i])) {
  ------------------
  |  Branch (1139:15): [True: 6.17k, False: 113k]
  ------------------
 1140|  6.17k|            *s++ = seg[i];
 1141|   113k|          } else {
 1142|   113k|            *s++ = '%';
 1143|   113k|            *s++ = hex[seg[i]>>4];
 1144|   113k|            *s++ = hex[seg[i]&0x0F];
 1145|   113k|          }
 1146|   119k|        }
 1147|  12.6k|      }
 1148|    290|    }
 1149|    290|  }
 1150|  1.56k|  return query;
 1151|  1.56k|}
coap_map_abbrev_uri_path:
 1154|     15|coap_map_abbrev_uri_path(coap_upa_chain_t *chain, uint32_t value) {
 1155|     15|  while (chain) {
  ------------------
  |  Branch (1155:10): [True: 0, False: 15]
  ------------------
 1156|      0|    coap_upa_chain_t *next = chain->next;
 1157|       |
 1158|      0|    if (chain->upa_value == value) {
  ------------------
  |  Branch (1158:9): [True: 0, False: 0]
  ------------------
 1159|      0|      return chain->upa_path;
 1160|      0|    }
 1161|      0|    chain = next;
 1162|      0|  }
 1163|     15|  return NULL;
 1164|     15|}
coap_get_uri_path:
 1182|  1.56k|coap_get_uri_path(const coap_pdu_t *request) {
 1183|  1.56k|  coap_opt_iterator_t opt_iter;
 1184|  1.56k|  coap_opt_filter_t f;
 1185|  1.56k|  coap_opt_t *q;
 1186|  1.56k|  coap_string_t *uri_path = NULL;
 1187|  1.56k|  size_t length = 0;
 1188|  1.56k|  static const uint8_t hex[] = "0123456789ABCDEF";
 1189|       |
 1190|  1.56k|  q = coap_check_option(request, COAP_OPTION_URI_PATH_ABB, &opt_iter);
 1191|  1.56k|  if (q) {
  ------------------
  |  Branch (1191:7): [True: 25, False: 1.53k]
  ------------------
 1192|     25|    uint32_t value;
 1193|     25|    const char *exp;
 1194|     25|    if (coap_check_option(request, COAP_OPTION_PROXY_URI, &opt_iter) ||
  ------------------
  |  Branch (1194:9): [True: 4, False: 21]
  ------------------
 1195|     21|        coap_check_option(request, COAP_OPTION_URI_PATH, &opt_iter)) {
  ------------------
  |  Branch (1195:9): [True: 6, False: 15]
  ------------------
 1196|     10|      return NULL;
 1197|     10|    }
 1198|     15|    value = coap_decode_var_bytes(coap_opt_value(q), coap_opt_length(q));
 1199|     15|    exp = coap_map_abbrev_uri_path(coap_upa_server_mapping_chain, value);
 1200|     15|    if (exp) {
  ------------------
  |  Branch (1200:9): [True: 0, False: 15]
  ------------------
 1201|      0|      uri_path = coap_new_string(strlen(exp));
 1202|      0|      if (uri_path) {
  ------------------
  |  Branch (1202:11): [True: 0, False: 0]
  ------------------
 1203|      0|        memcpy(uri_path->s, exp, strlen(exp));
 1204|      0|      }
 1205|      0|      return uri_path;
 1206|      0|    }
 1207|     15|    return NULL;
 1208|     15|  }
 1209|  1.53k|  q = coap_check_option(request, COAP_OPTION_PROXY_URI, &opt_iter);
 1210|  1.53k|  if (q) {
  ------------------
  |  Branch (1210:7): [True: 547, False: 991]
  ------------------
 1211|    547|    coap_uri_t uri;
 1212|       |
 1213|    547|    if (coap_split_proxy_uri(coap_opt_value(q),
  ------------------
  |  Branch (1213:9): [True: 398, False: 149]
  ------------------
 1214|    547|                             coap_opt_length(q), &uri) < 0) {
 1215|    398|      return NULL;
 1216|    398|    }
 1217|    149|    uri_path = coap_new_string(uri.path.length);
 1218|    149|    if (uri_path && uri.path.length) {
  ------------------
  |  Branch (1218:9): [True: 149, False: 0]
  |  Branch (1218:21): [True: 34, False: 115]
  ------------------
 1219|     34|      memcpy(uri_path->s, uri.path.s, uri.path.length);
 1220|     34|    }
 1221|    149|    return uri_path;
 1222|    547|  }
 1223|       |
 1224|    991|  coap_option_filter_clear(&f);
 1225|    991|  coap_option_filter_set(&f, COAP_OPTION_URI_PATH);
 1226|    991|  coap_option_iterator_init(request, &opt_iter, &f);
 1227|  4.54M|  while ((q = coap_option_next(&opt_iter))) {
  ------------------
  |  Branch (1227:10): [True: 4.54M, False: 991]
  ------------------
 1228|  4.54M|    uint16_t seg_len = coap_opt_length(q), i;
 1229|  4.54M|    const uint8_t *seg = coap_opt_value(q);
 1230|  4.77M|    for (i = 0; i < seg_len; i++) {
  ------------------
  |  Branch (1230:17): [True: 223k, False: 4.54M]
  ------------------
 1231|   223k|      if (is_unescaped_in_path(seg[i]))
  ------------------
  |  Branch (1231:11): [True: 8.60k, False: 215k]
  ------------------
 1232|  8.60k|        length += 1;
 1233|   215k|      else
 1234|   215k|        length += 3;
 1235|   223k|    }
 1236|       |    /* bump for the leading "/" */
 1237|  4.54M|    length += 1;
 1238|  4.54M|  }
 1239|       |  /* The first entry does not have a leading "/" */
 1240|    991|  if (length > 0)
  ------------------
  |  Branch (1240:7): [True: 397, False: 594]
  ------------------
 1241|    397|    length -= 1;
 1242|       |
 1243|       |  /* if 0, either no URI_PATH Option, or the first one was empty */
 1244|    991|  uri_path = coap_new_string(length);
 1245|    991|  if (uri_path) {
  ------------------
  |  Branch (1245:7): [True: 991, False: 0]
  ------------------
 1246|    991|    uri_path->length = length;
 1247|    991|    unsigned char *s = uri_path->s;
 1248|    991|    int n = 0;
 1249|    991|    coap_option_iterator_init(request, &opt_iter, &f);
 1250|  4.54M|    while ((q = coap_option_next(&opt_iter))) {
  ------------------
  |  Branch (1250:12): [True: 4.54M, False: 991]
  ------------------
 1251|  4.54M|      if (n++) {
  ------------------
  |  Branch (1251:11): [True: 4.54M, False: 397]
  ------------------
 1252|  4.54M|        *s++ = '/';
 1253|  4.54M|      }
 1254|  4.54M|      uint16_t seg_len = coap_opt_length(q), i;
 1255|  4.54M|      const uint8_t *seg= coap_opt_value(q);
 1256|  4.77M|      for (i = 0; i < seg_len; i++) {
  ------------------
  |  Branch (1256:19): [True: 223k, False: 4.54M]
  ------------------
 1257|   223k|        if (is_unescaped_in_path(seg[i])) {
  ------------------
  |  Branch (1257:13): [True: 8.60k, False: 215k]
  ------------------
 1258|  8.60k|          *s++ = seg[i];
 1259|   215k|        } else {
 1260|   215k|          *s++ = '%';
 1261|   215k|          *s++ = hex[seg[i]>>4];
 1262|   215k|          *s++ = hex[seg[i]&0x0F];
 1263|   215k|        }
 1264|   223k|      }
 1265|  4.54M|    }
 1266|    991|  }
 1267|    991|  return uri_path;
 1268|  1.53k|}
coap_delete_upa_chain:
 1271|  6.21k|coap_delete_upa_chain(coap_upa_chain_t *chain) {
 1272|  6.21k|  while (chain) {
  ------------------
  |  Branch (1272:10): [True: 0, False: 6.21k]
  ------------------
 1273|      0|    coap_upa_chain_t *next = chain->next;
 1274|       |
 1275|      0|    coap_free_type(COAP_STRING, chain);
 1276|      0|    chain = next;
 1277|      0|  }
 1278|  6.21k|}
coap_uri.c:coap_split_uri_sub:
   84|    547|                   coap_uri_check_t check_proxy) {
   85|    547|  const uint8_t *p, *q;
   86|    547|  int res = 0;
   87|    547|  size_t i;
   88|    547|  int is_unix_domain = 0;
   89|    547|  int is_llc = 0;
   90|       |
   91|    547|  if (!str_var || !uri || len == 0)
  ------------------
  |  Branch (91:7): [True: 0, False: 547]
  |  Branch (91:19): [True: 0, False: 547]
  |  Branch (91:27): [True: 0, False: 547]
  ------------------
   92|      0|    return -1;
   93|       |
   94|    547|  memset(uri, 0, sizeof(coap_uri_t));
   95|    547|  uri->port = COAP_DEFAULT_PORT;
  ------------------
  |  |   39|    547|#define COAP_DEFAULT_PORT      5683 /* CoAP default UDP/TCP port */
  ------------------
   96|       |
   97|       |  /* search for scheme */
   98|    547|  p = str_var;
   99|    547|  if (*p == '/') {
  ------------------
  |  Branch (99:7): [True: 2, False: 545]
  ------------------
  100|       |    /* no scheme, host or port */
  101|      2|    if (check_proxy == COAP_URI_CHECK_PROXY) {
  ------------------
  |  Branch (101:9): [True: 2, False: 0]
  ------------------
  102|       |      /* Must have ongoing host if proxy definition */
  103|      2|      return -1;
  104|      2|    }
  105|      0|    q = p;
  106|      0|    goto path;
  107|      2|  }
  108|       |
  109|       |  /* find scheme terminating :// */
  110|  9.36k|  while (len >= 3 && !(p[0] == ':' && p[1] == '/' && p[2] == '/')) {
  ------------------
  |  Branch (110:10): [True: 9.31k, False: 52]
  |  Branch (110:24): [True: 992, False: 8.32k]
  |  Branch (110:39): [True: 708, False: 284]
  |  Branch (110:54): [True: 493, False: 215]
  ------------------
  111|  8.82k|    ++p;
  112|  8.82k|    --len;
  113|  8.82k|  }
  114|    545|  if (len < 3) {
  ------------------
  |  Branch (114:7): [True: 52, False: 493]
  ------------------
  115|       |    /* scheme not defined with a :// terminator */
  116|     52|    res = -2;
  117|     52|    goto error;
  118|     52|  }
  119|  1.98k|  for (i = 0; i < COAP_URI_SCHEME_LAST; i++) {
  ------------------
  |  Branch (119:15): [True: 1.88k, False: 98]
  ------------------
  120|  1.88k|    if ((p - str_var) == (int)strlen(coap_uri_scheme[i].name) &&
  ------------------
  |  Branch (120:9): [True: 692, False: 1.19k]
  ------------------
  121|    692|        memcmp(str_var, coap_uri_scheme[i].name, p - str_var) == 0) {
  ------------------
  |  Branch (121:9): [True: 395, False: 297]
  ------------------
  122|    395|      if (check_proxy != COAP_URI_CHECK_PROXY && coap_uri_scheme[i].proxy_only) {
  ------------------
  |  Branch (122:11): [True: 0, False: 395]
  |  Branch (122:50): [True: 0, False: 0]
  ------------------
  123|      0|        coap_log_err("%.*s URI scheme not enabled (not a proxy)\n",
  ------------------
  |  |  102|      0|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  124|      0|                     (int)(p - str_var), str_var);
  125|      0|        return -1;
  126|      0|      }
  127|    395|      uri->scheme = coap_uri_scheme[i].scheme;
  128|    395|      uri->port = coap_uri_scheme[i].port;
  129|    395|      break;
  130|    395|    }
  131|  1.88k|  }
  132|    493|  if (i == COAP_URI_SCHEME_LAST) {
  ------------------
  |  Branch (132:7): [True: 98, False: 395]
  ------------------
  133|       |    /* scheme unknown */
  134|     98|    coap_log_err("%.*s URI scheme unknown\n", (int)(p - str_var), str_var);
  ------------------
  |  |  102|     98|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     98|#define coap_log(level, ...) do { \
  |  |  |  |  291|     98|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 98]
  |  |  |  |  ------------------
  |  |  |  |  292|     98|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     98|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 98]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  135|     98|    res = -1;
  136|     98|    goto error;
  137|     98|  }
  138|    395|  switch (uri->scheme) {
  139|    218|  case COAP_URI_SCHEME_COAP:
  ------------------
  |  Branch (139:3): [True: 218, False: 177]
  ------------------
  140|    218|    break;
  141|      3|  case COAP_URI_SCHEME_COAPS:
  ------------------
  |  Branch (141:3): [True: 3, False: 392]
  ------------------
  142|      3|    if (!coap_dtls_is_supported()) {
  ------------------
  |  Branch (142:9): [True: 0, False: 3]
  ------------------
  143|      0|      coap_log_err("coaps URI scheme not supported in this version of libcoap\n");
  ------------------
  |  |  102|      0|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  144|      0|      return -1;
  145|      0|    }
  146|      3|    break;
  147|      3|  case COAP_URI_SCHEME_COAP_TCP:
  ------------------
  |  Branch (147:3): [True: 2, False: 393]
  ------------------
  148|      2|    if (!coap_tcp_is_supported()) {
  ------------------
  |  Branch (148:9): [True: 0, False: 2]
  ------------------
  149|      0|      coap_log_err("coap+tcp URI scheme not supported in this version of libcoap\n");
  ------------------
  |  |  102|      0|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  150|      0|      return -1;
  151|      0|    }
  152|      2|    break;
  153|      2|  case COAP_URI_SCHEME_COAPS_TCP:
  ------------------
  |  Branch (153:3): [True: 2, False: 393]
  ------------------
  154|      2|    if (!coap_tls_is_supported()) {
  ------------------
  |  Branch (154:9): [True: 0, False: 2]
  ------------------
  155|      0|      coap_log_err("coaps+tcp URI scheme not supported in this version of libcoap\n");
  ------------------
  |  |  102|      0|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  156|      0|      return -1;
  157|      0|    }
  158|      2|    break;
  159|      2|  case COAP_URI_SCHEME_COAP_WS:
  ------------------
  |  Branch (159:3): [True: 1, False: 394]
  ------------------
  160|      1|    if (!coap_ws_is_supported()) {
  ------------------
  |  Branch (160:9): [True: 0, False: 1]
  ------------------
  161|      0|      coap_log_err("coap+ws URI scheme not supported in this version of libcoap\n");
  ------------------
  |  |  102|      0|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  162|      0|      return -1;
  163|      0|    }
  164|      1|    break;
  165|      2|  case COAP_URI_SCHEME_COAPS_WS:
  ------------------
  |  Branch (165:3): [True: 2, False: 393]
  ------------------
  166|      2|    if (!coap_wss_is_supported()) {
  ------------------
  |  Branch (166:9): [True: 0, False: 2]
  ------------------
  167|      0|      coap_log_err("coaps+ws URI scheme not supported in this version of libcoap\n");
  ------------------
  |  |  102|      0|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  168|      0|      return -1;
  169|      0|    }
  170|      2|    break;
  171|    162|  case COAP_URI_SCHEME_HTTP:
  ------------------
  |  Branch (171:3): [True: 162, False: 233]
  ------------------
  172|    167|  case COAP_URI_SCHEME_HTTPS:
  ------------------
  |  Branch (172:3): [True: 5, False: 390]
  ------------------
  173|       |    /* Not proxy, caught above.  For proxy, assume app is doing CoAP <> HTTP mapping. */
  174|    167|    break;
  175|      0|  case COAP_URI_SCHEME_LAST:
  ------------------
  |  Branch (175:3): [True: 0, False: 395]
  ------------------
  176|      0|  default:
  ------------------
  |  Branch (176:3): [True: 0, False: 395]
  ------------------
  177|      0|    coap_log_warn("Unsupported URI type %d\n", uri->scheme);
  ------------------
  |  |  108|      0|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      0|#define coap_log(level, ...) do { \
  |  |  |  |  291|      0|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      0|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      0|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 0]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  178|      0|    return -1;
  179|    395|  }
  180|       |  /* skip :// */
  181|    395|  p += 3;
  182|    395|  len -= 3;
  183|       |
  184|       |  /* p points to beginning of Uri-Host */
  185|    395|  q = p;
  186|       |
  187|    395|  if (len && *p == '[') {
  ------------------
  |  Branch (187:7): [True: 387, False: 8]
  |  Branch (187:14): [True: 25, False: 362]
  ------------------
  188|       |    /* IPv6 address reference or Unix domain */
  189|     25|    ++p;
  190|     25|    ++q;
  191|     25|    --len;
  192|       |
  193|  2.26k|    while (len && *q != ']') {
  ------------------
  |  Branch (193:12): [True: 2.24k, False: 16]
  |  Branch (193:19): [True: 2.23k, False: 9]
  ------------------
  194|  2.23k|      ++q;
  195|  2.23k|      --len;
  196|  2.23k|    }
  197|       |
  198|     25|    if (!len || *q != ']' || p == q) {
  ------------------
  |  Branch (198:9): [True: 16, False: 9]
  |  Branch (198:17): [True: 0, False: 9]
  |  Branch (198:30): [True: 1, False: 8]
  ------------------
  199|     17|      res = -3;
  200|     17|      goto error;
  201|     17|    }
  202|       |
  203|      8|    COAP_SET_STR(&uri->host, q - p, p);
  ------------------
  |  |   52|      8|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  204|      8|    ++q;
  205|      8|    --len;
  206|      8|#if COAP_AF_LLC_SUPPORT
  207|    370|  } else if ((len >= LLC_HOST_LEN) && strncmp((const char *)p, "llc[", 4) == 0) {
  ------------------
  |  |  169|    370|#define LLC_HOST_LEN (4 + HW_ADDRSTRLEN + 4)
  |  |  ------------------
  |  |  |  |  167|    370|#define HW_ADDRSTRLEN 17
  |  |  ------------------
  ------------------
  |  Branch (207:14): [True: 230, False: 140]
  |  Branch (207:39): [True: 135, False: 95]
  ------------------
  208|    135|    unsigned long sap = 0;
  209|       |
  210|    135|    is_llc = 1;
  211|       |
  212|  4.97k|    while (len && *q != ']') {
  ------------------
  |  Branch (212:12): [True: 4.96k, False: 8]
  |  Branch (212:19): [True: 4.83k, False: 127]
  ------------------
  213|  4.83k|      ++q;
  214|  4.83k|      --len;
  215|  4.83k|    }
  216|       |
  217|    135|    if (!len || *q != ']' || p == q) {
  ------------------
  |  Branch (217:9): [True: 8, False: 127]
  |  Branch (217:17): [True: 0, False: 127]
  |  Branch (217:30): [True: 0, False: 127]
  ------------------
  218|      8|      res = -7;
  219|      8|      goto error;
  220|      8|    }
  221|       |
  222|    127|    ++q;
  223|    127|    --len;
  224|       |
  225|    127|    if (!len || *q != ':') {
  ------------------
  |  Branch (225:9): [True: 2, False: 125]
  |  Branch (225:17): [True: 17, False: 108]
  ------------------
  226|     19|      coap_log_warn("LLC SAP missing in URI\n");
  ------------------
  |  |  108|     19|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     19|#define coap_log(level, ...) do { \
  |  |  |  |  291|     19|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 19]
  |  |  |  |  ------------------
  |  |  |  |  292|     19|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     19|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 19]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  227|     19|      res = -7;
  228|     19|      goto error;
  229|     19|    }
  230|       |
  231|    108|    ++q;
  232|    108|    --len;
  233|       |
  234|  1.80k|    while (len && isxdigit(*q)) {
  ------------------
  |  Branch (234:12): [True: 1.77k, False: 28]
  |  Branch (234:19): [True: 1.69k, False: 80]
  ------------------
  235|  1.69k|      if (*q >= 'a' && *q <= 'f')
  ------------------
  |  Branch (235:11): [True: 686, False: 1.01k]
  |  Branch (235:24): [True: 686, False: 0]
  ------------------
  236|    686|        sap = sap * 16 + (*q - 'a' + 10);
  237|  1.01k|      else if (*q >= 'A' && *q <= 'F')
  ------------------
  |  Branch (237:16): [True: 681, False: 331]
  |  Branch (237:29): [True: 681, False: 0]
  ------------------
  238|    681|        sap = sap * 16 + (*q - 'A' + 10);
  239|       |
  240|  1.69k|      ++q;
  241|  1.69k|      --len;
  242|  1.69k|    }
  243|       |
  244|    108|    if (sap > UINT8_MAX) {
  ------------------
  |  Branch (244:9): [True: 86, False: 22]
  ------------------
  245|     86|      coap_log_warn("LLC SAP invalid (%lu > 255)\n", sap);
  ------------------
  |  |  108|     86|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     86|#define coap_log(level, ...) do { \
  |  |  |  |  291|     86|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 86]
  |  |  |  |  ------------------
  |  |  |  |  292|     86|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     86|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 86]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  246|     86|      res = -7;
  247|     86|      goto error;
  248|     86|    }
  249|       |
  250|     22|    COAP_SET_STR(&uri->host, q - p, p);
  ------------------
  |  |   52|     22|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  251|     22|#endif /* COAP_AF_LLC_SUPPORT */
  252|    235|  } else {
  253|       |    /* IPv4 address, FQDN or Unix domain socket */
  254|    235|    if (len >= 3 && p[0] == '%' && p[1] == '2' &&
  ------------------
  |  Branch (254:9): [True: 206, False: 29]
  |  Branch (254:21): [True: 39, False: 167]
  |  Branch (254:36): [True: 18, False: 21]
  ------------------
  255|     18|        (p[2] == 'F' || p[2] == 'f')) {
  ------------------
  |  Branch (255:10): [True: 1, False: 17]
  |  Branch (255:25): [True: 2, False: 15]
  ------------------
  256|       |      /* Unix domain definition */
  257|      3|      uri->port = 0;
  258|      3|      is_unix_domain = 1;
  259|      3|    }
  260|  9.02k|    while (len && *q != ':' && *q != '/' && *q != '?') {
  ------------------
  |  Branch (260:12): [True: 8.95k, False: 78]
  |  Branch (260:19): [True: 8.83k, False: 111]
  |  Branch (260:32): [True: 8.80k, False: 36]
  |  Branch (260:45): [True: 8.79k, False: 10]
  ------------------
  261|  8.79k|      ++q;
  262|  8.79k|      --len;
  263|  8.79k|    }
  264|       |
  265|    235|    if (p == q) {
  ------------------
  |  Branch (265:9): [True: 11, False: 224]
  ------------------
  266|     11|      res = -3;
  267|     11|      goto error;
  268|     11|    }
  269|       |
  270|    224|    if ((int)(q - p) > 255) {
  ------------------
  |  Branch (270:9): [True: 8, False: 216]
  ------------------
  271|      8|      coap_log_warn("Host name length too long (%d > 255)\n", (int)(q - p));
  ------------------
  |  |  108|      8|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      8|#define coap_log(level, ...) do { \
  |  |  |  |  291|      8|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 8]
  |  |  |  |  ------------------
  |  |  |  |  292|      8|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      8|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 8]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  272|      8|      res = -6;
  273|      8|      goto error;
  274|      8|    }
  275|       |
  276|    216|    COAP_SET_STR(&uri->host, q - p, p);
  ------------------
  |  |   52|    216|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  277|    216|  }
  278|       |
  279|       |  /* check for Uri-Port (invalid for Unix) */
  280|    246|  if (len && *q == ':') {
  ------------------
  |  Branch (280:7): [True: 174, False: 72]
  |  Branch (280:14): [True: 111, False: 63]
  ------------------
  281|    111|    if (is_unix_domain || is_llc) {
  ------------------
  |  Branch (281:9): [True: 1, False: 110]
  |  Branch (281:27): [True: 2, False: 108]
  ------------------
  282|      3|      res = -5;
  283|      3|      goto error;
  284|      3|    }
  285|    108|    p = ++q;
  286|    108|    --len;
  287|       |
  288|    894|    while (len && isdigit(*q)) {
  ------------------
  |  Branch (288:12): [True: 835, False: 59]
  |  Branch (288:19): [True: 786, False: 49]
  ------------------
  289|    786|      ++q;
  290|    786|      --len;
  291|    786|    }
  292|       |
  293|    108|    if (p < q) {                /* explicit port number given */
  ------------------
  |  Branch (293:9): [True: 71, False: 37]
  ------------------
  294|     71|      long uri_port = 0;
  295|       |
  296|    811|      while ((p < q) && (uri_port <= UINT16_MAX))
  ------------------
  |  Branch (296:14): [True: 751, False: 60]
  |  Branch (296:25): [True: 740, False: 11]
  ------------------
  297|    740|        uri_port = uri_port * 10 + (*p++ - '0');
  298|       |
  299|       |      /* check if port number is in allowed range */
  300|     71|      if (uri_port > UINT16_MAX) {
  ------------------
  |  Branch (300:11): [True: 31, False: 40]
  ------------------
  301|     31|        coap_log_warn("Port number too big (%ld > 65535)\n", uri_port);
  ------------------
  |  |  108|     31|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     31|#define coap_log(level, ...) do { \
  |  |  |  |  291|     31|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 0, False: 31]
  |  |  |  |  ------------------
  |  |  |  |  292|     31|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     31|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 31]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  302|     31|        res = -4;
  303|     31|        goto error;
  304|     31|      }
  305|       |
  306|     40|      uri->port = (uint16_t)uri_port;
  307|     40|    }
  308|    108|  }
  309|       |
  310|    212|path:                 /* at this point, p must point to an absolute path */
  311|       |
  312|    212|  if (!len)
  ------------------
  |  Branch (312:7): [True: 107, False: 105]
  ------------------
  313|    107|    goto end;
  314|       |
  315|    105|  if (*q == '/') {
  ------------------
  |  Branch (315:7): [True: 42, False: 63]
  ------------------
  316|     42|    p = ++q;
  317|     42|    --len;
  318|       |
  319|  8.81k|    while (len && *q != '?') {
  ------------------
  |  Branch (319:12): [True: 8.77k, False: 39]
  |  Branch (319:19): [True: 8.77k, False: 3]
  ------------------
  320|  8.77k|      ++q;
  321|  8.77k|      --len;
  322|  8.77k|    }
  323|       |
  324|     42|    if (p < q) {
  ------------------
  |  Branch (324:9): [True: 34, False: 8]
  ------------------
  325|     34|      COAP_SET_STR(&uri->path, q - p, p);
  ------------------
  |  |   52|     34|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  326|     34|      p = q;
  327|     34|    }
  328|     42|  }
  329|       |
  330|       |  /* Uri_Query */
  331|    105|  if (len && *p == '?') {
  ------------------
  |  Branch (331:7): [True: 66, False: 39]
  |  Branch (331:14): [True: 3, False: 63]
  ------------------
  332|      3|    ++p;
  333|      3|    --len;
  334|      3|    COAP_SET_STR(&uri->query, len, p);
  ------------------
  |  |   52|      3|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  335|      3|    len = 0;
  336|      3|  }
  337|       |
  338|    212|end:
  339|    212|  return len ? -1 : 0;
  ------------------
  |  Branch (339:10): [True: 63, False: 149]
  ------------------
  340|       |
  341|    333|error:
  342|    333|  return res;
  343|    105|}
coap_uri.c:is_unescaped_in_query:
 1098|   238k|is_unescaped_in_query(const uint8_t c) {
 1099|   238k|  return is_unescaped_in_path(c) || c=='/' || c=='?';
  ------------------
  |  Branch (1099:10): [True: 11.8k, False: 227k]
  |  Branch (1099:37): [True: 468, False: 226k]
  |  Branch (1099:47): [True: 12, False: 226k]
  ------------------
 1100|   238k|}
coap_uri.c:is_unescaped_in_path:
 1089|   686k|is_unescaped_in_path(const uint8_t c) {
 1090|   686k|  return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') ||
  ------------------
  |  Branch (1090:11): [True: 22.3k, False: 663k]
  |  Branch (1090:23): [True: 4.98k, False: 17.3k]
  |  Branch (1090:37): [True: 16.3k, False: 664k]
  |  Branch (1090:49): [True: 2.44k, False: 13.8k]
  ------------------
 1091|   678k|         (c >= '0' && c <= '9') || c == '-' || c == '.' || c == '_' ||
  ------------------
  |  Branch (1091:11): [True: 23.7k, False: 654k]
  |  Branch (1091:23): [True: 2.66k, False: 21.0k]
  |  Branch (1091:36): [True: 1.37k, False: 674k]
  |  Branch (1091:48): [True: 1.11k, False: 673k]
  |  Branch (1091:60): [True: 798, False: 672k]
  ------------------
 1092|   672k|         c == '~' || c == '!' || c == '$' || c == '\'' || c == '(' ||
  ------------------
  |  Branch (1092:10): [True: 888, False: 671k]
  |  Branch (1092:22): [True: 1.29k, False: 670k]
  |  Branch (1092:34): [True: 1.29k, False: 669k]
  |  Branch (1092:46): [True: 1.06k, False: 668k]
  |  Branch (1092:59): [True: 820, False: 667k]
  ------------------
 1093|   667k|         c == ')' || c == '*' || c == '+' || c == ',' || c == ';' ||
  ------------------
  |  Branch (1093:10): [True: 852, False: 666k]
  |  Branch (1093:22): [True: 1.07k, False: 665k]
  |  Branch (1093:34): [True: 832, False: 664k]
  |  Branch (1093:46): [True: 880, False: 663k]
  |  Branch (1093:58): [True: 1.71k, False: 662k]
  ------------------
 1094|   662k|         c=='=' || c==':' || c=='@' || c == '&';
  ------------------
  |  Branch (1094:10): [True: 888, False: 661k]
  |  Branch (1094:20): [True: 2.02k, False: 659k]
  |  Branch (1094:30): [True: 1.52k, False: 657k]
  |  Branch (1094:40): [True: 566, False: 657k]
  ------------------
 1095|   686k|}

coap_ws_is_supported:
   38|      1|coap_ws_is_supported(void) {
   39|      1|  return coap_tcp_is_supported();
   40|      1|}
coap_wss_is_supported:
   43|      2|coap_wss_is_supported(void) {
   44|      2|  return coap_tls_is_supported();
   45|      2|}

LLVMFuzzerTestOneInput:
    4|  3.10k|LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
    5|  3.10k|  coap_pdu_t *pdu;
    6|       |
    7|  3.10k|  coap_startup();
    8|  3.10k|  pdu = coap_pdu_init(0, 0, 0, size);
    9|  3.10k|  if (pdu) {
  ------------------
  |  Branch (9:7): [True: 3.10k, False: 0]
  ------------------
   10|  3.10k|    coap_set_log_level(COAP_LOG_EMERG);
   11|  3.10k|    if (coap_pdu_parse(COAP_PROTO_WS, data, size, pdu)) {
  ------------------
  |  Branch (11:9): [True: 1.56k, False: 1.54k]
  ------------------
   12|  1.56k|      coap_string_t *query = coap_get_query(pdu);
   13|  1.56k|      coap_string_t *uri_path = coap_get_uri_path(pdu);
   14|  1.56k|      coap_show_pdu(COAP_LOG_ERR, pdu);
   15|  1.56k|      coap_pdu_encode_header(pdu, COAP_PROTO_WS);
   16|       |
   17|  1.56k|      coap_delete_string(query);
   18|  1.56k|      coap_delete_string(uri_path);
   19|  1.56k|    }
   20|  3.10k|    coap_delete_pdu(pdu);
   21|  3.10k|  }
   22|  3.10k|  coap_cleanup();
   23|  3.10k|  return 0;
   24|  3.10k|}

