Use apps_shutdown() in all applications, in case someone decides not
[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 #include <assert.h>
60 #include <stdio.h>
61 #include <stdlib.h>
62 #include <string.h>
63 #include <sys/types.h>
64 #include <sys/stat.h>
65 #include <openssl/e_os2.h>
66 #ifdef OPENSSL_NO_STDIO
67 #define APPS_WIN16
68 #endif
69
70 /* With IPv6, it looks like Digital has mixed up the proper order of
71    recursive header file inclusion, resulting in the compiler complaining
72    that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which
73    is needed to have fileno() declared correctly...  So let's define u_int */
74 #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
75 #define __U_INT
76 typedef unsigned int u_int;
77 #endif
78
79 #include <openssl/lhash.h>
80 #include <openssl/bn.h>
81 #define USE_SOCKETS
82 #include "apps.h"
83 #include <openssl/err.h>
84 #include <openssl/pem.h>
85 #include <openssl/x509.h>
86 #include <openssl/ssl.h>
87 #include <openssl/engine.h>
88 #include "s_apps.h"
89
90 #ifdef OPENSSL_SYS_WINDOWS
91 #include <conio.h>
92 #endif
93
94 #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000)
95 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
96 #undef FIONBIO
97 #endif
98
99 #ifndef OPENSSL_NO_RSA
100 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength);
101 #endif
102 static int sv_body(char *hostname, int s, unsigned char *context);
103 static int www_body(char *hostname, int s, unsigned char *context);
104 static void close_accept_socket(void );
105 static void sv_usage(void);
106 static int init_ssl_connection(SSL *s);
107 static void print_stats(BIO *bp,SSL_CTX *ctx);
108 static int generate_session_id(const SSL *ssl, unsigned char *id,
109                                 unsigned int *id_len);
110 #ifndef OPENSSL_NO_DH
111 static DH *load_dh_param(char *dhfile);
112 static DH *get_dh512(void);
113 #endif
114 #ifdef MONOLITH
115 static void s_server_init(void);
116 #endif
117
118 #ifndef S_ISDIR
119 # if defined(_S_IFMT) && defined(_S_IFDIR)
120 #  define S_ISDIR(a)    (((a) & _S_IFMT) == _S_IFDIR)
121 # else
122 #  define S_ISDIR(a)    (((a) & S_IFMT) == S_IFDIR)
123 # endif
124 #endif
125
126 #ifndef OPENSSL_NO_DH
127 static unsigned char dh512_p[]={
128         0xDA,0x58,0x3C,0x16,0xD9,0x85,0x22,0x89,0xD0,0xE4,0xAF,0x75,
129         0x6F,0x4C,0xCA,0x92,0xDD,0x4B,0xE5,0x33,0xB8,0x04,0xFB,0x0F,
130         0xED,0x94,0xEF,0x9C,0x8A,0x44,0x03,0xED,0x57,0x46,0x50,0xD3,
131         0x69,0x99,0xDB,0x29,0xD7,0x76,0x27,0x6B,0xA2,0xD3,0xD4,0x12,
132         0xE2,0x18,0xF4,0xDD,0x1E,0x08,0x4C,0xF6,0xD8,0x00,0x3E,0x7C,
133         0x47,0x74,0xE8,0x33,
134         };
135 static unsigned char dh512_g[]={
136         0x02,
137         };
138
139 static DH *get_dh512(void)
140         {
141         DH *dh=NULL;
142
143         if ((dh=DH_new()) == NULL) return(NULL);
144         dh->p=BN_bin2bn(dh512_p,sizeof(dh512_p),NULL);
145         dh->g=BN_bin2bn(dh512_g,sizeof(dh512_g),NULL);
146         if ((dh->p == NULL) || (dh->g == NULL))
147                 return(NULL);
148         return(dh);
149         }
150 #endif
151
152 /* static int load_CA(SSL_CTX *ctx, char *file);*/
153
154 #undef BUFSIZZ
155 #define BUFSIZZ 16*1024
156 static int bufsize=BUFSIZZ;
157 static int accept_socket= -1;
158
159 #define TEST_CERT       "server.pem"
160 #undef PROG
161 #define PROG            s_server_main
162
163 extern int verify_depth;
164
165 static char *cipher=NULL;
166 static int s_server_verify=SSL_VERIFY_NONE;
167 static int s_server_session_id_context = 1; /* anything will do */
168 static char *s_cert_file=TEST_CERT,*s_key_file=NULL;
169 static char *s_dcert_file=NULL,*s_dkey_file=NULL;
170 #ifdef FIONBIO
171 static int s_nbio=0;
172 #endif
173 static int s_nbio_test=0;
174 int s_crlf=0;
175 static SSL_CTX *ctx=NULL;
176 static int www=0;
177
178 static BIO *bio_s_out=NULL;
179 static int s_debug=0;
180 static int s_quiet=0;
181
182 static int hack=0;
183 static char *engine_id=NULL;
184 static const char *session_id_prefix=NULL;
185
186 #ifdef MONOLITH
187 static void s_server_init(void)
188         {
189         accept_socket=-1;
190         cipher=NULL;
191         s_server_verify=SSL_VERIFY_NONE;
192         s_dcert_file=NULL;
193         s_dkey_file=NULL;
194         s_cert_file=TEST_CERT;
195         s_key_file=NULL;
196 #ifdef FIONBIO
197         s_nbio=0;
198 #endif
199         s_nbio_test=0;
200         ctx=NULL;
201         www=0;
202
203         bio_s_out=NULL;
204         s_debug=0;
205         s_quiet=0;
206         hack=0;
207         engine_id=NULL;
208         }
209 #endif
210
211 static void sv_usage(void)
212         {
213         BIO_printf(bio_err,"usage: s_server [args ...]\n");
214         BIO_printf(bio_err,"\n");
215         BIO_printf(bio_err," -accept arg   - port to accept on (default is %d)\n",PORT);
216         BIO_printf(bio_err," -context arg  - set session ID context\n");
217         BIO_printf(bio_err," -verify arg   - turn on peer certificate verification\n");
218         BIO_printf(bio_err," -Verify arg   - turn on peer certificate verification, must have a cert.\n");
219         BIO_printf(bio_err," -cert arg     - certificate file to use, PEM format assumed\n");
220         BIO_printf(bio_err,"                 (default is %s)\n",TEST_CERT);
221         BIO_printf(bio_err," -key arg      - Private Key file to use, PEM format assumed, in cert file if\n");
222         BIO_printf(bio_err,"                 not specified (default is %s)\n",TEST_CERT);
223         BIO_printf(bio_err," -dcert arg    - second certificate file to use (usually for DSA)\n");
224         BIO_printf(bio_err," -dkey arg     - second private key file to use (usually for DSA)\n");
225         BIO_printf(bio_err," -dhparam arg  - DH parameter file to use, in cert file if not specified\n");
226         BIO_printf(bio_err,"                 or a default set of parameters is used\n");
227 #ifdef FIONBIO
228         BIO_printf(bio_err," -nbio         - Run with non-blocking IO\n");
229 #endif
230         BIO_printf(bio_err," -nbio_test    - test with the non-blocking test bio\n");
231         BIO_printf(bio_err," -crlf         - convert LF from terminal into CRLF\n");
232         BIO_printf(bio_err," -debug        - Print more output\n");
233         BIO_printf(bio_err," -state        - Print the SSL states\n");
234         BIO_printf(bio_err," -CApath arg   - PEM format directory of CA's\n");
235         BIO_printf(bio_err," -CAfile arg   - PEM format file of CA's\n");
236         BIO_printf(bio_err," -nocert       - Don't use any certificates (Anon-DH)\n");
237         BIO_printf(bio_err," -cipher arg   - play with 'openssl ciphers' to see what goes here\n");
238         BIO_printf(bio_err," -serverpref   - Use server's cipher preferences\n");
239         BIO_printf(bio_err," -quiet        - No server output\n");
240         BIO_printf(bio_err," -no_tmp_rsa   - Do not generate a tmp RSA key\n");
241         BIO_printf(bio_err," -ssl2         - Just talk SSLv2\n");
242         BIO_printf(bio_err," -ssl3         - Just talk SSLv3\n");
243         BIO_printf(bio_err," -tls1         - Just talk TLSv1\n");
244         BIO_printf(bio_err," -no_ssl2      - Just disable SSLv2\n");
245         BIO_printf(bio_err," -no_ssl3      - Just disable SSLv3\n");
246         BIO_printf(bio_err," -no_tls1      - Just disable TLSv1\n");
247 #ifndef OPENSSL_NO_DH
248         BIO_printf(bio_err," -no_dhe       - Disable ephemeral DH\n");
249 #endif
250         BIO_printf(bio_err," -bugs         - Turn on SSL bug compatibility\n");
251         BIO_printf(bio_err," -www          - Respond to a 'GET /' with a status page\n");
252         BIO_printf(bio_err," -WWW          - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
253         BIO_printf(bio_err," -HTTP         - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
254         BIO_printf(bio_err,"                 with the assumption it contains a complete HTTP response.\n");
255         BIO_printf(bio_err," -engine id    - Initialise and use the specified engine\n");
256         BIO_printf(bio_err," -id_prefix arg - Generate SSL/TLS session IDs prefixed by 'arg'\n");
257         BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
258         }
259
260 static int local_argc=0;
261 static char **local_argv;
262
263 #ifdef CHARSET_EBCDIC
264 static int ebcdic_new(BIO *bi);
265 static int ebcdic_free(BIO *a);
266 static int ebcdic_read(BIO *b, char *out, int outl);
267 static int ebcdic_write(BIO *b, char *in, int inl);
268 static long ebcdic_ctrl(BIO *b, int cmd, long num, char *ptr);
269 static int ebcdic_gets(BIO *bp, char *buf, int size);
270 static int ebcdic_puts(BIO *bp, char *str);
271
272 #define BIO_TYPE_EBCDIC_FILTER  (18|0x0200)
273 static BIO_METHOD methods_ebcdic=
274         {
275         BIO_TYPE_EBCDIC_FILTER,
276         "EBCDIC/ASCII filter",
277         ebcdic_write,
278         ebcdic_read,
279         ebcdic_puts,
280         ebcdic_gets,
281         ebcdic_ctrl,
282         ebcdic_new,
283         ebcdic_free,
284         };
285
286 typedef struct
287 {
288         size_t  alloced;
289         char    buff[1];
290 } EBCDIC_OUTBUFF;
291
292 BIO_METHOD *BIO_f_ebcdic_filter()
293 {
294         return(&methods_ebcdic);
295 }
296
297 static int ebcdic_new(BIO *bi)
298 {
299         EBCDIC_OUTBUFF *wbuf;
300
301         wbuf = (EBCDIC_OUTBUFF *)OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF) + 1024);
302         wbuf->alloced = 1024;
303         wbuf->buff[0] = '\0';
304
305         bi->ptr=(char *)wbuf;
306         bi->init=1;
307         bi->flags=0;
308         return(1);
309 }
310
311 static int ebcdic_free(BIO *a)
312 {
313         if (a == NULL) return(0);
314         if (a->ptr != NULL)
315                 OPENSSL_free(a->ptr);
316         a->ptr=NULL;
317         a->init=0;
318         a->flags=0;
319         return(1);
320 }
321         
322 static int ebcdic_read(BIO *b, char *out, int outl)
323 {
324         int ret=0;
325
326         if (out == NULL || outl == 0) return(0);
327         if (b->next_bio == NULL) return(0);
328
329         ret=BIO_read(b->next_bio,out,outl);
330         if (ret > 0)
331                 ascii2ebcdic(out,out,ret);
332         return(ret);
333 }
334
335 static int ebcdic_write(BIO *b, char *in, int inl)
336 {
337         EBCDIC_OUTBUFF *wbuf;
338         int ret=0;
339         int num;
340         unsigned char n;
341
342         if ((in == NULL) || (inl <= 0)) return(0);
343         if (b->next_bio == NULL) return(0);
344
345         wbuf=(EBCDIC_OUTBUFF *)b->ptr;
346
347         if (inl > (num = wbuf->alloced))
348         {
349                 num = num + num;  /* double the size */
350                 if (num < inl)
351                         num = inl;
352                 OPENSSL_free(wbuf);
353                 wbuf=(EBCDIC_OUTBUFF *)OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF) + num);
354
355                 wbuf->alloced = num;
356                 wbuf->buff[0] = '\0';
357
358                 b->ptr=(char *)wbuf;
359         }
360
361         ebcdic2ascii(wbuf->buff, in, inl);
362
363         ret=BIO_write(b->next_bio, wbuf->buff, inl);
364
365         return(ret);
366 }
367
368 static long ebcdic_ctrl(BIO *b, int cmd, long num, char *ptr)
369 {
370         long ret;
371
372         if (b->next_bio == NULL) return(0);
373         switch (cmd)
374         {
375         case BIO_CTRL_DUP:
376                 ret=0L;
377                 break;
378         default:
379                 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
380                 break;
381         }
382         return(ret);
383 }
384
385 static int ebcdic_gets(BIO *bp, char *buf, int size)
386 {
387         int i, ret;
388         if (bp->next_bio == NULL) return(0);
389 /*      return(BIO_gets(bp->next_bio,buf,size));*/
390         for (i=0; i<size-1; ++i)
391         {
392                 ret = ebcdic_read(bp,&buf[i],1);
393                 if (ret <= 0)
394                         break;
395                 else if (buf[i] == '\n')
396                 {
397                         ++i;
398                         break;
399                 }
400         }
401         if (i < size)
402                 buf[i] = '\0';
403         return (ret < 0 && i == 0) ? ret : i;
404 }
405
406 static int ebcdic_puts(BIO *bp, char *str)
407 {
408         if (bp->next_bio == NULL) return(0);
409         return ebcdic_write(bp, str, strlen(str));
410 }
411 #endif
412
413 int MAIN(int, char **);
414
415 int MAIN(int argc, char *argv[])
416         {
417         X509_STORE *store = NULL;
418         int vflags = 0;
419         short port=PORT;
420         char *CApath=NULL,*CAfile=NULL;
421         char *context = NULL;
422         char *dhfile = NULL;
423         int badop=0,bugs=0;
424         int ret=1;
425         int off=0;
426         int no_tmp_rsa=0,no_dhe=0,nocert=0;
427         int state=0;
428         SSL_METHOD *meth=NULL;
429         ENGINE *e=NULL;
430         char *inrand=NULL;
431
432 #if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
433         meth=SSLv23_server_method();
434 #elif !defined(OPENSSL_NO_SSL3)
435         meth=SSLv3_server_method();
436 #elif !defined(OPENSSL_NO_SSL2)
437         meth=SSLv2_server_method();
438 #endif
439
440         local_argc=argc;
441         local_argv=argv;
442
443         apps_startup();
444 #ifdef MONOLITH
445         s_server_init();
446 #endif
447
448         if (bio_err == NULL)
449                 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
450
451         verify_depth=0;
452 #ifdef FIONBIO
453         s_nbio=0;
454 #endif
455         s_nbio_test=0;
456
457         argc--;
458         argv++;
459
460         while (argc >= 1)
461                 {
462                 if      ((strcmp(*argv,"-port") == 0) ||
463                          (strcmp(*argv,"-accept") == 0))
464                         {
465                         if (--argc < 1) goto bad;
466                         if (!extract_port(*(++argv),&port))
467                                 goto bad;
468                         }
469                 else if (strcmp(*argv,"-verify") == 0)
470                         {
471                         s_server_verify=SSL_VERIFY_PEER|SSL_VERIFY_CLIENT_ONCE;
472                         if (--argc < 1) goto bad;
473                         verify_depth=atoi(*(++argv));
474                         BIO_printf(bio_err,"verify depth is %d\n",verify_depth);
475                         }
476                 else if (strcmp(*argv,"-Verify") == 0)
477                         {
478                         s_server_verify=SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT|
479                                 SSL_VERIFY_CLIENT_ONCE;
480                         if (--argc < 1) goto bad;
481                         verify_depth=atoi(*(++argv));
482                         BIO_printf(bio_err,"verify depth is %d, must return a certificate\n",verify_depth);
483                         }
484                 else if (strcmp(*argv,"-context") == 0)
485                         {
486                         if (--argc < 1) goto bad;
487                         context= *(++argv);
488                         }
489                 else if (strcmp(*argv,"-cert") == 0)
490                         {
491                         if (--argc < 1) goto bad;
492                         s_cert_file= *(++argv);
493                         }
494                 else if (strcmp(*argv,"-key") == 0)
495                         {
496                         if (--argc < 1) goto bad;
497                         s_key_file= *(++argv);
498                         }
499                 else if (strcmp(*argv,"-dhparam") == 0)
500                         {
501                         if (--argc < 1) goto bad;
502                         dhfile = *(++argv);
503                         }
504                 else if (strcmp(*argv,"-dcert") == 0)
505                         {
506                         if (--argc < 1) goto bad;
507                         s_dcert_file= *(++argv);
508                         }
509                 else if (strcmp(*argv,"-dkey") == 0)
510                         {
511                         if (--argc < 1) goto bad;
512                         s_dkey_file= *(++argv);
513                         }
514                 else if (strcmp(*argv,"-nocert") == 0)
515                         {
516                         nocert=1;
517                         }
518                 else if (strcmp(*argv,"-CApath") == 0)
519                         {
520                         if (--argc < 1) goto bad;
521                         CApath= *(++argv);
522                         }
523                 else if (strcmp(*argv,"-crl_check") == 0)
524                         {
525                         vflags |= X509_V_FLAG_CRL_CHECK;
526                         }
527                 else if (strcmp(*argv,"-crl_check") == 0)
528                         {
529                         vflags |= X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL;
530                         }
531                 else if (strcmp(*argv,"-serverpref") == 0)
532                         { off|=SSL_OP_CIPHER_SERVER_PREFERENCE; }
533                 else if (strcmp(*argv,"-cipher") == 0)
534                         {
535                         if (--argc < 1) goto bad;
536                         cipher= *(++argv);
537                         }
538                 else if (strcmp(*argv,"-CAfile") == 0)
539                         {
540                         if (--argc < 1) goto bad;
541                         CAfile= *(++argv);
542                         }
543 #ifdef FIONBIO  
544                 else if (strcmp(*argv,"-nbio") == 0)
545                         { s_nbio=1; }
546 #endif
547                 else if (strcmp(*argv,"-nbio_test") == 0)
548                         {
549 #ifdef FIONBIO  
550                         s_nbio=1;
551 #endif
552                         s_nbio_test=1;
553                         }
554                 else if (strcmp(*argv,"-debug") == 0)
555                         { s_debug=1; }
556                 else if (strcmp(*argv,"-hack") == 0)
557                         { hack=1; }
558                 else if (strcmp(*argv,"-state") == 0)
559                         { state=1; }
560                 else if (strcmp(*argv,"-crlf") == 0)
561                         { s_crlf=1; }
562                 else if (strcmp(*argv,"-quiet") == 0)
563                         { s_quiet=1; }
564                 else if (strcmp(*argv,"-bugs") == 0)
565                         { bugs=1; }
566                 else if (strcmp(*argv,"-no_tmp_rsa") == 0)
567                         { no_tmp_rsa=1; }
568                 else if (strcmp(*argv,"-no_dhe") == 0)
569                         { no_dhe=1; }
570                 else if (strcmp(*argv,"-www") == 0)
571                         { www=1; }
572                 else if (strcmp(*argv,"-WWW") == 0)
573                         { www=2; }
574                 else if (strcmp(*argv,"-HTTP") == 0)
575                         { www=3; }
576                 else if (strcmp(*argv,"-no_ssl2") == 0)
577                         { off|=SSL_OP_NO_SSLv2; }
578                 else if (strcmp(*argv,"-no_ssl3") == 0)
579                         { off|=SSL_OP_NO_SSLv3; }
580                 else if (strcmp(*argv,"-no_tls1") == 0)
581                         { off|=SSL_OP_NO_TLSv1; }
582 #ifndef OPENSSL_NO_SSL2
583                 else if (strcmp(*argv,"-ssl2") == 0)
584                         { meth=SSLv2_server_method(); }
585 #endif
586 #ifndef OPENSSL_NO_SSL3
587                 else if (strcmp(*argv,"-ssl3") == 0)
588                         { meth=SSLv3_server_method(); }
589 #endif
590 #ifndef OPENSSL_NO_TLS1
591                 else if (strcmp(*argv,"-tls1") == 0)
592                         { meth=TLSv1_server_method(); }
593 #endif
594                 else if (strcmp(*argv, "-id_prefix") == 0)
595                         {
596                         if (--argc < 1) goto bad;
597                         session_id_prefix = *(++argv);
598                         }
599                 else if (strcmp(*argv,"-engine") == 0)
600                         {
601                         if (--argc < 1) goto bad;
602                         engine_id= *(++argv);
603                         }
604                 else if (strcmp(*argv,"-rand") == 0)
605                         {
606                         if (--argc < 1) goto bad;
607                         inrand= *(++argv);
608                         }
609                 else
610                         {
611                         BIO_printf(bio_err,"unknown option %s\n",*argv);
612                         badop=1;
613                         break;
614                         }
615                 argc--;
616                 argv++;
617                 }
618         if (badop)
619                 {
620 bad:
621                 sv_usage();
622                 goto end;
623                 }
624
625         if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL
626                 && !RAND_status())
627                 {
628                 BIO_printf(bio_err,"warning, not much extra random data, consider using the -rand option\n");
629                 }
630         if (inrand != NULL)
631                 BIO_printf(bio_err,"%ld semi-random bytes loaded\n",
632                         app_RAND_load_files(inrand));
633
634         if (bio_s_out == NULL)
635                 {
636                 if (s_quiet && !s_debug)
637                         {
638                         bio_s_out=BIO_new(BIO_s_null());
639                         }
640                 else
641                         {
642                         if (bio_s_out == NULL)
643                                 bio_s_out=BIO_new_fp(stdout,BIO_NOCLOSE);
644                         }
645                 }
646
647 #if !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_DSA)
648         if (nocert)
649 #endif
650                 {
651                 s_cert_file=NULL;
652                 s_key_file=NULL;
653                 s_dcert_file=NULL;
654                 s_dkey_file=NULL;
655                 }
656
657         SSL_load_error_strings();
658         OpenSSL_add_ssl_algorithms();
659
660         e = setup_engine(bio_err, engine_id, 1);
661
662         ctx=SSL_CTX_new(meth);
663         if (ctx == NULL)
664                 {
665                 ERR_print_errors(bio_err);
666                 goto end;
667                 }
668         if (session_id_prefix)
669                 {
670                 if(strlen(session_id_prefix) >= 32)
671                         BIO_printf(bio_err,
672 "warning: id_prefix is too long, only one new session will be possible\n");
673                 else if(strlen(session_id_prefix) >= 16)
674                         BIO_printf(bio_err,
675 "warning: id_prefix is too long if you use SSLv2\n");
676                 if(!SSL_CTX_set_generate_session_id(ctx, generate_session_id))
677                         {
678                         BIO_printf(bio_err,"error setting 'id_prefix'\n");
679                         ERR_print_errors(bio_err);
680                         goto end;
681                         }
682                 BIO_printf(bio_err,"id_prefix '%s' set.\n", session_id_prefix);
683                 }
684         SSL_CTX_set_quiet_shutdown(ctx,1);
685         if (bugs) SSL_CTX_set_options(ctx,SSL_OP_ALL);
686         if (hack) SSL_CTX_set_options(ctx,SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG);
687         SSL_CTX_set_options(ctx,off);
688         if (hack) SSL_CTX_set_options(ctx,SSL_OP_NON_EXPORT_FIRST);
689
690         if (state) SSL_CTX_set_info_callback(ctx,apps_ssl_info_callback);
691
692         SSL_CTX_sess_set_cache_size(ctx,128);
693
694 #if 0
695         if (cipher == NULL) cipher=getenv("SSL_CIPHER");
696 #endif
697
698 #if 0
699         if (s_cert_file == NULL)
700                 {
701                 BIO_printf(bio_err,"You must specify a certificate file for the server to use\n");
702                 goto end;
703                 }
704 #endif
705
706         if ((!SSL_CTX_load_verify_locations(ctx,CAfile,CApath)) ||
707                 (!SSL_CTX_set_default_verify_paths(ctx)))
708                 {
709                 /* BIO_printf(bio_err,"X509_load_verify_locations\n"); */
710                 ERR_print_errors(bio_err);
711                 /* goto end; */
712                 }
713         store = SSL_CTX_get_cert_store(ctx);
714         X509_STORE_set_flags(store, vflags);
715
716 #ifndef OPENSSL_NO_DH
717         if (!no_dhe)
718                 {
719                 DH *dh=NULL;
720
721                 if (dhfile)
722                         dh = load_dh_param(dhfile);
723                 else if (s_cert_file)
724                         dh = load_dh_param(s_cert_file);
725
726                 if (dh != NULL)
727                         {
728                         BIO_printf(bio_s_out,"Setting temp DH parameters\n");
729                         }
730                 else
731                         {
732                         BIO_printf(bio_s_out,"Using default temp DH parameters\n");
733                         dh=get_dh512();
734                         }
735                 (void)BIO_flush(bio_s_out);
736
737                 SSL_CTX_set_tmp_dh(ctx,dh);
738                 DH_free(dh);
739                 }
740 #endif
741         
742         if (!set_cert_stuff(ctx,s_cert_file,s_key_file))
743                 goto end;
744         if (s_dcert_file != NULL)
745                 {
746                 if (!set_cert_stuff(ctx,s_dcert_file,s_dkey_file))
747                         goto end;
748                 }
749
750 #ifndef OPENSSL_NO_RSA
751 #if 1
752         if (!no_tmp_rsa)
753                 SSL_CTX_set_tmp_rsa_callback(ctx,tmp_rsa_cb);
754 #else
755         if (!no_tmp_rsa && SSL_CTX_need_tmp_RSA(ctx))
756                 {
757                 RSA *rsa;
758
759                 BIO_printf(bio_s_out,"Generating temp (512 bit) RSA key...");
760                 BIO_flush(bio_s_out);
761
762                 rsa=RSA_generate_key(512,RSA_F4,NULL);
763
764                 if (!SSL_CTX_set_tmp_rsa(ctx,rsa))
765                         {
766                         ERR_print_errors(bio_err);
767                         goto end;
768                         }
769                 RSA_free(rsa);
770                 BIO_printf(bio_s_out,"\n");
771                 }
772 #endif
773 #endif
774
775         if (cipher != NULL)
776                 if(!SSL_CTX_set_cipher_list(ctx,cipher)) {
777                 BIO_printf(bio_err,"error setting cipher list\n");
778                 ERR_print_errors(bio_err);
779                 goto end;
780         }
781         SSL_CTX_set_verify(ctx,s_server_verify,verify_callback);
782         SSL_CTX_set_session_id_context(ctx,(void*)&s_server_session_id_context,
783                 sizeof s_server_session_id_context);
784
785         if (CAfile != NULL)
786             SSL_CTX_set_client_CA_list(ctx,SSL_load_client_CA_file(CAfile));
787
788         BIO_printf(bio_s_out,"ACCEPT\n");
789         if (www)
790                 do_server(port,&accept_socket,www_body, context);
791         else
792                 do_server(port,&accept_socket,sv_body, context);
793         print_stats(bio_s_out,ctx);
794         ret=0;
795 end:
796         if (ctx != NULL) SSL_CTX_free(ctx);
797         if (bio_s_out != NULL)
798                 {
799                 BIO_free(bio_s_out);
800                 bio_s_out=NULL;
801                 }
802         apps_shutdown();
803         EXIT(ret);
804         }
805
806 static void print_stats(BIO *bio, SSL_CTX *ssl_ctx)
807         {
808         BIO_printf(bio,"%4ld items in the session cache\n",
809                 SSL_CTX_sess_number(ssl_ctx));
810         BIO_printf(bio,"%4d client connects (SSL_connect())\n",
811                 SSL_CTX_sess_connect(ssl_ctx));
812         BIO_printf(bio,"%4d client renegotiates (SSL_connect())\n",
813                 SSL_CTX_sess_connect_renegotiate(ssl_ctx));
814         BIO_printf(bio,"%4d client connects that finished\n",
815                 SSL_CTX_sess_connect_good(ssl_ctx));
816         BIO_printf(bio,"%4d server accepts (SSL_accept())\n",
817                 SSL_CTX_sess_accept(ssl_ctx));
818         BIO_printf(bio,"%4d server renegotiates (SSL_accept())\n",
819                 SSL_CTX_sess_accept_renegotiate(ssl_ctx));
820         BIO_printf(bio,"%4d server accepts that finished\n",
821                 SSL_CTX_sess_accept_good(ssl_ctx));
822         BIO_printf(bio,"%4d session cache hits\n",SSL_CTX_sess_hits(ssl_ctx));
823         BIO_printf(bio,"%4d session cache misses\n",SSL_CTX_sess_misses(ssl_ctx));
824         BIO_printf(bio,"%4d session cache timeouts\n",SSL_CTX_sess_timeouts(ssl_ctx));
825         BIO_printf(bio,"%4d callback cache hits\n",SSL_CTX_sess_cb_hits(ssl_ctx));
826         BIO_printf(bio,"%4d cache full overflows (%d allowed)\n",
827                 SSL_CTX_sess_cache_full(ssl_ctx),
828                 SSL_CTX_sess_get_cache_size(ssl_ctx));
829         }
830
831 static int sv_body(char *hostname, int s, unsigned char *context)
832         {
833         char *buf=NULL;
834         fd_set readfds;
835         int ret=1,width;
836         int k,i;
837         unsigned long l;
838         SSL *con=NULL;
839         BIO *sbio;
840 #ifdef OPENSSL_SYS_WINDOWS
841         struct timeval tv;
842 #endif
843
844         if ((buf=OPENSSL_malloc(bufsize)) == NULL)
845                 {
846                 BIO_printf(bio_err,"out of memory\n");
847                 goto err;
848                 }
849 #ifdef FIONBIO  
850         if (s_nbio)
851                 {
852                 unsigned long sl=1;
853
854                 if (!s_quiet)
855                         BIO_printf(bio_err,"turning on non blocking io\n");
856                 if (BIO_socket_ioctl(s,FIONBIO,&sl) < 0)
857                         ERR_print_errors(bio_err);
858                 }
859 #endif
860
861         if (con == NULL) {
862                 con=SSL_new(ctx);
863 #ifndef OPENSSL_NO_KRB5
864                 if ((con->kssl_ctx = kssl_ctx_new()) != NULL)
865                         {
866                         kssl_ctx_setstring(con->kssl_ctx, KSSL_SERVICE, KRB5SVC);
867                         kssl_ctx_setstring(con->kssl_ctx, KSSL_KEYTAB, KRB5KEYTAB);
868                         }
869 #endif  /* OPENSSL_NO_KRB5 */
870                 if(context)
871                       SSL_set_session_id_context(con, context,
872                                                  strlen((char *)context));
873         }
874         SSL_clear(con);
875
876         sbio=BIO_new_socket(s,BIO_NOCLOSE);
877         if (s_nbio_test)
878                 {
879                 BIO *test;
880
881                 test=BIO_new(BIO_f_nbio_test());
882                 sbio=BIO_push(test,sbio);
883                 }
884         SSL_set_bio(con,sbio,sbio);
885         SSL_set_accept_state(con);
886         /* SSL_set_fd(con,s); */
887
888         if (s_debug)
889                 {
890                 con->debug=1;
891                 BIO_set_callback(SSL_get_rbio(con),bio_dump_cb);
892                 BIO_set_callback_arg(SSL_get_rbio(con),bio_s_out);
893                 }
894
895         width=s+1;
896         for (;;)
897                 {
898                 int read_from_terminal;
899                 int read_from_sslcon;
900
901                 read_from_terminal = 0;
902                 read_from_sslcon = SSL_pending(con);
903
904                 if (!read_from_sslcon)
905                         {
906                         FD_ZERO(&readfds);
907 #ifndef OPENSSL_SYS_WINDOWS
908                         FD_SET(fileno(stdin),&readfds);
909 #endif
910                         FD_SET(s,&readfds);
911                         /* Note: under VMS with SOCKETSHR the second parameter is
912                          * currently of type (int *) whereas under other systems
913                          * it is (void *) if you don't have a cast it will choke
914                          * the compiler: if you do have a cast then you can either
915                          * go for (int *) or (void *).
916                          */
917 #ifdef OPENSSL_SYS_WINDOWS
918                         /* Under Windows we can't select on stdin: only
919                          * on sockets. As a workaround we timeout the select every
920                          * second and check for any keypress. In a proper Windows
921                          * application we wouldn't do this because it is inefficient.
922                          */
923                         tv.tv_sec = 1;
924                         tv.tv_usec = 0;
925                         i=select(width,(void *)&readfds,NULL,NULL,&tv);
926                         if((i < 0) || (!i && !_kbhit() ) )continue;
927                         if(_kbhit())
928                                 read_from_terminal = 1;
929 #else
930                         i=select(width,(void *)&readfds,NULL,NULL,NULL);
931                         if (i <= 0) continue;
932                         if (FD_ISSET(fileno(stdin),&readfds))
933                                 read_from_terminal = 1;
934 #endif
935                         if (FD_ISSET(s,&readfds))
936                                 read_from_sslcon = 1;
937                         }
938                 if (read_from_terminal)
939                         {
940                         if (s_crlf)
941                                 {
942                                 int j, lf_num;
943
944                                 i=read(fileno(stdin), buf, bufsize/2);
945                                 lf_num = 0;
946                                 /* both loops are skipped when i <= 0 */
947                                 for (j = 0; j < i; j++)
948                                         if (buf[j] == '\n')
949                                                 lf_num++;
950                                 for (j = i-1; j >= 0; j--)
951                                         {
952                                         buf[j+lf_num] = buf[j];
953                                         if (buf[j] == '\n')
954                                                 {
955                                                 lf_num--;
956                                                 i++;
957                                                 buf[j+lf_num] = '\r';
958                                                 }
959                                         }
960                                 assert(lf_num == 0);
961                                 }
962                         else
963                                 i=read(fileno(stdin),buf,bufsize);
964                         if (!s_quiet)
965                                 {
966                                 if ((i <= 0) || (buf[0] == 'Q'))
967                                         {
968                                         BIO_printf(bio_s_out,"DONE\n");
969                                         SHUTDOWN(s);
970                                         close_accept_socket();
971                                         ret= -11;
972                                         goto err;
973                                         }
974                                 if ((i <= 0) || (buf[0] == 'q'))
975                                         {
976                                         BIO_printf(bio_s_out,"DONE\n");
977                                         SHUTDOWN(s);
978         /*                              close_accept_socket();
979                                         ret= -11;*/
980                                         goto err;
981                                         }
982                                 if ((buf[0] == 'r') && 
983                                         ((buf[1] == '\n') || (buf[1] == '\r')))
984                                         {
985                                         SSL_renegotiate(con);
986                                         i=SSL_do_handshake(con);
987                                         printf("SSL_do_handshake -> %d\n",i);
988                                         i=0; /*13; */
989                                         continue;
990                                         /* strcpy(buf,"server side RE-NEGOTIATE\n"); */
991                                         }
992                                 if ((buf[0] == 'R') &&
993                                         ((buf[1] == '\n') || (buf[1] == '\r')))
994                                         {
995                                         SSL_set_verify(con,
996                                                 SSL_VERIFY_PEER|SSL_VERIFY_CLIENT_ONCE,NULL);
997                                         SSL_renegotiate(con);
998                                         i=SSL_do_handshake(con);
999                                         printf("SSL_do_handshake -> %d\n",i);
1000                                         i=0; /* 13; */
1001                                         continue;
1002                                         /* strcpy(buf,"server side RE-NEGOTIATE asking for client cert\n"); */
1003                                         }
1004                                 if (buf[0] == 'P')
1005                                         {
1006                                         static char *str="Lets print some clear text\n";
1007                                         BIO_write(SSL_get_wbio(con),str,strlen(str));
1008                                         }
1009                                 if (buf[0] == 'S')
1010                                         {
1011                                         print_stats(bio_s_out,SSL_get_SSL_CTX(con));
1012                                         }
1013                                 }
1014 #ifdef CHARSET_EBCDIC
1015                         ebcdic2ascii(buf,buf,i);
1016 #endif
1017                         l=k=0;
1018                         for (;;)
1019                                 {
1020                                 /* should do a select for the write */
1021 #ifdef RENEG
1022 { static count=0; if (++count == 100) { count=0; SSL_renegotiate(con); } }
1023 #endif
1024                                 k=SSL_write(con,&(buf[l]),(unsigned int)i);
1025                                 switch (SSL_get_error(con,k))
1026                                         {
1027                                 case SSL_ERROR_NONE:
1028                                         break;
1029                                 case SSL_ERROR_WANT_WRITE:
1030                                 case SSL_ERROR_WANT_READ:
1031                                 case SSL_ERROR_WANT_X509_LOOKUP:
1032                                         BIO_printf(bio_s_out,"Write BLOCK\n");
1033                                         break;
1034                                 case SSL_ERROR_SYSCALL:
1035                                 case SSL_ERROR_SSL:
1036                                         BIO_printf(bio_s_out,"ERROR\n");
1037                                         ERR_print_errors(bio_err);
1038                                         ret=1;
1039                                         goto err;
1040                                         /* break; */
1041                                 case SSL_ERROR_ZERO_RETURN:
1042                                         BIO_printf(bio_s_out,"DONE\n");
1043                                         ret=1;
1044                                         goto err;
1045                                         }
1046                                 l+=k;
1047                                 i-=k;
1048                                 if (i <= 0) break;
1049                                 }
1050                         }
1051                 if (read_from_sslcon)
1052                         {
1053                         if (!SSL_is_init_finished(con))
1054                                 {
1055                                 i=init_ssl_connection(con);
1056                                 
1057                                 if (i < 0)
1058                                         {
1059                                         ret=0;
1060                                         goto err;
1061                                         }
1062                                 else if (i == 0)
1063                                         {
1064                                         ret=1;
1065                                         goto err;
1066                                         }
1067                                 }
1068                         else
1069                                 {
1070 again:  
1071                                 i=SSL_read(con,(char *)buf,bufsize);
1072                                 switch (SSL_get_error(con,i))
1073                                         {
1074                                 case SSL_ERROR_NONE:
1075 #ifdef CHARSET_EBCDIC
1076                                         ascii2ebcdic(buf,buf,i);
1077 #endif
1078                                         write(fileno(stdout),buf,
1079                                                 (unsigned int)i);
1080                                         if (SSL_pending(con)) goto again;
1081                                         break;
1082                                 case SSL_ERROR_WANT_WRITE:
1083                                 case SSL_ERROR_WANT_READ:
1084                                 case SSL_ERROR_WANT_X509_LOOKUP:
1085                                         BIO_printf(bio_s_out,"Read BLOCK\n");
1086                                         break;
1087                                 case SSL_ERROR_SYSCALL:
1088                                 case SSL_ERROR_SSL:
1089                                         BIO_printf(bio_s_out,"ERROR\n");
1090                                         ERR_print_errors(bio_err);
1091                                         ret=1;
1092                                         goto err;
1093                                 case SSL_ERROR_ZERO_RETURN:
1094                                         BIO_printf(bio_s_out,"DONE\n");
1095                                         ret=1;
1096                                         goto err;
1097                                         }
1098                                 }
1099                         }
1100                 }
1101 err:
1102         BIO_printf(bio_s_out,"shutting down SSL\n");
1103 #if 1
1104         SSL_set_shutdown(con,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN);
1105 #else
1106         SSL_shutdown(con);
1107 #endif
1108         if (con != NULL) SSL_free(con);
1109         BIO_printf(bio_s_out,"CONNECTION CLOSED\n");
1110         if (buf != NULL)
1111                 {
1112                 memset(buf,0,bufsize);
1113                 OPENSSL_free(buf);
1114                 }
1115         if (ret >= 0)
1116                 BIO_printf(bio_s_out,"ACCEPT\n");
1117         return(ret);
1118         }
1119
1120 static void close_accept_socket(void)
1121         {
1122         BIO_printf(bio_err,"shutdown accept socket\n");
1123         if (accept_socket >= 0)
1124                 {
1125                 SHUTDOWN2(accept_socket);
1126                 }
1127         }
1128
1129 static int init_ssl_connection(SSL *con)
1130         {
1131         int i;
1132         const char *str;
1133         X509 *peer;
1134         long verify_error;
1135         MS_STATIC char buf[BUFSIZ];
1136
1137         if ((i=SSL_accept(con)) <= 0)
1138                 {
1139                 if (BIO_sock_should_retry(i))
1140                         {
1141                         BIO_printf(bio_s_out,"DELAY\n");
1142                         return(1);
1143                         }
1144
1145                 BIO_printf(bio_err,"ERROR\n");
1146                 verify_error=SSL_get_verify_result(con);
1147                 if (verify_error != X509_V_OK)
1148                         {
1149                         BIO_printf(bio_err,"verify error:%s\n",
1150                                 X509_verify_cert_error_string(verify_error));
1151                         }
1152                 else
1153                         ERR_print_errors(bio_err);
1154                 return(0);
1155                 }
1156
1157         PEM_write_bio_SSL_SESSION(bio_s_out,SSL_get_session(con));
1158
1159         peer=SSL_get_peer_certificate(con);
1160         if (peer != NULL)
1161                 {
1162                 BIO_printf(bio_s_out,"Client certificate\n");
1163                 PEM_write_bio_X509(bio_s_out,peer);
1164                 X509_NAME_oneline(X509_get_subject_name(peer),buf,BUFSIZ);
1165                 BIO_printf(bio_s_out,"subject=%s\n",buf);
1166                 X509_NAME_oneline(X509_get_issuer_name(peer),buf,BUFSIZ);
1167                 BIO_printf(bio_s_out,"issuer=%s\n",buf);
1168                 X509_free(peer);
1169                 }
1170
1171         if (SSL_get_shared_ciphers(con,buf,BUFSIZ) != NULL)
1172                 BIO_printf(bio_s_out,"Shared ciphers:%s\n",buf);
1173         str=SSL_CIPHER_get_name(SSL_get_current_cipher(con));
1174         BIO_printf(bio_s_out,"CIPHER is %s\n",(str != NULL)?str:"(NONE)");
1175         if (con->hit) BIO_printf(bio_s_out,"Reused session-id\n");
1176         if (SSL_ctrl(con,SSL_CTRL_GET_FLAGS,0,NULL) &
1177                 TLS1_FLAGS_TLS_PADDING_BUG)
1178                 BIO_printf(bio_s_out,"Peer has incorrect TLSv1 block padding\n");
1179
1180         return(1);
1181         }
1182
1183 #ifndef OPENSSL_NO_DH
1184 static DH *load_dh_param(char *dhfile)
1185         {
1186         DH *ret=NULL;
1187         BIO *bio;
1188
1189         if ((bio=BIO_new_file(dhfile,"r")) == NULL)
1190                 goto err;
1191         ret=PEM_read_bio_DHparams(bio,NULL,NULL,NULL);
1192 err:
1193         if (bio != NULL) BIO_free(bio);
1194         return(ret);
1195         }
1196 #endif
1197
1198 #if 0
1199 static int load_CA(SSL_CTX *ctx, char *file)
1200         {
1201         FILE *in;
1202         X509 *x=NULL;
1203
1204         if ((in=fopen(file,"r")) == NULL)
1205                 return(0);
1206
1207         for (;;)
1208                 {
1209                 if (PEM_read_X509(in,&x,NULL) == NULL)
1210                         break;
1211                 SSL_CTX_add_client_CA(ctx,x);
1212                 }
1213         if (x != NULL) X509_free(x);
1214         fclose(in);
1215         return(1);
1216         }
1217 #endif
1218
1219 static int www_body(char *hostname, int s, unsigned char *context)
1220         {
1221         char *buf=NULL;
1222         int ret=1;
1223         int i,j,k,blank,dot;
1224         struct stat st_buf;
1225         SSL *con;
1226         SSL_CIPHER *c;
1227         BIO *io,*ssl_bio,*sbio;
1228         long total_bytes;
1229
1230         buf=OPENSSL_malloc(bufsize);
1231         if (buf == NULL) return(0);
1232         io=BIO_new(BIO_f_buffer());
1233         ssl_bio=BIO_new(BIO_f_ssl());
1234         if ((io == NULL) || (ssl_bio == NULL)) goto err;
1235
1236 #ifdef FIONBIO  
1237         if (s_nbio)
1238                 {
1239                 unsigned long sl=1;
1240
1241                 if (!s_quiet)
1242                         BIO_printf(bio_err,"turning on non blocking io\n");
1243                 if (BIO_socket_ioctl(s,FIONBIO,&sl) < 0)
1244                         ERR_print_errors(bio_err);
1245                 }
1246 #endif
1247
1248         /* lets make the output buffer a reasonable size */
1249         if (!BIO_set_write_buffer_size(io,bufsize)) goto err;
1250
1251         if ((con=SSL_new(ctx)) == NULL) goto err;
1252         if(context) SSL_set_session_id_context(con, context,
1253                                                strlen((char *)context));
1254
1255         sbio=BIO_new_socket(s,BIO_NOCLOSE);
1256         if (s_nbio_test)
1257                 {
1258                 BIO *test;
1259
1260                 test=BIO_new(BIO_f_nbio_test());
1261                 sbio=BIO_push(test,sbio);
1262                 }
1263         SSL_set_bio(con,sbio,sbio);
1264         SSL_set_accept_state(con);
1265
1266         /* SSL_set_fd(con,s); */
1267         BIO_set_ssl(ssl_bio,con,BIO_CLOSE);
1268         BIO_push(io,ssl_bio);
1269 #ifdef CHARSET_EBCDIC
1270         io = BIO_push(BIO_new(BIO_f_ebcdic_filter()),io);
1271 #endif
1272
1273         if (s_debug)
1274                 {
1275                 con->debug=1;
1276                 BIO_set_callback(SSL_get_rbio(con),bio_dump_cb);
1277                 BIO_set_callback_arg(SSL_get_rbio(con),bio_s_out);
1278                 }
1279
1280         blank=0;
1281         for (;;)
1282                 {
1283                 if (hack)
1284                         {
1285                         i=SSL_accept(con);
1286
1287                         switch (SSL_get_error(con,i))
1288                                 {
1289                         case SSL_ERROR_NONE:
1290                                 break;
1291                         case SSL_ERROR_WANT_WRITE:
1292                         case SSL_ERROR_WANT_READ:
1293                         case SSL_ERROR_WANT_X509_LOOKUP:
1294                                 continue;
1295                         case SSL_ERROR_SYSCALL:
1296                         case SSL_ERROR_SSL:
1297                         case SSL_ERROR_ZERO_RETURN:
1298                                 ret=1;
1299                                 goto err;
1300                                 /* break; */
1301                                 }
1302
1303                         SSL_renegotiate(con);
1304                         SSL_write(con,NULL,0);
1305                         }
1306
1307                 i=BIO_gets(io,buf,bufsize-1);
1308                 if (i < 0) /* error */
1309                         {
1310                         if (!BIO_should_retry(io))
1311                                 {
1312                                 if (!s_quiet)
1313                                         ERR_print_errors(bio_err);
1314                                 goto err;
1315                                 }
1316                         else
1317                                 {
1318                                 BIO_printf(bio_s_out,"read R BLOCK\n");
1319 #ifndef OPENSSL_SYS_MSDOS
1320                                 sleep(1);
1321 #endif
1322                                 continue;
1323                                 }
1324                         }
1325                 else if (i == 0) /* end of input */
1326                         {
1327                         ret=1;
1328                         goto end;
1329                         }
1330
1331                 /* else we have data */
1332                 if (    ((www == 1) && (strncmp("GET ",buf,4) == 0)) ||
1333                         ((www == 2) && (strncmp("GET /stats ",buf,10) == 0)))
1334                         {
1335                         char *p;
1336                         X509 *peer;
1337                         STACK_OF(SSL_CIPHER) *sk;
1338                         static char *space="                          ";
1339
1340                         BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
1341                         BIO_puts(io,"<HTML><BODY BGCOLOR=\"#ffffff\">\n");
1342                         BIO_puts(io,"<pre>\n");
1343 /*                      BIO_puts(io,SSLeay_version(SSLEAY_VERSION));*/
1344                         BIO_puts(io,"\n");
1345                         for (i=0; i<local_argc; i++)
1346                                 {
1347                                 BIO_puts(io,local_argv[i]);
1348                                 BIO_write(io," ",1);
1349                                 }
1350                         BIO_puts(io,"\n");
1351
1352                         /* The following is evil and should not really
1353                          * be done */
1354                         BIO_printf(io,"Ciphers supported in s_server binary\n");
1355                         sk=SSL_get_ciphers(con);
1356                         j=sk_SSL_CIPHER_num(sk);
1357                         for (i=0; i<j; i++)
1358                                 {
1359                                 c=sk_SSL_CIPHER_value(sk,i);
1360                                 BIO_printf(io,"%-11s:%-25s",
1361                                         SSL_CIPHER_get_version(c),
1362                                         SSL_CIPHER_get_name(c));
1363                                 if ((((i+1)%2) == 0) && (i+1 != j))
1364                                         BIO_puts(io,"\n");
1365                                 }
1366                         BIO_puts(io,"\n");
1367                         p=SSL_get_shared_ciphers(con,buf,bufsize);
1368                         if (p != NULL)
1369                                 {
1370                                 BIO_printf(io,"---\nCiphers common between both SSL end points:\n");
1371                                 j=i=0;
1372                                 while (*p)
1373                                         {
1374                                         if (*p == ':')
1375                                                 {
1376                                                 BIO_write(io,space,26-j);
1377                                                 i++;
1378                                                 j=0;
1379                                                 BIO_write(io,((i%3)?" ":"\n"),1);
1380                                                 }
1381                                         else
1382                                                 {
1383                                                 BIO_write(io,p,1);
1384                                                 j++;
1385                                                 }
1386                                         p++;
1387                                         }
1388                                 BIO_puts(io,"\n");
1389                                 }
1390                         BIO_printf(io,((con->hit)
1391                                 ?"---\nReused, "
1392                                 :"---\nNew, "));
1393                         c=SSL_get_current_cipher(con);
1394                         BIO_printf(io,"%s, Cipher is %s\n",
1395                                 SSL_CIPHER_get_version(c),
1396                                 SSL_CIPHER_get_name(c));
1397                         SSL_SESSION_print(io,SSL_get_session(con));
1398                         BIO_printf(io,"---\n");
1399                         print_stats(io,SSL_get_SSL_CTX(con));
1400                         BIO_printf(io,"---\n");
1401                         peer=SSL_get_peer_certificate(con);
1402                         if (peer != NULL)
1403                                 {
1404                                 BIO_printf(io,"Client certificate\n");
1405                                 X509_print(io,peer);
1406                                 PEM_write_bio_X509(io,peer);
1407                                 }
1408                         else
1409                                 BIO_puts(io,"no client certificate available\n");
1410                         BIO_puts(io,"</BODY></HTML>\r\n\r\n");
1411                         break;
1412                         }
1413                 else if ((www == 2 || www == 3)
1414                          && (strncmp("GET /",buf,5) == 0))
1415                         {
1416                         BIO *file;
1417                         char *p,*e;
1418                         static char *text="HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
1419
1420                         /* skip the '/' */
1421                         p= &(buf[5]);
1422
1423                         dot = 1;
1424                         for (e=p; *e != '\0'; e++)
1425                                 {
1426                                 if (e[0] == ' ')
1427                                         break;
1428
1429                                 switch (dot)
1430                                         {
1431                                 case 1:
1432                                         dot = (e[0] == '.') ? 2 : 0;
1433                                         break;
1434                                 case 2:
1435                                         dot = (e[0] == '.') ? 3 : 0;
1436                                         break;
1437                                 case 3:
1438                                         dot = (e[0] == '/') ? -1 : 0;
1439                                         break;
1440                                         }
1441                                 if (dot == 0)
1442                                         dot = (e[0] == '/') ? 1 : 0;
1443                                 }
1444                         dot = (dot == 3) || (dot == -1); /* filename contains ".." component */
1445
1446                         if (*e == '\0')
1447                                 {
1448                                 BIO_puts(io,text);
1449                                 BIO_printf(io,"'%s' is an invalid file name\r\n",p);
1450                                 break;
1451                                 }
1452                         *e='\0';
1453
1454                         if (dot)
1455                                 {
1456                                 BIO_puts(io,text);
1457                                 BIO_printf(io,"'%s' contains '..' reference\r\n",p);
1458                                 break;
1459                                 }
1460
1461                         if (*p == '/')
1462                                 {
1463                                 BIO_puts(io,text);
1464                                 BIO_printf(io,"'%s' is an invalid path\r\n",p);
1465                                 break;
1466                                 }
1467
1468 #if 0
1469                         /* append if a directory lookup */
1470                         if (e[-1] == '/')
1471                                 strcat(p,"index.html");
1472 #endif
1473
1474                         /* if a directory, do the index thang */
1475                         if (stat(p,&st_buf) < 0)
1476                                 {
1477                                 BIO_puts(io,text);
1478                                 BIO_printf(io,"Error accessing '%s'\r\n",p);
1479                                 ERR_print_errors(io);
1480                                 break;
1481                                 }
1482                         if (S_ISDIR(st_buf.st_mode))
1483                                 {
1484 #if 0 /* must check buffer size */
1485                                 strcat(p,"/index.html");
1486 #else
1487                                 BIO_puts(io,text);
1488                                 BIO_printf(io,"'%s' is a directory\r\n",p);
1489                                 break;
1490 #endif
1491                                 }
1492
1493                         if ((file=BIO_new_file(p,"r")) == NULL)
1494                                 {
1495                                 BIO_puts(io,text);
1496                                 BIO_printf(io,"Error opening '%s'\r\n",p);
1497                                 ERR_print_errors(io);
1498                                 break;
1499                                 }
1500
1501                         if (!s_quiet)
1502                                 BIO_printf(bio_err,"FILE:%s\n",p);
1503
1504                         if (www == 2)
1505                                 {
1506                                 i=strlen(p);
1507                                 if (    ((i > 5) && (strcmp(&(p[i-5]),".html") == 0)) ||
1508                                         ((i > 4) && (strcmp(&(p[i-4]),".php") == 0)) ||
1509                                         ((i > 4) && (strcmp(&(p[i-4]),".htm") == 0)))
1510                                         BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
1511                                 else
1512                                         BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
1513                                 }
1514                         /* send the file */
1515                         total_bytes=0;
1516                         for (;;)
1517                                 {
1518                                 i=BIO_read(file,buf,bufsize);
1519                                 if (i <= 0) break;
1520
1521 #ifdef RENEG
1522                                 total_bytes+=i;
1523                                 fprintf(stderr,"%d\n",i);
1524                                 if (total_bytes > 3*1024)
1525                                         {
1526                                         total_bytes=0;
1527                                         fprintf(stderr,"RENEGOTIATE\n");
1528                                         SSL_renegotiate(con);
1529                                         }
1530 #endif
1531
1532                                 for (j=0; j<i; )
1533                                         {
1534 #ifdef RENEG
1535 { static count=0; if (++count == 13) { SSL_renegotiate(con); } }
1536 #endif
1537                                         k=BIO_write(io,&(buf[j]),i-j);
1538                                         if (k <= 0)
1539                                                 {
1540                                                 if (!BIO_should_retry(io))
1541                                                         goto write_error;
1542                                                 else
1543                                                         {
1544                                                         BIO_printf(bio_s_out,"rwrite W BLOCK\n");
1545                                                         }
1546                                                 }
1547                                         else
1548                                                 {
1549                                                 j+=k;
1550                                                 }
1551                                         }
1552                                 }
1553 write_error:
1554                         BIO_free(file);
1555                         break;
1556                         }
1557                 }
1558
1559         for (;;)
1560                 {
1561                 i=(int)BIO_flush(io);
1562                 if (i <= 0)
1563                         {
1564                         if (!BIO_should_retry(io))
1565                                 break;
1566                         }
1567                 else
1568                         break;
1569                 }
1570 end:
1571 #if 1
1572         /* make sure we re-use sessions */
1573         SSL_set_shutdown(con,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN);
1574 #else
1575         /* This kills performance */
1576 /*      SSL_shutdown(con); A shutdown gets sent in the
1577  *      BIO_free_all(io) procession */
1578 #endif
1579
1580 err:
1581
1582         if (ret >= 0)
1583                 BIO_printf(bio_s_out,"ACCEPT\n");
1584
1585         if (buf != NULL) OPENSSL_free(buf);
1586         if (io != NULL) BIO_free_all(io);
1587 /*      if (ssl_bio != NULL) BIO_free(ssl_bio);*/
1588         return(ret);
1589         }
1590
1591 #ifndef OPENSSL_NO_RSA
1592 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength)
1593         {
1594         static RSA *rsa_tmp=NULL;
1595
1596         if (rsa_tmp == NULL)
1597                 {
1598                 if (!s_quiet)
1599                         {
1600                         BIO_printf(bio_err,"Generating temp (%d bit) RSA key...",keylength);
1601                         (void)BIO_flush(bio_err);
1602                         }
1603                 rsa_tmp=RSA_generate_key(keylength,RSA_F4,NULL,NULL);
1604                 if (!s_quiet)
1605                         {
1606                         BIO_printf(bio_err,"\n");
1607                         (void)BIO_flush(bio_err);
1608                         }
1609                 }
1610         return(rsa_tmp);
1611         }
1612 #endif
1613
1614 #define MAX_SESSION_ID_ATTEMPTS 10
1615 static int generate_session_id(const SSL *ssl, unsigned char *id,
1616                                 unsigned int *id_len)
1617         {
1618         unsigned int count = 0;
1619         do      {
1620                 RAND_pseudo_bytes(id, *id_len);
1621                 /* Prefix the session_id with the required prefix. NB: If our
1622                  * prefix is too long, clip it - but there will be worse effects
1623                  * anyway, eg. the server could only possibly create 1 session
1624                  * ID (ie. the prefix!) so all future session negotiations will
1625                  * fail due to conflicts. */
1626                 memcpy(id, session_id_prefix,
1627                         (strlen(session_id_prefix) < *id_len) ?
1628                         strlen(session_id_prefix) : *id_len);
1629                 }
1630         while(SSL_has_matching_session_id(ssl, id, *id_len) &&
1631                 (++count < MAX_SESSION_ID_ATTEMPTS));
1632         if(count >= MAX_SESSION_ID_ATTEMPTS)
1633                 return 0;
1634         return 1;
1635         }