1
/* Copyright (C) 2000 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
#include <my_global.h>
24
#include <my_getopt.h>
28
const char *VER="0.2";
32
const char *default_dbug_option="d:t:O,/tmp/viotest-ssl.trace";
36
fatal_error(const char *r)
45
printf("viossl-test: testing SSL virtual IO. Usage:\n");
46
printf("viossl-test server-key server-cert client-key client-cert [CAfile] [CApath]\n");
50
int main(int argc, char **argv)
53
char* server_cert = 0;
55
char* client_cert = 0;
59
struct st_VioSSLAcceptorFd* ssl_acceptor=0;
60
struct st_VioSSLConnectorFd* ssl_connector=0;
64
DBUG_PROCESS(argv[0]);
65
DBUG_PUSH(default_dbug_option);
74
server_cert = argv[2];
76
client_cert = argv[4];
81
printf("Server key/cert : %s/%s\n", server_key, server_cert);
82
printf("Client key/cert : %s/%s\n", client_key, client_cert);
84
printf("CAfile : %s\n", ca_file);
86
printf("CApath : %s\n", ca_path);
89
if (socketpair(PF_UNIX, SOCK_STREAM, IPPROTO_IP, sv)==-1)
90
fatal_error("socketpair");
92
ssl_acceptor = new_VioSSLAcceptorFd(server_key, server_cert, ca_file,
94
ssl_connector = new_VioSSLConnectorFd(client_key, client_cert, ca_file,
97
client_vio = (Vio*)my_malloc(sizeof(struct st_vio),MYF(0));
98
client_vio->sd = sv[0];
99
sslconnect(ssl_connector,client_vio);
100
server_vio = (Vio*)my_malloc(sizeof(struct st_vio),MYF(0));
101
server_vio->sd = sv[1];
102
sslaccept(ssl_acceptor,server_vio);
104
printf("Socketpair: %d , %d\n", client_vio->sd, server_vio->sd);
109
my_free((uchar*)ssl_acceptor,MYF(0));
110
my_free((uchar*)ssl_connector,MYF(0));
115
/* child, therefore, client */
117
int r = vio_ssl_read(client_vio,xbuf, sizeof(xbuf));
119
my_free((uchar*)ssl_acceptor,MYF(0));
120
my_free((uchar*)ssl_connector,MYF(0));
121
fatal_error("client:SSL_read");
124
printf("client:got %s\n", xbuf);
125
my_free((uchar*)client_vio,MYF(0));
126
my_free((uchar*)ssl_acceptor,MYF(0));
127
my_free((uchar*)ssl_connector,MYF(0));
132
const char* s = "Huhuhuh";
133
int r = vio_ssl_write(server_vio,(uchar*)s, strlen(s));
135
my_free((uchar*)ssl_acceptor,MYF(0));
136
my_free((uchar*)ssl_connector,MYF(0));
137
fatal_error("server:SSL_write");
139
my_free((uchar*)server_vio,MYF(0));
140
my_free((uchar*)ssl_acceptor,MYF(0));
141
my_free((uchar*)ssl_connector,MYF(0));
146
#else /* HAVE_OPENSSL */
151
#endif /* HAVE_OPENSSL */