libmysql.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:38k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. #ifdef _WIN32
  4. #include <winsock.h>
  5. #include <odbcinst.h>
  6. #endif
  7. #include <global.h>
  8. #include <my_sys.h>
  9. #include <m_string.h>
  10. #include <m_ctype.h>
  11. #include "mysql.h"
  12. #include "mysql_version.h"
  13. #include "errmsg.h"
  14. #include <sys/stat.h>
  15. #include <signal.h>
  16. #ifdef  HAVE_PWD_H
  17. #include <pwd.h>
  18. #endif
  19. #if !defined(MSDOS) && !defined(__WIN32__)
  20. #include <sys/socket.h>
  21. #include <netinet/in.h>
  22. #include <arpa/inet.h>
  23. #include <netdb.h>
  24. #endif
  25. #ifdef HAVE_SYS_UN_H
  26. #  include <sys/un.h>
  27. #endif
  28. #if defined(THREAD) && !defined(__WIN32__)
  29. #include <my_pthread.h> /* because of signal() */
  30. #endif
  31. #ifndef INADDR_NONE
  32. #define INADDR_NONE -1
  33. #endif
  34. static my_bool mysql_client_init=0;
  35. static MYSQL *current_mysql;
  36. uint mysql_port=0;
  37. my_string mysql_unix_port=0;
  38. #define CLIENT_CAPABILITIES (CLIENT_LONG_PASSWORD | CLIENT_LONG_FLAG)
  39. #if defined(MSDOS) || defined(__WIN32__)
  40. #define ERRNO WSAGetLastError()
  41. #define perror(A)
  42. #else
  43. #define ERRNO errno
  44. #define SOCKET_ERROR -1
  45. #define closesocket(A) close(A)
  46. #endif
  47. static MYSQL_DATA *read_rows (MYSQL *mysql,MYSQL_FIELD *fields,
  48.       uint field_count);
  49. static void end_server(MYSQL *mysql);
  50. static void remember_connection(MYSQL *mysql);
  51. static void read_user_name(char *name);
  52. static void append_wild(char *to,char *end,const char *wild);
  53. /*****************************************************************************
  54. ** read a packet from server. Give error message if socket was down
  55. ** or package is an error message
  56. *****************************************************************************/
  57. static uint
  58. net_safe_read(MYSQL *mysql)
  59. {
  60.   NET *net= &mysql->net;
  61.   uint len=0;
  62.   if (net->fd < 0 || ((len=my_net_read(net)) == packet_error || len == 0))
  63.   {
  64.     DBUG_PRINT("error",("Wrong connection or packet. fd: %d  len: %d",
  65. net->fd,len));
  66.     end_server(mysql);
  67.     net->last_errno=CR_SERVER_LOST;
  68.     strmov(net->last_error,ER(net->last_errno));
  69.     return(packet_error);
  70.   }
  71.   if (net->buff[0] == 255)
  72.   {
  73.     if (len > 3)
  74.     {
  75.       char *pos=(char*) net->buff+1;
  76.       if (mysql->protocol_version > 9)
  77.       { /* New client protocol */
  78. net->last_errno=uint2korr(pos);
  79. pos+=2;
  80.       }
  81.       else
  82. net->last_errno=CR_UNKNOWN_ERROR;
  83.       (void) strmake(net->last_error,(char*) pos, sizeof(net->last_error)-1);
  84.     }
  85.     else
  86.     {
  87.       net->last_errno=CR_UNKNOWN_ERROR;
  88.       (void) strmov(net->last_error,ER(net->last_errno));
  89.     }
  90.     DBUG_PRINT("error",("Got error: %d (%s)", net->last_errno,
  91. net->last_error));
  92.     return(packet_error);
  93.   }
  94.   return len;
  95. }
  96. /* Get the length of next field. Change parameter to point at fieldstart */
  97. static ulong
  98. net_field_length(uchar **packet)
  99. {
  100.   reg1 uchar *pos= *packet;
  101.   if (*pos < 251)
  102.   {
  103.     (*packet)++;
  104.     return (ulong) *pos;
  105.   }
  106.   if (*pos == 251)
  107.   {
  108.     (*packet)++;
  109.     return NULL_LENGTH;
  110.   }
  111.   if (*pos == 252)
  112.   {
  113.     (*packet)+=3;
  114.     return uint2korr(pos+1);
  115.   }
  116.   if (*pos == 253)
  117.   {
  118.     (*packet)+=4;
  119.     return uint3korr(pos+1);
  120.   }
  121.   (*packet)+=6; /* Must be 254 when here */
  122.   return uint4korr(pos+1);
  123. }
  124. static void free_rows(MYSQL_DATA *cur)
  125. {
  126.   if (cur)
  127.   {
  128.     free_root(&cur->alloc);
  129.     my_free((gptr) cur,MYF(0));
  130.   }
  131. }
  132. static my_bool mysql_reconnect(MYSQL *mysql)
  133. {
  134.   MYSQL tmp_mysql;
  135.   DBUG_ENTER("mysql_reconnect");
  136.   if (!mysql->reconnect || !mysql->host_info)
  137.     DBUG_RETURN(1);
  138.   if (!mysql_real_connect(&tmp_mysql,mysql->host,mysql->user,mysql->passwd,
  139.   mysql->db, mysql->port, mysql->unix_socket,
  140.   mysql->client_flag))
  141.     DBUG_RETURN(1);
  142.   tmp_mysql.free_me=mysql->free_me;
  143.   mysql->free_me=0;
  144.   mysql_close(mysql);
  145.   memcpy(mysql,&tmp_mysql,sizeof(tmp_mysql));
  146.   net_clear(&mysql->net);
  147.   mysql->affected_rows= (ulong) ~0L;
  148.   DBUG_RETURN(0);
  149. }
  150. static int
  151. simple_command(MYSQL *mysql,enum enum_server_command command, const char *arg,
  152.        uint length, my_bool skipp_check)
  153. {
  154.   NET *net= &mysql->net;
  155.   if (mysql->net.fd < 0)
  156.   { /* Do reconnect if possible */
  157.     if (mysql_reconnect(mysql))
  158.     {
  159.       net->last_errno=CR_SERVER_GONE_ERROR;
  160.       strmov(net->last_error,ER(net->last_errno));
  161.       return -1;
  162.     }
  163.   }
  164.   if (mysql->status != MYSQL_STATUS_READY)
  165.   {
  166.     strmov(net->last_error,ER(mysql->net.last_errno=CR_COMMANDS_OUT_OF_SYNC));
  167.     return -1;
  168.   }
  169.   mysql->net.last_error[0]=0;
  170.   mysql->net.last_errno=0;
  171.   mysql->info=0;
  172.   mysql->affected_rows= (ulong) ~0L;
  173.   remember_connection(mysql);
  174.   net_clear(net); /* Clear receive buffer */
  175.   if (!arg)
  176.     arg="";
  177.   if (net_write_command(net,(uchar) command,arg,
  178. length ? length :strlen(arg)))
  179.   {
  180.     DBUG_PRINT("error",("Can't send command to server. Error: %d",errno));
  181.     end_server(mysql);
  182.     if (mysql_reconnect(mysql) ||
  183. net_write_command(net,(uchar) command,arg,
  184.   length ? length :strlen(arg)))
  185.     {
  186.       net->last_errno=CR_SERVER_GONE_ERROR;
  187.       strmov(net->last_error,ER(net->last_errno));
  188.       return -1;
  189.     }
  190.   }
  191.   if (!skipp_check)
  192.     return (net_safe_read(mysql) == packet_error ? -1 : 0);
  193.   return 0;
  194. }
  195. static void free_old_query(MYSQL *mysql)
  196. {
  197.   DBUG_ENTER("free_old_query");
  198.   if (mysql->fields)
  199.     free_root(&mysql->field_alloc);
  200.   init_alloc_root(&mysql->field_alloc,8192); /* Assume rowlength < 8192 */
  201.   mysql->fields=0;
  202.   mysql->field_count=0; /* For API */
  203.   DBUG_VOID_RETURN;
  204. }
  205. #define USERNAMELENGTH 16
  206. #if !defined(MSDOS) && ! defined(VMS) && !defined(__WIN32__)
  207. static void read_user_name(char *name)
  208. {
  209.   DBUG_ENTER("read_user_name");
  210.   if (geteuid() == 0)
  211.     (void) strmov(name,"root"); /* allow use of surun */
  212.   else
  213.   {
  214. #ifdef HAVE_GETPWUID
  215.     struct passwd *skr,*getpwuid();
  216.     char *str,*getlogin();
  217.     if ((str=getlogin()) == NULL)
  218.       if ((skr=getpwuid(geteuid())) != NULL)
  219. str=skr->pw_name;
  220.       else if (!(str=getenv("USER")) && !(str=getenv("LOGNAME")) &&
  221.        !(str=getenv("LOGIN")))
  222. str="UNKNOWN_USER";
  223.     (void) strmake(name,str,USERNAMELENGTH);
  224. #elif HAVE_CUSERID
  225.     (void) cuserid(name);
  226. #else
  227.     strmov(name,"UNKNOWN_USER");
  228. #endif
  229.   }
  230.   DBUG_VOID_RETURN;
  231. }
  232. #else /* If MSDOS || VMS */
  233. static void read_user_name(char *name)
  234. {
  235.   strmov(name,"ODBC");  /* ODBC will send user variable */
  236. }
  237. #endif
  238. /*
  239. ** Expand wildcard to a sql string
  240. */
  241. static void
  242. append_wild(char *to, char *end, const char *wild)
  243. {
  244.   end-=5; /* Some extra */
  245.   if (wild && wild[0])
  246.   {
  247.     to=strmov(to," like '");
  248.     while (*wild && to < end)
  249.     {
  250.       if (*wild == '\' || *wild == ''')
  251. *to++='\';
  252.       *to++= *wild++;
  253.     }
  254.     if (*wild) /* Too small buffer */
  255.       *to++='%'; /* Nicer this way */
  256.     to[0]=''';
  257.     to[1]=0;
  258.   }
  259. }
  260. /**************************************************************************
  261. ** Init debugging if MYSQL_DEBUG environment variable is found
  262. **************************************************************************/
  263. void STDCALL
  264. mysql_debug(char *debug)
  265. {
  266. #ifndef DBUG_OFF
  267.   char *env;
  268.   if (_db_on_)
  269.     return; /* Already using debugging */
  270.   if (debug)
  271.   {
  272.     DEBUGGER_ON;
  273.     DBUG_PUSH(debug);
  274.   }
  275.   else if ((env = getenv("MYSQL_DEBUG")))
  276.   {
  277.     DEBUGGER_ON;
  278.     DBUG_PUSH(env);
  279. #if !defined(_WINVER) && !defined(WINVER)
  280.     puts("n-------------------------------------------------------");
  281.     puts("MYSQL_DEBUG found. libmysql started with the following:");
  282.     puts(env);
  283.     puts("-------------------------------------------------------n");
  284. #else
  285.     {
  286.       char buff[80];
  287.       strmov(strmov(buff,"libmysql: "),env);
  288.       MessageBox((HWND) 0,"Debugging variable MYSQL_DEBUG used",buff,MB_OK);
  289.     }
  290. #endif
  291.   }
  292. #endif
  293. }
  294. /**************************************************************************
  295. ** Store the server socket currently in use
  296. ** Used by pipe_handler if error on socket interrupt
  297. **************************************************************************/
  298. static void
  299. remember_connection(MYSQL *mysql)
  300. {
  301.   current_mysql = mysql;
  302. }
  303. /**************************************************************************
  304. ** Close the server connection if we get a SIGPIPE
  305.    ARGSUSED
  306. **************************************************************************/
  307. static sig_handler
  308. pipe_sig_handle(int sig __attribute__((unused)))
  309. {
  310.   DBUG_PRINT("info",("Hit by signal %d",sig));
  311. #ifdef NOT_USED
  312.   end_server(current_mysql);
  313. #endif
  314. #ifdef DONT_REMEMBER_SIGNAL
  315.   (void) signal(SIGPIPE,pipe_sig_handle);
  316. #endif
  317. }
  318. /**************************************************************************
  319. ** Shut down connection
  320. **************************************************************************/
  321. static void
  322. end_server(MYSQL *mysql)
  323. {
  324.   DBUG_ENTER("end_server");
  325.   if (mysql->net.fd >= 0)
  326.   {
  327.     DBUG_PRINT("enter",("Socket: %d", mysql->net.fd));
  328.     (void) shutdown(mysql->net.fd,2);
  329.     (void) closesocket(mysql->net.fd);
  330.     mysql->net.fd= -1;
  331.     net_end(&mysql->net);
  332.     free_old_query(mysql);
  333.   }
  334.   DBUG_VOID_RETURN;
  335. }
  336. void STDCALL
  337. mysql_free_result(MYSQL_RES *result)
  338. {
  339.   DBUG_ENTER("mysql_free_result");
  340.   DBUG_PRINT("enter",("mysql_res: %lx",result));
  341.   if (result)
  342.   {
  343.     free_rows(result->data);
  344.     if (result->fields)
  345.       free_root(&result->field_alloc);
  346.     if (result->row)
  347.       my_free((gptr) result->row,MYF(0));
  348.     my_free((gptr) result,MYF(0));
  349.   }
  350.   DBUG_VOID_RETURN;
  351. }
  352. /***************************************************************************
  353. ** Change field rows to field structs
  354. ***************************************************************************/
  355. static MYSQL_FIELD *
  356. unpack_fields(MYSQL_DATA *data,MEM_ROOT *alloc,uint fields,
  357.       my_bool default_value, my_bool long_flag_protocol)
  358. {
  359.   MYSQL_ROWS *row;
  360.   MYSQL_FIELD *field,*result;
  361.   DBUG_ENTER("unpack_fields");
  362.   field=result=(MYSQL_FIELD*) alloc_root(alloc,sizeof(MYSQL_FIELD)*fields);
  363.   if (!result)
  364.     DBUG_RETURN(0);
  365.   for (row=data->data; row ; row = row->next,field++)
  366.   {
  367.     field->table=  strdup_root(alloc,(char*) row->data[0]);
  368.     field->name=   strdup_root(alloc,(char*) row->data[1]);
  369.     field->length= (uint) uint3korr(row->data[2]);
  370.     field->type=   (enum enum_field_types) (uchar) row->data[3][0];
  371.     if (long_flag_protocol)
  372.     {
  373.       field->flags=   uint2korr(row->data[4]);
  374.       field->decimals=(uint) (uchar) row->data[4][2];
  375.     }
  376.     else
  377.     {
  378.       field->flags=   (uint) (uchar) row->data[4][0];
  379.       field->decimals=(uint) (uchar) row->data[4][1];
  380.     }
  381.     if (default_value && row->data[5])
  382.       field->def=strdup_root(alloc,(char*) row->data[5]);
  383.     else
  384.       field->def=0;
  385.     field->max_length= 0;
  386.   }
  387.   free_rows(data); /* Free old data */
  388.   DBUG_RETURN(result);
  389. }
  390. /* Read all rows (fields or data) from server */
  391. static MYSQL_DATA *read_rows(MYSQL *mysql,MYSQL_FIELD *mysql_fields,
  392.      uint fields)
  393. {
  394.   uint field,pkt_len;
  395.   ulong len;
  396.   uchar *cp;
  397.   char *to;
  398.   MYSQL_DATA *result;
  399.   MYSQL_ROWS **prev_ptr,*cur;
  400.   NET *net = &mysql->net;
  401.   DBUG_ENTER("read_rows");
  402.   if ((pkt_len=(uint) net_safe_read(mysql)) == packet_error)
  403.     DBUG_RETURN(0);
  404.   if (!(result=(MYSQL_DATA*) my_malloc(sizeof(MYSQL_DATA),
  405.        MYF(MY_WME | MY_ZEROFILL))))
  406.   {
  407.     net->last_errno=CR_OUT_OF_MEMORY;
  408.     strmov(net->last_error,ER(net->last_errno));
  409.     DBUG_RETURN(0);
  410.   }
  411.   init_alloc_root(&result->alloc,8192); /* Assume rowlength < 8192 */
  412.   result->alloc.min_malloc=sizeof(MYSQL_ROWS);
  413.   prev_ptr= &result->data;
  414.   result->rows=0;
  415.   result->fields=fields;
  416.   while (*(cp=net->buff) != 254 || pkt_len != 1)
  417.   {
  418.     result->rows++;
  419.     if (!(cur= (MYSQL_ROWS*) alloc_root(&result->alloc,
  420.     sizeof(MYSQL_ROWS))) ||
  421. !(cur->data= ((MYSQL_ROW)
  422.       alloc_root(&result->alloc,
  423.      (fields+1)*sizeof(char *)+pkt_len))))
  424.     {
  425.       free_rows(result);
  426.       net->last_errno=CR_OUT_OF_MEMORY;
  427.       strmov(net->last_error,ER(net->last_errno));
  428.       DBUG_RETURN(0);
  429.     }
  430.     *prev_ptr=cur;
  431.     prev_ptr= &cur->next;
  432.     to= (char*) (cur->data+fields+1);
  433.     for (field=0 ; field < fields ; field++)
  434.     {
  435.       if ((len=net_field_length(&cp)) == NULL_LENGTH)
  436.       { /* null field */
  437. cur->data[field] = 0;
  438.       }
  439.       else
  440.       {
  441. cur->data[field] = to;
  442. memcpy(to,(char*) cp,len); to[len]=0;
  443. to+=len+1;
  444. cp+=len;
  445. if (mysql_fields)
  446. {
  447.   if (mysql_fields[field].max_length < len)
  448.     mysql_fields[field].max_length=len;
  449. }
  450.       }
  451.     }
  452.     cur->data[field]=to; /* End of last field */
  453.     if ((pkt_len=net_safe_read(mysql)) == packet_error)
  454.     {
  455.       free_rows(result);
  456.       DBUG_RETURN(0);
  457.     }
  458.   }
  459.   *prev_ptr=0; /* last pointer is null */
  460.   DBUG_PRINT("exit",("Got %d rows",result->rows));
  461.   DBUG_RETURN(result);
  462. }
  463. /*
  464. ** Read one row. Uses packet buffer as storage for fields.
  465. ** When next package is read, the previous field values are destroyed
  466. */
  467. static int
  468. read_one_row(MYSQL *mysql,uint fields,MYSQL_ROW row, uint *lengths)
  469. {
  470.   uint field,pkt_len,len;
  471.   uchar *pos,*prev_pos;
  472.   if ((pkt_len=(uint) net_safe_read(mysql)) == packet_error)
  473.     return -1;
  474.   if (pkt_len == 1 && mysql->net.buff[0] == 254)
  475.     return 1; /* End of data */
  476.   prev_pos= 0; /* allowed to write at packet[-1] */
  477.   pos=mysql->net.buff;
  478.   for (field=0 ; field < fields ; field++)
  479.   {
  480.     if ((len=net_field_length(&pos)) == NULL_LENGTH)
  481.     { /* null field */
  482.       row[field] = 0;
  483.       *lengths++=0;
  484.     }
  485.     else
  486.     {
  487.       row[field] = (char*) pos;
  488.       pos+=len;
  489.       *lengths++=len;
  490.     }
  491.     if (prev_pos)
  492.       *prev_pos=0; /* Terminate prev field */
  493.     prev_pos=pos;
  494.   }
  495.   row[field]=(char*) prev_pos+1; /* End of last field */
  496.   *prev_pos=0; /* Terminate last field */
  497.   return 0;
  498. }
  499. /**************************************************************************
  500. ** Connect to sql server
  501. ** If host == 0 then use localhost
  502. **************************************************************************/
  503. MYSQL * STDCALL
  504. mysql_connect(MYSQL *mysql,const char *host,
  505.       const char *user, const char *passwd)
  506. {
  507.   return mysql_real_connect(mysql,host,user,passwd,NullS,0,NullS,0);
  508. }
  509. MYSQL * STDCALL
  510. mysql_real_connect(MYSQL *mysql,const char *host, const char *user,
  511.    const char *passwd, const char *db,
  512.    uint port, const char *unix_socket,uint client_flag)
  513. {
  514.   char buff[100],scramble_buff[9],*end,*host_info;
  515.   int sock;
  516.   ulong ip_addr;
  517.   struct sockaddr_in sock_addr;
  518.   uint pkt_length;
  519.   NET *net;
  520. #ifndef MSDOS
  521.   char *env;
  522.   int opt;
  523.   struct servent *serv_ptr;
  524. #endif
  525. #ifdef HAVE_SYS_UN_H
  526.   struct sockaddr_un UNIXaddr;
  527. #endif
  528.   DBUG_ENTER("mysql_connect");
  529. #ifndef DONT_USE_MYSQL_PWD
  530.   if (!passwd)
  531.     passwd=getenv("MYSQL_PWD");  /* read Password from environment (haneke) */
  532. #endif
  533.   if (!mysql_client_init)
  534.   {
  535.     mysql_client_init=1;
  536.     my_init();
  537.     init_client_errs();
  538.     if (!mysql_port)
  539.     {
  540.       mysql_port = MYSQL_PORT;
  541. #ifndef MSDOS
  542.       if ((serv_ptr = getservbyname("mysql", "tcp")))
  543. mysql_port = (uint) ntohs((ushort) serv_ptr->s_port);
  544.       if ((env = getenv("MYSQL_TCP_PORT")))
  545. mysql_port =(uint) atoi(env);
  546. #endif
  547.     }
  548. #ifndef MSDOS
  549.     if (!mysql_unix_port)
  550.     {
  551.       mysql_unix_port = MYSQL_UNIX_ADDR;
  552.       if ((env = getenv("MYSQL_UNIX_PORT")))
  553. mysql_unix_port = env;
  554.     }
  555. #endif
  556.     mysql_debug(NullS);
  557.   }
  558.   DBUG_PRINT("enter",("host: %s  db: %s",host ? host : "(Null)",
  559.       db ? db : "(Null)"));
  560.   if (!mysql)
  561.   {
  562.     if (!(mysql=(MYSQL*) my_malloc(sizeof(*mysql),MYF(MY_WME | MY_ZEROFILL))))
  563.       DBUG_RETURN(0);
  564.     mysql->free_me=1;
  565.   }
  566.   else
  567.     bzero(mysql,sizeof(*mysql));
  568.   remember_connection(mysql);
  569.   mysql->reconnect=1; /* Reconnect as default */
  570.   net= &mysql->net;
  571.   net->fd= -1; /* If something goes wrong */
  572.   if (!host && !(host=getenv("MYSQL_HOST")) || !host[0])
  573.     host=LOCAL_HOST;
  574.   /*
  575.   ** Grab a socket and connect it to the server
  576.   */
  577. #ifdef HAVE_SYS_UN_H
  578.   if (!strcmp(host,LOCAL_HOST) && (unix_socket || mysql_unix_port))
  579.   {
  580.     if (!unix_socket)
  581.       unix_socket=mysql_unix_port;
  582.     host_info=ER(CR_LOCALHOST_CONNECTION);
  583.     DBUG_PRINT("info",("Using UNIX sock '%s'",unix_socket));
  584.     if ((sock = socket(AF_UNIX,SOCK_STREAM,0)) == SOCKET_ERROR)
  585.     {
  586.       net->last_errno=CR_SOCKET_CREATE_ERROR;
  587.       strmov(net->last_error,ER(net->last_errno));
  588.       goto error;
  589.     }
  590.     net->fd=sock;
  591.     opt = 1;
  592.     (void) setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (char *)&opt,
  593.       sizeof(opt));
  594.     bzero(&UNIXaddr,sizeof(UNIXaddr));
  595.     UNIXaddr.sun_family = AF_UNIX;
  596.     strmov(UNIXaddr.sun_path, unix_socket);
  597.     if (connect(sock,(struct sockaddr *) &UNIXaddr, sizeof(UNIXaddr)) <0)
  598.     {
  599.       DBUG_PRINT("error",("Got error %d on connect to local server",ERRNO));
  600.       net->last_errno=CR_CONNECTION_ERROR;
  601.       strmov(net->last_error,ER(net->last_errno));
  602.       goto error;
  603.     }
  604.   }
  605.   else
  606. #endif
  607.   {
  608.     if (!port)
  609.       port=mysql_port;
  610.     sprintf(host_info=buff,ER(CR_TCP_CONNECTION),host);
  611.     DBUG_PRINT("info",("Server name: '%s'.  TCP sock: %d", host,port));
  612.     if ((sock = socket(AF_INET,SOCK_STREAM,0)) == SOCKET_ERROR)
  613.     {
  614.       net->last_errno=CR_IPSOCK_ERROR;
  615.       strmov(net->last_error,ER(net->last_errno));
  616.       goto error;
  617.     }
  618.     net->fd=sock;
  619. #ifndef MSDOS
  620.     opt = 1;
  621.     (void) setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (char *)&opt,
  622.       sizeof(opt));
  623. #endif
  624.     bzero(&sock_addr,sizeof(sock_addr));
  625.     sock_addr.sin_family = AF_INET;
  626.     /*
  627.     ** The server name may be a host name or IP address
  628.     */
  629.     if ((int) (ip_addr = inet_addr(host)) != (int) INADDR_NONE)
  630.     {
  631.       memcpy(&sock_addr.sin_addr,&ip_addr,sizeof(ip_addr));
  632.     }
  633.     else
  634. #if defined(HAVE_GETHOSTBYNAME_R) && defined(_REENTRANT) && defined(THREAD)
  635.     {
  636.       int tmp_errno;
  637.       struct hostent tmp_hostent,*hp;
  638.       char buff2[2048];
  639.       hp = gethostbyname_r(host,&tmp_hostent,buff2,sizeof(buff2),&tmp_errno);
  640.       if (!hp)
  641.       {
  642. net->last_errno=CR_UNKNOWN_HOST;
  643. sprintf(net->last_error, ER(CR_UNKNOWN_HOST), host, tmp_errno);
  644. goto error;
  645.       }
  646.       memcpy(&sock_addr.sin_addr,hp->h_addr, (size_t) hp->h_length);
  647.     }
  648. #else
  649.     {
  650.       struct hostent *hp;
  651.       if (!(hp=gethostbyname(host)))
  652.       {
  653. net->last_errno=CR_UNKNOWN_HOST;
  654. sprintf(net->last_error, ER(CR_UNKNOWN_HOST), host, errno);
  655. goto error;
  656.       }
  657.       memcpy(&sock_addr.sin_addr,hp->h_addr, (size_t) hp->h_length);
  658.     }
  659. #endif
  660.     sock_addr.sin_port = (ushort) htons((u_short) port);
  661.     if (connect(sock,(struct sockaddr *) &sock_addr, sizeof(sock_addr))<0)
  662.     {
  663.       DBUG_PRINT("error",("Got error %d on connect to '%s'",ERRNO,host));
  664.       net->last_errno= CR_CONN_HOST_ERROR;
  665.       sprintf(net->last_error ,ER(CR_CONN_HOST_ERROR), host, ERRNO);
  666.       goto error;
  667.     }
  668.   }
  669. #if defined(SIGPIPE)
  670.   (void) signal(SIGPIPE,SIG_IGN);
  671. #endif
  672.   DBUG_PRINT("info",("Connection socket %d",sock));
  673.   if (my_net_init(net,sock))
  674.     goto error;
  675.   /* Get version info */
  676.   mysql->protocol_version= PROTOCOL_VERSION; /* Assume this */
  677.   if ((pkt_length=net_safe_read(mysql)) == packet_error)
  678.     goto error;
  679.   /* Check if version of protocoll matches current one */
  680.   mysql->protocol_version= net->buff[0];
  681.   DBUG_DUMP("packet",(char*) net->buff,10);
  682.   DBUG_PRINT("info",("mysql protocol version %d, server=%d",
  683.      PROTOCOL_VERSION, mysql->protocol_version));
  684.   if (mysql->protocol_version != PROTOCOL_VERSION &&
  685.       mysql->protocol_version != PROTOCOL_VERSION-1)
  686.   {
  687.     net->last_errno= CR_VERSION_ERROR;
  688.     sprintf(net->last_error, ER(CR_VERSION_ERROR), mysql->protocol_version,
  689.     PROTOCOL_VERSION);
  690.     goto error;
  691.   }
  692.   end=strend((char*) net->buff+1);
  693.   mysql->thread_id=uint4korr(end+1);
  694.   end+=5;
  695.   strmov(scramble_buff,end);
  696.   if (pkt_length > (uint) (end+9 - (char*) net->buff))
  697.     mysql->server_capabilities=uint2korr(end+9);
  698.   /* Save connection information */
  699.   if (!user) user="";
  700.   if (!passwd) passwd="";
  701.   if (!my_multi_malloc(MYF(0),
  702.       &mysql->host_info,strlen(host_info)+1,
  703.       &mysql->host,strlen(host)+1,
  704.       &mysql->user,strlen(user)+1,
  705.       &mysql->passwd,strlen(passwd)+1,
  706.       &mysql->unix_socket,unix_socket ? strlen(unix_socket)+1
  707.       :1,
  708.       &mysql->server_version,(uint) (end - (char*) net->buff),
  709.       NullS))
  710.   {
  711.     strmov(net->last_error, ER(net->last_errno=CR_OUT_OF_MEMORY));
  712.     goto error;
  713.   }
  714.   strmov(mysql->host_info,host_info);
  715.   strmov(mysql->host,host);
  716.   strmov(mysql->user,user);
  717.   strmov(mysql->passwd,passwd);
  718.   if (unix_socket)
  719.     strmov(mysql->unix_socket,unix_socket);
  720.   else
  721.     mysql->unix_socket=0;
  722.   strmov(mysql->server_version,(char*) net->buff+1);
  723.   mysql->port=port;
  724.   mysql->client_flag=client_flag;
  725.   DBUG_PRINT("info",("Server version = '%s'",mysql->server_version));
  726.   /* Send client information for access check */
  727.   client_flag|=CLIENT_CAPABILITIES;
  728.   if (db)
  729.     client_flag|=CLIENT_CONNECT_WITH_DB;
  730.   int2store(buff,client_flag);
  731.   int3store(buff+2,max_allowed_packet);
  732.   if (user && user[0])
  733.     strmake(buff+5,user,32);
  734.   else
  735.     read_user_name((char*) buff+5);
  736.   DBUG_PRINT("info",("user: %s",buff+5));
  737.   end=scramble(strend(buff+5)+1, scramble_buff, passwd,
  738.        (my_bool) (mysql->protocol_version == 9));
  739.   if (db && (mysql->server_capabilities & CLIENT_CONNECT_WITH_DB))
  740.   {
  741.     end=strmov(end+1,db);
  742.     mysql->db=my_strdup(db,MYF(MY_WME));
  743.     db=0;
  744.   }
  745.   if (my_net_write(net,buff,(uint) (end-buff)) || net_flush(net) ||
  746.       net_safe_read(mysql) == packet_error)
  747.     goto error;
  748.   if (db && mysql_select_db(mysql,db))
  749.     goto error;
  750.   DBUG_PRINT("exit",("Mysql handler: %lx",mysql));
  751.   DBUG_RETURN(mysql);
  752. error:
  753.   DBUG_PRINT("error",("message: %u (%s)",net->last_errno,net->last_error));
  754.   end_server(mysql);
  755.   if (mysql->free_me)
  756.     my_free((gptr) mysql,MYF(0));
  757.   DBUG_RETURN(0);
  758. }
  759. /**************************************************************************
  760. ** Set current database
  761. **************************************************************************/
  762. int STDCALL
  763. mysql_select_db(MYSQL *mysql, const char *db)
  764. {
  765.   int error;
  766.   DBUG_ENTER("mysql_select_db");
  767.   DBUG_PRINT("enter",("db: '%s'",db));
  768.   if ((error=simple_command(mysql,COM_INIT_DB,db,strlen(db),0)))
  769.     DBUG_RETURN(error);
  770.   my_free(mysql->db,MYF(MY_ALLOW_ZERO_PTR));
  771.   mysql->db=my_strdup(db,MYF(MY_WME));
  772.   DBUG_RETURN(0);
  773. }
  774. /*************************************************************************
  775. ** Send a QUIT to the server and close the connection
  776. ** If handle is alloced by mysql connect free it.
  777. *************************************************************************/
  778. void STDCALL
  779. mysql_close(MYSQL *mysql)
  780. {
  781.   DBUG_ENTER("mysql_close");
  782.   if (mysql) /* Some simple safety */
  783.   {
  784.     if (mysql->net.fd >= 0)
  785.     {
  786.       free_old_query(mysql);
  787.       mysql->status=MYSQL_STATUS_READY; /* Force command */
  788.       simple_command(mysql,COM_QUIT,NullS,0,1);
  789.       end_server(mysql);
  790.     }
  791.     my_free((gptr) mysql->host_info,MYF(MY_ALLOW_ZERO_PTR));
  792.     my_free(mysql->db,MYF(MY_ALLOW_ZERO_PTR));
  793.     mysql->host_info=mysql->db=0;
  794.     if (mysql->free_me)
  795.       my_free((gptr) mysql,MYF(0));
  796.   }
  797.   DBUG_VOID_RETURN;
  798. }
  799. /**************************************************************************
  800. ** Do a query. If query returned rows, free old rows.
  801. ** Read data by mysql_store_result or by repeat call of mysql_fetch_row
  802. **************************************************************************/
  803. int STDCALL
  804. mysql_query(MYSQL *mysql, const char *query)
  805. {
  806.   return mysql_real_query(mysql,query,strlen(query));
  807. }
  808. int STDCALL
  809. mysql_real_query(MYSQL *mysql, const char *query,uint length)
  810. {
  811.   uchar *pos;
  812.   uint field_count;
  813.   MYSQL_DATA *fields;
  814.   DBUG_ENTER("mysql_real_query");
  815.   DBUG_PRINT("enter",("handle: %lx",mysql));
  816.   DBUG_PRINT("query",("Query = "%s"",query));
  817.   if (simple_command(mysql,COM_QUERY,query,length,1) ||
  818.       (length=net_safe_read(mysql)) == packet_error)
  819.     DBUG_RETURN(-1);
  820.   free_old_query(mysql); /* Free old result */
  821.   pos=(uchar*) mysql->net.buff;
  822.   if ((field_count=(uint) net_field_length(&pos)) == 0)
  823.   {
  824.     mysql->affected_rows= net_field_length(&pos);
  825.     mysql->insert_id=   net_field_length(&pos);
  826.     if (pos < mysql->net.buff+length && net_field_length(&pos))
  827.       mysql->info=(char*) pos;
  828.     DBUG_RETURN(0);
  829.   }
  830.   mysql->extra_info= net_field_length(&pos); /* Maybe number of rec */
  831.   if (!(fields=read_rows(mysql,(MYSQL_FIELD*) 0,5)))
  832.     DBUG_RETURN(-1);
  833.   if (!(mysql->fields=unpack_fields(fields,&mysql->field_alloc,field_count,0,
  834.     (my_bool) test(mysql->server_capabilities &
  835. CLIENT_LONG_FLAG))))
  836.     DBUG_RETURN(-1);
  837.   mysql->status=MYSQL_STATUS_GET_RESULT;
  838.   mysql->field_count=field_count;
  839.   DBUG_RETURN(0);
  840. }
  841. /**************************************************************************
  842. ** Alloc result struct for buffered results. All rows are read to buffer.
  843. ** mysql_data_seek may be used.
  844. **************************************************************************/
  845. MYSQL_RES * STDCALL
  846. mysql_store_result(MYSQL *mysql)
  847. {
  848.   MYSQL_RES *result;
  849.   DBUG_ENTER("mysql_store_result");
  850.   if (!mysql->fields)
  851.     DBUG_RETURN(0);
  852.   if (mysql->status != MYSQL_STATUS_GET_RESULT)
  853.   {
  854.     strmov(mysql->net.last_error,
  855.    ER(mysql->net.last_errno=CR_COMMANDS_OUT_OF_SYNC));
  856.     DBUG_RETURN(0);
  857.   }
  858.   mysql->status=MYSQL_STATUS_READY; /* server is ready */
  859.   if (!(result=(MYSQL_RES*) my_malloc(sizeof(MYSQL_RES)+
  860.       sizeof(uint)*mysql->field_count,
  861.       MYF(MY_WME | MY_ZEROFILL))))
  862.   {
  863.     mysql->net.last_errno=CR_OUT_OF_MEMORY;
  864.     strmov(mysql->net.last_error, ER(mysql->net.last_errno));
  865.     DBUG_RETURN(0);
  866.   }
  867.   result->eof=1; /* Marker for buffered */
  868.   result->lengths=(uint*) (result+1);
  869.   if (!(result->data=read_rows(mysql,mysql->fields,mysql->field_count)))
  870.   {
  871.     my_free((gptr) result,MYF(0));
  872.     DBUG_RETURN(0);
  873.   }
  874.   mysql->affected_rows= result->row_count=result->data->rows;
  875.   result->data_cursor= result->data->data;
  876.   result->fields= mysql->fields;
  877.   result->field_alloc= mysql->field_alloc;
  878.   result->field_count= mysql->field_count;
  879.   result->current_field=0;
  880.   result->current_row=0; /* Must do a fetch first */
  881.   mysql->fields=0; /* fields is now in result */
  882.   DBUG_RETURN(result); /* Data fetched */
  883. }
  884. /**************************************************************************
  885. ** Alloc struct for use with unbuffered reads. Data is fetched by domand
  886. ** when calling to mysql_fetch_row.
  887. ** mysql_data_seek is a noop.
  888. **
  889. ** No other queries may be specified with the same MYSQL handle.
  890. ** There shouldn't be much processing per row because mysql server shouldn't
  891. ** have to wait for the client (and will not wait more than 30 sec/packet).
  892. **************************************************************************/
  893. MYSQL_RES * STDCALL
  894. mysql_use_result(MYSQL *mysql)
  895. {
  896.   MYSQL_RES *result;
  897.   DBUG_ENTER("mysql_use_result");
  898.   if (!mysql->fields)
  899.     DBUG_RETURN(0);
  900.   if (mysql->status != MYSQL_STATUS_GET_RESULT)
  901.   {
  902.     strmov(mysql->net.last_error,
  903.    ER(mysql->net.last_errno=CR_COMMANDS_OUT_OF_SYNC));
  904.     DBUG_RETURN(0);
  905.   }
  906.   if (!(result=(MYSQL_RES*) my_malloc(sizeof(MYSQL_RES)+
  907.       sizeof(uint)*mysql->field_count,
  908.       MYF(MY_WME | MY_ZEROFILL))))
  909.     DBUG_RETURN(0);
  910.   result->lengths=(uint*) (result+1);
  911.   if (!(result->row=(MYSQL_ROW)
  912. my_malloc(sizeof(result->row[0])*(mysql->field_count+1), MYF(MY_WME))))
  913.   { /* Ptrs: to one row */
  914.     my_free((gptr) result,MYF(0));
  915.     DBUG_RETURN(0);
  916.   }
  917.   result->fields= mysql->fields;
  918.   result->field_alloc= mysql->field_alloc;
  919.   result->field_count= mysql->field_count;
  920.   result->current_field=0;
  921.   result->handle= mysql;
  922.   result->current_row= 0;
  923.   mysql->fields=0; /* fields is now in result */
  924.   mysql->status=MYSQL_STATUS_USE_RESULT;
  925.   DBUG_RETURN(result); /* Data is read to be fetched */
  926. }
  927. /**************************************************************************
  928. ** Return next field of the query results
  929. **************************************************************************/
  930. MYSQL_FIELD * STDCALL
  931. mysql_fetch_field(MYSQL_RES *result)
  932. {
  933.   if (result->current_field >= result->field_count)
  934.     return(NULL);
  935.   return &result->fields[result->current_field++];
  936. }
  937. /**************************************************************************
  938. **  Return next row of the query results
  939. **************************************************************************/
  940. MYSQL_ROW STDCALL
  941. mysql_fetch_row(MYSQL_RES *res)
  942. {
  943.   if (!res->data)
  944.   { /* Unbufferred fetch */
  945.     int error;
  946.     if (!res->eof)
  947.     {
  948.       if (!(error=read_one_row(res->handle,res->field_count,res->row,
  949.        res->lengths)))
  950.       {
  951. res->row_count++;
  952. return (res->current_row=res->row);
  953.       }
  954.       else
  955.       {
  956. res->eof=1;
  957. res->handle->status=MYSQL_STATUS_READY;
  958.       }
  959.     }
  960.     return (MYSQL_ROW) NULL;
  961.   }
  962.   else
  963.   {
  964.     MYSQL_ROW tmp;
  965.     if (!res->data_cursor)
  966.       return (res->current_row=(MYSQL_ROW) NULL);
  967.     tmp = res->data_cursor->data;
  968.     res->data_cursor = res->data_cursor->next;
  969.     return (res->current_row=tmp);
  970.   }
  971. }
  972. /**************************************************************************
  973. ** Get column lengths of the current row
  974. ** If one uses mysql_use_result, res->lengths contains the length information,
  975. ** else the lengths are calculated from the offset between pointers.
  976. **************************************************************************/
  977. uint * STDCALL
  978. mysql_fetch_lengths(MYSQL_RES *res)
  979. {
  980.   uint *lengths,*prev_length;
  981.   byte *start;
  982.   MYSQL_ROW column,end;
  983.   if (!(column=res->current_row))
  984.     return 0; /* Something is wrong */
  985.   if (res->data)
  986.   {
  987.     start=0;
  988.     prev_length=0; /* Keep gcc happy */
  989.     lengths=res->lengths;
  990.     for (end=column+res->field_count+1 ; column != end ; column++,lengths++)
  991.     {
  992.       if (!*column)
  993.       {
  994. *lengths=0; /* Null */
  995. continue;
  996.       }
  997.       if (start) /* Found end of prev string */
  998. *prev_length= (uint) (*column-start-1);
  999.       start= *column;
  1000.       prev_length=lengths;
  1001.     }
  1002.   }
  1003.   return res->lengths;
  1004. }
  1005. /**************************************************************************
  1006. ** Move to a specific row and column
  1007. **************************************************************************/
  1008. void STDCALL
  1009. mysql_data_seek(MYSQL_RES *result, uint row)
  1010. {
  1011.   MYSQL_ROWS *tmp=0;
  1012.   DBUG_PRINT("info",("mysql_data_seek(%d)",row));
  1013.   if (result->data)
  1014.     for (tmp=result->data->data; row-- && tmp ; tmp = tmp->next) ;
  1015.   result->current_row=0;
  1016.   result->data_cursor = tmp;
  1017. }
  1018. /*************************************************************************
  1019. ** put the row or field cursor at the saved position.
  1020. ** This dosen't restore any data. The next mysql_fetch_row or
  1021. ** mysql_fetch_field will return the next row or field after the last used
  1022. *************************************************************************/
  1023. MYSQL_ROW_OFFSET STDCALL
  1024. mysql_row_seek(MYSQL_RES *result, MYSQL_ROW_OFFSET row)
  1025. {
  1026.   MYSQL_ROW_OFFSET return_value=result->data_cursor;
  1027.   result->current_row= 0;
  1028.   result->data_cursor= row;
  1029.   return return_value;
  1030. }
  1031. MYSQL_FIELD_OFFSET STDCALL
  1032. mysql_field_seek(MYSQL_RES *result, uint fieldnr)
  1033. {
  1034.   MYSQL_FIELD_OFFSET return_value=result->current_field;
  1035.   result->current_field=fieldnr;
  1036.   return return_value;
  1037. }
  1038. /*****************************************************************************
  1039. ** List all databases
  1040. *****************************************************************************/
  1041. MYSQL_RES * STDCALL
  1042. mysql_list_dbs(MYSQL *mysql, const char *wild)
  1043. {
  1044.   char buff[100];
  1045.   DBUG_ENTER("mysql_list_dbs");
  1046.   append_wild(strmov(buff,"show databases"),buff+sizeof(buff),wild);
  1047.   if (mysql_query(mysql,buff) < 0)
  1048.     DBUG_RETURN(0);
  1049.   DBUG_RETURN (mysql_store_result(mysql));
  1050. }
  1051. /*****************************************************************************
  1052. ** List all tables in a database
  1053. ** If wild is given then only the tables matching wild is returned
  1054. *****************************************************************************/
  1055. MYSQL_RES * STDCALL
  1056. mysql_list_tables(MYSQL *mysql, const char *wild)
  1057. {
  1058.   char buff[100];
  1059.   DBUG_ENTER("mysql_list_tables");
  1060.   append_wild(strmov(buff,"show tables"),buff+sizeof(buff),wild);
  1061.   if (mysql_query(mysql,buff) < 0)
  1062.     DBUG_RETURN(0);
  1063.   DBUG_RETURN (mysql_store_result(mysql));
  1064. }
  1065. /**************************************************************************
  1066. ** List all fields in a table
  1067. ** If wild is given then only the fields matching wild is returned
  1068. ** Instead of this use query:
  1069. ** show fields in 'table' like "wild"
  1070. **************************************************************************/
  1071. MYSQL_RES * STDCALL
  1072. mysql_list_fields(MYSQL *mysql, const char *table, const char *wild)
  1073. {
  1074.   MYSQL_RES *result;
  1075.   MYSQL_DATA *query;
  1076.   char      buff[257],*end;
  1077.   DBUG_ENTER("mysql_list_fields");
  1078.   DBUG_PRINT("enter",("table: '%s'  wild: '%s'",table,wild ? wild : ""));
  1079.   LINT_INIT(query);
  1080.   end=strmake(strmake(buff, table,128)+1,wild ? wild : "",128);
  1081.   if (simple_command(mysql,COM_FIELD_LIST,buff,(uint) (end-buff),1) ||
  1082.       !(query = read_rows(mysql,(MYSQL_FIELD*) 0,6)))
  1083.     DBUG_RETURN(NULL);
  1084.   free_old_query(mysql);
  1085.   if (!(result = (MYSQL_RES *) my_malloc(sizeof(MYSQL_RES),
  1086.  MYF(MY_WME | MY_ZEROFILL))))
  1087.   {
  1088.     free_rows(query);
  1089.     DBUG_RETURN(NULL);
  1090.   }
  1091.   result->field_alloc=mysql->field_alloc;
  1092.   mysql->fields=0;
  1093.   result->field_count = query->rows;
  1094.   result->fields= unpack_fields(query,&result->field_alloc,
  1095. result->field_count,1,
  1096. (my_bool) test(mysql->server_capabilities &
  1097.        CLIENT_LONG_FLAG));
  1098.   result->eof=1;
  1099.   DBUG_RETURN(result);
  1100. }
  1101. /* List all running processes (threads) in server */
  1102. MYSQL_RES * STDCALL
  1103. mysql_list_processes(MYSQL *mysql)
  1104. {
  1105.   MYSQL_DATA *fields;
  1106.   uint field_count;
  1107.   uchar *pos;
  1108.   DBUG_ENTER("mysql_list_processes");
  1109.   LINT_INIT(fields);
  1110.   if (simple_command(mysql,COM_PROCESS_INFO,0,0,0))
  1111.     DBUG_RETURN(0);
  1112.   free_old_query(mysql);
  1113.   pos=(uchar*) mysql->net.buff;
  1114.   field_count=(uint) net_field_length(&pos);
  1115.   if (!(fields = read_rows(mysql,(MYSQL_FIELD*) 0,5)))
  1116.     DBUG_RETURN(NULL);
  1117.   if (!(mysql->fields=unpack_fields(fields,&mysql->field_alloc,field_count,0,
  1118.     (my_bool) test(mysql->server_capabilities &
  1119.    CLIENT_LONG_FLAG))))
  1120.     DBUG_RETURN(0);
  1121.   mysql->status=MYSQL_STATUS_GET_RESULT;
  1122.   mysql->field_count=field_count;
  1123.   DBUG_RETURN(mysql_store_result(mysql));
  1124. }
  1125. int  STDCALL
  1126. mysql_create_db(MYSQL *mysql, const char *db)
  1127. {
  1128.   DBUG_ENTER("mysql_createdb");
  1129.   DBUG_PRINT("enter",("db: %s",db));
  1130.   DBUG_RETURN(simple_command(mysql,COM_CREATE_DB,db, (uint) strlen(db),0));
  1131. }
  1132. int  STDCALL
  1133. mysql_drop_db(MYSQL *mysql, const char *db)
  1134. {
  1135.   DBUG_ENTER("mysql_drop_db");
  1136.   DBUG_PRINT("enter",("db: %s",db));
  1137.   DBUG_RETURN(simple_command(mysql,COM_DROP_DB,db,(uint) strlen(db),0));
  1138. }
  1139. int STDCALL
  1140. mysql_shutdown(MYSQL *mysql)
  1141. {
  1142.   DBUG_ENTER("mysql_shutdown");
  1143.   DBUG_RETURN(simple_command(mysql,COM_SHUTDOWN,0,0,0));
  1144. }
  1145. int STDCALL
  1146. mysql_refresh(MYSQL *mysql,uint options)
  1147. {
  1148.   uchar bits[1];
  1149.   DBUG_ENTER("mysql_refresh");
  1150.   bits[0]= (uchar) options;
  1151.   DBUG_RETURN(simple_command(mysql,COM_REFRESH,(char*) bits,1,0));
  1152. }
  1153. int STDCALL
  1154. mysql_kill(MYSQL *mysql,ulong pid)
  1155. {
  1156.   char buff[4];
  1157.   DBUG_ENTER("mysql_kill");
  1158.   int4store(buff,pid);
  1159.   DBUG_RETURN(simple_command(mysql,COM_PROCESS_KILL,buff,4,0));
  1160. }
  1161. int STDCALL
  1162. mysql_dump_debug_info(MYSQL *mysql)
  1163. {
  1164.   DBUG_ENTER("mysql_dump_debug_info");
  1165.   DBUG_RETURN(simple_command(mysql,COM_DEBUG,0,0,0));
  1166. }
  1167. char * STDCALL
  1168. mysql_stat(MYSQL *mysql)
  1169. {
  1170.   DBUG_ENTER("mysql_stat");
  1171.   if (simple_command(mysql,COM_STATISTICS,0,0,0))
  1172.     return mysql->net.last_error;
  1173.   if (!mysql->net.buff[0])
  1174.   {
  1175.     mysql->net.last_errno=CR_WRONG_HOST_INFO;
  1176.     strmov(mysql->net.last_error, ER(mysql->net.last_errno));
  1177.     return mysql->net.last_error;
  1178.   }
  1179.   DBUG_RETURN((char*) mysql->net.buff);
  1180. }
  1181. char * STDCALL
  1182. mysql_get_server_info(MYSQL *mysql)
  1183. {
  1184.   return((char*) mysql->server_version);
  1185. }
  1186. char * STDCALL
  1187. mysql_get_host_info(MYSQL *mysql)
  1188. {
  1189.   return(mysql->host_info);
  1190. }
  1191. uint STDCALL
  1192. mysql_get_proto_info(MYSQL *mysql)
  1193. {
  1194.   return (mysql->protocol_version);
  1195. }
  1196. char * STDCALL
  1197. mysql_get_client_info(void)
  1198. {
  1199.   return MYSQL_SERVER_VERSION;
  1200. }
  1201. /****************************************************************************
  1202. ** Some support functions
  1203. ****************************************************************************/
  1204. /*
  1205. ** Add escape characters to a string (blob?) to make it suitable for a insert
  1206. ** to should at least have place for length*2+1 chars
  1207. ** Returns the length of the to string
  1208. */
  1209. uint STDCALL
  1210. mysql_escape_string(char *to,const char *from,uint length)
  1211. {
  1212.   const char *to_start=to;
  1213.   const char *end;
  1214.   for (end=from+length; from != end ; from++)
  1215.   {
  1216. #ifdef USE_BIG5CODE
  1217.     if (from+1 != end && isbig5head(*from))
  1218.     {
  1219.       *to++= *from++;
  1220.       *to++= *from;
  1221.       continue;
  1222.     }
  1223. #endif
  1224. #ifdef USE_MB
  1225.     int l;
  1226.     if ((l = ismbchar(from, end)))
  1227.     {
  1228.       while (l--)
  1229.           *to++ = *from++;
  1230.       from--;
  1231.       continue;
  1232.     }
  1233. #endif
  1234.     switch (*from) {
  1235.     case 0: /* Must be escaped for 'mysql' */
  1236.       *to++= '\';
  1237.       *to++= '0';
  1238.       break;
  1239.     case 'n': /* Must be escaped for logs */
  1240.       *to++= '\';
  1241.       *to++= 'n';
  1242.       break;
  1243.     case 'r':
  1244.       *to++= '\';
  1245.       *to++= 'r';
  1246.       break;
  1247.     case '\':
  1248.       *to++= '\';
  1249.       *to++= '\';
  1250.       break;
  1251.     case ''':
  1252.       *to++= ''';
  1253.       *to++= ''';
  1254.       break;
  1255.     default:
  1256.       *to++= *from;
  1257.     }
  1258.   }
  1259.   *to=0;
  1260.   return (uint) (to-to_start);
  1261. }