1
by brian
clean slate |
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 |
/*
|
|
17 |
* Vio Lite.
|
|
18 |
* Purpose: include file for Vio that will work with C and C++
|
|
19 |
*/
|
|
20 |
||
21 |
#ifndef vio_violite_h_
|
|
22 |
#define vio_violite_h_
|
|
23 |
||
24 |
#include "my_net.h" /* needed because of struct in_addr */ |
|
25 |
||
26 |
||
27 |
/* Simple vio interface in C; The functions are implemented in violite.c */
|
|
28 |
||
29 |
#ifdef __cplusplus
|
|
30 |
extern "C" { |
|
31 |
#endif /* __cplusplus */ |
|
32 |
||
33 |
enum enum_vio_type |
|
34 |
{
|
|
35 |
VIO_CLOSED, VIO_TYPE_TCPIP, VIO_TYPE_SOCKET, VIO_TYPE_NAMEDPIPE, |
|
36 |
VIO_TYPE_SSL, VIO_TYPE_SHARED_MEMORY |
|
37 |
};
|
|
38 |
||
39 |
||
40 |
#define VIO_LOCALHOST 1 /* a localhost connection */ |
|
41 |
#define VIO_BUFFERED_READ 2 /* use buffered read */ |
|
42 |
#define VIO_READ_BUFFER_SIZE 16384 /* size of read buffer */ |
|
43 |
||
44 |
Vio* vio_new(my_socket sd, enum enum_vio_type type, uint flags); |
|
45 |
#define HANDLE void *
|
|
46 |
||
47 |
void vio_delete(Vio* vio); |
|
48 |
int vio_close(Vio* vio); |
|
49 |
void vio_reset(Vio* vio, enum enum_vio_type type, |
|
50 |
my_socket sd, HANDLE hPipe, uint flags); |
|
51 |
size_t vio_read(Vio *vio, uchar * buf, size_t size); |
|
52 |
size_t vio_read_buff(Vio *vio, uchar * buf, size_t size); |
|
53 |
size_t vio_write(Vio *vio, const uchar * buf, size_t size); |
|
54 |
int vio_blocking(Vio *vio, my_bool onoff, my_bool *old_mode); |
|
55 |
my_bool vio_is_blocking(Vio *vio); |
|
56 |
/* setsockopt TCP_NODELAY at IPPROTO_TCP level, when possible */
|
|
57 |
int vio_fastsend(Vio *vio); |
|
58 |
/* setsockopt SO_KEEPALIVE at SOL_SOCKET level, when possible */
|
|
59 |
int vio_keepalive(Vio *vio, my_bool onoff); |
|
60 |
/* Whenever we should retry the last read/write operation. */
|
|
61 |
my_bool vio_should_retry(Vio *vio); |
|
62 |
/* Check that operation was timed out */
|
|
63 |
my_bool vio_was_interrupted(Vio *vio); |
|
64 |
/* Short text description of the socket for those, who are curious.. */
|
|
65 |
const char* vio_description(Vio *vio); |
|
66 |
/* Return the type of the connection */
|
|
67 |
enum enum_vio_type vio_type(Vio* vio); |
|
68 |
/* Return last error number */
|
|
69 |
int vio_errno(Vio*vio); |
|
70 |
/* Get socket number */
|
|
71 |
my_socket vio_fd(Vio*vio); |
|
72 |
/* Remote peer's address and name in text form */
|
|
73 |
my_bool vio_peer_addr(Vio *vio, char *buf, uint16 *port, size_t buflen); |
|
74 |
my_bool vio_poll_read(Vio *vio,uint timeout); |
|
75 |
my_bool vio_peek_read(Vio *vio, uint *bytes); |
|
76 |
||
77 |
#ifdef HAVE_OPENSSL
|
|
78 |
#include <openssl/opensslv.h> |
|
79 |
#if OPENSSL_VERSION_NUMBER < 0x0090700f
|
|
80 |
#define DES_cblock des_cblock
|
|
81 |
#define DES_key_schedule des_key_schedule
|
|
82 |
#define DES_set_key_unchecked(k,ks) des_set_key_unchecked((k),*(ks))
|
|
83 |
#define DES_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e) des_ede3_cbc_encrypt((i),(o),(l),*(k1),*(k2),*(k3),(iv),(e))
|
|
84 |
#endif
|
|
85 |
||
86 |
#define HEADER_DES_LOCL_H dummy_something
|
|
87 |
#define YASSL_MYSQL_COMPATIBLE
|
|
88 |
#ifndef YASSL_PREFIX
|
|
89 |
#define YASSL_PREFIX
|
|
90 |
#endif
|
|
91 |
/* Set yaSSL to use same type as MySQL do for socket handles */
|
|
92 |
typedef my_socket YASSL_SOCKET_T; |
|
93 |
#define YASSL_SOCKET_T_DEFINED
|
|
94 |
#include <openssl/ssl.h> |
|
95 |
#include <openssl/err.h> |
|
96 |
||
97 |
#ifndef EMBEDDED_LIBRARY
|
|
98 |
||
99 |
struct st_VioSSLFd |
|
100 |
{
|
|
101 |
SSL_CTX *ssl_context; |
|
102 |
};
|
|
103 |
||
104 |
int sslaccept(struct st_VioSSLFd*, Vio *, long timeout); |
|
105 |
int sslconnect(struct st_VioSSLFd*, Vio *, long timeout); |
|
106 |
||
107 |
struct st_VioSSLFd |
|
108 |
*new_VioSSLConnectorFd(const char *key_file, const char *cert_file, |
|
109 |
const char *ca_file, const char *ca_path, |
|
110 |
const char *cipher); |
|
111 |
struct st_VioSSLFd |
|
112 |
*new_VioSSLAcceptorFd(const char *key_file, const char *cert_file, |
|
113 |
const char *ca_file,const char *ca_path, |
|
114 |
const char *cipher); |
|
115 |
void free_vio_ssl_acceptor_fd(struct st_VioSSLFd *fd); |
|
116 |
#endif /* ! EMBEDDED_LIBRARY */ |
|
117 |
#endif /* HAVE_OPENSSL */ |
|
118 |
||
119 |
#ifdef HAVE_SMEM
|
|
120 |
size_t vio_read_shared_memory(Vio *vio, uchar * buf, size_t size); |
|
121 |
size_t vio_write_shared_memory(Vio *vio, const uchar * buf, size_t size); |
|
122 |
int vio_close_shared_memory(Vio * vio); |
|
123 |
#endif
|
|
124 |
||
125 |
void vio_end(void); |
|
126 |
||
127 |
#ifdef __cplusplus
|
|
128 |
}
|
|
129 |
#endif
|
|
130 |
||
131 |
#if !defined(DONT_MAP_VIO)
|
|
132 |
#define vio_delete(vio) (vio)->viodelete(vio)
|
|
133 |
#define vio_errno(vio) (vio)->vioerrno(vio)
|
|
134 |
#define vio_read(vio, buf, size) ((vio)->read)(vio,buf,size)
|
|
135 |
#define vio_write(vio, buf, size) ((vio)->write)(vio, buf, size)
|
|
136 |
#define vio_blocking(vio, set_blocking_mode, old_mode)\
|
|
137 |
(vio)->vioblocking(vio, set_blocking_mode, old_mode)
|
|
138 |
#define vio_is_blocking(vio) (vio)->is_blocking(vio)
|
|
139 |
#define vio_fastsend(vio) (vio)->fastsend(vio)
|
|
140 |
#define vio_keepalive(vio, set_keep_alive) (vio)->viokeepalive(vio, set_keep_alive)
|
|
141 |
#define vio_should_retry(vio) (vio)->should_retry(vio)
|
|
142 |
#define vio_was_interrupted(vio) (vio)->was_interrupted(vio)
|
|
143 |
#define vio_close(vio) ((vio)->vioclose)(vio)
|
|
144 |
#define vio_peer_addr(vio, buf, prt, buflen) (vio)->peer_addr(vio, buf, prt, buflen)
|
|
145 |
#define vio_timeout(vio, which, seconds) (vio)->timeout(vio, which, seconds)
|
|
146 |
#endif /* !defined(DONT_MAP_VIO) */ |
|
147 |
||
148 |
/* This enumerator is used in parser - should be always visible */
|
|
149 |
enum SSL_type |
|
150 |
{
|
|
151 |
SSL_TYPE_NOT_SPECIFIED= -1, |
|
152 |
SSL_TYPE_NONE, |
|
153 |
SSL_TYPE_ANY, |
|
154 |
SSL_TYPE_X509, |
|
155 |
SSL_TYPE_SPECIFIED
|
|
156 |
};
|
|
157 |
||
158 |
||
159 |
/* HFTODO - hide this if we don't want client in embedded server */
|
|
160 |
/* This structure is for every connection on both sides */
|
|
161 |
struct st_vio |
|
162 |
{
|
|
163 |
my_socket sd; /* my_socket - real or imaginary */ |
|
164 |
HANDLE hPipe; |
|
165 |
my_bool localhost; /* Are we from localhost? */ |
|
166 |
int fcntl_mode; /* Buffered fcntl(sd,F_GETFL) */ |
|
167 |
struct sockaddr_storage local; /* Local internet address */ |
|
168 |
struct sockaddr_storage remote; /* Remote internet address */ |
|
169 |
int addrLen; /* Length of remote address */ |
|
170 |
enum enum_vio_type type; /* Type of connection */ |
|
171 |
char desc[30]; /* String description */ |
|
172 |
char *read_buffer; /* buffer for vio_read_buff */ |
|
173 |
char *read_pos; /* start of unfetched data in the |
|
174 |
read buffer */
|
|
175 |
char *read_end; /* end of unfetched data */ |
|
176 |
/* function pointers. They are similar for socket/SSL/whatever */
|
|
177 |
void (*viodelete)(Vio*); |
|
178 |
int (*vioerrno)(Vio*); |
|
179 |
size_t (*read)(Vio*, uchar *, size_t); |
|
180 |
size_t (*write)(Vio*, const uchar *, size_t); |
|
181 |
int (*vioblocking)(Vio*, my_bool, my_bool *); |
|
182 |
my_bool (*is_blocking)(Vio*); |
|
183 |
int (*viokeepalive)(Vio*, my_bool); |
|
184 |
int (*fastsend)(Vio*); |
|
185 |
my_bool (*peer_addr)(Vio*, char *, uint16*, size_t); |
|
186 |
void (*in_addr)(Vio*, struct sockaddr_storage*); |
|
187 |
my_bool (*should_retry)(Vio*); |
|
188 |
my_bool (*was_interrupted)(Vio*); |
|
189 |
int (*vioclose)(Vio*); |
|
190 |
void (*timeout)(Vio*, unsigned int which, unsigned int timeout); |
|
191 |
#ifdef HAVE_OPENSSL
|
|
192 |
void *ssl_arg; |
|
193 |
#endif
|
|
194 |
#ifdef HAVE_SMEM
|
|
195 |
HANDLE handle_file_map; |
|
196 |
char *handle_map; |
|
197 |
HANDLE event_server_wrote; |
|
198 |
HANDLE event_server_read; |
|
199 |
HANDLE event_client_wrote; |
|
200 |
HANDLE event_client_read; |
|
201 |
HANDLE event_conn_closed; |
|
202 |
size_t shared_memory_remain; |
|
203 |
char *shared_memory_pos; |
|
204 |
NET *net; |
|
205 |
#endif /* HAVE_SMEM */ |
|
206 |
};
|
|
207 |
#endif /* vio_violite_h_ */ |