Rich Salz | 846e33c | 2016-05-17 14:18:30 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 3 | * |
Rich Salz | 846e33c | 2016-05-17 14:18:30 -0400 | [diff] [blame] | 4 | * Licensed under the OpenSSL license (the "License"). You may not use |
| 5 | * this file except in compliance with the License. You can obtain a copy |
| 6 | * in the file LICENSE in the source distribution or at |
| 7 | * https://www.openssl.org/source/license.html |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | /* Custom extension utility functions */ |
| 11 | |
Rich Salz | 3c27208 | 2016-03-18 14:30:20 -0400 | [diff] [blame] | 12 | #include <openssl/ct.h> |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 13 | #include "ssl_locl.h" |
| 14 | |
Dr. Stephen Henson | 0cfefe4 | 2014-08-19 14:02:50 +0100 | [diff] [blame] | 15 | /* Find a custom extension from the list. */ |
Rob Percival | ed29e82 | 2016-03-03 16:19:23 +0000 | [diff] [blame] | 16 | static custom_ext_method *custom_ext_find(const custom_ext_methods *exts, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 17 | unsigned int ext_type) |
| 18 | { |
| 19 | size_t i; |
| 20 | custom_ext_method *meth = exts->meths; |
| 21 | for (i = 0; i < exts->meths_count; i++, meth++) { |
| 22 | if (ext_type == meth->ext_type) |
| 23 | return meth; |
| 24 | } |
| 25 | return NULL; |
| 26 | } |
| 27 | |
| 28 | /* |
| 29 | * Initialise custom extensions flags to indicate neither sent nor received. |
Dr. Stephen Henson | 28ea0a0 | 2014-08-12 14:25:49 +0100 | [diff] [blame] | 30 | */ |
| 31 | void custom_ext_init(custom_ext_methods *exts) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 32 | { |
| 33 | size_t i; |
| 34 | custom_ext_method *meth = exts->meths; |
| 35 | for (i = 0; i < exts->meths_count; i++, meth++) |
| 36 | meth->ext_flags = 0; |
| 37 | } |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 38 | |
Dr. Stephen Henson | 0cfefe4 | 2014-08-19 14:02:50 +0100 | [diff] [blame] | 39 | /* Pass received custom extension data to the application for parsing. */ |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 40 | int custom_ext_parse(SSL *s, int server, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 41 | unsigned int ext_type, |
| 42 | const unsigned char *ext_data, size_t ext_size, int *al) |
| 43 | { |
| 44 | custom_ext_methods *exts = server ? &s->cert->srv_ext : &s->cert->cli_ext; |
| 45 | custom_ext_method *meth; |
| 46 | meth = custom_ext_find(exts, ext_type); |
| 47 | /* If not found return success */ |
| 48 | if (!meth) |
| 49 | return 1; |
| 50 | if (!server) { |
| 51 | /* |
| 52 | * If it's ServerHello we can't have any extensions not sent in |
| 53 | * ClientHello. |
| 54 | */ |
| 55 | if (!(meth->ext_flags & SSL_EXT_FLAG_SENT)) { |
| 56 | *al = TLS1_AD_UNSUPPORTED_EXTENSION; |
| 57 | return 0; |
| 58 | } |
| 59 | } |
| 60 | /* If already present it's a duplicate */ |
| 61 | if (meth->ext_flags & SSL_EXT_FLAG_RECEIVED) { |
| 62 | *al = TLS1_AD_DECODE_ERROR; |
| 63 | return 0; |
| 64 | } |
| 65 | meth->ext_flags |= SSL_EXT_FLAG_RECEIVED; |
| 66 | /* If no parse function set return success */ |
| 67 | if (!meth->parse_cb) |
| 68 | return 1; |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 69 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 70 | return meth->parse_cb(s, ext_type, ext_data, ext_size, al, meth->parse_arg); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 71 | } |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 72 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 73 | /* |
| 74 | * Request custom extension data from the application and add to the return |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 75 | * buffer. |
| 76 | */ |
Matt Caswell | ae2f7b3 | 2016-09-05 17:34:04 +0100 | [diff] [blame] | 77 | int custom_ext_add(SSL *s, int server, WPACKET *pkt, int *al) |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 78 | { |
| 79 | custom_ext_methods *exts = server ? &s->cert->srv_ext : &s->cert->cli_ext; |
| 80 | custom_ext_method *meth; |
| 81 | size_t i; |
| 82 | |
| 83 | for (i = 0; i < exts->meths_count; i++) { |
| 84 | const unsigned char *out = NULL; |
| 85 | size_t outlen = 0; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 86 | |
| 87 | meth = exts->meths + i; |
| 88 | |
| 89 | if (server) { |
| 90 | /* |
| 91 | * For ServerHello only send extensions present in ClientHello. |
| 92 | */ |
| 93 | if (!(meth->ext_flags & SSL_EXT_FLAG_RECEIVED)) |
| 94 | continue; |
| 95 | /* If callback absent for server skip it */ |
| 96 | if (!meth->add_cb) |
| 97 | continue; |
| 98 | } |
| 99 | if (meth->add_cb) { |
| 100 | int cb_retval = 0; |
| 101 | cb_retval = meth->add_cb(s, meth->ext_type, |
| 102 | &out, &outlen, al, meth->add_arg); |
| 103 | if (cb_retval < 0) |
| 104 | return 0; /* error */ |
| 105 | if (cb_retval == 0) |
| 106 | continue; /* skip this extension */ |
| 107 | } |
| 108 | |
Matt Caswell | 08029df | 2016-09-20 14:47:44 +0100 | [diff] [blame] | 109 | if (!WPACKET_put_bytes_u16(pkt, meth->ext_type) |
Matt Caswell | de45185 | 2016-09-09 00:13:41 +0100 | [diff] [blame] | 110 | || !WPACKET_start_sub_packet_u16(pkt) |
Matt Caswell | 0217dd1 | 2016-09-06 15:09:51 +0100 | [diff] [blame] | 111 | || (outlen > 0 && !WPACKET_memcpy(pkt, out, outlen)) |
| 112 | || !WPACKET_close(pkt)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 113 | *al = SSL_AD_INTERNAL_ERROR; |
| 114 | return 0; |
| 115 | } |
| 116 | /* |
| 117 | * We can't send duplicates: code logic should prevent this. |
| 118 | */ |
| 119 | OPENSSL_assert(!(meth->ext_flags & SSL_EXT_FLAG_SENT)); |
| 120 | /* |
| 121 | * Indicate extension has been sent: this is both a sanity check to |
| 122 | * ensure we don't send duplicate extensions and indicates that it is |
| 123 | * not an error if the extension is present in ServerHello. |
| 124 | */ |
| 125 | meth->ext_flags |= SSL_EXT_FLAG_SENT; |
| 126 | if (meth->free_cb) |
| 127 | meth->free_cb(s, meth->ext_type, out, meth->add_arg); |
| 128 | } |
| 129 | return 1; |
| 130 | } |
| 131 | |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 132 | /* Copy table of custom extensions */ |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 133 | int custom_exts_copy(custom_ext_methods *dst, const custom_ext_methods *src) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 134 | { |
| 135 | if (src->meths_count) { |
| 136 | dst->meths = |
Rich Salz | 7644a9a | 2015-12-16 16:12:24 -0500 | [diff] [blame] | 137 | OPENSSL_memdup(src->meths, |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 138 | sizeof(custom_ext_method) * src->meths_count); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 139 | if (dst->meths == NULL) |
| 140 | return 0; |
| 141 | dst->meths_count = src->meths_count; |
| 142 | } |
| 143 | return 1; |
| 144 | } |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 145 | |
| 146 | void custom_exts_free(custom_ext_methods *exts) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 147 | { |
Rich Salz | b548a1f | 2015-05-01 10:02:07 -0400 | [diff] [blame] | 148 | OPENSSL_free(exts->meths); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 149 | } |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 150 | |
Dr. Stephen Henson | 0cfefe4 | 2014-08-19 14:02:50 +0100 | [diff] [blame] | 151 | /* Set callbacks for a custom extension. */ |
Dr. Stephen Henson | 8cafe9e | 2014-08-19 13:54:38 +0100 | [diff] [blame] | 152 | static int custom_ext_meth_add(custom_ext_methods *exts, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 153 | unsigned int ext_type, |
| 154 | custom_ext_add_cb add_cb, |
| 155 | custom_ext_free_cb free_cb, |
| 156 | void *add_arg, |
| 157 | custom_ext_parse_cb parse_cb, void *parse_arg) |
| 158 | { |
Dr. Stephen Henson | 7c0ef84 | 2016-05-11 21:14:57 +0100 | [diff] [blame] | 159 | custom_ext_method *meth, *tmp; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 160 | /* |
| 161 | * Check application error: if add_cb is not set free_cb will never be |
| 162 | * called. |
| 163 | */ |
| 164 | if (!add_cb && free_cb) |
| 165 | return 0; |
Rob Percival | ed29e82 | 2016-03-03 16:19:23 +0000 | [diff] [blame] | 166 | /* |
| 167 | * Don't add if extension supported internally, but make exception |
| 168 | * for extension types that previously were not supported, but now are. |
| 169 | */ |
| 170 | if (SSL_extension_supported(ext_type) && |
| 171 | ext_type != TLSEXT_TYPE_signed_certificate_timestamp) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 172 | return 0; |
| 173 | /* Extension type must fit in 16 bits */ |
| 174 | if (ext_type > 0xffff) |
| 175 | return 0; |
| 176 | /* Search for duplicate */ |
| 177 | if (custom_ext_find(exts, ext_type)) |
| 178 | return 0; |
Dr. Stephen Henson | 7c0ef84 | 2016-05-11 21:14:57 +0100 | [diff] [blame] | 179 | tmp = OPENSSL_realloc(exts->meths, |
| 180 | (exts->meths_count + 1) * sizeof(custom_ext_method)); |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 181 | |
Bernd Edlinger | ed874fa | 2017-02-15 11:36:17 +0100 | [diff] [blame] | 182 | if (tmp == NULL) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 183 | return 0; |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 184 | |
Dr. Stephen Henson | 7c0ef84 | 2016-05-11 21:14:57 +0100 | [diff] [blame] | 185 | exts->meths = tmp; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 186 | meth = exts->meths + exts->meths_count; |
Rich Salz | 16f8d4e | 2015-05-04 18:00:15 -0400 | [diff] [blame] | 187 | memset(meth, 0, sizeof(*meth)); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 188 | meth->parse_cb = parse_cb; |
| 189 | meth->add_cb = add_cb; |
| 190 | meth->free_cb = free_cb; |
| 191 | meth->ext_type = ext_type; |
| 192 | meth->add_arg = add_arg; |
| 193 | meth->parse_arg = parse_arg; |
| 194 | exts->meths_count++; |
| 195 | return 1; |
| 196 | } |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 197 | |
Rob Percival | ed29e82 | 2016-03-03 16:19:23 +0000 | [diff] [blame] | 198 | /* Return true if a client custom extension exists, false otherwise */ |
| 199 | int SSL_CTX_has_client_custom_ext(const SSL_CTX *ctx, unsigned int ext_type) |
| 200 | { |
| 201 | return custom_ext_find(&ctx->cert->cli_ext, ext_type) != NULL; |
| 202 | } |
| 203 | |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 204 | /* Application level functions to add custom extension callbacks */ |
Dr. Stephen Henson | 8cafe9e | 2014-08-19 13:54:38 +0100 | [diff] [blame] | 205 | int SSL_CTX_add_client_custom_ext(SSL_CTX *ctx, unsigned int ext_type, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 206 | custom_ext_add_cb add_cb, |
| 207 | custom_ext_free_cb free_cb, |
Dr. Stephen Henson | 0cfefe4 | 2014-08-19 14:02:50 +0100 | [diff] [blame] | 208 | void *add_arg, |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 209 | custom_ext_parse_cb parse_cb, void *parse_arg) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 210 | { |
Rob Percival | ed29e82 | 2016-03-03 16:19:23 +0000 | [diff] [blame] | 211 | #ifndef OPENSSL_NO_CT |
| 212 | /* |
| 213 | * We don't want applications registering callbacks for SCT extensions |
| 214 | * whilst simultaneously using the built-in SCT validation features, as |
| 215 | * these two things may not play well together. |
| 216 | */ |
| 217 | if (ext_type == TLSEXT_TYPE_signed_certificate_timestamp && |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 218 | SSL_CTX_ct_is_enabled(ctx)) |
| 219 | return 0; |
Rob Percival | ed29e82 | 2016-03-03 16:19:23 +0000 | [diff] [blame] | 220 | #endif |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 221 | return custom_ext_meth_add(&ctx->cert->cli_ext, ext_type, add_cb, |
| 222 | free_cb, add_arg, parse_cb, parse_arg); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 223 | } |
Dr. Stephen Henson | ecf4d66 | 2014-08-10 12:08:08 +0100 | [diff] [blame] | 224 | |
Dr. Stephen Henson | 8cafe9e | 2014-08-19 13:54:38 +0100 | [diff] [blame] | 225 | int SSL_CTX_add_server_custom_ext(SSL_CTX *ctx, unsigned int ext_type, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 226 | custom_ext_add_cb add_cb, |
| 227 | custom_ext_free_cb free_cb, |
Dr. Stephen Henson | 0cfefe4 | 2014-08-19 14:02:50 +0100 | [diff] [blame] | 228 | void *add_arg, |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 229 | custom_ext_parse_cb parse_cb, void *parse_arg) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 230 | { |
| 231 | return custom_ext_meth_add(&ctx->cert->srv_ext, ext_type, |
| 232 | add_cb, free_cb, add_arg, parse_cb, parse_arg); |
| 233 | } |
Dr. Stephen Henson | c846a5f | 2014-08-19 13:33:51 +0100 | [diff] [blame] | 234 | |
| 235 | int SSL_extension_supported(unsigned int ext_type) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 236 | { |
| 237 | switch (ext_type) { |
| 238 | /* Internally supported extensions. */ |
| 239 | case TLSEXT_TYPE_application_layer_protocol_negotiation: |
| 240 | case TLSEXT_TYPE_ec_point_formats: |
Matt Caswell | de4d764 | 2016-11-09 14:51:06 +0000 | [diff] [blame] | 241 | case TLSEXT_TYPE_supported_groups: |
Matt Caswell | 1595ca0 | 2016-04-11 11:41:19 +0100 | [diff] [blame] | 242 | #ifndef OPENSSL_NO_NEXTPROTONEG |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 243 | case TLSEXT_TYPE_next_proto_neg: |
Matt Caswell | 1595ca0 | 2016-04-11 11:41:19 +0100 | [diff] [blame] | 244 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 245 | case TLSEXT_TYPE_padding: |
| 246 | case TLSEXT_TYPE_renegotiate: |
| 247 | case TLSEXT_TYPE_server_name: |
| 248 | case TLSEXT_TYPE_session_ticket: |
| 249 | case TLSEXT_TYPE_signature_algorithms: |
| 250 | case TLSEXT_TYPE_srp: |
| 251 | case TLSEXT_TYPE_status_request: |
Rob Percival | ed29e82 | 2016-03-03 16:19:23 +0000 | [diff] [blame] | 252 | case TLSEXT_TYPE_signed_certificate_timestamp: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 253 | case TLSEXT_TYPE_use_srtp: |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 254 | #ifdef TLSEXT_TYPE_encrypt_then_mac |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 255 | case TLSEXT_TYPE_encrypt_then_mac: |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 256 | #endif |
Matt Caswell | 91b60e2 | 2016-11-24 11:13:35 +0000 | [diff] [blame] | 257 | case TLSEXT_TYPE_key_share: |
| 258 | case TLSEXT_TYPE_supported_versions: |
| 259 | case TLSEXT_TYPE_extended_master_secret: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 260 | return 1; |
| 261 | default: |
| 262 | return 0; |
| 263 | } |
| 264 | } |