~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/test-ssl.c

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000 MySQL AB
 
2
 
 
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.
 
6
 
 
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.
 
11
 
 
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 */
 
15
 
 
16
#include <my_global.h>
 
17
#if defined(HAVE_OPENSSL) && !defined(__NETWARE__)
 
18
#include <my_sys.h>
 
19
#include <m_string.h>
 
20
#include <m_ctype.h>
 
21
#include "mysql.h"
 
22
#include "errmsg.h"
 
23
#include <my_dir.h>
 
24
#include <my_getopt.h>
 
25
#include <signal.h>
 
26
#include <violite.h>
 
27
 
 
28
const char *VER="0.2";
 
29
 
 
30
 
 
31
#ifndef DBUG_OFF
 
32
const char *default_dbug_option="d:t:O,-";
 
33
#endif
 
34
 
 
35
void
 
36
fatal_error(    const char*     r)
 
37
{
 
38
        perror(r);
 
39
        exit(0);
 
40
}
 
41
 
 
42
void
 
43
print_usage()
 
44
{
 
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");
 
47
}
 
48
 
 
49
 
 
50
int
 
51
main(int argc, char**   argv)
 
52
{
 
53
  char* server_key = 0, *server_cert = 0;
 
54
  char* client_key = 0, *client_cert = 0;
 
55
  char* ca_file = 0,    *ca_path = 0;
 
56
  char* cipher=0;
 
57
  int   child_pid,sv[2];
 
58
  my_bool unused;
 
59
  struct st_VioSSLFd* ssl_acceptor= 0;
 
60
  struct st_VioSSLFd* ssl_connector= 0;
 
61
  Vio* client_vio=0, *server_vio=0;
 
62
  MY_INIT(argv[0]);
 
63
  DBUG_PROCESS(argv[0]);
 
64
  DBUG_PUSH(default_dbug_option);
 
65
 
 
66
  if (argc<5)
 
67
  {
 
68
    print_usage();
 
69
    return 1;
 
70
  }
 
71
 
 
72
  server_key = argv[1];
 
73
  server_cert = argv[2];
 
74
  client_key = argv[3];
 
75
  client_cert = argv[4];
 
76
  if (argc>5)
 
77
    ca_file = argv[5];
 
78
  if (argc>6)
 
79
    ca_path = argv[6];
 
80
  printf("Server key/cert : %s/%s\n", server_key, server_cert);
 
81
  printf("Client key/cert : %s/%s\n", client_key, client_cert);
 
82
  if (ca_file!=0)
 
83
    printf("CAfile          : %s\n", ca_file);
 
84
  if (ca_path!=0)
 
85
    printf("CApath          : %s\n", ca_path);
 
86
 
 
87
 
 
88
  if (socketpair(PF_UNIX, SOCK_STREAM, IPPROTO_IP, sv)==-1)
 
89
    fatal_error("socketpair");
 
90
 
 
91
  ssl_acceptor = new_VioSSLAcceptorFd(server_key, server_cert, ca_file,
 
92
                                      ca_path, cipher);
 
93
  ssl_connector = new_VioSSLConnectorFd(client_key, client_cert, ca_file,
 
94
                                        ca_path, cipher);
 
95
 
 
96
  client_vio = (struct st_vio*)my_malloc(sizeof(struct st_vio),MYF(0));
 
97
  client_vio->sd = sv[0];
 
98
  client_vio->vioblocking(client_vio, 0, &unused);
 
99
  sslconnect(ssl_connector,client_vio,60L);
 
100
  server_vio = (struct st_vio*)my_malloc(sizeof(struct st_vio),MYF(0));
 
101
  server_vio->sd = sv[1];
 
102
  server_vio->vioblocking(client_vio, 0, &unused);
 
103
  sslaccept(ssl_acceptor,server_vio,60L);
 
104
 
 
105
  printf("Socketpair: %d , %d\n", client_vio->sd, server_vio->sd);
 
106
 
 
107
  child_pid = fork();
 
108
  if (child_pid==-1) {
 
109
    my_free((uchar*)ssl_acceptor,MYF(0));
 
110
    my_free((uchar*)ssl_connector,MYF(0));
 
111
    fatal_error("fork");
 
112
  }
 
113
  if (child_pid==0)
 
114
  {
 
115
    /* child, therefore, client */
 
116
    char        xbuf[100];
 
117
    int r = vio_read(client_vio,xbuf, sizeof(xbuf));
 
118
    if (r<=0) {
 
119
      my_free((uchar*)ssl_acceptor,MYF(0));
 
120
      my_free((uchar*)ssl_connector,MYF(0));
 
121
      fatal_error("client:SSL_read");
 
122
    }
 
123
    xbuf[r] = 0;
 
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));
 
128
  }
 
129
  else
 
130
  {
 
131
    const char* s = "Huhuhuh";
 
132
    int         r = vio_write(server_vio,(uchar*)s, strlen(s));
 
133
    if (r<=0) {
 
134
      my_free((uchar*)ssl_acceptor,MYF(0));
 
135
      my_free((uchar*)ssl_connector,MYF(0));
 
136
      fatal_error("server:SSL_write");
 
137
    }
 
138
    my_free((uchar*)server_vio,MYF(0));
 
139
    my_free((uchar*)ssl_acceptor,MYF(0));
 
140
    my_free((uchar*)ssl_connector,MYF(0));
 
141
  }
 
142
  return 0;
 
143
}
 
144
#else /* HAVE_OPENSSL */
 
145
 
 
146
int main() {
 
147
return 0;
 
148
}
 
149
#endif /* HAVE_OPENSSL */