2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
63 #include <sys/types.h>
69 /* With IPv6, it looks like Digital has mixed up the proper order of
70 recursive header file inclusion, resulting in the compiler complaining
71 that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which
72 is needed to have fileno() declared correctly... So let's define u_int */
73 #if defined(VMS) && defined(__DECC) && !defined(__U_INT)
75 typedef unsigned int u_int
;
78 #include <openssl/lhash.h>
79 #include <openssl/bn.h>
82 #include <openssl/err.h>
83 #include <openssl/pem.h>
84 #include <openssl/x509.h>
85 #include <openssl/ssl.h>
86 #include <openssl/rand.h>
93 #if (defined(VMS) && __VMS_VER < 70000000)
94 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
99 static RSA MS_CALLBACK
*tmp_rsa_cb(SSL
*s
, int is_export
, int keylength
);
101 static int sv_body(char *hostname
, int s
, unsigned char *context
);
102 static int www_body(char *hostname
, int s
, unsigned char *context
);
103 static void close_accept_socket(void );
104 static void sv_usage(void);
105 static int init_ssl_connection(SSL
*s
);
106 static void print_stats(BIO
*bp
,SSL_CTX
*ctx
);
108 static DH
*load_dh_param(char *dhfile
);
109 static DH
*get_dh512(void);
112 static void s_server_init(void);
116 # if defined(_S_IFMT) && defined(_S_IFDIR)
117 # define S_ISDIR(a) (((a) & _S_IFMT) == _S_IFDIR)
119 # define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
124 static unsigned char dh512_p
[]={
125 0xDA,0x58,0x3C,0x16,0xD9,0x85,0x22,0x89,0xD0,0xE4,0xAF,0x75,
126 0x6F,0x4C,0xCA,0x92,0xDD,0x4B,0xE5,0x33,0xB8,0x04,0xFB,0x0F,
127 0xED,0x94,0xEF,0x9C,0x8A,0x44,0x03,0xED,0x57,0x46,0x50,0xD3,
128 0x69,0x99,0xDB,0x29,0xD7,0x76,0x27,0x6B,0xA2,0xD3,0xD4,0x12,
129 0xE2,0x18,0xF4,0xDD,0x1E,0x08,0x4C,0xF6,0xD8,0x00,0x3E,0x7C,
132 static unsigned char dh512_g
[]={
136 static DH
*get_dh512(void)
140 if ((dh
=DH_new()) == NULL
) return(NULL
);
141 dh
->p
=BN_bin2bn(dh512_p
,sizeof(dh512_p
),NULL
);
142 dh
->g
=BN_bin2bn(dh512_g
,sizeof(dh512_g
),NULL
);
143 if ((dh
->p
== NULL
) || (dh
->g
== NULL
))
149 /* static int load_CA(SSL_CTX *ctx, char *file);*/
152 #define BUFSIZZ 16*1024
153 static int bufsize
=BUFSIZZ
;
154 static int accept_socket
= -1;
156 #define TEST_CERT "server.pem"
158 #define PROG s_server_main
160 extern int verify_depth
;
162 static char *cipher
=NULL
;
163 static int s_server_verify
=SSL_VERIFY_NONE
;
164 static int s_server_session_id_context
= 1; /* anything will do */
165 static char *s_cert_file
=TEST_CERT
,*s_key_file
=NULL
;
166 static char *s_dcert_file
=NULL
,*s_dkey_file
=NULL
;
170 static int s_nbio_test
=0;
172 static SSL_CTX
*ctx
=NULL
;
175 static BIO
*bio_s_out
=NULL
;
176 static int s_debug
=0;
177 static int s_quiet
=0;
182 static void s_server_init(void)
186 s_server_verify
=SSL_VERIFY_NONE
;
189 s_cert_file
=TEST_CERT
;
205 static void sv_usage(void)
207 BIO_printf(bio_err
,"usage: s_server [args ...]\n");
208 BIO_printf(bio_err
,"\n");
209 BIO_printf(bio_err
," -accept arg - port to accept on (default is %d)\n",PORT
);
210 BIO_printf(bio_err
," -context arg - set session ID context\n");
211 BIO_printf(bio_err
," -verify arg - turn on peer certificate verification\n");
212 BIO_printf(bio_err
," -Verify arg - turn on peer certificate verification, must have a cert.\n");
213 BIO_printf(bio_err
," -cert arg - certificate file to use, PEM format assumed\n");
214 BIO_printf(bio_err
," (default is %s)\n",TEST_CERT
);
215 BIO_printf(bio_err
," -key arg - Private Key file to use, PEM format assumed, in cert file if\n");
216 BIO_printf(bio_err
," not specified (default is %s)\n",TEST_CERT
);
217 BIO_printf(bio_err
," -dcert arg - second certificate file to use (usually for DSA)\n");
218 BIO_printf(bio_err
," -dkey arg - second private key file to use (usually for DSA)\n");
219 BIO_printf(bio_err
," -dhparam arg - DH parameter file to use, in cert file if not specified\n");
220 BIO_printf(bio_err
," or a default set of parameters is used\n");
222 BIO_printf(bio_err
," -nbio - Run with non-blocking IO\n");
224 BIO_printf(bio_err
," -nbio_test - test with the non-blocking test bio\n");
225 BIO_printf(bio_err
," -crlf - convert LF from terminal into CRLF\n");
226 BIO_printf(bio_err
," -debug - Print more output\n");
227 BIO_printf(bio_err
," -state - Print the SSL states\n");
228 BIO_printf(bio_err
," -CApath arg - PEM format directory of CA's\n");
229 BIO_printf(bio_err
," -CAfile arg - PEM format file of CA's\n");
230 BIO_printf(bio_err
," -nocert - Don't use any certificates (Anon-DH)\n");
231 BIO_printf(bio_err
," -cipher arg - play with 'openssl ciphers' to see what goes here\n");
232 BIO_printf(bio_err
," -quiet - No server output\n");
233 BIO_printf(bio_err
," -no_tmp_rsa - Do not generate a tmp RSA key\n");
234 BIO_printf(bio_err
," -ssl2 - Just talk SSLv2\n");
235 BIO_printf(bio_err
," -ssl3 - Just talk SSLv3\n");
236 BIO_printf(bio_err
," -tls1 - Just talk TLSv1\n");
237 BIO_printf(bio_err
," -no_ssl2 - Just disable SSLv2\n");
238 BIO_printf(bio_err
," -no_ssl3 - Just disable SSLv3\n");
239 BIO_printf(bio_err
," -no_tls1 - Just disable TLSv1\n");
241 BIO_printf(bio_err
," -no_dhe - Disable ephemeral DH\n");
243 BIO_printf(bio_err
," -bugs - Turn on SSL bug compatibility\n");
244 BIO_printf(bio_err
," -www - Respond to a 'GET /' with a status page\n");
245 BIO_printf(bio_err
," -WWW - Respond to a 'GET /<path> HTTP/1.0' with file ./<path>\n");
246 BIO_printf(bio_err
," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR
, LIST_SEPARATOR_CHAR
);
249 static int local_argc
=0;
250 static char **local_argv
;
252 #ifdef CHARSET_EBCDIC
253 static int ebcdic_new(BIO
*bi
);
254 static int ebcdic_free(BIO
*a
);
255 static int ebcdic_read(BIO
*b
, char *out
, int outl
);
256 static int ebcdic_write(BIO
*b
, char *in
, int inl
);
257 static long ebcdic_ctrl(BIO
*b
, int cmd
, long num
, char *ptr
);
258 static int ebcdic_gets(BIO
*bp
, char *buf
, int size
);
259 static int ebcdic_puts(BIO
*bp
, char *str
);
261 #define BIO_TYPE_EBCDIC_FILTER (18|0x0200)
262 static BIO_METHOD methods_ebcdic
=
264 BIO_TYPE_EBCDIC_FILTER
,
265 "EBCDIC/ASCII filter",
281 BIO_METHOD
*BIO_f_ebcdic_filter()
283 return(&methods_ebcdic
);
286 static int ebcdic_new(BIO
*bi
)
288 EBCDIC_OUTBUFF
*wbuf
;
290 wbuf
= (EBCDIC_OUTBUFF
*)OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF
) + 1024);
291 wbuf
->alloced
= 1024;
292 wbuf
->buff
[0] = '\0';
294 bi
->ptr
=(char *)wbuf
;
300 static int ebcdic_free(BIO
*a
)
302 if (a
== NULL
) return(0);
304 OPENSSL_free(a
->ptr
);
311 static int ebcdic_read(BIO
*b
, char *out
, int outl
)
315 if (out
== NULL
|| outl
== 0) return(0);
316 if (b
->next_bio
== NULL
) return(0);
318 ret
=BIO_read(b
->next_bio
,out
,outl
);
320 ascii2ebcdic(out
,out
,ret
);
324 static int ebcdic_write(BIO
*b
, char *in
, int inl
)
326 EBCDIC_OUTBUFF
*wbuf
;
331 if ((in
== NULL
) || (inl
<= 0)) return(0);
332 if (b
->next_bio
== NULL
) return(0);
334 wbuf
=(EBCDIC_OUTBUFF
*)b
->ptr
;
336 if (inl
> (num
= wbuf
->alloced
))
338 num
= num
+ num
; /* double the size */
342 wbuf
=(EBCDIC_OUTBUFF
*)OPENSSL_malloc(sizeof(EBCDIC_OUTBUFF
) + num
);
345 wbuf
->buff
[0] = '\0';
350 ebcdic2ascii(wbuf
->buff
, in
, inl
);
352 ret
=BIO_write(b
->next_bio
, wbuf
->buff
, inl
);
357 static long ebcdic_ctrl(BIO
*b
, int cmd
, long num
, char *ptr
)
361 if (b
->next_bio
== NULL
) return(0);
368 ret
=BIO_ctrl(b
->next_bio
,cmd
,num
,ptr
);
374 static int ebcdic_gets(BIO
*bp
, char *buf
, int size
)
377 if (bp
->next_bio
== NULL
) return(0);
378 /* return(BIO_gets(bp->next_bio,buf,size));*/
379 for (i
=0; i
<size
-1; ++i
)
381 ret
= ebcdic_read(bp
,&buf
[i
],1);
384 else if (buf
[i
] == '\n')
392 return (ret
< 0 && i
== 0) ? ret
: i
;
395 static int ebcdic_puts(BIO
*bp
, char *str
)
397 if (bp
->next_bio
== NULL
) return(0);
398 return ebcdic_write(bp
, str
, strlen(str
));
402 int MAIN(int, char **);
404 int MAIN(int argc
, char *argv
[])
407 char *CApath
=NULL
,*CAfile
=NULL
;
408 char *context
= NULL
;
413 int no_tmp_rsa
=0,no_dhe
=0,nocert
=0;
415 SSL_METHOD
*meth
=NULL
;
421 #if !defined(NO_SSL2) && !defined(NO_SSL3)
422 meth
=SSLv23_server_method();
423 #elif !defined(NO_SSL3)
424 meth
=SSLv3_server_method();
425 #elif !defined(NO_SSL2)
426 meth
=SSLv2_server_method();
438 bio_err
=BIO_new_fp(stderr
,BIO_NOCLOSE
);
451 if ((strcmp(*argv
,"-port") == 0) ||
452 (strcmp(*argv
,"-accept") == 0))
454 if (--argc
< 1) goto bad
;
455 if (!extract_port(*(++argv
),&port
))
458 else if (strcmp(*argv
,"-verify") == 0)
460 s_server_verify
=SSL_VERIFY_PEER
|SSL_VERIFY_CLIENT_ONCE
;
461 if (--argc
< 1) goto bad
;
462 verify_depth
=atoi(*(++argv
));
463 BIO_printf(bio_err
,"verify depth is %d\n",verify_depth
);
465 else if (strcmp(*argv
,"-Verify") == 0)
467 s_server_verify
=SSL_VERIFY_PEER
|SSL_VERIFY_FAIL_IF_NO_PEER_CERT
|
468 SSL_VERIFY_CLIENT_ONCE
;
469 if (--argc
< 1) goto bad
;
470 verify_depth
=atoi(*(++argv
));
471 BIO_printf(bio_err
,"verify depth is %d, must return a certificate\n",verify_depth
);
473 else if (strcmp(*argv
,"-context") == 0)
475 if (--argc
< 1) goto bad
;
478 else if (strcmp(*argv
,"-cert") == 0)
480 if (--argc
< 1) goto bad
;
481 s_cert_file
= *(++argv
);
483 else if (strcmp(*argv
,"-key") == 0)
485 if (--argc
< 1) goto bad
;
486 s_key_file
= *(++argv
);
488 else if (strcmp(*argv
,"-dhparam") == 0)
490 if (--argc
< 1) goto bad
;
493 else if (strcmp(*argv
,"-dcert") == 0)
495 if (--argc
< 1) goto bad
;
496 s_dcert_file
= *(++argv
);
498 else if (strcmp(*argv
,"-dkey") == 0)
500 if (--argc
< 1) goto bad
;
501 s_dkey_file
= *(++argv
);
503 else if (strcmp(*argv
,"-nocert") == 0)
507 else if (strcmp(*argv
,"-CApath") == 0)
509 if (--argc
< 1) goto bad
;
512 else if (strcmp(*argv
,"-cipher") == 0)
514 if (--argc
< 1) goto bad
;
517 else if (strcmp(*argv
,"-CAfile") == 0)
519 if (--argc
< 1) goto bad
;
523 else if (strcmp(*argv
,"-nbio") == 0)
526 else if (strcmp(*argv
,"-nbio_test") == 0)
533 else if (strcmp(*argv
,"-debug") == 0)
535 else if (strcmp(*argv
,"-hack") == 0)
537 else if (strcmp(*argv
,"-state") == 0)
539 else if (strcmp(*argv
,"-crlf") == 0)
541 else if (strcmp(*argv
,"-quiet") == 0)
543 else if (strcmp(*argv
,"-bugs") == 0)
545 else if (strcmp(*argv
,"-no_tmp_rsa") == 0)
547 else if (strcmp(*argv
,"-no_dhe") == 0)
549 else if (strcmp(*argv
,"-www") == 0)
551 else if (strcmp(*argv
,"-WWW") == 0)
553 else if (strcmp(*argv
,"-no_ssl2") == 0)
554 { off
|=SSL_OP_NO_SSLv2
; }
555 else if (strcmp(*argv
,"-no_ssl3") == 0)
556 { off
|=SSL_OP_NO_SSLv3
; }
557 else if (strcmp(*argv
,"-no_tls1") == 0)
558 { off
|=SSL_OP_NO_TLSv1
; }
560 else if (strcmp(*argv
,"-ssl2") == 0)
561 { meth
=SSLv2_server_method(); }
564 else if (strcmp(*argv
,"-ssl3") == 0)
565 { meth
=SSLv3_server_method(); }
568 else if (strcmp(*argv
,"-tls1") == 0)
569 { meth
=TLSv1_server_method(); }
571 else if (strcmp(*argv
,"-rand") == 0)
573 if (--argc
< 1) goto bad
;
578 BIO_printf(bio_err
,"unknown option %s\n",*argv
);
592 if (!app_RAND_load_file(NULL
, bio_err
, 1) && inrand
== NULL
595 BIO_printf(bio_err
,"warning, not much extra random data, consider using the -rand option\n");
598 BIO_printf(bio_err
,"%ld semi-random bytes loaded\n",
599 app_RAND_load_files(inrand
));
601 if (bio_s_out
== NULL
)
603 if (s_quiet
&& !s_debug
)
605 bio_s_out
=BIO_new(BIO_s_null());
609 if (bio_s_out
== NULL
)
610 bio_s_out
=BIO_new_fp(stdout
,BIO_NOCLOSE
);
614 #if !defined(NO_RSA) || !defined(NO_DSA)
624 SSL_load_error_strings();
625 OpenSSL_add_ssl_algorithms();
627 ctx
=SSL_CTX_new(meth
);
630 ERR_print_errors(bio_err
);
634 SSL_CTX_set_quiet_shutdown(ctx
,1);
635 if (bugs
) SSL_CTX_set_options(ctx
,SSL_OP_ALL
);
636 if (hack
) SSL_CTX_set_options(ctx
,SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG
);
637 SSL_CTX_set_options(ctx
,off
);
638 if (hack
) SSL_CTX_set_options(ctx
,SSL_OP_NON_EXPORT_FIRST
);
640 if (state
) SSL_CTX_set_info_callback(ctx
,apps_ssl_info_callback
);
642 SSL_CTX_sess_set_cache_size(ctx
,128);
645 if (cipher
== NULL
) cipher
=getenv("SSL_CIPHER");
649 if (s_cert_file
== NULL
)
651 BIO_printf(bio_err
,"You must specify a certificate file for the server to use\n");
656 if ((!SSL_CTX_load_verify_locations(ctx
,CAfile
,CApath
)) ||
657 (!SSL_CTX_set_default_verify_paths(ctx
)))
659 /* BIO_printf(bio_err,"X509_load_verify_locations\n"); */
660 ERR_print_errors(bio_err
);
667 dh
=load_dh_param(dhfile
? dhfile
: s_cert_file
);
670 BIO_printf(bio_s_out
,"Setting temp DH parameters\n");
674 BIO_printf(bio_s_out
,"Using default temp DH parameters\n");
677 (void)BIO_flush(bio_s_out
);
679 SSL_CTX_set_tmp_dh(ctx
,dh
);
684 if (!set_cert_stuff(ctx
,s_cert_file
,s_key_file
))
686 if (s_dcert_file
!= NULL
)
688 if (!set_cert_stuff(ctx
,s_dcert_file
,s_dkey_file
))
695 SSL_CTX_set_tmp_rsa_callback(ctx
,tmp_rsa_cb
);
697 if (!no_tmp_rsa
&& SSL_CTX_need_tmp_RSA(ctx
))
701 BIO_printf(bio_s_out
,"Generating temp (512 bit) RSA key...");
702 BIO_flush(bio_s_out
);
704 rsa
=RSA_generate_key(512,RSA_F4
,NULL
);
706 if (!SSL_CTX_set_tmp_rsa(ctx
,rsa
))
708 ERR_print_errors(bio_err
);
712 BIO_printf(bio_s_out
,"\n");
718 if(!SSL_CTX_set_cipher_list(ctx
,cipher
)) {
719 BIO_printf(bio_err
,"error setting cipher list\n");
720 ERR_print_errors(bio_err
);
723 SSL_CTX_set_verify(ctx
,s_server_verify
,verify_callback
);
724 SSL_CTX_set_session_id_context(ctx
,(void*)&s_server_session_id_context
,
725 sizeof s_server_session_id_context
);
728 SSL_CTX_set_client_CA_list(ctx
,SSL_load_client_CA_file(CAfile
));
730 BIO_printf(bio_s_out
,"ACCEPT\n");
732 do_server(port
,&accept_socket
,www_body
, context
);
734 do_server(port
,&accept_socket
,sv_body
, context
);
735 print_stats(bio_s_out
,ctx
);
738 if (ctx
!= NULL
) SSL_CTX_free(ctx
);
739 if (bio_s_out
!= NULL
)
747 static void print_stats(BIO
*bio
, SSL_CTX
*ssl_ctx
)
749 BIO_printf(bio
,"%4ld items in the session cache\n",
750 SSL_CTX_sess_number(ssl_ctx
));
751 BIO_printf(bio
,"%4d client connects (SSL_connect())\n",
752 SSL_CTX_sess_connect(ssl_ctx
));
753 BIO_printf(bio
,"%4d client renegotiates (SSL_connect())\n",
754 SSL_CTX_sess_connect_renegotiate(ssl_ctx
));
755 BIO_printf(bio
,"%4d client connects that finished\n",
756 SSL_CTX_sess_connect_good(ssl_ctx
));
757 BIO_printf(bio
,"%4d server accepts (SSL_accept())\n",
758 SSL_CTX_sess_accept(ssl_ctx
));
759 BIO_printf(bio
,"%4d server renegotiates (SSL_accept())\n",
760 SSL_CTX_sess_accept_renegotiate(ssl_ctx
));
761 BIO_printf(bio
,"%4d server accepts that finished\n",
762 SSL_CTX_sess_accept_good(ssl_ctx
));
763 BIO_printf(bio
,"%4d session cache hits\n",SSL_CTX_sess_hits(ssl_ctx
));
764 BIO_printf(bio
,"%4d session cache misses\n",SSL_CTX_sess_misses(ssl_ctx
));
765 BIO_printf(bio
,"%4d session cache timeouts\n",SSL_CTX_sess_timeouts(ssl_ctx
));
766 BIO_printf(bio
,"%4d callback cache hits\n",SSL_CTX_sess_cb_hits(ssl_ctx
));
767 BIO_printf(bio
,"%4d cache full overflows (%d allowed)\n",
768 SSL_CTX_sess_cache_full(ssl_ctx
),
769 SSL_CTX_sess_get_cache_size(ssl_ctx
));
772 static int sv_body(char *hostname
, int s
, unsigned char *context
)
785 if ((buf
=OPENSSL_malloc(bufsize
)) == NULL
)
787 BIO_printf(bio_err
,"out of memory\n");
796 BIO_printf(bio_err
,"turning on non blocking io\n");
797 if (BIO_socket_ioctl(s
,FIONBIO
,&sl
) < 0)
798 ERR_print_errors(bio_err
);
805 SSL_set_session_id_context(con
, context
,
806 strlen((char *)context
));
810 sbio
=BIO_new_socket(s
,BIO_NOCLOSE
);
815 test
=BIO_new(BIO_f_nbio_test());
816 sbio
=BIO_push(test
,sbio
);
818 SSL_set_bio(con
,sbio
,sbio
);
819 SSL_set_accept_state(con
);
820 /* SSL_set_fd(con,s); */
825 BIO_set_callback(SSL_get_rbio(con
),bio_dump_cb
);
826 BIO_set_callback_arg(SSL_get_rbio(con
),bio_s_out
);
832 int read_from_terminal
;
833 int read_from_sslcon
;
835 read_from_terminal
= 0;
836 read_from_sslcon
= SSL_pending(con
);
838 if (!read_from_sslcon
)
842 FD_SET(fileno(stdin
),&readfds
);
845 /* Note: under VMS with SOCKETSHR the second parameter is
846 * currently of type (int *) whereas under other systems
847 * it is (void *) if you don't have a cast it will choke
848 * the compiler: if you do have a cast then you can either
849 * go for (int *) or (void *).
852 /* Under Windows we can't select on stdin: only
853 * on sockets. As a workaround we timeout the select every
854 * second and check for any keypress. In a proper Windows
855 * application we wouldn't do this because it is inefficient.
859 i
=select(width
,(void *)&readfds
,NULL
,NULL
,&tv
);
860 if((i
< 0) || (!i
&& !_kbhit() ) )continue;
862 read_from_terminal
= 1;
864 i
=select(width
,(void *)&readfds
,NULL
,NULL
,NULL
);
865 if (i
<= 0) continue;
866 if (FD_ISSET(fileno(stdin
),&readfds
))
867 read_from_terminal
= 1;
869 if (FD_ISSET(s
,&readfds
))
870 read_from_sslcon
= 1;
872 if (read_from_terminal
)
878 i
=read(fileno(stdin
), buf
, bufsize
/2);
880 /* both loops are skipped when i <= 0 */
881 for (j
= 0; j
< i
; j
++)
884 for (j
= i
-1; j
>= 0; j
--)
886 buf
[j
+lf_num
] = buf
[j
];
891 buf
[j
+lf_num
] = '\r';
897 i
=read(fileno(stdin
),buf
,bufsize
);
900 if ((i
<= 0) || (buf
[0] == 'Q'))
902 BIO_printf(bio_s_out
,"DONE\n");
904 close_accept_socket();
908 if ((i
<= 0) || (buf
[0] == 'q'))
910 BIO_printf(bio_s_out
,"DONE\n");
912 /* close_accept_socket();
916 if ((buf
[0] == 'r') &&
917 ((buf
[1] == '\n') || (buf
[1] == '\r')))
919 SSL_renegotiate(con
);
920 i
=SSL_do_handshake(con
);
921 printf("SSL_do_handshake -> %d\n",i
);
924 /* strcpy(buf,"server side RE-NEGOTIATE\n"); */
926 if ((buf
[0] == 'R') &&
927 ((buf
[1] == '\n') || (buf
[1] == '\r')))
930 SSL_VERIFY_PEER
|SSL_VERIFY_CLIENT_ONCE
,NULL
);
931 SSL_renegotiate(con
);
932 i
=SSL_do_handshake(con
);
933 printf("SSL_do_handshake -> %d\n",i
);
936 /* strcpy(buf,"server side RE-NEGOTIATE asking for client cert\n"); */
940 static char *str
="Lets print some clear text\n";
941 BIO_write(SSL_get_wbio(con
),str
,strlen(str
));
945 print_stats(bio_s_out
,SSL_get_SSL_CTX(con
));
948 #ifdef CHARSET_EBCDIC
949 ebcdic2ascii(buf
,buf
,i
);
954 /* should do a select for the write */
956 { static count
=0; if (++count
== 100) { count
=0; SSL_renegotiate(con
); } }
958 k
=SSL_write(con
,&(buf
[l
]),(unsigned int)i
);
959 switch (SSL_get_error(con
,k
))
963 case SSL_ERROR_WANT_WRITE
:
964 case SSL_ERROR_WANT_READ
:
965 case SSL_ERROR_WANT_X509_LOOKUP
:
966 BIO_printf(bio_s_out
,"Write BLOCK\n");
968 case SSL_ERROR_SYSCALL
:
970 BIO_printf(bio_s_out
,"ERROR\n");
971 ERR_print_errors(bio_err
);
975 case SSL_ERROR_ZERO_RETURN
:
976 BIO_printf(bio_s_out
,"DONE\n");
985 if (read_from_sslcon
)
987 if (!SSL_is_init_finished(con
))
989 i
=init_ssl_connection(con
);
1005 i
=SSL_read(con
,(char *)buf
,bufsize
);
1006 switch (SSL_get_error(con
,i
))
1008 case SSL_ERROR_NONE
:
1009 #ifdef CHARSET_EBCDIC
1010 ascii2ebcdic(buf
,buf
,i
);
1012 write(fileno(stdout
),buf
,
1014 if (SSL_pending(con
)) goto again
;
1016 case SSL_ERROR_WANT_WRITE
:
1017 case SSL_ERROR_WANT_READ
:
1018 case SSL_ERROR_WANT_X509_LOOKUP
:
1019 BIO_printf(bio_s_out
,"Read BLOCK\n");
1021 case SSL_ERROR_SYSCALL
:
1023 BIO_printf(bio_s_out
,"ERROR\n");
1024 ERR_print_errors(bio_err
);
1027 case SSL_ERROR_ZERO_RETURN
:
1028 BIO_printf(bio_s_out
,"DONE\n");
1036 BIO_printf(bio_s_out
,"shutting down SSL\n");
1038 SSL_set_shutdown(con
,SSL_SENT_SHUTDOWN
|SSL_RECEIVED_SHUTDOWN
);
1042 if (con
!= NULL
) SSL_free(con
);
1043 BIO_printf(bio_s_out
,"CONNECTION CLOSED\n");
1046 memset(buf
,0,bufsize
);
1050 BIO_printf(bio_s_out
,"ACCEPT\n");
1054 static void close_accept_socket(void)
1056 BIO_printf(bio_err
,"shutdown accept socket\n");
1057 if (accept_socket
>= 0)
1059 SHUTDOWN2(accept_socket
);
1063 static int init_ssl_connection(SSL
*con
)
1069 MS_STATIC
char buf
[BUFSIZ
];
1071 if ((i
=SSL_accept(con
)) <= 0)
1073 if (BIO_sock_should_retry(i
))
1075 BIO_printf(bio_s_out
,"DELAY\n");
1079 BIO_printf(bio_err
,"ERROR\n");
1080 verify_error
=SSL_get_verify_result(con
);
1081 if (verify_error
!= X509_V_OK
)
1083 BIO_printf(bio_err
,"verify error:%s\n",
1084 X509_verify_cert_error_string(verify_error
));
1087 ERR_print_errors(bio_err
);
1091 PEM_write_bio_SSL_SESSION(bio_s_out
,SSL_get_session(con
));
1093 peer
=SSL_get_peer_certificate(con
);
1096 BIO_printf(bio_s_out
,"Client certificate\n");
1097 PEM_write_bio_X509(bio_s_out
,peer
);
1098 X509_NAME_oneline(X509_get_subject_name(peer
),buf
,BUFSIZ
);
1099 BIO_printf(bio_s_out
,"subject=%s\n",buf
);
1100 X509_NAME_oneline(X509_get_issuer_name(peer
),buf
,BUFSIZ
);
1101 BIO_printf(bio_s_out
,"issuer=%s\n",buf
);
1105 if (SSL_get_shared_ciphers(con
,buf
,BUFSIZ
) != NULL
)
1106 BIO_printf(bio_s_out
,"Shared ciphers:%s\n",buf
);
1107 str
=SSL_CIPHER_get_name(SSL_get_current_cipher(con
));
1108 BIO_printf(bio_s_out
,"CIPHER is %s\n",(str
!= NULL
)?str
:"(NONE)");
1109 if (con
->hit
) BIO_printf(bio_s_out
,"Reused session-id\n");
1110 if (SSL_ctrl(con
,SSL_CTRL_GET_FLAGS
,0,NULL
) &
1111 TLS1_FLAGS_TLS_PADDING_BUG
)
1112 BIO_printf(bio_s_out
,"Peer has incorrect TLSv1 block padding\n");
1118 static DH
*load_dh_param(char *dhfile
)
1123 if ((bio
=BIO_new_file(dhfile
,"r")) == NULL
)
1125 ret
=PEM_read_bio_DHparams(bio
,NULL
,NULL
,NULL
);
1127 if (bio
!= NULL
) BIO_free(bio
);
1133 static int load_CA(SSL_CTX
*ctx
, char *file
)
1138 if ((in
=fopen(file
,"r")) == NULL
)
1143 if (PEM_read_X509(in
,&x
,NULL
) == NULL
)
1145 SSL_CTX_add_client_CA(ctx
,x
);
1147 if (x
!= NULL
) X509_free(x
);
1153 static int www_body(char *hostname
, int s
, unsigned char *context
)
1157 int i
,j
,k
,blank
,dot
;
1161 BIO
*io
,*ssl_bio
,*sbio
;
1164 buf
=OPENSSL_malloc(bufsize
);
1165 if (buf
== NULL
) return(0);
1166 io
=BIO_new(BIO_f_buffer());
1167 ssl_bio
=BIO_new(BIO_f_ssl());
1168 if ((io
== NULL
) || (ssl_bio
== NULL
)) goto err
;
1176 BIO_printf(bio_err
,"turning on non blocking io\n");
1177 if (BIO_socket_ioctl(s
,FIONBIO
,&sl
) < 0)
1178 ERR_print_errors(bio_err
);
1182 /* lets make the output buffer a reasonable size */
1183 if (!BIO_set_write_buffer_size(io
,bufsize
)) goto err
;
1185 if ((con
=SSL_new(ctx
)) == NULL
) goto err
;
1186 if(context
) SSL_set_session_id_context(con
, context
,
1187 strlen((char *)context
));
1189 sbio
=BIO_new_socket(s
,BIO_NOCLOSE
);
1194 test
=BIO_new(BIO_f_nbio_test());
1195 sbio
=BIO_push(test
,sbio
);
1197 SSL_set_bio(con
,sbio
,sbio
);
1198 SSL_set_accept_state(con
);
1200 /* SSL_set_fd(con,s); */
1201 BIO_set_ssl(ssl_bio
,con
,BIO_CLOSE
);
1202 BIO_push(io
,ssl_bio
);
1203 #ifdef CHARSET_EBCDIC
1204 io
= BIO_push(BIO_new(BIO_f_ebcdic_filter()),io
);
1210 BIO_set_callback(SSL_get_rbio(con
),bio_dump_cb
);
1211 BIO_set_callback_arg(SSL_get_rbio(con
),bio_s_out
);
1221 switch (SSL_get_error(con
,i
))
1223 case SSL_ERROR_NONE
:
1225 case SSL_ERROR_WANT_WRITE
:
1226 case SSL_ERROR_WANT_READ
:
1227 case SSL_ERROR_WANT_X509_LOOKUP
:
1229 case SSL_ERROR_SYSCALL
:
1231 case SSL_ERROR_ZERO_RETURN
:
1237 SSL_renegotiate(con
);
1238 SSL_write(con
,NULL
,0);
1241 i
=BIO_gets(io
,buf
,bufsize
-1);
1242 if (i
< 0) /* error */
1244 if (!BIO_should_retry(io
))
1247 ERR_print_errors(bio_err
);
1252 BIO_printf(bio_s_out
,"read R BLOCK\n");
1259 else if (i
== 0) /* end of input */
1265 /* else we have data */
1266 if ( ((www
== 1) && (strncmp("GET ",buf
,4) == 0)) ||
1267 ((www
== 2) && (strncmp("GET /stats ",buf
,10) == 0)))
1271 STACK_OF(SSL_CIPHER
) *sk
;
1272 static char *space
=" ";
1274 BIO_puts(io
,"HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
1275 BIO_puts(io
,"<HTML><BODY BGCOLOR=\"#ffffff\">\n");
1276 BIO_puts(io
,"<pre>\n");
1277 /* BIO_puts(io,SSLeay_version(SSLEAY_VERSION));*/
1279 for (i
=0; i
<local_argc
; i
++)
1281 BIO_puts(io
,local_argv
[i
]);
1282 BIO_write(io
," ",1);
1286 /* The following is evil and should not really
1288 BIO_printf(io
,"Ciphers supported in s_server binary\n");
1289 sk
=SSL_get_ciphers(con
);
1290 j
=sk_SSL_CIPHER_num(sk
);
1293 c
=sk_SSL_CIPHER_value(sk
,i
);
1294 BIO_printf(io
,"%-11s:%-25s",
1295 SSL_CIPHER_get_version(c
),
1296 SSL_CIPHER_get_name(c
));
1297 if ((((i
+1)%2) == 0) && (i
+1 != j
))
1301 p
=SSL_get_shared_ciphers(con
,buf
,bufsize
);
1304 BIO_printf(io
,"---\nCiphers common between both SSL end points:\n");
1310 BIO_write(io
,space
,26-j
);
1313 BIO_write(io
,((i
%3)?" ":"\n"),1);
1324 BIO_printf(io
,((con
->hit
)
1327 c
=SSL_get_current_cipher(con
);
1328 BIO_printf(io
,"%s, Cipher is %s\n",
1329 SSL_CIPHER_get_version(c
),
1330 SSL_CIPHER_get_name(c
));
1331 SSL_SESSION_print(io
,SSL_get_session(con
));
1332 BIO_printf(io
,"---\n");
1333 print_stats(io
,SSL_get_SSL_CTX(con
));
1334 BIO_printf(io
,"---\n");
1335 peer
=SSL_get_peer_certificate(con
);
1338 BIO_printf(io
,"Client certificate\n");
1339 X509_print(io
,peer
);
1340 PEM_write_bio_X509(io
,peer
);
1343 BIO_puts(io
,"no client certificate available\n");
1344 BIO_puts(io
,"</BODY></HTML>\r\n\r\n");
1347 else if ((www
== 2) && (strncmp("GET /",buf
,5) == 0))
1351 static char *text
="HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n";
1357 for (e
=p
; *e
!= '\0'; e
++)
1365 dot
= (e
[0] == '.') ? 2 : 0;
1368 dot
= (e
[0] == '.') ? 3 : 0;
1371 dot
= (e
[0] == '/') ? -1 : 0;
1375 dot
= (e
[0] == '/') ? 1 : 0;
1377 dot
= (dot
== 3) || (dot
== -1); /* filename contains ".." component */
1382 BIO_printf(io
,"'%s' is an invalid file name\r\n",p
);
1390 BIO_printf(io
,"'%s' contains '..' reference\r\n",p
);
1397 BIO_printf(io
,"'%s' is an invalid path\r\n",p
);
1402 /* append if a directory lookup */
1404 strcat(p
,"index.html");
1407 /* if a directory, do the index thang */
1408 if (stat(p
,&st_buf
) < 0)
1411 BIO_printf(io
,"Error accessing '%s'\r\n",p
);
1412 ERR_print_errors(io
);
1415 if (S_ISDIR(st_buf
.st_mode
))
1417 #if 0 /* must check buffer size */
1418 strcat(p
,"/index.html");
1421 BIO_printf(io
,"'%s' is a directory\r\n",p
);
1426 if ((file
=BIO_new_file(p
,"r")) == NULL
)
1429 BIO_printf(io
,"Error opening '%s'\r\n",p
);
1430 ERR_print_errors(io
);
1435 BIO_printf(bio_err
,"FILE:%s\n",p
);
1438 if ( ((i
> 5) && (strcmp(&(p
[i
-5]),".html") == 0)) ||
1439 ((i
> 4) && (strcmp(&(p
[i
-4]),".php") == 0)) ||
1440 ((i
> 4) && (strcmp(&(p
[i
-4]),".htm") == 0)))
1441 BIO_puts(io
,"HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
1443 BIO_puts(io
,"HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
1448 i
=BIO_read(file
,buf
,bufsize
);
1453 fprintf(stderr
,"%d\n",i
);
1454 if (total_bytes
> 3*1024)
1457 fprintf(stderr
,"RENEGOTIATE\n");
1458 SSL_renegotiate(con
);
1465 { static count
=0; if (++count
== 13) { SSL_renegotiate(con
); } }
1467 k
=BIO_write(io
,&(buf
[j
]),i
-j
);
1470 if (!BIO_should_retry(io
))
1474 BIO_printf(bio_s_out
,"rwrite W BLOCK\n");
1491 i
=(int)BIO_flush(io
);
1494 if (!BIO_should_retry(io
))
1502 /* make sure we re-use sessions */
1503 SSL_set_shutdown(con
,SSL_SENT_SHUTDOWN
|SSL_RECEIVED_SHUTDOWN
);
1505 /* This kills performance */
1506 /* SSL_shutdown(con); A shutdown gets sent in the
1507 * BIO_free_all(io) procession */
1513 BIO_printf(bio_s_out
,"ACCEPT\n");
1515 if (buf
!= NULL
) OPENSSL_free(buf
);
1516 if (io
!= NULL
) BIO_free_all(io
);
1517 /* if (ssl_bio != NULL) BIO_free(ssl_bio);*/
1522 static RSA MS_CALLBACK
*tmp_rsa_cb(SSL
*s
, int is_export
, int keylength
)
1524 static RSA
*rsa_tmp
=NULL
;
1526 if (rsa_tmp
== NULL
)
1530 BIO_printf(bio_err
,"Generating temp (%d bit) RSA key...",keylength
);
1531 (void)BIO_flush(bio_err
);
1533 rsa_tmp
=RSA_generate_key(keylength
,RSA_F4
,NULL
,NULL
);
1536 BIO_printf(bio_err
,"\n");
1537 (void)BIO_flush(bio_err
);