coap_get_log_level:
  103|    356|coap_get_log_level(void) {
  104|    356|  return maxlog;
  105|    356|}
coap_log_level_desc:
  124|    356|coap_log_level_desc(coap_log_t level) {
  125|    356|  static char bad[8];
  126|    356|  if (level >= sizeof(loglevels)/sizeof(loglevels[0])) {
  ------------------
  |  Branch (126:7): [True: 0, False: 356]
  ------------------
  127|      0|    snprintf(bad, sizeof(bad), "%4d", level);
  128|      0|    return bad;
  129|    356|  } else {
  130|    356|    return loglevels[level];
  131|    356|  }
  132|    356|}
coap_log_impl:
 1361|    356|coap_log_impl(coap_log_t level, const char *format, ...) {
 1362|       |
 1363|       |#if COAP_THREAD_SAFE
 1364|       |  coap_mutex_lock(&m_log_impl);
 1365|       |#endif /* COAP_THREAD_SAFE */
 1366|       |
 1367|    356|  if (log_handler) {
  ------------------
  |  Branch (1367:7): [True: 0, False: 356]
  ------------------
 1368|       |#if COAP_CONSTRAINED_STACK
 1369|       |    /* message can be protected by m_log_impl if needed */
 1370|       |    static char message[COAP_DEBUG_BUF_SIZE];
 1371|       |#else /* ! COAP_CONSTRAINED_STACK */
 1372|      0|    char message[COAP_DEBUG_BUF_SIZE];
 1373|      0|#endif /* ! COAP_CONSTRAINED_STACK */
 1374|      0|    va_list ap;
 1375|      0|    va_start(ap, format);
 1376|       |
 1377|       |#ifdef RIOT_VERSION
 1378|       |    flash_vsnprintf(message, sizeof(message), format, ap);
 1379|       |#else /* !RIOT_VERSION */
 1380|      0|    vsnprintf(message, sizeof(message), format, ap);
 1381|      0|#endif /* !RIOT_VERSION */
 1382|      0|    va_end(ap);
 1383|      0|    log_handler(level, message);
 1384|    356|  } else {
 1385|    356|    char timebuf[32];
 1386|    356|    coap_tick_t now;
 1387|    356|    va_list ap;
 1388|    356|    FILE *log_fd;
 1389|    356|    size_t len;
 1390|       |
 1391|    356|    log_fd = level <= COAP_LOG_CRIT ? COAP_ERR_FD : COAP_DEBUG_FD;
  ------------------
  |  |   44|    356|#define COAP_ERR_FD stderr
  ------------------
                  log_fd = level <= COAP_LOG_CRIT ? COAP_ERR_FD : COAP_DEBUG_FD;
  ------------------
  |  |   37|    356|#define COAP_DEBUG_FD stdout
  ------------------
  |  Branch (1391:14): [True: 0, False: 356]
  ------------------
 1392|       |
 1393|    356|    coap_ticks(&now);
 1394|    356|    len = print_timestamp(timebuf,sizeof(timebuf), now);
 1395|    356|    if (len)
  ------------------
  |  Branch (1395:9): [True: 356, False: 0]
  ------------------
 1396|    356|      fprintf(log_fd, "%.*s ", (int)len, timebuf);
 1397|       |
 1398|       |#if COAP_THREAD_SAFE && COAP_THREAD_NUM_LOGGING
 1399|       |    if (thread_no == 0) {
 1400|       |      /*
 1401|       |       * All other call to coap_mutex_lock(&m_io_threads) immediately
 1402|       |       * by setting thread_no if 0. So deadlock should never occur.
 1403|       |       */
 1404|       |      coap_mutex_lock(&m_io_threads);
 1405|       |      thread_no = ++max_thread_no;
 1406|       |      coap_mutex_unlock(&m_io_threads);
 1407|       |    }
 1408|       |    fprintf(log_fd, "%2d ", thread_no);
 1409|       |#endif /* COAP_THREAD_SAFE && COAP_THREAD_NUM_LOGGING */
 1410|       |
 1411|    356|    fprintf(log_fd, "%s ", coap_log_level_desc(level));
 1412|       |
 1413|    356|    va_start(ap, format);
 1414|       |#ifdef RIOT_VERSION
 1415|       |    flash_vfprintf(log_fd, format, ap);
 1416|       |#else /* !RIOT_VERSION */
 1417|    356|    vfprintf(log_fd, format, ap);
 1418|    356|#endif /* !RIOT_VERSION */
 1419|    356|    va_end(ap);
 1420|    356|    fflush(log_fd);
 1421|    356|  }
 1422|       |
 1423|       |#if COAP_THREAD_SAFE
 1424|       |  coap_mutex_unlock(&m_log_impl);
 1425|       |#endif /* COAP_THREAD_SAFE */
 1426|    356|}
