| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | | - |
| 6 | | - |
| 7 | | - |
| 8 | | - |
| 9 | | - |
| 10 | | - |
| 11 | | - |
| 12 | | - |
| 13 | | - |
| 14 | | - |
| 15 | | - |
| 16 | | - |
| 17 | | - |
| 18 | #include "includes.h" | - |
| 19 | | - |
| 20 | #include <sys/types.h> | - |
| 21 | #include <limits.h> | - |
| 22 | | - |
| 23 | #include "crypto_api.h" | - |
| 24 | | - |
| 25 | #include <string.h> | - |
| 26 | #include <stdarg.h> | - |
| 27 | | - |
| 28 | #include "log.h" | - |
| 29 | #include "sshbuf.h" | - |
| 30 | #define SSHKEY_INTERNAL | - |
| 31 | #include "sshkey.h" | - |
| 32 | #include "ssherr.h" | - |
| 33 | #include "ssh.h" | - |
| 34 | | - |
| 35 | int | - |
| 36 | ssh_ed25519_sign(const struct sshkey *key, u_char **sigp, size_t *lenp, | - |
| 37 | const u_char *data, size_t datalen, u_int compat) | - |
| 38 | { | - |
| 39 | u_char *sig = NULL; | - |
| 40 | size_t slen = 0, len; | - |
| 41 | unsigned long long smlen; | - |
| 42 | int r, ret; | - |
| 43 | struct sshbuf *b = NULL; | - |
| 44 | | - |
| 45 | if (lenp != NULL)| TRUE | evaluated 65 times by 2 tests | | FALSE | never evaluated |
| 0-65 |
| 46 | *lenp = 0;executed 65 times by 2 tests: *lenp = 0; | 65 |
| 47 | if (sigp != NULL)| TRUE | evaluated 65 times by 2 tests | | FALSE | never evaluated |
| 0-65 |
| 48 | *sigp = NULL;executed 65 times by 2 tests: *sigp = ((void *)0) ; | 65 |
| 49 | | - |
| 50 | if (key == NULL ||| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 51 | sshkey_type_plain(key->type) != KEY_ED25519 ||| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 52 | key->ed25519_sk == NULL ||| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 53 | datalen >= INT_MAX - crypto_sign_ed25519_BYTES)| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 54 | return SSH_ERR_INVALID_ARGUMENT; never executed: return -10; | 0 |
| 55 | smlen = slen = datalen + crypto_sign_ed25519_BYTES; | - |
| 56 | if ((sig = malloc(slen)) == NULL)| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 57 | return SSH_ERR_ALLOC_FAIL; never executed: return -2; | 0 |
| 58 | | - |
| 59 | if ((ret = crypto_sign_ed25519(sig, &smlen, data, datalen,| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 60 | key->ed25519_sk)) != 0 || smlen <= datalen) {| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 61 | r = SSH_ERR_INVALID_ARGUMENT; | - |
| 62 | goto out; never executed: goto out; | 0 |
| 63 | } | - |
| 64 | | - |
| 65 | if ((b = sshbuf_new()) == NULL) {| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 66 | r = SSH_ERR_ALLOC_FAIL; | - |
| 67 | goto out; never executed: goto out; | 0 |
| 68 | } | - |
| 69 | if ((r = sshbuf_put_cstring(b, "ssh-ed25519")) != 0 ||| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 70 | (r = sshbuf_put_string(b, sig, smlen - datalen)) != 0)| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 71 | goto out; never executed: goto out; | 0 |
| 72 | len = sshbuf_len(b); | - |
| 73 | if (sigp != NULL) {| TRUE | evaluated 65 times by 2 tests | | FALSE | never evaluated |
| 0-65 |
| 74 | if ((*sigp = malloc(len)) == NULL) {| TRUE | never evaluated | | FALSE | evaluated 65 times by 2 tests |
| 0-65 |
| 75 | r = SSH_ERR_ALLOC_FAIL; | - |
| 76 | goto out; never executed: goto out; | 0 |
| 77 | } | - |
| 78 | memcpy(*sigp, sshbuf_ptr(b), len); | - |
| 79 | }executed 65 times by 2 tests: end of block | 65 |
| 80 | if (lenp != NULL)| TRUE | evaluated 65 times by 2 tests | | FALSE | never evaluated |
| 0-65 |
| 81 | *lenp = len;executed 65 times by 2 tests: *lenp = len; | 65 |
| 82 | | - |
| 83 | r = 0; | - |
| 84 | out:code before this statement executed 65 times by 2 tests: out: | 65 |
| 85 | sshbuf_free(b); | - |
| 86 | if (sig != NULL) {| TRUE | evaluated 65 times by 2 tests | | FALSE | never evaluated |
| 0-65 |
| 87 | explicit_bzero(sig, slen); | - |
| 88 | free(sig); | - |
| 89 | }executed 65 times by 2 tests: end of block | 65 |
| 90 | | - |
| 91 | return r;executed 65 times by 2 tests: return r; | 65 |
| 92 | } | - |
| 93 | | - |
| 94 | int | - |
| 95 | ssh_ed25519_verify(const struct sshkey *key, | - |
| 96 | const u_char *signature, size_t signaturelen, | - |
| 97 | const u_char *data, size_t datalen, u_int compat) | - |
| 98 | { | - |
| 99 | struct sshbuf *b = NULL; | - |
| 100 | char *ktype = NULL; | - |
| 101 | const u_char *sigblob; | - |
| 102 | u_char *sm = NULL, *m = NULL; | - |
| 103 | size_t len; | - |
| 104 | unsigned long long smlen = 0, mlen = 0; | - |
| 105 | int r, ret; | - |
| 106 | | - |
| 107 | if (key == NULL ||| TRUE | never evaluated | | FALSE | evaluated 18033 times by 2 tests |
| 0-18033 |
| 108 | sshkey_type_plain(key->type) != KEY_ED25519 ||| TRUE | never evaluated | | FALSE | evaluated 18033 times by 2 tests |
| 0-18033 |
| 109 | key->ed25519_pk == NULL ||| TRUE | never evaluated | | FALSE | evaluated 18033 times by 2 tests |
| 0-18033 |
| 110 | datalen >= INT_MAX - crypto_sign_ed25519_BYTES ||| TRUE | never evaluated | | FALSE | evaluated 18033 times by 2 tests |
| 0-18033 |
| 111 | signature == NULL || signaturelen == 0)| TRUE | never evaluated | | FALSE | evaluated 18033 times by 2 tests |
| TRUE | never evaluated | | FALSE | evaluated 18033 times by 2 tests |
| 0-18033 |
| 112 | return SSH_ERR_INVALID_ARGUMENT; never executed: return -10; | 0 |
| 113 | | - |
| 114 | if ((b = sshbuf_from(signature, signaturelen)) == NULL)| TRUE | never evaluated | | FALSE | evaluated 18033 times by 2 tests |
| 0-18033 |
| 115 | return SSH_ERR_ALLOC_FAIL; never executed: return -2; | 0 |
| 116 | if ((r = sshbuf_get_cstring(b, &ktype, NULL)) != 0 ||| TRUE | evaluated 871 times by 1 test | | FALSE | evaluated 17162 times by 2 tests |
| 871-17162 |
| 117 | (r = sshbuf_get_string_direct(b, &sigblob, &len)) != 0)| TRUE | evaluated 845 times by 1 test | | FALSE | evaluated 16317 times by 2 tests |
| 845-16317 |
| 118 | goto out;executed 1716 times by 1 test: goto out; | 1716 |
| 119 | if (strcmp("ssh-ed25519", ktype) != 0) { never executed: __result = (((const unsigned char *) (const char *) ( "ssh-ed25519" ))[3] - __s2[3]); never executed: end of block never executed: end of block never executed: __result = (((const unsigned char *) (const char *) ( ktype ))[3] - __s2[3]); never executed: end of block never executed: end of block | TRUE | evaluated 1914 times by 1 test | | FALSE | evaluated 14403 times by 2 tests |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-14403 |
| 120 | r = SSH_ERR_KEY_TYPE_MISMATCH; | - |
| 121 | goto out;executed 1914 times by 1 test: goto out; | 1914 |
| 122 | } | - |
| 123 | if (sshbuf_len(b) != 0) {| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 14399 times by 2 tests |
| 4-14399 |
| 124 | r = SSH_ERR_UNEXPECTED_TRAILING_DATA; | - |
| 125 | goto out;executed 4 times by 1 test: goto out; | 4 |
| 126 | } | - |
| 127 | if (len > crypto_sign_ed25519_BYTES) {| TRUE | never evaluated | | FALSE | evaluated 14399 times by 2 tests |
| 0-14399 |
| 128 | r = SSH_ERR_INVALID_FORMAT; | - |
| 129 | goto out; never executed: goto out; | 0 |
| 130 | } | - |
| 131 | if (datalen >= SIZE_MAX - len) {| TRUE | never evaluated | | FALSE | evaluated 14399 times by 2 tests |
| 0-14399 |
| 132 | r = SSH_ERR_INVALID_ARGUMENT; | - |
| 133 | goto out; never executed: goto out; | 0 |
| 134 | } | - |
| 135 | smlen = len + datalen; | - |
| 136 | mlen = smlen; | - |
| 137 | if ((sm = malloc(smlen)) == NULL || (m = malloc(mlen)) == NULL) {| TRUE | never evaluated | | FALSE | evaluated 14399 times by 2 tests |
| TRUE | never evaluated | | FALSE | evaluated 14399 times by 2 tests |
| 0-14399 |
| 138 | r = SSH_ERR_ALLOC_FAIL; | - |
| 139 | goto out; never executed: goto out; | 0 |
| 140 | } | - |
| 141 | memcpy(sm, sigblob, len); | - |
| 142 | memcpy(sm+len, data, datalen); | - |
| 143 | if ((ret = crypto_sign_ed25519_open(m, &mlen, sm, smlen,| TRUE | evaluated 14324 times by 1 test | | FALSE | evaluated 75 times by 2 tests |
| 75-14324 |
| 144 | key->ed25519_pk)) != 0) {| TRUE | evaluated 14324 times by 1 test | | FALSE | evaluated 75 times by 2 tests |
| 75-14324 |
| 145 | debug2("%s: crypto_sign_ed25519_open failed: %d", | - |
| 146 | __func__, ret); | - |
| 147 | }executed 14324 times by 1 test: end of block | 14324 |
| 148 | if (ret != 0 || mlen != datalen) {| TRUE | evaluated 14324 times by 1 test | | FALSE | evaluated 75 times by 2 tests |
| TRUE | never evaluated | | FALSE | evaluated 75 times by 2 tests |
| 0-14324 |
| 149 | r = SSH_ERR_SIGNATURE_INVALID; | - |
| 150 | goto out;executed 14324 times by 1 test: goto out; | 14324 |
| 151 | } | - |
| 152 | | - |
| 153 | | - |
| 154 | r = 0; | - |
| 155 | out:code before this statement executed 75 times by 2 tests: out: | 75 |
| 156 | if (sm != NULL) {| TRUE | evaluated 14399 times by 2 tests | | FALSE | evaluated 3634 times by 1 test |
| 3634-14399 |
| 157 | explicit_bzero(sm, smlen); | - |
| 158 | free(sm); | - |
| 159 | }executed 14399 times by 2 tests: end of block | 14399 |
| 160 | if (m != NULL) {| TRUE | evaluated 14399 times by 2 tests | | FALSE | evaluated 3634 times by 1 test |
| 3634-14399 |
| 161 | explicit_bzero(m, smlen); | - |
| 162 | free(m); | - |
| 163 | }executed 14399 times by 2 tests: end of block | 14399 |
| 164 | sshbuf_free(b); | - |
| 165 | free(ktype); | - |
| 166 | return r;executed 18033 times by 2 tests: return r; | 18033 |
| 167 | } | - |
| | |