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) { |
| 129 | ERR("Certificate revoked!"); |
| 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) { |
| 223 | ERR("Certificate revoked!"); |
| 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 | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 513 | ERR("Unable to create OpenSSL context (%s).", ERR_reason_error_string(ERR_get_error())); |
| 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) { |
| 520 | ERR("Loading the client certificate from \'%s\' failed (%s).", opts->cert_path, ERR_reason_error_string(ERR_get_error())); |
| 521 | return -1; |
| 522 | } |
| 523 | |
| 524 | /* if the file with private key not specified, expect that the private key is stored with the certificate */ |
| 525 | if (!opts->key_path) { |
| 526 | key = opts->cert_path; |
| 527 | } else { |
| 528 | key = opts->key_path; |
| 529 | } |
| 530 | if (SSL_CTX_use_PrivateKey_file(opts->tls_ctx, key, SSL_FILETYPE_PEM) != 1) { |
| 531 | ERR("Loading the client priavte key from \'%s\' failed (%s).", key, ERR_reason_error_string(ERR_get_error())); |
| 532 | return -1; |
| 533 | } |
| 534 | |
| 535 | if (!SSL_CTX_load_verify_locations(opts->tls_ctx, opts->ca_file, opts->ca_dir)) { |
| 536 | ERR("Failed to load the locations of trusted CA certificates (%s).", ERR_reason_error_string(ERR_get_error())); |
| 537 | return -1; |
| 538 | } |
| 539 | } |
| 540 | |
| 541 | if (opts->crl_store_change || (!opts->crl_store && (opts->crl_file || opts->crl_dir))) { |
| 542 | /* set the revocation store with the correct paths for the callback */ |
| 543 | X509_STORE_free(opts->crl_store); |
| 544 | |
| 545 | opts->crl_store = X509_STORE_new(); |
| 546 | if (!opts->crl_store) { |
| 547 | ERR("Unable to create a certificate store (%s).", ERR_reason_error_string(ERR_get_error())); |
| 548 | return -1; |
| 549 | } |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 550 | |
| 551 | #if OPENSSL_VERSION_NUMBER < 0x10100000L // < 1.1.0 |
| 552 | /* whaveter this does... */ |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 553 | opts->crl_store->cache = 0; |
Michal Vasko | 18aeb5d | 2017-02-17 09:23:56 +0100 | [diff] [blame] | 554 | #endif |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 555 | |
| 556 | if (opts->crl_file) { |
| 557 | if (!(lookup = X509_STORE_add_lookup(opts->crl_store, X509_LOOKUP_file()))) { |
| 558 | ERR("Failed to add lookup method to CRL checking."); |
| 559 | return -1; |
| 560 | } |
| 561 | if (X509_LOOKUP_add_dir(lookup, opts->crl_file, X509_FILETYPE_PEM) != 1) { |
| 562 | ERR("Failed to add the revocation lookup file \"%s\".", opts->crl_file); |
| 563 | return -1; |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | if (opts->crl_dir) { |
| 568 | if (!(lookup = X509_STORE_add_lookup(opts->crl_store, X509_LOOKUP_hash_dir()))) { |
| 569 | ERR("Failed to add lookup method to CRL checking."); |
| 570 | return -1; |
| 571 | } |
| 572 | if (X509_LOOKUP_add_dir(lookup, opts->crl_dir, X509_FILETYPE_PEM) != 1) { |
| 573 | ERR("Failed to add the revocation lookup directory \"%s\".", opts->crl_dir); |
| 574 | return -1; |
| 575 | } |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | return 0; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | API struct nc_session * |
Michal Vasko | 9bee18d | 2015-12-08 14:41:42 +0100 | [diff] [blame] | 583 | 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] | 584 | { |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 585 | struct nc_session *session = NULL; |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 586 | int sock, verify, ret; |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 587 | struct timespec ts_timeout, ts_cur; |
Michal Vasko | 66032bc | 2019-01-22 15:03:12 +0100 | [diff] [blame] | 588 | char *ip_host = NULL; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 589 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 590 | 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] | 591 | ERRINIT; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 592 | return NULL; |
| 593 | } |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 594 | |
| 595 | /* process parameters */ |
| 596 | if (!host || strisempty(host)) { |
| 597 | host = "localhost"; |
| 598 | } |
| 599 | |
| 600 | if (!port) { |
| 601 | port = NC_PORT_TLS; |
| 602 | } |
| 603 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 604 | /* create/update TLS structures */ |
Michal Vasko | af58cd9 | 2016-01-28 11:56:02 +0100 | [diff] [blame] | 605 | if (nc_client_tls_update_opts(&tls_opts)) { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 606 | return NULL; |
| 607 | } |
| 608 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 609 | /* prepare session structure */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 610 | session = nc_new_session(NC_CLIENT, 0); |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 611 | if (!session) { |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 612 | ERRMEM; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 613 | return NULL; |
| 614 | } |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 615 | session->status = NC_STATUS_STARTING; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 616 | |
| 617 | /* fill the session */ |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 618 | session->ti_type = NC_TI_OPENSSL; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 619 | if (!(session->ti.tls = SSL_new(tls_opts.tls_ctx))) { |
Michal Vasko | d083db6 | 2016-01-19 10:31:29 +0100 | [diff] [blame] | 620 | ERR("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] | 621 | goto fail; |
| 622 | } |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 623 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 624 | /* create and assign socket */ |
Michal Vasko | e49a15f | 2019-05-27 14:18:36 +0200 | [diff] [blame] | 625 | 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] | 626 | if (sock == -1) { |
Michal Vasko | 29af44b | 2016-10-13 10:59:55 +0200 | [diff] [blame] | 627 | ERR("Unable to connect to %s:%u (%s).", host, port, strerror(errno)); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 628 | goto fail; |
| 629 | } |
| 630 | SSL_set_fd(session->ti.tls, sock); |
| 631 | |
| 632 | /* set the SSL_MODE_AUTO_RETRY flag to allow OpenSSL perform re-handshake automatically */ |
| 633 | SSL_set_mode(session->ti.tls, SSL_MODE_AUTO_RETRY); |
| 634 | |
| 635 | /* connect and perform the handshake */ |
Michal Vasko | e852c8b | 2017-10-05 10:02:20 +0200 | [diff] [blame] | 636 | nc_gettimespec_mono(&ts_timeout); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 637 | nc_addtimespec(&ts_timeout, NC_TRANSPORT_TIMEOUT); |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 638 | tlsauth_ch = 0; |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 639 | while (((ret = SSL_connect(session->ti.tls)) == -1) && (SSL_get_error(session->ti.tls, ret) == SSL_ERROR_WANT_READ)) { |
| 640 | usleep(NC_TIMEOUT_STEP); |
Michal Vasko | e852c8b | 2017-10-05 10:02:20 +0200 | [diff] [blame] | 641 | nc_gettimespec_mono(&ts_cur); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 642 | if (nc_difftimespec(&ts_cur, &ts_timeout) < 1) { |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 643 | ERR("SSL_connect timeout."); |
| 644 | goto fail; |
| 645 | } |
| 646 | } |
| 647 | if (ret != 1) { |
| 648 | switch (SSL_get_error(session->ti.tls, ret)) { |
| 649 | case SSL_ERROR_SYSCALL: |
| 650 | ERR("SSL_connect failed (%s).", strerror(errno)); |
| 651 | break; |
| 652 | case SSL_ERROR_SSL: |
| 653 | ERR("SSL_connect failed (%s).", ERR_reason_error_string(ERR_get_error())); |
| 654 | break; |
| 655 | default: |
| 656 | ERR("SSL_connect failed."); |
| 657 | break; |
| 658 | } |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 659 | goto fail; |
| 660 | } |
| 661 | |
| 662 | /* check certificate verification result */ |
| 663 | verify = SSL_get_verify_result(session->ti.tls); |
| 664 | switch (verify) { |
| 665 | case X509_V_OK: |
| 666 | VRB("Server certificate successfully verified."); |
| 667 | break; |
| 668 | default: |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 669 | WRN("Server certificate verification problem (%s).", X509_verify_cert_error_string(verify)); |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 670 | } |
| 671 | |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 672 | if (nc_session_new_ctx(session, ctx) != EXIT_SUCCESS) { |
| 673 | goto fail; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 674 | } |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 675 | ctx = session->ctx; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 676 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 677 | /* NETCONF handshake */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 678 | if (nc_handshake_io(session) != NC_MSG_HELLO) { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 679 | goto fail; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 680 | } |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 681 | session->status = NC_STATUS_RUNNING; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 682 | |
Michal Vasko | ef57833 | 2016-01-25 13:20:09 +0100 | [diff] [blame] | 683 | if (nc_ctx_check_and_fill(session) == -1) { |
Michal Vasko | 57eb940 | 2015-12-08 14:38:12 +0100 | [diff] [blame] | 684 | goto fail; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | /* store information into session and the dictionary */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 688 | lydict_insert_zc(ctx, ip_host, &session->host); |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 689 | session->port = port; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 690 | lydict_insert(ctx, "certificate-based", 0, &session->username); |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 691 | |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 692 | return session; |
| 693 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 694 | fail: |
Michal Vasko | 66032bc | 2019-01-22 15:03:12 +0100 | [diff] [blame] | 695 | free(ip_host); |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 696 | nc_session_free(session, NULL); |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 697 | return NULL; |
| 698 | } |
| 699 | |
| 700 | API struct nc_session * |
| 701 | nc_connect_libssl(SSL *tls, struct ly_ctx *ctx) |
| 702 | { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 703 | struct nc_session *session; |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 704 | |
Michal Vasko | 45e53ae | 2016-04-07 11:46:03 +0200 | [diff] [blame] | 705 | if (!tls) { |
| 706 | ERRARG("tls"); |
| 707 | return NULL; |
| 708 | } else if (!SSL_is_init_finished(tls)) { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 709 | ERR("Supplied TLS session is not fully connected!"); |
| 710 | return NULL; |
| 711 | } |
| 712 | |
| 713 | /* prepare session structure */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 714 | session = nc_new_session(NC_CLIENT, 0); |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 715 | if (!session) { |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 716 | ERRMEM; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 717 | return NULL; |
| 718 | } |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 719 | session->status = NC_STATUS_STARTING; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 720 | session->ti_type = NC_TI_OPENSSL; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 721 | session->ti.tls = tls; |
| 722 | |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 723 | if (nc_session_new_ctx(session, ctx) != EXIT_SUCCESS) { |
| 724 | goto fail; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 725 | } |
Radek Krejci | fd5b668 | 2017-06-13 15:52:53 +0200 | [diff] [blame] | 726 | ctx = session->ctx; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 727 | |
| 728 | /* NETCONF handshake */ |
Michal Vasko | 131120a | 2018-05-29 15:44:02 +0200 | [diff] [blame] | 729 | if (nc_handshake_io(session) != NC_MSG_HELLO) { |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 730 | goto fail; |
| 731 | } |
Michal Vasko | ad61170 | 2015-12-03 13:41:51 +0100 | [diff] [blame] | 732 | session->status = NC_STATUS_RUNNING; |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 733 | |
Michal Vasko | ef57833 | 2016-01-25 13:20:09 +0100 | [diff] [blame] | 734 | if (nc_ctx_check_and_fill(session) == -1) { |
Michal Vasko | 57eb940 | 2015-12-08 14:38:12 +0100 | [diff] [blame] | 735 | goto fail; |
Michal Vasko | 9e2d3a3 | 2015-11-10 13:09:18 +0100 | [diff] [blame] | 736 | } |
| 737 | |
Michal Vasko | 11d4cdb | 2015-10-29 11:42:52 +0100 | [diff] [blame] | 738 | return session; |
| 739 | |
| 740 | fail: |
Michal Vasko | e1a64ec | 2016-03-01 12:21:58 +0100 | [diff] [blame] | 741 | nc_session_free(session, NULL); |
Radek Krejci | 9f03b48 | 2015-10-22 16:02:10 +0200 | [diff] [blame] | 742 | return NULL; |
| 743 | } |
| 744 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 745 | struct nc_session * |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 746 | 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] | 747 | { |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 748 | int verify, ret; |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 749 | SSL *tls; |
| 750 | struct nc_session *session; |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 751 | struct timespec ts_timeout, ts_cur; |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 752 | |
Michal Vasko | af58cd9 | 2016-01-28 11:56:02 +0100 | [diff] [blame] | 753 | if (nc_client_tls_update_opts(&tls_ch_opts)) { |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 754 | close(sock); |
Michal Vasko | c61c449 | 2016-01-25 11:13:34 +0100 | [diff] [blame] | 755 | return NULL; |
| 756 | } |
| 757 | |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 758 | if (!(tls = SSL_new(tls_ch_opts.tls_ctx))) { |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 759 | ERR("Failed to create new TLS session structure (%s).", ERR_reason_error_string(ERR_get_error())); |
| 760 | close(sock); |
| 761 | return NULL; |
| 762 | } |
| 763 | |
| 764 | SSL_set_fd(tls, sock); |
| 765 | |
| 766 | /* set the SSL_MODE_AUTO_RETRY flag to allow OpenSSL perform re-handshake automatically */ |
| 767 | SSL_set_mode(tls, SSL_MODE_AUTO_RETRY); |
| 768 | |
| 769 | /* connect and perform the handshake */ |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 770 | if (timeout > -1) { |
Michal Vasko | e852c8b | 2017-10-05 10:02:20 +0200 | [diff] [blame] | 771 | nc_gettimespec_mono(&ts_timeout); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 772 | nc_addtimespec(&ts_timeout, timeout); |
| 773 | } |
Michal Vasko | 3031aae | 2016-01-27 16:07:18 +0100 | [diff] [blame] | 774 | tlsauth_ch = 1; |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 775 | while (((ret = SSL_connect(tls)) == -1) && (SSL_get_error(tls, ret) == SSL_ERROR_WANT_READ)) { |
| 776 | usleep(NC_TIMEOUT_STEP); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 777 | if (timeout > -1) { |
Michal Vasko | e852c8b | 2017-10-05 10:02:20 +0200 | [diff] [blame] | 778 | nc_gettimespec_mono(&ts_cur); |
Michal Vasko | 36c7be8 | 2017-02-22 13:37:59 +0100 | [diff] [blame] | 779 | if (nc_difftimespec(&ts_cur, &ts_timeout) < 1) { |
| 780 | ERR("SSL_connect timeout."); |
| 781 | SSL_free(tls); |
| 782 | return NULL; |
| 783 | } |
Michal Vasko | 0190bc3 | 2016-03-02 15:47:49 +0100 | [diff] [blame] | 784 | } |
| 785 | } |
| 786 | if (ret != 1) { |
| 787 | switch (SSL_get_error(tls, ret)) { |
| 788 | case SSL_ERROR_SYSCALL: |
| 789 | ERR("SSL_connect failed (%s).", strerror(errno)); |
| 790 | break; |
| 791 | case SSL_ERROR_SSL: |
| 792 | ERR("SSL_connect failed (%s).", ERR_reason_error_string(ERR_get_error())); |
| 793 | break; |
| 794 | default: |
| 795 | ERR("SSL_connect failed."); |
| 796 | break; |
| 797 | } |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 798 | SSL_free(tls); |
| 799 | return NULL; |
| 800 | } |
| 801 | |
| 802 | /* check certificate verification result */ |
| 803 | verify = SSL_get_verify_result(tls); |
| 804 | switch (verify) { |
| 805 | case X509_V_OK: |
| 806 | VRB("Server certificate successfully verified."); |
| 807 | break; |
| 808 | default: |
Michal Vasko | b48aa81 | 2016-01-18 14:13:09 +0100 | [diff] [blame] | 809 | WRN("Server certificate verification problem (%s).", X509_verify_cert_error_string(verify)); |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | session = nc_connect_libssl(tls, ctx); |
| 813 | if (session) { |
Michal Vasko | 4282fae | 2016-02-18 10:03:42 +0100 | [diff] [blame] | 814 | session->flags |= NC_SESSION_CALLHOME; |
| 815 | |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 816 | /* store information into session and the dictionary */ |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 817 | lydict_insert(session->ctx, host, 0, &session->host); |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 818 | session->port = port; |
Michal Vasko | 7736745 | 2021-02-16 16:32:18 +0100 | [diff] [blame] | 819 | lydict_insert(session->ctx, "certificate-based", 0, &session->username); |
Michal Vasko | 80cad7f | 2015-12-08 14:42:27 +0100 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | return session; |
| 823 | } |