violite.h 7.02 KB
Newer Older
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1 2 3 4 5 6 7 8
/* Copyright (C) 2000 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
10 11 12 13 14 15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

/*
 * Vio Lite.
 * Purpose: include file for Vio that will work with C and C++
 */

#ifndef vio_violite_h_
#define	vio_violite_h_

#include "my_net.h"			/* needed because of struct in_addr */


/* Simple vio interface in C;  The functions are implemented in violite.c */

#ifdef	__cplusplus
extern "C" {
#endif /* __cplusplus */

monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
34 35 36 37 38
enum enum_vio_type
{
  VIO_CLOSED, VIO_TYPE_TCPIP, VIO_TYPE_SOCKET, VIO_TYPE_NAMEDPIPE,
  VIO_TYPE_SSL, VIO_TYPE_SHARED_MEMORY
};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
39

40
Vio*	vio_new(my_socket sd, enum enum_vio_type type, my_bool localhost);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
41
#ifdef __WIN__
42
Vio*	vio_new_win32pipe(HANDLE hPipe);
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
43 44 45 46 47
Vio*	vio_new_win32shared_memory(NET *net,HANDLE handle_file_map,
				   HANDLE handle_map,
				   HANDLE event_server_wrote,
				   HANDLE event_server_read,
				   HANDLE event_client_wrote,
wax@kishkin.ru's avatar
wax@kishkin.ru committed
48 49
				   HANDLE event_client_read,
                                   HANDLE event_conn_closed);
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
50 51 52 53 54 55 56
int	vio_read_pipe(Vio *vio, gptr buf, int size);
int	vio_write_pipe(Vio *vio, const gptr buf, int size);
int	vio_close_pipe(Vio * vio);
#else
#define HANDLE void *
#endif /* __WIN__ */

57
void	vio_delete(Vio* vio);
58
int	vio_close(Vio* vio);
59 60
void    vio_reset(Vio* vio, enum enum_vio_type type,
                  my_socket sd, HANDLE hPipe, my_bool localhost);
61 62
int	vio_read(Vio *vio, gptr	buf, int size);
int	vio_write(Vio *vio, const gptr buf, int size);
63
int	vio_blocking(Vio *vio, my_bool onoff, my_bool *old_mode);
64
my_bool	vio_is_blocking(Vio *vio);
65
/* setsockopt TCP_NODELAY at IPPROTO_TCP level, when possible */
66
int	vio_fastsend(Vio *vio);
67
/* setsockopt SO_KEEPALIVE at SOL_SOCKET level, when possible */
68
int	vio_keepalive(Vio *vio, my_bool	onoff);
69
/* Whenever we should retry the last read/write operation. */
70
my_bool	vio_should_retry(Vio *vio);
71
/* Short text description of the socket for those, who are curious.. */
72
const char* vio_description(Vio *vio);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
73
/* Return the type of the connection */
74
enum enum_vio_type vio_type(Vio* vio);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
75
/* Return last error number */
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
76
int	vio_errno(Vio*vio);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
77
/* Get socket number */
78
my_socket vio_fd(Vio*vio);
79
/* Remote peer's address and name in text form */
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
80
my_bool	vio_peer_addr(Vio* vio, char *buf, uint16 *port);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
81
/* Remotes in_addr */
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
82 83 84
void	vio_in_addr(Vio *vio, struct in_addr *in);
my_bool	vio_poll_read(Vio *vio,uint timeout);
void	vio_timeout(Vio *vio,uint timeout);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
85

86
#ifdef HAVE_OPENSSL
87 88 89 90 91
#include <openssl/opensslv.h>
#if OPENSSL_VERSION_NUMBER < 0x0090700f
#define DES_cblock des_cblock
#define DES_key_schedule des_key_schedule
#define DES_set_key_unchecked(k,ks) des_set_key_unchecked((k),*(ks))
92
#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))
93 94
#endif

95
#define HEADER_DES_LOCL_H dummy_something
96 97
#include <openssl/ssl.h>
#include <openssl/err.h>
bk@work.mysql.com's avatar
bk@work.mysql.com committed
98

99 100
struct st_VioSSLAcceptorFd 
{
101 102 103
  SSL_CTX *ssl_context;
  SSL_METHOD *ssl_method;
  struct st_VioSSLAcceptorFd *session_id_context;
104
};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
105

106 107 108
/* One copy for client */
struct st_VioSSLConnectorFd
{
109
  SSL_CTX *ssl_context;
110
  /* function pointers which are only once for SSL client */ 
111
  SSL_METHOD *ssl_method;
112
};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
113

114 115
int sslaccept(struct st_VioSSLAcceptorFd*, Vio *, long timeout);
int sslconnect(struct st_VioSSLConnectorFd*, Vio *, long timeout);
116

117
struct st_VioSSLConnectorFd
118 119 120
*new_VioSSLConnectorFd(const char *key_file, const char *cert_file,
		       const char *ca_file,  const char *ca_path,
		       const char *cipher);
121
struct st_VioSSLAcceptorFd
122 123 124 125
*new_VioSSLAcceptorFd(const char *key_file, const char *cert_file,
		      const char *ca_file,const char *ca_path,
		      const char *cipher);
Vio *new_VioSSL(struct st_VioSSLAcceptorFd *fd, Vio *sd, int state);
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
126
#endif /* HAVE_OPENSSL */
127

128 129 130 131 132
#ifdef HAVE_SMEM
int vio_read_shared_memory(Vio *vio, gptr buf, int size);
int vio_write_shared_memory(Vio *vio, const gptr buf, int size);
int vio_close_shared_memory(Vio * vio);
#endif
133

134 135
#ifdef	__cplusplus
}
136 137
#endif

