Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 1 | /** |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 2 | * \file session_client_tls.c |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 3 | * \author Radek Krejci <rkrejci@cesnet.cz> |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 4 | * \author Michal Vasko <mvasko@cesnet.cz> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 5 | * \brief libnetconf2 - TLS specific session client transport functions |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 6 | * |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 7 | * This source is compiled only with libssl. |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 8 | * |
| 9 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 10 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 11 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 12 | * You may not use this file except in compliance with the License. |
| 13 | * You may obtain a copy of the License at |
Michal Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 14 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 15 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | #include <assert.h> |
| 19 | #include <errno.h> |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 20 | #include <string.h> |
| 21 | #include <unistd.h> |
| 22 | |
| 23 | #include <libyang/libyang.h> |
Michal Vasko | 086311b | 2016-01-08 09:53:11 +0100 | [diff] [blame] | 24 | #include <openssl/err.h> |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 25 | #include <openssl/ossl_typ.h> |
Michal Vasko | dae4832 | 2016-02-25 14:49:48 +0100 | [diff] [blame] | 26 | #include <openssl/x509.h> |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 27 | |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 28 | #include "libnetconf.h" |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 29 | #include "session_client.h" |
| 30 | #include "session_client_ch.h" |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 31 | |
Rosen Penev | 4f552d6 | 2019-06-26 16:10:43 -0700 | [diff] [blame] | 32 | #if OPENSSL_VERSION_NUMBER < 0x10100000L |
| 33 | #define X509_STORE_CTX_get_by_subject X509_STORE_get_by_subject |
| 34 | #endif |
| 35 | |
Radek Krejci | 62aa064 | 2017-05-25 16:33:49 +0200 | [diff] [blame] | 36 | struct nc_client_context *nc_client_context_location(void); |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 37 | int nc_session_new_ctx(struct nc_session *session, struct ly_ctx *ctx); |
Radek Krejci | 62aa064 | 2017-05-25 16:33:49 +0200 | [diff] [blame] | 38 | |
| 39 | #define client_opts nc_client_context_location()->opts |
| 40 | #define tls_opts nc_client_context_location()->tls_opts |
| 41 | #define tls_ch_opts nc_client_context_location()->tls_ch_opts |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 42 | |
| 43 | static int tlsauth_ch; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 44 | |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 45 | #if OPENSSL_VERSION_NUMBER >= 0x10100000L // >= 1.1.0 |
| 46 | |
| 47 | static int |
| 48 | tlsauth_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) |
| 49 | { |
| 50 | X509_STORE_CTX *store_ctx; |
| 51 | X509_OBJECT *obj; |
| 52 | X509_NAME *subject, *issuer; |
| 53 | X509 *cert; |
| 54 | X509_CRL *crl; |
| 55 | X509_REVOKED *revoked; |
| 56 | EVP_PKEY *pubkey; |
| 57 | int i, n, rc; |
| 58 | const ASN1_TIME *next_update = NULL; |
| 59 | struct nc_client_tls_opts *opts; |
| 60 | |
| 61 | if (!preverify_ok) { |
| 62 | return 0; |
| 63 | } |
| 64 | |
| 65 | opts = (tlsauth_ch ? &tls_ch_opts : &tls_opts); |
| 66 | |
| 67 | if (!opts->crl_store) { |
| 68 | /* nothing to check */ |
| 69 | return 1; |
| 70 | } |
| 71 | |
| 72 | cert = X509_STORE_CTX_get_current_cert(x509_ctx); |
| 73 | subject = X509_get_subject_name(cert); |
| 74 | issuer = X509_get_issuer_name(cert); |
| 75 | |
| 76 | /* try to retrieve a CRL corresponding to the _subject_ of |
| 77 | * the current certificate in order to verify it's integrity */ |
| 78 | store_ctx = X509_STORE_CTX_new(); |
| 79 | obj = X509_OBJECT_new(); |
| 80 | X509_STORE_CTX_init(store_ctx, opts->crl_store, NULL, NULL); |
Rosen Penev | 4f552d6 | 2019-06-26 16:10:43 -0700 | [diff] [blame] | 81 | rc = X509_STORE_CTX_get_by_subject(store_ctx, X509_LU_CRL, subject, obj); |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 82 | X509_STORE_CTX_free(store_ctx); |
| 83 | crl = X509_OBJECT_get0_X509_CRL(obj); |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 84 | if ((rc > 0) && crl) { |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 85 | next_update = X509_CRL_get0_nextUpdate(crl); |
| 86 | |
| 87 | /* verify the signature on this CRL */ |
| 88 | pubkey = X509_get_pubkey(cert); |
| 89 | if (X509_CRL_verify(crl, pubkey) <= 0) { |
| 90 | X509_STORE_CTX_set_error(x509_ctx, X509_V_ERR_CRL_SIGNATURE_FAILURE); |
| 91 | X509_OBJECT_free(obj); |
| 92 | if (pubkey) { |
| 93 | EVP_PKEY_free(pubkey); |
| 94 | } |
| 95 | return 0; /* fail */ |
| 96 | } |
| 97 | if (pubkey) { |
| 98 | EVP_PKEY_free(pubkey); |
| 99 | } |
| 100 | |
| 101 | /* check date of CRL to make sure it's not expired */ |
| 102 | if (!next_update) { |
| 103 | X509_STORE_CTX_set_error(x509_ctx, X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD); |
| 104 | X509_OBJECT_free(obj); |
| 105 | return 0; /* fail */ |
| 106 | } |
| 107 | if (X509_cmp_current_time(next_update) < 0) { |
| 108 | X509_STORE_CTX_set_error(x509_ctx, X509_V_ERR_CRL_HAS_EXPIRED); |
| 109 | X509_OBJECT_free(obj); |
| 110 | return 0; /* fail */ |
| 111 | } |
| 112 | X509_OBJECT_free(obj); |
| 113 | } |
| 114 | |
| 115 | /* try to retrieve a CRL corresponding to the _issuer_ of |
| 116 | * the current certificate in order to check for revocation */ |
| 117 | store_ctx = X509_STORE_CTX_new(); |
| 118 | obj = X509_OBJECT_new(); |
| 119 | X509_STORE_CTX_init(store_ctx, opts->crl_store, NULL, NULL); |
Rosen Penev | 4f552d6 | 2019-06-26 16:10:43 -0700 | [diff] [blame] | 120 | rc = X509_STORE_CTX_get_by_subject(store_ctx, X509_LU_CRL, issuer, obj); |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 121 | X509_STORE_CTX_free(store_ctx); |
| 122 | crl = X509_OBJECT_get0_X509_CRL(obj); |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 123 | if ((rc > 0) && crl) { |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 124 | /* check if the current certificate is revoked by this CRL */ |
| 125 | n = sk_X509_REVOKED_num(X509_CRL_get_REVOKED(crl)); |
| 126 | for (i = 0; i < n; i++) { |
| 127 | revoked = sk_X509_REVOKED_value(X509_CRL_get_REVOKED(crl), i); |
| 128 | if (ASN1_INTEGER_cmp(X509_REVOKED_get0_serialNumber(revoked), X509_get_serialNumber(cert)) == 0) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 129 | ERR(NULL, "Certificate revoked!"); |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 130 | X509_STORE_CTX_set_error(x509_ctx, X509_V_ERR_CERT_REVOKED); |
| 131 | X509_OBJECT_free(obj); |
| 132 | return 0; /* fail */ |
| 133 | } |
| 134 | } |
| 135 | X509_OBJECT_free(obj); |
| 136 | } |
| 137 | |
| 138 | return 1; /* success */ |
| 139 | } |
| 140 | |
| 141 | #else |
| 142 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 143 | static int |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 144 | tlsauth_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 145 | { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 146 | X509_STORE_CTX store_ctx; |
| 147 | X509_OBJECT obj; |
| 148 | X509_NAME *subject, *issuer; |
| 149 | X509 *cert; |
| 150 | X509_CRL *crl; |
| 151 | X509_REVOKED *revoked; |
| 152 | EVP_PKEY *pubkey; |
| 153 | int i, n, rc; |
| 154 | ASN1_TIME *next_update = NULL; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 155 | struct nc_client_tls_opts *opts; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 156 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 157 | if (!preverify_ok) { |
| 158 | return 0; |
| 159 | } |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 160 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 161 | opts = (tlsauth_ch ? &tls_ch_opts : &tls_opts); |
| 162 | |
| 163 | if (!opts->crl_store) { |
| 164 | /* nothing to check */ |
| 165 | return 1; |
| 166 | } |
| 167 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 168 | cert = X509_STORE_CTX_get_current_cert(x509_ctx); |
| 169 | subject = X509_get_subject_name(cert); |
| 170 | issuer = X509_get_issuer_name(cert); |
| 171 | |
| 172 | /* try to retrieve a CRL corresponding to the _subject_ of |
| 173 | * the current certificate in order to verify it's integrity */ |
| 174 | memset((char *)&obj, 0, sizeof obj); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 175 | X509_STORE_CTX_init(&store_ctx, opts->crl_store, NULL, NULL); |
Rosen Penev | 4f552d6 | 2019-06-26 16:10:43 -0700 | [diff] [blame] | 176 | rc = X509_STORE_CTX_get_by_subject(&store_ctx, X509_LU_CRL, subject, &obj); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 177 | X509_STORE_CTX_cleanup(&store_ctx); |
| 178 | crl = obj.data.crl; |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 179 | if ((rc > 0) && crl) { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 180 | next_update = X509_CRL_get_nextUpdate(crl); |
| 181 | |
| 182 | /* verify the signature on this CRL */ |
| 183 | pubkey = X509_get_pubkey(cert); |
| 184 | if (X509_CRL_verify(crl, pubkey) <= 0) { |
| 185 | X509_STORE_CTX_set_error(x509_ctx, X509_V_ERR_CRL_SIGNATURE_FAILURE); |
| 186 | X509_OBJECT_free_contents(&obj); |
| 187 | if (pubkey) { |
| 188 | EVP_PKEY_free(pubkey); |
| 189 | } |
| 190 | return 0; /* fail */ |
| 191 | } |
| 192 | if (pubkey) { |
| 193 | EVP_PKEY_free(pubkey); |
| 194 | } |
| 195 | |
| 196 | /* check date of CRL to make sure it's not expired */ |
| 197 | if (!next_update) { |
| 198 | X509_STORE_CTX_set_error(x509_ctx, X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD); |
| 199 | X509_OBJECT_free_contents(&obj); |
| 200 | return 0; /* fail */ |
| 201 | } |
| 202 | if (X509_cmp_current_time(next_update) < 0) { |
| 203 | X509_STORE_CTX_set_error(x509_ctx, X509_V_ERR_CRL_HAS_EXPIRED); |
| 204 | X509_OBJECT_free_contents(&obj); |
| 205 | return 0; /* fail */ |
| 206 | } |
| 207 | X509_OBJECT_free_contents(&obj); |
| 208 | } |
| 209 | |
| 210 | /* try to retrieve a CRL corresponding to the _issuer_ of |
| 211 | * the current certificate in order to check for revocation */ |
| 212 | memset((char *)&obj, 0, sizeof obj); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 213 | X509_STORE_CTX_init(&store_ctx, opts->crl_store, NULL, NULL); |
Rosen Penev | 4f552d6 | 2019-06-26 16:10:43 -0700 | [diff] [blame] | 214 | rc = X509_STORE_CTX_get_by_subject(&store_ctx, X509_LU_CRL, issuer, &obj); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 215 | X509_STORE_CTX_cleanup(&store_ctx); |
| 216 | crl = obj.data.crl; |
Michal Vasko | b83a3fa | 2021-05-26 09:53:42 +0200 | [diff] [blame] | 217 | if ((rc > 0) && crl) { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 218 | /* check if the current certificate is revoked by this CRL */ |
| 219 | n = sk_X509_REVOKED_num(X509_CRL_get_REVOKED(crl)); |
| 220 | for (i = 0; i < n; i++) { |
| 221 | revoked = sk_X509_REVOKED_value(X509_CRL_get_REVOKED(crl), i); |
| 222 | if (ASN1_INTEGER_cmp(revoked->serialNumber, X509_get_serialNumber(cert)) == 0) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 223 | ERR(NULL, "Certificate revoked!"); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 224 | X509_STORE_CTX_set_error(x509_ctx, X509_V_ERR_CERT_REVOKED); |
| 225 | X509_OBJECT_free_contents(&obj); |
| 226 | return 0; /* fail */ |
| 227 | } |
| 228 | } |
| 229 | X509_OBJECT_free_contents(&obj); |
| 230 | } |
| 231 | |
| 232 | return 1; /* success */ |
| 233 | } |
| 234 | |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 235 | #endif |
| 236 | |
Kevin Barrett | d37d2fb | 2019-08-28 14:25:34 -0400 | [diff] [blame] | 237 | void |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 238 | _nc_client_tls_destroy_opts(struct nc_client_tls_opts *opts) |
| 239 | { |
| 240 | free(opts->cert_path); |
| 241 | free(opts->key_path); |
| 242 | free(opts->ca_file); |
| 243 | free(opts->ca_dir); |
| 244 | SSL_CTX_free(opts->tls_ctx); |
| 245 | |
| 246 | free(opts->crl_file); |
| 247 | free(opts->crl_dir); |
| 248 | X509_STORE_free(opts->crl_store); |
Radek Krejci | 5cebc6b | 2017-05-26 13:24:38 +0200 | [diff] [blame] | 249 | |
| 250 | memset(opts, 0, sizeof *opts); |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 251 | } |
| 252 | |
Michal Vasko | b7558c5 | 2016-02-26 15:04:19 +0100 | [diff] [blame] | 253 | void |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 254 | nc_client_tls_destroy_opts(void) |
| 255 | { |
| 256 | _nc_client_tls_destroy_opts(&tls_opts); |
| 257 | _nc_client_tls_destroy_opts(&tls_ch_opts); |
| 258 | } |
| 259 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 260 | static int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 261 | _nc_client_tls_set_cert_key_paths(const char *client_cert, const char *client_key, struct nc_client_tls_opts *opts) |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 262 | { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 263 | if (!client_cert) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 264 | ERRARG("client_cert"); |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 265 | return -1; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 266 | } |
| 267 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 268 | free(opts->cert_path); |
| 269 | free(opts->key_path); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 270 | |
Michal Vasko | 9db2a6f | 2016-02-01 13:26:03 +0100 | [diff] [blame] | 271 | opts->cert_path = strdup(client_cert); |
| 272 | if (!opts->cert_path) { |
| 273 | ERRMEM; |
| 274 | return -1; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 275 | } |
| 276 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 277 | if (client_key) { |
| 278 | opts->key_path = strdup(client_key); |
Michal Vasko | 9db2a6f | 2016-02-01 13:26:03 +0100 | [diff] [blame] | 279 | if (!opts->key_path) { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 280 | ERRMEM; |
| 281 | return -1; |
| 282 | } |
| 283 | } else { |
| 284 | opts->key_path = NULL; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 285 | } |
| 286 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 287 | opts->tls_ctx_change = 1; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 288 | |
Michal Vasko | 7f1c78b | 2016-01-19 09:52:14 +0100 | [diff] [blame] | 289 | return 0; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 290 | } |
| 291 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 292 | API int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 293 | nc_client_tls_set_cert_key_paths(const char *client_cert, const char *client_key) |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 294 | { |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 295 | return _nc_client_tls_set_cert_key_paths(client_cert, client_key, &tls_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | API int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 299 | nc_client_tls_ch_set_cert_key_paths(const char *client_cert, const char *client_key) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 300 | { |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 301 | return _nc_client_tls_set_cert_key_paths(client_cert, client_key, &tls_ch_opts); |
| 302 | } |
| 303 | |
| 304 | static void |
| 305 | _nc_client_tls_get_cert_key_paths(const char **client_cert, const char **client_key, struct nc_client_tls_opts *opts) |
| 306 | { |
| 307 | if (!client_cert && !client_key) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 308 | ERRARG("client_cert and client_key"); |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 309 | return; |
| 310 | } |
| 311 | |
| 312 | if (client_cert) { |
| 313 | *client_cert = opts->cert_path; |
| 314 | } |
| 315 | if (client_key) { |
| 316 | *client_key = opts->key_path; |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | API void |
| 321 | nc_client_tls_get_cert_key_paths(const char **client_cert, const char **client_key) |
| 322 | { |
| 323 | _nc_client_tls_get_cert_key_paths(client_cert, client_key, &tls_opts); |
| 324 | } |
| 325 | |
| 326 | API void |
| 327 | nc_client_tls_ch_get_cert_key_paths(const char **client_cert, const char **client_key) |
| 328 | { |
| 329 | _nc_client_tls_get_cert_key_paths(client_cert, client_key, &tls_ch_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | static int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 333 | _nc_client_tls_set_trusted_ca_paths(const char *ca_file, const char *ca_dir, struct nc_client_tls_opts *opts) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 334 | { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 335 | if (!ca_file && !ca_dir) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 336 | ERRARG("ca_file and ca_dir"); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 337 | return -1; |
| 338 | } |
| 339 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 340 | free(opts->ca_file); |
| 341 | free(opts->ca_dir); |
| 342 | |
| 343 | if (ca_file) { |
| 344 | opts->ca_file = strdup(ca_file); |
| 345 | if (!opts->ca_file) { |
| 346 | ERRMEM; |
| 347 | return -1; |
| 348 | } |
| 349 | } else { |
| 350 | opts->ca_file = NULL; |
| 351 | } |
| 352 | |
| 353 | if (ca_dir) { |
| 354 | opts->ca_dir = strdup(ca_dir); |
| 355 | if (!opts->ca_dir) { |
| 356 | ERRMEM; |
| 357 | return -1; |
| 358 | } |
| 359 | } else { |
| 360 | opts->ca_dir = NULL; |
| 361 | } |
| 362 | |
| 363 | opts->tls_ctx_change = 1; |
| 364 | |
| 365 | return 0; |
| 366 | } |
| 367 | |
| 368 | API int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 369 | nc_client_tls_set_trusted_ca_paths(const char *ca_file, const char *ca_dir) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 370 | { |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 371 | return _nc_client_tls_set_trusted_ca_paths(ca_file, ca_dir, &tls_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | API int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 375 | nc_client_tls_ch_set_trusted_ca_paths(const char *ca_file, const char *ca_dir) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 376 | { |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 377 | return _nc_client_tls_set_trusted_ca_paths(ca_file, ca_dir, &tls_ch_opts); |
| 378 | } |
| 379 | |
| 380 | static void |
| 381 | _nc_client_tls_get_trusted_ca_paths(const char **ca_file, const char **ca_dir, struct nc_client_tls_opts *opts) |
| 382 | { |
| 383 | if (!ca_file && !ca_dir) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 384 | ERRARG("ca_file and ca_dir"); |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 385 | return; |
| 386 | } |
| 387 | |
| 388 | if (ca_file) { |
| 389 | *ca_file = opts->ca_file; |
| 390 | } |
| 391 | if (ca_dir) { |
| 392 | *ca_dir = opts->ca_dir; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | API void |
| 397 | nc_client_tls_get_trusted_ca_paths(const char **ca_file, const char **ca_dir) |
| 398 | { |
| 399 | _nc_client_tls_get_trusted_ca_paths(ca_file, ca_dir, &tls_opts); |
| 400 | } |
| 401 | |
| 402 | API void |
| 403 | nc_client_tls_ch_get_trusted_ca_paths(const char **ca_file, const char **ca_dir) |
| 404 | { |
| 405 | _nc_client_tls_get_trusted_ca_paths(ca_file, ca_dir, &tls_ch_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | static int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 409 | _nc_client_tls_set_crl_paths(const char *crl_file, const char *crl_dir, struct nc_client_tls_opts *opts) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 410 | { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 411 | if (!crl_file && !crl_dir) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 412 | ERRARG("crl_file and crl_dir"); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 413 | return -1; |
| 414 | } |
| 415 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 416 | free(opts->crl_file); |
| 417 | free(opts->crl_dir); |
| 418 | |
| 419 | if (crl_file) { |
| 420 | opts->crl_file = strdup(crl_file); |
| 421 | if (!opts->crl_file) { |
| 422 | ERRMEM; |
| 423 | return -1; |
| 424 | } |
| 425 | } else { |
| 426 | opts->crl_file = NULL; |
| 427 | } |
| 428 | |
| 429 | if (crl_dir) { |
| 430 | opts->crl_dir = strdup(crl_dir); |
| 431 | if (!opts->crl_dir) { |
| 432 | ERRMEM; |
| 433 | return -1; |
| 434 | } |
| 435 | } else { |
| 436 | opts->crl_dir = NULL; |
| 437 | } |
| 438 | |
| 439 | opts->crl_store_change = 1; |
| 440 | |
| 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | API int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 445 | nc_client_tls_set_crl_paths(const char *crl_file, const char *crl_dir) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 446 | { |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 447 | return _nc_client_tls_set_crl_paths(crl_file, crl_dir, &tls_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | API int |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 451 | nc_client_tls_ch_set_crl_paths(const char *crl_file, const char *crl_dir) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 452 | { |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 453 | return _nc_client_tls_set_crl_paths(crl_file, crl_dir, &tls_ch_opts); |
| 454 | } |
| 455 | |
| 456 | static void |
| 457 | _nc_client_tls_get_crl_paths(const char **crl_file, const char **crl_dir, struct nc_client_tls_opts *opts) |
| 458 | { |
| 459 | if (!crl_file && !crl_dir) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 460 | ERRARG("crl_file and crl_dir"); |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 461 | return; |
| 462 | } |
| 463 | |
| 464 | if (crl_file) { |
| 465 | *crl_file = opts->crl_file; |
| 466 | } |
| 467 | if (crl_dir) { |
| 468 | *crl_dir = opts->crl_dir; |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | API void |
| 473 | nc_client_tls_get_crl_paths(const char **crl_file, const char **crl_dir) |
| 474 | { |
| 475 | _nc_client_tls_get_crl_paths(crl_file, crl_dir, &tls_opts); |
| 476 | } |
| 477 | |
| 478 | API void |
| 479 | nc_client_tls_ch_get_crl_paths(const char **crl_file, const char **crl_dir) |
| 480 | { |
| 481 | _nc_client_tls_get_crl_paths(crl_file, crl_dir, &tls_ch_opts); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | API int |
| 485 | nc_client_tls_ch_add_bind_listen(const char *address, uint16_t port) |
| 486 | { |
| 487 | return nc_client_ch_add_bind_listen(address, port, NC_TI_OPENSSL); |
| 488 | } |
| 489 | |
| 490 | API int |
| 491 | nc_client_tls_ch_del_bind(const char *address, uint16_t port) |
| 492 | { |
| 493 | return nc_client_ch_del_bind(address, port, NC_TI_OPENSSL); |
| 494 | } |
| 495 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 496 | static int |
Michal Vasko | af58cd9 | 2016-01-28 11:56:02 +0100 | [diff] [blame] | 497 | nc_client_tls_update_opts(struct nc_client_tls_opts *opts) |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 498 | { |
| 499 | char *key; |
| 500 | X509_LOOKUP *lookup; |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 501 | |
| 502 | if (!opts->tls_ctx || opts->tls_ctx_change) { |
Michal Vasko | e22c673 | 2016-01-29 11:03:02 +0100 | [diff] [blame] | 503 | SSL_CTX_free(opts->tls_ctx); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 504 | |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 505 | #if OPENSSL_VERSION_NUMBER >= 0x10100000L // >= 1.1.0 |
| 506 | /* prepare global SSL context, highest available method is negotiated autmatically */ |
| 507 | if (!(opts->tls_ctx = SSL_CTX_new(TLS_client_method()))) |
| 508 | #else |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 509 | /* prepare global SSL context, allow only mandatory TLS 1.2 */ |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 510 | if (!(opts->tls_ctx = SSL_CTX_new(TLSv1_2_client_method()))) |
| 511 | #endif |
| 512 | { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 513 | ERR(NULL, "Unable to create OpenSSL context (%s).", ERR_reason_error_string(ERR_get_error())); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 514 | return -1; |
| 515 | } |
| 516 | SSL_CTX_set_verify(opts->tls_ctx, SSL_VERIFY_PEER, tlsauth_verify_callback); |
| 517 | |
| 518 | /* get peer certificate */ |
| 519 | if (SSL_CTX_use_certificate_file(opts->tls_ctx, opts->cert_path, SSL_FILETYPE_PEM) != 1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 520 | ERR(NULL, "Loading the client certificate from \'%s\' failed (%s).", opts->cert_path, |
| 521 | ERR_reason_error_string(ERR_get_error())); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 522 | return -1; |
| 523 | } |
| 524 | |
| 525 | /* if the file with private key not specified, expect that the private key is stored with the certificate */ |
| 526 | if (!opts->key_path) { |
| 527 | key = opts->cert_path; |
| 528 | } else { |
| 529 | key = opts->key_path; |
| 530 | } |
| 531 | if (SSL_CTX_use_PrivateKey_file(opts->tls_ctx, key, SSL_FILETYPE_PEM) != 1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 532 | ERR(NULL, "Loading the client priavte key from \'%s\' failed (%s).", key, |
| 533 | ERR_reason_error_string(ERR_get_error())); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 534 | return -1; |
| 535 | } |
| 536 | |
| 537 | if (!SSL_CTX_load_verify_locations(opts->tls_ctx, opts->ca_file, opts->ca_dir)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 538 | ERR(NULL, "Failed to load the locations of trusted CA certificates (%s).", |
| 539 | ERR_reason_error_string(ERR_get_error())); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 540 | return -1; |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | if (opts->crl_store_change || (!opts->crl_store && (opts->crl_file || opts->crl_dir))) { |
| 545 | /* set the revocation store with the correct paths for the callback */ |
| 546 | X509_STORE_free(opts->crl_store); |
| 547 | |
| 548 | opts->crl_store = X509_STORE_new(); |
| 549 | if (!opts->crl_store) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 550 | ERR(NULL, "Unable to create a certificate store (%s).", ERR_reason_error_string(ERR_get_error())); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 551 | return -1; |
| 552 | } |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 553 | |
| 554 | #if OPENSSL_VERSION_NUMBER < 0x10100000L // < 1.1.0 |
| 555 | /* whaveter this does... */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 556 | opts->crl_store->cache = 0; |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 557 | #endif |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 558 | |
| 559 | if (opts->crl_file) { |
| 560 | if (!(lookup = X509_STORE_add_lookup(opts->crl_store, X509_LOOKUP_file()))) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 561 | ERR(NULL, "Failed to add lookup method to CRL checking."); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 562 | return -1; |
| 563 | } |
| 564 | if (X509_LOOKUP_add_dir(lookup, opts->crl_file, X509_FILETYPE_PEM) != 1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 565 | ERR(NULL, "Failed to add the revocation lookup file \"%s\".", opts->crl_file); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 566 | return -1; |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | if (opts->crl_dir) { |
| 571 | if (!(lookup = X509_STORE_add_lookup(opts->crl_store, X509_LOOKUP_hash_dir()))) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 572 | ERR(NULL, "Failed to add lookup method to CRL checking."); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 573 | return -1; |
| 574 | } |
| 575 | if (X509_LOOKUP_add_dir(lookup, opts->crl_dir, X509_FILETYPE_PEM) != 1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 576 | ERR(NULL, "Failed to add the revocation lookup directory \"%s\".", opts->crl_dir); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 577 | return -1; |
| 578 | } |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | return 0; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | API struct nc_session * |
Michal Vasko | 9bee18d | 2015-12-08 14:41:42 +0100 | [diff] [blame] | 586 | nc_connect_tls(const char *host, unsigned short port, struct ly_ctx *ctx) |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 587 | { |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 588 | struct nc_session *session = NULL; |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 589 | int sock, verify, ret; |
Michal Vasko | 157de8a | 2021-09-03 13:28:07 +0200 | [diff] [blame^] | 590 | unsigned long tls_err; |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 591 | struct timespec ts_timeout, ts_cur; |
Michal Vasko | 157de8a | 2021-09-03 13:28:07 +0200 | [diff] [blame^] | 592 | const char *peername; |
Michal Vasko | 66032bc | 2019-01-22 15:03:12 +0100 | [diff] [blame] | 593 | char *ip_host = NULL; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 594 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 595 | if (!tls_opts.cert_path || (!tls_opts.ca_file && !tls_opts.ca_dir)) { |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 596 | ERRINIT; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 597 | return NULL; |
| 598 | } |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 599 | |
| 600 | /* process parameters */ |
| 601 | if (!host || strisempty(host)) { |
| 602 | host = "localhost"; |
| 603 | } |
| 604 | |
| 605 | if (!port) { |
| 606 | port = NC_PORT_TLS; |
| 607 | } |
| 608 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 609 | /* create/update TLS structures */ |
Michal Vasko | af58cd9 | 2016-01-28 11:56:02 +0100 | [diff] [blame] | 610 | if (nc_client_tls_update_opts(&tls_opts)) { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 611 | return NULL; |
| 612 | } |
| 613 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 614 | /* prepare session structure */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 615 | session = nc_new_session(NC_CLIENT, 0); |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 616 | if (!session) { |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 617 | ERRMEM; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 618 | return NULL; |
| 619 | } |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 620 | session->status = NC_STATUS_STARTING; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 621 | |
| 622 | /* fill the session */ |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 623 | session->ti_type = NC_TI_OPENSSL; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 624 | if (!(session->ti.tls = SSL_new(tls_opts.tls_ctx))) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 625 | ERR(NULL, "Failed to create a new TLS session structure (%s).", ERR_reason_error_string(ERR_get_error())); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 626 | goto fail; |
| 627 | } |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 628 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 629 | /* create and assign socket */ |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 630 | sock = nc_sock_connect(host, port, -1, &client_opts.ka, NULL, &ip_host); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 631 | if (sock == -1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 632 | ERR(NULL, "Unable to connect to %s:%u (%s).", host, port, strerror(errno)); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 633 | goto fail; |
| 634 | } |
| 635 | SSL_set_fd(session->ti.tls, sock); |
| 636 | |
| 637 | /* set the SSL_MODE_AUTO_RETRY flag to allow OpenSSL perform re-handshake automatically */ |
| 638 | SSL_set_mode(session->ti.tls, SSL_MODE_AUTO_RETRY); |
| 639 | |
Michal Vasko | ad26f99 | 2021-09-03 13:03:57 +0200 | [diff] [blame] | 640 | /* server identity (hostname) verification */ |
| 641 | if (!SSL_set1_host(session->ti.tls, host)) { |
| 642 | ERR(NULL, "Failed to set expected server hostname."); |
| 643 | goto fail; |
| 644 | } |
| 645 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 646 | /* connect and perform the handshake */ |
Michal Vasko | e852c8b | 2017-10-05 10:02:20 +0200 | [diff] [blame] | 647 | nc_gettimespec_mono(&ts_timeout); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 648 | nc_addtimespec(&ts_timeout, NC_TRANSPORT_TIMEOUT); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 649 | tlsauth_ch = 0; |
Michal Vasko | d51a264 | 2021-09-03 13:03:24 +0200 | [diff] [blame] | 650 | while (((ret = SSL_connect(session->ti.tls)) != 1) && (SSL_get_error(session->ti.tls, ret) == SSL_ERROR_WANT_READ)) { |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 651 | usleep(NC_TIMEOUT_STEP); |
Michal Vasko | e852c8b | 2017-10-05 10:02:20 +0200 | [diff] [blame] | 652 | nc_gettimespec_mono(&ts_cur); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 653 | if (nc_difftimespec(&ts_cur, &ts_timeout) < 1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 654 | ERR(NULL, "SSL_connect timeout."); |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 655 | goto fail; |
| 656 | } |
| 657 | } |
| 658 | if (ret != 1) { |
| 659 | switch (SSL_get_error(session->ti.tls, ret)) { |
| 660 | case SSL_ERROR_SYSCALL: |
Michal Vasko | 0272dc3 | 2021-09-03 13:02:20 +0200 | [diff] [blame] | 661 | ERR(NULL, "SSL_connect failed (%s).", errno ? strerror(errno) : "unexpected EOF"); |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 662 | break; |
| 663 | case SSL_ERROR_SSL: |
Michal Vasko | 157de8a | 2021-09-03 13:28:07 +0200 | [diff] [blame^] | 664 | tls_err = ERR_get_error(); |
Michal Vasko | d51a264 | 2021-09-03 13:03:24 +0200 | [diff] [blame] | 665 | ERR(NULL, "SSL_connect failed (%s).", ERR_reason_error_string(tls_err)); |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 666 | break; |
| 667 | default: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 668 | ERR(NULL, "SSL_connect failed."); |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 669 | break; |
| 670 | } |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 671 | goto fail; |
| 672 | } |
| 673 | |
| 674 | /* check certificate verification result */ |
| 675 | verify = SSL_get_verify_result(session->ti.tls); |
| 676 | switch (verify) { |
| 677 | case X509_V_OK: |
Michal Vasko | 157de8a | 2021-09-03 13:28:07 +0200 | [diff] [blame^] | 678 | peername = SSL_get0_peername(session->ti.tls); |
Michal Vasko | ad26f99 | 2021-09-03 13:03:57 +0200 | [diff] [blame] | 679 | VRB(NULL, "Server certificate successfully verified (domain \"%s\").", peername ? peername : "<unknown>"); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 680 | break; |
| 681 | default: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 682 | WRN(NULL, "Server certificate verification problem (%s).", X509_verify_cert_error_string(verify)); |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 683 | } |
| 684 | |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 685 | if (nc_session_new_ctx(session, ctx) != EXIT_SUCCESS) { |
| 686 | goto fail; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 687 | } |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 688 | ctx = session->ctx; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 689 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 690 | /* NETCONF handshake */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 691 | if (nc_handshake_io(session) != NC_MSG_HELLO) { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 692 | goto fail; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 693 | } |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 694 | session->status = NC_STATUS_RUNNING; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 695 | |
Michal Vasko | ef57833 | 2016-01-25 13:20:09 +0100 | [diff] [blame] | 696 | if (nc_ctx_check_and_fill(session) == -1) { |
Michal Vasko | 57eb940 | 2015-12-08 14:38:12 +0100 | [diff] [blame] | 697 | goto fail; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | /* store information into session and the dictionary */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 701 | lydict_insert_zc(ctx, ip_host, &session->host); |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 702 | session->port = port; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 703 | lydict_insert(ctx, "certificate-based", 0, &session->username); |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 704 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 705 | return session; |
| 706 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 707 | fail: |
Michal Vasko | 66032bc | 2019-01-22 15:03:12 +0100 | [diff] [blame] | 708 | free(ip_host); |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 709 | nc_session_free(session, NULL); |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 710 | return NULL; |
| 711 | } |
| 712 | |
| 713 | API struct nc_session * |
| 714 | nc_connect_libssl(SSL *tls, struct ly_ctx *ctx) |
| 715 | { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 716 | struct nc_session *session; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 717 | |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 718 | if (!tls) { |
| 719 | ERRARG("tls"); |
| 720 | return NULL; |
| 721 | } else if (!SSL_is_init_finished(tls)) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 722 | ERR(NULL, "Supplied TLS session is not fully connected!"); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 723 | return NULL; |
| 724 | } |
| 725 | |
| 726 | /* prepare session structure */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 727 | session = nc_new_session(NC_CLIENT, 0); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 728 | if (!session) { |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 729 | ERRMEM; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 730 | return NULL; |
| 731 | } |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 732 | session->status = NC_STATUS_STARTING; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 733 | session->ti_type = NC_TI_OPENSSL; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 734 | session->ti.tls = tls; |
| 735 | |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 736 | if (nc_session_new_ctx(session, ctx) != EXIT_SUCCESS) { |
| 737 | goto fail; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 738 | } |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 739 | ctx = session->ctx; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 740 | |
| 741 | /* NETCONF handshake */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 742 | if (nc_handshake_io(session) != NC_MSG_HELLO) { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 743 | goto fail; |
| 744 | } |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 745 | session->status = NC_STATUS_RUNNING; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 746 | |
Michal Vasko | ef57833 | 2016-01-25 13:20:09 +0100 | [diff] [blame] | 747 | if (nc_ctx_check_and_fill(session) == -1) { |
Michal Vasko | 57eb940 | 2015-12-08 14:38:12 +0100 | [diff] [blame] | 748 | goto fail; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 749 | } |
| 750 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 751 | return session; |
| 752 | |
| 753 | fail: |
Michal Vasko | a42a7f0 | 2021-07-02 08:43:12 +0200 | [diff] [blame] | 754 | session->ti.tls = NULL; |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 755 | nc_session_free(session, NULL); |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 756 | return NULL; |
| 757 | } |
| 758 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 759 | struct nc_session * |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 760 | nc_accept_callhome_tls_sock(int sock, const char *host, uint16_t port, struct ly_ctx *ctx, int timeout) |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 761 | { |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 762 | int verify, ret; |
Michal Vasko | c64c38c | 2021-07-02 08:43:53 +0200 | [diff] [blame] | 763 | SSL *tls = NULL; |
| 764 | struct nc_session *session = NULL; |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 765 | struct timespec ts_timeout, ts_cur; |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 766 | |
Michal Vasko | af58cd9 | 2016-01-28 11:56:02 +0100 | [diff] [blame] | 767 | if (nc_client_tls_update_opts(&tls_ch_opts)) { |
Michal Vasko | c64c38c | 2021-07-02 08:43:53 +0200 | [diff] [blame] | 768 | goto cleanup; |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 769 | } |
| 770 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 771 | if (!(tls = SSL_new(tls_ch_opts.tls_ctx))) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 772 | ERR(NULL, "Failed to create new TLS session structure (%s).", ERR_reason_error_string(ERR_get_error())); |
Michal Vasko | c64c38c | 2021-07-02 08:43:53 +0200 | [diff] [blame] | 773 | goto cleanup; |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 774 | } |
| 775 | |
| 776 | SSL_set_fd(tls, sock); |
| 777 | |
| 778 | /* set the SSL_MODE_AUTO_RETRY flag to allow OpenSSL perform re-handshake automatically */ |
| 779 | SSL_set_mode(tls, SSL_MODE_AUTO_RETRY); |
| 780 | |
| 781 | /* connect and perform the handshake */ |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 782 | if (timeout > -1) { |
Michal Vasko | e852c8b | 2017-10-05 10:02:20 +0200 | [diff] [blame] | 783 | nc_gettimespec_mono(&ts_timeout); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 784 | nc_addtimespec(&ts_timeout, timeout); |
| 785 | } |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 786 | tlsauth_ch = 1; |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 787 | while (((ret = SSL_connect(tls)) == -1) && (SSL_get_error(tls, ret) == SSL_ERROR_WANT_READ)) { |
| 788 | usleep(NC_TIMEOUT_STEP); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 789 | if (timeout > -1) { |
Michal Vasko | e852c8b | 2017-10-05 10:02:20 +0200 | [diff] [blame] | 790 | nc_gettimespec_mono(&ts_cur); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 791 | if (nc_difftimespec(&ts_cur, &ts_timeout) < 1) { |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 792 | ERR(NULL, "SSL_connect timeout."); |
Michal Vasko | c64c38c | 2021-07-02 08:43:53 +0200 | [diff] [blame] | 793 | goto cleanup; |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 794 | } |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 795 | } |
| 796 | } |
| 797 | if (ret != 1) { |
| 798 | switch (SSL_get_error(tls, ret)) { |
| 799 | case SSL_ERROR_SYSCALL: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 800 | ERR(NULL, "SSL_connect failed (%s).", strerror(errno)); |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 801 | break; |
| 802 | case SSL_ERROR_SSL: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 803 | ERR(NULL, "SSL_connect failed (%s).", ERR_reason_error_string(ERR_get_error())); |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 804 | break; |
| 805 | default: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 806 | ERR(NULL, "SSL_connect failed."); |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 807 | break; |
| 808 | } |
Michal Vasko | c64c38c | 2021-07-02 08:43:53 +0200 | [diff] [blame] | 809 | goto cleanup; |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | /* check certificate verification result */ |
| 813 | verify = SSL_get_verify_result(tls); |
| 814 | switch (verify) { |
| 815 | case X509_V_OK: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 816 | VRB(NULL, "Server certificate successfully verified."); |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 817 | break; |
| 818 | default: |
Michal Vasko | 0553277 | 2021-06-03 12:12:38 +0200 | [diff] [blame] | 819 | WRN(NULL, "Server certificate verification problem (%s).", X509_verify_cert_error_string(verify)); |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 820 | } |
| 821 | |
Michal Vasko | c64c38c | 2021-07-02 08:43:53 +0200 | [diff] [blame] | 822 | /* connect */ |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 823 | session = nc_connect_libssl(tls, ctx); |
Michal Vasko | c64c38c | 2021-07-02 08:43:53 +0200 | [diff] [blame] | 824 | if (!session) { |
| 825 | goto cleanup; |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 826 | } |
| 827 | |
Michal Vasko | c64c38c | 2021-07-02 08:43:53 +0200 | [diff] [blame] | 828 | session->flags |= NC_SESSION_CALLHOME; |
| 829 | |
| 830 | /* store information into session and the dictionary */ |
| 831 | lydict_insert(session->ctx, host, 0, &session->host); |
| 832 | session->port = port; |
| 833 | lydict_insert(session->ctx, "certificate-based", 0, &session->username); |
| 834 | |
| 835 | cleanup: |
| 836 | if (!session) { |
| 837 | SSL_free(tls); |
| 838 | close(sock); |
| 839 | } |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 840 | return session; |
| 841 | } |