vio.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   Note that we can't have assertion on file descriptors;  The reason for
  15.   this is that during mysql shutdown, another thread can close a file
  16.   we are working on.  In this case we should just return read errors from
  17.   the file descriptior.
  18. */
  19. #include "vio_priv.h"
  20. /*
  21.  * Helper to fill most of the Vio* with defaults.
  22.  */
  23. void vio_reset(Vio* vio, enum enum_vio_type type,
  24.       my_socket sd, HANDLE hPipe,
  25.       my_bool localhost)
  26. {
  27.   DBUG_ENTER("vio_reset");
  28.   DBUG_PRINT("enter", ("type=%d  sd=%d  localhost=%d", type, sd, localhost));
  29.   bzero((char*) vio, sizeof(*vio));
  30.   vio->type = type;
  31.   vio->sd = sd;
  32.   vio->hPipe = hPipe;
  33.   vio->localhost= localhost;
  34. #ifdef HAVE_VIO  
  35. #ifdef __WIN__ 
  36.   if (type == VIO_TYPE_NAMEDPIPE)
  37.   {
  38.     vio->viodelete =vio_delete;
  39.     vio->vioerrno =vio_errno;
  40.     vio->read           =vio_read_pipe;
  41.     vio->write          =vio_write_pipe;
  42.     vio->fastsend =vio_fastsend;
  43.     vio->viokeepalive =vio_keepalive;
  44.     vio->should_retry =vio_should_retry;
  45.     vio->was_interrupted=vio_was_interrupted;
  46.     vio->vioclose =vio_close_pipe;
  47.     vio->peer_addr =vio_peer_addr;
  48.     vio->in_addr =vio_in_addr;
  49.     vio->vioblocking =vio_blocking;
  50.     vio->is_blocking =vio_is_blocking;
  51.     vio->timeout =vio_ignore_timeout;
  52.   }
  53.   else /* default is VIO_TYPE_TCPIP */
  54. #endif
  55. #ifdef HAVE_SMEM 
  56.   if (type == VIO_TYPE_SHARED_MEMORY)
  57.   {
  58.     vio->viodelete =vio_delete;
  59.     vio->vioerrno =vio_errno;
  60.     vio->read           =vio_read_shared_memory;
  61.     vio->write          =vio_write_shared_memory;
  62.     vio->fastsend =vio_fastsend;
  63.     vio->viokeepalive =vio_keepalive;
  64.     vio->should_retry =vio_should_retry;
  65.     vio->was_interrupted=vio_was_interrupted;
  66.     vio->vioclose =vio_close_shared_memory;
  67.     vio->peer_addr =vio_peer_addr;
  68.     vio->in_addr =vio_in_addr;
  69.     vio->vioblocking =vio_blocking;
  70.     vio->is_blocking =vio_is_blocking;
  71.     vio->timeout =vio_ignore_timeout;
  72.   }
  73.   else
  74. #endif   
  75. #ifdef HAVE_OPENSSL 
  76.   if (type == VIO_TYPE_SSL)
  77.   {
  78.     vio->viodelete =vio_delete;
  79.     vio->vioerrno =vio_ssl_errno;
  80.     vio->read =vio_ssl_read;
  81.     vio->write =vio_ssl_write;
  82.     vio->fastsend =vio_ssl_fastsend;
  83.     vio->viokeepalive =vio_ssl_keepalive;
  84.     vio->should_retry =vio_ssl_should_retry;
  85.     vio->was_interrupted=vio_ssl_was_interrupted;
  86.     vio->vioclose =vio_ssl_close;
  87.     vio->peer_addr =vio_ssl_peer_addr;
  88.     vio->in_addr =vio_ssl_in_addr;
  89.     vio->vioblocking =vio_ssl_blocking;
  90.     vio->is_blocking =vio_is_blocking;
  91.     vio->timeout =vio_ssl_timeout;
  92.   }
  93.   else /* default is VIO_TYPE_TCPIP */
  94. #endif /* HAVE_OPENSSL */
  95.   {
  96.     vio->viodelete =vio_delete;
  97.     vio->vioerrno =vio_errno;
  98.     vio->read =vio_read;
  99.     vio->write =vio_write;
  100.     vio->fastsend =vio_fastsend;
  101.     vio->viokeepalive =vio_keepalive;
  102.     vio->should_retry =vio_should_retry;
  103.     vio->was_interrupted=vio_was_interrupted;
  104.     vio->vioclose =vio_close;
  105.     vio->peer_addr =vio_peer_addr;
  106.     vio->in_addr =vio_in_addr;
  107.     vio->vioblocking =vio_blocking;
  108.     vio->is_blocking =vio_is_blocking;
  109.     vio->timeout =vio_timeout;
  110.   }
  111. #endif /* HAVE_VIO */
  112.   DBUG_VOID_RETURN;
  113. }
  114. /* Open the socket or TCP/IP connection and read the fnctl() status */
  115. Vio *vio_new(my_socket sd, enum enum_vio_type type, my_bool localhost)
  116. {
  117.   Vio *vio;
  118.   DBUG_ENTER("vio_new");
  119.   DBUG_PRINT("enter", ("sd=%d", sd));
  120.   if ((vio = (Vio*) my_malloc(sizeof(*vio),MYF(MY_WME))))
  121.   {
  122.     vio_reset(vio, type, sd, 0, localhost);
  123.     sprintf(vio->desc,
  124.     (vio->type == VIO_TYPE_SOCKET ? "socket (%d)" : "TCP/IP (%d)"),
  125.     vio->sd);
  126. #if !defined(__WIN__) && !defined(__EMX__) && !defined(OS2)
  127. #if !defined(NO_FCNTL_NONBLOCK)
  128.     /*
  129.       We call fcntl() to set the flags and then immediately read them back
  130.       to make sure that we and the system are in agreement on the state of
  131.       things.
  132.       An example of why we need to do this is FreeBSD (and apparently some
  133.       other BSD-derived systems, like Mac OS X), where the system sometimes
  134.       reports that the socket is set for non-blocking when it really will
  135.       block.
  136.     */
  137.     fcntl(sd, F_SETFL, 0);
  138.     vio->fcntl_mode= fcntl(sd, F_GETFL);
  139. #elif defined(HAVE_SYS_IOCTL_H) /* hpux */
  140.     /* Non blocking sockets doesn't work good on HPUX 11.0 */
  141.     (void) ioctl(sd,FIOSNBIO,0);
  142.     vio->fcntl_mode &= ~O_NONBLOCK;
  143. #endif
  144. #else /* !defined(__WIN__) && !defined(__EMX__) */
  145.     {
  146.       /* set to blocking mode by default */
  147.       ulong arg=0, r;
  148.       r = ioctlsocket(sd,FIONBIO,(void*) &arg);
  149.       vio->fcntl_mode &= ~O_NONBLOCK;
  150.     }
  151. #endif
  152.   }
  153.   DBUG_RETURN(vio);
  154. }
  155. #ifdef __WIN__
  156. Vio *vio_new_win32pipe(HANDLE hPipe)
  157. {
  158.   Vio *vio;
  159.   DBUG_ENTER("vio_new_handle");
  160.   if ((vio = (Vio*) my_malloc(sizeof(Vio),MYF(MY_WME))))
  161.   {
  162.     vio_reset(vio, VIO_TYPE_NAMEDPIPE, 0, hPipe, TRUE);
  163.     strmov(vio->desc, "named pipe");
  164.   }
  165.   DBUG_RETURN(vio);
  166. }
  167. #ifdef HAVE_SMEM
  168. Vio *vio_new_win32shared_memory(NET *net,HANDLE handle_file_map, HANDLE handle_map,
  169.                                 HANDLE event_server_wrote, HANDLE event_server_read,
  170.                                 HANDLE event_client_wrote, HANDLE event_client_read,
  171.                                 HANDLE event_conn_closed)
  172. {
  173.   Vio *vio;
  174.   DBUG_ENTER("vio_new_win32shared_memory");
  175.   if ((vio = (Vio*) my_malloc(sizeof(Vio),MYF(MY_WME))))
  176.   {
  177.     vio_reset(vio, VIO_TYPE_SHARED_MEMORY, 0, 0, TRUE);
  178.     vio->handle_file_map= handle_file_map;
  179.     vio->handle_map= handle_map;
  180.     vio->event_server_wrote= event_server_wrote;
  181.     vio->event_server_read= event_server_read;
  182.     vio->event_client_wrote= event_client_wrote;
  183.     vio->event_client_read= event_client_read;
  184.     vio->event_conn_closed= event_conn_closed;
  185.     vio->shared_memory_remain= 0;
  186.     vio->shared_memory_pos= handle_map;
  187.     vio->net= net;
  188.     strmov(vio->desc, "shared memory");
  189.   }
  190.   DBUG_RETURN(vio);
  191. }
  192. #endif
  193. #endif
  194. void vio_delete(Vio* vio)
  195. {
  196.   /* It must be safe to delete null pointers. */
  197.   /* This matches the semantics of C++'s delete operator. */
  198.   if (vio)
  199.   {
  200.     if (vio->type != VIO_CLOSED)
  201. #ifdef HAVE_VIO /*WAX*/
  202.       vio->vioclose(vio);
  203. #else
  204.       vio_close(vio);
  205. #endif
  206.     my_free((gptr) vio,MYF(0));
  207.   }
  208. }