143 #define _BSD_SOURCE 1
157 #ifdef OPENSSL_SYS_VMS
158 #define _XOPEN_SOURCE 500
170 #ifndef OPENSSL_NO_ENGINE
175 #ifndef OPENSSL_NO_RSA
178 #ifndef OPENSSL_NO_DSA
181 #ifndef OPENSSL_NO_DH
184 #ifndef OPENSSL_NO_SRP
189 #define _XOPEN_SOURCE_EXTENDED 1
195 #ifdef OPENSSL_SYS_WINDOWS
198 #include OPENSSL_UNISTD
201 #ifdef OPENSSL_SYS_VMS
202 # define TEST_SERVER_CERT "SYS$DISK:[-.APPS]SERVER.PEM"
203 # define TEST_CLIENT_CERT "SYS$DISK:[-.APPS]CLIENT.PEM"
204 #elif defined(OPENSSL_SYS_WINCE)
205 # define TEST_SERVER_CERT "\\OpenSSL\\server.pem"
206 # define TEST_CLIENT_CERT "\\OpenSSL\\client.pem"
207 #elif defined(OPENSSL_SYS_NETWARE)
208 # define TEST_SERVER_CERT "\\openssl\\apps\\server.pem"
209 # define TEST_CLIENT_CERT "\\openssl\\apps\\client.pem"
211 # define TEST_SERVER_CERT "../apps/server.pem"
212 # define TEST_CLIENT_CERT "../apps/client.pem"
221 #ifndef OPENSSL_NO_RSA
223 static void free_tmp_rsa(
void);
226 #define APP_CALLBACK_STRING "Test Callback Argument"
236 #ifndef OPENSSL_NO_DH
237 static DH *get_dh512(
void);
238 static DH *get_dh1024(
void);
239 static DH *get_dh1024dsa(
void);
244 #ifndef OPENSSL_NO_PSK
245 static unsigned int psk_client_callback(
SSL *ssl,
const char *hint,
char *identity,
246 unsigned int max_identity_len,
unsigned char *psk,
247 unsigned int max_psk_len);
248 static unsigned int psk_server_callback(
SSL *ssl,
const char *identity,
unsigned char *psk,
249 unsigned int max_psk_len);
252 #ifndef OPENSSL_NO_SRP
261 #define PWD_STRLEN 1024
277 static int MS_CALLBACK ssl_srp_server_param_cb(
SSL *s,
int *ad,
void *arg)
298 static char *cipher=NULL;
308 static const char rnd_seed[] =
"string to make the random number generator think it has entropy";
312 static int do_test_cipherlist(
void);
313 static void sv_usage(
void)
315 fprintf(stderr,
"usage: ssltest [args ...]\n");
316 fprintf(stderr,
"\n");
318 fprintf(stderr,
"-F - run test in FIPS mode\n");
320 fprintf(stderr,
" -server_auth - check server certificate\n");
321 fprintf(stderr,
" -client_auth - do client authentication\n");
322 fprintf(stderr,
" -proxy - allow proxy certificates\n");
323 fprintf(stderr,
" -proxy_auth <val> - set proxy policy rights\n");
324 fprintf(stderr,
" -proxy_cond <val> - experssion to test proxy policy rights\n");
325 fprintf(stderr,
" -v - more output\n");
326 fprintf(stderr,
" -d - debug output\n");
327 fprintf(stderr,
" -reuse - use session-id reuse\n");
328 fprintf(stderr,
" -num <val> - number of connections to perform\n");
329 fprintf(stderr,
" -bytes <val> - number of bytes to swap between client/server\n");
330 #ifndef OPENSSL_NO_DH
331 fprintf(stderr,
" -dhe1024 - use 1024 bit key (safe prime) for DHE\n");
332 fprintf(stderr,
" -dhe1024dsa - use 1024 bit key (with 160-bit subprime) for DHE\n");
333 fprintf(stderr,
" -no_dhe - disable DHE\n");
335 #ifndef OPENSSL_NO_ECDH
336 fprintf(stderr,
" -no_ecdhe - disable ECDHE\n");
338 #ifndef OPENSSL_NO_PSK
339 fprintf(stderr,
" -psk arg - PSK in hex (without 0x)\n");
341 #ifndef OPENSSL_NO_SRP
342 fprintf(stderr,
" -srpuser user - SRP username to use\n");
343 fprintf(stderr,
" -srppass arg - password for 'user'\n");
345 #ifndef OPENSSL_NO_SSL2
346 fprintf(stderr,
" -ssl2 - use SSLv2\n");
348 #ifndef OPENSSL_NO_SSL3
349 fprintf(stderr,
" -ssl3 - use SSLv3\n");
351 #ifndef OPENSSL_NO_TLS1
352 fprintf(stderr,
" -tls1 - use TLSv1\n");
354 fprintf(stderr,
" -CApath arg - PEM format directory of CA's\n");
355 fprintf(stderr,
" -CAfile arg - PEM format file of CA's\n");
356 fprintf(stderr,
" -cert arg - Server certificate file\n");
357 fprintf(stderr,
" -key arg - Server key file (default: same as -cert)\n");
358 fprintf(stderr,
" -c_cert arg - Client certificate file\n");
359 fprintf(stderr,
" -c_key arg - Client key file (default: same as -c_cert)\n");
360 fprintf(stderr,
" -cipher arg - The cipher list\n");
361 fprintf(stderr,
" -bio_pair - Use BIO pairs\n");
362 fprintf(stderr,
" -f - Test even cases that can't work\n");
363 fprintf(stderr,
" -time - measure processor time used by client and server\n");
364 fprintf(stderr,
" -zlib - use zlib compression\n");
365 fprintf(stderr,
" -rle - use rle compression\n");
366 #ifndef OPENSSL_NO_ECDH
367 fprintf(stderr,
" -named_curve arg - Elliptic curve name to use for ephemeral ECDH keys.\n" \
368 " Use \"openssl ecparam -list_curves\" for all names\n" \
369 " (default is sect163r2).\n");
371 fprintf(stderr,
" -test_cipherlist - verifies the order of the ssl cipher lists\n");
374 static void print_details(
SSL *c_ssl,
const char *prefix)
393 #ifndef OPENSSL_NO_RSA
401 #ifndef OPENSSL_NO_DSA
418 static void lock_dbg_cb(
int mode,
int type,
const char *
file,
int line)
421 const char *errstr = NULL;
427 errstr =
"invalid mode";
433 errstr =
"type out of bounds";
441 errstr =
"already locked";
453 errstr =
"not locked";
457 if (modes[type] != rw)
460 "CRYPTO_r_unlock on write lock" :
461 "CRYPTO_w_unlock on read lock";
468 errstr =
"invalid mode";
476 fprintf(stderr,
"openssl (lock_dbg_cb): %s (mode=%d, type=%d) at %s:%d\n",
477 errstr, mode, type, file, line);
481 #ifdef TLSEXT_TYPE_opaque_prf_input
482 struct cb_info_st {
void *input;
size_t len;
int ret; };
483 struct cb_info_st co1 = {
"C", 1, 1 };
484 struct cb_info_st co2 = {
"C", 1, 2 };
485 struct cb_info_st so1 = {
"S", 1, 1 };
486 struct cb_info_st so2 = {
"S", 1, 2 };
488 int opaque_prf_input_cb(
SSL *ssl,
void *peerinput,
size_t len,
void *arg_)
490 struct cb_info_st *arg = arg_;
501 int main(
int argc,
char *argv[])
503 char *CApath=NULL,*CAfile=NULL;
507 int tls1=0,ssl2=0,ssl3=0,ret=1;
513 char *server_key=NULL;
515 char *client_key=NULL;
516 #ifndef OPENSSL_NO_ECDH
517 char *named_curve = NULL;
523 int number=1,reuse=0;
525 #ifndef OPENSSL_NO_DH
527 int dhe1024 = 0, dhe1024dsa = 0;
529 #ifndef OPENSSL_NO_ECDH
532 #ifndef OPENSSL_NO_SRP
542 clock_t s_time = 0, c_time = 0;
544 #ifndef OPENSSL_NO_COMP
548 int test_cipherlist = 0;
562 if (!((getenv(
"OPENSSL_DEBUG_MEMORY") != NULL) && (0 == strcmp(getenv(
"OPENSSL_DEBUG_MEMORY"),
"off"))))
583 if(!strcmp(*argv,
"-F"))
588 fprintf(stderr,
"not compiled with FIPS support, so exitting without running.\n");
592 else if (strcmp(*argv,
"-server_auth") == 0)
594 else if (strcmp(*argv,
"-client_auth") == 0)
596 else if (strcmp(*argv,
"-proxy_auth") == 0)
598 if (--argc < 1)
goto bad;
601 else if (strcmp(*argv,
"-proxy_cond") == 0)
603 if (--argc < 1)
goto bad;
606 else if (strcmp(*argv,
"-v") == 0)
608 else if (strcmp(*argv,
"-d") == 0)
610 else if (strcmp(*argv,
"-reuse") == 0)
612 else if (strcmp(*argv,
"-dhe1024") == 0)
614 #ifndef OPENSSL_NO_DH
617 fprintf(stderr,
"ignoring -dhe1024, since I'm compiled without DH\n");
620 else if (strcmp(*argv,
"-dhe1024dsa") == 0)
622 #ifndef OPENSSL_NO_DH
625 fprintf(stderr,
"ignoring -dhe1024, since I'm compiled without DH\n");
628 else if (strcmp(*argv,
"-no_dhe") == 0)
630 else if (strcmp(*argv,
"-no_ecdhe") == 0)
632 else if (strcmp(*argv,
"-psk") == 0)
634 if (--argc < 1)
goto bad;
636 #ifndef OPENSSL_NO_PSK
639 BIO_printf(bio_err,
"Not a hex number '%s'\n",*argv);
646 #ifndef OPENSSL_NO_SRP
647 else if (strcmp(*argv,
"-srpuser") == 0)
649 if (--argc < 1)
goto bad;
653 else if (strcmp(*argv,
"-srppass") == 0)
655 if (--argc < 1)
goto bad;
660 else if (strcmp(*argv,
"-ssl2") == 0)
662 else if (strcmp(*argv,
"-tls1") == 0)
664 else if (strcmp(*argv,
"-ssl3") == 0)
666 else if (strncmp(*argv,
"-num",4) == 0)
668 if (--argc < 1)
goto bad;
669 number= atoi(*(++argv));
670 if (number == 0) number=1;
672 else if (strcmp(*argv,
"-bytes") == 0)
674 if (--argc < 1)
goto bad;
675 bytes= atol(*(++argv));
676 if (bytes == 0L) bytes=1L;
678 if (argv[0][i-1] ==
'k') bytes*=1024L;
679 if (argv[0][i-1] ==
'm') bytes*=1024L*1024L;
681 else if (strcmp(*argv,
"-cert") == 0)
683 if (--argc < 1)
goto bad;
684 server_cert= *(++argv);
686 else if (strcmp(*argv,
"-s_cert") == 0)
688 if (--argc < 1)
goto bad;
689 server_cert= *(++argv);
691 else if (strcmp(*argv,
"-key") == 0)
693 if (--argc < 1)
goto bad;
694 server_key= *(++argv);
696 else if (strcmp(*argv,
"-s_key") == 0)
698 if (--argc < 1)
goto bad;
699 server_key= *(++argv);
701 else if (strcmp(*argv,
"-c_cert") == 0)
703 if (--argc < 1)
goto bad;
704 client_cert= *(++argv);
706 else if (strcmp(*argv,
"-c_key") == 0)
708 if (--argc < 1)
goto bad;
709 client_key= *(++argv);
711 else if (strcmp(*argv,
"-cipher") == 0)
713 if (--argc < 1)
goto bad;
716 else if (strcmp(*argv,
"-CApath") == 0)
718 if (--argc < 1)
goto bad;
721 else if (strcmp(*argv,
"-CAfile") == 0)
723 if (--argc < 1)
goto bad;
726 else if (strcmp(*argv,
"-bio_pair") == 0)
730 else if (strcmp(*argv,
"-f") == 0)
734 else if (strcmp(*argv,
"-time") == 0)
738 else if (strcmp(*argv,
"-zlib") == 0)
742 else if (strcmp(*argv,
"-rle") == 0)
746 else if (strcmp(*argv,
"-named_curve") == 0)
748 if (--argc < 1)
goto bad;
749 #ifndef OPENSSL_NO_ECDH
750 named_curve = *(++argv);
752 fprintf(stderr,
"ignoring -named_curve, since I'm compiled without ECDH\n");
756 else if (strcmp(*argv,
"-app_verify") == 0)
760 else if (strcmp(*argv,
"-proxy") == 0)
764 else if (strcmp(*argv,
"-test_cipherlist") == 0)
770 fprintf(stderr,
"unknown option %s\n",*argv);
784 if (test_cipherlist == 1)
787 if (do_test_cipherlist() == 0)
793 if (!ssl2 && !ssl3 && !tls1 && number > 1 && !reuse && !force)
795 fprintf(stderr,
"This case cannot work. Use -f to perform "
796 "the test anyway (and\n-d to see what happens), "
797 "or add one of -ssl2, -ssl3, -tls1, -reuse\n"
798 "to avoid protocol mismatch.\n");
812 fprintf(stderr,
"*** IN FIPS MODE ***\n");
820 fprintf(stderr,
"Using BIO pair (-bio_pair)\n");
823 if (number < 50 && !force)
824 fprintf(stderr,
"Warning: For accurate timings, use more connections (e.g. -num 1000)\n");
832 #ifndef OPENSSL_NO_COMP
842 "Failed to add compression method\n");
849 "Warning: %s compression not supported\n",
856 ssl_comp_methods = SSL_COMP_get_compression_methods();
857 fprintf(stderr,
"Available compression methods:\n");
861 fprintf(stderr,
" NONE\n");
863 for (j = 0; j < n; j++)
866 fprintf(stderr,
" %d: %s\n", c->
id, c->
name);
871 #if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3)
883 #ifdef OPENSSL_NO_SSL2
892 if ((c_ctx == NULL) || (s_ctx == NULL))
904 #ifndef OPENSSL_NO_DH
924 #ifndef OPENSSL_NO_ECDH
929 if (named_curve != NULL)
934 BIO_printf(bio_err,
"unknown curve name (%s)\n", named_curve);
939 #ifdef OPENSSL_NO_EC2M
948 BIO_printf(bio_err,
"unable to create curve\n");
960 #ifndef OPENSSL_NO_RSA
964 #ifdef TLSEXT_TYPE_opaque_prf_input
987 (client_key?client_key:client_cert),
1003 BIO_printf(bio_err,
"client authentication\n");
1011 BIO_printf(bio_err,
"server authentication\n");
1018 int session_id_context = 0;
1033 #ifndef OPENSSL_NO_PSK
1037 BIO_printf(bio_err,
"setting PSK identity hint to s_ctx\n");
1040 BIO_printf(bio_err,
"error setting PSK identity hint to s_ctx\n");
1046 #ifndef OPENSSL_NO_SRP
1051 BIO_printf(bio_err,
"Unable to set SRP username\n");
1070 #ifndef OPENSSL_NO_KRB5
1073 char localhost[MAXHOSTNAMELEN+2];
1075 if (gethostname(localhost,
sizeof localhost-1) == 0)
1077 localhost[
sizeof localhost-1]=
'\0';
1078 if(strlen(localhost) ==
sizeof localhost-1)
1080 BIO_printf(bio_err,
"localhost name too long\n");
1089 for (i=0; i<number; i++)
1095 ret=
doit(s_ssl,c_ssl,bytes);
1100 print_details(c_ssl,
"");
1102 if ((number > 1) || (bytes > 1L))
1103 BIO_printf(bio_stdout,
"%d handshakes of %ld bytes done\n",number,bytes);
1106 #ifdef CLOCKS_PER_SEC
1111 BIO_printf(bio_stdout,
"Approximate total server time: %6.2f s\n"
1112 "Approximate total client time: %6.2f s\n",
1113 (
double)s_time/CLOCKS_PER_SEC,
1114 (
double)c_time/CLOCKS_PER_SEC);
1119 "Approximate total server time: %6.2f units\n"
1120 "Approximate total client time: %6.2f units\n",
1133 if (bio_stdout != NULL)
BIO_free(bio_stdout);
1135 #ifndef OPENSSL_NO_RSA
1138 #ifndef OPENSSL_NO_ENGINE
1146 if (bio_err != NULL)
BIO_free(bio_err);
1152 clock_t *s_time, clock_t *c_time)
1154 long cw_num = count, cr_num = count, sw_num = count, sr_num = count;
1155 BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL;
1156 BIO *server = NULL, *server_io = NULL, *client = NULL, *client_io = NULL;
1159 size_t bufsiz = 256;
1229 clock_t c_clock = clock();
1231 memset(cbuf, 0,
sizeof(cbuf));
1235 printf(
"client waiting in SSL_connect - %s\n",
1242 if (cw_num > (
long)
sizeof cbuf)
1251 fprintf(stderr,
"ERROR in CLIENT\n");
1261 fprintf(stderr,
"SSL CLIENT STARTUP FAILED\n");
1267 printf(
"client wrote %d\n", r);
1276 r =
BIO_read(c_ssl_bio, cbuf,
sizeof(cbuf));
1281 fprintf(stderr,
"ERROR in CLIENT\n");
1288 fprintf(stderr,
"SSL CLIENT STARTUP FAILED\n");
1294 printf(
"client read %d\n", r);
1307 *c_time += (clock() - c_clock);
1315 clock_t s_clock = clock();
1317 memset(sbuf, 0,
sizeof(sbuf));
1321 printf(
"server waiting in SSL_accept - %s\n",
1328 if (sw_num > (
long)
sizeof sbuf)
1337 fprintf(stderr,
"ERROR in SERVER\n");
1344 fprintf(stderr,
"SSL SERVER STARTUP FAILED\n");
1350 printf(
"server wrote %d\n", r);
1359 r =
BIO_read(s_ssl_bio, sbuf,
sizeof(sbuf));
1364 fprintf(stderr,
"ERROR in SERVER\n");
1371 fprintf(stderr,
"SSL SERVER STARTUP FAILED\n");
1377 printf(
"server read %d\n", r);
1382 *s_time += (clock() - s_clock);
1389 BIO *io1 = server_io, *io2 = client_io;
1394 static int prev_progress = 1;
1418 assert(r <= (
int)num);
1424 fprintf(stderr,
"ERROR: BIO_write could not write "
1425 "BIO_ctrl_get_write_guarantee() bytes");
1431 printf((io1 == client_io) ?
1432 "C->S relaying: %d bytes\n" :
1433 "S->C relaying: %d bytes\n",
1467 r =
BIO_read(io2, dataptr, (
int)num);
1470 fprintf(stderr,
"ERROR: BIO_read could not read "
1471 "BIO_ctrl_pending() bytes");
1478 fprintf(stderr,
"ERROR: BIO_nwrite() did not accept "
1479 "BIO_nwrite0() bytes");
1484 printf((io2 == client_io) ?
1485 "C->S relaying: %d bytes\n" :
1486 "S->C relaying: %d bytes\n",
1491 if (!progress && !prev_progress)
1492 if (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0)
1494 fprintf(stderr,
"ERROR: got stuck\n");
1497 fprintf(stderr,
"This can happen for SSL2 because "
1498 "CLIENT-FINISHED and SERVER-VERIFY are written \n"
1499 "concurrently ...");
1503 fprintf(stderr,
" ok.\n");
1507 fprintf(stderr,
" ERROR.\n");
1510 prev_progress = progress;
1513 while (cw_num > 0 || cr_num > 0 || sw_num > 0 || sr_num > 0);
1516 print_details(c_ssl,
"DONE via BIO pair: ");
1547 MS_STATIC char cbuf[1024*8],sbuf[1024*8];
1548 long cw_num=count,cr_num=count;
1549 long sw_num=count,sr_num=count;
1555 int c_r,c_w,s_r,s_w;
1558 int c_write,s_write;
1561 memset(cbuf,0,
sizeof(cbuf));
1562 memset(sbuf,0,
sizeof(sbuf));
1566 if ((s_to_c == NULL) || (c_to_s == NULL))
1574 if ((c_bio == NULL) || (s_bio == NULL))
1590 c_write=1,s_write=0;
1599 if ((i && s_r) || s_w) do_server=1;
1602 if ((i && c_r) || c_w) do_client=1;
1604 if (do_server && debug)
1607 printf(
"server waiting in SSL_accept - %s\n",
1615 if (do_client && debug)
1618 printf(
"client waiting in SSL_connect - %s\n",
1626 if (!do_client && !do_server)
1628 fprintf(stdout,
"ERROR IN STARTUP\n");
1632 if (do_client && !(done &
C_DONE))
1636 j = (cw_num > (long)
sizeof(cbuf)) ?
1637 (
int)
sizeof(cbuf) : (
int)cw_num;
1652 fprintf(stderr,
"ERROR in CLIENT\n");
1659 fprintf(stderr,
"SSL CLIENT STARTUP FAILED\n");
1665 printf(
"client wrote %d\n",i);
1674 i=
BIO_read(c_bio,cbuf,
sizeof(cbuf));
1688 fprintf(stderr,
"ERROR in CLIENT\n");
1695 fprintf(stderr,
"SSL CLIENT STARTUP FAILED\n");
1701 printf(
"client read %d\n",i);
1718 if (do_server && !(done &
S_DONE))
1722 i=
BIO_read(s_bio,sbuf,
sizeof(cbuf));
1736 fprintf(stderr,
"ERROR in SERVER\n");
1744 fprintf(stderr,
"SSL SERVER STARTUP FAILED in SSL_read\n");
1750 printf(
"server read %d\n",i);
1767 j = (sw_num > (long)
sizeof(sbuf)) ?
1768 (
int)
sizeof(sbuf) : (
int)sw_num;
1783 fprintf(stderr,
"ERROR in SERVER\n");
1791 fprintf(stderr,
"SSL SERVER STARTUP FAILED in SSL_write\n");
1797 printf(
"server wrote %d\n",i);
1807 if ((done & S_DONE) && (done & C_DONE))
break;
1811 print_details(c_ssl,
"DONE: ");
1832 if (c_to_s != NULL)
BIO_free(c_to_s);
1833 if (s_to_c != NULL)
BIO_free(s_to_c);
1839 static int get_proxy_auth_ex_data_idx(
void)
1841 static volatile int idx = -1;
1848 "SSLtest for verify callback", NULL,NULL,NULL);
1864 fprintf(stderr,
"depth=%d %s\n",
1868 fprintf(stderr,
"depth=%d error=%d %s\n",
1875 fprintf(stderr,
"Error string: %s\n",
1882 fprintf(stderr,
" ... ignored.\n");
1896 unsigned int *letters =
1898 get_proxy_auth_ex_data_idx());
1917 fprintf(stderr,
" Independent proxy certificate");
1918 for (i = 0; i < 26; i++)
1925 fprintf(stderr,
" Proxy certificate inherits all");
1952 fprintf(stderr,
" Certificate proxy rights = %*.*s", i, i, s);
1956 if (isascii(c) && isalpha(c))
1963 for (i = 0; i < 26; i++)
1972 ", resulting proxy rights = ");
1973 for(i = 0; i < 26; i++)
1976 fprintf(stderr,
"%c", i +
'A');
1980 fprintf(stderr,
"none");
1981 fprintf(stderr,
"\n");
1983 PROXY_CERT_INFO_EXTENSION_free(pci);
1991 static void process_proxy_debug(
int indent,
const char *
format, ...)
1993 static const char indentation[] =
1994 ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
1995 ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>";
1996 char my_format[256];
2000 indent, indent, indentation, format);
2002 va_start(args, format);
2003 vfprintf(stderr, my_format, args);
2011 static int process_proxy_cond_adders(
unsigned int letters[26],
2012 const char *cond,
const char **cond_end,
int *pos,
int indent);
2013 static int process_proxy_cond_val(
unsigned int letters[26],
2014 const char *cond,
const char **cond_end,
int *pos,
int indent)
2020 while(isspace((
int)*cond))
2027 process_proxy_debug(indent,
2028 "Start process_proxy_cond_val at position %d: %s\n",
2035 while(isspace((
int)*cond))
2045 ok = process_proxy_cond_adders(letters, cond, cond_end, pos,
2050 while(isspace((
int)*cond))
2058 "Weird condition character in position %d: "
2065 else if (isascii(c) && isalpha(c))
2069 ok = letters[c -
'A'];
2075 "Weird condition character in position %d: "
2082 if (ok >= 0 && negate)
2086 process_proxy_debug(indent,
2087 "End process_proxy_cond_val at position %d: %s, returning %d\n",
2092 static int process_proxy_cond_multipliers(
unsigned int letters[26],
2093 const char *cond,
const char **cond_end,
int *pos,
int indent)
2099 process_proxy_debug(indent,
2100 "Start process_proxy_cond_multipliers at position %d: %s\n",
2103 ok = process_proxy_cond_val(letters, cond, cond_end, pos, indent + 1);
2110 while(isspace((
int)*cond))
2124 ok = process_proxy_cond_val(letters,
2125 cond, cond_end, pos, indent + 1);
2139 fprintf(stderr,
"SOMETHING IS SERIOUSLY WRONG!"
2151 process_proxy_debug(indent,
2152 "End process_proxy_cond_multipliers at position %d: %s, returning %d\n",
2158 static int process_proxy_cond_adders(
unsigned int letters[26],
2159 const char *cond,
const char **cond_end,
int *pos,
int indent)
2165 process_proxy_debug(indent,
2166 "Start process_proxy_cond_adders at position %d: %s\n",
2169 ok = process_proxy_cond_multipliers(letters, cond, cond_end, pos,
2177 while(isspace((
int)*cond))
2190 ok = process_proxy_cond_multipliers(letters,
2191 cond, cond_end, pos, indent + 1);
2202 fprintf(stderr,
"SOMETHING IS SERIOUSLY WRONG!"
2214 process_proxy_debug(indent,
2215 "End process_proxy_cond_adders at position %d: %s, returning %d\n",
2222 static int process_proxy_cond(
unsigned int letters[26],
2223 const char *cond,
const char **cond_end)
2226 return process_proxy_cond_adders(letters, cond, cond_end, &pos, 1);
2232 struct app_verify_arg *cb_arg =
arg;
2233 unsigned int letters[26];
2237 char *s = NULL,buf[256];
2239 fprintf(stderr,
"In app_verify_callback, allowing cert. ");
2240 fprintf(stderr,
"Arg is: %s\n", cb_arg->
string);
2241 fprintf(stderr,
"Finished printing do we have a context? 0x%p a cert? 0x%p\n",
2242 (
void *)ctx, (
void *)ctx->
cert);
2247 fprintf(stderr,
"cert depth=%d %s\n",ctx->
error_depth,buf);
2253 int found_any = 0, i;
2256 for(i = 0; i < 26; i++)
2261 if (isascii(c) && isalpha(c))
2265 letters[c -
'A'] = 1;
2270 " Initial proxy rights = ");
2271 for(i = 0; i < 26; i++)
2274 fprintf(stderr,
"%c", i +
'A');
2278 fprintf(stderr,
"none");
2279 fprintf(stderr,
"\n");
2282 get_proxy_auth_ex_data_idx(),letters);
2289 #ifndef OPENSSL_NO_X509_VERIFY
2297 const char *cond_end = NULL;
2299 ok = process_proxy_cond(letters,
2306 fprintf(stderr,
"Stopped processing condition before it's end.\n");
2310 fprintf(stderr,
"Proxy rights check with condition '%s' proved invalid\n",
2313 fprintf(stderr,
"Proxy rights check with condition '%s' proved valid\n",
2320 #ifndef OPENSSL_NO_RSA
2321 static RSA *rsa_tmp=NULL;
2326 if (rsa_tmp == NULL)
2335 BIO_printf(bio_err,
"Generating temp (%d bit) RSA key...",keylength);
2339 BIO_printf(bio_err,
"Error generating key.");
2351 static void free_tmp_rsa(
void)
2353 if (rsa_tmp != NULL)
2361 #ifndef OPENSSL_NO_DH
2368 static DH *get_dh512()
2370 static unsigned char dh512_p[]={
2371 0xCB,0xC8,0xE1,0x86,0xD0,0x1F,0x94,0x17,0xA6,0x99,0xF0,0xC6,
2372 0x1F,0x0D,0xAC,0xB6,0x25,0x3E,0x06,0x39,0xCA,0x72,0x04,0xB0,
2373 0x6E,0xDA,0xC0,0x61,0xE6,0x7A,0x77,0x25,0xE8,0x3B,0xB9,0x5F,
2374 0x9A,0xB6,0xB5,0xFE,0x99,0x0B,0xA1,0x93,0x4E,0x35,0x33,0xB8,
2375 0xE1,0xF1,0x13,0x4F,0x59,0x1A,0xD2,0x57,0xC0,0x26,0x21,0x33,
2376 0x02,0xC5,0xAE,0x23,
2378 static unsigned char dh512_g[]={
2383 if ((dh=
DH_new()) == NULL)
return(NULL);
2384 dh->
p=
BN_bin2bn(dh512_p,
sizeof(dh512_p),NULL);
2385 dh->
g=
BN_bin2bn(dh512_g,
sizeof(dh512_g),NULL);
2386 if ((dh->
p == NULL) || (dh->
g == NULL))
2387 {
DH_free(dh);
return(NULL); }
2391 static DH *get_dh1024()
2393 static unsigned char dh1024_p[]={
2394 0xF8,0x81,0x89,0x7D,0x14,0x24,0xC5,0xD1,0xE6,0xF7,0xBF,0x3A,
2395 0xE4,0x90,0xF4,0xFC,0x73,0xFB,0x34,0xB5,0xFA,0x4C,0x56,0xA2,
2396 0xEA,0xA7,0xE9,0xC0,0xC0,0xCE,0x89,0xE1,0xFA,0x63,0x3F,0xB0,
2397 0x6B,0x32,0x66,0xF1,0xD1,0x7B,0xB0,0x00,0x8F,0xCA,0x87,0xC2,
2398 0xAE,0x98,0x89,0x26,0x17,0xC2,0x05,0xD2,0xEC,0x08,0xD0,0x8C,
2399 0xFF,0x17,0x52,0x8C,0xC5,0x07,0x93,0x03,0xB1,0xF6,0x2F,0xB8,
2400 0x1C,0x52,0x47,0x27,0x1B,0xDB,0xD1,0x8D,0x9D,0x69,0x1D,0x52,
2401 0x4B,0x32,0x81,0xAA,0x7F,0x00,0xC8,0xDC,0xE6,0xD9,0xCC,0xC1,
2402 0x11,0x2D,0x37,0x34,0x6C,0xEA,0x02,0x97,0x4B,0x0E,0xBB,0xB1,
2403 0x71,0x33,0x09,0x15,0xFD,0xDD,0x23,0x87,0x07,0x5E,0x89,0xAB,
2404 0x6B,0x7C,0x5F,0xEC,0xA6,0x24,0xDC,0x53,
2406 static unsigned char dh1024_g[]={
2411 if ((dh=
DH_new()) == NULL)
return(NULL);
2412 dh->
p=
BN_bin2bn(dh1024_p,
sizeof(dh1024_p),NULL);
2413 dh->
g=
BN_bin2bn(dh1024_g,
sizeof(dh1024_g),NULL);
2414 if ((dh->
p == NULL) || (dh->
g == NULL))
2415 {
DH_free(dh);
return(NULL); }
2419 static DH *get_dh1024dsa()
2421 static unsigned char dh1024_p[]={
2422 0xC8,0x00,0xF7,0x08,0x07,0x89,0x4D,0x90,0x53,0xF3,0xD5,0x00,
2423 0x21,0x1B,0xF7,0x31,0xA6,0xA2,0xDA,0x23,0x9A,0xC7,0x87,0x19,
2424 0x3B,0x47,0xB6,0x8C,0x04,0x6F,0xFF,0xC6,0x9B,0xB8,0x65,0xD2,
2425 0xC2,0x5F,0x31,0x83,0x4A,0xA7,0x5F,0x2F,0x88,0x38,0xB6,0x55,
2426 0xCF,0xD9,0x87,0x6D,0x6F,0x9F,0xDA,0xAC,0xA6,0x48,0xAF,0xFC,
2427 0x33,0x84,0x37,0x5B,0x82,0x4A,0x31,0x5D,0xE7,0xBD,0x52,0x97,
2428 0xA1,0x77,0xBF,0x10,0x9E,0x37,0xEA,0x64,0xFA,0xCA,0x28,0x8D,
2429 0x9D,0x3B,0xD2,0x6E,0x09,0x5C,0x68,0xC7,0x45,0x90,0xFD,0xBB,
2430 0x70,0xC9,0x3A,0xBB,0xDF,0xD4,0x21,0x0F,0xC4,0x6A,0x3C,0xF6,
2431 0x61,0xCF,0x3F,0xD6,0x13,0xF1,0x5F,0xBC,0xCF,0xBC,0x26,0x9E,
2432 0xBC,0x0B,0xBD,0xAB,0x5D,0xC9,0x54,0x39,
2434 static unsigned char dh1024_g[]={
2435 0x3B,0x40,0x86,0xE7,0xF3,0x6C,0xDE,0x67,0x1C,0xCC,0x80,0x05,
2436 0x5A,0xDF,0xFE,0xBD,0x20,0x27,0x74,0x6C,0x24,0xC9,0x03,0xF3,
2437 0xE1,0x8D,0xC3,0x7D,0x98,0x27,0x40,0x08,0xB8,0x8C,0x6A,0xE9,
2438 0xBB,0x1A,0x3A,0xD6,0x86,0x83,0x5E,0x72,0x41,0xCE,0x85,0x3C,
2439 0xD2,0xB3,0xFC,0x13,0xCE,0x37,0x81,0x9E,0x4C,0x1C,0x7B,0x65,
2440 0xD3,0xE6,0xA6,0x00,0xF5,0x5A,0x95,0x43,0x5E,0x81,0xCF,0x60,
2441 0xA2,0x23,0xFC,0x36,0xA7,0x5D,0x7A,0x4C,0x06,0x91,0x6E,0xF6,
2442 0x57,0xEE,0x36,0xCB,0x06,0xEA,0xF5,0x3D,0x95,0x49,0xCB,0xA7,
2443 0xDD,0x81,0xDF,0x80,0x09,0x4A,0x97,0x4D,0xA8,0x22,0x72,0xA1,
2444 0x7F,0xC4,0x70,0x56,0x70,0xE8,0x20,0x10,0x18,0x8F,0x2E,0x60,
2445 0x07,0xE7,0x68,0x1A,0x82,0x5D,0x32,0xA2,
2449 if ((dh=
DH_new()) == NULL)
return(NULL);
2450 dh->
p=
BN_bin2bn(dh1024_p,
sizeof(dh1024_p),NULL);
2451 dh->
g=
BN_bin2bn(dh1024_g,
sizeof(dh1024_g),NULL);
2452 if ((dh->
p == NULL) || (dh->
g == NULL))
2453 {
DH_free(dh);
return(NULL); }
2459 #ifndef OPENSSL_NO_PSK
2461 static int psk_key2bn(
const char *pskkey,
unsigned char *psk,
2462 unsigned int max_psk_len)
2470 BIO_printf(bio_err,
"Could not convert PSK key '%s' to BIGNUM\n", pskkey);
2477 BIO_printf(bio_err,
"psk buffer of callback is too small (%d) for key (%d)\n",
2487 static unsigned int psk_client_callback(
SSL *ssl,
const char *hint,
char *identity,
2488 unsigned int max_identity_len,
unsigned char *psk,
2489 unsigned int max_psk_len)
2492 unsigned int psk_len = 0;
2494 ret =
BIO_snprintf(identity, max_identity_len,
"Client_identity");
2498 fprintf(stderr,
"client: created identity '%s' len=%d\n", identity, ret);
2499 ret = psk_key2bn(
psk_key, psk, max_psk_len);
2507 static unsigned int psk_server_callback(
SSL *ssl,
const char *identity,
2508 unsigned char *psk,
unsigned int max_psk_len)
2510 unsigned int psk_len=0;
2512 if (strcmp(identity,
"Client_identity") != 0)
2514 BIO_printf(bio_err,
"server: PSK error: client identity not found\n");
2517 psk_len=psk_key2bn(
psk_key, psk, max_psk_len);
2522 static int do_test_cipherlist(
void)
2528 #ifndef OPENSSL_NO_SSL2
2529 fprintf(stderr,
"testing SSLv2 cipher list order: ");
2534 if (ci->
id >= tci->
id)
2536 fprintf(stderr,
"failed %lx vs. %lx\n", ci->
id, tci->
id);
2541 fprintf(stderr,
"ok\n");
2543 #ifndef OPENSSL_NO_SSL3
2544 fprintf(stderr,
"testing SSLv3 cipher list order: ");
2550 if (ci->
id >= tci->
id)
2552 fprintf(stderr,
"failed %lx vs. %lx\n", ci->
id, tci->
id);
2557 fprintf(stderr,
"ok\n");
2559 #ifndef OPENSSL_NO_TLS1
2560 fprintf(stderr,
"testing TLSv1 cipher list order: ");
2566 if (ci->
id >= tci->
id)
2568 fprintf(stderr,
"failed %lx vs. %lx\n", ci->
id, tci->
id);
2573 fprintf(stderr,
"ok\n");