138
#if defined(HAVE_VIO) && !defined(DONT_MAP_VIO)
139 140 141 142
#define vio_delete(vio) 			(vio)->viodelete(vio)
#define vio_errno(vio)	 			(vio)->vioerrno(vio)
#define vio_read(vio, buf, size) 		(vio)->read(vio,buf,size)
#define vio_write(vio, buf, size) 		(vio)->write(vio, buf, size)
143 144
#define vio_blocking(vio, set_blocking_mode, old_mode)\
 	(vio)->vioblocking(vio, set_blocking_mode, old_mode)
145 146 147 148 149
#define vio_is_blocking(vio) 			(vio)->is_blocking(vio)
#define vio_fastsend(vio)			(vio)->fastsend(vio)
#define vio_keepalive(vio, set_keep_alive)	(vio)->viokeepalive(vio, set_keep_alive)
#define vio_should_retry(vio) 			(vio)->should_retry(vio)
#define vio_close(vio)				((vio)->vioclose)(vio)
150
#define vio_peer_addr(vio, buf, prt)		(vio)->peer_addr(vio, buf, prt)
151
#define vio_in_addr(vio, in)			(vio)->in_addr(vio, in)
152
#define vio_timeout(vio, seconds)			(vio)->timeout(vio, seconds)
153
#endif /* defined(HAVE_VIO) && !defined(DONT_MAP_VIO) */
154

155
/* This enumerator is used in parser - should be always visible */
156 157 158 159 160 161 162 163
enum SSL_type
{
  SSL_TYPE_NOT_SPECIFIED= -1,
  SSL_TYPE_NONE,
  SSL_TYPE_ANY,
  SSL_TYPE_X509,
  SSL_TYPE_SPECIFIED
};
164

165

hf@deer.(none)'s avatar
SCRUM  
hf@deer.(none) committed
166
/* HFTODO - hide this if we don't want client in embedded server */
167 168 169 170 171 172 173 174 175 176 177 178 179
/* This structure is for every connection on both sides */
struct st_vio
{
  my_socket		sd;		/* my_socket - real or imaginary */
  HANDLE hPipe;
  my_bool		localhost;	/* Are we from localhost? */
  int			fcntl_mode;	/* Buffered fcntl(sd,F_GETFL) */
  struct sockaddr_in	local;		/* Local internet address */
  struct sockaddr_in	remote;		/* Remote internet address */
  enum enum_vio_type	type;		/* Type of connection */
  char			desc[30];	/* String description */
#ifdef HAVE_VIO
  /* function pointers. They are similar for socket/SSL/whatever */
180 181 182
  void    (*viodelete)(Vio*);
  int     (*vioerrno)(Vio*);
  int     (*read)(Vio*, gptr, int);
183
  int     (*write)(Vio*, const gptr, int);
184
  int     (*vioblocking)(Vio*, my_bool, my_bool *);
185 186 187
  my_bool (*is_blocking)(Vio*);
  int     (*viokeepalive)(Vio*, my_bool);
  int     (*fastsend)(Vio*);
188
  my_bool (*peer_addr)(Vio*, char *, uint16*);
189 190 191
  void    (*in_addr)(Vio*, struct in_addr*);
  my_bool (*should_retry)(Vio*);
  int     (*vioclose)(Vio*);
192 193
  void	  (*timeout)(Vio*, unsigned int timeout);
  void	  *ssl_arg;
194
#ifdef HAVE_SMEM
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
195 196 197 198 199 200
  HANDLE  handle_file_map;
  char    *handle_map;
  HANDLE  event_server_wrote;
  HANDLE  event_server_read;
  HANDLE  event_client_wrote;
  HANDLE  event_client_read;
wax@kishkin.ru's avatar
wax@kishkin.ru committed
201
  HANDLE  event_conn_closed;
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
202 203 204
  long    shared_memory_remain;
  char    *shared_memory_pos;
  NET     *net;
205
#endif /* HAVE_SMEM */
206 207
#endif /* HAVE_VIO */
};
208
#endif /* vio_violite_h_ */