Add -srp option to ciphers command.
[openssl.git] / apps / ciphers.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <string.h>
61 #include "apps.h"
62 #include <openssl/err.h>
63 #include <openssl/ssl.h>
64
65 typedef enum OPTION_choice {
66     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
67     OPT_STDNAME,
68     OPT_SSL3,
69     OPT_TLS1,
70     OPT_TLS1_1,
71     OPT_TLS1_2,
72     OPT_PSK,
73     OPT_SRP,
74     OPT_V, OPT_UPPER_V, OPT_S
75 } OPTION_CHOICE;
76
77 OPTIONS ciphers_options[] = {
78     {"help", OPT_HELP, '-', "Display this summary"},
79     {"v", OPT_V, '-', "Verbose listing of the SSL/TLS ciphers"},
80     {"V", OPT_UPPER_V, '-', "Even more verbose"},
81     {"s", OPT_S, '-', "Only supported ciphers"},
82 #ifndef OPENSSL_NO_SSL3
83     {"ssl3", OPT_SSL3, '-', "SSL3 mode"},
84 #endif
85 #ifndef OPENSSL_NO_TLS1
86     {"tls1", OPT_TLS1, '-', "TLS1 mode"},
87 #endif
88 #ifndef OPENSSL_NO_TLS1_1
89     {"tls1_1", OPT_TLS1_1, '-', "TLS1.1 mode"},
90 #endif
91 #ifndef OPENSSL_NO_TLS1_2
92     {"tls1_2", OPT_TLS1_2, '-', "TLS1.2 mode"},
93 #endif
94 #ifndef OPENSSL_NO_SSL_TRACE
95     {"stdname", OPT_STDNAME, '-', "Show standard cipher names"},
96 #endif
97 #ifndef OPENSSL_NO_PSK
98     {"psk", OPT_PSK, '-', "include ciphersuites requiring PSK"},
99 #endif
100 #ifndef OPENSSL_NO_SRP
101     {"srp", OPT_SRP, '-', "include ciphersuites requiring SRP"},
102 #endif
103     {NULL}
104 };
105
106 #ifndef OPENSSL_NO_PSK
107 static unsigned int dummy_psk(SSL *ssl, const char *hint, char *identity,
108                               unsigned int max_identity_len,
109                               unsigned char *psk,
110                               unsigned int max_psk_len)
111 {
112     return 0;
113 }
114 #endif
115 #ifndef OPENSSL_NO_SRP
116 static char *dummy_srp(SSL *ssl, void *arg)
117 {
118     return "";
119 }
120 #endif
121
122 int ciphers_main(int argc, char **argv)
123 {
124     SSL_CTX *ctx = NULL;
125     SSL *ssl = NULL;
126     STACK_OF(SSL_CIPHER) *sk = NULL;
127     const SSL_METHOD *meth = TLS_server_method();
128     int ret = 1, i, verbose = 0, Verbose = 0, use_supported = 0;
129 #ifndef OPENSSL_NO_SSL_TRACE
130     int stdname = 0;
131 #endif
132 #ifndef OPENSSL_NO_PSK
133     int psk = 0;
134 #endif
135 #ifndef OPENSSL_NO_SRP
136     int srp = 0;
137 #endif
138     const char *p;
139     char *ciphers = NULL, *prog;
140     char buf[512];
141     OPTION_CHOICE o;
142     int min_version = 0, max_version = 0;
143
144     prog = opt_init(argc, argv, ciphers_options);
145     while ((o = opt_next()) != OPT_EOF) {
146         switch (o) {
147         case OPT_EOF:
148         case OPT_ERR:
149  opthelp:
150             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
151             goto end;
152         case OPT_HELP:
153             opt_help(ciphers_options);
154             ret = 0;
155             goto end;
156         case OPT_V:
157             verbose = 1;
158             break;
159         case OPT_UPPER_V:
160             verbose = Verbose = 1;
161             break;
162         case OPT_S:
163             use_supported = 1;
164             break;
165         case OPT_STDNAME:
166 #ifndef OPENSSL_NO_SSL_TRACE
167             stdname = verbose = 1;
168 #endif
169             break;
170         case OPT_SSL3:
171             min_version = SSL3_VERSION;
172             max_version = SSL3_VERSION;
173             break;
174         case OPT_TLS1:
175             min_version = TLS1_VERSION;
176             max_version = TLS1_VERSION;
177             break;
178         case OPT_TLS1_1:
179             min_version = TLS1_1_VERSION;
180             max_version = TLS1_1_VERSION;
181             break;
182         case OPT_TLS1_2:
183             min_version = TLS1_2_VERSION;
184             max_version = TLS1_2_VERSION;
185             break;
186         case OPT_PSK:
187 #ifndef OPENSSL_NO_PSK
188             psk = 1;
189 #endif
190         case OPT_SRP:
191 #ifndef OPENSSL_NO_SRP
192             srp = 1;
193 #endif
194             break;
195         }
196     }
197     argv = opt_rest();
198     argc = opt_num_rest();
199
200     if (argc == 1)
201         ciphers = *argv;
202     else if (argc != 0)
203         goto opthelp;
204
205     ctx = SSL_CTX_new(meth);
206     if (ctx == NULL)
207         goto err;
208     if (SSL_CTX_set_min_proto_version(ctx, min_version) == 0)
209         goto err;
210     if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0)
211         goto err;
212
213 #ifndef OPENSSL_NO_PSK
214     if (psk)
215         SSL_CTX_set_psk_client_callback(ctx, dummy_psk);
216 #endif
217 #ifndef OPENSSL_NO_SRP
218     if (srp)
219         SSL_CTX_set_srp_client_pwd_callback(ctx, dummy_srp);
220 #endif
221     if (ciphers != NULL) {
222         if (!SSL_CTX_set_cipher_list(ctx, ciphers)) {
223             BIO_printf(bio_err, "Error in cipher list\n");
224             goto err;
225         }
226     }
227     ssl = SSL_new(ctx);
228     if (ssl == NULL)
229         goto err;
230
231     if (use_supported)
232         sk = SSL_get1_supported_ciphers(ssl);
233     else
234         sk = SSL_get_ciphers(ssl);
235
236     if (!verbose) {
237         for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
238             const SSL_CIPHER *c = sk_SSL_CIPHER_value(sk, i);
239             p = SSL_CIPHER_get_name(c);
240             if (p == NULL)
241                 break;
242             if (i != 0)
243                 BIO_printf(bio_out, ":");
244             BIO_printf(bio_out, "%s", p);
245         }
246         BIO_printf(bio_out, "\n");
247     } else {
248
249         for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
250             const SSL_CIPHER *c;
251
252             c = sk_SSL_CIPHER_value(sk, i);
253
254             if (Verbose) {
255                 unsigned long id = SSL_CIPHER_get_id(c);
256                 int id0 = (int)(id >> 24);
257                 int id1 = (int)((id >> 16) & 0xffL);
258                 int id2 = (int)((id >> 8) & 0xffL);
259                 int id3 = (int)(id & 0xffL);
260
261                 if ((id & 0xff000000L) == 0x03000000L)
262                     BIO_printf(bio_out, "          0x%02X,0x%02X - ", id2, id3); /* SSL3
263                                                                                   * cipher */
264                 else
265                     BIO_printf(bio_out, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
266             }
267 #ifndef OPENSSL_NO_SSL_TRACE
268             if (stdname) {
269                 const char *nm = SSL_CIPHER_standard_name(c);
270                 if (nm == NULL)
271                     nm = "UNKNOWN";
272                 BIO_printf(bio_out, "%s - ", nm);
273             }
274 #endif
275             BIO_puts(bio_out, SSL_CIPHER_description(c, buf, sizeof buf));
276         }
277     }
278
279     ret = 0;
280     goto end;
281  err:
282     ERR_print_errors(bio_err);
283  end:
284     if (use_supported)
285         sk_SSL_CIPHER_free(sk);
286     SSL_CTX_free(ctx);
287     SSL_free(ssl);
288     return (ret);
289 }