269b28dfd16c7cf40c6f98c2202155ba6df15122
[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,
867                                                                 KRB5SVC);
868                         kssl_ctx_setstring(con->kssl_ctx, KSSL_KEYTAB,
869                                                                 KRB5KEYTAB);
870                         }
871 #endif  /* OPENSSL_NO_KRB5 */
872                 if(context)
873                       SSL_set_session_id_context(con, context,
874                                                  strlen((char *)context));
875         }
876         SSL_clear(con);
877
878         sbio=BIO_new_socket(s,BIO_NOCLOSE);
879         if (s_nbio_test)
880                 {
881                 BIO *test;
882
883                 test=BIO_new(BIO_f_nbio_test());
884                 sbio=BIO_push(test,sbio);
885                 }
886         SSL_set_bio(con,sbio,sbio);
887         SSL_set_accept_state(con);
888         /* SSL_set_fd(con,s); */
889
890         if (s_debug)
891                 {
892                 con->debug=1;
893                 BIO_set_callback(SSL_get_rbio(con),bio_dump_cb);
894                 BIO_set_callback_arg(SSL_get_rbio(con),bio_s_out);
895                 }
896
897         width=s+1;
898         for (;;)
899                 {
900                 int read_from_terminal;
901                 int read_from_sslcon;
902
903                 read_from_terminal = 0;
904                 read_from_sslcon = SSL_pending(con);
905
906                 if (!read_from_sslcon)
907                         {
908                         FD_ZERO(&readfds);
909 #ifndef OPENSSL_SYS_WINDOWS
910                         FD_SET(fileno(stdin),&readfds);
911 #endif
912                         FD_SET(s,&readfds);
913                         /* Note: under VMS with SOCKETSHR the second parameter is
914                          * currently of type (int *) whereas under other systems
915                          * it is (void *) if you don't have a cast it will choke
916                          * the compiler: if you do have a cast then you can either
917                          * go for (int *) or (void *).
918                          */
919 #ifdef OPENSSL_SYS_WINDOWS
920                         /* Under Windows we can't select on stdin: only
921                          * on sockets. As a workaround we timeout the select every
922                          * second and check for any keypress. In a proper Windows
923                          * application we wouldn't do this because it is inefficient.
924                          */
925                         tv.tv_sec = 1;
926                         tv.tv_usec = 0;
927                         i=select(width,(void *)&readfds,NULL,NULL,&tv);
928                         if((i < 0) || (!i && !_kbhit() ) )continue;
929                         if(_kbhit())
930                                 read_from_terminal = 1;
931 #else
932                         i=select(width,(void *)&readfds,NULL,NULL,NULL);
933                         if (i <= 0) continue;
934                         if (FD_ISSET(fileno(stdin),&readfds))
935                                 read_from_terminal = 1;
936 #endif
937                         if (FD_ISSET(s,&readfds))
938                                 read_from_sslcon = 1;
939                         }
940                 if (read_from_terminal)
941                         {
942                         if (s_crlf)
943                                 {
944                                 int j, lf_num;
945
946                                 i=read(fileno(stdin), buf, bufsize/2);
947                                 lf_num = 0;
948                                 /* both loops are skipped when i <= 0 */
949                                 for (j = 0; j < i; j++)
950                                         if (buf[j] == '\n')
951                                                 lf_num++;
952                                 for (j = i-1; j >= 0; j--)
953                                         {
954                                         buf[j+lf_num] = buf[j];
955                                         if (buf[j] == '\n')
956                                                 {
957                                                 lf_num--;
958                                                 i++;
959                                                 buf[j+lf_num] = '\r';
960                                                 }
961                                         }
962                                 assert(lf_num == 0);
963                                 }
964                         else
965                                 i=read(fileno(stdin),buf,bufsize);
966                         if (!s_quiet)
967                                 {
968                                 if ((i <= 0) || (buf[0] == 'Q'))
969                                         {
970                                         BIO_printf(bio_s_out,"DONE\n");
971                                         SHUTDOWN(s);
972                                         close_accept_socket();
973                                         ret= -11;
974                                         goto err;
975                                         }
976                                 if ((i <= 0) || (buf[0] == 'q'))
977                                         {
978                                         BIO_printf(bio_s_out,"DONE\n");
979                                         SHUTDOWN(s);
980         /*                              close_accept_socket();
981                                         ret= -11;*/
982                                         goto err;
983                                         }
984                                 if ((buf[0] == 'r') && 
985                                         ((buf[1] == '\n') || (buf[1] == '\r')))
986                                         {
987                                         SSL_renegotiate(con);
988                                         i=SSL_do_handshake(con);
989                                         printf("SSL_do_handshake -> %d\n",i);
990                                         i=0; /*13; */
991                                         continue;
992                                         /* strcpy(buf,"server side RE-NEGOTIATE\n"); */
993                                         }
994                                 if ((buf[0] == 'R') &&
995                                         ((buf[1] == '\n') || (buf[1] == '\r')))
996                                         {
997                                         SSL_set_verify(con,
998                                                 SSL_VERIFY_PEER|SSL_VERIFY_CLIENT_ONCE,NULL);
999                                         SSL_renegotiate(con);
1000                                         i=SSL_do_handshake(con);
1001                                         printf("SSL_do_handshake -> %d\n",i);
1002                                         i=0; /* 13; */
1003                                         continue;
1004                                         /* strcpy(buf,"server side RE-NEGOTIATE asking for client cert\n"); */
1005                                         }
1006                                 if (buf[0] == 'P')
1007                                         {
1008                                         static char *str="Lets print some clear text\n";
1009                                         BIO_write(SSL_get_wbio(con),str,strlen(str));
1010                                         }
1011                                 if (buf[0] == 'S')
1012                                         {
1013                                         print_stats(bio_s_out,SSL_get_SSL_CTX(con));
1014                                         }
1015                                 }
1016 #ifdef CHARSET_EBCDIC
1017                         ebcdic2ascii(buf,buf,i);
1018 #endif
1019                         l=k=0;
1020                         for (;;)
1021                                 {
1022                                 /* should do a select for the write */
1023 #ifdef RENEG
1024 { static count=0; if (++count == 100) { count=0; SSL_renegotiate(con); } }
1025 #endif
1026                                 k=SSL_write(con,&(buf[l]),(unsigned int)i);
1027                                 switch (SSL_get_error(con,k))
1028                                         {
1029                                 case SSL_ERROR_NONE:
1030                                         break;
1031                                 case SSL_ERROR_WANT_WRITE:
1032                                 case SSL_ERROR_WANT_READ:
1033                                 case SSL_ERROR_WANT_X509_LOOKUP:
1034                                         BIO_printf(bio_s_out,"Write BLOCK\n");
1035                                         break;
1036                                 case SSL_ERROR_SYSCALL:
1037                                 case SSL_ERROR_SSL:
1038                                         BIO_printf(bio_s_out,"ERROR\n");
1039                                         ERR_print_errors(bio_err);
1040                                         ret=1;
1041                                         goto err;
1042                                         /* break; */
1043                                 case SSL_ERROR_ZERO_RETURN:
1044                                         BIO_printf(bio_s_out,"DONE\n");
1045                                         ret=1;
1046                                         goto err;
1047                                         }
1048                                 l+=k;
1049                                 i-=k;
1050                                 if (i <= 0) break;
1051                                 }
1052                         }
1053                 if (read_from_sslcon)
1054                         {
1055                         if (!SSL_is_init_finished(con))
1056                                 {
1057                                 i=init_ssl_connection(con);
1058                                 
1059                                 if (i < 0)
1060                                         {
1061                                         ret=0;
1062                                         goto err;
1063                                         }
1064                                 else if (i == 0)
1065                                         {
1066                                         ret=1;
1067                                         goto err;
1068                                         }
1069                                 }
1070                         else
1071                                 {
1072 again:  
1073                                 i=SSL_read(con,(char *)buf,bufsize);
1074                                 switch (SSL_get_error(con,i))
1075                                         {
1076                                 case SSL_ERROR_NONE:
1077 #ifdef CHARSET_EBCDIC
1078                                         ascii2ebcdic(buf,buf,i);
1079 #endif
1080                                         write(fileno(stdout),buf,
1081                                                 (unsigned int)i);
1082                                         if (SSL_pending(con)) goto again;
1083                                         break;
1084                                 case SSL_ERROR_WANT_WRITE:
1085                                 case SSL_ERROR_WANT_READ:
1086                                 case SSL_ERROR_WANT_X509_LOOKUP:
1087                                         BIO_printf(bio_s_out,"Read BLOCK\n");
1088                                         break;
1089                                 case SSL_ERROR_SYSCALL:
1090                                 case SSL_ERROR_SSL:
1091                                         BIO_printf(bio_s_out,"ERROR\n");
1092                                         ERR_print_errors(bio_err);
1093                                         ret=1;
1094                                         goto err;
1095                                 case SSL_ERROR_ZERO_RETURN:
1096                                         BIO_printf(bio_s_out,"DONE\n");
1097                                         ret=1;
1098                                         goto err;
1099                                         }
1100                                 }
1101                         }
1102                 }
1103 err:
1104         BIO_printf(bio_s_out,"shutting down SSL\n");
1105 #if 1
1106         SSL_set_shutdown(con,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN);
1107 #else
1108         SSL_shutdown(con);
1109 #endif
1110         if (con != NULL) SSL_free(con);
1111         BIO_printf(bio_s_out,"CONNECTION CLOSED\n");
1112         if (buf != NULL)
1113                 {
1114                 memset(buf,0,bufsize);
1115                 OPENSSL_free(buf);
1116                 }
1117         if (ret >= 0)
1118                 BIO_printf(bio_s_out,"ACCEPT\n");
1119         return(ret);
1120         }
1121
1122 static void close_accept_socket(void)
1123         {
1124         BIO_printf(bio_err,"shutdown accept socket\n");
1125         if (accept_socket >= 0)
1126                 {
1127                 SHUTDOWN2(accept_socket);
1128                 }
1129         }
1130
1131 static int init_ssl_connection(SSL *con)
1132         {
1133         int i;
1134         const char *str;
1135         X509 *peer;
1136         long verify_error;
1137         MS_STATIC char buf[BUFSIZ];
1138
1139         if ((i=SSL_accept(con)) <= 0)
1140                 {
1141                 if (BIO_sock_should_retry(i))
1142                         {
1143                         BIO_printf(bio_s_out,"DELAY\n");
1144                         return(1);
1145                         }
1146
1147                 BIO_printf(bio_err,"ERROR\n");
1148                 verify_error=SSL_get_verify_result(con);
1149                 if (verify_error != X509_V_OK)
1150                         {
1151                         BIO_printf(bio_err,"verify error:%s\n",
1152                                 X509_verify_cert_error_string(verify_error));
1153                         }
1154                 else
1155                         ERR_print_errors(bio_err);
1156                 return(0);
1157                 }
1158
1159         PEM_write_bio_SSL_SESSION(bio_s_out,SSL_get_session(con));
1160
1161         peer=SSL_get_peer_certificate(con);
1162         if (peer != NULL)
1163                 {
1164                 BIO_printf(bio_s_out,"Client certificate\n");
1165                 PEM_write_bio_X509(bio_s_out,peer);
1166                 X509_NAME_oneline(X509_get_subject_name(peer),buf,BUFSIZ);
1167                 BIO_printf(bio_s_out,"subject=%s\n",buf);
1168                 X509_NAME_oneline(X509_get_issuer_name(peer),buf,BUFSIZ);
1169                 BIO_printf(bio_s_out,"issuer=%s\n",buf);
1170                 X509_free(peer);
1171                 }
1172
1173         if (SSL_get_shared_ciphers(con,buf,BUFSIZ) != NULL)
1174                 BIO_printf(bio_s_out,"Shared ciphers:%s\n",buf);
1175         str=SSL_CIPHER_get_name(SSL_get_current_cipher(con));
1176         BIO_printf(bio_s_out,"CIPHER is %s\n",(str != NULL)?str:"(NONE)");
1177         if (con->hit) BIO_printf(bio_s_out,"Reused session-id\n");
1178         if (SSL_ctrl(con,SSL_CTRL_GET_FLAGS,0,NULL) &
1179                 TLS1_FLAGS_TLS_PADDING_BUG)
1180                 BIO_printf(bio_s_out,"Peer has incorrect TLSv1 block padding\n");
1181
1182         return(1);
1183         }
1184
1185 #ifndef OPENSSL_NO_DH
1186 static DH *load_dh_param(char *dhfile)
1187         {
1188         DH *ret=NULL;
1189         BIO *bio;
1190
1191         if ((bio=BIO_new_file(dhfile,"r")) == NULL)
1192                 goto err;
1193         ret=PEM_read_bio_DHparams(bio,NULL,NULL,NULL);
1194 err:
1195         if (bio != NULL) BIO_free(bio);
1196         return(ret);
1197         }
1198 #endif
1199
1200 #if 0
1201 static int load_CA(SSL_CTX *ctx, char *file)
1202         {
1203         FILE *in;
1204         X509 *x=NULL;
1205
1206         if ((in=fopen(file,"r")) == NULL)
1207                 return(0);
1208
1209         for (;;)
1210                 {
1211                 if (PEM_read_X509(in,&x,NULL) == NULL)
1212                         break;
1213                 SSL_CTX_add_client_CA(ctx,x);
1214                 }
1215         if (x != NULL) X509_free(x);
1216         fclose(in);
1217         return(1);
1218         }
1219 #endif
1220
1221 static int www_body(char *hostname, int s, unsigned char *context)
1222         {
1223         char *buf=NULL;
1224         int ret=1;
1225         int i,j,k,blank,dot;
1226         struct stat st_buf;
1227         SSL *con;
1228         SSL_CIPHER *c;
1229         BIO *io,*ssl_bio,*sbio;
1230         long total_bytes;
1231
1232         buf=OPENSSL_malloc(bufsize);
1233         if (buf == NULL) return(0);
1234         io=BIO_new(BIO_f_buffer());
1235         ssl_bio=BIO_new(BIO_f_ssl());
1236         if ((io == NULL) || (ssl_bio == NULL)) goto err;
1237
1238 #ifdef FIONBIO  
1239         if (s_nbio)
1240                 {
1241                 unsigned long sl=1;
1242
1243                 if (!s_quiet)
1244                         BIO_printf(bio_err,"turning on non blocking io\n");
1245                 if (BIO_socket_ioctl(s,FIONBIO,&sl) < 0)
1246                         ERR_print_errors(bio_err);
1247                 }
1248 #endif
1249
1250         /* lets make the output buffer a reasonable size */
1251         if (!BIO_set_write_buffer_size(io,bufsize)) goto err;
1252
1253         if ((con=SSL_new(ctx)) == NULL) goto err;
1254 #ifndef OPENSSL_NO_KRB5
1255         if ((con->kssl_ctx = kssl_ctx_new()) != NULL)
1256                 {
1257                 kssl_ctx_setstring(con->kssl_ctx, KSSL_SERVICE, KRB5SVC);
1258                 kssl_ctx_setstring(con->kssl_ctx, KSSL_KEYTAB, KRB5KEYTAB);
1259                 }
1260 #endif  /* OPENSSL_NO_KRB5 */
1261         if(context) SSL_set_session_id_context(con, context,
1262                                                strlen((char *)context));
1263
1264         sbio=BIO_new_socket(s,BIO_NOCLOSE);
1265         if (s_nbio_test)
1266                 {
1267                 BIO *test;
1268
1269                 test=BIO_new(BIO_f_nbio_test());
1270                 sbio=BIO_push(test,sbio);
1271                 }
1272         SSL_set_bio(con,sbio,sbio);
1273         SSL_set_accept_state(con);
1274
1275         /* SSL_set_fd(con,s); */
1276         BIO_set_ssl(ssl_bio,con,BIO_CLOSE);
1277         BIO_push(io,ssl_bio);
1278 #ifdef CHARSET_EBCDIC
1279         io = BIO_push(BIO_new(BIO_f_ebcdic_filter()),io);
1280 #endif
1281
1282         if (s_debug)
1283                 {
1284                 con->debug=1;
1285                 BIO_set_callback(SSL_get_rbio(con),bio_dump_cb);
1286                 BIO_set_callback_arg(SSL_get_rbio(con),bio_s_out);
1287                 }
1288
1289         blank=0;
1290         for (;;)
1291                 {
1292                 if (hack)
1293                         {
1294                         i=SSL_accept(con);
1295
1296                         switch (SSL_get_error(con,i))
1297                                 {
1298                         case SSL_ERROR_NONE:
1299                                 break;
1300                         case SSL_ERROR_WANT_WRITE:
1301                         case SSL_ERROR_WANT_READ:
1302                         case SSL_ERROR_WANT_X509_LOOKUP:
1303                                 continue;
1304                         case SSL_ERROR_SYSCALL:
1305                         case SSL_ERROR_SSL:
1306                         case SSL_ERROR_ZERO_RETURN:
1307                                 ret=1;
1308                                 goto err;
1309                                 /* break; */
1310                                 }
1311
1312                         SSL_renegotiate(con);
1313                         SSL_write(con,NULL,0);
1314                         }
1315
1316                 i=BIO_gets(io,buf,bufsize-1);
1317                 if (i < 0) /* error */
1318                         {
1319                         if (!BIO_should_retry(io))
1320                                 {
1321                                 if (!s_quiet)
1322                                         ERR_print_errors(bio_err);
1323                                 goto err;
1324                                 }
1325                         else
1326                                 {
1327                                 BIO_printf(bio_s_out,"read R BLOCK\n");
1328 #ifndef OPENSSL_SYS_MSDOS
1329                                 sleep(1);
1330 #endif
1331                                 continue;
1332                                 }
1333                         }
1334                 else if (i == 0) /* end of input */
1335                         {
1336                         ret=1;
1337                         goto end;
1338                         }
1339
1340                 /* else we have data */
1341                 if (    ((www == 1) && (strncmp("GET ",buf,4) == 0)) ||
1342                         ((www == 2) && (strncmp("GET /stats ",buf,10) == 0)))
1343                         {
1344                         char *p;
1345                         X509 *peer;
1346                         STACK_OF(SSL_CIPHER) *sk;
1347                         static char *space="                          ";
1348
1349                         BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
1350                         BIO_puts(io,"<HTML><BODY BGCOLOR=\"#ffffff\">\n");
1351                         BIO_puts(io,"<pre>\n");
1352 /*                      BIO_puts(io,SSLeay_version(SSLEAY_VERSION));*/
1353                         BIO_puts(io,"\n");
1354                         for (i=0; i<local_argc; i++)
1355                                 {
1356                                 BIO_puts(io,local_argv[i]);
1357                                 BIO_write(io," ",1);
1358                                 }
1359                         BIO_puts(io,"\n");
1360
1361                         /* The following is evil and should not really
1362                          * be done */
1363                         BIO_printf(io,"Ciphers supported in s_server binary\n");
1364                         sk=SSL_get_ciphers(con);
1365                         j=sk_SSL_CIPHER_num(sk);
1366                         for (i=0; i<j; i++)
1367                                 {
1368                                 c=sk_SSL_CIPHER_value(sk,i);
1369                                 BIO_printf(io,"%-11s:%-25s",
1370                                         SSL_CIPHER_get_version(c),
1371                                         SSL_CIPHER_get_name(c));
1372                                 if ((((i+1)%2) == 0) && (i+1 != j))
1373                                         BIO_puts(io,"\n");
1374                                 }
1375                         BIO_puts(io,"\n");
1376                         p=SSL_get_shared_ciphers(con,buf,bufsize);
1377                         if (p != NULL)
1378                                 {
1379                                 BIO_printf(io,"---\nCiphers common between both SSL end points:\n");
1380                                 j=i=0;
1381                                 while (*p)
1382                                         {
1383                                         if (*p == ':')
1384                                                 {
1385                                                 BIO_write(io,space,26-j);
1386                                                 i++;
1387                                                 j=0;
1388                                                 BIO_write(io,((i%3)?" ":"\n"),1);
1389                                                 }
1390                                         else
1391                                                 {
1392                                                 BIO_write(io,p,1);
1393                                                 j++;
1394                                                 }
1395                                         p++;
1396                                         }
1397                                 BIO_puts(io,"\n");
1398                                 }
1399                         BIO_printf(io,((con->hit)
1400                                 ?"---\nReused, "
1401                                 :"---\nNew, "));
1402                         c=SSL_get_current_cipher(con);
1403                         BIO_printf(io,"%s, Cipher is %s\n",
1404                                 SSL_CIPHER_get_version(c),
1405                                 SSL_CIPHER_get_name(c));
1406                         SSL_SESSION_print(io,SSL_get_session(con));
1407                         BIO_printf(io,"---\n");
1408                         print_stats(io,SSL_get_SSL_CTX(con));
1409                         BIO_printf(io,"---\n");
1410                         peer=SSL_get_peer_certificate(con);
1411                         if (peer != NULL)
1412                                 {
1413                                 BIO_printf(io,"Client certificate\n");
1414                                 X509_print(io,peer);
1415                                 PEM_write_bio_X509(io,peer);
1416                                 }
1417                         else
1418                                 BIO_puts(io,"no client certificate available\n");
1419                         BIO_puts(io,"</BODY></HTML>\r\n\r\n");
1420                         break;
1421                         }
1422                 else if ((www == 2 || www == 3)
1423                          && (strncmp("GET /",buf,5) == 0))
1424                         {
1425                         BIO *file;
1426                         char *p,*e;
1427                         static char *text="HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
1428
1429                         /* skip the '/' */
1430                         p= &(buf[5]);
1431
1432                         dot = 1;
1433                         for (e=p; *e != '\0'; e++)
1434                                 {
1435                                 if (e[0] == ' ')
1436                                         break;
1437
1438                                 switch (dot)
1439                                         {
1440                                 case 1:
1441                                         dot = (e[0] == '.') ? 2 : 0;
1442                                         break;
1443                                 case 2:
1444                                         dot = (e[0] == '.') ? 3 : 0;
1445                                         break;
1446                                 case 3:
1447                                         dot = (e[0] == '/') ? -1 : 0;
1448                                         break;
1449                                         }
1450                                 if (dot == 0)
1451                                         dot = (e[0] == '/') ? 1 : 0;
1452                                 }
1453                         dot = (dot == 3) || (dot == -1); /* filename contains ".." component */
1454
1455                         if (*e == '\0')
1456                                 {
1457                                 BIO_puts(io,text);
1458                                 BIO_printf(io,"'%s' is an invalid file name\r\n",p);
1459                                 break;
1460                                 }
1461                         *e='\0';
1462
1463                         if (dot)
1464                                 {
1465                                 BIO_puts(io,text);
1466                                 BIO_printf(io,"'%s' contains '..' reference\r\n",p);
1467                                 break;
1468                                 }
1469
1470                         if (*p == '/')
1471                                 {
1472                                 BIO_puts(io,text);
1473                                 BIO_printf(io,"'%s' is an invalid path\r\n",p);
1474                                 break;
1475                                 }
1476
1477 #if 0
1478                         /* append if a directory lookup */
1479                         if (e[-1] == '/')
1480                                 strcat(p,"index.html");
1481 #endif
1482
1483                         /* if a directory, do the index thang */
1484                         if (stat(p,&st_buf) < 0)
1485                                 {
1486                                 BIO_puts(io,text);
1487                                 BIO_printf(io,"Error accessing '%s'\r\n",p);
1488                                 ERR_print_errors(io);
1489                                 break;
1490                                 }
1491                         if (S_ISDIR(st_buf.st_mode))
1492                                 {
1493 #if 0 /* must check buffer size */
1494                                 strcat(p,"/index.html");
1495 #else
1496                                 BIO_puts(io,text);
1497                                 BIO_printf(io,"'%s' is a directory\r\n",p);
1498                                 break;
1499 #endif
1500                                 }
1501
1502                         if ((file=BIO_new_file(p,"r")) == NULL)
1503                                 {
1504                                 BIO_puts(io,text);
1505                                 BIO_printf(io,"Error opening '%s'\r\n",p);
1506                                 ERR_print_errors(io);
1507                                 break;
1508                                 }
1509
1510                         if (!s_quiet)
1511                                 BIO_printf(bio_err,"FILE:%s\n",p);
1512
1513                         if (www == 2)
1514                                 {
1515                                 i=strlen(p);
1516                                 if (    ((i > 5) && (strcmp(&(p[i-5]),".html") == 0)) ||
1517                                         ((i > 4) && (strcmp(&(p[i-4]),".php") == 0)) ||
1518                                         ((i > 4) && (strcmp(&(p[i-4]),".htm") == 0)))
1519                                         BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
1520                                 else
1521                                         BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
1522                                 }
1523                         /* send the file */
1524                         total_bytes=0;
1525                         for (;;)
1526                                 {
1527                                 i=BIO_read(file,buf,bufsize);
1528                                 if (i <= 0) break;
1529
1530 #ifdef RENEG
1531                                 total_bytes+=i;
1532                                 fprintf(stderr,"%d\n",i);
1533                                 if (total_bytes > 3*1024)
1534                                         {
1535                                         total_bytes=0;
1536                                         fprintf(stderr,"RENEGOTIATE\n");
1537                                         SSL_renegotiate(con);
1538                                         }
1539 #endif
1540
1541                                 for (j=0; j<i; )
1542                                         {
1543 #ifdef RENEG
1544 { static count=0; if (++count == 13) { SSL_renegotiate(con); } }
1545 #endif
1546                                         k=BIO_write(io,&(buf[j]),i-j);
1547                                         if (k <= 0)
1548                                                 {
1549                                                 if (!BIO_should_retry(io))
1550                                                         goto write_error;
1551                                                 else
1552                                                         {
1553                                                         BIO_printf(bio_s_out,"rwrite W BLOCK\n");
1554                                                         }
1555                                                 }
1556                                         else
1557                                                 {
1558                                                 j+=k;
1559                                                 }
1560                                         }
1561                                 }
1562 write_error:
1563                         BIO_free(file);
1564                         break;
1565                         }
1566                 }
1567
1568         for (;;)
1569                 {
1570                 i=(int)BIO_flush(io);
1571                 if (i <= 0)
1572                         {
1573                         if (!BIO_should_retry(io))
1574                                 break;
1575                         }
1576                 else
1577                         break;
1578                 }
1579 end:
1580 #if 1
1581         /* make sure we re-use sessions */
1582         SSL_set_shutdown(con,SSL_SENT_SHUTDOWN|SSL_RECEIVED_SHUTDOWN);
1583 #else
1584         /* This kills performance */
1585 /*      SSL_shutdown(con); A shutdown gets sent in the
1586  *      BIO_free_all(io) procession */
1587 #endif
1588
1589 err:
1590
1591         if (ret >= 0)
1592                 BIO_printf(bio_s_out,"ACCEPT\n");
1593
1594         if (buf != NULL) OPENSSL_free(buf);
1595         if (io != NULL) BIO_free_all(io);
1596 /*      if (ssl_bio != NULL) BIO_free(ssl_bio);*/
1597         return(ret);
1598         }
1599
1600 #ifndef OPENSSL_NO_RSA
1601 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength)
1602         {
1603         static RSA *rsa_tmp=NULL;
1604
1605         if (rsa_tmp == NULL)
1606                 {
1607                 if (!s_quiet)
1608                         {
1609                         BIO_printf(bio_err,"Generating temp (%d bit) RSA key...",keylength);
1610                         (void)BIO_flush(bio_err);
1611                         }
1612                 rsa_tmp=RSA_generate_key(keylength,RSA_F4,NULL,NULL);
1613                 if (!s_quiet)
1614                         {
1615                         BIO_printf(bio_err,"\n");
1616                         (void)BIO_flush(bio_err);
1617                         }
1618                 }
1619         return(rsa_tmp);
1620         }
1621 #endif
1622
1623 #define MAX_SESSION_ID_ATTEMPTS 10
1624 static int generate_session_id(const SSL *ssl, unsigned char *id,
1625                                 unsigned int *id_len)
1626         {
1627         unsigned int count = 0;
1628         do      {
1629                 RAND_pseudo_bytes(id, *id_len);
1630                 /* Prefix the session_id with the required prefix. NB: If our
1631                  * prefix is too long, clip it - but there will be worse effects
1632                  * anyway, eg. the server could only possibly create 1 session
1633                  * ID (ie. the prefix!) so all future session negotiations will
1634                  * fail due to conflicts. */
1635                 memcpy(id, session_id_prefix,
1636                         (strlen(session_id_prefix) < *id_len) ?
1637                         strlen(session_id_prefix) : *id_len);
1638                 }
1639         while(SSL_has_matching_session_id(ssl, id, *id_len) &&
1640                 (++count < MAX_SESSION_ID_ATTEMPTS));
1641         if(count >= MAX_SESSION_ID_ATTEMPTS)
1642                 return 0;
1643         return 1;
1644         }