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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 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.   This file is included by both libmysql.c (the MySQL client C API)
  15.   and the mysqld server to connect to another MYSQL server.
  16.   The differences for the two cases are:
  17.   - Things that only works for the client:
  18.   - Trying to automaticly determinate user name if not supplied to
  19.     mysql_real_connect()
  20.   - Support for reading local file with LOAD DATA LOCAL
  21.   - SHARED memory handling
  22.   - Protection against sigpipe
  23.   - Prepared statements
  24.   
  25.   - Things that only works for the server
  26.   - Alarm handling on connect
  27.   
  28.   In all other cases, the code should be idential for the client and
  29.   server.
  30. */ 
  31. #include <my_global.h>
  32. #include "mysql.h"
  33. /* Remove client convenience wrappers */
  34. #undef max_allowed_packet
  35. #undef net_buffer_length
  36. #ifdef EMBEDDED_LIBRARY
  37. #undef MYSQL_SERVER
  38. #ifndef MYSQL_CLIENT
  39. #define MYSQL_CLIENT
  40. #endif
  41. #define CLI_MYSQL_REAL_CONNECT cli_mysql_real_connect
  42. #undef net_flush
  43. my_bool net_flush(NET *net);
  44. #else  /*EMBEDDED_LIBRARY*/
  45. #define CLI_MYSQL_REAL_CONNECT mysql_real_connect
  46. #endif /*EMBEDDED_LIBRARY*/
  47. #include <my_sys.h>
  48. #include <mysys_err.h>
  49. #include <m_string.h>
  50. #include <m_ctype.h>
  51. #include "mysql_version.h"
  52. #include "mysqld_error.h"
  53. #include "errmsg.h"
  54. #include <violite.h>
  55. #if defined(THREAD) && !defined(__WIN__)
  56. #include <my_pthread.h> /* because of signal() */
  57. #endif /* defined(THREAD) && !defined(__WIN__) */
  58. #if defined(OS2) && defined(MYSQL_SERVER)
  59. #undef  ER
  60. #define ER CER
  61. #endif /* defined( OS2) && defined(MYSQL_SERVER) */
  62. #include <sys/stat.h>
  63. #include <signal.h>
  64. #include <time.h>
  65. #ifdef  HAVE_PWD_H
  66. #include <pwd.h>
  67. #endif
  68. #if !defined(MSDOS) && !defined(__WIN__)
  69. #include <sys/socket.h>
  70. #include <netinet/in.h>
  71. #include <arpa/inet.h>
  72. #include <netdb.h>
  73. #ifdef HAVE_SELECT_H
  74. #  include <select.h>
  75. #endif
  76. #ifdef HAVE_SYS_SELECT_H
  77. #include <sys/select.h>
  78. #endif
  79. #endif /*!defined(MSDOS) && !defined(__WIN__) */
  80. #ifdef HAVE_SYS_UN_H
  81. #  include <sys/un.h>
  82. #endif
  83. #ifndef INADDR_NONE
  84. #define INADDR_NONE -1
  85. #endif
  86. #if defined(MSDOS) || defined(__WIN__)
  87. #define perror(A)
  88. #else
  89. #include <errno.h>
  90. #define SOCKET_ERROR -1
  91. #endif
  92. #ifdef __WIN__
  93. #define CONNECT_TIMEOUT 20
  94. #else
  95. #define CONNECT_TIMEOUT 0
  96. #endif
  97. #include "client_settings.h"
  98. #include <sql_common.h>
  99. uint mysql_port=0;
  100. char *mysql_unix_port= 0;
  101. const char *unknown_sqlstate= "HY000";
  102. const char *not_error_sqlstate= "00000";
  103. #ifdef HAVE_SMEM
  104. char  *shared_memory_base_name= 0;
  105. const char  *def_shared_memory_base_name= default_shared_memory_base_name;
  106. #endif
  107. static void mysql_close_free_options(MYSQL *mysql);
  108. static void mysql_close_free(MYSQL *mysql);
  109. #if !(defined(__WIN__) || defined(OS2) || defined(__NETWARE__))
  110. static int wait_for_data(my_socket fd, uint timeout);
  111. #endif
  112. /****************************************************************************
  113.   A modified version of connect().  my_connect() allows you to specify
  114.   a timeout value, in seconds, that we should wait until we
  115.   derermine we can't connect to a particular host.  If timeout is 0,
  116.   my_connect() will behave exactly like connect().
  117.   Base version coded by Steve Bernacki, Jr. <steve@navinet.net>
  118. *****************************************************************************/
  119. int my_connect(my_socket fd, const struct sockaddr *name, uint namelen,
  120.        uint timeout)
  121. {
  122. #if defined(__WIN__) || defined(OS2) || defined(__NETWARE__)
  123.   return connect(fd, (struct sockaddr*) name, namelen);
  124. #else
  125.   int flags, res, s_err;
  126.   /*
  127.     If they passed us a timeout of zero, we should behave
  128.     exactly like the normal connect() call does.
  129.   */
  130.   if (timeout == 0)
  131.     return connect(fd, (struct sockaddr*) name, namelen);
  132.   flags = fcntl(fd, F_GETFL, 0);   /* Set socket to not block */
  133. #ifdef O_NONBLOCK
  134.   fcntl(fd, F_SETFL, flags | O_NONBLOCK);  /* and save the flags..  */
  135. #endif
  136.   res= connect(fd, (struct sockaddr*) name, namelen);
  137.   s_err= errno; /* Save the error... */
  138.   fcntl(fd, F_SETFL, flags);
  139.   if ((res != 0) && (s_err != EINPROGRESS))
  140.   {
  141.     errno= s_err; /* Restore it */
  142.     return(-1);
  143.   }
  144.   if (res == 0) /* Connected quickly! */
  145.     return(0);
  146.   return wait_for_data(fd, timeout);
  147. #endif
  148. }
  149. /*
  150.   Wait up to timeout seconds for a connection to be established.
  151.   We prefer to do this with poll() as there is no limitations with this.
  152.   If not, we will use select()
  153. */
  154. #if !(defined(__WIN__) || defined(OS2) || defined(__NETWARE__))
  155. static int wait_for_data(my_socket fd, uint timeout)
  156. {
  157. #ifdef HAVE_POLL
  158.   struct pollfd ufds;
  159.   int res;
  160.   ufds.fd= fd;
  161.   ufds.events= POLLIN | POLLPRI;
  162.   if (!(res= poll(&ufds, 1, (int) timeout*1000)))
  163.   {
  164.     errno= EINTR;
  165.     return -1;
  166.   }
  167.   if (res < 0 || !(ufds.revents & (POLLIN | POLLPRI)))
  168.     return -1;
  169.   return 0;
  170. #else
  171.   SOCKOPT_OPTLEN_TYPE s_err_size = sizeof(uint);
  172.   fd_set sfds;
  173.   struct timeval tv;
  174.   time_t start_time, now_time;
  175.   int res, s_err;
  176.   if (fd >= FD_SETSIZE) /* Check if wrong error */
  177.     return 0; /* Can't use timeout */
  178.   /*
  179.     Our connection is "in progress."  We can use the select() call to wait
  180.     up to a specified period of time for the connection to suceed.
  181.     If select() returns 0 (after waiting howevermany seconds), our socket
  182.     never became writable (host is probably unreachable.)  Otherwise, if
  183.     select() returns 1, then one of two conditions exist:
  184.    
  185.     1. An error occured.  We use getsockopt() to check for this.
  186.     2. The connection was set up sucessfully: getsockopt() will
  187.     return 0 as an error.
  188.    
  189.     Thanks goes to Andrew Gierth <andrew@erlenstar.demon.co.uk>
  190.     who posted this method of timing out a connect() in
  191.     comp.unix.programmer on August 15th, 1997.
  192.   */
  193.   FD_ZERO(&sfds);
  194.   FD_SET(fd, &sfds);
  195.   /*
  196.     select could be interrupted by a signal, and if it is, 
  197.     the timeout should be adjusted and the select restarted
  198.     to work around OSes that don't restart select and 
  199.     implementations of select that don't adjust tv upon
  200.     failure to reflect the time remaining
  201.    */
  202.   start_time = time(NULL);
  203.   for (;;)
  204.   {
  205.     tv.tv_sec = (long) timeout;
  206.     tv.tv_usec = 0;
  207. #if defined(HPUX10) && defined(THREAD)
  208.     if ((res = select(fd+1, NULL, (int*) &sfds, NULL, &tv)) > 0)
  209.       break;
  210. #else
  211.     if ((res = select(fd+1, NULL, &sfds, NULL, &tv)) > 0)
  212.       break;
  213. #endif
  214.     if (res == 0) /* timeout */
  215.       return -1;
  216.     now_time=time(NULL);
  217.     timeout-= (uint) (now_time - start_time);
  218.     if (errno != EINTR || (int) timeout <= 0)
  219.       return -1;
  220.   }
  221.   /*
  222.     select() returned something more interesting than zero, let's
  223.     see if we have any errors.  If the next two statements pass,
  224.     we've got an open socket!
  225.   */
  226.   s_err=0;
  227.   if (getsockopt(fd, SOL_SOCKET, SO_ERROR, (char*) &s_err, &s_err_size) != 0)
  228.     return(-1);
  229.   if (s_err)
  230.   { /* getsockopt could succeed */
  231.     errno = s_err;
  232.     return(-1); /* but return an error... */
  233.   }
  234.   return (0); /* ok */
  235. #endif /* HAVE_POLL */
  236. }
  237. #endif /* defined(__WIN__) || defined(OS2) || defined(__NETWARE__) */
  238. /*
  239.   Create a named pipe connection
  240. */
  241. #ifdef __WIN__
  242. HANDLE create_named_pipe(NET *net, uint connect_timeout, char **arg_host,
  243.  char **arg_unix_socket)
  244. {
  245.   HANDLE hPipe=INVALID_HANDLE_VALUE;
  246.   char pipe_name[1024];
  247.   DWORD dwMode;
  248.   int i;
  249.   my_bool testing_named_pipes=0;
  250.   char *host= *arg_host, *unix_socket= *arg_unix_socket;
  251.   if ( ! unix_socket || (unix_socket)[0] == 0x00)
  252.     unix_socket = mysql_unix_port;
  253.   if (!host || !strcmp(host,LOCAL_HOST))
  254.     host=LOCAL_HOST_NAMEDPIPE;
  255.   
  256.   pipe_name[sizeof(pipe_name)-1]= 0; /* Safety if too long string */
  257.   strxnmov(pipe_name, sizeof(pipe_name)-1, "\\", host, "\pipe\",
  258.    unix_socket, NullS);
  259.   DBUG_PRINT("info",("Server name: '%s'.  Named Pipe: %s", host, unix_socket));
  260.   for (i=0 ; i < 100 ; i++) /* Don't retry forever */
  261.   {
  262.     if ((hPipe = CreateFile(pipe_name,
  263.     GENERIC_READ | GENERIC_WRITE,
  264.     0,
  265.     NULL,
  266.     OPEN_EXISTING,
  267.     0,
  268.     NULL )) != INVALID_HANDLE_VALUE)
  269.       break;
  270.     if (GetLastError() != ERROR_PIPE_BUSY)
  271.     {
  272.       net->last_errno=CR_NAMEDPIPEOPEN_ERROR;
  273.       strmov(net->sqlstate, unknown_sqlstate);
  274.       my_snprintf(net->last_error, sizeof(net->last_error)-1,
  275.                   ER(net->last_errno), host, unix_socket,
  276.           (ulong) GetLastError());
  277.       return INVALID_HANDLE_VALUE;
  278.     }
  279.     /* wait for for an other instance */
  280.     if (! WaitNamedPipe(pipe_name, connect_timeout*1000) )
  281.     {
  282.       net->last_errno=CR_NAMEDPIPEWAIT_ERROR;
  283.       strmov(net->sqlstate, unknown_sqlstate);
  284.       my_snprintf(net->last_error, sizeof(net->last_error)-1,
  285.                   ER(net->last_errno), host, unix_socket,
  286.           (ulong) GetLastError());
  287.       return INVALID_HANDLE_VALUE;
  288.     }
  289.   }
  290.   if (hPipe == INVALID_HANDLE_VALUE)
  291.   {
  292.     net->last_errno=CR_NAMEDPIPEOPEN_ERROR;
  293.     strmov(net->sqlstate, unknown_sqlstate);
  294.     my_snprintf(net->last_error, sizeof(net->last_error)-1,
  295.                 ER(net->last_errno), host, unix_socket,
  296.         (ulong) GetLastError());
  297.     return INVALID_HANDLE_VALUE;
  298.   }
  299.   dwMode = PIPE_READMODE_BYTE | PIPE_WAIT;
  300.   if ( !SetNamedPipeHandleState(hPipe, &dwMode, NULL, NULL) )
  301.   {
  302.     CloseHandle( hPipe );
  303.     net->last_errno=CR_NAMEDPIPESETSTATE_ERROR;
  304.     strmov(net->sqlstate, unknown_sqlstate);
  305.     my_snprintf(net->last_error, sizeof(net->last_error)-1,
  306.                 ER(net->last_errno),host, unix_socket,
  307.         (ulong) GetLastError());
  308.     return INVALID_HANDLE_VALUE;
  309.   }
  310.   *arg_host=host ; *arg_unix_socket=unix_socket; /* connect arg */
  311.   return (hPipe);
  312. }
  313. #endif
  314. /*
  315.   Create new shared memory connection, return handler of connection
  316.   SYNOPSIS
  317.     create_shared_memory()
  318.     mysql Pointer of mysql structure
  319.     net Pointer of net structure
  320.     connect_timeout Timeout of connection
  321. */
  322. #ifdef HAVE_SMEM
  323. HANDLE create_shared_memory(MYSQL *mysql,NET *net, uint connect_timeout)
  324. {
  325.   ulong smem_buffer_length = shared_memory_buffer_length + 4;
  326.   /*
  327.     event_connect_request is event object for start connection actions
  328.     event_connect_answer is event object for confirm, that server put data
  329.     handle_connect_file_map is file-mapping object, use for create shared
  330.     memory
  331.     handle_connect_map is pointer on shared memory
  332.     handle_map is pointer on shared memory for client
  333.     event_server_wrote,
  334.     event_server_read,
  335.     event_client_wrote,
  336.     event_client_read are events for transfer data between server and client
  337.     handle_file_map is file-mapping object, use for create shared memory
  338.   */
  339.   HANDLE event_connect_request = NULL;
  340.   HANDLE event_connect_answer = NULL;
  341.   HANDLE handle_connect_file_map = NULL;
  342.   char *handle_connect_map = NULL;
  343.   char *handle_map = NULL;
  344.   HANDLE event_server_wrote = NULL;
  345.   HANDLE event_server_read = NULL;
  346.   HANDLE event_client_wrote = NULL;
  347.   HANDLE event_client_read = NULL;
  348.   HANDLE event_conn_closed = NULL;
  349.   HANDLE handle_file_map = NULL;
  350.   ulong connect_number;
  351.   char connect_number_char[22], *p;
  352.   char tmp[64];
  353.   char *suffix_pos;
  354.   DWORD error_allow = 0;
  355.   DWORD error_code = 0;
  356.   DWORD event_access_rights= SYNCHRONIZE | EVENT_MODIFY_STATE;
  357.   char *shared_memory_base_name = mysql->options.shared_memory_base_name;
  358.   /*
  359.     The name of event and file-mapping events create agree next rule:
  360.     shared_memory_base_name+unique_part
  361.     Where:
  362.     shared_memory_base_name is unique value for each server
  363.     unique_part is uniquel value for each object (events and file-mapping)
  364.   */
  365.   suffix_pos = strxmov(tmp,shared_memory_base_name,"_",NullS);
  366.   strmov(suffix_pos, "CONNECT_REQUEST");
  367.   if (!(event_connect_request= OpenEvent(event_access_rights, FALSE, tmp)))
  368.   {
  369.     error_allow = CR_SHARED_MEMORY_CONNECT_REQUEST_ERROR;
  370.     goto err;
  371.   }
  372.   strmov(suffix_pos, "CONNECT_ANSWER");
  373.   if (!(event_connect_answer= OpenEvent(event_access_rights,FALSE,tmp)))
  374.   {
  375.     error_allow = CR_SHARED_MEMORY_CONNECT_ANSWER_ERROR;
  376.     goto err;
  377.   }
  378.   strmov(suffix_pos, "CONNECT_DATA");
  379.   if (!(handle_connect_file_map= OpenFileMapping(FILE_MAP_WRITE,FALSE,tmp)))
  380.   {
  381.     error_allow = CR_SHARED_MEMORY_CONNECT_FILE_MAP_ERROR;
  382.     goto err;
  383.   }
  384.   if (!(handle_connect_map= MapViewOfFile(handle_connect_file_map,
  385.   FILE_MAP_WRITE,0,0,sizeof(DWORD))))
  386.   {
  387.     error_allow = CR_SHARED_MEMORY_CONNECT_MAP_ERROR;
  388.     goto err;
  389.   }
  390.   /* Send to server request of connection */
  391.   if (!SetEvent(event_connect_request))
  392.   {
  393.     error_allow = CR_SHARED_MEMORY_CONNECT_SET_ERROR;
  394.     goto err;
  395.   }
  396.   /* Wait of answer from server */
  397.   if (WaitForSingleObject(event_connect_answer,connect_timeout*1000) !=
  398.       WAIT_OBJECT_0)
  399.   {
  400.     error_allow = CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR;
  401.     goto err;
  402.   }
  403.   /* Get number of connection */
  404.   connect_number = uint4korr(handle_connect_map);/*WAX2*/
  405.   p= int10_to_str(connect_number, connect_number_char, 10);
  406.   /*
  407.     The name of event and file-mapping events create agree next rule:
  408.     shared_memory_base_name+unique_part+number_of_connection
  409.     Where:
  410.     shared_memory_base_name is uniquel value for each server
  411.     unique_part is uniquel value for each object (events and file-mapping)
  412.     number_of_connection is number of connection between server and client
  413.   */
  414.   suffix_pos = strxmov(tmp,shared_memory_base_name,"_",connect_number_char,
  415.        "_",NullS);
  416.   strmov(suffix_pos, "DATA");
  417.   if ((handle_file_map = OpenFileMapping(FILE_MAP_WRITE,FALSE,tmp)) == NULL)
  418.   {
  419.     error_allow = CR_SHARED_MEMORY_FILE_MAP_ERROR;
  420.     goto err2;
  421.   }
  422.   if ((handle_map = MapViewOfFile(handle_file_map,FILE_MAP_WRITE,0,0,
  423.   smem_buffer_length)) == NULL)
  424.   {
  425.     error_allow = CR_SHARED_MEMORY_MAP_ERROR;
  426.     goto err2;
  427.   }
  428.   strmov(suffix_pos, "SERVER_WROTE");
  429.   if ((event_server_wrote = OpenEvent(event_access_rights,FALSE,tmp)) == NULL)
  430.   {
  431.     error_allow = CR_SHARED_MEMORY_EVENT_ERROR;
  432.     goto err2;
  433.   }
  434.   strmov(suffix_pos, "SERVER_READ");
  435.   if ((event_server_read = OpenEvent(event_access_rights,FALSE,tmp)) == NULL)
  436.   {
  437.     error_allow = CR_SHARED_MEMORY_EVENT_ERROR;
  438.     goto err2;
  439.   }
  440.   strmov(suffix_pos, "CLIENT_WROTE");
  441.   if ((event_client_wrote = OpenEvent(event_access_rights,FALSE,tmp)) == NULL)
  442.   {
  443.     error_allow = CR_SHARED_MEMORY_EVENT_ERROR;
  444.     goto err2;
  445.   }
  446.   strmov(suffix_pos, "CLIENT_READ");
  447.   if ((event_client_read = OpenEvent(event_access_rights,FALSE,tmp)) == NULL)
  448.   {
  449.     error_allow = CR_SHARED_MEMORY_EVENT_ERROR;
  450.     goto err2;
  451.   }
  452.   strmov(suffix_pos, "CONNECTION_CLOSED");
  453.   if ((event_conn_closed = OpenEvent(event_access_rights,FALSE,tmp)) == NULL)
  454.   {
  455.     error_allow = CR_SHARED_MEMORY_EVENT_ERROR;
  456.     goto err2;
  457.   }
  458.   /*
  459.     Set event that server should send data
  460.   */
  461.   SetEvent(event_server_read);
  462. err2:
  463.   if (error_allow == 0)
  464.   {
  465.     net->vio= vio_new_win32shared_memory(net,handle_file_map,handle_map,
  466.                                          event_server_wrote,
  467.                                          event_server_read,event_client_wrote,
  468.                                          event_client_read,event_conn_closed);
  469.   }
  470.   else
  471.   {
  472.     error_code = GetLastError();
  473.     if (event_server_read)
  474.       CloseHandle(event_server_read);
  475.     if (event_server_wrote)
  476.       CloseHandle(event_server_wrote);
  477.     if (event_client_read)
  478.       CloseHandle(event_client_read);
  479.     if (event_client_wrote)
  480.       CloseHandle(event_client_wrote);
  481.     if (event_conn_closed)
  482.       CloseHandle(event_conn_closed);
  483.     if (handle_map)
  484.       UnmapViewOfFile(handle_map);
  485.     if (handle_file_map)
  486.       CloseHandle(handle_file_map);
  487.   }
  488. err:
  489.   if (error_allow)
  490.     error_code = GetLastError();
  491.   if (event_connect_request)
  492.     CloseHandle(event_connect_request);
  493.   if (event_connect_answer)
  494.     CloseHandle(event_connect_answer);
  495.   if (handle_connect_map)
  496.     UnmapViewOfFile(handle_connect_map);
  497.   if (handle_connect_file_map)
  498.     CloseHandle(handle_connect_file_map);
  499.   if (error_allow)
  500.   {
  501.     net->last_errno=error_allow;
  502.     strmov(net->sqlstate, unknown_sqlstate);
  503.     if (error_allow == CR_SHARED_MEMORY_EVENT_ERROR)
  504.       my_snprintf(net->last_error,sizeof(net->last_error)-1,
  505.                   ER(net->last_errno),suffix_pos,error_code);
  506.     else
  507.       my_snprintf(net->last_error,sizeof(net->last_error)-1,
  508.                   ER(net->last_errno),error_code);
  509.     return(INVALID_HANDLE_VALUE);
  510.   }
  511.   return(handle_map);
  512. }
  513. #endif
  514. /*****************************************************************************
  515.   Read a packet from server. Give error message if socket was down
  516.   or packet is an error message
  517. *****************************************************************************/
  518. ulong
  519. net_safe_read(MYSQL *mysql)
  520. {
  521.   NET *net= &mysql->net;
  522.   ulong len=0;
  523.   init_sigpipe_variables
  524.   /* Don't give sigpipe errors if the client doesn't want them */
  525.   set_sigpipe(mysql);
  526.   if (net->vio != 0)
  527.     len=my_net_read(net);
  528.   reset_sigpipe(mysql);
  529.   if (len == packet_error || len == 0)
  530.   {
  531.     DBUG_PRINT("error",("Wrong connection or packet. fd: %s  len: %d",
  532. vio_description(net->vio),len));
  533. #ifdef MYSQL_SERVER
  534.     if (vio_was_interrupted(net->vio))
  535.       return (packet_error);
  536. #endif /*MYSQL_SERVER*/
  537.     end_server(mysql);
  538.     set_mysql_error(mysql, net->last_errno == ER_NET_PACKET_TOO_LARGE ?
  539.                     CR_NET_PACKET_TOO_LARGE: CR_SERVER_LOST, unknown_sqlstate);
  540.     return (packet_error);
  541.   }
  542.   if (net->read_pos[0] == 255)
  543.   {
  544.     if (len > 3)
  545.     {
  546.       char *pos=(char*) net->read_pos+1;
  547.       net->last_errno=uint2korr(pos);
  548.       pos+=2;
  549.       len-=2;
  550.       if (protocol_41(mysql) && pos[0] == '#')
  551.       {
  552. strmake(net->sqlstate, pos+1, SQLSTATE_LENGTH);
  553. pos+= SQLSTATE_LENGTH+1;
  554.       }
  555.       (void) strmake(net->last_error,(char*) pos,
  556.      min((uint) len,(uint) sizeof(net->last_error)-1));
  557.     }
  558.     else
  559.       set_mysql_error(mysql, CR_UNKNOWN_ERROR, unknown_sqlstate);
  560.     DBUG_PRINT("error",("Got error: %d/%s (%s)",
  561. net->last_errno, net->sqlstate, net->last_error));
  562.     return(packet_error);
  563.   }
  564.   return len;
  565. }
  566. void free_rows(MYSQL_DATA *cur)
  567. {
  568.   if (cur)
  569.   {
  570.     free_root(&cur->alloc,MYF(0));
  571.     my_free((gptr) cur,MYF(0));
  572.   }
  573. }
  574. my_bool
  575. cli_advanced_command(MYSQL *mysql, enum enum_server_command command,
  576.      const char *header, ulong header_length,
  577.      const char *arg, ulong arg_length, my_bool skip_check)
  578. {
  579.   NET *net= &mysql->net;
  580.   my_bool result= 1;
  581.   init_sigpipe_variables
  582.   /* Don't give sigpipe errors if the client doesn't want them */
  583.   set_sigpipe(mysql);
  584.   if (mysql->net.vio == 0)
  585.   { /* Do reconnect if possible */
  586.     if (mysql_reconnect(mysql))
  587.       return 1;
  588.   }
  589.   if (mysql->status != MYSQL_STATUS_READY)
  590.   {
  591.     set_mysql_error(mysql, CR_COMMANDS_OUT_OF_SYNC, unknown_sqlstate);
  592.     return 1;
  593.   }
  594.   net->last_error[0]=0;
  595.   net->last_errno= 0;
  596.   strmov(net->sqlstate, not_error_sqlstate);
  597.   mysql->net.report_error=0;
  598.   mysql->info=0;
  599.   mysql->affected_rows= ~(my_ulonglong) 0;
  600.   net_clear(&mysql->net); /* Clear receive buffer */
  601.   if (net_write_command(net,(uchar) command, header, header_length,
  602. arg, arg_length))
  603.   {
  604.     DBUG_PRINT("error",("Can't send command to server. Error: %d",
  605. socket_errno));
  606.     if (net->last_errno == ER_NET_PACKET_TOO_LARGE)
  607.     {
  608.       net->last_errno=CR_NET_PACKET_TOO_LARGE;
  609.       strmov(net->last_error,ER(net->last_errno));
  610.       goto end;
  611.     }
  612.     end_server(mysql);
  613.     if (mysql_reconnect(mysql))
  614.       goto end;
  615.     if (net_write_command(net,(uchar) command, header, header_length,
  616.   arg, arg_length))
  617.     {
  618.       net->last_errno=CR_SERVER_GONE_ERROR;
  619.       strmov(net->last_error,ER(net->last_errno));
  620.       goto end;
  621.     }
  622.   }
  623.   result=0;
  624.   if (!skip_check)
  625.     result= ((mysql->packet_length=net_safe_read(mysql)) == packet_error ?
  626.      1 : 0);
  627. end:
  628.   reset_sigpipe(mysql);
  629.   return result;
  630. }
  631. void free_old_query(MYSQL *mysql)
  632. {
  633.   DBUG_ENTER("free_old_query");
  634.   if (mysql->fields)
  635.     free_root(&mysql->field_alloc,MYF(0));
  636.   init_alloc_root(&mysql->field_alloc,8192,0); /* Assume rowlength < 8192 */
  637.   mysql->fields= 0;
  638.   mysql->field_count= 0; /* For API */
  639.   mysql->info= 0;
  640.   DBUG_VOID_RETURN;
  641. }
  642. /*
  643.   Set the internal error message to mysql handler
  644. */
  645. void set_mysql_error(MYSQL *mysql, int errcode, const char *sqlstate)
  646. {
  647.   NET *net;
  648.   DBUG_ENTER("set_mysql_error");
  649.   DBUG_PRINT("enter", ("error :%d '%s'", errcode, ER(errcode)));
  650.   DBUG_ASSERT(mysql != 0);
  651.   net= &mysql->net;
  652.   net->last_errno= errcode;
  653.   strmov(net->last_error, ER(errcode));
  654.   strmov(net->sqlstate, sqlstate);
  655.   DBUG_VOID_RETURN;
  656. }
  657. /*
  658.   Flush result set sent from server
  659. */
  660. static void cli_flush_use_result(MYSQL *mysql)
  661. {
  662.   /* Clear the current execution status */
  663.   DBUG_ENTER("cli_flush_use_result");
  664.   DBUG_PRINT("warning",("Not all packets read, clearing them"));
  665.   for (;;)
  666.   {
  667.     ulong pkt_len;
  668.     if ((pkt_len=net_safe_read(mysql)) == packet_error)
  669.       break;
  670.     if (pkt_len <= 8 && mysql->net.read_pos[0] == 254)
  671.     {
  672.       if (protocol_41(mysql))
  673.       {
  674.         char *pos= (char*) mysql->net.read_pos + 1;
  675.         mysql->warning_count=uint2korr(pos); pos+=2;
  676.         mysql->server_status=uint2korr(pos); pos+=2;
  677.       }
  678.       break;                            /* End of data */
  679.     }
  680.   }
  681.   DBUG_VOID_RETURN;
  682. }
  683. #ifdef __WIN__
  684. static my_bool is_NT(void)
  685. {
  686.   char *os=getenv("OS");
  687.   return (os && !strcmp(os, "Windows_NT")) ? 1 : 0;
  688. }
  689. #endif
  690. #ifdef CHECK_LICENSE
  691. /*
  692.   Check server side variable 'license'.
  693.   If the variable does not exist or does not contain 'Commercial', 
  694.   we're talking to non-commercial server from commercial client.
  695.   SYNOPSIS
  696.     check_license()
  697.   RETURN VALUE
  698.     0  success
  699.    !0  network error or the server is not commercial.
  700.        Error code is saved in mysql->net.last_errno.
  701. */
  702. static int check_license(MYSQL *mysql)
  703. {
  704.   MYSQL_ROW row;
  705.   MYSQL_RES *res;
  706.   NET *net= &mysql->net;
  707.   static const char query[]= "SELECT @@license";
  708.   static const char required_license[]= STRINGIFY_ARG(LICENSE);
  709.   if (mysql_real_query(mysql, query, sizeof(query)-1))
  710.   {
  711.     if (net->last_errno == ER_UNKNOWN_SYSTEM_VARIABLE)
  712.     {
  713.       net->last_errno= CR_WRONG_LICENSE;
  714.       my_snprintf(net->last_error, sizeof(net->last_error)-1,
  715.                   ER(net->last_errno), required_license);
  716.     }
  717.     return 1;
  718.   }
  719.   if (!(res= mysql_use_result(mysql)))
  720.     return 1;
  721.   row= mysql_fetch_row(res);
  722.   /* 
  723.     If no rows in result set, or column value is NULL (none of these
  724.     two is ever true for server variables now), or column value
  725.     mismatch, set wrong license error.
  726.   */
  727.   if (!net->last_errno &&
  728.       (!row || !row[0] ||
  729.        strncmp(row[0], required_license, sizeof(required_license))))
  730.   {
  731.     net->last_errno= CR_WRONG_LICENSE;
  732.     my_snprintf(net->last_error, sizeof(net->last_error)-1,
  733.                 ER(net->last_errno), required_license);
  734.   }
  735.   mysql_free_result(res);
  736.   return net->last_errno;
  737. }
  738. #endif /* CHECK_LICENSE */
  739. /**************************************************************************
  740.   Shut down connection
  741. **************************************************************************/
  742. void end_server(MYSQL *mysql)
  743. {
  744.   DBUG_ENTER("end_server");
  745.   if (mysql->net.vio != 0)
  746.   {
  747.     init_sigpipe_variables
  748.     DBUG_PRINT("info",("Net: %s", vio_description(mysql->net.vio)));
  749.     set_sigpipe(mysql);
  750.     vio_delete(mysql->net.vio);
  751.     reset_sigpipe(mysql);
  752.     mysql->net.vio= 0;          /* Marker */
  753.   }
  754.   net_end(&mysql->net);
  755.   free_old_query(mysql);
  756.   DBUG_VOID_RETURN;
  757. }
  758. void STDCALL
  759. mysql_free_result(MYSQL_RES *result)
  760. {
  761.   DBUG_ENTER("mysql_free_result");
  762.   DBUG_PRINT("enter",("mysql_res: %lx",result));
  763.   if (result)
  764.   {
  765.     MYSQL *mysql= result->handle;
  766.     if (mysql)
  767.     {
  768.       if (mysql->unbuffered_fetch_owner == &result->unbuffered_fetch_cancelled)
  769.         mysql->unbuffered_fetch_owner= 0;
  770.       if (mysql->status == MYSQL_STATUS_USE_RESULT)
  771.       {
  772.         (*mysql->methods->flush_use_result)(mysql);
  773.         mysql->status=MYSQL_STATUS_READY;
  774.       }
  775.     }
  776.     free_rows(result->data);
  777.     if (result->fields)
  778.       free_root(&result->field_alloc,MYF(0));
  779.     if (result->row)
  780.       my_free((gptr) result->row,MYF(0));
  781.     my_free((gptr) result,MYF(0));
  782.   }
  783.   DBUG_VOID_RETURN;
  784. }
  785. /****************************************************************************
  786.   Get options from my.cnf
  787. ****************************************************************************/
  788. static const char *default_options[]=
  789. {
  790.   "port","socket","compress","password","pipe", "timeout", "user",
  791.   "init-command", "host", "database", "debug", "return-found-rows",
  792.   "ssl-key" ,"ssl-cert" ,"ssl-ca" ,"ssl-capath",
  793.   "character-sets-dir", "default-character-set", "interactive-timeout",
  794.   "connect-timeout", "local-infile", "disable-local-infile",
  795.   "replication-probe", "enable-reads-from-master", "repl-parse-query",
  796.   "ssl-cipher", "max-allowed-packet", "protocol", "shared-memory-base-name",
  797.   "multi-results", "multi-statements", "multi-queries", "secure-auth",
  798.   NullS
  799. };
  800. static TYPELIB option_types={array_elements(default_options)-1,
  801.      "options",default_options, NULL};
  802. const char *sql_protocol_names_lib[] =
  803. { "TCP", "SOCKET", "PIPE", "MEMORY", NullS };
  804. TYPELIB sql_protocol_typelib = {array_elements(sql_protocol_names_lib)-1,"",
  805. sql_protocol_names_lib, NULL};
  806. static int add_init_command(struct st_mysql_options *options, const char *cmd)
  807. {
  808.   char *tmp;
  809.   if (!options->init_commands)
  810.   {
  811.     options->init_commands= (DYNAMIC_ARRAY*)my_malloc(sizeof(DYNAMIC_ARRAY),
  812.       MYF(MY_WME));
  813.     init_dynamic_array(options->init_commands,sizeof(char*),0,5 CALLER_INFO);
  814.   }
  815.   if (!(tmp= my_strdup(cmd,MYF(MY_WME))) ||
  816.       insert_dynamic(options->init_commands, (gptr)&tmp))
  817.   {
  818.     my_free(tmp, MYF(MY_ALLOW_ZERO_PTR));
  819.     return 1;
  820.   }
  821.   return 0;
  822. }
  823. void mysql_read_default_options(struct st_mysql_options *options,
  824. const char *filename,const char *group)
  825. {
  826.   int argc;
  827.   char *argv_buff[1],**argv;
  828.   const char *groups[3];
  829.   DBUG_ENTER("mysql_read_default_options");
  830.   DBUG_PRINT("enter",("file: %s  group: %s",filename,group ? group :"NULL"));
  831.   argc=1; argv=argv_buff; argv_buff[0]= (char*) "client";
  832.   groups[0]= (char*) "client"; groups[1]= (char*) group; groups[2]=0;
  833.   load_defaults(filename, groups, &argc, &argv);
  834.   if (argc != 1) /* If some default option */
  835.   {
  836.     char **option=argv;
  837.     while (*++option)
  838.     {
  839.       /* DBUG_PRINT("info",("option: %s",option[0])); */
  840.       if (option[0][0] == '-' && option[0][1] == '-')
  841.       {
  842. char *end=strcend(*option,'=');
  843. char *opt_arg=0;
  844. if (*end)
  845. {
  846.   opt_arg=end+1;
  847.   *end=0; /* Remove '=' */
  848. }
  849. /* Change all '_' in variable name to '-' */
  850. for (end= *option ; *(end= strcend(end,'_')) ; )
  851.   *end= '-';
  852. switch (find_type(*option+2,&option_types,2)) {
  853. case 1: /* port */
  854.   if (opt_arg)
  855.     options->port=atoi(opt_arg);
  856.   break;
  857. case 2: /* socket */
  858.   if (opt_arg)
  859.   {
  860.     my_free(options->unix_socket,MYF(MY_ALLOW_ZERO_PTR));
  861.     options->unix_socket=my_strdup(opt_arg,MYF(MY_WME));
  862.   }
  863.   break;
  864. case 3: /* compress */
  865.   options->compress=1;
  866.   options->client_flag|= CLIENT_COMPRESS;
  867.   break;
  868. case 4: /* password */
  869.   if (opt_arg)
  870.   {
  871.     my_free(options->password,MYF(MY_ALLOW_ZERO_PTR));
  872.     options->password=my_strdup(opt_arg,MYF(MY_WME));
  873.   }
  874.   break;
  875.         case 5:
  876.           options->protocol = MYSQL_PROTOCOL_PIPE;
  877. case 20: /* connect_timeout */
  878. case 6: /* timeout */
  879.   if (opt_arg)
  880.     options->connect_timeout=atoi(opt_arg);
  881.   break;
  882. case 7: /* user */
  883.   if (opt_arg)
  884.   {
  885.     my_free(options->user,MYF(MY_ALLOW_ZERO_PTR));
  886.     options->user=my_strdup(opt_arg,MYF(MY_WME));
  887.   }
  888.   break;
  889. case 8: /* init-command */
  890.   add_init_command(options,opt_arg);
  891.   break;
  892. case 9: /* host */
  893.   if (opt_arg)
  894.   {
  895.     my_free(options->host,MYF(MY_ALLOW_ZERO_PTR));
  896.     options->host=my_strdup(opt_arg,MYF(MY_WME));
  897.   }
  898.   break;
  899. case 10: /* database */
  900.   if (opt_arg)
  901.   {
  902.     my_free(options->db,MYF(MY_ALLOW_ZERO_PTR));
  903.     options->db=my_strdup(opt_arg,MYF(MY_WME));
  904.   }
  905.   break;
  906. case 11: /* debug */
  907. #ifdef MYSQL_CLIENT
  908.   mysql_debug(opt_arg ? opt_arg : "d:t:o,/tmp/client.trace");
  909.   break;
  910. #endif
  911. case 12: /* return-found-rows */
  912.   options->client_flag|=CLIENT_FOUND_ROWS;
  913.   break;
  914. #ifdef HAVE_OPENSSL
  915. case 13: /* ssl_key */
  916.   my_free(options->ssl_key, MYF(MY_ALLOW_ZERO_PTR));
  917.           options->ssl_key = my_strdup(opt_arg, MYF(MY_WME));
  918.           break;
  919. case 14: /* ssl_cert */
  920.   my_free(options->ssl_cert, MYF(MY_ALLOW_ZERO_PTR));
  921.           options->ssl_cert = my_strdup(opt_arg, MYF(MY_WME));
  922.           break;
  923. case 15: /* ssl_ca */
  924.   my_free(options->ssl_ca, MYF(MY_ALLOW_ZERO_PTR));
  925.           options->ssl_ca = my_strdup(opt_arg, MYF(MY_WME));
  926.           break;
  927. case 16: /* ssl_capath */
  928.   my_free(options->ssl_capath, MYF(MY_ALLOW_ZERO_PTR));
  929.           options->ssl_capath = my_strdup(opt_arg, MYF(MY_WME));
  930.           break;
  931. #else
  932. case 13: /* Ignore SSL options */
  933. case 14:
  934. case 15:
  935. case 16:
  936.   break;
  937. #endif /* HAVE_OPENSSL */
  938. case 17: /* charset-lib */
  939.   my_free(options->charset_dir,MYF(MY_ALLOW_ZERO_PTR));
  940.           options->charset_dir = my_strdup(opt_arg, MYF(MY_WME));
  941.   break;
  942. case 18:
  943.   my_free(options->charset_name,MYF(MY_ALLOW_ZERO_PTR));
  944.           options->charset_name = my_strdup(opt_arg, MYF(MY_WME));
  945.   break;
  946. case 19: /* Interactive-timeout */
  947.   options->client_flag|= CLIENT_INTERACTIVE;
  948.   break;
  949. case 21:
  950.   if (!opt_arg || atoi(opt_arg) != 0)
  951.     options->client_flag|= CLIENT_LOCAL_FILES;
  952.   else
  953.     options->client_flag&= ~CLIENT_LOCAL_FILES;
  954.   break;
  955. case 22:
  956.   options->client_flag&= ~CLIENT_LOCAL_FILES;
  957.           break;
  958. case 23:  /* replication probe */
  959. #ifndef TO_BE_DELETED
  960.   options->rpl_probe= 1;
  961. #endif
  962.   break;
  963. case 24: /* enable-reads-from-master */
  964.   options->no_master_reads= 0;
  965.   break;
  966. case 25: /* repl-parse-query */
  967. #ifndef TO_BE_DELETED
  968.   options->rpl_parse= 1;
  969. #endif
  970.   break;
  971. case 27:
  972.           if (opt_arg)
  973.     options->max_allowed_packet= atoi(opt_arg);
  974.   break;
  975.         case 28: /* protocol */
  976.           if ((options->protocol= find_type(opt_arg,
  977.     &sql_protocol_typelib,0)) <= 0)
  978.           {
  979.             fprintf(stderr, "Unknown option to protocol: %sn", opt_arg);
  980.             exit(1);
  981.           }
  982.           break;
  983.         case 29: /* shared_memory_base_name */
  984. #ifdef HAVE_SMEM
  985.           if (options->shared_memory_base_name != def_shared_memory_base_name)
  986.             my_free(options->shared_memory_base_name,MYF(MY_ALLOW_ZERO_PTR));
  987.           options->shared_memory_base_name=my_strdup(opt_arg,MYF(MY_WME));
  988. #endif
  989.           break;
  990. case 30:
  991.   options->client_flag|= CLIENT_MULTI_RESULTS;
  992.   break;
  993. case 31:
  994. case 32:
  995.   options->client_flag|= CLIENT_MULTI_STATEMENTS | CLIENT_MULTI_RESULTS;
  996.   break;
  997.         case 33: /* secure-auth */
  998.           options->secure_auth= TRUE;
  999.           break;
  1000. default:
  1001.   DBUG_PRINT("warning",("unknown option: %s",option[0]));
  1002. }
  1003.       }
  1004.     }
  1005.   }
  1006.   free_defaults(argv);
  1007.   DBUG_VOID_RETURN;
  1008. }
  1009. /**************************************************************************
  1010.   Get column lengths of the current row
  1011.   If one uses mysql_use_result, res->lengths contains the length information,
  1012.   else the lengths are calculated from the offset between pointers.
  1013. **************************************************************************/
  1014. static void cli_fetch_lengths(ulong *to, MYSQL_ROW column,
  1015.       unsigned int field_count)
  1016.   ulong *prev_length;
  1017.   byte *start=0;
  1018.   MYSQL_ROW end;
  1019.   prev_length=0; /* Keep gcc happy */
  1020.   for (end=column + field_count + 1 ; column != end ; column++, to++)
  1021.   {
  1022.     if (!*column)
  1023.     {
  1024.       *to= 0; /* Null */
  1025.       continue;
  1026.     }
  1027.     if (start) /* Found end of prev string */
  1028.       *prev_length= (ulong) (*column-start-1);
  1029.     start= *column;
  1030.     prev_length= to;
  1031.   }
  1032. }
  1033. /***************************************************************************
  1034.   Change field rows to field structs
  1035. ***************************************************************************/
  1036. MYSQL_FIELD *
  1037. unpack_fields(MYSQL_DATA *data,MEM_ROOT *alloc,uint fields,
  1038.       my_bool default_value, uint server_capabilities)
  1039. {
  1040.   MYSQL_ROWS *row;
  1041.   MYSQL_FIELD *field,*result;
  1042.   ulong lengths[9]; /* Max of fields */
  1043.   DBUG_ENTER("unpack_fields");
  1044.   field= result= (MYSQL_FIELD*) alloc_root(alloc,
  1045.    (uint) sizeof(*field)*fields);
  1046.   if (!result)
  1047.   {
  1048.     free_rows(data); /* Free old data */
  1049.     DBUG_RETURN(0);
  1050.   }
  1051.   bzero((char*) field, (uint) sizeof(MYSQL_FIELD)*fields);
  1052.   if (server_capabilities & CLIENT_PROTOCOL_41)
  1053.   {
  1054.     /* server is 4.1, and returns the new field result format */
  1055.     for (row=data->data; row ; row = row->next,field++)
  1056.     {
  1057.       uchar *pos;
  1058.       cli_fetch_lengths(&lengths[0], row->data, default_value ? 8 : 7);
  1059.       field->catalog  = strdup_root(alloc,(char*) row->data[0]);
  1060.       field->db       = strdup_root(alloc,(char*) row->data[1]);
  1061.       field->table    = strdup_root(alloc,(char*) row->data[2]);
  1062.       field->org_table= strdup_root(alloc,(char*) row->data[3]);
  1063.       field->name     = strdup_root(alloc,(char*) row->data[4]);
  1064.       field->org_name = strdup_root(alloc,(char*) row->data[5]);
  1065.       field->catalog_length= lengths[0];
  1066.       field->db_length= lengths[1];
  1067.       field->table_length= lengths[2];
  1068.       field->org_table_length= lengths[3];
  1069.       field->name_length= lengths[4];
  1070.       field->org_name_length= lengths[5];
  1071.       /* Unpack fixed length parts */
  1072.       pos= (uchar*) row->data[6];
  1073.       field->charsetnr= uint2korr(pos);
  1074.       field->length= (uint) uint4korr(pos+2);
  1075.       field->type= (enum enum_field_types) pos[6];
  1076.       field->flags= uint2korr(pos+7);
  1077.       field->decimals=  (uint) pos[9];
  1078.       if (INTERNAL_NUM_FIELD(field))
  1079.         field->flags|= NUM_FLAG;
  1080.       if (default_value && row->data[7])
  1081.       {
  1082.         field->def=strdup_root(alloc,(char*) row->data[7]);
  1083. field->def_length= lengths[7];
  1084.       }
  1085.       else
  1086.         field->def=0;
  1087.       field->max_length= 0;
  1088.     }
  1089.   }
  1090. #ifndef DELETE_SUPPORT_OF_4_0_PROTOCOL
  1091.   else
  1092.   {
  1093.     /* old protocol, for backward compatibility */
  1094.     for (row=data->data; row ; row = row->next,field++)
  1095.     {
  1096.       cli_fetch_lengths(&lengths[0], row->data, default_value ? 6 : 5);
  1097.       field->org_table= field->table=  strdup_root(alloc,(char*) row->data[0]);
  1098.       field->name=   strdup_root(alloc,(char*) row->data[1]);
  1099.       field->length= (uint) uint3korr(row->data[2]);
  1100.       field->type=   (enum enum_field_types) (uchar) row->data[3][0];
  1101.       field->catalog=(char*)  "";
  1102.       field->db=     (char*)  "";
  1103.       field->catalog_length= 0;
  1104.       field->db_length= 0;
  1105.       field->org_table_length= field->table_length= lengths[0];
  1106.       field->name_length= lengths[1];
  1107.       if (server_capabilities & CLIENT_LONG_FLAG)
  1108.       {
  1109.         field->flags=   uint2korr(row->data[4]);
  1110.         field->decimals=(uint) (uchar) row->data[4][2];
  1111.       }
  1112.       else
  1113.       {
  1114.         field->flags=   (uint) (uchar) row->data[4][0];
  1115.         field->decimals=(uint) (uchar) row->data[4][1];
  1116.       }
  1117.       if (INTERNAL_NUM_FIELD(field))
  1118.         field->flags|= NUM_FLAG;
  1119.       if (default_value && row->data[5])
  1120.       {
  1121.         field->def=strdup_root(alloc,(char*) row->data[5]);
  1122. field->def_length= lengths[5];
  1123.       }
  1124.       else
  1125.         field->def=0;
  1126.       field->max_length= 0;
  1127.     }
  1128.   }
  1129. #endif /* DELETE_SUPPORT_OF_4_0_PROTOCOL */
  1130.   free_rows(data); /* Free old data */
  1131.   DBUG_RETURN(result);
  1132. }
  1133. /* Read all rows (fields or data) from server */
  1134. MYSQL_DATA *cli_read_rows(MYSQL *mysql,MYSQL_FIELD *mysql_fields,
  1135.   unsigned int fields)
  1136. {
  1137.   uint field;
  1138.   ulong pkt_len;
  1139.   ulong len;
  1140.   uchar *cp;
  1141.   char *to, *end_to;
  1142.   MYSQL_DATA *result;
  1143.   MYSQL_ROWS **prev_ptr,*cur;
  1144.   NET *net = &mysql->net;
  1145.   DBUG_ENTER("cli_read_rows");
  1146.   if ((pkt_len= net_safe_read(mysql)) == packet_error)
  1147.     DBUG_RETURN(0);
  1148.   if (!(result=(MYSQL_DATA*) my_malloc(sizeof(MYSQL_DATA),
  1149.        MYF(MY_WME | MY_ZEROFILL))))
  1150.   {
  1151.     set_mysql_error(mysql, CR_OUT_OF_MEMORY, unknown_sqlstate);
  1152.     DBUG_RETURN(0);
  1153.   }
  1154.   init_alloc_root(&result->alloc,8192,0); /* Assume rowlength < 8192 */
  1155.   result->alloc.min_malloc=sizeof(MYSQL_ROWS);
  1156.   prev_ptr= &result->data;
  1157.   result->rows=0;
  1158.   result->fields=fields;
  1159.   /*
  1160.     The last EOF packet is either a single 254 character or (in MySQL 4.1)
  1161.     254 followed by 1-7 status bytes.
  1162.     This doesn't conflict with normal usage of 254 which stands for a
  1163.     string where the length of the string is 8 bytes. (see net_field_length())
  1164.   */
  1165.   while (*(cp=net->read_pos) != 254 || pkt_len >= 8)
  1166.   {
  1167.     result->rows++;
  1168.     if (!(cur= (MYSQL_ROWS*) alloc_root(&result->alloc,
  1169. sizeof(MYSQL_ROWS))) ||
  1170. !(cur->data= ((MYSQL_ROW)
  1171.       alloc_root(&result->alloc,
  1172.  (fields+1)*sizeof(char *)+pkt_len))))
  1173.     {
  1174.       free_rows(result);
  1175.       set_mysql_error(mysql, CR_OUT_OF_MEMORY, unknown_sqlstate);
  1176.       DBUG_RETURN(0);
  1177.     }
  1178.     *prev_ptr=cur;
  1179.     prev_ptr= &cur->next;
  1180.     to= (char*) (cur->data+fields+1);
  1181.     end_to=to+pkt_len-1;
  1182.     for (field=0 ; field < fields ; field++)
  1183.     {
  1184.       if ((len=(ulong) net_field_length(&cp)) == NULL_LENGTH)
  1185.       { /* null field */
  1186. cur->data[field] = 0;
  1187.       }
  1188.       else
  1189.       {
  1190. cur->data[field] = to;
  1191.         if (len > (ulong) (end_to - to))
  1192.         {
  1193.           free_rows(result);
  1194.           set_mysql_error(mysql, CR_MALFORMED_PACKET, unknown_sqlstate);
  1195.           DBUG_RETURN(0);
  1196.         }
  1197. memcpy(to,(char*) cp,len); to[len]=0;
  1198. to+=len+1;
  1199. cp+=len;
  1200. if (mysql_fields)
  1201. {
  1202.   if (mysql_fields[field].max_length < len)
  1203.     mysql_fields[field].max_length=len;
  1204. }
  1205.       }
  1206.     }
  1207.     cur->data[field]=to; /* End of last field */
  1208.     if ((pkt_len=net_safe_read(mysql)) == packet_error)
  1209.     {
  1210.       free_rows(result);
  1211.       DBUG_RETURN(0);
  1212.     }
  1213.   }
  1214.   *prev_ptr=0; /* last pointer is null */
  1215.   if (pkt_len > 1) /* MySQL 4.1 protocol */
  1216.   {
  1217.     mysql->warning_count= uint2korr(cp+1);
  1218.     mysql->server_status= uint2korr(cp+3);
  1219.     DBUG_PRINT("info",("status: %u  warning_count:  %u",
  1220.        mysql->server_status, mysql->warning_count));
  1221.   }
  1222.   DBUG_PRINT("exit",("Got %d rows",result->rows));
  1223.   DBUG_RETURN(result);
  1224. }
  1225. /*
  1226.   Read one row. Uses packet buffer as storage for fields.
  1227.   When next packet is read, the previous field values are destroyed
  1228. */
  1229. static int
  1230. read_one_row(MYSQL *mysql,uint fields,MYSQL_ROW row, ulong *lengths)
  1231. {
  1232.   uint field;
  1233.   ulong pkt_len,len;
  1234.   uchar *pos, *prev_pos, *end_pos;
  1235.   NET *net= &mysql->net;
  1236.   if ((pkt_len=net_safe_read(mysql)) == packet_error)
  1237.     return -1;
  1238.   if (pkt_len <= 8 && net->read_pos[0] == 254)
  1239.   {
  1240.     if (pkt_len > 1) /* MySQL 4.1 protocol */
  1241.     {
  1242.       mysql->warning_count= uint2korr(net->read_pos+1);
  1243.       mysql->server_status= uint2korr(net->read_pos+3);
  1244.     }
  1245.     return 1; /* End of data */
  1246.   }
  1247.   prev_pos= 0; /* allowed to write at packet[-1] */
  1248.   pos=net->read_pos;
  1249.   end_pos=pos+pkt_len;
  1250.   for (field=0 ; field < fields ; field++)
  1251.   {
  1252.     if ((len=(ulong) net_field_length(&pos)) == NULL_LENGTH)
  1253.     { /* null field */
  1254.       row[field] = 0;
  1255.       *lengths++=0;
  1256.     }
  1257.     else
  1258.     {
  1259.       if (len > (ulong) (end_pos - pos))
  1260.       {
  1261.         set_mysql_error(mysql, CR_UNKNOWN_ERROR, unknown_sqlstate);
  1262.         return -1;
  1263.       }
  1264.       row[field] = (char*) pos;
  1265.       pos+=len;
  1266.       *lengths++=len;
  1267.     }
  1268.     if (prev_pos)
  1269.       *prev_pos=0; /* Terminate prev field */
  1270.     prev_pos=pos;
  1271.   }
  1272.   row[field]=(char*) prev_pos+1; /* End of last field */
  1273.   *prev_pos=0; /* Terminate last field */
  1274.   return 0;
  1275. }
  1276. /****************************************************************************
  1277.   Init MySQL structure or allocate one
  1278. ****************************************************************************/
  1279. MYSQL * STDCALL
  1280. mysql_init(MYSQL *mysql)
  1281. {
  1282.   if (mysql_server_init(0, NULL, NULL))
  1283.     return 0;
  1284.   if (!mysql)
  1285.   {
  1286.     if (!(mysql=(MYSQL*) my_malloc(sizeof(*mysql),MYF(MY_WME | MY_ZEROFILL))))
  1287.       return 0;
  1288.     mysql->free_me=1;
  1289.   }
  1290.   else
  1291.     bzero((char*) (mysql),sizeof(*(mysql)));
  1292.   mysql->options.connect_timeout= CONNECT_TIMEOUT;
  1293.   mysql->last_used_con= mysql->next_slave= mysql->master = mysql;
  1294.   mysql->charset=default_charset_info;
  1295.   strmov(mysql->net.sqlstate, not_error_sqlstate);
  1296.   /*
  1297.     By default, we are a replication pivot. The caller must reset it
  1298.     after we return if this is not the case.
  1299.   */
  1300. #ifndef TO_BE_DELETED
  1301.   mysql->rpl_pivot = 1;
  1302. #endif
  1303.   /*
  1304.     Only enable LOAD DATA INFILE by default if configured with
  1305.     --enable-local-infile
  1306.   */
  1307. #if defined(ENABLED_LOCAL_INFILE) && !defined(MYSQL_SERVER)
  1308.   mysql->options.client_flag|= CLIENT_LOCAL_FILES;
  1309. #endif
  1310. #ifdef HAVE_SMEM
  1311.   mysql->options.shared_memory_base_name= (char*) def_shared_memory_base_name;
  1312. #endif
  1313.   mysql->options.methods_to_use= MYSQL_OPT_GUESS_CONNECTION;
  1314.   return mysql;
  1315. }
  1316. /*
  1317.   Fill in SSL part of MYSQL structure and set 'use_ssl' flag.
  1318.   NB! Errors are not reported until you do mysql_real_connect.
  1319. */
  1320. #define strdup_if_not_null(A) (A) == 0 ? 0 : my_strdup((A),MYF(MY_WME))
  1321. my_bool STDCALL
  1322. mysql_ssl_set(MYSQL *mysql __attribute__((unused)) ,
  1323.       const char *key __attribute__((unused)),
  1324.       const char *cert __attribute__((unused)),
  1325.       const char *ca __attribute__((unused)),
  1326.       const char *capath __attribute__((unused)),
  1327.       const char *cipher __attribute__((unused)))
  1328. {
  1329. #ifdef HAVE_OPENSSL
  1330.   mysql->options.ssl_key=    strdup_if_not_null(key);
  1331.   mysql->options.ssl_cert=   strdup_if_not_null(cert);
  1332.   mysql->options.ssl_ca=     strdup_if_not_null(ca);
  1333.   mysql->options.ssl_capath= strdup_if_not_null(capath);
  1334.   mysql->options.ssl_cipher= strdup_if_not_null(cipher);
  1335. #endif /* HAVE_OPENSSL */
  1336.   return 0;
  1337. }
  1338. /*
  1339.   Free strings in the SSL structure and clear 'use_ssl' flag.
  1340.   NB! Errors are not reported until you do mysql_real_connect.
  1341. */
  1342. #ifdef HAVE_OPENSSL
  1343. static void
  1344. mysql_ssl_free(MYSQL *mysql __attribute__((unused)))
  1345. {
  1346.   struct st_VioSSLConnectorFd *st= 
  1347.     (struct st_VioSSLConnectorFd*) mysql->connector_fd;
  1348.   my_free(mysql->options.ssl_key, MYF(MY_ALLOW_ZERO_PTR));
  1349.   my_free(mysql->options.ssl_cert, MYF(MY_ALLOW_ZERO_PTR));
  1350.   my_free(mysql->options.ssl_ca, MYF(MY_ALLOW_ZERO_PTR));
  1351.   my_free(mysql->options.ssl_capath, MYF(MY_ALLOW_ZERO_PTR));
  1352.   my_free(mysql->options.ssl_cipher, MYF(MY_ALLOW_ZERO_PTR));  
  1353.   if (st)
  1354.     SSL_CTX_free(st->ssl_context);
  1355.   my_free(mysql->connector_fd,MYF(MY_ALLOW_ZERO_PTR));
  1356.   mysql->options.ssl_key = 0;
  1357.   mysql->options.ssl_cert = 0;
  1358.   mysql->options.ssl_ca = 0;
  1359.   mysql->options.ssl_capath = 0;
  1360.   mysql->options.ssl_cipher= 0;
  1361.   mysql->options.use_ssl = FALSE;
  1362.   mysql->connector_fd = 0;
  1363. }
  1364. #endif /* HAVE_OPENSSL */
  1365. /*
  1366.   Note that the mysql argument must be initialized with mysql_init()
  1367.   before calling mysql_real_connect !
  1368. */
  1369. static my_bool cli_read_query_result(MYSQL *mysql);
  1370. static MYSQL_RES *cli_use_result(MYSQL *mysql);
  1371. static MYSQL_METHODS client_methods=
  1372. {
  1373.   cli_read_query_result,
  1374.   cli_advanced_command,
  1375.   cli_read_rows,
  1376.   cli_use_result,
  1377.   cli_fetch_lengths,
  1378.   cli_flush_use_result
  1379. #ifndef MYSQL_SERVER
  1380.   ,cli_list_fields,
  1381.   cli_read_prepare_result,
  1382.   cli_stmt_execute,
  1383.   cli_read_binary_rows,
  1384.   cli_unbuffered_fetch,
  1385.   NULL,
  1386.   cli_read_statistics,
  1387.   cli_read_query_result,
  1388.   cli_read_change_user_result
  1389. #endif
  1390. };
  1391. MYSQL * STDCALL 
  1392. CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user,
  1393.        const char *passwd, const char *db,
  1394.        uint port, const char *unix_socket,ulong client_flag)
  1395. {
  1396.   char buff[NAME_LEN+USERNAME_LENGTH+100];
  1397.   char *end,*host_info;
  1398.   my_socket sock;
  1399.   in_addr_t ip_addr;
  1400.   struct sockaddr_in sock_addr;
  1401.   ulong pkt_length;
  1402.   NET *net= &mysql->net;
  1403. #ifdef MYSQL_SERVER
  1404.   thr_alarm_t   alarmed;
  1405.   ALARM alarm_buff;
  1406. #endif
  1407. #ifdef __WIN__
  1408.   HANDLE hPipe=INVALID_HANDLE_VALUE;
  1409. #endif
  1410. #ifdef HAVE_SYS_UN_H
  1411.   struct sockaddr_un UNIXaddr;
  1412. #endif
  1413.   init_sigpipe_variables
  1414.   DBUG_ENTER("mysql_real_connect");
  1415.   LINT_INIT(host_info);
  1416.   DBUG_PRINT("enter",("host: %s  db: %s  user: %s",
  1417.       host ? host : "(Null)",
  1418.       db ? db : "(Null)",
  1419.       user ? user : "(Null)"));
  1420.   /* Don't give sigpipe errors if the client doesn't want them */
  1421.   set_sigpipe(mysql);
  1422.   mysql->methods= &client_methods;
  1423.   net->vio = 0; /* If something goes wrong */
  1424.   mysql->client_flag=0; /* For handshake */
  1425.   /* use default options */
  1426.   if (mysql->options.my_cnf_file || mysql->options.my_cnf_group)
  1427.   {
  1428.     mysql_read_default_options(&mysql->options,
  1429.        (mysql->options.my_cnf_file ?
  1430. mysql->options.my_cnf_file : "my"),
  1431.        mysql->options.my_cnf_group);
  1432.     my_free(mysql->options.my_cnf_file,MYF(MY_ALLOW_ZERO_PTR));
  1433.     my_free(mysql->options.my_cnf_group,MYF(MY_ALLOW_ZERO_PTR));
  1434.     mysql->options.my_cnf_file=mysql->options.my_cnf_group=0;
  1435.   }
  1436.   /* Some empty-string-tests are done because of ODBC */
  1437.   if (!host || !host[0])
  1438.     host=mysql->options.host;
  1439.   if (!user || !user[0])
  1440.   {
  1441.     user=mysql->options.user;
  1442.     if (!user)
  1443.       user= "";
  1444.   }
  1445.   if (!passwd)
  1446.   {
  1447.     passwd=mysql->options.password;
  1448. #if !defined(DONT_USE_MYSQL_PWD) && !defined(MYSQL_SERVER)
  1449.     if (!passwd)
  1450.       passwd=getenv("MYSQL_PWD"); /* get it from environment */
  1451. #endif
  1452.     if (!passwd)
  1453.       passwd= "";
  1454.   }
  1455.   if (!db || !db[0])
  1456.     db=mysql->options.db;
  1457.   if (!port)
  1458.     port=mysql->options.port;
  1459.   if (!unix_socket)
  1460.     unix_socket=mysql->options.unix_socket;
  1461.   mysql->reconnect=1; /* Reconnect as default */
  1462.   mysql->server_status=SERVER_STATUS_AUTOCOMMIT;
  1463.   /*
  1464.     Part 0: Grab a socket and connect it to the server
  1465.   */
  1466. #if defined(HAVE_SMEM)
  1467.   if ((!mysql->options.protocol ||
  1468.        mysql->options.protocol == MYSQL_PROTOCOL_MEMORY) &&
  1469.       (!host || !strcmp(host,LOCAL_HOST)))
  1470.   {
  1471.     if ((create_shared_memory(mysql,net, mysql->options.connect_timeout)) ==
  1472. INVALID_HANDLE_VALUE)
  1473.     {
  1474.       DBUG_PRINT("error",
  1475.  ("host: '%s'  socket: '%s'  shared memory: %s  have_tcpip: %d",
  1476.   host ? host : "<null>",
  1477.   unix_socket ? unix_socket : "<null>",
  1478.   (int) mysql->options.shared_memory_base_name,
  1479.   (int) have_tcpip));
  1480.       if (mysql->options.protocol == MYSQL_PROTOCOL_MEMORY)
  1481. goto error;
  1482.       /* Try also with PIPE or TCP/IP */
  1483.     }
  1484.     else
  1485.     {
  1486.       mysql->options.protocol=MYSQL_PROTOCOL_MEMORY;
  1487.       sock=0;
  1488.       unix_socket = 0;
  1489.       host=mysql->options.shared_memory_base_name;
  1490.       my_snprintf(host_info=buff, sizeof(buff)-1,
  1491.                   ER(CR_SHARED_MEMORY_CONNECTION), host);
  1492.     }
  1493.   }
  1494. #endif /* HAVE_SMEM */
  1495. #if defined(HAVE_SYS_UN_H)
  1496.   if (!net->vio &&
  1497.       (!mysql->options.protocol ||
  1498.        mysql->options.protocol == MYSQL_PROTOCOL_SOCKET) &&
  1499.       (unix_socket || mysql_unix_port) &&
  1500.       (!host || !strcmp(host,LOCAL_HOST)))
  1501.   {
  1502.     host=LOCAL_HOST;
  1503.     if (!unix_socket)
  1504.       unix_socket=mysql_unix_port;
  1505.     host_info=(char*) ER(CR_LOCALHOST_CONNECTION);
  1506.     DBUG_PRINT("info",("Using UNIX sock '%s'",unix_socket));
  1507.     if ((sock = socket(AF_UNIX,SOCK_STREAM,0)) == SOCKET_ERROR)
  1508.     {
  1509.       net->last_errno=CR_SOCKET_CREATE_ERROR;
  1510.       strmov(net->sqlstate, unknown_sqlstate);
  1511.       my_snprintf(net->last_error,sizeof(net->last_error)-1,
  1512.                   ER(net->last_errno),socket_errno);
  1513.       goto error;
  1514.     }
  1515.     net->vio = vio_new(sock, VIO_TYPE_SOCKET, TRUE);
  1516.     bzero((char*) &UNIXaddr,sizeof(UNIXaddr));
  1517.     UNIXaddr.sun_family = AF_UNIX;
  1518.     strmake(UNIXaddr.sun_path, unix_socket, sizeof(UNIXaddr.sun_path)-1);
  1519.     if (my_connect(sock,(struct sockaddr *) &UNIXaddr, sizeof(UNIXaddr),
  1520.    mysql->options.connect_timeout))
  1521.     {
  1522.       DBUG_PRINT("error",("Got error %d on connect to local server",
  1523.   socket_errno));
  1524.       net->last_errno=CR_CONNECTION_ERROR;
  1525.       strmov(net->sqlstate, unknown_sqlstate);
  1526.       my_snprintf(net->last_error,sizeof(net->last_error)-1,
  1527.                   ER(net->last_errno),unix_socket,socket_errno);
  1528.       goto error;
  1529.     }
  1530.     mysql->options.protocol=MYSQL_PROTOCOL_SOCKET;
  1531.   }
  1532. #elif defined(__WIN__)
  1533.   if (!net->vio &&
  1534.       (mysql->options.protocol == MYSQL_PROTOCOL_PIPE ||
  1535.        (host && !strcmp(host,LOCAL_HOST_NAMEDPIPE)) ||
  1536.        (! have_tcpip && (unix_socket || !host && is_NT()))))
  1537.   {
  1538.     sock=0;
  1539.     if ((hPipe=create_named_pipe(net, mysql->options.connect_timeout,
  1540.  (char**) &host, (char**) &unix_socket)) ==
  1541. INVALID_HANDLE_VALUE)
  1542.     {
  1543.       DBUG_PRINT("error",
  1544.  ("host: '%s'  socket: '%s'  have_tcpip: %d",
  1545.   host ? host : "<null>",
  1546.   unix_socket ? unix_socket : "<null>",
  1547.   (int) have_tcpip));
  1548.       if (mysql->options.protocol == MYSQL_PROTOCOL_PIPE ||
  1549.   (host && !strcmp(host,LOCAL_HOST_NAMEDPIPE)) ||
  1550.   (unix_socket && !strcmp(unix_socket,MYSQL_NAMEDPIPE)))
  1551. goto error;
  1552.       /* Try also with TCP/IP */
  1553.     }
  1554.     else
  1555.     {
  1556.       net->vio=vio_new_win32pipe(hPipe);
  1557.       my_snprintf(host_info=buff, sizeof(buff)-1,
  1558.                   ER(CR_NAMEDPIPE_CONNECTION), unix_socket);
  1559.     }
  1560.   }
  1561. #endif
  1562.   if (!net->vio &&
  1563.       (!mysql->options.protocol ||
  1564.        mysql->options.protocol == MYSQL_PROTOCOL_TCP))
  1565.   {
  1566.     unix_socket=0; /* This is not used */
  1567.     if (!port)
  1568.       port=mysql_port;
  1569.     if (!host)
  1570.       host=LOCAL_HOST;
  1571.     my_snprintf(host_info=buff,sizeof(buff)-1,ER(CR_TCP_CONNECTION),host);
  1572.     DBUG_PRINT("info",("Server name: '%s'.  TCP sock: %d", host,port));
  1573. #ifdef MYSQL_SERVER
  1574.     thr_alarm_init(&alarmed);
  1575.     thr_alarm(&alarmed, mysql->options.connect_timeout, &alarm_buff);
  1576. #endif
  1577.     /* _WIN64 ;  Assume that the (int) range is enough for socket() */
  1578.     sock = (my_socket) socket(AF_INET,SOCK_STREAM,0);
  1579. #ifdef MYSQL_SERVER
  1580.     thr_end_alarm(&alarmed);
  1581. #endif
  1582.     if (sock == SOCKET_ERROR)
  1583.     {
  1584.       net->last_errno=CR_IPSOCK_ERROR;
  1585.       strmov(net->sqlstate, unknown_sqlstate);
  1586.       my_snprintf(net->last_error,sizeof(net->last_error)-1,
  1587.                   ER(net->last_errno),socket_errno);
  1588.       goto error;
  1589.     }
  1590.     net->vio = vio_new(sock,VIO_TYPE_TCPIP,FALSE);
  1591.     bzero((char*) &sock_addr,sizeof(sock_addr));
  1592.     sock_addr.sin_family = AF_INET;
  1593.     /*
  1594.       The server name may be a host name or IP address
  1595.     */
  1596.     if ((int) (ip_addr = inet_addr(host)) != (int) INADDR_NONE)
  1597.     {
  1598.       memcpy_fixed(&sock_addr.sin_addr,&ip_addr,sizeof(ip_addr));
  1599.     }
  1600.     else
  1601.     {
  1602.       int tmp_errno;
  1603.       struct hostent tmp_hostent,*hp;
  1604.       char buff2[GETHOSTBYNAME_BUFF_SIZE];
  1605.       hp = my_gethostbyname_r(host,&tmp_hostent,buff2,sizeof(buff2),
  1606.       &tmp_errno);
  1607.       if (!hp)
  1608.       {
  1609. my_gethostbyname_r_free();
  1610. net->last_errno=CR_UNKNOWN_HOST;
  1611. strmov(net->sqlstate, unknown_sqlstate);
  1612. my_snprintf(net->last_error, sizeof(net->last_error)-1,
  1613.                     ER(CR_UNKNOWN_HOST), host, tmp_errno);
  1614. goto error;
  1615.       }
  1616.       memcpy(&sock_addr.sin_addr, hp->h_addr,
  1617.              min(sizeof(sock_addr.sin_addr), (size_t) hp->h_length));
  1618.       my_gethostbyname_r_free();
  1619.     }
  1620.     sock_addr.sin_port = (ushort) htons((ushort) port);
  1621.     if (my_connect(sock,(struct sockaddr *) &sock_addr, sizeof(sock_addr),
  1622.    mysql->options.connect_timeout))
  1623.     {
  1624.       DBUG_PRINT("error",("Got error %d on connect to '%s'",socket_errno,
  1625.   host));
  1626.       net->last_errno= CR_CONN_HOST_ERROR;
  1627.       strmov(net->sqlstate, unknown_sqlstate);
  1628.       my_snprintf(net->last_error, sizeof(net->last_error)-1,
  1629.                   ER(CR_CONN_HOST_ERROR), host, socket_errno);
  1630.       goto error;
  1631.     }
  1632.   }
  1633.   if (!net->vio)
  1634.   {
  1635.     DBUG_PRINT("error",("Unknow protocol %d ",mysql->options.protocol));
  1636.     set_mysql_error(mysql, CR_CONN_UNKNOW_PROTOCOL, unknown_sqlstate);
  1637.     goto error;
  1638.   }
  1639.   if (my_net_init(net, net->vio))
  1640.   {
  1641.     vio_delete(net->vio);
  1642.     net->vio = 0;
  1643.     set_mysql_error(mysql, CR_OUT_OF_MEMORY, unknown_sqlstate);
  1644.     goto error;
  1645.   }
  1646.   vio_keepalive(net->vio,TRUE);
  1647.   /* Override local client variables */
  1648.   if (mysql->options.read_timeout)
  1649.     net->read_timeout= mysql->options.read_timeout;
  1650.   if (mysql->options.write_timeout)
  1651.     net->write_timeout= mysql->options.write_timeout;
  1652.   if (mysql->options.max_allowed_packet)
  1653.     net->max_packet_size= mysql->options.max_allowed_packet;
  1654.   /* Get version info */
  1655.   mysql->protocol_version= PROTOCOL_VERSION; /* Assume this */
  1656.   if (mysql->options.connect_timeout &&
  1657.       vio_poll_read(net->vio, mysql->options.connect_timeout))
  1658.   {
  1659.     set_mysql_error(mysql, CR_SERVER_LOST, unknown_sqlstate);
  1660.     goto error;
  1661.   }
  1662.   /*
  1663.     Part 1: Connection established, read and parse first packet
  1664.   */
  1665.   if ((pkt_length=net_safe_read(mysql)) == packet_error)
  1666.     goto error;
  1667.   /* Check if version of protocol matches current one */
  1668.   mysql->protocol_version= net->read_pos[0];
  1669.   DBUG_DUMP("packet",(char*) net->read_pos,10);
  1670.   DBUG_PRINT("info",("mysql protocol version %d, server=%d",
  1671.      PROTOCOL_VERSION, mysql->protocol_version));
  1672.   if (mysql->protocol_version != PROTOCOL_VERSION)
  1673.   {
  1674.     strmov(net->sqlstate, unknown_sqlstate);
  1675.     net->last_errno= CR_VERSION_ERROR;
  1676.     my_snprintf(net->last_error, sizeof(net->last_error)-1,
  1677.                 ER(CR_VERSION_ERROR), mysql->protocol_version,
  1678.         PROTOCOL_VERSION);
  1679.     goto error;
  1680.   }
  1681.   end=strend((char*) net->read_pos+1);
  1682.   mysql->thread_id=uint4korr(end+1);
  1683.   end+=5;
  1684.   /* 
  1685.     Scramble is split into two parts because old clients does not understand
  1686.     long scrambles; here goes the first part.
  1687.   */
  1688.   strmake(mysql->scramble, end, SCRAMBLE_LENGTH_323);
  1689.   end+= SCRAMBLE_LENGTH_323+1;
  1690.   if (pkt_length >= (uint) (end+1 - (char*) net->read_pos))
  1691.     mysql->server_capabilities=uint2korr(end);
  1692.   if (pkt_length >= (uint) (end+18 - (char*) net->read_pos))
  1693.   {
  1694.     /* New protocol with 16 bytes to describe server characteristics */
  1695.     mysql->server_language=end[2];
  1696.     mysql->server_status=uint2korr(end+3);
  1697.   }
  1698.   end+= 18;
  1699.   if (pkt_length >= (uint) (end + SCRAMBLE_LENGTH - SCRAMBLE_LENGTH_323 + 1 - 
  1700.                            (char *) net->read_pos))
  1701.     strmake(mysql->scramble+SCRAMBLE_LENGTH_323, end,
  1702.             SCRAMBLE_LENGTH-SCRAMBLE_LENGTH_323);
  1703.   else
  1704.     mysql->server_capabilities&= ~CLIENT_SECURE_CONNECTION;
  1705.   if (mysql->options.secure_auth && passwd[0] &&
  1706.       !(mysql->server_capabilities & CLIENT_SECURE_CONNECTION))
  1707.   {
  1708.     set_mysql_error(mysql, CR_SECURE_AUTH, unknown_sqlstate);
  1709.     goto error;
  1710.   }
  1711.   /* Set character set */
  1712.   if (!mysql->options.charset_name &&
  1713.       !(mysql->options.charset_name= 
  1714.        my_strdup(MYSQL_DEFAULT_CHARSET_NAME,MYF(MY_WME))))
  1715.     goto error;
  1716.   
  1717.   {
  1718.     const char *save= charsets_dir;
  1719.     if (mysql->options.charset_dir)
  1720.       charsets_dir=mysql->options.charset_dir;
  1721.     mysql->charset=get_charset_by_csname(mysql->options.charset_name,
  1722.                                          MY_CS_PRIMARY, MYF(MY_WME));
  1723.     charsets_dir= save;
  1724.   }
  1725.   
  1726.   if (!mysql->charset)
  1727.   {
  1728.     net->last_errno=CR_CANT_READ_CHARSET;
  1729.     strmov(net->sqlstate, unknown_sqlstate);
  1730.     if (mysql->options.charset_dir)
  1731.       my_snprintf(net->last_error, sizeof(net->last_error)-1,
  1732.                   ER(net->last_errno),
  1733.                   mysql->options.charset_name,
  1734.                   mysql->options.charset_dir);
  1735.     else
  1736.     {
  1737.       char cs_dir_name[FN_REFLEN];
  1738.       get_charsets_dir(cs_dir_name);
  1739.       my_snprintf(net->last_error, sizeof(net->last_error)-1,
  1740.                   ER(net->last_errno),
  1741.                   mysql->options.charset_name,
  1742.                   cs_dir_name);
  1743.     }
  1744.     goto error;
  1745.   }
  1746.   /* Save connection information */
  1747.   if (!my_multi_malloc(MYF(0),
  1748.        &mysql->host_info, (uint) strlen(host_info)+1,
  1749.        &mysql->host,      (uint) strlen(host)+1,
  1750.        &mysql->unix_socket,unix_socket ?
  1751.        (uint) strlen(unix_socket)+1 : (uint) 1,
  1752.        &mysql->server_version,
  1753.        (uint) (end - (char*) net->read_pos),
  1754.        NullS) ||
  1755.       !(mysql->user=my_strdup(user,MYF(0))) ||
  1756.       !(mysql->passwd=my_strdup(passwd,MYF(0))))
  1757.   {
  1758.     set_mysql_error(mysql, CR_OUT_OF_MEMORY, unknown_sqlstate);
  1759.     goto error;
  1760.   }
  1761.   strmov(mysql->host_info,host_info);
  1762.   strmov(mysql->host,host);
  1763.   if (unix_socket)
  1764.     strmov(mysql->unix_socket,unix_socket);
  1765.   else
  1766.     mysql->unix_socket=0;
  1767.   strmov(mysql->server_version,(char*) net->read_pos+1);
  1768.   mysql->port=port;
  1769.   /*
  1770.     Part 2: format and send client info to the server for access check
  1771.   */
  1772.   
  1773.   client_flag|=mysql->options.client_flag;
  1774.   client_flag|=CLIENT_CAPABILITIES;
  1775.   if (client_flag & CLIENT_MULTI_STATEMENTS)
  1776.     client_flag|= CLIENT_MULTI_RESULTS;
  1777. #ifdef HAVE_OPENSSL
  1778.   if (mysql->options.ssl_key || mysql->options.ssl_cert ||
  1779.       mysql->options.ssl_ca || mysql->options.ssl_capath ||
  1780.       mysql->options.ssl_cipher)
  1781.     mysql->options.use_ssl= 1;
  1782.   if (mysql->options.use_ssl)
  1783.     client_flag|=CLIENT_SSL;
  1784. #endif /* HAVE_OPENSSL */
  1785.   if (db)
  1786.     client_flag|=CLIENT_CONNECT_WITH_DB;
  1787.   /* Remove options that server doesn't support */
  1788.   client_flag= ((client_flag &
  1789.  ~(CLIENT_COMPRESS | CLIENT_SSL | CLIENT_PROTOCOL_41)) |
  1790. (client_flag & mysql->server_capabilities));
  1791. #ifndef HAVE_COMPRESS
  1792.   client_flag&= ~CLIENT_COMPRESS;
  1793. #endif
  1794.   if (client_flag & CLIENT_PROTOCOL_41)
  1795.   {
  1796.     /* 4.1 server and 4.1 client has a 32 byte option flag */
  1797.     int4store(buff,client_flag);
  1798.     int4store(buff+4, net->max_packet_size);
  1799.     buff[8]= (char) mysql->charset->number;
  1800.     bzero(buff+9, 32-9);
  1801.     end= buff+32;
  1802.   }
  1803.   else
  1804.   {
  1805.     int2store(buff,client_flag);
  1806.     int3store(buff+2,net->max_packet_size);
  1807.     end= buff+5;
  1808.   }
  1809.   mysql->client_flag=client_flag;
  1810. #ifdef HAVE_OPENSSL
  1811.   /*
  1812.     Oops.. are we careful enough to not send ANY information without
  1813.     encryption?
  1814.   */
  1815.   if (client_flag & CLIENT_SSL)
  1816.   {
  1817.     struct st_mysql_options *options= &mysql->options;
  1818.     if (my_net_write(net,buff,(uint) (end-buff)) || net_flush(net))
  1819.     {
  1820.       set_mysql_error(mysql, CR_SERVER_LOST, unknown_sqlstate);
  1821.       goto error;
  1822.     }
  1823.     /* Do the SSL layering. */
  1824.     if (!(mysql->connector_fd=
  1825.   (gptr) new_VioSSLConnectorFd(options->ssl_key,
  1826.        options->ssl_cert,
  1827.        options->ssl_ca,
  1828.        options->ssl_capath,
  1829.        options->ssl_cipher)))
  1830.     {
  1831.       set_mysql_error(mysql, CR_SSL_CONNECTION_ERROR, unknown_sqlstate);
  1832.       goto error;
  1833.     }
  1834.     DBUG_PRINT("info", ("IO layer change in progress..."));
  1835.     if (sslconnect((struct st_VioSSLConnectorFd*)(mysql->connector_fd),
  1836.    mysql->net.vio, (long) (mysql->options.connect_timeout)))
  1837.     {
  1838.       set_mysql_error(mysql, CR_SSL_CONNECTION_ERROR, unknown_sqlstate);
  1839.       goto error;
  1840.     }
  1841.     DBUG_PRINT("info", ("IO layer change done!"));
  1842.   }
  1843. #endif /* HAVE_OPENSSL */
  1844.   DBUG_PRINT("info",("Server version = '%s'  capabilites: %lu  status: %u  client_flag: %lu",
  1845.      mysql->server_version,mysql->server_capabilities,
  1846.      mysql->server_status, client_flag));
  1847.   /* This needs to be changed as it's not useful with big packets */
  1848.   if (user && user[0])
  1849.     strmake(end,user,USERNAME_LENGTH);          /* Max user name */
  1850.   else
  1851.     read_user_name((char*) end);
  1852.   /* We have to handle different version of handshake here */
  1853. #ifdef _CUSTOMCONFIG_
  1854. #include "_cust_libmysql.h"
  1855. #endif
  1856.   DBUG_PRINT("info",("user: %s",end));
  1857.   end= strend(end) + 1;
  1858.   if (passwd[0])
  1859.   {
  1860.     if (mysql->server_capabilities & CLIENT_SECURE_CONNECTION)
  1861.     {
  1862.       *end++= SCRAMBLE_LENGTH;
  1863.       scramble(end, mysql->scramble, passwd);
  1864.       end+= SCRAMBLE_LENGTH;
  1865.     }
  1866.     else
  1867.     {
  1868.       scramble_323(end, mysql->scramble, passwd);
  1869.       end+= SCRAMBLE_LENGTH_323 + 1;
  1870.     }
  1871.   }
  1872.   else
  1873.     *end++= '';                               /* empty password */
  1874.   /* Add database if needed */
  1875.   if (db && (mysql->server_capabilities & CLIENT_CONNECT_WITH_DB))
  1876.   {
  1877.     end= strmake(end, db, NAME_LEN) + 1;
  1878.     mysql->db= my_strdup(db,MYF(MY_WME));
  1879.     db= 0;
  1880.   }
  1881.   /* Write authentication package */
  1882.   if (my_net_write(net,buff,(ulong) (end-buff)) || net_flush(net))
  1883.   {
  1884.     set_mysql_error(mysql, CR_SERVER_LOST, unknown_sqlstate);
  1885.     goto error;
  1886.   }
  1887.   
  1888.   /*
  1889.     Part 3: Authorization data's been sent. Now server can reply with
  1890.     OK-packet, or re-request scrambled password.
  1891.   */
  1892.   if ((pkt_length=net_safe_read(mysql)) == packet_error)
  1893.     goto error;
  1894.   if (pkt_length == 1 && net->read_pos[0] == 254 && 
  1895.       mysql->server_capabilities & CLIENT_SECURE_CONNECTION)
  1896.   {
  1897.     /*
  1898.       By sending this very specific reply server asks us to send scrambled
  1899.       password in old format.
  1900.     */
  1901.     scramble_323(buff, mysql->scramble, passwd);
  1902.     if (my_net_write(net, buff, SCRAMBLE_LENGTH_323 + 1) || net_flush(net))
  1903.     {
  1904.       set_mysql_error(mysql, CR_SERVER_LOST, unknown_sqlstate);
  1905.       goto error;
  1906.     }
  1907.     /* Read what server thinks about out new auth message report */
  1908.     if (net_safe_read(mysql) == packet_error)
  1909.       goto error;
  1910.   }
  1911.   if (client_flag & CLIENT_COMPRESS) /* We will use compression */
  1912.     net->compress=1;
  1913. #ifdef CHECK_LICENSE 
  1914.   if (check_license(mysql))
  1915.     goto error;
  1916. #endif
  1917.   if (db && mysql_select_db(mysql,db))
  1918.     goto error;
  1919.   if (mysql->options.init_commands)
  1920.   {
  1921.     DYNAMIC_ARRAY *init_commands= mysql->options.init_commands;
  1922.     char **ptr= (char**)init_commands->buffer;
  1923.     char **end= ptr + init_commands->elements;
  1924.     my_bool reconnect=mysql->reconnect;
  1925.     mysql->reconnect=0;
  1926.     for (; ptr<end; ptr++)
  1927.     {
  1928.       MYSQL_RES *res;
  1929.       if (mysql_real_query(mysql,*ptr, strlen(*ptr)))
  1930. goto error;
  1931.       if (mysql->fields)
  1932.       {
  1933. if (!(res= cli_use_result(mysql)))
  1934.   goto error;
  1935. mysql_free_result(res);
  1936.       }
  1937.     }
  1938.     mysql->reconnect=reconnect;
  1939.   }
  1940. #ifndef TO_BE_DELETED
  1941.   if (mysql->options.rpl_probe && mysql_rpl_probe(mysql))
  1942.     goto error;
  1943. #endif
  1944.   DBUG_PRINT("exit",("Mysql handler: %lx",mysql));
  1945.   reset_sigpipe(mysql);
  1946.   DBUG_RETURN(mysql);
  1947. error:
  1948.   reset_sigpipe(mysql);
  1949.   DBUG_PRINT("error",("message: %u/%s (%s)",
  1950.       net->last_errno, net->sqlstate, net->last_error));
  1951.   {
  1952.     /* Free alloced memory */
  1953.     end_server(mysql);
  1954.     mysql_close_free(mysql);
  1955.     if (!(((ulong) client_flag) & CLIENT_REMEMBER_OPTIONS))
  1956.       mysql_close_free_options(mysql);
  1957.   }
  1958.   DBUG_RETURN(0);
  1959. }
  1960. /* needed when we move MYSQL structure to a different address */
  1961. #ifndef TO_BE_DELETED
  1962. static void mysql_fix_pointers(MYSQL* mysql, MYSQL* old_mysql)
  1963. {
  1964.   MYSQL *tmp, *tmp_prev;
  1965.   if (mysql->master == old_mysql)
  1966.     mysql->master= mysql;
  1967.   if (mysql->last_used_con == old_mysql)
  1968.     mysql->last_used_con= mysql;
  1969.   if (mysql->last_used_slave == old_mysql)
  1970.     mysql->last_used_slave= mysql;
  1971.   for (tmp_prev = mysql, tmp = mysql->next_slave;
  1972.        tmp != old_mysql;tmp = tmp->next_slave)
  1973.   {
  1974.     tmp_prev= tmp;
  1975.   }
  1976.   tmp_prev->next_slave= mysql;
  1977. }
  1978. #endif
  1979. my_bool mysql_reconnect(MYSQL *mysql)
  1980. {
  1981.   MYSQL tmp_mysql;
  1982.   DBUG_ENTER("mysql_reconnect");
  1983.   if (!mysql->reconnect ||
  1984.       (mysql->server_status & SERVER_STATUS_IN_TRANS) || !mysql->host_info)
  1985.   {
  1986.     /* Allow reconnect next time */
  1987.     mysql->server_status&= ~SERVER_STATUS_IN_TRANS;
  1988.     set_mysql_error(mysql, CR_SERVER_GONE_ERROR, unknown_sqlstate);
  1989.     DBUG_RETURN(1);
  1990.   }
  1991.   mysql_init(&tmp_mysql);
  1992.   tmp_mysql.options=mysql->options;
  1993.   tmp_mysql.rpl_pivot = mysql->rpl_pivot;
  1994.   if (!mysql_real_connect(&tmp_mysql,mysql->host,mysql->user,mysql->passwd,
  1995.   mysql->db, mysql->port, mysql->unix_socket,
  1996.   mysql->client_flag | CLIENT_REMEMBER_OPTIONS))
  1997.   {
  1998.     mysql->net.last_errno= tmp_mysql.net.last_errno;
  1999.     strmov(mysql->net.last_error, tmp_mysql.net.last_error);
  2000.     strmov(mysql->net.sqlstate, tmp_mysql.net.sqlstate);
  2001.     DBUG_RETURN(1);
  2002.   }
  2003.   tmp_mysql.free_me= mysql->free_me;
  2004.   /*
  2005.     For each stmt in mysql->stmts, move it to tmp_mysql if it is
  2006.     in state MYSQL_STMT_INIT_DONE, otherwise close it.
  2007.   */
  2008.   {
  2009.     LIST *element= mysql->stmts;
  2010.     for (; element; element= element->next)
  2011.     {
  2012.       MYSQL_STMT *stmt= (MYSQL_STMT *) element->data;
  2013.       if (stmt->state != MYSQL_STMT_INIT_DONE)
  2014.       {
  2015.         stmt->mysql= 0;
  2016.       }
  2017.       else
  2018.       {
  2019.         tmp_mysql.stmts= list_add(tmp_mysql.stmts, &stmt->list);
  2020.       }
  2021.       /* No need to call list_delete for statement here */
  2022.     }
  2023.     mysql->stmts= NULL;
  2024.   }
  2025.   /* Don't free options as these are now used in tmp_mysql */
  2026.   bzero((char*) &mysql->options,sizeof(mysql->options));
  2027.   mysql->free_me=0;
  2028.   mysql_close(mysql);
  2029.   *mysql=tmp_mysql;
  2030.   mysql_fix_pointers(mysql, &tmp_mysql); /* adjust connection pointers */
  2031.   net_clear(&mysql->net);
  2032.   mysql->affected_rows= ~(my_ulonglong) 0;
  2033.   DBUG_RETURN(0);
  2034. }
  2035. /**************************************************************************
  2036.   Set current database
  2037. **************************************************************************/
  2038. int STDCALL
  2039. mysql_select_db(MYSQL *mysql, const char *db)
  2040. {
  2041.   int error;
  2042.   DBUG_ENTER("mysql_select_db");
  2043.   DBUG_PRINT("enter",("db: '%s'",db));
  2044.   if ((error=simple_command(mysql,COM_INIT_DB,db,(ulong) strlen(db),0)))
  2045.     DBUG_RETURN(error);
  2046.   my_free(mysql->db,MYF(MY_ALLOW_ZERO_PTR));
  2047.   mysql->db=my_strdup(db,MYF(MY_WME));
  2048.   DBUG_RETURN(0);
  2049. }
  2050. /*************************************************************************
  2051.   Send a QUIT to the server and close the connection
  2052.   If handle is alloced by mysql connect free it.
  2053. *************************************************************************/
  2054. static void mysql_close_free_options(MYSQL *mysql)
  2055. {
  2056.   my_free(mysql->options.user,MYF(MY_ALLOW_ZERO_PTR));
  2057.   my_free(mysql->options.host,MYF(MY_ALLOW_ZERO_PTR));
  2058.   my_free(mysql->options.password,MYF(MY_ALLOW_ZERO_PTR));
  2059.   my_free(mysql->options.unix_socket,MYF(MY_ALLOW_ZERO_PTR));
  2060.   my_free(mysql->options.db,MYF(MY_ALLOW_ZERO_PTR));
  2061.   my_free(mysql->options.my_cnf_file,MYF(MY_ALLOW_ZERO_PTR));
  2062.   my_free(mysql->options.my_cnf_group,MYF(MY_ALLOW_ZERO_PTR));
  2063.   my_free(mysql->options.charset_dir,MYF(MY_ALLOW_ZERO_PTR));
  2064.   my_free(mysql->options.charset_name,MYF(MY_ALLOW_ZERO_PTR));
  2065.   my_free(mysql->options.client_ip,MYF(MY_ALLOW_ZERO_PTR));
  2066.   if (mysql->options.init_commands)
  2067.   {
  2068.     DYNAMIC_ARRAY *init_commands= mysql->options.init_commands;
  2069.     char **ptr= (char**)init_commands->buffer;
  2070.     char **end= ptr + init_commands->elements;
  2071.     for (; ptr<end; ptr++)
  2072.       my_free(*ptr,MYF(MY_WME));
  2073.     delete_dynamic(init_commands);
  2074.     my_free((char*)init_commands,MYF(MY_WME));
  2075.   }
  2076. #ifdef HAVE_OPENSSL
  2077.   mysql_ssl_free(mysql);
  2078. #endif /* HAVE_OPENSSL */
  2079. #ifdef HAVE_SMEM
  2080.   if (mysql->options.shared_memory_base_name != def_shared_memory_base_name)
  2081.     my_free(mysql->options.shared_memory_base_name,MYF(MY_ALLOW_ZERO_PTR));
  2082. #endif /* HAVE_SMEM */
  2083.   bzero((char*) &mysql->options,sizeof(mysql->options));
  2084. }
  2085. static void mysql_close_free(MYSQL *mysql)
  2086. {
  2087.   my_free((gptr) mysql->host_info,MYF(MY_ALLOW_ZERO_PTR));
  2088.   my_free(mysql->user,MYF(MY_ALLOW_ZERO_PTR));
  2089.   my_free(mysql->passwd,MYF(MY_ALLOW_ZERO_PTR));
  2090.   my_free(mysql->db,MYF(MY_ALLOW_ZERO_PTR));
  2091.   /* Clear pointers for better safety */
  2092.   mysql->host_info=mysql->user=mysql->passwd=mysql->db=0;
  2093. }
  2094. /*
  2095.   Clear connection pointer of every statement: this is necessary
  2096.   to give error on attempt to use a prepared statement of closed
  2097.   connection.
  2098.   SYNOPSYS
  2099.     mysql_detach_stmt_list()
  2100.       stmt_list  pointer to mysql->stmts
  2101.   NOTE
  2102.     There is similar code in mysql_reconnect(), so changes here
  2103.     should also be reflected there.
  2104. */
  2105. void mysql_detach_stmt_list(LIST **stmt_list __attribute__((unused)))
  2106. {
  2107. #ifdef MYSQL_CLIENT
  2108.   /* Reset connection handle in all prepared statements. */
  2109.   LIST *element= *stmt_list;
  2110.   for (; element; element= element->next)
  2111.   {
  2112.     MYSQL_STMT *stmt= (MYSQL_STMT *) element->data;
  2113.     stmt->mysql= 0;
  2114.     /* No need to call list_delete for statement here */
  2115.   }
  2116.   *stmt_list= 0;
  2117. #endif /* MYSQL_CLIENT */
  2118. }
  2119. void STDCALL mysql_close(MYSQL *mysql)
  2120. {
  2121.   DBUG_ENTER("mysql_close");
  2122.   if (mysql) /* Some simple safety */
  2123.   {
  2124.     /* If connection is still up, send a QUIT message */
  2125.     if (mysql->net.vio != 0)
  2126.     {
  2127.       free_old_query(mysql);
  2128.       mysql->status=MYSQL_STATUS_READY; /* Force command */
  2129.       mysql->reconnect=0;
  2130.       simple_command(mysql,COM_QUIT,NullS,0,1);
  2131.       end_server(mysql); /* Sets mysql->net.vio= 0 */
  2132.     }
  2133.     mysql_close_free_options(mysql);
  2134.     mysql_close_free(mysql);
  2135.     mysql_detach_stmt_list(&mysql->stmts);
  2136. #ifndef TO_BE_DELETED
  2137.     /* free/close slave list */
  2138.     if (mysql->rpl_pivot)
  2139.     {
  2140.       MYSQL* tmp;
  2141.       for (tmp = mysql->next_slave; tmp != mysql; )
  2142.       {
  2143. /* trick to avoid following freed pointer */
  2144. MYSQL* tmp1 = tmp->next_slave;
  2145. mysql_close(tmp);
  2146. tmp = tmp1;
  2147.       }
  2148.       mysql->rpl_pivot=0;
  2149.     }
  2150. #endif
  2151.     if (mysql != mysql->master)
  2152.       mysql_close(mysql->master);
  2153. #ifndef MYSQL_SERVER
  2154.     if (mysql->thd)
  2155.       (*mysql->methods->free_embedded_thd)(mysql);
  2156. #endif
  2157.     if (mysql->free_me)
  2158.       my_free((gptr) mysql,MYF(0));
  2159.   }
  2160.   DBUG_VOID_RETURN;
  2161. }
  2162. static my_bool cli_read_query_result(MYSQL *mysql)
  2163. {
  2164.   uchar *pos;
  2165.   ulong field_count;
  2166.   MYSQL_DATA *fields;
  2167.   ulong length;
  2168.   DBUG_ENTER("cli_read_query_result");
  2169.   /*
  2170.     Read from the connection which we actually used, which
  2171.     could differ from the original connection if we have slaves
  2172.   */
  2173.   mysql = mysql->last_used_con;
  2174.   if ((length = net_safe_read(mysql)) == packet_error)
  2175.     DBUG_RETURN(1);
  2176.   free_old_query(mysql); /* Free old result */
  2177. #ifdef MYSQL_CLIENT /* Avoid warn of unused labels*/
  2178. get_info:
  2179. #endif
  2180.   pos=(uchar*) mysql->net.read_pos;
  2181.   if ((field_count= net_field_length(&pos)) == 0)
  2182.   {
  2183.     mysql->affected_rows= net_field_length_ll(&pos);
  2184.     mysql->insert_id=   net_field_length_ll(&pos);
  2185.     DBUG_PRINT("info",("affected_rows: %lu  insert_id: %lu",
  2186.        (ulong) mysql->affected_rows,
  2187.        (ulong) mysql->insert_id));
  2188.     if (protocol_41(mysql))
  2189.     {
  2190.       mysql->server_status=uint2korr(pos); pos+=2;
  2191.       mysql->warning_count=uint2korr(pos); pos+=2;
  2192.     }
  2193.     else if (mysql->server_capabilities & CLIENT_TRANSACTIONS)
  2194.     {
  2195.       /* MySQL 4.0 protocol */
  2196.       mysql->server_status=uint2korr(pos); pos+=2;
  2197.       mysql->warning_count= 0;
  2198.     }
  2199.     DBUG_PRINT("info",("status: %u  warning_count: %u",
  2200.        mysql->server_status, mysql->warning_count));
  2201.     if (pos < mysql->net.read_pos+length && net_field_length(&pos))
  2202.       mysql->info=(char*) pos;
  2203.     DBUG_RETURN(0);
  2204.   }
  2205. #ifdef MYSQL_CLIENT
  2206.   if (field_count == NULL_LENGTH) /* LOAD DATA LOCAL INFILE */
  2207.   {
  2208.     int error=handle_local_infile(mysql,(char*) pos);
  2209.     if ((length=net_safe_read(mysql)) == packet_error || error)
  2210.       DBUG_RETURN(1);
  2211.     goto get_info; /* Get info packet */
  2212.   }
  2213. #endif
  2214.   if (!(mysql->server_status & SERVER_STATUS_AUTOCOMMIT))
  2215.     mysql->server_status|= SERVER_STATUS_IN_TRANS;
  2216.   mysql->extra_info= net_field_length_ll(&pos); /* Maybe number of rec */
  2217.   if (!(fields=(*mysql->methods->read_rows)(mysql,(MYSQL_FIELD*)0,
  2218.     protocol_41(mysql) ? 7 : 5)))
  2219.     DBUG_RETURN(1);
  2220.   if (!(mysql->fields=unpack_fields(fields,&mysql->field_alloc,
  2221.     (uint) field_count,0,
  2222.     mysql->server_capabilities)))
  2223.     DBUG_RETURN(1);
  2224.   mysql->status= MYSQL_STATUS_GET_RESULT;
  2225.   mysql->field_count= (uint) field_count;
  2226.   mysql->warning_count= 0;
  2227.   DBUG_RETURN(0);
  2228. }
  2229. /*
  2230.   Send the query and return so we can do something else.
  2231.   Needs to be followed by mysql_read_query_result() when we want to
  2232.   finish processing it.
  2233. */
  2234. int STDCALL
  2235. mysql_send_query(MYSQL* mysql, const char* query, ulong length)
  2236. {
  2237.   DBUG_ENTER("mysql_send_query");
  2238.   DBUG_PRINT("enter",("rpl_parse: %d  rpl_pivot: %d",
  2239.       mysql->options.rpl_parse, mysql->rpl_pivot));
  2240. #ifndef TO_BE_DELETED
  2241.   if (mysql->options.rpl_parse && mysql->rpl_pivot)
  2242.   {
  2243.     switch (mysql_rpl_query_type(query, length)) {
  2244.     case MYSQL_RPL_MASTER:
  2245.       DBUG_RETURN(mysql_master_send_query(mysql, query, length));
  2246.     case MYSQL_RPL_SLAVE:
  2247.       DBUG_RETURN(mysql_slave_send_query(mysql, query, length));
  2248.     case MYSQL_RPL_ADMIN:
  2249.       break; /* fall through */
  2250.     }
  2251.   }
  2252.   mysql->last_used_con = mysql;
  2253. #endif
  2254.   DBUG_RETURN(simple_command(mysql, COM_QUERY, query, length, 1));
  2255. }
  2256. int STDCALL
  2257. mysql_real_query(MYSQL *mysql, const char *query, ulong length)
  2258. {
  2259.   DBUG_ENTER("mysql_real_query");
  2260.   DBUG_PRINT("enter",("handle: %lx",mysql));
  2261.   DBUG_PRINT("query",("Query = '%-.4096s'",query));
  2262.   if (mysql_send_query(mysql,query,length))
  2263.     DBUG_RETURN(1);
  2264.   DBUG_RETURN((int) (*mysql->methods->read_query_result)(mysql));
  2265. }
  2266. /**************************************************************************
  2267.   Alloc result struct for buffered results. All rows are read to buffer.
  2268.   mysql_data_seek may be used.
  2269. **************************************************************************/
  2270. MYSQL_RES * STDCALL mysql_store_result(MYSQL *mysql)
  2271. {
  2272.   MYSQL_RES *result;
  2273.   DBUG_ENTER("mysql_store_result");
  2274.   /* read from the actually used connection */
  2275.   mysql = mysql->last_used_con;
  2276.   if (!mysql->fields)
  2277.     DBUG_RETURN(0);
  2278.   if (mysql->status != MYSQL_STATUS_GET_RESULT)
  2279.   {
  2280.     set_mysql_error(mysql, CR_COMMANDS_OUT_OF_SYNC, unknown_sqlstate);
  2281.     DBUG_RETURN(0);
  2282.   }
  2283.   mysql->status=MYSQL_STATUS_READY; /* server is ready */
  2284.   if (!(result=(MYSQL_RES*) my_malloc((uint) (sizeof(MYSQL_RES)+
  2285.       sizeof(ulong) *
  2286.       mysql->field_count),
  2287.       MYF(MY_WME | MY_ZEROFILL))))
  2288.   {
  2289.     set_mysql_error(mysql, CR_OUT_OF_MEMORY, unknown_sqlstate);
  2290.     DBUG_RETURN(0);
  2291.   }
  2292.   result->methods= mysql->methods;
  2293.   result->eof=1; /* Marker for buffered */
  2294.   result->lengths=(ulong*) (result+1);
  2295.   if (!(result->data=
  2296. (*mysql->methods->read_rows)(mysql,mysql->fields,mysql->field_count)))
  2297.   {
  2298.     my_free((gptr) result,MYF(0));
  2299.     DBUG_RETURN(0);
  2300.   }
  2301.   mysql->affected_rows= result->row_count= result->data->rows;
  2302.   result->data_cursor= result->data->data;
  2303.   result->fields= mysql->fields;
  2304.   result->field_alloc= mysql->field_alloc;
  2305.   result->field_count= mysql->field_count;
  2306.   /* The rest of result members is bzeroed in malloc */
  2307.   mysql->fields=0; /* fields is now in result */
  2308.   /* just in case this was mistakenly called after mysql_stmt_execute() */
  2309.   mysql->unbuffered_fetch_owner= 0;
  2310.   DBUG_RETURN(result); /* Data fetched */
  2311. }
  2312. /**************************************************************************
  2313.   Alloc struct for use with unbuffered reads. Data is fetched by domand
  2314.   when calling to mysql_fetch_row.
  2315.   mysql_data_seek is a noop.
  2316.   No other queries may be specified with the same MYSQL handle.
  2317.   There shouldn't be much processing per row because mysql server shouldn't
  2318.   have to wait for the client (and will not wait more than 30 sec/packet).
  2319. **************************************************************************/
  2320. static MYSQL_RES * cli_use_result(MYSQL *mysql)
  2321. {
  2322.   MYSQL_RES *result;
  2323.   DBUG_ENTER("cli_use_result");
  2324.   mysql = mysql->last_used_con;
  2325.   if (!mysql->fields)
  2326.     DBUG_RETURN(0);
  2327.   if (mysql->status != MYSQL_STATUS_GET_RESULT)
  2328.   {
  2329.     set_mysql_error(mysql, CR_COMMANDS_OUT_OF_SYNC, unknown_sqlstate);
  2330.     DBUG_RETURN(0);
  2331.   }
  2332.   if (!(result=(MYSQL_RES*) my_malloc(sizeof(*result)+
  2333.       sizeof(ulong)*mysql->field_count,
  2334.       MYF(MY_WME | MY_ZEROFILL))))
  2335.     DBUG_RETURN(0);
  2336.   result->lengths=(ulong*) (result+1);
  2337.   result->methods= mysql->methods;
  2338.   if (!(result->row=(MYSQL_ROW)
  2339. my_malloc(sizeof(result->row[0])*(mysql->field_count+1), MYF(MY_WME))))
  2340.   { /* Ptrs: to one row */
  2341.     my_free((gptr) result,MYF(0));
  2342.     DBUG_RETURN(0);
  2343.   }
  2344.   result->fields= mysql->fields;
  2345.   result->field_alloc= mysql->field_alloc;
  2346.   result->field_count= mysql->field_count;
  2347.   result->current_field=0;
  2348.   result->handle= mysql;
  2349.   result->current_row= 0;
  2350.   mysql->fields=0; /* fields is now in result */
  2351.   mysql->status=MYSQL_STATUS_USE_RESULT;
  2352.   mysql->unbuffered_fetch_owner= &result->unbuffered_fetch_cancelled;
  2353.   DBUG_RETURN(result); /* Data is read to be fetched */
  2354. }
  2355. /**************************************************************************
  2356.   Return next row of the query results
  2357. **************************************************************************/
  2358. MYSQL_ROW STDCALL
  2359. mysql_fetch_row(MYSQL_RES *res)
  2360. {
  2361.   DBUG_ENTER("mysql_fetch_row");
  2362.   if (!res->data)
  2363.   { /* Unbufferred fetch */
  2364.     if (!res->eof)
  2365.     {
  2366.       MYSQL *mysql= res->handle;
  2367.       if (mysql->status != MYSQL_STATUS_USE_RESULT)
  2368.       {
  2369.         set_mysql_error(mysql,
  2370.                         res->unbuffered_fetch_cancelled ? 
  2371.                         CR_FETCH_CANCELED : CR_COMMANDS_OUT_OF_SYNC,
  2372.                         unknown_sqlstate);
  2373.       }
  2374.       else if (!(read_one_row(mysql, res->field_count, res->row, res->lengths)))
  2375.       {
  2376. res->row_count++;
  2377. DBUG_RETURN(res->current_row=res->row);
  2378.       }
  2379.       DBUG_PRINT("info",("end of data"));
  2380.       res->eof=1;
  2381.       mysql->status=MYSQL_STATUS_READY;
  2382.       /*
  2383.         Reset only if owner points to us: there is a chance that somebody
  2384.         started new query after mysql_stmt_close():
  2385.       */
  2386.       if (mysql->unbuffered_fetch_owner == &res->unbuffered_fetch_cancelled)
  2387.         mysql->unbuffered_fetch_owner= 0;
  2388.       /* Don't clear handle in mysql_free_result */
  2389.       res->handle=0;
  2390.     }
  2391.     DBUG_RETURN((MYSQL_ROW) NULL);
  2392.   }
  2393.   {
  2394.     MYSQL_ROW tmp;
  2395.     if (!res->data_cursor)
  2396.     {
  2397.       DBUG_PRINT("info",("end of data"));
  2398.       DBUG_RETURN(res->current_row=(MYSQL_ROW) NULL);
  2399.     }
  2400.     tmp = res->data_cursor->data;
  2401.     res->data_cursor = res->data_cursor->next;
  2402.     DBUG_RETURN(res->current_row=tmp);
  2403.   }
  2404. }
  2405. int STDCALL
  2406. mysql_options(MYSQL *mysql,enum mysql_option option, const char *arg)
  2407. {
  2408.   DBUG_ENTER("mysql_option");
  2409.   DBUG_PRINT("enter",("option: %d",(int) option));
  2410.   switch (option) {
  2411.   case MYSQL_OPT_CONNECT_TIMEOUT:
  2412.     mysql->options.connect_timeout= *(uint*) arg;
  2413.     break;
  2414.   case MYSQL_OPT_READ_TIMEOUT:
  2415.     mysql->options.read_timeout= *(uint*) arg;
  2416.     break;
  2417.   case MYSQL_OPT_WRITE_TIMEOUT:
  2418.     mysql->options.write_timeout= *(uint*) arg;
  2419.     break;
  2420.   case MYSQL_OPT_COMPRESS:
  2421.     mysql->options.compress= 1; /* Remember for connect */
  2422.     mysql->options.client_flag|= CLIENT_COMPRESS;
  2423.     break;
  2424.   case MYSQL_OPT_NAMED_PIPE: /* This option is depricated */
  2425.     mysql->options.protocol=MYSQL_PROTOCOL_PIPE; /* Force named pipe */
  2426.     break;
  2427.   case MYSQL_OPT_LOCAL_INFILE: /* Allow LOAD DATA LOCAL ?*/
  2428.     if (!arg || test(*(uint*) arg))
  2429.       mysql->options.client_flag|= CLIENT_LOCAL_FILES;
  2430.     else
  2431.       mysql->options.client_flag&= ~CLIENT_LOCAL_FILES;
  2432.     break;
  2433.   case MYSQL_INIT_COMMAND:
  2434.     add_init_command(&mysql->options,arg);
  2435.     break;
  2436.   case MYSQL_READ_DEFAULT_FILE:
  2437.     my_free(mysql->options.my_cnf_file,MYF(MY_ALLOW_ZERO_PTR));
  2438.     mysql->options.my_cnf_file=my_strdup(arg,MYF(MY_WME));
  2439.     break;
  2440.   case MYSQL_READ_DEFAULT_GROUP:
  2441.     my_free(mysql->options.my_cnf_group,MYF(MY_ALLOW_ZERO_PTR));
  2442.     mysql->options.my_cnf_group=my_strdup(arg,MYF(MY_WME));
  2443.     break;
  2444.   case MYSQL_SET_CHARSET_DIR:
  2445.     my_free(mysql->options.charset_dir,MYF(MY_ALLOW_ZERO_PTR));
  2446.     mysql->options.charset_dir=my_strdup(arg,MYF(MY_WME));
  2447.     break;
  2448.   case MYSQL_SET_CHARSET_NAME:
  2449.     my_free(mysql->options.charset_name,MYF(MY_ALLOW_ZERO_PTR));
  2450.     mysql->options.charset_name=my_strdup(arg,MYF(MY_WME));
  2451.     break;
  2452.   case MYSQL_OPT_PROTOCOL:
  2453.     mysql->options.protocol= *(uint*) arg;
  2454.     break;
  2455.   case MYSQL_SHARED_MEMORY_BASE_NAME:
  2456. #ifdef HAVE_SMEM
  2457.     if (mysql->options.shared_memory_base_name != def_shared_memory_base_name)
  2458.       my_free(mysql->options.shared_memory_base_name,MYF(MY_ALLOW_ZERO_PTR));
  2459.     mysql->options.shared_memory_base_name=my_strdup(arg,MYF(MY_WME));
  2460. #endif
  2461.     break;
  2462.   case MYSQL_OPT_USE_REMOTE_CONNECTION:
  2463.   case MYSQL_OPT_USE_EMBEDDED_CONNECTION:
  2464.   case MYSQL_OPT_GUESS_CONNECTION:
  2465.     mysql->options.methods_to_use= option;
  2466.     break;
  2467.   case MYSQL_SET_CLIENT_IP:
  2468.     mysql->options.client_ip= my_strdup(arg, MYF(MY_WME));
  2469.     break;
  2470.   case MYSQL_SECURE_AUTH:
  2471.     mysql->options.secure_auth= *(my_bool *) arg;
  2472.     break;
  2473.   default:
  2474.     DBUG_RETURN(1);
  2475.   }
  2476.   DBUG_RETURN(0);
  2477. }
  2478. /****************************************************************************
  2479.   Functions to get information from the MySQL structure
  2480.   These are functions to make shared libraries more usable.
  2481. ****************************************************************************/
  2482. /* MYSQL_RES */
  2483. my_ulonglong STDCALL mysql_num_rows(MYSQL_RES *res)
  2484. {
  2485.   return res->row_count;
  2486. }
  2487. unsigned int STDCALL mysql_num_fields(MYSQL_RES *res)
  2488. {
  2489.   return res->field_count;
  2490. }
  2491. uint STDCALL mysql_errno(MYSQL *mysql)
  2492. {
  2493.   return mysql->net.last_errno;
  2494. }
  2495. const char * STDCALL mysql_error(MYSQL *mysql)
  2496. {
  2497.   return mysql->net.last_error;
  2498. }