2001-12-06 13:10:51 +01:00
|
|
|
/* Copyright (C) 2000 MySQL AB
|
|
|
|
|
2001-05-20 14:04:46 +02:00
|
|
|
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.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2001-05-20 14:04:46 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2001-05-20 14:04:46 +02:00
|
|
|
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 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
Note that we can't have assertion on file descriptors; The reason for
|
|
|
|
this is that during mysql shutdown, another thread can close a file
|
|
|
|
we are working on. In this case we should just return read errors from
|
|
|
|
the file descriptior.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DONT_MAP_VIO
|
2001-09-14 01:54:33 +02:00
|
|
|
#include <my_global.h>
|
2001-05-31 16:18:25 +02:00
|
|
|
#include <mysql_com.h>
|
|
|
|
#include <violite.h>
|
2001-05-20 14:04:46 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <my_sys.h>
|
|
|
|
#include <my_net.h>
|
|
|
|
#include <m_string.h>
|
|
|
|
|
|
|
|
/*
|
2001-05-31 16:18:25 +02:00
|
|
|
* Helper to fill most of the Vio* with defaults.
|
2001-05-20 14:04:46 +02:00
|
|
|
*/
|
|
|
|
|
2001-05-31 16:18:25 +02:00
|
|
|
void vio_reset(Vio* vio, enum enum_vio_type type,
|
2001-05-20 14:04:46 +02:00
|
|
|
my_socket sd, HANDLE hPipe,
|
|
|
|
my_bool localhost)
|
|
|
|
{
|
2001-06-05 01:28:33 +02:00
|
|
|
DBUG_ENTER("vio_reset");
|
|
|
|
DBUG_PRINT("enter", ("type=%d sd=%d localhost=%d", type, sd, localhost));
|
2001-06-05 02:48:25 +02:00
|
|
|
|
2001-06-05 02:38:10 +02:00
|
|
|
bzero((char*) vio, sizeof(*vio));
|
2001-05-20 14:04:46 +02:00
|
|
|
vio->type = type;
|
|
|
|
vio->sd = sd;
|
|
|
|
vio->hPipe = hPipe;
|
|
|
|
vio->localhost= localhost;
|
|
|
|
#ifdef HAVE_VIO
|
2001-06-05 02:48:25 +02:00
|
|
|
#ifdef HAVE_OPENSSL
|
2001-06-05 02:38:10 +02:00
|
|
|
if (type == VIO_TYPE_SSL)
|
|
|
|
{
|
|
|
|
vio->viodelete =vio_ssl_delete;
|
|
|
|
vio->vioerrno =vio_ssl_errno;
|
|
|
|
vio->read =vio_ssl_read;
|
|
|
|
vio->write =vio_ssl_write;
|
|
|
|
vio->fastsend =vio_ssl_fastsend;
|
|
|
|
vio->viokeepalive =vio_ssl_keepalive;
|
|
|
|
vio->should_retry =vio_ssl_should_retry;
|
|
|
|
vio->vioclose =vio_ssl_close;
|
|
|
|
vio->peer_addr =vio_ssl_peer_addr;
|
|
|
|
vio->in_addr =vio_ssl_in_addr;
|
2001-06-05 02:48:25 +02:00
|
|
|
vio->vioblocking =vio_blocking;
|
|
|
|
vio->is_blocking =vio_is_blocking;
|
2001-06-05 02:38:10 +02:00
|
|
|
}
|
|
|
|
else /* default is VIO_TYPE_TCPIP */
|
2001-06-05 01:28:33 +02:00
|
|
|
#endif /* HAVE_OPENSSL */
|
2001-06-05 02:38:10 +02:00
|
|
|
{
|
|
|
|
vio->viodelete =vio_delete;
|
|
|
|
vio->vioerrno =vio_errno;
|
|
|
|
vio->read =vio_read;
|
|
|
|
vio->write =vio_write;
|
|
|
|
vio->fastsend =vio_fastsend;
|
|
|
|
vio->viokeepalive =vio_keepalive;
|
|
|
|
vio->should_retry =vio_should_retry;
|
|
|
|
vio->vioclose =vio_close;
|
|
|
|
vio->peer_addr =vio_peer_addr;
|
|
|
|
vio->in_addr =vio_in_addr;
|
2001-06-05 02:48:25 +02:00
|
|
|
vio->vioblocking =vio_blocking;
|
|
|
|
vio->is_blocking =vio_is_blocking;
|
2001-06-05 02:38:10 +02:00
|
|
|
}
|
2001-05-20 14:04:46 +02:00
|
|
|
#endif /* HAVE_VIO */
|
2001-06-05 02:48:25 +02:00
|
|
|
DBUG_VOID_RETURN;
|
2001-05-20 14:04:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the socket or TCP/IP connection and read the fnctl() status */
|
|
|
|
|
2001-05-31 16:18:25 +02:00
|
|
|
Vio *vio_new(my_socket sd, enum enum_vio_type type, my_bool localhost)
|
2001-05-20 14:04:46 +02:00
|
|
|
{
|
2001-05-31 16:18:25 +02:00
|
|
|
Vio *vio;
|
2001-05-20 14:04:46 +02:00
|
|
|
DBUG_ENTER("vio_new");
|
|
|
|
DBUG_PRINT("enter", ("sd=%d", sd));
|
2001-05-31 16:18:25 +02:00
|
|
|
if ((vio = (Vio*) my_malloc(sizeof(*vio),MYF(MY_WME))))
|
2001-05-20 14:04:46 +02:00
|
|
|
{
|
|
|
|
vio_reset(vio, type, sd, 0, localhost);
|
|
|
|
sprintf(vio->desc,
|
|
|
|
(vio->type == VIO_TYPE_SOCKET ? "socket (%d)" : "TCP/IP (%d)"),
|
|
|
|
vio->sd);
|
2002-04-29 11:24:14 +02:00
|
|
|
#if !defined(___WIN__) && !defined(__EMX__) && !defined(OS2)
|
2001-05-20 14:04:46 +02:00
|
|
|
#if !defined(NO_FCNTL_NONBLOCK)
|
|
|
|
vio->fcntl_mode = fcntl(sd, F_GETFL);
|
|
|
|
#elif defined(HAVE_SYS_IOCTL_H) /* hpux */
|
|
|
|
/* Non blocking sockets doesn't work good on HPUX 11.0 */
|
|
|
|
(void) ioctl(sd,FIOSNBIO,0);
|
|
|
|
#endif
|
|
|
|
#else /* !defined(__WIN__) && !defined(__EMX__) */
|
|
|
|
{
|
|
|
|
/* set to blocking mode by default */
|
|
|
|
ulong arg=0, r;
|
|
|
|
r = ioctlsocket(sd,FIONBIO,(void*) &arg, sizeof(arg));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
DBUG_RETURN(vio);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __WIN__
|
|
|
|
|
2001-05-31 16:18:25 +02:00
|
|
|
Vio *vio_new_win32pipe(HANDLE hPipe)
|
2001-05-20 14:04:46 +02:00
|
|
|
{
|
2001-05-31 16:18:25 +02:00
|
|
|
Vio *vio;
|
2001-05-20 14:04:46 +02:00
|
|
|
DBUG_ENTER("vio_new_handle");
|
2001-05-31 16:18:25 +02:00
|
|
|
if ((vio = (Vio*) my_malloc(sizeof(Vio),MYF(MY_WME))))
|
2001-05-20 14:04:46 +02:00
|
|
|
{
|
|
|
|
vio_reset(vio, VIO_TYPE_NAMEDPIPE, 0, hPipe, TRUE);
|
|
|
|
strmov(vio->desc, "named pipe");
|
|
|
|
}
|
|
|
|
DBUG_RETURN(vio);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|