fuzz_early_setup:
   23|      2|void fuzz_early_setup(void) {
   24|       |    /* Set stderr to point to normal stderr by default */
   25|      2|    fuzz.fake_stderr = stderr;
   26|      2|}
fuzz_common_setup:
   28|      1|void fuzz_common_setup(void) {
   29|      1|	disallow_core();
   30|      1|    fuzz.fuzzing = 1;
   31|      1|    fuzz.wrapfds = 1;
   32|      1|    fuzz.do_jmp = 1;
   33|      1|    fuzz.input = m_malloc(sizeof(buffer));
   34|      1|    _dropbear_log = fuzz_dropbear_log;
   35|      1|    crypto_init();
   36|      1|    fuzz_seed("start", 5);
   37|       |    /* let any messages get flushed */
   38|      1|    setlinebuf(stdout);
   39|       |#if DEBUG_TRACE
   40|       |    if (debug_trace)
   41|       |    {
   42|       |        fprintf(stderr, "Dropbear fuzzer: -v specified, not disabling stderr output\n");
   43|       |    }
   44|       |    else
   45|       |#endif
   46|      1|    if (getenv("DROPBEAR_KEEP_STDERR")) {
  ------------------
  |  Branch (46:9): [True: 0, False: 1]
  ------------------
   47|      0|        fprintf(stderr, "Dropbear fuzzer: DROPBEAR_KEEP_STDERR, not disabling stderr output\n");
   48|      0|    } 
   49|      1|    else 
   50|      1|    {
   51|      1|        fprintf(stderr, "Dropbear fuzzer: Disabling stderr output\n");
   52|      1|        fuzz.fake_stderr = fopen("/dev/null", "w");
   53|      1|        assert(fuzz.fake_stderr);
   54|      1|    }
   55|      1|}
fuzz_set_input:
   57|  1.55k|int fuzz_set_input(const uint8_t *Data, size_t Size) {
   58|       |
   59|  1.55k|    fuzz.input->data = (unsigned char*)Data;
   60|  1.55k|    fuzz.input->size = Size;
   61|  1.55k|    fuzz.input->len = Size;
   62|  1.55k|    fuzz.input->pos = 0;
   63|       |
   64|  1.55k|    memset(&ses, 0x0, sizeof(ses));
   65|  1.55k|    memset(&svr_ses, 0x0, sizeof(svr_ses));
   66|  1.55k|    memset(&cli_ses, 0x0, sizeof(cli_ses));
   67|  1.55k|    wrapfd_setup(fuzz.input);
   68|       |    // printhex("input", fuzz.input->data, fuzz.input->len);
   69|       |
   70|  1.55k|    fuzz_seed(fuzz.input->data, MIN(fuzz.input->len, 16));
   71|       |
   72|  1.55k|    return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  1.55k|#define DROPBEAR_SUCCESS 0
  ------------------
   73|  1.55k|}
fuzz_svr_setup:
   89|      1|void fuzz_svr_setup(void) {
   90|      1|    fuzz_common_setup();
   91|       |    
   92|      1|    _dropbear_exit = svr_dropbear_exit;
   93|       |
   94|      1|    char *argv[] = { 
   95|      1|		"dropbear",
   96|      1|        "-E", 
   97|      1|    };
   98|       |
   99|      1|    int argc = sizeof(argv) / sizeof(*argv);
  100|      1|    svr_getopts(argc, argv);
  101|       |
  102|      1|    load_fixed_hostkeys();
  103|      1|}
fuzz_svr_hook_preloop:
  105|  1.55k|void fuzz_svr_hook_preloop() {
  106|  1.55k|    if (fuzz.svr_postauth) {
  ------------------
  |  Branch (106:9): [True: 1.55k, False: 0]
  ------------------
  107|  1.55k|        ses.authstate.authdone = 1;
  108|  1.55k|        fill_passwd("root");
  109|  1.55k|    }
  110|  1.55k|}
fuzz_kex_fakealgos:
  197|  8.85k|void fuzz_kex_fakealgos(void) {
  198|  8.85k|    ses.newkeys->recv.crypt_mode = &dropbear_mode_none;
  199|  8.85k|    ses.newkeys->recv.algo_mac = &dropbear_nohash;
  200|  8.85k|}
fuzz_get_socket_address:
  203|  7.20k|                        char **remote_host, char **remote_port, int UNUSED(host_lookup)) {
  204|  7.20k|    if (local_host) {
  ------------------
  |  Branch (204:9): [True: 4.08k, False: 3.11k]
  ------------------
  205|  4.08k|        *local_host = m_strdup("fuzzlocalhost");
  206|  4.08k|    }
  207|  7.20k|    if (local_port) {
  ------------------
  |  Branch (207:9): [True: 4.08k, False: 3.11k]
  ------------------
  208|  4.08k|        *local_port = m_strdup("1234");
  209|  4.08k|    }
  210|  7.20k|    if (remote_host) {
  ------------------
  |  Branch (210:9): [True: 7.20k, False: 0]
  ------------------
  211|  7.20k|        *remote_host = m_strdup("fuzzremotehost");
  212|  7.20k|    }
  213|  7.20k|    if (remote_port) {
  ------------------
  |  Branch (213:9): [True: 5.64k, False: 1.55k]
  ------------------
  214|  5.64k|        *remote_port = m_strdup("9876");
  215|  5.64k|    }
  216|  7.20k|}
fuzz_fake_send_kexdh_reply:
  219|  8.68k|void fuzz_fake_send_kexdh_reply(void) {
  220|  8.68k|    assert(!ses.dh_K);
  221|  8.68k|    m_mp_alloc_init_multi(&ses.dh_K, NULL);
  222|  8.68k|    mp_set_ul(ses.dh_K, 12345678uL);
  223|  8.68k|    finish_kexhashbuf();
  224|  8.68k|}
fuzz_spawn_command:
  227|  3.05k|int fuzz_spawn_command(int *ret_writefd, int *ret_readfd, int *ret_errfd, pid_t *ret_pid) {
  228|  3.05k|    *ret_writefd = wrapfd_new_dummy();
  229|  3.05k|    *ret_readfd = wrapfd_new_dummy();
  230|  3.05k|    if (ret_errfd) {
  ------------------
  |  Branch (230:9): [True: 3.05k, False: 0]
  ------------------
  231|  3.05k|        *ret_errfd = wrapfd_new_dummy();
  232|  3.05k|    }
  233|  3.05k|    if (*ret_writefd == -1 || *ret_readfd == -1 || (ret_errfd && *ret_errfd == -1)) {
  ------------------
  |  Branch (233:9): [True: 0, False: 3.05k]
  |  Branch (233:31): [True: 0, False: 3.05k]
  |  Branch (233:53): [True: 3.05k, False: 0]
  |  Branch (233:66): [True: 0, False: 3.05k]
  ------------------
  234|      0|        m_close(*ret_writefd);
  235|      0|        m_close(*ret_readfd);
  236|      0|        if (ret_errfd) {
  ------------------
  |  Branch (236:13): [True: 0, False: 0]
  ------------------
  237|      0|            m_close(*ret_errfd);
  238|      0|        }
  239|      0|        return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  240|  3.05k|    } else {
  241|  3.05k|        *ret_pid = 999;
  242|  3.05k|        return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  3.05k|#define DROPBEAR_SUCCESS 0
  ------------------
  243|       |
  244|  3.05k|    }
  245|  3.05k|}
fuzz_dropbear_listen:
  257|    902|        int *UNUSED(socks), unsigned int UNUSED(sockcount), char **errstring, int *UNUSED(maxfd)) {
  258|    902|    if (errstring) {
  ------------------
  |  Branch (258:9): [True: 902, False: 0]
  ------------------
  259|    902|        *errstring = m_strdup("fuzzing can't listen (yet)");
  260|    902|    }
  261|    902|    return -1;
  262|    902|}
fuzz_run_server:
  264|  1.55k|int fuzz_run_server(const uint8_t *Data, size_t Size, int skip_kexmaths, int postauth) {
  265|  1.55k|    static int once = 0;
  266|  1.55k|    if (!once) {
  ------------------
  |  Branch (266:9): [True: 1, False: 1.55k]
  ------------------
  267|      1|        fuzz_svr_setup();
  268|      1|        fuzz.skip_kexmaths = skip_kexmaths;
  269|      1|        once = 1;
  270|      1|    }
  271|       |
  272|  1.55k|    fuzz.svr_postauth = postauth;
  273|       |
  274|  1.55k|    if (fuzz_set_input(Data, Size) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|  1.55k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (274:9): [True: 0, False: 1.55k]
  ------------------
  275|      0|        return 0;
  276|      0|    }
  277|       |
  278|  1.55k|    uint32_t wrapseed;
  279|  1.55k|    genrandom((void*)&wrapseed, sizeof(wrapseed));
  280|  1.55k|    wrapfd_setseed(wrapseed);
  281|       |
  282|  1.55k|    int fakesock = wrapfd_new_fuzzinput();
  283|       |
  284|  1.55k|    m_malloc_set_epoch(1);
  285|  1.55k|    fuzz.do_jmp = 1;
  286|  1.55k|    if (setjmp(fuzz.jmp) == 0) {
  ------------------
  |  Branch (286:9): [True: 1.55k, False: 0]
  ------------------
  287|  1.55k|        svr_session(fakesock, fakesock);
  288|      0|        m_malloc_free_epoch(1, 0);
  289|      0|    } else {
  290|      0|        fuzz.do_jmp = 0;
  291|      0|        m_malloc_free_epoch(1, 1);
  292|      0|        TRACE(("dropbear_exit longjmped"))
  293|       |        /* dropbear_exit jumped here */
  294|      0|    }
  295|       |
  296|      0|    return 0;
  297|  1.55k|}
fuzz_dump:
  345|   103k|void fuzz_dump(const unsigned char* data, size_t len) {
  346|   103k|    if (fuzz.dumping) {
  ------------------
  |  Branch (346:9): [True: 0, False: 103k]
  ------------------
  347|      0|        TRACE(("dump %zu", len))
  348|      0|        assert(atomicio(vwrite, fuzz.recv_dumpfd, (void*)data, len) == len);
  349|      0|    }
  350|   103k|}
fuzz_getpwnam:
  373|  1.55k|struct passwd* fuzz_getpwnam(const char *login) {
  374|  1.55k|    if (!fuzz.fuzzing) {
  ------------------
  |  Branch (374:9): [True: 0, False: 1.55k]
  ------------------
  375|      0|        return getpwnam(login);
  376|      0|    }
  377|  1.55k|    if (strcmp(login, pwd_other.pw_name) == 0) {
  ------------------
  |  Branch (377:9): [True: 0, False: 1.55k]
  ------------------
  378|      0|        return &pwd_other;
  379|      0|    }
  380|  1.55k|    if (strcmp(login, pwd_root.pw_name) == 0) {
  ------------------
  |  Branch (380:9): [True: 1.55k, False: 0]
  ------------------
  381|  1.55k|        return &pwd_root;
  382|  1.55k|    }
  383|      0|    return NULL;
  384|  1.55k|}
fuzz-common.c:fuzz_dropbear_log:
   84|  3.48k|static void fuzz_dropbear_log(int UNUSED(priority), const char* UNUSED(format), va_list UNUSED(param)) {
   85|       |    /* No print */
   86|  3.48k|}
fuzz-common.c:load_fixed_hostkeys:
  153|      1|static void load_fixed_hostkeys(void) {
  154|       |
  155|      1|    buffer *b = buf_new(3000);
  156|      1|    enum signkey_type type;
  157|       |
  158|      1|    TRACE(("load fixed hostkeys"))
  159|       |
  160|      1|    svr_opts.hostkey = new_sign_key();
  161|       |
  162|      1|    buf_setlen(b, 0);
  163|      1|    buf_putbytes(b, keyr, keyr_len);
  164|      1|    buf_setpos(b, 0);
  165|      1|    type = DROPBEAR_SIGNKEY_RSA;
  166|      1|    if (buf_get_priv_key(b, svr_opts.hostkey, &type) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (166:9): [True: 0, False: 1]
  ------------------
  167|      0|        dropbear_exit("failed fixed rsa hostkey");
  168|      0|    }
  169|       |
  170|      1|    buf_setlen(b, 0);
  171|      1|    buf_putbytes(b, keyd, keyd_len);
  172|      1|    buf_setpos(b, 0);
  173|      1|    type = DROPBEAR_SIGNKEY_DSS;
  174|      1|    if (buf_get_priv_key(b, svr_opts.hostkey, &type) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (174:9): [True: 0, False: 1]
  ------------------
  175|      0|        dropbear_exit("failed fixed dss hostkey");
  176|      0|    }
  177|       |
  178|      1|    buf_setlen(b, 0);
  179|      1|    buf_putbytes(b, keye, keye_len);
  180|      1|    buf_setpos(b, 0);
  181|      1|    type = DROPBEAR_SIGNKEY_ECDSA_NISTP256;
  182|      1|    if (buf_get_priv_key(b, svr_opts.hostkey, &type) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (182:9): [True: 0, False: 1]
  ------------------
  183|      0|        dropbear_exit("failed fixed ecdsa hostkey");
  184|      0|    }
  185|       |
  186|      1|    buf_setlen(b, 0);
  187|      1|    buf_putbytes(b, keyed25519, keyed25519_len);
  188|      1|    buf_setpos(b, 0);
  189|      1|    type = DROPBEAR_SIGNKEY_ED25519;
  190|      1|    if (buf_get_priv_key(b, svr_opts.hostkey, &type) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (190:9): [True: 0, False: 1]
  ------------------
  191|      0|        dropbear_exit("failed fixed ed25519 hostkey");
  192|      0|    }
  193|       |
  194|      1|    buf_free(b);
  195|      1|}

fuzz-sshpacketmutator.c:alloc_static_buffers:
  126|      2|static void alloc_static_buffers() {
  127|       |
  128|      2|    int i;
  129|      2|    oup = buf_new(MAX_OUT_SIZE);
  130|      2|    alloc_packetA = buf_new(RECV_MAX_PACKET_LEN);
  ------------------
  |  |  215|      2|#define RECV_MAX_PACKET_LEN (MAX(35000, ((RECV_MAX_PAYLOAD_LEN)+100)))
  ------------------
  131|      2|    alloc_packetB = buf_new(RECV_MAX_PACKET_LEN);
  ------------------
  |  |  215|      2|#define RECV_MAX_PACKET_LEN (MAX(35000, ((RECV_MAX_PAYLOAD_LEN)+100)))
  ------------------
  132|       |
  133|  1.00k|    for (i = 0; i < MAX_FUZZ_PACKETS; i++) {
  ------------------
  |  |   20|  1.00k|#define MAX_FUZZ_PACKETS 500
  ------------------
  |  Branch (133:17): [True: 1.00k, False: 2]
  ------------------
  134|  1.00k|        packets1[i] = buf_new(RECV_MAX_PACKET_LEN);
  ------------------
  |  |  215|  1.00k|#define RECV_MAX_PACKET_LEN (MAX(35000, ((RECV_MAX_PAYLOAD_LEN)+100)))
  ------------------
  135|  1.00k|    }
  136|  1.00k|    for (i = 0; i < MAX_FUZZ_PACKETS; i++) {
  ------------------
  |  |   20|  1.00k|#define MAX_FUZZ_PACKETS 500
  ------------------
  |  Branch (136:17): [True: 1.00k, False: 2]
  ------------------
  137|  1.00k|        packets2[i] = buf_new(RECV_MAX_PACKET_LEN);
  ------------------
  |  |  215|  1.00k|#define RECV_MAX_PACKET_LEN (MAX(35000, ((RECV_MAX_PAYLOAD_LEN)+100)))
  ------------------
  138|  1.00k|    }
  139|      2|}

wrapfd_setup:
   32|  1.55k|void wrapfd_setup(buffer *buf) {
   33|  1.55k|	TRACE(("wrapfd_setup"))
   34|       |
   35|       |	// clean old ones
   36|  1.55k|	int i;
   37|  16.0k|	for (i = 0; i <= wrapfd_maxfd; i++) {
  ------------------
  |  Branch (37:14): [True: 14.4k, False: 1.55k]
  ------------------
   38|  14.4k|		if (wrap_fds[i].mode != UNUSED) {
  ------------------
  |  Branch (38:7): [True: 474, False: 14.0k]
  ------------------
   39|    474|			wrapfd_remove(i);
   40|    474|		}
   41|  14.4k|	}
   42|  1.55k|	wrapfd_maxfd = -1;
   43|       |
   44|  1.55k|	memset(rand_state, 0x0, sizeof(rand_state));
   45|  1.55k|	wrapfd_setseed(50);
   46|  1.55k|	input_buf = buf;
   47|  1.55k|}
wrapfd_setseed:
   49|  3.11k|void wrapfd_setseed(uint32_t seed) {
   50|  3.11k|	memcpy(rand_state, &seed, sizeof(seed));
   51|  3.11k|	nrand48(rand_state);
   52|  3.11k|}
wrapfd_new_fuzzinput:
   54|  1.55k|int wrapfd_new_fuzzinput() {
   55|  1.55k|	if (devnull_fd == -1) {
  ------------------
  |  Branch (55:6): [True: 1, False: 1.55k]
  ------------------
   56|      1|		devnull_fd = open("/dev/null", O_RDONLY);
   57|      1|		assert(devnull_fd != -1);
   58|      1|	}
   59|       |
   60|  1.55k|	int fd = dup(devnull_fd);
   61|  1.55k|	assert(fd != -1);
   62|  1.55k|	assert(wrap_fds[fd].mode == UNUSED);
   63|  1.55k|	wrap_fds[fd].mode = COMMONBUF;
   64|  1.55k|	wrap_fds[fd].closein = 0;
   65|  1.55k|	wrap_fds[fd].closeout = 0;
   66|  1.55k|	wrapfd_maxfd = MAX(fd, wrapfd_maxfd);
   67|       |
   68|  1.55k|	return fd;
   69|  1.55k|}
wrapfd_new_dummy:
   71|  9.17k|int wrapfd_new_dummy() {
   72|  9.17k|	if (devnull_fd == -1) {
  ------------------
  |  Branch (72:6): [True: 0, False: 9.17k]
  ------------------
   73|      0|		devnull_fd = open("/dev/null", O_RDONLY);
   74|      0|		assert(devnull_fd != -1);
   75|      0|	}
   76|       |
   77|  9.17k|	int fd = dup(devnull_fd);
   78|  9.17k|	if (fd == -1) {
  ------------------
  |  Branch (78:6): [True: 0, False: 9.17k]
  ------------------
   79|      0|		return -1;
   80|      0|	}
   81|  9.17k|	if (fd > IOWRAP_MAXFD) {
  ------------------
  |  |    9|  9.17k|#define IOWRAP_MAXFD (FD_SETSIZE-1)
  ------------------
  |  Branch (81:6): [True: 0, False: 9.17k]
  ------------------
   82|      0|		close(fd);
   83|      0|		errno = EMFILE;
   84|      0|		return -1;
   85|      0|	}
   86|  9.17k|	assert(wrap_fds[fd].mode == UNUSED);
   87|  9.17k|	wrap_fds[fd].mode = DUMMY;
   88|  9.17k|	wrap_fds[fd].closein = 0;
   89|  9.17k|	wrap_fds[fd].closeout = 0;
   90|  9.17k|	wrapfd_maxfd = MAX(fd, wrapfd_maxfd);
   91|       |
   92|  9.17k|	return fd;
   93|  9.17k|}
wrapfd_close:
  105|  10.2k|int wrapfd_close(int fd) {
  106|  10.2k|	if (fd >= 0 && fd <= IOWRAP_MAXFD && wrap_fds[fd].mode != UNUSED) {
  ------------------
  |  |    9|  20.5k|#define IOWRAP_MAXFD (FD_SETSIZE-1)
  ------------------
  |  Branch (106:6): [True: 10.2k, False: 0]
  |  Branch (106:17): [True: 10.2k, False: 0]
  |  Branch (106:39): [True: 10.2k, False: 0]
  ------------------
  107|  10.2k|		wrapfd_remove(fd);
  108|  10.2k|		return 0;
  109|  10.2k|	} else {
  110|      0|		return close(fd);
  111|      0|	}
  112|  10.2k|}
wrapfd_read:
  114|   618k|int wrapfd_read(int fd, void *out, size_t count) {
  115|   618k|	size_t maxread;
  116|       |
  117|   618k|	if (!fuzz.wrapfds) {
  ------------------
  |  Branch (117:6): [True: 0, False: 618k]
  ------------------
  118|      0|		return read(fd, out, count);
  119|      0|	}
  120|       |
  121|   618k|	if (fd < 0 || fd > IOWRAP_MAXFD || wrap_fds[fd].mode == UNUSED) {
  ------------------
  |  |    9|  1.23M|#define IOWRAP_MAXFD (FD_SETSIZE-1)
  ------------------
  |  Branch (121:6): [True: 0, False: 618k]
  |  Branch (121:16): [True: 0, False: 618k]
  |  Branch (121:37): [True: 0, False: 618k]
  ------------------
  122|       |		/* XXX - assertion failure? */
  123|      0|		TRACE(("Bad read descriptor %d\n", fd))
  124|      0|		errno = EBADF;
  125|      0|		return -1;
  126|      0|	}
  127|       |
  128|   618k|	assert(count != 0);
  129|       |
  130|   618k|	if (wrap_fds[fd].closein || erand48(rand_state) < CHANCE_CLOSE) {
  ------------------
  |  Branch (130:6): [True: 0, False: 618k]
  |  Branch (130:30): [True: 330, False: 618k]
  ------------------
  131|    330|		wrap_fds[fd].closein = 1;
  132|    330|		errno = ECONNRESET;
  133|    330|		return -1;
  134|    330|	}
  135|       |
  136|   618k|	if (erand48(rand_state) < CHANCE_INTR) {
  ------------------
  |  Branch (136:6): [True: 779, False: 617k]
  ------------------
  137|    779|		errno = EINTR;
  138|    779|		return -1;
  139|    779|	}
  140|       |
  141|   617k|	if (input_buf && wrap_fds[fd].mode == COMMONBUF) {
  ------------------
  |  Branch (141:6): [True: 617k, False: 0]
  |  Branch (141:19): [True: 397k, False: 219k]
  ------------------
  142|   397k|		maxread = MIN(input_buf->len - input_buf->pos, count);
  143|       |		/* returns 0 if buf is EOF, as intended */
  144|   397k|		if (maxread > 0) {
  ------------------
  |  Branch (144:7): [True: 396k, False: 1.08k]
  ------------------
  145|   396k|			maxread = nrand48(rand_state) % maxread + 1;
  146|   396k|		}
  147|   397k|		memcpy(out, buf_getptr(input_buf, maxread), maxread);
  148|   397k|		buf_incrpos(input_buf, maxread);
  149|   397k|		return maxread;
  150|   397k|	}
  151|       |
  152|       |	// return fixed output, of random length
  153|   219k|	maxread = MIN(MAX_RANDOM_IN, count);
  154|   219k|	maxread = nrand48(rand_state) % maxread + 1;
  155|   219k|	memset(out, 0xef, maxread);
  156|   219k|	return maxread;
  157|   617k|}
wrapfd_select:
  196|   549k|	fd_set *exceptfds, struct timeval *timeout) {
  197|   549k|	int i, nset, sel;
  198|   549k|	int ret = 0;
  199|   549k|	int fdlist[IOWRAP_MAXFD+1];
  200|       |
  201|   549k|	if (!fuzz.wrapfds) {
  ------------------
  |  Branch (201:6): [True: 0, False: 549k]
  ------------------
  202|      0|		return select(nfds, readfds, writefds, exceptfds, timeout);
  203|      0|	}
  204|       |
  205|   549k|	assert(nfds <= IOWRAP_MAXFD+1);
  206|       |
  207|   549k|	if (erand48(rand_state) < CHANCE_INTR) {
  ------------------
  |  Branch (207:6): [True: 687, False: 549k]
  ------------------
  208|    687|		errno = EINTR;
  209|    687|		return -1;
  210|    687|	}
  211|       |
  212|       |	/* read */
  213|   549k|	if (readfds != NULL && erand48(rand_state) < CHANCE_READ1) {
  ------------------
  |  Branch (213:6): [True: 549k, False: 0]
  |  Branch (213:25): [True: 522k, False: 26.4k]
  ------------------
  214|  7.68M|		for (i = 0, nset = 0; i < nfds; i++) {
  ------------------
  |  Branch (214:25): [True: 7.15M, False: 522k]
  ------------------
  215|  7.15M|			if (FD_ISSET(i, readfds)) {
  216|  1.59M|				assert(wrap_fds[i].mode != UNUSED);
  217|  1.59M|				fdlist[nset] = i;
  218|  1.59M|				nset++;
  219|  1.59M|			}
  220|  7.15M|		}
  221|   522k|		DROPBEAR_FD_ZERO(readfds);
  ------------------
  |  |  104|   522k|#define DROPBEAR_FD_ZERO(fds) FD_ZERO(fds)
  ------------------
  222|       |
  223|   522k|		if (nset > 0) {
  ------------------
  |  Branch (223:7): [True: 461k, False: 61.4k]
  ------------------
  224|       |			/* set one */
  225|   461k|			sel = fdlist[nrand48(rand_state) % nset];
  226|   461k|			FD_SET(sel, readfds);
  227|   461k|			ret++;
  228|       |
  229|   461k|			if (erand48(rand_state) < CHANCE_READ2) {
  ------------------
  |  Branch (229:8): [True: 229k, False: 232k]
  ------------------
  230|   229k|				sel = fdlist[nrand48(rand_state) % nset];
  231|   229k|				if (!FD_ISSET(sel, readfds)) {
  ------------------
  |  Branch (231:9): [True: 64.9k, False: 164k]
  ------------------
  232|  64.9k|					FD_SET(sel, readfds);
  233|  64.9k|					ret++;
  234|  64.9k|				}
  235|   229k|			}
  236|   461k|		}
  237|   522k|	}
  238|       |
  239|       |	/* write */
  240|   549k|	if (writefds != NULL && erand48(rand_state) < CHANCE_WRITE1) {
  ------------------
  |  Branch (240:6): [True: 503k, False: 45.3k]
  |  Branch (240:26): [True: 482k, False: 21.5k]
  ------------------
  241|  7.35M|		for (i = 0, nset = 0; i < nfds; i++) {
  ------------------
  |  Branch (241:25): [True: 6.87M, False: 482k]
  ------------------
  242|  6.87M|			if (FD_ISSET(i, writefds)) {
  243|   199k|				assert(wrap_fds[i].mode != UNUSED);
  244|   199k|				fdlist[nset] = i;
  245|   199k|				nset++;
  246|   199k|			}
  247|  6.87M|		}
  248|   482k|		DROPBEAR_FD_ZERO(writefds);
  ------------------
  |  |  104|   482k|#define DROPBEAR_FD_ZERO(fds) FD_ZERO(fds)
  ------------------
  249|       |
  250|       |		/* set one */
  251|   482k|		if (nset > 0) {
  ------------------
  |  Branch (251:7): [True: 199k, False: 283k]
  ------------------
  252|   199k|			sel = fdlist[nrand48(rand_state) % nset];
  253|   199k|			FD_SET(sel, writefds);
  254|   199k|			ret++;
  255|       |
  256|   199k|			if (erand48(rand_state) < CHANCE_WRITE2) {
  ------------------
  |  Branch (256:8): [True: 98.4k, False: 100k]
  ------------------
  257|  98.4k|				sel = fdlist[nrand48(rand_state) % nset];
  258|  98.4k|				if (!FD_ISSET(sel, writefds)) {
  ------------------
  |  Branch (258:9): [True: 0, False: 98.4k]
  ------------------
  259|      0|					FD_SET(sel, writefds);
  260|      0|					ret++;
  261|      0|				}
  262|  98.4k|			}
  263|   199k|		}
  264|   482k|	}
  265|   549k|	return ret;
  266|   549k|}
fuzz_kill:
  268|    313|int fuzz_kill(pid_t pid, int sig) {
  269|    313|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (269:6): [True: 313, False: 0]
  ------------------
  270|    313|		TRACE(("fuzz_kill ignoring pid %d signal %d", (pid), sig))
  271|    313|		if (sig >= 0) {
  ------------------
  |  Branch (271:7): [True: 313, False: 0]
  ------------------
  272|    313|			return 0;
  273|    313|		} else {
  274|      0|			errno = EINVAL;
  275|      0|			return -1;
  276|      0|		}
  277|    313|	}
  278|      0|	return kill(pid, sig);
  279|    313|}
fuzz-wrapfd.c:wrapfd_remove:
   96|  10.7k|static void wrapfd_remove(int fd) {
   97|  10.7k|	TRACE(("wrapfd_remove %d", fd))
   98|  10.7k|	assert(fd >= 0);
   99|  10.7k|	assert(fd <= IOWRAP_MAXFD);
  100|  10.7k|	assert(wrap_fds[fd].mode != UNUSED);
  101|  10.7k|	wrap_fds[fd].mode = UNUSED;
  102|  10.7k|	close(fd);
  103|  10.7k|}

LLVMFuzzerTestOneInput:
    3|  1.55k|int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
    4|  1.55k|	return fuzz_run_server(Data, Size, 1, 1);
    5|  1.55k|}

rijndael_setup:
  123|  3.61k|{
  124|  3.61k|    int i;
  125|  3.61k|    ulong32 temp, *rk;
  126|  3.61k|#ifndef ENCRYPT_ONLY
  127|  3.61k|    ulong32 *rrk;
  128|  3.61k|#endif
  129|  3.61k|    LTC_ARGCHK(key  != NULL);
  ------------------
  |  |   32|  3.61k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 3.61k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  130|  3.61k|    LTC_ARGCHK(skey != NULL);
  ------------------
  |  |   32|  3.61k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 3.61k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  131|       |
  132|  3.61k|    if (keylen != 16 && keylen != 24 && keylen != 32) {
  ------------------
  |  Branch (132:9): [True: 1.20k, False: 2.40k]
  |  Branch (132:25): [True: 1.20k, False: 0]
  |  Branch (132:41): [True: 0, False: 1.20k]
  ------------------
  133|      0|       return CRYPT_INVALID_KEYSIZE;
  134|      0|    }
  135|       |
  136|  3.61k|    if (num_rounds != 0 && num_rounds != (10 + ((keylen/8)-2)*2)) {
  ------------------
  |  Branch (136:9): [True: 0, False: 3.61k]
  |  Branch (136:28): [True: 0, False: 0]
  ------------------
  137|      0|       return CRYPT_INVALID_ROUNDS;
  138|      0|    }
  139|       |
  140|  3.61k|    skey->rijndael.Nr = 10 + ((keylen/8)-2)*2;
  141|       |
  142|       |    /* setup the forward key */
  143|  3.61k|    i                 = 0;
  144|  3.61k|    rk                = skey->rijndael.eK;
  145|  3.61k|    LOAD32H(rk[0], key     );
  ------------------
  |  |   66|  3.61k|#define LOAD32H(x, y)                           \
  |  |   67|  3.61k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  3.61k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  3.61k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  146|  3.61k|    LOAD32H(rk[1], key +  4);
  ------------------
  |  |   66|  3.61k|#define LOAD32H(x, y)                           \
  |  |   67|  3.61k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  3.61k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  3.61k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  147|  3.61k|    LOAD32H(rk[2], key +  8);
  ------------------
  |  |   66|  3.61k|#define LOAD32H(x, y)                           \
  |  |   67|  3.61k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  3.61k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  3.61k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  148|  3.61k|    LOAD32H(rk[3], key + 12);
  ------------------
  |  |   66|  3.61k|#define LOAD32H(x, y)                           \
  |  |   67|  3.61k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  3.61k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  3.61k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  149|  3.61k|    if (keylen == 16) {
  ------------------
  |  Branch (149:9): [True: 2.40k, False: 1.20k]
  ------------------
  150|  24.0k|        for (;;) {
  151|  24.0k|            temp  = rk[3];
  152|  24.0k|            rk[4] = rk[0] ^ setup_mix(temp) ^ rcon[i];
  153|  24.0k|            rk[5] = rk[1] ^ rk[4];
  154|  24.0k|            rk[6] = rk[2] ^ rk[5];
  155|  24.0k|            rk[7] = rk[3] ^ rk[6];
  156|  24.0k|            if (++i == 10) {
  ------------------
  |  Branch (156:17): [True: 2.40k, False: 21.6k]
  ------------------
  157|  2.40k|               break;
  158|  2.40k|            }
  159|  21.6k|            rk += 4;
  160|  21.6k|        }
  161|  2.40k|    } else if (keylen == 24) {
  ------------------
  |  Branch (161:16): [True: 0, False: 1.20k]
  ------------------
  162|      0|        LOAD32H(rk[4], key + 16);
  ------------------
  |  |   66|      0|#define LOAD32H(x, y)                           \
  |  |   67|      0|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|      0|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|      0|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  163|      0|        LOAD32H(rk[5], key + 20);
  ------------------
  |  |   66|      0|#define LOAD32H(x, y)                           \
  |  |   67|      0|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|      0|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|      0|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  164|      0|        for (;;) {
  165|       |        #ifdef _MSC_VER
  166|       |            temp = skey->rijndael.eK[rk - skey->rijndael.eK + 5];
  167|       |        #else
  168|      0|            temp = rk[5];
  169|      0|        #endif
  170|      0|            rk[ 6] = rk[ 0] ^ setup_mix(temp) ^ rcon[i];
  171|      0|            rk[ 7] = rk[ 1] ^ rk[ 6];
  172|      0|            rk[ 8] = rk[ 2] ^ rk[ 7];
  173|      0|            rk[ 9] = rk[ 3] ^ rk[ 8];
  174|      0|            if (++i == 8) {
  ------------------
  |  Branch (174:17): [True: 0, False: 0]
  ------------------
  175|      0|                break;
  176|      0|            }
  177|      0|            rk[10] = rk[ 4] ^ rk[ 9];
  178|      0|            rk[11] = rk[ 5] ^ rk[10];
  179|      0|            rk += 6;
  180|      0|        }
  181|  1.20k|    } else if (keylen == 32) {
  ------------------
  |  Branch (181:16): [True: 1.20k, False: 0]
  ------------------
  182|  1.20k|        LOAD32H(rk[4], key + 16);
  ------------------
  |  |   66|  1.20k|#define LOAD32H(x, y)                           \
  |  |   67|  1.20k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  1.20k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  1.20k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  183|  1.20k|        LOAD32H(rk[5], key + 20);
  ------------------
  |  |   66|  1.20k|#define LOAD32H(x, y)                           \
  |  |   67|  1.20k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  1.20k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  1.20k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  184|  1.20k|        LOAD32H(rk[6], key + 24);
  ------------------
  |  |   66|  1.20k|#define LOAD32H(x, y)                           \
  |  |   67|  1.20k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  1.20k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  1.20k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  185|  1.20k|        LOAD32H(rk[7], key + 28);
  ------------------
  |  |   66|  1.20k|#define LOAD32H(x, y)                           \
  |  |   67|  1.20k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  1.20k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  1.20k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  186|  8.45k|        for (;;) {
  187|       |        #ifdef _MSC_VER
  188|       |            temp = skey->rijndael.eK[rk - skey->rijndael.eK + 7];
  189|       |        #else
  190|  8.45k|            temp = rk[7];
  191|  8.45k|        #endif
  192|  8.45k|            rk[ 8] = rk[ 0] ^ setup_mix(temp) ^ rcon[i];
  193|  8.45k|            rk[ 9] = rk[ 1] ^ rk[ 8];
  194|  8.45k|            rk[10] = rk[ 2] ^ rk[ 9];
  195|  8.45k|            rk[11] = rk[ 3] ^ rk[10];
  196|  8.45k|            if (++i == 7) {
  ------------------
  |  Branch (196:17): [True: 1.20k, False: 7.24k]
  ------------------
  197|  1.20k|                break;
  198|  1.20k|            }
  199|  7.24k|            temp = rk[11];
  200|  7.24k|            rk[12] = rk[ 4] ^ setup_mix(RORc(temp, 8));
  ------------------
  |  |  283|  7.24k|#define RORc(word,i) ({ \
  |  |  284|  7.24k|   ulong32 __RORc_tmp = (word); \
  |  |  285|  7.24k|   __asm__ ("rorl %2, %0" : \
  |  |  286|  7.24k|            "=r" (__RORc_tmp) : \
  |  |  287|  7.24k|            "0" (__RORc_tmp), \
  |  |  288|  7.24k|            "I" (i)); \
  |  |  289|  7.24k|            __RORc_tmp; \
  |  |  290|  7.24k|   })
  ------------------
  201|  7.24k|            rk[13] = rk[ 5] ^ rk[12];
  202|  7.24k|            rk[14] = rk[ 6] ^ rk[13];
  203|  7.24k|            rk[15] = rk[ 7] ^ rk[14];
  204|  7.24k|            rk += 8;
  205|  7.24k|        }
  206|  1.20k|    } else {
  207|       |       /* this can't happen */
  208|       |       /* coverity[dead_error_line] */
  209|      0|       return CRYPT_ERROR;
  210|      0|    }
  211|       |
  212|  3.61k|#ifndef ENCRYPT_ONLY
  213|       |    /* setup the inverse key now */
  214|  3.61k|    rk   = skey->rijndael.dK;
  215|  3.61k|    rrk  = skey->rijndael.eK + (28 + keylen) - 4;
  216|       |
  217|       |    /* apply the inverse MixColumn transform to all round keys but the first and the last: */
  218|       |    /* copy first */
  219|  3.61k|    *rk++ = *rrk++;
  220|  3.61k|    *rk++ = *rrk++;
  221|  3.61k|    *rk++ = *rrk++;
  222|  3.61k|    *rk   = *rrk;
  223|  3.61k|    rk -= 3; rrk -= 3;
  224|       |
  225|  40.9k|    for (i = 1; i < skey->rijndael.Nr; i++) {
  ------------------
  |  Branch (225:17): [True: 37.3k, False: 3.61k]
  ------------------
  226|  37.3k|        rrk -= 4;
  227|  37.3k|        rk  += 4;
  228|  37.3k|    #ifdef LTC_SMALL_CODE
  229|  37.3k|        temp = rrk[0];
  230|  37.3k|        rk[0] = setup_mix2(temp);
  231|  37.3k|        temp = rrk[1];
  232|  37.3k|        rk[1] = setup_mix2(temp);
  233|  37.3k|        temp = rrk[2];
  234|  37.3k|        rk[2] = setup_mix2(temp);
  235|  37.3k|        temp = rrk[3];
  236|  37.3k|        rk[3] = setup_mix2(temp);
  237|       |     #else
  238|       |        temp = rrk[0];
  239|       |        rk[0] =
  240|       |            Tks0[byte(temp, 3)] ^
  241|       |            Tks1[byte(temp, 2)] ^
  242|       |            Tks2[byte(temp, 1)] ^
  243|       |            Tks3[byte(temp, 0)];
  244|       |        temp = rrk[1];
  245|       |        rk[1] =
  246|       |            Tks0[byte(temp, 3)] ^
  247|       |            Tks1[byte(temp, 2)] ^
  248|       |            Tks2[byte(temp, 1)] ^
  249|       |            Tks3[byte(temp, 0)];
  250|       |        temp = rrk[2];
  251|       |        rk[2] =
  252|       |            Tks0[byte(temp, 3)] ^
  253|       |            Tks1[byte(temp, 2)] ^
  254|       |            Tks2[byte(temp, 1)] ^
  255|       |            Tks3[byte(temp, 0)];
  256|       |        temp = rrk[3];
  257|       |        rk[3] =
  258|       |            Tks0[byte(temp, 3)] ^
  259|       |            Tks1[byte(temp, 2)] ^
  260|       |            Tks2[byte(temp, 1)] ^
  261|       |            Tks3[byte(temp, 0)];
  262|       |      #endif
  263|       |
  264|  37.3k|    }
  265|       |
  266|       |    /* copy last */
  267|  3.61k|    rrk -= 4;
  268|  3.61k|    rk  += 4;
  269|  3.61k|    *rk++ = *rrk++;
  270|  3.61k|    *rk++ = *rrk++;
  271|  3.61k|    *rk++ = *rrk++;
  272|  3.61k|    *rk   = *rrk;
  273|  3.61k|#endif /* ENCRYPT_ONLY */
  274|       |
  275|  3.61k|    return CRYPT_OK;
  276|  3.61k|}
rijndael_ecb_encrypt:
  290|  6.38M|{
  291|  6.38M|    ulong32 s0, s1, s2, s3, t0, t1, t2, t3, *rk;
  292|  6.38M|    int Nr, r;
  293|       |
  294|  6.38M|    LTC_ARGCHK(pt != NULL);
  ------------------
  |  |   32|  6.38M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 6.38M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  295|  6.38M|    LTC_ARGCHK(ct != NULL);
  ------------------
  |  |   32|  6.38M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 6.38M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  296|  6.38M|    LTC_ARGCHK(skey != NULL);
  ------------------
  |  |   32|  6.38M|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 6.38M]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  297|       |
  298|  6.38M|    Nr = skey->rijndael.Nr;
  299|  6.38M|    rk = skey->rijndael.eK;
  300|       |
  301|       |    /*
  302|       |     * map byte array block to cipher state
  303|       |     * and add initial round key:
  304|       |     */
  305|  6.38M|    LOAD32H(s0, pt      ); s0 ^= rk[0];
  ------------------
  |  |   66|  6.38M|#define LOAD32H(x, y)                           \
  |  |   67|  6.38M|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  6.38M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  6.38M|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  306|  6.38M|    LOAD32H(s1, pt  +  4); s1 ^= rk[1];
  ------------------
  |  |   66|  6.38M|#define LOAD32H(x, y)                           \
  |  |   67|  6.38M|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  6.38M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  6.38M|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  307|  6.38M|    LOAD32H(s2, pt  +  8); s2 ^= rk[2];
  ------------------
  |  |   66|  6.38M|#define LOAD32H(x, y)                           \
  |  |   67|  6.38M|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  6.38M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  6.38M|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  308|  6.38M|    LOAD32H(s3, pt  + 12); s3 ^= rk[3];
  ------------------
  |  |   66|  6.38M|#define LOAD32H(x, y)                           \
  |  |   67|  6.38M|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  6.38M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  6.38M|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  309|       |
  310|  6.38M|#ifdef LTC_SMALL_CODE
  311|       |
  312|  62.7M|    for (r = 0; ; r++) {
  313|  62.7M|        rk += 4;
  314|  62.7M|        t0 =
  315|  62.7M|            Te0(byte(s0, 3)) ^
  ------------------
  |  |  306|  62.7M|#define Te0(x) TE0[x]
  ------------------
  316|  62.7M|            Te1(byte(s1, 2)) ^
  ------------------
  |  |  307|  62.7M|#define Te1(x) RORc(TE0[x], 8)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  317|  62.7M|            Te2(byte(s2, 1)) ^
  ------------------
  |  |  308|  62.7M|#define Te2(x) RORc(TE0[x], 16)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  318|  62.7M|            Te3(byte(s3, 0)) ^
  ------------------
  |  |  309|  62.7M|#define Te3(x) RORc(TE0[x], 24)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  319|  62.7M|            rk[0];
  320|  62.7M|        t1 =
  321|  62.7M|            Te0(byte(s1, 3)) ^
  ------------------
  |  |  306|  62.7M|#define Te0(x) TE0[x]
  ------------------
  322|  62.7M|            Te1(byte(s2, 2)) ^
  ------------------
  |  |  307|  62.7M|#define Te1(x) RORc(TE0[x], 8)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  323|  62.7M|            Te2(byte(s3, 1)) ^
  ------------------
  |  |  308|  62.7M|#define Te2(x) RORc(TE0[x], 16)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  324|  62.7M|            Te3(byte(s0, 0)) ^
  ------------------
  |  |  309|  62.7M|#define Te3(x) RORc(TE0[x], 24)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  325|  62.7M|            rk[1];
  326|  62.7M|        t2 =
  327|  62.7M|            Te0(byte(s2, 3)) ^
  ------------------
  |  |  306|  62.7M|#define Te0(x) TE0[x]
  ------------------
  328|  62.7M|            Te1(byte(s3, 2)) ^
  ------------------
  |  |  307|  62.7M|#define Te1(x) RORc(TE0[x], 8)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  329|  62.7M|            Te2(byte(s0, 1)) ^
  ------------------
  |  |  308|  62.7M|#define Te2(x) RORc(TE0[x], 16)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  330|  62.7M|            Te3(byte(s1, 0)) ^
  ------------------
  |  |  309|  62.7M|#define Te3(x) RORc(TE0[x], 24)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  331|  62.7M|            rk[2];
  332|  62.7M|        t3 =
  333|  62.7M|            Te0(byte(s3, 3)) ^
  ------------------
  |  |  306|  62.7M|#define Te0(x) TE0[x]
  ------------------
  334|  62.7M|            Te1(byte(s0, 2)) ^
  ------------------
  |  |  307|  62.7M|#define Te1(x) RORc(TE0[x], 8)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  335|  62.7M|            Te2(byte(s1, 1)) ^
  ------------------
  |  |  308|  62.7M|#define Te2(x) RORc(TE0[x], 16)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  336|  62.7M|            Te3(byte(s2, 0)) ^
  ------------------
  |  |  309|  62.7M|#define Te3(x) RORc(TE0[x], 24)
  |  |  ------------------
  |  |  |  |  283|  62.7M|#define RORc(word,i) ({ \
  |  |  |  |  284|  62.7M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|  62.7M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|  62.7M|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|  62.7M|            "0" (__RORc_tmp), \
  |  |  |  |  288|  62.7M|            "I" (i)); \
  |  |  |  |  289|  62.7M|            __RORc_tmp; \
  |  |  |  |  290|  62.7M|   })
  |  |  ------------------
  ------------------
  337|  62.7M|            rk[3];
  338|  62.7M|        if (r == Nr-2) {
  ------------------
  |  Branch (338:13): [True: 6.38M, False: 56.4M]
  ------------------
  339|  6.38M|           break;
  340|  6.38M|        }
  341|  56.4M|        s0 = t0; s1 = t1; s2 = t2; s3 = t3;
  342|  56.4M|    }
  343|  6.38M|    rk += 4;
  344|       |
  345|       |#else
  346|       |
  347|       |    /*
  348|       |     * Nr - 1 full rounds:
  349|       |     */
  350|       |    r = Nr >> 1;
  351|       |    for (;;) {
  352|       |        t0 =
  353|       |            Te0(byte(s0, 3)) ^
  354|       |            Te1(byte(s1, 2)) ^
  355|       |            Te2(byte(s2, 1)) ^
  356|       |            Te3(byte(s3, 0)) ^
  357|       |            rk[4];
  358|       |        t1 =
  359|       |            Te0(byte(s1, 3)) ^
  360|       |            Te1(byte(s2, 2)) ^
  361|       |            Te2(byte(s3, 1)) ^
  362|       |            Te3(byte(s0, 0)) ^
  363|       |            rk[5];
  364|       |        t2 =
  365|       |            Te0(byte(s2, 3)) ^
  366|       |            Te1(byte(s3, 2)) ^
  367|       |            Te2(byte(s0, 1)) ^
  368|       |            Te3(byte(s1, 0)) ^
  369|       |            rk[6];
  370|       |        t3 =
  371|       |            Te0(byte(s3, 3)) ^
  372|       |            Te1(byte(s0, 2)) ^
  373|       |            Te2(byte(s1, 1)) ^
  374|       |            Te3(byte(s2, 0)) ^
  375|       |            rk[7];
  376|       |
  377|       |        rk += 8;
  378|       |        if (--r == 0) {
  379|       |            break;
  380|       |        }
  381|       |
  382|       |        s0 =
  383|       |            Te0(byte(t0, 3)) ^
  384|       |            Te1(byte(t1, 2)) ^
  385|       |            Te2(byte(t2, 1)) ^
  386|       |            Te3(byte(t3, 0)) ^
  387|       |            rk[0];
  388|       |        s1 =
  389|       |            Te0(byte(t1, 3)) ^
  390|       |            Te1(byte(t2, 2)) ^
  391|       |            Te2(byte(t3, 1)) ^
  392|       |            Te3(byte(t0, 0)) ^
  393|       |            rk[1];
  394|       |        s2 =
  395|       |            Te0(byte(t2, 3)) ^
  396|       |            Te1(byte(t3, 2)) ^
  397|       |            Te2(byte(t0, 1)) ^
  398|       |            Te3(byte(t1, 0)) ^
  399|       |            rk[2];
  400|       |        s3 =
  401|       |            Te0(byte(t3, 3)) ^
  402|       |            Te1(byte(t0, 2)) ^
  403|       |            Te2(byte(t1, 1)) ^
  404|       |            Te3(byte(t2, 0)) ^
  405|       |            rk[3];
  406|       |    }
  407|       |
  408|       |#endif
  409|       |
  410|       |    /*
  411|       |     * apply last round and
  412|       |     * map cipher state to byte array block:
  413|       |     */
  414|  6.38M|    s0 =
  415|  6.38M|        (Te4_3[byte(t0, 3)]) ^
  ------------------
  |  |  319|  6.38M|#define Te4_3 0xFF000000 & Te4
  ------------------
                      (Te4_3[byte(t0, 3)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  416|  6.38M|        (Te4_2[byte(t1, 2)]) ^
  ------------------
  |  |  318|  6.38M|#define Te4_2 0x00FF0000 & Te4
  ------------------
                      (Te4_2[byte(t1, 2)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  417|  6.38M|        (Te4_1[byte(t2, 1)]) ^
  ------------------
  |  |  317|  6.38M|#define Te4_1 0x0000FF00 & Te4
  ------------------
                      (Te4_1[byte(t2, 1)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  418|  6.38M|        (Te4_0[byte(t3, 0)]) ^
  ------------------
  |  |  316|  6.38M|#define Te4_0 0x000000FF & Te4
  ------------------
                      (Te4_0[byte(t3, 0)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  419|  6.38M|        rk[0];
  420|  6.38M|    STORE32H(s0, ct);
  ------------------
  |  |   62|  6.38M|#define STORE32H(x, y)                          \
  |  |   63|  6.38M|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  6.38M|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  6.38M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  421|  6.38M|    s1 =
  422|  6.38M|        (Te4_3[byte(t1, 3)]) ^
  ------------------
  |  |  319|  6.38M|#define Te4_3 0xFF000000 & Te4
  ------------------
                      (Te4_3[byte(t1, 3)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  423|  6.38M|        (Te4_2[byte(t2, 2)]) ^
  ------------------
  |  |  318|  6.38M|#define Te4_2 0x00FF0000 & Te4
  ------------------
                      (Te4_2[byte(t2, 2)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  424|  6.38M|        (Te4_1[byte(t3, 1)]) ^
  ------------------
  |  |  317|  6.38M|#define Te4_1 0x0000FF00 & Te4
  ------------------
                      (Te4_1[byte(t3, 1)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  425|  6.38M|        (Te4_0[byte(t0, 0)]) ^
  ------------------
  |  |  316|  6.38M|#define Te4_0 0x000000FF & Te4
  ------------------
                      (Te4_0[byte(t0, 0)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  426|  6.38M|        rk[1];
  427|  6.38M|    STORE32H(s1, ct+4);
  ------------------
  |  |   62|  6.38M|#define STORE32H(x, y)                          \
  |  |   63|  6.38M|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  6.38M|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  6.38M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  428|  6.38M|    s2 =
  429|  6.38M|        (Te4_3[byte(t2, 3)]) ^
  ------------------
  |  |  319|  6.38M|#define Te4_3 0xFF000000 & Te4
  ------------------
                      (Te4_3[byte(t2, 3)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  430|  6.38M|        (Te4_2[byte(t3, 2)]) ^
  ------------------
  |  |  318|  6.38M|#define Te4_2 0x00FF0000 & Te4
  ------------------
                      (Te4_2[byte(t3, 2)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  431|  6.38M|        (Te4_1[byte(t0, 1)]) ^
  ------------------
  |  |  317|  6.38M|#define Te4_1 0x0000FF00 & Te4
  ------------------
                      (Te4_1[byte(t0, 1)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  432|  6.38M|        (Te4_0[byte(t1, 0)]) ^
  ------------------
  |  |  316|  6.38M|#define Te4_0 0x000000FF & Te4
  ------------------
                      (Te4_0[byte(t1, 0)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  433|  6.38M|        rk[2];
  434|  6.38M|    STORE32H(s2, ct+8);
  ------------------
  |  |   62|  6.38M|#define STORE32H(x, y)                          \
  |  |   63|  6.38M|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  6.38M|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  6.38M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  435|  6.38M|    s3 =
  436|  6.38M|        (Te4_3[byte(t3, 3)]) ^
  ------------------
  |  |  319|  6.38M|#define Te4_3 0xFF000000 & Te4
  ------------------
                      (Te4_3[byte(t3, 3)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  437|  6.38M|        (Te4_2[byte(t0, 2)]) ^
  ------------------
  |  |  318|  6.38M|#define Te4_2 0x00FF0000 & Te4
  ------------------
                      (Te4_2[byte(t0, 2)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  438|  6.38M|        (Te4_1[byte(t1, 1)]) ^
  ------------------
  |  |  317|  6.38M|#define Te4_1 0x0000FF00 & Te4
  ------------------
                      (Te4_1[byte(t1, 1)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  439|  6.38M|        (Te4_0[byte(t2, 0)]) ^
  ------------------
  |  |  316|  6.38M|#define Te4_0 0x000000FF & Te4
  ------------------
                      (Te4_0[byte(t2, 0)]) ^
  ------------------
  |  |  436|  6.38M|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  440|  6.38M|        rk[3];
  441|  6.38M|    STORE32H(s3, ct+12);
  ------------------
  |  |   62|  6.38M|#define STORE32H(x, y)                          \
  |  |   63|  6.38M|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  6.38M|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  6.38M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  442|       |
  443|  6.38M|    return CRYPT_OK;
  444|  6.38M|}
aes.c:setup_mix:
   95|  39.7k|{
   96|  39.7k|   return (Te4_3[byte(temp, 2)]) ^
  ------------------
  |  |  319|  39.7k|#define Te4_3 0xFF000000 & Te4
  ------------------
                 return (Te4_3[byte(temp, 2)]) ^
  ------------------
  |  |  436|  39.7k|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
   97|  39.7k|          (Te4_2[byte(temp, 1)]) ^
  ------------------
  |  |  318|  39.7k|#define Te4_2 0x00FF0000 & Te4
  ------------------
                        (Te4_2[byte(temp, 1)]) ^
  ------------------
  |  |  436|  39.7k|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
   98|  39.7k|          (Te4_1[byte(temp, 0)]) ^
  ------------------
  |  |  317|  39.7k|#define Te4_1 0x0000FF00 & Te4
  ------------------
                        (Te4_1[byte(temp, 0)]) ^
  ------------------
  |  |  436|  39.7k|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
   99|  39.7k|          (Te4_0[byte(temp, 3)]);
  ------------------
  |  |  316|  39.7k|#define Te4_0 0x000000FF & Te4
  ------------------
                        (Te4_0[byte(temp, 3)]);
  ------------------
  |  |  436|  39.7k|   #define byte(x, n) (((x) >> (8 * (n))) & 255)
  ------------------
  100|  39.7k|}
aes.c:setup_mix2:
  105|   149k|{
  106|   149k|   return Td0(255 & Te4[byte(temp, 3)]) ^
  ------------------
  |  |  311|   149k|#define Td0(x) TD0[x]
  ------------------
  107|   149k|          Td1(255 & Te4[byte(temp, 2)]) ^
  ------------------
  |  |  312|   149k|#define Td1(x) RORc(TD0[x], 8)
  |  |  ------------------
  |  |  |  |  283|   149k|#define RORc(word,i) ({ \
  |  |  |  |  284|   149k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|   149k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|   149k|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|   149k|            "0" (__RORc_tmp), \
  |  |  |  |  288|   149k|            "I" (i)); \
  |  |  |  |  289|   149k|            __RORc_tmp; \
  |  |  |  |  290|   149k|   })
  |  |  ------------------
  ------------------
  108|   149k|          Td2(255 & Te4[byte(temp, 1)]) ^
  ------------------
  |  |  313|   149k|#define Td2(x) RORc(TD0[x], 16)
  |  |  ------------------
  |  |  |  |  283|   149k|#define RORc(word,i) ({ \
  |  |  |  |  284|   149k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|   149k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|   149k|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|   149k|            "0" (__RORc_tmp), \
  |  |  |  |  288|   149k|            "I" (i)); \
  |  |  |  |  289|   149k|            __RORc_tmp; \
  |  |  |  |  290|   149k|   })
  |  |  ------------------
  ------------------
  109|   149k|          Td3(255 & Te4[byte(temp, 0)]);
  ------------------
  |  |  314|   149k|#define Td3(x) RORc(TD0[x], 24)
  |  |  ------------------
  |  |  |  |  283|   149k|#define RORc(word,i) ({ \
  |  |  |  |  284|   149k|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  285|   149k|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  286|   149k|            "=r" (__RORc_tmp) : \
  |  |  |  |  287|   149k|            "0" (__RORc_tmp), \
  |  |  |  |  288|   149k|            "I" (i)); \
  |  |  |  |  289|   149k|            __RORc_tmp; \
  |  |  |  |  290|   149k|   })
  |  |  ------------------
  ------------------
  110|   149k|}

sha1_init:
  164|  18.9k|{
  165|  18.9k|   LTC_ARGCHK(md != NULL);
  ------------------
  |  |   32|  18.9k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 18.9k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  166|  18.9k|   md->sha1.state[0] = 0x67452301UL;
  167|  18.9k|   md->sha1.state[1] = 0xefcdab89UL;
  168|  18.9k|   md->sha1.state[2] = 0x98badcfeUL;
  169|  18.9k|   md->sha1.state[3] = 0x10325476UL;
  170|  18.9k|   md->sha1.state[4] = 0xc3d2e1f0UL;
  171|  18.9k|   md->sha1.curlen = 0;
  172|  18.9k|   md->sha1.length = 0;
  173|  18.9k|   return CRYPT_OK;
  174|  18.9k|}
sha1_done:
  192|  41.9k|{
  193|  41.9k|    int i;
  194|       |
  195|  41.9k|    LTC_ARGCHK(md  != NULL);
  ------------------
  |  |   32|  41.9k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 41.9k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  196|  41.9k|    LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|  41.9k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 41.9k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  197|       |
  198|  41.9k|    if (md->sha1.curlen >= sizeof(md->sha1.buf)) {
  ------------------
  |  Branch (198:9): [True: 0, False: 41.9k]
  ------------------
  199|      0|       return CRYPT_INVALID_ARG;
  200|      0|    }
  201|       |
  202|       |    /* increase the length of the message */
  203|  41.9k|    md->sha1.length += md->sha1.curlen * 8;
  204|       |
  205|       |    /* append the '1' bit */
  206|  41.9k|    md->sha1.buf[md->sha1.curlen++] = (unsigned char)0x80;
  207|       |
  208|       |    /* if the length is currently above 56 bytes we append zeros
  209|       |     * then compress.  Then we can fall back to padding zeros and length
  210|       |     * encoding like normal.
  211|       |     */
  212|  41.9k|    if (md->sha1.curlen > 56) {
  ------------------
  |  Branch (212:9): [True: 591, False: 41.3k]
  ------------------
  213|  1.71k|        while (md->sha1.curlen < 64) {
  ------------------
  |  Branch (213:16): [True: 1.12k, False: 591]
  ------------------
  214|  1.12k|            md->sha1.buf[md->sha1.curlen++] = (unsigned char)0;
  215|  1.12k|        }
  216|    591|        sha1_compress(md, md->sha1.buf);
  217|    591|        md->sha1.curlen = 0;
  218|    591|    }
  219|       |
  220|       |    /* pad upto 56 bytes of zeroes */
  221|  1.12M|    while (md->sha1.curlen < 56) {
  ------------------
  |  Branch (221:12): [True: 1.08M, False: 41.9k]
  ------------------
  222|  1.08M|        md->sha1.buf[md->sha1.curlen++] = (unsigned char)0;
  223|  1.08M|    }
  224|       |
  225|       |    /* store length */
  226|  41.9k|    STORE64H(md->sha1.length, md->sha1.buf+56);
  ------------------
  |  |  101|  41.9k|#define STORE64H(x, y)                          \
  |  |  102|  41.9k|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|  41.9k|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|  41.9k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  227|  41.9k|    sha1_compress(md, md->sha1.buf);
  228|       |
  229|       |    /* copy output */
  230|   251k|    for (i = 0; i < 5; i++) {
  ------------------
  |  Branch (230:17): [True: 209k, False: 41.9k]
  ------------------
  231|   209k|        STORE32H(md->sha1.state[i], out+(4*i));
  ------------------
  |  |   62|   209k|#define STORE32H(x, y)                          \
  |  |   63|   209k|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|   209k|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|   209k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  232|   209k|    }
  233|       |#ifdef LTC_CLEAN_STACK
  234|       |    zeromem(md, sizeof(hash_state));
  235|       |#endif
  236|  41.9k|    return CRYPT_OK;
  237|  41.9k|}
sha1.c:sha1_compress:
   47|   820k|{
   48|   820k|    ulong32 a,b,c,d,e,W[80],i;
   49|   820k|#ifdef LTC_SMALL_CODE
   50|   820k|    ulong32 t;
   51|   820k|#endif
   52|       |
   53|       |    /* copy the state into 512-bits into W[0..15] */
   54|  13.9M|    for (i = 0; i < 16; i++) {
  ------------------
  |  Branch (54:17): [True: 13.1M, False: 820k]
  ------------------
   55|  13.1M|        LOAD32H(W[i], buf + (4*i));
  ------------------
  |  |   66|  13.1M|#define LOAD32H(x, y)                           \
  |  |   67|  13.1M|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  13.1M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  13.1M|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
   56|  13.1M|    }
   57|       |
   58|       |    /* copy state */
   59|   820k|    a = md->sha1.state[0];
   60|   820k|    b = md->sha1.state[1];
   61|   820k|    c = md->sha1.state[2];
   62|   820k|    d = md->sha1.state[3];
   63|   820k|    e = md->sha1.state[4];
   64|       |
   65|       |    /* expand it */
   66|  53.3M|    for (i = 16; i < 80; i++) {
  ------------------
  |  Branch (66:18): [True: 52.4M, False: 820k]
  ------------------
   67|  52.4M|        W[i] = ROL(W[i-3] ^ W[i-8] ^ W[i-14] ^ W[i-16], 1);
   68|  52.4M|    }
   69|       |
   70|       |    /* compress */
   71|       |    /* round one */
   72|   820k|    #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
   73|   820k|    #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
   74|   820k|    #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
   75|   820k|    #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30);
   76|       |
   77|   820k|#ifdef LTC_SMALL_CODE
   78|       |
   79|  17.2M|    for (i = 0; i < 20; ) {
  ------------------
  |  Branch (79:17): [True: 16.4M, False: 820k]
  ------------------
   80|  16.4M|       FF0(a,b,c,d,e,i++); t = e; e = d; d = c; c = b; b = a; a = t;
  ------------------
  |  |   72|  16.4M|    #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  16.4M|#define ROLc(word,i) ({ \
  |  |  |  |  276|  16.4M|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  16.4M|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  16.4M|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  16.4M|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  16.4M|            "I" (i)); \
  |  |  |  |  281|  16.4M|            __ROLc_tmp; \
  |  |  |  |  282|  16.4M|   })
  |  |  ------------------
  |  |                   #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |   37|  16.4M|#define F0(x,y,z)  (z ^ (x & (y ^ z)))
  |  |  ------------------
  |  |                   #define FF0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  16.4M|#define ROLc(word,i) ({ \
  |  |  |  |  276|  16.4M|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  16.4M|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  16.4M|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  16.4M|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  16.4M|            "I" (i)); \
  |  |  |  |  281|  16.4M|            __ROLc_tmp; \
  |  |  |  |  282|  16.4M|   })
  |  |  ------------------
  ------------------
   81|  16.4M|    }
   82|       |
   83|  17.2M|    for (; i < 40; ) {
  ------------------
  |  Branch (83:12): [True: 16.4M, False: 820k]
  ------------------
   84|  16.4M|       FF1(a,b,c,d,e,i++); t = e; e = d; d = c; c = b; b = a; a = t;
  ------------------
  |  |   73|  16.4M|    #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  16.4M|#define ROLc(word,i) ({ \
  |  |  |  |  276|  16.4M|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  16.4M|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  16.4M|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  16.4M|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  16.4M|            "I" (i)); \
  |  |  |  |  281|  16.4M|            __ROLc_tmp; \
  |  |  |  |  282|  16.4M|   })
  |  |  ------------------
  |  |                   #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |   38|  16.4M|#define F1(x,y,z)  (x ^ y ^ z)
  |  |  ------------------
  |  |                   #define FF1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  16.4M|#define ROLc(word,i) ({ \
  |  |  |  |  276|  16.4M|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  16.4M|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  16.4M|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  16.4M|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  16.4M|            "I" (i)); \
  |  |  |  |  281|  16.4M|            __ROLc_tmp; \
  |  |  |  |  282|  16.4M|   })
  |  |  ------------------
  ------------------
   85|  16.4M|    }
   86|       |
   87|  17.2M|    for (; i < 60; ) {
  ------------------
  |  Branch (87:12): [True: 16.4M, False: 820k]
  ------------------
   88|  16.4M|       FF2(a,b,c,d,e,i++); t = e; e = d; d = c; c = b; b = a; a = t;
  ------------------
  |  |   74|  16.4M|    #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  16.4M|#define ROLc(word,i) ({ \
  |  |  |  |  276|  16.4M|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  16.4M|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  16.4M|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  16.4M|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  16.4M|            "I" (i)); \
  |  |  |  |  281|  16.4M|            __ROLc_tmp; \
  |  |  |  |  282|  16.4M|   })
  |  |  ------------------
  |  |                   #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |   39|  16.4M|#define F2(x,y,z)  ((x & y) | (z & (x | y)))
  |  |  ------------------
  |  |                   #define FF2(a,b,c,d,e,i) e = (ROLc(a, 5) + F2(b,c,d) + e + W[i] + 0x8f1bbcdcUL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  16.4M|#define ROLc(word,i) ({ \
  |  |  |  |  276|  16.4M|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  16.4M|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  16.4M|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  16.4M|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  16.4M|            "I" (i)); \
  |  |  |  |  281|  16.4M|            __ROLc_tmp; \
  |  |  |  |  282|  16.4M|   })
  |  |  ------------------
  ------------------
   89|  16.4M|    }
   90|       |
   91|  17.2M|    for (; i < 80; ) {
  ------------------
  |  Branch (91:12): [True: 16.4M, False: 820k]
  ------------------
   92|  16.4M|       FF3(a,b,c,d,e,i++); t = e; e = d; d = c; c = b; b = a; a = t;
  ------------------
  |  |   75|  16.4M|    #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  16.4M|#define ROLc(word,i) ({ \
  |  |  |  |  276|  16.4M|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  16.4M|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  16.4M|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  16.4M|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  16.4M|            "I" (i)); \
  |  |  |  |  281|  16.4M|            __ROLc_tmp; \
  |  |  |  |  282|  16.4M|   })
  |  |  ------------------
  |  |                   #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |   40|  16.4M|#define F3(x,y,z)  (x ^ y ^ z)
  |  |  ------------------
  |  |                   #define FF3(a,b,c,d,e,i) e = (ROLc(a, 5) + F3(b,c,d) + e + W[i] + 0xca62c1d6UL); b = ROLc(b, 30);
  |  |  ------------------
  |  |  |  |  275|  16.4M|#define ROLc(word,i) ({ \
  |  |  |  |  276|  16.4M|   ulong32 __ROLc_tmp = (word); \
  |  |  |  |  277|  16.4M|   __asm__ ("roll %2, %0" : \
  |  |  |  |  278|  16.4M|            "=r" (__ROLc_tmp) : \
  |  |  |  |  279|  16.4M|            "0" (__ROLc_tmp), \
  |  |  |  |  280|  16.4M|            "I" (i)); \
  |  |  |  |  281|  16.4M|            __ROLc_tmp; \
  |  |  |  |  282|  16.4M|   })
  |  |  ------------------
  ------------------
   93|  16.4M|    }
   94|       |
   95|       |#else
   96|       |
   97|       |    for (i = 0; i < 20; ) {
   98|       |       FF0(a,b,c,d,e,i++);
   99|       |       FF0(e,a,b,c,d,i++);
  100|       |       FF0(d,e,a,b,c,i++);
  101|       |       FF0(c,d,e,a,b,i++);
  102|       |       FF0(b,c,d,e,a,i++);
  103|       |    }
  104|       |
  105|       |    /* round two */
  106|       |    for (; i < 40; )  {
  107|       |       FF1(a,b,c,d,e,i++);
  108|       |       FF1(e,a,b,c,d,i++);
  109|       |       FF1(d,e,a,b,c,i++);
  110|       |       FF1(c,d,e,a,b,i++);
  111|       |       FF1(b,c,d,e,a,i++);
  112|       |    }
  113|       |
  114|       |    /* round three */
  115|       |    for (; i < 60; )  {
  116|       |       FF2(a,b,c,d,e,i++);
  117|       |       FF2(e,a,b,c,d,i++);
  118|       |       FF2(d,e,a,b,c,i++);
  119|       |       FF2(c,d,e,a,b,i++);
  120|       |       FF2(b,c,d,e,a,i++);
  121|       |    }
  122|       |
  123|       |    /* round four */
  124|       |    for (; i < 80; )  {
  125|       |       FF3(a,b,c,d,e,i++);
  126|       |       FF3(e,a,b,c,d,i++);
  127|       |       FF3(d,e,a,b,c,i++);
  128|       |       FF3(c,d,e,a,b,i++);
  129|       |       FF3(b,c,d,e,a,i++);
  130|       |    }
  131|       |#endif
  132|       |
  133|   820k|    #undef FF0
  134|   820k|    #undef FF1
  135|   820k|    #undef FF2
  136|   820k|    #undef FF3
  137|       |
  138|       |    /* store */
  139|   820k|    md->sha1.state[0] = md->sha1.state[0] + a;
  140|   820k|    md->sha1.state[1] = md->sha1.state[1] + b;
  141|   820k|    md->sha1.state[2] = md->sha1.state[2] + c;
  142|   820k|    md->sha1.state[3] = md->sha1.state[3] + d;
  143|   820k|    md->sha1.state[4] = md->sha1.state[4] + e;
  144|       |
  145|   820k|    return CRYPT_OK;
  146|   820k|}

sha256_init:
  205|   313k|{
  206|   313k|    LTC_ARGCHK(md != NULL);
  ------------------
  |  |   32|   313k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 313k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  207|       |
  208|   313k|    md->sha256.curlen = 0;
  209|   313k|    md->sha256.length = 0;
  210|   313k|    md->sha256.state[0] = 0x6A09E667UL;
  211|   313k|    md->sha256.state[1] = 0xBB67AE85UL;
  212|   313k|    md->sha256.state[2] = 0x3C6EF372UL;
  213|   313k|    md->sha256.state[3] = 0xA54FF53AUL;
  214|   313k|    md->sha256.state[4] = 0x510E527FUL;
  215|   313k|    md->sha256.state[5] = 0x9B05688CUL;
  216|   313k|    md->sha256.state[6] = 0x1F83D9ABUL;
  217|   313k|    md->sha256.state[7] = 0x5BE0CD19UL;
  218|   313k|    return CRYPT_OK;
  219|   313k|}
sha256_done:
  237|   334k|{
  238|   334k|    int i;
  239|       |
  240|   334k|    LTC_ARGCHK(md  != NULL);
  ------------------
  |  |   32|   334k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 334k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  241|   334k|    LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|   334k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 334k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  242|       |
  243|   334k|    if (md->sha256.curlen >= sizeof(md->sha256.buf)) {
  ------------------
  |  Branch (243:9): [True: 0, False: 334k]
  ------------------
  244|      0|       return CRYPT_INVALID_ARG;
  245|      0|    }
  246|       |
  247|       |
  248|       |    /* increase the length of the message */
  249|   334k|    md->sha256.length += md->sha256.curlen * 8;
  250|       |
  251|       |    /* append the '1' bit */
  252|   334k|    md->sha256.buf[md->sha256.curlen++] = (unsigned char)0x80;
  253|       |
  254|       |    /* if the length is currently above 56 bytes we append zeros
  255|       |     * then compress.  Then we can fall back to padding zeros and length
  256|       |     * encoding like normal.
  257|       |     */
  258|   334k|    if (md->sha256.curlen > 56) {
  ------------------
  |  Branch (258:9): [True: 1.24k, False: 333k]
  ------------------
  259|  3.95k|        while (md->sha256.curlen < 64) {
  ------------------
  |  Branch (259:16): [True: 2.70k, False: 1.24k]
  ------------------
  260|  2.70k|            md->sha256.buf[md->sha256.curlen++] = (unsigned char)0;
  261|  2.70k|        }
  262|  1.24k|        sha256_compress(md, md->sha256.buf);
  263|  1.24k|        md->sha256.curlen = 0;
  264|  1.24k|    }
  265|       |
  266|       |    /* pad upto 56 bytes of zeroes */
  267|  7.70M|    while (md->sha256.curlen < 56) {
  ------------------
  |  Branch (267:12): [True: 7.37M, False: 334k]
  ------------------
  268|  7.37M|        md->sha256.buf[md->sha256.curlen++] = (unsigned char)0;
  269|  7.37M|    }
  270|       |
  271|       |    /* store length */
  272|   334k|    STORE64H(md->sha256.length, md->sha256.buf+56);
  ------------------
  |  |  101|   334k|#define STORE64H(x, y)                          \
  |  |  102|   334k|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|   334k|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|   334k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  273|   334k|    sha256_compress(md, md->sha256.buf);
  274|       |
  275|       |    /* copy output */
  276|  3.00M|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (276:17): [True: 2.67M, False: 334k]
  ------------------
  277|  2.67M|        STORE32H(md->sha256.state[i], out+(4*i));
  ------------------
  |  |   62|  2.67M|#define STORE32H(x, y)                          \
  |  |   63|  2.67M|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  2.67M|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  2.67M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  278|  2.67M|    }
  279|       |#ifdef LTC_CLEAN_STACK
  280|       |    zeromem(md, sizeof(hash_state));
  281|       |#endif
  282|   334k|    return CRYPT_OK;
  283|   334k|}
sha256.c:sha256_compress:
   71|  1.30M|{
   72|  1.30M|    ulong32 S[8], W[64], t0, t1;
   73|  1.30M|#ifdef LTC_SMALL_CODE
   74|  1.30M|    ulong32 t;
   75|  1.30M|#endif
   76|  1.30M|    int i;
   77|       |
   78|       |    /* copy state into S */
   79|  11.7M|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (79:17): [True: 10.4M, False: 1.30M]
  ------------------
   80|  10.4M|        S[i] = md->sha256.state[i];
   81|  10.4M|    }
   82|       |
   83|       |    /* copy the state into 512-bits into W[0..15] */
   84|  22.2M|    for (i = 0; i < 16; i++) {
  ------------------
  |  Branch (84:17): [True: 20.9M, False: 1.30M]
  ------------------
   85|  20.9M|        LOAD32H(W[i], buf + (4*i));
  ------------------
  |  |   66|  20.9M|#define LOAD32H(x, y)                           \
  |  |   67|  20.9M|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|  20.9M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|  20.9M|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
   86|  20.9M|    }
   87|       |
   88|       |    /* fill W[16..63] */
   89|  64.1M|    for (i = 16; i < 64; i++) {
  ------------------
  |  Branch (89:18): [True: 62.8M, False: 1.30M]
  ------------------
   90|  62.8M|        W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  ------------------
  |  |   63|  62.8M|#define Gamma1(x)       (S(x, 17) ^ S(x, 19) ^ R(x, 10))
  |  |  ------------------
  |  |  |  |   58|  62.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  283|  62.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  284|  62.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  285|  62.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  286|  62.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  287|  62.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  288|  62.8M|            "I" (i)); \
  |  |  |  |  |  |  289|  62.8M|            __RORc_tmp; \
  |  |  |  |  |  |  290|  62.8M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma1(x)       (S(x, 17) ^ S(x, 19) ^ R(x, 10))
  |  |  ------------------
  |  |  |  |   58|  62.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  283|  62.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  284|  62.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  285|  62.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  286|  62.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  287|  62.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  288|  62.8M|            "I" (i)); \
  |  |  |  |  |  |  289|  62.8M|            __RORc_tmp; \
  |  |  |  |  |  |  290|  62.8M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma1(x)       (S(x, 17) ^ S(x, 19) ^ R(x, 10))
  |  |  ------------------
  |  |  |  |   59|  62.8M|#define R(x, n)         (((x)&0xFFFFFFFFUL)>>(n))
  |  |  ------------------
  ------------------
                      W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  ------------------
  |  |   62|  62.8M|#define Gamma0(x)       (S(x, 7) ^ S(x, 18) ^ R(x, 3))
  |  |  ------------------
  |  |  |  |   58|  62.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  283|  62.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  284|  62.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  285|  62.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  286|  62.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  287|  62.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  288|  62.8M|            "I" (i)); \
  |  |  |  |  |  |  289|  62.8M|            __RORc_tmp; \
  |  |  |  |  |  |  290|  62.8M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma0(x)       (S(x, 7) ^ S(x, 18) ^ R(x, 3))
  |  |  ------------------
  |  |  |  |   58|  62.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  283|  62.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  284|  62.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  285|  62.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  286|  62.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  287|  62.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  288|  62.8M|            "I" (i)); \
  |  |  |  |  |  |  289|  62.8M|            __RORc_tmp; \
  |  |  |  |  |  |  290|  62.8M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma0(x)       (S(x, 7) ^ S(x, 18) ^ R(x, 3))
  |  |  ------------------
  |  |  |  |   59|  62.8M|#define R(x, n)         (((x)&0xFFFFFFFFUL)>>(n))
  |  |  ------------------
  ------------------
   91|  62.8M|    }
   92|       |
   93|       |    /* Compress */
   94|  1.30M|#ifdef LTC_SMALL_CODE
   95|  1.30M|#define RND(a,b,c,d,e,f,g,h,i)                         \
   96|  1.30M|     t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i];   \
   97|  1.30M|     t1 = Sigma0(a) + Maj(a, b, c);                    \
   98|  1.30M|     d += t0;                                          \
   99|  1.30M|     h  = t0 + t1;
  100|       |
  101|  85.1M|     for (i = 0; i < 64; ++i) {
  ------------------
  |  Branch (101:18): [True: 83.8M, False: 1.30M]
  ------------------
  102|  83.8M|         RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],i);
  ------------------
  |  |   96|  83.8M|     t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i];   \
  |  |  ------------------
  |  |  |  |   61|  83.8M|#define Sigma1(x)       (S(x, 6) ^ S(x, 11) ^ S(x, 25))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|  83.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|  83.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|  83.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|  83.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|  83.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|  83.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|  83.8M|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|  83.8M|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|  83.8M|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define Sigma1(x)       (S(x, 6) ^ S(x, 11) ^ S(x, 25))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|  83.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|  83.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|  83.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|  83.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|  83.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|  83.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|  83.8M|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|  83.8M|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|  83.8M|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define Sigma1(x)       (S(x, 6) ^ S(x, 11) ^ S(x, 25))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|  83.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|  83.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|  83.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|  83.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|  83.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|  83.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|  83.8M|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|  83.8M|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|  83.8M|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                    t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i];   \
  |  |  ------------------
  |  |  |  |   56|  83.8M|#define Ch(x,y,z)       (z ^ (x & (y ^ z)))
  |  |  ------------------
  |  |   97|  83.8M|     t1 = Sigma0(a) + Maj(a, b, c);                    \
  |  |  ------------------
  |  |  |  |   60|  83.8M|#define Sigma0(x)       (S(x, 2) ^ S(x, 13) ^ S(x, 22))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|  83.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|  83.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|  83.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|  83.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|  83.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|  83.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|  83.8M|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|  83.8M|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|  83.8M|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define Sigma0(x)       (S(x, 2) ^ S(x, 13) ^ S(x, 22))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|  83.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|  83.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|  83.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|  83.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|  83.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|  83.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|  83.8M|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|  83.8M|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|  83.8M|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  |  |               #define Sigma0(x)       (S(x, 2) ^ S(x, 13) ^ S(x, 22))
  |  |  |  |  ------------------
  |  |  |  |  |  |   58|  83.8M|#define S(x, n)         RORc((x),(n))
  |  |  |  |  |  |  ------------------
  |  |  |  |  |  |  |  |  283|  83.8M|#define RORc(word,i) ({ \
  |  |  |  |  |  |  |  |  284|  83.8M|   ulong32 __RORc_tmp = (word); \
  |  |  |  |  |  |  |  |  285|  83.8M|   __asm__ ("rorl %2, %0" : \
  |  |  |  |  |  |  |  |  286|  83.8M|            "=r" (__RORc_tmp) : \
  |  |  |  |  |  |  |  |  287|  83.8M|            "0" (__RORc_tmp), \
  |  |  |  |  |  |  |  |  288|  83.8M|            "I" (i)); \
  |  |  |  |  |  |  |  |  289|  83.8M|            __RORc_tmp; \
  |  |  |  |  |  |  |  |  290|  83.8M|   })
  |  |  |  |  |  |  ------------------
  |  |  |  |  ------------------
  |  |  ------------------
  |  |                    t1 = Sigma0(a) + Maj(a, b, c);                    \
  |  |  ------------------
  |  |  |  |   57|  83.8M|#define Maj(x,y,z)      (((x | y) & z) | (x & y))
  |  |  ------------------
  |  |   98|  83.8M|     d += t0;                                          \
  |  |   99|  83.8M|     h  = t0 + t1;
  ------------------
  103|  83.8M|         t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4];
  104|  83.8M|         S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t;
  105|  83.8M|     }
  106|       |#else
  107|       |#define RND(a,b,c,d,e,f,g,h,i,ki)                    \
  108|       |     t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i];   \
  109|       |     t1 = Sigma0(a) + Maj(a, b, c);                  \
  110|       |     d += t0;                                        \
  111|       |     h  = t0 + t1;
  112|       |
  113|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],0,0x428a2f98);
  114|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],1,0x71374491);
  115|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],2,0xb5c0fbcf);
  116|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],3,0xe9b5dba5);
  117|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],4,0x3956c25b);
  118|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],5,0x59f111f1);
  119|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],6,0x923f82a4);
  120|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],7,0xab1c5ed5);
  121|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],8,0xd807aa98);
  122|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],9,0x12835b01);
  123|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],10,0x243185be);
  124|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],11,0x550c7dc3);
  125|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],12,0x72be5d74);
  126|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],13,0x80deb1fe);
  127|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],14,0x9bdc06a7);
  128|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],15,0xc19bf174);
  129|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],16,0xe49b69c1);
  130|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],17,0xefbe4786);
  131|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],18,0x0fc19dc6);
  132|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],19,0x240ca1cc);
  133|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],20,0x2de92c6f);
  134|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],21,0x4a7484aa);
  135|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],22,0x5cb0a9dc);
  136|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],23,0x76f988da);
  137|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],24,0x983e5152);
  138|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],25,0xa831c66d);
  139|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],26,0xb00327c8);
  140|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],27,0xbf597fc7);
  141|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],28,0xc6e00bf3);
  142|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],29,0xd5a79147);
  143|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],30,0x06ca6351);
  144|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],31,0x14292967);
  145|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],32,0x27b70a85);
  146|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],33,0x2e1b2138);
  147|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],34,0x4d2c6dfc);
  148|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],35,0x53380d13);
  149|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],36,0x650a7354);
  150|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],37,0x766a0abb);
  151|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],38,0x81c2c92e);
  152|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],39,0x92722c85);
  153|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],40,0xa2bfe8a1);
  154|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],41,0xa81a664b);
  155|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],42,0xc24b8b70);
  156|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],43,0xc76c51a3);
  157|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],44,0xd192e819);
  158|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],45,0xd6990624);
  159|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],46,0xf40e3585);
  160|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],47,0x106aa070);
  161|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],48,0x19a4c116);
  162|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],49,0x1e376c08);
  163|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],50,0x2748774c);
  164|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],51,0x34b0bcb5);
  165|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],52,0x391c0cb3);
  166|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],53,0x4ed8aa4a);
  167|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],54,0x5b9cca4f);
  168|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],55,0x682e6ff3);
  169|       |    RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],56,0x748f82ee);
  170|       |    RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],57,0x78a5636f);
  171|       |    RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],58,0x84c87814);
  172|       |    RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],59,0x8cc70208);
  173|       |    RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],60,0x90befffa);
  174|       |    RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],61,0xa4506ceb);
  175|       |    RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],62,0xbef9a3f7);
  176|       |    RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],63,0xc67178f2);
  177|       |
  178|       |#undef RND
  179|       |
  180|       |#endif
  181|       |
  182|       |    /* feedback */
  183|  11.7M|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (183:17): [True: 10.4M, False: 1.30M]
  ------------------
  184|  10.4M|        md->sha256.state[i] = md->sha256.state[i] + S[i];
  185|  10.4M|    }
  186|  1.30M|    return CRYPT_OK;
  187|  1.30M|}

sha384_init:
   42|  3.26k|{
   43|  3.26k|    LTC_ARGCHK(md != NULL);
  ------------------
  |  |   32|  3.26k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 3.26k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   44|       |
   45|  3.26k|    md->sha512.curlen = 0;
   46|  3.26k|    md->sha512.length = 0;
   47|  3.26k|    md->sha512.state[0] = CONST64(0xcbbb9d5dc1059ed8);
  ------------------
  |  |  200|  3.26k|   #define CONST64(n) n ## ULL
  ------------------
   48|  3.26k|    md->sha512.state[1] = CONST64(0x629a292a367cd507);
  ------------------
  |  |  200|  3.26k|   #define CONST64(n) n ## ULL
  ------------------
   49|  3.26k|    md->sha512.state[2] = CONST64(0x9159015a3070dd17);
  ------------------
  |  |  200|  3.26k|   #define CONST64(n) n ## ULL
  ------------------
   50|  3.26k|    md->sha512.state[3] = CONST64(0x152fecd8f70e5939);
  ------------------
  |  |  200|  3.26k|   #define CONST64(n) n ## ULL
  ------------------
   51|  3.26k|    md->sha512.state[4] = CONST64(0x67332667ffc00b31);
  ------------------
  |  |  200|  3.26k|   #define CONST64(n) n ## ULL
  ------------------
   52|  3.26k|    md->sha512.state[5] = CONST64(0x8eb44a8768581511);
  ------------------
  |  |  200|  3.26k|   #define CONST64(n) n ## ULL
  ------------------
   53|  3.26k|    md->sha512.state[6] = CONST64(0xdb0c2e0d64f98fa7);
  ------------------
  |  |  200|  3.26k|   #define CONST64(n) n ## ULL
  ------------------
   54|  3.26k|    md->sha512.state[7] = CONST64(0x47b5481dbefa4fa4);
  ------------------
  |  |  200|  3.26k|   #define CONST64(n) n ## ULL
  ------------------
   55|  3.26k|    return CRYPT_OK;
   56|  3.26k|}
sha384_done:
   65|  12.0k|{
   66|  12.0k|   unsigned char buf[64];
   67|       |
   68|  12.0k|   LTC_ARGCHK(md  != NULL);
  ------------------
  |  |   32|  12.0k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 12.0k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   69|  12.0k|   LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|  12.0k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 12.0k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   70|       |
   71|  12.0k|    if (md->sha512.curlen >= sizeof(md->sha512.buf)) {
  ------------------
  |  Branch (71:9): [True: 0, False: 12.0k]
  ------------------
   72|      0|       return CRYPT_INVALID_ARG;
   73|      0|    }
   74|       |
   75|  12.0k|   sha512_done(md, buf);
   76|  12.0k|   XMEMCPY(out, buf, 48);
  ------------------
  |  |   39|  12.0k|#define XMEMCPY  memcpy
  ------------------
   77|       |#ifdef LTC_CLEAN_STACK
   78|       |   zeromem(buf, sizeof(buf));
   79|       |#endif
   80|  12.0k|   return CRYPT_OK;
   81|  12.0k|}

sha512_init:
  174|  1.56k|{
  175|  1.56k|    LTC_ARGCHK(md != NULL);
  ------------------
  |  |   32|  1.56k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1.56k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  176|  1.56k|    md->sha512.curlen = 0;
  177|  1.56k|    md->sha512.length = 0;
  178|  1.56k|    md->sha512.state[0] = CONST64(0x6a09e667f3bcc908);
  ------------------
  |  |  200|  1.56k|   #define CONST64(n) n ## ULL
  ------------------
  179|  1.56k|    md->sha512.state[1] = CONST64(0xbb67ae8584caa73b);
  ------------------
  |  |  200|  1.56k|   #define CONST64(n) n ## ULL
  ------------------
  180|  1.56k|    md->sha512.state[2] = CONST64(0x3c6ef372fe94f82b);
  ------------------
  |  |  200|  1.56k|   #define CONST64(n) n ## ULL
  ------------------
  181|  1.56k|    md->sha512.state[3] = CONST64(0xa54ff53a5f1d36f1);
  ------------------
  |  |  200|  1.56k|   #define CONST64(n) n ## ULL
  ------------------
  182|  1.56k|    md->sha512.state[4] = CONST64(0x510e527fade682d1);
  ------------------
  |  |  200|  1.56k|   #define CONST64(n) n ## ULL
  ------------------
  183|  1.56k|    md->sha512.state[5] = CONST64(0x9b05688c2b3e6c1f);
  ------------------
  |  |  200|  1.56k|   #define CONST64(n) n ## ULL
  ------------------
  184|  1.56k|    md->sha512.state[6] = CONST64(0x1f83d9abfb41bd6b);
  ------------------
  |  |  200|  1.56k|   #define CONST64(n) n ## ULL
  ------------------
  185|  1.56k|    md->sha512.state[7] = CONST64(0x5be0cd19137e2179);
  ------------------
  |  |  200|  1.56k|   #define CONST64(n) n ## ULL
  ------------------
  186|  1.56k|    return CRYPT_OK;
  187|  1.56k|}
sha512_done:
  205|  16.5k|{
  206|  16.5k|    int i;
  207|       |
  208|  16.5k|    LTC_ARGCHK(md  != NULL);
  ------------------
  |  |   32|  16.5k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 16.5k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  209|  16.5k|    LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|  16.5k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 16.5k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  210|       |
  211|  16.5k|    if (md->sha512.curlen >= sizeof(md->sha512.buf)) {
  ------------------
  |  Branch (211:9): [True: 0, False: 16.5k]
  ------------------
  212|      0|       return CRYPT_INVALID_ARG;
  213|      0|    }
  214|       |
  215|       |    /* increase the length of the message */
  216|  16.5k|    md->sha512.length += md->sha512.curlen * CONST64(8);
  ------------------
  |  |  200|  16.5k|   #define CONST64(n) n ## ULL
  ------------------
  217|       |
  218|       |    /* append the '1' bit */
  219|  16.5k|    md->sha512.buf[md->sha512.curlen++] = (unsigned char)0x80;
  220|       |
  221|       |    /* if the length is currently above 112 bytes we append zeros
  222|       |     * then compress.  Then we can fall back to padding zeros and length
  223|       |     * encoding like normal.
  224|       |     */
  225|  16.5k|    if (md->sha512.curlen > 112) {
  ------------------
  |  Branch (225:9): [True: 3.03k, False: 13.4k]
  ------------------
  226|  20.8k|        while (md->sha512.curlen < 128) {
  ------------------
  |  Branch (226:16): [True: 17.8k, False: 3.03k]
  ------------------
  227|  17.8k|            md->sha512.buf[md->sha512.curlen++] = (unsigned char)0;
  228|  17.8k|        }
  229|  3.03k|        sha512_compress(md, md->sha512.buf);
  230|  3.03k|        md->sha512.curlen = 0;
  231|  3.03k|    }
  232|       |
  233|       |    /* pad upto 120 bytes of zeroes
  234|       |     * note: that from 112 to 120 is the 64 MSB of the length.  We assume that you won't hash
  235|       |     * > 2^64 bits of data... :-)
  236|       |     */
  237|  1.04M|    while (md->sha512.curlen < 120) {
  ------------------
  |  Branch (237:12): [True: 1.02M, False: 16.5k]
  ------------------
  238|  1.02M|        md->sha512.buf[md->sha512.curlen++] = (unsigned char)0;
  239|  1.02M|    }
  240|       |
  241|       |    /* store length */
  242|  16.5k|    STORE64H(md->sha512.length, md->sha512.buf+120);
  ------------------
  |  |  101|  16.5k|#define STORE64H(x, y)                          \
  |  |  102|  16.5k|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|  16.5k|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|  16.5k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  243|  16.5k|    sha512_compress(md, md->sha512.buf);
  244|       |
  245|       |    /* copy output */
  246|   148k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (246:17): [True: 132k, False: 16.5k]
  ------------------
  247|   132k|        STORE64H(md->sha512.state[i], out+(8*i));
  ------------------
  |  |  101|   132k|#define STORE64H(x, y)                          \
  |  |  102|   132k|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|   132k|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|   132k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  248|   132k|    }
  249|       |#ifdef LTC_CLEAN_STACK
  250|       |    zeromem(md, sizeof(hash_state));
  251|       |#endif
  252|  16.5k|    return CRYPT_OK;
  253|  16.5k|}
sha512.c:sha512_compress:
   96|  39.0k|{
   97|  39.0k|    ulong64 S[8], W[80], t0, t1;
   98|  39.0k|    int i;
   99|       |
  100|       |    /* copy state into S */
  101|   351k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (101:17): [True: 312k, False: 39.0k]
  ------------------
  102|   312k|        S[i] = md->sha512.state[i];
  103|   312k|    }
  104|       |
  105|       |    /* copy the state into 1024-bits into W[0..15] */
  106|   663k|    for (i = 0; i < 16; i++) {
  ------------------
  |  Branch (106:17): [True: 624k, False: 39.0k]
  ------------------
  107|   624k|        LOAD64H(W[i], buf + (8*i));
  ------------------
  |  |  105|   624k|#define LOAD64H(x, y)                           \
  |  |  106|   624k|do { XMEMCPY (&(x), (y), 8);                    \
  |  |  ------------------
  |  |  |  |   39|   624k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  107|   624k|      (x) = __builtin_bswap64 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (107:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  108|   624k|    }
  109|       |
  110|       |    /* fill W[16..79] */
  111|  2.53M|    for (i = 16; i < 80; i++) {
  ------------------
  |  Branch (111:18): [True: 2.49M, False: 39.0k]
  ------------------
  112|  2.49M|        W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  ------------------
  |  |   88|  2.49M|#define Gamma1(x)       (S(x, 19) ^ S(x, 61) ^ R(x, 6))
  |  |  ------------------
  |  |  |  |   83|  2.49M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  2.49M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  2.49M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  2.49M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  2.49M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  2.49M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  2.49M|            "J" (i)); \
  |  |  |  |  |  |  390|  2.49M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  2.49M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma1(x)       (S(x, 19) ^ S(x, 61) ^ R(x, 6))
  |  |  ------------------
  |  |  |  |   83|  2.49M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  2.49M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  2.49M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  2.49M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  2.49M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  2.49M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  2.49M|            "J" (i)); \
  |  |  |  |  |  |  390|  2.49M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  2.49M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma1(x)       (S(x, 19) ^ S(x, 61) ^ R(x, 6))
  |  |  ------------------
  |  |  |  |   84|  2.49M|#define R(x, n)         (((x)&CONST64(0xFFFFFFFFFFFFFFFF))>>((ulong64)n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  200|  2.49M|   #define CONST64(n) n ## ULL
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16];
  ------------------
  |  |   87|  2.49M|#define Gamma0(x)       (S(x, 1) ^ S(x, 8) ^ R(x, 7))
  |  |  ------------------
  |  |  |  |   83|  2.49M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  2.49M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  2.49M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  2.49M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  2.49M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  2.49M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  2.49M|            "J" (i)); \
  |  |  |  |  |  |  390|  2.49M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  2.49M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma0(x)       (S(x, 1) ^ S(x, 8) ^ R(x, 7))
  |  |  ------------------
  |  |  |  |   83|  2.49M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  2.49M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  2.49M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  2.49M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  2.49M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  2.49M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  2.49M|            "J" (i)); \
  |  |  |  |  |  |  390|  2.49M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  2.49M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Gamma0(x)       (S(x, 1) ^ S(x, 8) ^ R(x, 7))
  |  |  ------------------
  |  |  |  |   84|  2.49M|#define R(x, n)         (((x)&CONST64(0xFFFFFFFFFFFFFFFF))>>((ulong64)n))
  |  |  |  |  ------------------
  |  |  |  |  |  |  200|  2.49M|   #define CONST64(n) n ## ULL
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  113|  2.49M|    }
  114|       |
  115|       |    /* Compress */
  116|  39.0k|#ifdef LTC_SMALL_CODE
  117|  3.16M|    for (i = 0; i < 80; i++) {
  ------------------
  |  Branch (117:17): [True: 3.12M, False: 39.0k]
  ------------------
  118|  3.12M|        t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
  ------------------
  |  |   86|  3.12M|#define Sigma1(x)       (S(x, 14) ^ S(x, 18) ^ S(x, 41))
  |  |  ------------------
  |  |  |  |   83|  3.12M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  3.12M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  3.12M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  3.12M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  3.12M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  3.12M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  3.12M|            "J" (i)); \
  |  |  |  |  |  |  390|  3.12M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  3.12M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Sigma1(x)       (S(x, 14) ^ S(x, 18) ^ S(x, 41))
  |  |  ------------------
  |  |  |  |   83|  3.12M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  3.12M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  3.12M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  3.12M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  3.12M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  3.12M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  3.12M|            "J" (i)); \
  |  |  |  |  |  |  390|  3.12M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  3.12M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Sigma1(x)       (S(x, 14) ^ S(x, 18) ^ S(x, 41))
  |  |  ------------------
  |  |  |  |   83|  3.12M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  3.12M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  3.12M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  3.12M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  3.12M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  3.12M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  3.12M|            "J" (i)); \
  |  |  |  |  |  |  390|  3.12M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  3.12M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
  ------------------
  |  |   81|  3.12M|#define Ch(x,y,z)       (z ^ (x & (y ^ z)))
  ------------------
  119|  3.12M|        t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]);
  ------------------
  |  |   85|  3.12M|#define Sigma0(x)       (S(x, 28) ^ S(x, 34) ^ S(x, 39))
  |  |  ------------------
  |  |  |  |   83|  3.12M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  3.12M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  3.12M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  3.12M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  3.12M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  3.12M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  3.12M|            "J" (i)); \
  |  |  |  |  |  |  390|  3.12M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  3.12M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Sigma0(x)       (S(x, 28) ^ S(x, 34) ^ S(x, 39))
  |  |  ------------------
  |  |  |  |   83|  3.12M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  3.12M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  3.12M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  3.12M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  3.12M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  3.12M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  3.12M|            "J" (i)); \
  |  |  |  |  |  |  390|  3.12M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  3.12M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  |  |               #define Sigma0(x)       (S(x, 28) ^ S(x, 34) ^ S(x, 39))
  |  |  ------------------
  |  |  |  |   83|  3.12M|#define S(x, n)         ROR64c(x, n)
  |  |  |  |  ------------------
  |  |  |  |  |  |  384|  3.12M|#define ROR64c(word,i) ({ \
  |  |  |  |  |  |  385|  3.12M|   ulong64 __ROR64c_tmp = word; \
  |  |  |  |  |  |  386|  3.12M|   __asm__ ("rorq %2, %0" : \
  |  |  |  |  |  |  387|  3.12M|            "=r" (__ROR64c_tmp) : \
  |  |  |  |  |  |  388|  3.12M|            "0" (__ROR64c_tmp), \
  |  |  |  |  |  |  389|  3.12M|            "J" (i)); \
  |  |  |  |  |  |  390|  3.12M|            __ROR64c_tmp; \
  |  |  |  |  |  |  391|  3.12M|   })
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
                      t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]);
  ------------------
  |  |   82|  3.12M|#define Maj(x,y,z)      (((x | y) & z) | (x & y))
  ------------------
  120|  3.12M|        S[7] = S[6];
  121|  3.12M|        S[6] = S[5];
  122|  3.12M|        S[5] = S[4];
  123|  3.12M|        S[4] = S[3] + t0;
  124|  3.12M|        S[3] = S[2];
  125|  3.12M|        S[2] = S[1];
  126|  3.12M|        S[1] = S[0];
  127|  3.12M|        S[0] = t0 + t1;
  128|  3.12M|    }
  129|       |#else
  130|       |#define RND(a,b,c,d,e,f,g,h,i)                    \
  131|       |     t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i];   \
  132|       |     t1 = Sigma0(a) + Maj(a, b, c);                  \
  133|       |     d += t0;                                        \
  134|       |     h  = t0 + t1;
  135|       |
  136|       |    for (i = 0; i < 80; i += 8) {
  137|       |        RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],i+0);
  138|       |        RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],i+1);
  139|       |        RND(S[6],S[7],S[0],S[1],S[2],S[3],S[4],S[5],i+2);
  140|       |        RND(S[5],S[6],S[7],S[0],S[1],S[2],S[3],S[4],i+3);
  141|       |        RND(S[4],S[5],S[6],S[7],S[0],S[1],S[2],S[3],i+4);
  142|       |        RND(S[3],S[4],S[5],S[6],S[7],S[0],S[1],S[2],i+5);
  143|       |        RND(S[2],S[3],S[4],S[5],S[6],S[7],S[0],S[1],i+6);
  144|       |        RND(S[1],S[2],S[3],S[4],S[5],S[6],S[7],S[0],i+7);
  145|       |    }
  146|       |#endif
  147|       |
  148|       |
  149|       |    /* feedback */
  150|   351k|    for (i = 0; i < 8; i++) {
  ------------------
  |  Branch (150:17): [True: 312k, False: 39.0k]
  ------------------
  151|   312k|        md->sha512.state[i] = md->sha512.state[i] + S[i];
  152|   312k|    }
  153|       |
  154|  39.0k|    return CRYPT_OK;
  155|  39.0k|}

sha1_process:
  491|  78.1k|int func_name (hash_state * md, const unsigned char *in, unsigned long inlen)               \
  492|  78.1k|{                                                                                           \
  493|  78.1k|    unsigned long n;                                                                        \
  494|  78.1k|    int           err;                                                                      \
  495|  78.1k|    LTC_ARGCHK(md != NULL);                                                                 \
  ------------------
  |  |   32|  78.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 78.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  496|  78.1k|    LTC_ARGCHK(in != NULL);                                                                 \
  ------------------
  |  |   32|  78.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 78.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  497|  78.1k|    if (md-> state_var .curlen > sizeof(md-> state_var .buf)) {                             \
  ------------------
  |  Branch (497:9): [True: 0, False: 78.1k]
  ------------------
  498|      0|       return CRYPT_INVALID_ARG;                                                            \
  499|      0|    }                                                                                       \
  500|  78.1k|    if ((md-> state_var .length + inlen) < md-> state_var .length) {                        \
  ------------------
  |  Branch (500:9): [True: 0, False: 78.1k]
  ------------------
  501|      0|      return CRYPT_HASH_OVERFLOW;                                                           \
  502|      0|    }                                                                                       \
  503|   919k|    while (inlen > 0) {                                                                     \
  ------------------
  |  Branch (503:12): [True: 841k, False: 78.1k]
  ------------------
  504|   841k|        if (md-> state_var .curlen == 0 && inlen >= block_size) {                           \
  ------------------
  |  Branch (504:13): [True: 796k, False: 45.1k]
  |  Branch (504:44): [True: 762k, False: 34.5k]
  ------------------
  505|   762k|           if ((err = compress_name (md, (unsigned char *)in)) != CRYPT_OK) {               \
  ------------------
  |  Branch (505:16): [True: 0, False: 762k]
  ------------------
  506|      0|              return err;                                                                   \
  507|      0|           }                                                                                \
  508|   762k|           md-> state_var .length += block_size * 8;                                        \
  509|   762k|           in             += block_size;                                                    \
  510|   762k|           inlen          -= block_size;                                                    \
  511|   762k|        } else {                                                                            \
  512|  79.7k|           n = MIN(inlen, (block_size - md-> state_var .curlen));                           \
  ------------------
  |  |  425|  79.7k|   #define MIN(x, y) ( ((x)<(y))?(x):(y) )
  |  |  ------------------
  |  |  |  Branch (425:24): [True: 64.1k, False: 15.5k]
  |  |  ------------------
  ------------------
  513|  79.7k|           XMEMCPY(md-> state_var .buf + md-> state_var.curlen, in, (size_t)n);             \
  ------------------
  |  |   39|  79.7k|#define XMEMCPY  memcpy
  ------------------
  514|  79.7k|           md-> state_var .curlen += n;                                                     \
  515|  79.7k|           in             += n;                                                             \
  516|  79.7k|           inlen          -= n;                                                             \
  517|  79.7k|           if (md-> state_var .curlen == block_size) {                                      \
  ------------------
  |  Branch (517:16): [True: 15.5k, False: 64.1k]
  ------------------
  518|  15.5k|              if ((err = compress_name (md, md-> state_var .buf)) != CRYPT_OK) {            \
  ------------------
  |  Branch (518:19): [True: 0, False: 15.5k]
  ------------------
  519|      0|                 return err;                                                                \
  520|      0|              }                                                                             \
  521|  15.5k|              md-> state_var .length += 8*block_size;                                       \
  522|  15.5k|              md-> state_var .curlen = 0;                                                   \
  523|  15.5k|           }                                                                                \
  524|  79.7k|       }                                                                                    \
  525|   841k|    }                                                                                       \
  526|  78.1k|    return CRYPT_OK;                                                                        \
  527|  78.1k|}
sha256_process:
  491|   681k|int func_name (hash_state * md, const unsigned char *in, unsigned long inlen)               \
  492|   681k|{                                                                                           \
  493|   681k|    unsigned long n;                                                                        \
  494|   681k|    int           err;                                                                      \
  495|   681k|    LTC_ARGCHK(md != NULL);                                                                 \
  ------------------
  |  |   32|   681k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 681k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  496|   681k|    LTC_ARGCHK(in != NULL);                                                                 \
  ------------------
  |  |   32|   681k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 681k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  497|   681k|    if (md-> state_var .curlen > sizeof(md-> state_var .buf)) {                             \
  ------------------
  |  Branch (497:9): [True: 0, False: 681k]
  ------------------
  498|      0|       return CRYPT_INVALID_ARG;                                                            \
  499|      0|    }                                                                                       \
  500|   681k|    if ((md-> state_var .length + inlen) < md-> state_var .length) {                        \
  ------------------
  |  Branch (500:9): [True: 0, False: 681k]
  ------------------
  501|      0|      return CRYPT_HASH_OVERFLOW;                                                           \
  502|      0|    }                                                                                       \
  503|  2.30M|    while (inlen > 0) {                                                                     \
  ------------------
  |  Branch (503:12): [True: 1.62M, False: 681k]
  ------------------
  504|  1.62M|        if (md-> state_var .curlen == 0 && inlen >= block_size) {                           \
  ------------------
  |  Branch (504:13): [True: 1.28M, False: 335k]
  |  Branch (504:44): [True: 939k, False: 347k]
  ------------------
  505|   939k|           if ((err = compress_name (md, (unsigned char *)in)) != CRYPT_OK) {               \
  ------------------
  |  Branch (505:16): [True: 0, False: 939k]
  ------------------
  506|      0|              return err;                                                                   \
  507|      0|           }                                                                                \
  508|   939k|           md-> state_var .length += block_size * 8;                                        \
  509|   939k|           in             += block_size;                                                    \
  510|   939k|           inlen          -= block_size;                                                    \
  511|   939k|        } else {                                                                            \
  512|   683k|           n = MIN(inlen, (block_size - md-> state_var .curlen));                           \
  ------------------
  |  |  425|   683k|   #define MIN(x, y) ( ((x)<(y))?(x):(y) )
  |  |  ------------------
  |  |  |  Branch (425:24): [True: 648k, False: 34.2k]
  |  |  ------------------
  ------------------
  513|   683k|           XMEMCPY(md-> state_var .buf + md-> state_var.curlen, in, (size_t)n);             \
  ------------------
  |  |   39|   683k|#define XMEMCPY  memcpy
  ------------------
  514|   683k|           md-> state_var .curlen += n;                                                     \
  515|   683k|           in             += n;                                                             \
  516|   683k|           inlen          -= n;                                                             \
  517|   683k|           if (md-> state_var .curlen == block_size) {                                      \
  ------------------
  |  Branch (517:16): [True: 34.2k, False: 648k]
  ------------------
  518|  34.2k|              if ((err = compress_name (md, md-> state_var .buf)) != CRYPT_OK) {            \
  ------------------
  |  Branch (518:19): [True: 0, False: 34.2k]
  ------------------
  519|      0|                 return err;                                                                \
  520|      0|              }                                                                             \
  521|  34.2k|              md-> state_var .length += 8*block_size;                                       \
  522|  34.2k|              md-> state_var .curlen = 0;                                                   \
  523|  34.2k|           }                                                                                \
  524|   683k|       }                                                                                    \
  525|  1.62M|    }                                                                                       \
  526|   681k|    return CRYPT_OK;                                                                        \
  527|   681k|}
sha512_process:
  491|  32.1k|int func_name (hash_state * md, const unsigned char *in, unsigned long inlen)               \
  492|  32.1k|{                                                                                           \
  493|  32.1k|    unsigned long n;                                                                        \
  494|  32.1k|    int           err;                                                                      \
  495|  32.1k|    LTC_ARGCHK(md != NULL);                                                                 \
  ------------------
  |  |   32|  32.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 32.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  496|  32.1k|    LTC_ARGCHK(in != NULL);                                                                 \
  ------------------
  |  |   32|  32.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 32.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  497|  32.1k|    if (md-> state_var .curlen > sizeof(md-> state_var .buf)) {                             \
  ------------------
  |  Branch (497:9): [True: 0, False: 32.1k]
  ------------------
  498|      0|       return CRYPT_INVALID_ARG;                                                            \
  499|      0|    }                                                                                       \
  500|  32.1k|    if ((md-> state_var .length + inlen) < md-> state_var .length) {                        \
  ------------------
  |  Branch (500:9): [True: 0, False: 32.1k]
  ------------------
  501|      0|      return CRYPT_HASH_OVERFLOW;                                                           \
  502|      0|    }                                                                                       \
  503|  83.8k|    while (inlen > 0) {                                                                     \
  ------------------
  |  Branch (503:12): [True: 51.6k, False: 32.1k]
  ------------------
  504|  51.6k|        if (md-> state_var .curlen == 0 && inlen >= block_size) {                           \
  ------------------
  |  Branch (504:13): [True: 24.3k, False: 27.3k]
  |  Branch (504:44): [True: 16.3k, False: 7.95k]
  ------------------
  505|  16.3k|           if ((err = compress_name (md, (unsigned char *)in)) != CRYPT_OK) {               \
  ------------------
  |  Branch (505:16): [True: 0, False: 16.3k]
  ------------------
  506|      0|              return err;                                                                   \
  507|      0|           }                                                                                \
  508|  16.3k|           md-> state_var .length += block_size * 8;                                        \
  509|  16.3k|           in             += block_size;                                                    \
  510|  16.3k|           inlen          -= block_size;                                                    \
  511|  35.3k|        } else {                                                                            \
  512|  35.3k|           n = MIN(inlen, (block_size - md-> state_var .curlen));                           \
  ------------------
  |  |  425|  35.3k|   #define MIN(x, y) ( ((x)<(y))?(x):(y) )
  |  |  ------------------
  |  |  |  Branch (425:24): [True: 32.1k, False: 3.12k]
  |  |  ------------------
  ------------------
  513|  35.3k|           XMEMCPY(md-> state_var .buf + md-> state_var.curlen, in, (size_t)n);             \
  ------------------
  |  |   39|  35.3k|#define XMEMCPY  memcpy
  ------------------
  514|  35.3k|           md-> state_var .curlen += n;                                                     \
  515|  35.3k|           in             += n;                                                             \
  516|  35.3k|           inlen          -= n;                                                             \
  517|  35.3k|           if (md-> state_var .curlen == block_size) {                                      \
  ------------------
  |  Branch (517:16): [True: 3.12k, False: 32.1k]
  ------------------
  518|  3.12k|              if ((err = compress_name (md, md-> state_var .buf)) != CRYPT_OK) {            \
  ------------------
  |  Branch (518:19): [True: 0, False: 3.12k]
  ------------------
  519|      0|                 return err;                                                                \
  520|      0|              }                                                                             \
  521|  3.12k|              md-> state_var .length += 8*block_size;                                       \
  522|  3.12k|              md-> state_var .curlen = 0;                                                   \
  523|  3.12k|           }                                                                                \
  524|  35.3k|       }                                                                                    \
  525|  51.6k|    }                                                                                       \
  526|  32.1k|    return CRYPT_OK;                                                                        \
  527|  32.1k|}

sha1.c:ROL:
  258|  52.4M|{
  259|  52.4M|   asm ("roll %%cl,%0"
  260|  52.4M|      :"=r" (word)
  261|  52.4M|      :"0" (word),"c" (i));
  262|  52.4M|   return word;
  263|  52.4M|}
chacha_crypt.c:ROL:
  258|  4.58G|{
  259|  4.58G|   asm ("roll %%cl,%0"
  260|  4.58G|      :"=r" (word)
  261|  4.58G|      :"0" (word),"c" (i));
  262|  4.58G|   return word;
  263|  4.58G|}

hmac_done:
   28|  23.2k|{
   29|  23.2k|    unsigned char buf[MAXBLOCKSIZE], isha[MAXBLOCKSIZE];
   30|  23.2k|    unsigned long hashsize, i;
   31|  23.2k|    int hash, err;
   32|       |
   33|  23.2k|    LTC_ARGCHK(hmac  != NULL);
  ------------------
  |  |   32|  23.2k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 23.2k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   34|  23.2k|    LTC_ARGCHK(out   != NULL);
  ------------------
  |  |   32|  23.2k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 23.2k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   35|       |
   36|       |    /* test hash */
   37|  23.2k|    hash = hmac->hash;
   38|  23.2k|    if((err = hash_is_valid(hash)) != CRYPT_OK) {
  ------------------
  |  Branch (38:8): [True: 0, False: 23.2k]
  ------------------
   39|      0|        return err;
   40|      0|    }
   41|       |
   42|       |    /* get the hash message digest size */
   43|  23.2k|    hashsize = hash_descriptor[hash].hashsize;
   44|       |
   45|  23.2k|    if ((err = hash_descriptor[hash].done(&hmac->md, isha)) != CRYPT_OK) {
  ------------------
  |  Branch (45:9): [True: 0, False: 23.2k]
  ------------------
   46|      0|       goto LBL_ERR;
   47|      0|    }
   48|       |
   49|       |    /* Create the second HMAC vector vector for step (3) */
   50|  1.51M|    for(i=0; i < LTC_HMAC_BLOCKSIZE; i++) {
  ------------------
  |  |   18|  1.51M|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
  |  Branch (50:14): [True: 1.49M, False: 23.2k]
  ------------------
   51|  1.49M|        buf[i] = hmac->key[i] ^ 0x5C;
   52|  1.49M|    }
   53|       |
   54|       |    /* Now calculate the "outer" hash for step (5), (6), and (7) */
   55|  23.2k|    if ((err = hash_descriptor[hash].init(&hmac->md)) != CRYPT_OK) {
  ------------------
  |  Branch (55:9): [True: 0, False: 23.2k]
  ------------------
   56|      0|       goto LBL_ERR;
   57|      0|    }
   58|  23.2k|    if ((err = hash_descriptor[hash].process(&hmac->md, buf, LTC_HMAC_BLOCKSIZE)) != CRYPT_OK) {
  ------------------
  |  |   18|  23.2k|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
  |  Branch (58:9): [True: 0, False: 23.2k]
  ------------------
   59|      0|       goto LBL_ERR;
   60|      0|    }
   61|  23.2k|    if ((err = hash_descriptor[hash].process(&hmac->md, isha, hashsize)) != CRYPT_OK) {
  ------------------
  |  Branch (61:9): [True: 0, False: 23.2k]
  ------------------
   62|      0|       goto LBL_ERR;
   63|      0|    }
   64|  23.2k|    if ((err = hash_descriptor[hash].done(&hmac->md, buf)) != CRYPT_OK) {
  ------------------
  |  Branch (64:9): [True: 0, False: 23.2k]
  ------------------
   65|      0|       goto LBL_ERR;
   66|      0|    }
   67|       |
   68|       |    /* copy to output  */
   69|   684k|    for (i = 0; i < hashsize && i < *outlen; i++) {
  ------------------
  |  Branch (69:17): [True: 661k, False: 23.2k]
  |  Branch (69:33): [True: 661k, False: 0]
  ------------------
   70|   661k|        out[i] = buf[i];
   71|   661k|    }
   72|  23.2k|    *outlen = i;
   73|       |
   74|  23.2k|    err = CRYPT_OK;
   75|  23.2k|LBL_ERR:
   76|  23.2k|    XFREE(hmac->key);
  ------------------
  |  |   17|  23.2k|#define XFREE m_free_direct
  ------------------
   77|       |#ifdef LTC_CLEAN_STACK
   78|       |    zeromem(isha, hashsize);
   79|       |    zeromem(buf,  hashsize);
   80|       |    zeromem(hmac, sizeof(*hmac));
   81|       |#endif
   82|       |
   83|  23.2k|    return err;
   84|  23.2k|}

hmac_init:
   29|  23.2k|{
   30|  23.2k|    unsigned char buf[MAXBLOCKSIZE];
   31|  23.2k|    unsigned long hashsize;
   32|  23.2k|    unsigned long i, z;
   33|  23.2k|    int err;
   34|       |
   35|  23.2k|    LTC_ARGCHK(hmac != NULL);
  ------------------
  |  |   32|  23.2k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 23.2k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   36|  23.2k|    LTC_ARGCHK(key  != NULL);
  ------------------
  |  |   32|  23.2k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 23.2k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   37|       |
   38|       |    /* valid hash? */
   39|  23.2k|    if ((err = hash_is_valid(hash)) != CRYPT_OK) {
  ------------------
  |  Branch (39:9): [True: 0, False: 23.2k]
  ------------------
   40|      0|        return err;
   41|      0|    }
   42|  23.2k|    hmac->hash = hash;
   43|  23.2k|    hashsize   = hash_descriptor[hash].hashsize;
   44|       |
   45|       |    /* valid key length? */
   46|  23.2k|    if (keylen == 0) {
  ------------------
  |  Branch (46:9): [True: 0, False: 23.2k]
  ------------------
   47|      0|        return CRYPT_INVALID_KEYSIZE;
   48|      0|    }
   49|       |
   50|       |    /* allocate memory for key */
   51|  23.2k|    hmac->key = XMALLOC(LTC_HMAC_BLOCKSIZE);
  ------------------
  |  |   16|  23.2k|#define XMALLOC m_malloc
  ------------------
                  hmac->key = XMALLOC(LTC_HMAC_BLOCKSIZE);
  ------------------
  |  |   18|  23.2k|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
   52|  23.2k|    if (hmac->key == NULL) {
  ------------------
  |  Branch (52:9): [True: 0, False: 23.2k]
  ------------------
   53|      0|       return CRYPT_MEM;
   54|      0|    }
   55|       |
   56|       |    /* (1) make sure we have a large enough key */
   57|  23.2k|    if(keylen > LTC_HMAC_BLOCKSIZE) {
  ------------------
  |  |   18|  23.2k|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
  |  Branch (57:8): [True: 0, False: 23.2k]
  ------------------
   58|      0|        z = LTC_HMAC_BLOCKSIZE;
  ------------------
  |  |   18|      0|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
   59|      0|        if ((err = hash_memory(hash, key, keylen, hmac->key, &z)) != CRYPT_OK) {
  ------------------
  |  Branch (59:13): [True: 0, False: 0]
  ------------------
   60|      0|           goto LBL_ERR;
   61|      0|        }
   62|      0|        keylen = hashsize;
   63|  23.2k|    } else {
   64|  23.2k|        XMEMCPY(hmac->key, key, (size_t)keylen);
  ------------------
  |  |   39|  23.2k|#define XMEMCPY  memcpy
  ------------------
   65|  23.2k|    }
   66|       |
   67|  23.2k|    if(keylen < LTC_HMAC_BLOCKSIZE) {
  ------------------
  |  |   18|  23.2k|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
  |  Branch (67:8): [True: 23.2k, False: 0]
  ------------------
   68|  23.2k|       zeromem((hmac->key) + keylen, (size_t)(LTC_HMAC_BLOCKSIZE - keylen));
  ------------------
  |  |   18|  23.2k|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
   69|  23.2k|    }
   70|       |
   71|       |    /* Create the initialization vector for step (3) */
   72|  1.51M|    for(i=0; i < LTC_HMAC_BLOCKSIZE;   i++) {
  ------------------
  |  |   18|  1.51M|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
  |  Branch (72:14): [True: 1.49M, False: 23.2k]
  ------------------
   73|  1.49M|       buf[i] = hmac->key[i] ^ 0x36;
   74|  1.49M|    }
   75|       |
   76|       |    /* Pre-pend that to the hash data */
   77|  23.2k|    if ((err = hash_descriptor[hash].init(&hmac->md)) != CRYPT_OK) {
  ------------------
  |  Branch (77:9): [True: 0, False: 23.2k]
  ------------------
   78|      0|       goto LBL_ERR;
   79|      0|    }
   80|       |
   81|  23.2k|    if ((err = hash_descriptor[hash].process(&hmac->md, buf, LTC_HMAC_BLOCKSIZE)) != CRYPT_OK) {
  ------------------
  |  |   18|  23.2k|#define LTC_HMAC_BLOCKSIZE hash_descriptor[hash].blocksize
  ------------------
  |  Branch (81:9): [True: 0, False: 23.2k]
  ------------------
   82|      0|       goto LBL_ERR;
   83|      0|    }
   84|  23.2k|    goto done;
   85|  23.2k|LBL_ERR:
   86|       |    /* free the key since we failed */
   87|      0|    XFREE(hmac->key);
  ------------------
  |  |   17|      0|#define XFREE m_free_direct
  ------------------
   88|  23.2k|done:
   89|       |#ifdef LTC_CLEAN_STACK
   90|       |   zeromem(buf, LTC_HMAC_BLOCKSIZE);
   91|       |#endif
   92|       |
   93|  23.2k|   return err;
   94|      0|}

hmac_process:
   26|  46.5k|{
   27|  46.5k|    int err;
   28|  46.5k|    LTC_ARGCHK(hmac != NULL);
  ------------------
  |  |   32|  46.5k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 46.5k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   29|  46.5k|    LTC_ARGCHK(in != NULL);
  ------------------
  |  |   32|  46.5k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 46.5k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   30|  46.5k|    if ((err = hash_is_valid(hmac->hash)) != CRYPT_OK) {
  ------------------
  |  Branch (30:9): [True: 0, False: 46.5k]
  ------------------
   31|      0|        return err;
   32|      0|    }
   33|  46.5k|    return hash_descriptor[hmac->hash].process(&hmac->md, in, inlen);
   34|  46.5k|}

poly1305_init:
   90|   233k|{
   91|   233k|   LTC_ARGCHK(st  != NULL);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   92|   233k|   LTC_ARGCHK(key != NULL);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   93|   233k|   LTC_ARGCHK(keylen == 32);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   94|       |
   95|       |   /* r &= 0xffffffc0ffffffc0ffffffc0fffffff */
   96|   233k|   LOAD32L(st->r[0], key +  0); st->r[0] = (st->r[0]     ) & 0x3ffffff;
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   97|   233k|   LOAD32L(st->r[1], key +  3); st->r[1] = (st->r[1] >> 2) & 0x3ffff03;
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   98|   233k|   LOAD32L(st->r[2], key +  6); st->r[2] = (st->r[2] >> 4) & 0x3ffc0ff;
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   99|   233k|   LOAD32L(st->r[3], key +  9); st->r[3] = (st->r[3] >> 6) & 0x3f03fff;
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
  100|   233k|   LOAD32L(st->r[4], key + 12); st->r[4] = (st->r[4] >> 8) & 0x00fffff;
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
  101|       |
  102|       |   /* h = 0 */
  103|   233k|   st->h[0] = 0;
  104|   233k|   st->h[1] = 0;
  105|   233k|   st->h[2] = 0;
  106|   233k|   st->h[3] = 0;
  107|   233k|   st->h[4] = 0;
  108|       |
  109|       |   /* save pad for later */
  110|   233k|   LOAD32L(st->pad[0], key + 16);
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
  111|   233k|   LOAD32L(st->pad[1], key + 20);
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
  112|   233k|   LOAD32L(st->pad[2], key + 24);
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
  113|   233k|   LOAD32L(st->pad[3], key + 28);
  ------------------
  |  |  167|   233k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
  114|       |
  115|   233k|   st->leftover = 0;
  116|   233k|   st->final = 0;
  117|   233k|   return CRYPT_OK;
  118|   233k|}
poly1305_process:
  128|   233k|{
  129|   233k|   unsigned long i;
  130|       |
  131|   233k|   if (inlen == 0) return CRYPT_OK; /* nothing to do */
  ------------------
  |  Branch (131:8): [True: 0, False: 233k]
  ------------------
  132|   233k|   LTC_ARGCHK(st != NULL);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  133|   233k|   LTC_ARGCHK(in != NULL);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  134|       |
  135|       |   /* handle leftover */
  136|   233k|   if (st->leftover) {
  ------------------
  |  Branch (136:8): [True: 0, False: 233k]
  ------------------
  137|      0|      unsigned long want = (16 - st->leftover);
  138|      0|      if (want > inlen) want = inlen;
  ------------------
  |  Branch (138:11): [True: 0, False: 0]
  ------------------
  139|      0|      for (i = 0; i < want; i++) st->buffer[st->leftover + i] = in[i];
  ------------------
  |  Branch (139:19): [True: 0, False: 0]
  ------------------
  140|      0|      inlen -= want;
  141|      0|      in += want;
  142|      0|      st->leftover += want;
  143|      0|      if (st->leftover < 16) return CRYPT_OK;
  ------------------
  |  Branch (143:11): [True: 0, False: 0]
  ------------------
  144|      0|      _poly1305_block(st, st->buffer, 16);
  145|      0|      st->leftover = 0;
  146|      0|   }
  147|       |
  148|       |   /* process full blocks */
  149|   233k|   if (inlen >= 16) {
  ------------------
  |  Branch (149:8): [True: 233k, False: 0]
  ------------------
  150|   233k|      unsigned long want = (inlen & ~(16 - 1));
  151|   233k|      _poly1305_block(st, in, want);
  152|   233k|      in += want;
  153|   233k|      inlen -= want;
  154|   233k|   }
  155|       |
  156|       |   /* store leftover */
  157|   233k|   if (inlen) {
  ------------------
  |  Branch (157:8): [True: 233k, False: 0]
  ------------------
  158|  2.05M|      for (i = 0; i < inlen; i++) st->buffer[st->leftover + i] = in[i];
  ------------------
  |  Branch (158:19): [True: 1.82M, False: 233k]
  ------------------
  159|   233k|      st->leftover += inlen;
  160|   233k|   }
  161|   233k|   return CRYPT_OK;
  162|   233k|}
poly1305_done:
  172|   233k|{
  173|   233k|   ulong32 h0,h1,h2,h3,h4,c;
  174|   233k|   ulong32 g0,g1,g2,g3,g4;
  175|   233k|   ulong64 f;
  176|   233k|   ulong32 mask;
  177|       |
  178|   233k|   LTC_ARGCHK(st     != NULL);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  179|   233k|   LTC_ARGCHK(mac    != NULL);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  180|   233k|   LTC_ARGCHK(maclen != NULL);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  181|   233k|   LTC_ARGCHK(*maclen >= 16);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
  182|       |
  183|       |   /* process the remaining block */
  184|   233k|   if (st->leftover) {
  ------------------
  |  Branch (184:8): [True: 233k, False: 0]
  ------------------
  185|   233k|      unsigned long i = st->leftover;
  186|   233k|      st->buffer[i++] = 1;
  187|  1.91M|      for (; i < 16; i++) st->buffer[i] = 0;
  ------------------
  |  Branch (187:14): [True: 1.67M, False: 233k]
  ------------------
  188|   233k|      st->final = 1;
  189|   233k|      _poly1305_block(st, st->buffer, 16);
  190|   233k|   }
  191|       |
  192|       |   /* fully carry h */
  193|   233k|   h0 = st->h[0];
  194|   233k|   h1 = st->h[1];
  195|   233k|   h2 = st->h[2];
  196|   233k|   h3 = st->h[3];
  197|   233k|   h4 = st->h[4];
  198|       |
  199|   233k|                c = h1 >> 26; h1 = h1 & 0x3ffffff;
  200|   233k|   h2 +=     c; c = h2 >> 26; h2 = h2 & 0x3ffffff;
  201|   233k|   h3 +=     c; c = h3 >> 26; h3 = h3 & 0x3ffffff;
  202|   233k|   h4 +=     c; c = h4 >> 26; h4 = h4 & 0x3ffffff;
  203|   233k|   h0 += c * 5; c = h0 >> 26; h0 = h0 & 0x3ffffff;
  204|   233k|   h1 +=     c;
  205|       |
  206|       |   /* compute h + -p */
  207|   233k|   g0 = h0 + 5; c = g0 >> 26; g0 &= 0x3ffffff;
  208|   233k|   g1 = h1 + c; c = g1 >> 26; g1 &= 0x3ffffff;
  209|   233k|   g2 = h2 + c; c = g2 >> 26; g2 &= 0x3ffffff;
  210|   233k|   g3 = h3 + c; c = g3 >> 26; g3 &= 0x3ffffff;
  211|   233k|   g4 = h4 + c - (1UL << 26);
  212|       |
  213|       |   /* select h if h < p, or h + -p if h >= p */
  214|   233k|   mask = (g4 >> 31) - 1;
  215|   233k|   g0 &= mask;
  216|   233k|   g1 &= mask;
  217|   233k|   g2 &= mask;
  218|   233k|   g3 &= mask;
  219|   233k|   g4 &= mask;
  220|   233k|   mask = ~mask;
  221|   233k|   h0 = (h0 & mask) | g0;
  222|   233k|   h1 = (h1 & mask) | g1;
  223|   233k|   h2 = (h2 & mask) | g2;
  224|   233k|   h3 = (h3 & mask) | g3;
  225|   233k|   h4 = (h4 & mask) | g4;
  226|       |
  227|       |   /* h = h % (2^128) */
  228|   233k|   h0 = ((h0      ) | (h1 << 26)) & 0xffffffff;
  229|   233k|   h1 = ((h1 >>  6) | (h2 << 20)) & 0xffffffff;
  230|   233k|   h2 = ((h2 >> 12) | (h3 << 14)) & 0xffffffff;
  231|   233k|   h3 = ((h3 >> 18) | (h4 <<  8)) & 0xffffffff;
  232|       |
  233|       |   /* mac = (h + pad) % (2^128) */
  234|   233k|   f = (ulong64)h0 + st->pad[0]            ; h0 = (ulong32)f;
  235|   233k|   f = (ulong64)h1 + st->pad[1] + (f >> 32); h1 = (ulong32)f;
  236|   233k|   f = (ulong64)h2 + st->pad[2] + (f >> 32); h2 = (ulong32)f;
  237|   233k|   f = (ulong64)h3 + st->pad[3] + (f >> 32); h3 = (ulong32)f;
  238|       |
  239|   233k|   STORE32L(h0, mac +  0);
  ------------------
  |  |  164|   233k|  do { ulong32 __t = (x); XMEMCPY(y, &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (164:56): [Folded - Ignored]
  |  |  ------------------
  ------------------
  240|   233k|   STORE32L(h1, mac +  4);
  ------------------
  |  |  164|   233k|  do { ulong32 __t = (x); XMEMCPY(y, &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (164:56): [Folded - Ignored]
  |  |  ------------------
  ------------------
  241|   233k|   STORE32L(h2, mac +  8);
  ------------------
  |  |  164|   233k|  do { ulong32 __t = (x); XMEMCPY(y, &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (164:56): [Folded - Ignored]
  |  |  ------------------
  ------------------
  242|   233k|   STORE32L(h3, mac + 12);
  ------------------
  |  |  164|   233k|  do { ulong32 __t = (x); XMEMCPY(y, &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (164:56): [Folded - Ignored]
  |  |  ------------------
  ------------------
  243|       |
  244|       |   /* zero out the state */
  245|   233k|   st->h[0] = 0;
  246|   233k|   st->h[1] = 0;
  247|   233k|   st->h[2] = 0;
  248|   233k|   st->h[3] = 0;
  249|   233k|   st->h[4] = 0;
  250|   233k|   st->r[0] = 0;
  251|   233k|   st->r[1] = 0;
  252|   233k|   st->r[2] = 0;
  253|   233k|   st->r[3] = 0;
  254|   233k|   st->r[4] = 0;
  255|   233k|   st->pad[0] = 0;
  256|   233k|   st->pad[1] = 0;
  257|   233k|   st->pad[2] = 0;
  258|   233k|   st->pad[3] = 0;
  259|       |
  260|   233k|   *maclen = 16;
  261|   233k|   return CRYPT_OK;
  262|   233k|}
poly1305.c:_poly1305_block:
   21|   466k|{
   22|   466k|   const unsigned long hibit = (st->final) ? 0 : (1UL << 24); /* 1 << 128 */
  ------------------
  |  Branch (22:32): [True: 233k, False: 233k]
  ------------------
   23|   466k|   ulong32 r0,r1,r2,r3,r4;
   24|   466k|   ulong32 s1,s2,s3,s4;
   25|   466k|   ulong32 h0,h1,h2,h3,h4;
   26|   466k|   ulong32 tmp;
   27|   466k|   ulong64 d0,d1,d2,d3,d4;
   28|   466k|   ulong32 c;
   29|       |
   30|   466k|   r0 = st->r[0];
   31|   466k|   r1 = st->r[1];
   32|   466k|   r2 = st->r[2];
   33|   466k|   r3 = st->r[3];
   34|   466k|   r4 = st->r[4];
   35|       |
   36|   466k|   s1 = r1 * 5;
   37|   466k|   s2 = r2 * 5;
   38|   466k|   s3 = r3 * 5;
   39|   466k|   s4 = r4 * 5;
   40|       |
   41|   466k|   h0 = st->h[0];
   42|   466k|   h1 = st->h[1];
   43|   466k|   h2 = st->h[2];
   44|   466k|   h3 = st->h[3];
   45|   466k|   h4 = st->h[4];
   46|       |
   47|  55.6M|   while (inlen >= 16) {
  ------------------
  |  Branch (47:11): [True: 55.1M, False: 466k]
  ------------------
   48|       |      /* h += in[i] */
   49|  55.1M|      LOAD32L(tmp, in+ 0); h0 += (tmp     ) & 0x3ffffff;
  ------------------
  |  |  167|  55.1M|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  55.1M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   50|  55.1M|      LOAD32L(tmp, in+ 3); h1 += (tmp >> 2) & 0x3ffffff;
  ------------------
  |  |  167|  55.1M|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  55.1M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   51|  55.1M|      LOAD32L(tmp, in+ 6); h2 += (tmp >> 4) & 0x3ffffff;
  ------------------
  |  |  167|  55.1M|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  55.1M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   52|  55.1M|      LOAD32L(tmp, in+ 9); h3 += (tmp >> 6) & 0x3ffffff;
  ------------------
  |  |  167|  55.1M|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  55.1M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   53|  55.1M|      LOAD32L(tmp, in+12); h4 += (tmp >> 8) | hibit;
  ------------------
  |  |  167|  55.1M|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  55.1M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   54|       |
   55|       |      /* h *= r */
   56|  55.1M|      d0 = ((ulong64)h0 * r0) + ((ulong64)h1 * s4) + ((ulong64)h2 * s3) + ((ulong64)h3 * s2) + ((ulong64)h4 * s1);
   57|  55.1M|      d1 = ((ulong64)h0 * r1) + ((ulong64)h1 * r0) + ((ulong64)h2 * s4) + ((ulong64)h3 * s3) + ((ulong64)h4 * s2);
   58|  55.1M|      d2 = ((ulong64)h0 * r2) + ((ulong64)h1 * r1) + ((ulong64)h2 * r0) + ((ulong64)h3 * s4) + ((ulong64)h4 * s3);
   59|  55.1M|      d3 = ((ulong64)h0 * r3) + ((ulong64)h1 * r2) + ((ulong64)h2 * r1) + ((ulong64)h3 * r0) + ((ulong64)h4 * s4);
   60|  55.1M|      d4 = ((ulong64)h0 * r4) + ((ulong64)h1 * r3) + ((ulong64)h2 * r2) + ((ulong64)h3 * r1) + ((ulong64)h4 * r0);
   61|       |
   62|       |      /* (partial) h %= p */
   63|  55.1M|                    c = (ulong32)(d0 >> 26); h0 = (ulong32)d0 & 0x3ffffff;
   64|  55.1M|      d1 += c;      c = (ulong32)(d1 >> 26); h1 = (ulong32)d1 & 0x3ffffff;
   65|  55.1M|      d2 += c;      c = (ulong32)(d2 >> 26); h2 = (ulong32)d2 & 0x3ffffff;
   66|  55.1M|      d3 += c;      c = (ulong32)(d3 >> 26); h3 = (ulong32)d3 & 0x3ffffff;
   67|  55.1M|      d4 += c;      c = (ulong32)(d4 >> 26); h4 = (ulong32)d4 & 0x3ffffff;
   68|  55.1M|      h0 += c * 5;  c =          (h0 >> 26); h0 =          h0 & 0x3ffffff;
   69|  55.1M|      h1 += c;
   70|       |
   71|  55.1M|      in += 16;
   72|  55.1M|      inlen -= 16;
   73|  55.1M|   }
   74|       |
   75|   466k|   st->h[0] = h0;
   76|   466k|   st->h[1] = h1;
   77|   466k|   st->h[2] = h2;
   78|   466k|   st->h[3] = h3;
   79|   466k|   st->h[4] = h4;
   80|   466k|}

cipher_is_valid:
   22|  26.9k|{
   23|  26.9k|   LTC_MUTEX_LOCK(&ltc_cipher_mutex);
   24|  26.9k|   if (idx < 0 || idx >= TAB_SIZE || cipher_descriptor[idx].name == NULL) {
  ------------------
  |  |   14|  53.8k|#define TAB_SIZE      5
  ------------------
  |  Branch (24:8): [True: 0, False: 26.9k]
  |  Branch (24:19): [True: 0, False: 26.9k]
  |  Branch (24:38): [True: 0, False: 26.9k]
  ------------------
   25|      0|      LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   26|      0|      return CRYPT_INVALID_CIPHER;
   27|      0|   }
   28|  26.9k|   LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   29|  26.9k|   return CRYPT_OK;
   30|  26.9k|}

find_cipher:
   22|  6.87k|{
   23|  6.87k|   int x;
   24|  6.87k|   LTC_ARGCHK(name != NULL);
  ------------------
  |  |   32|  6.87k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 6.87k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   25|  6.87k|   LTC_MUTEX_LOCK(&ltc_cipher_mutex);
   26|  6.87k|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|  6.87k|#define TAB_SIZE      5
  ------------------
  |  Branch (26:16): [True: 6.87k, False: 0]
  ------------------
   27|  6.87k|       if (cipher_descriptor[x].name != NULL && !XSTRCMP(cipher_descriptor[x].name, name)) {
  ------------------
  |  |   54|  6.87k|#define XSTRCMP strcmp
  ------------------
  |  Branch (27:12): [True: 6.87k, False: 0]
  |  Branch (27:49): [True: 6.87k, False: 0]
  ------------------
   28|  6.87k|          LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   29|  6.87k|          return x;
   30|  6.87k|       }
   31|  6.87k|   }
   32|      0|   LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   33|      0|   return -1;
   34|  6.87k|}

find_hash:
   22|  3.61k|{
   23|  3.61k|   int x;
   24|  3.61k|   LTC_ARGCHK(name != NULL);
  ------------------
  |  |   32|  3.61k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 3.61k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   25|  3.61k|   LTC_MUTEX_LOCK(&ltc_hash_mutex);
   26|  7.06k|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|  7.06k|#define TAB_SIZE      5
  ------------------
  |  Branch (26:16): [True: 7.06k, False: 0]
  ------------------
   27|  7.06k|       if (hash_descriptor[x].name != NULL && XSTRCMP(hash_descriptor[x].name, name) == 0) {
  ------------------
  |  |   54|  7.06k|#define XSTRCMP strcmp
  ------------------
  |  Branch (27:12): [True: 7.06k, False: 0]
  |  Branch (27:47): [True: 3.61k, False: 3.44k]
  ------------------
   28|  3.61k|          LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   29|  3.61k|          return x;
   30|  3.61k|       }
   31|  7.06k|   }
   32|      0|   LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   33|      0|   return -1;
   34|  3.61k|}

hash_is_valid:
   22|  93.1k|{
   23|  93.1k|   LTC_MUTEX_LOCK(&ltc_hash_mutex);
   24|  93.1k|   if (idx < 0 || idx >= TAB_SIZE || hash_descriptor[idx].name == NULL) {
  ------------------
  |  |   14|   186k|#define TAB_SIZE      5
  ------------------
  |  Branch (24:8): [True: 0, False: 93.1k]
  |  Branch (24:19): [True: 0, False: 93.1k]
  |  Branch (24:38): [True: 0, False: 93.1k]
  ------------------
   25|      0|      LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   26|      0|      return CRYPT_INVALID_HASH;
   27|      0|   }
   28|  93.1k|   LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   29|  93.1k|   return CRYPT_OK;
   30|  93.1k|}

register_cipher:
   22|      1|{
   23|      1|   int x;
   24|       |
   25|      1|   LTC_ARGCHK(cipher != NULL);
  ------------------
  |  |   32|      1|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   26|       |
   27|       |   /* is it already registered? */
   28|      1|   LTC_MUTEX_LOCK(&ltc_cipher_mutex);
   29|      6|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|      6|#define TAB_SIZE      5
  ------------------
  |  Branch (29:16): [True: 5, False: 1]
  ------------------
   30|      5|       if (cipher_descriptor[x].name != NULL && cipher_descriptor[x].ID == cipher->ID) {
  ------------------
  |  Branch (30:12): [True: 0, False: 5]
  |  Branch (30:49): [True: 0, False: 0]
  ------------------
   31|      0|          LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   32|      0|          return x;
   33|      0|       }
   34|      5|   }
   35|       |
   36|       |   /* find a blank spot */
   37|      1|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|      1|#define TAB_SIZE      5
  ------------------
  |  Branch (37:16): [True: 1, False: 0]
  ------------------
   38|      1|       if (cipher_descriptor[x].name == NULL) {
  ------------------
  |  Branch (38:12): [True: 1, False: 0]
  ------------------
   39|      1|          XMEMCPY(&cipher_descriptor[x], cipher, sizeof(struct ltc_cipher_descriptor));
  ------------------
  |  |   39|      1|#define XMEMCPY  memcpy
  ------------------
   40|      1|          LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   41|      1|          return x;
   42|      1|       }
   43|      1|   }
   44|       |
   45|       |   /* no spot */
   46|      0|   LTC_MUTEX_UNLOCK(&ltc_cipher_mutex);
   47|      0|   return -1;
   48|      1|}

register_hash:
   22|      4|{
   23|      4|   int x;
   24|       |
   25|      4|   LTC_ARGCHK(hash != NULL);
  ------------------
  |  |   32|      4|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 4]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   26|       |
   27|       |   /* is it already registered? */
   28|      4|   LTC_MUTEX_LOCK(&ltc_hash_mutex);
   29|     24|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|     24|#define TAB_SIZE      5
  ------------------
  |  Branch (29:16): [True: 20, False: 4]
  ------------------
   30|     20|       if (XMEMCMP(&hash_descriptor[x], hash, sizeof(struct ltc_hash_descriptor)) == 0) {
  ------------------
  |  |   45|     20|#define XMEMCMP  memcmp
  ------------------
  |  Branch (30:12): [True: 0, False: 20]
  ------------------
   31|      0|          LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   32|      0|          return x;
   33|      0|       }
   34|     20|   }
   35|       |
   36|       |   /* find a blank spot */
   37|     10|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|     10|#define TAB_SIZE      5
  ------------------
  |  Branch (37:16): [True: 10, False: 0]
  ------------------
   38|     10|       if (hash_descriptor[x].name == NULL) {
  ------------------
  |  Branch (38:12): [True: 4, False: 6]
  ------------------
   39|      4|          XMEMCPY(&hash_descriptor[x], hash, sizeof(struct ltc_hash_descriptor));
  ------------------
  |  |   39|      4|#define XMEMCPY  memcpy
  ------------------
   40|      4|          LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   41|      4|          return x;
   42|      4|       }
   43|     10|   }
   44|       |
   45|       |   /* no spot */
   46|      0|   LTC_MUTEX_UNLOCK(&ltc_hash_mutex);
   47|      0|   return -1;
   48|      4|}

register_prng:
   22|      1|{
   23|      1|   int x;
   24|       |
   25|      1|   LTC_ARGCHK(prng != NULL);
  ------------------
  |  |   32|      1|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 1]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   26|       |
   27|       |   /* is it already registered? */
   28|      1|   LTC_MUTEX_LOCK(&ltc_prng_mutex);
   29|      6|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|      6|#define TAB_SIZE      5
  ------------------
  |  Branch (29:16): [True: 5, False: 1]
  ------------------
   30|      5|       if (XMEMCMP(&prng_descriptor[x], prng, sizeof(struct ltc_prng_descriptor)) == 0) {
  ------------------
  |  |   45|      5|#define XMEMCMP  memcmp
  ------------------
  |  Branch (30:12): [True: 0, False: 5]
  ------------------
   31|      0|          LTC_MUTEX_UNLOCK(&ltc_prng_mutex);
   32|      0|          return x;
   33|      0|       }
   34|      5|   }
   35|       |
   36|       |   /* find a blank spot */
   37|      1|   for (x = 0; x < TAB_SIZE; x++) {
  ------------------
  |  |   14|      1|#define TAB_SIZE      5
  ------------------
  |  Branch (37:16): [True: 1, False: 0]
  ------------------
   38|      1|       if (prng_descriptor[x].name == NULL) {
  ------------------
  |  Branch (38:12): [True: 1, False: 0]
  ------------------
   39|      1|          XMEMCPY(&prng_descriptor[x], prng, sizeof(struct ltc_prng_descriptor));
  ------------------
  |  |   39|      1|#define XMEMCPY  memcpy
  ------------------
   40|      1|          LTC_MUTEX_UNLOCK(&ltc_prng_mutex);
   41|      1|          return x;
   42|      1|       }
   43|      1|   }
   44|       |
   45|       |   /* no spot */
   46|      0|   LTC_MUTEX_UNLOCK(&ltc_prng_mutex);
   47|      0|   return -1;
   48|      1|}

zeromem:
   23|  23.2k|{
   24|  23.2k|   m_burn((void*)out, outlen);
   25|  23.2k|}

ctr_encrypt:
   87|  23.2k|{
   88|  23.2k|   int err, fr;
   89|       |
   90|  23.2k|   LTC_ARGCHK(pt != NULL);
  ------------------
  |  |   32|  23.2k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 23.2k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   91|  23.2k|   LTC_ARGCHK(ct != NULL);
  ------------------
  |  |   32|  23.2k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 23.2k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   92|  23.2k|   LTC_ARGCHK(ctr != NULL);
  ------------------
  |  |   32|  23.2k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 23.2k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   93|       |
   94|  23.2k|   if ((err = cipher_is_valid(ctr->cipher)) != CRYPT_OK) {
  ------------------
  |  Branch (94:8): [True: 0, False: 23.2k]
  ------------------
   95|      0|       return err;
   96|      0|   }
   97|       |
   98|       |   /* is blocklen/padlen valid? */
   99|  23.2k|   if ((ctr->blocklen < 1) || (ctr->blocklen > (int)sizeof(ctr->ctr)) ||
  ------------------
  |  Branch (99:8): [True: 0, False: 23.2k]
  |  Branch (99:31): [True: 0, False: 23.2k]
  ------------------
  100|  23.2k|       (ctr->padlen   < 0) || (ctr->padlen   > (int)sizeof(ctr->pad))) {
  ------------------
  |  Branch (100:8): [True: 0, False: 23.2k]
  |  Branch (100:31): [True: 0, False: 23.2k]
  ------------------
  101|      0|      return CRYPT_INVALID_ARG;
  102|      0|   }
  103|       |
  104|  23.2k|#ifdef LTC_FAST
  105|  23.2k|   if (ctr->blocklen % sizeof(LTC_FAST_TYPE)) {
  ------------------
  |  Branch (105:8): [True: 0, False: 23.2k]
  ------------------
  106|      0|      return CRYPT_INVALID_ARG;
  107|      0|   }
  108|  23.2k|#endif
  109|       |
  110|       |   /* handle acceleration only if pad is empty, accelerator is present and length is >= a block size */
  111|  23.2k|   if ((cipher_descriptor[ctr->cipher].accel_ctr_encrypt != NULL) && (len >= (unsigned long)ctr->blocklen)) {
  ------------------
  |  Branch (111:8): [True: 0, False: 23.2k]
  |  Branch (111:70): [True: 0, False: 0]
  ------------------
  112|      0|     if (ctr->padlen < ctr->blocklen) {
  ------------------
  |  Branch (112:10): [True: 0, False: 0]
  ------------------
  113|      0|       fr = ctr->blocklen - ctr->padlen;
  114|      0|       if ((err = _ctr_encrypt(pt, ct, fr, ctr)) != CRYPT_OK) {
  ------------------
  |  Branch (114:12): [True: 0, False: 0]
  ------------------
  115|      0|          return err;
  116|      0|       }
  117|      0|       pt += fr;
  118|      0|       ct += fr;
  119|      0|       len -= fr;
  120|      0|     }
  121|       |
  122|      0|     if (len >= (unsigned long)ctr->blocklen) {
  ------------------
  |  Branch (122:10): [True: 0, False: 0]
  ------------------
  123|      0|       if ((err = cipher_descriptor[ctr->cipher].accel_ctr_encrypt(pt, ct, len/ctr->blocklen, ctr->ctr, ctr->mode, &ctr->key)) != CRYPT_OK) {
  ------------------
  |  Branch (123:12): [True: 0, False: 0]
  ------------------
  124|      0|          return err;
  125|      0|       }
  126|      0|       pt += (len / ctr->blocklen) * ctr->blocklen;
  127|      0|       ct += (len / ctr->blocklen) * ctr->blocklen;
  128|      0|       len %= ctr->blocklen;
  129|      0|     }
  130|      0|   }
  131|       |
  132|  23.2k|   return _ctr_encrypt(pt, ct, len, ctr);
  133|  23.2k|}
ctr_encrypt.c:_ctr_encrypt:
   28|  23.2k|{
   29|  23.2k|   int x, err;
   30|       |
   31|  6.40M|   while (len) {
  ------------------
  |  Branch (31:11): [True: 6.38M, False: 23.2k]
  ------------------
   32|       |      /* is the pad empty? */
   33|  6.38M|      if (ctr->padlen == ctr->blocklen) {
  ------------------
  |  Branch (33:11): [True: 6.38M, False: 3.41k]
  ------------------
   34|       |         /* increment counter */
   35|  6.38M|         if (ctr->mode == CTR_COUNTER_LITTLE_ENDIAN) {
  ------------------
  |  |  859|  6.38M|#define CTR_COUNTER_LITTLE_ENDIAN    0x0000
  ------------------
  |  Branch (35:14): [True: 0, False: 6.38M]
  ------------------
   36|       |            /* little-endian */
   37|      0|            for (x = 0; x < ctr->ctrlen; x++) {
  ------------------
  |  Branch (37:25): [True: 0, False: 0]
  ------------------
   38|      0|               ctr->ctr[x] = (ctr->ctr[x] + (unsigned char)1) & (unsigned char)255;
   39|      0|               if (ctr->ctr[x] != (unsigned char)0) {
  ------------------
  |  Branch (39:20): [True: 0, False: 0]
  ------------------
   40|      0|                  break;
   41|      0|               }
   42|      0|            }
   43|  6.38M|         } else {
   44|       |            /* big-endian */
   45|  6.40M|            for (x = ctr->blocklen-1; x >= ctr->ctrlen; x--) {
  ------------------
  |  Branch (45:39): [True: 6.40M, False: 0]
  ------------------
   46|  6.40M|               ctr->ctr[x] = (ctr->ctr[x] + (unsigned char)1) & (unsigned char)255;
   47|  6.40M|               if (ctr->ctr[x] != (unsigned char)0) {
  ------------------
  |  Branch (47:20): [True: 6.38M, False: 25.0k]
  ------------------
   48|  6.38M|                  break;
   49|  6.38M|               }
   50|  6.40M|            }
   51|  6.38M|         }
   52|       |
   53|       |         /* encrypt it */
   54|  6.38M|         if ((err = cipher_descriptor[ctr->cipher].ecb_encrypt(ctr->ctr, ctr->pad, &ctr->key)) != CRYPT_OK) {
  ------------------
  |  Branch (54:14): [True: 0, False: 6.38M]
  ------------------
   55|      0|            return err;
   56|      0|         }
   57|  6.38M|         ctr->padlen = 0;
   58|  6.38M|      }
   59|  6.38M|#ifdef LTC_FAST
   60|  6.38M|      if ((ctr->padlen == 0) && (len >= (unsigned long)ctr->blocklen)) {
  ------------------
  |  Branch (60:11): [True: 6.38M, False: 0]
  |  Branch (60:33): [True: 6.38M, False: 0]
  ------------------
   61|  19.1M|         for (x = 0; x < ctr->blocklen; x += sizeof(LTC_FAST_TYPE)) {
  ------------------
  |  Branch (61:22): [True: 12.7M, False: 6.38M]
  ------------------
   62|  12.7M|            *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)ct + x)) = *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)pt + x)) ^
  ------------------
  |  |  244|  12.7M|   #define LTC_FAST_TYPE_PTR_CAST(x) ((LTC_FAST_TYPE*)(void*)(x))
  ------------------
                          *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)ct + x)) = *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)pt + x)) ^
  ------------------
  |  |  244|  12.7M|   #define LTC_FAST_TYPE_PTR_CAST(x) ((LTC_FAST_TYPE*)(void*)(x))
  ------------------
   63|  12.7M|                                                           *(LTC_FAST_TYPE_PTR_CAST((unsigned char *)ctr->pad + x));
  ------------------
  |  |  244|  12.7M|   #define LTC_FAST_TYPE_PTR_CAST(x) ((LTC_FAST_TYPE*)(void*)(x))
  ------------------
   64|  12.7M|         }
   65|  6.38M|       pt         += ctr->blocklen;
   66|  6.38M|       ct         += ctr->blocklen;
   67|  6.38M|       len        -= ctr->blocklen;
   68|  6.38M|       ctr->padlen = ctr->blocklen;
   69|  6.38M|       continue;
   70|  6.38M|      }
   71|      0|#endif
   72|      0|      *ct++ = *pt++ ^ ctr->pad[ctr->padlen++];
   73|      0|      --len;
   74|      0|   }
   75|  23.2k|   return CRYPT_OK;
   76|  23.2k|}

ctr_start:
   35|  3.61k|{
   36|  3.61k|   int x, err;
   37|       |
   38|  3.61k|   LTC_ARGCHK(IV  != NULL);
  ------------------
  |  |   32|  3.61k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 3.61k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   39|  3.61k|   LTC_ARGCHK(key != NULL);
  ------------------
  |  |   32|  3.61k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 3.61k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   40|  3.61k|   LTC_ARGCHK(ctr != NULL);
  ------------------
  |  |   32|  3.61k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 3.61k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   41|       |
   42|       |   /* bad param? */
   43|  3.61k|   if ((err = cipher_is_valid(cipher)) != CRYPT_OK) {
  ------------------
  |  Branch (43:8): [True: 0, False: 3.61k]
  ------------------
   44|      0|      return err;
   45|      0|   }
   46|       |
   47|       |   /* ctrlen == counter width */
   48|  3.61k|   ctr->ctrlen   = (ctr_mode & 255) ? (ctr_mode & 255) : cipher_descriptor[cipher].block_length;
  ------------------
  |  Branch (48:20): [True: 0, False: 3.61k]
  ------------------
   49|  3.61k|   if (ctr->ctrlen > cipher_descriptor[cipher].block_length) {
  ------------------
  |  Branch (49:8): [True: 0, False: 3.61k]
  ------------------
   50|      0|      return CRYPT_INVALID_ARG;
   51|      0|   }
   52|       |
   53|  3.61k|   if ((ctr_mode & 0x1000) == CTR_COUNTER_BIG_ENDIAN) {
  ------------------
  |  |  860|  3.61k|#define CTR_COUNTER_BIG_ENDIAN       0x1000
  ------------------
  |  Branch (53:8): [True: 3.61k, False: 0]
  ------------------
   54|  3.61k|      ctr->ctrlen = cipher_descriptor[cipher].block_length - ctr->ctrlen;
   55|  3.61k|   }
   56|       |
   57|       |   /* setup cipher */
   58|  3.61k|   if ((err = cipher_descriptor[cipher].setup(key, keylen, num_rounds, &ctr->key)) != CRYPT_OK) {
  ------------------
  |  Branch (58:8): [True: 0, False: 3.61k]
  ------------------
   59|      0|      return err;
   60|      0|   }
   61|       |
   62|       |   /* copy ctr */
   63|  3.61k|   ctr->blocklen = cipher_descriptor[cipher].block_length;
   64|  3.61k|   ctr->cipher   = cipher;
   65|  3.61k|   ctr->padlen   = 0;
   66|  3.61k|   ctr->mode     = ctr_mode & 0x1000;
   67|  61.4k|   for (x = 0; x < ctr->blocklen; x++) {
  ------------------
  |  Branch (67:16): [True: 57.8k, False: 3.61k]
  ------------------
   68|  57.8k|       ctr->ctr[x] = IV[x];
   69|  57.8k|   }
   70|       |
   71|  3.61k|   if (ctr_mode & LTC_CTR_RFC3686) {
  ------------------
  |  |  861|  3.61k|#define LTC_CTR_RFC3686              0x2000
  ------------------
  |  Branch (71:8): [True: 0, False: 3.61k]
  ------------------
   72|       |      /* increment the IV as per RFC 3686 */
   73|      0|      if (ctr->mode == CTR_COUNTER_LITTLE_ENDIAN) {
  ------------------
  |  |  859|      0|#define CTR_COUNTER_LITTLE_ENDIAN    0x0000
  ------------------
  |  Branch (73:11): [True: 0, False: 0]
  ------------------
   74|       |         /* little-endian */
   75|      0|         for (x = 0; x < ctr->ctrlen; x++) {
  ------------------
  |  Branch (75:22): [True: 0, False: 0]
  ------------------
   76|      0|             ctr->ctr[x] = (ctr->ctr[x] + (unsigned char)1) & (unsigned char)255;
   77|      0|             if (ctr->ctr[x] != (unsigned char)0) {
  ------------------
  |  Branch (77:18): [True: 0, False: 0]
  ------------------
   78|      0|                break;
   79|      0|             }
   80|      0|         }
   81|      0|      } else {
   82|       |         /* big-endian */
   83|      0|         for (x = ctr->blocklen-1; x >= ctr->ctrlen; x--) {
  ------------------
  |  Branch (83:36): [True: 0, False: 0]
  ------------------
   84|      0|             ctr->ctr[x] = (ctr->ctr[x] + (unsigned char)1) & (unsigned char)255;
   85|      0|             if (ctr->ctr[x] != (unsigned char)0) {
  ------------------
  |  Branch (85:18): [True: 0, False: 0]
  ------------------
   86|      0|                break;
   87|      0|             }
   88|      0|         }
   89|      0|      }
   90|      0|   }
   91|       |
   92|  3.61k|   return cipher_descriptor[ctr->cipher].ecb_encrypt(ctr->ctr, ctr->pad, &ctr->key);
   93|  3.61k|}

chacha_crypt:
   55|   700k|{
   56|   700k|   unsigned char buf[64];
   57|   700k|   unsigned long i, j;
   58|       |
   59|   700k|   if (inlen == 0) return CRYPT_OK; /* nothing to do */
  ------------------
  |  Branch (59:8): [True: 0, False: 700k]
  ------------------
   60|       |
   61|   700k|   LTC_ARGCHK(st        != NULL);
  ------------------
  |  |   32|   700k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 700k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   62|   700k|   LTC_ARGCHK(in        != NULL);
  ------------------
  |  |   32|   700k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 700k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   63|   700k|   LTC_ARGCHK(out       != NULL);
  ------------------
  |  |   32|   700k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 700k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   64|   700k|   LTC_ARGCHK(st->ivlen != 0);
  ------------------
  |  |   32|   700k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 700k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   65|       |
   66|   700k|   if (st->ksleft > 0) {
  ------------------
  |  Branch (66:8): [True: 0, False: 700k]
  ------------------
   67|      0|      j = MIN(st->ksleft, inlen);
  ------------------
  |  |  425|      0|   #define MIN(x, y) ( ((x)<(y))?(x):(y) )
  |  |  ------------------
  |  |  |  Branch (425:24): [True: 0, False: 0]
  |  |  ------------------
  ------------------
   68|      0|      for (i = 0; i < j; ++i, st->ksleft--) out[i] = in[i] ^ st->kstream[64 - st->ksleft];
  ------------------
  |  Branch (68:19): [True: 0, False: 0]
  ------------------
   69|      0|      inlen -= j;
   70|      0|      if (inlen == 0) return CRYPT_OK;
  ------------------
  |  Branch (70:11): [True: 0, False: 0]
  ------------------
   71|      0|      out += j;
   72|      0|      in  += j;
   73|      0|   }
   74|  14.3M|   for (;;) {
   75|  14.3M|     _chacha_block(buf, st->input, st->rounds);
   76|  14.3M|     if (st->ivlen == 8) {
  ------------------
  |  Branch (76:10): [True: 14.3M, False: 0]
  ------------------
   77|       |       /* IV-64bit, increment 64bit counter */
   78|  14.3M|       if (0 == ++st->input[12] && 0 == ++st->input[13]) return CRYPT_OVERFLOW;
  ------------------
  |  Branch (78:12): [True: 0, False: 14.3M]
  |  Branch (78:36): [True: 0, False: 0]
  ------------------
   79|  14.3M|     }
   80|      0|     else {
   81|       |       /* IV-96bit, increment 32bit counter */
   82|      0|       if (0 == ++st->input[12]) return CRYPT_OVERFLOW;
  ------------------
  |  Branch (82:12): [True: 0, False: 0]
  ------------------
   83|      0|     }
   84|  14.3M|     if (inlen <= 64) {
  ------------------
  |  Branch (84:10): [True: 700k, False: 13.6M]
  ------------------
   85|  17.7M|       for (i = 0; i < inlen; ++i) out[i] = in[i] ^ buf[i];
  ------------------
  |  Branch (85:20): [True: 17.0M, False: 700k]
  ------------------
   86|   700k|       st->ksleft = 64 - inlen;
   87|  28.4M|       for (i = inlen; i < 64; ++i) st->kstream[i] = buf[i];
  ------------------
  |  Branch (87:24): [True: 27.7M, False: 700k]
  ------------------
   88|   700k|       return CRYPT_OK;
   89|   700k|     }
   90|   885M|     for (i = 0; i < 64; ++i) out[i] = in[i] ^ buf[i];
  ------------------
  |  Branch (90:18): [True: 871M, False: 13.6M]
  ------------------
   91|  13.6M|     inlen -= 64;
   92|  13.6M|     out += 64;
   93|  13.6M|     in  += 64;
   94|  13.6M|   }
   95|   700k|}
chacha_crypt.c:_chacha_block:
   26|  14.3M|{
   27|  14.3M|   ulong32 x[16];
   28|  14.3M|   int i;
   29|  14.3M|   XMEMCPY(x, input, sizeof(x));
  ------------------
  |  |   39|  14.3M|#define XMEMCPY  memcpy
  ------------------
   30|   157M|   for (i = rounds; i > 0; i -= 2) {
  ------------------
  |  Branch (30:21): [True: 143M, False: 14.3M]
  ------------------
   31|   143M|      QUARTERROUND(0, 4, 8,12)
  ------------------
  |  |   20|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a], 16); \
  |  |   21|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c], 12); \
  |  |   22|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a],  8); \
  |  |   23|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c],  7);
  ------------------
   32|   143M|      QUARTERROUND(1, 5, 9,13)
  ------------------
  |  |   20|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a], 16); \
  |  |   21|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c], 12); \
  |  |   22|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a],  8); \
  |  |   23|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c],  7);
  ------------------
   33|   143M|      QUARTERROUND(2, 6,10,14)
  ------------------
  |  |   20|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a], 16); \
  |  |   21|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c], 12); \
  |  |   22|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a],  8); \
  |  |   23|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c],  7);
  ------------------
   34|   143M|      QUARTERROUND(3, 7,11,15)
  ------------------
  |  |   20|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a], 16); \
  |  |   21|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c], 12); \
  |  |   22|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a],  8); \
  |  |   23|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c],  7);
  ------------------
   35|   143M|      QUARTERROUND(0, 5,10,15)
  ------------------
  |  |   20|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a], 16); \
  |  |   21|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c], 12); \
  |  |   22|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a],  8); \
  |  |   23|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c],  7);
  ------------------
   36|   143M|      QUARTERROUND(1, 6,11,12)
  ------------------
  |  |   20|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a], 16); \
  |  |   21|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c], 12); \
  |  |   22|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a],  8); \
  |  |   23|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c],  7);
  ------------------
   37|   143M|      QUARTERROUND(2, 7, 8,13)
  ------------------
  |  |   20|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a], 16); \
  |  |   21|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c], 12); \
  |  |   22|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a],  8); \
  |  |   23|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c],  7);
  ------------------
   38|   143M|      QUARTERROUND(3, 4, 9,14)
  ------------------
  |  |   20|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a], 16); \
  |  |   21|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c], 12); \
  |  |   22|   143M|  x[a] += x[b]; x[d] = ROL(x[d] ^ x[a],  8); \
  |  |   23|   143M|  x[c] += x[d]; x[b] = ROL(x[b] ^ x[c],  7);
  ------------------
   39|   143M|   }
   40|   243M|   for (i = 0; i < 16; ++i) {
  ------------------
  |  Branch (40:16): [True: 229M, False: 14.3M]
  ------------------
   41|   229M|     x[i] += input[i];
   42|   229M|     STORE32L(x[i], output + 4 * i);
  ------------------
  |  |  164|   229M|  do { ulong32 __t = (x); XMEMCPY(y, &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|   229M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (164:56): [Folded - Ignored]
  |  |  ------------------
  ------------------
   43|   229M|   }
   44|  14.3M|}

chacha_ivctr64:
   28|   700k|{
   29|   700k|   LTC_ARGCHK(st != NULL);
  ------------------
  |  |   32|   700k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 700k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   30|   700k|   LTC_ARGCHK(iv != NULL);
  ------------------
  |  |   32|   700k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 700k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   31|       |   /* 64bit IV + 64bit counter */
   32|   700k|   LTC_ARGCHK(ivlen == 8);
  ------------------
  |  |   32|   700k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 700k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   33|       |
   34|   700k|   st->input[12] = (ulong32)(counter & 0xFFFFFFFF);
   35|   700k|   st->input[13] = (ulong32)(counter >> 32);
   36|   700k|   LOAD32L(st->input[14], iv + 0);
  ------------------
  |  |  167|   700k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   700k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   37|   700k|   LOAD32L(st->input[15], iv + 4);
  ------------------
  |  |  167|   700k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|   700k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   38|   700k|   st->ksleft = 0;
   39|   700k|   st->ivlen = ivlen;
   40|   700k|   return CRYPT_OK;
   41|   700k|}

chacha_keystream:
   27|   233k|{
   28|   233k|   if (outlen == 0) return CRYPT_OK; /* nothing to do */
  ------------------
  |  Branch (28:8): [True: 0, False: 233k]
  ------------------
   29|   233k|   LTC_ARGCHK(out != NULL);
  ------------------
  |  |   32|   233k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 233k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   30|   233k|   XMEMSET(out, 0, outlen);
  ------------------
  |  |   36|   233k|#define XMEMSET  memset
  ------------------
   31|   233k|   return chacha_crypt(st, out, outlen, out);
   32|   233k|}

chacha_setup:
   31|  10.1k|{
   32|  10.1k|   const char *constants;
   33|       |
   34|  10.1k|   LTC_ARGCHK(st  != NULL);
  ------------------
  |  |   32|  10.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 10.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   35|  10.1k|   LTC_ARGCHK(key != NULL);
  ------------------
  |  |   32|  10.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:32): [True: 0, False: 10.1k]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   36|  10.1k|   LTC_ARGCHK(keylen == 32 || keylen == 16);
  ------------------
  |  |   32|  10.1k|#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
  |  |  ------------------
  |  |  |  Branch (32:34): [True: 10.1k, False: 0]
  |  |  |  Branch (32:34): [True: 0, False: 0]
  |  |  |  Branch (32:87): [Folded - Ignored]
  |  |  ------------------
  ------------------
   37|       |
   38|  10.1k|   if (rounds == 0) rounds = 20;
  ------------------
  |  Branch (38:8): [True: 0, False: 10.1k]
  ------------------
   39|       |
   40|  10.1k|   LOAD32L(st->input[4], key + 0);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   41|  10.1k|   LOAD32L(st->input[5], key + 4);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   42|  10.1k|   LOAD32L(st->input[6], key + 8);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   43|  10.1k|   LOAD32L(st->input[7], key + 12);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   44|  10.1k|   if (keylen == 32) { /* 256bit */
  ------------------
  |  Branch (44:8): [True: 10.1k, False: 0]
  ------------------
   45|  10.1k|      key += 16;
   46|  10.1k|      constants = sigma;
   47|  10.1k|   } else { /* 128bit */
   48|      0|      constants = tau;
   49|      0|   }
   50|  10.1k|   LOAD32L(st->input[8],  key + 0);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   51|  10.1k|   LOAD32L(st->input[9],  key + 4);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   52|  10.1k|   LOAD32L(st->input[10], key + 8);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   53|  10.1k|   LOAD32L(st->input[11], key + 12);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   54|  10.1k|   LOAD32L(st->input[0],  constants + 0);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   55|  10.1k|   LOAD32L(st->input[1],  constants + 4);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   56|  10.1k|   LOAD32L(st->input[2],  constants + 8);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   57|  10.1k|   LOAD32L(st->input[3],  constants + 12);
  ------------------
  |  |  167|  10.1k|  do { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; } while(0)
  |  |  ------------------
  |  |  |  |   39|  10.1k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (167:54): [Folded - Ignored]
  |  |  ------------------
  ------------------
   58|  10.1k|   st->rounds = rounds; /* e.g. 20 for chacha20 */
   59|  10.1k|   st->ivlen = 0; /* will be set later by chacha_ivctr(32|64) */
   60|  10.1k|   return CRYPT_OK;
   61|  10.1k|}

mp_add:
    8|      3|{
    9|      3|   mp_sign sa, sb;
   10|      3|   mp_err err;
   11|       |
   12|       |   /* get sign of both inputs */
   13|      3|   sa = a->sign;
   14|      3|   sb = b->sign;
   15|       |
   16|       |   /* handle two cases, not four */
   17|      3|   if (sa == sb) {
  ------------------
  |  Branch (17:8): [True: 3, False: 0]
  ------------------
   18|       |      /* both positive or both negative */
   19|       |      /* add their magnitudes, copy the sign */
   20|      3|      c->sign = sa;
   21|      3|      err = s_mp_add(a, b, c);
   22|      3|   } else {
   23|       |      /* one positive, the other negative */
   24|       |      /* subtract the one with the greater magnitude from */
   25|       |      /* the one of the lesser magnitude.  The result gets */
   26|       |      /* the sign of the one with the greater magnitude. */
   27|      0|      if (mp_cmp_mag(a, b) == MP_LT) {
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (27:11): [True: 0, False: 0]
  ------------------
   28|      0|         c->sign = sb;
   29|      0|         err = s_mp_sub(b, a, c);
   30|      0|      } else {
   31|      0|         c->sign = sa;
   32|      0|         err = s_mp_sub(a, b, c);
   33|      0|      }
   34|      0|   }
   35|      3|   return err;
   36|      3|}

mp_add_d:
    8|    128|{
    9|    128|   mp_err     err;
   10|    128|   int ix, oldused;
   11|    128|   mp_digit *tmpa, *tmpc;
   12|       |
   13|       |   /* grow c as required */
   14|    128|   if (c->alloc < (a->used + 1)) {
  ------------------
  |  Branch (14:8): [True: 0, False: 128]
  ------------------
   15|      0|      if ((err = mp_grow(c, a->used + 1)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (15:11): [True: 0, False: 0]
  ------------------
   16|      0|         return err;
   17|      0|      }
   18|      0|   }
   19|       |
   20|       |   /* if a is negative and |a| >= b, call c = |a| - b */
   21|    128|   if ((a->sign == MP_NEG) && ((a->used > 1) || (a->dp[0] >= b))) {
  ------------------
  |  |  152|    128|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (21:8): [True: 0, False: 128]
  |  Branch (21:32): [True: 0, False: 0]
  |  Branch (21:49): [True: 0, False: 0]
  ------------------
   22|      0|      mp_int a_ = *a;
   23|       |      /* temporarily fix sign of a */
   24|      0|      a_.sign = MP_ZPOS;
  ------------------
  |  |  151|      0|#define MP_ZPOS       0   /* positive integer */
  ------------------
   25|       |
   26|       |      /* c = |a| - b */
   27|      0|      err = mp_sub_d(&a_, b, c);
   28|       |
   29|       |      /* fix sign  */
   30|      0|      c->sign = MP_NEG;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
   31|       |
   32|       |      /* clamp */
   33|      0|      mp_clamp(c);
   34|       |
   35|      0|      return err;
   36|      0|   }
   37|       |
   38|       |   /* old number of used digits in c */
   39|    128|   oldused = c->used;
   40|       |
   41|       |   /* source alias */
   42|    128|   tmpa    = a->dp;
   43|       |
   44|       |   /* destination alias */
   45|    128|   tmpc    = c->dp;
   46|       |
   47|       |   /* if a is positive */
   48|    128|   if (a->sign == MP_ZPOS) {
  ------------------
  |  |  151|    128|#define MP_ZPOS       0   /* positive integer */
  ------------------
  |  Branch (48:8): [True: 128, False: 0]
  ------------------
   49|       |      /* add digits, mu is carry */
   50|    128|      mp_digit mu = b;
   51|    466|      for (ix = 0; ix < a->used; ix++) {
  ------------------
  |  Branch (51:20): [True: 338, False: 128]
  ------------------
   52|    338|         *tmpc   = *tmpa++ + mu;
   53|    338|         mu      = *tmpc >> MP_DIGIT_BIT;
  ------------------
  |  |   82|    338|#   define MP_DIGIT_BIT 60
  ------------------
   54|    338|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|    338|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|    338|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   55|    338|      }
   56|       |      /* set final carry */
   57|    128|      ix++;
   58|    128|      *tmpc++  = mu;
   59|       |
   60|       |      /* setup size */
   61|    128|      c->used = a->used + 1;
   62|    128|   } else {
   63|       |      /* a was negative and |a| < b */
   64|      0|      c->used  = 1;
   65|       |
   66|       |      /* the result is a single digit */
   67|      0|      if (a->used == 1) {
  ------------------
  |  Branch (67:11): [True: 0, False: 0]
  ------------------
   68|      0|         *tmpc++  =  b - a->dp[0];
   69|      0|      } else {
   70|      0|         *tmpc++  =  b;
   71|      0|      }
   72|       |
   73|       |      /* setup count so the clearing of oldused
   74|       |       * can fall through correctly
   75|       |       */
   76|      0|      ix       = 1;
   77|      0|   }
   78|       |
   79|       |   /* sign always positive */
   80|    128|   c->sign = MP_ZPOS;
  ------------------
  |  |  151|    128|#define MP_ZPOS       0   /* positive integer */
  ------------------
   81|       |
   82|       |   /* now zero to oldused */
   83|    128|   MP_ZERO_DIGITS(tmpc, oldused - ix);
  ------------------
  |  |   89|    128|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|    128|do {                                                    \
  |  |   91|    128|   int zd_ = (digits);                                  \
  |  |   92|    128|   mp_digit* zm_ = (mem);                               \
  |  |   93|    128|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 128]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|    128|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   84|    128|   mp_clamp(c);
   85|       |
   86|    128|   return MP_OKAY;
  ------------------
  |  |  161|    128|#define MP_OKAY       0   /* no error */
  ------------------
   87|    128|}

mp_clamp:
   14|  47.8k|{
   15|       |   /* decrease used while the most significant digit is
   16|       |    * zero.
   17|       |    */
   18|  71.6k|   while ((a->used > 0) && (a->dp[a->used - 1] == 0u)) {
  ------------------
  |  Branch (18:11): [True: 60.1k, False: 11.5k]
  |  Branch (18:28): [True: 23.7k, False: 36.3k]
  ------------------
   19|  23.7k|      --(a->used);
   20|  23.7k|   }
   21|       |
   22|       |   /* reset the sign flag if used == 0 */
   23|  47.8k|   if (a->used == 0) {
  ------------------
  |  Branch (23:8): [True: 11.5k, False: 36.3k]
  ------------------
   24|  11.5k|      a->sign = MP_ZPOS;
  ------------------
  |  |  151|  11.5k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   25|  11.5k|   }
   26|  47.8k|}

mp_clear:
    8|  26.0k|{
    9|       |   /* only do anything if a hasn't been freed previously */
   10|  26.0k|   if (a->dp != NULL) {
  ------------------
  |  Branch (10:8): [True: 19.8k, False: 6.17k]
  ------------------
   11|       |      /* free ram */
   12|  19.8k|      MP_FREE_DIGITS(a->dp, a->alloc);
  ------------------
  |  |   58|  19.8k|#  define MP_FREE_DIGITS(mem, digits)                   \
  |  |   59|  19.8k|do {                                                    \
  |  |   60|  19.8k|   int fd_ = (digits);                                  \
  |  |   61|  19.8k|   void* fm_ = (mem);                                   \
  |  |   62|  19.8k|   if (fm_ != NULL) {                                   \
  |  |  ------------------
  |  |  |  Branch (62:8): [True: 19.8k, False: 0]
  |  |  ------------------
  |  |   63|  19.8k|      size_t fs_ = sizeof (mp_digit) * (size_t)fd_;     \
  |  |   64|  19.8k|      MP_ZERO_BUFFER(fm_, fs_);                         \
  |  |  ------------------
  |  |  |  |   81|  19.8k|#  define MP_ZERO_BUFFER(mem, size)                     \
  |  |  |  |   82|  19.8k|do {                                                    \
  |  |  |  |   83|  19.8k|   size_t zs_ = (size);                                 \
  |  |  |  |   84|  19.8k|   char* zm_ = (char*)(mem);                            \
  |  |  |  |   85|  3.02M|   while (zs_-- > 0u) {                                 \
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (85:11): [True: 3.00M, False: 19.8k]
  |  |  |  |  ------------------
  |  |  |  |   86|  3.00M|      *zm_++ = '\0';                                    \
  |  |  |  |   87|  3.00M|   }                                                    \
  |  |  |  |   88|  19.8k|} while (0)
  |  |  |  |  ------------------
  |  |  |  |  |  Branch (88:10): [Folded - Ignored]
  |  |  |  |  ------------------
  |  |  ------------------
  |  |   65|  19.8k|      MP_FREE(fm_, fs_);                                \
  |  |  ------------------
  |  |  |  | 1324|  19.8k|#define MP_FREE      m_free_ltm
  |  |  ------------------
  |  |   66|  19.8k|   }                                                    \
  |  |   67|  19.8k|} while (0)
  |  |  ------------------
  |  |  |  Branch (67:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   13|       |
   14|       |      /* reset members to make debugging easier */
   15|  19.8k|      a->dp    = NULL;
   16|  19.8k|      a->alloc = a->used = 0;
   17|  19.8k|      a->sign  = MP_ZPOS;
  ------------------
  |  |  151|  19.8k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   18|  19.8k|   }
   19|  26.0k|}

mp_clear_multi:
    9|      1|{
   10|      1|   mp_int *next_mp = mp;
   11|      1|   va_list args;
   12|      1|   va_start(args, mp);
   13|      5|   while (next_mp != NULL) {
  ------------------
  |  Branch (13:11): [True: 4, False: 1]
  ------------------
   14|      4|      mp_clear(next_mp);
   15|      4|      next_mp = va_arg(args, mp_int *);
   16|      4|   }
   17|      1|   va_end(args);
   18|      1|}

mp_cmp:
    8|      5|{
    9|       |   /* compare based on sign */
   10|      5|   if (a->sign != b->sign) {
  ------------------
  |  Branch (10:8): [True: 0, False: 5]
  ------------------
   11|      0|      if (a->sign == MP_NEG) {
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (11:11): [True: 0, False: 0]
  ------------------
   12|      0|         return MP_LT;
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
   13|      0|      } else {
   14|      0|         return MP_GT;
  ------------------
  |  |  156|      0|#define MP_GT         1   /* greater than */
  ------------------
   15|      0|      }
   16|      0|   }
   17|       |
   18|       |   /* compare digits */
   19|      5|   if (a->sign == MP_NEG) {
  ------------------
  |  |  152|      5|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (19:8): [True: 0, False: 5]
  ------------------
   20|       |      /* if negative compare opposite direction */
   21|      0|      return mp_cmp_mag(b, a);
   22|      5|   } else {
   23|      5|      return mp_cmp_mag(a, b);
   24|      5|   }
   25|      5|}

mp_cmp_d:
    8|      4|{
    9|       |   /* compare based on sign */
   10|      4|   if (a->sign == MP_NEG) {
  ------------------
  |  |  152|      4|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (10:8): [True: 0, False: 4]
  ------------------
   11|      0|      return MP_LT;
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
   12|      0|   }
   13|       |
   14|       |   /* compare based on magnitude */
   15|      4|   if (a->used > 1) {
  ------------------
  |  Branch (15:8): [True: 4, False: 0]
  ------------------
   16|      4|      return MP_GT;
  ------------------
  |  |  156|      4|#define MP_GT         1   /* greater than */
  ------------------
   17|      4|   }
   18|       |
   19|       |   /* compare the only digit of a to b */
   20|      0|   if (a->dp[0] > b) {
  ------------------
  |  Branch (20:8): [True: 0, False: 0]
  ------------------
   21|      0|      return MP_GT;
  ------------------
  |  |  156|      0|#define MP_GT         1   /* greater than */
  ------------------
   22|      0|   } else if (a->dp[0] < b) {
  ------------------
  |  Branch (22:15): [True: 0, False: 0]
  ------------------
   23|      0|      return MP_LT;
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
   24|      0|   } else {
   25|      0|      return MP_EQ;
  ------------------
  |  |  155|      0|#define MP_EQ         0   /* equal to */
  ------------------
   26|      0|   }
   27|      0|}

mp_cmp_mag:
    8|     28|{
    9|     28|   int     n;
   10|     28|   const mp_digit *tmpa, *tmpb;
   11|       |
   12|       |   /* compare based on # of non-zero digits */
   13|     28|   if (a->used > b->used) {
  ------------------
  |  Branch (13:8): [True: 2, False: 26]
  ------------------
   14|      2|      return MP_GT;
  ------------------
  |  |  156|      2|#define MP_GT         1   /* greater than */
  ------------------
   15|      2|   }
   16|       |
   17|     26|   if (a->used < b->used) {
  ------------------
  |  Branch (17:8): [True: 0, False: 26]
  ------------------
   18|      0|      return MP_LT;
  ------------------
  |  |  154|      0|#define MP_LT        -1   /* less than */
  ------------------
   19|      0|   }
   20|       |
   21|       |   /* alias for a */
   22|     26|   tmpa = a->dp + (a->used - 1);
   23|       |
   24|       |   /* alias for b */
   25|     26|   tmpb = b->dp + (a->used - 1);
   26|       |
   27|       |   /* compare based on digits  */
   28|     43|   for (n = 0; n < a->used; ++n, --tmpa, --tmpb) {
  ------------------
  |  Branch (28:16): [True: 42, False: 1]
  ------------------
   29|     42|      if (*tmpa > *tmpb) {
  ------------------
  |  Branch (29:11): [True: 11, False: 31]
  ------------------
   30|     11|         return MP_GT;
  ------------------
  |  |  156|     11|#define MP_GT         1   /* greater than */
  ------------------
   31|     11|      }
   32|       |
   33|     31|      if (*tmpa < *tmpb) {
  ------------------
  |  Branch (33:11): [True: 14, False: 17]
  ------------------
   34|     14|         return MP_LT;
  ------------------
  |  |  154|     14|#define MP_LT        -1   /* less than */
  ------------------
   35|     14|      }
   36|     31|   }
   37|      1|   return MP_EQ;
  ------------------
  |  |  155|      1|#define MP_EQ         0   /* equal to */
  ------------------
   38|     26|}

mp_copy:
    8|  34.7k|{
    9|  34.7k|   int n;
   10|  34.7k|   mp_digit *tmpa, *tmpb;
   11|  34.7k|   mp_err err;
   12|       |
   13|       |   /* if dst == src do nothing */
   14|  34.7k|   if (a == b) {
  ------------------
  |  Branch (14:8): [True: 26.0k, False: 8.68k]
  ------------------
   15|  26.0k|      return MP_OKAY;
  ------------------
  |  |  161|  26.0k|#define MP_OKAY       0   /* no error */
  ------------------
   16|  26.0k|   }
   17|       |
   18|       |   /* grow dest */
   19|  8.68k|   if (b->alloc < a->used) {
  ------------------
  |  Branch (19:8): [True: 0, False: 8.68k]
  ------------------
   20|      0|      if ((err = mp_grow(b, a->used)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (20:11): [True: 0, False: 0]
  ------------------
   21|      0|         return err;
   22|      0|      }
   23|      0|   }
   24|       |
   25|       |   /* zero b and copy the parameters over */
   26|       |   /* pointer aliases */
   27|       |
   28|       |   /* source */
   29|  8.68k|   tmpa = a->dp;
   30|       |
   31|       |   /* destination */
   32|  8.68k|   tmpb = b->dp;
   33|       |
   34|       |   /* copy all the digits */
   35|  17.3k|   for (n = 0; n < a->used; n++) {
  ------------------
  |  Branch (35:16): [True: 8.70k, False: 8.68k]
  ------------------
   36|  8.70k|      *tmpb++ = *tmpa++;
   37|  8.70k|   }
   38|       |
   39|       |   /* clear high digits */
   40|  8.68k|   MP_ZERO_DIGITS(tmpb, b->used - n);
  ------------------
  |  |   89|  8.68k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  8.68k|do {                                                    \
  |  |   91|  8.68k|   int zd_ = (digits);                                  \
  |  |   92|  8.68k|   mp_digit* zm_ = (mem);                               \
  |  |   93|  8.68k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 8.68k]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|  8.68k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   41|       |
   42|       |   /* copy used count and sign */
   43|  8.68k|   b->used = a->used;
   44|  8.68k|   b->sign = a->sign;
   45|  8.68k|   return MP_OKAY;
  ------------------
  |  |  161|  8.68k|#define MP_OKAY       0   /* no error */
  ------------------
   46|  8.68k|}

mp_count_bits:
    8|  17.3k|{
    9|  17.3k|   int     r;
   10|  17.3k|   mp_digit q;
   11|       |
   12|       |   /* shortcut */
   13|  17.3k|   if (MP_IS_ZERO(a)) {
  ------------------
  |  |  163|  17.3k|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 17.3k]
  |  |  ------------------
  ------------------
   14|      0|      return 0;
   15|      0|   }
   16|       |
   17|       |   /* get number of digits and add that */
   18|  17.3k|   r = (a->used - 1) * MP_DIGIT_BIT;
  ------------------
  |  |   82|  17.3k|#   define MP_DIGIT_BIT 60
  ------------------
   19|       |
   20|       |   /* take the last digit and count the bits in it */
   21|  17.3k|   q = a->dp[a->used - 1];
   22|   434k|   while (q > 0u) {
  ------------------
  |  Branch (22:11): [True: 416k, False: 17.3k]
  ------------------
   23|   416k|      ++r;
   24|   416k|      q >>= 1u;
   25|   416k|   }
   26|  17.3k|   return r;
   27|  17.3k|}

mp_div:
   87|      2|{
   88|      2|   mp_int  q, x, y, t1, t2;
   89|      2|   int     n, t, i, norm;
   90|      2|   mp_sign neg;
   91|      2|   mp_err  err;
   92|       |
   93|       |   /* is divisor zero ? */
   94|      2|   if (MP_IS_ZERO(b)) {
  ------------------
  |  |  163|      2|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 2]
  |  |  ------------------
  ------------------
   95|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   96|      0|   }
   97|       |
   98|       |   /* if a < b then q=0, r = a */
   99|      2|   if (mp_cmp_mag(a, b) == MP_LT) {
  ------------------
  |  |  154|      2|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (99:8): [True: 0, False: 2]
  ------------------
  100|      0|      if (d != NULL) {
  ------------------
  |  Branch (100:11): [True: 0, False: 0]
  ------------------
  101|      0|         err = mp_copy(a, d);
  102|      0|      } else {
  103|      0|         err = MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  104|      0|      }
  105|      0|      if (c != NULL) {
  ------------------
  |  Branch (105:11): [True: 0, False: 0]
  ------------------
  106|      0|         mp_zero(c);
  107|      0|      }
  108|      0|      return err;
  109|      0|   }
  110|       |
  111|      2|   if ((err = mp_init_size(&q, a->used + 2)) != MP_OKAY) {
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (111:8): [True: 0, False: 2]
  ------------------
  112|      0|      return err;
  113|      0|   }
  114|      2|   q.used = a->used + 2;
  115|       |
  116|      2|   if ((err = mp_init(&t1)) != MP_OKAY)                           goto LBL_Q;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (116:8): [True: 0, False: 2]
  ------------------
  117|       |
  118|      2|   if ((err = mp_init(&t2)) != MP_OKAY)                           goto LBL_T1;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (118:8): [True: 0, False: 2]
  ------------------
  119|       |
  120|      2|   if ((err = mp_init_copy(&x, a)) != MP_OKAY)                    goto LBL_T2;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (120:8): [True: 0, False: 2]
  ------------------
  121|       |
  122|      2|   if ((err = mp_init_copy(&y, b)) != MP_OKAY)                    goto LBL_X;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (122:8): [True: 0, False: 2]
  ------------------
  123|       |
  124|       |   /* fix the sign */
  125|      2|   neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
  ------------------
  |  |  151|      2|#define MP_ZPOS       0   /* positive integer */
  ------------------
                 neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
  ------------------
  |  |  152|      2|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (125:10): [True: 2, False: 0]
  ------------------
  126|      2|   x.sign = y.sign = MP_ZPOS;
  ------------------
  |  |  151|      2|#define MP_ZPOS       0   /* positive integer */
  ------------------
  127|       |
  128|       |   /* normalize both x and y, ensure that y >= b/2, [b == 2**MP_DIGIT_BIT] */
  129|      2|   norm = mp_count_bits(&y) % MP_DIGIT_BIT;
  ------------------
  |  |   82|      2|#   define MP_DIGIT_BIT 60
  ------------------
  130|      2|   if (norm < (MP_DIGIT_BIT - 1)) {
  ------------------
  |  |   82|      2|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (130:8): [True: 2, False: 0]
  ------------------
  131|      2|      norm = (MP_DIGIT_BIT - 1) - norm;
  ------------------
  |  |   82|      2|#   define MP_DIGIT_BIT 60
  ------------------
  132|      2|      if ((err = mp_mul_2d(&x, norm, &x)) != MP_OKAY)             goto LBL_Y;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (132:11): [True: 0, False: 2]
  ------------------
  133|      2|      if ((err = mp_mul_2d(&y, norm, &y)) != MP_OKAY)             goto LBL_Y;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (133:11): [True: 0, False: 2]
  ------------------
  134|      2|   } else {
  135|      0|      norm = 0;
  136|      0|   }
  137|       |
  138|       |   /* note hac does 0 based, so if used==5 then its 0,1,2,3,4, e.g. use 4 */
  139|      2|   n = x.used - 1;
  140|      2|   t = y.used - 1;
  141|       |
  142|       |   /* while (x >= y*b**n-t) do { q[n-t] += 1; x -= y*b**{n-t} } */
  143|       |   /* y = y*b**{n-t} */
  144|      2|   if ((err = mp_lshd(&y, n - t)) != MP_OKAY)                     goto LBL_Y;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (144:8): [True: 0, False: 2]
  ------------------
  145|       |
  146|      2|   while (mp_cmp(&x, &y) != MP_LT) {
  ------------------
  |  |  154|      2|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (146:11): [True: 0, False: 2]
  ------------------
  147|      0|      ++(q.dp[n - t]);
  148|      0|      if ((err = mp_sub(&x, &y, &x)) != MP_OKAY)                  goto LBL_Y;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (148:11): [True: 0, False: 0]
  ------------------
  149|      0|   }
  150|       |
  151|       |   /* reset y by shifting it back down */
  152|      2|   mp_rshd(&y, n - t);
  153|       |
  154|       |   /* step 3. for i from n down to (t + 1) */
  155|     12|   for (i = n; i >= (t + 1); i--) {
  ------------------
  |  Branch (155:16): [True: 10, False: 2]
  ------------------
  156|     10|      if (i > x.used) {
  ------------------
  |  Branch (156:11): [True: 0, False: 10]
  ------------------
  157|      0|         continue;
  158|      0|      }
  159|       |
  160|       |      /* step 3.1 if xi == yt then set q{i-t-1} to b-1,
  161|       |       * otherwise set q{i-t-1} to (xi*b + x{i-1})/yt */
  162|     10|      if (x.dp[i] == y.dp[t]) {
  ------------------
  |  Branch (162:11): [True: 0, False: 10]
  ------------------
  163|      0|         q.dp[(i - t) - 1] = ((mp_digit)1 << (mp_digit)MP_DIGIT_BIT) - (mp_digit)1;
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
  164|     10|      } else {
  165|     10|         mp_word tmp;
  166|     10|         tmp = (mp_word)x.dp[i] << (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|     10|#   define MP_DIGIT_BIT 60
  ------------------
  167|     10|         tmp |= (mp_word)x.dp[i - 1];
  168|     10|         tmp /= (mp_word)y.dp[t];
  169|     10|         if (tmp > (mp_word)MP_MASK) {
  ------------------
  |  |  106|     10|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     10|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (169:14): [True: 0, False: 10]
  ------------------
  170|      0|            tmp = MP_MASK;
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  171|      0|         }
  172|     10|         q.dp[(i - t) - 1] = (mp_digit)(tmp & (mp_word)MP_MASK);
  ------------------
  |  |  106|     10|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     10|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  173|     10|      }
  174|       |
  175|       |      /* while (q{i-t-1} * (yt * b + y{t-1})) >
  176|       |               xi * b**2 + xi-1 * b + xi-2
  177|       |
  178|       |         do q{i-t-1} -= 1;
  179|       |      */
  180|     10|      q.dp[(i - t) - 1] = (q.dp[(i - t) - 1] + 1uL) & (mp_digit)MP_MASK;
  ------------------
  |  |  106|     10|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     10|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  181|     10|      do {
  182|     10|         q.dp[(i - t) - 1] = (q.dp[(i - t) - 1] - 1uL) & (mp_digit)MP_MASK;
  ------------------
  |  |  106|     10|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     10|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  183|       |
  184|       |         /* find left hand */
  185|     10|         mp_zero(&t1);
  186|     10|         t1.dp[0] = ((t - 1) < 0) ? 0u : y.dp[t - 1];
  ------------------
  |  Branch (186:21): [True: 0, False: 10]
  ------------------
  187|     10|         t1.dp[1] = y.dp[t];
  188|     10|         t1.used = 2;
  189|     10|         if ((err = mp_mul_d(&t1, q.dp[(i - t) - 1], &t1)) != MP_OKAY) goto LBL_Y;
  ------------------
  |  |  161|     10|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (189:14): [True: 0, False: 10]
  ------------------
  190|       |
  191|       |         /* find right hand */
  192|     10|         t2.dp[0] = ((i - 2) < 0) ? 0u : x.dp[i - 2];
  ------------------
  |  Branch (192:21): [True: 0, False: 10]
  ------------------
  193|     10|         t2.dp[1] = x.dp[i - 1]; /* i >= 1 always holds */
  194|     10|         t2.dp[2] = x.dp[i];
  195|     10|         t2.used = 3;
  196|     10|      } while (mp_cmp_mag(&t1, &t2) == MP_GT);
  ------------------
  |  |  156|     10|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (196:16): [True: 0, False: 10]
  ------------------
  197|       |
  198|       |      /* step 3.3 x = x - q{i-t-1} * y * b**{i-t-1} */
  199|     10|      if ((err = mp_mul_d(&y, q.dp[(i - t) - 1], &t1)) != MP_OKAY) goto LBL_Y;
  ------------------
  |  |  161|     10|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (199:11): [True: 0, False: 10]
  ------------------
  200|       |
  201|     10|      if ((err = mp_lshd(&t1, (i - t) - 1)) != MP_OKAY)           goto LBL_Y;
  ------------------
  |  |  161|     10|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (201:11): [True: 0, False: 10]
  ------------------
  202|       |
  203|     10|      if ((err = mp_sub(&x, &t1, &x)) != MP_OKAY)                 goto LBL_Y;
  ------------------
  |  |  161|     10|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (203:11): [True: 0, False: 10]
  ------------------
  204|       |
  205|       |      /* if x < 0 then { x = x + y*b**{i-t-1}; q{i-t-1} -= 1; } */
  206|     10|      if (x.sign == MP_NEG) {
  ------------------
  |  |  152|     10|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (206:11): [True: 0, False: 10]
  ------------------
  207|      0|         if ((err = mp_copy(&y, &t1)) != MP_OKAY)                 goto LBL_Y;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (207:14): [True: 0, False: 0]
  ------------------
  208|      0|         if ((err = mp_lshd(&t1, (i - t) - 1)) != MP_OKAY)        goto LBL_Y;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (208:14): [True: 0, False: 0]
  ------------------
  209|      0|         if ((err = mp_add(&x, &t1, &x)) != MP_OKAY)              goto LBL_Y;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (209:14): [True: 0, False: 0]
  ------------------
  210|       |
  211|      0|         q.dp[(i - t) - 1] = (q.dp[(i - t) - 1] - 1uL) & MP_MASK;
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  212|      0|      }
  213|     10|   }
  214|       |
  215|       |   /* now q is the quotient and x is the remainder
  216|       |    * [which we have to normalize]
  217|       |    */
  218|       |
  219|       |   /* get sign before writing to c */
  220|      2|   x.sign = (x.used == 0) ? MP_ZPOS : a->sign;
  ------------------
  |  |  151|      0|#define MP_ZPOS       0   /* positive integer */
  ------------------
  |  Branch (220:13): [True: 0, False: 2]
  ------------------
  221|       |
  222|      2|   if (c != NULL) {
  ------------------
  |  Branch (222:8): [True: 0, False: 2]
  ------------------
  223|      0|      mp_clamp(&q);
  224|      0|      mp_exch(&q, c);
  225|      0|      c->sign = neg;
  226|      0|   }
  227|       |
  228|      2|   if (d != NULL) {
  ------------------
  |  Branch (228:8): [True: 2, False: 0]
  ------------------
  229|      2|      if ((err = mp_div_2d(&x, norm, &x, NULL)) != MP_OKAY)       goto LBL_Y;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (229:11): [True: 0, False: 2]
  ------------------
  230|      2|      mp_exch(&x, d);
  231|      2|   }
  232|       |
  233|      2|   err = MP_OKAY;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  234|       |
  235|      2|LBL_Y:
  236|      2|   mp_clear(&y);
  237|      2|LBL_X:
  238|      2|   mp_clear(&x);
  239|      2|LBL_T2:
  240|      2|   mp_clear(&t2);
  241|      2|LBL_T1:
  242|      2|   mp_clear(&t1);
  243|      2|LBL_Q:
  244|      2|   mp_clear(&q);
  245|      2|   return err;
  246|      2|}

mp_div_2d:
    8|  26.0k|{
    9|  26.0k|   mp_digit D, r, rr;
   10|  26.0k|   int     x;
   11|  26.0k|   mp_err err;
   12|       |
   13|       |   /* if the shift count is <= 0 then we do no work */
   14|  26.0k|   if (b <= 0) {
  ------------------
  |  Branch (14:8): [True: 0, False: 26.0k]
  ------------------
   15|      0|      err = mp_copy(a, c);
   16|      0|      if (d != NULL) {
  ------------------
  |  Branch (16:11): [True: 0, False: 0]
  ------------------
   17|      0|         mp_zero(d);
   18|      0|      }
   19|      0|      return err;
   20|      0|   }
   21|       |
   22|       |   /* copy */
   23|  26.0k|   if ((err = mp_copy(a, c)) != MP_OKAY) {
  ------------------
  |  |  161|  26.0k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (23:8): [True: 0, False: 26.0k]
  ------------------
   24|      0|      return err;
   25|      0|   }
   26|       |   /* 'a' should not be used after here - it might be the same as d */
   27|       |
   28|       |   /* get the remainder */
   29|  26.0k|   if (d != NULL) {
  ------------------
  |  Branch (29:8): [True: 0, False: 26.0k]
  ------------------
   30|      0|      if ((err = mp_mod_2d(a, b, d)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (30:11): [True: 0, False: 0]
  ------------------
   31|      0|         return err;
   32|      0|      }
   33|      0|   }
   34|       |
   35|       |   /* shift by as many digits in the bit count */
   36|  26.0k|   if (b >= MP_DIGIT_BIT) {
  ------------------
  |  |   82|  26.0k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (36:8): [True: 0, False: 26.0k]
  ------------------
   37|      0|      mp_rshd(c, b / MP_DIGIT_BIT);
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
   38|      0|   }
   39|       |
   40|       |   /* shift any bit count < MP_DIGIT_BIT */
   41|  26.0k|   D = (mp_digit)(b % MP_DIGIT_BIT);
  ------------------
  |  |   82|  26.0k|#   define MP_DIGIT_BIT 60
  ------------------
   42|  26.0k|   if (D != 0u) {
  ------------------
  |  Branch (42:8): [True: 26.0k, False: 0]
  ------------------
   43|  26.0k|      mp_digit *tmpc, mask, shift;
   44|       |
   45|       |      /* mask */
   46|  26.0k|      mask = ((mp_digit)1 << D) - 1uL;
   47|       |
   48|       |      /* shift for lsb */
   49|  26.0k|      shift = (mp_digit)MP_DIGIT_BIT - D;
  ------------------
  |  |   82|  26.0k|#   define MP_DIGIT_BIT 60
  ------------------
   50|       |
   51|       |      /* alias */
   52|  26.0k|      tmpc = c->dp + (c->used - 1);
   53|       |
   54|       |      /* carry */
   55|  26.0k|      r = 0;
   56|  52.0k|      for (x = c->used - 1; x >= 0; x--) {
  ------------------
  |  Branch (56:29): [True: 26.0k, False: 26.0k]
  ------------------
   57|       |         /* get the lower  bits of this word in a temp */
   58|  26.0k|         rr = *tmpc & mask;
   59|       |
   60|       |         /* shift the current word and mix in the carry bits from the previous word */
   61|  26.0k|         *tmpc = (*tmpc >> D) | (r << shift);
   62|  26.0k|         --tmpc;
   63|       |
   64|       |         /* set the carry to the carry bits of the current word found above */
   65|  26.0k|         r = rr;
   66|  26.0k|      }
   67|  26.0k|   }
   68|  26.0k|   mp_clamp(c);
   69|  26.0k|   return MP_OKAY;
  ------------------
  |  |  161|  26.0k|#define MP_OKAY       0   /* no error */
  ------------------
   70|  26.0k|}

mp_exch:
   10|      4|{
   11|      4|   mp_int  t;
   12|       |
   13|      4|   t  = *a;
   14|      4|   *a = *b;
   15|      4|   *b = t;
   16|      4|}

mp_from_ubin:
    8|  2.44k|{
    9|  2.44k|   mp_err err;
   10|       |
   11|       |   /* make sure there are at least two digits */
   12|  2.44k|   if (a->alloc < 2) {
  ------------------
  |  Branch (12:8): [True: 0, False: 2.44k]
  ------------------
   13|      0|      if ((err = mp_grow(a, 2)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (13:11): [True: 0, False: 0]
  ------------------
   14|      0|         return err;
   15|      0|      }
   16|      0|   }
   17|       |
   18|       |   /* zero the int */
   19|  2.44k|   mp_zero(a);
   20|       |
   21|       |   /* read the bytes in */
   22|  21.5k|   while (size-- > 0u) {
  ------------------
  |  Branch (22:11): [True: 19.0k, False: 2.44k]
  ------------------
   23|  19.0k|      if ((err = mp_mul_2d(a, 8, a)) != MP_OKAY) {
  ------------------
  |  |  161|  19.0k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (23:11): [True: 0, False: 19.0k]
  ------------------
   24|      0|         return err;
   25|      0|      }
   26|       |
   27|  19.0k|#ifndef MP_8BIT
   28|  19.0k|      a->dp[0] |= *buf++;
   29|  19.0k|      a->used += 1;
   30|       |#else
   31|       |      a->dp[0] = (*buf & MP_MASK);
   32|       |      a->dp[1] |= ((*buf++ >> 7) & 1u);
   33|       |      a->used += 2;
   34|       |#endif
   35|  19.0k|   }
   36|  2.44k|   mp_clamp(a);
   37|  2.44k|   return MP_OKAY;
  ------------------
  |  |  161|  2.44k|#define MP_OKAY       0   /* no error */
  ------------------
   38|  2.44k|}

mp_grow:
    8|    886|{
    9|    886|   int     i;
   10|    886|   mp_digit *tmp;
   11|       |
   12|       |   /* if the alloc size is smaller alloc more ram */
   13|    886|   if (a->alloc < size) {
  ------------------
  |  Branch (13:8): [True: 886, False: 0]
  ------------------
   14|       |      /* reallocate the array a->dp
   15|       |       *
   16|       |       * We store the return in a temporary variable
   17|       |       * in case the operation failed we don't want
   18|       |       * to overwrite the dp member of a.
   19|       |       */
   20|    886|      tmp = (mp_digit *) MP_REALLOC(a->dp,
  ------------------
  |  | 1325|    886|#define MP_REALLOC   m_realloc_ltm
  ------------------
   21|    886|                                    (size_t)a->alloc * sizeof(mp_digit),
   22|    886|                                    (size_t)size * sizeof(mp_digit));
   23|    886|      if (tmp == NULL) {
  ------------------
  |  Branch (23:11): [True: 0, False: 886]
  ------------------
   24|       |         /* reallocation failed but "a" is still valid [can be freed] */
   25|      0|         return MP_MEM;
  ------------------
  |  |  163|      0|#define MP_MEM        -2  /* out of mem */
  ------------------
   26|      0|      }
   27|       |
   28|       |      /* reallocation succeeded so set a->dp */
   29|    886|      a->dp = tmp;
   30|       |
   31|       |      /* zero excess digits */
   32|    886|      i        = a->alloc;
   33|    886|      a->alloc = size;
   34|    886|      MP_ZERO_DIGITS(a->dp + i, a->alloc - i);
  ------------------
  |  |   89|    886|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|    886|do {                                                    \
  |  |   91|    886|   int zd_ = (digits);                                  \
  |  |   92|    886|   mp_digit* zm_ = (mem);                               \
  |  |   93|  1.77k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 892, False: 886]
  |  |  ------------------
  |  |   94|    892|      *zm_++ = 0;                                       \
  |  |   95|    892|   }                                                    \
  |  |   96|    886|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   35|    886|   }
   36|    886|   return MP_OKAY;
  ------------------
  |  |  161|    886|#define MP_OKAY       0   /* no error */
  ------------------
   37|    886|}

mp_init:
    8|  11.2k|{
    9|       |   /* allocate memory required and clear it */
   10|  11.2k|   a->dp = (mp_digit *) MP_CALLOC((size_t)MP_PREC, sizeof(mp_digit));
  ------------------
  |  | 1326|  11.2k|#define MP_CALLOC    m_calloc
  ------------------
                 a->dp = (mp_digit *) MP_CALLOC((size_t)MP_PREC, sizeof(mp_digit));
  ------------------
  |  |  177|  11.2k|#   define MP_PREC PRIVATE_MP_PREC
  |  |  ------------------
  |  |  |  |  193|  11.2k|#      define PRIVATE_MP_PREC 32        /* default digits of precision */
  |  |  ------------------
  ------------------
   11|  11.2k|   if (a->dp == NULL) {
  ------------------
  |  Branch (11:8): [True: 0, False: 11.2k]
  ------------------
   12|      0|      return MP_MEM;
  ------------------
  |  |  163|      0|#define MP_MEM        -2  /* out of mem */
  ------------------
   13|      0|   }
   14|       |
   15|       |   /* set the used to zero, allocated digits to the default precision
   16|       |    * and sign to positive */
   17|  11.2k|   a->used  = 0;
   18|  11.2k|   a->alloc = MP_PREC;
  ------------------
  |  |  177|  11.2k|#   define MP_PREC PRIVATE_MP_PREC
  |  |  ------------------
  |  |  |  |  193|  11.2k|#      define PRIVATE_MP_PREC 32        /* default digits of precision */
  |  |  ------------------
  ------------------
   19|  11.2k|   a->sign  = MP_ZPOS;
  ------------------
  |  |  151|  11.2k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   20|       |
   21|  11.2k|   return MP_OKAY;
  ------------------
  |  |  161|  11.2k|#define MP_OKAY       0   /* no error */
  ------------------
   22|  11.2k|}

mp_init_copy:
    8|  8.68k|{
    9|  8.68k|   mp_err     err;
   10|       |
   11|  8.68k|   if ((err = mp_init_size(a, b->used)) != MP_OKAY) {
  ------------------
  |  |  161|  8.68k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (11:8): [True: 0, False: 8.68k]
  ------------------
   12|      0|      return err;
   13|      0|   }
   14|       |
   15|  8.68k|   if ((err = mp_copy(b, a)) != MP_OKAY) {
  ------------------
  |  |  161|  8.68k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (15:8): [True: 0, False: 8.68k]
  ------------------
   16|      0|      mp_clear(a);
   17|      0|   }
   18|       |
   19|  8.68k|   return err;
   20|  8.68k|}

mp_init_size:
    8|  8.68k|{
    9|  8.68k|   size = MP_MAX(MP_MIN_PREC, size);
  ------------------
  |  |  157|  8.68k|#define MP_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (157:23): [True: 8.68k, False: 8]
  |  |  ------------------
  ------------------
   10|       |
   11|       |   /* alloc mem */
   12|  8.68k|   a->dp = (mp_digit *) MP_CALLOC((size_t)size, sizeof(mp_digit));
  ------------------
  |  | 1326|  8.68k|#define MP_CALLOC    m_calloc
  ------------------
   13|  8.68k|   if (a->dp == NULL) {
  ------------------
  |  Branch (13:8): [True: 0, False: 8.68k]
  ------------------
   14|      0|      return MP_MEM;
  ------------------
  |  |  163|      0|#define MP_MEM        -2  /* out of mem */
  ------------------
   15|      0|   }
   16|       |
   17|       |   /* set the members */
   18|  8.68k|   a->used  = 0;
   19|  8.68k|   a->alloc = size;
   20|  8.68k|   a->sign  = MP_ZPOS;
  ------------------
  |  |  151|  8.68k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   21|       |
   22|  8.68k|   return MP_OKAY;
  ------------------
  |  |  161|  8.68k|#define MP_OKAY       0   /* no error */
  ------------------
   23|  8.68k|}

mp_lshd:
    8|     12|{
    9|     12|   int x;
   10|     12|   mp_err err;
   11|     12|   mp_digit *top, *bottom;
   12|       |
   13|       |   /* if its less than zero return */
   14|     12|   if (b <= 0) {
  ------------------
  |  Branch (14:8): [True: 2, False: 10]
  ------------------
   15|      2|      return MP_OKAY;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
   16|      2|   }
   17|       |   /* no need to shift 0 around */
   18|     10|   if (MP_IS_ZERO(a)) {
  ------------------
  |  |  163|     10|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 10]
  |  |  ------------------
  ------------------
   19|      0|      return MP_OKAY;
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
   20|      0|   }
   21|       |
   22|       |   /* grow to fit the new digits */
   23|     10|   if (a->alloc < (a->used + b)) {
  ------------------
  |  Branch (23:8): [True: 2, False: 8]
  ------------------
   24|      2|      if ((err = mp_grow(a, a->used + b)) != MP_OKAY) {
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (24:11): [True: 0, False: 2]
  ------------------
   25|      0|         return err;
   26|      0|      }
   27|      2|   }
   28|       |
   29|       |   /* increment the used by the shift amount then copy upwards */
   30|     10|   a->used += b;
   31|       |
   32|       |   /* top */
   33|     10|   top = a->dp + a->used - 1;
   34|       |
   35|       |   /* base */
   36|     10|   bottom = (a->dp + a->used - 1) - b;
   37|       |
   38|       |   /* much like mp_rshd this is implemented using a sliding window
   39|       |    * except the window goes the otherway around.  Copying from
   40|       |    * the bottom to the top.  see bn_mp_rshd.c for more info.
   41|       |    */
   42|     68|   for (x = a->used - 1; x >= b; x--) {
  ------------------
  |  Branch (42:26): [True: 58, False: 10]
  ------------------
   43|     58|      *top-- = *bottom--;
   44|     58|   }
   45|       |
   46|       |   /* zero the lower digits */
   47|     10|   MP_ZERO_DIGITS(a->dp, b);
  ------------------
  |  |   89|     10|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|     10|do {                                                    \
  |  |   91|     10|   int zd_ = (digits);                                  \
  |  |   92|     10|   mp_digit* zm_ = (mem);                               \
  |  |   93|     40|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 30, False: 10]
  |  |  ------------------
  |  |   94|     30|      *zm_++ = 0;                                       \
  |  |   95|     30|   }                                                    \
  |  |   96|     10|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   48|       |
   49|     10|   return MP_OKAY;
  ------------------
  |  |  161|     10|#define MP_OKAY       0   /* no error */
  ------------------
   50|     10|}

mp_mod:
    8|      2|{
    9|      2|   mp_int  t;
   10|      2|   mp_err  err;
   11|       |
   12|      2|   if ((err = mp_init_size(&t, b->used)) != MP_OKAY) {
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (12:8): [True: 0, False: 2]
  ------------------
   13|      0|      return err;
   14|      0|   }
   15|       |
   16|      2|   if ((err = mp_div(a, b, NULL, &t)) != MP_OKAY) {
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:8): [True: 0, False: 2]
  ------------------
   17|      0|      goto LBL_ERR;
   18|      0|   }
   19|       |
   20|      2|   if (MP_IS_ZERO(&t) || (t.sign == b->sign)) {
  ------------------
  |  |  163|      4|#define MP_IS_ZERO(a) ((a)->used == 0)
  |  |  ------------------
  |  |  |  Branch (163:23): [True: 0, False: 2]
  |  |  ------------------
  ------------------
  |  Branch (20:26): [True: 2, False: 0]
  ------------------
   21|      2|      err = MP_OKAY;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
   22|      2|      mp_exch(&t, c);
   23|      2|   } else {
   24|      0|      err = mp_add(b, &t, c);
   25|      0|   }
   26|       |
   27|      2|LBL_ERR:
   28|      2|   mp_clear(&t);
   29|      2|   return err;
   30|      2|}

mp_mul:
    8|      1|{
    9|      1|   mp_err err;
   10|      1|   int min_len = MP_MIN(a->used, b->used),
  ------------------
  |  |  156|      1|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 0, False: 1]
  |  |  ------------------
  ------------------
   11|      1|       max_len = MP_MAX(a->used, b->used),
  ------------------
  |  |  157|      1|#define MP_MAX(x, y) (((x) > (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (157:23): [True: 0, False: 1]
  |  |  ------------------
  ------------------
   12|      1|       digs = a->used + b->used + 1;
   13|      1|   mp_sign neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
  ------------------
  |  |  151|      1|#define MP_ZPOS       0   /* positive integer */
  ------------------
                 mp_sign neg = (a->sign == b->sign) ? MP_ZPOS : MP_NEG;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
  |  Branch (13:18): [True: 1, False: 0]
  ------------------
   14|       |
   15|      1|   if (MP_HAS(S_MP_BALANCE_MUL) &&
  ------------------
  |  |  150|      2|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      1|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      1|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   16|       |       /* Check sizes. The smaller one needs to be larger than the Karatsuba cut-off.
   17|       |        * The bigger one needs to be at least about one MP_KARATSUBA_MUL_CUTOFF bigger
   18|       |        * to make some sense, but it depends on architecture, OS, position of the
   19|       |        * stars... so YMMV.
   20|       |        * Using it to cut the input into slices small enough for fast_s_mp_mul_digs
   21|       |        * was actually slower on the author's machine, but YMMV.
   22|       |        */
   23|      1|       (min_len >= MP_KARATSUBA_MUL_CUTOFF) &&
  ------------------
  |  |  121|      1|#  define MP_KARATSUBA_MUL_CUTOFF KARATSUBA_MUL_CUTOFF
  ------------------
  |  Branch (23:8): [True: 0, False: 1]
  ------------------
   24|      1|       ((max_len / 2) >= MP_KARATSUBA_MUL_CUTOFF) &&
  ------------------
  |  |  121|      0|#  define MP_KARATSUBA_MUL_CUTOFF KARATSUBA_MUL_CUTOFF
  ------------------
  |  Branch (24:8): [True: 0, False: 0]
  ------------------
   25|       |       /* Not much effect was observed below a ratio of 1:2, but again: YMMV. */
   26|      1|       (max_len >= (2 * min_len))) {
  ------------------
  |  Branch (26:8): [True: 0, False: 0]
  ------------------
   27|      0|      err = s_mp_balance_mul(a,b,c);
   28|      1|   } else if (MP_HAS(S_MP_TOOM_MUL) &&
  ------------------
  |  |  150|      2|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      1|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      1|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   29|      1|              (min_len >= MP_TOOM_MUL_CUTOFF)) {
  ------------------
  |  |  123|      0|#  define MP_TOOM_MUL_CUTOFF      TOOM_MUL_CUTOFF
  ------------------
  |  Branch (29:15): [True: 0, False: 0]
  ------------------
   30|      0|      err = s_mp_toom_mul(a, b, c);
   31|      1|   } else if (MP_HAS(S_MP_KARATSUBA_MUL) &&
  ------------------
  |  |  150|      2|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      1|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      1|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   32|      1|              (min_len >= MP_KARATSUBA_MUL_CUTOFF)) {
  ------------------
  |  |  121|      0|#  define MP_KARATSUBA_MUL_CUTOFF KARATSUBA_MUL_CUTOFF
  ------------------
  |  Branch (32:15): [True: 0, False: 0]
  ------------------
   33|      0|      err = s_mp_karatsuba_mul(a, b, c);
   34|      1|   } else if (MP_HAS(S_MP_MUL_DIGS_FAST) &&
  ------------------
  |  |  150|      2|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      1|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      1|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   35|       |              /* can we use the fast multiplier?
   36|       |               *
   37|       |               * The fast multiplier can be used if the output will
   38|       |               * have less than MP_WARRAY digits and the number of
   39|       |               * digits won't affect carry propagation
   40|       |               */
   41|      1|              (digs < MP_WARRAY) &&
  ------------------
  |  |  172|      1|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|      1|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      1|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (41:15): [True: 1, False: 0]
  ------------------
   42|      1|              (min_len <= MP_MAXFAST)) {
  ------------------
  |  |  168|      1|#define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |  167|      1|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  |  |  ------------------
  |  |               #define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |   82|      1|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (42:15): [True: 1, False: 0]
  ------------------
   43|      1|      err = s_mp_mul_digs_fast(a, b, c, digs);
   44|      1|   } else if (MP_HAS(S_MP_MUL_DIGS)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   45|      0|      err = s_mp_mul_digs(a, b, c, digs);
   46|      0|   } else {
   47|      0|      err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   48|      0|   }
   49|      1|   c->sign = (c->used > 0) ? neg : MP_ZPOS;
  ------------------
  |  |  151|      1|#define MP_ZPOS       0   /* positive integer */
  ------------------
  |  Branch (49:14): [True: 1, False: 0]
  ------------------
   50|      1|   return err;
   51|      1|}

mp_mul_2d:
    8|  19.0k|{
    9|  19.0k|   mp_digit d;
   10|  19.0k|   mp_err   err;
   11|       |
   12|       |   /* copy */
   13|  19.0k|   if (a != c) {
  ------------------
  |  Branch (13:8): [True: 0, False: 19.0k]
  ------------------
   14|      0|      if ((err = mp_copy(a, c)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (14:11): [True: 0, False: 0]
  ------------------
   15|      0|         return err;
   16|      0|      }
   17|      0|   }
   18|       |
   19|  19.0k|   if (c->alloc < (c->used + (b / MP_DIGIT_BIT) + 1)) {
  ------------------
  |  |   82|  19.0k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (19:8): [True: 883, False: 18.1k]
  ------------------
   20|    883|      if ((err = mp_grow(c, c->used + (b / MP_DIGIT_BIT) + 1)) != MP_OKAY) {
  ------------------
  |  |   82|    883|#   define MP_DIGIT_BIT 60
  ------------------
                    if ((err = mp_grow(c, c->used + (b / MP_DIGIT_BIT) + 1)) != MP_OKAY) {
  ------------------
  |  |  161|    883|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (20:11): [True: 0, False: 883]
  ------------------
   21|      0|         return err;
   22|      0|      }
   23|    883|   }
   24|       |
   25|       |   /* shift by as many digits in the bit count */
   26|  19.0k|   if (b >= MP_DIGIT_BIT) {
  ------------------
  |  |   82|  19.0k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (26:8): [True: 0, False: 19.0k]
  ------------------
   27|      0|      if ((err = mp_lshd(c, b / MP_DIGIT_BIT)) != MP_OKAY) {
  ------------------
  |  |   82|      0|#   define MP_DIGIT_BIT 60
  ------------------
                    if ((err = mp_lshd(c, b / MP_DIGIT_BIT)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (27:11): [True: 0, False: 0]
  ------------------
   28|      0|         return err;
   29|      0|      }
   30|      0|   }
   31|       |
   32|       |   /* shift any bit count < MP_DIGIT_BIT */
   33|  19.0k|   d = (mp_digit)(b % MP_DIGIT_BIT);
  ------------------
  |  |   82|  19.0k|#   define MP_DIGIT_BIT 60
  ------------------
   34|  19.0k|   if (d != 0u) {
  ------------------
  |  Branch (34:8): [True: 19.0k, False: 0]
  ------------------
   35|  19.0k|      mp_digit *tmpc, shift, mask, r, rr;
   36|  19.0k|      int x;
   37|       |
   38|       |      /* bitmask for carries */
   39|  19.0k|      mask = ((mp_digit)1 << d) - (mp_digit)1;
   40|       |
   41|       |      /* shift for msbs */
   42|  19.0k|      shift = (mp_digit)MP_DIGIT_BIT - d;
  ------------------
  |  |   82|  19.0k|#   define MP_DIGIT_BIT 60
  ------------------
   43|       |
   44|       |      /* alias */
   45|  19.0k|      tmpc = c->dp;
   46|       |
   47|       |      /* carry */
   48|  19.0k|      r    = 0;
   49|   578k|      for (x = 0; x < c->used; x++) {
  ------------------
  |  Branch (49:19): [True: 558k, False: 19.0k]
  ------------------
   50|       |         /* get the higher bits of the current word */
   51|   558k|         rr = (*tmpc >> shift) & mask;
   52|       |
   53|       |         /* shift the current word and OR in the carry */
   54|   558k|         *tmpc = ((*tmpc << d) | r) & MP_MASK;
  ------------------
  |  |  106|   558k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|   558k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   55|   558k|         ++tmpc;
   56|       |
   57|       |         /* set the carry to the carry bits of the current word */
   58|   558k|         r = rr;
   59|   558k|      }
   60|       |
   61|       |      /* set final carry */
   62|  19.0k|      if (r != 0u) {
  ------------------
  |  Branch (62:11): [True: 2, False: 19.0k]
  ------------------
   63|      2|         c->dp[(c->used)++] = r;
   64|      2|      }
   65|  19.0k|   }
   66|  19.0k|   mp_clamp(c);
   67|  19.0k|   return MP_OKAY;
  ------------------
  |  |  161|  19.0k|#define MP_OKAY       0   /* no error */
  ------------------
   68|  19.0k|}

mp_mul_d:
    8|    148|{
    9|    148|   mp_digit u, *tmpa, *tmpc;
   10|    148|   mp_word  r;
   11|    148|   mp_err   err;
   12|    148|   int      ix, olduse;
   13|       |
   14|       |   /* make sure c is big enough to hold a*b */
   15|    148|   if (c->alloc < (a->used + 1)) {
  ------------------
  |  Branch (15:8): [True: 0, False: 148]
  ------------------
   16|      0|      if ((err = mp_grow(c, a->used + 1)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (16:11): [True: 0, False: 0]
  ------------------
   17|      0|         return err;
   18|      0|      }
   19|      0|   }
   20|       |
   21|       |   /* get the original destinations used count */
   22|    148|   olduse = c->used;
   23|       |
   24|       |   /* set the sign */
   25|    148|   c->sign = a->sign;
   26|       |
   27|       |   /* alias for a->dp [source] */
   28|    148|   tmpa = a->dp;
   29|       |
   30|       |   /* alias for c->dp [dest] */
   31|    148|   tmpc = c->dp;
   32|       |
   33|       |   /* zero carry */
   34|    148|   u = 0;
   35|       |
   36|       |   /* compute columns */
   37|    548|   for (ix = 0; ix < a->used; ix++) {
  ------------------
  |  Branch (37:17): [True: 400, False: 148]
  ------------------
   38|       |      /* compute product and carry sum for this term */
   39|    400|      r       = (mp_word)u + ((mp_word)*tmpa++ * (mp_word)b);
   40|       |
   41|       |      /* mask off higher bits to get a single digit */
   42|    400|      *tmpc++ = (mp_digit)(r & (mp_word)MP_MASK);
  ------------------
  |  |  106|    400|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|    400|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   43|       |
   44|       |      /* send carry into next iteration */
   45|    400|      u       = (mp_digit)(r >> (mp_word)MP_DIGIT_BIT);
  ------------------
  |  |   82|    400|#   define MP_DIGIT_BIT 60
  ------------------
   46|    400|   }
   47|       |
   48|       |   /* store final carry [if any] and increment ix offset  */
   49|    148|   *tmpc++ = u;
   50|    148|   ++ix;
   51|       |
   52|       |   /* now zero digits above the top */
   53|    148|   MP_ZERO_DIGITS(tmpc, olduse - ix);
  ------------------
  |  |   89|    148|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|    148|do {                                                    \
  |  |   91|    148|   int zd_ = (digits);                                  \
  |  |   92|    148|   mp_digit* zm_ = (mem);                               \
  |  |   93|    148|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 148]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|    148|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   54|       |
   55|       |   /* set used count */
   56|    148|   c->used = a->used + 1;
   57|    148|   mp_clamp(c);
   58|       |
   59|    148|   return MP_OKAY;
  ------------------
  |  |  161|    148|#define MP_OKAY       0   /* no error */
  ------------------
   60|    148|}

mp_rand_source:
   10|      1|{
   11|       |   /* Dropbear, don't reset to platform if source==NULL */
   12|      1|   s_mp_rand_source = source;
   13|      1|}

mp_read_radix:
   10|      2|{
   11|      2|   mp_err   err;
   12|      2|   int      y;
   13|      2|   mp_sign  neg;
   14|      2|   unsigned pos;
   15|      2|   char     ch;
   16|       |
   17|       |   /* zero the digit bignum */
   18|      2|   mp_zero(a);
   19|       |
   20|       |   /* make sure the radix is ok */
   21|      2|   if ((radix < 2) || (radix > 64)) {
  ------------------
  |  Branch (21:8): [True: 0, False: 2]
  |  Branch (21:23): [True: 0, False: 2]
  ------------------
   22|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   23|      0|   }
   24|       |
   25|       |   /* if the leading digit is a
   26|       |    * minus set the sign to negative.
   27|       |    */
   28|      2|   if (*str == '-') {
  ------------------
  |  Branch (28:8): [True: 0, False: 2]
  ------------------
   29|      0|      ++str;
   30|      0|      neg = MP_NEG;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
   31|      2|   } else {
   32|      2|      neg = MP_ZPOS;
  ------------------
  |  |  151|      2|#define MP_ZPOS       0   /* positive integer */
  ------------------
   33|      2|   }
   34|       |
   35|       |   /* set the integer to the default of zero */
   36|      2|   mp_zero(a);
   37|       |
   38|       |   /* process each digit of the string */
   39|    130|   while (*str != '\0') {
  ------------------
  |  Branch (39:11): [True: 128, False: 2]
  ------------------
   40|       |      /* if the radix <= 36 the conversion is case insensitive
   41|       |       * this allows numbers like 1AB and 1ab to represent the same  value
   42|       |       * [e.g. in hex]
   43|       |       */
   44|    128|      ch = (radix <= 36) ? (char)MP_TOUPPER((int)*str) : *str;
  ------------------
  |  |    6|    128|#define MP_TOUPPER(c) ((((c) >= 'a') && ((c) <= 'z')) ? (((c) + 'A') - 'a') : (c))
  |  |  ------------------
  |  |  |  Branch (6:25): [True: 0, False: 128]
  |  |  |  Branch (6:41): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (44:12): [True: 128, False: 0]
  ------------------
   45|    128|      pos = (unsigned)(ch - '(');
   46|    128|      if (mp_s_rmap_reverse_sz < pos) {
  ------------------
  |  Branch (46:11): [True: 0, False: 128]
  ------------------
   47|      0|         break;
   48|      0|      }
   49|    128|      y = (int)mp_s_rmap_reverse[pos];
   50|       |
   51|       |      /* if the char was found in the map
   52|       |       * and is less than the given radix add it
   53|       |       * to the number, otherwise exit the loop.
   54|       |       */
   55|    128|      if ((y == 0xff) || (y >= radix)) {
  ------------------
  |  Branch (55:11): [True: 0, False: 128]
  |  Branch (55:26): [True: 0, False: 128]
  ------------------
   56|      0|         break;
   57|      0|      }
   58|    128|      if ((err = mp_mul_d(a, (mp_digit)radix, a)) != MP_OKAY) {
  ------------------
  |  |  161|    128|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (58:11): [True: 0, False: 128]
  ------------------
   59|      0|         return err;
   60|      0|      }
   61|    128|      if ((err = mp_add_d(a, (mp_digit)y, a)) != MP_OKAY) {
  ------------------
  |  |  161|    128|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (61:11): [True: 0, False: 128]
  ------------------
   62|      0|         return err;
   63|      0|      }
   64|    128|      ++str;
   65|    128|   }
   66|       |
   67|       |   /* if an illegal character was found, fail. */
   68|      2|   if (!((*str == '\0') || (*str == '\r') || (*str == '\n'))) {
  ------------------
  |  Branch (68:10): [True: 2, False: 0]
  |  Branch (68:28): [True: 0, False: 0]
  |  Branch (68:46): [True: 0, False: 0]
  ------------------
   69|      0|      mp_zero(a);
   70|      0|      return MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   71|      0|   }
   72|       |
   73|       |   /* set the sign only if a != 0 */
   74|      2|   if (!MP_IS_ZERO(a)) {
  ------------------
  |  |  163|      2|#define MP_IS_ZERO(a) ((a)->used == 0)
  ------------------
  |  Branch (74:8): [True: 2, False: 0]
  ------------------
   75|      2|      a->sign = neg;
   76|      2|   }
   77|      2|   return MP_OKAY;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
   78|      2|}

mp_rshd:
    8|      2|{
    9|      2|   int     x;
   10|      2|   mp_digit *bottom, *top;
   11|       |
   12|       |   /* if b <= 0 then ignore it */
   13|      2|   if (b <= 0) {
  ------------------
  |  Branch (13:8): [True: 0, False: 2]
  ------------------
   14|      0|      return;
   15|      0|   }
   16|       |
   17|       |   /* if b > used then simply zero it and return */
   18|      2|   if (a->used <= b) {
  ------------------
  |  Branch (18:8): [True: 0, False: 2]
  ------------------
   19|      0|      mp_zero(a);
   20|      0|      return;
   21|      0|   }
   22|       |
   23|       |   /* shift the digits down */
   24|       |
   25|       |   /* bottom */
   26|      2|   bottom = a->dp;
   27|       |
   28|       |   /* top [offset into digits] */
   29|      2|   top = a->dp + b;
   30|       |
   31|       |   /* this is implemented as a sliding window where
   32|       |    * the window is b-digits long and digits from
   33|       |    * the top of the window are copied to the bottom
   34|       |    *
   35|       |    * e.g.
   36|       |
   37|       |    b-2 | b-1 | b0 | b1 | b2 | ... | bb |   ---->
   38|       |                /\                   |      ---->
   39|       |                 \-------------------/      ---->
   40|       |    */
   41|     12|   for (x = 0; x < (a->used - b); x++) {
  ------------------
  |  Branch (41:16): [True: 10, False: 2]
  ------------------
   42|     10|      *bottom++ = *top++;
   43|     10|   }
   44|       |
   45|       |   /* zero the top digits */
   46|      2|   MP_ZERO_DIGITS(bottom, a->used - x);
  ------------------
  |  |   89|      2|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|      2|do {                                                    \
  |  |   91|      2|   int zd_ = (digits);                                  \
  |  |   92|      2|   mp_digit* zm_ = (mem);                               \
  |  |   93|     12|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 10, False: 2]
  |  |  ------------------
  |  |   94|     10|      *zm_++ = 0;                                       \
  |  |   95|     10|   }                                                    \
  |  |   96|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   47|       |
   48|       |   /* remove excess digits */
   49|      2|   a->used -= b;
   50|      2|}

mp_set:
    8|      1|{
    9|      1|   a->dp[0] = b & MP_MASK;
  ------------------
  |  |  106|      1|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      1|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   10|      1|   a->sign  = MP_ZPOS;
  ------------------
  |  |  151|      1|#define MP_ZPOS       0   /* positive integer */
  ------------------
   11|      1|   a->used  = (a->dp[0] != 0u) ? 1 : 0;
  ------------------
  |  Branch (11:15): [True: 1, False: 0]
  ------------------
   12|      1|   MP_ZERO_DIGITS(a->dp + a->used, a->alloc - a->used);
  ------------------
  |  |   89|      1|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|      1|do {                                                    \
  |  |   91|      1|   int zd_ = (digits);                                  \
  |  |   92|      1|   mp_digit* zm_ = (mem);                               \
  |  |   93|     32|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 31, False: 1]
  |  |  ------------------
  |  |   94|     31|      *zm_++ = 0;                                       \
  |  |   95|     31|   }                                                    \
  |  |   96|      1|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   13|      1|}

mp_sqr:
    8|      2|{
    9|      2|   mp_err err;
   10|      2|   if (MP_HAS(S_MP_TOOM_SQR) && /* use Toom-Cook? */
  ------------------
  |  |  150|      4|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      2|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      2|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   11|      2|       (a->used >= MP_TOOM_SQR_CUTOFF)) {
  ------------------
  |  |  124|      0|#  define MP_TOOM_SQR_CUTOFF      TOOM_SQR_CUTOFF
  ------------------
  |  Branch (11:8): [True: 0, False: 0]
  ------------------
   12|      0|      err = s_mp_toom_sqr(a, b);
   13|      2|   } else if (MP_HAS(S_MP_KARATSUBA_SQR) &&  /* Karatsuba? */
  ------------------
  |  |  150|      4|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      2|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      2|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   14|      2|              (a->used >= MP_KARATSUBA_SQR_CUTOFF)) {
  ------------------
  |  |  122|      0|#  define MP_KARATSUBA_SQR_CUTOFF KARATSUBA_SQR_CUTOFF
  ------------------
  |  Branch (14:15): [True: 0, False: 0]
  ------------------
   15|      0|      err = s_mp_karatsuba_sqr(a, b);
   16|      2|   } else if (MP_HAS(S_MP_SQR_FAST) && /* can we use the fast comba multiplier? */
  ------------------
  |  |  150|      4|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      2|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      2|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   17|      2|              (((a->used * 2) + 1) < MP_WARRAY) &&
  ------------------
  |  |  172|      2|#define MP_WARRAY PRIVATE_MP_WARRAY
  |  |  ------------------
  |  |  |  |  203|      2|#define PRIVATE_MP_WARRAY (int)(1uLL << (((CHAR_BIT * sizeof(private_mp_word)) - (2 * MP_DIGIT_BIT)) + 1))
  |  |  |  |  ------------------
  |  |  |  |  |  |   82|      2|#   define MP_DIGIT_BIT 60
  |  |  |  |  ------------------
  |  |  ------------------
  ------------------
  |  Branch (17:15): [True: 2, False: 0]
  ------------------
   18|      2|              (a->used < (MP_MAXFAST / 2))) {
  ------------------
  |  |  168|      2|#define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |  167|      2|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  |  |  ------------------
  |  |               #define MP_MAXFAST              (int)(1uL << (MP_SIZEOF_BITS(mp_word) - (2u * (size_t)MP_DIGIT_BIT)))
  |  |  ------------------
  |  |  |  |   82|      2|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  |  Branch (18:15): [True: 2, False: 0]
  ------------------
   19|      2|      err = s_mp_sqr_fast(a, b);
   20|      2|   } else if (MP_HAS(S_MP_SQR)) {
  ------------------
  |  |  150|      0|#define MP_HAS(x)        (sizeof(MP_STRINGIZE(BN_##x##_C)) == 1u)
  |  |  ------------------
  |  |  |  |  148|      0|#define MP_STRINGIZE(x)  MP__STRINGIZE(x)
  |  |  |  |  ------------------
  |  |  |  |  |  |  149|      0|#define MP__STRINGIZE(x) ""#x""
  |  |  |  |  ------------------
  |  |  ------------------
  |  |  |  Branch (150:26): [Folded - Ignored]
  |  |  ------------------
  ------------------
   21|      0|      err = s_mp_sqr(a, b);
   22|      0|   } else {
   23|      0|      err = MP_VAL;
  ------------------
  |  |  164|      0|#define MP_VAL        -3  /* invalid input */
  ------------------
   24|      0|   }
   25|      2|   b->sign = MP_ZPOS;
  ------------------
  |  |  151|      2|#define MP_ZPOS       0   /* positive integer */
  ------------------
   26|      2|   return err;
   27|      2|}

mp_sub:
    8|     11|{
    9|     11|   mp_sign sa = a->sign, sb = b->sign;
   10|     11|   mp_err err;
   11|       |
   12|     11|   if (sa != sb) {
  ------------------
  |  Branch (12:8): [True: 0, False: 11]
  ------------------
   13|       |      /* subtract a negative from a positive, OR */
   14|       |      /* subtract a positive from a negative. */
   15|       |      /* In either case, ADD their magnitudes, */
   16|       |      /* and use the sign of the first number. */
   17|      0|      c->sign = sa;
   18|      0|      err = s_mp_add(a, b, c);
   19|     11|   } else {
   20|       |      /* subtract a positive from a positive, OR */
   21|       |      /* subtract a negative from a negative. */
   22|       |      /* First, take the difference between their */
   23|       |      /* magnitudes, then... */
   24|     11|      if (mp_cmp_mag(a, b) != MP_LT) {
  ------------------
  |  |  154|     11|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (24:11): [True: 11, False: 0]
  ------------------
   25|       |         /* Copy the sign from the first */
   26|     11|         c->sign = sa;
   27|       |         /* The first has a larger or equal magnitude */
   28|     11|         err = s_mp_sub(a, b, c);
   29|     11|      } else {
   30|       |         /* The result has the *opposite* sign from */
   31|       |         /* the first number. */
   32|      0|         c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
  ------------------
  |  |  151|      0|#define MP_ZPOS       0   /* positive integer */
  ------------------
                       c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
  ------------------
  |  |  152|      0|#define MP_NEG        1   /* negative */
  ------------------
                       c->sign = (sa == MP_ZPOS) ? MP_NEG : MP_ZPOS;
  ------------------
  |  |  151|      0|#define MP_ZPOS       0   /* positive integer */
  ------------------
  |  Branch (32:20): [True: 0, False: 0]
  ------------------
   33|       |         /* The second has a larger magnitude */
   34|      0|         err = s_mp_sub(b, a, c);
   35|      0|      }
   36|     11|   }
   37|     11|   return err;
   38|     11|}

mp_to_ubin:
    8|  8.68k|{
    9|  8.68k|   size_t  x, count;
   10|  8.68k|   mp_err  err;
   11|  8.68k|   mp_int  t;
   12|       |
   13|  8.68k|   count = mp_ubin_size(a);
   14|  8.68k|   if (count > maxlen) {
  ------------------
  |  Branch (14:8): [True: 0, False: 8.68k]
  ------------------
   15|      0|      return MP_BUF;
  ------------------
  |  |  167|      0|#define MP_BUF        -5  /* buffer overflow, supplied buffer too small */
  ------------------
   16|      0|   }
   17|       |
   18|  8.68k|   if ((err = mp_init_copy(&t, a)) != MP_OKAY) {
  ------------------
  |  |  161|  8.68k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (18:8): [True: 0, False: 8.68k]
  ------------------
   19|      0|      return err;
   20|      0|   }
   21|       |
   22|  34.7k|   for (x = count; x --> 0u;) {
  ------------------
  |  Branch (22:20): [True: 26.0k, False: 8.68k]
  ------------------
   23|  26.0k|#ifndef MP_8BIT
   24|  26.0k|      buf[x] = (unsigned char)(t.dp[0] & 255u);
   25|       |#else
   26|       |      buf[x] = (unsigned char)(t.dp[0] | ((t.dp[1] & 1u) << 7));
   27|       |#endif
   28|  26.0k|      if ((err = mp_div_2d(&t, 8, &t, NULL)) != MP_OKAY) {
  ------------------
  |  |  161|  26.0k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (28:11): [True: 0, False: 26.0k]
  ------------------
   29|      0|         goto LBL_ERR;
   30|      0|      }
   31|  26.0k|   }
   32|       |
   33|  8.68k|   if (written != NULL) {
  ------------------
  |  Branch (33:8): [True: 8.68k, False: 0]
  ------------------
   34|  8.68k|      *written = count;
   35|  8.68k|   }
   36|       |
   37|  8.68k|LBL_ERR:
   38|  8.68k|   mp_clear(&t);
   39|  8.68k|   return err;
   40|  8.68k|}

mp_ubin_size:
    8|  8.68k|{
    9|  8.68k|   size_t size = (size_t)mp_count_bits(a);
   10|  8.68k|   return (size / 8u) + (((size & 7u) != 0u) ? 1u : 0u);
  ------------------
  |  Branch (10:26): [True: 0, False: 8.68k]
  ------------------
   11|  8.68k|}

mp_zero:
    8|  2.55k|{
    9|  2.55k|   a->sign = MP_ZPOS;
  ------------------
  |  |  151|  2.55k|#define MP_ZPOS       0   /* positive integer */
  ------------------
   10|  2.55k|   a->used = 0;
   11|  2.55k|   MP_ZERO_DIGITS(a->dp, a->alloc);
  ------------------
  |  |   89|  2.55k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  2.55k|do {                                                    \
  |  |   91|  2.55k|   int zd_ = (digits);                                  \
  |  |   92|  2.55k|   mp_digit* zm_ = (mem);                               \
  |  |   93|  84.3k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 81.7k, False: 2.55k]
  |  |  ------------------
  |  |   94|  81.7k|      *zm_++ = 0;                                       \
  |  |   95|  81.7k|   }                                                    \
  |  |   96|  2.55k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   12|  2.55k|}

s_mp_add:
    8|      3|{
    9|      3|   const mp_int *x;
   10|      3|   mp_err err;
   11|      3|   int     olduse, min, max;
   12|       |
   13|       |   /* find sizes, we let |a| <= |b| which means we have to sort
   14|       |    * them.  "x" will point to the input with the most digits
   15|       |    */
   16|      3|   if (a->used > b->used) {
  ------------------
  |  Branch (16:8): [True: 3, False: 0]
  ------------------
   17|      3|      min = b->used;
   18|      3|      max = a->used;
   19|      3|      x = a;
   20|      3|   } else {
   21|      0|      min = a->used;
   22|      0|      max = b->used;
   23|      0|      x = b;
   24|      0|   }
   25|       |
   26|       |   /* init result */
   27|      3|   if (c->alloc < (max + 1)) {
  ------------------
  |  Branch (27:8): [True: 0, False: 3]
  ------------------
   28|      0|      if ((err = mp_grow(c, max + 1)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (28:11): [True: 0, False: 0]
  ------------------
   29|      0|         return err;
   30|      0|      }
   31|      0|   }
   32|       |
   33|       |   /* get old used digit count and set new one */
   34|      3|   olduse = c->used;
   35|      3|   c->used = max + 1;
   36|       |
   37|      3|   {
   38|      3|      mp_digit u, *tmpa, *tmpb, *tmpc;
   39|      3|      int i;
   40|       |
   41|       |      /* alias for digit pointers */
   42|       |
   43|       |      /* first input */
   44|      3|      tmpa = a->dp;
   45|       |
   46|       |      /* second input */
   47|      3|      tmpb = b->dp;
   48|       |
   49|       |      /* destination */
   50|      3|      tmpc = c->dp;
   51|       |
   52|       |      /* zero the carry */
   53|      3|      u = 0;
   54|     18|      for (i = 0; i < min; i++) {
  ------------------
  |  Branch (54:19): [True: 15, False: 3]
  ------------------
   55|       |         /* Compute the sum at one digit, T[i] = A[i] + B[i] + U */
   56|     15|         *tmpc = *tmpa++ + *tmpb++ + u;
   57|       |
   58|       |         /* U = carry bit of T[i] */
   59|     15|         u = *tmpc >> (mp_digit)MP_DIGIT_BIT;
  ------------------
  |  |   82|     15|#   define MP_DIGIT_BIT 60
  ------------------
   60|       |
   61|       |         /* take away carry bit from T[i] */
   62|     15|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|     15|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     15|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   63|     15|      }
   64|       |
   65|       |      /* now copy higher words if any, that is in A+B
   66|       |       * if A or B has more digits add those in
   67|       |       */
   68|      3|      if (min != max) {
  ------------------
  |  Branch (68:11): [True: 3, False: 0]
  ------------------
   69|     15|         for (; i < max; i++) {
  ------------------
  |  Branch (69:17): [True: 12, False: 3]
  ------------------
   70|       |            /* T[i] = X[i] + U */
   71|     12|            *tmpc = x->dp[i] + u;
   72|       |
   73|       |            /* U = carry bit of T[i] */
   74|     12|            u = *tmpc >> (mp_digit)MP_DIGIT_BIT;
  ------------------
  |  |   82|     12|#   define MP_DIGIT_BIT 60
  ------------------
   75|       |
   76|       |            /* take away carry bit from T[i] */
   77|     12|            *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|     12|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     12|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   78|     12|         }
   79|      3|      }
   80|       |
   81|       |      /* add carry */
   82|      3|      *tmpc++ = u;
   83|       |
   84|       |      /* clear digits above oldused */
   85|      3|      MP_ZERO_DIGITS(tmpc, olduse - c->used);
  ------------------
  |  |   89|      3|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|      3|do {                                                    \
  |  |   91|      3|   int zd_ = (digits);                                  \
  |  |   92|      3|   mp_digit* zm_ = (mem);                               \
  |  |   93|      3|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 3]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|      3|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   86|      3|   }
   87|       |
   88|      3|   mp_clamp(c);
   89|      3|   return MP_OKAY;
  ------------------
  |  |  161|      3|#define MP_OKAY       0   /* no error */
  ------------------
   90|      3|}

s_mp_mul_digs_fast:
   23|      1|{
   24|      1|   int      olduse, pa, ix, iz;
   25|      1|   mp_err   err;
   26|      1|   mp_digit W[MP_WARRAY];
   27|      1|   mp_word  _W;
   28|       |
   29|       |   /* grow the destination as required */
   30|      1|   if (c->alloc < digs) {
  ------------------
  |  Branch (30:8): [True: 1, False: 0]
  ------------------
   31|      1|      if ((err = mp_grow(c, digs)) != MP_OKAY) {
  ------------------
  |  |  161|      1|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (31:11): [True: 0, False: 1]
  ------------------
   32|      0|         return err;
   33|      0|      }
   34|      1|   }
   35|       |
   36|       |   /* number of output digits to produce */
   37|      1|   pa = MP_MIN(digs, a->used + b->used);
  ------------------
  |  |  156|      1|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 0, False: 1]
  |  |  ------------------
  ------------------
   38|       |
   39|       |   /* clear the carry */
   40|      1|   _W = 0;
   41|     11|   for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (41:17): [True: 10, False: 1]
  ------------------
   42|     10|      int      tx, ty;
   43|     10|      int      iy;
   44|     10|      mp_digit *tmpx, *tmpy;
   45|       |
   46|       |      /* get offsets into the two bignums */
   47|     10|      ty = MP_MIN(b->used-1, ix);
  ------------------
  |  |  156|     10|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 5, False: 5]
  |  |  ------------------
  ------------------
   48|     10|      tx = ix - ty;
   49|       |
   50|       |      /* setup temp aliases */
   51|     10|      tmpx = a->dp + tx;
   52|     10|      tmpy = b->dp + ty;
   53|       |
   54|       |      /* this is the number of times the loop will iterrate, essentially
   55|       |         while (tx++ < a->used && ty-- >= 0) { ... }
   56|       |       */
   57|     10|      iy = MP_MIN(a->used-tx, ty+1);
  ------------------
  |  |  156|     10|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 5, False: 5]
  |  |  ------------------
  ------------------
   58|       |
   59|       |      /* execute loop */
   60|     35|      for (iz = 0; iz < iy; ++iz) {
  ------------------
  |  Branch (60:20): [True: 25, False: 10]
  ------------------
   61|     25|         _W += (mp_word)*tmpx++ * (mp_word)*tmpy--;
   62|       |
   63|     25|      }
   64|       |
   65|       |      /* store term */
   66|     10|      W[ix] = (mp_digit)_W & MP_MASK;
  ------------------
  |  |  106|     10|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     10|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   67|       |
   68|       |      /* make next carry */
   69|     10|      _W = _W >> (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|     10|#   define MP_DIGIT_BIT 60
  ------------------
   70|     10|   }
   71|       |
   72|       |   /* setup dest */
   73|      1|   olduse  = c->used;
   74|      1|   c->used = pa;
   75|       |
   76|      1|   {
   77|      1|      mp_digit *tmpc;
   78|      1|      tmpc = c->dp;
   79|     11|      for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (79:20): [True: 10, False: 1]
  ------------------
   80|       |         /* now extract the previous digit [below the carry] */
   81|     10|         *tmpc++ = W[ix];
   82|     10|      }
   83|       |
   84|       |      /* clear unused digits [that existed in the old copy of c] */
   85|      1|      MP_ZERO_DIGITS(tmpc, olduse - ix);
  ------------------
  |  |   89|      1|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|      1|do {                                                    \
  |  |   91|      1|   int zd_ = (digits);                                  \
  |  |   92|      1|   mp_digit* zm_ = (mem);                               \
  |  |   93|      1|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 1]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|      1|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   86|      1|   }
   87|      1|   mp_clamp(c);
   88|      1|   return MP_OKAY;
  ------------------
  |  |  161|      1|#define MP_OKAY       0   /* no error */
  ------------------
   89|      1|}

s_mp_sqr_fast:
   17|      2|{
   18|      2|   int       olduse, pa, ix, iz;
   19|      2|   mp_digit  W[MP_WARRAY], *tmpx;
   20|      2|   mp_word   W1;
   21|      2|   mp_err    err;
   22|       |
   23|       |   /* grow the destination as required */
   24|      2|   pa = a->used + a->used;
   25|      2|   if (b->alloc < pa) {
  ------------------
  |  Branch (25:8): [True: 0, False: 2]
  ------------------
   26|      0|      if ((err = mp_grow(b, pa)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (26:11): [True: 0, False: 0]
  ------------------
   27|      0|         return err;
   28|      0|      }
   29|      0|   }
   30|       |
   31|       |   /* number of output digits to produce */
   32|      2|   W1 = 0;
   33|     22|   for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (33:17): [True: 20, False: 2]
  ------------------
   34|     20|      int      tx, ty, iy;
   35|     20|      mp_word  _W;
   36|     20|      mp_digit *tmpy;
   37|       |
   38|       |      /* clear counter */
   39|     20|      _W = 0;
   40|       |
   41|       |      /* get offsets into the two bignums */
   42|     20|      ty = MP_MIN(a->used-1, ix);
  ------------------
  |  |  156|     20|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 10, False: 10]
  |  |  ------------------
  ------------------
   43|     20|      tx = ix - ty;
   44|       |
   45|       |      /* setup temp aliases */
   46|     20|      tmpx = a->dp + tx;
   47|     20|      tmpy = a->dp + ty;
   48|       |
   49|       |      /* this is the number of times the loop will iterrate, essentially
   50|       |         while (tx++ < a->used && ty-- >= 0) { ... }
   51|       |       */
   52|     20|      iy = MP_MIN(a->used-tx, ty+1);
  ------------------
  |  |  156|     20|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 10, False: 10]
  |  |  ------------------
  ------------------
   53|       |
   54|       |      /* now for squaring tx can never equal ty
   55|       |       * we halve the distance since they approach at a rate of 2x
   56|       |       * and we have to round because odd cases need to be executed
   57|       |       */
   58|     20|      iy = MP_MIN(iy, ((ty-tx)+1)>>1);
  ------------------
  |  |  156|     20|#define MP_MIN(x, y) (((x) < (y)) ? (x) : (y))
  |  |  ------------------
  |  |  |  Branch (156:23): [True: 0, False: 20]
  |  |  ------------------
  ------------------
   59|       |
   60|       |      /* execute loop */
   61|     40|      for (iz = 0; iz < iy; iz++) {
  ------------------
  |  Branch (61:20): [True: 20, False: 20]
  ------------------
   62|     20|         _W += (mp_word)*tmpx++ * (mp_word)*tmpy--;
   63|     20|      }
   64|       |
   65|       |      /* double the inner product and add carry */
   66|     20|      _W = _W + _W + W1;
   67|       |
   68|       |      /* even columns have the square term in them */
   69|     20|      if (((unsigned)ix & 1u) == 0u) {
  ------------------
  |  Branch (69:11): [True: 10, False: 10]
  ------------------
   70|     10|         _W += (mp_word)a->dp[ix>>1] * (mp_word)a->dp[ix>>1];
   71|     10|      }
   72|       |
   73|       |      /* store it */
   74|     20|      W[ix] = (mp_digit)_W & MP_MASK;
  ------------------
  |  |  106|     20|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     20|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   75|       |
   76|       |      /* make next carry */
   77|     20|      W1 = _W >> (mp_word)MP_DIGIT_BIT;
  ------------------
  |  |   82|     20|#   define MP_DIGIT_BIT 60
  ------------------
   78|     20|   }
   79|       |
   80|       |   /* setup dest */
   81|      2|   olduse  = b->used;
   82|      2|   b->used = a->used+a->used;
   83|       |
   84|      2|   {
   85|      2|      mp_digit *tmpb;
   86|      2|      tmpb = b->dp;
   87|     22|      for (ix = 0; ix < pa; ix++) {
  ------------------
  |  Branch (87:20): [True: 20, False: 2]
  ------------------
   88|     20|         *tmpb++ = W[ix] & MP_MASK;
  ------------------
  |  |  106|     20|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     20|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   89|     20|      }
   90|       |
   91|       |      /* clear unused digits [that existed in the old copy of c] */
   92|      2|      MP_ZERO_DIGITS(tmpb, olduse - ix);
  ------------------
  |  |   89|      2|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|      2|do {                                                    \
  |  |   91|      2|   int zd_ = (digits);                                  \
  |  |   92|      2|   mp_digit* zm_ = (mem);                               \
  |  |   93|      2|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 2]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|      2|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   93|      2|   }
   94|      2|   mp_clamp(b);
   95|      2|   return MP_OKAY;
  ------------------
  |  |  161|      2|#define MP_OKAY       0   /* no error */
  ------------------
   96|      2|}

s_mp_sub:
    8|     11|{
    9|     11|   int    olduse, min, max;
   10|     11|   mp_err err;
   11|       |
   12|       |   /* find sizes */
   13|     11|   min = b->used;
   14|     11|   max = a->used;
   15|       |
   16|       |   /* init result */
   17|     11|   if (c->alloc < max) {
  ------------------
  |  Branch (17:8): [True: 0, False: 11]
  ------------------
   18|      0|      if ((err = mp_grow(c, max)) != MP_OKAY) {
  ------------------
  |  |  161|      0|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (18:11): [True: 0, False: 0]
  ------------------
   19|      0|         return err;
   20|      0|      }
   21|      0|   }
   22|     11|   olduse = c->used;
   23|     11|   c->used = max;
   24|       |
   25|     11|   {
   26|     11|      mp_digit u, *tmpa, *tmpb, *tmpc;
   27|     11|      int i;
   28|       |
   29|       |      /* alias for digit pointers */
   30|     11|      tmpa = a->dp;
   31|     11|      tmpb = b->dp;
   32|     11|      tmpc = c->dp;
   33|       |
   34|       |      /* set carry to zero */
   35|     11|      u = 0;
   36|    100|      for (i = 0; i < min; i++) {
  ------------------
  |  Branch (36:19): [True: 89, False: 11]
  ------------------
   37|       |         /* T[i] = A[i] - B[i] - U */
   38|     89|         *tmpc = (*tmpa++ - *tmpb++) - u;
   39|       |
   40|       |         /* U = carry bit of T[i]
   41|       |          * Note this saves performing an AND operation since
   42|       |          * if a carry does occur it will propagate all the way to the
   43|       |          * MSB.  As a result a single shift is enough to get the carry
   44|       |          */
   45|     89|         u = *tmpc >> (MP_SIZEOF_BITS(mp_digit) - 1u);
  ------------------
  |  |  167|     89|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
   46|       |
   47|       |         /* Clear carry from T[i] */
   48|     89|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|     89|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|     89|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   49|     89|      }
   50|       |
   51|       |      /* now copy higher words if any, e.g. if A has more digits than B  */
   52|     11|      for (; i < max; i++) {
  ------------------
  |  Branch (52:14): [True: 0, False: 11]
  ------------------
   53|       |         /* T[i] = A[i] - U */
   54|      0|         *tmpc = *tmpa++ - u;
   55|       |
   56|       |         /* U = carry bit of T[i] */
   57|      0|         u = *tmpc >> (MP_SIZEOF_BITS(mp_digit) - 1u);
  ------------------
  |  |  167|      0|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
   58|       |
   59|       |         /* Clear carry from T[i] */
   60|      0|         *tmpc++ &= MP_MASK;
  ------------------
  |  |  106|      0|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|      0|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
   61|      0|      }
   62|       |
   63|       |      /* clear digits above used (since we may not have grown result above) */
   64|     11|      MP_ZERO_DIGITS(tmpc, olduse - c->used);
  ------------------
  |  |   89|     11|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|     11|do {                                                    \
  |  |   91|     11|   int zd_ = (digits);                                  \
  |  |   92|     11|   mp_digit* zm_ = (mem);                               \
  |  |   93|     11|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 0, False: 11]
  |  |  ------------------
  |  |   94|      0|      *zm_++ = 0;                                       \
  |  |   95|      0|   }                                                    \
  |  |   96|     11|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
   65|     11|   }
   66|       |
   67|     11|   mp_clamp(c);
   68|     11|   return MP_OKAY;
  ------------------
  |  |  161|     11|#define MP_OKAY       0   /* no error */
  ------------------
   69|     11|}

mp_set_ul:
  253|  8.68k|    {                                                                                  \
  254|  8.68k|        int i = 0;                                                                     \
  255|  17.3k|        while (b != 0u) {                                                              \
  ------------------
  |  Branch (255:16): [True: 8.68k, False: 8.68k]
  ------------------
  256|  8.68k|            a->dp[i++] = ((mp_digit)b & MP_MASK);                                      \
  ------------------
  |  |  106|  8.68k|#define MP_MASK          ((((mp_digit)1)<<((mp_digit)MP_DIGIT_BIT))-((mp_digit)1))
  |  |  ------------------
  |  |  |  |   82|  8.68k|#   define MP_DIGIT_BIT 60
  |  |  ------------------
  ------------------
  257|  8.68k|            if (MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) { break; }                       \
  ------------------
  |  |  167|  8.68k|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
                          if (MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) { break; }                       \
  ------------------
  |  |   82|  8.68k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (257:17): [Folded - Ignored]
  ------------------
  258|  8.68k|            b >>= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);         \
  ------------------
  |  |  167|  8.68k|#define MP_SIZEOF_BITS(type)    ((size_t)CHAR_BIT * sizeof(type))
  ------------------
                          b >>= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);         \
  ------------------
  |  |   82|  8.68k|#   define MP_DIGIT_BIT 60
  ------------------
                          b >>= ((MP_SIZEOF_BITS(type) <= MP_DIGIT_BIT) ? 0 : MP_DIGIT_BIT);         \
  ------------------
  |  |   82|  8.68k|#   define MP_DIGIT_BIT 60
  ------------------
  |  Branch (258:20): [Folded - Ignored]
  ------------------
  259|  8.68k|        }                                                                              \
  260|  8.68k|        a->used = i;                                                                   \
  261|  8.68k|        a->sign = MP_ZPOS;                                                             \
  ------------------
  |  |  151|  8.68k|#define MP_ZPOS       0   /* positive integer */
  ------------------
  262|  8.68k|        MP_ZERO_DIGITS(a->dp + a->used, a->alloc - a->used);                           \
  ------------------
  |  |   89|  8.68k|#  define MP_ZERO_DIGITS(mem, digits)                   \
  |  |   90|  8.68k|do {                                                    \
  |  |   91|  8.68k|   int zd_ = (digits);                                  \
  |  |   92|  8.68k|   mp_digit* zm_ = (mem);                               \
  |  |   93|   277k|   while (zd_-- > 0) {                                  \
  |  |  ------------------
  |  |  |  Branch (93:11): [True: 269k, False: 8.68k]
  |  |  ------------------
  |  |   94|   269k|      *zm_++ = 0;                                       \
  |  |   95|   269k|   }                                                    \
  |  |   96|  8.68k|} while (0)
  |  |  ------------------
  |  |  |  Branch (96:10): [Folded - Ignored]
  |  |  ------------------
  ------------------
  263|  8.68k|    }

m_mp_init:
   31|  2.53k|void m_mp_init(mp_int *mp) {
   32|       |
   33|  2.53k|	if (mp_init(mp) != MP_OKAY) {
  ------------------
  |  |  161|  2.53k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (33:6): [True: 0, False: 2.53k]
  ------------------
   34|      0|		dropbear_exit("Mem alloc error");
   35|      0|	}
   36|  2.53k|}
m_mp_alloc_init_multi:
   56|  8.68k|{
   57|  8.68k|	mp_int** cur_arg = mp;
   58|  8.68k|	va_list args;
   59|       |
   60|  8.68k|	va_start(args, mp);        /* init args to next argument from caller */
   61|  17.3k|	while (cur_arg != NULL) {
  ------------------
  |  Branch (61:9): [True: 8.69k, False: 8.68k]
  ------------------
   62|  8.69k|		*cur_arg = m_malloc(sizeof(mp_int));
   63|  8.69k|		if (mp_init(*cur_arg) != MP_OKAY) {
  ------------------
  |  |  161|  8.69k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (63:7): [True: 0, False: 8.69k]
  ------------------
   64|      0|			dropbear_exit("Mem alloc error");
   65|      0|		}
   66|  8.69k|		cur_arg = va_arg(args, mp_int**);
   67|  8.69k|	}
   68|  8.68k|	va_end(args);
   69|  8.68k|}
hash_process_mp:
   96|  8.68k|				hash_state *hs, const mp_int *mp) {
   97|  8.68k|	buffer * buf;
   98|       |
   99|  8.68k|	buf = buf_new(512 + 20); /* max buffer is a 4096 bit key, 
  100|       |								plus header + some leeway*/
  101|  8.68k|	buf_putmpint(buf, mp);
  102|  8.68k|	hash_desc->process(hs, buf->data, buf->len);
  103|  8.68k|	buf_burn_free(buf);
  104|  8.68k|}

buf_new:
   41|   369k|buffer* buf_new(unsigned int size) {
   42|   369k|	buffer* buf;
   43|   369k|	if (size > BUF_MAX_SIZE) {
  ------------------
  |  |   35|   369k|#define BUF_MAX_SIZE 1000000000
  ------------------
  |  Branch (43:6): [True: 0, False: 369k]
  ------------------
   44|      0|		dropbear_exit("buf->size too big");
   45|      0|	}
   46|       |
   47|   369k|	buf = (buffer*)m_malloc(sizeof(buffer)+size);
   48|   369k|	buf->data = (unsigned char*)buf + sizeof(buffer);
   49|   369k|	buf->size = size;
   50|   369k|	return buf;
   51|   369k|}
buf_free:
   54|   335k|void buf_free(buffer* buf) {
   55|   335k|	m_free(buf);
  ------------------
  |  |   24|   335k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   56|   335k|}
buf_burn_free:
   59|  31.0k|void buf_burn_free(buffer* buf) {
   60|  31.0k|	m_burn(buf->data, buf->size);
   61|  31.0k|	m_free(buf);
  ------------------
  |  |   24|  31.0k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   62|  31.0k|}
buf_resize:
   67|  9.78k|buffer* buf_resize(buffer *buf, unsigned int newsize) {
   68|  9.78k|	if (newsize > BUF_MAX_SIZE) {
  ------------------
  |  |   35|  9.78k|#define BUF_MAX_SIZE 1000000000
  ------------------
  |  Branch (68:6): [True: 0, False: 9.78k]
  ------------------
   69|      0|		dropbear_exit("buf->size too big");
   70|      0|	}
   71|       |
   72|  9.78k|	buf = m_realloc(buf, sizeof(buffer)+newsize);
   73|  9.78k|	buf->data = (unsigned char*)buf + sizeof(buffer);
   74|  9.78k|	buf->size = newsize;
   75|  9.78k|	buf->len = MIN(newsize, buf->len);
   76|  9.78k|	buf->pos = MIN(newsize, buf->pos);
   77|  9.78k|	return buf;
   78|  9.78k|}
buf_newcopy:
   82|  11.3k|buffer* buf_newcopy(const buffer* buf) {
   83|       |	
   84|  11.3k|	buffer* ret;
   85|       |
   86|  11.3k|	ret = buf_new(buf->len);
   87|  11.3k|	ret->len = buf->len;
   88|  11.3k|	if (buf->len > 0) {
  ------------------
  |  Branch (88:6): [True: 11.3k, False: 0]
  ------------------
   89|  11.3k|		memcpy(ret->data, buf->data, buf->len);
   90|  11.3k|	}
   91|  11.3k|	return ret;
   92|  11.3k|}
buf_setlen:
   95|   648k|void buf_setlen(buffer* buf, unsigned int len) {
   96|   648k|	if (len > buf->size) {
  ------------------
  |  Branch (96:6): [True: 0, False: 648k]
  ------------------
   97|      0|		dropbear_exit("Bad buf_setlen");
   98|      0|	}
   99|   648k|	buf->len = len;
  100|   648k|	buf->pos = MIN(buf->pos, buf->len);
  101|   648k|}
buf_incrlen:
  104|   970k|void buf_incrlen(buffer* buf, unsigned int incr) {
  105|   970k|	if (incr > BUF_MAX_INCR || buf->len + incr > buf->size) {
  ------------------
  |  |   34|  1.94M|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (105:6): [True: 0, False: 970k]
  |  Branch (105:29): [True: 0, False: 970k]
  ------------------
  106|      0|		dropbear_exit("Bad buf_incrlen");
  107|      0|	}
  108|   970k|	buf->len += incr;
  109|   970k|}
buf_setpos:
  111|  2.79M|void buf_setpos(buffer* buf, unsigned int pos) {
  112|       |
  113|  2.79M|	if (pos > buf->len) {
  ------------------
  |  Branch (113:6): [True: 0, False: 2.79M]
  ------------------
  114|      0|		dropbear_exit("Bad buf_setpos");
  115|      0|	}
  116|  2.79M|	buf->pos = pos;
  117|  2.79M|}
buf_incrwritepos:
  120|  2.37M|void buf_incrwritepos(buffer* buf, unsigned int incr) {
  121|  2.37M|	if (incr > BUF_MAX_INCR || buf->pos + incr > buf->size) {
  ------------------
  |  |   34|  4.75M|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (121:6): [True: 0, False: 2.37M]
  |  Branch (121:29): [True: 0, False: 2.37M]
  ------------------
  122|      0|		dropbear_exit("Bad buf_incrwritepos");
  123|      0|	}
  124|  2.37M|	buf->pos += incr;
  125|  2.37M|	if (buf->pos > buf->len) {
  ------------------
  |  Branch (125:6): [True: 1.72M, False: 650k]
  ------------------
  126|  1.72M|		buf->len = buf->pos;
  127|  1.72M|	}
  128|  2.37M|}
buf_incrpos:
  131|  1.28M|void buf_incrpos(buffer* buf, unsigned int incr) {
  132|  1.28M|	if (incr > BUF_MAX_INCR 
  ------------------
  |  |   34|  2.57M|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (132:6): [True: 0, False: 1.28M]
  ------------------
  133|  1.28M|		|| (buf->pos + incr) > buf->len) {
  ------------------
  |  Branch (133:6): [True: 15, False: 1.28M]
  ------------------
  134|     15|		dropbear_exit("Bad buf_incrpos");
  135|     15|	}
  136|  1.28M|	buf->pos += incr;
  137|  1.28M|}
buf_decrpos:
  140|      4|void buf_decrpos(buffer* buf, unsigned int decr) {
  141|      4|	if (decr > buf->pos) {
  ------------------
  |  Branch (141:6): [True: 0, False: 4]
  ------------------
  142|      0|		dropbear_exit("Bad buf_decrpos");
  143|      0|	}
  144|      4|	buf->pos -= decr;
  145|      4|}
buf_getbyte:
  148|   398k|unsigned char buf_getbyte(buffer* buf) {
  149|       |
  150|       |	/* This check is really just ==, but the >= allows us to check for the
  151|       |	 * bad case of pos > len, which should _never_ happen. */
  152|   398k|	if (buf->pos >= buf->len) {
  ------------------
  |  Branch (152:6): [True: 0, False: 398k]
  ------------------
  153|      0|		dropbear_exit("Bad buf_getbyte");
  154|      0|	}
  155|   398k|	return buf->data[buf->pos++];
  156|   398k|}
buf_getbool:
  159|  20.5k|unsigned char buf_getbool(buffer* buf) {
  160|       |
  161|  20.5k|	unsigned char b;
  162|  20.5k|	b = buf_getbyte(buf);
  163|  20.5k|	if (b != 0)
  ------------------
  |  Branch (163:6): [True: 9.45k, False: 11.0k]
  ------------------
  164|  9.45k|		b = 1;
  165|  20.5k|	return b;
  166|  20.5k|}
buf_putbyte:
  169|   731k|void buf_putbyte(buffer* buf, unsigned char val) {
  170|       |
  171|   731k|	if (buf->pos >= buf->len) {
  ------------------
  |  Branch (171:6): [True: 469k, False: 261k]
  ------------------
  172|   469k|		buf_incrlen(buf, 1);
  173|   469k|	}
  174|   731k|	buf->data[buf->pos] = val;
  175|   731k|	buf->pos++;
  176|   731k|}
buf_getptr:
  180|  4.22M|unsigned char* buf_getptr(const buffer* buf, unsigned int len) {
  181|       |
  182|  4.22M|	if (len > BUF_MAX_INCR || buf->pos + len > buf->len) {
  ------------------
  |  |   34|  8.44M|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (182:6): [True: 0, False: 4.22M]
  |  Branch (182:28): [True: 76, False: 4.22M]
  ------------------
  183|     76|		dropbear_exit("Bad buf_getptr");
  184|     76|	}
  185|  4.22M|	return &buf->data[buf->pos];
  186|  4.22M|}
buf_getwriteptr:
  190|  2.69M|unsigned char* buf_getwriteptr(const buffer* buf, unsigned int len) {
  191|       |
  192|  2.69M|	if (len > BUF_MAX_INCR || buf->pos + len > buf->size) {
  ------------------
  |  |   34|  5.39M|#define BUF_MAX_INCR 1000000000
  ------------------
  |  Branch (192:6): [True: 0, False: 2.69M]
  |  Branch (192:28): [True: 0, False: 2.69M]
  ------------------
  193|      0|		dropbear_exit("Bad buf_getwriteptr");
  194|      0|	}
  195|  2.69M|	return &buf->data[buf->pos];
  196|  2.69M|}
buf_getstring:
  201|   105k|char* buf_getstring(buffer* buf, unsigned int *retlen) {
  202|       |
  203|   105k|	unsigned int len;
  204|   105k|	char* ret;
  205|   105k|	void* src = NULL;
  206|   105k|	len = buf_getint(buf);
  207|   105k|	if (len > MAX_STRING_LEN) {
  ------------------
  |  |  228|   105k|#define MAX_STRING_LEN (MAX(MAX_CMD_LEN, 2400)) /* Sun SSH needs 2400 for algos,
  ------------------
  |  Branch (207:6): [True: 20, False: 105k]
  ------------------
  208|     20|		dropbear_exit("String too long");
  209|     20|	}
  210|       |
  211|   105k|	if (retlen != NULL) {
  ------------------
  |  Branch (211:6): [True: 105k, False: 567]
  ------------------
  212|   105k|		*retlen = len;
  213|   105k|	}
  214|   105k|	src = buf_getptr(buf, len);
  215|   105k|	ret = m_malloc(len+1);
  216|   105k|	memcpy(ret, src, len);
  217|   105k|	buf_incrpos(buf, len);
  218|   105k|	ret[len] = '\0';
  219|       |
  220|   105k|	return ret;
  221|   105k|}
buf_getstringbuf:
  246|  6.19k|buffer * buf_getstringbuf(buffer *buf) {
  247|  6.19k|	return buf_getstringbuf_int(buf, 0);
  248|  6.19k|}
buf_eatstring:
  257|  17.7k|void buf_eatstring(buffer *buf) {
  258|       |
  259|  17.7k|	buf_incrpos( buf, buf_getint(buf) );
  260|  17.7k|}
buf_getint:
  263|   240k|unsigned int buf_getint(buffer* buf) {
  264|   240k|	unsigned int ret;
  265|       |
  266|   240k|	LOAD32H(ret, buf_getptr(buf, 4));
  ------------------
  |  |   66|   240k|#define LOAD32H(x, y)                           \
  |  |   67|   240k|do { XMEMCPY (&(x), (y), 4);                    \
  |  |  ------------------
  |  |  |  |   39|   240k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |   68|   240k|      (x) = __builtin_bswap32 ((x)); } while(0)
  |  |  ------------------
  |  |  |  Branch (68:46): [Folded - Ignored]
  |  |  ------------------
  ------------------
  267|   240k|	buf_incrpos(buf, 4);
  268|   240k|	return ret;
  269|   240k|}
buf_putint:
  272|  1.28M|void buf_putint(buffer* buf, int unsigned val) {
  273|       |
  274|  1.28M|	STORE32H(val, buf_getwriteptr(buf, 4));
  ------------------
  |  |   62|  1.28M|#define STORE32H(x, y)                          \
  |  |   63|  1.28M|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  1.28M|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  1.28M|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  275|  1.28M|	buf_incrwritepos(buf, 4);
  276|       |
  277|  1.28M|}
buf_putstring:
  280|  56.5k|void buf_putstring(buffer* buf, const char* str, unsigned int len) {
  281|       |	
  282|  56.5k|	buf_putint(buf, len);
  283|  56.5k|	buf_putbytes(buf, (const unsigned char*)str, len);
  284|       |
  285|  56.5k|}
buf_putbytes:
  294|   349k|void buf_putbytes(buffer *buf, const unsigned char *bytes, unsigned int len) {
  295|   349k|	memcpy(buf_getwriteptr(buf, len), bytes, len);
  296|   349k|	buf_incrwritepos(buf, len);
  297|   349k|}
buf_putmpint:
  302|  8.68k|void buf_putmpint(buffer* buf, const mp_int * mp) {
  303|  8.68k|	size_t written;
  304|  8.68k|	unsigned int len, pad = 0;
  305|  8.68k|	TRACE2(("enter buf_putmpint"))
  306|       |
  307|  8.68k|	dropbear_assert(mp != NULL);
  ------------------
  |  |   83|  8.68k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 8.68k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  308|       |
  309|  8.68k|	if (mp_isneg(mp)) {
  ------------------
  |  |  295|  8.68k|#define mp_isneg(a)  (((a)->sign != MP_ZPOS) ? MP_YES : MP_NO)
  |  |  ------------------
  |  |  |  |  151|  8.68k|#define MP_ZPOS       0   /* positive integer */
  |  |  ------------------
  |  |               #define mp_isneg(a)  (((a)->sign != MP_ZPOS) ? MP_YES : MP_NO)
  |  |  ------------------
  |  |  |  |  158|      0|#define MP_YES        1
  |  |  ------------------
  |  |               #define mp_isneg(a)  (((a)->sign != MP_ZPOS) ? MP_YES : MP_NO)
  |  |  ------------------
  |  |  |  |  159|  8.68k|#define MP_NO         0
  |  |  ------------------
  |  |  |  Branch (295:22): [True: 0, False: 8.68k]
  |  |  |  Branch (295:23): [True: 0, False: 8.68k]
  |  |  ------------------
  ------------------
  310|      0|		dropbear_exit("negative bignum");
  311|      0|	}
  312|       |
  313|       |	/* zero check */
  314|  8.68k|	if (mp_iszero(mp)) {
  ------------------
  |  |  292|  8.68k|#define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
  |  |  ------------------
  |  |  |  |  158|      0|#define MP_YES        1
  |  |  ------------------
  |  |               #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
  |  |  ------------------
  |  |  |  |  159|  8.68k|#define MP_NO         0
  |  |  ------------------
  |  |  |  Branch (292:22): [True: 0, False: 8.68k]
  |  |  |  Branch (292:23): [True: 0, False: 8.68k]
  |  |  ------------------
  ------------------
  315|      0|		len = 0;
  316|  8.68k|	} else {
  317|       |		/* SSH spec requires padding for mpints with the MSB set, this code
  318|       |		 * implements it */
  319|  8.68k|		len = mp_count_bits(mp);
  320|       |		/* if the top bit of MSB is set, we need to pad */
  321|  8.68k|		pad = (len%8 == 0) ? 1 : 0;
  ------------------
  |  Branch (321:9): [True: 8.68k, False: 0]
  ------------------
  322|  8.68k|		len = len / 8 + 1; /* don't worry about rounding, we need it for
  323|       |							  padding anyway when len%8 == 0 */
  324|       |
  325|  8.68k|	}
  326|       |
  327|       |	/* store the length */
  328|  8.68k|	buf_putint(buf, len);
  329|       |	
  330|       |	/* store the actual value */
  331|  8.68k|	if (len > 0) {
  ------------------
  |  Branch (331:6): [True: 8.68k, False: 0]
  ------------------
  332|  8.68k|		if (pad) {
  ------------------
  |  Branch (332:7): [True: 8.68k, False: 0]
  ------------------
  333|  8.68k|			buf_putbyte(buf, 0x00);
  334|  8.68k|		}
  335|  8.68k|		if (mp_to_ubin(mp, buf_getwriteptr(buf, len-pad), len-pad, &written) != MP_OKAY) {
  ------------------
  |  |  161|  8.68k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (335:7): [True: 0, False: 8.68k]
  ------------------
  336|      0|			dropbear_exit("mpint error");
  337|      0|		}
  338|  8.68k|		buf_incrwritepos(buf, written);
  339|  8.68k|	}
  340|       |
  341|  8.68k|	TRACE2(("leave buf_putmpint"))
  342|  8.68k|}
buf_getmpint:
  347|  2.54k|int buf_getmpint(buffer* buf, mp_int* mp) {
  348|       |
  349|  2.54k|	unsigned int len;
  350|  2.54k|	len = buf_getint(buf);
  351|       |	
  352|  2.54k|	if (len == 0) {
  ------------------
  |  Branch (352:6): [True: 98, False: 2.44k]
  ------------------
  353|     98|		mp_zero(mp);
  354|     98|		return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|     98|#define DROPBEAR_SUCCESS 0
  ------------------
  355|     98|	}
  356|       |
  357|  2.44k|	if (len > BUF_MAX_MPINT) {
  ------------------
  |  |   38|  2.44k|#define BUF_MAX_MPINT (8240 / 8)
  ------------------
  |  Branch (357:6): [True: 1, False: 2.44k]
  ------------------
  358|      1|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  359|      1|	}
  360|       |
  361|       |	/* check for negative */
  362|  2.44k|	if (*buf_getptr(buf, 1) & (1 << (CHAR_BIT-1))) {
  ------------------
  |  Branch (362:6): [True: 0, False: 2.44k]
  ------------------
  363|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  364|      0|	}
  365|       |
  366|  2.44k|	if (mp_from_ubin(mp, buf_getptr(buf, len), len) != MP_OKAY) {
  ------------------
  |  |  161|  2.44k|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (366:6): [True: 0, False: 2.44k]
  ------------------
  367|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  368|      0|	}
  369|       |
  370|  2.44k|	buf_incrpos(buf, len);
  371|  2.44k|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  2.44k|#define DROPBEAR_SUCCESS 0
  ------------------
  372|  2.44k|}
buffer.c:buf_getstringbuf_int:
  224|  6.19k|static buffer * buf_getstringbuf_int(buffer *buf, int incllen) {
  225|  6.19k|	buffer *ret = NULL;
  226|  6.19k|	unsigned int len = buf_getint(buf);
  227|  6.19k|	int extra = 0;
  228|  6.19k|	if (len > MAX_STRING_LEN) {
  ------------------
  |  |  228|  6.19k|#define MAX_STRING_LEN (MAX(MAX_CMD_LEN, 2400)) /* Sun SSH needs 2400 for algos,
  ------------------
  |  Branch (228:6): [True: 0, False: 6.19k]
  ------------------
  229|      0|		dropbear_exit("String too long");
  230|      0|	}
  231|  6.19k|	if (incllen) {
  ------------------
  |  Branch (231:6): [True: 0, False: 6.19k]
  ------------------
  232|      0|		extra = 4;
  233|      0|	}
  234|  6.19k|	ret = buf_new(len+extra);
  235|  6.19k|	if (incllen) {
  ------------------
  |  Branch (235:6): [True: 0, False: 6.19k]
  ------------------
  236|      0|		buf_putint(ret, len);
  237|      0|	}
  238|  6.19k|	memcpy(buf_getwriteptr(ret, len), buf_getptr(buf, len), len);
  239|  6.19k|	buf_incrpos(buf, len);
  240|  6.19k|	buf_incrlen(ret, len);
  241|  6.19k|	buf_setpos(ret, 0);
  242|  6.19k|	return ret;
  243|  6.19k|}

chachapoly.c:dropbear_chachapoly_start:
   48|  5.06k|			int UNUSED(num_rounds), dropbear_chachapoly_state *state) {
   49|  5.06k|	int err;
   50|       |
   51|  5.06k|	TRACE2(("enter dropbear_chachapoly_start"))
   52|       |
   53|  5.06k|	if (keylen != CHACHA20_KEY_LEN*2) {
  ------------------
  |  |   33|  5.06k|#define CHACHA20_KEY_LEN 32
  ------------------
  |  Branch (53:6): [True: 0, False: 5.06k]
  ------------------
   54|      0|		return CRYPT_ERROR;
   55|      0|	}
   56|       |
   57|  5.06k|	if ((err = chacha_setup(&state->chacha, key,
  ------------------
  |  Branch (57:6): [True: 0, False: 5.06k]
  ------------------
   58|  5.06k|				CHACHA20_KEY_LEN, 20)) != CRYPT_OK) {
  ------------------
  |  |   33|  5.06k|#define CHACHA20_KEY_LEN 32
  ------------------
   59|      0|		return err;
   60|      0|	}
   61|       |
   62|  5.06k|	if ((err = chacha_setup(&state->header, key + CHACHA20_KEY_LEN,
  ------------------
  |  |   33|  5.06k|#define CHACHA20_KEY_LEN 32
  ------------------
  |  Branch (62:6): [True: 0, False: 5.06k]
  ------------------
   63|  5.06k|				CHACHA20_KEY_LEN, 20) != CRYPT_OK)) {
  ------------------
  |  |   33|  5.06k|#define CHACHA20_KEY_LEN 32
  ------------------
   64|      0|		return err;
   65|      0|	}
   66|       |
   67|  5.06k|	TRACE2(("leave dropbear_chachapoly_start"))
   68|  5.06k|	return CRYPT_OK;
   69|  5.06k|}
chachapoly.c:dropbear_chachapoly_crypt:
   74|   233k|			dropbear_chachapoly_state *state, int direction) {
   75|   233k|	poly1305_state poly;
   76|   233k|	unsigned char seqbuf[8], key[POLY1305_KEY_LEN], tag[POLY1305_TAG_LEN];
   77|   233k|	int err;
   78|       |
   79|   233k|	TRACE2(("enter dropbear_chachapoly_crypt"))
   80|       |
   81|   233k|	if (len < 4 || taglen != POLY1305_TAG_LEN) {
  ------------------
  |  |   36|   233k|#define POLY1305_TAG_LEN 16
  ------------------
  |  Branch (81:6): [True: 0, False: 233k]
  |  Branch (81:17): [True: 0, False: 233k]
  ------------------
   82|      0|		return CRYPT_ERROR;
   83|      0|	}
   84|       |
   85|   233k|	STORE64H((uint64_t)seq, seqbuf);
  ------------------
  |  |  101|   233k|#define STORE64H(x, y)                          \
  |  |  102|   233k|do { ulong64 __t = __builtin_bswap64 ((x));     \
  |  |  103|   233k|      XMEMCPY ((y), &__t, 8); } while(0)
  |  |  ------------------
  |  |  |  |   39|   233k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (103:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
   86|   233k|	chacha_ivctr64(&state->chacha, seqbuf, sizeof(seqbuf), 0);
   87|   233k|	if ((err = chacha_keystream(&state->chacha, key, sizeof(key))) != CRYPT_OK) {
  ------------------
  |  Branch (87:6): [True: 0, False: 233k]
  ------------------
   88|      0|		return err;
   89|      0|	}
   90|       |
   91|   233k|	poly1305_init(&poly, key, sizeof(key));
   92|   233k|	if (direction == LTC_DECRYPT) {
  ------------------
  |  |   70|   233k|#define LTC_DECRYPT 1
  ------------------
  |  Branch (92:6): [True: 0, False: 233k]
  ------------------
   93|      0|		poly1305_process(&poly, in, len);
   94|      0|		poly1305_done(&poly, tag, &taglen);
   95|      0|		if (constant_time_memcmp(in + len, tag, taglen) != 0) {
  ------------------
  |  Branch (95:7): [True: 0, False: 0]
  ------------------
   96|      0|			return CRYPT_ERROR;
   97|      0|		}
   98|      0|	}
   99|       |
  100|   233k|	chacha_ivctr64(&state->header, seqbuf, sizeof(seqbuf), 0);
  101|   233k|	if ((err = chacha_crypt(&state->header, in, 4, out)) != CRYPT_OK) {
  ------------------
  |  Branch (101:6): [True: 0, False: 233k]
  ------------------
  102|      0|		return err;
  103|      0|	}
  104|       |
  105|   233k|	chacha_ivctr64(&state->chacha, seqbuf, sizeof(seqbuf), 1);
  106|   233k|	if ((err = chacha_crypt(&state->chacha, in + 4, len - 4, out + 4)) != CRYPT_OK) {
  ------------------
  |  Branch (106:6): [True: 0, False: 233k]
  ------------------
  107|      0|		return err;
  108|      0|	}
  109|       |
  110|   233k|	if (direction == LTC_ENCRYPT) {
  ------------------
  |  |   68|   233k|#define LTC_ENCRYPT 0
  ------------------
  |  Branch (110:6): [True: 233k, False: 0]
  ------------------
  111|   233k|		poly1305_process(&poly, out, len);
  112|   233k|		poly1305_done(&poly, out + len, &taglen);
  113|   233k|	}
  114|       |
  115|   233k|	TRACE2(("leave dropbear_chachapoly_crypt"))
  116|   233k|	return CRYPT_OK;
  117|   233k|}

cbuf_new:
   31|  7.16k|circbuffer * cbuf_new(unsigned int size) {
   32|       |
   33|  7.16k|	circbuffer *cbuf = NULL;
   34|       |
   35|  7.16k|	if (size > MAX_CBUF_SIZE) {
  ------------------
  |  |   29|  7.16k|#define MAX_CBUF_SIZE 100000000
  ------------------
  |  Branch (35:6): [True: 0, False: 7.16k]
  ------------------
   36|      0|		dropbear_exit("Bad cbuf size");
   37|      0|	}
   38|       |
   39|  7.16k|	cbuf = (circbuffer*)m_malloc(sizeof(circbuffer));
   40|       |	/* data is malloced on first write */
   41|  7.16k|	cbuf->data = NULL;
   42|  7.16k|	cbuf->used = 0;
   43|  7.16k|	cbuf->readpos = 0;
   44|  7.16k|	cbuf->writepos = 0;
   45|  7.16k|	cbuf->size = size;
   46|       |
   47|  7.16k|	return cbuf;
   48|  7.16k|}
cbuf_free:
   50|  7.16k|void cbuf_free(circbuffer * cbuf) {
   51|       |
   52|  7.16k|	if (cbuf->data) {
  ------------------
  |  Branch (52:6): [True: 0, False: 7.16k]
  ------------------
   53|      0|		m_burn(cbuf->data, cbuf->size);
   54|      0|		m_free(cbuf->data);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   55|      0|	}
   56|  7.16k|	m_free(cbuf);
  ------------------
  |  |   24|  7.16k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   57|  7.16k|}
cbuf_getused:
   59|  1.19M|unsigned int cbuf_getused(const circbuffer * cbuf) {
   60|       |
   61|  1.19M|	return cbuf->used;
   62|       |
   63|  1.19M|}
cbuf_getavail:
   65|     51|unsigned int cbuf_getavail(const circbuffer * cbuf) {
   66|       |
   67|     51|	return cbuf->size - cbuf->used;
   68|       |
   69|     51|}
cbuf_readptrs:
   91|     16|	unsigned char **p2, unsigned int *len2) {
   92|     16|	*p1 = &cbuf->data[cbuf->readpos];
   93|     16|	*len1 = MIN(cbuf->used, cbuf->size - cbuf->readpos);
   94|       |
   95|     16|	if (*len1 < cbuf->used) {
  ------------------
  |  Branch (95:6): [True: 0, False: 16]
  ------------------
   96|      0|		*p2 = cbuf->data;
   97|      0|		*len2 = cbuf->used - *len1;
   98|     16|	} else {
   99|     16|		*p2 = NULL;
  100|     16|		*len2 = 0;
  101|     16|	}
  102|     16|}

buf_put_algolist_all:
  315|  72.5k|void buf_put_algolist_all(buffer * buf, const algo_type localalgos[], int useall) {
  316|  72.5k|	unsigned int i, len;
  317|  72.5k|	unsigned int donefirst = 0;
  318|  72.5k|	unsigned int startpos;
  319|       |
  320|  72.5k|	startpos = buf->pos;
  321|       |	/* Placeholder for length */
  322|  72.5k|	buf_putint(buf, 0); 
  323|   344k|	for (i = 0; localalgos[i].name != NULL; i++) {
  ------------------
  |  Branch (323:14): [True: 271k, False: 72.5k]
  ------------------
  324|   271k|		if (localalgos[i].usable || useall) {
  ------------------
  |  Branch (324:7): [True: 262k, False: 9.06k]
  |  Branch (324:31): [True: 0, False: 9.06k]
  ------------------
  325|   262k|			if (donefirst) {
  ------------------
  |  Branch (325:8): [True: 190k, False: 72.5k]
  ------------------
  326|   190k|				buf_putbyte(buf, ',');
  327|   190k|			}
  328|   262k|			donefirst = 1;
  329|   262k|			len = strlen(localalgos[i].name);
  330|   262k|			buf_putbytes(buf, (const unsigned char *) localalgos[i].name, len);
  331|   262k|		}
  332|   271k|	}
  333|       |	/* Fill out the length */
  334|  72.5k|	len = buf->pos - startpos - 4;
  335|  72.5k|	buf_setpos(buf, startpos);
  336|  72.5k|	buf_putint(buf, len);
  337|  72.5k|	TRACE(("algolist add %d '%.*s'", len, len, buf_getptr(buf, len)))
  338|  72.5k|	buf_incrwritepos(buf, len);
  339|  72.5k|}
buf_put_algolist:
  341|  72.5k|void buf_put_algolist(buffer * buf, const algo_type localalgos[]) {
  342|  72.5k|	buf_put_algolist_all(buf, localalgos, 0);
  343|  72.5k|}
buf_has_algo:
  387|  10.4k|int buf_has_algo(buffer *buf, const char *algo) {
  388|  10.4k|	unsigned char* algolist = NULL;
  389|  10.4k|	unsigned int orig_pos = buf->pos;
  390|  10.4k|	unsigned int len, remotecount, i;
  391|  10.4k|	const char *remotenames[MAX_PROPOSED_ALGO];
  392|  10.4k|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|  10.4k|#define DROPBEAR_FAILURE -1
  ------------------
  393|       |
  394|  10.4k|	algolist = buf_getstring(buf, &len);
  395|  10.4k|	remotecount = MAX_PROPOSED_ALGO;
  ------------------
  |  |  209|  10.4k|#define MAX_PROPOSED_ALGO 50
  ------------------
  396|  10.4k|	get_algolist(algolist, len, remotenames, &remotecount);
  397|  53.9k|	for (i = 0; i < remotecount; i++)
  ------------------
  |  Branch (397:14): [True: 43.5k, False: 10.3k]
  ------------------
  398|  43.5k|	{
  399|  43.5k|		if (strcmp(remotenames[i], algo) == 0) {
  ------------------
  |  Branch (399:7): [True: 129, False: 43.4k]
  ------------------
  400|    129|			ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    129|#define DROPBEAR_SUCCESS 0
  ------------------
  401|    129|			break;
  402|    129|		}
  403|  43.5k|	}
  404|  10.4k|	if (algolist) {
  ------------------
  |  Branch (404:6): [True: 10.4k, False: 2]
  ------------------
  405|  10.4k|		m_free(algolist);
  ------------------
  |  |   24|  10.4k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  406|  10.4k|	}
  407|  10.4k|	buf_setpos(buf, orig_pos);
  408|  10.4k|	return ret;
  409|  10.4k|}
buf_match_algo:
  427|  71.2k|		int kexguess2, int *goodguess) {
  428|  71.2k|	char * algolist = NULL;
  429|  71.2k|	const char *remotenames[MAX_PROPOSED_ALGO], *localnames[MAX_PROPOSED_ALGO];
  430|  71.2k|	unsigned int len;
  431|  71.2k|	unsigned int remotecount, localcount, clicount, servcount, i, j;
  432|  71.2k|	algo_type * ret = NULL;
  433|  71.2k|	const char **clinames, **servnames;
  434|       |
  435|  71.2k|	if (goodguess) {
  ------------------
  |  Branch (435:6): [True: 17.9k, False: 53.3k]
  ------------------
  436|  17.9k|		*goodguess = 0;
  437|  17.9k|	}
  438|       |
  439|       |	/* get the comma-separated list from the buffer ie "algo1,algo2,algo3" */
  440|  71.2k|	algolist = buf_getstring(buf, &len);
  441|  71.2k|	DEBUG3(("buf_match_algo: %s", algolist))
  442|  71.2k|	remotecount = MAX_PROPOSED_ALGO;
  ------------------
  |  |  209|  71.2k|#define MAX_PROPOSED_ALGO 50
  ------------------
  443|  71.2k|	get_algolist(algolist, len, remotenames, &remotecount);
  444|       |
  445|   339k|	for (i = 0; localalgos[i].name != NULL; i++) {
  ------------------
  |  Branch (445:14): [True: 268k, False: 71.2k]
  ------------------
  446|   268k|		if (localalgos[i].usable) {
  ------------------
  |  Branch (446:7): [True: 259k, False: 8.98k]
  ------------------
  447|   259k|			localnames[i] = localalgos[i].name;
  448|   259k|		} else {
  449|  8.98k|			localnames[i] = NULL;
  450|  8.98k|		}
  451|   268k|	}
  452|  71.2k|	localcount = i;
  453|       |
  454|  71.2k|	if (IS_DROPBEAR_SERVER) {
  ------------------
  |  |  319|  71.2k|#define IS_DROPBEAR_SERVER (ses.isserver == 1)
  |  |  ------------------
  |  |  |  Branch (319:28): [True: 71.2k, False: 43]
  |  |  ------------------
  ------------------
  455|  71.2k|		clinames = remotenames;
  456|  71.2k|		clicount = remotecount;
  457|  71.2k|		servnames = localnames;
  458|  71.2k|		servcount = localcount;
  459|  71.2k|	} else {
  460|     43|		clinames = localnames;
  461|     43|		clicount = localcount;
  462|     43|		servnames = remotenames;
  463|     43|		servcount = remotecount;
  464|     43|	}
  465|       |
  466|       |	/* iterate and find the first match */
  467|   109k|	for (i = 0; i < clicount; i++) {
  ------------------
  |  Branch (467:14): [True: 99.1k, False: 10.7k]
  ------------------
  468|   398k|		for (j = 0; j < servcount; j++) {
  ------------------
  |  Branch (468:15): [True: 359k, False: 38.5k]
  ------------------
  469|   359k|			if (!(servnames[j] && clinames[i])) {
  ------------------
  |  Branch (469:10): [True: 340k, False: 18.7k]
  |  Branch (469:26): [True: 340k, False: 0]
  ------------------
  470|       |				/* unusable algos are NULL */
  471|  18.7k|				continue;
  472|  18.7k|			}
  473|   340k|			if (strcmp(servnames[j], clinames[i]) == 0) {
  ------------------
  |  Branch (473:8): [True: 60.5k, False: 280k]
  ------------------
  474|       |				/* set if it was a good guess */
  475|  60.5k|				if (goodguess != NULL) {
  ------------------
  |  Branch (475:9): [True: 17.8k, False: 42.6k]
  ------------------
  476|  17.8k|					if (kexguess2) {
  ------------------
  |  Branch (476:10): [True: 234, False: 17.6k]
  ------------------
  477|    234|						if (i == 0) {
  ------------------
  |  Branch (477:11): [True: 159, False: 75]
  ------------------
  478|    159|							*goodguess = 1;
  479|    159|						}
  480|  17.6k|					} else {
  481|  17.6k|						if (i == 0 && j == 0) {
  ------------------
  |  Branch (481:11): [True: 13.6k, False: 4.00k]
  |  Branch (481:21): [True: 6.44k, False: 7.22k]
  ------------------
  482|  6.44k|							*goodguess = 1;
  483|  6.44k|						}
  484|  17.6k|					}
  485|  17.8k|				}
  486|       |				/* set the algo to return */
  487|  60.5k|				if (IS_DROPBEAR_SERVER) {
  ------------------
  |  |  319|  60.5k|#define IS_DROPBEAR_SERVER (ses.isserver == 1)
  |  |  ------------------
  |  |  |  Branch (319:28): [True: 60.5k, False: 0]
  |  |  ------------------
  ------------------
  488|  60.5k|					ret = &localalgos[j];
  489|  60.5k|				} else {
  490|      0|					ret = &localalgos[i];
  491|      0|				}
  492|  60.5k|				goto out;
  493|  60.5k|			}
  494|   340k|		}
  495|  99.1k|	}
  496|       |
  497|  71.2k|out:
  498|  71.2k|	m_free(algolist);
  ------------------
  |  |   24|  71.2k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  499|  71.2k|	return ret;
  500|  71.2k|}
common-algo.c:void_start:
   50|  8.68k|			int UNUSED(keylen), int UNUSED(num_rounds), void* UNUSED(cipher_state)) {
   51|  8.68k|	return CRYPT_OK;
   52|  8.68k|}
common-algo.c:void_cipher:
   41|   120k|		unsigned long len, void* UNUSED(cipher_state)) {
   42|   120k|	if (in != out) {
  ------------------
  |  Branch (42:6): [True: 0, False: 120k]
  ------------------
   43|      0|		memmove(out, in, len);
   44|      0|	}
   45|   120k|	return CRYPT_OK;
   46|   120k|}
common-algo.c:dropbear_big_endian_ctr_start:
   91|  3.61k|		int num_rounds, symmetric_CTR *ctr) {
   92|  3.61k|	return ctr_start(cipher, IV, key, keylen, num_rounds, CTR_COUNTER_BIG_ENDIAN, ctr);
  ------------------
  |  |  860|  3.61k|#define CTR_COUNTER_BIG_ENDIAN       0x1000
  ------------------
   93|  3.61k|}
common-algo.c:get_algolist:
  350|  81.7k|				const char* *ret_list, unsigned int *ret_count) {
  351|  81.7k|	unsigned int max_count = *ret_count;
  352|  81.7k|	unsigned int i;
  353|       |
  354|  81.7k|	if (*ret_count == 0) {
  ------------------
  |  Branch (354:6): [True: 0, False: 81.7k]
  ------------------
  355|      0|		return;
  356|      0|	}
  357|  81.7k|	if (algolist_len > MAX_PROPOSED_ALGO*(MAX_NAME_LEN+1)) {
  ------------------
  |  |  209|  81.7k|#define MAX_PROPOSED_ALGO 50
  ------------------
              	if (algolist_len > MAX_PROPOSED_ALGO*(MAX_NAME_LEN+1)) {
  ------------------
  |  |  205|  81.7k|#define MAX_NAME_LEN 64 /* maximum length of a protocol name, isn't
  ------------------
  |  Branch (357:6): [True: 4, False: 81.7k]
  ------------------
  358|      4|		*ret_count = 0;
  359|      4|	}
  360|       |
  361|       |	/* ret_list will contain a list of the strings parsed out.
  362|       |	   We will have at least one string (even if it's just "") */
  363|  81.7k|	ret_list[0] = algolist;
  364|  81.7k|	*ret_count = 1;
  365|  1.61M|	for (i = 0; i < algolist_len; i++) {
  ------------------
  |  Branch (365:14): [True: 1.53M, False: 81.3k]
  ------------------
  366|  1.53M|		if (algolist[i] == '\0') {
  ------------------
  |  Branch (366:7): [True: 326, False: 1.53M]
  ------------------
  367|       |			/* someone is trying something strange */
  368|    326|			*ret_count = 0;
  369|    326|			return;
  370|    326|		}
  371|       |
  372|  1.53M|		if (algolist[i] == ',') {
  ------------------
  |  Branch (372:7): [True: 102k, False: 1.43M]
  ------------------
  373|   102k|			if (*ret_count >= max_count) {
  ------------------
  |  Branch (373:8): [True: 0, False: 102k]
  ------------------
  374|      0|				dropbear_exit("Too many remote algorithms");
  375|      0|				*ret_count = 0;
  376|      0|				return;
  377|      0|			}
  378|   102k|			algolist[i] = '\0';
  379|   102k|			ret_list[*ret_count] = &algolist[i+1];
  380|   102k|			(*ret_count)++;
  381|   102k|		}
  382|  1.53M|	}
  383|  81.7k|}

chaninitialise:
   70|  1.55k|void chaninitialise(const struct ChanType *chantypes[]) {
   71|       |
   72|       |	/* may as well create space for a single channel */
   73|  1.55k|	ses.channels = (struct Channel**)m_malloc(sizeof(struct Channel*));
   74|  1.55k|	ses.chansize = 1;
   75|  1.55k|	ses.channels[0] = NULL;
   76|  1.55k|	ses.chancount = 0;
   77|       |
   78|  1.55k|	ses.chantypes = chantypes;
   79|       |
   80|  1.55k|#if DROPBEAR_LISTENERS
   81|  1.55k|	listeners_initialise();
   82|  1.55k|#endif
   83|       |
   84|  1.55k|}
chancleanup:
   87|  1.55k|void chancleanup() {
   88|       |
   89|  1.55k|	unsigned int i;
   90|       |
   91|  1.55k|	TRACE(("enter chancleanup"))
   92|  7.68k|	for (i = 0; i < ses.chansize; i++) {
  ------------------
  |  Branch (92:14): [True: 6.12k, False: 1.55k]
  ------------------
   93|  6.12k|		if (ses.channels[i] != NULL) {
  ------------------
  |  Branch (93:7): [True: 4.76k, False: 1.36k]
  ------------------
   94|  4.76k|			TRACE(("channel %d closing", i))
   95|  4.76k|			remove_channel(ses.channels[i]);
   96|  4.76k|		}
   97|  6.12k|	}
   98|  1.55k|	m_free(ses.channels);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   99|  1.55k|	TRACE(("leave chancleanup"))
  100|  1.55k|}
getchannel:
  194|  10.0k|struct Channel* getchannel() {
  195|  10.0k|	return getchannel_msg(NULL);
  196|  10.0k|}
channelio:
  199|   503k|void channelio(const fd_set *readfds, const fd_set *writefds) {
  200|       |
  201|       |	/* Listeners such as TCP, X11, agent-auth */
  202|   503k|	struct Channel *channel;
  203|   503k|	unsigned int i;
  204|       |
  205|       |	/* foreach channel */
  206|  4.96M|	for (i = 0; i < ses.chansize; i++) {
  ------------------
  |  Branch (206:14): [True: 4.46M, False: 503k]
  ------------------
  207|       |		/* Close checking only needs to occur for channels that had IO events */
  208|  4.46M|		int do_check_close = 0;
  209|       |
  210|  4.46M|		channel = ses.channels[i];
  211|  4.46M|		if (channel == NULL) {
  ------------------
  |  Branch (211:7): [True: 496k, False: 3.96M]
  ------------------
  212|       |			/* only process in-use channels */
  213|   496k|			continue;
  214|   496k|		}
  215|       |
  216|       |		/* read data and send it over the wire */
  217|  3.96M|		if (channel->readfd >= 0 && FD_ISSET(channel->readfd, readfds)) {
  ------------------
  |  Branch (217:7): [True: 1.02M, False: 2.93M]
  ------------------
  218|   119k|			TRACE(("send normal readfd"))
  219|   119k|			send_msg_channel_data(channel, 0);
  220|   119k|			do_check_close = 1;
  221|   119k|		}
  222|       |
  223|       |		/* read stderr data and send it over the wire */
  224|  3.96M|		if (ERRFD_IS_READ(channel) && channel->errfd >= 0 
  ------------------
  |  |   59|  7.93M|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (59:32): [True: 3.96M, False: 1]
  |  |  ------------------
  ------------------
  |  Branch (224:33): [True: 948k, False: 3.01M]
  ------------------
  225|  3.96M|			&& FD_ISSET(channel->errfd, readfds)) {
  226|   108k|				TRACE(("send normal errfd"))
  227|   108k|				send_msg_channel_data(channel, 1);
  228|   108k|			do_check_close = 1;
  229|   108k|		}
  230|       |
  231|       |		/* write to program/pipe stdin */
  232|  3.96M|		if (channel->writefd >= 0 && FD_ISSET(channel->writefd, writefds)) {
  ------------------
  |  Branch (232:7): [True: 1.19M, False: 2.76M]
  ------------------
  233|      0|			writechannel(channel, channel->writefd, channel->writebuf, NULL, NULL);
  234|      0|			do_check_close = 1;
  235|      0|		}
  236|       |		
  237|       |		/* stderr for client mode */
  238|  3.96M|		if (ERRFD_IS_WRITE(channel)
  ------------------
  |  |   60|  7.93M|#define ERRFD_IS_WRITE(channel) (!ERRFD_IS_READ(channel))
  |  |  ------------------
  |  |  |  |   59|  3.96M|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (60:33): [True: 0, False: 3.96M]
  |  |  ------------------
  ------------------
  239|  3.96M|				&& channel->errfd >= 0 && FD_ISSET(channel->errfd, writefds)) {
  ------------------
  |  Branch (239:8): [True: 0, False: 0]
  ------------------
  240|      0|			writechannel(channel, channel->errfd, channel->extrabuf, NULL, NULL);
  241|      0|			do_check_close = 1;
  242|      0|		}
  243|       |
  244|  3.96M|		if (ses.channel_signal_pending) {
  ------------------
  |  Branch (244:7): [True: 0, False: 3.96M]
  ------------------
  245|       |			/* SIGCHLD can change channel state for server sessions */
  246|      0|			do_check_close = 1;
  247|      0|		}
  248|       |	
  249|       |		/* handle any channel closing etc */
  250|  3.96M|		if (do_check_close) {
  ------------------
  |  Branch (250:7): [True: 202k, False: 3.76M]
  ------------------
  251|   202k|			check_close(channel);
  252|   202k|		}
  253|  3.96M|	}
  254|       |
  255|   503k|#if DROPBEAR_LISTENERS
  256|   503k|	handle_listeners(readfds);
  257|   503k|#endif
  258|   503k|}
channel_connect_done:
  347|    100|void channel_connect_done(int result, int sock, void* user_data, const char* errstring) {
  348|    100|	struct Channel *channel = user_data;
  349|       |
  350|    100|	TRACE(("enter channel_connect_done"))
  351|       |
  352|    100|	if (result == DROPBEAR_SUCCESS)
  ------------------
  |  |  102|    100|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (352:6): [True: 0, False: 100]
  ------------------
  353|      0|	{
  354|      0|		channel->readfd = channel->writefd = sock;
  355|      0|		channel->bidir_fd = 1;
  356|      0|		channel->conn_pending = NULL;
  357|      0|		send_msg_channel_open_confirmation(channel, channel->recvwindow,
  358|      0|				channel->recvmaxpacket);
  359|      0|		TRACE(("leave channel_connect_done: success"))
  360|      0|	}
  361|    100|	else
  362|    100|	{
  363|    100|		send_msg_channel_open_failure(channel->remotechan,
  364|    100|				SSH_OPEN_CONNECT_FAILED, errstring, "");
  ------------------
  |  |   34|    100|#define SSH_OPEN_CONNECT_FAILED                 2
  ------------------
  365|    100|		remove_channel(channel);
  366|    100|		TRACE(("leave check_in_progress: fail. internal errstring: %s", errstring))
  367|    100|	}
  368|    100|}
setchannelfds:
  541|   504k|void setchannelfds(fd_set *readfds, fd_set *writefds, int allow_reads) {
  542|       |	
  543|   504k|	unsigned int i;
  544|   504k|	struct Channel * channel;
  545|       |	
  546|  4.96M|	for (i = 0; i < ses.chansize; i++) {
  ------------------
  |  Branch (546:14): [True: 4.46M, False: 504k]
  ------------------
  547|       |
  548|  4.46M|		channel = ses.channels[i];
  549|  4.46M|		if (channel == NULL) {
  ------------------
  |  Branch (549:7): [True: 497k, False: 3.96M]
  ------------------
  550|   497k|			continue;
  551|   497k|		}
  552|       |
  553|       |		/* Stuff to put over the wire. 
  554|       |		Avoid queueing data to send if we're in the middle of a 
  555|       |		key re-exchange (!dataallowed), but still read from the 
  556|       |		FD if there's the possibility of "~."" to kill an 
  557|       |		interactive session (the read_mangler) */
  558|  3.96M|		if (channel->transwindow > 0
  ------------------
  |  Branch (558:7): [True: 2.86M, False: 1.10M]
  ------------------
  559|  3.96M|		   && ((ses.dataallowed && allow_reads) || channel->read_mangler)) {
  ------------------
  |  Branch (559:11): [True: 2.85M, False: 12.0k]
  |  Branch (559:30): [True: 2.18M, False: 669k]
  |  Branch (559:46): [True: 0, False: 681k]
  ------------------
  560|       |
  561|  2.18M|			if (channel->readfd >= 0) {
  ------------------
  |  Branch (561:8): [True: 617k, False: 1.56M]
  ------------------
  562|   617k|				FD_SET(channel->readfd, readfds);
  563|   617k|			}
  564|       |			
  565|  2.18M|			if (ERRFD_IS_READ(channel) && channel->errfd >= 0) {
  ------------------
  |  |   59|  4.36M|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (59:32): [True: 2.18M, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (565:34): [True: 565k, False: 1.61M]
  ------------------
  566|   565k|					FD_SET(channel->errfd, readfds);
  567|   565k|			}
  568|  2.18M|		}
  569|       |
  570|       |		/* Stuff from the wire */
  571|  3.96M|		if (channel->writefd >= 0 && cbuf_getused(channel->writebuf) > 0) {
  ------------------
  |  Branch (571:7): [True: 1.19M, False: 2.76M]
  |  Branch (571:32): [True: 0, False: 1.19M]
  ------------------
  572|      0|				FD_SET(channel->writefd, writefds);
  573|      0|		}
  574|       |
  575|  3.96M|		if (ERRFD_IS_WRITE(channel) && channel->errfd >= 0 
  ------------------
  |  |   60|  7.93M|#define ERRFD_IS_WRITE(channel) (!ERRFD_IS_READ(channel))
  |  |  ------------------
  |  |  |  |   59|  3.96M|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (60:33): [True: 0, False: 3.96M]
  |  |  ------------------
  ------------------
  |  Branch (575:34): [True: 0, False: 0]
  ------------------
  576|  3.96M|				&& cbuf_getused(channel->extrabuf) > 0) {
  ------------------
  |  Branch (576:8): [True: 0, False: 0]
  ------------------
  577|      0|				FD_SET(channel->errfd, writefds);
  578|      0|		}
  579|       |
  580|  3.96M|	} /* foreach channel */
  581|       |
  582|   504k|#if DROPBEAR_LISTENERS
  583|   504k|	set_listener_fds(readfds);
  584|   504k|#endif
  585|       |
  586|   504k|}
recv_msg_channel_eof:
  591|  2.94k|void recv_msg_channel_eof() {
  592|       |
  593|  2.94k|	struct Channel * channel;
  594|       |
  595|  2.94k|	TRACE(("enter recv_msg_channel_eof"))
  596|       |
  597|  2.94k|	channel = getchannel_msg("EOF");
  598|       |
  599|  2.94k|	channel->recv_eof = 1;
  600|       |
  601|  2.94k|	check_close(channel);
  602|  2.94k|	TRACE(("leave recv_msg_channel_eof"))
  603|  2.94k|}
recv_msg_channel_close:
  607|  2.28k|void recv_msg_channel_close() {
  608|       |
  609|  2.28k|	struct Channel * channel;
  610|       |
  611|  2.28k|	TRACE(("enter recv_msg_channel_close"))
  612|       |
  613|  2.28k|	channel = getchannel_msg("Close");
  614|       |
  615|  2.28k|	channel->recv_eof = 1;
  616|  2.28k|	channel->recv_close = 1;
  617|       |
  618|  2.28k|	check_close(channel);
  619|  2.28k|	TRACE(("leave recv_msg_channel_close"))
  620|  2.28k|}
recv_msg_channel_request:
  668|  9.46k|void recv_msg_channel_request() {
  669|       |
  670|  9.46k|	struct Channel *channel;
  671|       |
  672|  9.46k|	channel = getchannel();
  673|       |
  674|  9.46k|	TRACE(("enter recv_msg_channel_request %p", (void*)channel))
  675|       |
  676|  9.46k|	if (channel->type->reqhandler) {
  ------------------
  |  Branch (676:6): [True: 9.45k, False: 10]
  ------------------
  677|  9.45k|		channel->type->reqhandler(channel);
  678|  9.45k|	} else {
  679|     10|		int wantreply;
  680|     10|		buf_eatstring(ses.payload);
  681|     10|		wantreply = buf_getbool(ses.payload);
  682|     10|		if (wantreply) {
  ------------------
  |  Branch (682:7): [True: 0, False: 10]
  ------------------
  683|      0|			send_msg_channel_failure(channel);
  684|      0|		}
  685|     10|	}
  686|       |
  687|  9.46k|	TRACE(("leave recv_msg_channel_request"))
  688|       |
  689|  9.46k|}
recv_msg_channel_data:
  775|     95|void recv_msg_channel_data() {
  776|       |
  777|     95|	struct Channel *channel;
  778|       |
  779|     95|	channel = getchannel();
  780|       |
  781|     95|	common_recv_msg_channel_data(channel, channel->writefd, channel->writebuf);
  782|     95|}
common_recv_msg_channel_data:
  787|     94|		circbuffer * cbuf) {
  788|       |
  789|     94|	unsigned int datalen;
  790|     94|	unsigned int maxdata;
  791|     94|	unsigned int buflen;
  792|     94|	unsigned int len;
  793|     94|	unsigned int consumed;
  794|     94|	int res;
  795|       |
  796|     94|	TRACE(("enter recv_msg_channel_data"))
  797|       |
  798|     94|	if (channel->recv_eof) {
  ------------------
  |  Branch (798:6): [True: 1, False: 93]
  ------------------
  799|      1|		dropbear_exit("Received data after eof");
  800|      1|	}
  801|       |
  802|     93|	if (fd < 0 || !cbuf) {
  ------------------
  |  Branch (802:6): [True: 58, False: 35]
  |  Branch (802:16): [True: 0, False: 35]
  ------------------
  803|       |		/* If we have encountered failed write, the far side might still
  804|       |		 * be sending data without having yet received our close notification.
  805|       |		 * We just drop the data. */
  806|     58|		return;
  807|     58|	}
  808|       |
  809|     35|	datalen = buf_getint(ses.payload);
  810|     35|	TRACE(("length %d", datalen))
  811|       |
  812|     35|	maxdata = cbuf_getavail(cbuf);
  813|       |
  814|       |	/* Whilst the spec says we "MAY ignore data past the end" this could
  815|       |	 * lead to corrupted file transfers etc (chunks missed etc). It's better to
  816|       |	 * just die horribly */
  817|     35|	if (datalen > maxdata) {
  ------------------
  |  Branch (817:6): [True: 6, False: 29]
  ------------------
  818|      6|		dropbear_exit("Oversized packet");
  819|      6|	}
  820|       |
  821|     29|	dropbear_assert(channel->recvwindow >= datalen);
  ------------------
  |  |   83|     29|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 29]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  822|     29|	channel->recvwindow -= datalen;
  823|     29|	dropbear_assert(channel->recvwindow <= opts.recv_window);
  ------------------
  |  |   83|     29|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 29]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  824|       |
  825|       |	/* Attempt to write the data immediately without having to put it in the circular buffer */
  826|     29|	consumed = datalen;
  827|     29|	res = writechannel(channel, fd, cbuf, buf_getptr(ses.payload, datalen), &consumed);
  828|       |
  829|     29|	datalen -= consumed;
  830|     29|	buf_incrpos(ses.payload, consumed);
  831|       |
  832|       |
  833|       |	/* We may have to run throught twice, if the buffer wraps around. Can't
  834|       |	 * just "leave it for next time" like with writechannel, since this
  835|       |	 * is payload data.
  836|       |	 * If the writechannel() failed then remaining data is discarded */
  837|     29|	if (res == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|     29|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (837:6): [True: 0, False: 29]
  ------------------
  838|      0|		len = datalen;
  839|      0|		while (len > 0) {
  ------------------
  |  Branch (839:10): [True: 0, False: 0]
  ------------------
  840|      0|			buflen = cbuf_writelen(cbuf);
  841|      0|			buflen = MIN(buflen, len);
  842|       |
  843|      0|			memcpy(cbuf_writeptr(cbuf, buflen), 
  844|      0|					buf_getptr(ses.payload, buflen), buflen);
  845|      0|			cbuf_incrwrite(cbuf, buflen);
  846|      0|			buf_incrpos(ses.payload, buflen);
  847|      0|			len -= buflen;
  848|      0|		}
  849|      0|	}
  850|       |
  851|     29|	TRACE(("leave recv_msg_channel_data"))
  852|     29|}
recv_msg_channel_window_adjust:
  857|    529|void recv_msg_channel_window_adjust() {
  858|       |
  859|    529|	struct Channel * channel;
  860|    529|	unsigned int incr;
  861|       |	
  862|    529|	channel = getchannel();
  863|       |	
  864|    529|	incr = buf_getint(ses.payload);
  865|    529|	TRACE(("received window increment %d", incr))
  866|    529|	incr = MIN(incr, TRANS_MAX_WIN_INCR);
  867|       |	
  868|    529|	channel->transwindow += incr;
  869|    529|	channel->transwindow = MIN(channel->transwindow, TRANS_MAX_WINDOW);
  870|       |
  871|    529|}
recv_msg_channel_open:
  889|  7.95k|void recv_msg_channel_open() {
  890|       |
  891|  7.95k|	char *type;
  892|  7.95k|	unsigned int typelen;
  893|  7.95k|	unsigned int remotechan, transwindow, transmaxpacket;
  894|  7.95k|	struct Channel *channel;
  895|  7.95k|	const struct ChanType **cp;
  896|  7.95k|	const struct ChanType *chantype;
  897|  7.95k|	unsigned int errtype = SSH_OPEN_UNKNOWN_CHANNEL_TYPE;
  ------------------
  |  |   35|  7.95k|#define SSH_OPEN_UNKNOWN_CHANNEL_TYPE           3
  ------------------
  898|  7.95k|	int ret;
  899|       |
  900|       |
  901|  7.95k|	TRACE(("enter recv_msg_channel_open"))
  902|       |
  903|       |	/* get the packet contents */
  904|  7.95k|	type = buf_getstring(ses.payload, &typelen);
  905|       |
  906|  7.95k|	remotechan = buf_getint(ses.payload);
  907|  7.95k|	transwindow = buf_getint(ses.payload);
  908|  7.95k|	transwindow = MIN(transwindow, TRANS_MAX_WINDOW);
  909|  7.95k|	transmaxpacket = buf_getint(ses.payload);
  910|  7.95k|	transmaxpacket = MIN(transmaxpacket, TRANS_MAX_PAYLOAD_LEN);
  911|       |
  912|       |	/* figure what type of packet it is */
  913|  7.95k|	if (typelen > MAX_NAME_LEN) {
  ------------------
  |  |  205|  7.95k|#define MAX_NAME_LEN 64 /* maximum length of a protocol name, isn't
  ------------------
  |  Branch (913:6): [True: 70, False: 7.88k]
  ------------------
  914|     70|		goto failure;
  915|     70|	}
  916|       |
  917|       |	/* Get the channel type. Client and server style invokation will set up a
  918|       |	 * different list for ses.chantypes at startup. We just iterate through
  919|       |	 * this list and find the matching name */
  920|  7.88k|	for (cp = &ses.chantypes[0], chantype = (*cp); 
  921|  9.69k|			chantype != NULL;
  ------------------
  |  Branch (921:4): [True: 8.97k, False: 726]
  ------------------
  922|  8.97k|			cp++, chantype = (*cp)) {
  923|  8.97k|		if (strcmp(type, chantype->name) == 0) {
  ------------------
  |  Branch (923:7): [True: 7.16k, False: 1.81k]
  ------------------
  924|  7.16k|			break;
  925|  7.16k|		}
  926|  8.97k|	}
  927|       |
  928|  7.88k|	if (chantype == NULL) {
  ------------------
  |  Branch (928:6): [True: 725, False: 7.16k]
  ------------------
  929|    725|		TRACE(("No matching type for '%s'", type))
  930|    725|		goto failure;
  931|    725|	}
  932|       |
  933|  7.16k|	TRACE(("matched type '%s'", type))
  934|       |
  935|       |	/* create the channel */
  936|  7.16k|	channel = newchannel(remotechan, chantype, transwindow, transmaxpacket);
  937|       |
  938|  7.16k|	if (channel == NULL) {
  ------------------
  |  Branch (938:6): [True: 0, False: 7.16k]
  ------------------
  939|      0|		TRACE(("newchannel returned NULL"))
  940|      0|		errtype = SSH_OPEN_RESOURCE_SHORTAGE;
  ------------------
  |  |   36|      0|#define SSH_OPEN_RESOURCE_SHORTAGE              4
  ------------------
  941|      0|		goto failure;
  942|      0|	}
  943|       |
  944|  7.16k|	if (channel->type->inithandler) {
  ------------------
  |  Branch (944:6): [True: 7.16k, False: 1]
  ------------------
  945|  7.16k|		ret = channel->type->inithandler(channel);
  946|  7.16k|		if (ret == SSH_OPEN_IN_PROGRESS) {
  ------------------
  |  |   39|  7.16k|#define SSH_OPEN_IN_PROGRESS					99
  ------------------
  |  Branch (946:7): [True: 101, False: 7.06k]
  ------------------
  947|       |			/* We'll send the confirmation later */
  948|    101|			goto cleanup;
  949|    101|		}
  950|  7.06k|		if (ret > 0) {
  ------------------
  |  Branch (950:7): [True: 255, False: 6.80k]
  ------------------
  951|    255|			errtype = ret;
  952|    255|			remove_channel(channel);
  953|    255|			TRACE(("inithandler returned failure %d", ret))
  954|    255|			goto failure;
  955|    255|		}
  956|  7.06k|	}
  957|       |
  958|  6.80k|	update_channel_prio();
  959|       |
  960|       |	/* success */
  961|  6.80k|	send_msg_channel_open_confirmation(channel, channel->recvwindow,
  962|  6.80k|			channel->recvmaxpacket);
  963|  6.80k|	goto cleanup;
  964|       |
  965|  1.05k|failure:
  966|  1.05k|	TRACE(("recv_msg_channel_open failure"))
  967|  1.05k|	send_msg_channel_open_failure(remotechan, errtype, "", "");
  968|       |
  969|  7.95k|cleanup:
  970|  7.95k|	m_free(type);
  ------------------
  |  |   24|  7.95k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  971|       |
  972|  7.95k|	TRACE(("leave recv_msg_channel_open"))
  973|  7.95k|}
send_msg_channel_failure:
  976|  5.26k|void send_msg_channel_failure(const struct Channel *channel) {
  977|       |
  978|  5.26k|	TRACE(("enter send_msg_channel_failure"))
  979|       |
  980|  5.26k|	if (channel->sent_close) {
  ------------------
  |  Branch (980:6): [True: 265, False: 5.00k]
  ------------------
  981|    265|		TRACE(("Skipping sending msg_channel_failure for closed channel"))
  982|    265|		return;
  983|    265|	}
  984|  5.00k|	CHECKCLEARTOWRITE();
  985|       |
  986|  5.00k|	buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_FAILURE);
  ------------------
  |  |   76|  5.00k|#define SSH_MSG_CHANNEL_FAILURE                 100
  ------------------
  987|  5.00k|	buf_putint(ses.writepayload, channel->remotechan);
  988|       |
  989|  5.00k|	encrypt_packet();
  990|  5.00k|	TRACE(("leave send_msg_channel_failure"))
  991|  5.00k|}
send_msg_channel_success:
  994|  2.52k|void send_msg_channel_success(const struct Channel *channel) {
  995|       |
  996|  2.52k|	TRACE(("enter send_msg_channel_success"))
  997|  2.52k|	if (channel->sent_close) {
  ------------------
  |  Branch (997:6): [True: 1.29k, False: 1.23k]
  ------------------
  998|  1.29k|		TRACE(("Skipping sending msg_channel_success for closed channel"))
  999|  1.29k|		return;
 1000|  1.29k|	}
 1001|  1.23k|	CHECKCLEARTOWRITE();
 1002|       |
 1003|  1.23k|	buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_SUCCESS);
  ------------------
  |  |   75|  1.23k|#define SSH_MSG_CHANNEL_SUCCESS                 99
  ------------------
 1004|  1.23k|	buf_putint(ses.writepayload, channel->remotechan);
 1005|       |
 1006|  1.23k|	encrypt_packet();
 1007|  1.23k|	TRACE(("leave send_msg_channel_success"))
 1008|  1.23k|}
send_msg_request_failure:
 1192|    781|void send_msg_request_failure() {
 1193|    781|	CHECKCLEARTOWRITE();
 1194|    781|	buf_putbyte(ses.writepayload, SSH_MSG_REQUEST_FAILURE);
  ------------------
  |  |   65|    781|#define SSH_MSG_REQUEST_FAILURE                 82
  ------------------
 1195|    781|	encrypt_packet();
 1196|    781|}
common-channel.c:getchannel_msg:
  179|  15.3k|static struct Channel* getchannel_msg(const char* kind) {
  180|       |
  181|  15.3k|	unsigned int chan;
  182|       |
  183|  15.3k|	chan = buf_getint(ses.payload);
  184|  15.3k|	if (chan >= ses.chansize || ses.channels[chan] == NULL) {
  ------------------
  |  Branch (184:6): [True: 20, False: 15.2k]
  |  Branch (184:30): [True: 0, False: 15.2k]
  ------------------
  185|     20|		if (kind) {
  ------------------
  |  Branch (185:7): [True: 7, False: 13]
  ------------------
  186|      7|			dropbear_exit("%s for unknown channel %d", kind, chan);
  187|     13|		} else {
  188|     13|			dropbear_exit("Unknown channel %d", chan);
  189|     13|		}
  190|     20|	}
  191|  15.2k|	return ses.channels[chan];
  192|  15.3k|}
common-channel.c:check_close:
  276|   207k|static void check_close(struct Channel *channel) {
  277|   207k|	int close_allowed = 0;
  278|       |
  279|   207k|	TRACE2(("check_close: writefd %d, readfd %d, errfd %d, sent_close %d, recv_close %d",
  280|   207k|				channel->writefd, channel->readfd,
  281|   207k|				channel->errfd, channel->sent_close, channel->recv_close))
  282|   207k|	TRACE2(("writebuf size %d extrabuf size %d",
  283|   207k|				channel->writebuf ? cbuf_getused(channel->writebuf) : 0,
  284|   207k|				channel->extrabuf ? cbuf_getused(channel->extrabuf) : 0))
  285|       |
  286|       |	/* if a type-specific check_close is defined we will only exit
  287|       |	   once that has been triggered. this is only used for a server "session"
  288|       |	   channel, to ensure that the shell has exited (and the exit status
  289|       |	   retrieved) before we close things up. */
  290|   207k|	if (!channel->type->check_close
  ------------------
  |  Branch (290:6): [True: 0, False: 207k]
  ------------------
  291|   207k|		|| channel->sent_close
  ------------------
  |  Branch (291:6): [True: 2.36k, False: 204k]
  ------------------
  292|   207k|		|| channel->type->check_close(channel)) {
  ------------------
  |  Branch (292:6): [True: 2.10k, False: 202k]
  ------------------
  293|  4.46k|		close_allowed = 1;
  294|  4.46k|	}
  295|       |
  296|       |	/* In flushing mode we close FDs as soon as pipes are empty.
  297|       |	This is used to drain out FDs when the process exits, in the case
  298|       |	where the FD doesn't have EOF - "sleep 10&echo hello" case */
  299|   207k|	if (channel->flushing) {
  ------------------
  |  Branch (299:6): [True: 0, False: 207k]
  ------------------
  300|      0|		if (channel->readfd >= 0 && !fd_read_pending(channel->readfd)) {
  ------------------
  |  Branch (300:7): [True: 0, False: 0]
  |  Branch (300:31): [True: 0, False: 0]
  ------------------
  301|      0|			close_chan_fd(channel, channel->readfd, SHUT_RD);
  302|      0|		}
  303|      0|		if (ERRFD_IS_READ(channel)
  ------------------
  |  |   59|      0|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (59:32): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  304|      0|			&& channel->errfd >= 0 && !fd_read_pending(channel->errfd)) {
  ------------------
  |  Branch (304:7): [True: 0, False: 0]
  |  Branch (304:30): [True: 0, False: 0]
  ------------------
  305|      0|			close_chan_fd(channel, channel->errfd, SHUT_RD);
  306|      0|		}
  307|      0|	}
  308|       |
  309|   207k|	if (channel->recv_close && !write_pending(channel) && close_allowed) {
  ------------------
  |  Branch (309:6): [True: 4.09k, False: 203k]
  |  Branch (309:29): [True: 4.09k, False: 0]
  |  Branch (309:56): [True: 2.04k, False: 2.04k]
  ------------------
  310|  2.04k|		if (!channel->sent_close) {
  ------------------
  |  Branch (310:7): [True: 71, False: 1.97k]
  ------------------
  311|     71|			TRACE(("Sending MSG_CHANNEL_CLOSE in response to same."))
  312|     71|			send_msg_channel_close(channel);
  313|     71|		}
  314|  2.04k|		remove_channel(channel);
  315|  2.04k|		return;
  316|  2.04k|	}
  317|       |
  318|   205k|	if ((channel->recv_eof && !write_pending(channel))
  ------------------
  |  Branch (318:7): [True: 8.46k, False: 196k]
  |  Branch (318:28): [True: 8.46k, False: 0]
  ------------------
  319|       |		/* have a server "session" and child has exited */
  320|   205k|		|| (channel->type->check_close && close_allowed)) {
  ------------------
  |  Branch (320:7): [True: 196k, False: 0]
  |  Branch (320:37): [True: 0, False: 196k]
  ------------------
  321|  8.46k|		close_chan_fd(channel, channel->writefd, SHUT_WR);
  322|  8.46k|	}
  323|       |
  324|       |	/* If we're not going to send any more data, send EOF */
  325|   205k|	if (!channel->sent_eof
  ------------------
  |  Branch (325:6): [True: 204k, False: 629]
  ------------------
  326|   205k|			&& channel->readfd == FD_CLOSED 
  ------------------
  |  |   57|   409k|#define FD_CLOSED (-1)
  ------------------
  |  Branch (326:7): [True: 18.3k, False: 186k]
  ------------------
  327|   205k|			&& (ERRFD_IS_WRITE(channel) || channel->errfd == FD_CLOSED)) {
  ------------------
  |  |   60|  36.6k|#define ERRFD_IS_WRITE(channel) (!ERRFD_IS_READ(channel))
  |  |  ------------------
  |  |  |  |   59|  18.3k|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (60:33): [True: 0, False: 18.3k]
  |  |  ------------------
  ------------------
              			&& (ERRFD_IS_WRITE(channel) || channel->errfd == FD_CLOSED)) {
  ------------------
  |  |   57|  18.3k|#define FD_CLOSED (-1)
  ------------------
  |  Branch (327:35): [True: 2.09k, False: 16.2k]
  ------------------
  328|  2.09k|		send_msg_channel_eof(channel);
  329|  2.09k|	}
  330|       |
  331|       |	/* And if we can't receive any more data from them either, close up */
  332|   205k|	if (channel->readfd == FD_CLOSED
  ------------------
  |  |   57|   410k|#define FD_CLOSED (-1)
  ------------------
  |  Branch (332:6): [True: 18.9k, False: 186k]
  ------------------
  333|   205k|			&& channel->writefd == FD_CLOSED
  ------------------
  |  |   57|   224k|#define FD_CLOSED (-1)
  ------------------
  |  Branch (333:7): [True: 4.58k, False: 14.3k]
  ------------------
  334|   205k|			&& (ERRFD_IS_WRITE(channel) || channel->errfd == FD_CLOSED)
  ------------------
  |  |   60|  9.17k|#define ERRFD_IS_WRITE(channel) (!ERRFD_IS_READ(channel))
  |  |  ------------------
  |  |  |  |   59|  4.58k|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (60:33): [True: 0, False: 4.58k]
  |  |  ------------------
  ------------------
              			&& (ERRFD_IS_WRITE(channel) || channel->errfd == FD_CLOSED)
  ------------------
  |  |   57|  4.58k|#define FD_CLOSED (-1)
  ------------------
  |  Branch (334:35): [True: 2.63k, False: 1.94k]
  ------------------
  335|   205k|			&& !channel->sent_close
  ------------------
  |  Branch (335:7): [True: 2.27k, False: 362]
  ------------------
  336|   205k|			&& close_allowed
  ------------------
  |  Branch (336:7): [True: 2.02k, False: 247]
  ------------------
  337|   205k|			&& !write_pending(channel)) {
  ------------------
  |  Branch (337:7): [True: 2.02k, False: 0]
  ------------------
  338|  2.02k|		TRACE(("sending close, readfd is closed"))
  339|  2.02k|		send_msg_channel_close(channel);
  340|  2.02k|	}
  341|   205k|}
common-channel.c:close_chan_fd:
 1048|  15.0k|static void close_chan_fd(struct Channel *channel, int fd, int how) {
 1049|       |
 1050|  15.0k|	int closein = 0, closeout = 0;
 1051|       |
 1052|  15.0k|	if (channel->bidir_fd) {
  ------------------
  |  Branch (1052:6): [True: 0, False: 15.0k]
  ------------------
 1053|      0|		TRACE(("SHUTDOWN(%d, %d)", fd, how))
 1054|      0|		shutdown(fd, how);
 1055|      0|		if (how == 0) {
  ------------------
  |  Branch (1055:7): [True: 0, False: 0]
  ------------------
 1056|      0|			closeout = 1;
 1057|      0|		} else {
 1058|      0|			closein = 1;
 1059|      0|		}
 1060|  15.0k|	} else {
 1061|  15.0k|		TRACE(("CLOSE some fd %d", fd))
 1062|  15.0k|		m_close(fd);
 1063|  15.0k|		closein = closeout = 1;
 1064|  15.0k|	}
 1065|       |
 1066|  15.0k|	if (closeout && (fd == channel->readfd)) {
  ------------------
  |  Branch (1066:6): [True: 15.0k, False: 0]
  |  Branch (1066:18): [True: 11.0k, False: 4.06k]
  ------------------
 1067|  11.0k|		channel->readfd = FD_CLOSED;
  ------------------
  |  |   57|  11.0k|#define FD_CLOSED (-1)
  ------------------
 1068|  11.0k|	}
 1069|  15.0k|	if (closeout && ERRFD_IS_READ(channel) && (fd == channel->errfd)) {
  ------------------
  |  |   59|  30.1k|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (59:32): [True: 15.0k, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (1069:6): [True: 15.0k, False: 0]
  |  Branch (1069:44): [True: 7.42k, False: 7.67k]
  ------------------
 1070|  7.42k|		channel->errfd = FD_CLOSED;
  ------------------
  |  |   57|  7.42k|#define FD_CLOSED (-1)
  ------------------
 1071|  7.42k|	}
 1072|       |
 1073|  15.0k|	if (closein && fd == channel->writefd) {
  ------------------
  |  Branch (1073:6): [True: 15.0k, False: 0]
  |  Branch (1073:17): [True: 14.7k, False: 317]
  ------------------
 1074|  14.7k|		channel->writefd = FD_CLOSED;
  ------------------
  |  |   57|  14.7k|#define FD_CLOSED (-1)
  ------------------
 1075|  14.7k|	}
 1076|  15.0k|	if (closein && ERRFD_IS_WRITE(channel) && (fd == channel->errfd)) {
  ------------------
  |  |   60|  30.1k|#define ERRFD_IS_WRITE(channel) (!ERRFD_IS_READ(channel))
  |  |  ------------------
  |  |  |  |   59|  15.0k|#define ERRFD_IS_READ(channel) ((channel)->extrabuf == NULL)
  |  |  ------------------
  |  |  |  Branch (60:33): [True: 0, False: 15.0k]
  |  |  ------------------
  ------------------
  |  Branch (1076:6): [True: 15.0k, False: 0]
  |  Branch (1076:44): [True: 0, False: 0]
  ------------------
 1077|      0|		channel->errfd = FD_CLOSED;
  ------------------
  |  |   57|      0|#define FD_CLOSED (-1)
  ------------------
 1078|      0|	}
 1079|       |
 1080|       |	/* if we called shutdown on it and all references are gone, then we 
 1081|       |	 * need to close() it to stop it lingering */
 1082|  15.0k|	if (channel->bidir_fd && channel->readfd == FD_CLOSED 
  ------------------
  |  |   57|  15.0k|#define FD_CLOSED (-1)
  ------------------
  |  Branch (1082:6): [True: 0, False: 15.0k]
  |  Branch (1082:27): [True: 0, False: 0]
  ------------------
 1083|  15.0k|		&& channel->writefd == FD_CLOSED && channel->errfd == FD_CLOSED) {
  ------------------
  |  |   57|  15.0k|#define FD_CLOSED (-1)
  ------------------
              		&& channel->writefd == FD_CLOSED && channel->errfd == FD_CLOSED) {
  ------------------
  |  |   57|      0|#define FD_CLOSED (-1)
  ------------------
  |  Branch (1083:6): [True: 0, False: 0]
  |  Branch (1083:39): [True: 0, False: 0]
  ------------------
 1084|      0|		TRACE(("CLOSE (finally) of %d", fd))
 1085|      0|		m_close(fd);
 1086|      0|	}
 1087|  15.0k|}
common-channel.c:write_pending:
  263|  14.5k|static unsigned int write_pending(const struct Channel * channel) {
  264|       |
  265|  14.5k|	if (channel->writefd >= 0 && cbuf_getused(channel->writebuf) > 0) {
  ------------------
  |  Branch (265:6): [True: 2.01k, False: 12.5k]
  |  Branch (265:31): [True: 0, False: 2.01k]
  ------------------
  266|      0|		return 1;
  267|  14.5k|	} else if (channel->errfd >= 0 && channel->extrabuf && 
  ------------------
  |  Branch (267:13): [True: 8.90k, False: 5.68k]
  |  Branch (267:36): [True: 0, False: 8.90k]
  ------------------
  268|  14.5k|			cbuf_getused(channel->extrabuf) > 0) {
  ------------------
  |  Branch (268:4): [True: 0, False: 0]
  ------------------
  269|      0|		return 1;
  270|      0|	}
  271|  14.5k|	return 0;
  272|  14.5k|}
common-channel.c:send_msg_channel_close:
  372|  2.10k|static void send_msg_channel_close(struct Channel *channel) {
  373|       |
  374|  2.10k|	TRACE(("enter send_msg_channel_close %p", (void*)channel))
  375|  2.10k|	if (channel->type->closehandler) {
  ------------------
  |  Branch (375:6): [True: 2.10k, False: 0]
  ------------------
  376|  2.10k|		channel->type->closehandler(channel);
  377|  2.10k|	}
  378|       |	
  379|  2.10k|	CHECKCLEARTOWRITE();
  380|       |
  381|  2.10k|	buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_CLOSE);
  ------------------
  |  |   73|  2.10k|#define SSH_MSG_CHANNEL_CLOSE                   97
  ------------------
  382|  2.10k|	buf_putint(ses.writepayload, channel->remotechan);
  383|       |
  384|  2.10k|	encrypt_packet();
  385|       |
  386|  2.10k|	channel->sent_eof = 1;
  387|  2.10k|	channel->sent_close = 1;
  388|  2.10k|	close_chan_fd(channel, channel->readfd, SHUT_RD);
  389|  2.10k|	close_chan_fd(channel, channel->errfd, SHUT_RDWR);
  390|  2.10k|	close_chan_fd(channel, channel->writefd, SHUT_WR);
  391|  2.10k|	TRACE(("leave send_msg_channel_close"))
  392|  2.10k|}
common-channel.c:send_msg_channel_eof:
  395|  2.09k|static void send_msg_channel_eof(struct Channel *channel) {
  396|       |
  397|  2.09k|	TRACE(("enter send_msg_channel_eof"))
  398|  2.09k|	CHECKCLEARTOWRITE();
  399|       |
  400|  2.09k|	buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_EOF);
  ------------------
  |  |   72|  2.09k|#define SSH_MSG_CHANNEL_EOF                     96
  ------------------
  401|  2.09k|	buf_putint(ses.writepayload, channel->remotechan);
  402|       |
  403|  2.09k|	encrypt_packet();
  404|       |
  405|  2.09k|	channel->sent_eof = 1;
  406|       |
  407|  2.09k|	TRACE(("leave send_msg_channel_eof"))
  408|  2.09k|}
common-channel.c:writechannel:
  513|     16|	const unsigned char *moredata, unsigned int *morelen) {
  514|     16|	int ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|     16|#define DROPBEAR_SUCCESS 0
  ------------------
  515|     16|	TRACE(("enter writechannel fd %d", fd))
  516|     16|#ifdef HAVE_WRITEV
  517|     16|	ret = writechannel_writev(channel, fd, cbuf, moredata, morelen);
  518|       |#else
  519|       |	ret = writechannel_fallback(channel, fd, cbuf, moredata, morelen);
  520|       |#endif
  521|       |
  522|       |	/* Window adjust handling */
  523|     16|	if (channel->recvdonelen >= RECV_WINDOWEXTEND) {
  ------------------
  |  |  221|     16|#define RECV_WINDOWEXTEND (opts.recv_window / 3) /* We send a "window extend" every
  ------------------
  |  Branch (523:6): [True: 0, False: 16]
  ------------------
  524|      0|		send_msg_channel_window_adjust(channel, channel->recvdonelen);
  525|      0|		channel->recvwindow += channel->recvdonelen;
  526|      0|		channel->recvdonelen = 0;
  527|      0|	}
  528|       |
  529|     16|	dropbear_assert(channel->recvwindow <= opts.recv_window);
  ------------------
  |  |   83|     16|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 16]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  530|     16|	dropbear_assert(channel->recvwindow <= cbuf_getavail(channel->writebuf));
  ------------------
  |  |   83|     16|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 16]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  531|     16|	dropbear_assert(channel->extrabuf == NULL ||
  ------------------
  |  |   83|     16|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:39): [True: 16, False: 0]
  |  |  |  Branch (83:39): [True: 0, False: 0]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  532|     16|			channel->recvwindow <= cbuf_getavail(channel->extrabuf));
  533|       |	
  534|     16|	TRACE(("leave writechannel"))
  535|     16|	return ret;
  536|     16|}
common-channel.c:writechannel_writev:
  442|     16|	const unsigned char *moredata, unsigned int *morelen) {
  443|       |
  444|     16|	struct iovec iov[3];
  445|     16|	unsigned char *circ_p1, *circ_p2;
  446|     16|	unsigned int circ_len1, circ_len2;
  447|     16|	int io_count = 0;
  448|       |
  449|     16|	ssize_t written;
  450|       |
  451|     16|	cbuf_readptrs(cbuf, &circ_p1, &circ_len1, &circ_p2, &circ_len2);
  452|       |
  453|     16|	if (circ_len1 > 0) {
  ------------------
  |  Branch (453:6): [True: 0, False: 16]
  ------------------
  454|      0|		TRACE(("circ1 %d", circ_len1))
  455|      0|		iov[io_count].iov_base = circ_p1;
  456|      0|		iov[io_count].iov_len = circ_len1;
  457|      0|		io_count++;
  458|      0|	}
  459|       |
  460|     16|	if (circ_len2 > 0) {
  ------------------
  |  Branch (460:6): [True: 0, False: 16]
  ------------------
  461|      0|		TRACE(("circ2 %d", circ_len2))
  462|      0|		iov[io_count].iov_base = circ_p2;
  463|      0|		iov[io_count].iov_len = circ_len2;
  464|      0|		io_count++;
  465|      0|	}
  466|       |
  467|     16|	if (morelen) {
  ------------------
  |  Branch (467:6): [True: 16, False: 0]
  ------------------
  468|     16|		assert(moredata);
  469|     16|		TRACE(("more %d", *morelen))
  470|     16|		iov[io_count].iov_base = (void*)moredata;
  471|     16|		iov[io_count].iov_len  = *morelen;
  472|     16|		io_count++;
  473|     16|	}
  474|       |
  475|     16|	if (io_count == 0) {
  ------------------
  |  Branch (475:6): [True: 0, False: 16]
  ------------------
  476|       |		/* writechannel may sometimes be called twice in a main loop iteration.
  477|       |		From common_recv_msg_channel_data() then channelio().
  478|       |		The second call may not have any data to write, so we just return. */
  479|      0|		TRACE(("leave writechannel, no data"))
  480|      0|		return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  481|      0|	}
  482|       |
  483|     16|	if (morelen) {
  ------------------
  |  Branch (483:6): [True: 16, False: 0]
  ------------------
  484|       |		/* Default return value, none consumed */
  485|     16|		*morelen = 0;
  486|     16|	}
  487|       |
  488|     16|	written = writev(fd, iov, io_count);
  489|       |
  490|     16|	if (written < 0) {
  ------------------
  |  Branch (490:6): [True: 16, False: 0]
  ------------------
  491|     16|		if (errno != EINTR && errno != EAGAIN) {
  ------------------
  |  Branch (491:7): [True: 16, False: 0]
  |  Branch (491:25): [True: 16, False: 0]
  ------------------
  492|     16|			TRACE(("channel IO write error fd %d %s", fd, strerror(errno)))
  493|     16|			close_chan_fd(channel, fd, SHUT_WR);
  494|     16|			return DROPBEAR_FAILURE;
  ------------------
  |  |  103|     16|#define DROPBEAR_FAILURE -1
  ------------------
  495|     16|		}
  496|     16|	} else {
  497|      0|		int cbuf_written = MIN(circ_len1+circ_len2, (unsigned int)written);
  498|      0|		cbuf_incrread(cbuf, cbuf_written);
  499|      0|		if (morelen) {
  ------------------
  |  Branch (499:7): [True: 0, False: 0]
  ------------------
  500|      0|			*morelen = written - cbuf_written;
  501|      0|		}
  502|      0|		channel->recvdonelen += written;
  503|      0|	}
  504|      0|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  505|     16|}
common-channel.c:remove_channel:
  624|  7.16k|static void remove_channel(struct Channel * channel) {
  625|       |
  626|  7.16k|	TRACE(("enter remove_channel"))
  627|  7.16k|	TRACE(("channel index is %d", channel->index))
  628|       |
  629|  7.16k|	cbuf_free(channel->writebuf);
  630|  7.16k|	channel->writebuf = NULL;
  631|       |
  632|  7.16k|	if (channel->extrabuf) {
  ------------------
  |  Branch (632:6): [True: 0, False: 7.16k]
  ------------------
  633|      0|		cbuf_free(channel->extrabuf);
  634|      0|		channel->extrabuf = NULL;
  635|      0|	}
  636|       |
  637|       |
  638|  7.16k|	if (IS_DROPBEAR_SERVER || (channel->writefd != STDOUT_FILENO)) {
  ------------------
  |  |  319|  14.3k|#define IS_DROPBEAR_SERVER (ses.isserver == 1)
  |  |  ------------------
  |  |  |  Branch (319:28): [True: 7.16k, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (638:28): [True: 0, False: 0]
  ------------------
  639|       |		/* close the FDs in case they haven't been done
  640|       |		 * yet (they might have been shutdown etc) */
  641|  7.16k|		TRACE(("CLOSE writefd %d", channel->writefd))
  642|  7.16k|		m_close(channel->writefd);
  643|  7.16k|		TRACE(("CLOSE readfd %d", channel->readfd))
  644|  7.16k|		m_close(channel->readfd);
  645|  7.16k|		TRACE(("CLOSE errfd %d", channel->errfd))
  646|  7.16k|		m_close(channel->errfd);
  647|  7.16k|	}
  648|       |
  649|  7.16k|	if (channel->type->cleanup) {
  ------------------
  |  Branch (649:6): [True: 6.80k, False: 361]
  ------------------
  650|  6.80k|		channel->type->cleanup(channel);
  651|  6.80k|	}
  652|       |
  653|  7.16k|	if (channel->conn_pending) {
  ------------------
  |  Branch (653:6): [True: 101, False: 7.06k]
  ------------------
  654|    101|		cancel_connect(channel->conn_pending);
  655|    101|	}
  656|       |
  657|  7.16k|	ses.channels[channel->index] = NULL;
  658|  7.16k|	m_free(channel);
  ------------------
  |  |   24|  7.16k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  659|  7.16k|	ses.chancount--;
  660|       |
  661|  7.16k|	update_channel_prio();
  662|       |
  663|  7.16k|	TRACE(("leave remove_channel"))
  664|  7.16k|}
common-channel.c:send_msg_channel_data:
  696|   228k|static void send_msg_channel_data(struct Channel *channel, int isextended) {
  697|       |
  698|   228k|	int len;
  699|   228k|	size_t maxlen, size_pos;
  700|   228k|	int fd;
  701|       |
  702|   228k|	CHECKCLEARTOWRITE();
  703|       |
  704|   228k|	TRACE(("enter send_msg_channel_data"))
  705|   228k|	dropbear_assert(!channel->sent_close);
  ------------------
  |  |   83|   228k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 2, False: 228k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  706|       |
  707|   228k|	if (isextended) {
  ------------------
  |  Branch (707:6): [True: 108k, False: 119k]
  ------------------
  708|   108k|		fd = channel->errfd;
  709|   119k|	} else {
  710|   119k|		fd = channel->readfd;
  711|   119k|	}
  712|   228k|	TRACE(("enter send_msg_channel_data isextended %d fd %d", isextended, fd))
  713|   228k|	dropbear_assert(fd >= 0);
  ------------------
  |  |   83|   228k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 228k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  714|       |
  715|   228k|	maxlen = MIN(channel->transwindow, channel->transmaxpacket);
  716|       |	/* -(1+4+4) is SSH_MSG_CHANNEL_DATA, channel number, string length, and 
  717|       |	 * exttype if is extended */
  718|   228k|	maxlen = MIN(maxlen, 
  719|   228k|			ses.writepayload->size - 1 - 4 - 4 - (isextended ? 4 : 0));
  720|   228k|	TRACE(("maxlen %zd", maxlen))
  721|   228k|	if (maxlen == 0) {
  ------------------
  |  Branch (721:6): [True: 7.75k, False: 220k]
  ------------------
  722|  7.75k|		TRACE(("leave send_msg_channel_data: no window"))
  723|  7.75k|		return;
  724|  7.75k|	}
  725|       |
  726|   220k|	buf_putbyte(ses.writepayload, 
  727|   220k|			isextended ? SSH_MSG_CHANNEL_EXTENDED_DATA : SSH_MSG_CHANNEL_DATA);
  ------------------
  |  |   71|   104k|#define SSH_MSG_CHANNEL_EXTENDED_DATA           95
  ------------------
              			isextended ? SSH_MSG_CHANNEL_EXTENDED_DATA : SSH_MSG_CHANNEL_DATA);
  ------------------
  |  |   70|   336k|#define SSH_MSG_CHANNEL_DATA                    94
  ------------------
  |  Branch (727:4): [True: 104k, False: 115k]
  ------------------
  728|   220k|	buf_putint(ses.writepayload, channel->remotechan);
  729|   220k|	if (isextended) {
  ------------------
  |  Branch (729:6): [True: 104k, False: 115k]
  ------------------
  730|   104k|		buf_putint(ses.writepayload, SSH_EXTENDED_DATA_STDERR);
  ------------------
  |  |   79|   104k|#define SSH_EXTENDED_DATA_STDERR	1
  ------------------
  731|   104k|	}
  732|       |	/* a dummy size first ...*/
  733|   220k|	size_pos = ses.writepayload->pos;
  734|   220k|	buf_putint(ses.writepayload, 0);
  735|       |
  736|       |	/* read the data */
  737|   220k|	len = read(fd, buf_getwriteptr(ses.writepayload, maxlen), maxlen);
  ------------------
  |  |   55|   220k|#define read(fd, buf, count) wrapfd_read(fd, buf, count)
  ------------------
  738|       |
  739|   220k|	if (len <= 0) {
  ------------------
  |  Branch (739:6): [True: 640, False: 219k]
  ------------------
  740|    640|		if (len == 0 || errno != EINTR) {
  ------------------
  |  Branch (740:7): [True: 0, False: 640]
  |  Branch (740:19): [True: 317, False: 323]
  ------------------
  741|       |			/* This will also get hit in the case of EAGAIN. The only
  742|       |			time we expect to receive EAGAIN is when we're flushing a FD,
  743|       |			in which case it can be treated the same as EOF */
  744|    317|			close_chan_fd(channel, fd, SHUT_RD);
  745|    317|		}
  746|    640|		buf_setpos(ses.writepayload, 0);
  747|    640|		buf_setlen(ses.writepayload, 0);
  748|    640|		TRACE(("leave send_msg_channel_data: len %d read err %d or EOF for fd %d", 
  749|    640|					len, errno, fd))
  750|    640|		return;
  751|    640|	}
  752|       |
  753|   219k|	if (channel->read_mangler) {
  ------------------
  |  Branch (753:6): [True: 0, False: 219k]
  ------------------
  754|      0|		channel->read_mangler(channel, buf_getwriteptr(ses.writepayload, len), &len);
  755|      0|		if (len == 0) {
  ------------------
  |  Branch (755:7): [True: 0, False: 0]
  ------------------
  756|      0|			buf_setpos(ses.writepayload, 0);
  757|      0|			buf_setlen(ses.writepayload, 0);
  758|      0|			return;
  759|      0|		}
  760|      0|	}
  761|       |
  762|   219k|	TRACE(("send_msg_channel_data: len %d fd %d", len, fd))
  763|   219k|	buf_incrwritepos(ses.writepayload, len);
  764|       |	/* ... real size here */
  765|   219k|	buf_setpos(ses.writepayload, size_pos);
  766|   219k|	buf_putint(ses.writepayload, len);
  767|       |
  768|   219k|	channel->transwindow -= len;
  769|       |
  770|   219k|	encrypt_packet();
  771|   219k|	TRACE(("leave send_msg_channel_data"))
  772|   219k|}
common-channel.c:newchannel:
  108|  7.16k|		unsigned int transwindow, unsigned int transmaxpacket) {
  109|       |
  110|  7.16k|	struct Channel * newchan;
  111|  7.16k|	unsigned int i, j;
  112|       |
  113|  7.16k|	TRACE(("enter newchannel"))
  114|       |	
  115|       |	/* first see if we can use existing channels */
  116|   157k|	for (i = 0; i < ses.chansize; i++) {
  ------------------
  |  Branch (116:14): [True: 155k, False: 1.52k]
  ------------------
  117|   155k|		if (ses.channels[i] == NULL) {
  ------------------
  |  Branch (117:7): [True: 5.64k, False: 150k]
  ------------------
  118|  5.64k|			break;
  119|  5.64k|		}
  120|   155k|	}
  121|       |
  122|       |	/* otherwise extend the list */
  123|  7.16k|	if (i == ses.chansize) {
  ------------------
  |  Branch (123:6): [True: 1.52k, False: 5.64k]
  ------------------
  124|  1.52k|		if (ses.chansize >= MAX_CHANNELS) {
  ------------------
  |  |  225|  1.52k|#define MAX_CHANNELS 1000 /* simple mem restriction, includes each tcp/x11
  ------------------
  |  Branch (124:7): [True: 0, False: 1.52k]
  ------------------
  125|      0|			TRACE(("leave newchannel: max chans reached"))
  126|      0|			return NULL;
  127|      0|		}
  128|       |
  129|       |		/* extend the channels */
  130|  1.52k|		ses.channels = (struct Channel**)m_realloc(ses.channels,
  131|  1.52k|				(ses.chansize+CHAN_EXTEND_SIZE)*sizeof(struct Channel*));
  ------------------
  |  |   41|  1.52k|#define CHAN_EXTEND_SIZE 3 /* how many extra slots to add when we need more */
  ------------------
  132|       |
  133|  1.52k|		ses.chansize += CHAN_EXTEND_SIZE;
  ------------------
  |  |   41|  1.52k|#define CHAN_EXTEND_SIZE 3 /* how many extra slots to add when we need more */
  ------------------
  134|       |
  135|       |		/* set the new channels to null */
  136|  6.08k|		for (j = i; j < ses.chansize; j++) {
  ------------------
  |  Branch (136:15): [True: 4.56k, False: 1.52k]
  ------------------
  137|  4.56k|			ses.channels[j] = NULL;
  138|  4.56k|		}
  139|       |
  140|  1.52k|	}
  141|       |	
  142|  7.16k|	newchan = (struct Channel*)m_malloc(sizeof(struct Channel));
  143|  7.16k|	newchan->type = type;
  144|  7.16k|	newchan->index = i;
  145|  7.16k|	newchan->sent_close = newchan->recv_close = 0;
  146|  7.16k|	newchan->sent_eof = newchan->recv_eof = 0;
  147|       |
  148|  7.16k|	newchan->remotechan = remotechan;
  149|  7.16k|	newchan->transwindow = transwindow;
  150|  7.16k|	newchan->transmaxpacket = transmaxpacket;
  151|       |	
  152|  7.16k|	newchan->typedata = NULL;
  153|  7.16k|	newchan->writefd = FD_UNINIT;
  ------------------
  |  |   56|  7.16k|#define FD_UNINIT (-2)
  ------------------
  154|  7.16k|	newchan->readfd = FD_UNINIT;
  ------------------
  |  |   56|  7.16k|#define FD_UNINIT (-2)
  ------------------
  155|  7.16k|	newchan->errfd = FD_CLOSED; /* this isn't always set to start with */
  ------------------
  |  |   57|  7.16k|#define FD_CLOSED (-1)
  ------------------
  156|  7.16k|	newchan->await_open = 0;
  157|       |
  158|  7.16k|	newchan->writebuf = cbuf_new(opts.recv_window);
  159|  7.16k|	newchan->recvwindow = opts.recv_window;
  160|       |
  161|  7.16k|	newchan->extrabuf = NULL; /* The user code can set it up */
  162|  7.16k|	newchan->recvdonelen = 0;
  163|  7.16k|	newchan->recvmaxpacket = RECV_MAX_CHANNEL_DATA_LEN;
  ------------------
  |  |   67|  7.16k|#define RECV_MAX_CHANNEL_DATA_LEN (RECV_MAX_PAYLOAD_LEN-(1+4+4))
  |  |  ------------------
  |  |  |  |  492|  7.16k|#define RECV_MAX_PAYLOAD_LEN 32768
  |  |  ------------------
  ------------------
  164|       |
  165|  7.16k|	newchan->prio = DROPBEAR_PRIO_NORMAL;
  166|       |
  167|  7.16k|	ses.channels[i] = newchan;
  168|  7.16k|	ses.chancount++;
  169|       |
  170|  7.16k|	TRACE(("leave newchannel"))
  171|       |
  172|  7.16k|	return newchan;
  173|  7.16k|}
common-channel.c:send_msg_channel_open_failure:
 1013|  1.15k|		int reason, const char *text, const char *lang) {
 1014|       |
 1015|  1.15k|	TRACE(("enter send_msg_channel_open_failure"))
 1016|  1.15k|	CHECKCLEARTOWRITE();
 1017|       |	
 1018|  1.15k|	buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_OPEN_FAILURE);
  ------------------
  |  |   68|  1.15k|#define SSH_MSG_CHANNEL_OPEN_FAILURE            92
  ------------------
 1019|  1.15k|	buf_putint(ses.writepayload, remotechan);
 1020|  1.15k|	buf_putint(ses.writepayload, reason);
 1021|  1.15k|	buf_putstring(ses.writepayload, text, strlen(text));
 1022|  1.15k|	buf_putstring(ses.writepayload, lang, strlen(lang));
 1023|       |
 1024|  1.15k|	encrypt_packet();
 1025|  1.15k|	TRACE(("leave send_msg_channel_open_failure"))
 1026|  1.15k|}
common-channel.c:send_msg_channel_open_confirmation:
 1032|  6.80k|		unsigned int recvmaxpacket) {
 1033|       |
 1034|  6.80k|	TRACE(("enter send_msg_channel_open_confirmation"))
 1035|  6.80k|	CHECKCLEARTOWRITE();
 1036|       |
 1037|  6.80k|	buf_putbyte(ses.writepayload, SSH_MSG_CHANNEL_OPEN_CONFIRMATION);
  ------------------
  |  |   67|  6.80k|#define SSH_MSG_CHANNEL_OPEN_CONFIRMATION       91 
  ------------------
 1038|  6.80k|	buf_putint(ses.writepayload, channel->remotechan);
 1039|  6.80k|	buf_putint(ses.writepayload, channel->index);
 1040|  6.80k|	buf_putint(ses.writepayload, recvwindow);
 1041|  6.80k|	buf_putint(ses.writepayload, recvmaxpacket);
 1042|       |
 1043|  6.80k|	encrypt_packet();
 1044|  6.80k|	TRACE(("leave send_msg_channel_open_confirmation"))
 1045|  6.80k|}

send_msg_kexinit:
   55|  9.06k|void send_msg_kexinit() {
   56|       |
   57|  9.06k|	CHECKCLEARTOWRITE();
   58|  9.06k|	buf_putbyte(ses.writepayload, SSH_MSG_KEXINIT);
  ------------------
  |  |   36|  9.06k|#define SSH_MSG_KEXINIT                20
  ------------------
   59|       |
   60|       |	/* cookie */
   61|  9.06k|	genrandom(buf_getwriteptr(ses.writepayload, 16), 16);
   62|  9.06k|	buf_incrwritepos(ses.writepayload, 16);
   63|       |
   64|       |	/* kex algos */
   65|  9.06k|	buf_put_algolist(ses.writepayload, sshkex);
   66|       |
   67|       |	/* server_host_key_algorithms */
   68|  9.06k|	buf_put_algolist(ses.writepayload, sigalgs);
   69|       |
   70|       |	/* encryption_algorithms_client_to_server */
   71|  9.06k|	buf_put_algolist(ses.writepayload, sshciphers);
   72|       |
   73|       |	/* encryption_algorithms_server_to_client */
   74|  9.06k|	buf_put_algolist(ses.writepayload, sshciphers);
   75|       |
   76|       |	/* mac_algorithms_client_to_server */
   77|  9.06k|	buf_put_algolist(ses.writepayload, sshhashes);
   78|       |
   79|       |	/* mac_algorithms_server_to_client */
   80|  9.06k|	buf_put_algolist(ses.writepayload, sshhashes);
   81|       |
   82|       |
   83|       |	/* compression_algorithms_client_to_server */
   84|  9.06k|	buf_put_algolist(ses.writepayload, ses.compress_algos);
   85|       |
   86|       |	/* compression_algorithms_server_to_client */
   87|  9.06k|	buf_put_algolist(ses.writepayload, ses.compress_algos);
   88|       |
   89|       |	/* languages_client_to_server */
   90|  9.06k|	buf_putstring(ses.writepayload, "", 0);
   91|       |
   92|       |	/* languages_server_to_client */
   93|  9.06k|	buf_putstring(ses.writepayload, "", 0);
   94|       |
   95|       |	/* first_kex_packet_follows */
   96|  9.06k|	buf_putbyte(ses.writepayload, (ses.send_kex_first_guess != NULL));
   97|       |
   98|       |	/* reserved unit32 */
   99|  9.06k|	buf_putint(ses.writepayload, 0);
  100|       |
  101|       |	/* set up transmitted kex packet buffer for hashing. 
  102|       |	 * This is freed after the end of the kex */
  103|  9.06k|	ses.transkexinit = buf_newcopy(ses.writepayload);
  104|       |
  105|  9.06k|	encrypt_packet();
  106|  9.06k|	ses.dataallowed = 0; /* don't send other packets during kex */
  107|       |
  108|  9.06k|	ses.kexstate.sentkexinit = 1;
  109|       |
  110|  9.06k|	ses.newkeys = (struct key_context*)m_malloc(sizeof(struct key_context));
  111|       |
  112|  9.06k|	if (ses.send_kex_first_guess) {
  ------------------
  |  Branch (112:6): [True: 0, False: 9.06k]
  ------------------
  113|      0|		ses.newkeys->algo_kex = first_usable_algo(sshkex)->data;
  114|      0|		ses.newkeys->algo_signature = first_usable_algo(sigalgs)->val;
  115|      0|		ses.newkeys->algo_hostkey = signkey_type_from_signature(ses.newkeys->algo_signature);
  116|      0|		ses.send_kex_first_guess();
  117|      0|	}
  118|       |
  119|  9.06k|	TRACE(("DATAALLOWED=0"))
  120|  9.06k|	TRACE(("-> KEXINIT"))
  121|       |
  122|  9.06k|}
send_msg_newkeys:
  166|  8.68k|void send_msg_newkeys() {
  167|       |
  168|  8.68k|	TRACE(("enter send_msg_newkeys"))
  169|       |
  170|       |	/* generate the kexinit request */
  171|  8.68k|	CHECKCLEARTOWRITE();
  172|  8.68k|	buf_putbyte(ses.writepayload, SSH_MSG_NEWKEYS);
  ------------------
  |  |   37|  8.68k|#define SSH_MSG_NEWKEYS                21
  ------------------
  173|  8.68k|	encrypt_packet();
  174|       |
  175|       |	
  176|       |	/* set up our state */
  177|  8.68k|	ses.kexstate.sentnewkeys = 1;
  178|  8.68k|	if (ses.kexstate.donefirstkex) {
  ------------------
  |  Branch (178:6): [True: 7.30k, False: 1.37k]
  ------------------
  179|  7.30k|		ses.kexstate.donesecondkex = 1;
  180|  7.30k|	}
  181|  8.68k|	ses.kexstate.donefirstkex = 1;
  182|  8.68k|	ses.dataallowed = 1; /* we can send other packets again now */
  183|  8.68k|	gen_new_keys();
  184|  8.68k|	switch_keys();
  185|       |
  186|  8.68k|	TRACE(("leave send_msg_newkeys"))
  187|  8.68k|}
recv_msg_newkeys:
  190|  8.46k|void recv_msg_newkeys() {
  191|       |
  192|  8.46k|	TRACE(("enter recv_msg_newkeys"))
  193|       |
  194|  8.46k|	ses.kexstate.recvnewkeys = 1;
  195|  8.46k|	switch_keys();
  196|       |	
  197|  8.46k|	TRACE(("leave recv_msg_newkeys"))
  198|  8.46k|}
kexfirstinitialise:
  202|  1.55k|void kexfirstinitialise() {
  203|  1.55k|#ifdef DISABLE_ZLIB
  204|  1.55k|	ses.compress_algos = ssh_nocompress;
  205|       |#else
  206|       |	switch (opts.compress_mode)
  207|       |	{
  208|       |		case DROPBEAR_COMPRESS_DELAYED:
  209|       |			ses.compress_algos = ssh_delaycompress;
  210|       |			break;
  211|       |
  212|       |		case DROPBEAR_COMPRESS_ON:
  213|       |			ses.compress_algos = ssh_compress;
  214|       |			break;
  215|       |
  216|       |		case DROPBEAR_COMPRESS_OFF:
  217|       |			ses.compress_algos = ssh_nocompress;
  218|       |			break;
  219|       |	}
  220|       |#endif
  221|  1.55k|	kexinitialise();
  222|  1.55k|}
recv_msg_kexinit:
  474|  8.99k|void recv_msg_kexinit() {
  475|       |	
  476|  8.99k|	unsigned int kexhashbuf_len = 0;
  477|  8.99k|	unsigned int remote_ident_len = 0;
  478|  8.99k|	unsigned int local_ident_len = 0;
  479|       |
  480|  8.99k|	TRACE(("<- KEXINIT"))
  481|  8.99k|	TRACE(("enter recv_msg_kexinit"))
  482|       |	
  483|  8.99k|	if (!ses.kexstate.sentkexinit) {
  ------------------
  |  Branch (483:6): [True: 7.50k, False: 1.49k]
  ------------------
  484|       |		/* we need to send a kex packet */
  485|  7.50k|		send_msg_kexinit();
  486|  7.50k|		TRACE(("continue recv_msg_kexinit: sent kexinit"))
  487|  7.50k|	}
  488|       |
  489|       |	/* "Once a party has sent a SSH_MSG_KEXINIT message ...
  490|       |	further SSH_MSG_KEXINIT messages MUST NOT be sent" */
  491|  8.99k|	if (ses.kexstate.recvkexinit) {
  ------------------
  |  Branch (491:6): [True: 0, False: 8.99k]
  ------------------
  492|      0|		dropbear_exit("Unexpected KEXINIT");
  493|      0|	}
  494|       |
  495|       |	/* start the kex hash */
  496|  8.99k|	local_ident_len = strlen(LOCAL_IDENT);
  ------------------
  |  |   10|  8.99k|#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
  |  |  ------------------
  |  |  |  |    7|  8.99k|#define DROPBEAR_VERSION "2022.83"
  |  |  ------------------
  ------------------
  497|  8.99k|	remote_ident_len = strlen(ses.remoteident);
  498|       |
  499|  8.99k|	kexhashbuf_len = local_ident_len + remote_ident_len
  500|  8.99k|		+ ses.transkexinit->len + ses.payload->len
  501|  8.99k|		+ KEXHASHBUF_MAX_INTS;
  ------------------
  |  |  240|  8.99k|#define KEXHASHBUF_MAX_INTS (1700 + 130 + 130 + 130)
  ------------------
  502|       |
  503|  8.99k|	ses.kexhashbuf = buf_new(kexhashbuf_len);
  504|       |
  505|  8.99k|	if (IS_DROPBEAR_CLIENT) {
  ------------------
  |  |  320|  8.99k|#define IS_DROPBEAR_CLIENT (ses.isserver == 0)
  |  |  ------------------
  |  |  |  Branch (320:28): [True: 0, False: 8.99k]
  |  |  ------------------
  ------------------
  506|       |
  507|       |		/* read the peer's choice of algos */
  508|      0|		read_kex_algos();
  509|       |
  510|       |		/* V_C, the client's version string (CR and NL excluded) */
  511|      0|		buf_putstring(ses.kexhashbuf, LOCAL_IDENT, local_ident_len);
  ------------------
  |  |   10|      0|#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
  |  |  ------------------
  |  |  |  |    7|      0|#define DROPBEAR_VERSION "2022.83"
  |  |  ------------------
  ------------------
  512|       |		/* V_S, the server's version string (CR and NL excluded) */
  513|      0|		buf_putstring(ses.kexhashbuf, ses.remoteident, remote_ident_len);
  514|       |
  515|       |		/* I_C, the payload of the client's SSH_MSG_KEXINIT */
  516|      0|		buf_putstring(ses.kexhashbuf,
  517|      0|			(const char*)ses.transkexinit->data, ses.transkexinit->len);
  518|       |		/* I_S, the payload of the server's SSH_MSG_KEXINIT */
  519|      0|		buf_setpos(ses.payload, ses.payload_beginning);
  520|      0|		buf_putstring(ses.kexhashbuf,
  521|      0|			(const char*)buf_getptr(ses.payload, ses.payload->len-ses.payload->pos),
  522|      0|			ses.payload->len-ses.payload->pos);
  523|      0|		ses.requirenext = SSH_MSG_KEXDH_REPLY;
  ------------------
  |  |   39|      0|#define SSH_MSG_KEXDH_REPLY            31
  ------------------
  524|  8.99k|	} else {
  525|       |		/* SERVER */
  526|       |
  527|       |		/* read the peer's choice of algos */
  528|  8.99k|		read_kex_algos();
  529|       |		/* V_C, the client's version string (CR and NL excluded) */
  530|  8.99k|		buf_putstring(ses.kexhashbuf, ses.remoteident, remote_ident_len);
  531|       |		/* V_S, the server's version string (CR and NL excluded) */
  532|  8.99k|		buf_putstring(ses.kexhashbuf, LOCAL_IDENT, local_ident_len);
  ------------------
  |  |   10|  8.99k|#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
  |  |  ------------------
  |  |  |  |    7|  8.99k|#define DROPBEAR_VERSION "2022.83"
  |  |  ------------------
  ------------------
  533|       |
  534|       |		/* I_C, the payload of the client's SSH_MSG_KEXINIT */
  535|  8.99k|		buf_setpos(ses.payload, ses.payload_beginning);
  536|  8.99k|		buf_putstring(ses.kexhashbuf, 
  537|  8.99k|			(const char*)buf_getptr(ses.payload, ses.payload->len-ses.payload->pos),
  538|  8.99k|			ses.payload->len-ses.payload->pos);
  539|       |
  540|       |		/* I_S, the payload of the server's SSH_MSG_KEXINIT */
  541|  8.99k|		buf_putstring(ses.kexhashbuf,
  542|  8.99k|			(const char*)ses.transkexinit->data, ses.transkexinit->len);
  543|       |
  544|  8.99k|		ses.requirenext = SSH_MSG_KEXDH_INIT;
  ------------------
  |  |   38|  8.99k|#define SSH_MSG_KEXDH_INIT             30
  ------------------
  545|  8.99k|	}
  546|       |
  547|  8.99k|	buf_free(ses.transkexinit);
  548|  8.99k|	ses.transkexinit = NULL;
  549|       |	/* the rest of ses.kexhashbuf will be done after DH exchange */
  550|       |
  551|  8.99k|	ses.kexstate.recvkexinit = 1;
  552|       |
  553|  8.99k|	TRACE(("leave recv_msg_kexinit"))
  554|  8.99k|}
finish_kexhashbuf:
  786|  8.68k|void finish_kexhashbuf(void) {
  787|  8.68k|	hash_state hs;
  788|  8.68k|	const struct ltc_hash_descriptor *hash_desc = ses.newkeys->algo_kex->hash_desc;
  789|       |
  790|  8.68k|	hash_desc->init(&hs);
  791|  8.68k|	buf_setpos(ses.kexhashbuf, 0);
  792|  8.68k|	hash_desc->process(&hs, buf_getptr(ses.kexhashbuf, ses.kexhashbuf->len),
  793|  8.68k|			ses.kexhashbuf->len);
  794|  8.68k|	ses.hash = buf_new(hash_desc->hashsize);
  795|  8.68k|	hash_desc->done(&hs, buf_getwriteptr(ses.hash, hash_desc->hashsize));
  796|  8.68k|	buf_setlen(ses.hash, hash_desc->hashsize);
  797|       |
  798|       |#if defined(DEBUG_KEXHASH) && DEBUG_TRACE
  799|       |	if (!debug_trace) {
  800|       |		printhex("kexhashbuf", ses.kexhashbuf->data, ses.kexhashbuf->len);
  801|       |		printhex("kexhash", ses.hash->data, ses.hash->len);
  802|       |	}
  803|       |#endif
  804|       |
  805|  8.68k|	buf_burn_free(ses.kexhashbuf);
  806|  8.68k|	m_burn(&hs, sizeof(hash_state));
  807|  8.68k|	ses.kexhashbuf = NULL;
  808|       |	
  809|       |	/* first time around, we set the session_id to H */
  810|  8.68k|	if (ses.session_id == NULL) {
  ------------------
  |  Branch (810:6): [True: 1.37k, False: 7.30k]
  ------------------
  811|       |		/* create the session_id, this never needs freeing */
  812|  1.37k|		ses.session_id = buf_newcopy(ses.hash);
  813|  1.37k|	}
  814|  8.68k|}
common-kex.c:switch_keys:
  124|  17.1k|static void switch_keys() {
  125|  17.1k|	TRACE2(("enter switch_keys"))
  126|  17.1k|	if (!(ses.kexstate.sentkexinit && ses.kexstate.recvkexinit)) {
  ------------------
  |  Branch (126:8): [True: 17.1k, False: 9]
  |  Branch (126:36): [True: 17.1k, False: 0]
  ------------------
  127|      9|		dropbear_exit("Unexpected newkeys message");
  128|      9|	}
  129|       |
  130|  17.1k|	if (!ses.keys) {
  ------------------
  |  Branch (130:6): [True: 0, False: 17.1k]
  ------------------
  131|      0|		ses.keys = m_malloc(sizeof(*ses.newkeys));
  132|      0|	}
  133|  17.1k|	if (ses.kexstate.recvnewkeys && ses.newkeys->recv.valid) {
  ------------------
  |  Branch (133:6): [True: 8.45k, False: 8.68k]
  |  Branch (133:34): [True: 8.45k, False: 0]
  ------------------
  134|  8.45k|		TRACE(("switch_keys recv"))
  135|       |#ifndef DISABLE_ZLIB
  136|       |		gen_new_zstream_recv();
  137|       |#endif
  138|  8.45k|		ses.keys->recv = ses.newkeys->recv;
  139|  8.45k|		m_burn(&ses.newkeys->recv, sizeof(ses.newkeys->recv));
  140|  8.45k|		ses.newkeys->recv.valid = 0;
  141|  8.45k|	}
  142|  17.1k|	if (ses.kexstate.sentnewkeys && ses.newkeys->trans.valid) {
  ------------------
  |  Branch (142:6): [True: 17.1k, False: 0]
  |  Branch (142:34): [True: 8.68k, False: 8.45k]
  ------------------
  143|  8.68k|		TRACE(("switch_keys trans"))
  144|       |#ifndef DISABLE_ZLIB
  145|       |		gen_new_zstream_trans();
  146|       |#endif
  147|  8.68k|		ses.keys->trans = ses.newkeys->trans;
  148|  8.68k|		m_burn(&ses.newkeys->trans, sizeof(ses.newkeys->trans));
  149|  8.68k|		ses.newkeys->trans.valid = 0;
  150|  8.68k|	}
  151|  17.1k|	if (ses.kexstate.sentnewkeys && ses.kexstate.recvnewkeys)
  ------------------
  |  Branch (151:6): [True: 17.1k, False: 0]
  |  Branch (151:34): [True: 8.45k, False: 8.68k]
  ------------------
  152|  8.45k|	{
  153|  8.45k|		TRACE(("switch_keys done"))
  154|  8.45k|		ses.keys->algo_kex = ses.newkeys->algo_kex;
  155|  8.45k|		ses.keys->algo_hostkey = ses.newkeys->algo_hostkey;
  156|  8.45k|		ses.keys->algo_signature = ses.newkeys->algo_signature;
  157|  8.45k|		ses.keys->allow_compress = 0;
  158|  8.45k|		m_free(ses.newkeys);
  ------------------
  |  |   24|  8.45k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  159|  8.45k|		ses.newkeys = NULL;
  160|  8.45k|		kexinitialise();
  161|  8.45k|	}
  162|  17.1k|	TRACE2(("leave switch_keys"))
  163|  17.1k|}
common-kex.c:kexinitialise:
  225|  10.0k|static void kexinitialise() {
  226|       |
  227|  10.0k|	TRACE(("kexinitialise()"))
  228|       |
  229|       |	/* sent/recv'd MSG_KEXINIT */
  230|  10.0k|	ses.kexstate.sentkexinit = 0;
  231|  10.0k|	ses.kexstate.recvkexinit = 0;
  232|       |
  233|       |	/* sent/recv'd MSG_NEWKEYS */
  234|  10.0k|	ses.kexstate.recvnewkeys = 0;
  235|  10.0k|	ses.kexstate.sentnewkeys = 0;
  236|       |
  237|       |	/* first_packet_follows */
  238|  10.0k|	ses.kexstate.them_firstfollows = 0;
  239|       |
  240|  10.0k|	ses.kexstate.datatrans = 0;
  241|  10.0k|	ses.kexstate.datarecv = 0;
  242|       |
  243|  10.0k|	ses.kexstate.our_first_follows_matches = 0;
  244|       |
  245|  10.0k|	ses.kexstate.lastkextime = monotonic_now();
  246|       |
  247|  10.0k|}
common-kex.c:gen_new_keys:
  288|  8.68k|static void gen_new_keys() {
  289|       |
  290|  8.68k|	unsigned char C2S_IV[MAX_IV_LEN];
  291|  8.68k|	unsigned char C2S_key[MAX_KEY_LEN];
  292|  8.68k|	unsigned char S2C_IV[MAX_IV_LEN];
  293|  8.68k|	unsigned char S2C_key[MAX_KEY_LEN];
  294|       |	/* unsigned char key[MAX_KEY_LEN]; */
  295|  8.68k|	unsigned char *trans_IV, *trans_key, *recv_IV, *recv_key;
  296|       |
  297|  8.68k|	hash_state hs;
  298|  8.68k|	const struct ltc_hash_descriptor *hash_desc = ses.newkeys->algo_kex->hash_desc;
  299|  8.68k|	char mactransletter, macrecvletter; /* Client or server specific */
  300|       |
  301|  8.68k|	TRACE(("enter gen_new_keys"))
  302|       |	/* the dh_K and hash are the start of all hashes, we make use of that */
  303|       |
  304|  8.68k|	hash_desc->init(&hs);
  305|  8.68k|	hash_process_mp(hash_desc, &hs, ses.dh_K);
  306|  8.68k|	mp_clear(ses.dh_K);
  307|  8.68k|	m_free(ses.dh_K);
  ------------------
  |  |   24|  8.68k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  308|  8.68k|	hash_desc->process(&hs, ses.hash->data, ses.hash->len);
  309|  8.68k|	buf_burn_free(ses.hash);
  310|  8.68k|	ses.hash = NULL;
  311|       |
  312|  8.68k|	if (IS_DROPBEAR_CLIENT) {
  ------------------
  |  |  320|  8.68k|#define IS_DROPBEAR_CLIENT (ses.isserver == 0)
  |  |  ------------------
  |  |  |  Branch (320:28): [True: 0, False: 8.68k]
  |  |  ------------------
  ------------------
  313|      0|		trans_IV	= C2S_IV;
  314|      0|		recv_IV		= S2C_IV;
  315|      0|		trans_key	= C2S_key;
  316|      0|		recv_key	= S2C_key;
  317|      0|		mactransletter = 'E';
  318|      0|		macrecvletter = 'F';
  319|  8.68k|	} else {
  320|  8.68k|		trans_IV	= S2C_IV;
  321|  8.68k|		recv_IV		= C2S_IV;
  322|  8.68k|		trans_key	= S2C_key;
  323|  8.68k|		recv_key	= C2S_key;
  324|  8.68k|		mactransletter = 'F';
  325|  8.68k|		macrecvletter = 'E';
  326|  8.68k|	}
  327|       |
  328|  8.68k|	hashkeys(C2S_IV, sizeof(C2S_IV), &hs, 'A');
  329|  8.68k|	hashkeys(S2C_IV, sizeof(S2C_IV), &hs, 'B');
  330|  8.68k|	hashkeys(C2S_key, sizeof(C2S_key), &hs, 'C');
  331|  8.68k|	hashkeys(S2C_key, sizeof(S2C_key), &hs, 'D');
  332|       |
  333|  8.68k|	if (ses.newkeys->recv.algo_crypt->cipherdesc != NULL) {
  ------------------
  |  Branch (333:6): [True: 8.68k, False: 0]
  ------------------
  334|  8.68k|		int recv_cipher = -1;
  335|  8.68k|		if (ses.newkeys->recv.algo_crypt->cipherdesc->name != NULL) {
  ------------------
  |  Branch (335:7): [True: 3.26k, False: 5.41k]
  ------------------
  336|  3.26k|			recv_cipher = find_cipher(ses.newkeys->recv.algo_crypt->cipherdesc->name);
  337|  3.26k|			if (recv_cipher < 0) {
  ------------------
  |  Branch (337:8): [True: 0, False: 3.26k]
  ------------------
  338|      0|				dropbear_exit("Crypto error");
  339|      0|			}
  340|  3.26k|		}
  341|  8.68k|		if (ses.newkeys->recv.crypt_mode->start(recv_cipher, 
  ------------------
  |  Branch (341:7): [True: 0, False: 8.68k]
  ------------------
  342|  8.68k|				recv_IV, recv_key, 
  343|  8.68k|				ses.newkeys->recv.algo_crypt->keysize, 0, 
  344|  8.68k|				&ses.newkeys->recv.cipher_state) != CRYPT_OK) {
  345|      0|			dropbear_exit("Crypto error");
  346|      0|		}
  347|  8.68k|	}
  348|       |
  349|  8.68k|	if (ses.newkeys->trans.algo_crypt->cipherdesc != NULL) {
  ------------------
  |  Branch (349:6): [True: 8.68k, False: 0]
  ------------------
  350|  8.68k|		int trans_cipher = -1;
  351|  8.68k|		if (ses.newkeys->trans.algo_crypt->cipherdesc->name != NULL) {
  ------------------
  |  Branch (351:7): [True: 3.61k, False: 5.06k]
  ------------------
  352|  3.61k|			trans_cipher = find_cipher(ses.newkeys->trans.algo_crypt->cipherdesc->name);
  353|  3.61k|			if (trans_cipher < 0) {
  ------------------
  |  Branch (353:8): [True: 0, False: 3.61k]
  ------------------
  354|      0|				dropbear_exit("Crypto error");
  355|      0|			}
  356|  3.61k|		}
  357|  8.68k|		if (ses.newkeys->trans.crypt_mode->start(trans_cipher, 
  ------------------
  |  Branch (357:7): [True: 0, False: 8.68k]
  ------------------
  358|  8.68k|				trans_IV, trans_key, 
  359|  8.68k|				ses.newkeys->trans.algo_crypt->keysize, 0, 
  360|  8.68k|				&ses.newkeys->trans.cipher_state) != CRYPT_OK) {
  361|      0|			dropbear_exit("Crypto error");
  362|      0|		}
  363|  8.68k|	}
  364|       |
  365|  8.68k|	if (ses.newkeys->trans.algo_mac->hash_desc != NULL) {
  ------------------
  |  Branch (365:6): [True: 3.61k, False: 5.06k]
  ------------------
  366|  3.61k|		hashkeys(ses.newkeys->trans.mackey, 
  367|  3.61k|				ses.newkeys->trans.algo_mac->keysize, &hs, mactransletter);
  368|  3.61k|		ses.newkeys->trans.hash_index = find_hash(ses.newkeys->trans.algo_mac->hash_desc->name);
  369|  3.61k|	}
  370|       |
  371|  8.68k|	if (ses.newkeys->recv.algo_mac->hash_desc != NULL) {
  ------------------
  |  Branch (371:6): [True: 0, False: 8.68k]
  ------------------
  372|      0|		hashkeys(ses.newkeys->recv.mackey, 
  373|      0|				ses.newkeys->recv.algo_mac->keysize, &hs, macrecvletter);
  374|      0|		ses.newkeys->recv.hash_index = find_hash(ses.newkeys->recv.algo_mac->hash_desc->name);
  375|      0|	}
  376|       |
  377|       |	/* Ready to switch over */
  378|  8.68k|	ses.newkeys->trans.valid = 1;
  379|  8.68k|	ses.newkeys->recv.valid = 1;
  380|       |
  381|  8.68k|	m_burn(C2S_IV, sizeof(C2S_IV));
  382|  8.68k|	m_burn(C2S_key, sizeof(C2S_key));
  383|  8.68k|	m_burn(S2C_IV, sizeof(S2C_IV));
  384|  8.68k|	m_burn(S2C_key, sizeof(S2C_key));
  385|  8.68k|	m_burn(&hs, sizeof(hash_state));
  386|       |
  387|  8.68k|	TRACE(("leave gen_new_keys"))
  388|  8.68k|}
common-kex.c:hashkeys:
  256|  38.3k|		const hash_state * hs, const unsigned char X) {
  257|       |
  258|  38.3k|	const struct ltc_hash_descriptor *hash_desc = ses.newkeys->algo_kex->hash_desc;
  259|  38.3k|	hash_state hs2;
  260|  38.3k|	unsigned int offset;
  261|  38.3k|	unsigned char tmpout[MAX_HASH_SIZE];
  262|       |
  263|  38.3k|	memcpy(&hs2, hs, sizeof(hash_state));
  264|  38.3k|	hash_desc->process(&hs2, &X, 1);
  265|  38.3k|	hash_desc->process(&hs2, ses.session_id->data, ses.session_id->len);
  266|  38.3k|	hash_desc->done(&hs2, tmpout);
  267|  38.3k|	memcpy(out, tmpout, MIN(hash_desc->hashsize, outlen));
  268|  38.3k|	for (offset = hash_desc->hashsize; 
  269|  64.3k|			offset < outlen; 
  ------------------
  |  Branch (269:4): [True: 26.0k, False: 38.3k]
  ------------------
  270|  38.3k|			offset += hash_desc->hashsize)
  271|  26.0k|	{
  272|       |		/* need to extend */
  273|  26.0k|		memcpy(&hs2, hs, sizeof(hash_state));
  274|  26.0k|		hash_desc->process(&hs2, out, offset);
  275|  26.0k|		hash_desc->done(&hs2, tmpout);
  276|  26.0k|		memcpy(&out[offset], tmpout, MIN(outlen - offset, hash_desc->hashsize));
  277|  26.0k|	}
  278|  38.3k|	m_burn(&hs2, sizeof(hash_state));
  279|  38.3k|}
common-kex.c:read_kex_algos:
  818|  8.99k|static void read_kex_algos() {
  819|       |
  820|       |	/* for asymmetry */
  821|  8.99k|	algo_type * c2s_hash_algo = NULL;
  822|  8.99k|	algo_type * s2c_hash_algo = NULL;
  823|  8.99k|	algo_type * c2s_cipher_algo = NULL;
  824|  8.99k|	algo_type * s2c_cipher_algo = NULL;
  825|  8.99k|	algo_type * c2s_comp_algo = NULL;
  826|  8.99k|	algo_type * s2c_comp_algo = NULL;
  827|       |	/* the generic one */
  828|  8.99k|	algo_type * algo = NULL;
  829|       |
  830|       |	/* which algo couldn't match */
  831|  8.99k|	char * erralgo = NULL;
  832|       |
  833|  8.99k|	int goodguess = 0;
  834|  8.99k|	int allgood = 1; /* we AND this with each goodguess and see if its still
  835|       |						true after */
  836|  8.99k|	int kexguess2 = 0;
  837|       |
  838|  8.99k|	buf_incrpos(ses.payload, 16); /* start after the cookie */
  839|       |
  840|  8.99k|	memset(ses.newkeys, 0x0, sizeof(*ses.newkeys));
  841|       |
  842|       |	/* kex_algorithms */
  843|  8.99k|#if DROPBEAR_KEXGUESS2
  844|  8.99k|	if (buf_has_algo(ses.payload, KEXGUESS2_ALGO_NAME) == DROPBEAR_SUCCESS) {
  ------------------
  |  |  128|  8.99k|#define KEXGUESS2_ALGO_NAME "kexguess2@matt.ucc.asn.au"
  ------------------
              	if (buf_has_algo(ses.payload, KEXGUESS2_ALGO_NAME) == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|  8.99k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (844:6): [True: 120, False: 8.87k]
  ------------------
  845|    120|		kexguess2 = 1;
  846|    120|	}
  847|  8.99k|#endif
  848|       |
  849|  8.99k|#if DROPBEAR_EXT_INFO
  850|       |	/* Determine if SSH_MSG_EXT_INFO messages should be sent.
  851|       |	Should be done for the first key exchange. Only required on server side
  852|       |    for server-sig-algs */
  853|  8.99k|	if (IS_DROPBEAR_SERVER) {
  ------------------
  |  |  319|  8.99k|#define IS_DROPBEAR_SERVER (ses.isserver == 1)
  |  |  ------------------
  |  |  |  Branch (319:28): [True: 8.98k, False: 13]
  |  |  ------------------
  ------------------
  854|  8.98k|		if (!ses.kexstate.donefirstkex) {
  ------------------
  |  Branch (854:7): [True: 1.49k, False: 7.49k]
  ------------------
  855|  1.49k|			if (buf_has_algo(ses.payload, SSH_EXT_INFO_C) == DROPBEAR_SUCCESS) {
  ------------------
  |  |  100|  1.49k|#define SSH_EXT_INFO_C "ext-info-c"
  ------------------
              			if (buf_has_algo(ses.payload, SSH_EXT_INFO_C) == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|  1.49k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (855:8): [True: 9, False: 1.48k]
  ------------------
  856|      9|				ses.allow_ext_info = 1;
  857|      9|			}
  858|  1.49k|		}
  859|  8.98k|	}
  860|  8.99k|#endif
  861|       |
  862|  8.99k|	algo = buf_match_algo(ses.payload, sshkex, kexguess2, &goodguess);
  863|  8.99k|	allgood &= goodguess;
  864|  8.99k|	if (algo == NULL || algo->data == NULL) {
  ------------------
  |  Branch (864:6): [True: 41, False: 8.95k]
  |  Branch (864:22): [True: 6, False: 8.95k]
  ------------------
  865|       |		/* kexguess2, ext-info-c, ext-info-s should not match negotiation */
  866|     34|		erralgo = "kex";
  867|     34|		goto error;
  868|     34|	}
  869|  8.96k|	TRACE(("kexguess2 %d", kexguess2))
  870|  8.96k|	DEBUG3(("kex algo %s", algo->name))
  871|  8.96k|	ses.newkeys->algo_kex = algo->data;
  872|       |
  873|       |	/* server_host_key_algorithms */
  874|  8.96k|	algo = buf_match_algo(ses.payload, sigalgs, kexguess2, &goodguess);
  875|  8.96k|	allgood &= goodguess;
  876|  8.96k|	if (algo == NULL) {
  ------------------
  |  Branch (876:6): [True: 7, False: 8.95k]
  ------------------
  877|      7|		erralgo = "hostkey";
  878|      7|		goto error;
  879|      7|	}
  880|  8.95k|	DEBUG2(("hostkey algo %s", algo->name))
  881|  8.95k|	ses.newkeys->algo_signature = algo->val;
  882|  8.95k|	ses.newkeys->algo_hostkey = signkey_type_from_signature(ses.newkeys->algo_signature);
  883|       |
  884|       |	/* encryption_algorithms_client_to_server */
  885|  8.95k|	c2s_cipher_algo = buf_match_algo(ses.payload, sshciphers, 0, NULL);
  886|  8.95k|	if (c2s_cipher_algo == NULL) {
  ------------------
  |  Branch (886:6): [True: 16, False: 8.94k]
  ------------------
  887|     16|		erralgo = "enc c->s";
  888|     16|		goto error;
  889|     16|	}
  890|  8.94k|	DEBUG2(("enc  c2s is %s", c2s_cipher_algo->name))
  891|       |
  892|       |	/* encryption_algorithms_server_to_client */
  893|  8.94k|	s2c_cipher_algo = buf_match_algo(ses.payload, sshciphers, 0, NULL);
  894|  8.94k|	if (s2c_cipher_algo == NULL) {
  ------------------
  |  Branch (894:6): [True: 4, False: 8.93k]
  ------------------
  895|      4|		erralgo = "enc s->c";
  896|      4|		goto error;
  897|      4|	}
  898|  8.93k|	DEBUG2(("enc  s2c is %s", s2c_cipher_algo->name))
  899|       |
  900|       |	/* mac_algorithms_client_to_server */
  901|  8.93k|	c2s_hash_algo = buf_match_algo(ses.payload, sshhashes, 0, NULL);
  902|  8.93k|#if DROPBEAR_AEAD_MODE
  903|  8.93k|	if (((struct dropbear_cipher_mode*)c2s_cipher_algo->mode)->aead_crypt != NULL) {
  ------------------
  |  Branch (903:6): [True: 5.49k, False: 3.44k]
  ------------------
  904|  5.49k|		c2s_hash_algo = NULL;
  905|  5.49k|	} else
  906|  3.44k|#endif
  907|  3.44k|	if (c2s_hash_algo == NULL) {
  ------------------
  |  Branch (907:6): [True: 10, False: 3.43k]
  ------------------
  908|     10|		erralgo = "mac c->s";
  909|     10|		goto error;
  910|     10|	}
  911|  8.92k|	DEBUG2(("hmac c2s is %s", c2s_hash_algo ? c2s_hash_algo->name : "<implicit>"))
  912|       |
  913|       |	/* mac_algorithms_server_to_client */
  914|  8.92k|	s2c_hash_algo = buf_match_algo(ses.payload, sshhashes, 0, NULL);
  915|  8.92k|#if DROPBEAR_AEAD_MODE
  916|  8.92k|	if (((struct dropbear_cipher_mode*)s2c_cipher_algo->mode)->aead_crypt != NULL) {
  ------------------
  |  Branch (916:6): [True: 5.12k, False: 3.80k]
  ------------------
  917|  5.12k|		s2c_hash_algo = NULL;
  918|  5.12k|	} else
  919|  3.80k|#endif
  920|  3.80k|	if (s2c_hash_algo == NULL) {
  ------------------
  |  Branch (920:6): [True: 8, False: 3.80k]
  ------------------
  921|      8|		erralgo = "mac s->c";
  922|      8|		goto error;
  923|      8|	}
  924|  8.92k|	DEBUG2(("hmac s2c is %s", s2c_hash_algo ? s2c_hash_algo->name : "<implicit>"))
  925|       |
  926|       |	/* compression_algorithms_client_to_server */
  927|  8.92k|	c2s_comp_algo = buf_match_algo(ses.payload, ses.compress_algos, 0, NULL);
  928|  8.92k|	if (c2s_comp_algo == NULL) {
  ------------------
  |  Branch (928:6): [True: 5, False: 8.91k]
  ------------------
  929|      5|		erralgo = "comp c->s";
  930|      5|		goto error;
  931|      5|	}
  932|  8.91k|	DEBUG2(("comp c2s is %s", c2s_comp_algo->name))
  933|       |
  934|       |	/* compression_algorithms_server_to_client */
  935|  8.91k|	s2c_comp_algo = buf_match_algo(ses.payload, ses.compress_algos, 0, NULL);
  936|  8.91k|	if (s2c_comp_algo == NULL) {
  ------------------
  |  Branch (936:6): [True: 1, False: 8.91k]
  ------------------
  937|      1|		erralgo = "comp s->c";
  938|      1|		goto error;
  939|      1|	}
  940|  8.91k|	DEBUG2(("comp s2c is %s", s2c_comp_algo->name))
  941|       |
  942|       |	/* languages_client_to_server */
  943|  8.91k|	buf_eatstring(ses.payload);
  944|       |
  945|       |	/* languages_server_to_client */
  946|  8.91k|	buf_eatstring(ses.payload);
  947|       |
  948|       |	/* their first_kex_packet_follows */
  949|  8.91k|	if (buf_getbool(ses.payload)) {
  ------------------
  |  Branch (949:6): [True: 873, False: 8.04k]
  ------------------
  950|    873|		TRACE(("them kex firstfollows. allgood %d", allgood))
  951|    873|		ses.kexstate.them_firstfollows = 1;
  952|       |		/* if the guess wasn't good, we ignore the packet sent */
  953|    873|		if (!allgood) {
  ------------------
  |  Branch (953:7): [True: 159, False: 714]
  ------------------
  954|    159|			ses.ignorenext = 1;
  955|    159|		}
  956|    873|	}
  957|       |
  958|       |	/* Handle the asymmetry */
  959|  8.91k|	if (IS_DROPBEAR_CLIENT) {
  ------------------
  |  |  320|  8.91k|#define IS_DROPBEAR_CLIENT (ses.isserver == 0)
  |  |  ------------------
  |  |  |  Branch (320:28): [True: 0, False: 8.91k]
  |  |  ------------------
  ------------------
  960|      0|		ses.newkeys->recv.algo_crypt = 
  961|      0|			(struct dropbear_cipher*)s2c_cipher_algo->data;
  962|      0|		ses.newkeys->trans.algo_crypt = 
  963|      0|			(struct dropbear_cipher*)c2s_cipher_algo->data;
  964|      0|		ses.newkeys->recv.crypt_mode = 
  965|      0|			(struct dropbear_cipher_mode*)s2c_cipher_algo->mode;
  966|      0|		ses.newkeys->trans.crypt_mode =
  967|      0|			(struct dropbear_cipher_mode*)c2s_cipher_algo->mode;
  968|      0|		ses.newkeys->recv.algo_mac = 
  969|      0|#if DROPBEAR_AEAD_MODE
  970|      0|			s2c_hash_algo == NULL ? ses.newkeys->recv.crypt_mode->aead_mac :
  ------------------
  |  Branch (970:4): [True: 0, False: 0]
  ------------------
  971|      0|#endif
  972|      0|			(struct dropbear_hash*)s2c_hash_algo->data;
  973|      0|		ses.newkeys->trans.algo_mac = 
  974|      0|#if DROPBEAR_AEAD_MODE
  975|      0|			c2s_hash_algo == NULL ? ses.newkeys->trans.crypt_mode->aead_mac :
  ------------------
  |  Branch (975:4): [True: 0, False: 0]
  ------------------
  976|      0|#endif
  977|      0|			(struct dropbear_hash*)c2s_hash_algo->data;
  978|      0|		ses.newkeys->recv.algo_comp = s2c_comp_algo->val;
  979|      0|		ses.newkeys->trans.algo_comp = c2s_comp_algo->val;
  980|  8.91k|	} else {
  981|       |		/* SERVER */
  982|  8.91k|		ses.newkeys->recv.algo_crypt = 
  983|  8.91k|			(struct dropbear_cipher*)c2s_cipher_algo->data;
  984|  8.91k|		ses.newkeys->trans.algo_crypt = 
  985|  8.91k|			(struct dropbear_cipher*)s2c_cipher_algo->data;
  986|  8.91k|		ses.newkeys->recv.crypt_mode =
  987|  8.91k|			(struct dropbear_cipher_mode*)c2s_cipher_algo->mode;
  988|  8.91k|		ses.newkeys->trans.crypt_mode =
  989|  8.91k|			(struct dropbear_cipher_mode*)s2c_cipher_algo->mode;
  990|  8.91k|		ses.newkeys->recv.algo_mac = 
  991|  8.91k|#if DROPBEAR_AEAD_MODE
  992|  8.91k|			c2s_hash_algo == NULL ? ses.newkeys->recv.crypt_mode->aead_mac :
  ------------------
  |  Branch (992:4): [True: 5.47k, False: 3.43k]
  ------------------
  993|  8.91k|#endif
  994|  8.91k|			(struct dropbear_hash*)c2s_hash_algo->data;
  995|  8.91k|		ses.newkeys->trans.algo_mac = 
  996|  8.91k|#if DROPBEAR_AEAD_MODE
  997|  8.91k|			s2c_hash_algo == NULL ? ses.newkeys->trans.crypt_mode->aead_mac :
  ------------------
  |  Branch (997:4): [True: 5.11k, False: 3.80k]
  ------------------
  998|  8.91k|#endif
  999|  8.91k|			(struct dropbear_hash*)s2c_hash_algo->data;
 1000|  8.91k|		ses.newkeys->recv.algo_comp = c2s_comp_algo->val;
 1001|  8.91k|		ses.newkeys->trans.algo_comp = s2c_comp_algo->val;
 1002|  8.91k|	}
 1003|       |
 1004|  8.91k|#if DROPBEAR_FUZZ
 1005|  8.91k|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (1005:6): [True: 8.85k, False: 61]
  ------------------
 1006|  8.85k|		fuzz_kex_fakealgos();
 1007|  8.85k|	}
 1008|  8.91k|#endif
 1009|       |
 1010|       |	/* reserved for future extensions */
 1011|  8.91k|	buf_getint(ses.payload);
 1012|       |
 1013|  8.91k|	if (ses.send_kex_first_guess && allgood) {
  ------------------
  |  Branch (1013:6): [True: 0, False: 8.91k]
  |  Branch (1013:34): [True: 0, False: 0]
  ------------------
 1014|      0|		TRACE(("our_first_follows_matches 1"))
 1015|      0|		ses.kexstate.our_first_follows_matches = 1;
 1016|      0|	}
 1017|  8.91k|	return;
 1018|       |
 1019|     85|error:
 1020|     85|	dropbear_exit("No matching algo %s", erralgo);
 1021|  8.91k|}

common_session_init:
   47|  1.55k|void common_session_init(int sock_in, int sock_out) {
   48|  1.55k|	time_t now;
   49|       |
   50|       |#if DEBUG_TRACE
   51|       |	debug_start_net();
   52|       |#endif
   53|       |
   54|  1.55k|	TRACE(("enter session_init"))
   55|       |
   56|  1.55k|	ses.sock_in = sock_in;
   57|  1.55k|	ses.sock_out = sock_out;
   58|  1.55k|	ses.maxfd = MAX(sock_in, sock_out);
   59|       |
   60|  1.55k|	if (sock_in >= 0) {
  ------------------
  |  Branch (60:6): [True: 1.55k, False: 0]
  ------------------
   61|  1.55k|		setnonblocking(sock_in);
   62|  1.55k|	}
   63|  1.55k|	if (sock_out >= 0) {
  ------------------
  |  Branch (63:6): [True: 1.55k, False: 0]
  ------------------
   64|  1.55k|		setnonblocking(sock_out);
   65|  1.55k|	}
   66|       |
   67|  1.55k|	ses.socket_prio = DROPBEAR_PRIO_NORMAL;
   68|       |	/* Sets it to lowdelay */
   69|  1.55k|	update_channel_prio();
   70|       |
   71|       |#if !DROPBEAR_SVR_MULTIUSER
   72|       |	/* A sanity check to prevent an accidental configuration option
   73|       |	   leaving multiuser systems exposed */
   74|       |	errno = 0;
   75|       |	getuid();
   76|       |	if (errno != ENOSYS) {
   77|       |		dropbear_exit("Non-multiuser Dropbear requires a non-multiuser kernel");
   78|       |	}
   79|       |#endif
   80|       |
   81|  1.55k|	now = monotonic_now();
   82|  1.55k|	ses.connect_time = now;
   83|  1.55k|	ses.last_packet_time_keepalive_recv = now;
   84|  1.55k|	ses.last_packet_time_idle = now;
   85|  1.55k|	ses.last_packet_time_any_sent = 0;
   86|  1.55k|	ses.last_packet_time_keepalive_sent = 0;
   87|       |	
   88|  1.55k|#if DROPBEAR_FUZZ
   89|  1.55k|	if (!fuzz.fuzzing)
  ------------------
  |  Branch (89:6): [True: 0, False: 1.55k]
  ------------------
   90|      0|#endif
   91|      0|	{
   92|      0|	if (pipe(ses.signal_pipe) < 0) {
  ------------------
  |  Branch (92:6): [True: 0, False: 0]
  ------------------
   93|      0|		dropbear_exit("Signal pipe failed");
   94|      0|	}
   95|      0|	setnonblocking(ses.signal_pipe[0]);
   96|      0|	setnonblocking(ses.signal_pipe[1]);
   97|      0|	ses.maxfd = MAX(ses.maxfd, ses.signal_pipe[0]);
   98|      0|	ses.maxfd = MAX(ses.maxfd, ses.signal_pipe[1]);
   99|      0|	}
  100|       |	
  101|  1.55k|	ses.writepayload = buf_new(TRANS_MAX_PAYLOAD_LEN);
  ------------------
  |  |  497|  1.55k|#define TRANS_MAX_PAYLOAD_LEN 16384
  ------------------
  102|  1.55k|	ses.transseq = 0;
  103|       |
  104|  1.55k|	ses.readbuf = NULL;
  105|  1.55k|	ses.payload = NULL;
  106|  1.55k|	ses.recvseq = 0;
  107|       |
  108|  1.55k|	initqueue(&ses.writequeue);
  109|       |
  110|  1.55k|	ses.requirenext = SSH_MSG_KEXINIT;
  ------------------
  |  |   36|  1.55k|#define SSH_MSG_KEXINIT                20
  ------------------
  111|  1.55k|	ses.dataallowed = 1; /* we can send data until we actually 
  112|       |							send the SSH_MSG_KEXINIT */
  113|  1.55k|	ses.ignorenext = 0;
  114|  1.55k|	ses.lastpacket = 0;
  115|  1.55k|	ses.reply_queue_head = NULL;
  116|  1.55k|	ses.reply_queue_tail = NULL;
  117|       |
  118|       |	/* set all the algos to none */
  119|  1.55k|	ses.keys = (struct key_context*)m_malloc(sizeof(struct key_context));
  120|  1.55k|	ses.newkeys = NULL;
  121|  1.55k|	ses.keys->recv.algo_crypt = &dropbear_nocipher;
  122|  1.55k|	ses.keys->trans.algo_crypt = &dropbear_nocipher;
  123|  1.55k|	ses.keys->recv.crypt_mode = &dropbear_mode_none;
  124|  1.55k|	ses.keys->trans.crypt_mode = &dropbear_mode_none;
  125|       |	
  126|  1.55k|	ses.keys->recv.algo_mac = &dropbear_nohash;
  127|  1.55k|	ses.keys->trans.algo_mac = &dropbear_nohash;
  128|       |
  129|  1.55k|	ses.keys->algo_kex = NULL;
  130|  1.55k|	ses.keys->algo_hostkey = -1;
  131|  1.55k|	ses.keys->recv.algo_comp = DROPBEAR_COMP_NONE;
  132|  1.55k|	ses.keys->trans.algo_comp = DROPBEAR_COMP_NONE;
  133|       |
  134|       |#ifndef DISABLE_ZLIB
  135|       |	ses.keys->recv.zstream = NULL;
  136|       |	ses.keys->trans.zstream = NULL;
  137|       |#endif
  138|       |
  139|       |	/* key exchange buffers */
  140|  1.55k|	ses.session_id = NULL;
  141|  1.55k|	ses.kexhashbuf = NULL;
  142|  1.55k|	ses.transkexinit = NULL;
  143|  1.55k|	ses.dh_K = NULL;
  144|  1.55k|	ses.remoteident = NULL;
  145|       |
  146|  1.55k|	ses.chantypes = NULL;
  147|       |
  148|  1.55k|	ses.allowprivport = 0;
  149|       |
  150|       |#if DROPBEAR_PLUGIN
  151|       |        ses.plugin_session = NULL;
  152|       |#endif
  153|       |
  154|  1.55k|	TRACE(("leave session_init"))
  155|  1.55k|}
session_loop:
  157|  1.55k|void session_loop(void(*loophandler)(void)) {
  158|       |
  159|  1.55k|	fd_set readfd, writefd;
  160|  1.55k|	struct timeval timeout;
  161|  1.55k|	int val;
  162|       |
  163|       |	/* main loop, select()s for all sockets in use */
  164|   504k|	for(;;) {
  165|   504k|		const int writequeue_has_space = (ses.writequeue_len <= 2*TRANS_MAX_PAYLOAD_LEN);
  ------------------
  |  |  497|   504k|#define TRANS_MAX_PAYLOAD_LEN 16384
  ------------------
  166|       |
  167|   504k|		timeout.tv_sec = select_timeout();
  168|   504k|		timeout.tv_usec = 0;
  169|   504k|		DROPBEAR_FD_ZERO(&writefd);
  ------------------
  |  |  104|   504k|#define DROPBEAR_FD_ZERO(fds) FD_ZERO(fds)
  ------------------
  170|   504k|		DROPBEAR_FD_ZERO(&readfd);
  ------------------
  |  |  104|   504k|#define DROPBEAR_FD_ZERO(fds) FD_ZERO(fds)
  ------------------
  171|       |
  172|   504k|		dropbear_assert(ses.payload == NULL);
  ------------------
  |  |   83|   504k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 504k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  173|       |
  174|       |		/* We get woken up when signal handlers write to this pipe.
  175|       |		   SIGCHLD in svr-chansession is the only one currently. */
  176|   504k|#if DROPBEAR_FUZZ
  177|   504k|		if (!fuzz.fuzzing) 
  ------------------
  |  Branch (177:7): [True: 0, False: 504k]
  ------------------
  178|      0|#endif
  179|      0|		{
  180|      0|		FD_SET(ses.signal_pipe[0], &readfd);
  181|      0|		}
  182|       |
  183|       |		/* set up for channels which can be read/written */
  184|   504k|		setchannelfds(&readfd, &writefd, writequeue_has_space);
  185|       |
  186|       |		/* Pending connections to test */
  187|   504k|		set_connect_fds(&writefd);
  188|       |
  189|       |		/* We delay reading from the input socket during initial setup until
  190|       |		after we have written out our initial KEXINIT packet (empty writequeue). 
  191|       |		This means our initial packet can be in-flight while we're doing a blocking
  192|       |		read for the remote ident.
  193|       |		We also avoid reading from the socket if the writequeue is full, that avoids
  194|       |		replies backing up */
  195|   504k|		if (ses.sock_in != -1 
  ------------------
  |  Branch (195:7): [True: 504k, False: 0]
  ------------------
  196|   504k|			&& (ses.remoteident || isempty(&ses.writequeue)) 
  ------------------
  |  Branch (196:8): [True: 499k, False: 4.68k]
  |  Branch (196:27): [True: 1.56k, False: 3.11k]
  ------------------
  197|   504k|			&& writequeue_has_space) {
  ------------------
  |  Branch (197:7): [True: 440k, False: 60.8k]
  ------------------
  198|   440k|			FD_SET(ses.sock_in, &readfd);
  199|   440k|		}
  200|       |
  201|       |		/* Ordering is important, this test must occur after any other function
  202|       |		might have queued packets (such as connection handlers) */
  203|   504k|		if (ses.sock_out != -1 && !isempty(&ses.writequeue)) {
  ------------------
  |  Branch (203:7): [True: 504k, False: 0]
  |  Branch (203:29): [True: 208k, False: 296k]
  ------------------
  204|   208k|			FD_SET(ses.sock_out, &writefd);
  205|   208k|		}
  206|       |
  207|   504k|		val = select(ses.maxfd+1, &readfd, &writefd, NULL, &timeout);
  ------------------
  |  |   53|   504k|        wrapfd_select(nfds, readfds, writefds, exceptfds, timeout)
  ------------------
  208|       |
  209|   504k|		if (ses.exitflag) {
  ------------------
  |  Branch (209:7): [True: 0, False: 504k]
  ------------------
  210|      0|			dropbear_exit("Terminated by signal");
  211|      0|		}
  212|       |		
  213|   504k|		if (val < 0 && errno != EINTR) {
  ------------------
  |  Branch (213:7): [True: 649, False: 503k]
  |  Branch (213:18): [True: 0, False: 649]
  ------------------
  214|      0|			dropbear_exit("Error in select");
  215|      0|		}
  216|       |
  217|   504k|		if (val <= 0) {
  ------------------
  |  Branch (217:7): [True: 17.4k, False: 487k]
  ------------------
  218|       |			/* If we were interrupted or the select timed out, we still
  219|       |			 * want to iterate over channels etc for reading, to handle
  220|       |			 * server processes exiting etc. 
  221|       |			 * We don't want to read/write FDs. */
  222|  17.4k|			DROPBEAR_FD_ZERO(&writefd);
  ------------------
  |  |  104|  17.4k|#define DROPBEAR_FD_ZERO(fds) FD_ZERO(fds)
  ------------------
  223|  17.4k|			DROPBEAR_FD_ZERO(&readfd);
  ------------------
  |  |  104|  17.4k|#define DROPBEAR_FD_ZERO(fds) FD_ZERO(fds)
  ------------------
  224|  17.4k|		}
  225|       |		
  226|       |		/* We'll just empty out the pipe if required. We don't do
  227|       |		any thing with the data, since the pipe's purpose is purely to
  228|       |		wake up the select() above. */
  229|   504k|		ses.channel_signal_pending = 0;
  230|   504k|		if (FD_ISSET(ses.signal_pipe[0], &readfd)) {
  231|      0|			char x;
  232|      0|			TRACE(("signal pipe set"))
  233|      0|			while (read(ses.signal_pipe[0], &x, 1) > 0) {}
  ------------------
  |  |   55|      0|#define read(fd, buf, count) wrapfd_read(fd, buf, count)
  ------------------
  |  Branch (233:11): [True: 0, False: 0]
  ------------------
  234|      0|			ses.channel_signal_pending = 1;
  235|      0|		}
  236|       |
  237|       |		/* check for auth timeout, rekeying required etc */
  238|   504k|		checktimeouts();
  239|       |
  240|       |		/* process session socket's incoming data */
  241|   504k|		if (ses.sock_in != -1) {
  ------------------
  |  Branch (241:7): [True: 504k, False: 0]
  ------------------
  242|   504k|			if (FD_ISSET(ses.sock_in, &readfd)) {
  243|   304k|				if (!ses.remoteident) {
  ------------------
  |  Branch (243:9): [True: 1.55k, False: 303k]
  ------------------
  244|       |					/* blocking read of the version string */
  245|  1.55k|					read_session_identification();
  246|   303k|				} else {
  247|   303k|					read_packet();
  248|   303k|				}
  249|   304k|			}
  250|       |			
  251|       |			/* Process the decrypted packet. After this, the read buffer
  252|       |			 * will be ready for a new packet */
  253|   504k|			if (ses.payload != NULL) {
  ------------------
  |  Branch (253:8): [True: 57.7k, False: 446k]
  ------------------
  254|  57.7k|				process_packet();
  255|  57.7k|			}
  256|   504k|		}
  257|       |
  258|       |		/* if required, flush out any queued reply packets that
  259|       |		were being held up during a KEX */
  260|   504k|		maybe_flush_reply_queue();
  261|       |
  262|   504k|		handle_connect_fds(&writefd);
  263|       |
  264|       |		/* loop handler prior to channelio, in case the server loophandler closes
  265|       |		channels on process exit */
  266|   504k|		loophandler();
  267|       |
  268|       |		/* process pipes etc for the channels, ses.dataallowed == 0
  269|       |		 * during rekeying ) */
  270|   504k|		channelio(&readfd, &writefd);
  271|       |
  272|       |		/* process session socket's outgoing data */
  273|   504k|		if (ses.sock_out != -1) {
  ------------------
  |  Branch (273:7): [True: 503k, False: 1.55k]
  ------------------
  274|   503k|			if (!isempty(&ses.writequeue)) {
  ------------------
  |  Branch (274:8): [True: 256k, False: 246k]
  ------------------
  275|   256k|				write_packet();
  276|   256k|			}
  277|   503k|		}
  278|       |
  279|   504k|	} /* for(;;) */
  280|       |	
  281|       |	/* Not reached */
  282|  1.55k|}
session_cleanup:
  293|  1.55k|void session_cleanup() {
  294|       |	
  295|  1.55k|	TRACE(("enter session_cleanup"))
  296|       |	
  297|       |	/* we can't cleanup if we don't know the session state */
  298|  1.55k|	if (!ses.init_done) {
  ------------------
  |  Branch (298:6): [True: 0, False: 1.55k]
  ------------------
  299|      0|		TRACE(("leave session_cleanup: !ses.init_done"))
  300|      0|		return;
  301|      0|	}
  302|       |
  303|       |	/* BEWARE of changing order of functions here. */
  304|       |
  305|       |	/* Must be before extra_session_cleanup() */
  306|  1.55k|	chancleanup();
  307|       |
  308|  1.55k|	if (ses.extra_session_cleanup) {
  ------------------
  |  Branch (308:6): [True: 1.55k, False: 0]
  ------------------
  309|  1.55k|		ses.extra_session_cleanup();
  310|  1.55k|	}
  311|       |
  312|       |	/* After these are freed most functions will fail */
  313|  1.55k|#if DROPBEAR_CLEANUP
  314|       |	/* listeners call cleanup functions, this should occur before
  315|       |	other session state is freed. */
  316|  1.55k|	remove_all_listeners();
  317|       |
  318|  1.55k|	remove_connect_pending();
  319|       |
  320|  7.97k|	while (!isempty(&ses.writequeue)) {
  ------------------
  |  Branch (320:9): [True: 6.41k, False: 1.55k]
  ------------------
  321|  6.41k|		buf_free(dequeue(&ses.writequeue));
  322|  6.41k|	}
  323|       |
  324|  1.55k|	m_free(ses.newkeys);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  325|       |#ifndef DISABLE_ZLIB
  326|       |	if (ses.keys->recv.zstream != NULL) {
  327|       |		if (inflateEnd(ses.keys->recv.zstream) == Z_STREAM_ERROR) {
  328|       |			dropbear_exit("Crypto error");
  329|       |		}
  330|       |		m_free(ses.keys->recv.zstream);
  331|       |	}
  332|       |#endif
  333|       |
  334|  1.55k|	m_free(ses.remoteident);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  335|  1.55k|	m_free(ses.authstate.pw_dir);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  336|  1.55k|	m_free(ses.authstate.pw_name);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  337|  1.55k|	m_free(ses.authstate.pw_shell);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  338|  1.55k|	m_free(ses.authstate.pw_passwd);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  339|  1.55k|	m_free(ses.authstate.username);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  340|  1.55k|#endif
  341|       |
  342|  1.55k|	cleanup_buf(&ses.session_id);
  343|  1.55k|	cleanup_buf(&ses.hash);
  344|  1.55k|	cleanup_buf(&ses.payload);
  345|  1.55k|	cleanup_buf(&ses.readbuf);
  346|  1.55k|	cleanup_buf(&ses.writepayload);
  347|  1.55k|	cleanup_buf(&ses.kexhashbuf);
  348|  1.55k|	cleanup_buf(&ses.transkexinit);
  349|  1.55k|	if (ses.dh_K) {
  ------------------
  |  Branch (349:6): [True: 0, False: 1.55k]
  ------------------
  350|      0|		mp_clear(ses.dh_K);
  351|      0|	}
  352|  1.55k|	m_free(ses.dh_K);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  353|       |
  354|  1.55k|	m_burn(ses.keys, sizeof(struct key_context));
  355|  1.55k|	m_free(ses.keys);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  356|       |
  357|  1.55k|	TRACE(("leave session_cleanup"))
  358|  1.55k|}
send_session_identification:
  360|  1.55k|void send_session_identification() {
  361|  1.55k|	buffer *writebuf = buf_new(strlen(LOCAL_IDENT "\r\n") + 1);
  ------------------
  |  |   10|  1.55k|#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
  ------------------
  362|  1.55k|	buf_putbytes(writebuf, (const unsigned char *) LOCAL_IDENT "\r\n", strlen(LOCAL_IDENT "\r\n"));
  ------------------
  |  |   10|  1.55k|#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
  ------------------
              	buf_putbytes(writebuf, (const unsigned char *) LOCAL_IDENT "\r\n", strlen(LOCAL_IDENT "\r\n"));
  ------------------
  |  |   10|  1.55k|#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
  ------------------
  363|  1.55k|	writebuf_enqueue(writebuf);
  364|  1.55k|}
ignore_recv_response:
  489|    344|void ignore_recv_response() {
  490|       |	/* Do nothing */
  491|    344|	TRACE(("Ignored msg_request_response"))
  492|    344|}
fill_passwd:
  630|  1.55k|void fill_passwd(const char* username) {
  631|  1.55k|	struct passwd *pw = NULL;
  632|  1.55k|	if (ses.authstate.pw_name)
  ------------------
  |  Branch (632:6): [True: 0, False: 1.55k]
  ------------------
  633|      0|		m_free(ses.authstate.pw_name);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  634|  1.55k|	if (ses.authstate.pw_dir)
  ------------------
  |  Branch (634:6): [True: 0, False: 1.55k]
  ------------------
  635|      0|		m_free(ses.authstate.pw_dir);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  636|  1.55k|	if (ses.authstate.pw_shell)
  ------------------
  |  Branch (636:6): [True: 0, False: 1.55k]
  ------------------
  637|      0|		m_free(ses.authstate.pw_shell);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  638|  1.55k|	if (ses.authstate.pw_passwd)
  ------------------
  |  Branch (638:6): [True: 0, False: 1.55k]
  ------------------
  639|      0|		m_free(ses.authstate.pw_passwd);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  640|       |
  641|  1.55k|	pw = getpwnam(username);
  ------------------
  |  |  108|  1.55k|#define getpwnam(x) fuzz_getpwnam(x)
  ------------------
  642|  1.55k|	if (!pw) {
  ------------------
  |  Branch (642:6): [True: 0, False: 1.55k]
  ------------------
  643|      0|		return;
  644|      0|	}
  645|  1.55k|	ses.authstate.pw_uid = pw->pw_uid;
  646|  1.55k|	ses.authstate.pw_gid = pw->pw_gid;
  647|  1.55k|	ses.authstate.pw_name = m_strdup(pw->pw_name);
  648|  1.55k|	ses.authstate.pw_dir = m_strdup(pw->pw_dir);
  649|  1.55k|	ses.authstate.pw_shell = m_strdup(pw->pw_shell);
  650|  1.55k|	{
  651|  1.55k|		char *passwd_crypt = pw->pw_passwd;
  652|  1.55k|#ifdef HAVE_SHADOW_H
  653|       |		/* get the shadow password if possible */
  654|  1.55k|		struct spwd *spasswd = getspnam(ses.authstate.pw_name);
  655|  1.55k|		if (spasswd && spasswd->sp_pwdp) {
  ------------------
  |  Branch (655:7): [True: 1.55k, False: 0]
  |  Branch (655:18): [True: 1.55k, False: 0]
  ------------------
  656|  1.55k|			passwd_crypt = spasswd->sp_pwdp;
  657|  1.55k|		}
  658|  1.55k|#endif
  659|  1.55k|		if (!passwd_crypt) {
  ------------------
  |  Branch (659:7): [True: 0, False: 1.55k]
  ------------------
  660|       |			/* android supposedly returns NULL */
  661|      0|			passwd_crypt = "!!";
  662|      0|		}
  663|  1.55k|		ses.authstate.pw_passwd = m_strdup(passwd_crypt);
  664|  1.55k|	}
  665|  1.55k|}
update_channel_prio:
  668|  18.5k|void update_channel_prio() {
  669|  18.5k|	enum dropbear_prio new_prio;
  670|  18.5k|	int any = 0;
  671|  18.5k|	unsigned int i;
  672|       |
  673|  18.5k|	TRACE(("update_channel_prio"))
  674|       |
  675|  18.5k|	if (ses.sock_out < 0) {
  ------------------
  |  Branch (675:6): [True: 2.94k, False: 15.6k]
  ------------------
  676|  2.94k|		TRACE(("leave update_channel_prio: no socket"))
  677|  2.94k|		return;
  678|  2.94k|	}
  679|       |
  680|  15.6k|	new_prio = DROPBEAR_PRIO_NORMAL;
  681|  87.8k|	for (i = 0; i < ses.chansize; i++) {
  ------------------
  |  Branch (681:14): [True: 84.0k, False: 3.78k]
  ------------------
  682|  84.0k|		struct Channel *channel = ses.channels[i];
  683|  84.0k|		if (!channel) {
  ------------------
  |  Branch (683:7): [True: 59.9k, False: 24.1k]
  ------------------
  684|  59.9k|			continue;
  685|  59.9k|		}
  686|  24.1k|		any = 1;
  687|  24.1k|		if (channel->prio == DROPBEAR_PRIO_LOWDELAY) {
  ------------------
  |  Branch (687:7): [True: 11.8k, False: 12.2k]
  ------------------
  688|  11.8k|			new_prio = DROPBEAR_PRIO_LOWDELAY;
  689|  11.8k|			break;
  690|  11.8k|		}
  691|  24.1k|	}
  692|       |
  693|  15.6k|	if (any == 0) {
  ------------------
  |  Branch (693:6): [True: 2.42k, False: 13.2k]
  ------------------
  694|       |		/* lowdelay during setup */
  695|  2.42k|		TRACE(("update_channel_prio: not any"))
  696|  2.42k|		new_prio = DROPBEAR_PRIO_LOWDELAY;
  697|  2.42k|	}
  698|       |
  699|  15.6k|	if (new_prio != ses.socket_prio) {
  ------------------
  |  Branch (699:6): [True: 3.37k, False: 12.2k]
  ------------------
  700|  3.37k|		TRACE(("Dropbear priority transitioning %d -> %d", ses.socket_prio, new_prio))
  701|  3.37k|		set_sock_priority(ses.sock_out, new_prio);
  702|  3.37k|		ses.socket_prio = new_prio;
  703|  3.37k|	}
  704|  15.6k|}
common-session.c:cleanup_buf:
  284|  10.9k|static void cleanup_buf(buffer **buf) {
  285|  10.9k|	if (!*buf) {
  ------------------
  |  Branch (285:6): [True: 5.88k, False: 5.02k]
  ------------------
  286|  5.88k|		return;
  287|  5.88k|	}
  288|  5.02k|	buf_burn_free(*buf);
  289|  5.02k|	*buf = NULL;
  290|  5.02k|}
common-session.c:read_session_identification:
  366|  1.55k|static void read_session_identification() {
  367|       |	/* max length of 255 chars */
  368|  1.55k|	char linebuf[256];
  369|  1.55k|	int len = 0;
  370|  1.55k|	char done = 0;
  371|  1.55k|	int i;
  372|       |
  373|       |	/* Servers may send other lines of data before sending the
  374|       |	 * version string, client must be able to process such lines.
  375|       |	 * If they send more than 50 lines, something is wrong */
  376|  1.56k|	for (i = IS_DROPBEAR_CLIENT ? 50 : 1; i > 0; i--) {
  ------------------
  |  |  320|  1.55k|#define IS_DROPBEAR_CLIENT (ses.isserver == 0)
  |  |  ------------------
  |  |  |  Branch (320:28): [True: 0, False: 1.55k]
  |  |  ------------------
  ------------------
  |  Branch (376:40): [True: 1.55k, False: 4]
  ------------------
  377|  1.55k|		len = ident_readln(ses.sock_in, linebuf, sizeof(linebuf));
  378|       |
  379|  1.55k|		if (len < 0 && errno != EINTR) {
  ------------------
  |  Branch (379:7): [True: 5, False: 1.55k]
  |  Branch (379:18): [True: 1, False: 4]
  ------------------
  380|       |			/* It failed */
  381|      1|			break;
  382|      1|		}
  383|       |
  384|  1.55k|		if (len >= 4 && memcmp(linebuf, "SSH-", 4) == 0) {
  ------------------
  |  Branch (384:7): [True: 1.55k, False: 4]
  |  Branch (384:19): [True: 1.55k, False: 0]
  ------------------
  385|       |			/* start of line matches */
  386|  1.55k|			done = 1;
  387|  1.55k|			break;
  388|  1.55k|		}
  389|  1.55k|	}
  390|       |
  391|  1.55k|	if (!done) {
  ------------------
  |  Branch (391:6): [True: 5, False: 1.55k]
  ------------------
  392|      5|		TRACE(("error reading remote ident: %s\n", strerror(errno)))
  393|      5|		ses.remoteclosed();
  394|  1.55k|	} else {
  395|       |		/* linebuf is already null terminated */
  396|  1.55k|		ses.remoteident = m_malloc(len);
  397|  1.55k|		memcpy(ses.remoteident, linebuf, len);
  398|  1.55k|	}
  399|       |
  400|       |	/* Shall assume that 2.x will be backwards compatible. */
  401|  1.55k|	if (strncmp(ses.remoteident, "SSH-2.", 6) != 0
  ------------------
  |  Branch (401:6): [True: 0, False: 1.55k]
  ------------------
  402|  1.55k|			&& strncmp(ses.remoteident, "SSH-1.99-", 9) != 0) {
  ------------------
  |  Branch (402:7): [True: 0, False: 0]
  ------------------
  403|      0|		dropbear_exit("Incompatible remote version '%s'", ses.remoteident);
  404|      0|	}
  405|       |
  406|  1.55k|	DEBUG1(("remoteident: %s", ses.remoteident))
  407|       |
  408|  1.55k|}
common-session.c:ident_readln:
  412|  1.55k|static int ident_readln(int fd, char* buf, int count) {
  413|       |	
  414|  1.55k|	char in;
  415|  1.55k|	int pos = 0;
  416|  1.55k|	int num = 0;
  417|  1.55k|	fd_set fds;
  418|  1.55k|	struct timeval timeout;
  419|       |
  420|  1.55k|	TRACE(("enter ident_readln"))
  421|       |
  422|  1.55k|	if (count < 1) {
  ------------------
  |  Branch (422:6): [True: 0, False: 1.55k]
  ------------------
  423|      0|		return -1;
  424|      0|	}
  425|       |
  426|  1.55k|	DROPBEAR_FD_ZERO(&fds);
  ------------------
  |  |  104|  1.55k|#define DROPBEAR_FD_ZERO(fds) FD_ZERO(fds)
  ------------------
  427|       |
  428|       |	/* select since it's a non-blocking fd */
  429|       |	
  430|       |	/* leave space to null-terminate */
  431|  45.3k|	while (pos < count-1) {
  ------------------
  |  Branch (431:9): [True: 45.3k, False: 0]
  ------------------
  432|       |
  433|  45.3k|		FD_SET(fd, &fds);
  434|       |
  435|  45.3k|		timeout.tv_sec = 1;
  436|  45.3k|		timeout.tv_usec = 0;
  437|  45.3k|		if (select(fd+1, &fds, NULL, NULL, &timeout) < 0) {
  ------------------
  |  |   53|  45.3k|        wrapfd_select(nfds, readfds, writefds, exceptfds, timeout)
  ------------------
  |  Branch (437:7): [True: 38, False: 45.3k]
  ------------------
  438|     38|			if (errno == EINTR) {
  ------------------
  |  Branch (438:8): [True: 38, False: 0]
  ------------------
  439|     38|				continue;
  440|     38|			}
  441|      0|			TRACE(("leave ident_readln: select error"))
  442|      0|			return -1;
  443|     38|		}
  444|       |
  445|  45.3k|		checktimeouts();
  446|       |		
  447|       |		/* Have to go one byte at a time, since we don't want to read past
  448|       |		 * the end, and have to somehow shove bytes back into the normal
  449|       |		 * packet reader */
  450|  45.3k|		if (FD_ISSET(fd, &fds)) {
  451|  45.3k|			num = read(fd, &in, 1);
  ------------------
  |  |   55|  45.3k|#define read(fd, buf, count) wrapfd_read(fd, buf, count)
  ------------------
  452|       |			/* a "\n" is a newline, "\r" we want to read in and keep going
  453|       |			 * so that it won't be read as part of the next line */
  454|  45.3k|			if (num < 0) {
  ------------------
  |  Branch (454:8): [True: 63, False: 45.2k]
  ------------------
  455|       |				/* error */
  456|     63|				if (errno == EINTR) {
  ------------------
  |  Branch (456:9): [True: 63, False: 0]
  ------------------
  457|     63|					continue; /* not a real error */
  458|     63|				}
  459|      0|				TRACE(("leave ident_readln: read error"))
  460|      0|				return -1;
  461|     63|			}
  462|  45.2k|			if (num == 0) {
  ------------------
  |  Branch (462:8): [True: 5, False: 45.2k]
  ------------------
  463|       |				/* EOF */
  464|      5|				TRACE(("leave ident_readln: EOF"))
  465|      5|				return -1;
  466|      5|			}
  467|       |
  468|  45.2k|#if DROPBEAR_FUZZ
  469|  45.2k|			fuzz_dump(&in, 1);
  470|  45.2k|#endif
  471|       |
  472|  45.2k|			if (in == '\n') {
  ------------------
  |  Branch (472:8): [True: 1.55k, False: 43.6k]
  ------------------
  473|       |				/* end of ident string */
  474|  1.55k|				break;
  475|  1.55k|			}
  476|       |			/* we don't want to include '\r's */
  477|  43.6k|			if (in != '\r') {
  ------------------
  |  Branch (477:8): [True: 32.0k, False: 11.6k]
  ------------------
  478|  32.0k|				buf[pos] = in;
  479|  32.0k|				pos++;
  480|  32.0k|			}
  481|  43.6k|		}
  482|  45.3k|	}
  483|       |
  484|  1.55k|	buf[pos] = '\0';
  485|  1.55k|	TRACE(("leave ident_readln: return %d", pos+1))
  486|  1.55k|	return pos+1;
  487|  1.55k|}
common-session.c:checktimeouts:
  533|   549k|static void checktimeouts() {
  534|       |
  535|   549k|	time_t now;
  536|   549k|	now = monotonic_now();
  537|       |
  538|   549k|	if (IS_DROPBEAR_SERVER && ses.connect_time != 0
  ------------------
  |  |  319|  1.09M|#define IS_DROPBEAR_SERVER (ses.isserver == 1)
  |  |  ------------------
  |  |  |  Branch (319:28): [True: 549k, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (538:28): [True: 549k, False: 0]
  ------------------
  539|   549k|		&& elapsed(now, ses.connect_time) >= AUTH_TIMEOUT) {
  ------------------
  |  |   31|   549k|#define AUTH_TIMEOUT 300 /* we choose 5 minutes */
  ------------------
  |  Branch (539:6): [True: 0, False: 549k]
  ------------------
  540|      0|			dropbear_close("Timeout before auth");
  541|      0|	}
  542|       |
  543|       |	/* we can't rekey if we haven't done remote ident exchange yet */
  544|   549k|	if (ses.remoteident == NULL) {
  ------------------
  |  Branch (544:6): [True: 49.9k, False: 499k]
  ------------------
  545|  49.9k|		return;
  546|  49.9k|	}
  547|       |
  548|   499k|	if (!ses.kexstate.sentkexinit
  ------------------
  |  Branch (548:6): [True: 394k, False: 105k]
  ------------------
  549|   499k|			&& (elapsed(now, ses.kexstate.lastkextime) >= KEX_REKEY_TIMEOUT
  ------------------
  |  |   24|   788k|#define KEX_REKEY_TIMEOUT (3600 * 8)
  ------------------
  |  Branch (549:8): [True: 0, False: 394k]
  ------------------
  550|   394k|			|| ses.kexstate.datarecv+ses.kexstate.datatrans >= KEX_REKEY_DATA)) {
  ------------------
  |  |   27|   394k|#define KEX_REKEY_DATA (1<<30) /* 2^30 == 1GB, this value must be < INT_MAX */
  ------------------
  |  Branch (550:7): [True: 0, False: 394k]
  ------------------
  551|      0|		TRACE(("rekeying after timeout or max data reached"))
  552|      0|		send_msg_kexinit();
  553|      0|	}
  554|       |
  555|   499k|	if (opts.keepalive_secs > 0 && ses.authstate.authdone) {
  ------------------
  |  Branch (555:6): [True: 0, False: 499k]
  |  Branch (555:33): [True: 0, False: 0]
  ------------------
  556|       |		/* Avoid sending keepalives prior to auth - those are
  557|       |		not valid pre-auth packet types */
  558|       |
  559|       |		/* Send keepalives if we've been idle */
  560|      0|		if (elapsed(now, ses.last_packet_time_any_sent) >= opts.keepalive_secs) {
  ------------------
  |  Branch (560:7): [True: 0, False: 0]
  ------------------
  561|      0|			send_msg_keepalive();
  562|      0|		}
  563|       |
  564|       |		/* Also send an explicit keepalive message to trigger a response
  565|       |		if the remote end hasn't sent us anything */
  566|      0|		if (elapsed(now, ses.last_packet_time_keepalive_recv) >= opts.keepalive_secs
  ------------------
  |  Branch (566:7): [True: 0, False: 0]
  ------------------
  567|      0|			&& elapsed(now, ses.last_packet_time_keepalive_sent) >= opts.keepalive_secs) {
  ------------------
  |  Branch (567:7): [True: 0, False: 0]
  ------------------
  568|      0|			send_msg_keepalive();
  569|      0|		}
  570|       |
  571|      0|		if (elapsed(now, ses.last_packet_time_keepalive_recv)
  ------------------
  |  Branch (571:7): [True: 0, False: 0]
  ------------------
  572|      0|			>= opts.keepalive_secs * DEFAULT_KEEPALIVE_LIMIT) {
  ------------------
  |  |  510|      0|#define DEFAULT_KEEPALIVE_LIMIT 3
  ------------------
  573|      0|			dropbear_exit("Keepalive timeout");
  574|      0|		}
  575|      0|	}
  576|       |
  577|   499k|	if (opts.idle_timeout_secs > 0
  ------------------
  |  Branch (577:6): [True: 0, False: 499k]
  ------------------
  578|   499k|			&& elapsed(now, ses.last_packet_time_idle) >= opts.idle_timeout_secs) {
  ------------------
  |  Branch (578:7): [True: 0, False: 0]
  ------------------
  579|      0|		dropbear_close("Idle timeout");
  580|      0|	}
  581|   499k|}
common-session.c:elapsed:
  523|  1.71M|static long elapsed(time_t now, time_t prev) {
  524|  1.71M|	time_t del = now - prev;
  525|  1.71M|	if (del > LONG_MAX) {
  ------------------
  |  Branch (525:6): [True: 0, False: 1.71M]
  ------------------
  526|      0|		return LONG_MAX;
  527|      0|	}
  528|  1.71M|	return (long)del;
  529|  1.71M|}
common-session.c:select_timeout:
  594|   504k|static long select_timeout() {
  595|       |	/* determine the minimum timeout that might be required, so
  596|       |	as to avoid waking when unneccessary */
  597|   504k|	long timeout = KEX_REKEY_TIMEOUT;
  ------------------
  |  |   24|   504k|#define KEX_REKEY_TIMEOUT (3600 * 8)
  ------------------
  598|   504k|	time_t now = monotonic_now();
  599|       |
  600|   504k|	if (!ses.kexstate.sentkexinit) {
  ------------------
  |  Branch (600:6): [True: 394k, False: 110k]
  ------------------
  601|   394k|		update_timeout(KEX_REKEY_TIMEOUT, now, ses.kexstate.lastkextime, &timeout);
  ------------------
  |  |   24|   394k|#define KEX_REKEY_TIMEOUT (3600 * 8)
  ------------------
  602|   394k|	}
  603|       |
  604|   504k|	if (ses.authstate.authdone != 1 && IS_DROPBEAR_SERVER) {
  ------------------
  |  |  319|      0|#define IS_DROPBEAR_SERVER (ses.isserver == 1)
  |  |  ------------------
  |  |  |  Branch (319:28): [True: 0, False: 0]
  |  |  ------------------
  ------------------
  |  Branch (604:6): [True: 0, False: 504k]
  ------------------
  605|       |		/* AUTH_TIMEOUT is only relevant before authdone */
  606|      0|		update_timeout(AUTH_TIMEOUT, now, ses.connect_time, &timeout);
  ------------------
  |  |   31|      0|#define AUTH_TIMEOUT 300 /* we choose 5 minutes */
  ------------------
  607|      0|	}
  608|       |
  609|   504k|	if (ses.authstate.authdone) {
  ------------------
  |  Branch (609:6): [True: 504k, False: 0]
  ------------------
  610|   504k|		update_timeout(opts.keepalive_secs, now,
  611|   504k|			MAX(ses.last_packet_time_keepalive_recv, ses.last_packet_time_keepalive_sent),
  612|   504k|			&timeout);
  613|   504k|	}
  614|       |
  615|   504k|	update_timeout(opts.idle_timeout_secs, now, ses.last_packet_time_idle,
  616|   504k|		&timeout);
  617|       |
  618|       |	/* clamp negative timeouts to zero - event has already triggered */
  619|   504k|	return MAX(timeout, 0);
  620|   504k|}
common-session.c:update_timeout:
  583|  1.40M|static void update_timeout(long limit, time_t now, time_t last_event, long * timeout) {
  584|  1.40M|	TRACE2(("update_timeout limit %ld, now %llu, last %llu, timeout %ld",
  585|  1.40M|		limit,
  586|  1.40M|		(unsigned long long)now,
  587|  1.40M|		(unsigned long long)last_event, *timeout))
  588|  1.40M|	if (last_event > 0 && limit > 0) {
  ------------------
  |  Branch (588:6): [True: 1.40M, False: 0]
  |  Branch (588:24): [True: 394k, False: 1.00M]
  ------------------
  589|   394k|		*timeout = MIN(*timeout, elapsed(now, last_event) + limit);
  590|   394k|		TRACE2(("new timeout %ld", *timeout))
  591|   394k|	}
  592|  1.40M|}

strlcpy:
   93|      4|size_t strlcpy(char *dst, const char *src, size_t size) {
   94|       |
   95|      4|	size_t i;
   96|       |
   97|       |	/* this is undefined, though size==0 -> return 0 */
   98|      4|	if (size < 1) {
  ------------------
  |  Branch (98:6): [True: 0, False: 4]
  ------------------
   99|      0|		return 0;
  100|      0|	}
  101|       |
  102|     43|	for (i = 0; i < size-1; i++) {
  ------------------
  |  Branch (102:14): [True: 43, False: 0]
  ------------------
  103|     43|		if (src[i] == '\0') {
  ------------------
  |  Branch (103:7): [True: 4, False: 39]
  ------------------
  104|      4|			break;
  105|     39|		} else {
  106|     39|			dst[i] = src[i];
  107|     39|		}
  108|     43|	}
  109|       |
  110|      4|	dst[i] = '\0';
  111|      4|	return strlen(src);
  112|       |
  113|      4|}

crypto_init:
   21|      1|void crypto_init() {
   22|       |
   23|      1|	const struct ltc_cipher_descriptor *regciphers[] = {
   24|      1|#if DROPBEAR_AES
   25|      1|		&aes_desc,
   26|      1|#endif
   27|       |#if DROPBEAR_3DES
   28|       |		&des3_desc,
   29|       |#endif
   30|      1|		NULL
   31|      1|	};
   32|       |
   33|      1|	const struct ltc_hash_descriptor *reghashes[] = {
   34|      1|#if DROPBEAR_SHA1_HMAC
   35|      1|		&sha1_desc,
   36|      1|#endif
   37|      1|#if DROPBEAR_SHA256
   38|      1|		&sha256_desc,
   39|      1|#endif
   40|      1|#if DROPBEAR_SHA384
   41|      1|		&sha384_desc,
   42|      1|#endif
   43|      1|#if DROPBEAR_SHA512
   44|      1|		&sha512_desc,
   45|      1|#endif
   46|      1|		NULL
   47|      1|	};
   48|      1|	int i;
   49|       |
   50|      2|	for (i = 0; regciphers[i] != NULL; i++) {
  ------------------
  |  Branch (50:14): [True: 1, False: 1]
  ------------------
   51|      1|		if (register_cipher(regciphers[i]) == -1) {
  ------------------
  |  Branch (51:7): [True: 0, False: 1]
  ------------------
   52|      0|			dropbear_exit("Error registering crypto");
   53|      0|		}
   54|      1|	}
   55|       |
   56|      5|	for (i = 0; reghashes[i] != NULL; i++) {
  ------------------
  |  Branch (56:14): [True: 4, False: 1]
  ------------------
   57|      4|		if (register_hash(reghashes[i]) == -1) {
  ------------------
  |  Branch (57:7): [True: 0, False: 4]
  ------------------
   58|      0|			dropbear_exit("Error registering crypto");
   59|      0|		}
   60|      4|	}
   61|       |
   62|      1|#if DROPBEAR_LTC_PRNG
   63|      1|	dropbear_ltc_prng = register_prng(&dropbear_prng_desc);
   64|      1|	if (dropbear_ltc_prng == -1) {
  ------------------
  |  Branch (64:6): [True: 0, False: 1]
  ------------------
   65|      0|		dropbear_exit("Error registering crypto");
   66|      0|	}
   67|      1|#endif
   68|       |
   69|      1|	mp_rand_source(dropbear_rand_source);
   70|       |
   71|      1|#if DROPBEAR_ECC
   72|      1|	ltc_mp = ltm_desc;
   73|      1|	dropbear_ecc_fill_dp();
   74|      1|#endif
   75|      1|}

m_burn:
    5|   435k|void m_burn(void *data, unsigned int len) {
    6|       |
    7|       |#if defined(HAVE_MEMSET_S)
    8|       |	memset_s(data, len, 0x0, len);
    9|       |#elif defined(HAVE_EXPLICIT_BZERO)
   10|   435k|	explicit_bzero(data, len);
   11|       |#else
   12|       |	/* This must be volatile to avoid compiler optimisation */
   13|       |	volatile void *p = data;
   14|       |	memset((void*)p, 0x0, len);
   15|       |#endif
   16|   435k|}

m_calloc:
    5|  19.9k|void * m_calloc(size_t nmemb, size_t size) {
    6|  19.9k|    if (SIZE_T_MAX / nmemb < size) {
  ------------------
  |  |  166|  19.9k|#define SIZE_T_MAX ULONG_MAX
  ------------------
  |  Branch (6:9): [True: 0, False: 19.9k]
  ------------------
    7|      0|        dropbear_exit("m_calloc failed");
    8|      0|    }
    9|  19.9k|    return m_malloc(nmemb*size);
   10|  19.9k|}
m_strdup:
   12|  28.5k|void * m_strdup(const char * str) {
   13|  28.5k|    char* ret;
   14|  28.5k|    unsigned int len;
   15|  28.5k|    len = strlen(str);
   16|       |
   17|  28.5k|    ret = m_malloc(len+1);
   18|  28.5k|    if (ret == NULL) {
  ------------------
  |  Branch (18:9): [True: 0, False: 28.5k]
  ------------------
   19|      0|        dropbear_exit("m_strdup failed");
   20|      0|    }
   21|  28.5k|    memcpy(ret, str, len+1);
   22|  28.5k|    return ret;
   23|  28.5k|}
m_malloc_set_epoch:
   76|  1.55k|void m_malloc_set_epoch(unsigned int epoch) {
   77|  1.55k|    current_epoch = epoch;
   78|  1.55k|}
m_malloc_free_epoch:
   80|  1.55k|void m_malloc_free_epoch(unsigned int epoch, int dofree) {
   81|  1.55k|    struct dbmalloc_header* header;
   82|  1.55k|    struct dbmalloc_header* nextheader = NULL;
   83|  1.55k|    struct dbmalloc_header* oldstaple = staple;
   84|  1.55k|    staple = NULL;
   85|       |    /* free allocations from this epoch, create a new staple-anchored list from
   86|       |    the remainder */
   87|  1.62M|    for (header = oldstaple; header; header = nextheader)
  ------------------
  |  Branch (87:30): [True: 1.62M, False: 1.55k]
  ------------------
   88|  1.62M|    {
   89|  1.62M|        nextheader = header->next;
   90|  1.62M|        if (header->epoch == epoch) {
  ------------------
  |  Branch (90:13): [True: 336, False: 1.62M]
  ------------------
   91|    336|            if (dofree) {
  ------------------
  |  Branch (91:17): [True: 336, False: 0]
  ------------------
   92|    336|                free(header);
   93|    336|            }
   94|  1.62M|        } else {
   95|  1.62M|            header->prev = NULL;
   96|  1.62M|            header->next = NULL;
   97|  1.62M|            put_alloc(header);
   98|  1.62M|        }
   99|  1.62M|    }
  100|  1.55k|}
m_malloc:
  131|   867k|void * m_malloc(size_t size) {
  132|   867k|    char* mem = NULL;
  133|   867k|    struct dbmalloc_header* header = NULL;
  134|       |
  135|   867k|    if (size == 0 || size > 1e9) {
  ------------------
  |  Branch (135:9): [True: 0, False: 867k]
  |  Branch (135:22): [True: 0, False: 867k]
  ------------------
  136|      0|        dropbear_exit("m_malloc failed");
  137|      0|    }
  138|       |
  139|   867k|    size = size + sizeof(struct dbmalloc_header);
  140|       |
  141|   867k|    mem = calloc(1, size);
  142|   867k|    if (mem == NULL) {
  ------------------
  |  Branch (142:9): [True: 0, False: 867k]
  ------------------
  143|      0|        dropbear_exit("m_malloc failed");
  144|      0|    }
  145|   867k|    header = (struct dbmalloc_header*)mem;
  146|   867k|    put_alloc(header);
  147|   867k|    header->epoch = current_epoch;
  148|   867k|    return &mem[sizeof(struct dbmalloc_header)];
  149|   867k|}
m_realloc:
  151|  12.8k|void * m_realloc(void* ptr, size_t size) {
  152|  12.8k|    char* mem = NULL;
  153|  12.8k|    struct dbmalloc_header* header = NULL;
  154|  12.8k|    if (size == 0 || size > 1e9) {
  ------------------
  |  Branch (154:9): [True: 0, False: 12.8k]
  |  Branch (154:22): [True: 0, False: 12.8k]
  ------------------
  155|      0|        dropbear_exit("m_realloc failed");
  156|      0|    }
  157|       |
  158|  12.8k|    header = get_header(ptr);
  159|  12.8k|    remove_alloc(header);
  160|       |
  161|  12.8k|    size = size + sizeof(struct dbmalloc_header);
  162|  12.8k|    mem = realloc(header, size);
  163|  12.8k|    if (mem == NULL) {
  ------------------
  |  Branch (163:9): [True: 0, False: 12.8k]
  ------------------
  164|      0|        dropbear_exit("m_realloc failed");
  165|      0|    }
  166|       |
  167|  12.8k|    header = (struct dbmalloc_header*)mem;
  168|  12.8k|    put_alloc(header);
  169|  12.8k|    return &mem[sizeof(struct dbmalloc_header)];
  170|  12.8k|}
m_free_direct:
  172|   891k|void m_free_direct(void* ptr) {
  173|   891k|    struct dbmalloc_header* header = NULL;
  174|   891k|    if (!ptr) {
  ------------------
  |  Branch (174:9): [True: 26.0k, False: 865k]
  ------------------
  175|  26.0k|        return;
  176|  26.0k|    }
  177|   865k|    header = get_header(ptr);
  178|   865k|    remove_alloc(header);
  179|   865k|    free(header);
  180|   865k|}
m_realloc_ltm:
  184|    886|void * m_realloc_ltm(void* ptr, size_t oldsize, size_t newsize) {
  185|    886|   (void)oldsize;
  186|    886|   return m_realloc(ptr, newsize);
  187|    886|}
m_free_ltm:
  189|  19.8k|void m_free_ltm(void *mem, size_t size) {
  190|  19.8k|   (void)size;
  191|  19.8k|   m_free_direct(mem);
  192|  19.8k|}
dbmalloc.c:put_alloc:
  102|  2.50M|static void put_alloc(struct dbmalloc_header *header) {
  103|  2.50M|    assert(header->next == NULL);
  104|  2.50M|    assert(header->prev == NULL);
  105|  2.50M|    if (staple) {
  ------------------
  |  Branch (105:9): [True: 2.49M, False: 1.56k]
  ------------------
  106|  2.49M|        staple->prev = header;
  107|  2.49M|    }
  108|  2.50M|    header->next = staple;
  109|  2.50M|    staple = header;
  110|  2.50M|}
dbmalloc.c:get_header:
  126|   878k|static struct dbmalloc_header* get_header(void* ptr) {
  127|   878k|    char* bptr = ptr;
  128|   878k|    return (struct dbmalloc_header*)&bptr[-sizeof(struct dbmalloc_header)];
  129|   878k|}
dbmalloc.c:remove_alloc:
  112|   878k|static void remove_alloc(struct dbmalloc_header *header) {
  113|   878k|    if (header->prev) {
  ------------------
  |  Branch (113:9): [True: 635k, False: 242k]
  ------------------
  114|   635k|        header->prev->next = header->next;
  115|   635k|    }
  116|   878k|    if (header->next) {
  ------------------
  |  Branch (116:9): [True: 878k, False: 0]
  ------------------
  117|   878k|        header->next->prev = header->prev;
  118|   878k|    }
  119|   878k|    if (staple == header) {
  ------------------
  |  Branch (119:9): [True: 242k, False: 635k]
  ------------------
  120|   242k|        staple = header->next;
  121|   242k|    }
  122|   878k|    header->prev = NULL;
  123|   878k|    header->next = NULL;
  124|   878k|}

fuzz_seed:
  153|  1.55k|void fuzz_seed(const unsigned char* dat, unsigned int len) {
  154|  1.55k|	hash_state hs;
  155|  1.55k|	sha256_init(&hs);
  156|  1.55k|	sha256_process(&hs, "fuzzfuzzfuzz", strlen("fuzzfuzzfuzz"));
  157|  1.55k|	sha256_process(&hs, dat, len);
  158|  1.55k|	sha256_done(&hs, hashpool);
  159|  1.55k|	counter = 0;
  160|  1.55k|	donerandinit = 1;
  161|  1.55k|}
genrandom:
  316|   271k|void genrandom(unsigned char* buf, unsigned int len) {
  317|       |
  318|   271k|	hash_state hs;
  319|   271k|	unsigned char hash[SHA256_HASH_SIZE];
  320|   271k|	unsigned int copylen;
  321|       |
  322|   271k|	if (!donerandinit) {
  ------------------
  |  Branch (322:6): [True: 0, False: 271k]
  ------------------
  323|      0|		dropbear_exit("seedrandom not done");
  324|      0|	}
  325|       |
  326|   543k|	while (len > 0) {
  ------------------
  |  Branch (326:9): [True: 271k, False: 271k]
  ------------------
  327|   271k|		sha256_init(&hs);
  328|   271k|		sha256_process(&hs, (void*)hashpool, sizeof(hashpool));
  329|   271k|		sha256_process(&hs, (void*)&counter, sizeof(counter));
  330|   271k|		sha256_done(&hs, hash);
  331|       |
  332|   271k|		counter++;
  333|   271k|		if (counter > MAX_COUNTER) {
  ------------------
  |  |   35|   271k|#define MAX_COUNTER (1<<30)
  ------------------
  |  Branch (333:7): [True: 0, False: 271k]
  ------------------
  334|      0|			seedrandom();
  335|      0|		}
  336|       |
  337|   271k|		copylen = MIN(len, SHA256_HASH_SIZE);
  338|   271k|		memcpy(buf, hash, copylen);
  339|   271k|		len -= copylen;
  340|   271k|		buf += copylen;
  341|   271k|	}
  342|   271k|	m_burn(hash, sizeof(hash));
  343|   271k|}

dropbear_close:
   95|  1.08k|void dropbear_close(const char* format, ...) {
   96|       |
   97|  1.08k|	va_list param;
   98|       |
   99|  1.08k|	va_start(param, format);
  100|  1.08k|	_dropbear_exit(EXIT_SUCCESS, format, param);
  101|      0|	va_end(param);
  102|       |
  103|      0|}
dropbear_exit:
  105|    470|void dropbear_exit(const char* format, ...) {
  106|       |
  107|    470|	va_list param;
  108|       |
  109|    470|	va_start(param, format);
  110|    470|	_dropbear_exit(EXIT_FAILURE, format, param);
  111|      0|	va_end(param);
  112|      0|}
fail_assert:
  132|      2|void fail_assert(const char* expr, const char* file, int line) {
  133|      2|	dropbear_exit("Failed assertion (%s:%d): `%s'", file, line, expr);
  134|      2|}
dropbear_log:
  148|  3.48k|void dropbear_log(int priority, const char* format, ...) {
  149|       |
  150|  3.48k|	va_list param;
  151|       |
  152|  3.48k|	va_start(param, format);
  153|  3.48k|	_dropbear_log(priority, format, param);
  154|  3.48k|	va_end(param);
  155|  3.48k|}
spawn_command:
  275|  3.05k|		int *ret_writefd, int *ret_readfd, int *ret_errfd, pid_t *ret_pid) {
  276|  3.05k|	int infds[2];
  277|  3.05k|	int outfds[2];
  278|  3.05k|	int errfds[2];
  279|  3.05k|	pid_t pid;
  280|       |
  281|  3.05k|	const int FDIN = 0;
  282|  3.05k|	const int FDOUT = 1;
  283|       |
  284|  3.05k|#if DROPBEAR_FUZZ
  285|  3.05k|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (285:6): [True: 3.05k, False: 0]
  ------------------
  286|  3.05k|		return fuzz_spawn_command(ret_writefd, ret_readfd, ret_errfd, ret_pid);
  287|  3.05k|	}
  288|      0|#endif
  289|       |
  290|       |	/* redirect stdin/stdout/stderr */
  291|      0|	if (pipe(infds) != 0) {
  ------------------
  |  Branch (291:6): [True: 0, False: 0]
  ------------------
  292|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  293|      0|	}
  294|      0|	if (pipe(outfds) != 0) {
  ------------------
  |  Branch (294:6): [True: 0, False: 0]
  ------------------
  295|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  296|      0|	}
  297|      0|	if (ret_errfd && pipe(errfds) != 0) {
  ------------------
  |  Branch (297:6): [True: 0, False: 0]
  |  Branch (297:19): [True: 0, False: 0]
  ------------------
  298|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  299|      0|	}
  300|       |
  301|       |#if DROPBEAR_VFORK
  302|       |	pid = vfork();
  303|       |#else
  304|      0|	pid = fork();
  305|      0|#endif
  306|       |
  307|      0|	if (pid < 0) {
  ------------------
  |  Branch (307:6): [True: 0, False: 0]
  ------------------
  308|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  309|      0|	}
  310|       |
  311|      0|	if (!pid) {
  ------------------
  |  Branch (311:6): [True: 0, False: 0]
  ------------------
  312|       |		/* child */
  313|       |
  314|      0|		TRACE(("back to normal sigchld"))
  315|       |		/* Revert to normal sigchld handling */
  316|      0|		if (signal(SIGCHLD, SIG_DFL) == SIG_ERR) {
  ------------------
  |  Branch (316:7): [True: 0, False: 0]
  ------------------
  317|      0|			dropbear_exit("signal() error");
  318|      0|		}
  319|       |
  320|       |		/* redirect stdin/stdout */
  321|       |
  322|      0|		if ((dup2(infds[FDIN], STDIN_FILENO) < 0) ||
  ------------------
  |  Branch (322:7): [True: 0, False: 0]
  ------------------
  323|      0|			(dup2(outfds[FDOUT], STDOUT_FILENO) < 0) ||
  ------------------
  |  Branch (323:4): [True: 0, False: 0]
  ------------------
  324|      0|			(ret_errfd && dup2(errfds[FDOUT], STDERR_FILENO) < 0)) {
  ------------------
  |  Branch (324:5): [True: 0, False: 0]
  |  Branch (324:18): [True: 0, False: 0]
  ------------------
  325|      0|			TRACE(("leave noptycommand: error redirecting FDs"))
  326|      0|			dropbear_exit("Child dup2() failure");
  327|      0|		}
  328|       |
  329|      0|		close(infds[FDOUT]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  330|      0|		close(infds[FDIN]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  331|      0|		close(outfds[FDIN]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  332|      0|		close(outfds[FDOUT]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  333|      0|		if (ret_errfd)
  ------------------
  |  Branch (333:7): [True: 0, False: 0]
  ------------------
  334|      0|		{
  335|      0|			close(errfds[FDIN]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  336|      0|			close(errfds[FDOUT]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  337|      0|		}
  338|       |
  339|      0|		exec_fn(exec_data);
  340|       |		/* not reached */
  341|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  342|      0|	} else {
  343|       |		/* parent */
  344|      0|		close(infds[FDIN]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  345|      0|		close(outfds[FDOUT]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  346|       |
  347|      0|		setnonblocking(outfds[FDIN]);
  348|      0|		setnonblocking(infds[FDOUT]);
  349|       |
  350|      0|		if (ret_errfd) {
  ------------------
  |  Branch (350:7): [True: 0, False: 0]
  ------------------
  351|      0|			close(errfds[FDOUT]);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  352|      0|			setnonblocking(errfds[FDIN]);
  353|      0|		}
  354|       |
  355|      0|		if (ret_pid) {
  ------------------
  |  Branch (355:7): [True: 0, False: 0]
  ------------------
  356|      0|			*ret_pid = pid;
  357|      0|		}
  358|       |
  359|      0|		*ret_writefd = infds[FDOUT];
  360|      0|		*ret_readfd = outfds[FDIN];
  361|      0|		if (ret_errfd) {
  ------------------
  |  Branch (361:7): [True: 0, False: 0]
  ------------------
  362|      0|			*ret_errfd = errfds[FDIN];
  363|      0|		}
  364|      0|		return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  365|      0|	}
  366|      0|}
m_close:
  560|  37.6k|void m_close(int fd) {
  561|  37.6k|	int val;
  562|       |
  563|  37.6k|	if (fd < 0) {
  ------------------
  |  Branch (563:6): [True: 27.4k, False: 10.2k]
  ------------------
  564|  27.4k|		return;
  565|  27.4k|	}
  566|       |
  567|  10.2k|	do {
  568|  10.2k|		val = close(fd);
  ------------------
  |  |   56|  10.2k|#define close(fd) wrapfd_close(fd)
  ------------------
  569|  10.2k|	} while (val < 0 && errno == EINTR);
  ------------------
  |  Branch (569:11): [True: 0, False: 10.2k]
  |  Branch (569:22): [True: 0, False: 0]
  ------------------
  570|       |
  571|  10.2k|	if (val < 0 && errno != EBADF) {
  ------------------
  |  Branch (571:6): [True: 0, False: 10.2k]
  |  Branch (571:17): [True: 0, False: 0]
  ------------------
  572|       |		/* Linux says EIO can happen */
  573|      0|		dropbear_exit("Error closing fd %d, %s", fd, strerror(errno));
  574|      0|	}
  575|  10.2k|}
setnonblocking:
  577|  3.11k|void setnonblocking(int fd) {
  578|       |
  579|  3.11k|	TRACE(("setnonblocking: %d", fd))
  580|       |
  581|  3.11k|#if DROPBEAR_FUZZ
  582|  3.11k|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (582:6): [True: 3.11k, False: 0]
  ------------------
  583|  3.11k|		return;
  584|  3.11k|	}
  585|      0|#endif
  586|       |
  587|      0|	if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0) {
  ------------------
  |  Branch (587:6): [True: 0, False: 0]
  ------------------
  588|      0|		if (errno == ENODEV) {
  ------------------
  |  Branch (588:7): [True: 0, False: 0]
  ------------------
  589|       |			/* Some devices (like /dev/null redirected in)
  590|       |			 * can't be set to non-blocking */
  591|      0|			TRACE(("ignoring ENODEV for setnonblocking"))
  592|      0|		} else {
  593|      0|		{
  594|      0|			dropbear_exit("Couldn't set nonblocking");
  595|      0|		}
  596|      0|		}
  597|      0|	}
  598|      0|	TRACE(("leave setnonblocking"))
  599|      0|}
disallow_core:
  601|      1|void disallow_core() {
  602|      1|	struct rlimit lim = {0};
  603|      1|	if (getrlimit(RLIMIT_CORE, &lim) < 0) {
  ------------------
  |  Branch (603:6): [True: 0, False: 1]
  ------------------
  604|      0|		TRACE(("getrlimit(RLIMIT_CORE) failed"));
  605|      0|	}
  606|      1|	lim.rlim_cur = 0;
  607|      1|	if (setrlimit(RLIMIT_CORE, &lim) < 0) {
  ------------------
  |  Branch (607:6): [True: 0, False: 1]
  ------------------
  608|      0|		TRACE(("setrlimit(RLIMIT_CORE) failed"));
  609|      0|	}
  610|      1|}
expand_homedir_path:
  638|     66|char * expand_homedir_path(const char *inpath) {
  639|     66|	struct passwd *pw = NULL;
  640|     66|	if (strncmp(inpath, "~/", 2) == 0) {
  ------------------
  |  Branch (640:6): [True: 0, False: 66]
  ------------------
  641|      0|		char *homedir = getenv("HOME");
  642|       |
  643|      0|		if (!homedir) {
  ------------------
  |  Branch (643:7): [True: 0, False: 0]
  ------------------
  644|      0|			pw = getpwuid(getuid());
  ------------------
  |  |  109|      0|#define getpwuid(x) fuzz_getpwuid(x)
  ------------------
  645|      0|			if (pw) {
  ------------------
  |  Branch (645:8): [True: 0, False: 0]
  ------------------
  646|      0|				homedir = pw->pw_dir;
  647|      0|			}
  648|      0|		}
  649|       |
  650|      0|		if (homedir) {
  ------------------
  |  Branch (650:7): [True: 0, False: 0]
  ------------------
  651|      0|			int len = strlen(inpath)-2 + strlen(homedir) + 2;
  652|      0|			char *buf = m_malloc(len);
  653|      0|			snprintf(buf, len, "%s/%s", homedir, inpath+2);
  654|      0|			return buf;
  655|      0|		}
  656|      0|	}
  657|       |
  658|       |	/* Fallback */
  659|     66|	return m_strdup(inpath);
  660|     66|}
gettime_wrapper:
  675|  1.38M|void gettime_wrapper(struct timespec *now) {
  676|  1.38M|	struct timeval tv;
  677|  1.38M|#if DROPBEAR_FUZZ
  678|  1.38M|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (678:6): [True: 1.38M, False: 0]
  ------------------
  679|       |		/* time stands still when fuzzing */
  680|  1.38M|		now->tv_sec = 5;
  681|  1.38M|		now->tv_nsec = 0;
  682|  1.38M|	}
  683|  1.38M|#endif
  684|       |
  685|  1.38M|#if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC)
  686|       |	/* POSIX monotonic clock. Newer Linux, BSD, MacOSX >10.12 */
  687|  1.38M|	if (clock_gettime(CLOCK_MONOTONIC, now) == 0) {
  ------------------
  |  Branch (687:6): [True: 1.38M, False: 0]
  ------------------
  688|  1.38M|		return;
  689|  1.38M|	}
  690|      0|#endif
  691|       |
  692|      0|#if defined(__linux__) && defined(SYS_clock_gettime)
  693|      0|	{
  694|       |	/* Old linux toolchain - kernel might support it but not the build headers */
  695|       |	/* Also glibc <2.17 requires -lrt which we neglect to add */
  696|      0|	static int linux_monotonic_failed = 0;
  697|      0|	if (!linux_monotonic_failed) {
  ------------------
  |  Branch (697:6): [True: 0, False: 0]
  ------------------
  698|       |		/* CLOCK_MONOTONIC isn't in some headers */
  699|      0|		int clock_source_monotonic = 1; 
  700|      0|		if (syscall(SYS_clock_gettime, clock_source_monotonic, now) == 0) {
  ------------------
  |  Branch (700:7): [True: 0, False: 0]
  ------------------
  701|      0|			return;
  702|      0|		} else {
  703|       |			/* Don't try again */
  704|      0|			linux_monotonic_failed = 1;
  705|      0|		}
  706|      0|	}
  707|      0|	}
  708|      0|#endif /* linux fallback clock_gettime */
  709|       |
  710|       |#if defined(HAVE_MACH_ABSOLUTE_TIME)
  711|       |	{
  712|       |	/* OS X pre 10.12, see https://developer.apple.com/library/mac/qa/qa1398/_index.html */
  713|       |	static mach_timebase_info_data_t timebase_info;
  714|       |	uint64_t scaled_time;
  715|       |	if (timebase_info.denom == 0) {
  716|       |		mach_timebase_info(&timebase_info);
  717|       |	}
  718|       |	scaled_time = mach_absolute_time() * timebase_info.numer / timebase_info.denom;
  719|       |	now->tv_sec = scaled_time / 1000000000;
  720|       |	now->tv_nsec = scaled_time % 1000000000;
  721|       |	}
  722|       |#endif /* osx mach_absolute_time */
  723|       |
  724|       |	/* Fallback for everything else - this will sometimes go backwards */
  725|      0|	gettimeofday(&tv, NULL);
  726|      0|	now->tv_sec = tv.tv_sec;
  727|      0|	now->tv_nsec = 1000*(long)tv.tv_usec;
  728|      0|}
monotonic_now:
  731|  1.38M|time_t monotonic_now() {
  732|  1.38M|	struct timespec ts;
  733|  1.38M|	gettime_wrapper(&ts);
  734|  1.38M|	return ts.tv_sec;
  735|  1.38M|}

buf_get_dss_pub_key:
   46|      1|int buf_get_dss_pub_key(buffer* buf, dropbear_dss_key *key) {
   47|      1|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
   48|       |
   49|      1|	TRACE(("enter buf_get_dss_pub_key"))
   50|      1|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|      1|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 1]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   51|      1|	m_mp_alloc_init_multi(&key->p, &key->q, &key->g, &key->y, NULL);
   52|      1|	key->x = NULL;
   53|       |
   54|      1|	buf_incrpos(buf, 4+SSH_SIGNKEY_DSS_LEN); /* int + "ssh-dss" */
  ------------------
  |  |  111|      1|#define SSH_SIGNKEY_DSS_LEN 7
  ------------------
   55|      1|	if (buf_getmpint(buf, key->p) == DROPBEAR_FAILURE
  ------------------
  |  |  103|      2|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (55:6): [True: 0, False: 1]
  ------------------
   56|      1|	 || buf_getmpint(buf, key->q) == DROPBEAR_FAILURE
  ------------------
  |  |  103|      2|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (56:6): [True: 0, False: 1]
  ------------------
   57|      1|	 || buf_getmpint(buf, key->g) == DROPBEAR_FAILURE
  ------------------
  |  |  103|      2|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (57:6): [True: 0, False: 1]
  ------------------
   58|      1|	 || buf_getmpint(buf, key->y) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (58:6): [True: 0, False: 1]
  ------------------
   59|      0|		TRACE(("leave buf_get_dss_pub_key: failed reading mpints"))
   60|      0|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   61|      0|		goto out;
   62|      0|	}
   63|       |
   64|      1|	if (mp_count_bits(key->p) != DSS_P_BITS) {
  ------------------
  |  |   44|      1|#define DSS_P_BITS 1024
  ------------------
  |  Branch (64:6): [True: 0, False: 1]
  ------------------
   65|      0|		dropbear_log(LOG_WARNING, "Bad DSS p");
   66|      0|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   67|      0|		goto out;
   68|      0|	}
   69|       |
   70|      1|	if (mp_count_bits(key->q) != DSS_Q_BITS) {
  ------------------
  |  |   45|      1|#define DSS_Q_BITS 160
  ------------------
  |  Branch (70:6): [True: 0, False: 1]
  ------------------
   71|      0|		dropbear_log(LOG_WARNING, "Bad DSS q");
   72|      0|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   73|      0|		goto out;
   74|      0|	}
   75|       |
   76|       |	/* test 1 < g < p */
   77|      1|	if (mp_cmp_d(key->g, 1) != MP_GT) {
  ------------------
  |  |  156|      1|#define MP_GT         1   /* greater than */
  ------------------
  |  Branch (77:6): [True: 0, False: 1]
  ------------------
   78|      0|		dropbear_log(LOG_WARNING, "Bad DSS g");
   79|      0|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   80|      0|		goto out;
   81|      0|	}
   82|      1|	if (mp_cmp(key->g, key->p) != MP_LT) {
  ------------------
  |  |  154|      1|#define MP_LT        -1   /* less than */
  ------------------
  |  Branch (82:6): [True: 0, False: 1]
  ------------------
   83|      0|		dropbear_log(LOG_WARNING, "Bad DSS g");
   84|      0|		ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   85|      0|		goto out;
   86|      0|	}
   87|       |
   88|      1|	ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      1|#define DROPBEAR_SUCCESS 0
  ------------------
   89|      1|	TRACE(("leave buf_get_dss_pub_key: success"))
   90|      1|out:
   91|      1|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (91:6): [True: 0, False: 1]
  ------------------
   92|      0|		m_mp_free_multi(&key->p, &key->q, &key->g, &key->y, NULL);
   93|      0|	}
   94|      1|	return ret;
   95|      1|}
buf_get_dss_priv_key:
  100|      1|int buf_get_dss_priv_key(buffer* buf, dropbear_dss_key *key) {
  101|       |
  102|      1|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  103|       |
  104|      1|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|      1|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 1]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  105|       |
  106|      1|	ret = buf_get_dss_pub_key(buf, key);
  107|      1|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (107:6): [True: 0, False: 1]
  ------------------
  108|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  109|      0|	}
  110|       |
  111|      1|	m_mp_alloc_init_multi(&key->x, NULL);
  112|      1|	ret = buf_getmpint(buf, key->x);
  113|      1|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (113:6): [True: 0, False: 1]
  ------------------
  114|      0|		m_mp_free_multi(&key->x, NULL);
  115|      0|	}
  116|       |
  117|      1|	return ret;
  118|      1|}
dss_key_free:
  122|      1|void dss_key_free(dropbear_dss_key *key) {
  123|       |
  124|      1|	TRACE2(("enter dsa_key_free"))
  125|      1|	if (key == NULL) {
  ------------------
  |  Branch (125:6): [True: 1, False: 0]
  ------------------
  126|      1|		TRACE2(("enter dsa_key_free: key == NULL"))
  127|      1|		return;
  128|      1|	}
  129|      0|	m_mp_free_multi(&key->p, &key->q, &key->g, &key->y, &key->x, NULL);
  130|      0|	m_free(key);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  131|      0|	TRACE2(("leave dsa_key_free"))
  132|      0|}

dropbear_ecc_fill_dp:
   47|      1|void dropbear_ecc_fill_dp() {
   48|      1|	struct dropbear_ecc_curve **curve;
   49|       |	/* libtomcrypt guarantees they're ordered by size */
   50|      1|	const ltc_ecc_set_type *dp = ltc_ecc_sets;
   51|      4|	for (curve = dropbear_ecc_curves; *curve; curve++) {
  ------------------
  |  Branch (51:36): [True: 3, False: 1]
  ------------------
   52|     10|		for (;dp->size > 0; dp++) {
  ------------------
  |  Branch (52:9): [True: 10, False: 0]
  ------------------
   53|     10|			if (dp->size == (*curve)->ltc_size) {
  ------------------
  |  Branch (53:8): [True: 3, False: 7]
  ------------------
   54|      3|				(*curve)->dp = dp;
   55|      3|				break;
   56|      3|			}
   57|     10|		}
   58|      3|		if (!(*curve)->dp) {
  ------------------
  |  Branch (58:7): [True: 0, False: 3]
  ------------------
   59|      0|			dropbear_exit("Missing ECC params %s", (*curve)->name);
   60|      0|		}
   61|      3|	}
   62|      1|}
new_ecc_key:
   75|      1|ecc_key * new_ecc_key(void) {
   76|      1|	ecc_key *key = m_malloc(sizeof(*key));
   77|      1|	m_mp_alloc_init_multi((mp_int**)&key->pubkey.x, (mp_int**)&key->pubkey.y, 
   78|      1|		(mp_int**)&key->pubkey.z, (mp_int**)&key->k, NULL);
   79|      1|	return key;
   80|      1|}
buf_get_ecc_raw_pubkey:
  147|      1|ecc_key * buf_get_ecc_raw_pubkey(buffer *buf, const struct dropbear_ecc_curve *curve) {
  148|      1|	ecc_key *key = NULL;
  149|      1|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  150|      1|	const unsigned int size = curve->dp->size;
  151|      1|	unsigned char first;
  152|       |
  153|      1|	TRACE(("enter buf_get_ecc_raw_pubkey"))
  154|       |
  155|      1|	buf_setpos(buf, 0);
  156|      1|	first = buf_getbyte(buf);
  157|      1|	if (first == 2 || first == 3) {
  ------------------
  |  Branch (157:6): [True: 0, False: 1]
  |  Branch (157:20): [True: 0, False: 1]
  ------------------
  158|      0|		dropbear_log(LOG_WARNING, "Dropbear doesn't support ECC point compression");
  159|      0|		return NULL;
  160|      0|	}
  161|      1|	if (first != 4 || buf->len != 1+2*size) {
  ------------------
  |  Branch (161:6): [True: 0, False: 1]
  |  Branch (161:20): [True: 0, False: 1]
  ------------------
  162|      0|		TRACE(("leave, wrong size"))
  163|      0|		return NULL;
  164|      0|	}
  165|       |
  166|      1|	key = new_ecc_key();
  167|      1|	key->dp = curve->dp;
  168|       |
  169|      1|	if (mp_from_ubin(key->pubkey.x, buf_getptr(buf, size), size) != MP_OKAY) {
  ------------------
  |  |  161|      1|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (169:6): [True: 0, False: 1]
  ------------------
  170|      0|		TRACE(("failed to read x"))
  171|      0|		goto out;
  172|      0|	}
  173|      1|	buf_incrpos(buf, size);
  174|       |
  175|      1|	if (mp_from_ubin(key->pubkey.y, buf_getptr(buf, size), size) != MP_OKAY) {
  ------------------
  |  |  161|      1|#define MP_OKAY       0   /* no error */
  ------------------
  |  Branch (175:6): [True: 0, False: 1]
  ------------------
  176|      0|		TRACE(("failed to read y"))
  177|      0|		goto out;
  178|      0|	}
  179|      1|	buf_incrpos(buf, size);
  180|       |
  181|      1|	mp_set(key->pubkey.z, 1);
  182|       |
  183|      1|	if (ecc_is_point(key) != CRYPT_OK) {
  ------------------
  |  Branch (183:6): [True: 0, False: 1]
  ------------------
  184|      0|		TRACE(("failed, not a point"))
  185|      0|		goto out;
  186|      0|	}
  187|       |
  188|       |   /* SEC1 3.2.3.1 Check that Q != 0 */
  189|      1|	if (mp_cmp_d(key->pubkey.x, 0) == LTC_MP_EQ) {
  ------------------
  |  |   13|      1|#define LTC_MP_EQ    0
  ------------------
  |  Branch (189:6): [True: 0, False: 1]
  ------------------
  190|      0|		TRACE(("failed, x == 0"))
  191|      0|		goto out;
  192|      0|	}
  193|      1|	if (mp_cmp_d(key->pubkey.y, 0) == LTC_MP_EQ) {
  ------------------
  |  |   13|      1|#define LTC_MP_EQ    0
  ------------------
  |  Branch (193:6): [True: 0, False: 1]
  ------------------
  194|      0|		TRACE(("failed, y == 0"))
  195|      0|		goto out;
  196|      0|	}
  197|       |
  198|      1|	ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      1|#define DROPBEAR_SUCCESS 0
  ------------------
  199|       |
  200|      1|	out:
  201|      1|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (201:6): [True: 0, False: 1]
  ------------------
  202|      0|		if (key) {
  ------------------
  |  Branch (202:7): [True: 0, False: 0]
  ------------------
  203|      0|			ecc_free(key);
  204|      0|			m_free(key);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  205|      0|			key = NULL;
  206|      0|		}
  207|      0|	}
  208|       |
  209|      1|	return key;
  210|       |
  211|      1|}
ecc.c:ecc_is_point:
   85|      1|{
   86|      1|	mp_int *prime, *b, *t1, *t2;
   87|      1|	int err;
   88|       |	
   89|      1|	m_mp_alloc_init_multi(&prime, &b, &t1, &t2, NULL);
   90|       |	
   91|       |   /* load prime and b */
   92|      1|	if ((err = mp_read_radix(prime, key->dp->prime, 16)) != CRYPT_OK)                          { goto error; }
  ------------------
  |  Branch (92:6): [True: 0, False: 1]
  ------------------
   93|      1|	if ((err = mp_read_radix(b, key->dp->B, 16)) != CRYPT_OK)                                  { goto error; }
  ------------------
  |  Branch (93:6): [True: 0, False: 1]
  ------------------
   94|       |	
   95|       |   /* compute y^2 */
   96|      1|	if ((err = mp_sqr(key->pubkey.y, t1)) != CRYPT_OK)                                         { goto error; }
  ------------------
  |  Branch (96:6): [True: 0, False: 1]
  ------------------
   97|       |	
   98|       |   /* compute x^3 */
   99|      1|	if ((err = mp_sqr(key->pubkey.x, t2)) != CRYPT_OK)                                         { goto error; }
  ------------------
  |  Branch (99:6): [True: 0, False: 1]
  ------------------
  100|      1|	if ((err = mp_mod(t2, prime, t2)) != CRYPT_OK)                                             { goto error; }
  ------------------
  |  Branch (100:6): [True: 0, False: 1]
  ------------------
  101|      1|	if ((err = mp_mul(key->pubkey.x, t2, t2)) != CRYPT_OK)                                     { goto error; }
  ------------------
  |  Branch (101:6): [True: 0, False: 1]
  ------------------
  102|       |	
  103|       |   /* compute y^2 - x^3 */
  104|      1|	if ((err = mp_sub(t1, t2, t1)) != CRYPT_OK)                                                { goto error; }
  ------------------
  |  Branch (104:6): [True: 0, False: 1]
  ------------------
  105|       |	
  106|       |   /* compute y^2 - x^3 + 3x */
  107|      1|	if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK)                                     { goto error; }
  ------------------
  |  Branch (107:6): [True: 0, False: 1]
  ------------------
  108|      1|	if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK)                                     { goto error; }
  ------------------
  |  Branch (108:6): [True: 0, False: 1]
  ------------------
  109|      1|	if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK)                                     { goto error; }
  ------------------
  |  Branch (109:6): [True: 0, False: 1]
  ------------------
  110|      1|	if ((err = mp_mod(t1, prime, t1)) != CRYPT_OK)                                             { goto error; }
  ------------------
  |  Branch (110:6): [True: 0, False: 1]
  ------------------
  111|      1|	while (mp_cmp_d(t1, 0) == LTC_MP_LT) {
  ------------------
  |  |   12|      1|#define LTC_MP_LT   -1
  ------------------
  |  Branch (111:9): [True: 0, False: 1]
  ------------------
  112|      0|		if ((err = mp_add(t1, prime, t1)) != CRYPT_OK)                                          { goto error; }
  ------------------
  |  Branch (112:7): [True: 0, False: 0]
  ------------------
  113|      0|	}
  114|      1|	while (mp_cmp(t1, prime) != LTC_MP_LT) {
  ------------------
  |  |   12|      1|#define LTC_MP_LT   -1
  ------------------
  |  Branch (114:9): [True: 0, False: 1]
  ------------------
  115|      0|		if ((err = mp_sub(t1, prime, t1)) != CRYPT_OK)                                          { goto error; }
  ------------------
  |  Branch (115:7): [True: 0, False: 0]
  ------------------
  116|      0|	}
  117|       |	
  118|       |   /* compare to b */
  119|      1|	if (mp_cmp(t1, b) != LTC_MP_EQ) {
  ------------------
  |  |   13|      1|#define LTC_MP_EQ    0
  ------------------
  |  Branch (119:6): [True: 0, False: 1]
  ------------------
  120|      0|		err = CRYPT_INVALID_PACKET;
  121|      1|	} else {
  122|      1|		err = CRYPT_OK;
  123|      1|	}
  124|       |	
  125|      1|	error:
  126|      1|	mp_clear_multi(prime, b, t1, t2, NULL);
  127|      1|	m_free(prime);
  ------------------
  |  |   24|      1|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  128|      1|	m_free(b);
  ------------------
  |  |   24|      1|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  129|      1|	m_free(t1);
  ------------------
  |  |   24|      1|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  130|      1|	m_free(t2);
  ------------------
  |  |   24|      1|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  131|      1|	return err;
  132|      1|}

signkey_is_ecdsa:
   11|      4|{
   12|      4|	return type == DROPBEAR_SIGNKEY_ECDSA_NISTP256
  ------------------
  |  Branch (12:9): [True: 1, False: 3]
  ------------------
   13|      4|		|| type == DROPBEAR_SIGNKEY_ECDSA_NISTP384
  ------------------
  |  Branch (13:6): [True: 0, False: 3]
  ------------------
   14|      4|		|| type == DROPBEAR_SIGNKEY_ECDSA_NISTP521;
  ------------------
  |  Branch (14:6): [True: 0, False: 3]
  ------------------
   15|      4|}
buf_get_ecdsa_pub_key:
   77|      1|ecc_key *buf_get_ecdsa_pub_key(buffer* buf) {
   78|      1|	unsigned char *key_ident = NULL, *identifier = NULL;
   79|      1|	unsigned int key_ident_len, identifier_len;
   80|      1|	buffer *q_buf = NULL;
   81|      1|	struct dropbear_ecc_curve **curve;
   82|      1|	ecc_key *new_key = NULL;
   83|       |
   84|       |	/* string   "ecdsa-sha2-[identifier]" or "sk-ecdsa-sha2-nistp256@openssh.com" */
   85|      1|	key_ident = (unsigned char*)buf_getstring(buf, &key_ident_len);
   86|       |	/* string   "[identifier]" */
   87|      1|	identifier = (unsigned char*)buf_getstring(buf, &identifier_len);
   88|       |
   89|      1|	if (strcmp (key_ident, "sk-ecdsa-sha2-nistp256@openssh.com") == 0) {
  ------------------
  |  Branch (89:6): [True: 0, False: 1]
  ------------------
   90|      0|		if (strcmp (identifier, "nistp256") != 0) {
  ------------------
  |  Branch (90:7): [True: 0, False: 0]
  ------------------
   91|      0|			TRACE(("mismatching identifiers"))
   92|      0|			goto out;
   93|      0|		}
   94|      1|	} else {
   95|      1|		if (key_ident_len != identifier_len + strlen ("ecdsa-sha2-")) {
  ------------------
  |  Branch (95:7): [True: 0, False: 1]
  ------------------
   96|      0|			TRACE(("Bad identifier lengths"))
   97|      0|			goto out;
   98|      0|		}
   99|      1|		if (memcmp(&key_ident[strlen ("ecdsa-sha2-")], identifier, identifier_len) != 0) {
  ------------------
  |  Branch (99:7): [True: 0, False: 1]
  ------------------
  100|      0|			TRACE(("mismatching identifiers"))
  101|      0|			goto out;
  102|      0|		}
  103|      1|	}
  104|       |
  105|      1|	for (curve = dropbear_ecc_curves; *curve; curve++) {
  ------------------
  |  Branch (105:36): [True: 1, False: 0]
  ------------------
  106|      1|		if (memcmp(identifier, (char*)(*curve)->name, strlen((char*)(*curve)->name)) == 0) {
  ------------------
  |  Branch (106:7): [True: 1, False: 0]
  ------------------
  107|      1|			break;
  108|      1|		}
  109|      1|	}
  110|      1|	if (!*curve) {
  ------------------
  |  Branch (110:6): [True: 0, False: 1]
  ------------------
  111|      0|		TRACE(("couldn't match ecc curve"))
  112|      0|		goto out;
  113|      0|	}
  114|       |
  115|       |	/* string Q */
  116|      1|	q_buf = buf_getstringbuf(buf);
  117|      1|	new_key = buf_get_ecc_raw_pubkey(q_buf, *curve);
  118|       |
  119|      1|out:
  120|      1|	m_free(key_ident);
  ------------------
  |  |   24|      1|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  121|      1|	m_free(identifier);
  ------------------
  |  |   24|      1|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  122|      1|	if (q_buf) {
  ------------------
  |  Branch (122:6): [True: 1, False: 0]
  ------------------
  123|      1|		buf_free(q_buf);
  124|      1|		q_buf = NULL;
  125|      1|	}
  126|      1|	TRACE(("leave buf_get_ecdsa_pub_key"))	
  127|      1|	return new_key;
  128|      1|}
buf_get_ecdsa_priv_key:
  130|      1|ecc_key *buf_get_ecdsa_priv_key(buffer *buf) {
  131|      1|	ecc_key *new_key = NULL;
  132|      1|	TRACE(("enter buf_get_ecdsa_priv_key"))
  133|      1|	new_key = buf_get_ecdsa_pub_key(buf);
  134|      1|	if (!new_key) {
  ------------------
  |  Branch (134:6): [True: 0, False: 1]
  ------------------
  135|      0|		return NULL;
  136|      0|	}
  137|       |
  138|      1|	if (buf_getmpint(buf, new_key->k) != DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|      1|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (138:6): [True: 0, False: 1]
  ------------------
  139|      0|		ecc_free(new_key);
  140|      0|		m_free(new_key);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  141|      0|		return NULL;
  142|      0|	}
  143|       |
  144|      1|	return new_key;
  145|      1|}

buf_get_ed25519_priv_key:
   78|      1|int buf_get_ed25519_priv_key(buffer *buf, dropbear_ed25519_key *key) {
   79|       |
   80|      1|	unsigned int len;
   81|       |
   82|      1|	TRACE(("enter buf_get_ed25519_priv_key"))
   83|      1|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|      1|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 1]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   84|       |
   85|      1|	buf_incrpos(buf, 4+SSH_SIGNKEY_ED25519_LEN); /* int + "ssh-ed25519" */
  ------------------
  |  |  115|      1|#define SSH_SIGNKEY_ED25519_LEN 11
  ------------------
   86|       |
   87|      1|	len = buf_getint(buf);
   88|      1|	if (len != CURVE25519_LEN*2 || buf->len - buf->pos < len) {
  ------------------
  |  |   34|      1|#define CURVE25519_LEN 32
  ------------------
  |  Branch (88:6): [True: 0, False: 1]
  |  Branch (88:33): [True: 0, False: 1]
  ------------------
   89|      0|		TRACE(("leave buf_get_ed25519_priv_key: failure"))
   90|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
   91|      0|	}
   92|       |
   93|      1|	memcpy(key->priv, buf_getptr(buf, CURVE25519_LEN), CURVE25519_LEN);
  ------------------
  |  |   34|      1|#define CURVE25519_LEN 32
  ------------------
              	memcpy(key->priv, buf_getptr(buf, CURVE25519_LEN), CURVE25519_LEN);
  ------------------
  |  |   34|      1|#define CURVE25519_LEN 32
  ------------------
   94|      1|	buf_incrpos(buf, CURVE25519_LEN);
  ------------------
  |  |   34|      1|#define CURVE25519_LEN 32
  ------------------
   95|      1|	memcpy(key->pub, buf_getptr(buf, CURVE25519_LEN), CURVE25519_LEN);
  ------------------
  |  |   34|      1|#define CURVE25519_LEN 32
  ------------------
              	memcpy(key->pub, buf_getptr(buf, CURVE25519_LEN), CURVE25519_LEN);
  ------------------
  |  |   34|      1|#define CURVE25519_LEN 32
  ------------------
   96|      1|	buf_incrpos(buf, CURVE25519_LEN);
  ------------------
  |  |   34|      1|#define CURVE25519_LEN 32
  ------------------
   97|       |
   98|      1|	TRACE(("leave buf_get_ed25519_priv_key: success"))
   99|      1|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      1|#define DROPBEAR_SUCCESS 0
  ------------------
  100|      1|}
ed25519_key_free:
  103|      1|void ed25519_key_free(dropbear_ed25519_key *key) {
  104|       |
  105|      1|	TRACE2(("enter ed25519_key_free"))
  106|       |
  107|      1|	if (key == NULL) {
  ------------------
  |  Branch (107:6): [True: 1, False: 0]
  ------------------
  108|      1|		TRACE2(("leave ed25519_key_free: key == NULL"))
  109|      1|		return;
  110|      1|	}
  111|      0|	m_burn(key->priv, CURVE25519_LEN);
  ------------------
  |  |   34|      0|#define CURVE25519_LEN 32
  ------------------
  112|      0|	m_free(key);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  113|       |
  114|      0|	TRACE2(("leave ed25519_key_free"))
  115|      0|}

list_append:
    5|    101|void list_append(m_list *list, void *item) {
    6|    101|	m_list_elem *elem;
    7|       |	
    8|    101|	elem = m_malloc(sizeof(*elem));
    9|    101|	elem->item = item;
   10|    101|	elem->list = list;
   11|    101|	elem->next = NULL;
   12|    101|	if (!list->first) {
  ------------------
  |  Branch (12:6): [True: 101, False: 0]
  ------------------
   13|    101|		list->first = elem;
   14|    101|		elem->prev = NULL;
   15|    101|	} else {
   16|      0|		elem->prev = list->last;
   17|      0|		list->last->next = elem;
   18|      0|	}
   19|    101|	list->last = elem;
   20|    101|}
list_remove:
   28|    101|void * list_remove(m_list_elem *elem) {
   29|    101|	void *item = elem->item;
   30|    101|	m_list *list = elem->list;
   31|    101|	if (list->first == elem)
  ------------------
  |  Branch (31:6): [True: 101, False: 0]
  ------------------
   32|    101|	{
   33|    101|		list->first = elem->next;
   34|    101|	}
   35|    101|	if (list->last == elem)
  ------------------
  |  Branch (35:6): [True: 101, False: 0]
  ------------------
   36|    101|	{
   37|    101|		list->last = elem->prev;
   38|    101|	}
   39|    101|	if (elem->prev)
  ------------------
  |  Branch (39:6): [True: 0, False: 101]
  ------------------
   40|      0|	{
   41|      0|		elem->prev->next = elem->next;
   42|      0|	}
   43|    101|	if (elem->next)
  ------------------
  |  Branch (43:6): [True: 0, False: 101]
  ------------------
   44|      0|	{
   45|      0|		elem->next->prev = elem->prev;
   46|      0|	}
   47|    101|	m_free(elem);
  ------------------
  |  |   24|    101|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   48|    101|	return item;
   49|    101|}

listeners_initialise:
   30|  1.55k|void listeners_initialise() {
   31|       |
   32|       |	/* just one slot to start with */
   33|  1.55k|	ses.listeners = (struct Listener**)m_malloc(sizeof(struct Listener*));
   34|  1.55k|	ses.listensize = 1;
   35|  1.55k|	ses.listeners[0] = NULL;
   36|       |
   37|  1.55k|}
set_listener_fds:
   39|   504k|void set_listener_fds(fd_set * readfds) {
   40|       |
   41|   504k|	unsigned int i, j;
   42|   504k|	struct Listener *listener;
   43|       |
   44|       |	/* check each in turn */
   45|  1.00M|	for (i = 0; i < ses.listensize; i++) {
  ------------------
  |  Branch (45:14): [True: 504k, False: 504k]
  ------------------
   46|   504k|		listener = ses.listeners[i];
   47|   504k|		if (listener != NULL) {
  ------------------
  |  Branch (47:7): [True: 0, False: 504k]
  ------------------
   48|      0|			for (j = 0; j < listener->nsocks; j++) {
  ------------------
  |  Branch (48:16): [True: 0, False: 0]
  ------------------
   49|      0|				FD_SET(listener->socks[j], readfds);
   50|      0|			}
   51|      0|		}
   52|   504k|	}
   53|   504k|}
handle_listeners:
   56|   503k|void handle_listeners(const fd_set * readfds) {
   57|       |
   58|   503k|	unsigned int i, j;
   59|   503k|	struct Listener *listener;
   60|   503k|	int sock;
   61|       |
   62|       |	/* check each in turn */
   63|  1.00M|	for (i = 0; i < ses.listensize; i++) {
  ------------------
  |  Branch (63:14): [True: 503k, False: 503k]
  ------------------
   64|   503k|		listener = ses.listeners[i];
   65|   503k|		if (listener != NULL) {
  ------------------
  |  Branch (65:7): [True: 0, False: 503k]
  ------------------
   66|      0|			for (j = 0; j < listener->nsocks; j++) {
  ------------------
  |  Branch (66:16): [True: 0, False: 0]
  ------------------
   67|      0|				sock = listener->socks[j];
   68|      0|				if (FD_ISSET(sock, readfds)) {
   69|      0|					listener->acceptor(listener, sock);
   70|      0|				}
   71|      0|			}
   72|      0|		}
   73|   503k|	}
   74|   503k|} /* Woo brace matching */
get_listener:
  136|    206|		int (*match)(const void*, const void*)) {
  137|       |
  138|    206|	unsigned int i;
  139|    206|	struct Listener* listener;
  140|       |
  141|    412|	for (i = 0, listener = ses.listeners[i]; i < ses.listensize; i++) {
  ------------------
  |  Branch (141:43): [True: 206, False: 206]
  ------------------
  142|    206|		if (listener && listener->type == type
  ------------------
  |  Branch (142:7): [True: 0, False: 206]
  |  Branch (142:19): [True: 0, False: 0]
  ------------------
  143|    206|				&& match(typedata, listener->typedata)) {
  ------------------
  |  Branch (143:8): [True: 0, False: 0]
  ------------------
  144|      0|			return listener;
  145|      0|		}
  146|    206|	}
  147|       |
  148|    206|	return NULL;
  149|    206|}
remove_all_listeners:
  166|  1.55k|void remove_all_listeners(void) {
  167|  1.55k|	unsigned int i;
  168|  3.11k|	for (i = 0; i < ses.listensize; i++) {
  ------------------
  |  Branch (168:14): [True: 1.55k, False: 1.55k]
  ------------------
  169|  1.55k|		if (ses.listeners[i]) {
  ------------------
  |  Branch (169:7): [True: 0, False: 1.55k]
  ------------------
  170|      0|			remove_listener(ses.listeners[i]);
  171|      0|		}
  172|  1.55k|	}
  173|  1.55k|	m_free(ses.listeners);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  174|  1.55k|}

login_logout:
  219|      1|{
  220|      1|	li->type = LTYPE_LOGOUT;
  ------------------
  |  |  119|      1|#define LTYPE_LOGOUT   8
  ------------------
  221|      1|	return login_write(li);
  222|      1|}
login_alloc_entry:
  237|      1|{
  238|      1|	struct logininfo *newli;
  239|       |
  240|      1|	newli = (struct logininfo *) m_malloc (sizeof(*newli));
  241|      1|	(void)login_init_entry(newli, pid, username, hostname, line);
  242|      1|	return newli;
  243|      1|}
login_free_entry:
  249|      1|{
  250|      1|	m_free(li);
  ------------------
  |  |   24|      1|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  251|      1|}
login_init_entry:
  265|      1|{
  266|      1|	struct passwd *pw;
  267|       |
  268|      1|	memset(li, 0, sizeof(*li));
  269|       |
  270|      1|	li->pid = pid;
  271|       |
  272|       |	/* set the line information */
  273|      1|	if (line)
  ------------------
  |  Branch (273:6): [True: 1, False: 0]
  ------------------
  274|      1|		line_fullname(li->line, line, sizeof(li->line));
  275|       |
  276|      1|	if (username) {
  ------------------
  |  Branch (276:6): [True: 0, False: 1]
  ------------------
  277|      0|		strlcpy(li->username, username, sizeof(li->username));
  278|      0|		pw = getpwnam(li->username);
  ------------------
  |  |  108|      0|#define getpwnam(x) fuzz_getpwnam(x)
  ------------------
  279|      0|		if (pw == NULL)
  ------------------
  |  Branch (279:7): [True: 0, False: 0]
  ------------------
  280|      0|			dropbear_exit("login_init_entry: Cannot find user \"%s\"",
  281|      0|					li->username);
  282|      0|		li->uid = pw->pw_uid;
  283|      0|	}
  284|       |
  285|      1|	if (hostname)
  ------------------
  |  Branch (285:6): [True: 1, False: 0]
  ------------------
  286|      1|		strlcpy(li->hostname, hostname, sizeof(li->hostname));
  287|       |
  288|      1|	return 1;
  289|      1|}
login_set_current_time:
  299|      1|{
  300|      1|	struct timeval tv;
  301|       |
  302|      1|	gettimeofday(&tv, NULL);
  303|       |
  304|      1|	li->tv_sec = tv.tv_sec;
  305|      1|	li->tv_usec = tv.tv_usec;
  306|      1|}
login_write:
  314|      1|{
  315|      1|#ifndef HAVE_CYGWIN
  316|      1|	if ((int)geteuid() != 0) {
  ------------------
  |  Branch (316:6): [True: 0, False: 1]
  ------------------
  317|      0|	  return 1;
  318|      0|	}
  319|      1|#endif
  320|       |
  321|       |	/* set the timestamp */
  322|      1|	login_set_current_time(li);
  323|      1|#ifdef USE_LOGIN
  324|      1|	syslogin_write_entry(li);
  325|      1|#endif
  326|      1|#ifdef USE_LASTLOG
  327|      1|	if (li->type == LTYPE_LOGIN) {
  ------------------
  |  |  118|      1|#define LTYPE_LOGIN    7
  ------------------
  |  Branch (327:6): [True: 0, False: 1]
  ------------------
  328|      0|		lastlog_write_entry(li);
  329|      0|	}
  330|      1|#endif
  331|       |#ifdef USE_UTMP
  332|       |	utmp_write_entry(li);
  333|       |#endif
  334|       |#ifdef USE_WTMP
  335|       |	wtmp_write_entry(li);
  336|       |#endif
  337|       |#ifdef USE_UTMPX
  338|       |	utmpx_write_entry(li);
  339|       |#endif
  340|       |#ifdef USE_WTMPX
  341|       |	wtmpx_write_entry(li);
  342|       |#endif
  343|      1|	return 0;
  344|      1|}
line_fullname:
  391|      1|{
  392|      1|	memset(dst, '\0', dstsize);
  393|      1|	if ((strncmp(src, "/dev/", 5) == 0) || (dstsize < (strlen(src) + 5))) {
  ------------------
  |  Branch (393:6): [True: 1, False: 0]
  |  Branch (393:41): [True: 0, False: 0]
  ------------------
  394|      1|		strlcpy(dst, src, dstsize);
  395|      1|	} else {
  396|      0|		strlcpy(dst, "/dev/", dstsize);
  397|      0|		strlcat(dst, src, dstsize);
  398|      0|	}
  399|      1|	return dst;
  400|      1|}
line_stripname:
  405|      1|{
  406|      1|	memset(dst, '\0', dstsize);
  407|      1|	if (strncmp(src, "/dev/", 5) == 0)
  ------------------
  |  Branch (407:6): [True: 1, False: 0]
  ------------------
  408|      1|		strlcpy(dst, src + 5, dstsize);
  409|      0|	else
  410|      0|		strlcpy(dst, src, dstsize);
  411|      1|	return dst;
  412|      1|}
syslogin_write_entry:
 1243|      1|{
 1244|      1|	switch (li->type) {
 1245|      0|	case LTYPE_LOGIN:
  ------------------
  |  |  118|      0|#define LTYPE_LOGIN    7
  ------------------
  |  Branch (1245:2): [True: 0, False: 1]
  ------------------
 1246|      0|		return syslogin_perform_login(li);
 1247|      1|	case LTYPE_LOGOUT:
  ------------------
  |  |  119|      1|#define LTYPE_LOGOUT   8
  ------------------
  |  Branch (1247:2): [True: 1, False: 0]
  ------------------
 1248|      1|		return syslogin_perform_logout(li);
 1249|      0|	default:
  ------------------
  |  Branch (1249:2): [True: 0, False: 1]
  ------------------
 1250|      0|		dropbear_log(LOG_WARNING, "syslogin_write_entry: Invalid type field");
 1251|      0|		return 0;
 1252|      1|	}
 1253|      1|}
loginrec.c:syslogin_perform_logout:
 1220|      1|{
 1221|      1|# ifdef HAVE_LOGOUT
 1222|      1|	char line[8];
 1223|       |
 1224|      1|	(void)line_stripname(line, li->line, sizeof(line));
 1225|       |
 1226|      1|	if (!logout(line)) {
  ------------------
  |  Branch (1226:6): [True: 1, False: 0]
  ------------------
 1227|      1|		dropbear_log(LOG_WARNING, "syslogin_perform_logout: logout(%s) returned an error: %s", line, strerror(errno));
 1228|      1|#  ifdef HAVE_LOGWTMP
 1229|      1|	} else {
 1230|      0|		logwtmp(line, "", "");
 1231|      0|#  endif
 1232|      0|	}
 1233|       |	/* FIXME: (ATL - if the need arises) What to do if we have
 1234|       |	 * login, but no logout?  what if logout but no logwtmp? All
 1235|       |	 * routines are in libutil so they should all be there,
 1236|       |	 * but... */
 1237|      1|# endif
 1238|      1|	return 1;
 1239|      1|}

cancel_connect:
   52|    101|void cancel_connect(struct dropbear_progress_connection *c) {
   53|    101|	c->cb = cancel_callback;
   54|    101|	c->cb_data = NULL;
   55|    101|}
connect_remote:
  180|    101|{
  181|    101|	struct dropbear_progress_connection *c = NULL;
  182|    101|	int err;
  183|    101|	struct addrinfo hints;
  184|       |
  185|    101|	c = m_malloc(sizeof(*c));
  186|    101|	c->remotehost = m_strdup(remotehost);
  187|    101|	c->remoteport = m_strdup(remoteport);
  188|    101|	c->sock = -1;
  189|    101|	c->cb = cb;
  190|    101|	c->cb_data = cb_data;
  191|    101|	c->prio = prio;
  192|       |
  193|    101|	list_append(&ses.conn_pending, c);
  194|       |
  195|    101|#if DROPBEAR_FUZZ
  196|    101|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (196:6): [True: 101, False: 0]
  ------------------
  197|    101|		c->errstring = m_strdup("fuzzing connect_remote always fails");
  198|    101|		return c;
  199|    101|	}
  200|      0|#endif
  201|       |
  202|      0|	memset(&hints, 0, sizeof(hints));
  203|      0|	hints.ai_socktype = SOCK_STREAM;
  204|      0|	hints.ai_family = AF_UNSPEC;
  205|       |
  206|      0|	err = getaddrinfo(remotehost, remoteport, &hints, &c->res);
  207|      0|	if (err) {
  ------------------
  |  Branch (207:6): [True: 0, False: 0]
  ------------------
  208|      0|		int len;
  209|      0|		len = 100 + strlen(gai_strerror(err));
  210|      0|		c->errstring = (char*)m_malloc(len);
  211|      0|		snprintf(c->errstring, len, "Error resolving '%s' port '%s'. %s", 
  212|      0|				remotehost, remoteport, gai_strerror(err));
  213|      0|		TRACE(("Error resolving: %s", gai_strerror(err)))
  214|      0|	} else {
  215|      0|		c->res_iter = c->res;
  216|      0|	}
  217|       |	
  218|      0|	if (bind_address) {
  ------------------
  |  Branch (218:6): [True: 0, False: 0]
  ------------------
  219|      0|		c->bind_address = m_strdup(bind_address);
  220|      0|	}
  221|      0|	if (bind_port) {
  ------------------
  |  Branch (221:6): [True: 0, False: 0]
  ------------------
  222|      0|		c->bind_port = m_strdup(bind_port);
  223|      0|	}
  224|       |
  225|      0|	return c;
  226|    101|}
remove_connect_pending:
  228|  1.55k|void remove_connect_pending() {
  229|  1.55k|	while (ses.conn_pending.first) {
  ------------------
  |  Branch (229:9): [True: 1, False: 1.55k]
  ------------------
  230|      1|		struct dropbear_progress_connection *c = ses.conn_pending.first->item;
  231|      1|		remove_connect(c, ses.conn_pending.first);
  232|      1|	}
  233|  1.55k|}
set_connect_fds:
  236|   504k|void set_connect_fds(fd_set *writefd) {
  237|   504k|	m_list_elem *iter;
  238|   504k|	iter = ses.conn_pending.first;
  239|   504k|	while (iter) {
  ------------------
  |  Branch (239:9): [True: 100, False: 504k]
  ------------------
  240|    100|		m_list_elem *next_iter = iter->next;
  241|    100|		struct dropbear_progress_connection *c = iter->item;
  242|       |		/* Set one going */
  243|    100|		while (c->res_iter && c->sock < 0) {
  ------------------
  |  Branch (243:10): [True: 0, False: 100]
  |  Branch (243:25): [True: 0, False: 0]
  ------------------
  244|      0|			connect_try_next(c);
  245|      0|		}
  246|    100|		if (c->sock >= 0) {
  ------------------
  |  Branch (246:7): [True: 0, False: 100]
  ------------------
  247|      0|			FD_SET(c->sock, writefd);
  248|    100|		} else {
  249|       |			/* Final failure */
  250|    100|			if (!c->errstring) {
  ------------------
  |  Branch (250:8): [True: 0, False: 100]
  ------------------
  251|      0|				c->errstring = m_strdup("unexpected failure");
  252|      0|			}
  253|    100|			c->cb(DROPBEAR_FAILURE, -1, c->cb_data, c->errstring);
  ------------------
  |  |  103|    100|#define DROPBEAR_FAILURE -1
  ------------------
  254|    100|			remove_connect(c, iter);
  255|    100|		}
  256|    100|		iter = next_iter;
  257|    100|	}
  258|   504k|}
handle_connect_fds:
  260|   503k|void handle_connect_fds(const fd_set *writefd) {
  261|   503k|	m_list_elem *iter;
  262|   503k|	for (iter = ses.conn_pending.first; iter; iter = iter->next) {
  ------------------
  |  Branch (262:38): [True: 101, False: 503k]
  ------------------
  263|    101|		int val;
  264|    101|		socklen_t vallen = sizeof(val);
  265|    101|		struct dropbear_progress_connection *c = iter->item;
  266|       |
  267|    101|		if (c->sock < 0 || !FD_ISSET(c->sock, writefd)) {
  ------------------
  |  Branch (267:7): [True: 101, False: 0]
  |  Branch (267:22): [True: 0, False: 0]
  ------------------
  268|    101|			continue;
  269|    101|		}
  270|       |
  271|      0|		TRACE(("handling %s port %s socket %d", c->remotehost, c->remoteport, c->sock));
  272|       |
  273|      0|		if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, &val, &vallen) != 0) {
  ------------------
  |  Branch (273:7): [True: 0, False: 0]
  ------------------
  274|      0|			TRACE(("handle_connect_fds getsockopt(%d) SO_ERROR failed: %s", c->sock, strerror(errno)))
  275|       |			/* This isn't expected to happen - Unix has surprises though, continue gracefully. */
  276|      0|			m_close(c->sock);
  277|      0|			c->sock = -1;
  278|      0|		} else if (val != 0) {
  ------------------
  |  Branch (278:14): [True: 0, False: 0]
  ------------------
  279|       |			/* Connect failed */
  280|      0|			TRACE(("connect to %s port %s failed.", c->remotehost, c->remoteport))
  281|      0|			m_close(c->sock);
  282|      0|			c->sock = -1;
  283|       |
  284|      0|			m_free(c->errstring);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  285|      0|			c->errstring = m_strdup(strerror(val));
  286|      0|		} else {
  287|       |			/* New connection has been established */
  288|      0|			c->cb(DROPBEAR_SUCCESS, c->sock, c->cb_data, NULL);
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  289|      0|			remove_connect(c, iter);
  290|      0|			TRACE(("leave handle_connect_fds - success"))
  291|       |			/* Must return here - remove_connect() invalidates iter */
  292|      0|			return; 
  293|      0|		}
  294|      0|	}
  295|   503k|}
packet_queue_to_iovec:
  301|   256k|void packet_queue_to_iovec(const struct Queue *queue, struct iovec *iov, unsigned int *iov_count) {
  302|   256k|	struct Link *l;
  303|   256k|	unsigned int i;
  304|   256k|	int len;
  305|   256k|	buffer *writebuf;
  306|       |
  307|       |#ifndef IOV_MAX
  308|       |	#if defined(__CYGWIN__) && !defined(UIO_MAXIOV)
  309|       |		#define IOV_MAX 1024
  310|       |	#elif defined(__sgi)
  311|       |		#define IOV_MAX 512 
  312|       |	#else 
  313|       |		#define IOV_MAX UIO_MAXIOV
  314|       |	#endif
  315|       |#endif
  316|       |
  317|   256k|	*iov_count = MIN(MIN(queue->count, IOV_MAX), *iov_count);
  318|       |
  319|  2.59M|	for (l = queue->head, i = 0; i < *iov_count; l = l->link, i++)
  ------------------
  |  Branch (319:31): [True: 2.34M, False: 256k]
  ------------------
  320|  2.34M|	{
  321|  2.34M|		writebuf = (buffer*)l->item;
  322|  2.34M|		len = writebuf->len - writebuf->pos;
  323|  2.34M|		dropbear_assert(len > 0);
  ------------------
  |  |   83|  2.34M|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 2.34M]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  324|  2.34M|		TRACE2(("write_packet writev #%d len %d/%d", i,
  325|  2.34M|				len, writebuf->len))
  326|  2.34M|		iov[i].iov_base = buf_getptr(writebuf, len);
  327|  2.34M|		iov[i].iov_len = len;
  328|  2.34M|	}
  329|   256k|}
packet_queue_consume:
  331|   256k|void packet_queue_consume(struct Queue *queue, ssize_t written) {
  332|   256k|	buffer *writebuf;
  333|   256k|	int len;
  334|   512k|	while (written > 0) {
  ------------------
  |  Branch (334:9): [True: 256k, False: 256k]
  ------------------
  335|   256k|		writebuf = (buffer*)examine(queue);
  336|   256k|		len = writebuf->len - writebuf->pos;
  337|   256k|		if (len > written) {
  ------------------
  |  Branch (337:7): [True: 0, False: 256k]
  ------------------
  338|       |			/* partial buffer write */
  339|      0|			buf_incrpos(writebuf, written);
  340|      0|			written = 0;
  341|   256k|		} else {
  342|   256k|			written -= len;
  343|   256k|			dequeue(queue);
  344|   256k|			buf_free(writebuf);
  345|   256k|		}
  346|   256k|	}
  347|   256k|}
set_sock_priority:
  367|  3.37k|void set_sock_priority(int sock, enum dropbear_prio prio) {
  368|       |
  369|  3.37k|	int rc;
  370|  3.37k|	int val;
  371|       |
  372|  3.37k|#if DROPBEAR_FUZZ
  373|  3.37k|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (373:6): [True: 3.37k, False: 0]
  ------------------
  374|  3.37k|		TRACE(("fuzzing skips set_sock_prio"))
  375|  3.37k|		return;
  376|  3.37k|	}
  377|      0|#endif
  378|       |	/* Don't log ENOTSOCK errors so that this can harmlessly be called
  379|       |	 * on a client '-J' proxy pipe */
  380|       |
  381|      0|	if (opts.disable_ip_tos == 0) {
  ------------------
  |  Branch (381:6): [True: 0, False: 0]
  ------------------
  382|      0|#ifdef IP_TOS
  383|       |	/* Set the DSCP field for outbound IP packet priority.
  384|       |	rfc4594 has some guidance to meanings.
  385|       |
  386|       |	We set AF21 as "Low-Latency" class for interactive (tty session,
  387|       |	also handshake/setup packets). Other traffic is left at the default.
  388|       |
  389|       |	OpenSSH at present uses AF21/CS1, rationale
  390|       |	https://cvsweb.openbsd.org/src/usr.bin/ssh/readconf.c#rev1.284
  391|       |
  392|       |	Old Dropbear/OpenSSH and Debian/Ubuntu OpenSSH (at Jan 2022) use
  393|       |	IPTOS_LOWDELAY/IPTOS_THROUGHPUT
  394|       |
  395|       |	DSCP constants are from Linux headers, applicable to other platforms
  396|       |	such as macos.
  397|       |	*/
  398|      0|	if (prio == DROPBEAR_PRIO_LOWDELAY) {
  ------------------
  |  Branch (398:6): [True: 0, False: 0]
  ------------------
  399|      0|		val = 0x48; /* IPTOS_DSCP_AF21 */
  400|      0|	} else {
  401|      0|		val = 0; /* default */
  402|      0|	}
  403|      0|#if defined(IPPROTO_IPV6) && defined(IPV6_TCLASS)
  404|      0|	rc = setsockopt(sock, IPPROTO_IPV6, IPV6_TCLASS, (void*)&val, sizeof(val));
  405|      0|	if (rc < 0 && errno != ENOTSOCK) {
  ------------------
  |  Branch (405:6): [True: 0, False: 0]
  |  Branch (405:16): [True: 0, False: 0]
  ------------------
  406|      0|		TRACE(("Couldn't set IPV6_TCLASS (%s)", strerror(errno)));
  407|      0|	}
  408|      0|#endif
  409|      0|	rc = setsockopt(sock, IPPROTO_IP, IP_TOS, (void*)&val, sizeof(val));
  410|      0|	if (rc < 0 && errno != ENOTSOCK) {
  ------------------
  |  Branch (410:6): [True: 0, False: 0]
  |  Branch (410:16): [True: 0, False: 0]
  ------------------
  411|      0|		TRACE(("Couldn't set IP_TOS (%s)", strerror(errno)));
  412|      0|	}
  413|      0|#endif /* IP_TOS */
  414|      0|	}
  415|       |
  416|      0|#ifdef HAVE_LINUX_PKT_SCHED_H
  417|       |	/* Set scheduling priority within the local Linux network stack */
  418|      0|	if (prio == DROPBEAR_PRIO_LOWDELAY) {
  ------------------
  |  Branch (418:6): [True: 0, False: 0]
  ------------------
  419|      0|		val = TC_PRIO_INTERACTIVE;
  420|      0|	} else {
  421|      0|		val = 0;
  422|      0|	}
  423|       |	/* linux specific, sets QoS class. see tc-prio(8) */
  424|      0|	rc = setsockopt(sock, SOL_SOCKET, SO_PRIORITY, (void*) &val, sizeof(val));
  425|      0|	if (rc < 0 && errno != ENOTSOCK) {
  ------------------
  |  Branch (425:6): [True: 0, False: 0]
  |  Branch (425:16): [True: 0, False: 0]
  ------------------
  426|      0|		TRACE(("Couldn't set SO_PRIORITY (%s)", strerror(errno)))
  427|      0|    }
  428|      0|#endif
  429|       |
  430|      0|}
dropbear_listen:
  470|    902|		int *socks, unsigned int sockcount, char **errstring, int *maxfd) {
  471|       |
  472|    902|	struct addrinfo hints, *res = NULL, *res0 = NULL;
  473|    902|	int err;
  474|    902|	unsigned int nsock;
  475|    902|	int val;
  476|    902|	int sock;
  477|    902|	uint16_t *allocated_lport_p = NULL;
  478|    902|	int allocated_lport = 0;
  479|       |	
  480|    902|	TRACE(("enter dropbear_listen"))
  481|       |
  482|    902|#if DROPBEAR_FUZZ
  483|    902|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (483:6): [True: 902, False: 0]
  ------------------
  484|    902|		return fuzz_dropbear_listen(address, port, socks, sockcount, errstring, maxfd);
  485|    902|	}
  486|      0|#endif
  487|       |	
  488|      0|	memset(&hints, 0, sizeof(hints));
  489|      0|	hints.ai_family = AF_UNSPEC; /* TODO: let them flag v4 only etc */
  490|      0|	hints.ai_socktype = SOCK_STREAM;
  491|       |
  492|       |	/* for calling getaddrinfo:
  493|       |	 address == NULL and !AI_PASSIVE: local loopback
  494|       |	 address == NULL and AI_PASSIVE: all interfaces
  495|       |	 address != NULL: whatever the address says */
  496|      0|	if (!address) {
  ------------------
  |  Branch (496:6): [True: 0, False: 0]
  ------------------
  497|      0|		TRACE(("dropbear_listen: local loopback"))
  498|      0|	} else {
  499|      0|		if (address[0] == '\0') {
  ------------------
  |  Branch (499:7): [True: 0, False: 0]
  ------------------
  500|      0|			TRACE(("dropbear_listen: all interfaces"))
  501|      0|			address = NULL;
  502|      0|		}
  503|      0|		hints.ai_flags = AI_PASSIVE;
  504|      0|	}
  505|      0|	err = getaddrinfo(address, port, &hints, &res0);
  506|       |
  507|      0|	if (err) {
  ------------------
  |  Branch (507:6): [True: 0, False: 0]
  ------------------
  508|      0|		if (errstring != NULL && *errstring == NULL) {
  ------------------
  |  Branch (508:7): [True: 0, False: 0]
  |  Branch (508:28): [True: 0, False: 0]
  ------------------
  509|      0|			int len;
  510|      0|			len = 20 + strlen(gai_strerror(err));
  511|      0|			*errstring = (char*)m_malloc(len);
  512|      0|			snprintf(*errstring, len, "Error resolving: %s", gai_strerror(err));
  513|      0|		}
  514|      0|		if (res0) {
  ------------------
  |  Branch (514:7): [True: 0, False: 0]
  ------------------
  515|      0|			freeaddrinfo(res0);
  516|      0|			res0 = NULL;
  517|      0|		}
  518|      0|		TRACE(("leave dropbear_listen: failed resolving"))
  519|      0|		return -1;
  520|      0|	}
  521|       |
  522|       |	/* When listening on server-assigned-port 0
  523|       |	 * the assigned ports may differ for address families (v4/v6)
  524|       |	 * causing problems for tcpip-forward.
  525|       |	 * Caller can do a get_socket_address to discover assigned-port
  526|       |	 * hence, use same port for all address families */
  527|      0|	allocated_lport = 0;
  528|      0|	nsock = 0;
  529|      0|	for (res = res0; res != NULL && nsock < sockcount;
  ------------------
  |  Branch (529:19): [True: 0, False: 0]
  |  Branch (529:34): [True: 0, False: 0]
  ------------------
  530|      0|			res = res->ai_next) {
  531|      0|		if (allocated_lport > 0) {
  ------------------
  |  Branch (531:7): [True: 0, False: 0]
  ------------------
  532|      0|			if (AF_INET == res->ai_family) {
  ------------------
  |  Branch (532:8): [True: 0, False: 0]
  ------------------
  533|      0|				allocated_lport_p = &((struct sockaddr_in *)res->ai_addr)->sin_port;
  534|      0|			} else if (AF_INET6 == res->ai_family) {
  ------------------
  |  Branch (534:15): [True: 0, False: 0]
  ------------------
  535|      0|				allocated_lport_p = &((struct sockaddr_in6 *)res->ai_addr)->sin6_port;
  536|      0|			}
  537|      0|			*allocated_lport_p = htons(allocated_lport);
  538|      0|		}
  539|       |
  540|       |		/* Get a socket */
  541|      0|		socks[nsock] = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
  542|      0|		sock = socks[nsock]; /* For clarity */
  543|      0|		if (sock < 0) {
  ------------------
  |  Branch (543:7): [True: 0, False: 0]
  ------------------
  544|      0|			err = errno;
  545|      0|			TRACE(("socket() failed"))
  546|      0|			continue;
  547|      0|		}
  548|       |
  549|       |		/* Various useful socket options */
  550|      0|		val = 1;
  551|       |		/* set to reuse, quick timeout */
  552|      0|		setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*) &val, sizeof(val));
  553|       |
  554|      0|#if defined(IPPROTO_IPV6) && defined(IPV6_V6ONLY)
  555|      0|		if (res->ai_family == AF_INET6) {
  ------------------
  |  Branch (555:7): [True: 0, False: 0]
  ------------------
  556|      0|			int on = 1;
  557|      0|			if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, 
  ------------------
  |  Branch (557:8): [True: 0, False: 0]
  ------------------
  558|      0|						&on, sizeof(on)) == -1) {
  559|      0|				dropbear_log(LOG_WARNING, "Couldn't set IPV6_V6ONLY");
  560|      0|			}
  561|      0|		}
  562|      0|#endif
  563|      0|		set_sock_nodelay(sock);
  564|       |
  565|      0|		if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
  ------------------
  |  Branch (565:7): [True: 0, False: 0]
  ------------------
  566|      0|			err = errno;
  567|      0|			close(sock);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  568|      0|			TRACE(("bind(%s) failed", port))
  569|      0|			continue;
  570|      0|		}
  571|       |
  572|      0|		if (listen(sock, DROPBEAR_LISTEN_BACKLOG) < 0) {
  ------------------
  |  |  349|      0|#define DROPBEAR_LISTEN_BACKLOG MAX_CHANNELS
  |  |  ------------------
  |  |  |  |  225|      0|#define MAX_CHANNELS 1000 /* simple mem restriction, includes each tcp/x11
  |  |  ------------------
  ------------------
  |  Branch (572:7): [True: 0, False: 0]
  ------------------
  573|      0|			err = errno;
  574|      0|			close(sock);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  575|      0|			TRACE(("listen() failed"))
  576|      0|			continue;
  577|      0|		}
  578|       |
  579|      0|		if (0 == allocated_lport) {
  ------------------
  |  Branch (579:7): [True: 0, False: 0]
  ------------------
  580|      0|			allocated_lport = get_sock_port(sock);
  581|      0|		}
  582|       |
  583|      0|		*maxfd = MAX(*maxfd, sock);
  584|      0|		nsock++;
  585|      0|	}
  586|       |
  587|      0|	if (res0) {
  ------------------
  |  Branch (587:6): [True: 0, False: 0]
  ------------------
  588|      0|		freeaddrinfo(res0);
  589|      0|		res0 = NULL;
  590|      0|	}
  591|       |
  592|      0|	if (nsock == 0) {
  ------------------
  |  Branch (592:6): [True: 0, False: 0]
  ------------------
  593|      0|		if (errstring != NULL && *errstring == NULL) {
  ------------------
  |  Branch (593:7): [True: 0, False: 0]
  |  Branch (593:28): [True: 0, False: 0]
  ------------------
  594|      0|			int len;
  595|      0|			len = 20 + strlen(strerror(err));
  596|      0|			*errstring = (char*)m_malloc(len);
  597|      0|			snprintf(*errstring, len, "Error listening: %s", strerror(err));
  598|      0|		}
  599|      0|		TRACE(("leave dropbear_listen: failure, %s", strerror(err)))
  600|      0|		return -1;
  601|      0|	}
  602|       |
  603|      0|	TRACE(("leave dropbear_listen: success, %d socks bound", nsock))
  604|      0|	return nsock;
  605|      0|}
get_socket_address:
  609|  7.20k|{
  610|  7.20k|	struct sockaddr_storage addr;
  611|  7.20k|	socklen_t addrlen;
  612|       |
  613|  7.20k|#if DROPBEAR_FUZZ
  614|  7.20k|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (614:6): [True: 7.20k, False: 0]
  ------------------
  615|  7.20k|		fuzz_get_socket_address(fd, local_host, local_port, remote_host, remote_port, host_lookup);
  616|  7.20k|		return;
  617|  7.20k|	}
  618|      0|#endif
  619|       |	
  620|      0|	if (local_host || local_port) {
  ------------------
  |  Branch (620:6): [True: 0, False: 0]
  |  Branch (620:20): [True: 0, False: 0]
  ------------------
  621|      0|		addrlen = sizeof(addr);
  622|      0|		if (getsockname(fd, (struct sockaddr*)&addr, &addrlen) < 0) {
  ------------------
  |  Branch (622:7): [True: 0, False: 0]
  ------------------
  623|      0|			dropbear_exit("Failed socket address: %s", strerror(errno));
  624|      0|		}
  625|      0|		getaddrstring(&addr, local_host, local_port, host_lookup);		
  626|      0|	}
  627|      0|	if (remote_host || remote_port) {
  ------------------
  |  Branch (627:6): [True: 0, False: 0]
  |  Branch (627:21): [True: 0, False: 0]
  ------------------
  628|      0|		addrlen = sizeof(addr);
  629|      0|		if (getpeername(fd, (struct sockaddr*)&addr, &addrlen) < 0) {
  ------------------
  |  Branch (629:7): [True: 0, False: 0]
  ------------------
  630|      0|			dropbear_exit("Failed socket address: %s", strerror(errno));
  631|      0|		}
  632|      0|		getaddrstring(&addr, remote_host, remote_port, host_lookup);		
  633|      0|	}
  634|      0|}
netio.c:remove_connect:
   29|    101|static void remove_connect(struct dropbear_progress_connection *c, m_list_elem *iter) {
   30|    101|	if (c->res) {
  ------------------
  |  Branch (30:6): [True: 0, False: 101]
  ------------------
   31|      0|		freeaddrinfo(c->res);
   32|      0|	}
   33|    101|	m_free(c->remotehost);
  ------------------
  |  |   24|    101|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   34|    101|	m_free(c->remoteport);
  ------------------
  |  |   24|    101|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   35|    101|	m_free(c->errstring);
  ------------------
  |  |   24|    101|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   36|    101|	m_free(c->bind_address);
  ------------------
  |  |   24|    101|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   37|    101|	m_free(c->bind_port);
  ------------------
  |  |   24|    101|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   38|    101|	m_free(c);
  ------------------
  |  |   24|    101|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   39|       |
   40|    101|	if (iter) {
  ------------------
  |  Branch (40:6): [True: 101, False: 0]
  ------------------
   41|    101|		list_remove(iter);
   42|    101|	}
   43|    101|}

write_packet:
   58|   256k|void write_packet() {
   59|       |
   60|   256k|	ssize_t written;
   61|   256k|#if defined(HAVE_WRITEV) && (defined(IOV_MAX) || defined(UIO_MAXIOV))
   62|       |	/* 50 is somewhat arbitrary */
   63|   256k|	unsigned int iov_count = 50;
   64|   256k|	struct iovec iov[50];
   65|       |#else
   66|       |	int len;
   67|       |	buffer* writebuf;
   68|       |#endif
   69|       |	
   70|   256k|	TRACE2(("enter write_packet"))
   71|   256k|	dropbear_assert(!isempty(&ses.writequeue));
  ------------------
  |  |   83|   256k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 256k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   72|       |
   73|   256k|#if defined(HAVE_WRITEV) && (defined(IOV_MAX) || defined(UIO_MAXIOV))
   74|       |
   75|   256k|	packet_queue_to_iovec(&ses.writequeue, iov, &iov_count);
   76|       |	/* This may return EAGAIN. The main loop sometimes
   77|       |	calls write_packet() without bothering to test with select() since
   78|       |	it's likely to be necessary */
   79|   256k|#if DROPBEAR_FUZZ
   80|   256k|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (80:6): [True: 256k, False: 0]
  ------------------
   81|       |		/* pretend to write one packet at a time */
   82|       |		/* TODO(fuzz): randomise amount written based on the fuzz input */
   83|   256k|		written = iov[0].iov_len;
   84|   256k|	}
   85|      0|	else
   86|      0|#endif
   87|      0|	{
   88|      0|	written = writev(ses.sock_out, iov, iov_count);
   89|      0|	if (written < 0) {
  ------------------
  |  Branch (89:6): [True: 0, False: 0]
  ------------------
   90|      0|		if (errno == EINTR || errno == EAGAIN) {
  ------------------
  |  Branch (90:7): [True: 0, False: 0]
  |  Branch (90:25): [True: 0, False: 0]
  ------------------
   91|      0|			TRACE2(("leave write_packet: EINTR"))
   92|      0|			return;
   93|      0|		} else {
   94|      0|			dropbear_exit("Error writing: %s", strerror(errno));
   95|      0|		}
   96|      0|	}
   97|      0|	}
   98|       |
   99|   256k|	packet_queue_consume(&ses.writequeue, written);
  100|   256k|	ses.writequeue_len -= written;
  101|       |
  102|   256k|	if (written == 0) {
  ------------------
  |  Branch (102:6): [True: 0, False: 256k]
  ------------------
  103|      0|		ses.remoteclosed();
  104|      0|	}
  105|       |
  106|       |#else /* No writev () */
  107|       |#if DROPBEAR_FUZZ
  108|       |	_Static_assert(0, "No fuzzing code for no-writev writes");
  109|       |#endif
  110|       |	/* Get the next buffer in the queue of encrypted packets to write*/
  111|       |	writebuf = (buffer*)examine(&ses.writequeue);
  112|       |
  113|       |	len = writebuf->len - writebuf->pos;
  114|       |	dropbear_assert(len > 0);
  115|       |	/* Try to write as much as possible */
  116|       |	written = write(ses.sock_out, buf_getptr(writebuf, len), len);
  117|       |
  118|       |	if (written < 0) {
  119|       |		if (errno == EINTR || errno == EAGAIN) {
  120|       |			TRACE2(("leave writepacket: EINTR"))
  121|       |			return;
  122|       |		} else {
  123|       |			dropbear_exit("Error writing: %s", strerror(errno));
  124|       |		}
  125|       |	} 
  126|       |
  127|       |	if (written == 0) {
  128|       |		ses.remoteclosed();
  129|       |	}
  130|       |
  131|       |	ses.writequeue_len -= written;
  132|       |
  133|       |	if (written == len) {
  134|       |		/* We've finished with the packet, free it */
  135|       |		dequeue(&ses.writequeue);
  136|       |		buf_free(writebuf);
  137|       |		writebuf = NULL;
  138|       |	} else {
  139|       |		/* More packet left to write, leave it in the queue for later */
  140|       |		buf_incrpos(writebuf, written);
  141|       |	}
  142|       |#endif /* writev */
  143|       |
  144|   256k|	TRACE2(("leave write_packet"))
  145|   256k|}
read_packet:
  150|   303k|void read_packet() {
  151|       |
  152|   303k|	int len;
  153|   303k|	unsigned int maxlen;
  154|   303k|	unsigned char blocksize;
  155|       |
  156|   303k|	TRACE2(("enter read_packet"))
  157|   303k|	blocksize = ses.keys->recv.algo_crypt->blocksize;
  158|       |	
  159|   303k|	if (ses.readbuf == NULL || ses.readbuf->len < blocksize) {
  ------------------
  |  Branch (159:6): [True: 58.9k, False: 244k]
  |  Branch (159:29): [True: 106k, False: 137k]
  ------------------
  160|   165k|		int ret;
  161|       |		/* In the first blocksize of a packet */
  162|       |
  163|       |		/* Read the first blocksize of the packet, so we can decrypt it and
  164|       |		 * find the length of the whole packet */
  165|   165k|		ret = read_packet_init();
  166|       |
  167|   165k|		if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|   165k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (167:7): [True: 106k, False: 58.9k]
  ------------------
  168|       |			/* didn't read enough to determine the length */
  169|   106k|			TRACE2(("leave read_packet: packetinit done"))
  170|   106k|			return;
  171|   106k|		}
  172|   165k|	}
  173|       |
  174|       |	/* Attempt to read the remainder of the packet, note that there
  175|       |	 * mightn't be any available (EAGAIN) */
  176|   196k|	maxlen = ses.readbuf->len - ses.readbuf->pos;
  177|   196k|	if (maxlen == 0) {
  ------------------
  |  Branch (177:6): [True: 8.45k, False: 188k]
  ------------------
  178|       |		/* Occurs when the packet is only a single block long and has all
  179|       |		 * been read in read_packet_init().  Usually means that MAC is disabled
  180|       |		 */
  181|  8.45k|		len = 0;
  182|   188k|	} else {
  183|   188k|		len = read(ses.sock_in, buf_getptr(ses.readbuf, maxlen), maxlen);
  ------------------
  |  |   55|   188k|#define read(fd, buf, count) wrapfd_read(fd, buf, count)
  ------------------
  184|       |
  185|   188k|		if (len == 0) {
  ------------------
  |  Branch (185:7): [True: 130, False: 188k]
  ------------------
  186|    130|			ses.remoteclosed();
  187|    130|		}
  188|       |
  189|   188k|		if (len < 0) {
  ------------------
  |  Branch (189:7): [True: 257, False: 188k]
  ------------------
  190|    257|			if (errno == EINTR || errno == EAGAIN) {
  ------------------
  |  Branch (190:8): [True: 250, False: 7]
  |  Branch (190:26): [True: 0, False: 7]
  ------------------
  191|    250|				TRACE2(("leave read_packet: EINTR or EAGAIN"))
  192|    250|				return;
  193|    250|			} else {
  194|      7|				dropbear_exit("Error reading: %s", strerror(errno));
  195|      7|			}
  196|    257|		}
  197|       |
  198|   188k|		buf_incrpos(ses.readbuf, len);
  199|   188k|	}
  200|       |
  201|   196k|	if ((unsigned int)len == maxlen) {
  ------------------
  |  Branch (201:6): [True: 57.7k, False: 138k]
  ------------------
  202|       |		/* The whole packet has been read */
  203|  57.7k|		decrypt_packet();
  204|       |		/* The main select() loop process_packet() to
  205|       |		 * handle the packet contents... */
  206|  57.7k|	}
  207|   196k|	TRACE2(("leave read_packet"))
  208|   196k|}
decrypt_packet:
  298|  57.7k|void decrypt_packet() {
  299|       |
  300|  57.7k|	unsigned char blocksize;
  301|  57.7k|	unsigned char macsize;
  302|  57.7k|	unsigned int padlen;
  303|  57.7k|	unsigned int len;
  304|       |
  305|  57.7k|	TRACE2(("enter decrypt_packet"))
  306|  57.7k|	blocksize = ses.keys->recv.algo_crypt->blocksize;
  307|  57.7k|	macsize = ses.keys->recv.algo_mac->hashsize;
  308|       |
  309|  57.7k|	ses.kexstate.datarecv += ses.readbuf->len;
  310|       |
  311|  57.7k|#if DROPBEAR_AEAD_MODE
  312|  57.7k|	if (ses.keys->recv.crypt_mode->aead_crypt) {
  ------------------
  |  Branch (312:6): [True: 0, False: 57.7k]
  ------------------
  313|       |		/* first blocksize is not decrypted yet */
  314|      0|		buf_setpos(ses.readbuf, 0);
  315|       |
  316|       |		/* decrypt it in-place */
  317|      0|		len = ses.readbuf->len - macsize - ses.readbuf->pos;
  318|      0|		if (ses.keys->recv.crypt_mode->aead_crypt(ses.recvseq,
  ------------------
  |  Branch (318:7): [True: 0, False: 0]
  ------------------
  319|      0|					buf_getptr(ses.readbuf, len + macsize),
  320|      0|					buf_getwriteptr(ses.readbuf, len),
  321|      0|					len, macsize,
  322|      0|					&ses.keys->recv.cipher_state, LTC_DECRYPT) != CRYPT_OK) {
  ------------------
  |  |   70|      0|#define LTC_DECRYPT 1
  ------------------
  323|      0|			dropbear_exit("Error decrypting");
  324|      0|		}
  325|      0|		buf_incrpos(ses.readbuf, len);
  326|      0|	} else
  327|  57.7k|#endif
  328|  57.7k|	{
  329|       |		/* we've already decrypted the first blocksize in read_packet_init */
  330|  57.7k|		buf_setpos(ses.readbuf, blocksize);
  331|       |
  332|       |		/* decrypt it in-place */
  333|  57.7k|		len = ses.readbuf->len - macsize - ses.readbuf->pos;
  334|  57.7k|		if (ses.keys->recv.crypt_mode->decrypt(
  ------------------
  |  Branch (334:7): [True: 0, False: 57.7k]
  ------------------
  335|  57.7k|					buf_getptr(ses.readbuf, len), 
  336|  57.7k|					buf_getwriteptr(ses.readbuf, len),
  337|  57.7k|					len,
  338|  57.7k|					&ses.keys->recv.cipher_state) != CRYPT_OK) {
  339|      0|			dropbear_exit("Error decrypting");
  340|      0|		}
  341|  57.7k|		buf_incrpos(ses.readbuf, len);
  342|       |
  343|       |		/* check the hmac */
  344|  57.7k|		if (checkmac() != DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|  57.7k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (344:7): [True: 0, False: 57.7k]
  ------------------
  345|      0|			dropbear_exit("Integrity error");
  346|      0|		}
  347|       |
  348|  57.7k|	}
  349|       |	
  350|  57.7k|#if DROPBEAR_FUZZ
  351|  57.7k|	fuzz_dump(ses.readbuf->data, ses.readbuf->len);
  352|  57.7k|#endif
  353|       |
  354|       |	/* get padding length */
  355|  57.7k|	buf_setpos(ses.readbuf, PACKET_PADDING_OFF);
  ------------------
  |  |   48|  57.7k|#define PACKET_PADDING_OFF 4
  ------------------
  356|  57.7k|	padlen = buf_getbyte(ses.readbuf);
  357|       |		
  358|       |	/* payload length */
  359|       |	/* - 4 - 1 is for LEN and PADLEN values */
  360|  57.7k|	len = ses.readbuf->len - padlen - 4 - 1 - macsize;
  361|  57.7k|	if ((len > RECV_MAX_PAYLOAD_LEN+ZLIB_COMPRESS_EXPANSION) || (len < 1)) {
  ------------------
  |  |  492|  57.7k|#define RECV_MAX_PAYLOAD_LEN 32768
  ------------------
              	if ((len > RECV_MAX_PAYLOAD_LEN+ZLIB_COMPRESS_EXPANSION) || (len < 1)) {
  ------------------
  |  |   50|  57.7k|#define ZLIB_COMPRESS_EXPANSION (((RECV_MAX_PAYLOAD_LEN/16384)+1)*5 + 6)
  |  |  ------------------
  |  |  |  |  492|  57.7k|#define RECV_MAX_PAYLOAD_LEN 32768
  |  |  ------------------
  ------------------
  |  Branch (361:6): [True: 9, False: 57.7k]
  |  Branch (361:62): [True: 0, False: 57.7k]
  ------------------
  362|      9|		dropbear_exit("Bad packet size %u", len);
  363|      9|	}
  364|       |
  365|  57.7k|	buf_setpos(ses.readbuf, PACKET_PAYLOAD_OFF);
  ------------------
  |  |   49|  57.7k|#define PACKET_PAYLOAD_OFF 5
  ------------------
  366|       |
  367|       |#ifndef DISABLE_ZLIB
  368|       |	if (is_compress_recv()) {
  369|       |		/* decompress */
  370|       |		ses.payload = buf_decompress(ses.readbuf, len);
  371|       |		buf_setpos(ses.payload, 0);
  372|       |		ses.payload_beginning = 0;
  373|       |		buf_free(ses.readbuf);
  374|       |	} else 
  375|       |#endif
  376|  57.7k|	{
  377|  57.7k|		ses.payload = ses.readbuf;
  378|  57.7k|		ses.payload_beginning = ses.payload->pos;
  379|  57.7k|		buf_setlen(ses.payload, ses.payload->pos + len);
  380|  57.7k|	}
  381|  57.7k|	ses.readbuf = NULL;
  382|       |
  383|  57.7k|	ses.recvseq++;
  384|       |
  385|  57.7k|	TRACE2(("leave decrypt_packet"))
  386|  57.7k|}
maybe_flush_reply_queue:
  495|   503k|void maybe_flush_reply_queue() {
  496|   503k|	struct packetlist *tmp_item = NULL, *curr_item = NULL;
  497|   503k|	if (!ses.dataallowed)
  ------------------
  |  Branch (497:6): [True: 62.7k, False: 440k]
  ------------------
  498|  62.7k|	{
  499|  62.7k|		TRACE(("maybe_empty_reply_queue - no data allowed"))
  500|  62.7k|		return;
  501|  62.7k|	}
  502|       |		
  503|   441k|	for (curr_item = ses.reply_queue_head; curr_item; ) {
  ------------------
  |  Branch (503:41): [True: 847, False: 440k]
  ------------------
  504|    847|		CHECKCLEARTOWRITE();
  505|    847|		buf_putbytes(ses.writepayload,
  506|    847|			curr_item->payload->data, curr_item->payload->len);
  507|       |			
  508|    847|		buf_free(curr_item->payload);
  509|    847|		tmp_item = curr_item;
  510|    847|		curr_item = curr_item->next;
  511|    847|		m_free(tmp_item);
  ------------------
  |  |   24|    847|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  512|    847|		encrypt_packet();
  513|    847|	}
  514|   440k|	ses.reply_queue_head = ses.reply_queue_tail = NULL;
  515|   440k|}
encrypt_packet:
  519|   262k|void encrypt_packet() {
  520|       |
  521|   262k|	unsigned char padlen;
  522|   262k|	unsigned char blocksize, mac_size;
  523|   262k|	buffer * writebuf; /* the packet which will go on the wire. This is 
  524|       |	                      encrypted in-place. */
  525|   262k|	unsigned char packet_type;
  526|   262k|	unsigned int len, encrypt_buf_size;
  527|   262k|	unsigned char mac_bytes[MAX_MAC_LEN];
  528|       |
  529|   262k|	time_t now;
  530|       |	
  531|   262k|	TRACE2(("enter encrypt_packet()"))
  532|       |
  533|   262k|	buf_setpos(ses.writepayload, 0);
  534|   262k|	packet_type = buf_getbyte(ses.writepayload);
  535|   262k|	buf_setpos(ses.writepayload, 0);
  536|       |
  537|   262k|	TRACE2(("encrypt_packet type is %d", packet_type))
  538|       |	
  539|   262k|	if ((!ses.dataallowed && !packet_is_okay_kex(packet_type))) {
  ------------------
  |  Branch (539:7): [True: 11.1k, False: 250k]
  |  Branch (539:27): [True: 929, False: 10.2k]
  ------------------
  540|       |		/* During key exchange only particular packets are allowed.
  541|       |			Since this packet_type isn't OK we just enqueue it to send 
  542|       |			after the KEX, see maybe_flush_reply_queue */
  543|    929|		enqueue_reply_packet();
  544|    929|		return;
  545|    929|	}
  546|       |		
  547|   261k|	blocksize = ses.keys->trans.algo_crypt->blocksize;
  548|   261k|	mac_size = ses.keys->trans.algo_mac->hashsize;
  549|       |
  550|       |	/* Encrypted packet len is payload+5. We need to then make sure
  551|       |	 * there is enough space for padding or MIN_PACKET_LEN. 
  552|       |	 * Add extra 3 since we need at least 4 bytes of padding */
  553|   261k|	encrypt_buf_size = (ses.writepayload->len+4+1) 
  554|   261k|		+ MAX(MIN_PACKET_LEN, blocksize) + 3
  555|       |	/* add space for the MAC at the end */
  556|   261k|				+ mac_size
  557|       |#ifndef DISABLE_ZLIB
  558|       |	/* some extra in case 'compression' makes it larger */
  559|       |				+ ZLIB_COMPRESS_EXPANSION
  560|       |#endif
  561|       |	/* and an extra cleartext (stripped before transmission) byte for the
  562|       |	 * packet type */
  563|   261k|				+ 1;
  564|       |
  565|   261k|	writebuf = buf_new(encrypt_buf_size);
  566|   261k|	buf_setlen(writebuf, PACKET_PAYLOAD_OFF);
  ------------------
  |  |   49|   261k|#define PACKET_PAYLOAD_OFF 5
  ------------------
  567|   261k|	buf_setpos(writebuf, PACKET_PAYLOAD_OFF);
  ------------------
  |  |   49|   261k|#define PACKET_PAYLOAD_OFF 5
  ------------------
  568|       |
  569|       |#ifndef DISABLE_ZLIB
  570|       |	/* compression */
  571|       |	if (is_compress_trans()) {
  572|       |		buf_compress(writebuf, ses.writepayload, ses.writepayload->len);
  573|       |	} else
  574|       |#endif
  575|   261k|	{
  576|   261k|		memcpy(buf_getwriteptr(writebuf, ses.writepayload->len),
  577|   261k|				buf_getptr(ses.writepayload, ses.writepayload->len),
  578|   261k|				ses.writepayload->len);
  579|   261k|		buf_incrwritepos(writebuf, ses.writepayload->len);
  580|   261k|	}
  581|       |
  582|       |	/* finished with payload */
  583|   261k|	buf_setpos(ses.writepayload, 0);
  584|   261k|	buf_setlen(ses.writepayload, 0);
  585|       |
  586|       |	/* length of padding - packet length excluding the packetlength uint32
  587|       |	 * field in aead mode must be a multiple of blocksize, with a minimum of
  588|       |	 * 4 bytes of padding */
  589|   261k|	len = writebuf->len;
  590|   261k|#if DROPBEAR_AEAD_MODE
  591|   261k|	if (ses.keys->trans.crypt_mode->aead_crypt) {
  ------------------
  |  Branch (591:6): [True: 233k, False: 27.7k]
  ------------------
  592|   233k|		len -= 4;
  593|   233k|	}
  594|   261k|#endif
  595|   261k|	padlen = blocksize - len % blocksize;
  596|   261k|	if (padlen < 4) {
  ------------------
  |  Branch (596:6): [True: 91.9k, False: 169k]
  ------------------
  597|  91.9k|		padlen += blocksize;
  598|  91.9k|	}
  599|       |	/* check for min packet length */
  600|   261k|	if (writebuf->len + padlen < MIN_PACKET_LEN) {
  ------------------
  |  |  213|   261k|#define MIN_PACKET_LEN 16
  ------------------
  |  Branch (600:6): [True: 5.11k, False: 256k]
  ------------------
  601|  5.11k|		padlen += blocksize;
  602|  5.11k|	}
  603|       |
  604|   261k|	buf_setpos(writebuf, 0);
  605|       |	/* packet length excluding the packetlength uint32 */
  606|   261k|	buf_putint(writebuf, writebuf->len + padlen - 4);
  607|       |
  608|       |	/* padding len */
  609|   261k|	buf_putbyte(writebuf, padlen);
  610|       |	/* actual padding */
  611|   261k|	buf_setpos(writebuf, writebuf->len);
  612|   261k|	buf_incrlen(writebuf, padlen);
  613|   261k|	genrandom(buf_getptr(writebuf, padlen), padlen);
  614|       |
  615|   261k|#if DROPBEAR_AEAD_MODE
  616|   261k|	if (ses.keys->trans.crypt_mode->aead_crypt) {
  ------------------
  |  Branch (616:6): [True: 233k, False: 27.7k]
  ------------------
  617|       |		/* do the actual encryption, in-place */
  618|   233k|		buf_setpos(writebuf, 0);
  619|       |		/* encrypt it in-place*/
  620|   233k|		len = writebuf->len;
  621|   233k|		buf_incrlen(writebuf, mac_size);
  622|   233k|		if (ses.keys->trans.crypt_mode->aead_crypt(ses.transseq,
  ------------------
  |  Branch (622:7): [True: 0, False: 233k]
  ------------------
  623|   233k|					buf_getptr(writebuf, len),
  624|   233k|					buf_getwriteptr(writebuf, len + mac_size),
  625|   233k|					len, mac_size,
  626|   233k|					&ses.keys->trans.cipher_state, LTC_ENCRYPT) != CRYPT_OK) {
  ------------------
  |  |   68|   233k|#define LTC_ENCRYPT 0
  ------------------
  627|      0|			dropbear_exit("Error encrypting");
  628|      0|		}
  629|   233k|		buf_incrpos(writebuf, len + mac_size);
  630|   233k|	} else
  631|  27.7k|#endif
  632|  27.7k|	{
  633|  27.7k|		make_mac(ses.transseq, &ses.keys->trans, writebuf, writebuf->len, mac_bytes);
  634|       |
  635|       |		/* do the actual encryption, in-place */
  636|  27.7k|		buf_setpos(writebuf, 0);
  637|       |		/* encrypt it in-place*/
  638|  27.7k|		len = writebuf->len;
  639|  27.7k|		if (ses.keys->trans.crypt_mode->encrypt(
  ------------------
  |  Branch (639:7): [True: 0, False: 27.7k]
  ------------------
  640|  27.7k|					buf_getptr(writebuf, len),
  641|  27.7k|					buf_getwriteptr(writebuf, len),
  642|  27.7k|					len,
  643|  27.7k|					&ses.keys->trans.cipher_state) != CRYPT_OK) {
  644|      0|			dropbear_exit("Error encrypting");
  645|      0|		}
  646|  27.7k|		buf_incrpos(writebuf, len);
  647|       |
  648|       |		/* stick the MAC on it */
  649|  27.7k|		buf_putbytes(writebuf, mac_bytes, mac_size);
  650|  27.7k|	}
  651|       |
  652|       |	/* Update counts */
  653|   261k|	ses.kexstate.datatrans += writebuf->len;
  654|       |
  655|   261k|	writebuf_enqueue(writebuf);
  656|       |
  657|       |	/* Update counts */
  658|   261k|	ses.transseq++;
  659|       |
  660|   261k|	now = monotonic_now();
  661|   261k|	ses.last_packet_time_any_sent = now;
  662|       |	/* idle timeout shouldn't be affected by responses to keepalives.
  663|       |	send_msg_keepalive() itself also does tricks with 
  664|       |	ses.last_packet_idle_time - read that if modifying this code */
  665|   261k|	if (packet_type != SSH_MSG_REQUEST_FAILURE
  ------------------
  |  |   65|   522k|#define SSH_MSG_REQUEST_FAILURE                 82
  ------------------
  |  Branch (665:6): [True: 260k, False: 781]
  ------------------
  666|   261k|		&& packet_type != SSH_MSG_UNIMPLEMENTED
  ------------------
  |  |   31|   521k|#define SSH_MSG_UNIMPLEMENTED          3
  ------------------
  |  Branch (666:6): [True: 256k, False: 3.65k]
  ------------------
  667|   261k|		&& packet_type != SSH_MSG_IGNORE) {
  ------------------
  |  |   30|   256k|#define SSH_MSG_IGNORE                 2
  ------------------
  |  Branch (667:6): [True: 256k, False: 0]
  ------------------
  668|   256k|		ses.last_packet_time_idle = now;
  669|       |
  670|   256k|	}
  671|       |
  672|   261k|	TRACE2(("leave encrypt_packet()"))
  673|   261k|}
writebuf_enqueue:
  675|   262k|void writebuf_enqueue(buffer * writebuf) {
  676|       |	/* enqueue the packet for sending. It will get freed after transmission. */
  677|   262k|	buf_setpos(writebuf, 0);
  678|   262k|	enqueue(&ses.writequeue, (void*)writebuf);
  679|   262k|	ses.writequeue_len += writebuf->len;
  680|   262k|}
packet.c:read_packet_init:
  214|   165k|static int read_packet_init() {
  215|       |
  216|   165k|	unsigned int maxlen;
  217|   165k|	int slen;
  218|   165k|	unsigned int len, plen;
  219|   165k|	unsigned int blocksize;
  220|   165k|	unsigned int macsize;
  221|       |
  222|       |
  223|   165k|	blocksize = ses.keys->recv.algo_crypt->blocksize;
  224|   165k|	macsize = ses.keys->recv.algo_mac->hashsize;
  225|       |
  226|   165k|	if (ses.readbuf == NULL) {
  ------------------
  |  Branch (226:6): [True: 58.9k, False: 106k]
  ------------------
  227|       |		/* start of a new packet */
  228|  58.9k|		ses.readbuf = buf_new(INIT_READBUF);
  ------------------
  |  |   51|  58.9k|#define INIT_READBUF 128
  ------------------
  229|  58.9k|	}
  230|       |
  231|   165k|	maxlen = blocksize - ses.readbuf->pos;
  232|       |			
  233|       |	/* read the rest of the packet if possible */
  234|   165k|	slen = read(ses.sock_in, buf_getwriteptr(ses.readbuf, maxlen),
  ------------------
  |  |   55|   165k|#define read(fd, buf, count) wrapfd_read(fd, buf, count)
  ------------------
  235|   165k|			maxlen);
  236|   165k|	if (slen == 0) {
  ------------------
  |  Branch (236:6): [True: 948, False: 164k]
  ------------------
  237|    948|		ses.remoteclosed();
  238|    948|	}
  239|   165k|	if (slen < 0) {
  ------------------
  |  Branch (239:6): [True: 149, False: 165k]
  ------------------
  240|    149|		if (errno == EINTR || errno == EAGAIN) {
  ------------------
  |  Branch (240:7): [True: 143, False: 6]
  |  Branch (240:25): [True: 0, False: 6]
  ------------------
  241|    143|			TRACE2(("leave read_packet_init: EINTR"))
  242|    143|			return DROPBEAR_FAILURE;
  ------------------
  |  |  103|    143|#define DROPBEAR_FAILURE -1
  ------------------
  243|    143|		}
  244|      6|		dropbear_exit("Error reading: %s", strerror(errno));
  245|    149|	}
  246|       |
  247|   165k|	buf_incrwritepos(ses.readbuf, slen);
  248|       |
  249|   165k|	if ((unsigned int)slen != maxlen) {
  ------------------
  |  Branch (249:6): [True: 106k, False: 58.9k]
  ------------------
  250|       |		/* don't have enough bytes to determine length, get next time */
  251|   106k|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|   106k|#define DROPBEAR_FAILURE -1
  ------------------
  252|   106k|	}
  253|       |
  254|       |	/* now we have the first block, need to get packet length, so we decrypt
  255|       |	 * the first block (only need first 4 bytes) */
  256|  58.9k|	buf_setpos(ses.readbuf, 0);
  257|  58.9k|#if DROPBEAR_AEAD_MODE
  258|  58.9k|	if (ses.keys->recv.crypt_mode->aead_crypt) {
  ------------------
  |  Branch (258:6): [True: 0, False: 58.9k]
  ------------------
  259|      0|		if (ses.keys->recv.crypt_mode->aead_getlength(ses.recvseq,
  ------------------
  |  Branch (259:7): [True: 0, False: 0]
  ------------------
  260|      0|					buf_getptr(ses.readbuf, blocksize), &plen,
  261|      0|					blocksize,
  262|      0|					&ses.keys->recv.cipher_state) != CRYPT_OK) {
  263|      0|			dropbear_exit("Error decrypting");
  264|      0|		}
  265|      0|		len = plen + 4 + macsize;
  266|      0|	} else
  267|  58.9k|#endif
  268|  58.9k|	{
  269|  58.9k|		if (ses.keys->recv.crypt_mode->decrypt(buf_getptr(ses.readbuf, blocksize), 
  ------------------
  |  Branch (269:7): [True: 0, False: 58.9k]
  ------------------
  270|  58.9k|					buf_getwriteptr(ses.readbuf, blocksize),
  271|  58.9k|					blocksize,
  272|  58.9k|					&ses.keys->recv.cipher_state) != CRYPT_OK) {
  273|      0|			dropbear_exit("Error decrypting");
  274|      0|		}
  275|  58.9k|		plen = buf_getint(ses.readbuf) + 4;
  276|  58.9k|		len = plen + macsize;
  277|  58.9k|	}
  278|       |
  279|  58.9k|	TRACE2(("packet size is %u, block %u mac %u", len, blocksize, macsize))
  280|       |
  281|       |
  282|       |	/* check packet length */
  283|  58.9k|	if ((len > RECV_MAX_PACKET_LEN) ||
  ------------------
  |  |  215|  58.9k|#define RECV_MAX_PACKET_LEN (MAX(35000, ((RECV_MAX_PAYLOAD_LEN)+100)))
  ------------------
  |  Branch (283:6): [True: 1.03k, False: 57.9k]
  ------------------
  284|  58.9k|		(plen < blocksize) ||
  ------------------
  |  Branch (284:3): [True: 12, False: 57.9k]
  ------------------
  285|  58.9k|		(plen % blocksize != 0)) {
  ------------------
  |  Branch (285:3): [True: 40, False: 57.9k]
  ------------------
  286|    136|		dropbear_exit("Integrity error (bad packet size %u)", len);
  287|    136|	}
  288|       |
  289|  58.8k|	if (len > ses.readbuf->size) {
  ------------------
  |  Branch (289:6): [True: 9.78k, False: 49.0k]
  ------------------
  290|  9.78k|		ses.readbuf = buf_resize(ses.readbuf, len);		
  291|  9.78k|	}
  292|  58.8k|	buf_setlen(ses.readbuf, len);
  293|  58.8k|	buf_setpos(ses.readbuf, blocksize);
  294|  58.8k|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  58.8k|#define DROPBEAR_SUCCESS 0
  ------------------
  295|  58.9k|}
packet.c:checkmac:
  390|  57.7k|static int checkmac() {
  391|       |
  392|  57.7k|	unsigned char mac_bytes[MAX_MAC_LEN];
  393|  57.7k|	unsigned int mac_size, contents_len;
  394|       |	
  395|  57.7k|	mac_size = ses.keys->recv.algo_mac->hashsize;
  396|  57.7k|	contents_len = ses.readbuf->len - mac_size;
  397|       |
  398|  57.7k|	buf_setpos(ses.readbuf, 0);
  399|  57.7k|	make_mac(ses.recvseq, &ses.keys->recv, ses.readbuf, contents_len, mac_bytes);
  400|       |
  401|  57.7k|#if DROPBEAR_FUZZ
  402|  57.7k|	if (fuzz.fuzzing) {
  ------------------
  |  Branch (402:6): [True: 57.7k, False: 0]
  ------------------
  403|       |	 	/* fail 1 in 2000 times to test error path. */
  404|  57.7k|		unsigned int value = 0;
  405|  57.7k|		if (mac_size > sizeof(value)) {
  ------------------
  |  Branch (405:7): [True: 0, False: 57.7k]
  ------------------
  406|      0|			memcpy(&value, mac_bytes, sizeof(value));
  407|      0|		}
  408|  57.7k|		if (value % 2000 == 99) {
  ------------------
  |  Branch (408:7): [True: 0, False: 57.7k]
  ------------------
  409|      0|			return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  410|      0|		}
  411|  57.7k|		return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  57.7k|#define DROPBEAR_SUCCESS 0
  ------------------
  412|  57.7k|	}
  413|      0|#endif
  414|       |
  415|       |	/* compare the hash */
  416|      0|	buf_setpos(ses.readbuf, contents_len);
  417|      0|	if (constant_time_memcmp(mac_bytes, buf_getptr(ses.readbuf, mac_size), mac_size) != 0) {
  ------------------
  |  Branch (417:6): [True: 0, False: 0]
  ------------------
  418|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  419|      0|	} else {
  420|      0|		return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  421|      0|	}
  422|      0|}
packet.c:packet_is_okay_kex:
  464|  11.1k|static int packet_is_okay_kex(unsigned char type) {
  465|  11.1k|	if (type >= SSH_MSG_USERAUTH_REQUEST) {
  ------------------
  |  |   42|  11.1k|#define SSH_MSG_USERAUTH_REQUEST            50
  ------------------
  |  Branch (465:6): [True: 929, False: 10.2k]
  ------------------
  466|    929|		return 0;
  467|    929|	}
  468|  10.2k|	if (type == SSH_MSG_SERVICE_REQUEST || type == SSH_MSG_SERVICE_ACCEPT) {
  ------------------
  |  |   33|  20.5k|#define SSH_MSG_SERVICE_REQUEST        5
  ------------------
              	if (type == SSH_MSG_SERVICE_REQUEST || type == SSH_MSG_SERVICE_ACCEPT) {
  ------------------
  |  |   34|  10.2k|#define SSH_MSG_SERVICE_ACCEPT         6
  ------------------
  |  Branch (468:6): [True: 0, False: 10.2k]
  |  Branch (468:41): [True: 0, False: 10.2k]
  ------------------
  469|      0|		return 0;
  470|      0|	}
  471|  10.2k|	if (type == SSH_MSG_KEXINIT) {
  ------------------
  |  |   36|  10.2k|#define SSH_MSG_KEXINIT                20
  ------------------
  |  Branch (471:6): [True: 0, False: 10.2k]
  ------------------
  472|       |		/* XXX should this die horribly if !dataallowed ?? */
  473|      0|		return 0;
  474|      0|	}
  475|  10.2k|	return 1;
  476|  10.2k|}
packet.c:enqueue_reply_packet:
  478|    929|static void enqueue_reply_packet() {
  479|    929|	struct packetlist * new_item = NULL;
  480|    929|	new_item = m_malloc(sizeof(struct packetlist));
  481|    929|	new_item->next = NULL;
  482|       |	
  483|    929|	new_item->payload = buf_newcopy(ses.writepayload);
  484|    929|	buf_setpos(ses.writepayload, 0);
  485|    929|	buf_setlen(ses.writepayload, 0);
  486|       |	
  487|    929|	if (ses.reply_queue_tail) {
  ------------------
  |  Branch (487:6): [True: 680, False: 249]
  ------------------
  488|    680|		ses.reply_queue_tail->next = new_item;
  489|    680|	} else {
  490|    249|		ses.reply_queue_head = new_item;
  491|    249|	}
  492|    929|	ses.reply_queue_tail = new_item;
  493|    929|}
packet.c:make_mac:
  687|  85.4k|		unsigned char *output_mac) {
  688|  85.4k|	unsigned char seqbuf[4];
  689|  85.4k|	unsigned long bufsize;
  690|  85.4k|	hmac_state hmac;
  691|       |
  692|  85.4k|	if (key_state->algo_mac->hashsize > 0) {
  ------------------
  |  Branch (692:6): [True: 23.2k, False: 62.1k]
  ------------------
  693|       |		/* calculate the mac */
  694|  23.2k|		if (hmac_init(&hmac, 
  ------------------
  |  Branch (694:7): [True: 0, False: 23.2k]
  ------------------
  695|  23.2k|					key_state->hash_index,
  696|  23.2k|					key_state->mackey,
  697|  23.2k|					key_state->algo_mac->keysize) != CRYPT_OK) {
  698|      0|			dropbear_exit("HMAC error");
  699|      0|		}
  700|       |	
  701|       |		/* sequence number */
  702|  23.2k|		STORE32H(seqno, seqbuf);
  ------------------
  |  |   62|  23.2k|#define STORE32H(x, y)                          \
  |  |   63|  23.2k|do { ulong32 __t = __builtin_bswap32 ((x));     \
  |  |   64|  23.2k|      XMEMCPY ((y), &__t, 4); } while(0)
  |  |  ------------------
  |  |  |  |   39|  23.2k|#define XMEMCPY  memcpy
  |  |  ------------------
  |  |  |  Branch (64:39): [Folded - Ignored]
  |  |  ------------------
  ------------------
  703|  23.2k|		if (hmac_process(&hmac, seqbuf, 4) != CRYPT_OK) {
  ------------------
  |  Branch (703:7): [True: 0, False: 23.2k]
  ------------------
  704|      0|			dropbear_exit("HMAC error");
  705|      0|		}
  706|       |	
  707|       |		/* the actual contents */
  708|  23.2k|		buf_setpos(clear_buf, 0);
  709|  23.2k|		if (hmac_process(&hmac, 
  ------------------
  |  Branch (709:7): [True: 0, False: 23.2k]
  ------------------
  710|  23.2k|					buf_getptr(clear_buf, clear_len),
  711|  23.2k|					clear_len) != CRYPT_OK) {
  712|      0|			dropbear_exit("HMAC error");
  713|      0|		}
  714|       |	
  715|  23.2k|		bufsize = MAX_MAC_LEN;
  ------------------
  |  |  134|  23.2k|#define MAX_MAC_LEN 32
  ------------------
  716|  23.2k|		if (hmac_done(&hmac, output_mac, &bufsize) != CRYPT_OK) {
  ------------------
  |  Branch (716:7): [True: 0, False: 23.2k]
  ------------------
  717|      0|			dropbear_exit("HMAC error");
  718|      0|		}
  719|  23.2k|	}
  720|  85.4k|	TRACE2(("leave writemac"))
  721|  85.4k|}

process_packet:
   43|  57.7k|void process_packet() {
   44|       |
   45|  57.7k|	unsigned char type;
   46|  57.7k|	unsigned int i;
   47|  57.7k|	time_t now;
   48|       |
   49|  57.7k|	TRACE2(("enter process_packet"))
   50|       |
   51|  57.7k|	type = buf_getbyte(ses.payload);
   52|  57.7k|	TRACE(("process_packet: packet type = %d,  len %d", type, ses.payload->len))
   53|       |
   54|  57.7k|	now = monotonic_now();
   55|  57.7k|	ses.last_packet_time_keepalive_recv = now;
   56|       |
   57|       |	/* These packets we can receive at any time */
   58|  57.7k|	switch(type) {
  ------------------
  |  Branch (58:9): [True: 56.9k, False: 830]
  ------------------
   59|       |
   60|    268|		case SSH_MSG_IGNORE:
  ------------------
  |  |   30|    268|#define SSH_MSG_IGNORE                 2
  ------------------
  |  Branch (60:3): [True: 268, False: 57.4k]
  ------------------
   61|    268|			goto out;
   62|    379|		case SSH_MSG_DEBUG:
  ------------------
  |  |   32|    379|#define SSH_MSG_DEBUG                  4
  ------------------
  |  Branch (62:3): [True: 379, False: 57.3k]
  ------------------
   63|    379|			goto out;
   64|       |
   65|    178|		case SSH_MSG_UNIMPLEMENTED:
  ------------------
  |  |   31|    178|#define SSH_MSG_UNIMPLEMENTED          3
  ------------------
  |  Branch (65:3): [True: 178, False: 57.5k]
  ------------------
   66|       |			/* debugging XXX */
   67|    178|			TRACE(("SSH_MSG_UNIMPLEMENTED"))
   68|    178|			goto out;
   69|       |			
   70|      5|		case SSH_MSG_DISCONNECT:
  ------------------
  |  |   29|      5|#define SSH_MSG_DISCONNECT             1
  ------------------
  |  Branch (70:3): [True: 5, False: 57.7k]
  ------------------
   71|       |			/* TODO cleanup? */
   72|      5|			dropbear_close("Disconnect received");
   73|  57.7k|	}
   74|       |
   75|       |	/* Ignore these packet types so that keepalives don't interfere with
   76|       |	idle detection. This is slightly incorrect since a tcp forwarded
   77|       |	global request with failure won't trigger the idle timeout,
   78|       |	but that's probably acceptable */
   79|  56.9k|	if (!(type == SSH_MSG_GLOBAL_REQUEST 
  ------------------
  |  |   63|   113k|#define SSH_MSG_GLOBAL_REQUEST                  80
  ------------------
  |  Branch (79:8): [True: 2.23k, False: 54.6k]
  ------------------
   80|  56.9k|		|| type == SSH_MSG_REQUEST_FAILURE
  ------------------
  |  |   65|   111k|#define SSH_MSG_REQUEST_FAILURE                 82
  ------------------
  |  Branch (80:6): [True: 85, False: 54.6k]
  ------------------
   81|  56.9k|		|| type == SSH_MSG_CHANNEL_FAILURE)) {
  ------------------
  |  |   76|  54.6k|#define SSH_MSG_CHANNEL_FAILURE                 100
  ------------------
  |  Branch (81:6): [True: 69, False: 54.5k]
  ------------------
   82|  54.5k|		ses.last_packet_time_idle = now;
   83|  54.5k|	}
   84|       |
   85|       |	/* This applies for KEX, where the spec says the next packet MUST be
   86|       |	 * NEWKEYS */
   87|  56.9k|	if (ses.requirenext != 0) {
  ------------------
  |  Branch (87:6): [True: 21.2k, False: 35.7k]
  ------------------
   88|  21.2k|		if (ses.requirenext == type)
  ------------------
  |  Branch (88:7): [True: 18.8k, False: 2.40k]
  ------------------
   89|  18.8k|		{
   90|       |			/* Got what we expected */
   91|  18.8k|			TRACE(("got expected packet %d during kexinit", type))
   92|  18.8k|		}
   93|  2.40k|		else
   94|  2.40k|		{
   95|       |			/* RFC4253 7.1 - various messages are allowed at this point.
   96|       |			The only ones we know about have already been handled though,
   97|       |			so just return "unimplemented" */
   98|  2.40k|			if (type >= 1 && type <= 49
  ------------------
  |  Branch (98:8): [True: 2.39k, False: 15]
  |  Branch (98:21): [True: 2.38k, False: 7]
  ------------------
   99|  2.40k|				&& type != SSH_MSG_SERVICE_REQUEST
  ------------------
  |  |   33|  4.79k|#define SSH_MSG_SERVICE_REQUEST        5
  ------------------
  |  Branch (99:8): [True: 2.38k, False: 0]
  ------------------
  100|  2.40k|				&& type != SSH_MSG_SERVICE_ACCEPT
  ------------------
  |  |   34|  4.79k|#define SSH_MSG_SERVICE_ACCEPT         6
  ------------------
  |  Branch (100:8): [True: 2.38k, False: 0]
  ------------------
  101|  2.40k|				&& type != SSH_MSG_KEXINIT)
  ------------------
  |  |   36|  2.38k|#define SSH_MSG_KEXINIT                20
  ------------------
  |  Branch (101:8): [True: 2.38k, False: 1]
  ------------------
  102|  2.38k|			{
  103|  2.38k|				TRACE(("unknown allowed packet during kexinit"))
  104|  2.38k|				recv_unimplemented();
  105|  2.38k|				goto out;
  106|  2.38k|			}
  107|     23|			else
  108|     23|			{
  109|     23|				TRACE(("disallowed packet during kexinit"))
  110|     23|				dropbear_exit("Unexpected packet type %d, expected %d", type,
  111|     23|						ses.requirenext);
  112|     23|			}
  113|  2.40k|		}
  114|  21.2k|	}
  115|       |
  116|       |	/* Check if we should ignore this packet. Used currently only for
  117|       |	 * KEX code, with first_kex_packet_follows */
  118|  54.5k|	if (ses.ignorenext) {
  ------------------
  |  Branch (118:6): [True: 127, False: 54.3k]
  ------------------
  119|    127|		TRACE(("Ignoring packet, type = %d", type))
  120|    127|		ses.ignorenext = 0;
  121|    127|		goto out;
  122|    127|	}
  123|       |
  124|       |	/* Only clear the flag after we have checked ignorenext */
  125|  54.3k|	if (ses.requirenext != 0 && ses.requirenext == type)
  ------------------
  |  Branch (125:6): [True: 18.6k, False: 35.7k]
  |  Branch (125:30): [True: 18.6k, False: 0]
  ------------------
  126|  18.6k|	{
  127|  18.6k|		ses.requirenext = 0;
  128|  18.6k|	}
  129|       |
  130|       |
  131|       |	/* Kindly the protocol authors gave all the preauth packets type values
  132|       |	 * less-than-or-equal-to 60 ( == MAX_UNAUTH_PACKET_TYPE ).
  133|       |	 * NOTE: if the protocol changes and new types are added, revisit this 
  134|       |	 * assumption */
  135|  54.3k|	if ( !ses.authstate.authdone && type > MAX_UNAUTH_PACKET_TYPE ) {
  ------------------
  |  |   38|      0|#define MAX_UNAUTH_PACKET_TYPE SSH_MSG_USERAUTH_PK_OK
  |  |  ------------------
  |  |  |  |   52|      0|#define SSH_MSG_USERAUTH_PK_OK				60
  |  |  ------------------
  ------------------
  |  Branch (135:7): [True: 0, False: 54.3k]
  |  Branch (135:34): [True: 0, False: 0]
  ------------------
  136|      0|		dropbear_exit("Received message %d before userauth", type);
  137|      0|	}
  138|       |
  139|   432k|	for (i = 0; ; i++) {
  140|   432k|		if (ses.packettypes[i].type == 0) {
  ------------------
  |  Branch (140:7): [True: 1.26k, False: 431k]
  ------------------
  141|       |			/* end of list */
  142|  1.26k|			break;
  143|  1.26k|		}
  144|       |
  145|   431k|		if (ses.packettypes[i].type == type) {
  ------------------
  |  Branch (145:7): [True: 53.1k, False: 378k]
  ------------------
  146|  53.1k|			ses.packettypes[i].handler();
  147|  53.1k|			goto out;
  148|  53.1k|		}
  149|   431k|	}
  150|       |
  151|       |	
  152|       |	/* TODO do something more here? */
  153|  1.26k|	TRACE(("preauth unknown packet"))
  154|  1.26k|	recv_unimplemented();
  155|       |
  156|  57.4k|out:
  157|  57.4k|	ses.lastpacket = type;
  158|  57.4k|	buf_free(ses.payload);
  159|  57.4k|	ses.payload = NULL;
  160|       |
  161|  57.4k|	TRACE2(("leave process_packet"))
  162|  57.4k|}
process-packet.c:recv_unimplemented:
  170|  3.65k|static void recv_unimplemented() {
  171|       |
  172|  3.65k|	CHECKCLEARTOWRITE();
  173|       |
  174|  3.65k|	buf_putbyte(ses.writepayload, SSH_MSG_UNIMPLEMENTED);
  ------------------
  |  |   31|  3.65k|#define SSH_MSG_UNIMPLEMENTED          3
  ------------------
  175|       |	/* the decryption routine increments the sequence number, we must
  176|       |	 * decrement */
  177|  3.65k|	buf_putint(ses.writepayload, ses.recvseq - 1);
  178|       |
  179|  3.65k|	encrypt_packet();
  180|  3.65k|}

initqueue:
   29|  1.55k|void initqueue(struct Queue* queue) {
   30|       |
   31|  1.55k|	queue->head = NULL;
   32|  1.55k|	queue->tail = NULL;
   33|  1.55k|	queue->count = 0;
   34|  1.55k|}
isempty:
   36|  1.79M|int isempty(const struct Queue* queue) {
   37|       |
   38|  1.79M|	return (queue->head == NULL);
   39|  1.79M|}
dequeue:
   41|   262k|void* dequeue(struct Queue* queue) {
   42|       |
   43|   262k|	void* ret;
   44|   262k|	struct Link* oldhead;
   45|   262k|	dropbear_assert(!isempty(queue));
  ------------------
  |  |   83|   262k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 262k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   46|       |	
   47|   262k|	ret = queue->head->item;
   48|   262k|	oldhead = queue->head;
   49|       |	
   50|   262k|	if (oldhead->link != NULL) {
  ------------------
  |  Branch (50:6): [True: 212k, False: 50.4k]
  ------------------
   51|   212k|		queue->head = oldhead->link;
   52|   212k|	} else {
   53|  50.4k|		queue->head = NULL;
   54|  50.4k|		queue->tail = NULL;
   55|  50.4k|		TRACE(("empty queue dequeing"))
   56|  50.4k|	}
   57|       |
   58|   262k|	m_free(oldhead);
  ------------------
  |  |   24|   262k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   59|   262k|	queue->count--;
   60|   262k|	return ret;
   61|   262k|}
examine:
   63|   256k|void *examine(const struct Queue* queue) {
   64|       |
   65|   256k|	dropbear_assert(!isempty(queue));
  ------------------
  |  |   83|   256k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 256k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   66|   256k|	return queue->head->item;
   67|   256k|}
enqueue:
   69|   262k|void enqueue(struct Queue* queue, void* item) {
   70|       |
   71|   262k|	struct Link* newlink;
   72|       |
   73|   262k|	newlink = (struct Link*)m_malloc(sizeof(struct Link));
   74|       |
   75|   262k|	newlink->item = item;
   76|   262k|	newlink->link = NULL;
   77|       |
   78|   262k|	if (queue->tail != NULL) {
  ------------------
  |  Branch (78:6): [True: 212k, False: 50.4k]
  ------------------
   79|   212k|		queue->tail->link = newlink;
   80|   212k|	}
   81|   262k|	queue->tail = newlink;
   82|       |
   83|   262k|	if (queue->head == NULL) {
  ------------------
  |  Branch (83:6): [True: 50.4k, False: 212k]
  ------------------
   84|  50.4k|		queue->head = newlink;
   85|  50.4k|	}
   86|   262k|	queue->count++;
   87|   262k|}

buf_get_rsa_pub_key:
   53|      1|int buf_get_rsa_pub_key(buffer* buf, dropbear_rsa_key *key) {
   54|       |
   55|      1|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
   56|      1|	TRACE(("enter buf_get_rsa_pub_key"))
   57|      1|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|      1|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 1]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   58|      1|	m_mp_alloc_init_multi(&key->e, &key->n, NULL);
   59|      1|	key->d = NULL;
   60|      1|	key->p = NULL;
   61|      1|	key->q = NULL;
   62|       |
   63|      1|	buf_incrpos(buf, 4+SSH_SIGNKEY_RSA_LEN); /* int + "ssh-rsa" */
  ------------------
  |  |  113|      1|#define SSH_SIGNKEY_RSA_LEN 7
  ------------------
   64|       |
   65|      1|	if (buf_getmpint(buf, key->e) == DROPBEAR_FAILURE
  ------------------
  |  |  103|      2|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (65:6): [True: 0, False: 1]
  ------------------
   66|      1|	 || buf_getmpint(buf, key->n) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (66:6): [True: 0, False: 1]
  ------------------
   67|      0|		TRACE(("leave buf_get_rsa_pub_key: failure"))
   68|      0|		goto out;
   69|      0|	}
   70|       |
   71|      1|	if (mp_count_bits(key->n) < MIN_RSA_KEYLEN) {
  ------------------
  |  |   65|      1|#define MIN_RSA_KEYLEN 1024
  ------------------
  |  Branch (71:6): [True: 0, False: 1]
  ------------------
   72|      0|		dropbear_log(LOG_WARNING, "RSA key too short");
   73|      0|		goto out;
   74|      0|	}
   75|       |
   76|       |	/* 64 bit is limit used by openssl, so we won't block any keys in the wild */
   77|      1|	if (mp_count_bits(key->e) > 64) {
  ------------------
  |  Branch (77:6): [True: 0, False: 1]
  ------------------
   78|      0|		dropbear_log(LOG_WARNING, "RSA key bad e");
   79|      0|		goto out;
   80|      0|	}
   81|       |
   82|      1|	TRACE(("leave buf_get_rsa_pub_key: success"))
   83|      1|	ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      1|#define DROPBEAR_SUCCESS 0
  ------------------
   84|      1|out:
   85|      1|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (85:6): [True: 0, False: 1]
  ------------------
   86|      0|		m_mp_free_multi(&key->e, &key->n, NULL);
   87|      0|	}
   88|      1|	return ret;
   89|      1|}
buf_get_rsa_priv_key:
   94|      1|int buf_get_rsa_priv_key(buffer* buf, dropbear_rsa_key *key) {
   95|      1|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
   96|       |
   97|      1|	TRACE(("enter buf_get_rsa_priv_key"))
   98|      1|	dropbear_assert(key != NULL);
  ------------------
  |  |   83|      1|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 1]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
   99|       |
  100|      1|	if (buf_get_rsa_pub_key(buf, key) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (100:6): [True: 0, False: 1]
  ------------------
  101|      0|		TRACE(("leave buf_get_rsa_priv_key: pub: ret == DROPBEAR_FAILURE"))
  102|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  103|      0|	}
  104|       |	
  105|      1|	key->d = NULL;
  106|      1|	key->p = NULL;
  107|      1|	key->q = NULL;
  108|       |
  109|      1|	m_mp_alloc_init_multi(&key->d, NULL);
  110|      1|	if (buf_getmpint(buf, key->d) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (110:6): [True: 0, False: 1]
  ------------------
  111|      0|		TRACE(("leave buf_get_rsa_priv_key: d: ret == DROPBEAR_FAILURE"))
  112|      0|		goto out;
  113|      0|	}
  114|       |
  115|      1|	if (buf->pos == buf->len) {
  ------------------
  |  Branch (115:6): [True: 0, False: 1]
  ------------------
  116|       |		/* old Dropbear private keys didn't keep p and q, so we will ignore them*/
  117|      1|	} else {
  118|      1|		m_mp_alloc_init_multi(&key->p, &key->q, NULL);
  119|       |
  120|      1|		if (buf_getmpint(buf, key->p) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (120:7): [True: 0, False: 1]
  ------------------
  121|      0|			TRACE(("leave buf_get_rsa_priv_key: p: ret == DROPBEAR_FAILURE"))
  122|      0|			goto out;
  123|      0|		}
  124|       |
  125|      1|		if (buf_getmpint(buf, key->q) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (125:7): [True: 0, False: 1]
  ------------------
  126|      0|			TRACE(("leave buf_get_rsa_priv_key: q: ret == DROPBEAR_FAILURE"))
  127|      0|			goto out;
  128|      0|		}
  129|      1|	}
  130|       |
  131|      1|	ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      1|#define DROPBEAR_SUCCESS 0
  ------------------
  132|      1|out:
  133|      1|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (133:6): [True: 0, False: 1]
  ------------------
  134|      0|		m_mp_free_multi(&key->d, &key->p, &key->q, NULL);
  135|      0|	}
  136|      1|	TRACE(("leave buf_get_rsa_priv_key"))
  137|      1|	return ret;
  138|      1|}
rsa_key_free:
  142|      1|void rsa_key_free(dropbear_rsa_key *key) {
  143|       |
  144|      1|	TRACE2(("enter rsa_key_free"))
  145|       |
  146|      1|	if (key == NULL) {
  ------------------
  |  Branch (146:6): [True: 1, False: 0]
  ------------------
  147|      1|		TRACE2(("leave rsa_key_free: key == NULL"))
  148|      1|		return;
  149|      1|	}
  150|      0|	m_mp_free_multi(&key->d, &key->e, &key->p, &key->q, &key->n, NULL);
  151|      0|	m_free(key);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  152|      0|	TRACE2(("leave rsa_key_free"))
  153|      0|}

new_sign_key:
   62|      1|sign_key * new_sign_key() {
   63|       |
   64|      1|	sign_key * ret;
   65|       |
   66|      1|	ret = (sign_key*)m_malloc(sizeof(sign_key));
   67|      1|	ret->type = DROPBEAR_SIGNKEY_NONE;
   68|      1|	ret->source = SIGNKEY_SOURCE_INVALID;
   69|      1|	return ret;
   70|      1|}
signkey_type_from_name:
   86|      4|enum signkey_type signkey_type_from_name(const char* name, unsigned int namelen) {
   87|      4|	int i;
   88|     13|	for (i = 0; i < DROPBEAR_SIGNKEY_NUM_NAMED; i++) {
  ------------------
  |  Branch (88:14): [True: 13, False: 0]
  ------------------
   89|     13|		const char *fixed_name = signkey_names[i];
   90|     13|		if (namelen == strlen(fixed_name)
  ------------------
  |  Branch (90:7): [True: 5, False: 8]
  ------------------
   91|     13|			&& memcmp(fixed_name, name, namelen) == 0) {
  ------------------
  |  Branch (91:7): [True: 4, False: 1]
  ------------------
   92|       |
   93|      4|#if DROPBEAR_ECDSA
   94|       |			/* Some of the ECDSA key sizes are defined even if they're not compiled in */
   95|      4|			if (0
  ------------------
  |  Branch (95:8): [Folded - Ignored]
  ------------------
   96|       |#if !DROPBEAR_ECC_256
   97|       |				|| i == DROPBEAR_SIGNKEY_ECDSA_NISTP256
   98|       |#endif
   99|       |#if !DROPBEAR_ECC_384
  100|       |				|| i == DROPBEAR_SIGNKEY_ECDSA_NISTP384
  101|       |#endif
  102|       |#if !DROPBEAR_ECC_521
  103|       |				|| i == DROPBEAR_SIGNKEY_ECDSA_NISTP521
  104|       |#endif
  105|      4|				) {
  106|      0|				TRACE(("attempt to use ecdsa type %d not compiled in", i))
  107|      0|				return DROPBEAR_SIGNKEY_NONE;
  108|      0|			}
  109|      4|#endif
  110|       |
  111|      4|			return (enum signkey_type)i;
  112|      4|		}
  113|     13|	}
  114|       |
  115|      0|	TRACE(("signkey_type_from_name unexpected key type."))
  116|       |
  117|      0|	return DROPBEAR_SIGNKEY_NONE;
  118|      4|}
signkey_type_from_signature:
  173|  8.94k|enum signkey_type signkey_type_from_signature(enum signature_type sigtype) {
  174|  8.94k|#if DROPBEAR_RSA
  175|  8.94k|#if DROPBEAR_RSA_SHA256
  176|  8.94k|	if (sigtype == DROPBEAR_SIGNATURE_RSA_SHA256) {
  ------------------
  |  Branch (176:6): [True: 99, False: 8.84k]
  ------------------
  177|     99|		return DROPBEAR_SIGNKEY_RSA;
  178|     99|	}
  179|  8.84k|#endif
  180|  8.84k|#if DROPBEAR_RSA_SHA1
  181|  8.84k|	if (sigtype == DROPBEAR_SIGNATURE_RSA_SHA1) {
  ------------------
  |  Branch (181:6): [True: 75, False: 8.76k]
  ------------------
  182|     75|		return DROPBEAR_SIGNKEY_RSA;
  183|     75|	}
  184|  8.76k|#endif
  185|  8.76k|#endif /* DROPBEAR_RSA */
  186|  8.76k|	assert((int)sigtype < (int)DROPBEAR_SIGNKEY_NUM_NAMED);
  187|  8.76k|	return (enum signkey_type)sigtype;
  188|  8.76k|}
signkey_key_ptr:
  193|      1|signkey_key_ptr(sign_key *key, enum signkey_type type) {
  194|      1|	switch (type) {
  195|      0|#if DROPBEAR_ED25519
  196|      0|		case DROPBEAR_SIGNKEY_ED25519:
  ------------------
  |  Branch (196:3): [True: 0, False: 1]
  ------------------
  197|      0|#if DROPBEAR_SK_ED25519
  198|      0|		case DROPBEAR_SIGNKEY_SK_ED25519:
  ------------------
  |  Branch (198:3): [True: 0, False: 1]
  ------------------
  199|      0|#endif
  200|      0|			return (void**)&key->ed25519key;
  201|      0|#endif
  202|      0|#if DROPBEAR_ECDSA
  203|      0|#if DROPBEAR_ECC_256
  204|      1|		case DROPBEAR_SIGNKEY_ECDSA_NISTP256:
  ------------------
  |  Branch (204:3): [True: 1, False: 0]
  ------------------
  205|      1|#if DROPBEAR_SK_ECDSA
  206|      1|		case DROPBEAR_SIGNKEY_SK_ECDSA_NISTP256:
  ------------------
  |  Branch (206:3): [True: 0, False: 1]
  ------------------
  207|      1|#endif
  208|      1|			return (void**)&key->ecckey256;
  209|      0|#endif
  210|      0|#if DROPBEAR_ECC_384
  211|      0|		case DROPBEAR_SIGNKEY_ECDSA_NISTP384:
  ------------------
  |  Branch (211:3): [True: 0, False: 1]
  ------------------
  212|      0|			return (void**)&key->ecckey384;
  213|      0|#endif
  214|      0|#if DROPBEAR_ECC_521
  215|      0|		case DROPBEAR_SIGNKEY_ECDSA_NISTP521:
  ------------------
  |  Branch (215:3): [True: 0, False: 1]
  ------------------
  216|      0|			return (void**)&key->ecckey521;
  217|      0|#endif
  218|      0|#endif /* DROPBEAR_ECDSA */
  219|      0|#if DROPBEAR_RSA
  220|      0|		case DROPBEAR_SIGNKEY_RSA:
  ------------------
  |  Branch (220:3): [True: 0, False: 1]
  ------------------
  221|      0|			return (void**)&key->rsakey;
  222|      0|#endif
  223|      0|#if DROPBEAR_DSS
  224|      0|		case DROPBEAR_SIGNKEY_DSS:
  ------------------
  |  Branch (224:3): [True: 0, False: 1]
  ------------------
  225|      0|			return (void**)&key->dsskey;
  226|      0|#endif
  227|      0|		default:
  ------------------
  |  Branch (227:3): [True: 0, False: 1]
  ------------------
  228|      0|			return NULL;
  229|      1|	}
  230|      1|}
buf_get_priv_key:
  339|      4|int buf_get_priv_key(buffer *buf, sign_key *key, enum signkey_type *type) {
  340|       |
  341|      4|	char *ident;
  342|      4|	unsigned int len;
  343|      4|	enum signkey_type keytype;
  344|      4|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|      4|#define DROPBEAR_FAILURE -1
  ------------------
  345|       |
  346|      4|	TRACE2(("enter buf_get_priv_key"))
  347|       |
  348|      4|	ident = buf_getstring(buf, &len);
  349|      4|	keytype = signkey_type_from_name(ident, len);
  350|      4|	m_free(ident);
  ------------------
  |  |   24|      4|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  351|       |
  352|      4|	if (*type != DROPBEAR_SIGNKEY_ANY && *type != keytype) {
  ------------------
  |  Branch (352:6): [True: 4, False: 0]
  |  Branch (352:39): [True: 0, False: 4]
  ------------------
  353|      0|		TRACE(("wrong key type: %d %d", *type, keytype))
  354|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  355|      0|	}
  356|       |
  357|      4|	*type = keytype;
  358|       |
  359|       |	/* Rewind the buffer back before "ssh-rsa" etc */
  360|      4|	buf_decrpos(buf, len + 4);
  361|       |
  362|      4|#if DROPBEAR_DSS
  363|      4|	if (keytype == DROPBEAR_SIGNKEY_DSS) {
  ------------------
  |  Branch (363:6): [True: 1, False: 3]
  ------------------
  364|      1|		dss_key_free(key->dsskey);
  365|      1|		key->dsskey = m_malloc(sizeof(*key->dsskey));
  366|      1|		ret = buf_get_dss_priv_key(buf, key->dsskey);
  367|      1|		if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (367:7): [True: 0, False: 1]
  ------------------
  368|      0|			dss_key_free(key->dsskey);
  369|      0|			key->dsskey = NULL;
  370|      0|		}
  371|      1|	}
  372|      4|#endif
  373|      4|#if DROPBEAR_RSA
  374|      4|	if (keytype == DROPBEAR_SIGNKEY_RSA) {
  ------------------
  |  Branch (374:6): [True: 1, False: 3]
  ------------------
  375|      1|		rsa_key_free(key->rsakey);
  376|      1|		key->rsakey = m_malloc(sizeof(*key->rsakey));
  377|      1|		ret = buf_get_rsa_priv_key(buf, key->rsakey);
  378|      1|		if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (378:7): [True: 0, False: 1]
  ------------------
  379|      0|			rsa_key_free(key->rsakey);
  380|      0|			key->rsakey = NULL;
  381|      0|		}
  382|      1|	}
  383|      4|#endif
  384|      4|#if DROPBEAR_ECDSA
  385|      4|	if (signkey_is_ecdsa(keytype)) {
  ------------------
  |  Branch (385:6): [True: 1, False: 3]
  ------------------
  386|      1|		ecc_key **eck = (ecc_key**)signkey_key_ptr(key, keytype);
  387|      1|		if (eck) {
  ------------------
  |  Branch (387:7): [True: 1, False: 0]
  ------------------
  388|      1|			if (*eck) {
  ------------------
  |  Branch (388:8): [True: 0, False: 1]
  ------------------
  389|      0|				ecc_free(*eck);
  390|      0|				m_free(*eck);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  391|      0|				*eck = NULL;
  392|      0|			}
  393|      1|			*eck = buf_get_ecdsa_priv_key(buf);
  394|      1|			if (*eck) {
  ------------------
  |  Branch (394:8): [True: 1, False: 0]
  ------------------
  395|      1|				ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      1|#define DROPBEAR_SUCCESS 0
  ------------------
  396|      1|			}
  397|      1|		}
  398|      1|	}
  399|      4|#endif
  400|      4|#if DROPBEAR_ED25519
  401|      4|	if (keytype == DROPBEAR_SIGNKEY_ED25519) {
  ------------------
  |  Branch (401:6): [True: 1, False: 3]
  ------------------
  402|      1|		ed25519_key_free(key->ed25519key);
  403|      1|		key->ed25519key = m_malloc(sizeof(*key->ed25519key));
  404|      1|		ret = buf_get_ed25519_priv_key(buf, key->ed25519key);
  405|      1|		if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      1|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (405:7): [True: 0, False: 1]
  ------------------
  406|      0|			m_free(key->ed25519key);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  407|      0|			key->ed25519key = NULL;
  408|      0|		}
  409|      1|	}
  410|      4|#endif
  411|       |
  412|      4|	TRACE2(("leave buf_get_priv_key"))
  413|       |
  414|      4|	return ret;
  415|       |	
  416|      4|}

pty_allocate:
   50|      1|{
   51|      1|#if defined(HAVE_OPENPTY)
   52|       |	/* exists in recent (4.4) BSDs and OSF/1 */
   53|      1|	char *name;
   54|      1|	int i;
   55|       |
   56|      1|	i = openpty(ptyfd, ttyfd, NULL, NULL, NULL);
   57|      1|	if (i < 0) {
  ------------------
  |  Branch (57:6): [True: 0, False: 1]
  ------------------
   58|      0|		dropbear_log(LOG_WARNING, 
   59|      0|				"pty_allocate: openpty: %.100s", strerror(errno));
   60|      0|		return 0;
   61|      0|	}
   62|      1|	name = ttyname(*ttyfd);
   63|      1|	if (!name) {
  ------------------
  |  Branch (63:6): [True: 0, False: 1]
  ------------------
   64|      0|		dropbear_exit("ttyname fails for openpty device");
   65|      0|	}
   66|       |
   67|      1|	strlcpy(namebuf, name, namebuflen);	/* possible truncation */
   68|      1|	return 1;
   69|       |#else /* HAVE_OPENPTY */
   70|       |#ifdef HAVE__GETPTY
   71|       |	/*
   72|       |	 * _getpty(3) exists in SGI Irix 4.x, 5.x & 6.x -- it generates more
   73|       |	 * pty's automagically when needed
   74|       |	 */
   75|       |	char *slave;
   76|       |
   77|       |	slave = _getpty(ptyfd, O_RDWR, 0622, 0);
   78|       |	if (slave == NULL) {
   79|       |		dropbear_log(LOG_WARNING,
   80|       |				"pty_allocate: _getpty: %.100s", strerror(errno));
   81|       |		return 0;
   82|       |	}
   83|       |	strlcpy(namebuf, slave, namebuflen);
   84|       |	/* Open the slave side. */
   85|       |	*ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
   86|       |	if (*ttyfd < 0) {
   87|       |		dropbear_log(LOG_WARNING,
   88|       |				"pty_allocate error: ttyftd open error");
   89|       |		close(*ptyfd);
   90|       |		return 0;
   91|       |	}
   92|       |	return 1;
   93|       |#else /* HAVE__GETPTY */
   94|       |#if defined(USE_DEV_PTMX)
   95|       |	/*
   96|       |	 * This code is used e.g. on Solaris 2.x.  (Note that Solaris 2.3
   97|       |	 * also has bsd-style ptys, but they simply do not work.)
   98|       |	 *
   99|       |	 * Linux systems may have the /dev/ptmx device, but this code won't work.
  100|       |	 */
  101|       |	int ptm;
  102|       |	char *pts;
  103|       |
  104|       |	ptm = open("/dev/ptmx", O_RDWR | O_NOCTTY);
  105|       |	if (ptm < 0) {
  106|       |		dropbear_log(LOG_WARNING,
  107|       |				"pty_allocate: /dev/ptmx: %.100s", strerror(errno));
  108|       |		return 0;
  109|       |	}
  110|       |	if (grantpt(ptm) < 0) {
  111|       |		dropbear_log(LOG_WARNING,
  112|       |				"grantpt: %.100s", strerror(errno));
  113|       |		return 0;
  114|       |	}
  115|       |	if (unlockpt(ptm) < 0) {
  116|       |		dropbear_log(LOG_WARNING,
  117|       |				"unlockpt: %.100s", strerror(errno));
  118|       |		return 0;
  119|       |	}
  120|       |	pts = ptsname(ptm);
  121|       |	if (pts == NULL) {
  122|       |		dropbear_log(LOG_WARNING,
  123|       |				"Slave pty side name could not be obtained.");
  124|       |	}
  125|       |	strlcpy(namebuf, pts, namebuflen);
  126|       |	*ptyfd = ptm;
  127|       |
  128|       |	/* Open the slave side. */
  129|       |	*ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
  130|       |	if (*ttyfd < 0) {
  131|       |		dropbear_log(LOG_ERR,
  132|       |			"error opening pts %.100s: %.100s", namebuf, strerror(errno));
  133|       |		close(*ptyfd);
  134|       |		return 0;
  135|       |	}
  136|       |#if !defined(HAVE_CYGWIN) && defined(I_PUSH)
  137|       |	/*
  138|       |	 * Push the appropriate streams modules, as described in Solaris pts(7).
  139|       |	 * HP-UX pts(7) doesn't have ttcompat module.
  140|       |	 */
  141|       |	if (ioctl(*ttyfd, I_PUSH, "ptem") < 0) {
  142|       |		dropbear_log(LOG_WARNING,
  143|       |				"ioctl I_PUSH ptem: %.100s", strerror(errno));
  144|       |	}
  145|       |	if (ioctl(*ttyfd, I_PUSH, "ldterm") < 0) {
  146|       |		dropbear_log(LOG_WARNING,
  147|       |			"ioctl I_PUSH ldterm: %.100s", strerror(errno));
  148|       |	}
  149|       |#ifndef __hpux
  150|       |	if (ioctl(*ttyfd, I_PUSH, "ttcompat") < 0) {
  151|       |		dropbear_log(LOG_WARNING,
  152|       |			"ioctl I_PUSH ttcompat: %.100s", strerror(errno));
  153|       |	}
  154|       |#endif
  155|       |#endif
  156|       |	return 1;
  157|       |#else /* USE_DEV_PTMX */
  158|       |#ifdef HAVE_DEV_PTS_AND_PTC
  159|       |	/* AIX-style pty code. */
  160|       |	const char *name;
  161|       |
  162|       |	*ptyfd = open("/dev/ptc", O_RDWR | O_NOCTTY);
  163|       |	if (*ptyfd < 0) {
  164|       |		dropbear_log(LOG_ERR,
  165|       |			"Could not open /dev/ptc: %.100s", strerror(errno));
  166|       |		return 0;
  167|       |	}
  168|       |	name = ttyname(*ptyfd);
  169|       |	if (!name) {
  170|       |		dropbear_exit("ttyname fails for /dev/ptc device");
  171|       |	}
  172|       |	strlcpy(namebuf, name, namebuflen);
  173|       |	*ttyfd = open(name, O_RDWR | O_NOCTTY);
  174|       |	if (*ttyfd < 0) {
  175|       |		dropbear_log(LOG_ERR,
  176|       |			"Could not open pty slave side %.100s: %.100s",
  177|       |		    name, strerror(errno));
  178|       |		close(*ptyfd);
  179|       |		return 0;
  180|       |	}
  181|       |	return 1;
  182|       |#else /* HAVE_DEV_PTS_AND_PTC */
  183|       |
  184|       |	/* BSD-style pty code. */
  185|       |	char buf[64];
  186|       |	int i;
  187|       |	const char *ptymajors = "pqrstuvwxyzabcdefghijklmnoABCDEFGHIJKLMNOPQRSTUVWXYZ";
  188|       |	const char *ptyminors = "0123456789abcdef";
  189|       |	int num_minors = strlen(ptyminors);
  190|       |	int num_ptys = strlen(ptymajors) * num_minors;
  191|       |	struct termios tio;
  192|       |
  193|       |	for (i = 0; i < num_ptys; i++) {
  194|       |		snprintf(buf, sizeof buf, "/dev/pty%c%c", ptymajors[i / num_minors],
  195|       |			 ptyminors[i % num_minors]);
  196|       |		snprintf(namebuf, namebuflen, "/dev/tty%c%c",
  197|       |		    ptymajors[i / num_minors], ptyminors[i % num_minors]);
  198|       |
  199|       |		*ptyfd = open(buf, O_RDWR | O_NOCTTY);
  200|       |		if (*ptyfd < 0) {
  201|       |			/* Try SCO style naming */
  202|       |			snprintf(buf, sizeof buf, "/dev/ptyp%d", i);
  203|       |			snprintf(namebuf, namebuflen, "/dev/ttyp%d", i);
  204|       |			*ptyfd = open(buf, O_RDWR | O_NOCTTY);
  205|       |			if (*ptyfd < 0) {
  206|       |				continue;
  207|       |			}
  208|       |		}
  209|       |
  210|       |		/* Open the slave side. */
  211|       |		*ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
  212|       |		if (*ttyfd < 0) {
  213|       |			dropbear_log(LOG_ERR,
  214|       |				"pty_allocate: %.100s: %.100s", namebuf, strerror(errno));
  215|       |			close(*ptyfd);
  216|       |			return 0;
  217|       |		}
  218|       |		/* set tty modes to a sane state for broken clients */
  219|       |		if (tcgetattr(*ptyfd, &tio) < 0) {
  220|       |			dropbear_log(LOG_WARNING,
  221|       |				"ptyallocate: tty modes failed: %.100s", strerror(errno));
  222|       |		} else {
  223|       |			tio.c_lflag |= (ECHO | ISIG | ICANON);
  224|       |			tio.c_oflag |= (OPOST | ONLCR);
  225|       |			tio.c_iflag |= ICRNL;
  226|       |
  227|       |			/* Set the new modes for the terminal. */
  228|       |			if (tcsetattr(*ptyfd, TCSANOW, &tio) < 0) {
  229|       |				dropbear_log(LOG_WARNING,
  230|       |					"Setting tty modes for pty failed: %.100s",
  231|       |					strerror(errno));
  232|       |			}
  233|       |		}
  234|       |
  235|       |		return 1;
  236|       |	}
  237|       |	dropbear_log(LOG_WARNING, "Failed to open any /dev/pty?? devices");
  238|       |	return 0;
  239|       |#endif /* HAVE_DEV_PTS_AND_PTC */
  240|       |#endif /* USE_DEV_PTMX */
  241|       |#endif /* HAVE__GETPTY */
  242|       |#endif /* HAVE_OPENPTY */
  243|      1|}
pty_release:
  249|      1|{
  250|      1|	if (chown(tty_name, (uid_t) 0, (gid_t) 0) < 0
  ------------------
  |  Branch (250:6): [True: 0, False: 1]
  ------------------
  251|      1|			&& (errno != ENOENT)) {
  ------------------
  |  Branch (251:7): [True: 0, False: 0]
  ------------------
  252|      0|		dropbear_log(LOG_ERR,
  253|      0|				"chown %.100s 0 0 failed: %.100s", tty_name, strerror(errno));
  254|      0|	}
  255|      1|	if (chmod(tty_name, (mode_t) 0666) < 0
  ------------------
  |  Branch (255:6): [True: 0, False: 1]
  ------------------
  256|      1|			&& (errno != ENOENT)) {
  ------------------
  |  Branch (256:7): [True: 0, False: 0]
  ------------------
  257|      0|		dropbear_log(LOG_ERR,
  258|      0|			"chmod %.100s 0666 failed: %.100s", tty_name, strerror(errno));
  259|      0|	}
  260|      1|}
pty_change_window_size:
  345|      1|{
  346|      1|	struct winsize w;
  347|       |
  348|      1|	w.ws_row = row;
  349|      1|	w.ws_col = col;
  350|      1|	w.ws_xpixel = xpixel;
  351|      1|	w.ws_ypixel = ypixel;
  352|      1|	(void) ioctl(ptyfd, TIOCSWINSZ, &w);
  353|      1|}
pty_setowner:
  357|      1|{
  358|      1|	struct group *grp;
  359|      1|	gid_t gid;
  360|      1|	mode_t mode;
  361|      1|	struct stat st;
  362|       |
  363|       |	/* Determine the group to make the owner of the tty. */
  364|      1|	grp = getgrnam("tty");
  365|      1|	if (grp) {
  ------------------
  |  Branch (365:6): [True: 1, False: 0]
  ------------------
  366|      1|		gid = grp->gr_gid;
  367|      1|		mode = S_IRUSR | S_IWUSR | S_IWGRP;
  368|      1|	} else {
  369|      0|		gid = pw->pw_gid;
  370|      0|		mode = S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH;
  371|      0|	}
  372|       |
  373|       |	/*
  374|       |	 * Change owner and mode of the tty as required.
  375|       |	 * Warn but continue if filesystem is read-only and the uids match/
  376|       |	 * tty is owned by root.
  377|       |	 */
  378|      1|	if (stat(tty_name, &st)) {
  ------------------
  |  Branch (378:6): [True: 0, False: 1]
  ------------------
  379|      0|		dropbear_exit("pty_setowner: stat(%.101s) failed: %.100s",
  380|      0|				tty_name, strerror(errno));
  381|      0|	}
  382|       |
  383|       |	/* Allow either "tty" gid or user's own gid. On Linux with openpty()
  384|       |	 * this varies depending on the devpts mount options */
  385|      1|	if (st.st_uid != pw->pw_uid || !(st.st_gid == gid || st.st_gid == pw->pw_gid)) {
  ------------------
  |  Branch (385:6): [True: 0, False: 1]
  |  Branch (385:35): [True: 1, False: 0]
  |  Branch (385:55): [True: 0, False: 0]
  ------------------
  386|      0|		if (chown(tty_name, pw->pw_uid, gid) < 0) {
  ------------------
  |  Branch (386:7): [True: 0, False: 0]
  ------------------
  387|      0|			if (errno == EROFS &&
  ------------------
  |  Branch (387:8): [True: 0, False: 0]
  ------------------
  388|      0|			    (st.st_uid == pw->pw_uid || st.st_uid == 0)) {
  ------------------
  |  Branch (388:9): [True: 0, False: 0]
  |  Branch (388:36): [True: 0, False: 0]
  ------------------
  389|      0|				dropbear_log(LOG_ERR,
  390|      0|					"chown(%.100s, %u, %u) failed: %.100s",
  391|      0|						tty_name, (unsigned int)pw->pw_uid, (unsigned int)gid,
  392|      0|						strerror(errno));
  393|      0|			} else {
  394|      0|				dropbear_exit("chown(%.100s, %u, %u) failed: %.100s",
  395|      0|				    tty_name, (unsigned int)pw->pw_uid, (unsigned int)gid,
  396|      0|				    strerror(errno));
  397|      0|			}
  398|      0|		}
  399|      0|	}
  400|       |
  401|      1|	if ((st.st_mode & (S_IRWXU|S_IRWXG|S_IRWXO)) != mode) {
  ------------------
  |  Branch (401:6): [True: 0, False: 1]
  ------------------
  402|      0|		if (chmod(tty_name, mode) < 0) {
  ------------------
  |  Branch (402:7): [True: 0, False: 0]
  ------------------
  403|      0|			if (errno == EROFS &&
  ------------------
  |  Branch (403:8): [True: 0, False: 0]
  ------------------
  404|      0|			    (st.st_mode & (S_IRGRP | S_IROTH)) == 0) {
  ------------------
  |  Branch (404:8): [True: 0, False: 0]
  ------------------
  405|      0|				dropbear_log(LOG_ERR,
  406|      0|					"chmod(%.100s, 0%o) failed: %.100s",
  407|      0|					tty_name, mode, strerror(errno));
  408|      0|			} else {
  409|      0|				dropbear_exit("chmod(%.100s, 0%o) failed: %.100s",
  410|      0|				    tty_name, mode, strerror(errno));
  411|      0|			}
  412|      0|		}
  413|      0|	}
  414|      1|}

svr_agentcleanup:
  140|  6.80k|void svr_agentcleanup(struct ChanSess * chansess) {
  141|       |
  142|  6.80k|	char *path = NULL;
  143|  6.80k|	uid_t uid;
  144|  6.80k|	gid_t gid;
  145|  6.80k|	int len;
  146|       |
  147|  6.80k|	if (chansess->agentlistener != NULL) {
  ------------------
  |  Branch (147:6): [True: 0, False: 6.80k]
  ------------------
  148|      0|		remove_listener(chansess->agentlistener);
  149|      0|		chansess->agentlistener = NULL;
  150|      0|	}
  151|       |
  152|  6.80k|	if (chansess->agentfile != NULL && chansess->agentdir != NULL) {
  ------------------
  |  Branch (152:6): [True: 0, False: 6.80k]
  |  Branch (152:37): [True: 0, False: 0]
  ------------------
  153|       |
  154|      0|#if DROPBEAR_SVR_MULTIUSER
  155|       |		/* Remove the dir as the user. That way they can't cause problems except
  156|       |		 * for themselves */
  157|      0|		uid = getuid();
  158|      0|		gid = getgid();
  159|      0|		if ((setegid(ses.authstate.pw_gid)) < 0 ||
  ------------------
  |  Branch (159:7): [True: 0, False: 0]
  ------------------
  160|      0|			(seteuid(ses.authstate.pw_uid)) < 0) {
  ------------------
  |  Branch (160:4): [True: 0, False: 0]
  ------------------
  161|      0|			dropbear_exit("Failed to set euid");
  162|      0|		}
  163|      0|#endif
  164|       |
  165|       |		/* 2 for "/" and "\0" */
  166|      0|		len = strlen(chansess->agentdir) + strlen(chansess->agentfile) + 2;
  167|       |
  168|      0|		path = m_malloc(len);
  169|      0|		snprintf(path, len, "%s/%s", chansess->agentdir, chansess->agentfile);
  170|      0|		unlink(path);
  171|      0|		m_free(path);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  172|       |
  173|      0|		rmdir(chansess->agentdir);
  174|       |
  175|      0|#if DROPBEAR_SVR_MULTIUSER
  176|      0|		if ((seteuid(uid)) < 0 ||
  ------------------
  |  Branch (176:7): [True: 0, False: 0]
  ------------------
  177|      0|			(setegid(gid)) < 0) {
  ------------------
  |  Branch (177:4): [True: 0, False: 0]
  ------------------
  178|      0|			dropbear_exit("Failed to revert euid");
  179|      0|		}
  180|      0|#endif
  181|       |
  182|      0|		m_free(chansess->agentfile);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  183|      0|		m_free(chansess->agentdir);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  184|      0|	}
  185|       |
  186|  6.80k|}

svr_authinitialise:
   42|  1.55k|void svr_authinitialise() {
   43|  1.55k|	memset(&ses.authstate, 0, sizeof(ses.authstate));
   44|  1.55k|#if DROPBEAR_SVR_PUBKEY_AUTH
   45|  1.55k|	ses.authstate.authtypes |= AUTH_TYPE_PUBKEY;
  ------------------
  |  |   88|  1.55k|#define AUTH_TYPE_PUBKEY    (1 << 1)
  ------------------
   46|  1.55k|#endif
   47|  1.55k|#if DROPBEAR_SVR_PASSWORD_AUTH || DROPBEAR_SVR_PAM_AUTH
   48|  1.55k|	if (!svr_opts.noauthpass) {
  ------------------
  |  Branch (48:6): [True: 1.55k, False: 0]
  ------------------
   49|  1.55k|		ses.authstate.authtypes |= AUTH_TYPE_PASSWORD;
  ------------------
  |  |   89|  1.55k|#define AUTH_TYPE_PASSWORD  (1 << 2)
  ------------------
   50|  1.55k|	}
   51|  1.55k|#endif
   52|  1.55k|}
recv_msg_userauth_request:
   73|    392|void recv_msg_userauth_request() {
   74|       |
   75|    392|	char *username = NULL, *servicename = NULL, *methodname = NULL;
   76|    392|	unsigned int userlen, servicelen, methodlen;
   77|    392|	int valid_user = 0;
   78|       |
   79|    392|	TRACE(("enter recv_msg_userauth_request"))
   80|       |
   81|       |	/* for compensating failure delay */
   82|    392|	gettime_wrapper(&ses.authstate.auth_starttime);
   83|       |
   84|       |	/* ignore packets if auth is already done */
   85|    392|	if (ses.authstate.authdone == 1) {
  ------------------
  |  Branch (85:6): [True: 392, False: 0]
  ------------------
   86|    392|		TRACE(("leave recv_msg_userauth_request: authdone already"))
   87|    392|		return;
   88|    392|	}
   89|       |
   90|       |	/* send the banner if it exists, it will only exist once */
   91|      0|	if (svr_opts.banner) {
  ------------------
  |  Branch (91:6): [True: 0, False: 0]
  ------------------
   92|      0|		send_msg_userauth_banner(svr_opts.banner);
   93|      0|		buf_free(svr_opts.banner);
   94|      0|		svr_opts.banner = NULL;
   95|      0|	}
   96|       |
   97|      0|	username = buf_getstring(ses.payload, &userlen);
   98|      0|	servicename = buf_getstring(ses.payload, &servicelen);
   99|      0|	methodname = buf_getstring(ses.payload, &methodlen);
  100|       |
  101|       |	/* only handle 'ssh-connection' currently */
  102|      0|	if (servicelen != SSH_SERVICE_CONNECTION_LEN
  ------------------
  |  |  107|      0|#define SSH_SERVICE_CONNECTION_LEN 14
  ------------------
  |  Branch (102:6): [True: 0, False: 0]
  ------------------
  103|      0|			&& (strncmp(servicename, SSH_SERVICE_CONNECTION,
  ------------------
  |  |  106|      0|#define SSH_SERVICE_CONNECTION "ssh-connection"
  ------------------
  |  Branch (103:7): [True: 0, False: 0]
  ------------------
  104|      0|					SSH_SERVICE_CONNECTION_LEN) != 0)) {
  ------------------
  |  |  107|      0|#define SSH_SERVICE_CONNECTION_LEN 14
  ------------------
  105|       |		
  106|       |		/* TODO - disconnect here */
  107|      0|		m_free(username);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  108|      0|		m_free(servicename);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  109|      0|		m_free(methodname);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  110|      0|		dropbear_exit("unknown service in auth");
  111|      0|	}
  112|       |
  113|       |	/* check username is good before continuing. 
  114|       |	 * the 'incrfail' varies depending on the auth method to
  115|       |	 * avoid giving away which users exist on the system through
  116|       |	 * the time delay. */
  117|      0|	if (checkusername(username, userlen) == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (117:6): [True: 0, False: 0]
  ------------------
  118|      0|		valid_user = 1;
  119|      0|	}
  120|       |
  121|       |	/* user wants to know what methods are supported */
  122|      0|	if (methodlen == AUTH_METHOD_NONE_LEN &&
  ------------------
  |  |   93|      0|#define AUTH_METHOD_NONE_LEN 4
  ------------------
  |  Branch (122:6): [True: 0, False: 0]
  ------------------
  123|      0|			strncmp(methodname, AUTH_METHOD_NONE,
  ------------------
  |  |   92|      0|#define AUTH_METHOD_NONE "none"
  ------------------
  |  Branch (123:4): [True: 0, False: 0]
  ------------------
  124|      0|				AUTH_METHOD_NONE_LEN) == 0) {
  ------------------
  |  |   93|      0|#define AUTH_METHOD_NONE_LEN 4
  ------------------
  125|      0|		TRACE(("recv_msg_userauth_request: 'none' request"))
  126|      0|		if (valid_user
  ------------------
  |  Branch (126:7): [True: 0, False: 0]
  ------------------
  127|      0|				&& svr_opts.allowblankpass
  ------------------
  |  Branch (127:8): [True: 0, False: 0]
  ------------------
  128|      0|				&& !svr_opts.noauthpass
  ------------------
  |  Branch (128:8): [True: 0, False: 0]
  ------------------
  129|      0|				&& !(svr_opts.norootpass && ses.authstate.pw_uid == 0) 
  ------------------
  |  Branch (129:10): [True: 0, False: 0]
  |  Branch (129:33): [True: 0, False: 0]
  ------------------
  130|      0|				&& ses.authstate.pw_passwd[0] == '\0') 
  ------------------
  |  Branch (130:8): [True: 0, False: 0]
  ------------------
  131|      0|		{
  132|      0|			dropbear_log(LOG_NOTICE, 
  133|      0|					"Auth succeeded with blank password for '%s' from %s",
  134|      0|					ses.authstate.pw_name,
  135|      0|					svr_ses.addrstring);
  136|      0|			send_msg_userauth_success();
  137|      0|			goto out;
  138|      0|		}
  139|      0|		else
  140|      0|		{
  141|       |			/* 'none' has no failure delay */
  142|      0|			send_msg_userauth_failure(0, 0);
  143|      0|			goto out;
  144|      0|		}
  145|      0|	}
  146|       |	
  147|      0|#if DROPBEAR_SVR_PASSWORD_AUTH
  148|      0|	if (!svr_opts.noauthpass &&
  ------------------
  |  Branch (148:6): [True: 0, False: 0]
  ------------------
  149|      0|			!(svr_opts.norootpass && ses.authstate.pw_uid == 0) ) {
  ------------------
  |  Branch (149:6): [True: 0, False: 0]
  |  Branch (149:29): [True: 0, False: 0]
  ------------------
  150|       |		/* user wants to try password auth */
  151|      0|		if (methodlen == AUTH_METHOD_PASSWORD_LEN &&
  ------------------
  |  |   97|      0|#define AUTH_METHOD_PASSWORD_LEN 8
  ------------------
  |  Branch (151:7): [True: 0, False: 0]
  ------------------
  152|      0|				strncmp(methodname, AUTH_METHOD_PASSWORD,
  ------------------
  |  |   96|      0|#define AUTH_METHOD_PASSWORD "password"
  ------------------
  |  Branch (152:5): [True: 0, False: 0]
  ------------------
  153|      0|					AUTH_METHOD_PASSWORD_LEN) == 0) {
  ------------------
  |  |   97|      0|#define AUTH_METHOD_PASSWORD_LEN 8
  ------------------
  154|      0|			svr_auth_password(valid_user);
  155|      0|			goto out;
  156|      0|		}
  157|      0|	}
  158|      0|#endif
  159|       |
  160|       |#if DROPBEAR_SVR_PAM_AUTH
  161|       |	if (!svr_opts.noauthpass &&
  162|       |			!(svr_opts.norootpass && ses.authstate.pw_uid == 0) ) {
  163|       |		/* user wants to try password auth */
  164|       |		if (methodlen == AUTH_METHOD_PASSWORD_LEN &&
  165|       |				strncmp(methodname, AUTH_METHOD_PASSWORD,
  166|       |					AUTH_METHOD_PASSWORD_LEN) == 0) {
  167|       |			svr_auth_pam(valid_user);
  168|       |			goto out;
  169|       |		}
  170|       |	}
  171|       |#endif
  172|       |
  173|      0|#if DROPBEAR_SVR_PUBKEY_AUTH
  174|       |	/* user wants to try pubkey auth */
  175|      0|	if (methodlen == AUTH_METHOD_PUBKEY_LEN &&
  ------------------
  |  |   95|      0|#define AUTH_METHOD_PUBKEY_LEN 9
  ------------------
  |  Branch (175:6): [True: 0, False: 0]
  ------------------
  176|      0|			strncmp(methodname, AUTH_METHOD_PUBKEY,
  ------------------
  |  |   94|      0|#define AUTH_METHOD_PUBKEY "publickey"
  ------------------
  |  Branch (176:4): [True: 0, False: 0]
  ------------------
  177|      0|				AUTH_METHOD_PUBKEY_LEN) == 0) {
  ------------------
  |  |   95|      0|#define AUTH_METHOD_PUBKEY_LEN 9
  ------------------
  178|      0|		svr_auth_pubkey(valid_user);
  179|      0|		goto out;
  180|      0|	}
  181|      0|#endif
  182|       |
  183|       |	/* nothing matched, we just fail with a delay */
  184|      0|	send_msg_userauth_failure(0, 1);
  185|       |
  186|      0|out:
  187|       |
  188|      0|	m_free(username);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  189|      0|	m_free(servicename);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  190|      0|	m_free(methodname);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  191|      0|}

svr_pubkey_allows_tcpfwd:
   65|  2.60k|int svr_pubkey_allows_tcpfwd() {
   66|  2.60k|	if (ses.authstate.pubkey_options 
  ------------------
  |  Branch (66:6): [True: 0, False: 2.60k]
  ------------------
   67|  2.60k|		&& ses.authstate.pubkey_options->no_port_forwarding_flag) {
  ------------------
  |  Branch (67:6): [True: 0, False: 0]
  ------------------
   68|      0|		return 0;
   69|      0|	}
   70|  2.60k|	return 1;
   71|  2.60k|}
svr_pubkey_allows_pty:
   84|    143|int svr_pubkey_allows_pty() {
   85|    143|	if (ses.authstate.pubkey_options 
  ------------------
  |  Branch (85:6): [True: 0, False: 143]
  ------------------
   86|    143|		&& ses.authstate.pubkey_options->no_pty_flag) {
  ------------------
  |  Branch (86:6): [True: 0, False: 0]
  ------------------
   87|      0|		return 0;
   88|      0|	}
   89|    143|	return 1;
   90|    143|}
svr_pubkey_allows_local_tcpfwd:
   94|    101|int svr_pubkey_allows_local_tcpfwd(const char *host, unsigned int port) {
   95|    101|	if (ses.authstate.pubkey_options
  ------------------
  |  Branch (95:6): [True: 0, False: 101]
  ------------------
   96|    101|		&& ses.authstate.pubkey_options->permit_open_destinations) {
  ------------------
  |  Branch (96:6): [True: 0, False: 0]
  ------------------
   97|      0|		m_list_elem *iter = ses.authstate.pubkey_options->permit_open_destinations->first;
   98|      0|		while (iter) {
  ------------------
  |  Branch (98:10): [True: 0, False: 0]
  ------------------
   99|      0|			struct PermitTCPFwdEntry *entry = (struct PermitTCPFwdEntry*)iter->item;
  100|      0|			if (strcmp(entry->host, host) == 0) {
  ------------------
  |  Branch (100:8): [True: 0, False: 0]
  ------------------
  101|      0|				if ((entry->port == PUBKEY_OPTIONS_ANY_PORT) || (entry->port == port)) {
  ------------------
  |  |  101|      0|#define PUBKEY_OPTIONS_ANY_PORT UINT_MAX
  ------------------
  |  Branch (101:9): [True: 0, False: 0]
  |  Branch (101:53): [True: 0, False: 0]
  ------------------
  102|      0|					return 1;
  103|      0|				}
  104|      0|			}
  105|       |
  106|      0|			iter = iter->next;
  107|      0|		}
  108|       |
  109|      0|		return 0;
  110|      0|	}
  111|       |
  112|    101|	return 1;
  113|    101|}
svr_pubkey_set_forced_command:
  117|  4.08k|void svr_pubkey_set_forced_command(struct ChanSess *chansess) {
  118|  4.08k|	if (ses.authstate.pubkey_options && ses.authstate.pubkey_options->forced_command) {
  ------------------
  |  Branch (118:6): [True: 0, False: 4.08k]
  |  Branch (118:38): [True: 0, False: 0]
  ------------------
  119|      0|		TRACE(("Forced command '%s'", ses.authstate.pubkey_options->forced_command))
  120|      0|		if (chansess->cmd) {
  ------------------
  |  Branch (120:7): [True: 0, False: 0]
  ------------------
  121|       |			/* original_command takes ownership */
  122|      0|			chansess->original_command = chansess->cmd;
  123|      0|			chansess->cmd = NULL;
  124|      0|		} else {
  125|      0|			chansess->original_command = m_strdup("");
  126|      0|		}
  127|      0|		chansess->cmd = m_strdup(ses.authstate.pubkey_options->forced_command);
  128|       |#if LOG_COMMANDS
  129|       |		dropbear_log(LOG_INFO, "Command forced to '%s'", chansess->original_command);
  130|       |#endif
  131|      0|	}
  132|  4.08k|}
svr_pubkey_options_cleanup:
  135|  1.55k|void svr_pubkey_options_cleanup() {
  136|  1.55k|	if (ses.authstate.pubkey_options) {
  ------------------
  |  Branch (136:6): [True: 0, False: 1.55k]
  ------------------
  137|      0|		if (ses.authstate.pubkey_options->forced_command) {
  ------------------
  |  Branch (137:7): [True: 0, False: 0]
  ------------------
  138|      0|			m_free(ses.authstate.pubkey_options->forced_command);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  139|      0|		}
  140|      0|		if (ses.authstate.pubkey_options->permit_open_destinations) {
  ------------------
  |  Branch (140:7): [True: 0, False: 0]
  ------------------
  141|      0|			m_list_elem *iter = ses.authstate.pubkey_options->permit_open_destinations->first;
  142|      0|			while (iter) {
  ------------------
  |  Branch (142:11): [True: 0, False: 0]
  ------------------
  143|      0|				struct PermitTCPFwdEntry *entry = (struct PermitTCPFwdEntry*)list_remove(iter);
  144|      0|				m_free(entry->host);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  145|      0|				m_free(entry);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  146|      0|				iter = ses.authstate.pubkey_options->permit_open_destinations->first;
  147|      0|			}
  148|      0|			m_free(ses.authstate.pubkey_options->permit_open_destinations);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  149|      0|		}
  150|      0|		m_free(ses.authstate.pubkey_options);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  151|      0|	}
  152|  1.55k|	if (ses.authstate.pubkey_info) {
  ------------------
  |  Branch (152:6): [True: 0, False: 1.55k]
  ------------------
  153|      0|		m_free(ses.authstate.pubkey_info);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  154|      0|	}
  155|  1.55k|}

svr_chansess_checksignal:
   95|   503k|void svr_chansess_checksignal(void) {
   96|   503k|	int status;
   97|   503k|	pid_t pid;
   98|       |
   99|   503k|	if (!ses.channel_signal_pending) {
  ------------------
  |  Branch (99:6): [True: 503k, False: 0]
  ------------------
  100|   503k|		return;
  101|   503k|	}
  102|       |
  103|      0|	while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
  ------------------
  |  Branch (103:9): [True: 0, False: 0]
  ------------------
  104|      0|		unsigned int i;
  105|      0|		struct exitinfo *ex = NULL;
  106|      0|		TRACE(("svr_chansess_checksignal : pid %d", pid))
  107|       |
  108|      0|		ex = NULL;
  109|       |		/* find the corresponding chansess */
  110|      0|		for (i = 0; i < svr_ses.childpidsize; i++) {
  ------------------
  |  Branch (110:15): [True: 0, False: 0]
  ------------------
  111|      0|			if (svr_ses.childpids[i].pid == pid) {
  ------------------
  |  Branch (111:8): [True: 0, False: 0]
  ------------------
  112|      0|				TRACE(("found match session"));
  113|      0|				ex = &svr_ses.childpids[i].chansess->exit;
  114|      0|				break;
  115|      0|			}
  116|      0|		}
  117|       |
  118|       |		/* If the pid wasn't matched, then we might have hit the race mentioned
  119|       |		 * above. So we just store the info for the parent to deal with */
  120|      0|		if (ex == NULL) {
  ------------------
  |  Branch (120:7): [True: 0, False: 0]
  ------------------
  121|      0|			TRACE(("using lastexit"));
  122|      0|			ex = &svr_ses.lastexit;
  123|      0|		}
  124|       |
  125|      0|		ex->exitpid = pid;
  126|      0|		if (WIFEXITED(status)) {
  127|      0|			ex->exitstatus = WEXITSTATUS(status);
  128|      0|		}
  129|      0|		if (WIFSIGNALED(status)) {
  130|      0|			ex->exitsignal = WTERMSIG(status);
  131|      0|#if !defined(AIX) && defined(WCOREDUMP)
  132|      0|			ex->exitcore = WCOREDUMP(status);
  133|       |#else
  134|       |			ex->exitcore = 0;
  135|       |#endif
  136|      0|		} else {
  137|       |			/* we use this to determine how pid exited */
  138|      0|			ex->exitsignal = -1;
  139|      0|		}
  140|      0|	}
  141|      0|}
svr_chansessinitialise:
 1077|  1.55k|void svr_chansessinitialise() {
 1078|       |
 1079|  1.55k|	struct sigaction sa_chld;
 1080|       |
 1081|       |	/* single child process intially */
 1082|  1.55k|	svr_ses.childpids = (struct ChildPid*)m_malloc(sizeof(struct ChildPid));
 1083|  1.55k|	svr_ses.childpids[0].pid = -1; /* unused */
 1084|  1.55k|	svr_ses.childpids[0].chansess = NULL;
 1085|  1.55k|	svr_ses.childpidsize = 1;
 1086|  1.55k|	svr_ses.lastexit.exitpid = -1; /* Nothing has exited yet */
 1087|  1.55k|	sa_chld.sa_handler = sesssigchild_handler;
 1088|  1.55k|	sa_chld.sa_flags = SA_NOCLDSTOP;
 1089|  1.55k|	sigemptyset(&sa_chld.sa_mask);
 1090|  1.55k|	if (sigaction(SIGCHLD, &sa_chld, NULL) < 0) {
  ------------------
  |  Branch (1090:6): [True: 0, False: 1.55k]
  ------------------
 1091|      0|		dropbear_exit("signal() error");
 1092|      0|	}
 1093|       |	
 1094|  1.55k|}
svr-chansession.c:sesscheckclose:
   77|   204k|static int sesscheckclose(struct Channel *channel) {
   78|   204k|	struct ChanSess *chansess = (struct ChanSess*)channel->typedata;
   79|   204k|	TRACE(("sesscheckclose, pid %d, exitpid %d", chansess->pid, chansess->exit.exitpid))
   80|       |
   81|   204k|	if (chansess->exit.exitpid != -1) {
  ------------------
  |  Branch (81:6): [True: 0, False: 204k]
  ------------------
   82|      0|		channel->flushing = 1;
   83|      0|	}
   84|   204k|	return chansess->pid == 0 || chansess->exit.exitpid != -1;
  ------------------
  |  Branch (84:9): [True: 2.10k, False: 202k]
  |  Branch (84:31): [True: 0, False: 202k]
  ------------------
   85|   204k|}
svr-chansession.c:newchansess:
  241|  6.80k|static int newchansess(struct Channel *channel) {
  242|       |
  243|  6.80k|	struct ChanSess *chansess;
  244|       |
  245|  6.80k|	TRACE(("new chansess %p", (void*)channel))
  246|       |
  247|  6.80k|	dropbear_assert(channel->typedata == NULL);
  ------------------
  |  |   83|  6.80k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 6.80k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  248|       |
  249|  6.80k|	chansess = (struct ChanSess*)m_malloc(sizeof(struct ChanSess));
  250|  6.80k|	chansess->cmd = NULL;
  251|  6.80k|	chansess->connection_string = NULL;
  252|  6.80k|	chansess->client_string = NULL;
  253|  6.80k|	chansess->pid = 0;
  254|       |
  255|       |	/* pty details */
  256|  6.80k|	chansess->master = -1;
  257|  6.80k|	chansess->slave = -1;
  258|  6.80k|	chansess->tty = NULL;
  259|  6.80k|	chansess->term = NULL;
  260|       |
  261|  6.80k|	chansess->exit.exitpid = -1;
  262|       |
  263|  6.80k|	channel->typedata = chansess;
  264|       |
  265|       |#if DROPBEAR_X11FWD
  266|       |	chansess->x11listener = NULL;
  267|       |	chansess->x11authprot = NULL;
  268|       |	chansess->x11authcookie = NULL;
  269|       |#endif
  270|       |
  271|  6.80k|#if DROPBEAR_SVR_AGENTFWD
  272|  6.80k|	chansess->agentlistener = NULL;
  273|  6.80k|	chansess->agentfile = NULL;
  274|  6.80k|	chansess->agentdir = NULL;
  275|  6.80k|#endif
  276|       |
  277|       |	/* Will drop to DROPBEAR_PRIO_NORMAL if a non-tty command starts */
  278|  6.80k|	channel->prio = DROPBEAR_PRIO_LOWDELAY;
  279|       |
  280|  6.80k|	return 0;
  281|       |
  282|  6.80k|}
svr-chansession.c:closechansess:
  293|  2.10k|static void closechansess(const struct Channel *channel) {
  294|  2.10k|	struct ChanSess *chansess;
  295|       |
  296|  2.10k|	TRACE(("enter closechansess"))
  297|       |
  298|  2.10k|	chansess = (struct ChanSess*)channel->typedata;
  299|       |
  300|  2.10k|	if (chansess == NULL) {
  ------------------
  |  Branch (300:6): [True: 0, False: 2.10k]
  ------------------
  301|      0|		TRACE(("leave closechansess: chansess == NULL"))
  302|      0|		return;
  303|      0|	}
  304|       |
  305|  2.10k|	send_exitsignalstatus(channel);
  306|  2.10k|	TRACE(("leave closechansess"))
  307|  2.10k|}
svr-chansession.c:send_exitsignalstatus:
  170|  2.10k|static void send_exitsignalstatus(const struct Channel *channel) {
  171|       |
  172|  2.10k|	struct ChanSess *chansess = (struct ChanSess*)channel->typedata;
  173|       |
  174|  2.10k|	if (chansess->exit.exitpid >= 0) {
  ------------------
  |  Branch (174:6): [True: 0, False: 2.10k]
  ------------------
  175|      0|		if (chansess->exit.exitsignal > 0) {
  ------------------
  |  Branch (175:7): [True: 0, False: 0]
  ------------------
  176|      0|			send_msg_chansess_exitsignal(channel, chansess);
  177|      0|		} else {
  178|      0|			send_msg_chansess_exitstatus(channel, chansess);
  179|      0|		}
  180|      0|	}
  181|  2.10k|}
svr-chansession.c:cleanupchansess:
  310|  6.80k|static void cleanupchansess(const struct Channel *channel) {
  311|       |
  312|  6.80k|	struct ChanSess *chansess;
  313|  6.80k|	unsigned int i;
  314|  6.80k|	struct logininfo *li;
  315|       |
  316|  6.80k|	TRACE(("enter closechansess"))
  317|       |
  318|  6.80k|	chansess = (struct ChanSess*)channel->typedata;
  319|       |
  320|  6.80k|	if (chansess == NULL) {
  ------------------
  |  Branch (320:6): [True: 0, False: 6.80k]
  ------------------
  321|      0|		TRACE(("leave closechansess: chansess == NULL"))
  322|      0|		return;
  323|      0|	}
  324|       |
  325|  6.80k|	m_free(chansess->cmd);
  ------------------
  |  |   24|  6.80k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  326|  6.80k|	m_free(chansess->term);
  ------------------
  |  |   24|  6.80k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  327|  6.80k|	m_free(chansess->original_command);
  ------------------
  |  |   24|  6.80k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  328|       |
  329|  6.80k|	if (chansess->tty) {
  ------------------
  |  Branch (329:6): [True: 1, False: 6.80k]
  ------------------
  330|       |		/* write the utmp/wtmp login record */
  331|      1|		li = chansess_login_alloc(chansess);
  332|      1|		login_logout(li);
  333|      1|		login_free_entry(li);
  334|       |
  335|      1|		pty_release(chansess->tty);
  336|      1|		m_free(chansess->tty);
  ------------------
  |  |   24|      1|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  337|      1|	}
  338|       |
  339|       |#if DROPBEAR_X11FWD
  340|       |	x11cleanup(chansess);
  341|       |#endif
  342|       |
  343|  6.80k|#if DROPBEAR_SVR_AGENTFWD
  344|  6.80k|	svr_agentcleanup(chansess);
  345|  6.80k|#endif
  346|       |
  347|       |	/* clear child pid entries */
  348|  21.8k|	for (i = 0; i < svr_ses.childpidsize; i++) {
  ------------------
  |  Branch (348:14): [True: 15.0k, False: 6.80k]
  ------------------
  349|  15.0k|		if (svr_ses.childpids[i].chansess == chansess) {
  ------------------
  |  Branch (349:7): [True: 3.05k, False: 12.0k]
  ------------------
  350|  3.05k|			dropbear_assert(svr_ses.childpids[i].pid > 0);
  ------------------
  |  |   83|  3.05k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 3.05k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  351|  3.05k|			TRACE(("closing pid %d", svr_ses.childpids[i].pid))
  352|  3.05k|			TRACE(("exitpid is %d", chansess->exit.exitpid))
  353|  3.05k|			svr_ses.childpids[i].pid = -1;
  354|  3.05k|			svr_ses.childpids[i].chansess = NULL;
  355|  3.05k|		}
  356|  15.0k|	}
  357|       |				
  358|  6.80k|	m_free(chansess);
  ------------------
  |  |   24|  6.80k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  359|       |
  360|  6.80k|	TRACE(("leave closechansess"))
  361|  6.80k|}
svr-chansession.c:chansess_login_alloc:
  285|      1|chansess_login_alloc(const struct ChanSess *chansess) {
  286|      1|	struct logininfo * li;
  287|      1|	li = login_alloc_entry(chansess->pid, ses.authstate.username,
  288|      1|			svr_ses.remotehost, chansess->tty);
  289|      1|	return li;
  290|      1|}
svr-chansession.c:chansessionrequest:
  365|  9.45k|static void chansessionrequest(struct Channel *channel) {
  366|       |
  367|  9.45k|	char * type = NULL;
  368|  9.45k|	unsigned int typelen;
  369|  9.45k|	unsigned char wantreply;
  370|  9.45k|	int ret = 1;
  371|  9.45k|	struct ChanSess *chansess;
  372|       |
  373|  9.45k|	TRACE(("enter chansessionrequest"))
  374|       |
  375|  9.45k|	type = buf_getstring(ses.payload, &typelen);
  376|  9.45k|	wantreply = buf_getbool(ses.payload);
  377|       |
  378|  9.45k|	if (typelen > MAX_NAME_LEN) {
  ------------------
  |  |  205|  9.45k|#define MAX_NAME_LEN 64 /* maximum length of a protocol name, isn't
  ------------------
  |  Branch (378:6): [True: 71, False: 9.37k]
  ------------------
  379|     71|		TRACE(("leave chansessionrequest: type too long")) /* XXX send error?*/
  380|     71|		goto out;
  381|     71|	}
  382|       |
  383|  9.37k|	chansess = (struct ChanSess*)channel->typedata;
  384|  9.37k|	dropbear_assert(chansess != NULL);
  ------------------
  |  |   83|  9.37k|#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
  |  |  ------------------
  |  |  |  Branch (83:37): [True: 0, False: 9.37k]
  |  |  |  Branch (83:93): [Folded - Ignored]
  |  |  ------------------
  ------------------
  385|  9.37k|	TRACE(("type is %s", type))
  386|       |
  387|  9.37k|	if (strcmp(type, "window-change") == 0) {
  ------------------
  |  Branch (387:6): [True: 64, False: 9.31k]
  ------------------
  388|     64|		ret = sessionwinchange(chansess);
  389|  9.31k|	} else if (strcmp(type, "shell") == 0) {
  ------------------
  |  Branch (389:13): [True: 6.57k, False: 2.74k]
  ------------------
  390|  6.57k|		ret = sessioncommand(channel, chansess, 0, 0);
  391|  6.57k|	} else if (strcmp(type, "pty-req") == 0) {
  ------------------
  |  Branch (391:13): [True: 143, False: 2.60k]
  ------------------
  392|    143|		ret = sessionpty(chansess);
  393|  2.60k|	} else if (strcmp(type, "exec") == 0) {
  ------------------
  |  Branch (393:13): [True: 213, False: 2.38k]
  ------------------
  394|    213|		ret = sessioncommand(channel, chansess, 1, 0);
  395|  2.38k|	} else if (strcmp(type, "subsystem") == 0) {
  ------------------
  |  Branch (395:13): [True: 290, False: 2.09k]
  ------------------
  396|    290|		ret = sessioncommand(channel, chansess, 1, 1);
  397|       |#if DROPBEAR_X11FWD
  398|       |	} else if (strcmp(type, "x11-req") == 0) {
  399|       |		ret = x11req(chansess);
  400|       |#endif
  401|    290|#if DROPBEAR_SVR_AGENTFWD
  402|  2.09k|	} else if (strcmp(type, "auth-agent-req@openssh.com") == 0) {
  ------------------
  |  Branch (402:13): [True: 0, False: 2.09k]
  ------------------
  403|      0|		ret = svr_agentreq(chansess);
  404|      0|#endif
  405|  2.09k|	} else if (strcmp(type, "signal") == 0) {
  ------------------
  |  Branch (405:13): [True: 750, False: 1.34k]
  ------------------
  406|    750|		ret = sessionsignal(chansess);
  407|  1.34k|	} else {
  408|       |		/* etc, todo "env", "subsystem" */
  409|  1.34k|	}
  410|       |
  411|  9.43k|out:
  412|       |
  413|  9.43k|	if (wantreply) {
  ------------------
  |  Branch (413:6): [True: 7.79k, False: 1.64k]
  ------------------
  414|  7.79k|		if (ret == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|  7.79k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (414:7): [True: 2.52k, False: 5.26k]
  ------------------
  415|  2.52k|			send_msg_channel_success(channel);
  416|  5.26k|		} else {
  417|  5.26k|			send_msg_channel_failure(channel);
  418|  5.26k|		}
  419|  7.79k|	}
  420|       |
  421|  9.43k|	m_free(type);
  ------------------
  |  |   24|  9.43k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  422|  9.43k|	TRACE(("leave chansessionrequest"))
  423|  9.43k|}
svr-chansession.c:sessionwinchange:
  467|     65|static int sessionwinchange(const struct ChanSess *chansess) {
  468|       |
  469|     65|	int termc, termr, termw, termh;
  470|       |
  471|     65|	if (chansess->master < 0) {
  ------------------
  |  Branch (471:6): [True: 64, False: 1]
  ------------------
  472|       |		/* haven't got a pty yet */
  473|     64|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|     64|#define DROPBEAR_FAILURE -1
  ------------------
  474|     64|	}
  475|       |			
  476|      1|	termc = buf_getint(ses.payload);
  477|      1|	termr = buf_getint(ses.payload);
  478|      1|	termw = buf_getint(ses.payload);
  479|      1|	termh = buf_getint(ses.payload);
  480|       |	
  481|      1|	pty_change_window_size(chansess->master, termr, termc, termw, termh);
  482|       |
  483|      1|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      1|#define DROPBEAR_SUCCESS 0
  ------------------
  484|     65|}
svr-chansession.c:sessioncommand:
  658|  7.07k|		int iscmd, int issubsys) {
  659|       |
  660|  7.07k|	unsigned int cmdlen = 0;
  661|  7.07k|	int ret;
  662|       |
  663|  7.07k|	TRACE(("enter sessioncommand %d", channel->index))
  664|       |
  665|  7.07k|	if (chansess->pid != 0) {
  ------------------
  |  Branch (665:6): [True: 2.76k, False: 4.31k]
  ------------------
  666|       |		/* Note that only one command can _succeed_. The client might try
  667|       |		 * one command (which fails), then try another. Ie fallback
  668|       |		 * from sftp to scp */
  669|  2.76k|		TRACE(("leave sessioncommand, already have a command"))
  670|  2.76k|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|  2.76k|#define DROPBEAR_FAILURE -1
  ------------------
  671|  2.76k|	}
  672|       |
  673|  4.31k|	if (iscmd) {
  ------------------
  |  Branch (673:6): [True: 437, False: 3.87k]
  ------------------
  674|       |		/* "exec" */
  675|    437|		if (chansess->cmd == NULL) {
  ------------------
  |  Branch (675:7): [True: 437, False: 0]
  ------------------
  676|    437|			chansess->cmd = buf_getstring(ses.payload, &cmdlen);
  677|       |
  678|    437|			if (cmdlen > MAX_CMD_LEN) {
  ------------------
  |  |   75|    437|#define MAX_CMD_LEN 9000 /* max length of a command */
  ------------------
  |  Branch (678:8): [True: 0, False: 437]
  ------------------
  679|      0|				m_free(chansess->cmd);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  680|       |				/* TODO - send error - too long ? */
  681|      0|				TRACE(("leave sessioncommand, command too long %d", cmdlen))
  682|      0|				return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  683|      0|			}
  684|    437|		}
  685|    437|		if (issubsys) {
  ------------------
  |  Branch (685:7): [True: 290, False: 147]
  ------------------
  686|    290|#if DROPBEAR_SFTPSERVER
  687|    290|			if ((cmdlen == 4) && strncmp(chansess->cmd, "sftp", 4) == 0) {
  ------------------
  |  Branch (687:8): [True: 131, False: 159]
  |  Branch (687:25): [True: 65, False: 66]
  ------------------
  688|     65|				char *expand_path = expand_homedir_path(SFTPSERVER_PATH);
  ------------------
  |  |  463|     65|#define SFTPSERVER_PATH "/usr/libexec/sftp-server"
  ------------------
  689|     65|				m_free(chansess->cmd);
  ------------------
  |  |   24|     65|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  690|     65|				chansess->cmd = m_strdup(expand_path);
  691|     65|				m_free(expand_path);
  ------------------
  |  |   24|     65|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  692|     65|			} else 
  693|    225|#endif
  694|    225|			{
  695|    225|				m_free(chansess->cmd);
  ------------------
  |  |   24|    225|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  696|    225|				TRACE(("leave sessioncommand, unknown subsystem"))
  697|    225|				return DROPBEAR_FAILURE;
  ------------------
  |  |  103|    225|#define DROPBEAR_FAILURE -1
  ------------------
  698|    225|			}
  699|    290|		}
  700|    437|	}
  701|       |	
  702|       |
  703|       |	/* take global command into account */
  704|  4.08k|	if (svr_opts.forced_command) {
  ------------------
  |  Branch (704:6): [True: 0, False: 4.08k]
  ------------------
  705|      0|		if (chansess->cmd) {
  ------------------
  |  Branch (705:7): [True: 0, False: 0]
  ------------------
  706|      0|			chansess->original_command = chansess->cmd;
  707|      0|		} else {
  708|      0|			chansess->original_command = m_strdup("");
  709|      0|		}
  710|      0|		chansess->cmd = m_strdup(svr_opts.forced_command);
  711|  4.08k|	} else {
  712|       |		/* take public key option 'command' into account */
  713|  4.08k|		svr_pubkey_set_forced_command(chansess);
  714|  4.08k|	}
  715|       |
  716|       |
  717|       |#if LOG_COMMANDS
  718|       |	if (chansess->cmd) {
  719|       |		dropbear_log(LOG_INFO, "User %s executing '%s'", 
  720|       |						ses.authstate.pw_name, chansess->cmd);
  721|       |	} else {
  722|       |		dropbear_log(LOG_INFO, "User %s executing login shell", 
  723|       |						ses.authstate.pw_name);
  724|       |	}
  725|       |#endif
  726|       |
  727|       |	/* uClinux will vfork(), so there'll be a race as 
  728|       |	connection_string is freed below. */
  729|  4.08k|#if !DROPBEAR_VFORK
  730|  4.08k|	make_connection_string(chansess);
  731|  4.08k|#endif
  732|       |
  733|  4.08k|	if (chansess->term == NULL) {
  ------------------
  |  Branch (733:6): [True: 3.05k, False: 1.02k]
  ------------------
  734|       |		/* no pty */
  735|  3.05k|		ret = noptycommand(channel, chansess);
  736|  3.05k|		if (ret == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|  3.05k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (736:7): [True: 3.05k, False: 0]
  ------------------
  737|  3.05k|			channel->prio = DROPBEAR_PRIO_NORMAL;
  738|  3.05k|			update_channel_prio();
  739|  3.05k|		}
  740|  3.05k|	} else {
  741|       |		/* want pty */
  742|  1.02k|		ret = ptycommand(channel, chansess);
  743|  1.02k|	}
  744|       |
  745|  4.08k|#if !DROPBEAR_VFORK
  746|  4.08k|	m_free(chansess->connection_string);
  ------------------
  |  |   24|  4.08k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  747|  4.08k|	m_free(chansess->client_string);
  ------------------
  |  |   24|  4.08k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  748|  4.08k|#endif
  749|       |
  750|  4.08k|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|  4.08k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (750:6): [True: 1.02k, False: 3.05k]
  ------------------
  751|  1.02k|		m_free(chansess->cmd);
  ------------------
  |  |   24|  1.02k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  752|  1.02k|	}
  753|  4.08k|	TRACE(("leave sessioncommand, ret %d", ret))
  754|  4.08k|	return ret;
  755|  4.31k|}
svr-chansession.c:make_connection_string:
  630|  4.08k|static void make_connection_string(struct ChanSess *chansess) {
  631|  4.08k|	char *local_ip, *local_port, *remote_ip, *remote_port;
  632|  4.08k|	size_t len;
  633|  4.08k|	get_socket_address(ses.sock_in, &local_ip, &local_port, &remote_ip, &remote_port, 0);
  634|       |
  635|       |	/* "remoteip remoteport localip localport" */
  636|  4.08k|	len = strlen(local_ip) + strlen(remote_ip) + 20;
  637|  4.08k|	chansess->connection_string = m_malloc(len);
  638|  4.08k|	snprintf(chansess->connection_string, len, "%s %s %s %s", remote_ip, remote_port, local_ip, local_port);
  639|       |
  640|       |	/* deprecated but bash only loads .bashrc if SSH_CLIENT is set */ 
  641|       |	/* "remoteip remoteport localport" */
  642|  4.08k|	len = strlen(remote_ip) + 20;
  643|  4.08k|	chansess->client_string = m_malloc(len);
  644|  4.08k|	snprintf(chansess->client_string, len, "%s %s %s", remote_ip, remote_port, local_port);
  645|       |
  646|  4.08k|	m_free(local_ip);
  ------------------
  |  |   24|  4.08k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  647|  4.08k|	m_free(local_port);
  ------------------
  |  |   24|  4.08k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  648|  4.08k|	m_free(remote_ip);
  ------------------
  |  |   24|  4.08k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  649|  4.08k|	m_free(remote_port);
  ------------------
  |  |   24|  4.08k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  650|  4.08k|}
svr-chansession.c:noptycommand:
  760|  3.05k|static int noptycommand(struct Channel *channel, struct ChanSess *chansess) {
  761|  3.05k|	int ret;
  762|       |
  763|  3.05k|	TRACE(("enter noptycommand"))
  764|  3.05k|	ret = spawn_command(execchild, chansess, 
  765|  3.05k|			&channel->writefd, &channel->readfd, &channel->errfd,
  766|  3.05k|			&chansess->pid);
  767|       |
  768|  3.05k|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|  3.05k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (768:6): [True: 0, False: 3.05k]
  ------------------
  769|      0|		return ret;
  770|      0|	}
  771|       |
  772|  3.05k|	ses.maxfd = MAX(ses.maxfd, channel->writefd);
  773|  3.05k|	ses.maxfd = MAX(ses.maxfd, channel->readfd);
  774|  3.05k|	ses.maxfd = MAX(ses.maxfd, channel->errfd);
  775|  3.05k|	channel->bidir_fd = 0;
  776|       |
  777|  3.05k|	addchildpid(chansess, chansess->pid);
  778|       |
  779|  3.05k|	if (svr_ses.lastexit.exitpid != -1) {
  ------------------
  |  Branch (779:6): [True: 0, False: 3.05k]
  ------------------
  780|      0|		unsigned int i;
  781|      0|		TRACE(("parent side: lastexitpid is %d", svr_ses.lastexit.exitpid))
  782|       |		/* The child probably exited and the signal handler triggered
  783|       |		 * possibly before we got around to adding the childpid. So we fill
  784|       |		 * out its data manually */
  785|      0|		for (i = 0; i < svr_ses.childpidsize; i++) {
  ------------------
  |  Branch (785:15): [True: 0, False: 0]
  ------------------
  786|      0|			if (svr_ses.childpids[i].pid == svr_ses.lastexit.exitpid) {
  ------------------
  |  Branch (786:8): [True: 0, False: 0]
  ------------------
  787|      0|				TRACE(("found match for lastexitpid"))
  788|      0|				svr_ses.childpids[i].chansess->exit = svr_ses.lastexit;
  789|      0|				svr_ses.lastexit.exitpid = -1;
  790|      0|				break;
  791|      0|			}
  792|      0|		}
  793|      0|	}
  794|       |
  795|  3.05k|	TRACE(("leave noptycommand"))
  796|  3.05k|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|  3.05k|#define DROPBEAR_SUCCESS 0
  ------------------
  797|  3.05k|}
svr-chansession.c:addchildpid:
  924|  3.05k|static void addchildpid(struct ChanSess *chansess, pid_t pid) {
  925|       |
  926|  3.05k|	unsigned int i;
  927|  5.34k|	for (i = 0; i < svr_ses.childpidsize; i++) {
  ------------------
  |  Branch (927:14): [True: 4.67k, False: 667]
  ------------------
  928|  4.67k|		if (svr_ses.childpids[i].pid == -1) {
  ------------------
  |  Branch (928:7): [True: 2.39k, False: 2.28k]
  ------------------
  929|  2.39k|			break;
  930|  2.39k|		}
  931|  4.67k|	}
  932|       |
  933|       |	/* need to increase size */
  934|  3.05k|	if (i == svr_ses.childpidsize) {
  ------------------
  |  Branch (934:6): [True: 667, False: 2.39k]
  ------------------
  935|    667|		svr_ses.childpids = (struct ChildPid*)m_realloc(svr_ses.childpids,
  936|    667|				sizeof(struct ChildPid) * (svr_ses.childpidsize+1));
  937|    667|		svr_ses.childpidsize++;
  938|    667|	}
  939|       |	
  940|  3.05k|	TRACE(("addchildpid %d pid %d for chansess %p", i, pid, chansess))
  941|  3.05k|	svr_ses.childpids[i].pid = pid;
  942|  3.05k|	svr_ses.childpids[i].chansess = chansess;
  943|       |
  944|  3.05k|}
svr-chansession.c:ptycommand:
  802|  1.02k|static int ptycommand(struct Channel *channel, struct ChanSess *chansess) {
  803|       |
  804|  1.02k|	pid_t pid;
  805|  1.02k|	struct logininfo *li = NULL;
  806|  1.02k|#if DO_MOTD
  807|  1.02k|	buffer * motdbuf = NULL;
  808|  1.02k|	int len;
  809|  1.02k|	struct stat sb;
  810|  1.02k|	char *hushpath = NULL;
  811|  1.02k|#endif
  812|       |
  813|  1.02k|	TRACE(("enter ptycommand"))
  814|       |
  815|       |	/* we need to have a pty allocated */
  816|  1.02k|	if (chansess->master == -1 || chansess->tty == NULL) {
  ------------------
  |  Branch (816:6): [True: 1.02k, False: 0]
  |  Branch (816:32): [True: 0, False: 0]
  ------------------
  817|  1.02k|		dropbear_log(LOG_WARNING, "No pty was allocated, couldn't execute");
  818|  1.02k|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|  1.02k|#define DROPBEAR_FAILURE -1
  ------------------
  819|  1.02k|	}
  820|       |	
  821|       |#if DROPBEAR_VFORK
  822|       |	pid = vfork();
  823|       |#else
  824|      0|	pid = fork();
  825|      0|#endif
  826|      0|	if (pid < 0)
  ------------------
  |  Branch (826:6): [True: 0, False: 0]
  ------------------
  827|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  828|       |
  829|      0|	if (pid == 0) {
  ------------------
  |  Branch (829:6): [True: 0, False: 0]
  ------------------
  830|       |		/* child */
  831|       |		
  832|      0|		TRACE(("back to normal sigchld"))
  833|       |		/* Revert to normal sigchld handling */
  834|      0|		if (signal(SIGCHLD, SIG_DFL) == SIG_ERR) {
  ------------------
  |  Branch (834:7): [True: 0, False: 0]
  ------------------
  835|      0|			dropbear_exit("signal() error");
  836|      0|		}
  837|       |		
  838|       |		/* redirect stdin/stdout/stderr */
  839|      0|		close(chansess->master);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  840|       |
  841|      0|		pty_make_controlling_tty(&chansess->slave, chansess->tty);
  842|       |		
  843|      0|		if ((dup2(chansess->slave, STDIN_FILENO) < 0) ||
  ------------------
  |  Branch (843:7): [True: 0, False: 0]
  ------------------
  844|      0|			(dup2(chansess->slave, STDOUT_FILENO) < 0)) {
  ------------------
  |  Branch (844:4): [True: 0, False: 0]
  ------------------
  845|      0|			TRACE(("leave ptycommand: error redirecting filedesc"))
  846|      0|			return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  847|      0|			}
  848|       |
  849|       |		/* write the utmp/wtmp login record - must be after changing the
  850|       |		 * terminal used for stdout with the dup2 above, otherwise
  851|       |		 * the wtmp login will not be recorded */
  852|      0|		li = chansess_login_alloc(chansess);
  853|      0|		login_login(li);
  854|      0|		login_free_entry(li);
  855|       |
  856|       |		/* Can now dup2 stderr. Messages from login_login() have gone
  857|       |		to the parent stderr */
  858|      0|		if (dup2(chansess->slave, STDERR_FILENO) < 0) {
  ------------------
  |  Branch (858:7): [True: 0, False: 0]
  ------------------
  859|      0|			TRACE(("leave ptycommand: error redirecting filedesc"))
  860|      0|			return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  861|      0|		}
  862|       |
  863|      0|		close(chansess->slave);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  864|       |
  865|      0|#if DO_MOTD
  866|      0|		if (svr_opts.domotd && !chansess->cmd) {
  ------------------
  |  Branch (866:7): [True: 0, False: 0]
  |  Branch (866:26): [True: 0, False: 0]
  ------------------
  867|       |			/* don't show the motd if ~/.hushlogin exists */
  868|       |
  869|       |			/* 12 == strlen("/.hushlogin\0") */
  870|      0|			len = strlen(ses.authstate.pw_dir) + 12; 
  871|       |
  872|      0|			hushpath = m_malloc(len);
  873|      0|			snprintf(hushpath, len, "%s/.hushlogin", ses.authstate.pw_dir);
  874|       |
  875|      0|			if (stat(hushpath, &sb) < 0) {
  ------------------
  |  Branch (875:8): [True: 0, False: 0]
  ------------------
  876|      0|				char *expand_path = NULL;
  877|       |				/* more than a screenful is stupid IMHO */
  878|      0|				motdbuf = buf_new(80 * 25);
  879|      0|				expand_path = expand_homedir_path(MOTD_FILENAME);
  ------------------
  |  |  329|      0|#define MOTD_FILENAME "/etc/motd"
  ------------------
  880|      0|				if (buf_readfile(motdbuf, expand_path) == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (880:9): [True: 0, False: 0]
  ------------------
  881|      0|					buf_setpos(motdbuf, 0);
  882|      0|					while (motdbuf->pos != motdbuf->len) {
  ------------------
  |  Branch (882:13): [True: 0, False: 0]
  ------------------
  883|      0|						len = motdbuf->len - motdbuf->pos;
  884|      0|						len = write(STDOUT_FILENO, 
  ------------------
  |  |   54|      0|#define write(fd, buf, count) wrapfd_write(fd, buf, count)
  ------------------
  885|      0|								buf_getptr(motdbuf, len), len);
  886|      0|						buf_incrpos(motdbuf, len);
  887|      0|					}
  888|      0|				}
  889|      0|				m_free(expand_path);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  890|      0|				buf_free(motdbuf);
  891|       |
  892|      0|			}
  893|      0|			m_free(hushpath);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  894|      0|		}
  895|      0|#endif /* DO_MOTD */
  896|       |
  897|      0|		execchild(chansess);
  898|       |		/* not reached */
  899|       |
  900|      0|	} else {
  901|       |		/* parent */
  902|      0|		TRACE(("continue ptycommand: parent"))
  903|      0|		chansess->pid = pid;
  904|       |
  905|       |		/* add a child pid */
  906|      0|		addchildpid(chansess, pid);
  907|       |
  908|      0|		close(chansess->slave);
  ------------------
  |  |   56|      0|#define close(fd) wrapfd_close(fd)
  ------------------
  909|      0|		channel->writefd = chansess->master;
  910|      0|		channel->readfd = chansess->master;
  911|       |		/* don't need to set stderr here */
  912|      0|		ses.maxfd = MAX(ses.maxfd, chansess->master);
  913|      0|		channel->bidir_fd = 1;
  914|       |
  915|      0|		setnonblocking(chansess->master);
  916|       |
  917|      0|	}
  918|       |
  919|      0|	TRACE(("leave ptycommand"))
  920|      0|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  921|      0|}
svr-chansession.c:sessionpty:
  580|    143|static int sessionpty(struct ChanSess * chansess) {
  581|       |
  582|    143|	unsigned int termlen;
  583|    143|	char namebuf[65];
  584|    143|	struct passwd * pw = NULL;
  585|       |
  586|    143|	TRACE(("enter sessionpty"))
  587|       |
  588|    143|	if (!svr_pubkey_allows_pty()) {
  ------------------
  |  Branch (588:6): [True: 0, False: 143]
  ------------------
  589|      0|		TRACE(("leave sessionpty : pty forbidden by public key option"))
  590|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  591|      0|	}
  592|       |
  593|    143|	chansess->term = buf_getstring(ses.payload, &termlen);
  594|    143|	if (termlen > MAX_TERM_LEN) {
  ------------------
  |  |   76|    143|#define MAX_TERM_LEN 200 /* max length of TERM name */
  ------------------
  |  Branch (594:6): [True: 138, False: 5]
  ------------------
  595|       |		/* TODO send disconnect ? */
  596|    138|		TRACE(("leave sessionpty: term len too long"))
  597|    138|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|    138|#define DROPBEAR_FAILURE -1
  ------------------
  598|    138|	}
  599|       |
  600|       |	/* allocate the pty */
  601|      5|	if (chansess->master != -1) {
  ------------------
  |  Branch (601:6): [True: 0, False: 5]
  ------------------
  602|      0|		dropbear_exit("Multiple pty requests");
  603|      0|	}
  604|      5|	if (pty_allocate(&chansess->master, &chansess->slave, namebuf, 64) == 0) {
  ------------------
  |  Branch (604:6): [True: 0, False: 5]
  ------------------
  605|      0|		TRACE(("leave sessionpty: failed to allocate pty"))
  606|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  607|      0|	}
  608|       |	
  609|      5|	chansess->tty = m_strdup(namebuf);
  610|      5|	if (!chansess->tty) {
  ------------------
  |  Branch (610:6): [True: 0, False: 5]
  ------------------
  611|      0|		dropbear_exit("Out of memory"); /* TODO disconnect */
  612|      0|	}
  613|       |
  614|      5|	pw = getpwnam(ses.authstate.pw_name);
  ------------------
  |  |  108|      5|#define getpwnam(x) fuzz_getpwnam(x)
  ------------------
  615|      5|	if (!pw)
  ------------------
  |  Branch (615:6): [True: 0, False: 5]
  ------------------
  616|      0|		dropbear_exit("getpwnam failed after succeeding previously");
  617|      5|	pty_setowner(pw, chansess->tty);
  618|       |
  619|       |	/* Set up the rows/col counts */
  620|      5|	sessionwinchange(chansess);
  621|       |
  622|       |	/* Read the terminal modes */
  623|      5|	get_termmodes(chansess);
  624|       |
  625|      5|	TRACE(("leave sessionpty"))
  626|      5|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      5|#define DROPBEAR_SUCCESS 0
  ------------------
  627|      5|}
svr-chansession.c:get_termmodes:
  486|      1|static void get_termmodes(const struct ChanSess *chansess) {
  487|       |
  488|      1|	struct termios termio;
  489|      1|	unsigned char opcode;
  490|      1|	unsigned int value;
  491|      1|	const struct TermCode * termcode;
  492|      1|	unsigned int len;
  493|       |
  494|      1|	TRACE(("enter get_termmodes"))
  495|       |
  496|       |	/* Term modes */
  497|       |	/* We'll ignore errors and continue if we can't set modes.
  498|       |	 * We're ignoring baud rates since they seem evil */
  499|      1|	if (tcgetattr(chansess->master, &termio) == -1) {
  ------------------
  |  Branch (499:6): [True: 0, False: 1]
  ------------------
  500|      0|		return;
  501|      0|	}
  502|       |
  503|      1|	len = buf_getint(ses.payload);
  504|      1|	TRACE(("term mode str %d p->l %d p->p %d", 
  505|      1|				len, ses.payload->len , ses.payload->pos));
  506|      1|	if (len != ses.payload->len - ses.payload->pos) {
  ------------------
  |  Branch (506:6): [True: 1, False: 0]
  ------------------
  507|      1|		dropbear_exit("Bad term mode string");
  508|      1|	}
  509|       |
  510|      0|	if (len == 0) {
  ------------------
  |  Branch (510:6): [True: 0, False: 0]
  ------------------
  511|      0|		TRACE(("leave get_termmodes: empty terminal modes string"))
  512|      0|		return;
  513|      0|	}
  514|       |
  515|      0|	while (((opcode = buf_getbyte(ses.payload)) != 0x00) && opcode <= 159) {
  ------------------
  |  Branch (515:9): [True: 0, False: 0]
  |  Branch (515:58): [True: 0, False: 0]
  ------------------
  516|       |
  517|       |		/* must be before checking type, so that value is consumed even if
  518|       |		 * we don't use it */
  519|      0|		value = buf_getint(ses.payload);
  520|       |
  521|       |		/* handle types of code */
  522|      0|		if (opcode > MAX_TERMCODE) {
  ------------------
  |  |   35|      0|#define MAX_TERMCODE 93
  ------------------
  |  Branch (522:7): [True: 0, False: 0]
  ------------------
  523|      0|			continue;
  524|      0|		}
  525|      0|		termcode = &termcodes[(unsigned int)opcode];
  526|       |		
  527|       |
  528|      0|		switch (termcode->type) {
  ------------------
  |  Branch (528:11): [True: 0, False: 0]
  ------------------
  529|       |
  530|      0|			case TERMCODE_NONE:
  ------------------
  |  |   28|      0|#define TERMCODE_NONE 0
  ------------------
  |  Branch (530:4): [True: 0, False: 0]
  ------------------
  531|      0|				break;
  532|       |
  533|      0|			case TERMCODE_CONTROLCHAR:
  ------------------
  |  |   33|      0|#define TERMCODE_CONTROLCHAR 5
  ------------------
  |  Branch (533:4): [True: 0, False: 0]
  ------------------
  534|      0|				termio.c_cc[termcode->mapcode] = value;
  535|      0|				break;
  536|       |
  537|      0|			case TERMCODE_INPUT:
  ------------------
  |  |   30|      0|#define TERMCODE_INPUT 2
  ------------------
  |  Branch (537:4): [True: 0, False: 0]
  ------------------
  538|      0|				if (value) {
  ------------------
  |  Branch (538:9): [True: 0, False: 0]
  ------------------
  539|      0|					termio.c_iflag |= termcode->mapcode;
  540|      0|				} else {
  541|      0|					termio.c_iflag &= ~(termcode->mapcode);
  542|      0|				}
  543|      0|				break;
  544|       |
  545|      0|			case TERMCODE_OUTPUT:
  ------------------
  |  |   31|      0|#define TERMCODE_OUTPUT 3
  ------------------
  |  Branch (545:4): [True: 0, False: 0]
  ------------------
  546|      0|				if (value) {
  ------------------
  |  Branch (546:9): [True: 0, False: 0]
  ------------------
  547|      0|					termio.c_oflag |= termcode->mapcode;
  548|      0|				} else {
  549|      0|					termio.c_oflag &= ~(termcode->mapcode);
  550|      0|				}
  551|      0|				break;
  552|       |
  553|      0|			case TERMCODE_LOCAL:
  ------------------
  |  |   32|      0|#define TERMCODE_LOCAL 4
  ------------------
  |  Branch (553:4): [True: 0, False: 0]
  ------------------
  554|      0|				if (value) {
  ------------------
  |  Branch (554:9): [True: 0, False: 0]
  ------------------
  555|      0|					termio.c_lflag |= termcode->mapcode;
  556|      0|				} else {
  557|      0|					termio.c_lflag &= ~(termcode->mapcode);
  558|      0|				}
  559|      0|				break;
  560|       |
  561|      0|			case TERMCODE_CONTROL:
  ------------------
  |  |   29|      0|#define TERMCODE_CONTROL 1
  ------------------
  |  Branch (561:4): [True: 0, False: 0]
  ------------------
  562|      0|				if (value) {
  ------------------
  |  Branch (562:9): [True: 0, False: 0]
  ------------------
  563|      0|					termio.c_cflag |= termcode->mapcode;
  564|      0|				} else {
  565|      0|					termio.c_cflag &= ~(termcode->mapcode);
  566|      0|				}
  567|      0|				break;
  568|       |				
  569|      0|		}
  570|      0|	}
  571|      0|	if (tcsetattr(chansess->master, TCSANOW, &termio) < 0) {
  ------------------
  |  Branch (571:6): [True: 0, False: 0]
  ------------------
  572|      0|		dropbear_log(LOG_INFO, "Error setting terminal attributes");
  573|      0|	}
  574|      0|	TRACE(("leave get_termmodes"))
  575|      0|}
svr-chansession.c:sessionsignal:
  427|    750|static int sessionsignal(const struct ChanSess *chansess) {
  428|    750|	TRACE(("sessionsignal"))
  429|       |
  430|    750|	int sig = 0;
  431|    750|	char* signame = NULL;
  432|    750|	int i;
  433|       |
  434|    750|	if (chansess->pid == 0) {
  ------------------
  |  Branch (434:6): [True: 216, False: 534]
  ------------------
  435|    216|		TRACE(("sessionsignal: done no pid"))
  436|       |		/* haven't got a process pid yet */
  437|    216|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|    216|#define DROPBEAR_FAILURE -1
  ------------------
  438|    216|	}
  439|       |
  440|    534|	signame = buf_getstring(ses.payload, NULL);
  441|       |
  442|  4.76k|	for (i = 0; signames[i].name != NULL; i++) {
  ------------------
  |  Branch (442:14): [True: 4.54k, False: 221]
  ------------------
  443|  4.54k|		if (strcmp(signames[i].name, signame) == 0) {
  ------------------
  |  Branch (443:7): [True: 313, False: 4.23k]
  ------------------
  444|    313|			sig = signames[i].signal;
  445|    313|			break;
  446|    313|		}
  447|  4.54k|	}
  448|       |
  449|    534|	m_free(signame);
  ------------------
  |  |   24|    534|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  450|       |
  451|    534|	TRACE(("sessionsignal: pid %d signal %d", (int)chansess->pid, sig))
  452|    534|	if (sig == 0) {
  ------------------
  |  Branch (452:6): [True: 221, False: 313]
  ------------------
  453|       |		/* failed */
  454|    221|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|    221|#define DROPBEAR_FAILURE -1
  ------------------
  455|    221|	}
  456|       |			
  457|    313|	if (kill(chansess->pid, sig) < 0) {
  ------------------
  |  |   57|    313|#define kill(pid, sig) fuzz_kill(pid, sig)
  ------------------
  |  Branch (457:6): [True: 0, False: 313]
  ------------------
  458|      0|		TRACE(("sessionsignal: kill() errored"))
  459|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  460|      0|	} 
  461|       |
  462|    313|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|    313|#define DROPBEAR_SUCCESS 0
  ------------------
  463|    313|}

recv_msg_kexdh_init:
   49|  8.72k|void recv_msg_kexdh_init() {
   50|  8.72k|	DEF_MP_INT(dh_e);
  ------------------
  |  |   80|  8.72k|#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
  ------------------
   51|  8.72k|	buffer *ecdh_qs = NULL;
   52|       |
   53|  8.72k|	TRACE(("enter recv_msg_kexdh_init"))
   54|  8.72k|	if (!ses.kexstate.recvkexinit) {
  ------------------
  |  Branch (54:6): [True: 3, False: 8.72k]
  ------------------
   55|      3|		dropbear_exit("Premature kexdh_init message received");
   56|      3|	}
   57|       |
   58|  8.72k|	switch (ses.newkeys->algo_kex->mode) {
  ------------------
  |  Branch (58:10): [True: 0, False: 8.72k]
  ------------------
   59|      0|#if DROPBEAR_NORMAL_DH
   60|  2.53k|		case DROPBEAR_KEX_NORMAL_DH:
  ------------------
  |  Branch (60:3): [True: 2.53k, False: 6.19k]
  ------------------
   61|  2.53k|			m_mp_init(&dh_e);
   62|  2.53k|			if (buf_getmpint(ses.payload, &dh_e) != DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|  2.53k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (62:8): [True: 1, False: 2.53k]
  ------------------
   63|      1|				dropbear_exit("Bad kex value");
   64|      1|			}
   65|  2.53k|			break;
   66|  2.53k|#endif
   67|  2.53k|#if DROPBEAR_ECDH
   68|  2.53k|		case DROPBEAR_KEX_ECDH:
  ------------------
  |  Branch (68:3): [True: 2.41k, False: 6.30k]
  ------------------
   69|  2.41k|#endif
   70|  2.41k|#if DROPBEAR_CURVE25519
   71|  6.19k|		case DROPBEAR_KEX_CURVE25519:
  ------------------
  |  Branch (71:3): [True: 3.77k, False: 4.94k]
  ------------------
   72|  6.19k|#endif
   73|  6.19k|#if DROPBEAR_ECDH || DROPBEAR_CURVE25519
   74|  6.19k|			ecdh_qs = buf_getstringbuf(ses.payload);
   75|  6.19k|			break;
   76|  8.72k|#endif
   77|  8.72k|	}
   78|  8.72k|	if (ses.payload->pos != ses.payload->len) {
  ------------------
  |  Branch (78:6): [True: 40, False: 8.68k]
  ------------------
   79|     40|		dropbear_exit("Bad kex value");
   80|     40|	}
   81|       |
   82|  8.68k|	send_msg_kexdh_reply(&dh_e, ecdh_qs);
   83|       |
   84|  8.68k|	mp_clear(&dh_e);
   85|  8.68k|	if (ecdh_qs) {
  ------------------
  |  Branch (85:6): [True: 6.17k, False: 2.50k]
  ------------------
   86|  6.17k|		buf_free(ecdh_qs);
   87|  6.17k|		ecdh_qs = NULL;
   88|  6.17k|	}
   89|       |
   90|  8.68k|	send_msg_newkeys();
   91|       |
   92|  8.68k|#if DROPBEAR_EXT_INFO
   93|       |	/* Only send it following the first newkeys */
   94|  8.68k|	if (!ses.kexstate.donesecondkex && ses.allow_ext_info) {
  ------------------
  |  Branch (94:6): [True: 1.37k, False: 7.30k]
  |  Branch (94:37): [True: 9, False: 1.36k]
  ------------------
   95|      9|		send_msg_ext_info();
   96|      9|	}
   97|  8.68k|#endif
   98|       |
   99|  8.68k|	ses.requirenext = SSH_MSG_NEWKEYS;
  ------------------
  |  |   37|  8.68k|#define SSH_MSG_NEWKEYS                21
  ------------------
  100|  8.68k|	TRACE(("leave recv_msg_kexdh_init"))
  101|  8.68k|}
svr-kex.c:send_msg_kexdh_reply:
  189|  8.68k|static void send_msg_kexdh_reply(mp_int *dh_e, buffer *ecdh_qs) {
  190|  8.68k|	TRACE(("enter send_msg_kexdh_reply"))
  191|       |
  192|       |	/* we can start creating the kexdh_reply packet */
  193|  8.68k|	CHECKCLEARTOWRITE();
  194|       |
  195|  8.68k|#if DROPBEAR_DELAY_HOSTKEY
  196|  8.68k|	if (svr_opts.delay_hostkey)
  ------------------
  |  Branch (196:6): [True: 0, False: 8.68k]
  ------------------
  197|      0|	{
  198|      0|		svr_ensure_hostkey();
  199|      0|	}
  200|  8.68k|#endif
  201|       |
  202|  8.68k|#if DROPBEAR_FUZZ
  203|  8.68k|	if (fuzz.fuzzing && fuzz.skip_kexmaths) {
  ------------------
  |  Branch (203:6): [True: 8.68k, False: 0]
  |  Branch (203:22): [True: 8.68k, False: 0]
  ------------------
  204|  8.68k|		fuzz_fake_send_kexdh_reply();
  205|  8.68k|		return;
  206|  8.68k|	}
  207|      0|#endif
  208|       |
  209|      0|	buf_putbyte(ses.writepayload, SSH_MSG_KEXDH_REPLY);
  ------------------
  |  |   39|      0|#define SSH_MSG_KEXDH_REPLY            31
  ------------------
  210|      0|	buf_put_pub_key(ses.writepayload, svr_opts.hostkey,
  211|      0|			ses.newkeys->algo_hostkey);
  212|       |
  213|      0|	switch (ses.newkeys->algo_kex->mode) {
  ------------------
  |  Branch (213:10): [True: 0, False: 0]
  ------------------
  214|      0|#if DROPBEAR_NORMAL_DH
  215|      0|		case DROPBEAR_KEX_NORMAL_DH:
  ------------------
  |  Branch (215:3): [True: 0, False: 0]
  ------------------
  216|      0|			{
  217|      0|			struct kex_dh_param * dh_param = gen_kexdh_param();
  218|      0|			kexdh_comb_key(dh_param, dh_e, svr_opts.hostkey);
  219|       |
  220|       |			/* put f */
  221|      0|			buf_putmpint(ses.writepayload, &dh_param->pub);
  222|      0|			free_kexdh_param(dh_param);
  223|      0|			}
  224|      0|			break;
  225|      0|#endif
  226|      0|#if DROPBEAR_ECDH
  227|      0|		case DROPBEAR_KEX_ECDH:
  ------------------
  |  Branch (227:3): [True: 0, False: 0]
  ------------------
  228|      0|			{
  229|      0|			struct kex_ecdh_param *ecdh_param = gen_kexecdh_param();
  230|      0|			kexecdh_comb_key(ecdh_param, ecdh_qs, svr_opts.hostkey);
  231|       |
  232|      0|			buf_put_ecc_raw_pubkey_string(ses.writepayload, &ecdh_param->key);
  233|      0|			free_kexecdh_param(ecdh_param);
  234|      0|			}
  235|      0|			break;
  236|      0|#endif
  237|      0|#if DROPBEAR_CURVE25519
  238|      0|		case DROPBEAR_KEX_CURVE25519:
  ------------------
  |  Branch (238:3): [True: 0, False: 0]
  ------------------
  239|      0|			{
  240|      0|			struct kex_curve25519_param *param = gen_kexcurve25519_param();
  241|      0|			kexcurve25519_comb_key(param, ecdh_qs, svr_opts.hostkey);
  242|       |
  243|      0|			buf_putstring(ses.writepayload, param->pub, CURVE25519_LEN);
  ------------------
  |  |  106|      0|#define CURVE25519_LEN 32
  ------------------
  244|      0|			free_kexcurve25519_param(param);
  245|      0|			}
  246|      0|			break;
  247|      0|#endif
  248|      0|	}
  249|       |
  250|       |	/* calc the signature */
  251|      0|	buf_put_sign(ses.writepayload, svr_opts.hostkey, 
  252|      0|			ses.newkeys->algo_signature, ses.hash);
  253|       |
  254|       |	/* the SSH_MSG_KEXDH_REPLY is done */
  255|      0|	encrypt_packet();
  256|       |
  257|      0|	TRACE(("leave send_msg_kexdh_reply"))
  258|      0|}
svr-kex.c:send_msg_ext_info:
  262|      9|static void send_msg_ext_info(void) {
  263|      9|	TRACE(("enter send_msg_ext_info"))
  264|       |
  265|      9|	buf_putbyte(ses.writepayload, SSH_MSG_EXT_INFO);
  ------------------
  |  |   35|      9|#define SSH_MSG_EXT_INFO               7
  ------------------
  266|       |	/* nr-extensions */
  267|      9|	buf_putint(ses.writepayload, 1);
  268|       |
  269|      9|	buf_putstring(ses.writepayload, SSH_SERVER_SIG_ALGS, strlen(SSH_SERVER_SIG_ALGS));
  ------------------
  |  |  101|      9|#define SSH_SERVER_SIG_ALGS "server-sig-algs"
  ------------------
              	buf_putstring(ses.writepayload, SSH_SERVER_SIG_ALGS, strlen(SSH_SERVER_SIG_ALGS));
  ------------------
  |  |  101|      9|#define SSH_SERVER_SIG_ALGS "server-sig-algs"
  ------------------
  270|      9|	buf_put_algolist_all(ses.writepayload, sigalgs, 1);
  271|       |	
  272|      9|	encrypt_packet();
  273|       |
  274|      9|	TRACE(("leave send_msg_ext_info"))
  275|      9|}

svr_getopts:
  134|      1|void svr_getopts(int argc, char ** argv) {
  135|       |
  136|      1|	unsigned int i, j;
  137|      1|	char ** next = NULL;
  138|      1|	int nextisport = 0;
  139|      1|	char* recv_window_arg = NULL;
  140|      1|	char* keepalive_arg = NULL;
  141|      1|	char* idle_timeout_arg = NULL;
  142|      1|	char* maxauthtries_arg = NULL;
  143|      1|	char* reexec_fd_arg = NULL;
  144|      1|	char* keyfile = NULL;
  145|      1|	char c;
  146|       |#if DROPBEAR_PLUGIN
  147|       |        char* pubkey_plugin = NULL;
  148|       |#endif
  149|       |
  150|       |
  151|       |	/* see printhelp() for options */
  152|      1|	svr_opts.bannerfile = NULL;
  153|      1|	svr_opts.banner = NULL;
  154|      1|	svr_opts.forced_command = NULL;
  155|      1|	svr_opts.forkbg = 1;
  156|      1|	svr_opts.norootlogin = 0;
  157|      1|#ifdef HAVE_GETGROUPLIST
  158|      1|	svr_opts.restrict_group = NULL;
  159|      1|	svr_opts.restrict_group_gid = 0;
  160|      1|#endif
  161|      1|	svr_opts.noauthpass = 0;
  162|      1|	svr_opts.norootpass = 0;
  163|      1|	svr_opts.allowblankpass = 0;
  164|      1|	svr_opts.multiauthmethod = 0;
  165|      1|	svr_opts.maxauthtries = MAX_AUTH_TRIES;
  ------------------
  |  |  428|      1|#define MAX_AUTH_TRIES 10
  ------------------
  166|      1|	svr_opts.inetdmode = 0;
  167|      1|	svr_opts.portcount = 0;
  168|      1|	svr_opts.hostkey = NULL;
  169|      1|	svr_opts.delay_hostkey = 0;
  170|      1|	svr_opts.pidfile = expand_homedir_path(DROPBEAR_PIDFILE);
  ------------------
  |  |  444|      1|#define DROPBEAR_PIDFILE "/var/run/dropbear.pid"
  ------------------
  171|      1|#if DROPBEAR_SVR_LOCALTCPFWD
  172|      1|	svr_opts.nolocaltcp = 0;
  173|      1|#endif
  174|      1|#if DROPBEAR_SVR_REMOTETCPFWD
  175|      1|	svr_opts.noremotetcp = 0;
  176|      1|#endif
  177|       |#if DROPBEAR_PLUGIN
  178|       |        svr_opts.pubkey_plugin = NULL;
  179|       |        svr_opts.pubkey_plugin_options = NULL;
  180|       |#endif
  181|      1|	svr_opts.pass_on_env = 0;
  182|      1|	svr_opts.reexec_childpipe = -1;
  183|       |
  184|       |#ifndef DISABLE_ZLIB
  185|       |	opts.compress_mode = DROPBEAR_COMPRESS_DELAYED;
  186|       |#endif 
  187|       |
  188|       |	/* not yet
  189|       |	opts.ipv4 = 1;
  190|       |	opts.ipv6 = 1;
  191|       |	*/
  192|      1|#if DO_MOTD
  193|      1|	svr_opts.domotd = 1;
  194|      1|#endif
  195|      1|#ifndef DISABLE_SYSLOG
  196|      1|	opts.usingsyslog = 1;
  197|      1|#endif
  198|      1|	opts.recv_window = DEFAULT_RECV_WINDOW;
  ------------------
  |  |  487|      1|#define DEFAULT_RECV_WINDOW 24576
  ------------------
  199|      1|	opts.keepalive_secs = DEFAULT_KEEPALIVE;
  ------------------
  |  |  503|      1|#define DEFAULT_KEEPALIVE 0
  ------------------
  200|      1|	opts.idle_timeout_secs = DEFAULT_IDLE_TIMEOUT;
  ------------------
  |  |  516|      1|#define DEFAULT_IDLE_TIMEOUT 0
  ------------------
  201|       |	
  202|      1|#if DROPBEAR_SVR_REMOTETCPFWD
  203|      1|	opts.listen_fwd_all = 0;
  204|      1|#endif
  205|      1|	opts.disable_ip_tos = 0;
  206|       |
  207|      2|	for (i = 1; i < (unsigned int)argc; i++) {
  ------------------
  |  Branch (207:14): [True: 1, False: 1]
  ------------------
  208|      1|		if (argv[i][0] != '-' || argv[i][1] == '\0')
  ------------------
  |  Branch (208:7): [True: 0, False: 1]
  |  Branch (208:28): [True: 0, False: 1]
  ------------------
  209|      0|			dropbear_exit("Invalid argument: %s", argv[i]);
  210|       |
  211|      2|		for (j = 1; (c = argv[i][j]) != '\0' && !next && !nextisport; j++) {
  ------------------
  |  Branch (211:15): [True: 1, False: 1]
  |  Branch (211:43): [True: 1, False: 0]
  |  Branch (211:52): [True: 1, False: 0]
  ------------------
  212|      1|			switch (c) {
  213|      0|				case 'b':
  ------------------
  |  Branch (213:5): [True: 0, False: 1]
  ------------------
  214|      0|					next = &svr_opts.bannerfile;
  215|      0|					break;
  216|      0|				case 'c':
  ------------------
  |  Branch (216:5): [True: 0, False: 1]
  ------------------
  217|      0|					next = &svr_opts.forced_command;
  218|      0|					break;
  219|      0|				case 'd':
  ------------------
  |  Branch (219:5): [True: 0, False: 1]
  ------------------
  220|      0|				case 'r':
  ------------------
  |  Branch (220:5): [True: 0, False: 1]
  ------------------
  221|      0|					next = &keyfile;
  222|      0|					break;
  223|      0|				case 'R':
  ------------------
  |  Branch (223:5): [True: 0, False: 1]
  ------------------
  224|      0|					svr_opts.delay_hostkey = 1;
  225|      0|					break;
  226|      0|				case 'F':
  ------------------
  |  Branch (226:5): [True: 0, False: 1]
  ------------------
  227|      0|					svr_opts.forkbg = 0;
  228|      0|					break;
  229|      0|#ifndef DISABLE_SYSLOG
  230|      1|				case 'E':
  ------------------
  |  Branch (230:5): [True: 1, False: 0]
  ------------------
  231|      1|					opts.usingsyslog = 0;
  232|      1|					break;
  233|      0|#endif
  234|      0|				case 'e':
  ------------------
  |  Branch (234:5): [True: 0, False: 1]
  ------------------
  235|      0|					svr_opts.pass_on_env = 1;
  236|      0|					break;
  237|       |
  238|      0|#if DROPBEAR_SVR_LOCALTCPFWD
  239|      0|				case 'j':
  ------------------
  |  Branch (239:5): [True: 0, False: 1]
  ------------------
  240|      0|					svr_opts.nolocaltcp = 1;
  241|      0|					break;
  242|      0|#endif
  243|      0|#if DROPBEAR_SVR_REMOTETCPFWD
  244|      0|				case 'k':
  ------------------
  |  Branch (244:5): [True: 0, False: 1]
  ------------------
  245|      0|					svr_opts.noremotetcp = 1;
  246|      0|					break;
  247|      0|				case 'a':
  ------------------
  |  Branch (247:5): [True: 0, False: 1]
  ------------------
  248|      0|					opts.listen_fwd_all = 1;
  249|      0|					break;
  250|      0|#endif
  251|      0|#if INETD_MODE
  252|      0|				case 'i':
  ------------------
  |  Branch (252:5): [True: 0, False: 1]
  ------------------
  253|      0|					svr_opts.inetdmode = 1;
  254|      0|					break;
  255|      0|#endif
  256|      0|#if DROPBEAR_DO_REEXEC && NON_INETD_MODE
  257|       |				/* For internal use by re-exec */
  258|      0|				case '2':
  ------------------
  |  Branch (258:5): [True: 0, False: 1]
  ------------------
  259|      0|					next = &reexec_fd_arg;
  260|      0|					break;
  261|      0|#endif
  262|      0|				case 'p':
  ------------------
  |  Branch (262:5): [True: 0, False: 1]
  ------------------
  263|      0|					nextisport = 1;
  264|      0|					break;
  265|      0|				case 'P':
  ------------------
  |  Branch (265:5): [True: 0, False: 1]
  ------------------
  266|      0|					next = &svr_opts.pidfile;
  267|      0|					break;
  268|      0|#if DO_MOTD
  269|       |				/* motd is displayed by default, -m turns it off */
  270|      0|				case 'm':
  ------------------
  |  Branch (270:5): [True: 0, False: 1]
  ------------------
  271|      0|					svr_opts.domotd = 0;
  272|      0|					break;
  273|      0|#endif
  274|      0|				case 'w':
  ------------------
  |  Branch (274:5): [True: 0, False: 1]
  ------------------
  275|      0|					svr_opts.norootlogin = 1;
  276|      0|					break;
  277|      0|#ifdef HAVE_GETGROUPLIST
  278|      0|				case 'G':
  ------------------
  |  Branch (278:5): [True: 0, False: 1]
  ------------------
  279|      0|					next = &svr_opts.restrict_group;
  280|      0|					break;
  281|      0|#endif
  282|      0|				case 'W':
  ------------------
  |  Branch (282:5): [True: 0, False: 1]
  ------------------
  283|      0|					next = &recv_window_arg;
  284|      0|					break;
  285|      0|				case 'K':
  ------------------
  |  Branch (285:5): [True: 0, False: 1]
  ------------------
  286|      0|					next = &keepalive_arg;
  287|      0|					break;
  288|      0|				case 'I':
  ------------------
  |  Branch (288:5): [True: 0, False: 1]
  ------------------
  289|      0|					next = &idle_timeout_arg;
  290|      0|					break;
  291|      0|				case 'T':
  ------------------
  |  Branch (291:5): [True: 0, False: 1]
  ------------------
  292|      0|					next = &maxauthtries_arg;
  293|      0|					break;
  294|      0|#if DROPBEAR_SVR_PASSWORD_AUTH || DROPBEAR_SVR_PAM_AUTH
  295|      0|				case 's':
  ------------------
  |  Branch (295:5): [True: 0, False: 1]
  ------------------
  296|      0|					svr_opts.noauthpass = 1;
  297|      0|					break;
  298|      0|				case 'g':
  ------------------
  |  Branch (298:5): [True: 0, False: 1]
  ------------------
  299|      0|					svr_opts.norootpass = 1;
  300|      0|					break;
  301|      0|				case 'B':
  ------------------
  |  Branch (301:5): [True: 0, False: 1]
  ------------------
  302|      0|					svr_opts.allowblankpass = 1;
  303|      0|					break;
  304|      0|				case 't':
  ------------------
  |  Branch (304:5): [True: 0, False: 1]
  ------------------
  305|      0|					svr_opts.multiauthmethod = 1;
  306|      0|					break;
  307|      0|#endif
  308|      0|				case 'h':
  ------------------
  |  Branch (308:5): [True: 0, False: 1]
  ------------------
  309|      0|					printhelp(argv[0]);
  310|      0|					exit(EXIT_SUCCESS);
  311|      0|					break;
  312|      0|				case 'u':
  ------------------
  |  Branch (312:5): [True: 0, False: 1]
  ------------------
  313|       |					/* backwards compatibility with old urandom option */
  314|      0|					break;
  315|       |#if DROPBEAR_PLUGIN
  316|       |                                case 'A':
  317|       |                                        next = &pubkey_plugin;
  318|       |                                        break;
  319|       |#endif
  320|       |#if DEBUG_TRACE
  321|       |				case 'v':
  322|       |					debug_trace++;
  323|       |					break;
  324|       |#endif
  325|      0|				case 'V':
  ------------------
  |  Branch (325:5): [True: 0, False: 1]
  ------------------
  326|      0|					print_version();
  327|      0|					exit(EXIT_SUCCESS);
  328|      0|					break;
  329|      0|				case 'z':
  ------------------
  |  Branch (329:5): [True: 0, False: 1]
  ------------------
  330|      0|					opts.disable_ip_tos = 1;
  331|      0|					break;
  332|      0|				default:
  ------------------
  |  Branch (332:5): [True: 0, False: 1]
  ------------------
  333|      0|					fprintf(stderr, "Invalid option -%c\n", c);
  ------------------
  |  |  100|      0|#define stderr (fuzz.fake_stderr)
  ------------------
  334|      0|					printhelp(argv[0]);
  335|      0|					exit(EXIT_FAILURE);
  336|      0|					break;
  337|      1|			}
  338|      1|		}
  339|       |
  340|      1|		if (!next && !nextisport)
  ------------------
  |  Branch (340:7): [True: 1, False: 0]
  |  Branch (340:16): [True: 1, False: 0]
  ------------------
  341|      1|			continue;
  342|       |
  343|      0|		if (c == '\0') {
  ------------------
  |  Branch (343:7): [True: 0, False: 0]
  ------------------
  344|      0|			i++;
  345|      0|			j = 0;
  346|      0|			if (!argv[i]) {
  ------------------
  |  Branch (346:8): [True: 0, False: 0]
  ------------------
  347|      0|				dropbear_exit("Missing argument");
  348|      0|			}
  349|      0|		}
  350|       |
  351|      0|		if (nextisport) {
  ------------------
  |  Branch (351:7): [True: 0, False: 0]
  ------------------
  352|      0|			addportandaddress(&argv[i][j]);
  353|      0|			nextisport = 0;
  354|      0|		} else if (next) {
  ------------------
  |  Branch (354:14): [True: 0, False: 0]
  ------------------
  355|      0|			*next = &argv[i][j];
  356|      0|			if (*next == NULL) {
  ------------------
  |  Branch (356:8): [True: 0, False: 0]
  ------------------
  357|      0|				dropbear_exit("Invalid null argument");
  358|      0|			}
  359|      0|			next = NULL;
  360|       |
  361|      0|			if (keyfile) {
  ------------------
  |  Branch (361:8): [True: 0, False: 0]
  ------------------
  362|      0|				addhostkey(keyfile);
  363|      0|				keyfile = NULL;
  364|      0|			}
  365|      0|		}
  366|      0|	}
  367|       |
  368|       |	/* Set up listening ports */
  369|      1|	if (svr_opts.portcount == 0) {
  ------------------
  |  Branch (369:6): [True: 1, False: 0]
  ------------------
  370|      1|		svr_opts.ports[0] = m_strdup(DROPBEAR_DEFPORT);
  ------------------
  |  |   23|      1|#define DROPBEAR_DEFPORT "22"
  ------------------
  371|      1|		svr_opts.addresses[0] = m_strdup(DROPBEAR_DEFADDRESS);
  ------------------
  |  |   28|      1|#define DROPBEAR_DEFADDRESS ""
  ------------------
  372|      1|		svr_opts.portcount = 1;
  373|      1|	}
  374|       |
  375|      1|	if (svr_opts.bannerfile) {
  ------------------
  |  Branch (375:6): [True: 0, False: 1]
  ------------------
  376|      0|		struct stat buf;
  377|      0|		if (stat(svr_opts.bannerfile, &buf) != 0) {
  ------------------
  |  Branch (377:7): [True: 0, False: 0]
  ------------------
  378|      0|			dropbear_exit("Error opening banner file '%s'",
  379|      0|					svr_opts.bannerfile);
  380|      0|		}
  381|       |		
  382|      0|		if (buf.st_size > MAX_BANNER_SIZE) {
  ------------------
  |  |   68|      0|#define MAX_BANNER_SIZE 2050 /* this is 25*80 chars, any more is foolish */
  ------------------
  |  Branch (382:7): [True: 0, False: 0]
  ------------------
  383|      0|			dropbear_exit("Banner file too large, max is %d bytes",
  384|      0|					MAX_BANNER_SIZE);
  ------------------
  |  |   68|      0|#define MAX_BANNER_SIZE 2050 /* this is 25*80 chars, any more is foolish */
  ------------------
  385|      0|		}
  386|       |
  387|      0|		svr_opts.banner = buf_new(buf.st_size);
  388|      0|		if (buf_readfile(svr_opts.banner, svr_opts.bannerfile)!=DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (388:7): [True: 0, False: 0]
  ------------------
  389|      0|			dropbear_exit("Error reading banner file '%s'",
  390|      0|					svr_opts.bannerfile);
  391|      0|		}
  392|      0|		buf_setpos(svr_opts.banner, 0);
  393|      0|	}
  394|       |
  395|      1|#ifdef HAVE_GETGROUPLIST
  396|      1|	if (svr_opts.restrict_group) {
  ------------------
  |  Branch (396:6): [True: 0, False: 1]
  ------------------
  397|      0|		struct group *restrictedgroup = getgrnam(svr_opts.restrict_group);
  398|       |
  399|      0|		if (restrictedgroup){
  ------------------
  |  Branch (399:7): [True: 0, False: 0]
  ------------------
  400|      0|			svr_opts.restrict_group_gid = restrictedgroup->gr_gid;
  401|      0|		} else {
  402|      0|			dropbear_exit("Cannot restrict logins to group '%s' as the group does not exist", svr_opts.restrict_group);
  403|      0|		}
  404|      0|	}
  405|      1|#endif
  406|       |
  407|      1|	if (recv_window_arg) {
  ------------------
  |  Branch (407:6): [True: 0, False: 1]
  ------------------
  408|      0|		parse_recv_window(recv_window_arg);
  409|      0|	}
  410|       |
  411|      1|	if (maxauthtries_arg) {
  ------------------
  |  Branch (411:6): [True: 0, False: 1]
  ------------------
  412|      0|		unsigned int val = 0;
  413|      0|		if (m_str_to_uint(maxauthtries_arg, &val) == DROPBEAR_FAILURE 
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (413:7): [True: 0, False: 0]
  ------------------
  414|      0|			|| val == 0) {
  ------------------
  |  Branch (414:7): [True: 0, False: 0]
  ------------------
  415|      0|			dropbear_exit("Bad maxauthtries '%s'", maxauthtries_arg);
  416|      0|		}
  417|      0|		svr_opts.maxauthtries = val;
  418|      0|	}
  419|       |
  420|       |
  421|      1|	if (keepalive_arg) {
  ------------------
  |  Branch (421:6): [True: 0, False: 1]
  ------------------
  422|      0|		unsigned int val;
  423|      0|		if (m_str_to_uint(keepalive_arg, &val) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (423:7): [True: 0, False: 0]
  ------------------
  424|      0|			dropbear_exit("Bad keepalive '%s'", keepalive_arg);
  425|      0|		}
  426|      0|		opts.keepalive_secs = val;
  427|      0|	}
  428|       |
  429|      1|	if (idle_timeout_arg) {
  ------------------
  |  Branch (429:6): [True: 0, False: 1]
  ------------------
  430|      0|		unsigned int val;
  431|      0|		if (m_str_to_uint(idle_timeout_arg, &val) == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (431:7): [True: 0, False: 0]
  ------------------
  432|      0|			dropbear_exit("Bad idle_timeout '%s'", idle_timeout_arg);
  433|      0|		}
  434|      0|		opts.idle_timeout_secs = val;
  435|      0|	}
  436|       |
  437|      1|	if (svr_opts.forced_command) {
  ------------------
  |  Branch (437:6): [True: 0, False: 1]
  ------------------
  438|      0|		dropbear_log(LOG_INFO, "Forced command set to '%s'", svr_opts.forced_command);
  439|      0|	}
  440|       |
  441|      1|	if (reexec_fd_arg) {
  ------------------
  |  Branch (441:6): [True: 0, False: 1]
  ------------------
  442|      0|		if (m_str_to_uint(reexec_fd_arg, &svr_opts.reexec_childpipe) == DROPBEAR_FAILURE
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (442:7): [True: 0, False: 0]
  ------------------
  443|      0|			|| svr_opts.reexec_childpipe < 0) {
  ------------------
  |  Branch (443:7): [True: 0, False: 0]
  ------------------
  444|      0|			dropbear_exit("Bad -2");
  445|      0|		}
  446|      0|	}
  447|       |
  448|      1|#if INETD_MODE
  449|      1|	if (svr_opts.inetdmode && (
  ------------------
  |  Branch (449:6): [True: 0, False: 1]
  |  Branch (449:28): [True: 0, False: 0]
  ------------------
  450|      0|		opts.usingsyslog == 0
  451|       |#if DEBUG_TRACE
  452|       |		|| debug_trace
  453|       |#endif
  454|      0|		)) {
  455|       |		/* log output goes to stderr which would get sent over the inetd network socket */
  456|      0|		dropbear_exit("Dropbear inetd mode is incompatible with debug -v or non-syslog");
  457|      0|	}
  458|      1|#endif
  459|       |
  460|      1|	if (svr_opts.multiauthmethod && svr_opts.noauthpass) {
  ------------------
  |  Branch (460:6): [True: 0, False: 1]
  |  Branch (460:34): [True: 0, False: 0]
  ------------------
  461|      0|		dropbear_exit("-t and -s are incompatible");
  462|      0|	}
  463|       |
  464|       |#if DROPBEAR_PLUGIN
  465|       |	if (pubkey_plugin) {
  466|       |		svr_opts.pubkey_plugin = m_strdup(pubkey_plugin);
  467|       |		char *args = strchr(svr_opts.pubkey_plugin, ',');
  468|       |		if (args) {
  469|       |			*args='\0';
  470|       |			++args;
  471|       |		}
  472|       |		svr_opts.pubkey_plugin_options = args;
  473|       |	}
  474|       |#endif
  475|      1|}

recv_msg_service_request:
   37|    688|void recv_msg_service_request() {
   38|       |
   39|    688|	char * name;
   40|    688|	unsigned int len;
   41|       |
   42|    688|	TRACE(("enter recv_msg_service_request"))
   43|       |
   44|    688|	name = buf_getstring(ses.payload, &len);
   45|       |
   46|       |	/* ssh-userauth */
   47|    688|	if (len == SSH_SERVICE_USERAUTH_LEN && 
  ------------------
  |  |  105|  1.37k|#define SSH_SERVICE_USERAUTH_LEN 12
  ------------------
  |  Branch (47:6): [True: 100, False: 588]
  ------------------
   48|    688|			strncmp(SSH_SERVICE_USERAUTH, name, len) == 0) {
  ------------------
  |  |  104|    100|#define SSH_SERVICE_USERAUTH "ssh-userauth"
  ------------------
  |  Branch (48:4): [True: 100, False: 0]
  ------------------
   49|       |
   50|    100|		send_msg_service_accept(name, len);
   51|    100|		m_free(name);
  ------------------
  |  |   24|    100|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   52|    100|		TRACE(("leave recv_msg_service_request: done ssh-userauth"))
   53|    100|		return;
   54|    100|	}
   55|       |
   56|       |	/* ssh-connection */
   57|    588|	if (len == SSH_SERVICE_CONNECTION_LEN &&
  ------------------
  |  |  107|  1.17k|#define SSH_SERVICE_CONNECTION_LEN 14
  ------------------
  |  Branch (57:6): [True: 577, False: 11]
  ------------------
   58|    588|			(strncmp(SSH_SERVICE_CONNECTION, name, len) == 0)) {
  ------------------
  |  |  106|    577|#define SSH_SERVICE_CONNECTION "ssh-connection"
  ------------------
  |  Branch (58:4): [True: 576, False: 1]
  ------------------
   59|    576|		if (ses.authstate.authdone != 1) {
  ------------------
  |  Branch (59:7): [True: 0, False: 576]
  ------------------
   60|      0|			dropbear_exit("Request for connection before auth");
   61|      0|		}
   62|       |
   63|    576|		send_msg_service_accept(name, len);
   64|    576|		m_free(name);
  ------------------
  |  |   24|    576|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   65|    576|		TRACE(("leave recv_msg_service_request: done ssh-connection"))
   66|    576|		return;
   67|    576|	}
   68|       |
   69|     12|	m_free(name);
  ------------------
  |  |   24|     12|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   70|       |	/* TODO this should be a MSG_DISCONNECT */
   71|     12|	dropbear_exit("Unrecognised SSH_MSG_SERVICE_REQUEST");
   72|       |
   73|       |
   74|    588|}
svr-service.c:send_msg_service_accept:
   76|    676|static void send_msg_service_accept(const char *name, int len) {
   77|       |
   78|    676|	TRACE(("accepting service %s", name))
   79|       |
   80|    676|	CHECKCLEARTOWRITE();
   81|       |
   82|    676|	buf_putbyte(ses.writepayload, SSH_MSG_SERVICE_ACCEPT);
  ------------------
  |  |   34|    676|#define SSH_MSG_SERVICE_ACCEPT         6
  ------------------
   83|    676|	buf_putstring(ses.writepayload, name, len);
   84|       |
   85|    676|	encrypt_packet();
   86|       |
   87|    676|}

svr_session:
  105|  1.55k|void svr_session(int sock, int childpipe) {
  106|  1.55k|	char *host, *port;
  107|  1.55k|	size_t len;
  108|       |
  109|  1.55k|	common_session_init(sock, sock);
  110|       |
  111|       |	/* Initialise server specific parts of the session */
  112|  1.55k|	svr_ses.childpipe = childpipe;
  113|       |#if DROPBEAR_VFORK
  114|       |	svr_ses.server_pid = getpid();
  115|       |#endif
  116|       |
  117|       |	/* for logging the remote address */
  118|  1.55k|	get_socket_address(ses.sock_in, NULL, NULL, &host, &port, 0);
  119|  1.55k|	len = strlen(host) + strlen(port) + 2;
  120|  1.55k|	svr_ses.addrstring = m_malloc(len);
  121|  1.55k|	snprintf(svr_ses.addrstring, len, "%s:%s", host, port);
  122|  1.55k|	m_free(host);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  123|  1.55k|	m_free(port);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  124|       |
  125|       |#if DROPBEAR_PLUGIN
  126|       |        /* Initializes the PLUGIN Plugin */
  127|       |        svr_ses.plugin_handle = NULL;
  128|       |        svr_ses.plugin_instance = NULL;
  129|       |        if (svr_opts.pubkey_plugin) {
  130|       |#if DEBUG_TRACE
  131|       |            const int verbose = debug_trace;
  132|       |#else
  133|       |            const int verbose = 0;
  134|       |#endif
  135|       |            PubkeyExtPlugin_newFn  pluginConstructor;
  136|       |
  137|       |            /* RTLD_NOW: fails if not all the symbols are resolved now. Better fail now than at run-time */
  138|       |            svr_ses.plugin_handle = dlopen(svr_opts.pubkey_plugin, RTLD_NOW);
  139|       |            if (svr_ses.plugin_handle == NULL) {
  140|       |                dropbear_exit("failed to load external pubkey plugin '%s': %s", svr_opts.pubkey_plugin, dlerror());
  141|       |            }
  142|       |            pluginConstructor = (PubkeyExtPlugin_newFn)dlsym(svr_ses.plugin_handle, DROPBEAR_PUBKEY_PLUGIN_FNNAME_NEW);
  143|       |            if (!pluginConstructor) {
  144|       |                dropbear_exit("plugin constructor method not found in external pubkey plugin");
  145|       |            }
  146|       |
  147|       |            /* Create an instance of the plugin */
  148|       |            svr_ses.plugin_instance = pluginConstructor(verbose, svr_opts.pubkey_plugin_options, svr_ses.addrstring);
  149|       |            if (svr_ses.plugin_instance == NULL) {
  150|       |                dropbear_exit("external plugin initialization failed");
  151|       |            }
  152|       |            /* Check if the plugin is compatible */
  153|       |            if ( (svr_ses.plugin_instance->api_version[0] != DROPBEAR_PLUGIN_VERSION_MAJOR) ||
  154|       |                 (svr_ses.plugin_instance->api_version[1] < DROPBEAR_PLUGIN_VERSION_MINOR) ) {
  155|       |                dropbear_exit("plugin version check failed: "
  156|       |                              "Dropbear=%d.%d, plugin=%d.%d",
  157|       |                        DROPBEAR_PLUGIN_VERSION_MAJOR, DROPBEAR_PLUGIN_VERSION_MINOR,
  158|       |                        svr_ses.plugin_instance->api_version[0], svr_ses.plugin_instance->api_version[1]);
  159|       |            }
  160|       |            if (svr_ses.plugin_instance->api_version[1] > DROPBEAR_PLUGIN_VERSION_MINOR) {
  161|       |                dropbear_log(LOG_WARNING, "plugin API newer than dropbear API: "
  162|       |                              "Dropbear=%d.%d, plugin=%d.%d",
  163|       |                        DROPBEAR_PLUGIN_VERSION_MAJOR, DROPBEAR_PLUGIN_VERSION_MINOR,
  164|       |                        svr_ses.plugin_instance->api_version[0], svr_ses.plugin_instance->api_version[1]);
  165|       |            }
  166|       |            dropbear_log(LOG_INFO, "successfully loaded and initialized pubkey plugin '%s'", svr_opts.pubkey_plugin);
  167|       |        }
  168|       |#endif
  169|       |
  170|  1.55k|	svr_authinitialise();
  171|  1.55k|	chaninitialise(svr_chantypes);
  172|  1.55k|	svr_chansessinitialise();
  173|  1.55k|	svr_algos_initialise();
  174|       |
  175|  1.55k|	get_socket_address(ses.sock_in, NULL, NULL, 
  176|  1.55k|			&svr_ses.remotehost, NULL, 1);
  177|       |
  178|       |	/* set up messages etc */
  179|  1.55k|	ses.remoteclosed = svr_remoteclosed;
  180|  1.55k|	ses.extra_session_cleanup = svr_session_cleanup;
  181|       |
  182|       |	/* packet handlers */
  183|  1.55k|	ses.packettypes = svr_packettypes;
  184|       |
  185|  1.55k|	ses.isserver = 1;
  186|       |
  187|       |	/* We're ready to go now */
  188|  1.55k|	ses.init_done = 1;
  189|       |
  190|       |	/* exchange identification, version etc */
  191|  1.55k|	send_session_identification();
  192|       |	
  193|  1.55k|	kexfirstinitialise(); /* initialise the kex state */
  194|       |
  195|       |	/* start off with key exchange */
  196|  1.55k|	send_msg_kexinit();
  197|       |
  198|  1.55k|#if DROPBEAR_FUZZ
  199|  1.55k|    if (fuzz.fuzzing) {
  ------------------
  |  Branch (199:9): [True: 1.55k, False: 0]
  ------------------
  200|  1.55k|        fuzz_svr_hook_preloop();
  201|  1.55k|    }
  202|  1.55k|#endif
  203|       |
  204|       |	/* Run the main for-loop. */
  205|  1.55k|	session_loop(svr_chansess_checksignal);
  206|       |
  207|       |	/* Not reached */
  208|       |
  209|  1.55k|}
svr_dropbear_exit:
  212|  1.55k|void svr_dropbear_exit(int exitcode, const char* format, va_list param) {
  213|  1.55k|	char exitmsg[150];
  214|  1.55k|	char fullmsg[300];
  215|  1.55k|	char fromaddr[60];
  216|  1.55k|	int i;
  217|  1.55k|	int add_delay = 0;
  218|       |
  219|       |#if DROPBEAR_PLUGIN
  220|       |	if ((ses.plugin_session != NULL)) {
  221|       |		svr_ses.plugin_instance->delete_session(ses.plugin_session);
  222|       |	}
  223|       |	ses.plugin_session = NULL;
  224|       |	svr_opts.pubkey_plugin_options = NULL;
  225|       |	m_free(svr_opts.pubkey_plugin);
  226|       |#endif
  227|       |
  228|       |	/* Render the formatted exit message */
  229|  1.55k|	vsnprintf(exitmsg, sizeof(exitmsg), format, param);
  230|       |
  231|       |	/* svr_ses.addrstring may not be set for some early exits, or for
  232|       |	the listener process */
  233|  1.55k|	fromaddr[0] = '\0';
  234|  1.55k|	if (svr_ses.addrstring) {
  ------------------
  |  Branch (234:6): [True: 1.55k, False: 0]
  ------------------
  235|  1.55k|	    snprintf(fromaddr, sizeof(fromaddr), " from <%s>", svr_ses.addrstring);
  236|  1.55k|    }
  237|       |
  238|       |	/* Add the prefix depending on session/auth state */
  239|  1.55k|	if (!ses.init_done) {
  ------------------
  |  Branch (239:6): [True: 0, False: 1.55k]
  ------------------
  240|       |		/* before session init */
  241|      0|		snprintf(fullmsg, sizeof(fullmsg), "Early exit%s: %s", fromaddr, exitmsg);
  242|  1.55k|	} else if (ses.authstate.authdone) {
  ------------------
  |  Branch (242:13): [True: 1.55k, False: 0]
  ------------------
  243|       |		/* user has authenticated */
  244|  1.55k|		snprintf(fullmsg, sizeof(fullmsg),
  245|  1.55k|				"Exit (%s)%s: %s", 
  246|  1.55k|				ses.authstate.pw_name, fromaddr, exitmsg);
  247|  1.55k|	} else if (ses.authstate.pw_name) {
  ------------------
  |  Branch (247:13): [True: 0, False: 0]
  ------------------
  248|       |		/* we have a potential user */
  249|      0|		snprintf(fullmsg, sizeof(fullmsg), 
  250|      0|				"Exit before auth%s: (user '%s', %u fails): %s",
  251|      0|				fromaddr, ses.authstate.pw_name, ses.authstate.failcount, exitmsg);
  252|      0|		add_delay = 1;
  253|      0|	} else {
  254|       |		/* before userauth */
  255|      0|		snprintf(fullmsg, sizeof(fullmsg), "Exit before auth%s: %s", fromaddr, exitmsg);
  256|      0|		add_delay = 1;
  257|      0|	}
  258|       |
  259|  1.55k|	dropbear_log(LOG_INFO, "%s", fullmsg);
  260|       |
  261|       |	/* To make it harder for attackers, introduce a delay to keep an
  262|       |	 * unauthenticated session open a bit longer, thus blocking a connection
  263|       |	 * slot until after the delay. Without this, while there is a limit on
  264|       |	 * the amount of attempts an attacker can make at the same time
  265|       |	 * (MAX_UNAUTH_PER_IP), the time taken by dropbear to handle one attempt
  266|       |	 * is still short and thus for each of the allowed parallel attempts
  267|       |	 * many attempts can be chained one after the other. The attempt rate is
  268|       |	 * then:
  269|       |	 *     "MAX_UNAUTH_PER_IP / <process time of one attempt>".
  270|       |	 * With the delay, this rate becomes:
  271|       |	 *     "MAX_UNAUTH_PER_IP / UNAUTH_CLOSE_DELAY".
  272|       |	 */
  273|  1.55k|	if ((add_delay != 0) && (UNAUTH_CLOSE_DELAY > 0)) {
  ------------------
  |  |  436|      0|#define UNAUTH_CLOSE_DELAY 0
  ------------------
  |  Branch (273:6): [True: 0, False: 1.55k]
  |  Branch (273:26): [Folded - Ignored]
  ------------------
  274|      0|		TRACE(("svr_dropbear_exit: start delay of %d seconds", UNAUTH_CLOSE_DELAY));
  275|      0|		sleep(UNAUTH_CLOSE_DELAY);
  ------------------
  |  |  436|      0|#define UNAUTH_CLOSE_DELAY 0
  ------------------
  276|      0|		TRACE(("svr_dropbear_exit: end delay of %d seconds", UNAUTH_CLOSE_DELAY));
  277|      0|	}
  278|       |
  279|       |#if DROPBEAR_VFORK
  280|       |	/* For uclinux only the main server process should cleanup - we don't want
  281|       |	 * forked children doing that */
  282|       |	if (svr_ses.server_pid == getpid())
  283|       |#endif
  284|  1.55k|	{
  285|       |		/* must be after we've done with username etc */
  286|  1.55k|		session_cleanup();
  287|  1.55k|	}
  288|       |
  289|  1.55k|#if DROPBEAR_FUZZ
  290|       |	/* longjmp before cleaning up svr_opts */
  291|  1.55k|    if (fuzz.do_jmp) {
  ------------------
  |  Branch (291:9): [True: 1.55k, False: 0]
  ------------------
  292|  1.55k|        longjmp(fuzz.jmp, 1);
  293|  1.55k|    }
  294|      0|#endif
  295|       |
  296|      0|	if (svr_opts.hostkey) {
  ------------------
  |  Branch (296:6): [True: 0, False: 0]
  ------------------
  297|      0|		sign_key_free(svr_opts.hostkey);
  298|      0|		svr_opts.hostkey = NULL;
  299|      0|	}
  300|      0|	for (i = 0; i < DROPBEAR_MAX_PORTS; i++) {
  ------------------
  |  |   80|      0|#define DROPBEAR_MAX_PORTS 10 /* max number of ports which can be specified,
  ------------------
  |  Branch (300:14): [True: 0, False: 0]
  ------------------
  301|      0|		m_free(svr_opts.addresses[i]);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  302|      0|		m_free(svr_opts.ports[i]);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  303|      0|	}
  304|       |
  305|       |    
  306|      0|	exit(exitcode);
  307|       |
  308|  1.55k|}
svr-session.c:svr_session_cleanup:
   83|  1.55k|svr_session_cleanup(void) {
   84|       |	/* free potential public key options */
   85|  1.55k|	svr_pubkey_options_cleanup();
   86|       |
   87|  1.55k|	m_free(svr_ses.addrstring);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   88|  1.55k|	m_free(svr_ses.remotehost);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   89|  1.55k|	m_free(svr_ses.childpids);
  ------------------
  |  |   24|  1.55k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
   90|  1.55k|	svr_ses.childpidsize = 0;
   91|       |
   92|       |#if DROPBEAR_PLUGIN
   93|       |        if (svr_ses.plugin_handle != NULL) {
   94|       |            if (svr_ses.plugin_instance) {
   95|       |                svr_ses.plugin_instance->delete_plugin(svr_ses.plugin_instance);
   96|       |                svr_ses.plugin_instance = NULL;
   97|       |            }
   98|       |
   99|       |            dlclose(svr_ses.plugin_handle);
  100|       |            svr_ses.plugin_handle = NULL;
  101|       |        }
  102|       |#endif
  103|  1.55k|}
svr-session.c:svr_remoteclosed:
  348|  1.08k|static void svr_remoteclosed() {
  349|       |
  350|  1.08k|	m_close(ses.sock_in);
  351|  1.08k|	if (ses.sock_in != ses.sock_out) {
  ------------------
  |  Branch (351:6): [True: 0, False: 1.08k]
  ------------------
  352|      0|		m_close(ses.sock_out);
  353|      0|	}
  354|  1.08k|	ses.sock_in = -1;
  355|  1.08k|	ses.sock_out = -1;
  356|  1.08k|	dropbear_close("Exited normally");
  357|       |
  358|  1.08k|}
svr-session.c:svr_algos_initialise:
  360|  1.55k|static void svr_algos_initialise(void) {
  361|  1.55k|	algo_type *algo;
  362|  15.5k|	for (algo = sshkex; algo->name; algo++) {
  ------------------
  |  Branch (362:22): [True: 14.0k, False: 1.55k]
  ------------------
  363|       |#if DROPBEAR_DH_GROUP1 && DROPBEAR_DH_GROUP1_CLIENTONLY
  364|       |		if (strcmp(algo->name, "diffie-hellman-group1-sha1") == 0) {
  365|       |			algo->usable = 0;
  366|       |		}
  367|       |#endif
  368|  14.0k|#if DROPBEAR_EXT_INFO
  369|  14.0k|		if (strcmp(algo->name, SSH_EXT_INFO_C) == 0) {
  ------------------
  |  |  100|  14.0k|#define SSH_EXT_INFO_C "ext-info-c"
  ------------------
  |  Branch (369:7): [True: 1.55k, False: 12.4k]
  ------------------
  370|  1.55k|			algo->usable = 0;
  371|  1.55k|		}
  372|  14.0k|#endif
  373|  14.0k|	}
  374|  1.55k|}

recv_msg_global_request_remotetcp:
   73|  2.23k|void recv_msg_global_request_remotetcp() {
   74|       |
   75|  2.23k|	char* reqname = NULL;
   76|  2.23k|	unsigned int namelen;
   77|  2.23k|	unsigned int wantreply = 0;
   78|  2.23k|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|  2.23k|#define DROPBEAR_FAILURE -1
  ------------------
   79|       |
   80|  2.23k|	TRACE(("enter recv_msg_global_request_remotetcp"))
   81|       |
   82|  2.23k|	if (svr_opts.noremotetcp || !svr_pubkey_allows_tcpfwd()) {
  ------------------
  |  Branch (82:6): [True: 0, False: 2.23k]
  |  Branch (82:30): [True: 0, False: 2.23k]
  ------------------
   83|      0|		TRACE(("leave recv_msg_global_request_remotetcp: remote tcp forwarding disabled"))
   84|      0|		goto out;
   85|      0|	}
   86|       |
   87|  2.23k|	reqname = buf_getstring(ses.payload, &namelen);
   88|  2.23k|	wantreply = buf_getbool(ses.payload);
   89|       |
   90|  2.23k|	if (namelen > MAX_NAME_LEN) {
  ------------------
  |  |  205|  2.23k|#define MAX_NAME_LEN 64 /* maximum length of a protocol name, isn't
  ------------------
  |  Branch (90:6): [True: 69, False: 2.17k]
  ------------------
   91|     69|		TRACE(("name len is wrong: %d", namelen))
   92|     69|		goto out;
   93|     69|	}
   94|       |
   95|  2.17k|	if (strcmp("tcpip-forward", reqname) == 0) {
  ------------------
  |  Branch (95:6): [True: 1.45k, False: 719]
  ------------------
   96|  1.45k|		int allocated_listen_port = 0;
   97|  1.45k|		ret = svr_remotetcpreq(&allocated_listen_port);
   98|       |		/* client expects-port-number-to-make-use-of-server-allocated-ports */
   99|  1.45k|		if (DROPBEAR_SUCCESS == ret) {
  ------------------
  |  |  102|  1.45k|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (99:7): [True: 0, False: 1.45k]
  ------------------
  100|      0|			CHECKCLEARTOWRITE();
  101|      0|			buf_putbyte(ses.writepayload, SSH_MSG_REQUEST_SUCCESS);
  ------------------
  |  |   64|      0|#define SSH_MSG_REQUEST_SUCCESS                 81
  ------------------
  102|      0|			buf_putint(ses.writepayload, allocated_listen_port);
  103|      0|			encrypt_packet();
  104|      0|			wantreply = 0; /* avoid out: below sending another reply */
  105|      0|		}
  106|  1.45k|	} else if (strcmp("cancel-tcpip-forward", reqname) == 0) {
  ------------------
  |  Branch (106:13): [True: 280, False: 439]
  ------------------
  107|    280|		ret = svr_cancelremotetcp();
  108|    439|	} else {
  109|    439|		TRACE(("reqname isn't tcpip-forward: '%s'", reqname))
  110|    439|	}
  111|       |
  112|  2.23k|out:
  113|  2.23k|	if (wantreply) {
  ------------------
  |  Branch (113:6): [True: 781, False: 1.45k]
  ------------------
  114|    781|		if (ret == DROPBEAR_SUCCESS) {
  ------------------
  |  |  102|    781|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (114:7): [True: 0, False: 781]
  ------------------
  115|      0|			send_msg_request_success();
  116|    781|		} else {
  117|    781|			send_msg_request_failure();
  118|    781|		}
  119|    781|	}
  120|       |
  121|  2.23k|	m_free(reqname);
  ------------------
  |  |   24|  2.23k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  122|       |
  123|  2.23k|	TRACE(("leave recv_msg_global_request"))
  124|  2.23k|}
svr-tcpfwd.c:svr_cancelremotetcp:
  136|    280|static int svr_cancelremotetcp() {
  137|       |
  138|    280|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|    280|#define DROPBEAR_FAILURE -1
  ------------------
  139|    280|	char * bindaddr = NULL;
  140|    280|	unsigned int addrlen;
  141|    280|	unsigned int port;
  142|    280|	struct Listener * listener = NULL;
  143|    280|	struct TCPListener tcpinfo;
  144|       |
  145|    280|	TRACE(("enter cancelremotetcp"))
  146|       |
  147|    280|	bindaddr = buf_getstring(ses.payload, &addrlen);
  148|    280|	if (addrlen > MAX_HOST_LEN) {
  ------------------
  |  |   78|    280|#define MAX_HOST_LEN 254 /* max hostname len for tcp fwding */
  ------------------
  |  Branch (148:6): [True: 70, False: 210]
  ------------------
  149|     70|		TRACE(("addr len too long: %d", addrlen))
  150|     70|		goto out;
  151|     70|	}
  152|       |
  153|    210|	port = buf_getint(ses.payload);
  154|       |
  155|    210|	tcpinfo.sendaddr = NULL;
  156|    210|	tcpinfo.sendport = 0;
  157|    210|	tcpinfo.listenaddr = bindaddr;
  158|    210|	tcpinfo.listenport = port;
  159|    210|	listener = get_listener(CHANNEL_ID_TCPFORWARDED, &tcpinfo, matchtcp);
  ------------------
  |  |   76|    210|#define CHANNEL_ID_TCPFORWARDED 0x43612c67
  ------------------
  160|    210|	if (listener) {
  ------------------
  |  Branch (160:6): [True: 0, False: 210]
  ------------------
  161|      0|		remove_listener( listener );
  162|      0|		ret = DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  163|      0|	}
  164|       |
  165|    276|out:
  166|    276|	m_free(bindaddr);
  ------------------
  |  |   24|    276|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  167|    276|	TRACE(("leave cancelremotetcp"))
  168|    276|	return ret;
  169|    210|}
svr-tcpfwd.c:svr_remotetcpreq:
  171|  1.45k|static int svr_remotetcpreq(int *allocated_listen_port) {
  172|       |
  173|  1.45k|	int ret = DROPBEAR_FAILURE;
  ------------------
  |  |  103|  1.45k|#define DROPBEAR_FAILURE -1
  ------------------
  174|  1.45k|	char * request_addr = NULL;
  175|  1.45k|	unsigned int addrlen;
  176|  1.45k|	struct TCPListener *tcpinfo = NULL;
  177|  1.45k|	unsigned int port;
  178|  1.45k|	struct Listener *listener = NULL;
  179|       |
  180|  1.45k|	TRACE(("enter remotetcpreq"))
  181|       |
  182|  1.45k|	request_addr = buf_getstring(ses.payload, &addrlen);
  183|  1.45k|	if (addrlen > MAX_HOST_LEN) {
  ------------------
  |  |   78|  1.45k|#define MAX_HOST_LEN 254 /* max hostname len for tcp fwding */
  ------------------
  |  Branch (183:6): [True: 38, False: 1.41k]
  ------------------
  184|     38|		TRACE(("addr len too long: %d", addrlen))
  185|     38|		goto out;
  186|     38|	}
  187|       |
  188|  1.41k|	port = buf_getint(ses.payload);
  189|       |
  190|  1.41k|	if (port != 0) {
  ------------------
  |  Branch (190:6): [True: 1.34k, False: 67]
  ------------------
  191|  1.34k|		if (port < 1 || port > 65535) {
  ------------------
  |  Branch (191:7): [True: 0, False: 1.34k]
  |  Branch (191:19): [True: 316, False: 1.03k]
  ------------------
  192|    316|			TRACE(("invalid port: %d", port))
  193|    316|			goto out;
  194|    316|		}
  195|       |
  196|  1.03k|		if (!ses.allowprivport && port < IPPORT_RESERVED) {
  ------------------
  |  Branch (196:7): [True: 1.03k, False: 0]
  |  Branch (196:29): [True: 191, False: 839]
  ------------------
  197|    191|			TRACE(("can't assign port < 1024 for non-root"))
  198|    191|			goto out;
  199|    191|		}
  200|  1.03k|	}
  201|       |
  202|    906|	tcpinfo = (struct TCPListener*)m_malloc(sizeof(struct TCPListener));
  203|    906|	tcpinfo->sendaddr = NULL;
  204|    906|	tcpinfo->sendport = 0;
  205|    906|	tcpinfo->listenport = port;
  206|    906|	tcpinfo->chantype = &svr_chan_tcpremote;
  207|    906|	tcpinfo->tcp_type = forwarded;
  208|       |
  209|    906|	tcpinfo->request_listenaddr = request_addr;
  210|    906|	if (!opts.listen_fwd_all || (strcmp(request_addr, "localhost") == 0) ) {
  ------------------
  |  Branch (210:6): [True: 906, False: 0]
  |  Branch (210:30): [True: 0, False: 0]
  ------------------
  211|       |		/* NULL means "localhost only" */
  212|    902|		tcpinfo->listenaddr = NULL;
  213|    902|	}
  214|      4|	else
  215|      4|	{
  216|      4|		tcpinfo->listenaddr = m_strdup(request_addr);
  217|      4|	}
  218|       |
  219|    906|	ret = listen_tcpfwd(tcpinfo, &listener);
  220|    906|	if (DROPBEAR_SUCCESS == ret) {
  ------------------
  |  |  102|    906|#define DROPBEAR_SUCCESS 0
  ------------------
  |  Branch (220:6): [True: 0, False: 906]
  ------------------
  221|      0|		tcpinfo->listenport = get_sock_port(listener->socks[0]);
  222|      0|		*allocated_listen_port = tcpinfo->listenport;
  223|      0|	}
  224|       |
  225|  1.44k|out:
  226|  1.44k|	if (ret == DROPBEAR_FAILURE) {
  ------------------
  |  |  103|  1.44k|#define DROPBEAR_FAILURE -1
  ------------------
  |  Branch (226:6): [True: 1.44k, False: 0]
  ------------------
  227|       |		/* we only free it if a listener wasn't created, since the listener
  228|       |		 * has to remember it if it's to be cancelled */
  229|  1.44k|		m_free(request_addr);
  ------------------
  |  |   24|  1.44k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  230|  1.44k|		m_free(tcpinfo);
  ------------------
  |  |   24|  1.44k|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  231|  1.44k|	}
  232|       |
  233|  1.44k|	TRACE(("leave remotetcpreq"))
  234|       |
  235|  1.44k|	return ret;
  236|    906|}
svr-tcpfwd.c:newtcpdirect:
  253|    361|static int newtcpdirect(struct Channel * channel) {
  254|       |
  255|    361|	char* desthost = NULL;
  256|    361|	unsigned int destport;
  257|    361|	char* orighost = NULL;
  258|    361|	unsigned int origport;
  259|    361|	char portstring[NI_MAXSERV];
  260|    361|	unsigned int len;
  261|    361|	int err = SSH_OPEN_ADMINISTRATIVELY_PROHIBITED;
  ------------------
  |  |   33|    361|#define SSH_OPEN_ADMINISTRATIVELY_PROHIBITED    1
  ------------------
  262|       |
  263|    361|	TRACE(("newtcpdirect channel %d", channel->index))
  264|       |
  265|    361|	if (svr_opts.nolocaltcp || !svr_pubkey_allows_tcpfwd()) {
  ------------------
  |  Branch (265:6): [True: 0, False: 361]
  |  Branch (265:29): [True: 0, False: 361]
  ------------------
  266|      0|		TRACE(("leave newtcpdirect: local tcp forwarding disabled"))
  267|      0|		goto out;
  268|      0|	}
  269|       |
  270|    361|	desthost = buf_getstring(ses.payload, &len);
  271|    361|	if (len > MAX_HOST_LEN) {
  ------------------
  |  |   78|    361|#define MAX_HOST_LEN 254 /* max hostname len for tcp fwding */
  ------------------
  |  Branch (271:6): [True: 70, False: 291]
  ------------------
  272|     70|		TRACE(("leave newtcpdirect: desthost too long"))
  273|     70|		goto out;
  274|     70|	}
  275|       |
  276|    291|	destport = buf_getint(ses.payload);
  277|       |	
  278|    291|	orighost = buf_getstring(ses.payload, &len);
  279|    291|	if (len > MAX_HOST_LEN) {
  ------------------
  |  |   78|    291|#define MAX_HOST_LEN 254 /* max hostname len for tcp fwding */
  ------------------
  |  Branch (279:6): [True: 68, False: 223]
  ------------------
  280|     68|		TRACE(("leave newtcpdirect: orighost too long"))
  281|     68|		goto out;
  282|     68|	}
  283|       |
  284|    223|	origport = buf_getint(ses.payload);
  285|       |
  286|       |	/* best be sure */
  287|    223|	if (origport > 65535 || destport > 65535) {
  ------------------
  |  Branch (287:6): [True: 49, False: 174]
  |  Branch (287:26): [True: 73, False: 101]
  ------------------
  288|    117|		TRACE(("leave newtcpdirect: port > 65535"))
  289|    117|		goto out;
  290|    117|	}
  291|       |
  292|    106|	if (!svr_pubkey_allows_local_tcpfwd(desthost, destport)) {
  ------------------
  |  Branch (292:6): [True: 0, False: 106]
  ------------------
  293|      0|		TRACE(("leave newtcpdirect: local tcp forwarding not permitted to requested destination"));
  294|      0|		goto out;
  295|      0|	}
  296|       |
  297|    106|	snprintf(portstring, sizeof(portstring), "%u", destport);
  298|    106|	channel->conn_pending = connect_remote(desthost, portstring, channel_connect_done,
  299|    106|		channel, NULL, NULL, DROPBEAR_PRIO_NORMAL);
  300|       |
  301|    106|	err = SSH_OPEN_IN_PROGRESS;
  ------------------
  |  |   39|    106|#define SSH_OPEN_IN_PROGRESS					99
  ------------------
  302|       |
  303|    356|out:
  304|    356|	m_free(desthost);
  ------------------
  |  |   24|    356|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  305|    356|	m_free(orighost);
  ------------------
  |  |   24|    356|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  306|    356|	TRACE(("leave newtcpdirect: err %d", err))
  307|    356|	return err;
  308|    106|}

listen_tcpfwd:
  106|    902|int listen_tcpfwd(struct TCPListener* tcpinfo, struct Listener **ret_listener) {
  107|       |
  108|    902|	char portstring[NI_MAXSERV];
  109|    902|	int socks[DROPBEAR_MAX_SOCKS];
  110|    902|	int nsocks;
  111|    902|	struct Listener *listener;
  112|    902|	char* errstring = NULL;
  113|       |
  114|    902|	TRACE(("enter listen_tcpfwd"))
  115|       |
  116|       |	/* first we try to bind, so don't need to do so much cleanup on failure */
  117|    902|	snprintf(portstring, sizeof(portstring), "%u", tcpinfo->listenport);
  118|       |
  119|    902|	nsocks = dropbear_listen(tcpinfo->listenaddr, portstring, socks, 
  120|    902|			DROPBEAR_MAX_SOCKS, &errstring, &ses.maxfd);
  ------------------
  |  |  242|    902|#define DROPBEAR_MAX_SOCKS 2 /* IPv4, IPv6 are all we'll get for now. Revisit
  ------------------
  121|    902|	if (nsocks < 0) {
  ------------------
  |  Branch (121:6): [True: 902, False: 0]
  ------------------
  122|    902|		dropbear_log(LOG_INFO, "TCP forward failed: %s", errstring);
  123|    902|		m_free(errstring);
  ------------------
  |  |   24|    902|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  124|    902|		TRACE(("leave listen_tcpfwd: dropbear_listen failed"))
  125|    902|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|    902|#define DROPBEAR_FAILURE -1
  ------------------
  126|    902|	}
  127|      0|	m_free(errstring);
  ------------------
  |  |   24|      0|#define m_free(X) do {m_free_direct(X); (X) = NULL;} while (0)
  |  |  ------------------
  |  |  |  Branch (24:61): [Folded - Ignored]
  |  |  ------------------
  ------------------
  128|       |	
  129|       |	/* new_listener will close the socks if it fails */
  130|      0|	listener = new_listener(socks, nsocks, CHANNEL_ID_TCPFORWARDED, tcpinfo, 
  ------------------
  |  |   76|      0|#define CHANNEL_ID_TCPFORWARDED 0x43612c67
  ------------------
  131|      0|			tcp_acceptor, cleanup_tcp);
  132|       |
  133|      0|	if (listener == NULL) {
  ------------------
  |  Branch (133:6): [True: 0, False: 0]
  ------------------
  134|      0|		TRACE(("leave listen_tcpfwd: listener failed"))
  135|      0|		return DROPBEAR_FAILURE;
  ------------------
  |  |  103|      0|#define DROPBEAR_FAILURE -1
  ------------------
  136|      0|	}
  137|       |
  138|      0|	if (ret_listener) {
  ------------------
  |  Branch (138:6): [True: 0, False: 0]
  ------------------
  139|      0|		*ret_listener = listener;
  140|      0|	}
  141|       |
  142|      0|	TRACE(("leave listen_tcpfwd: success"))
  143|      0|	return DROPBEAR_SUCCESS;
  ------------------
  |  |  102|      0|#define DROPBEAR_SUCCESS 0
  ------------------
  144|      0|}

