2018-09-13 19:18:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2000-01-10 06:22:05 +00:00
|
|
|
*
|
2018-09-13 19:18:07 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2000-01-10 06:22:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "apps.h"
|
2018-09-13 19:18:07 +00:00
|
|
|
#include "progs.h"
|
2000-01-10 06:22:05 +00:00
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2018-09-13 19:18:07 +00:00
|
|
|
typedef enum OPTION_choice {
|
|
|
|
OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
|
|
|
|
OPT_STDNAME,
|
|
|
|
OPT_CONVERT,
|
|
|
|
OPT_SSL3,
|
|
|
|
OPT_TLS1,
|
|
|
|
OPT_TLS1_1,
|
|
|
|
OPT_TLS1_2,
|
|
|
|
OPT_TLS1_3,
|
|
|
|
OPT_PSK,
|
|
|
|
OPT_SRP,
|
|
|
|
OPT_CIPHERSUITES,
|
|
|
|
OPT_V, OPT_UPPER_V, OPT_S
|
|
|
|
} OPTION_CHOICE;
|
|
|
|
|
|
|
|
const OPTIONS ciphers_options[] = {
|
|
|
|
{"help", OPT_HELP, '-', "Display this summary"},
|
|
|
|
{"v", OPT_V, '-', "Verbose listing of the SSL/TLS ciphers"},
|
|
|
|
{"V", OPT_UPPER_V, '-', "Even more verbose"},
|
|
|
|
{"s", OPT_S, '-', "Only supported ciphers"},
|
|
|
|
#ifndef OPENSSL_NO_SSL3
|
|
|
|
{"ssl3", OPT_SSL3, '-', "SSL3 mode"},
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_TLS1
|
|
|
|
{"tls1", OPT_TLS1, '-', "TLS1 mode"},
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_TLS1_1
|
|
|
|
{"tls1_1", OPT_TLS1_1, '-', "TLS1.1 mode"},
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_TLS1_2
|
|
|
|
{"tls1_2", OPT_TLS1_2, '-', "TLS1.2 mode"},
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_TLS1_3
|
|
|
|
{"tls1_3", OPT_TLS1_3, '-', "TLS1.3 mode"},
|
|
|
|
#endif
|
|
|
|
{"stdname", OPT_STDNAME, '-', "Show standard cipher names"},
|
|
|
|
#ifndef OPENSSL_NO_PSK
|
|
|
|
{"psk", OPT_PSK, '-', "include ciphersuites requiring PSK"},
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_SRP
|
|
|
|
{"srp", OPT_SRP, '-', "include ciphersuites requiring SRP"},
|
|
|
|
#endif
|
|
|
|
{"convert", OPT_CONVERT, 's', "Convert standard name into OpenSSL name"},
|
|
|
|
{"ciphersuites", OPT_CIPHERSUITES, 's',
|
|
|
|
"Configure the TLSv1.3 ciphersuites to use"},
|
|
|
|
{NULL}
|
2000-01-10 06:22:05 +00:00
|
|
|
};
|
|
|
|
|
2018-09-13 19:18:07 +00:00
|
|
|
#ifndef OPENSSL_NO_PSK
|
|
|
|
static unsigned int dummy_psk(SSL *ssl, const char *hint, char *identity,
|
|
|
|
unsigned int max_identity_len,
|
|
|
|
unsigned char *psk,
|
|
|
|
unsigned int max_psk_len)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_SRP
|
|
|
|
static char *dummy_srp(SSL *ssl, void *arg)
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
#endif
|
2000-04-13 06:33:22 +00:00
|
|
|
|
2018-09-13 19:18:07 +00:00
|
|
|
int ciphers_main(int argc, char **argv)
|
2015-03-20 15:28:40 +00:00
|
|
|
{
|
2018-09-13 19:18:07 +00:00
|
|
|
SSL_CTX *ctx = NULL;
|
|
|
|
SSL *ssl = NULL;
|
|
|
|
STACK_OF(SSL_CIPHER) *sk = NULL;
|
|
|
|
const SSL_METHOD *meth = TLS_server_method();
|
|
|
|
int ret = 1, i, verbose = 0, Verbose = 0, use_supported = 0;
|
2015-10-23 19:46:02 +00:00
|
|
|
int stdname = 0;
|
2018-09-13 19:18:07 +00:00
|
|
|
#ifndef OPENSSL_NO_PSK
|
|
|
|
int psk = 0;
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_SRP
|
|
|
|
int srp = 0;
|
2015-10-23 19:46:02 +00:00
|
|
|
#endif
|
2015-03-20 15:28:40 +00:00
|
|
|
const char *p;
|
2018-09-13 19:18:07 +00:00
|
|
|
char *ciphers = NULL, *prog, *convert = NULL, *ciphersuites = NULL;
|
2015-03-20 15:28:40 +00:00
|
|
|
char buf[512];
|
2018-09-13 19:18:07 +00:00
|
|
|
OPTION_CHOICE o;
|
|
|
|
int min_version = 0, max_version = 0;
|
2015-03-20 15:28:40 +00:00
|
|
|
|
2018-09-13 19:18:07 +00:00
|
|
|
prog = opt_init(argc, argv, ciphers_options);
|
|
|
|
while ((o = opt_next()) != OPT_EOF) {
|
|
|
|
switch (o) {
|
|
|
|
case OPT_EOF:
|
|
|
|
case OPT_ERR:
|
|
|
|
opthelp:
|
|
|
|
BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
|
|
|
|
goto end;
|
|
|
|
case OPT_HELP:
|
|
|
|
opt_help(ciphers_options);
|
|
|
|
ret = 0;
|
|
|
|
goto end;
|
|
|
|
case OPT_V:
|
2015-03-20 15:28:40 +00:00
|
|
|
verbose = 1;
|
2018-09-13 19:18:07 +00:00
|
|
|
break;
|
|
|
|
case OPT_UPPER_V:
|
2015-03-20 15:28:40 +00:00
|
|
|
verbose = Verbose = 1;
|
2018-09-13 19:18:07 +00:00
|
|
|
break;
|
|
|
|
case OPT_S:
|
|
|
|
use_supported = 1;
|
|
|
|
break;
|
|
|
|
case OPT_STDNAME:
|
2015-10-23 19:46:02 +00:00
|
|
|
stdname = verbose = 1;
|
2018-09-13 19:18:07 +00:00
|
|
|
break;
|
|
|
|
case OPT_CONVERT:
|
|
|
|
convert = opt_arg();
|
|
|
|
break;
|
|
|
|
case OPT_SSL3:
|
|
|
|
min_version = SSL3_VERSION;
|
|
|
|
max_version = SSL3_VERSION;
|
|
|
|
break;
|
|
|
|
case OPT_TLS1:
|
|
|
|
min_version = TLS1_VERSION;
|
|
|
|
max_version = TLS1_VERSION;
|
|
|
|
break;
|
|
|
|
case OPT_TLS1_1:
|
|
|
|
min_version = TLS1_1_VERSION;
|
|
|
|
max_version = TLS1_1_VERSION;
|
|
|
|
break;
|
|
|
|
case OPT_TLS1_2:
|
|
|
|
min_version = TLS1_2_VERSION;
|
|
|
|
max_version = TLS1_2_VERSION;
|
|
|
|
break;
|
|
|
|
case OPT_TLS1_3:
|
|
|
|
min_version = TLS1_3_VERSION;
|
|
|
|
max_version = TLS1_3_VERSION;
|
|
|
|
break;
|
|
|
|
case OPT_PSK:
|
|
|
|
#ifndef OPENSSL_NO_PSK
|
|
|
|
psk = 1;
|
2015-10-23 19:46:02 +00:00
|
|
|
#endif
|
2018-09-13 19:18:07 +00:00
|
|
|
break;
|
|
|
|
case OPT_SRP:
|
|
|
|
#ifndef OPENSSL_NO_SRP
|
|
|
|
srp = 1;
|
2000-01-10 06:22:05 +00:00
|
|
|
#endif
|
2015-03-20 15:28:40 +00:00
|
|
|
break;
|
2018-09-13 19:18:07 +00:00
|
|
|
case OPT_CIPHERSUITES:
|
|
|
|
ciphersuites = opt_arg();
|
|
|
|
break;
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-13 19:18:07 +00:00
|
|
|
argv = opt_rest();
|
|
|
|
argc = opt_num_rest();
|
2015-03-20 15:28:40 +00:00
|
|
|
|
2018-09-13 19:18:07 +00:00
|
|
|
if (argc == 1)
|
|
|
|
ciphers = *argv;
|
|
|
|
else if (argc != 0)
|
|
|
|
goto opthelp;
|
|
|
|
|
|
|
|
if (convert != NULL) {
|
|
|
|
BIO_printf(bio_out, "OpenSSL cipher name: %s\n",
|
|
|
|
OPENSSL_cipher_name(convert));
|
2015-03-20 15:28:40 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx = SSL_CTX_new(meth);
|
|
|
|
if (ctx == NULL)
|
|
|
|
goto err;
|
2018-09-13 19:18:07 +00:00
|
|
|
if (SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
|
|
|
|
goto err;
|
|
|
|
if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_PSK
|
|
|
|
if (psk)
|
|
|
|
SSL_CTX_set_psk_client_callback(ctx, dummy_psk);
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_SRP
|
|
|
|
if (srp)
|
|
|
|
SSL_CTX_set_srp_client_pwd_callback(ctx, dummy_srp);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (ciphersuites != NULL && !SSL_CTX_set_ciphersuites(ctx, ciphersuites)) {
|
|
|
|
BIO_printf(bio_err, "Error setting TLSv1.3 ciphersuites\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2015-03-20 15:28:40 +00:00
|
|
|
if (ciphers != NULL) {
|
|
|
|
if (!SSL_CTX_set_cipher_list(ctx, ciphers)) {
|
|
|
|
BIO_printf(bio_err, "Error in cipher list\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ssl = SSL_new(ctx);
|
|
|
|
if (ssl == NULL)
|
|
|
|
goto err;
|
|
|
|
|
2018-09-13 19:18:07 +00:00
|
|
|
if (use_supported)
|
|
|
|
sk = SSL_get1_supported_ciphers(ssl);
|
|
|
|
else
|
|
|
|
sk = SSL_get_ciphers(ssl);
|
|
|
|
|
2015-03-20 15:28:40 +00:00
|
|
|
if (!verbose) {
|
2018-09-13 19:18:07 +00:00
|
|
|
for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
|
|
|
|
const SSL_CIPHER *c = sk_SSL_CIPHER_value(sk, i);
|
|
|
|
p = SSL_CIPHER_get_name(c);
|
2015-03-20 15:28:40 +00:00
|
|
|
if (p == NULL)
|
|
|
|
break;
|
|
|
|
if (i != 0)
|
2018-09-13 19:18:07 +00:00
|
|
|
BIO_printf(bio_out, ":");
|
|
|
|
BIO_printf(bio_out, "%s", p);
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
2018-09-13 19:18:07 +00:00
|
|
|
BIO_printf(bio_out, "\n");
|
|
|
|
} else {
|
2015-03-20 15:28:40 +00:00
|
|
|
|
|
|
|
for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
|
2018-09-13 19:18:07 +00:00
|
|
|
const SSL_CIPHER *c;
|
2015-03-20 15:28:40 +00:00
|
|
|
|
|
|
|
c = sk_SSL_CIPHER_value(sk, i);
|
|
|
|
|
|
|
|
if (Verbose) {
|
|
|
|
unsigned long id = SSL_CIPHER_get_id(c);
|
|
|
|
int id0 = (int)(id >> 24);
|
|
|
|
int id1 = (int)((id >> 16) & 0xffL);
|
|
|
|
int id2 = (int)((id >> 8) & 0xffL);
|
|
|
|
int id3 = (int)(id & 0xffL);
|
|
|
|
|
2018-09-13 19:18:07 +00:00
|
|
|
if ((id & 0xff000000L) == 0x03000000L)
|
|
|
|
BIO_printf(bio_out, " 0x%02X,0x%02X - ", id2, id3); /* SSL3
|
|
|
|
* cipher */
|
|
|
|
else
|
|
|
|
BIO_printf(bio_out, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
2015-10-23 19:46:02 +00:00
|
|
|
if (stdname) {
|
|
|
|
const char *nm = SSL_CIPHER_standard_name(c);
|
|
|
|
if (nm == NULL)
|
|
|
|
nm = "UNKNOWN";
|
2018-09-13 19:18:07 +00:00
|
|
|
BIO_printf(bio_out, "%s - ", nm);
|
2015-10-23 19:46:02 +00:00
|
|
|
}
|
2018-09-13 19:18:07 +00:00
|
|
|
BIO_puts(bio_out, SSL_CIPHER_description(c, buf, sizeof(buf)));
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
2018-09-13 19:18:07 +00:00
|
|
|
goto end;
|
2015-03-20 15:28:40 +00:00
|
|
|
err:
|
2018-09-13 19:18:07 +00:00
|
|
|
ERR_print_errors(bio_err);
|
2015-03-20 15:28:40 +00:00
|
|
|
end:
|
2018-09-13 19:18:07 +00:00
|
|
|
if (use_supported)
|
|
|
|
sk_SSL_CIPHER_free(sk);
|
|
|
|
SSL_CTX_free(ctx);
|
|
|
|
SSL_free(ssl);
|
|
|
|
return ret;
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|