coap_debug.c:print_timestamp:
  144|    356|print_timestamp(char *s, size_t len, coap_tick_t t) {
  145|    356|  struct tm *tmp;
  146|    356|  size_t lensofar;
  147|    356|  time_t now = coap_ticks_to_rt(t);
  148|    356|  tmp = localtime(&now);
  149|    356|  lensofar = strftime(s, len, "%b %d %H:%M:%S", tmp);
  150|    356|  if (len > lensofar + 4) {
  ------------------
  |  Branch (150:7): [True: 356, False: 0]
  ------------------
  151|    356|    lensofar += snprintf(&s[lensofar], len-lensofar, ".%03u",
  152|    356|                         (unsigned int)((coap_ticks_to_rt_us(t) % 1000000)/1000));
  153|    356|  }
  154|    356|  return lensofar;
  155|    356|}

coap_dtls_is_supported:
  191|      1|coap_dtls_is_supported(void) {
  192|      1|  if (SSLeay() < 0x10100000L) {
  ------------------
  |  Branch (192:7): [True: 0, False: 1]
  ------------------
  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|      1|#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|      1|  if (SSLeay() < 0x10101000L) {
  ------------------
  |  Branch (204:7): [True: 0, False: 1]
  ------------------
  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|      1|#endif /* OPENSSL_VERSION_NUMBER >= 0x10101000L */
  209|      1|  return 1;
  210|      1|}
coap_tls_is_supported:
  213|      2|coap_tls_is_supported(void) {
  214|      2|#if !COAP_DISABLE_TCP
  215|      2|  if (SSLeay() < 0x10100000L) {
  ------------------
  |  Branch (215:7): [True: 0, False: 2]
  ------------------
  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|      2|#if OPENSSL_VERSION_NUMBER >= 0x10101000L
  220|      2|  if (SSLeay() < 0x10101000L) {
  ------------------
  |  Branch (220:7): [True: 0, False: 2]
  ------------------
  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|      2|#endif /* OPENSSL_VERSION_NUMBER >= 0x10101000L */
  225|      2|  return 1;
  226|       |#else /* COAP_DISABLE_TCP */
  227|       |  return 0;
  228|       |#endif /* COAP_DISABLE_TCP */
  229|      2|}

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

coap_ticks:
   90|    356|coap_ticks(coap_tick_t *t) {
   91|    356|  coap_tick_t tmp;
   92|       |
   93|    356|#ifdef COAP_CLOCK
   94|    356|  struct timespec tv;
   95|    356|  clock_gettime(COAP_CLOCK, &tv);
  ------------------
  |  |   43|    356|#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|    356|  tmp = SHR_FP(tv.tv_nsec * Q(FRAC, (COAP_TICKS_PER_SECOND/1000000000.0)), FRAC);
  ------------------
  |  |   87|    356|#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|    356|  *t = tmp + (tv.tv_sec - coap_clock_offset) * COAP_TICKS_PER_SECOND;
  ------------------
  |  |  164|    356|#define COAP_TICKS_PER_SECOND ((coap_tick_t)(1000U))
  ------------------
  120|    356|}
coap_ticks_to_rt:
  123|    356|coap_ticks_to_rt(coap_tick_t t) {
  124|    356|  return coap_clock_offset + (t / COAP_TICKS_PER_SECOND);
  ------------------
  |  |  164|    356|#define COAP_TICKS_PER_SECOND ((coap_tick_t)(1000U))
  ------------------
  125|    356|}
coap_ticks_to_rt_us:
  128|    356|coap_ticks_to_rt_us(coap_tick_t t) {
  129|    356|  return (uint64_t)coap_clock_offset * 1000000 + (uint64_t)t * 1000000 / COAP_TICKS_PER_SECOND;
  ------------------
  |  |  164|    356|#define COAP_TICKS_PER_SECOND ((coap_tick_t)(1000U))
  ------------------
  130|    356|}

coap_split_uri:
  346|    807|coap_split_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri) {
  347|    807|  return coap_split_uri_sub(str_var, len, uri, COAP_URI_CHECK_URI);
  348|    807|}
coap_uri.c:coap_split_uri_sub:
   84|    807|                   coap_uri_check_t check_proxy) {
   85|    807|  const uint8_t *p, *q;
   86|    807|  int res = 0;
   87|    807|  size_t i;
   88|    807|  int is_unix_domain = 0;
   89|    807|  int is_llc = 0;
   90|       |
   91|    807|  if (!str_var || !uri || len == 0)
  ------------------
  |  Branch (91:7): [True: 0, False: 807]
  |  Branch (91:19): [True: 0, False: 807]
  |  Branch (91:27): [True: 0, False: 807]
  ------------------
   92|      0|    return -1;
   93|       |
   94|    807|  memset(uri, 0, sizeof(coap_uri_t));
   95|    807|  uri->port = COAP_DEFAULT_PORT;
  ------------------
  |  |   39|    807|#define COAP_DEFAULT_PORT      5683 /* CoAP default UDP/TCP port */
  ------------------
   96|       |
   97|       |  /* search for scheme */
   98|    807|  p = str_var;
   99|    807|  if (*p == '/') {
  ------------------
  |  Branch (99:7): [True: 75, False: 732]
  ------------------
  100|       |    /* no scheme, host or port */
  101|     75|    if (check_proxy == COAP_URI_CHECK_PROXY) {
  ------------------
  |  Branch (101:9): [True: 0, False: 75]
  ------------------
  102|       |      /* Must have ongoing host if proxy definition */
  103|      0|      return -1;
  104|      0|    }
  105|     75|    q = p;
  106|     75|    goto path;
  107|     75|  }
  108|       |
  109|       |  /* find scheme terminating :// */
  110|  13.0M|  while (len >= 3 && !(p[0] == ':' && p[1] == '/' && p[2] == '/')) {
  ------------------
  |  Branch (110:10): [True: 13.0M, False: 69]
  |  Branch (110:24): [True: 4.22k, False: 13.0M]
  |  Branch (110:39): [True: 1.09k, False: 3.12k]
  |  Branch (110:54): [True: 663, False: 436]
  ------------------
  111|  13.0M|    ++p;
  112|  13.0M|    --len;
  113|  13.0M|  }
  114|    732|  if (len < 3) {
  ------------------
  |  Branch (114:7): [True: 69, False: 663]
  ------------------
  115|       |    /* scheme not defined with a :// terminator */
  116|     69|    res = -2;
  117|     69|    goto error;
  118|     69|  }
  119|  1.78k|  for (i = 0; i < COAP_URI_SCHEME_LAST; i++) {
  ------------------
  |  Branch (119:15): [True: 1.64k, False: 137]
  ------------------
  120|  1.64k|    if ((p - str_var) == (int)strlen(coap_uri_scheme[i].name) &&
  ------------------
  |  Branch (120:9): [True: 660, False: 985]
  ------------------
  121|    660|        memcmp(str_var, coap_uri_scheme[i].name, p - str_var) == 0) {
  ------------------
  |  Branch (121:9): [True: 526, False: 134]
  ------------------
  122|    526|      if (check_proxy != COAP_URI_CHECK_PROXY && coap_uri_scheme[i].proxy_only) {
  ------------------
  |  Branch (122:11): [True: 526, False: 0]
  |  Branch (122:50): [True: 1, False: 525]
  ------------------
  123|      1|        coap_log_err("%.*s URI scheme not enabled (not a proxy)\n",
  ------------------
  |  |  102|      1|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|      1|#define coap_log(level, ...) do { \
  |  |  |  |  291|      1|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 1, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|      1|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|      1|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 1]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  124|      1|                     (int)(p - str_var), str_var);
  125|      1|        return -1;
  126|      1|      }
  127|    525|      uri->scheme = coap_uri_scheme[i].scheme;
  128|    525|      uri->port = coap_uri_scheme[i].port;
  129|    525|      break;
  130|    526|    }
  131|  1.64k|  }
  132|    662|  if (i == COAP_URI_SCHEME_LAST) {
  ------------------
  |  Branch (132:7): [True: 137, False: 525]
  ------------------
  133|       |    /* scheme unknown */
  134|    137|    coap_log_err("%.*s URI scheme unknown\n", (int)(p - str_var), str_var);
  ------------------
  |  |  102|    137|#define coap_log_err(...) coap_log(COAP_LOG_ERR, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|    137|#define coap_log(level, ...) do { \
  |  |  |  |  291|    137|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 137, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|    137|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|    137|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 137]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  135|    137|    res = -1;
  136|    137|    goto error;
  137|    137|  }
  138|    525|  switch (uri->scheme) {
  139|    520|  case COAP_URI_SCHEME_COAP:
  ------------------
  |  Branch (139:3): [True: 520, False: 5]
  ------------------
  140|    520|    break;
  141|      1|  case COAP_URI_SCHEME_COAPS:
  ------------------
  |  Branch (141:3): [True: 1, False: 524]
  ------------------
  142|      1|    if (!coap_dtls_is_supported()) {
  ------------------
  |  Branch (142:9): [True: 0, False: 1]
  ------------------
  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|      1|    break;
  147|      1|  case COAP_URI_SCHEME_COAP_TCP:
  ------------------
  |  Branch (147:3): [True: 1, False: 524]
  ------------------
  148|      1|    if (!coap_tcp_is_supported()) {
  ------------------
  |  Branch (148:9): [True: 0, False: 1]
  ------------------
  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|      1|    break;
  153|      1|  case COAP_URI_SCHEME_COAPS_TCP:
  ------------------
  |  Branch (153:3): [True: 1, False: 524]
  ------------------
  154|      1|    if (!coap_tls_is_supported()) {
  ------------------
  |  Branch (154:9): [True: 0, False: 1]
  ------------------
  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|      1|    break;
  159|      1|  case COAP_URI_SCHEME_COAP_WS:
  ------------------
  |  Branch (159:3): [True: 1, False: 524]
  ------------------
  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|      1|  case COAP_URI_SCHEME_COAPS_WS:
  ------------------
  |  Branch (165:3): [True: 1, False: 524]
  ------------------
  166|      1|    if (!coap_wss_is_supported()) {
  ------------------
  |  Branch (166:9): [True: 0, False: 1]
  ------------------
  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|      1|    break;
  171|      1|  case COAP_URI_SCHEME_HTTP:
  ------------------
  |  Branch (171:3): [True: 0, False: 525]
  ------------------
  172|      0|  case COAP_URI_SCHEME_HTTPS:
  ------------------
  |  Branch (172:3): [True: 0, False: 525]
  ------------------
  173|       |    /* Not proxy, caught above.  For proxy, assume app is doing CoAP <> HTTP mapping. */
  174|      0|    break;
  175|      0|  case COAP_URI_SCHEME_LAST:
  ------------------
  |  Branch (175:3): [True: 0, False: 525]
  ------------------
  176|      0|  default:
  ------------------
  |  Branch (176:3): [True: 0, False: 525]
  ------------------
  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|    525|  }
  180|       |  /* skip :// */
  181|    525|  p += 3;
  182|    525|  len -= 3;
  183|       |
  184|       |  /* p points to beginning of Uri-Host */
  185|    525|  q = p;
  186|       |
  187|    525|  if (len && *p == '[') {
  ------------------
  |  Branch (187:7): [True: 519, False: 6]
  |  Branch (187:14): [True: 58, False: 461]
  ------------------
  188|       |    /* IPv6 address reference or Unix domain */
  189|     58|    ++p;
  190|     58|    ++q;
  191|     58|    --len;
  192|       |
  193|  3.03M|    while (len && *q != ']') {
  ------------------
  |  Branch (193:12): [True: 3.03M, False: 25]
  |  Branch (193:19): [True: 3.03M, False: 33]
  ------------------
  194|  3.03M|      ++q;
  195|  3.03M|      --len;
  196|  3.03M|    }
  197|       |
  198|     58|    if (!len || *q != ']' || p == q) {
  ------------------
  |  Branch (198:9): [True: 25, False: 33]
  |  Branch (198:17): [True: 0, False: 33]
  |  Branch (198:30): [True: 1, False: 32]
  ------------------
  199|     26|      res = -3;
  200|     26|      goto error;
  201|     26|    }
  202|       |
  203|     32|    COAP_SET_STR(&uri->host, q - p, p);
  ------------------
  |  |   52|     32|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  204|     32|    ++q;
  205|     32|    --len;
  206|     32|#if COAP_AF_LLC_SUPPORT
  207|    467|  } else if ((len >= LLC_HOST_LEN) && strncmp((const char *)p, "llc[", 4) == 0) {
  ------------------
  |  |  169|    467|#define LLC_HOST_LEN (4 + HW_ADDRSTRLEN + 4)
  |  |  ------------------
  |  |  |  |  167|    467|#define HW_ADDRSTRLEN 17
  |  |  ------------------
  ------------------
  |  Branch (207:14): [True: 315, False: 152]
  |  Branch (207:39): [True: 168, False: 147]
  ------------------
  208|    168|    unsigned long sap = 0;
  209|       |
  210|    168|    is_llc = 1;
  211|       |
  212|  2.01M|    while (len && *q != ']') {
  ------------------
  |  Branch (212:12): [True: 2.01M, False: 9]
  |  Branch (212:19): [True: 2.01M, False: 159]
  ------------------
  213|  2.01M|      ++q;
  214|  2.01M|      --len;
  215|  2.01M|    }
  216|       |
  217|    168|    if (!len || *q != ']' || p == q) {
  ------------------
  |  Branch (217:9): [True: 9, False: 159]
  |  Branch (217:17): [True: 0, False: 159]
  |  Branch (217:30): [True: 0, False: 159]
  ------------------
  218|      9|      res = -7;
  219|      9|      goto error;
  220|      9|    }
  221|       |
  222|    159|    ++q;
  223|    159|    --len;
  224|       |
  225|    159|    if (!len || *q != ':') {
  ------------------
  |  Branch (225:9): [True: 17, False: 142]
  |  Branch (225:17): [True: 13, False: 129]
  ------------------
  226|     30|      coap_log_warn("LLC SAP missing in URI\n");
  ------------------
  |  |  108|     30|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     30|#define coap_log(level, ...) do { \
  |  |  |  |  291|     30|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 30, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|     30|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     30|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 30]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  227|     30|      res = -7;
  228|     30|      goto error;
  229|     30|    }
  230|       |
  231|    129|    ++q;
  232|    129|    --len;
  233|       |
  234|  3.08k|    while (len && isxdigit(*q)) {
  ------------------
  |  Branch (234:12): [True: 3.05k, False: 32]
  |  Branch (234:19): [True: 2.96k, False: 97]
  ------------------
  235|  2.96k|      if (*q >= 'a' && *q <= 'f')
  ------------------
  |  Branch (235:11): [True: 802, False: 2.15k]
  |  Branch (235:24): [True: 802, False: 0]
  ------------------
  236|    802|        sap = sap * 16 + (*q - 'a' + 10);
  237|  2.15k|      else if (*q >= 'A' && *q <= 'F')
  ------------------
  |  Branch (237:16): [True: 896, False: 1.26k]
  |  Branch (237:29): [True: 896, False: 0]
  ------------------
  238|    896|        sap = sap * 16 + (*q - 'A' + 10);
  239|       |
  240|  2.96k|      ++q;
  241|  2.96k|      --len;
  242|  2.96k|    }
  243|       |
  244|    129|    if (sap > UINT8_MAX) {
  ------------------
  |  Branch (244:9): [True: 105, False: 24]
  ------------------
  245|    105|      coap_log_warn("LLC SAP invalid (%lu > 255)\n", sap);
  ------------------
  |  |  108|    105|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|    105|#define coap_log(level, ...) do { \
  |  |  |  |  291|    105|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 105, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|    105|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|    105|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 105]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  246|    105|      res = -7;
  247|    105|      goto error;
  248|    105|    }
  249|       |
  250|     24|    COAP_SET_STR(&uri->host, q - p, p);
  ------------------
  |  |   52|     24|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  251|     24|#endif /* COAP_AF_LLC_SUPPORT */
  252|    299|  } else {
  253|       |    /* IPv4 address, FQDN or Unix domain socket */
  254|    299|    if (len >= 3 && p[0] == '%' && p[1] == '2' &&
  ------------------
  |  Branch (254:9): [True: 265, False: 34]
  |  Branch (254:21): [True: 44, False: 221]
  |  Branch (254:36): [True: 26, False: 18]
  ------------------
  255|     26|        (p[2] == 'F' || p[2] == 'f')) {
  ------------------
  |  Branch (255:10): [True: 1, False: 25]
  |  Branch (255:25): [True: 2, False: 23]
  ------------------
  256|       |      /* Unix domain definition */
  257|      3|      uri->port = 0;
  258|      3|      is_unix_domain = 1;
  259|      3|    }
  260|  4.72M|    while (len && *q != ':' && *q != '/' && *q != '?') {
  ------------------
  |  Branch (260:12): [True: 4.72M, False: 119]
  |  Branch (260:19): [True: 4.72M, False: 168]
  |  Branch (260:32): [True: 4.72M, False: 9]
  |  Branch (260:45): [True: 4.72M, False: 3]
  ------------------
  261|  4.72M|      ++q;
  262|  4.72M|      --len;
  263|  4.72M|    }
  264|       |
  265|    299|    if (p == q) {
  ------------------
  |  Branch (265:9): [True: 9, False: 290]
  ------------------
  266|      9|      res = -3;
  267|      9|      goto error;
  268|      9|    }
  269|       |
  270|    290|    if ((int)(q - p) > 255) {
  ------------------
  |  Branch (270:9): [True: 31, False: 259]
  ------------------
  271|     31|      coap_log_warn("Host name length too long (%d > 255)\n", (int)(q - p));
  ------------------
  |  |  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: 31, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|     31|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     31|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 31]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  272|     31|      res = -6;
  273|     31|      goto error;
  274|     31|    }
  275|       |
  276|    259|    COAP_SET_STR(&uri->host, q - p, p);
  ------------------
  |  |   52|    259|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  277|    259|  }
  278|       |
  279|       |  /* check for Uri-Port (invalid for Unix) */
  280|    315|  if (len && *q == ':') {
  ------------------
  |  Branch (280:7): [True: 206, False: 109]
  |  Branch (280:14): [True: 168, False: 38]
  ------------------
  281|    168|    if (is_unix_domain || is_llc) {
  ------------------
  |  Branch (281:9): [True: 1, False: 167]
  |  Branch (281:27): [True: 1, False: 166]
  ------------------
  282|      2|      res = -5;
  283|      2|      goto error;
  284|      2|    }
  285|    166|    p = ++q;
  286|    166|    --len;
  287|       |
  288|  1.65M|    while (len && isdigit(*q)) {
  ------------------
  |  Branch (288:12): [True: 1.65M, False: 84]
  |  Branch (288:19): [True: 1.65M, False: 82]
  ------------------
  289|  1.65M|      ++q;
  290|  1.65M|      --len;
  291|  1.65M|    }
  292|       |
  293|    166|    if (p < q) {                /* explicit port number given */
  ------------------
  |  Branch (293:9): [True: 122, False: 44]
  ------------------
  294|    122|      long uri_port = 0;
  295|       |
  296|   511k|      while ((p < q) && (uri_port <= UINT16_MAX))
  ------------------
  |  Branch (296:14): [True: 511k, False: 89]
  |  Branch (296:25): [True: 511k, False: 33]
  ------------------
  297|   511k|        uri_port = uri_port * 10 + (*p++ - '0');
  298|       |
  299|       |      /* check if port number is in allowed range */
  300|    122|      if (uri_port > UINT16_MAX) {
  ------------------
  |  Branch (300:11): [True: 52, False: 70]
  ------------------
  301|     52|        coap_log_warn("Port number too big (%ld > 65535)\n", uri_port);
  ------------------
  |  |  108|     52|#define coap_log_warn(...) coap_log(COAP_LOG_WARN, __VA_ARGS__)
  |  |  ------------------
  |  |  |  |  290|     52|#define coap_log(level, ...) do { \
  |  |  |  |  291|     52|    if ((level) < (coap_get_log_level() + 1)) \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (291:9): [True: 52, False: 0]
  |  |  |  |  ------------------
  |  |  |  |  292|     52|      coap_log_impl((level), __VA_ARGS__); \
  |  |  |  |  293|     52|  } while(0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (293:11): [Folded, False: 52]
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  302|     52|        res = -4;
  303|     52|        goto error;
  304|     52|      }
  305|       |
  306|     70|      uri->port = (uint16_t)uri_port;
  307|     70|    }
  308|    166|  }
  309|       |
  310|    336|path:                 /* at this point, p must point to an absolute path */
  311|       |
  312|    336|  if (!len)
  ------------------
  |  Branch (312:7): [True: 154, False: 182]
  ------------------
  313|    154|    goto end;
  314|       |
  315|    182|  if (*q == '/') {
  ------------------
  |  Branch (315:7): [True: 96, False: 86]
  ------------------
  316|     96|    p = ++q;
  317|     96|    --len;
  318|       |
  319|  7.40M|    while (len && *q != '?') {
  ------------------
  |  Branch (319:12): [True: 7.40M, False: 65]
  |  Branch (319:19): [True: 7.40M, False: 31]
  ------------------
  320|  7.40M|      ++q;
  321|  7.40M|      --len;
  322|  7.40M|    }
  323|       |
  324|     96|    if (p < q) {
  ------------------
  |  Branch (324:9): [True: 66, False: 30]
  ------------------
  325|     66|      COAP_SET_STR(&uri->path, q - p, p);
  ------------------
  |  |   52|     66|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  326|     66|      p = q;
  327|     66|    }
  328|     96|  }
  329|       |
  330|       |  /* Uri_Query */
  331|    182|  if (len && *p == '?') {
  ------------------
  |  Branch (331:7): [True: 117, False: 65]
  |  Branch (331:14): [True: 31, False: 86]
  ------------------
  332|     31|    ++p;
  333|     31|    --len;
  334|     31|    COAP_SET_STR(&uri->query, len, p);
  ------------------
  |  |   52|     31|#define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
  ------------------
  335|     31|    len = 0;
  336|     31|  }
  337|       |
  338|    336|end:
  339|    336|  return len ? -1 : 0;
  ------------------
  |  Branch (339:10): [True: 86, False: 250]
  ------------------
  340|       |
  341|    470|error:
  342|    470|  return res;
  343|    182|}

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|      1|coap_wss_is_supported(void) {
   44|      1|  return coap_tls_is_supported();
   45|      1|}

LLVMFuzzerTestOneInput:
    4|    807|LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
    5|    807|  coap_uri_t uri;
    6|    807|  coap_split_uri(data, size, &uri);
    7|    807|  return 0;
    8|    807|}

