diff options
author | tb <> | 2019-01-21 14:12:13 +0000 |
---|---|---|
committer | tb <> | 2019-01-21 14:12:13 +0000 |
commit | d3d1c2c608615609302386dd2757729ee83092be (patch) | |
tree | d91d57f8604ae0900294a1f1c728b95211726bcd /src/lib | |
parent | c06f6f3e478fe1e9e0a1f1601f983e3d55479ed3 (diff) | |
download | openbsd-d3d1c2c608615609302386dd2757729ee83092be.tar.gz openbsd-d3d1c2c608615609302386dd2757729ee83092be.tar.bz2 openbsd-d3d1c2c608615609302386dd2757729ee83092be.zip |
Move ssl_cipher_list_to_bytes() and ssl_bytes_to_cipher_list() to
a more appropriately licenced file. jsing and doug have rewritten
these functions (including the comments) over the past years.
ok jsing
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/ssl_ciphers.c | 120 | ||||
-rw-r--r-- | src/lib/libssl/ssl_lib.c | 116 |
2 files changed, 120 insertions, 116 deletions
diff --git a/src/lib/libssl/ssl_ciphers.c b/src/lib/libssl/ssl_ciphers.c index 081a35ddb2..374cb6684e 100644 --- a/src/lib/libssl/ssl_ciphers.c +++ b/src/lib/libssl/ssl_ciphers.c | |||
@@ -1,5 +1,7 @@ | |||
1 | /* $OpenBSD: ssl_ciphers.c,v 1.1 2019/01/21 10:28:52 tb Exp $ */ | 1 | /* $OpenBSD: ssl_ciphers.c,v 1.2 2019/01/21 14:12:13 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2015-2017 Doug Hogan <doug@openbsd.org> | ||
4 | * Copyright (c) 2015-2018 Joel Sing <jsing@openbsd.org> | ||
3 | * Copyright (c) 2019 Theo Buehler <tb@openbsd.org> | 5 | * Copyright (c) 2019 Theo Buehler <tb@openbsd.org> |
4 | * | 6 | * |
5 | * Permission to use, copy, modify, and distribute this software for any | 7 | * Permission to use, copy, modify, and distribute this software for any |
@@ -15,6 +17,9 @@ | |||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 17 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 18 | */ |
17 | 19 | ||
20 | #include <openssl/safestack.h> | ||
21 | |||
22 | #include "bytestring.h" | ||
18 | #include "ssl_locl.h" | 23 | #include "ssl_locl.h" |
19 | 24 | ||
20 | int | 25 | int |
@@ -42,3 +47,116 @@ ssl_cipher_is_permitted(const SSL_CIPHER *cipher, uint16_t min_ver, | |||
42 | 47 | ||
43 | return 0; | 48 | return 0; |
44 | } | 49 | } |
50 | |||
51 | int | ||
52 | ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *ciphers, CBB *cbb) | ||
53 | { | ||
54 | SSL_CIPHER *cipher; | ||
55 | int num_ciphers = 0; | ||
56 | uint16_t min_vers, max_vers; | ||
57 | int i; | ||
58 | |||
59 | if (ciphers == NULL) | ||
60 | return 0; | ||
61 | |||
62 | if (!ssl_supported_version_range(s, &min_vers, &max_vers)) | ||
63 | return 0; | ||
64 | |||
65 | for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) { | ||
66 | if ((cipher = sk_SSL_CIPHER_value(ciphers, i)) == NULL) | ||
67 | return 0; | ||
68 | |||
69 | if (!ssl_cipher_is_permitted(cipher, min_vers, max_vers)) | ||
70 | continue; | ||
71 | |||
72 | if (!CBB_add_u16(cbb, ssl3_cipher_get_value(cipher))) | ||
73 | return 0; | ||
74 | |||
75 | num_ciphers++; | ||
76 | } | ||
77 | |||
78 | /* Add SCSV if there are other ciphers and we're not renegotiating. */ | ||
79 | if (num_ciphers > 0 && !s->internal->renegotiate) { | ||
80 | if (!CBB_add_u16(cbb, SSL3_CK_SCSV & SSL3_CK_VALUE_MASK)) | ||
81 | return 0; | ||
82 | } | ||
83 | |||
84 | if (!CBB_flush(cbb)) | ||
85 | return 0; | ||
86 | |||
87 | return 1; | ||
88 | } | ||
89 | |||
90 | STACK_OF(SSL_CIPHER) * | ||
91 | ssl_bytes_to_cipher_list(SSL *s, CBS *cbs) | ||
92 | { | ||
93 | STACK_OF(SSL_CIPHER) *ciphers = NULL; | ||
94 | const SSL_CIPHER *cipher; | ||
95 | uint16_t cipher_value, max_version; | ||
96 | unsigned long cipher_id; | ||
97 | |||
98 | if (s->s3 != NULL) | ||
99 | S3I(s)->send_connection_binding = 0; | ||
100 | |||
101 | if ((ciphers = sk_SSL_CIPHER_new_null()) == NULL) { | ||
102 | SSLerror(s, ERR_R_MALLOC_FAILURE); | ||
103 | goto err; | ||
104 | } | ||
105 | |||
106 | while (CBS_len(cbs) > 0) { | ||
107 | if (!CBS_get_u16(cbs, &cipher_value)) { | ||
108 | SSLerror(s, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST); | ||
109 | goto err; | ||
110 | } | ||
111 | |||
112 | cipher_id = SSL3_CK_ID | cipher_value; | ||
113 | |||
114 | if (s->s3 != NULL && cipher_id == SSL3_CK_SCSV) { | ||
115 | /* | ||
116 | * TLS_EMPTY_RENEGOTIATION_INFO_SCSV is fatal if | ||
117 | * renegotiating. | ||
118 | */ | ||
119 | if (s->internal->renegotiate) { | ||
120 | SSLerror(s, SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING); | ||
121 | ssl3_send_alert(s, SSL3_AL_FATAL, | ||
122 | SSL_AD_HANDSHAKE_FAILURE); | ||
123 | |||
124 | goto err; | ||
125 | } | ||
126 | S3I(s)->send_connection_binding = 1; | ||
127 | continue; | ||
128 | } | ||
129 | |||
130 | if (cipher_id == SSL3_CK_FALLBACK_SCSV) { | ||
131 | /* | ||
132 | * TLS_FALLBACK_SCSV indicates that the client | ||
133 | * previously tried a higher protocol version. | ||
134 | * Fail if the current version is an unexpected | ||
135 | * downgrade. | ||
136 | */ | ||
137 | max_version = ssl_max_server_version(s); | ||
138 | if (max_version == 0 || s->version < max_version) { | ||
139 | SSLerror(s, SSL_R_INAPPROPRIATE_FALLBACK); | ||
140 | if (s->s3 != NULL) | ||
141 | ssl3_send_alert(s, SSL3_AL_FATAL, | ||
142 | SSL_AD_INAPPROPRIATE_FALLBACK); | ||
143 | goto err; | ||
144 | } | ||
145 | continue; | ||
146 | } | ||
147 | |||
148 | if ((cipher = ssl3_get_cipher_by_value(cipher_value)) != NULL) { | ||
149 | if (!sk_SSL_CIPHER_push(ciphers, cipher)) { | ||
150 | SSLerror(s, ERR_R_MALLOC_FAILURE); | ||
151 | goto err; | ||
152 | } | ||
153 | } | ||
154 | } | ||
155 | |||
156 | return (ciphers); | ||
157 | |||
158 | err: | ||
159 | sk_SSL_CIPHER_free(ciphers); | ||
160 | |||
161 | return (NULL); | ||
162 | } | ||
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index 97e0a4479d..e3ab8431ab 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_lib.c,v 1.198 2019/01/21 10:32:58 tb Exp $ */ | 1 | /* $OpenBSD: ssl_lib.c,v 1.199 2019/01/21 14:12:13 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -1402,120 +1402,6 @@ SSL_get_shared_ciphers(const SSL *s, char *buf, int len) | |||
1402 | return (buf); | 1402 | return (buf); |
1403 | } | 1403 | } |
1404 | 1404 | ||
1405 | int | ||
1406 | ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *ciphers, CBB *cbb) | ||
1407 | { | ||
1408 | SSL_CIPHER *cipher; | ||
1409 | int num_ciphers = 0; | ||
1410 | uint16_t min_vers, max_vers; | ||
1411 | int i; | ||
1412 | |||
1413 | if (ciphers == NULL) | ||
1414 | return 0; | ||
1415 | |||
1416 | if (!ssl_supported_version_range(s, &min_vers, &max_vers)) | ||
1417 | return 0; | ||
1418 | |||
1419 | for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) { | ||
1420 | if ((cipher = sk_SSL_CIPHER_value(ciphers, i)) == NULL) | ||
1421 | return 0; | ||
1422 | |||
1423 | if (!ssl_cipher_is_permitted(cipher, min_vers, max_vers)) | ||
1424 | continue; | ||
1425 | |||
1426 | if (!CBB_add_u16(cbb, ssl3_cipher_get_value(cipher))) | ||
1427 | return 0; | ||
1428 | |||
1429 | num_ciphers++; | ||
1430 | } | ||
1431 | |||
1432 | /* Add SCSV if there are other ciphers and we're not renegotiating. */ | ||
1433 | if (num_ciphers > 0 && !s->internal->renegotiate) { | ||
1434 | if (!CBB_add_u16(cbb, SSL3_CK_SCSV & SSL3_CK_VALUE_MASK)) | ||
1435 | return 0; | ||
1436 | } | ||
1437 | |||
1438 | if (!CBB_flush(cbb)) | ||
1439 | return 0; | ||
1440 | |||
1441 | return 1; | ||
1442 | } | ||
1443 | |||
1444 | STACK_OF(SSL_CIPHER) * | ||
1445 | ssl_bytes_to_cipher_list(SSL *s, CBS *cbs) | ||
1446 | { | ||
1447 | STACK_OF(SSL_CIPHER) *ciphers = NULL; | ||
1448 | const SSL_CIPHER *cipher; | ||
1449 | uint16_t cipher_value, max_version; | ||
1450 | unsigned long cipher_id; | ||
1451 | |||
1452 | if (s->s3 != NULL) | ||
1453 | S3I(s)->send_connection_binding = 0; | ||
1454 | |||
1455 | if ((ciphers = sk_SSL_CIPHER_new_null()) == NULL) { | ||
1456 | SSLerror(s, ERR_R_MALLOC_FAILURE); | ||
1457 | goto err; | ||
1458 | } | ||
1459 | |||
1460 | while (CBS_len(cbs) > 0) { | ||
1461 | if (!CBS_get_u16(cbs, &cipher_value)) { | ||
1462 | SSLerror(s, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST); | ||
1463 | goto err; | ||
1464 | } | ||
1465 | |||
1466 | cipher_id = SSL3_CK_ID | cipher_value; | ||
1467 | |||
1468 | if (s->s3 != NULL && cipher_id == SSL3_CK_SCSV) { | ||
1469 | /* | ||
1470 | * TLS_EMPTY_RENEGOTIATION_INFO_SCSV is fatal if | ||
1471 | * renegotiating. | ||
1472 | */ | ||
1473 | if (s->internal->renegotiate) { | ||
1474 | SSLerror(s, SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING); | ||
1475 | ssl3_send_alert(s, SSL3_AL_FATAL, | ||
1476 | SSL_AD_HANDSHAKE_FAILURE); | ||
1477 | |||
1478 | goto err; | ||
1479 | } | ||
1480 | S3I(s)->send_connection_binding = 1; | ||
1481 | continue; | ||
1482 | } | ||
1483 | |||
1484 | if (cipher_id == SSL3_CK_FALLBACK_SCSV) { | ||
1485 | /* | ||
1486 | * TLS_FALLBACK_SCSV indicates that the client | ||
1487 | * previously tried a higher protocol version. | ||
1488 | * Fail if the current version is an unexpected | ||
1489 | * downgrade. | ||
1490 | */ | ||
1491 | max_version = ssl_max_server_version(s); | ||
1492 | if (max_version == 0 || s->version < max_version) { | ||
1493 | SSLerror(s, SSL_R_INAPPROPRIATE_FALLBACK); | ||
1494 | if (s->s3 != NULL) | ||
1495 | ssl3_send_alert(s, SSL3_AL_FATAL, | ||
1496 | SSL_AD_INAPPROPRIATE_FALLBACK); | ||
1497 | goto err; | ||
1498 | } | ||
1499 | continue; | ||
1500 | } | ||
1501 | |||
1502 | if ((cipher = ssl3_get_cipher_by_value(cipher_value)) != NULL) { | ||
1503 | if (!sk_SSL_CIPHER_push(ciphers, cipher)) { | ||
1504 | SSLerror(s, ERR_R_MALLOC_FAILURE); | ||
1505 | goto err; | ||
1506 | } | ||
1507 | } | ||
1508 | } | ||
1509 | |||
1510 | return (ciphers); | ||
1511 | |||
1512 | err: | ||
1513 | sk_SSL_CIPHER_free(ciphers); | ||
1514 | |||
1515 | return (NULL); | ||
1516 | } | ||
1517 | |||
1518 | |||
1519 | /* | 1405 | /* |
1520 | * Return a servername extension value if provided in Client Hello, or NULL. | 1406 | * Return a servername extension value if provided in Client Hello, or NULL. |
1521 | * So far, only host_name types are defined (RFC 3546). | 1407 | * So far, only host_name types are defined (RFC 3546). |