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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB & Sasha
  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. #include "mysql_priv.h"
  14. #ifdef HAVE_REPLICATION
  15. #include "sql_repl.h"
  16. #include "log_event.h"
  17. #include <my_dir.h>
  18. int max_binlog_dump_events = 0; // unlimited
  19. my_bool opt_sporadic_binlog_dump_fail = 0;
  20. static int binlog_dump_count = 0;
  21. int check_binlog_magic(IO_CACHE* log, const char** errmsg)
  22. {
  23.   char magic[4];
  24.   DBUG_ASSERT(my_b_tell(log) == 0);
  25.   if (my_b_read(log, (byte*) magic, sizeof(magic)))
  26.   {
  27.     *errmsg = "I/O error reading the header from the binary log";
  28.     sql_print_error("%s, errno=%d, io cache code=%d", *errmsg, my_errno,
  29.     log->error);
  30.     return 1;
  31.   }
  32.   if (memcmp(magic, BINLOG_MAGIC, sizeof(magic)))
  33.   {
  34.     *errmsg = "Binlog has bad magic number;  It's not a binary log file that can be used by this version of MySQL";
  35.     return 1;
  36.   }
  37.   return 0;
  38. }
  39. static int fake_rotate_event(NET* net, String* packet, char* log_file_name,
  40.                              ulonglong position, const char**errmsg)
  41. {
  42.   char header[LOG_EVENT_HEADER_LEN], buf[ROTATE_HEADER_LEN];
  43.   memset(header, 0, 4); // when does not matter
  44.   header[EVENT_TYPE_OFFSET] = ROTATE_EVENT;
  45.   char* p = log_file_name+dirname_length(log_file_name);
  46.   uint ident_len = (uint) strlen(p);
  47.   ulong event_len = ident_len + ROTATE_EVENT_OVERHEAD;
  48.   int4store(header + SERVER_ID_OFFSET, server_id);
  49.   int4store(header + EVENT_LEN_OFFSET, event_len);
  50.   int2store(header + FLAGS_OFFSET, 0);
  51.   
  52.   // TODO: check what problems this may cause and fix them
  53.   int4store(header + LOG_POS_OFFSET, 0);
  54.   
  55.   packet->append(header, sizeof(header));
  56.   int8store(buf+R_POS_OFFSET,position);
  57.   packet->append(buf, ROTATE_HEADER_LEN);
  58.   packet->append(p,ident_len);
  59.   if (my_net_write(net, (char*)packet->ptr(), packet->length()))
  60.   {
  61.     *errmsg = "failed on my_net_write()";
  62.     return -1;
  63.   }
  64.   return 0;
  65. }
  66. static int send_file(THD *thd)
  67. {
  68.   NET* net = &thd->net;
  69.   int fd = -1,bytes, error = 1;
  70.   char fname[FN_REFLEN+1];
  71.   const char *errmsg = 0;
  72.   int old_timeout;
  73.   unsigned long packet_len;
  74.   char buf[IO_SIZE]; // It's safe to alloc this
  75.   DBUG_ENTER("send_file");
  76.   /*
  77.     The client might be slow loading the data, give him wait_timeout to do
  78.     the job
  79.   */
  80.   old_timeout = thd->net.read_timeout;
  81.   thd->net.read_timeout = thd->variables.net_wait_timeout;
  82.   /*
  83.     We need net_flush here because the client will not know it needs to send
  84.     us the file name until it has processed the load event entry
  85.   */
  86.   if (net_flush(net) || (packet_len = my_net_read(net)) == packet_error)
  87.   {
  88.     errmsg = "while reading file name";
  89.     goto err;
  90.   }
  91.   // terminate with  for fn_format
  92.   *((char*)net->read_pos +  packet_len) = 0;
  93.   fn_format(fname, (char*) net->read_pos + 1, "", "", 4);
  94.   // this is needed to make replicate-ignore-db
  95.   if (!strcmp(fname,"/dev/null"))
  96.     goto end;
  97.   if ((fd = my_open(fname, O_RDONLY, MYF(0))) < 0)
  98.   {
  99.     errmsg = "on open of file";
  100.     goto err;
  101.   }
  102.   while ((bytes = (int) my_read(fd, (byte*) buf, IO_SIZE, MYF(0))) > 0)
  103.   {
  104.     if (my_net_write(net, buf, bytes))
  105.     {
  106.       errmsg = "while writing data to client";
  107.       goto err;
  108.     }
  109.   }
  110.  end:
  111.   if (my_net_write(net, "", 0) || net_flush(net) ||
  112.       (my_net_read(net) == packet_error))
  113.   {
  114.     errmsg = "while negotiating file transfer close";
  115.     goto err;
  116.   }
  117.   error = 0;
  118.  err:
  119.   thd->net.read_timeout = old_timeout;
  120.   if (fd >= 0)
  121.     (void) my_close(fd, MYF(0));
  122.   if (errmsg)
  123.   {
  124.     sql_print_error("Failed in send_file() %s", errmsg);
  125.     DBUG_PRINT("error", (errmsg));
  126.   }
  127.   DBUG_RETURN(error);
  128. }
  129. File open_binlog(IO_CACHE *log, const char *log_file_name,
  130.  const char **errmsg)
  131. {
  132.   File file;
  133.   DBUG_ENTER("open_binlog");
  134.   if ((file = my_open(log_file_name, O_RDONLY | O_BINARY | O_SHARE,
  135.                       MYF(MY_WME))) < 0)
  136.   {
  137.     sql_print_error("Failed to open log (
  138. file '%s', errno %d)", log_file_name, my_errno);
  139.     *errmsg = "Could not open log file"; // This will not be sent
  140.     goto err;
  141.   }
  142.   if (init_io_cache(log, file, IO_SIZE*2, READ_CACHE, 0, 0,
  143.     MYF(MY_WME | MY_DONT_CHECK_FILESIZE)))
  144.   {
  145.     sql_print_error("Failed to create a cache on log (
  146. file '%s')", log_file_name);
  147.     *errmsg = "Could not open log file"; // This will not be sent
  148.     goto err;
  149.   }
  150.   if (check_binlog_magic(log,errmsg))
  151.     goto err;
  152.   DBUG_RETURN(file);
  153. err:
  154.   if (file >= 0)
  155.   {
  156.     my_close(file,MYF(0));
  157.     end_io_cache(log);
  158.   }
  159.   DBUG_RETURN(-1);
  160. }
  161. /*
  162.   Adjust the position pointer in the binary log file for all running slaves
  163.   SYNOPSIS
  164.     adjust_linfo_offsets()
  165.     purge_offset Number of bytes removed from start of log index file
  166.   NOTES
  167.     - This is called when doing a PURGE when we delete lines from the
  168.       index log file
  169.   REQUIREMENTS
  170.     - Before calling this function, we have to ensure that no threads are
  171.       using any binary log file before purge_offset.a
  172.   TODO
  173.     - Inform the slave threads that they should sync the position
  174.       in the binary log file with flush_relay_log_info.
  175.       Now they sync is done for next read.
  176. */
  177. void adjust_linfo_offsets(my_off_t purge_offset)
  178. {
  179.   THD *tmp;
  180.   pthread_mutex_lock(&LOCK_thread_count);
  181.   I_List_iterator<THD> it(threads);
  182.   while ((tmp=it++))
  183.   {
  184.     LOG_INFO* linfo;
  185.     if ((linfo = tmp->current_linfo))
  186.     {
  187.       pthread_mutex_lock(&linfo->lock);
  188.       /*
  189. Index file offset can be less that purge offset only if
  190. we just started reading the index file. In that case
  191. we have nothing to adjust
  192.       */
  193.       if (linfo->index_file_offset < purge_offset)
  194. linfo->fatal = (linfo->index_file_offset != 0);
  195.       else
  196. linfo->index_file_offset -= purge_offset;
  197.       pthread_mutex_unlock(&linfo->lock);
  198.     }
  199.   }
  200.   pthread_mutex_unlock(&LOCK_thread_count);
  201. }
  202. bool log_in_use(const char* log_name)
  203. {
  204.   int log_name_len = strlen(log_name) + 1;
  205.   THD *tmp;
  206.   bool result = 0;
  207.   pthread_mutex_lock(&LOCK_thread_count);
  208.   I_List_iterator<THD> it(threads);
  209.   while ((tmp=it++))
  210.   {
  211.     LOG_INFO* linfo;
  212.     if ((linfo = tmp->current_linfo))
  213.     {
  214.       pthread_mutex_lock(&linfo->lock);
  215.       result = !bcmp(log_name, linfo->log_file_name, log_name_len);
  216.       pthread_mutex_unlock(&linfo->lock);
  217.       if (result)
  218. break;
  219.     }
  220.   }
  221.   pthread_mutex_unlock(&LOCK_thread_count);
  222.   return result;
  223. }
  224. int purge_error_message(THD* thd, int res)
  225. {
  226.   const char *errmsg= 0;
  227.   switch (res)  {
  228.   case 0: break;
  229.   case LOG_INFO_EOF: errmsg= "Target log not found in binlog index"; break;
  230.   case LOG_INFO_IO: errmsg= "I/O error reading log index file"; break;
  231.   case LOG_INFO_INVALID:
  232.     errmsg= "Server configuration does not permit binlog purge"; break;
  233.   case LOG_INFO_SEEK: errmsg= "Failed on fseek()"; break;
  234.   case LOG_INFO_MEM: errmsg= "Out of memory"; break;
  235.   case LOG_INFO_FATAL: errmsg= "Fatal error during purge"; break;
  236.   case LOG_INFO_IN_USE: errmsg= "A purgeable log is in use, will not purge";
  237.     break;
  238.   default: errmsg= "Unknown error during purge"; break;
  239.   }
  240.   if (errmsg)
  241.   {
  242.     send_error(thd, 0, errmsg);
  243.     return 1;
  244.   }
  245.   send_ok(thd);
  246.   return 0;
  247. }
  248. int purge_master_logs(THD* thd, const char* to_log)
  249. {
  250.   char search_file_name[FN_REFLEN];
  251.   if (!mysql_bin_log.is_open())
  252.   {
  253.     send_ok(thd);
  254.     return 0;
  255.   }
  256.   mysql_bin_log.make_log_name(search_file_name, to_log);
  257.   return purge_error_message(thd,
  258.      mysql_bin_log.purge_logs(search_file_name, 0, 1,
  259.       1, NULL));
  260. }
  261. int purge_master_logs_before_date(THD* thd, time_t purge_time)
  262. {
  263.   if (!mysql_bin_log.is_open())
  264.   {
  265.     send_ok(thd);
  266.     return 0;
  267.   }
  268.   return purge_error_message(thd,
  269.                              mysql_bin_log.purge_logs_before_date(purge_time));
  270. }
  271. /*
  272.   TODO: Clean up loop to only have one call to send_file()
  273. */
  274. void mysql_binlog_send(THD* thd, char* log_ident, my_off_t pos,
  275.        ushort flags)
  276. {
  277.   LOG_INFO linfo;
  278.   char *log_file_name = linfo.log_file_name;
  279.   char search_file_name[FN_REFLEN], *name;
  280.   IO_CACHE log;
  281.   File file = -1;
  282.   String* packet = &thd->packet;
  283.   int error;
  284.   const char *errmsg = "Unknown error";
  285.   NET* net = &thd->net;
  286. #ifndef DBUG_OFF
  287.   int left_events = max_binlog_dump_events;
  288. #endif
  289.   DBUG_ENTER("mysql_binlog_send");
  290.   DBUG_PRINT("enter",("log_ident: '%s'  pos: %ld", log_ident, (long) pos));
  291.   bzero((char*) &log,sizeof(log));
  292. #ifndef DBUG_OFF
  293.   if (opt_sporadic_binlog_dump_fail && (binlog_dump_count++ % 2))
  294.   {
  295.     errmsg = "Master failed COM_BINLOG_DUMP to test if slave can recover";
  296.     my_errno= ER_UNKNOWN_ERROR;
  297.     goto err;
  298.   }
  299. #endif
  300.   if (!mysql_bin_log.is_open())
  301.   {
  302.     errmsg = "Binary log is not open";
  303.     my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  304.     goto err;
  305.   }
  306.   if (!server_id_supplied)
  307.   {
  308.     errmsg = "Misconfigured master - server id was not set";
  309.     my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  310.     goto err;
  311.   }
  312.   name=search_file_name;
  313.   if (log_ident[0])
  314.     mysql_bin_log.make_log_name(search_file_name, log_ident);
  315.   else
  316.     name=0; // Find first log
  317.   linfo.index_file_offset = 0;
  318.   thd->current_linfo = &linfo;
  319.   if (mysql_bin_log.find_log_pos(&linfo, name, 1))
  320.   {
  321.     errmsg = "Could not find first log file name in binary log index file";
  322.     my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  323.     goto err;
  324.   }
  325.   if ((file=open_binlog(&log, log_file_name, &errmsg)) < 0)
  326.   {
  327.     my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  328.     goto err;
  329.   }
  330.   if (pos < BIN_LOG_HEADER_SIZE || pos > my_b_filelength(&log))
  331.   {
  332.     errmsg= "Client requested master to start replication from 
  333. impossible position";
  334.     my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  335.     goto err;
  336.   }
  337.   my_b_seek(&log, pos); // Seek will done on next read
  338.   /*
  339.     We need to start a packet with something other than 255
  340.     to distiquish it from error
  341.   */
  342.   packet->set("", 1, &my_charset_bin);
  343.   /*
  344.     Before 4.0.14 we called fake_rotate_event below only if 
  345.     (pos == BIN_LOG_HEADER_SIZE), because if this is false then the slave
  346.     already knows the binlog's name.
  347.     Now we always call fake_rotate_event; if the slave already knew the log's
  348.     name (ex: CHANGE MASTER TO MASTER_LOG_FILE=...) this is useless but does
  349.     not harm much. It is nice for 3.23 (>=.58) slaves which test Rotate events
  350.     to see if the master is 4.0 (then they choose to stop because they can't
  351.     replicate 4.0); by always calling fake_rotate_event we are sure that
  352.     3.23.58 and newer will detect the problem as soon as replication starts
  353.     (BUG#198).
  354.     Always calling fake_rotate_event makes sending of normal
  355.     (=from-binlog) Rotate events a priori unneeded, but it is not so simple:
  356.     the 2 Rotate events are not equivalent, the normal one is before the Stop
  357.     event, the fake one is after. If we don't send the normal one, then the
  358.     Stop event will be interpreted (by existing 4.0 slaves) as "the master
  359.     stopped", which is wrong. So for safety, given that we want minimum
  360.     modification of 4.0, we send the normal and fake Rotates.
  361.   */
  362.   if (fake_rotate_event(net, packet, log_file_name, pos, &errmsg))
  363.   {
  364.     my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  365.     goto err;
  366.   }
  367.   packet->set("", 1, &my_charset_bin);
  368.   while (!net->error && net->vio != 0 && !thd->killed)
  369.   {
  370.     pthread_mutex_t *log_lock = mysql_bin_log.get_log_lock();
  371.     while (!(error = Log_event::read_log_event(&log, packet, log_lock)))
  372.     {
  373. #ifndef DBUG_OFF
  374.       if (max_binlog_dump_events && !left_events--)
  375.       {
  376. net_flush(net);
  377. errmsg = "Debugging binlog dump abort";
  378. my_errno= ER_UNKNOWN_ERROR;
  379. goto err;
  380.       }
  381. #endif
  382.       if (my_net_write(net, (char*)packet->ptr(), packet->length()) )
  383.       {
  384. errmsg = "Failed on my_net_write()";
  385. my_errno= ER_UNKNOWN_ERROR;
  386. goto err;
  387.       }
  388.       DBUG_PRINT("info", ("log event code %d",
  389.   (*packet)[LOG_EVENT_OFFSET+1] ));
  390.       if ((*packet)[LOG_EVENT_OFFSET+1] == LOAD_EVENT)
  391.       {
  392. if (send_file(thd))
  393. {
  394.   errmsg = "failed in send_file()";
  395.   my_errno= ER_UNKNOWN_ERROR;
  396.   goto err;
  397. }
  398.       }
  399.       packet->set("", 1, &my_charset_bin);
  400.     }
  401.     /*
  402.       TODO: now that we are logging the offset, check to make sure
  403.       the recorded offset and the actual match
  404.     */
  405.     if (error != LOG_READ_EOF)
  406.     {
  407.       my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  408.       switch (error) {
  409.       case LOG_READ_BOGUS:
  410. errmsg = "bogus data in log event";
  411. break;
  412.       case LOG_READ_TOO_LARGE:
  413. errmsg = "log event entry exceeded max_allowed_packet; 
  414. Increase max_allowed_packet on master";
  415. break;
  416.       case LOG_READ_IO:
  417. errmsg = "I/O error reading log event";
  418. break;
  419.       case LOG_READ_MEM:
  420. errmsg = "memory allocation failed reading log event";
  421. break;
  422.       case LOG_READ_TRUNC:
  423. errmsg = "binlog truncated in the middle of event";
  424. break;
  425.       default:
  426. errmsg = "unknown error reading log event on the master";
  427. break;
  428.       }
  429.       goto err;
  430.     }
  431.     if (!(flags & BINLOG_DUMP_NON_BLOCK) &&
  432.        mysql_bin_log.is_active(log_file_name))
  433.     {
  434.       /*
  435. Block until there is more data in the log
  436.       */
  437.       if (net_flush(net))
  438.       {
  439. errmsg = "failed on net_flush()";
  440. my_errno= ER_UNKNOWN_ERROR;
  441. goto err;
  442.       }
  443.       /*
  444. We may have missed the update broadcast from the log
  445. that has just happened, let's try to catch it if it did.
  446. If we did not miss anything, we just wait for other threads
  447. to signal us.
  448.       */
  449.       {
  450. log.error=0;
  451. bool read_packet = 0, fatal_error = 0;
  452. #ifndef DBUG_OFF
  453. if (max_binlog_dump_events && !left_events--)
  454. {
  455.   errmsg = "Debugging binlog dump abort";
  456.   my_errno= ER_UNKNOWN_ERROR;
  457.   goto err;
  458. }
  459. #endif
  460. /*
  461.   No one will update the log while we are reading
  462.   now, but we'll be quick and just read one record
  463.   TODO:
  464.   Add an counter that is incremented for each time we update
  465.   the binary log.  We can avoid the following read if the counter
  466.   has not been updated since last read.
  467. */
  468. pthread_mutex_lock(log_lock);
  469. switch (Log_event::read_log_event(&log, packet, (pthread_mutex_t*)0)) {
  470. case 0:
  471.   /* we read successfully, so we'll need to send it to the slave */
  472.   pthread_mutex_unlock(log_lock);
  473.   read_packet = 1;
  474.   break;
  475. case LOG_READ_EOF:
  476.   DBUG_PRINT("wait",("waiting for data in binary log"));
  477.   if (thd->server_id==0) // for mysqlbinlog (mysqlbinlog.server_id==0)
  478.   {
  479.     pthread_mutex_unlock(log_lock);
  480.     goto end;
  481.   }
  482.   if (!thd->killed)
  483.   {
  484.     /* Note that the following call unlocks lock_log */
  485.     mysql_bin_log.wait_for_update(thd, 0);
  486.   }
  487.   else
  488.     pthread_mutex_unlock(log_lock);
  489.   DBUG_PRINT("wait",("binary log received update"));
  490.   break;
  491. default:
  492.   pthread_mutex_unlock(log_lock);
  493.   fatal_error = 1;
  494.   break;
  495. }
  496. if (read_packet)
  497. {
  498.   thd->proc_info = "Sending binlog event to slave";
  499.   if (my_net_write(net, (char*)packet->ptr(), packet->length()) )
  500.   {
  501.     errmsg = "Failed on my_net_write()";
  502.     my_errno= ER_UNKNOWN_ERROR;
  503.     goto err;
  504.   }
  505.   if ((*packet)[LOG_EVENT_OFFSET+1] == LOAD_EVENT)
  506.   {
  507.     if (send_file(thd))
  508.     {
  509.       errmsg = "failed in send_file()";
  510.       my_errno= ER_UNKNOWN_ERROR;
  511.       goto err;
  512.     }
  513.   }
  514.   packet->set("", 1, &my_charset_bin);
  515.   /*
  516.     No need to net_flush because we will get to flush later when
  517.     we hit EOF pretty quick
  518.   */
  519. }
  520. if (fatal_error)
  521. {
  522.   errmsg = "error reading log entry";
  523.           my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  524.   goto err;
  525. }
  526. log.error=0;
  527.       }
  528.     }
  529.     else
  530.     {
  531.       bool loop_breaker = 0;
  532.       // need this to break out of the for loop from switch
  533.       thd->proc_info = "Finished reading one binlog; switching to next binlog";
  534.       switch (mysql_bin_log.find_next_log(&linfo, 1)) {
  535.       case LOG_INFO_EOF:
  536. loop_breaker = (flags & BINLOG_DUMP_NON_BLOCK);
  537. break;
  538.       case 0:
  539. break;
  540.       default:
  541. errmsg = "could not find next log";
  542. my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  543. goto err;
  544.       }
  545.       if (loop_breaker)
  546. break;
  547.       end_io_cache(&log);
  548.       (void) my_close(file, MYF(MY_WME));
  549.       /*
  550.         Even if the previous log contained a Rotate_log_event, we still fake
  551.         one.
  552.       */
  553.       if ((file=open_binlog(&log, log_file_name, &errmsg)) < 0 ||
  554.   fake_rotate_event(net, packet, log_file_name, BIN_LOG_HEADER_SIZE, &errmsg))
  555.       {
  556. my_errno= ER_MASTER_FATAL_ERROR_READING_BINLOG;
  557. goto err;
  558.       }
  559.       packet->length(0);
  560.       packet->append('');
  561.     }
  562.   }
  563. end:
  564.   end_io_cache(&log);
  565.   (void)my_close(file, MYF(MY_WME));
  566.   send_eof(thd);
  567.   thd->proc_info = "Waiting to finalize termination";
  568.   pthread_mutex_lock(&LOCK_thread_count);
  569.   thd->current_linfo = 0;
  570.   pthread_mutex_unlock(&LOCK_thread_count);
  571.   DBUG_VOID_RETURN;
  572. err:
  573.   thd->proc_info = "Waiting to finalize termination";
  574.   end_io_cache(&log);
  575.   /*
  576.     Exclude  iteration through thread list
  577.     this is needed for purge_logs() - it will iterate through
  578.     thread list and update thd->current_linfo->index_file_offset
  579.     this mutex will make sure that it never tried to update our linfo
  580.     after we return from this stack frame
  581.   */
  582.   pthread_mutex_lock(&LOCK_thread_count);
  583.   thd->current_linfo = 0;
  584.   pthread_mutex_unlock(&LOCK_thread_count);
  585.   if (file >= 0)
  586.     (void) my_close(file, MYF(MY_WME));
  587.   send_error(thd, my_errno, errmsg);
  588.   DBUG_VOID_RETURN;
  589. }
  590. int start_slave(THD* thd , MASTER_INFO* mi,  bool net_report)
  591. {
  592.   int slave_errno= 0;
  593.   int thread_mask;
  594.   DBUG_ENTER("start_slave");
  595.   
  596.   if (check_access(thd, SUPER_ACL, any_db,0,0,0))
  597.     DBUG_RETURN(1);
  598.   lock_slave_threads(mi);  // this allows us to cleanly read slave_running
  599.   // Get a mask of _stopped_ threads
  600.   init_thread_mask(&thread_mask,mi,1 /* inverse */);
  601.   /*
  602.     Below we will start all stopped threads.
  603.     But if the user wants to start only one thread, do as if the other thread
  604.     was running (as we don't wan't to touch the other thread), so set the
  605.     bit to 0 for the other thread
  606.   */
  607.   if (thd->lex->slave_thd_opt)
  608.     thread_mask&= thd->lex->slave_thd_opt;
  609.   if (thread_mask) //some threads are stopped, start them
  610.   {
  611.     if (init_master_info(mi,master_info_file,relay_log_info_file, 0,
  612.  thread_mask))
  613.       slave_errno=ER_MASTER_INFO;
  614.     else if (server_id_supplied && *mi->host)
  615.     {
  616.       /* 
  617.          If we will start SQL thread we will care about UNTIL options 
  618.          If not and they are specified we will ignore them and warn user 
  619.          about this fact.
  620.       */
  621.       if (thread_mask & SLAVE_SQL)
  622.       {
  623.         pthread_mutex_lock(&mi->rli.data_lock);
  624.         if (thd->lex->mi.pos)
  625.         {
  626.           mi->rli.until_condition= RELAY_LOG_INFO::UNTIL_MASTER_POS;
  627.           mi->rli.until_log_pos= thd->lex->mi.pos;
  628.           /* 
  629.              We don't check thd->lex->mi.log_file_name for NULL here 
  630.              since it is checked in sql_yacc.yy
  631.           */
  632.           strmake(mi->rli.until_log_name, thd->lex->mi.log_file_name,
  633.               sizeof(mi->rli.until_log_name)-1);
  634.         } 
  635.         else if (thd->lex->mi.relay_log_pos)
  636.         {
  637.           mi->rli.until_condition= RELAY_LOG_INFO::UNTIL_RELAY_POS;
  638.           mi->rli.until_log_pos= thd->lex->mi.relay_log_pos;
  639.           strmake(mi->rli.until_log_name, thd->lex->mi.relay_log_name,
  640.               sizeof(mi->rli.until_log_name)-1);
  641.         }
  642.         else
  643.           clear_until_condition(&mi->rli);
  644.         if (mi->rli.until_condition != RELAY_LOG_INFO::UNTIL_NONE)
  645.         {
  646.           /* Preparing members for effective until condition checking */
  647.           const char *p= fn_ext(mi->rli.until_log_name);
  648.           char *p_end;
  649.           if (*p)
  650.           {
  651.             //p points to '.'
  652.             mi->rli.until_log_name_extension= strtoul(++p,&p_end, 10);
  653.             /*
  654.               p_end points to the first invalid character. If it equals
  655.               to p, no digits were found, error. If it contains '' it
  656.               means  conversion went ok.
  657.             */ 
  658.             if (p_end==p || *p_end)
  659.               slave_errno=ER_BAD_SLAVE_UNTIL_COND;
  660.           }
  661.           else
  662.             slave_errno=ER_BAD_SLAVE_UNTIL_COND;
  663.           
  664.           /* mark the cached result of the UNTIL comparison as "undefined" */
  665.           mi->rli.until_log_names_cmp_result= 
  666.             RELAY_LOG_INFO::UNTIL_LOG_NAMES_CMP_UNKNOWN;
  667.           /* Issuing warning then started without --skip-slave-start */
  668.           if (!opt_skip_slave_start)
  669.             push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE, ER_MISSING_SKIP_SLAVE, 
  670.                          ER(ER_MISSING_SKIP_SLAVE));
  671.         }
  672.         
  673.         pthread_mutex_unlock(&mi->rli.data_lock);
  674.       }
  675.       else if (thd->lex->mi.pos || thd->lex->mi.relay_log_pos)
  676.         push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE, ER_UNTIL_COND_IGNORED,
  677.             ER(ER_UNTIL_COND_IGNORED));
  678.         
  679.       
  680.       if (!slave_errno)
  681.         slave_errno = start_slave_threads(0 /*no mutex */,
  682. 1 /* wait for start */,
  683. mi,
  684. master_info_file,relay_log_info_file,
  685. thread_mask);
  686.     }
  687.     else
  688.       slave_errno = ER_BAD_SLAVE;
  689.   }
  690.   else
  691.     //no error if all threads are already started, only a warning
  692.     push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE, ER_SLAVE_WAS_RUNNING,
  693.                  ER(ER_SLAVE_WAS_RUNNING));
  694.   
  695.   unlock_slave_threads(mi);
  696.   
  697.   if (slave_errno)
  698.   {
  699.     if (net_report)
  700.       send_error(thd, slave_errno);
  701.     DBUG_RETURN(1);
  702.   }
  703.   else if (net_report)
  704.     send_ok(thd);
  705.   DBUG_RETURN(0);
  706. }
  707. int stop_slave(THD* thd, MASTER_INFO* mi, bool net_report )
  708. {
  709.   int slave_errno;
  710.   if (!thd)
  711.     thd = current_thd;
  712.   if (check_access(thd, SUPER_ACL, any_db,0,0,0))
  713.     return 1;
  714.   thd->proc_info = "Killing slave";
  715.   int thread_mask;
  716.   lock_slave_threads(mi);
  717.   // Get a mask of _running_ threads
  718.   init_thread_mask(&thread_mask,mi,0 /* not inverse*/);
  719.   /*
  720.     Below we will stop all running threads.
  721.     But if the user wants to stop only one thread, do as if the other thread
  722.     was stopped (as we don't wan't to touch the other thread), so set the
  723.     bit to 0 for the other thread
  724.   */
  725.   if (thd->lex->slave_thd_opt)
  726.     thread_mask &= thd->lex->slave_thd_opt;
  727.   if (thread_mask)
  728.   {
  729.     slave_errno= terminate_slave_threads(mi,thread_mask,
  730.                                          1 /*skip lock */);
  731.   }
  732.   else
  733.   {
  734.     //no error if both threads are already stopped, only a warning
  735.     slave_errno= 0;
  736.     push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE, ER_SLAVE_WAS_NOT_RUNNING,
  737.                  ER(ER_SLAVE_WAS_NOT_RUNNING));
  738.   }
  739.   unlock_slave_threads(mi);
  740.   thd->proc_info = 0;
  741.   if (slave_errno)
  742.   {
  743.     if (net_report)
  744.       send_error(thd, slave_errno);
  745.     return 1;
  746.   }
  747.   else if (net_report)
  748.     send_ok(thd);
  749.   return 0;
  750. }
  751. /*
  752.   Remove all relay logs and start replication from the start
  753.   SYNOPSIS
  754.     reset_slave()
  755.     thd Thread handler
  756.     mi Master info for the slave
  757.   RETURN
  758.     0 ok
  759.     1 error
  760. */
  761. int reset_slave(THD *thd, MASTER_INFO* mi)
  762. {
  763.   MY_STAT stat_area;
  764.   char fname[FN_REFLEN];
  765.   int thread_mask= 0, error= 0;
  766.   uint sql_errno=0;
  767.   const char* errmsg=0;
  768.   DBUG_ENTER("reset_slave");
  769.   lock_slave_threads(mi);
  770.   init_thread_mask(&thread_mask,mi,0 /* not inverse */);
  771.   if (thread_mask) // We refuse if any slave thread is running
  772.   {
  773.     sql_errno= ER_SLAVE_MUST_STOP;
  774.     error=1;
  775.     goto err;
  776.   }
  777.   // delete relay logs, clear relay log coordinates
  778.   if ((error= purge_relay_logs(&mi->rli, thd,
  779.        1 /* just reset */,
  780.        &errmsg)))
  781.     goto err;
  782.   
  783.   /*
  784.     Clear master's log coordinates and reset host/user/etc to the values
  785.     specified in mysqld's options (only for good display of SHOW SLAVE STATUS;
  786.     next init_master_info() (in start_slave() for example) would have set them
  787.     the same way; but here this is for the case where the user does SHOW SLAVE
  788.     STATUS; before doing START SLAVE;
  789.   */
  790.   init_master_info_with_options(mi);
  791.   /* 
  792.      Reset errors (the idea is that we forget about the
  793.      old master).
  794.   */
  795.   clear_slave_error(&mi->rli);
  796.   clear_until_condition(&mi->rli);
  797.   
  798.   // close master_info_file, relay_log_info_file, set mi->inited=rli->inited=0
  799.   end_master_info(mi);
  800.   // and delete these two files
  801.   fn_format(fname, master_info_file, mysql_data_home, "", 4+32);
  802.   if (my_stat(fname, &stat_area, MYF(0)) && my_delete(fname, MYF(MY_WME)))
  803.   {
  804.     error=1;
  805.     goto err;
  806.   }
  807.   // delete relay_log_info_file
  808.   fn_format(fname, relay_log_info_file, mysql_data_home, "", 4+32);
  809.   if (my_stat(fname, &stat_area, MYF(0)) && my_delete(fname, MYF(MY_WME)))
  810.   {
  811.     error=1;
  812.     goto err;
  813.   }
  814. err:
  815.   unlock_slave_threads(mi);
  816.   if (error) 
  817.     my_error(sql_errno, MYF(0), errmsg);
  818.   DBUG_RETURN(error);
  819. }
  820. /*
  821.   Kill all Binlog_dump threads which previously talked to the same slave
  822.   ("same" means with the same server id). Indeed, if the slave stops, if the
  823.   Binlog_dump thread is waiting (pthread_cond_wait) for binlog update, then it
  824.   will keep existing until a query is written to the binlog. If the master is
  825.   idle, then this could last long, and if the slave reconnects, we could have 2
  826.   Binlog_dump threads in SHOW PROCESSLIST, until a query is written to the
  827.   binlog. To avoid this, when the slave reconnects and sends COM_BINLOG_DUMP,
  828.   the master kills any existing thread with the slave's server id (if this id is
  829.   not zero; it will be true for real slaves, but false for mysqlbinlog when it
  830.   sends COM_BINLOG_DUMP to get a remote binlog dump).
  831.   SYNOPSIS
  832.     kill_zombie_dump_threads()
  833.     slave_server_id     the slave's server id
  834. */
  835.   
  836. void kill_zombie_dump_threads(uint32 slave_server_id)
  837. {
  838.   pthread_mutex_lock(&LOCK_thread_count);
  839.   I_List_iterator<THD> it(threads);
  840.   THD *tmp;
  841.   while ((tmp=it++))
  842.   {
  843.     if (tmp->command == COM_BINLOG_DUMP &&
  844.        tmp->server_id == slave_server_id)
  845.     {
  846.       pthread_mutex_lock(&tmp->LOCK_delete); // Lock from delete
  847.       break;
  848.     }
  849.   }
  850.   pthread_mutex_unlock(&LOCK_thread_count);
  851.   if (tmp)
  852.   {
  853.     /*
  854.       Here we do not call kill_one_thread() as
  855.       it will be slow because it will iterate through the list
  856.       again. We just to do kill the thread ourselves.
  857.     */
  858.     tmp->awake(1/*prepare to die*/);
  859.     pthread_mutex_unlock(&tmp->LOCK_delete);
  860.   }
  861. }
  862. int change_master(THD* thd, MASTER_INFO* mi)
  863. {
  864.   int thread_mask;
  865.   const char* errmsg= 0;
  866.   bool need_relay_log_purge= 1;
  867.   DBUG_ENTER("change_master");
  868.   lock_slave_threads(mi);
  869.   init_thread_mask(&thread_mask,mi,0 /*not inverse*/);
  870.   if (thread_mask) // We refuse if any slave thread is running
  871.   {
  872.     net_printf(thd,ER_SLAVE_MUST_STOP);
  873.     unlock_slave_threads(mi);
  874.     DBUG_RETURN(1);
  875.   }
  876.   thd->proc_info = "Changing master";
  877.   LEX_MASTER_INFO* lex_mi= &thd->lex->mi;
  878.   // TODO: see if needs re-write
  879.   if (init_master_info(mi, master_info_file, relay_log_info_file, 0,
  880.        thread_mask))
  881.   {
  882.     send_error(thd, ER_MASTER_INFO);
  883.     unlock_slave_threads(mi);
  884.     DBUG_RETURN(1);
  885.   }
  886.   /*
  887.     Data lock not needed since we have already stopped the running threads,
  888.     and we have the hold on the run locks which will keep all threads that
  889.     could possibly modify the data structures from running
  890.   */
  891.   /*
  892.     If the user specified host or port without binlog or position, 
  893.     reset binlog's name to FIRST and position to 4.
  894.   */ 
  895.   if ((lex_mi->host || lex_mi->port) && !lex_mi->log_file_name && !lex_mi->pos)
  896.   {
  897.     mi->master_log_name[0] = 0;
  898.     mi->master_log_pos= BIN_LOG_HEADER_SIZE;
  899.   }
  900.   if (lex_mi->log_file_name)
  901.     strmake(mi->master_log_name, lex_mi->log_file_name,
  902.     sizeof(mi->master_log_name)-1);
  903.   if (lex_mi->pos)
  904.   {
  905.     mi->master_log_pos= lex_mi->pos;
  906.   }
  907.   DBUG_PRINT("info", ("master_log_pos: %d", (ulong) mi->master_log_pos));
  908.   if (lex_mi->host)
  909.     strmake(mi->host, lex_mi->host, sizeof(mi->host)-1);
  910.   if (lex_mi->user)
  911.     strmake(mi->user, lex_mi->user, sizeof(mi->user)-1);
  912.   if (lex_mi->password)
  913.     strmake(mi->password, lex_mi->password, sizeof(mi->password)-1);
  914.   if (lex_mi->port)
  915.     mi->port = lex_mi->port;
  916.   if (lex_mi->connect_retry)
  917.     mi->connect_retry = lex_mi->connect_retry;
  918.  
  919.   if (lex_mi->ssl != LEX_MASTER_INFO::SSL_UNCHANGED)
  920.     mi->ssl= (lex_mi->ssl == LEX_MASTER_INFO::SSL_ENABLE);
  921.   if (lex_mi->ssl_ca)
  922.     strmake(mi->ssl_ca, lex_mi->ssl_ca, sizeof(mi->ssl_ca)-1);
  923.   if (lex_mi->ssl_capath)
  924.     strmake(mi->ssl_capath, lex_mi->ssl_capath, sizeof(mi->ssl_capath)-1);
  925.   if (lex_mi->ssl_cert)
  926.     strmake(mi->ssl_cert, lex_mi->ssl_cert, sizeof(mi->ssl_cert)-1);
  927.   if (lex_mi->ssl_cipher)
  928.     strmake(mi->ssl_cipher, lex_mi->ssl_cipher, sizeof(mi->ssl_cipher)-1);
  929.   if (lex_mi->ssl_key)
  930.     strmake(mi->ssl_key, lex_mi->ssl_key, sizeof(mi->ssl_key)-1);
  931. #ifndef HAVE_OPENSSL
  932.   if (lex_mi->ssl || lex_mi->ssl_ca || lex_mi->ssl_capath ||
  933.       lex_mi->ssl_cert || lex_mi->ssl_cipher || lex_mi->ssl_key )
  934.     push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE, 
  935.                  ER_SLAVE_IGNORED_SSL_PARAMS, ER(ER_SLAVE_IGNORED_SSL_PARAMS));
  936. #endif
  937.   if (lex_mi->relay_log_name)
  938.   {
  939.     need_relay_log_purge= 0;
  940.     strmake(mi->rli.group_relay_log_name,lex_mi->relay_log_name,
  941.     sizeof(mi->rli.group_relay_log_name)-1);
  942.     strmake(mi->rli.event_relay_log_name,lex_mi->relay_log_name,
  943.     sizeof(mi->rli.event_relay_log_name)-1);
  944.   }
  945.   if (lex_mi->relay_log_pos)
  946.   {
  947.     need_relay_log_purge= 0;
  948.     mi->rli.group_relay_log_pos= mi->rli.event_relay_log_pos= lex_mi->relay_log_pos;
  949.   }
  950.   /*
  951.     If user did specify neither host nor port nor any log name nor any log
  952.     pos, i.e. he specified only user/password/master_connect_retry, he probably
  953.     wants replication to resume from where it had left, i.e. from the
  954.     coordinates of the **SQL** thread (imagine the case where the I/O is ahead
  955.     of the SQL; restarting from the coordinates of the I/O would lose some
  956.     events which is probably unwanted when you are just doing minor changes
  957.     like changing master_connect_retry).
  958.     A side-effect is that if only the I/O thread was started, this thread may
  959.     restart from ''/4 after the CHANGE MASTER. That's a minor problem (it is a
  960.     much more unlikely situation than the one we are fixing here).
  961.     Note: coordinates of the SQL thread must be read here, before the
  962.     'if (need_relay_log_purge)' block which resets them.
  963.   */
  964.   if (!lex_mi->host && !lex_mi->port &&
  965.       !lex_mi->log_file_name && !lex_mi->pos &&
  966.       need_relay_log_purge)
  967.    {
  968.      /*
  969.        Sometimes mi->rli.master_log_pos == 0 (it happens when the SQL thread is
  970.        not initialized), so we use a max().
  971.        What happens to mi->rli.master_log_pos during the initialization stages
  972.        of replication is not 100% clear, so we guard against problems using
  973.        max().
  974.       */
  975.      mi->master_log_pos = max(BIN_LOG_HEADER_SIZE,
  976.       mi->rli.group_master_log_pos);
  977.      strmake(mi->master_log_name, mi->rli.group_master_log_name,
  978.              sizeof(mi->master_log_name)-1);
  979.   }
  980.   /*
  981.     Relay log's IO_CACHE may not be inited, if rli->inited==0 (server was never
  982.     a slave before).
  983.   */
  984.   flush_master_info(mi, 0);
  985.   if (need_relay_log_purge)
  986.   {
  987.     relay_log_purge= 1;
  988.     thd->proc_info="Purging old relay logs";
  989.     if (purge_relay_logs(&mi->rli, thd,
  990.  0 /* not only reset, but also reinit */,
  991.  &errmsg))
  992.     {
  993.       net_printf(thd, 0, "Failed purging old relay logs: %s",errmsg);
  994.       unlock_slave_threads(mi);
  995.       DBUG_RETURN(1);
  996.     }
  997.   }
  998.   else
  999.   {
  1000.     const char* msg;
  1001.     relay_log_purge= 0;
  1002.     /* Relay log is already initialized */
  1003.     if (init_relay_log_pos(&mi->rli,
  1004.    mi->rli.group_relay_log_name,
  1005.    mi->rli.group_relay_log_pos,
  1006.    0 /*no data lock*/,
  1007.    &msg))
  1008.     {
  1009.       net_printf(thd,0,"Failed initializing relay log position: %s",msg);
  1010.       unlock_slave_threads(mi);
  1011.       DBUG_RETURN(1);
  1012.     }
  1013.   }
  1014.   mi->rli.group_master_log_pos = mi->master_log_pos;
  1015.   DBUG_PRINT("info", ("master_log_pos: %d", (ulong) mi->master_log_pos));
  1016.   /*
  1017.     Coordinates in rli were spoilt by the 'if (need_relay_log_purge)' block,
  1018.     so restore them to good values. If we left them to ''/0, that would work;
  1019.     but that would fail in the case of 2 successive CHANGE MASTER (without a
  1020.     START SLAVE in between): because first one would set the coords in mi to
  1021.     the good values of those in rli, the set those in rli to ''/0, then
  1022.     second CHANGE MASTER would set the coords in mi to those of rli, i.e. to
  1023.     ''/0: we have lost all copies of the original good coordinates.
  1024.     That's why we always save good coords in rli.
  1025.   */
  1026.   mi->rli.group_master_log_pos= mi->master_log_pos;
  1027.   strmake(mi->rli.group_master_log_name,mi->master_log_name,
  1028.   sizeof(mi->rli.group_master_log_name)-1);
  1029.   if (!mi->rli.group_master_log_name[0]) // uninitialized case
  1030.     mi->rli.group_master_log_pos=0;
  1031.   pthread_mutex_lock(&mi->rli.data_lock);
  1032.   mi->rli.abort_pos_wait++; /* for MASTER_POS_WAIT() to abort */
  1033.   /* Clear the errors, for a clean start */
  1034.   clear_slave_error(&mi->rli);
  1035.   clear_until_condition(&mi->rli);
  1036.   /*
  1037.     If we don't write new coordinates to disk now, then old will remain in
  1038.     relay-log.info until START SLAVE is issued; but if mysqld is shutdown
  1039.     before START SLAVE, then old will remain in relay-log.info, and will be the
  1040.     in-memory value at restart (thus causing errors, as the old relay log does
  1041.     not exist anymore).
  1042.   */
  1043.   flush_relay_log_info(&mi->rli);
  1044.   pthread_cond_broadcast(&mi->data_cond);
  1045.   pthread_mutex_unlock(&mi->rli.data_lock);
  1046.   unlock_slave_threads(mi);
  1047.   thd->proc_info = 0;
  1048.   send_ok(thd);
  1049.   DBUG_RETURN(0);
  1050. }
  1051. int reset_master(THD* thd)
  1052. {
  1053.   if (!mysql_bin_log.is_open())
  1054.   {
  1055.     my_error(ER_FLUSH_MASTER_BINLOG_CLOSED,  MYF(ME_BELL+ME_WAITTANG));
  1056.     return 1;
  1057.   }
  1058.   return mysql_bin_log.reset_logs(thd);
  1059. }
  1060. int cmp_master_pos(const char* log_file_name1, ulonglong log_pos1,
  1061.    const char* log_file_name2, ulonglong log_pos2)
  1062. {
  1063.   int res;
  1064.   uint log_file_name1_len=  strlen(log_file_name1);
  1065.   uint log_file_name2_len=  strlen(log_file_name2);
  1066.   //  We assume that both log names match up to '.'
  1067.   if (log_file_name1_len == log_file_name2_len)
  1068.   {
  1069.     if ((res= strcmp(log_file_name1, log_file_name2)))
  1070.       return res;
  1071.     return (log_pos1 < log_pos2) ? -1 : (log_pos1 == log_pos2) ? 0 : 1;
  1072.   }
  1073.   return ((log_file_name1_len < log_file_name2_len) ? -1 : 1);
  1074. }
  1075. int show_binlog_events(THD* thd)
  1076. {
  1077.   Protocol *protocol= thd->protocol;
  1078.   DBUG_ENTER("show_binlog_events");
  1079.   List<Item> field_list;
  1080.   const char *errmsg = 0;
  1081.   IO_CACHE log;
  1082.   File file = -1;
  1083.   Log_event::init_show_field_list(&field_list);
  1084.   if (protocol-> send_fields(&field_list, 1))
  1085.     DBUG_RETURN(-1);
  1086.   if (mysql_bin_log.is_open())
  1087.   {
  1088.     LEX_MASTER_INFO *lex_mi= &thd->lex->mi;
  1089.     ha_rows event_count, limit_start, limit_end;
  1090.     my_off_t pos = max(BIN_LOG_HEADER_SIZE, lex_mi->pos); // user-friendly
  1091.     char search_file_name[FN_REFLEN], *name;
  1092.     const char *log_file_name = lex_mi->log_file_name;
  1093.     pthread_mutex_t *log_lock = mysql_bin_log.get_log_lock();
  1094.     LOG_INFO linfo;
  1095.     Log_event* ev;
  1096.   
  1097.     limit_start= thd->lex->current_select->offset_limit;
  1098.     limit_end= thd->lex->current_select->select_limit + limit_start;
  1099.     name= search_file_name;
  1100.     if (log_file_name)
  1101.       mysql_bin_log.make_log_name(search_file_name, log_file_name);
  1102.     else
  1103.       name=0; // Find first log
  1104.     linfo.index_file_offset = 0;
  1105.     thd->current_linfo = &linfo;
  1106.     if (mysql_bin_log.find_log_pos(&linfo, name, 1))
  1107.     {
  1108.       errmsg = "Could not find target log";
  1109.       goto err;
  1110.     }
  1111.     if ((file=open_binlog(&log, linfo.log_file_name, &errmsg)) < 0)
  1112.       goto err;
  1113.     pthread_mutex_lock(log_lock);
  1114.     my_b_seek(&log, pos);
  1115.     for (event_count = 0;
  1116.  (ev = Log_event::read_log_event(&log,(pthread_mutex_t*)0,0)); )
  1117.     {
  1118.       if (event_count >= limit_start &&
  1119.   ev->net_send(protocol, linfo.log_file_name, pos))
  1120.       {
  1121. errmsg = "Net error";
  1122. delete ev;
  1123. pthread_mutex_unlock(log_lock);
  1124. goto err;
  1125.       }
  1126.       pos = my_b_tell(&log);
  1127.       delete ev;
  1128.       if (++event_count >= limit_end)
  1129. break;
  1130.     }
  1131.     if (event_count < limit_end && log.error)
  1132.     {
  1133.       errmsg = "Wrong offset or I/O error";
  1134.       pthread_mutex_unlock(log_lock);
  1135.       goto err;
  1136.     }
  1137.     pthread_mutex_unlock(log_lock);
  1138.   }
  1139. err:
  1140.   if (file >= 0)
  1141.   {
  1142.     end_io_cache(&log);
  1143.     (void) my_close(file, MYF(MY_WME));
  1144.   }
  1145.   if (errmsg)
  1146.   {
  1147.     my_error(ER_ERROR_WHEN_EXECUTING_COMMAND, MYF(0),
  1148.      "SHOW BINLOG EVENTS", errmsg);
  1149.     DBUG_RETURN(-1);
  1150.   }
  1151.   send_eof(thd);
  1152.   pthread_mutex_lock(&LOCK_thread_count);
  1153.   thd->current_linfo = 0;
  1154.   pthread_mutex_unlock(&LOCK_thread_count);
  1155.   DBUG_RETURN(0);
  1156. }
  1157. int show_binlog_info(THD* thd)
  1158. {
  1159.   Protocol *protocol= thd->protocol;
  1160.   DBUG_ENTER("show_binlog_info");
  1161.   List<Item> field_list;
  1162.   field_list.push_back(new Item_empty_string("File", FN_REFLEN));
  1163.   field_list.push_back(new Item_return_int("Position",20,
  1164.    MYSQL_TYPE_LONGLONG));
  1165.   field_list.push_back(new Item_empty_string("Binlog_Do_DB",255));
  1166.   field_list.push_back(new Item_empty_string("Binlog_Ignore_DB",255));
  1167.   if (protocol->send_fields(&field_list, 1))
  1168.     DBUG_RETURN(-1);
  1169.   protocol->prepare_for_resend();
  1170.   if (mysql_bin_log.is_open())
  1171.   {
  1172.     LOG_INFO li;
  1173.     mysql_bin_log.get_current_log(&li);
  1174.     int dir_len = dirname_length(li.log_file_name);
  1175.     protocol->store(li.log_file_name + dir_len, &my_charset_bin);
  1176.     protocol->store((ulonglong) li.pos);
  1177.     protocol->store(&binlog_do_db);
  1178.     protocol->store(&binlog_ignore_db);
  1179.     if (protocol->write())
  1180.       DBUG_RETURN(-1);
  1181.   }
  1182.   send_eof(thd);
  1183.   DBUG_RETURN(0);
  1184. }
  1185. /*
  1186.   Send a list of all binary logs to client
  1187.   SYNOPSIS
  1188.     show_binlogs()
  1189.     thd Thread specific variable
  1190.   RETURN VALUES
  1191.     0 ok
  1192.     1 error  (Error message sent to client)
  1193. */
  1194. int show_binlogs(THD* thd)
  1195. {
  1196.   IO_CACHE *index_file;
  1197.   LOG_INFO cur;
  1198.   File file;
  1199.   char fname[FN_REFLEN];
  1200.   List<Item> field_list;
  1201.   uint length;
  1202.   int cur_dir_len;
  1203.   Protocol *protocol= thd->protocol;
  1204.   DBUG_ENTER("show_binlogs");
  1205.   if (!mysql_bin_log.is_open())
  1206.   {
  1207.     //TODO:  Replace with ER() error message
  1208.     send_error(thd, 0, "You are not using binary logging");
  1209.     return 1;
  1210.   }
  1211.   field_list.push_back(new Item_empty_string("Log_name", 255));
  1212.   field_list.push_back(new Item_return_int("File_size", 20, 
  1213.                                            MYSQL_TYPE_LONGLONG));
  1214.   if (protocol->send_fields(&field_list, 1))
  1215.     DBUG_RETURN(1);
  1216.   mysql_bin_log.lock_index();
  1217.   index_file=mysql_bin_log.get_index_file();
  1218.   mysql_bin_log.get_current_log(&cur);
  1219.   cur_dir_len= dirname_length(cur.log_file_name);
  1220.   reinit_io_cache(index_file, READ_CACHE, (my_off_t) 0, 0, 0);
  1221.   /* The file ends with EOF or empty line */
  1222.   while ((length=my_b_gets(index_file, fname, sizeof(fname))) > 1)
  1223.   {
  1224.     int dir_len;
  1225.     ulonglong file_length= 0;                   // Length if open fails
  1226.     fname[--length] = '';                     // remove the newline
  1227.     protocol->prepare_for_resend();
  1228.     dir_len= dirname_length(fname);
  1229.     length-= dir_len;
  1230.     protocol->store(fname + dir_len, length, &my_charset_bin);
  1231.     if (!(strncmp(fname+dir_len, cur.log_file_name+cur_dir_len, length)))
  1232.       file_length= cur.pos;  /* The active log, use the active position */
  1233.     else
  1234.     {
  1235.       /* this is an old log, open it and find the size */
  1236.       if ((file= my_open(fname, O_RDONLY | O_SHARE | O_BINARY,
  1237.                          MYF(0))) >= 0)
  1238.       {
  1239.         file_length= (ulonglong) my_seek(file, 0L, MY_SEEK_END, MYF(0));
  1240.         my_close(file, MYF(0));
  1241.       }
  1242.     }
  1243.     protocol->store(file_length);
  1244.     if (protocol->write())
  1245.       goto err;
  1246.   }
  1247.   mysql_bin_log.unlock_index();
  1248.   send_eof(thd);
  1249.   DBUG_RETURN(0);
  1250. err:
  1251.   mysql_bin_log.unlock_index();
  1252.   DBUG_RETURN(1);
  1253. }
  1254. int log_loaded_block(IO_CACHE* file)
  1255. {
  1256.   LOAD_FILE_INFO *lf_info;
  1257.   uint block_len ;
  1258.   /* file->request_pos contains position where we started last read */
  1259.   char* buffer = (char*) file->request_pos;
  1260.   if (!(block_len = (char*) file->read_end - (char*) buffer))
  1261.     return 0;
  1262.   lf_info = (LOAD_FILE_INFO*) file->arg;
  1263.   if (lf_info->last_pos_in_file != HA_POS_ERROR &&
  1264.       lf_info->last_pos_in_file >= file->pos_in_file)
  1265.     return 0;
  1266.   lf_info->last_pos_in_file = file->pos_in_file;
  1267.   if (lf_info->wrote_create_file)
  1268.   {
  1269.     Append_block_log_event a(lf_info->thd, lf_info->db, buffer, block_len,
  1270.      lf_info->log_delayed);
  1271.     mysql_bin_log.write(&a);
  1272.   }
  1273.   else
  1274.   {
  1275.     Create_file_log_event c(lf_info->thd,lf_info->ex,lf_info->db,
  1276.     lf_info->table_name, *lf_info->fields,
  1277.     lf_info->handle_dup, lf_info->ignore, buffer,
  1278.     block_len, lf_info->log_delayed);
  1279.     mysql_bin_log.write(&c);
  1280.     lf_info->wrote_create_file = 1;
  1281.     DBUG_SYNC_POINT("debug_lock.created_file_event",10);
  1282.   }
  1283.   return 0;
  1284. }
  1285. #endif /* HAVE_REPLICATION */