e07df852917d4e1b71cea3768e934692c5d95d0e
[openssl.git] / apps / s_server.c
1 /* apps/s_server.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58 /* ====================================================================
59  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer.
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111 /* ====================================================================
112  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
113  * ECC cipher suite support in OpenSSL originally developed by
114  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
115  */
116 /* ====================================================================
117  * Copyright 2005 Nokia. All rights reserved.
118  *
119  * The portions of the attached software ("Contribution") is developed by
120  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
121  * license.
122  *
123  * The Contribution, originally written by Mika Kousa and Pasi Eronen of
124  * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
125  * support (see RFC 4279) to OpenSSL.
126  *
127  * No patent licenses or other rights except those expressly stated in
128  * the OpenSSL open source license shall be deemed granted or received
129  * expressly, by implication, estoppel, or otherwise.
130  *
131  * No assurances are provided by Nokia that the Contribution does not
132  * infringe the patent or other intellectual property rights of any third
133  * party or that the license provides you with all the necessary rights
134  * to make use of the Contribution.
135  *
136  * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
137  * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
138  * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
139  * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
140  * OTHERWISE.
141  */
142
143 #include <assert.h>
144 #include <ctype.h>
145 #include <stdio.h>
146 #include <stdlib.h>
147 #include <string.h>
148
149 #include <openssl/e_os2.h>
150
151 /* conflicts with winsock2 stuff on netware */
152 #if !defined(OPENSSL_SYS_NETWARE)
153 # include <sys/types.h>
154 #endif
155
156 /*
157  * With IPv6, it looks like Digital has mixed up the proper order of
158  * recursive header file inclusion, resulting in the compiler complaining
159  * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
160  * needed to have fileno() declared correctly...  So let's define u_int
161  */
162 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
163 # define __U_INT
164 typedef unsigned int u_int;
165 #endif
166
167 #include <openssl/lhash.h>
168 #include <openssl/bn.h>
169 #define USE_SOCKETS
170 #include "apps.h"
171 #include <openssl/err.h>
172 #include <openssl/pem.h>
173 #include <openssl/x509.h>
174 #include <openssl/ssl.h>
175 #include <openssl/rand.h>
176 #include <openssl/ocsp.h>
177 #ifndef OPENSSL_NO_DH
178 # include <openssl/dh.h>
179 #endif
180 #ifndef OPENSSL_NO_RSA
181 # include <openssl/rsa.h>
182 #endif
183 #ifndef OPENSSL_NO_SRP
184 # include <openssl/srp.h>
185 #endif
186 #include "s_apps.h"
187 #include "timeouts.h"
188
189 #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000)
190 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
191 # undef FIONBIO
192 #endif
193
194 #ifndef OPENSSL_NO_RSA
195 static RSA *tmp_rsa_cb(SSL *s, int is_export, int keylength);
196 #endif
197 static int not_resumable_sess_cb(SSL *s, int is_forward_secure);
198 static int sv_body(char *hostname, int s, int stype, unsigned char *context);
199 static int www_body(char *hostname, int s, int stype, unsigned char *context);
200 static int rev_body(char *hostname, int s, int stype, unsigned char *context);
201 static void close_accept_socket(void);
202 static void sv_usage(void);
203 static int init_ssl_connection(SSL *s);
204 static void print_stats(BIO *bp, SSL_CTX *ctx);
205 static int generate_session_id(const SSL *ssl, unsigned char *id,
206                                unsigned int *id_len);
207 static void init_session_cache_ctx(SSL_CTX *sctx);
208 static void free_sessions(void);
209 #ifndef OPENSSL_NO_DH
210 static DH *load_dh_param(const char *dhfile);
211 #endif
212
213 #ifdef MONOLITH
214 static void s_server_init(void);
215 #endif
216
217 /* static int load_CA(SSL_CTX *ctx, char *file);*/
218
219 #undef BUFSIZZ
220 #define BUFSIZZ 16*1024
221 static int bufsize = BUFSIZZ;
222 static int accept_socket = -1;
223
224 #define TEST_CERT       "server.pem"
225 #ifndef OPENSSL_NO_TLSEXT
226 # define TEST_CERT2      "server2.pem"
227 #endif
228 #undef PROG
229 #define PROG            s_server_main
230
231 extern int verify_depth, verify_return_error, verify_quiet;
232
233 static int s_server_verify = SSL_VERIFY_NONE;
234 static int s_server_session_id_context = 1; /* anything will do */
235 static const char *s_cert_file = TEST_CERT, *s_key_file =
236     NULL, *s_chain_file = NULL;
237 #ifndef OPENSSL_NO_TLSEXT
238 static const char *s_cert_file2 = TEST_CERT2, *s_key_file2 = NULL;
239 #endif
240 static char *s_dcert_file = NULL, *s_dkey_file = NULL, *s_dchain_file = NULL;
241 #ifdef FIONBIO
242 static int s_nbio = 0;
243 #endif
244 static int s_nbio_test = 0;
245 int s_crlf = 0;
246 static SSL_CTX *ctx = NULL;
247 #ifndef OPENSSL_NO_TLSEXT
248 static SSL_CTX *ctx2 = NULL;
249 #endif
250 static int www = 0;
251
252 static BIO *bio_s_out = NULL;
253 static BIO *bio_s_msg = NULL;
254 static int s_debug = 0;
255 #ifndef OPENSSL_NO_TLSEXT
256 static int s_tlsextdebug = 0;
257 static int s_tlsextstatus = 0;
258 static int cert_status_cb(SSL *s, void *arg);
259 #endif
260 static int no_resume_ephemeral = 0;
261 static int s_msg = 0;
262 static int s_quiet = 0;
263 static int s_ign_eof = 0;
264 static int s_brief = 0;
265
266 static char *keymatexportlabel = NULL;
267 static int keymatexportlen = 20;
268
269 static int hack = 0;
270 #ifndef OPENSSL_NO_ENGINE
271 static char *engine_id = NULL;
272 #endif
273 static const char *session_id_prefix = NULL;
274
275 static int enable_timeouts = 0;
276 static long socket_mtu;
277 #ifndef OPENSSL_NO_DTLS1
278 static int cert_chain = 0;
279 #endif
280
281 #ifndef OPENSSL_NO_TLSEXT
282 static BIO *serverinfo_in = NULL;
283 static const char *s_serverinfo_file = NULL;
284
285 #endif
286
287 #ifndef OPENSSL_NO_PSK
288 static char *psk_identity = "Client_identity";
289 char *psk_key = NULL;           /* by default PSK is not used */
290
291 static unsigned int psk_server_cb(SSL *ssl, const char *identity,
292                                   unsigned char *psk,
293                                   unsigned int max_psk_len)
294 {
295     unsigned int psk_len = 0;
296     int ret;
297     BIGNUM *bn = NULL;
298
299     if (s_debug)
300         BIO_printf(bio_s_out, "psk_server_cb\n");
301     if (!identity) {
302         BIO_printf(bio_err, "Error: client did not send PSK identity\n");
303         goto out_err;
304     }
305     if (s_debug)
306         BIO_printf(bio_s_out, "identity_len=%d identity=%s\n",
307                    identity ? (int)strlen(identity) : 0, identity);
308
309     /* here we could lookup the given identity e.g. from a database */
310     if (strcmp(identity, psk_identity) != 0) {
311         BIO_printf(bio_s_out, "PSK error: client identity not found"
312                    " (got '%s' expected '%s')\n", identity, psk_identity);
313         goto out_err;
314     }
315     if (s_debug)
316         BIO_printf(bio_s_out, "PSK client identity found\n");
317
318     /* convert the PSK key to binary */
319     ret = BN_hex2bn(&bn, psk_key);
320     if (!ret) {
321         BIO_printf(bio_err, "Could not convert PSK key '%s' to BIGNUM\n",
322                    psk_key);
323         if (bn)
324             BN_free(bn);
325         return 0;
326     }
327     if (BN_num_bytes(bn) > (int)max_psk_len) {
328         BIO_printf(bio_err,
329                    "psk buffer of callback is too small (%d) for key (%d)\n",
330                    max_psk_len, BN_num_bytes(bn));
331         BN_free(bn);
332         return 0;
333     }
334
335     ret = BN_bn2bin(bn, psk);
336     BN_free(bn);
337
338     if (ret < 0)
339         goto out_err;
340     psk_len = (unsigned int)ret;
341
342     if (s_debug)
343         BIO_printf(bio_s_out, "fetched PSK len=%d\n", psk_len);
344     return psk_len;
345  out_err:
346     if (s_debug)
347         BIO_printf(bio_err, "Error in PSK server callback\n");
348     return 0;
349 }
350 #endif
351
352 #ifndef OPENSSL_NO_SRP
353 /* This is a context that we pass to callbacks */
354 typedef struct srpsrvparm_st {
355     char *login;
356     SRP_VBASE *vb;
357     SRP_user_pwd *user;
358 } srpsrvparm;
359
360 /*
361  * This callback pretends to require some asynchronous logic in order to
362  * obtain a verifier. When the callback is called for a new connection we
363  * return with a negative value. This will provoke the accept etc to return
364  * with an LOOKUP_X509. The main logic of the reinvokes the suspended call
365  * (which would normally occur after a worker has finished) and we set the
366  * user parameters.
367  */
368 static int ssl_srp_server_param_cb(SSL *s, int *ad, void *arg)
369 {
370     srpsrvparm *p = (srpsrvparm *) arg;
371     if (p->login == NULL && p->user == NULL) {
372         p->login = SSL_get_srp_username(s);
373         BIO_printf(bio_err, "SRP username = \"%s\"\n", p->login);
374         return (-1);
375     }
376
377     if (p->user == NULL) {
378         BIO_printf(bio_err, "User %s doesn't exist\n", p->login);
379         return SSL3_AL_FATAL;
380     }
381     if (SSL_set_srp_server_param
382         (s, p->user->N, p->user->g, p->user->s, p->user->v,
383          p->user->info) < 0) {
384         *ad = SSL_AD_INTERNAL_ERROR;
385         return SSL3_AL_FATAL;
386     }
387     BIO_printf(bio_err,
388                "SRP parameters set: username = \"%s\" info=\"%s\" \n",
389                p->login, p->user->info);
390     /* need to check whether there are memory leaks */
391     p->user = NULL;
392     p->login = NULL;
393     return SSL_ERROR_NONE;
394 }
395
396 #endif
397
398 #ifdef MONOLITH
399 static void s_server_init(void)
400 {
401     accept_socket = -1;
402     s_server_verify = SSL_VERIFY_NONE;
403     s_dcert_file = NULL;
404     s_dkey_file = NULL;
405     s_dchain_file = NULL;
406     s_cert_file = TEST_CERT;
407     s_key_file = NULL;
408     s_chain_file = NULL;
409 # ifndef OPENSSL_NO_TLSEXT
410     s_cert_file2 = TEST_CERT2;
411     s_key_file2 = NULL;
412     ctx2 = NULL;
413 # endif
414 # ifdef FIONBIO
415     s_nbio = 0;
416 # endif
417     s_nbio_test = 0;
418     ctx = NULL;
419     www = 0;
420
421     bio_s_out = NULL;
422     s_debug = 0;
423     s_msg = 0;
424     s_quiet = 0;
425     s_brief = 0;
426     hack = 0;
427 # ifndef OPENSSL_NO_ENGINE
428     engine_id = NULL;
429 # endif
430 }
431 #endif
432
433 static void sv_usage(void)
434 {
435     BIO_printf(bio_err, "usage: s_server [args ...]\n");
436     BIO_printf(bio_err, "\n");
437     BIO_printf(bio_err,
438                " -accept port  - TCP/IP port to accept on (default is %d)\n",
439                PORT);
440     BIO_printf(bio_err, " -unix path    - unix domain socket to accept on\n");
441     BIO_printf(bio_err,
442                " -unlink       - for -unix, unlink existing socket first\n");
443     BIO_printf(bio_err, " -context arg  - set session ID context\n");
444     BIO_printf(bio_err,
445                " -verify arg   - turn on peer certificate verification\n");
446     BIO_printf(bio_err,
447                " -Verify arg   - turn on peer certificate verification, must have a cert.\n");
448     BIO_printf(bio_err,
449                " -verify_return_error - return verification errors\n");
450     BIO_printf(bio_err, " -cert arg     - certificate file to use\n");
451     BIO_printf(bio_err, "                 (default is %s)\n", TEST_CERT);
452     BIO_printf(bio_err,
453                " -naccept arg  - terminate after 'arg' connections\n");
454 #ifndef OPENSSL_NO_TLSEXT
455     BIO_printf(bio_err,
456                " -serverinfo arg - PEM serverinfo file for certificate\n");
457 #endif
458     BIO_printf(bio_err,
459                " -no_resumption_on_reneg - set SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION flag\n");
460     BIO_printf(bio_err,
461                " -crl_check    - check the peer certificate has not been revoked by its CA.\n"
462                "                 The CRL(s) are appended to the certificate file\n");
463     BIO_printf(bio_err,
464                " -crl_check_all - check the peer certificate has not been revoked by its CA\n"
465                "                 or any other CRL in the CA chain. CRL(s) are appened to the\n"
466                "                 the certificate file.\n");
467     BIO_printf(bio_err,
468                " -certform arg - certificate format (PEM or DER) PEM default\n");
469     BIO_printf(bio_err,
470                " -key arg      - Private Key file to use, in cert file if\n");
471     BIO_printf(bio_err, "                 not specified (default is %s)\n",
472                TEST_CERT);
473     BIO_printf(bio_err,
474                " -keyform arg  - key format (PEM, DER or ENGINE) PEM default\n");
475     BIO_printf(bio_err,
476                " -pass arg     - private key file pass phrase source\n");
477     BIO_printf(bio_err,
478                " -dcert arg    - second certificate file to use (usually for DSA)\n");
479     BIO_printf(bio_err,
480                " -dcertform x  - second certificate format (PEM or DER) PEM default\n");
481     BIO_printf(bio_err,
482                " -dkey arg     - second private key file to use (usually for DSA)\n");
483     BIO_printf(bio_err,
484                " -dkeyform arg - second key format (PEM, DER or ENGINE) PEM default\n");
485     BIO_printf(bio_err,
486                " -dpass arg    - second private key file pass phrase source\n");
487     BIO_printf(bio_err,
488                " -dhparam arg  - DH parameter file to use, in cert file if not specified\n");
489     BIO_printf(bio_err,
490                "                 or a default set of parameters is used\n");
491 #ifndef OPENSSL_NO_ECDH
492     BIO_printf(bio_err,
493                " -named_curve arg  - Elliptic curve name to use for ephemeral ECDH keys.\n"
494                "                 Use \"openssl ecparam -list_curves\" for all names\n"
495                "                 (default is nistp256).\n");
496 #endif
497 #ifdef FIONBIO
498     BIO_printf(bio_err, " -nbio         - Run with non-blocking IO\n");
499 #endif
500     BIO_printf(bio_err,
501                " -nbio_test    - test with the non-blocking test bio\n");
502     BIO_printf(bio_err,
503                " -crlf         - convert LF from terminal into CRLF\n");
504     BIO_printf(bio_err, " -debug        - Print more output\n");
505     BIO_printf(bio_err, " -msg          - Show protocol messages\n");
506     BIO_printf(bio_err, " -state        - Print the SSL states\n");
507     BIO_printf(bio_err, " -CApath arg   - PEM format directory of CA's\n");
508     BIO_printf(bio_err, " -CAfile arg   - PEM format file of CA's\n");
509     BIO_printf(bio_err,
510                " -trusted_first - Use locally trusted CA's first when building trust chain\n");
511     BIO_printf(bio_err,
512                " -nocert       - Don't use any certificates (Anon-DH)\n");
513     BIO_printf(bio_err,
514                " -cipher arg   - play with 'openssl ciphers' to see what goes here\n");
515     BIO_printf(bio_err, " -serverpref   - Use server's cipher preferences\n");
516     BIO_printf(bio_err, " -quiet        - No server output\n");
517     BIO_printf(bio_err, " -no_tmp_rsa   - Do not generate a tmp RSA key\n");
518 #ifndef OPENSSL_NO_PSK
519     BIO_printf(bio_err, " -psk_hint arg - PSK identity hint to use\n");
520     BIO_printf(bio_err, " -psk arg      - PSK in hex (without 0x)\n");
521 # ifndef OPENSSL_NO_JPAKE
522     BIO_printf(bio_err, " -jpake arg    - JPAKE secret to use\n");
523 # endif
524 #endif
525 #ifndef OPENSSL_NO_SRP
526     BIO_printf(bio_err, " -srpvfile file      - The verifier file for SRP\n");
527     BIO_printf(bio_err,
528                " -srpuserseed string - A seed string for a default user salt.\n");
529 #endif
530 #ifndef OPENSSL_NO_SSL3_METHOD
531     BIO_printf(bio_err, " -ssl3         - Just talk SSLv3\n");
532 #endif
533     BIO_printf(bio_err, " -tls1_2       - Just talk TLSv1.2\n");
534     BIO_printf(bio_err, " -tls1_1       - Just talk TLSv1.1\n");
535     BIO_printf(bio_err, " -tls1         - Just talk TLSv1\n");
536     BIO_printf(bio_err, " -dtls1        - Just talk DTLSv1\n");
537     BIO_printf(bio_err, " -dtls1_2      - Just talk DTLSv1.2\n");
538     BIO_printf(bio_err, " -timeout      - Enable timeouts\n");
539     BIO_printf(bio_err, " -mtu          - Set link layer MTU\n");
540     BIO_printf(bio_err, " -chain        - Read a certificate chain\n");
541     BIO_printf(bio_err, " -no_ssl3      - Just disable SSLv3\n");
542     BIO_printf(bio_err, " -no_tls1      - Just disable TLSv1\n");
543     BIO_printf(bio_err, " -no_tls1_1    - Just disable TLSv1.1\n");
544     BIO_printf(bio_err, " -no_tls1_2    - Just disable TLSv1.2\n");
545 #ifndef OPENSSL_NO_DH
546     BIO_printf(bio_err, " -no_dhe       - Disable ephemeral DH\n");
547 #endif
548 #ifndef OPENSSL_NO_ECDH
549     BIO_printf(bio_err, " -no_ecdhe     - Disable ephemeral ECDH\n");
550 #endif
551     BIO_printf(bio_err,
552                "-no_resume_ephemeral - Disable caching and tickets if ephemeral (EC)DH is used\n");
553     BIO_printf(bio_err, " -bugs         - Turn on SSL bug compatibility\n");
554     BIO_printf(bio_err,
555                " -hack         - workaround for early Netscape code\n");
556     BIO_printf(bio_err,
557                " -www          - Respond to a 'GET /' with a status page\n");
558     BIO_printf(bio_err,
559                " -WWW          - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
560     BIO_printf(bio_err,
561                " -HTTP         - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
562     BIO_printf(bio_err,
563                "                 with the assumption it contains a complete HTTP response.\n");
564 #ifndef OPENSSL_NO_ENGINE
565     BIO_printf(bio_err,
566                " -engine id    - Initialise and use the specified engine\n");
567 #endif
568     BIO_printf(bio_err,
569                " -id_prefix arg - Generate SSL/TLS session IDs prefixed by 'arg'\n");
570     BIO_printf(bio_err, " -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR,
571                LIST_SEPARATOR_CHAR);
572 #ifndef OPENSSL_NO_TLSEXT
573     BIO_printf(bio_err,
574                " -servername host - servername for HostName TLS extension\n");
575     BIO_printf(bio_err,
576                " -servername_fatal - on mismatch send fatal alert (default warning alert)\n");
577     BIO_printf(bio_err,
578                " -cert2 arg    - certificate file to use for servername\n");
579     BIO_printf(bio_err, "                 (default is %s)\n", TEST_CERT2);
580     BIO_printf(bio_err,
581                " -key2 arg     - Private Key file to use for servername, in cert file if\n");
582     BIO_printf(bio_err, "                 not specified (default is %s)\n",
583                TEST_CERT2);
584     BIO_printf(bio_err,
585                " -tlsextdebug  - hex dump of all TLS extensions received\n");
586     BIO_printf(bio_err,
587                " -no_ticket    - disable use of RFC4507bis session tickets\n");
588     BIO_printf(bio_err,
589                " -legacy_renegotiation - enable use of legacy renegotiation (dangerous)\n");
590 # ifndef OPENSSL_NO_NEXTPROTONEG
591     BIO_printf(bio_err,
592                " -nextprotoneg arg - set the advertised protocols for the NPN extension (comma-separated list)\n");
593 # endif
594 # ifndef OPENSSL_NO_SRTP
595     BIO_printf(bio_err,
596                " -use_srtp profiles - Offer SRTP key management with a colon-separated profile list\n");
597 # endif
598     BIO_printf(bio_err,
599                " -alpn arg  - set the advertised protocols for the ALPN extension (comma-separated list)\n");
600 #endif
601     BIO_printf(bio_err,
602                " -keymatexport label   - Export keying material using label\n");
603     BIO_printf(bio_err,
604                " -keymatexportlen len  - Export len bytes of keying material (default 20)\n");
605     BIO_printf(bio_err,
606                " -status           - respond to certificate status requests\n");
607     BIO_printf(bio_err,
608                " -status_verbose   - enable status request verbose printout\n");
609     BIO_printf(bio_err,
610                " -status_timeout n - status request responder timeout\n");
611     BIO_printf(bio_err, " -status_url URL   - status request fallback URL\n");
612 }
613
614 static int local_argc = 0;
615 static char **local_argv;
616
617 #ifdef CHARSET_EBCDIC
618 static int ebcdic_new(BIO *bi);
619 static int ebcdic_free(BIO *a);
620 static int ebcdic_read(BIO *b, char *out, int outl);
621 static int ebcdic_write(BIO *b, const char *in, int inl);
622 static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr);
623 static int ebcdic_gets(BIO *bp, char *buf, int size);
624 static int ebcdic_puts(BIO *bp, const char *str);
625
626 # define BIO_TYPE_EBCDIC_FILTER  (18|0x0200)
627 static BIO_METHOD methods_ebcdic = {
628     BIO_TYPE_EBCDIC_FILTER,
629     "EBCDIC/ASCII filter",
630     ebcdic_write,
631     ebcdic_read,
632     ebcdic_puts,
633     ebcdic_gets,
634     ebcdic_ctrl,
635     ebcdic_new,
636     ebcdic_free,
637 };
638
639 typedef struct {
640     size_t alloced;
641     char buff[1];
642 } EBCDIC_OUTBUFF;
643
644 BIO_METHOD *BIO_f_ebcdic_filter()
645 {
646     return (&methods_ebcdic);
647 }
648
649 static int ebcdic_new(BIO *bi)
650 {
651     EBCDIC_OUTBUFF *wbuf;
652
653     wbuf = (EBCDIC_OUTBUFF *) OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF) + 1024);
654     wbuf->alloced = 1024;
655     wbuf->buff[0] = '\0';
656
657     bi->ptr = (char *)wbuf;
658     bi->init = 1;
659     bi->flags = 0;
660     return (1);
661 }
662
663 static int ebcdic_free(BIO *a)
664 {
665     if (a == NULL)
666         return (0);
667     if (a->ptr != NULL)
668         OPENSSL_free(a->ptr);
669     a->ptr = NULL;
670     a->init = 0;
671     a->flags = 0;
672     return (1);
673 }
674
675 static int ebcdic_read(BIO *b, char *out, int outl)
676 {
677     int ret = 0;
678
679     if (out == NULL || outl == 0)
680         return (0);
681     if (b->next_bio == NULL)
682         return (0);
683
684     ret = BIO_read(b->next_bio, out, outl);
685     if (ret > 0)
686         ascii2ebcdic(out, out, ret);
687     return (ret);
688 }
689
690 static int ebcdic_write(BIO *b, const char *in, int inl)
691 {
692     EBCDIC_OUTBUFF *wbuf;
693     int ret = 0;
694     int num;
695     unsigned char n;
696
697     if ((in == NULL) || (inl <= 0))
698         return (0);
699     if (b->next_bio == NULL)
700         return (0);
701
702     wbuf = (EBCDIC_OUTBUFF *) b->ptr;
703
704     if (inl > (num = wbuf->alloced)) {
705         num = num + num;        /* double the size */
706         if (num < inl)
707             num = inl;
708         OPENSSL_free(wbuf);
709         wbuf =
710             (EBCDIC_OUTBUFF *) OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF) + num);
711
712         wbuf->alloced = num;
713         wbuf->buff[0] = '\0';
714
715         b->ptr = (char *)wbuf;
716     }
717
718     ebcdic2ascii(wbuf->buff, in, inl);
719
720     ret = BIO_write(b->next_bio, wbuf->buff, inl);
721
722     return (ret);
723 }
724
725 static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr)
726 {
727     long ret;
728
729     if (b->next_bio == NULL)
730         return (0);
731     switch (cmd) {
732     case BIO_CTRL_DUP:
733         ret = 0L;
734         break;
735     default:
736         ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
737         break;
738     }
739     return (ret);
740 }
741
742 static int ebcdic_gets(BIO *bp, char *buf, int size)
743 {
744     int i, ret = 0;
745     if (bp->next_bio == NULL)
746         return (0);
747 /*      return(BIO_gets(bp->next_bio,buf,size));*/
748     for (i = 0; i < size - 1; ++i) {
749         ret = ebcdic_read(bp, &buf[i], 1);
750         if (ret <= 0)
751             break;
752         else if (buf[i] == '\n') {
753             ++i;
754             break;
755         }
756     }
757     if (i < size)
758         buf[i] = '\0';
759     return (ret < 0 && i == 0) ? ret : i;
760 }
761
762 static int ebcdic_puts(BIO *bp, const char *str)
763 {
764     if (bp->next_bio == NULL)
765         return (0);
766     return ebcdic_write(bp, str, strlen(str));
767 }
768 #endif
769
770 #ifndef OPENSSL_NO_TLSEXT
771
772 /* This is a context that we pass to callbacks */
773 typedef struct tlsextctx_st {
774     char *servername;
775     BIO *biodebug;
776     int extension_error;
777 } tlsextctx;
778
779 static int ssl_servername_cb(SSL *s, int *ad, void *arg)
780 {
781     tlsextctx *p = (tlsextctx *) arg;
782     const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
783     if (servername && p->biodebug)
784         BIO_printf(p->biodebug, "Hostname in TLS extension: \"%s\"\n",
785                    servername);
786
787     if (!p->servername)
788         return SSL_TLSEXT_ERR_NOACK;
789
790     if (servername) {
791         if (strcasecmp(servername, p->servername))
792             return p->extension_error;
793         if (ctx2) {
794             BIO_printf(p->biodebug, "Switching server context.\n");
795             SSL_set_SSL_CTX(s, ctx2);
796         }
797     }
798     return SSL_TLSEXT_ERR_OK;
799 }
800
801 /* Structure passed to cert status callback */
802
803 typedef struct tlsextstatusctx_st {
804     /* Default responder to use */
805     char *host, *path, *port;
806     int use_ssl;
807     int timeout;
808     BIO *err;
809     int verbose;
810 } tlsextstatusctx;
811
812 static tlsextstatusctx tlscstatp = { NULL, NULL, NULL, 0, -1, NULL, 0 };
813
814 /*
815  * Certificate Status callback. This is called when a client includes a
816  * certificate status request extension. This is a simplified version. It
817  * examines certificates each time and makes one OCSP responder query for
818  * each request. A full version would store details such as the OCSP
819  * certificate IDs and minimise the number of OCSP responses by caching them
820  * until they were considered "expired".
821  */
822
823 static int cert_status_cb(SSL *s, void *arg)
824 {
825     tlsextstatusctx *srctx = arg;
826     BIO *err = srctx->err;
827     char *host, *port, *path;
828     int use_ssl;
829     unsigned char *rspder = NULL;
830     int rspderlen;
831     STACK_OF(OPENSSL_STRING) *aia = NULL;
832     X509 *x = NULL;
833     X509_STORE_CTX inctx;
834     X509_OBJECT obj;
835     OCSP_REQUEST *req = NULL;
836     OCSP_RESPONSE *resp = NULL;
837     OCSP_CERTID *id = NULL;
838     STACK_OF(X509_EXTENSION) *exts;
839     int ret = SSL_TLSEXT_ERR_NOACK;
840     int i;
841 # if 0
842     STACK_OF(OCSP_RESPID) *ids;
843     SSL_get_tlsext_status_ids(s, &ids);
844     BIO_printf(err, "cert_status: received %d ids\n",
845                sk_OCSP_RESPID_num(ids));
846 # endif
847     if (srctx->verbose)
848         BIO_puts(err, "cert_status: callback called\n");
849     /* Build up OCSP query from server certificate */
850     x = SSL_get_certificate(s);
851     aia = X509_get1_ocsp(x);
852     if (aia) {
853         if (!OCSP_parse_url(sk_OPENSSL_STRING_value(aia, 0),
854                             &host, &port, &path, &use_ssl)) {
855             BIO_puts(err, "cert_status: can't parse AIA URL\n");
856             goto err;
857         }
858         if (srctx->verbose)
859             BIO_printf(err, "cert_status: AIA URL: %s\n",
860                        sk_OPENSSL_STRING_value(aia, 0));
861     } else {
862         if (!srctx->host) {
863             BIO_puts(srctx->err,
864                      "cert_status: no AIA and no default responder URL\n");
865             goto done;
866         }
867         host = srctx->host;
868         path = srctx->path;
869         port = srctx->port;
870         use_ssl = srctx->use_ssl;
871     }
872
873     if (!X509_STORE_CTX_init(&inctx,
874                              SSL_CTX_get_cert_store(SSL_get_SSL_CTX(s)),
875                              NULL, NULL))
876         goto err;
877     if (X509_STORE_get_by_subject(&inctx, X509_LU_X509,
878                                   X509_get_issuer_name(x), &obj) <= 0) {
879         BIO_puts(err, "cert_status: Can't retrieve issuer certificate.\n");
880         X509_STORE_CTX_cleanup(&inctx);
881         goto done;
882     }
883     req = OCSP_REQUEST_new();
884     if (!req)
885         goto err;
886     id = OCSP_cert_to_id(NULL, x, obj.data.x509);
887     X509_free(obj.data.x509);
888     X509_STORE_CTX_cleanup(&inctx);
889     if (!id)
890         goto err;
891     if (!OCSP_request_add0_id(req, id))
892         goto err;
893     id = NULL;
894     /* Add any extensions to the request */
895     SSL_get_tlsext_status_exts(s, &exts);
896     for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
897         X509_EXTENSION *ext = sk_X509_EXTENSION_value(exts, i);
898         if (!OCSP_REQUEST_add_ext(req, ext, -1))
899             goto err;
900     }
901     resp = process_responder(err, req, host, path, port, use_ssl, NULL,
902                              srctx->timeout);
903     if (!resp) {
904         BIO_puts(err, "cert_status: error querying responder\n");
905         goto done;
906     }
907     rspderlen = i2d_OCSP_RESPONSE(resp, &rspder);
908     if (rspderlen <= 0)
909         goto err;
910     SSL_set_tlsext_status_ocsp_resp(s, rspder, rspderlen);
911     if (srctx->verbose) {
912         BIO_puts(err, "cert_status: ocsp response sent:\n");
913         OCSP_RESPONSE_print(err, resp, 2);
914     }
915     ret = SSL_TLSEXT_ERR_OK;
916  done:
917     if (ret != SSL_TLSEXT_ERR_OK)
918         ERR_print_errors(err);
919     if (aia) {
920         OPENSSL_free(host);
921         OPENSSL_free(path);
922         OPENSSL_free(port);
923         X509_email_free(aia);
924     }
925     if (id)
926         OCSP_CERTID_free(id);
927     if (req)
928         OCSP_REQUEST_free(req);
929     if (resp)
930         OCSP_RESPONSE_free(resp);
931     return ret;
932  err:
933     ret = SSL_TLSEXT_ERR_ALERT_FATAL;
934     goto done;
935 }
936
937 # ifndef OPENSSL_NO_NEXTPROTONEG
938 /* This is the context that we pass to next_proto_cb */
939 typedef struct tlsextnextprotoctx_st {
940     unsigned char *data;
941     unsigned int len;
942 } tlsextnextprotoctx;
943
944 static int next_proto_cb(SSL *s, const unsigned char **data,
945                          unsigned int *len, void *arg)
946 {
947     tlsextnextprotoctx *next_proto = arg;
948
949     *data = next_proto->data;
950     *len = next_proto->len;
951
952     return SSL_TLSEXT_ERR_OK;
953 }
954 # endif                         /* ndef OPENSSL_NO_NEXTPROTONEG */
955
956 /* This the context that we pass to alpn_cb */
957 typedef struct tlsextalpnctx_st {
958     unsigned char *data;
959     unsigned short len;
960 } tlsextalpnctx;
961
962 static int alpn_cb(SSL *s, const unsigned char **out, unsigned char *outlen,
963                    const unsigned char *in, unsigned int inlen, void *arg)
964 {
965     tlsextalpnctx *alpn_ctx = arg;
966
967     if (!s_quiet) {
968         /* We can assume that |in| is syntactically valid. */
969         unsigned i;
970         BIO_printf(bio_s_out, "ALPN protocols advertised by the client: ");
971         for (i = 0; i < inlen;) {
972             if (i)
973                 BIO_write(bio_s_out, ", ", 2);
974             BIO_write(bio_s_out, &in[i + 1], in[i]);
975             i += in[i] + 1;
976         }
977         BIO_write(bio_s_out, "\n", 1);
978     }
979
980     if (SSL_select_next_proto
981         ((unsigned char **)out, outlen, alpn_ctx->data, alpn_ctx->len, in,
982          inlen) != OPENSSL_NPN_NEGOTIATED) {
983         return SSL_TLSEXT_ERR_NOACK;
984     }
985
986     if (!s_quiet) {
987         BIO_printf(bio_s_out, "ALPN protocols selected: ");
988         BIO_write(bio_s_out, *out, *outlen);
989         BIO_write(bio_s_out, "\n", 1);
990     }
991
992     return SSL_TLSEXT_ERR_OK;
993 }
994 #endif                          /* ndef OPENSSL_NO_TLSEXT */
995
996 static int not_resumable_sess_cb(SSL *s, int is_forward_secure)
997 {
998     /* disable resumption for sessions with forward secure ciphers */
999     return is_forward_secure;
1000 }
1001
1002 int MAIN(int, char **);
1003
1004 #ifndef OPENSSL_NO_JPAKE
1005 static char *jpake_secret = NULL;
1006 # define no_jpake !jpake_secret
1007 #else
1008 # define no_jpake 1
1009 #endif
1010 #ifndef OPENSSL_NO_SRP
1011 static srpsrvparm srp_callback_parm;
1012 #endif
1013 #ifndef OPENSSL_NO_SRTP
1014 static char *srtp_profiles = NULL;
1015 #endif
1016
1017 int MAIN(int argc, char *argv[])
1018 {
1019     X509_VERIFY_PARAM *vpm = NULL;
1020     int badarg = 0;
1021     short port = PORT;
1022     const char *unix_path = NULL;
1023 #ifndef NO_SYS_UN_H
1024     int unlink_unix_path = 0;
1025 #endif
1026     int (*server_cb) (char *hostname, int s, int stype,
1027                       unsigned char *context);
1028     char *CApath = NULL, *CAfile = NULL;
1029     char *chCApath = NULL, *chCAfile = NULL;
1030     char *vfyCApath = NULL, *vfyCAfile = NULL;
1031     unsigned char *context = NULL;
1032     char *dhfile = NULL;
1033     int badop = 0;
1034     int ret = 1;
1035     int build_chain = 0;
1036     int no_tmp_rsa = 0, no_dhe = 0, no_ecdhe = 0, nocert = 0;
1037     int state = 0;
1038     const SSL_METHOD *meth = NULL;
1039     int socket_type = SOCK_STREAM;
1040     ENGINE *e = NULL;
1041     char *inrand = NULL;
1042     int s_cert_format = FORMAT_PEM, s_key_format = FORMAT_PEM;
1043     char *passarg = NULL, *pass = NULL;
1044     char *dpassarg = NULL, *dpass = NULL;
1045     int s_dcert_format = FORMAT_PEM, s_dkey_format = FORMAT_PEM;
1046     X509 *s_cert = NULL, *s_dcert = NULL;
1047     STACK_OF(X509) *s_chain = NULL, *s_dchain = NULL;
1048     EVP_PKEY *s_key = NULL, *s_dkey = NULL;
1049     int no_cache = 0, ext_cache = 0;
1050     int rev = 0, naccept = -1;
1051     int sdebug = 0;
1052 #ifndef OPENSSL_NO_TLSEXT
1053     EVP_PKEY *s_key2 = NULL;
1054     X509 *s_cert2 = NULL;
1055     tlsextctx tlsextcbp = { NULL, NULL, SSL_TLSEXT_ERR_ALERT_WARNING };
1056 # ifndef OPENSSL_NO_NEXTPROTONEG
1057     const char *next_proto_neg_in = NULL;
1058     tlsextnextprotoctx next_proto = { NULL, 0 };
1059 # endif
1060     const char *alpn_in = NULL;
1061     tlsextalpnctx alpn_ctx = { NULL, 0 };
1062 #endif
1063 #ifndef OPENSSL_NO_PSK
1064     /* by default do not send a PSK identity hint */
1065     static char *psk_identity_hint = NULL;
1066 #endif
1067 #ifndef OPENSSL_NO_SRP
1068     char *srpuserseed = NULL;
1069     char *srp_verifier_file = NULL;
1070 #endif
1071     SSL_EXCERT *exc = NULL;
1072     SSL_CONF_CTX *cctx = NULL;
1073     STACK_OF(OPENSSL_STRING) *ssl_args = NULL;
1074
1075     char *crl_file = NULL;
1076     int crl_format = FORMAT_PEM;
1077     int crl_download = 0;
1078     STACK_OF(X509_CRL) *crls = NULL;
1079
1080     meth = SSLv23_server_method();
1081
1082     local_argc = argc;
1083     local_argv = argv;
1084
1085     apps_startup();
1086 #ifdef MONOLITH
1087     s_server_init();
1088 #endif
1089
1090     if (bio_err == NULL)
1091         bio_err = BIO_new_fp(stderr, BIO_NOCLOSE);
1092
1093     if (!load_config(bio_err, NULL))
1094         goto end;
1095
1096     cctx = SSL_CONF_CTX_new();
1097     if (!cctx)
1098         goto end;
1099     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER);
1100     SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CMDLINE);
1101
1102     verify_depth = 0;
1103 #ifdef FIONBIO
1104     s_nbio = 0;
1105 #endif
1106     s_nbio_test = 0;
1107
1108     argc--;
1109     argv++;
1110
1111     while (argc >= 1) {
1112         if ((strcmp(*argv, "-port") == 0) || (strcmp(*argv, "-accept") == 0)) {
1113             if (--argc < 1)
1114                 goto bad;
1115             if (!extract_port(*(++argv), &port))
1116                 goto bad;
1117         } else if (strcmp(*argv, "-unix") == 0) {
1118 #ifdef NO_SYS_UN_H
1119             BIO_printf(bio_err, "unix domain sockets unsupported\n");
1120             goto bad;
1121 #else
1122             if (--argc < 1)
1123                 goto bad;
1124             unix_path = *(++argv);
1125 #endif
1126         } else if (strcmp(*argv, "-unlink") == 0) {
1127 #ifdef NO_SYS_UN_H
1128             BIO_printf(bio_err, "unix domain sockets unsupported\n");
1129             goto bad;
1130 #else
1131             unlink_unix_path = 1;
1132 #endif
1133         } else if (strcmp(*argv, "-naccept") == 0) {
1134             if (--argc < 1)
1135                 goto bad;
1136             naccept = atol(*(++argv));
1137             if (naccept <= 0) {
1138                 BIO_printf(bio_err, "bad accept value %s\n", *argv);
1139                 goto bad;
1140             }
1141         } else if (strcmp(*argv, "-verify") == 0) {
1142             s_server_verify = SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE;
1143             if (--argc < 1)
1144                 goto bad;
1145             verify_depth = atoi(*(++argv));
1146             if (!s_quiet)
1147                 BIO_printf(bio_err, "verify depth is %d\n", verify_depth);
1148         } else if (strcmp(*argv, "-Verify") == 0) {
1149             s_server_verify =
1150                 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT |
1151                 SSL_VERIFY_CLIENT_ONCE;
1152             if (--argc < 1)
1153                 goto bad;
1154             verify_depth = atoi(*(++argv));
1155             if (!s_quiet)
1156                 BIO_printf(bio_err,
1157                            "verify depth is %d, must return a certificate\n",
1158                            verify_depth);
1159         } else if (strcmp(*argv, "-context") == 0) {
1160             if (--argc < 1)
1161                 goto bad;
1162             context = (unsigned char *)*(++argv);
1163         } else if (strcmp(*argv, "-cert") == 0) {
1164             if (--argc < 1)
1165                 goto bad;
1166             s_cert_file = *(++argv);
1167         } else if (strcmp(*argv, "-CRL") == 0) {
1168             if (--argc < 1)
1169                 goto bad;
1170             crl_file = *(++argv);
1171         } else if (strcmp(*argv, "-crl_download") == 0)
1172             crl_download = 1;
1173 #ifndef OPENSSL_NO_TLSEXT
1174         else if (strcmp(*argv, "-serverinfo") == 0) {
1175             if (--argc < 1)
1176                 goto bad;
1177             s_serverinfo_file = *(++argv);
1178         }
1179 #endif
1180         else if (strcmp(*argv, "-certform") == 0) {
1181             if (--argc < 1)
1182                 goto bad;
1183             s_cert_format = str2fmt(*(++argv));
1184         } else if (strcmp(*argv, "-key") == 0) {
1185             if (--argc < 1)
1186                 goto bad;
1187             s_key_file = *(++argv);
1188         } else if (strcmp(*argv, "-keyform") == 0) {
1189             if (--argc < 1)
1190                 goto bad;
1191             s_key_format = str2fmt(*(++argv));
1192         } else if (strcmp(*argv, "-pass") == 0) {
1193             if (--argc < 1)
1194                 goto bad;
1195             passarg = *(++argv);
1196         } else if (strcmp(*argv, "-cert_chain") == 0) {
1197             if (--argc < 1)
1198                 goto bad;
1199             s_chain_file = *(++argv);
1200         } else if (strcmp(*argv, "-dhparam") == 0) {
1201             if (--argc < 1)
1202                 goto bad;
1203             dhfile = *(++argv);
1204         } else if (strcmp(*argv, "-dcertform") == 0) {
1205             if (--argc < 1)
1206                 goto bad;
1207             s_dcert_format = str2fmt(*(++argv));
1208         } else if (strcmp(*argv, "-dcert") == 0) {
1209             if (--argc < 1)
1210                 goto bad;
1211             s_dcert_file = *(++argv);
1212         } else if (strcmp(*argv, "-dkeyform") == 0) {
1213             if (--argc < 1)
1214                 goto bad;
1215             s_dkey_format = str2fmt(*(++argv));
1216         } else if (strcmp(*argv, "-dpass") == 0) {
1217             if (--argc < 1)
1218                 goto bad;
1219             dpassarg = *(++argv);
1220         } else if (strcmp(*argv, "-dkey") == 0) {
1221             if (--argc < 1)
1222                 goto bad;
1223             s_dkey_file = *(++argv);
1224         } else if (strcmp(*argv, "-dcert_chain") == 0) {
1225             if (--argc < 1)
1226                 goto bad;
1227             s_dchain_file = *(++argv);
1228         } else if (strcmp(*argv, "-nocert") == 0) {
1229             nocert = 1;
1230         } else if (strcmp(*argv, "-CApath") == 0) {
1231             if (--argc < 1)
1232                 goto bad;
1233             CApath = *(++argv);
1234         } else if (strcmp(*argv, "-chainCApath") == 0) {
1235             if (--argc < 1)
1236                 goto bad;
1237             chCApath = *(++argv);
1238         } else if (strcmp(*argv, "-verifyCApath") == 0) {
1239             if (--argc < 1)
1240                 goto bad;
1241             vfyCApath = *(++argv);
1242         } else if (strcmp(*argv, "-no_cache") == 0)
1243             no_cache = 1;
1244         else if (strcmp(*argv, "-ext_cache") == 0)
1245             ext_cache = 1;
1246         else if (strcmp(*argv, "-CRLform") == 0) {
1247             if (--argc < 1)
1248                 goto bad;
1249             crl_format = str2fmt(*(++argv));
1250         } else if (args_verify(&argv, &argc, &badarg, bio_err, &vpm)) {
1251             if (badarg)
1252                 goto bad;
1253             continue;
1254         } else if (args_excert(&argv, &argc, &badarg, bio_err, &exc)) {
1255             if (badarg)
1256                 goto bad;
1257             continue;
1258         } else if (args_ssl(&argv, &argc, cctx, &badarg, bio_err, &ssl_args)) {
1259             if (badarg)
1260                 goto bad;
1261             continue;
1262         } else if (strcmp(*argv, "-verify_return_error") == 0)
1263             verify_return_error = 1;
1264         else if (strcmp(*argv, "-verify_quiet") == 0)
1265             verify_quiet = 1;
1266         else if (strcmp(*argv, "-build_chain") == 0)
1267             build_chain = 1;
1268         else if (strcmp(*argv, "-CAfile") == 0) {
1269             if (--argc < 1)
1270                 goto bad;
1271             CAfile = *(++argv);
1272         } else if (strcmp(*argv, "-chainCAfile") == 0) {
1273             if (--argc < 1)
1274                 goto bad;
1275             chCAfile = *(++argv);
1276         } else if (strcmp(*argv, "-verifyCAfile") == 0) {
1277             if (--argc < 1)
1278                 goto bad;
1279             vfyCAfile = *(++argv);
1280         }
1281 #ifdef FIONBIO
1282         else if (strcmp(*argv, "-nbio") == 0) {
1283             s_nbio = 1;
1284         }
1285 #endif
1286         else if (strcmp(*argv, "-nbio_test") == 0) {
1287 #ifdef FIONBIO
1288             s_nbio = 1;
1289 #endif
1290             s_nbio_test = 1;
1291         } else if (strcmp(*argv, "-ign_eof") == 0)
1292             s_ign_eof = 1;
1293         else if (strcmp(*argv, "-no_ign_eof") == 0)
1294             s_ign_eof = 0;
1295         else if (strcmp(*argv, "-debug") == 0) {
1296             s_debug = 1;
1297         }
1298 #ifndef OPENSSL_NO_TLSEXT
1299         else if (strcmp(*argv, "-tlsextdebug") == 0)
1300             s_tlsextdebug = 1;
1301         else if (strcmp(*argv, "-status") == 0)
1302             s_tlsextstatus = 1;
1303         else if (strcmp(*argv, "-status_verbose") == 0) {
1304             s_tlsextstatus = 1;
1305             tlscstatp.verbose = 1;
1306         } else if (!strcmp(*argv, "-status_timeout")) {
1307             s_tlsextstatus = 1;
1308             if (--argc < 1)
1309                 goto bad;
1310             tlscstatp.timeout = atoi(*(++argv));
1311         } else if (!strcmp(*argv, "-status_url")) {
1312             s_tlsextstatus = 1;
1313             if (--argc < 1)
1314                 goto bad;
1315             if (!OCSP_parse_url(*(++argv),
1316                                 &tlscstatp.host,
1317                                 &tlscstatp.port,
1318                                 &tlscstatp.path, &tlscstatp.use_ssl)) {
1319                 BIO_printf(bio_err, "Error parsing URL\n");
1320                 goto bad;
1321             }
1322         }
1323 #endif
1324         else if (strcmp(*argv, "-msg") == 0) {
1325             s_msg = 1;
1326         } else if (strcmp(*argv, "-msgfile") == 0) {
1327             if (--argc < 1)
1328                 goto bad;
1329             bio_s_msg = BIO_new_file(*(++argv), "w");
1330         }
1331 #ifndef OPENSSL_NO_SSL_TRACE
1332         else if (strcmp(*argv, "-trace") == 0) {
1333             s_msg = 2;
1334         }
1335 #endif
1336         else if (strcmp(*argv, "-security_debug") == 0) {
1337             sdebug = 1;
1338         } else if (strcmp(*argv, "-security_debug_verbose") == 0) {
1339             sdebug = 2;
1340         } else if (strcmp(*argv, "-hack") == 0) {
1341             hack = 1;
1342         } else if (strcmp(*argv, "-state") == 0) {
1343             state = 1;
1344         } else if (strcmp(*argv, "-crlf") == 0) {
1345             s_crlf = 1;
1346         } else if (strcmp(*argv, "-quiet") == 0) {
1347             s_quiet = 1;
1348         } else if (strcmp(*argv, "-brief") == 0) {
1349             s_quiet = 1;
1350             s_brief = 1;
1351             verify_quiet = 1;
1352         } else if (strcmp(*argv, "-no_tmp_rsa") == 0) {
1353             no_tmp_rsa = 1;
1354         } else if (strcmp(*argv, "-no_dhe") == 0) {
1355             no_dhe = 1;
1356         } else if (strcmp(*argv, "-no_ecdhe") == 0) {
1357             no_ecdhe = 1;
1358         } else if (strcmp(*argv, "-no_resume_ephemeral") == 0) {
1359             no_resume_ephemeral = 1;
1360         }
1361 #ifndef OPENSSL_NO_PSK
1362         else if (strcmp(*argv, "-psk_hint") == 0) {
1363             if (--argc < 1)
1364                 goto bad;
1365             psk_identity_hint = *(++argv);
1366         } else if (strcmp(*argv, "-psk") == 0) {
1367             size_t i;
1368
1369             if (--argc < 1)
1370                 goto bad;
1371             psk_key = *(++argv);
1372             for (i = 0; i < strlen(psk_key); i++) {
1373                 if (isxdigit((unsigned char)psk_key[i]))
1374                     continue;
1375                 BIO_printf(bio_err, "Not a hex number '%s'\n", *argv);
1376                 goto bad;
1377             }
1378         }
1379 #endif
1380 #ifndef OPENSSL_NO_SRP
1381         else if (strcmp(*argv, "-srpvfile") == 0) {
1382             if (--argc < 1)
1383                 goto bad;
1384             srp_verifier_file = *(++argv);
1385             meth = TLSv1_server_method();
1386         } else if (strcmp(*argv, "-srpuserseed") == 0) {
1387             if (--argc < 1)
1388                 goto bad;
1389             srpuserseed = *(++argv);
1390             meth = TLSv1_server_method();
1391         }
1392 #endif
1393         else if (strcmp(*argv, "-rev") == 0) {
1394             rev = 1;
1395         } else if (strcmp(*argv, "-www") == 0) {
1396             www = 1;
1397         } else if (strcmp(*argv, "-WWW") == 0) {
1398             www = 2;
1399         } else if (strcmp(*argv, "-HTTP") == 0) {
1400             www = 3;
1401         }
1402 #ifndef OPENSSL_NO_SSL3_METHOD
1403         else if (strcmp(*argv, "-ssl3") == 0) {
1404             meth = SSLv3_server_method();
1405         }
1406 #endif
1407 #ifndef OPENSSL_NO_TLS1
1408         else if (strcmp(*argv, "-tls1") == 0) {
1409             meth = TLSv1_server_method();
1410         } else if (strcmp(*argv, "-tls1_1") == 0) {
1411             meth = TLSv1_1_server_method();
1412         } else if (strcmp(*argv, "-tls1_2") == 0) {
1413             meth = TLSv1_2_server_method();
1414         }
1415 #endif
1416 #ifndef OPENSSL_NO_DTLS1
1417         else if (strcmp(*argv, "-dtls") == 0) {
1418             meth = DTLS_server_method();
1419             socket_type = SOCK_DGRAM;
1420         } else if (strcmp(*argv, "-dtls1") == 0) {
1421             meth = DTLSv1_server_method();
1422             socket_type = SOCK_DGRAM;
1423         } else if (strcmp(*argv, "-dtls1_2") == 0) {
1424             meth = DTLSv1_2_server_method();
1425             socket_type = SOCK_DGRAM;
1426         } else if (strcmp(*argv, "-timeout") == 0)
1427             enable_timeouts = 1;
1428         else if (strcmp(*argv, "-mtu") == 0) {
1429             if (--argc < 1)
1430                 goto bad;
1431             socket_mtu = atol(*(++argv));
1432         } else if (strcmp(*argv, "-chain") == 0)
1433             cert_chain = 1;
1434 #endif
1435         else if (strcmp(*argv, "-id_prefix") == 0) {
1436             if (--argc < 1)
1437                 goto bad;
1438             session_id_prefix = *(++argv);
1439         }
1440 #ifndef OPENSSL_NO_ENGINE
1441         else if (strcmp(*argv, "-engine") == 0) {
1442             if (--argc < 1)
1443                 goto bad;
1444             engine_id = *(++argv);
1445         }
1446 #endif
1447         else if (strcmp(*argv, "-rand") == 0) {
1448             if (--argc < 1)
1449                 goto bad;
1450             inrand = *(++argv);
1451         }
1452 #ifndef OPENSSL_NO_TLSEXT
1453         else if (strcmp(*argv, "-servername") == 0) {
1454             if (--argc < 1)
1455                 goto bad;
1456             tlsextcbp.servername = *(++argv);
1457         } else if (strcmp(*argv, "-servername_fatal") == 0) {
1458             tlsextcbp.extension_error = SSL_TLSEXT_ERR_ALERT_FATAL;
1459         } else if (strcmp(*argv, "-cert2") == 0) {
1460             if (--argc < 1)
1461                 goto bad;
1462             s_cert_file2 = *(++argv);
1463         } else if (strcmp(*argv, "-key2") == 0) {
1464             if (--argc < 1)
1465                 goto bad;
1466             s_key_file2 = *(++argv);
1467         }
1468 # ifndef OPENSSL_NO_NEXTPROTONEG
1469         else if (strcmp(*argv, "-nextprotoneg") == 0) {
1470             if (--argc < 1)
1471                 goto bad;
1472             next_proto_neg_in = *(++argv);
1473         }
1474 # endif
1475         else if (strcmp(*argv, "-alpn") == 0) {
1476             if (--argc < 1)
1477                 goto bad;
1478             alpn_in = *(++argv);
1479         }
1480 #endif
1481 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1482         else if (strcmp(*argv, "-jpake") == 0) {
1483             if (--argc < 1)
1484                 goto bad;
1485             jpake_secret = *(++argv);
1486         }
1487 #endif
1488 #ifndef OPENSSL_NO_SRTP
1489         else if (strcmp(*argv, "-use_srtp") == 0) {
1490             if (--argc < 1)
1491                 goto bad;
1492             srtp_profiles = *(++argv);
1493         }
1494 #endif
1495         else if (strcmp(*argv, "-keymatexport") == 0) {
1496             if (--argc < 1)
1497                 goto bad;
1498             keymatexportlabel = *(++argv);
1499         } else if (strcmp(*argv, "-keymatexportlen") == 0) {
1500             if (--argc < 1)
1501                 goto bad;
1502             keymatexportlen = atoi(*(++argv));
1503             if (keymatexportlen == 0)
1504                 goto bad;
1505         } else {
1506             BIO_printf(bio_err, "unknown option %s\n", *argv);
1507             badop = 1;
1508             break;
1509         }
1510         argc--;
1511         argv++;
1512     }
1513     if (badop) {
1514  bad:
1515         sv_usage();
1516         goto end;
1517     }
1518 #ifndef OPENSSL_NO_DTLS1
1519     if (www && socket_type == SOCK_DGRAM) {
1520         BIO_printf(bio_err, "Can't use -HTTP, -www or -WWW with DTLS\n");
1521         goto end;
1522     }
1523 #endif
1524
1525     if (unix_path && (socket_type != SOCK_STREAM)) {
1526         BIO_printf(bio_err,
1527                    "Can't use unix sockets and datagrams together\n");
1528         goto end;
1529     }
1530 #if !defined(OPENSSL_NO_JPAKE) && !defined(OPENSSL_NO_PSK)
1531     if (jpake_secret) {
1532         if (psk_key) {
1533             BIO_printf(bio_err, "Can't use JPAKE and PSK together\n");
1534             goto end;
1535         }
1536         psk_identity = "JPAKE";
1537     }
1538 #endif
1539
1540     SSL_load_error_strings();
1541     OpenSSL_add_ssl_algorithms();
1542
1543 #ifndef OPENSSL_NO_ENGINE
1544     e = setup_engine(bio_err, engine_id, 1);
1545 #endif
1546
1547     if (!app_passwd(bio_err, passarg, dpassarg, &pass, &dpass)) {
1548         BIO_printf(bio_err, "Error getting password\n");
1549         goto end;
1550     }
1551
1552     if (s_key_file == NULL)
1553         s_key_file = s_cert_file;
1554 #ifndef OPENSSL_NO_TLSEXT
1555     if (s_key_file2 == NULL)
1556         s_key_file2 = s_cert_file2;
1557 #endif
1558
1559     if (!load_excert(&exc, bio_err))
1560         goto end;
1561
1562     if (nocert == 0) {
1563         s_key = load_key(bio_err, s_key_file, s_key_format, 0, pass, e,
1564                          "server certificate private key file");
1565         if (!s_key) {
1566             ERR_print_errors(bio_err);
1567             goto end;
1568         }
1569
1570         s_cert = load_cert(bio_err, s_cert_file, s_cert_format,
1571                            NULL, e, "server certificate file");
1572
1573         if (!s_cert) {
1574             ERR_print_errors(bio_err);
1575             goto end;
1576         }
1577         if (s_chain_file) {
1578             s_chain = load_certs(bio_err, s_chain_file, FORMAT_PEM,
1579                                  NULL, e, "server certificate chain");
1580             if (!s_chain)
1581                 goto end;
1582         }
1583 #ifndef OPENSSL_NO_TLSEXT
1584         if (tlsextcbp.servername) {
1585             s_key2 = load_key(bio_err, s_key_file2, s_key_format, 0, pass, e,
1586                               "second server certificate private key file");
1587             if (!s_key2) {
1588                 ERR_print_errors(bio_err);
1589                 goto end;
1590             }
1591
1592             s_cert2 = load_cert(bio_err, s_cert_file2, s_cert_format,
1593                                 NULL, e, "second server certificate file");
1594
1595             if (!s_cert2) {
1596                 ERR_print_errors(bio_err);
1597                 goto end;
1598             }
1599         }
1600 #endif                          /* OPENSSL_NO_TLSEXT */
1601     }
1602 #if !defined(OPENSSL_NO_TLSEXT)
1603 # if !defined(OPENSSL_NO_NEXTPROTONEG)
1604     if (next_proto_neg_in) {
1605         unsigned short len;
1606         next_proto.data = next_protos_parse(&len, next_proto_neg_in);
1607         if (next_proto.data == NULL)
1608             goto end;
1609         next_proto.len = len;
1610     } else {
1611         next_proto.data = NULL;
1612     }
1613 # endif
1614     alpn_ctx.data = NULL;
1615     if (alpn_in) {
1616         unsigned short len;
1617         alpn_ctx.data = next_protos_parse(&len, alpn_in);
1618         if (alpn_ctx.data == NULL)
1619             goto end;
1620         alpn_ctx.len = len;
1621     }
1622 #endif
1623
1624     if (crl_file) {
1625         X509_CRL *crl;
1626         crl = load_crl(crl_file, crl_format);
1627         if (!crl) {
1628             BIO_puts(bio_err, "Error loading CRL\n");
1629             ERR_print_errors(bio_err);
1630             goto end;
1631         }
1632         crls = sk_X509_CRL_new_null();
1633         if (!crls || !sk_X509_CRL_push(crls, crl)) {
1634             BIO_puts(bio_err, "Error adding CRL\n");
1635             ERR_print_errors(bio_err);
1636             X509_CRL_free(crl);
1637             goto end;
1638         }
1639     }
1640
1641     if (s_dcert_file) {
1642
1643         if (s_dkey_file == NULL)
1644             s_dkey_file = s_dcert_file;
1645
1646         s_dkey = load_key(bio_err, s_dkey_file, s_dkey_format,
1647                           0, dpass, e, "second certificate private key file");
1648         if (!s_dkey) {
1649             ERR_print_errors(bio_err);
1650             goto end;
1651         }
1652
1653         s_dcert = load_cert(bio_err, s_dcert_file, s_dcert_format,
1654                             NULL, e, "second server certificate file");
1655
1656         if (!s_dcert) {
1657             ERR_print_errors(bio_err);
1658             goto end;
1659         }
1660         if (s_dchain_file) {
1661             s_dchain = load_certs(bio_err, s_dchain_file, FORMAT_PEM,
1662                                   NULL, e, "second server certificate chain");
1663             if (!s_dchain)
1664                 goto end;
1665         }
1666
1667     }
1668
1669     if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL
1670         && !RAND_status()) {
1671         BIO_printf(bio_err,
1672                    "warning, not much extra random data, consider using the -rand option\n");
1673     }
1674     if (inrand != NULL)
1675         BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
1676                    app_RAND_load_files(inrand));
1677
1678     if (bio_s_out == NULL) {
1679         if (s_quiet && !s_debug) {
1680             bio_s_out = BIO_new(BIO_s_null());
1681             if (s_msg && !bio_s_msg)
1682                 bio_s_msg = BIO_new_fp(stdout, BIO_NOCLOSE);
1683         } else {
1684             if (bio_s_out == NULL)
1685                 bio_s_out = BIO_new_fp(stdout, BIO_NOCLOSE);
1686         }
1687     }
1688 #if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA) || !defined(OPENSSL_NO_ECDSA)
1689     if (nocert)
1690 #endif
1691     {
1692         s_cert_file = NULL;
1693         s_key_file = NULL;
1694         s_dcert_file = NULL;
1695         s_dkey_file = NULL;
1696 #ifndef OPENSSL_NO_TLSEXT
1697         s_cert_file2 = NULL;
1698         s_key_file2 = NULL;
1699 #endif
1700     }
1701
1702     ctx = SSL_CTX_new(meth);
1703     if (sdebug)
1704         ssl_ctx_security_debug(ctx, bio_err, sdebug);
1705     if (ctx == NULL) {
1706         ERR_print_errors(bio_err);
1707         goto end;
1708     }
1709     if (session_id_prefix) {
1710         if (strlen(session_id_prefix) >= 32)
1711             BIO_printf(bio_err,
1712                        "warning: id_prefix is too long, only one new session will be possible\n");
1713         if (!SSL_CTX_set_generate_session_id(ctx, generate_session_id)) {
1714             BIO_printf(bio_err, "error setting 'id_prefix'\n");
1715             ERR_print_errors(bio_err);
1716             goto end;
1717         }
1718         BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1719     }
1720     SSL_CTX_set_quiet_shutdown(ctx, 1);
1721     if (hack)
1722         SSL_CTX_set_options(ctx, SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG);
1723     if (exc)
1724         ssl_ctx_set_excert(ctx, exc);
1725
1726     if (state)
1727         SSL_CTX_set_info_callback(ctx, apps_ssl_info_callback);
1728     if (no_cache)
1729         SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
1730     else if (ext_cache)
1731         init_session_cache_ctx(ctx);
1732     else
1733         SSL_CTX_sess_set_cache_size(ctx, 128);
1734
1735 #ifndef OPENSSL_NO_SRTP
1736     if (srtp_profiles != NULL)
1737         SSL_CTX_set_tlsext_use_srtp(ctx, srtp_profiles);
1738 #endif
1739
1740 #if 0
1741     if (cipher == NULL)
1742         cipher = getenv("SSL_CIPHER");
1743 #endif
1744
1745 #if 0
1746     if (s_cert_file == NULL) {
1747         BIO_printf(bio_err,
1748                    "You must specify a certificate file for the server to use\n");
1749         goto end;
1750     }
1751 #endif
1752
1753     if ((!SSL_CTX_load_verify_locations(ctx, CAfile, CApath)) ||
1754         (!SSL_CTX_set_default_verify_paths(ctx))) {
1755         /* BIO_printf(bio_err,"X509_load_verify_locations\n"); */
1756         ERR_print_errors(bio_err);
1757         /* goto end; */
1758     }
1759     if (vpm)
1760         SSL_CTX_set1_param(ctx, vpm);
1761
1762     ssl_ctx_add_crls(ctx, crls, 0);
1763     if (!args_ssl_call(ctx, bio_err, cctx, ssl_args, no_ecdhe, no_jpake))
1764         goto end;
1765
1766     if (!ssl_load_stores(ctx, vfyCApath, vfyCAfile, chCApath, chCAfile,
1767                          crls, crl_download)) {
1768         BIO_printf(bio_err, "Error loading store locations\n");
1769         ERR_print_errors(bio_err);
1770         goto end;
1771     }
1772 #ifndef OPENSSL_NO_TLSEXT
1773     if (s_cert2) {
1774         ctx2 = SSL_CTX_new(meth);
1775         if (ctx2 == NULL) {
1776             ERR_print_errors(bio_err);
1777             goto end;
1778         }
1779     }
1780
1781     if (ctx2) {
1782         BIO_printf(bio_s_out, "Setting secondary ctx parameters\n");
1783
1784         if (sdebug)
1785             ssl_ctx_security_debug(ctx, bio_err, sdebug);
1786
1787         if (session_id_prefix) {
1788             if (strlen(session_id_prefix) >= 32)
1789                 BIO_printf(bio_err,
1790                            "warning: id_prefix is too long, only one new session will be possible\n");
1791             if (!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) {
1792                 BIO_printf(bio_err, "error setting 'id_prefix'\n");
1793                 ERR_print_errors(bio_err);
1794                 goto end;
1795             }
1796             BIO_printf(bio_err, "id_prefix '%s' set.\n", session_id_prefix);
1797         }
1798         SSL_CTX_set_quiet_shutdown(ctx2, 1);
1799         if (hack)
1800             SSL_CTX_set_options(ctx2, SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG);
1801         if (exc)
1802             ssl_ctx_set_excert(ctx2, exc);
1803
1804         if (state)
1805             SSL_CTX_set_info_callback(ctx2, apps_ssl_info_callback);
1806
1807         if (no_cache)
1808             SSL_CTX_set_session_cache_mode(ctx2, SSL_SESS_CACHE_OFF);
1809         else if (ext_cache)
1810             init_session_cache_ctx(ctx2);
1811         else
1812             SSL_CTX_sess_set_cache_size(ctx2, 128);
1813
1814         if ((!SSL_CTX_load_verify_locations(ctx2, CAfile, CApath)) ||
1815             (!SSL_CTX_set_default_verify_paths(ctx2))) {
1816             ERR_print_errors(bio_err);
1817         }
1818         if (vpm)
1819             SSL_CTX_set1_param(ctx2, vpm);
1820
1821         ssl_ctx_add_crls(ctx2, crls, 0);
1822         if (!args_ssl_call(ctx2, bio_err, cctx, ssl_args, no_ecdhe, no_jpake))
1823             goto end;
1824     }
1825 # ifndef OPENSSL_NO_NEXTPROTONEG
1826     if (next_proto.data)
1827         SSL_CTX_set_next_protos_advertised_cb(ctx, next_proto_cb,
1828                                               &next_proto);
1829 # endif
1830     if (alpn_ctx.data)
1831         SSL_CTX_set_alpn_select_cb(ctx, alpn_cb, &alpn_ctx);
1832 #endif
1833
1834 #ifndef OPENSSL_NO_DH
1835     if (!no_dhe) {
1836         DH *dh = NULL;
1837
1838         if (dhfile)
1839             dh = load_dh_param(dhfile);
1840         else if (s_cert_file)
1841             dh = load_dh_param(s_cert_file);
1842
1843         if (dh != NULL) {
1844             BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1845         } else {
1846             BIO_printf(bio_s_out, "Using default temp DH parameters\n");
1847         }
1848         (void)BIO_flush(bio_s_out);
1849
1850         if (dh == NULL)
1851             SSL_CTX_set_dh_auto(ctx, 1);
1852         else if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
1853             BIO_puts(bio_err, "Error setting temp DH parameters\n");
1854             ERR_print_errors(bio_err);
1855             DH_free(dh);
1856             goto end;
1857         }
1858 # ifndef OPENSSL_NO_TLSEXT
1859         if (ctx2) {
1860             if (!dhfile) {
1861                 DH *dh2 = load_dh_param(s_cert_file2);
1862                 if (dh2 != NULL) {
1863                     BIO_printf(bio_s_out, "Setting temp DH parameters\n");
1864                     (void)BIO_flush(bio_s_out);
1865
1866                     DH_free(dh);
1867                     dh = dh2;
1868                 }
1869             }
1870             if (dh == NULL)
1871                 SSL_CTX_set_dh_auto(ctx2, 1);
1872             else if (!SSL_CTX_set_tmp_dh(ctx2, dh)) {
1873                 BIO_puts(bio_err, "Error setting temp DH parameters\n");
1874                 ERR_print_errors(bio_err);
1875                 DH_free(dh);
1876                 goto end;
1877             }
1878         }
1879 # endif
1880         DH_free(dh);
1881     }
1882 #endif
1883
1884     if (!set_cert_key_stuff(ctx, s_cert, s_key, s_chain, build_chain))
1885         goto end;
1886 #ifndef OPENSSL_NO_TLSEXT
1887     if (s_serverinfo_file != NULL
1888         && !SSL_CTX_use_serverinfo_file(ctx, s_serverinfo_file)) {
1889         ERR_print_errors(bio_err);
1890         goto end;
1891     }
1892 #endif
1893 #ifndef OPENSSL_NO_TLSEXT
1894     if (ctx2 && !set_cert_key_stuff(ctx2, s_cert2, s_key2, NULL, build_chain))
1895         goto end;
1896 #endif
1897     if (s_dcert != NULL) {
1898         if (!set_cert_key_stuff(ctx, s_dcert, s_dkey, s_dchain, build_chain))
1899             goto end;
1900     }
1901 #ifndef OPENSSL_NO_RSA
1902 # if 1
1903     if (!no_tmp_rsa) {
1904         SSL_CTX_set_tmp_rsa_callback(ctx, tmp_rsa_cb);
1905 #  ifndef OPENSSL_NO_TLSEXT
1906         if (ctx2)
1907             SSL_CTX_set_tmp_rsa_callback(ctx2, tmp_rsa_cb);
1908 #  endif
1909     }
1910 # else
1911     if (!no_tmp_rsa && SSL_CTX_need_tmp_RSA(ctx)) {
1912         RSA *rsa;
1913
1914         BIO_printf(bio_s_out, "Generating temp (512 bit) RSA key...");
1915         BIO_flush(bio_s_out);
1916
1917         rsa = RSA_generate_key(512, RSA_F4, NULL);
1918
1919         if (!SSL_CTX_set_tmp_rsa(ctx, rsa)) {
1920             ERR_print_errors(bio_err);
1921             goto end;
1922         }
1923 #  ifndef OPENSSL_NO_TLSEXT
1924         if (ctx2) {
1925             if (!SSL_CTX_set_tmp_rsa(ctx2, rsa)) {
1926                 ERR_print_errors(bio_err);
1927                 goto end;
1928             }
1929         }
1930 #  endif
1931         RSA_free(rsa);
1932         BIO_printf(bio_s_out, "\n");
1933     }
1934 # endif
1935 #endif
1936
1937     if (no_resume_ephemeral) {
1938         SSL_CTX_set_not_resumable_session_callback(ctx,
1939                                                    not_resumable_sess_cb);
1940 #ifndef OPENSSL_NO_TLSEXT
1941         if (ctx2)
1942             SSL_CTX_set_not_resumable_session_callback(ctx2,
1943                                                        not_resumable_sess_cb);
1944 #endif
1945     }
1946 #ifndef OPENSSL_NO_PSK
1947 # ifdef OPENSSL_NO_JPAKE
1948     if (psk_key != NULL)
1949 # else
1950     if (psk_key != NULL || jpake_secret)
1951 # endif
1952     {
1953         if (s_debug)
1954             BIO_printf(bio_s_out,
1955                        "PSK key given or JPAKE in use, setting server callback\n");
1956         SSL_CTX_set_psk_server_callback(ctx, psk_server_cb);
1957     }
1958
1959     if (!SSL_CTX_use_psk_identity_hint(ctx, psk_identity_hint)) {
1960         BIO_printf(bio_err, "error setting PSK identity hint to context\n");
1961         ERR_print_errors(bio_err);
1962         goto end;
1963     }
1964 #endif
1965
1966     SSL_CTX_set_verify(ctx, s_server_verify, verify_callback);
1967     SSL_CTX_set_session_id_context(ctx, (void *)&s_server_session_id_context,
1968                                    sizeof s_server_session_id_context);
1969
1970     /* Set DTLS cookie generation and verification callbacks */
1971     SSL_CTX_set_cookie_generate_cb(ctx, generate_cookie_callback);
1972     SSL_CTX_set_cookie_verify_cb(ctx, verify_cookie_callback);
1973
1974 #ifndef OPENSSL_NO_TLSEXT
1975     if (ctx2) {
1976         SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback);
1977         SSL_CTX_set_session_id_context(ctx2,
1978                                        (void *)&s_server_session_id_context,
1979                                        sizeof s_server_session_id_context);
1980
1981         tlsextcbp.biodebug = bio_s_out;
1982         SSL_CTX_set_tlsext_servername_callback(ctx2, ssl_servername_cb);
1983         SSL_CTX_set_tlsext_servername_arg(ctx2, &tlsextcbp);
1984         SSL_CTX_set_tlsext_servername_callback(ctx, ssl_servername_cb);
1985         SSL_CTX_set_tlsext_servername_arg(ctx, &tlsextcbp);
1986     }
1987 #endif
1988
1989 #ifndef OPENSSL_NO_SRP
1990     if (srp_verifier_file != NULL) {
1991         srp_callback_parm.vb = SRP_VBASE_new(srpuserseed);
1992         srp_callback_parm.user = NULL;
1993         srp_callback_parm.login = NULL;
1994         if ((ret =
1995              SRP_VBASE_init(srp_callback_parm.vb,
1996                             srp_verifier_file)) != SRP_NO_ERROR) {
1997             BIO_printf(bio_err,
1998                        "Cannot initialize SRP verifier file \"%s\":ret=%d\n",
1999                        srp_verifier_file, ret);
2000             goto end;
2001         }
2002         SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback);
2003         SSL_CTX_set_srp_cb_arg(ctx, &srp_callback_parm);
2004         SSL_CTX_set_srp_username_callback(ctx, ssl_srp_server_param_cb);
2005     } else
2006 #endif
2007     if (CAfile != NULL) {
2008         SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(CAfile));
2009 #ifndef OPENSSL_NO_TLSEXT
2010         if (ctx2)
2011             SSL_CTX_set_client_CA_list(ctx2, SSL_load_client_CA_file(CAfile));
2012 #endif
2013     }
2014
2015     BIO_printf(bio_s_out, "ACCEPT\n");
2016     (void)BIO_flush(bio_s_out);
2017     if (rev)
2018         server_cb = rev_body;
2019     else if (www)
2020         server_cb = www_body;
2021     else
2022         server_cb = sv_body;
2023 #ifndef NO_SYS_UN_H
2024     if (unix_path) {
2025         if (unlink_unix_path)
2026             unlink(unix_path);
2027         do_server_unix(unix_path, &accept_socket, server_cb, context,
2028                        naccept);
2029     } else
2030 #endif
2031         do_server(port, socket_type, &accept_socket, server_cb, context,
2032                   naccept);
2033     print_stats(bio_s_out, ctx);
2034     ret = 0;
2035  end:
2036     if (ctx != NULL)
2037         SSL_CTX_free(ctx);
2038     if (s_cert)
2039         X509_free(s_cert);
2040     if (crls)
2041         sk_X509_CRL_pop_free(crls, X509_CRL_free);
2042     if (s_dcert)
2043         X509_free(s_dcert);
2044     if (s_key)
2045         EVP_PKEY_free(s_key);
2046     if (s_dkey)
2047         EVP_PKEY_free(s_dkey);
2048     if (s_chain)
2049         sk_X509_pop_free(s_chain, X509_free);
2050     if (s_dchain)
2051         sk_X509_pop_free(s_dchain, X509_free);
2052     if (pass)
2053         OPENSSL_free(pass);
2054     if (dpass)
2055         OPENSSL_free(dpass);
2056     if (vpm)
2057         X509_VERIFY_PARAM_free(vpm);
2058     free_sessions();
2059 #ifndef OPENSSL_NO_TLSEXT
2060     if (tlscstatp.host)
2061         OPENSSL_free(tlscstatp.host);
2062     if (tlscstatp.port)
2063         OPENSSL_free(tlscstatp.port);
2064     if (tlscstatp.path)
2065         OPENSSL_free(tlscstatp.path);
2066     if (ctx2 != NULL)
2067         SSL_CTX_free(ctx2);
2068     if (s_cert2)
2069         X509_free(s_cert2);
2070     if (s_key2)
2071         EVP_PKEY_free(s_key2);
2072     if (serverinfo_in != NULL)
2073         BIO_free(serverinfo_in);
2074 # ifndef OPENSSL_NO_NEXTPROTONEG
2075     if (next_proto.data)
2076         OPENSSL_free(next_proto.data);
2077 # endif
2078     if (alpn_ctx.data)
2079         OPENSSL_free(alpn_ctx.data);
2080 #endif
2081     ssl_excert_free(exc);
2082     if (ssl_args)
2083         sk_OPENSSL_STRING_free(ssl_args);
2084     if (cctx)
2085         SSL_CONF_CTX_free(cctx);
2086 #ifndef OPENSSL_NO_JPAKE
2087     if (jpake_secret && psk_key)
2088         OPENSSL_free(psk_key);
2089 #endif
2090     if (bio_s_out != NULL) {
2091         BIO_free(bio_s_out);
2092         bio_s_out = NULL;
2093     }
2094     if (bio_s_msg != NULL) {
2095         BIO_free(bio_s_msg);
2096         bio_s_msg = NULL;
2097     }
2098     apps_shutdown();
2099     OPENSSL_EXIT(ret);
2100 }
2101
2102 static void print_stats(BIO *bio, SSL_CTX *ssl_ctx)
2103 {
2104     BIO_printf(bio, "%4ld items in the session cache\n",
2105                SSL_CTX_sess_number(ssl_ctx));
2106     BIO_printf(bio, "%4ld client connects (SSL_connect())\n",
2107                SSL_CTX_sess_connect(ssl_ctx));
2108     BIO_printf(bio, "%4ld client renegotiates (SSL_connect())\n",
2109                SSL_CTX_sess_connect_renegotiate(ssl_ctx));
2110     BIO_printf(bio, "%4ld client connects that finished\n",
2111                SSL_CTX_sess_connect_good(ssl_ctx));
2112     BIO_printf(bio, "%4ld server accepts (SSL_accept())\n",
2113                SSL_CTX_sess_accept(ssl_ctx));
2114     BIO_printf(bio, "%4ld server renegotiates (SSL_accept())\n",
2115                SSL_CTX_sess_accept_renegotiate(ssl_ctx));
2116     BIO_printf(bio, "%4ld server accepts that finished\n",
2117                SSL_CTX_sess_accept_good(ssl_ctx));
2118     BIO_printf(bio, "%4ld session cache hits\n", SSL_CTX_sess_hits(ssl_ctx));
2119     BIO_printf(bio, "%4ld session cache misses\n",
2120                SSL_CTX_sess_misses(ssl_ctx));
2121     BIO_printf(bio, "%4ld session cache timeouts\n",
2122                SSL_CTX_sess_timeouts(ssl_ctx));
2123     BIO_printf(bio, "%4ld callback cache hits\n",
2124                SSL_CTX_sess_cb_hits(ssl_ctx));
2125     BIO_printf(bio, "%4ld cache full overflows (%ld allowed)\n",
2126                SSL_CTX_sess_cache_full(ssl_ctx),
2127                SSL_CTX_sess_get_cache_size(ssl_ctx));
2128 }
2129
2130 static int sv_body(char *hostname, int s, int stype, unsigned char *context)
2131 {
2132     char *buf = NULL;
2133     fd_set readfds;
2134     int ret = 1, width;
2135     int k, i;
2136     unsigned long l;
2137     SSL *con = NULL;
2138     BIO *sbio;
2139 #ifndef OPENSSL_NO_KRB5
2140     KSSL_CTX *kctx;
2141 #endif
2142     struct timeval timeout;
2143 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
2144     struct timeval tv;
2145 #else
2146     struct timeval *timeoutp;
2147 #endif
2148
2149     if ((buf = OPENSSL_malloc(bufsize)) == NULL) {
2150         BIO_printf(bio_err, "out of memory\n");
2151         goto err;
2152     }
2153 #ifdef FIONBIO
2154     if (s_nbio) {
2155         unsigned long sl = 1;
2156
2157         if (!s_quiet)
2158             BIO_printf(bio_err, "turning on non blocking io\n");
2159         if (BIO_socket_ioctl(s, FIONBIO, &sl) < 0)
2160             ERR_print_errors(bio_err);
2161     }
2162 #endif
2163
2164     if (con == NULL) {
2165         con = SSL_new(ctx);
2166 #ifndef OPENSSL_NO_TLSEXT
2167         if (s_tlsextdebug) {
2168             SSL_set_tlsext_debug_callback(con, tlsext_cb);
2169             SSL_set_tlsext_debug_arg(con, bio_s_out);
2170         }
2171         if (s_tlsextstatus) {
2172             SSL_CTX_set_tlsext_status_cb(ctx, cert_status_cb);
2173             tlscstatp.err = bio_err;
2174             SSL_CTX_set_tlsext_status_arg(ctx, &tlscstatp);
2175         }
2176 #endif
2177 #ifndef OPENSSL_NO_KRB5
2178         if ((kctx = kssl_ctx_new()) != NULL) {
2179             SSL_set0_kssl_ctx(con, kctx);
2180             kssl_ctx_setstring(kctx, KSSL_SERVICE, KRB5SVC);
2181             kssl_ctx_setstring(kctx, KSSL_KEYTAB, KRB5KEYTAB);
2182         }
2183 #endif                          /* OPENSSL_NO_KRB5 */
2184         if (context)
2185             SSL_set_session_id_context(con, context, strlen((char *)context));
2186     }
2187     SSL_clear(con);
2188 #if 0
2189 # ifdef TLSEXT_TYPE_opaque_prf_input
2190     SSL_set_tlsext_opaque_prf_input(con, "Test server", 11);
2191 # endif
2192 #endif
2193
2194     if (stype == SOCK_DGRAM) {
2195
2196         sbio = BIO_new_dgram(s, BIO_NOCLOSE);
2197
2198         if (enable_timeouts) {
2199             timeout.tv_sec = 0;
2200             timeout.tv_usec = DGRAM_RCV_TIMEOUT;
2201             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
2202
2203             timeout.tv_sec = 0;
2204             timeout.tv_usec = DGRAM_SND_TIMEOUT;
2205             BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
2206         }
2207
2208         if (socket_mtu) {
2209             if (socket_mtu < DTLS_get_link_min_mtu(con)) {
2210                 BIO_printf(bio_err, "MTU too small. Must be at least %ld\n",
2211                            DTLS_get_link_min_mtu(con));
2212                 ret = -1;
2213                 BIO_free(sbio);
2214                 goto err;
2215             }
2216             SSL_set_options(con, SSL_OP_NO_QUERY_MTU);
2217             if (!DTLS_set_link_mtu(con, socket_mtu)) {
2218                 BIO_printf(bio_err, "Failed to set MTU\n");
2219                 ret = -1;
2220                 BIO_free(sbio);
2221                 goto err;
2222             }
2223         } else
2224             /* want to do MTU discovery */
2225             BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
2226
2227         /* turn on cookie exchange */
2228         SSL_set_options(con, SSL_OP_COOKIE_EXCHANGE);
2229     } else
2230         sbio = BIO_new_socket(s, BIO_NOCLOSE);
2231
2232     if (s_nbio_test) {
2233         BIO *test;
2234
2235         test = BIO_new(BIO_f_nbio_test());
2236         sbio = BIO_push(test, sbio);
2237     }
2238 #ifndef OPENSSL_NO_JPAKE
2239     if (jpake_secret)
2240         jpake_server_auth(bio_s_out, sbio, jpake_secret);
2241 #endif
2242
2243     SSL_set_bio(con, sbio, sbio);
2244     SSL_set_accept_state(con);
2245     /* SSL_set_fd(con,s); */
2246
2247     if (s_debug) {
2248         SSL_set_debug(con, 1);
2249         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2250         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2251     }
2252     if (s_msg) {
2253 #ifndef OPENSSL_NO_SSL_TRACE
2254         if (s_msg == 2)
2255             SSL_set_msg_callback(con, SSL_trace);
2256         else
2257 #endif
2258             SSL_set_msg_callback(con, msg_cb);
2259         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2260     }
2261 #ifndef OPENSSL_NO_TLSEXT
2262     if (s_tlsextdebug) {
2263         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2264         SSL_set_tlsext_debug_arg(con, bio_s_out);
2265     }
2266 #endif
2267
2268     width = s + 1;
2269     for (;;) {
2270         int read_from_terminal;
2271         int read_from_sslcon;
2272
2273         read_from_terminal = 0;
2274         read_from_sslcon = SSL_pending(con);
2275
2276         if (!read_from_sslcon) {
2277             FD_ZERO(&readfds);
2278 #if !defined(OPENSSL_SYS_WINDOWS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_NETWARE)
2279             openssl_fdset(fileno(stdin), &readfds);
2280 #endif
2281             openssl_fdset(s, &readfds);
2282             /*
2283              * Note: under VMS with SOCKETSHR the second parameter is
2284              * currently of type (int *) whereas under other systems it is
2285              * (void *) if you don't have a cast it will choke the compiler:
2286              * if you do have a cast then you can either go for (int *) or
2287              * (void *).
2288              */
2289 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE)
2290             /*
2291              * Under DOS (non-djgpp) and Windows we can't select on stdin:
2292              * only on sockets. As a workaround we timeout the select every
2293              * second and check for any keypress. In a proper Windows
2294              * application we wouldn't do this because it is inefficient.
2295              */
2296             tv.tv_sec = 1;
2297             tv.tv_usec = 0;
2298             i = select(width, (void *)&readfds, NULL, NULL, &tv);
2299             if ((i < 0) || (!i && !_kbhit()))
2300                 continue;
2301             if (_kbhit())
2302                 read_from_terminal = 1;
2303 #else
2304             if ((SSL_version(con) == DTLS1_VERSION) &&
2305                 DTLSv1_get_timeout(con, &timeout))
2306                 timeoutp = &timeout;
2307             else
2308                 timeoutp = NULL;
2309
2310             i = select(width, (void *)&readfds, NULL, NULL, timeoutp);
2311
2312             if ((SSL_version(con) == DTLS1_VERSION)
2313                 && DTLSv1_handle_timeout(con) > 0) {
2314                 BIO_printf(bio_err, "TIMEOUT occurred\n");
2315             }
2316
2317             if (i <= 0)
2318                 continue;
2319             if (FD_ISSET(fileno(stdin), &readfds))
2320                 read_from_terminal = 1;
2321 #endif
2322             if (FD_ISSET(s, &readfds))
2323                 read_from_sslcon = 1;
2324         }
2325         if (read_from_terminal) {
2326             if (s_crlf) {
2327                 int j, lf_num;
2328
2329                 i = raw_read_stdin(buf, bufsize / 2);
2330                 lf_num = 0;
2331                 /* both loops are skipped when i <= 0 */
2332                 for (j = 0; j < i; j++)
2333                     if (buf[j] == '\n')
2334                         lf_num++;
2335                 for (j = i - 1; j >= 0; j--) {
2336                     buf[j + lf_num] = buf[j];
2337                     if (buf[j] == '\n') {
2338                         lf_num--;
2339                         i++;
2340                         buf[j + lf_num] = '\r';
2341                     }
2342                 }
2343                 assert(lf_num == 0);
2344             } else
2345                 i = raw_read_stdin(buf, bufsize);
2346             if (!s_quiet && !s_brief) {
2347                 if ((i <= 0) || (buf[0] == 'Q')) {
2348                     BIO_printf(bio_s_out, "DONE\n");
2349                     SHUTDOWN(s);
2350                     close_accept_socket();
2351                     ret = -11;
2352                     goto err;
2353                 }
2354                 if ((i <= 0) || (buf[0] == 'q')) {
2355                     BIO_printf(bio_s_out, "DONE\n");
2356                     if (SSL_version(con) != DTLS1_VERSION)
2357                         SHUTDOWN(s);
2358                     /*
2359                      * close_accept_socket(); ret= -11;
2360                      */
2361                     goto err;
2362                 }
2363 #ifndef OPENSSL_NO_HEARTBEATS
2364                 if ((buf[0] == 'B') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2365                     BIO_printf(bio_err, "HEARTBEATING\n");
2366                     SSL_heartbeat(con);
2367                     i = 0;
2368                     continue;
2369                 }
2370 #endif
2371                 if ((buf[0] == 'r') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2372                     SSL_renegotiate(con);
2373                     i = SSL_do_handshake(con);
2374                     printf("SSL_do_handshake -> %d\n", i);
2375                     i = 0;      /* 13; */
2376                     continue;
2377                     /*
2378                      * strcpy(buf,"server side RE-NEGOTIATE\n");
2379                      */
2380                 }
2381                 if ((buf[0] == 'R') && ((buf[1] == '\n') || (buf[1] == '\r'))) {
2382                     SSL_set_verify(con,
2383                                    SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2384                                    NULL);
2385                     SSL_renegotiate(con);
2386                     i = SSL_do_handshake(con);
2387                     printf("SSL_do_handshake -> %d\n", i);
2388                     i = 0;      /* 13; */
2389                     continue;
2390                     /*
2391                      * strcpy(buf,"server side RE-NEGOTIATE asking for client
2392                      * cert\n");
2393                      */
2394                 }
2395                 if (buf[0] == 'P') {
2396                     static const char *str = "Lets print some clear text\n";
2397                     BIO_write(SSL_get_wbio(con), str, strlen(str));
2398                 }
2399                 if (buf[0] == 'S') {
2400                     print_stats(bio_s_out, SSL_get_SSL_CTX(con));
2401                 }
2402             }
2403 #ifdef CHARSET_EBCDIC
2404             ebcdic2ascii(buf, buf, i);
2405 #endif
2406             l = k = 0;
2407             for (;;) {
2408                 /* should do a select for the write */
2409 #ifdef RENEG
2410                 {
2411                     static count = 0;
2412                     if (++count == 100) {
2413                         count = 0;
2414                         SSL_renegotiate(con);
2415                     }
2416                 }
2417 #endif
2418                 k = SSL_write(con, &(buf[l]), (unsigned int)i);
2419 #ifndef OPENSSL_NO_SRP
2420                 while (SSL_get_error(con, k) == SSL_ERROR_WANT_X509_LOOKUP) {
2421                     BIO_printf(bio_s_out, "LOOKUP renego during write\n");
2422                     srp_callback_parm.user =
2423                         SRP_VBASE_get_by_user(srp_callback_parm.vb,
2424                                               srp_callback_parm.login);
2425                     if (srp_callback_parm.user)
2426                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
2427                                    srp_callback_parm.user->info);
2428                     else
2429                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
2430                     k = SSL_write(con, &(buf[l]), (unsigned int)i);
2431                 }
2432 #endif
2433                 switch (SSL_get_error(con, k)) {
2434                 case SSL_ERROR_NONE:
2435                     break;
2436                 case SSL_ERROR_WANT_WRITE:
2437                 case SSL_ERROR_WANT_READ:
2438                 case SSL_ERROR_WANT_X509_LOOKUP:
2439                     BIO_printf(bio_s_out, "Write BLOCK\n");
2440                     break;
2441                 case SSL_ERROR_SYSCALL:
2442                 case SSL_ERROR_SSL:
2443                     BIO_printf(bio_s_out, "ERROR\n");
2444                     ERR_print_errors(bio_err);
2445                     ret = 1;
2446                     goto err;
2447                     /* break; */
2448                 case SSL_ERROR_ZERO_RETURN:
2449                     BIO_printf(bio_s_out, "DONE\n");
2450                     ret = 1;
2451                     goto err;
2452                 }
2453                 l += k;
2454                 i -= k;
2455                 if (i <= 0)
2456                     break;
2457             }
2458         }
2459         if (read_from_sslcon) {
2460             if (!SSL_is_init_finished(con)) {
2461                 i = init_ssl_connection(con);
2462
2463                 if (i < 0) {
2464                     ret = 0;
2465                     goto err;
2466                 } else if (i == 0) {
2467                     ret = 1;
2468                     goto err;
2469                 }
2470             } else {
2471  again:
2472                 i = SSL_read(con, (char *)buf, bufsize);
2473 #ifndef OPENSSL_NO_SRP
2474                 while (SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2475                     BIO_printf(bio_s_out, "LOOKUP renego during read\n");
2476                     srp_callback_parm.user =
2477                         SRP_VBASE_get_by_user(srp_callback_parm.vb,
2478                                               srp_callback_parm.login);
2479                     if (srp_callback_parm.user)
2480                         BIO_printf(bio_s_out, "LOOKUP done %s\n",
2481                                    srp_callback_parm.user->info);
2482                     else
2483                         BIO_printf(bio_s_out, "LOOKUP not successful\n");
2484                     i = SSL_read(con, (char *)buf, bufsize);
2485                 }
2486 #endif
2487                 switch (SSL_get_error(con, i)) {
2488                 case SSL_ERROR_NONE:
2489 #ifdef CHARSET_EBCDIC
2490                     ascii2ebcdic(buf, buf, i);
2491 #endif
2492                     raw_write_stdout(buf, (unsigned int)i);
2493                     if (SSL_pending(con))
2494                         goto again;
2495                     break;
2496                 case SSL_ERROR_WANT_WRITE:
2497                 case SSL_ERROR_WANT_READ:
2498                     BIO_printf(bio_s_out, "Read BLOCK\n");
2499                     break;
2500                 case SSL_ERROR_SYSCALL:
2501                 case SSL_ERROR_SSL:
2502                     BIO_printf(bio_s_out, "ERROR\n");
2503                     ERR_print_errors(bio_err);
2504                     ret = 1;
2505                     goto err;
2506                 case SSL_ERROR_ZERO_RETURN:
2507                     BIO_printf(bio_s_out, "DONE\n");
2508                     ret = 1;
2509                     goto err;
2510                 }
2511             }
2512         }
2513     }
2514  err:
2515     if (con != NULL) {
2516         BIO_printf(bio_s_out, "shutting down SSL\n");
2517 #if 1
2518         SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
2519 #else
2520         SSL_shutdown(con);
2521 #endif
2522         SSL_free(con);
2523     }
2524     BIO_printf(bio_s_out, "CONNECTION CLOSED\n");
2525     if (buf != NULL) {
2526         OPENSSL_cleanse(buf, bufsize);
2527         OPENSSL_free(buf);
2528     }
2529     if (ret >= 0)
2530         BIO_printf(bio_s_out, "ACCEPT\n");
2531     return (ret);
2532 }
2533
2534 static void close_accept_socket(void)
2535 {
2536     BIO_printf(bio_err, "shutdown accept socket\n");
2537     if (accept_socket >= 0) {
2538         SHUTDOWN2(accept_socket);
2539     }
2540 }
2541
2542 static int init_ssl_connection(SSL *con)
2543 {
2544     int i;
2545     const char *str;
2546     X509 *peer;
2547     long verify_error;
2548     char buf[BUFSIZ];
2549 #ifndef OPENSSL_NO_KRB5
2550     char *client_princ;
2551 #endif
2552 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
2553     const unsigned char *next_proto_neg;
2554     unsigned next_proto_neg_len;
2555 #endif
2556     unsigned char *exportedkeymat;
2557
2558     i = SSL_accept(con);
2559 #ifdef CERT_CB_TEST_RETRY
2560     {
2561         while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP
2562                && SSL_state(con) == SSL3_ST_SR_CLNT_HELLO_C) {
2563             fprintf(stderr,
2564                     "LOOKUP from certificate callback during accept\n");
2565             i = SSL_accept(con);
2566         }
2567     }
2568 #endif
2569 #ifndef OPENSSL_NO_SRP
2570     while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2571         BIO_printf(bio_s_out, "LOOKUP during accept %s\n",
2572                    srp_callback_parm.login);
2573         srp_callback_parm.user =
2574             SRP_VBASE_get_by_user(srp_callback_parm.vb,
2575                                   srp_callback_parm.login);
2576         if (srp_callback_parm.user)
2577             BIO_printf(bio_s_out, "LOOKUP done %s\n",
2578                        srp_callback_parm.user->info);
2579         else
2580             BIO_printf(bio_s_out, "LOOKUP not successful\n");
2581         i = SSL_accept(con);
2582     }
2583 #endif
2584
2585     if (i <= 0) {
2586         if (BIO_sock_should_retry(i)) {
2587             BIO_printf(bio_s_out, "DELAY\n");
2588             return (1);
2589         }
2590
2591         BIO_printf(bio_err, "ERROR\n");
2592         verify_error = SSL_get_verify_result(con);
2593         if (verify_error != X509_V_OK) {
2594             BIO_printf(bio_err, "verify error:%s\n",
2595                        X509_verify_cert_error_string(verify_error));
2596         }
2597         /* Always print any error messages */
2598         ERR_print_errors(bio_err);
2599         return (0);
2600     }
2601
2602     if (s_brief)
2603         print_ssl_summary(bio_err, con);
2604
2605     PEM_write_bio_SSL_SESSION(bio_s_out, SSL_get_session(con));
2606
2607     peer = SSL_get_peer_certificate(con);
2608     if (peer != NULL) {
2609         BIO_printf(bio_s_out, "Client certificate\n");
2610         PEM_write_bio_X509(bio_s_out, peer);
2611         X509_NAME_oneline(X509_get_subject_name(peer), buf, sizeof buf);
2612         BIO_printf(bio_s_out, "subject=%s\n", buf);
2613         X509_NAME_oneline(X509_get_issuer_name(peer), buf, sizeof buf);
2614         BIO_printf(bio_s_out, "issuer=%s\n", buf);
2615         X509_free(peer);
2616     }
2617
2618     if (SSL_get_shared_ciphers(con, buf, sizeof buf) != NULL)
2619         BIO_printf(bio_s_out, "Shared ciphers:%s\n", buf);
2620     str = SSL_CIPHER_get_name(SSL_get_current_cipher(con));
2621     ssl_print_sigalgs(bio_s_out, con);
2622 #ifndef OPENSSL_NO_EC
2623     ssl_print_point_formats(bio_s_out, con);
2624     ssl_print_curves(bio_s_out, con, 0);
2625 #endif
2626     BIO_printf(bio_s_out, "CIPHER is %s\n", (str != NULL) ? str : "(NONE)");
2627
2628 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
2629     SSL_get0_next_proto_negotiated(con, &next_proto_neg, &next_proto_neg_len);
2630     if (next_proto_neg) {
2631         BIO_printf(bio_s_out, "NEXTPROTO is ");
2632         BIO_write(bio_s_out, next_proto_neg, next_proto_neg_len);
2633         BIO_printf(bio_s_out, "\n");
2634     }
2635 #endif
2636 #ifndef OPENSSL_NO_SRTP
2637     {
2638         SRTP_PROTECTION_PROFILE *srtp_profile
2639             = SSL_get_selected_srtp_profile(con);
2640
2641         if (srtp_profile)
2642             BIO_printf(bio_s_out, "SRTP Extension negotiated, profile=%s\n",
2643                        srtp_profile->name);
2644     }
2645 #endif
2646     if (SSL_cache_hit(con))
2647         BIO_printf(bio_s_out, "Reused session-id\n");
2648     if (SSL_ctrl(con, SSL_CTRL_GET_FLAGS, 0, NULL) &
2649         TLS1_FLAGS_TLS_PADDING_BUG)
2650         BIO_printf(bio_s_out, "Peer has incorrect TLSv1 block padding\n");
2651 #ifndef OPENSSL_NO_KRB5
2652     client_princ = kssl_ctx_get0_client_princ(SSL_get0_kssl_ctx(con));
2653     if (client_princ != NULL) {
2654         BIO_printf(bio_s_out, "Kerberos peer principal is %s\n",
2655                    client_princ);
2656     }
2657 #endif                          /* OPENSSL_NO_KRB5 */
2658     BIO_printf(bio_s_out, "Secure Renegotiation IS%s supported\n",
2659                SSL_get_secure_renegotiation_support(con) ? "" : " NOT");
2660     if (keymatexportlabel != NULL) {
2661         BIO_printf(bio_s_out, "Keying material exporter:\n");
2662         BIO_printf(bio_s_out, "    Label: '%s'\n", keymatexportlabel);
2663         BIO_printf(bio_s_out, "    Length: %i bytes\n", keymatexportlen);
2664         exportedkeymat = OPENSSL_malloc(keymatexportlen);
2665         if (exportedkeymat != NULL) {
2666             if (!SSL_export_keying_material(con, exportedkeymat,
2667                                             keymatexportlen,
2668                                             keymatexportlabel,
2669                                             strlen(keymatexportlabel),
2670                                             NULL, 0, 0)) {
2671                 BIO_printf(bio_s_out, "    Error\n");
2672             } else {
2673                 BIO_printf(bio_s_out, "    Keying material: ");
2674                 for (i = 0; i < keymatexportlen; i++)
2675                     BIO_printf(bio_s_out, "%02X", exportedkeymat[i]);
2676                 BIO_printf(bio_s_out, "\n");
2677             }
2678             OPENSSL_free(exportedkeymat);
2679         }
2680     }
2681
2682     return (1);
2683 }
2684
2685 #ifndef OPENSSL_NO_DH
2686 static DH *load_dh_param(const char *dhfile)
2687 {
2688     DH *ret = NULL;
2689     BIO *bio;
2690
2691     if ((bio = BIO_new_file(dhfile, "r")) == NULL)
2692         goto err;
2693     ret = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
2694  err:
2695     if (bio != NULL)
2696         BIO_free(bio);
2697     return (ret);
2698 }
2699 #endif
2700
2701 #if 0
2702 static int load_CA(SSL_CTX *ctx, char *file)
2703 {
2704     FILE *in;
2705     X509 *x = NULL;
2706
2707     if ((in = fopen(file, "r")) == NULL)
2708         return (0);
2709
2710     for (;;) {
2711         if (PEM_read_X509(in, &x, NULL) == NULL)
2712             break;
2713         SSL_CTX_add_client_CA(ctx, x);
2714     }
2715     if (x != NULL)
2716         X509_free(x);
2717     fclose(in);
2718     return (1);
2719 }
2720 #endif
2721
2722 static int www_body(char *hostname, int s, int stype, unsigned char *context)
2723 {
2724     char *buf = NULL;
2725     int ret = 1;
2726     int i, j, k, dot;
2727     SSL *con;
2728     const SSL_CIPHER *c;
2729     BIO *io, *ssl_bio, *sbio;
2730 #ifndef OPENSSL_NO_KRB5
2731     KSSL_CTX *kctx;
2732 #endif
2733
2734     buf = OPENSSL_malloc(bufsize);
2735     if (buf == NULL)
2736         return (0);
2737     io = BIO_new(BIO_f_buffer());
2738     ssl_bio = BIO_new(BIO_f_ssl());
2739     if ((io == NULL) || (ssl_bio == NULL))
2740         goto err;
2741
2742 #ifdef FIONBIO
2743     if (s_nbio) {
2744         unsigned long sl = 1;
2745
2746         if (!s_quiet)
2747             BIO_printf(bio_err, "turning on non blocking io\n");
2748         if (BIO_socket_ioctl(s, FIONBIO, &sl) < 0)
2749             ERR_print_errors(bio_err);
2750     }
2751 #endif
2752
2753     /* lets make the output buffer a reasonable size */
2754     if (!BIO_set_write_buffer_size(io, bufsize))
2755         goto err;
2756
2757     if ((con = SSL_new(ctx)) == NULL)
2758         goto err;
2759 #ifndef OPENSSL_NO_TLSEXT
2760     if (s_tlsextdebug) {
2761         SSL_set_tlsext_debug_callback(con, tlsext_cb);
2762         SSL_set_tlsext_debug_arg(con, bio_s_out);
2763     }
2764 #endif
2765 #ifndef OPENSSL_NO_KRB5
2766     if ((kctx = kssl_ctx_new()) != NULL) {
2767         kssl_ctx_setstring(kctx, KSSL_SERVICE, KRB5SVC);
2768         kssl_ctx_setstring(kctx, KSSL_KEYTAB, KRB5KEYTAB);
2769     }
2770 #endif                          /* OPENSSL_NO_KRB5 */
2771     if (context)
2772         SSL_set_session_id_context(con, context, strlen((char *)context));
2773
2774     sbio = BIO_new_socket(s, BIO_NOCLOSE);
2775     if (s_nbio_test) {
2776         BIO *test;
2777
2778         test = BIO_new(BIO_f_nbio_test());
2779         sbio = BIO_push(test, sbio);
2780     }
2781     SSL_set_bio(con, sbio, sbio);
2782     SSL_set_accept_state(con);
2783
2784     /* SSL_set_fd(con,s); */
2785     BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
2786     BIO_push(io, ssl_bio);
2787 #ifdef CHARSET_EBCDIC
2788     io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
2789 #endif
2790
2791     if (s_debug) {
2792         SSL_set_debug(con, 1);
2793         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
2794         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
2795     }
2796     if (s_msg) {
2797 #ifndef OPENSSL_NO_SSL_TRACE
2798         if (s_msg == 2)
2799             SSL_set_msg_callback(con, SSL_trace);
2800         else
2801 #endif
2802             SSL_set_msg_callback(con, msg_cb);
2803         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
2804     }
2805
2806     for (;;) {
2807         if (hack) {
2808             i = SSL_accept(con);
2809 #ifndef OPENSSL_NO_SRP
2810             while (i <= 0
2811                    && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) {
2812                 BIO_printf(bio_s_out, "LOOKUP during accept %s\n",
2813                            srp_callback_parm.login);
2814                 srp_callback_parm.user =
2815                     SRP_VBASE_get_by_user(srp_callback_parm.vb,
2816                                           srp_callback_parm.login);
2817                 if (srp_callback_parm.user)
2818                     BIO_printf(bio_s_out, "LOOKUP done %s\n",
2819                                srp_callback_parm.user->info);
2820                 else
2821                     BIO_printf(bio_s_out, "LOOKUP not successful\n");
2822                 i = SSL_accept(con);
2823             }
2824 #endif
2825             switch (SSL_get_error(con, i)) {
2826             case SSL_ERROR_NONE:
2827                 break;
2828             case SSL_ERROR_WANT_WRITE:
2829             case SSL_ERROR_WANT_READ:
2830             case SSL_ERROR_WANT_X509_LOOKUP:
2831                 continue;
2832             case SSL_ERROR_SYSCALL:
2833             case SSL_ERROR_SSL:
2834             case SSL_ERROR_ZERO_RETURN:
2835                 ret = 1;
2836                 goto err;
2837                 /* break; */
2838             }
2839
2840             SSL_renegotiate(con);
2841             SSL_write(con, NULL, 0);
2842         }
2843
2844         i = BIO_gets(io, buf, bufsize - 1);
2845         if (i < 0) {            /* error */
2846             if (!BIO_should_retry(io)) {
2847                 if (!s_quiet)
2848                     ERR_print_errors(bio_err);
2849                 goto err;
2850             } else {
2851                 BIO_printf(bio_s_out, "read R BLOCK\n");
2852 #if defined(OPENSSL_SYS_NETWARE)
2853                 delay(1000);
2854 #elif !defined(OPENSSL_SYS_MSDOS)
2855                 sleep(1);
2856 #endif
2857                 continue;
2858             }
2859         } else if (i == 0) {    /* end of input */
2860             ret = 1;
2861             goto end;
2862         }
2863
2864         /* else we have data */
2865         if (((www == 1) && (strncmp("GET ", buf, 4) == 0)) ||
2866             ((www == 2) && (strncmp("GET /stats ", buf, 10) == 0))) {
2867             char *p;
2868             X509 *peer;
2869             STACK_OF(SSL_CIPHER) *sk;
2870             static const char *space = "                          ";
2871
2872             if (www == 1 && strncmp("GET /reneg", buf, 10) == 0) {
2873                 if (strncmp("GET /renegcert", buf, 14) == 0)
2874                     SSL_set_verify(con,
2875                                    SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE,
2876                                    NULL);
2877                 i = SSL_renegotiate(con);
2878                 BIO_printf(bio_s_out, "SSL_renegotiate -> %d\n", i);
2879                 i = SSL_do_handshake(con);
2880                 if (i <= 0) {
2881                     BIO_printf(bio_s_out, "SSL_do_handshake() Retval %d\n",
2882                                SSL_get_error(con, i));
2883                     ERR_print_errors(bio_err);
2884                     goto err;
2885                 }
2886                 /* EVIL HACK! */
2887                 SSL_set_state(con, SSL_ST_ACCEPT);
2888                 i = SSL_do_handshake(con);
2889                 BIO_printf(bio_s_out, "SSL_do_handshake -> %d\n", i);
2890                 if (i <= 0) {
2891                     BIO_printf(bio_s_out, "SSL_do_handshake() Retval %d\n",
2892                                SSL_get_error(con, i));
2893                     ERR_print_errors(bio_err);
2894                     goto err;
2895                 }
2896             }
2897
2898             BIO_puts(io,
2899                      "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
2900             BIO_puts(io, "<HTML><BODY BGCOLOR=\"#ffffff\">\n");
2901             BIO_puts(io, "<pre>\n");
2902 /*                      BIO_puts(io,SSLeay_version(SSLEAY_VERSION));*/
2903             BIO_puts(io, "\n");
2904             for (i = 0; i < local_argc; i++) {
2905                 BIO_puts(io, local_argv[i]);
2906                 BIO_write(io, " ", 1);
2907             }
2908             BIO_puts(io, "\n");
2909
2910             BIO_printf(io,
2911                        "Secure Renegotiation IS%s supported\n",
2912                        SSL_get_secure_renegotiation_support(con) ?
2913                        "" : " NOT");
2914
2915             /*
2916              * The following is evil and should not really be done
2917              */
2918             BIO_printf(io, "Ciphers supported in s_server binary\n");
2919             sk = SSL_get_ciphers(con);
2920             j = sk_SSL_CIPHER_num(sk);
2921             for (i = 0; i < j; i++) {
2922                 c = sk_SSL_CIPHER_value(sk, i);
2923                 BIO_printf(io, "%-11s:%-25s",
2924                            SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2925                 if ((((i + 1) % 2) == 0) && (i + 1 != j))
2926                     BIO_puts(io, "\n");
2927             }
2928             BIO_puts(io, "\n");
2929             p = SSL_get_shared_ciphers(con, buf, bufsize);
2930             if (p != NULL) {
2931                 BIO_printf(io,
2932                            "---\nCiphers common between both SSL end points:\n");
2933                 j = i = 0;
2934                 while (*p) {
2935                     if (*p == ':') {
2936                         BIO_write(io, space, 26 - j);
2937                         i++;
2938                         j = 0;
2939                         BIO_write(io, ((i % 3) ? " " : "\n"), 1);
2940                     } else {
2941                         BIO_write(io, p, 1);
2942                         j++;
2943                     }
2944                     p++;
2945                 }
2946                 BIO_puts(io, "\n");
2947             }
2948             ssl_print_sigalgs(io, con);
2949 #ifndef OPENSSL_NO_EC
2950             ssl_print_curves(io, con, 0);
2951 #endif
2952             BIO_printf(io, (SSL_cache_hit(con)
2953                             ? "---\nReused, " : "---\nNew, "));
2954             c = SSL_get_current_cipher(con);
2955             BIO_printf(io, "%s, Cipher is %s\n",
2956                        SSL_CIPHER_get_version(c), SSL_CIPHER_get_name(c));
2957             SSL_SESSION_print(io, SSL_get_session(con));
2958             BIO_printf(io, "---\n");
2959             print_stats(io, SSL_get_SSL_CTX(con));
2960             BIO_printf(io, "---\n");
2961             peer = SSL_get_peer_certificate(con);
2962             if (peer != NULL) {
2963                 BIO_printf(io, "Client certificate\n");
2964                 X509_print(io, peer);
2965                 PEM_write_bio_X509(io, peer);
2966             } else
2967                 BIO_puts(io, "no client certificate available\n");
2968             BIO_puts(io, "</BODY></HTML>\r\n\r\n");
2969             break;
2970         } else if ((www == 2 || www == 3)
2971                    && (strncmp("GET /", buf, 5) == 0)) {
2972             BIO *file;
2973             char *p, *e;
2974             static const char *text =
2975                 "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
2976
2977             /* skip the '/' */
2978             p = &(buf[5]);
2979
2980             dot = 1;
2981             for (e = p; *e != '\0'; e++) {
2982                 if (e[0] == ' ')
2983                     break;
2984
2985                 switch (dot) {
2986                 case 1:
2987                     dot = (e[0] == '.') ? 2 : 0;
2988                     break;
2989                 case 2:
2990                     dot = (e[0] == '.') ? 3 : 0;
2991                     break;
2992                 case 3:
2993                     dot = (e[0] == '/') ? -1 : 0;
2994                     break;
2995                 }
2996                 if (dot == 0)
2997                     dot = (e[0] == '/') ? 1 : 0;
2998             }
2999             dot = (dot == 3) || (dot == -1); /* filename contains ".."
3000                                               * component */
3001
3002             if (*e == '\0') {
3003                 BIO_puts(io, text);
3004                 BIO_printf(io, "'%s' is an invalid file name\r\n", p);
3005                 break;
3006             }
3007             *e = '\0';
3008
3009             if (dot) {
3010                 BIO_puts(io, text);
3011                 BIO_printf(io, "'%s' contains '..' reference\r\n", p);
3012                 break;
3013             }
3014
3015             if (*p == '/') {
3016                 BIO_puts(io, text);
3017                 BIO_printf(io, "'%s' is an invalid path\r\n", p);
3018                 break;
3019             }
3020 #if 0
3021             /* append if a directory lookup */
3022             if (e[-1] == '/')
3023                 strcat(p, "index.html");
3024 #endif
3025
3026             /* if a directory, do the index thang */
3027             if (app_isdir(p) > 0) {
3028 #if 0                           /* must check buffer size */
3029                 strcat(p, "/index.html");
3030 #else
3031                 BIO_puts(io, text);
3032                 BIO_printf(io, "'%s' is a directory\r\n", p);
3033                 break;
3034 #endif
3035             }
3036
3037             if ((file = BIO_new_file(p, "r")) == NULL) {
3038                 BIO_puts(io, text);
3039                 BIO_printf(io, "Error opening '%s'\r\n", p);
3040                 ERR_print_errors(io);
3041                 break;
3042             }
3043
3044             if (!s_quiet)
3045                 BIO_printf(bio_err, "FILE:%s\n", p);
3046
3047             if (www == 2) {
3048                 i = strlen(p);
3049                 if (((i > 5) && (strcmp(&(p[i - 5]), ".html") == 0)) ||
3050                     ((i > 4) && (strcmp(&(p[i - 4]), ".php") == 0)) ||
3051                     ((i > 4) && (strcmp(&(p[i - 4]), ".htm") == 0)))
3052                     BIO_puts(io,
3053                              "HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
3054                 else
3055                     BIO_puts(io,
3056                              "HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
3057             }
3058             /* send the file */
3059             for (;;) {
3060                 i = BIO_read(file, buf, bufsize);
3061                 if (i <= 0)
3062                     break;
3063
3064 #ifdef RENEG
3065                 total_bytes += i;
3066                 fprintf(stderr, "%d\n", i);
3067                 if (total_bytes > 3 * 1024) {
3068                     total_bytes = 0;
3069                     fprintf(stderr, "RENEGOTIATE\n");
3070                     SSL_renegotiate(con);
3071                 }
3072 #endif
3073
3074                 for (j = 0; j < i;) {
3075 #ifdef RENEG
3076                     {
3077                         static count = 0;
3078                         if (++count == 13) {
3079                             SSL_renegotiate(con);
3080                         }
3081                     }
3082 #endif
3083                     k = BIO_write(io, &(buf[j]), i - j);
3084                     if (k <= 0) {
3085                         if (!BIO_should_retry(io))
3086                             goto write_error;
3087                         else {
3088                             BIO_printf(bio_s_out, "rwrite W BLOCK\n");
3089                         }
3090                     } else {
3091                         j += k;
3092                     }
3093                 }
3094             }
3095  write_error:
3096             BIO_free(file);
3097             break;
3098         }
3099     }
3100
3101     for (;;) {
3102         i = (int)BIO_flush(io);
3103         if (i <= 0) {
3104             if (!BIO_should_retry(io))
3105                 break;
3106         } else
3107             break;
3108     }
3109  end:
3110 #if 1
3111     /* make sure we re-use sessions */
3112     SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
3113 #else
3114     /* This kills performance */
3115     /*
3116      * SSL_shutdown(con); A shutdown gets sent in the BIO_free_all(io)
3117      * procession
3118      */
3119 #endif
3120
3121  err:
3122
3123     if (ret >= 0)
3124         BIO_printf(bio_s_out, "ACCEPT\n");
3125
3126     if (buf != NULL)
3127         OPENSSL_free(buf);
3128     if (io != NULL)
3129         BIO_free_all(io);
3130 /*      if (ssl_bio != NULL) BIO_free(ssl_bio);*/
3131     return (ret);
3132 }
3133
3134 static int rev_body(char *hostname, int s, int stype, unsigned char *context)
3135 {
3136     char *buf = NULL;
3137     int i;
3138     int ret = 1;
3139     SSL *con;
3140     BIO *io, *ssl_bio, *sbio;
3141 #ifndef OPENSSL_NO_KRB5
3142     KSSL_CTX *kctx;
3143 #endif
3144
3145     buf = OPENSSL_malloc(bufsize);
3146     if (buf == NULL)
3147         return (0);
3148     io = BIO_new(BIO_f_buffer());
3149     ssl_bio = BIO_new(BIO_f_ssl());
3150     if ((io == NULL) || (ssl_bio == NULL))
3151         goto err;
3152
3153     /* lets make the output buffer a reasonable size */
3154     if (!BIO_set_write_buffer_size(io, bufsize))
3155         goto err;
3156
3157     if ((con = SSL_new(ctx)) == NULL)
3158         goto err;
3159 #ifndef OPENSSL_NO_TLSEXT
3160     if (s_tlsextdebug) {
3161         SSL_set_tlsext_debug_callback(con, tlsext_cb);
3162         SSL_set_tlsext_debug_arg(con, bio_s_out);
3163     }
3164 #endif
3165 #ifndef OPENSSL_NO_KRB5
3166     if ((kctx = kssl_ctx_new()) != NULL) {
3167         kssl_ctx_setstring(kctx, KSSL_SERVICE, KRB5SVC);
3168         kssl_ctx_setstring(kctx, KSSL_KEYTAB, KRB5KEYTAB);
3169     }
3170 #endif                          /* OPENSSL_NO_KRB5 */
3171     if (context)
3172         SSL_set_session_id_context(con, context, strlen((char *)context));
3173
3174     sbio = BIO_new_socket(s, BIO_NOCLOSE);
3175     SSL_set_bio(con, sbio, sbio);
3176     SSL_set_accept_state(con);
3177
3178     BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3179     BIO_push(io, ssl_bio);
3180 #ifdef CHARSET_EBCDIC
3181     io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io);
3182 #endif
3183
3184     if (s_debug) {
3185         SSL_set_debug(con, 1);
3186         BIO_set_callback(SSL_get_rbio(con), bio_dump_callback);
3187         BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
3188     }
3189     if (s_msg) {
3190 #ifndef OPENSSL_NO_SSL_TRACE
3191         if (s_msg == 2)
3192             SSL_set_msg_callback(con, SSL_trace);
3193         else
3194 #endif
3195             SSL_set_msg_callback(con, msg_cb);
3196         SSL_set_msg_callback_arg(con, bio_s_msg ? bio_s_msg : bio_s_out);
3197     }
3198
3199     for (;;) {
3200         i = BIO_do_handshake(io);
3201         if (i > 0)
3202             break;
3203         if (!BIO_should_retry(io)) {
3204             BIO_puts(bio_err, "CONNECTION FAILURE\n");
3205             ERR_print_errors(bio_err);
3206             goto end;
3207         }
3208     }
3209     BIO_printf(bio_err, "CONNECTION ESTABLISHED\n");
3210     print_ssl_summary(bio_err, con);
3211
3212     for (;;) {
3213         i = BIO_gets(io, buf, bufsize - 1);
3214         if (i < 0) {            /* error */
3215             if (!BIO_should_retry(io)) {
3216                 if (!s_quiet)
3217                     ERR_print_errors(bio_err);
3218                 goto err;
3219             } else {
3220                 BIO_printf(bio_s_out, "read R BLOCK\n");
3221 #if defined(OPENSSL_SYS_NETWARE)
3222                 delay(1000);
3223 #elif !defined(OPENSSL_SYS_MSDOS)
3224                 sleep(1);
3225 #endif
3226                 continue;
3227             }
3228         } else if (i == 0) {    /* end of input */
3229             ret = 1;
3230             BIO_printf(bio_err, "CONNECTION CLOSED\n");
3231             goto end;
3232         } else {
3233             char *p = buf + i - 1;
3234             while (i && (*p == '\n' || *p == '\r')) {
3235                 p--;
3236                 i--;
3237             }
3238             if (!s_ign_eof && i == 5 && !strncmp(buf, "CLOSE", 5)) {
3239                 ret = 1;
3240                 BIO_printf(bio_err, "CONNECTION CLOSED\n");
3241                 goto end;
3242             }
3243             BUF_reverse((unsigned char *)buf, NULL, i);
3244             buf[i] = '\n';
3245             BIO_write(io, buf, i + 1);
3246             for (;;) {
3247                 i = BIO_flush(io);
3248                 if (i > 0)
3249                     break;
3250                 if (!BIO_should_retry(io))
3251                     goto end;
3252             }
3253         }
3254     }
3255  end:
3256     /* make sure we re-use sessions */
3257     SSL_set_shutdown(con, SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN);
3258
3259  err:
3260
3261     if (buf != NULL)
3262         OPENSSL_free(buf);
3263     if (io != NULL)
3264         BIO_free_all(io);
3265     return (ret);
3266 }
3267
3268 #ifndef OPENSSL_NO_RSA
3269 static RSA *tmp_rsa_cb(SSL *s, int is_export, int keylength)
3270 {
3271     BIGNUM *bn = NULL;
3272     static RSA *rsa_tmp = NULL;
3273
3274     if (!rsa_tmp && ((bn = BN_new()) == NULL))
3275         BIO_printf(bio_err, "Allocation error in generating RSA key\n");
3276     if (!rsa_tmp && bn) {
3277         if (!s_quiet) {
3278             BIO_printf(bio_err, "Generating temp (%d bit) RSA key...",
3279                        keylength);
3280             (void)BIO_flush(bio_err);
3281         }
3282         if (!BN_set_word(bn, RSA_F4) || ((rsa_tmp = RSA_new()) == NULL) ||
3283             !RSA_generate_key_ex(rsa_tmp, keylength, bn, NULL)) {
3284             if (rsa_tmp)
3285                 RSA_free(rsa_tmp);
3286             rsa_tmp = NULL;
3287         }
3288         if (!s_quiet) {
3289             BIO_printf(bio_err, "\n");
3290             (void)BIO_flush(bio_err);
3291         }
3292         BN_free(bn);
3293     }
3294     return (rsa_tmp);
3295 }
3296 #endif
3297
3298 #define MAX_SESSION_ID_ATTEMPTS 10
3299 static int generate_session_id(const SSL *ssl, unsigned char *id,
3300                                unsigned int *id_len)
3301 {
3302     unsigned int count = 0;
3303     do {
3304         RAND_pseudo_bytes(id, *id_len);
3305         /*
3306          * Prefix the session_id with the required prefix. NB: If our prefix
3307          * is too long, clip it - but there will be worse effects anyway, eg.
3308          * the server could only possibly create 1 session ID (ie. the
3309          * prefix!) so all future session negotiations will fail due to
3310          * conflicts.
3311          */
3312         memcpy(id, session_id_prefix,
3313                (strlen(session_id_prefix) < *id_len) ?
3314                strlen(session_id_prefix) : *id_len);
3315     }
3316     while (SSL_has_matching_session_id(ssl, id, *id_len) &&
3317            (++count < MAX_SESSION_ID_ATTEMPTS));
3318     if (count >= MAX_SESSION_ID_ATTEMPTS)
3319         return 0;
3320     return 1;
3321 }
3322
3323 /*
3324  * By default s_server uses an in-memory cache which caches SSL_SESSION
3325  * structures without any serialisation. This hides some bugs which only
3326  * become apparent in deployed servers. By implementing a basic external
3327  * session cache some issues can be debugged using s_server.
3328  */
3329
3330 typedef struct simple_ssl_session_st {
3331     unsigned char *id;
3332     unsigned int idlen;
3333     unsigned char *der;
3334     int derlen;
3335     struct simple_ssl_session_st *next;
3336 } simple_ssl_session;
3337
3338 static simple_ssl_session *first = NULL;
3339
3340 static int add_session(SSL *ssl, SSL_SESSION *session)
3341 {
3342     simple_ssl_session *sess;
3343     unsigned char *p;
3344
3345     sess = OPENSSL_malloc(sizeof(simple_ssl_session));
3346
3347     SSL_SESSION_get_id(session, &sess->idlen);
3348     sess->derlen = i2d_SSL_SESSION(session, NULL);
3349
3350     sess->id = BUF_memdup(SSL_SESSION_get_id(session, NULL), sess->idlen);
3351
3352     sess->der = OPENSSL_malloc(sess->derlen);
3353     p = sess->der;
3354     i2d_SSL_SESSION(session, &p);
3355
3356     sess->next = first;
3357     first = sess;
3358     BIO_printf(bio_err, "New session added to external cache\n");
3359     return 0;
3360 }
3361
3362 static SSL_SESSION *get_session(SSL *ssl, unsigned char *id, int idlen,
3363                                 int *do_copy)
3364 {
3365     simple_ssl_session *sess;
3366     *do_copy = 0;
3367     for (sess = first; sess; sess = sess->next) {
3368         if (idlen == (int)sess->idlen && !memcmp(sess->id, id, idlen)) {
3369             const unsigned char *p = sess->der;
3370             BIO_printf(bio_err, "Lookup session: cache hit\n");
3371             return d2i_SSL_SESSION(NULL, &p, sess->derlen);
3372         }
3373     }
3374     BIO_printf(bio_err, "Lookup session: cache miss\n");
3375     return NULL;
3376 }
3377
3378 static void del_session(SSL_CTX *sctx, SSL_SESSION *session)
3379 {
3380     simple_ssl_session *sess, *prev = NULL;
3381     const unsigned char *id;
3382     unsigned int idlen;
3383     id = SSL_SESSION_get_id(session, &idlen);
3384     for (sess = first; sess; sess = sess->next) {
3385         if (idlen == sess->idlen && !memcmp(sess->id, id, idlen)) {
3386             if (prev)
3387                 prev->next = sess->next;
3388             else
3389                 first = sess->next;
3390             OPENSSL_free(sess->id);
3391             OPENSSL_free(sess->der);
3392             OPENSSL_free(sess);
3393             return;
3394         }
3395         prev = sess;
3396     }
3397 }
3398
3399 static void init_session_cache_ctx(SSL_CTX *sctx)
3400 {
3401     SSL_CTX_set_session_cache_mode(sctx,
3402                                    SSL_SESS_CACHE_NO_INTERNAL |
3403                                    SSL_SESS_CACHE_SERVER);
3404     SSL_CTX_sess_set_new_cb(sctx, add_session);
3405     SSL_CTX_sess_set_get_cb(sctx, get_session);
3406     SSL_CTX_sess_set_remove_cb(sctx, del_session);
3407 }
3408
3409 static void free_sessions(void)
3410 {
3411     simple_ssl_session *sess, *tsess;
3412     for (sess = first; sess;) {
3413         OPENSSL_free(sess->id);
3414         OPENSSL_free(sess->der);
3415         tsess = sess;
3416         sess = sess->next;
3417         OPENSSL_free(tsess);
3418     }
3419     first = NULL;
3420 }