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