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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* logging of commands */
  14. /* TODO: Abort logging when we get an error in reading or writing log files */
  15. #ifdef __EMX__
  16. #include <io.h>
  17. #endif
  18. #include "mysql_priv.h"
  19. #include "sql_repl.h"
  20. #include "ha_innodb.h" // necessary to cut the binlog when crash recovery
  21. #include <my_dir.h>
  22. #include <stdarg.h>
  23. #include <m_ctype.h> // For test_if_number
  24. #ifdef __NT__
  25. #include "message.h"
  26. #endif
  27. MYSQL_LOG mysql_log,mysql_update_log,mysql_slow_log,mysql_bin_log;
  28. ulong sync_binlog_counter= 0;
  29. static bool test_if_number(const char *str,
  30.    long *res, bool allow_wildcards);
  31. #ifdef __NT__
  32. static int eventSource = 0;
  33. void setup_windows_event_source() 
  34. {
  35.   HKEY    hRegKey= NULL; 
  36.   DWORD   dwError= 0;
  37.   TCHAR   szPath[MAX_PATH];
  38.   DWORD dwTypes;
  39.     
  40.   if (eventSource)               // Ensure that we are only called once
  41.     return;
  42.   eventSource= 1;
  43.   // Create the event source registry key
  44.   dwError= RegCreateKey(HKEY_LOCAL_MACHINE, 
  45.                           "SYSTEM\CurrentControlSet\Services\EventLog\Application\MySQL", 
  46.                           &hRegKey);
  47.   /* Name of the PE module that contains the message resource */
  48.   GetModuleFileName(NULL, szPath, MAX_PATH);
  49.   /* Register EventMessageFile */
  50.   dwError = RegSetValueEx(hRegKey, "EventMessageFile", 0, REG_EXPAND_SZ, 
  51.                           (PBYTE) szPath, strlen(szPath)+1);
  52.     
  53.   /* Register supported event types */
  54.   dwTypes= (EVENTLOG_ERROR_TYPE | EVENTLOG_WARNING_TYPE |
  55.             EVENTLOG_INFORMATION_TYPE);
  56.   dwError= RegSetValueEx(hRegKey, "TypesSupported", 0, REG_DWORD,
  57.                          (LPBYTE) &dwTypes, sizeof dwTypes);
  58.   RegCloseKey(hRegKey);
  59. }
  60. #endif /* __NT__ */
  61. /****************************************************************************
  62. ** Find a uniq filename for 'filename.#'.
  63. ** Set # to a number as low as possible
  64. ** returns != 0 if not possible to get uniq filename
  65. ****************************************************************************/
  66. static int find_uniq_filename(char *name)
  67. {
  68.   long                  number;
  69.   uint                  i;
  70.   char                  buff[FN_REFLEN];
  71.   struct st_my_dir     *dir_info;
  72.   reg1 struct fileinfo *file_info;
  73.   ulong                 max_found=0;
  74.   DBUG_ENTER("find_uniq_filename");
  75.   uint  length = dirname_part(buff,name);
  76.   char *start  = name + length;
  77.   char *end    = strend(start);
  78.   *end='.';
  79.   length= (uint) (end-start+1);
  80.   if (!(dir_info = my_dir(buff,MYF(MY_DONT_SORT))))
  81.   { // This shouldn't happen
  82.     strmov(end,".1"); // use name+1
  83.     DBUG_RETURN(0);
  84.   }
  85.   file_info= dir_info->dir_entry;
  86.   for (i=dir_info->number_off_files ; i-- ; file_info++)
  87.   {
  88.     if (bcmp(file_info->name,start,length) == 0 &&
  89. test_if_number(file_info->name+length, &number,0))
  90.     {
  91.       set_if_bigger(max_found,(ulong) number);
  92.     }
  93.   }
  94.   my_dirend(dir_info);
  95.   *end++='.';
  96.   sprintf(end,"%06ld",max_found+1);
  97.   DBUG_RETURN(0);
  98. }
  99. MYSQL_LOG::MYSQL_LOG()
  100.   :bytes_written(0), last_time(0), query_start(0), name(0),
  101.    file_id(1), open_count(1), log_type(LOG_CLOSED), write_error(0), inited(0),
  102.    need_start_event(1)
  103. {
  104.   /*
  105.     We don't want to initialize LOCK_Log here as such initialization depends on
  106.     safe_mutex (when using safe_mutex) which depends on MY_INIT(), which is
  107.     called only in main(). Doing initialization here would make it happen
  108.     before main(). 
  109.   */
  110.   index_file_name[0] = 0;
  111.   bzero((char*) &log_file,sizeof(log_file));
  112.   bzero((char*) &index_file, sizeof(index_file));
  113. }
  114. MYSQL_LOG::~MYSQL_LOG()
  115. {
  116.   cleanup();
  117. }
  118. /* this is called only once */
  119. void MYSQL_LOG::cleanup()
  120. {
  121.   DBUG_ENTER("cleanup");
  122.   if (inited)
  123.   {
  124.     inited= 0;
  125.     close(LOG_CLOSE_INDEX);
  126.     (void) pthread_mutex_destroy(&LOCK_log);
  127.     (void) pthread_mutex_destroy(&LOCK_index);
  128.     (void) pthread_cond_destroy(&update_cond);
  129.   }
  130.   DBUG_VOID_RETURN;
  131. }
  132. int MYSQL_LOG::generate_new_name(char *new_name, const char *log_name)
  133. {      
  134.   fn_format(new_name,log_name,mysql_data_home,"",4);
  135.   if (log_type != LOG_NORMAL)
  136.   {
  137.     if (!fn_ext(log_name)[0])
  138.     {
  139.       if (find_uniq_filename(new_name))
  140.       {
  141. sql_print_error(ER(ER_NO_UNIQUE_LOGFILE), log_name);
  142. return 1;
  143.       }
  144.     }
  145.   }
  146.   return 0;
  147. }
  148. void MYSQL_LOG::init(enum_log_type log_type_arg,
  149.      enum cache_type io_cache_type_arg,
  150.      bool no_auto_events_arg,
  151.                      ulong max_size_arg)
  152. {
  153.   DBUG_ENTER("MYSQL_LOG::init");
  154.   log_type = log_type_arg;
  155.   io_cache_type = io_cache_type_arg;
  156.   no_auto_events = no_auto_events_arg;
  157.   max_size=max_size_arg;
  158.   DBUG_PRINT("info",("log_type: %d max_size: %lu", log_type, max_size));
  159.   DBUG_VOID_RETURN;
  160. }
  161. void MYSQL_LOG::init_pthread_objects()
  162. {
  163.   DBUG_ASSERT(inited == 0);
  164.   inited= 1;
  165.   (void) pthread_mutex_init(&LOCK_log,MY_MUTEX_INIT_SLOW);
  166.   (void) pthread_mutex_init(&LOCK_index, MY_MUTEX_INIT_SLOW);
  167.   (void) pthread_cond_init(&update_cond, 0);
  168. }
  169. /*
  170.   Open a (new) log file.
  171.   DESCRIPTION
  172.   - If binary logs, also open the index file and register the new
  173.     file name in it
  174.   - When calling this when the file is in use, you must have a locks
  175.     on LOCK_log and LOCK_index.
  176.   RETURN VALUES
  177.     0 ok
  178.     1 error
  179. */
  180. bool MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
  181.      const char *new_name, const char *index_file_name_arg,
  182.      enum cache_type io_cache_type_arg,
  183.      bool no_auto_events_arg,
  184.                      ulong max_size_arg)
  185. {
  186.   char buff[512];
  187.   File file= -1, index_file_nr= -1;
  188.   int open_flags = O_CREAT | O_APPEND | O_BINARY;
  189.   DBUG_ENTER("MYSQL_LOG::open");
  190.   DBUG_PRINT("enter",("log_type: %d",(int) log_type));
  191.   last_time=query_start=0;
  192.   write_error=0;
  193.   init(log_type_arg,io_cache_type_arg,no_auto_events_arg,max_size_arg);
  194.   
  195.   if (!(name=my_strdup(log_name,MYF(MY_WME))))
  196.     goto err;
  197.   if (new_name)
  198.     strmov(log_file_name,new_name);
  199.   else if (generate_new_name(log_file_name, name))
  200.     goto err;
  201.   
  202.   if (io_cache_type == SEQ_READ_APPEND)
  203.     open_flags |= O_RDWR;
  204.   else
  205.     open_flags |= O_WRONLY;
  206.   db[0]=0;
  207.   open_count++;
  208.   if ((file=my_open(log_file_name,open_flags,
  209.     MYF(MY_WME | ME_WAITTANG))) < 0 ||
  210.       init_io_cache(&log_file, file, IO_SIZE, io_cache_type,
  211.     my_tell(file,MYF(MY_WME)), 0, 
  212.                     MYF(MY_WME | MY_NABP |
  213.                         ((log_type == LOG_BIN) ? MY_WAIT_IF_FULL : 0))))
  214.     goto err;
  215.   switch (log_type) {
  216.   case LOG_NORMAL:
  217.   {
  218.     char *end;
  219.     int len=my_snprintf(buff, sizeof(buff), "%s, Version: %s. "
  220. #ifdef EMBEDDED_LIBRARY
  221.         "embedded libraryn", my_progname, server_version
  222. #elif __NT__
  223. "started with:nTCP Port: %d, Named Pipe: %sn",
  224. my_progname, server_version, mysqld_port, mysqld_unix_port
  225. #else
  226. "started with:nTcp port: %d  Unix socket: %sn",
  227. my_progname,server_version,mysqld_port,mysqld_unix_port
  228. #endif
  229.                        );
  230.     end=strnmov(buff+len,"Time                 Id Command    Argumentn",
  231.                 sizeof(buff)-len);
  232.     if (my_b_write(&log_file, (byte*) buff,(uint) (end-buff)) ||
  233. flush_io_cache(&log_file))
  234.       goto err;
  235.     break;
  236.   }
  237.   case LOG_NEW:
  238.   {
  239.     uint len;
  240.     time_t skr=time(NULL);
  241.     struct tm tm_tmp;
  242.     localtime_r(&skr,&tm_tmp);
  243.     len= my_snprintf(buff,sizeof(buff),
  244.      "# %s, Version: %s at %02d%02d%02d %2d:%02d:%02dn",
  245.      my_progname,server_version,
  246.      tm_tmp.tm_year % 100,
  247.      tm_tmp.tm_mon+1,
  248.      tm_tmp.tm_mday,
  249.      tm_tmp.tm_hour,
  250.      tm_tmp.tm_min,
  251.      tm_tmp.tm_sec);
  252.     if (my_b_write(&log_file, (byte*) buff, len) ||
  253. flush_io_cache(&log_file))
  254.       goto err;
  255.     break;
  256.   }
  257.   case LOG_BIN:
  258.   {
  259.     bool write_file_name_to_index_file=0;
  260.     myf opt= MY_UNPACK_FILENAME;
  261.     if (!index_file_name_arg)
  262.     {
  263.       index_file_name_arg= name; // Use same basename for index file
  264.       opt= MY_UNPACK_FILENAME | MY_REPLACE_EXT;
  265.     }
  266.     if (!my_b_filelength(&log_file))
  267.     {
  268.       /*
  269. The binary log file was empty (probably newly created)
  270. This is the normal case and happens when the user doesn't specify
  271. an extension for the binary log files.
  272. In this case we write a standard header to it.
  273.       */
  274.       if (my_b_safe_write(&log_file, (byte*) BINLOG_MAGIC,
  275.   BIN_LOG_HEADER_SIZE))
  276.         goto err;
  277.       bytes_written += BIN_LOG_HEADER_SIZE;
  278.       write_file_name_to_index_file=1;
  279.     }
  280.     if (!my_b_inited(&index_file))
  281.     {
  282.       /*
  283. First open of this class instance
  284. Create an index file that will hold all file names uses for logging.
  285. Add new entries to the end of it.
  286. Index file (and binlog) are so critical for recovery/replication
  287. that we create them with MY_WAIT_IF_FULL.
  288.       */
  289.       fn_format(index_file_name, index_file_name_arg, mysql_data_home,
  290. ".index", opt);
  291.       if ((index_file_nr= my_open(index_file_name,
  292.   O_RDWR | O_CREAT | O_BINARY ,
  293.   MYF(MY_WME))) < 0 ||
  294.           my_sync(index_file_nr, MYF(MY_WME)) ||
  295.   init_io_cache(&index_file, index_file_nr,
  296. IO_SIZE, WRITE_CACHE,
  297. my_seek(index_file_nr,0L,MY_SEEK_END,MYF(0)),
  298. 0, MYF(MY_WME | MY_WAIT_IF_FULL)))
  299. goto err;
  300.     }
  301.     else
  302.     {
  303.       safe_mutex_assert_owner(&LOCK_index);
  304.       reinit_io_cache(&index_file, WRITE_CACHE, my_b_filelength(&index_file),
  305.       0, 0);
  306.     }
  307.     if (need_start_event && !no_auto_events)
  308.     {
  309.       need_start_event=0;
  310.       Start_log_event s;
  311.       s.set_log_pos(this);
  312.       s.write(&log_file);
  313.     }
  314.     if (flush_io_cache(&log_file) ||
  315.         my_sync(log_file.file, MYF(MY_WME)))
  316.       goto err;
  317.     if (write_file_name_to_index_file)
  318.     {
  319.       /*
  320.         As this is a new log file, we write the file name to the index
  321.         file. As every time we write to the index file, we sync it.
  322.       */
  323.       if (my_b_write(&index_file, (byte*) log_file_name,
  324.      strlen(log_file_name)) ||
  325.   my_b_write(&index_file, (byte*) "n", 1) ||
  326.   flush_io_cache(&index_file) ||
  327.           my_sync(index_file.file, MYF(MY_WME)))
  328. goto err;
  329.     }
  330.     break;
  331.   }
  332.   case LOG_CLOSED: // Impossible
  333.   case LOG_TO_BE_OPENED:
  334.     DBUG_ASSERT(1);
  335.     break;
  336.   }
  337.   DBUG_RETURN(0);
  338. err:
  339.   sql_print_error("Could not use %s for logging (error %d). 
  340. Turning logging off for the whole duration of the MySQL server process. 
  341. To turn it on again: fix the cause, 
  342. shutdown the MySQL server and restart it.", log_name, errno);
  343.   if (file >= 0)
  344.     my_close(file,MYF(0));
  345.   if (index_file_nr >= 0)
  346.     my_close(index_file_nr,MYF(0));
  347.   end_io_cache(&log_file);
  348.   end_io_cache(&index_file);
  349.   safeFree(name);
  350.   log_type= LOG_CLOSED;
  351.   DBUG_RETURN(1);
  352. }
  353. int MYSQL_LOG::get_current_log(LOG_INFO* linfo)
  354. {
  355.   pthread_mutex_lock(&LOCK_log);
  356.   strmake(linfo->log_file_name, log_file_name, sizeof(linfo->log_file_name)-1);
  357.   linfo->pos = my_b_tell(&log_file);
  358.   pthread_mutex_unlock(&LOCK_log);
  359.   return 0;
  360. }
  361. /*
  362.   Move all data up in a file in an filename index file
  363.   SYNOPSIS
  364.     copy_up_file_and_fill()
  365.     index_file File to move
  366.     offset Move everything from here to beginning
  367.   NOTE
  368.     File will be truncated to be 'offset' shorter or filled up with
  369.     newlines
  370.   IMPLEMENTATION
  371.     We do the copy outside of the IO_CACHE as the cache buffers would just
  372.     make things slower and more complicated.
  373.     In most cases the copy loop should only do one read.
  374.   RETURN VALUES
  375.     0 ok
  376. */
  377. static bool copy_up_file_and_fill(IO_CACHE *index_file, my_off_t offset)
  378. {
  379.   int bytes_read;
  380.   my_off_t init_offset= offset;
  381.   File file= index_file->file;
  382.   byte io_buf[IO_SIZE*2];
  383.   DBUG_ENTER("copy_up_file_and_fill");
  384.   for (;; offset+= bytes_read)
  385.   {
  386.     (void) my_seek(file, offset, MY_SEEK_SET, MYF(0));
  387.     if ((bytes_read= (int) my_read(file, io_buf, sizeof(io_buf), MYF(MY_WME)))
  388. < 0)
  389.       goto err;
  390.     if (!bytes_read)
  391.       break; // end of file
  392.     (void) my_seek(file, offset-init_offset, MY_SEEK_SET, MYF(0));
  393.     if (my_write(file, (byte*) io_buf, bytes_read, MYF(MY_WME | MY_NABP)))
  394.       goto err;
  395.   }
  396.   /* The following will either truncate the file or fill the end with n' */
  397.   if (my_chsize(file, offset - init_offset, 'n', MYF(MY_WME)) ||
  398.       my_sync(file, MYF(MY_WME)))
  399.     goto err;
  400.   /* Reset data in old index cache */
  401.   reinit_io_cache(index_file, READ_CACHE, (my_off_t) 0, 0, 1);
  402.   DBUG_RETURN(0);
  403. err:
  404.   DBUG_RETURN(1);
  405. }
  406. /*
  407.   Find the position in the log-index-file for the given log name
  408.   SYNOPSIS
  409.     find_log_pos()
  410.     linfo Store here the found log file name and position to
  411. the NEXT log file name in the index file.
  412.     log_name Filename to find in the index file.
  413. Is a null pointer if we want to read the first entry
  414.     need_lock Set this to 1 if the parent doesn't already have a
  415. lock on LOCK_index
  416.   NOTE
  417.     On systems without the truncate function the file will end with one or
  418.     more empty lines.  These will be ignored when reading the file.
  419.   RETURN VALUES
  420.     0 ok
  421.     LOG_INFO_EOF End of log-index-file found
  422.     LOG_INFO_IO Got IO error while reading file
  423. */
  424. int MYSQL_LOG::find_log_pos(LOG_INFO *linfo, const char *log_name,
  425.     bool need_lock)
  426. {
  427.   int error= 0;
  428.   char *fname= linfo->log_file_name;
  429.   uint log_name_len= log_name ? (uint) strlen(log_name) : 0;
  430.   DBUG_ENTER("find_log_pos");
  431.   DBUG_PRINT("enter",("log_name: %s", log_name ? log_name : "NULL"));
  432.   /*
  433.     Mutex needed because we need to make sure the file pointer does not move
  434.     from under our feet
  435.   */
  436.   if (need_lock)
  437.     pthread_mutex_lock(&LOCK_index);
  438.   safe_mutex_assert_owner(&LOCK_index);
  439.   /* As the file is flushed, we can't get an error here */
  440.   (void) reinit_io_cache(&index_file, READ_CACHE, (my_off_t) 0, 0, 0);
  441.   for (;;)
  442.   {
  443.     uint length;
  444.     my_off_t offset= my_b_tell(&index_file);
  445.     /* If we get 0 or 1 characters, this is the end of the file */
  446.     if ((length= my_b_gets(&index_file, fname, FN_REFLEN)) <= 1)
  447.     {
  448.       /* Did not find the given entry; Return not found or error */
  449.       error= !index_file.error ? LOG_INFO_EOF : LOG_INFO_IO;
  450.       break;
  451.     }
  452.     // if the log entry matches, null string matching anything
  453.     if (!log_name ||
  454. (log_name_len == length-1 && fname[log_name_len] == 'n' &&
  455.  !memcmp(fname, log_name, log_name_len)))
  456.     {
  457.       DBUG_PRINT("info",("Found log file entry"));
  458.       fname[length-1]=0; // remove last n
  459.       linfo->index_file_start_offset= offset;
  460.       linfo->index_file_offset = my_b_tell(&index_file);
  461.       break;
  462.     }
  463.   }
  464.   if (need_lock)
  465.     pthread_mutex_unlock(&LOCK_index);
  466.   DBUG_RETURN(error);
  467. }
  468. /*
  469.   Find the position in the log-index-file for the given log name
  470.   SYNOPSIS
  471.     find_next_log()
  472.     linfo Store here the next log file name and position to
  473. the file name after that.
  474.     need_lock Set this to 1 if the parent doesn't already have a
  475. lock on LOCK_index
  476.   NOTE
  477.     - Before calling this function, one has to call find_log_pos()
  478.       to set up 'linfo'
  479.     - Mutex needed because we need to make sure the file pointer does not move
  480.       from under our feet
  481.   RETURN VALUES
  482.     0 ok
  483.     LOG_INFO_EOF End of log-index-file found
  484.     LOG_INFO_IO Got IO error while reading file
  485. */
  486. int MYSQL_LOG::find_next_log(LOG_INFO* linfo, bool need_lock)
  487. {
  488.   int error= 0;
  489.   uint length;
  490.   char *fname= linfo->log_file_name;
  491.   if (need_lock)
  492.     pthread_mutex_lock(&LOCK_index);
  493.   safe_mutex_assert_owner(&LOCK_index);
  494.   /* As the file is flushed, we can't get an error here */
  495.   (void) reinit_io_cache(&index_file, READ_CACHE, linfo->index_file_offset, 0,
  496.  0);
  497.   linfo->index_file_start_offset= linfo->index_file_offset;
  498.   if ((length=my_b_gets(&index_file, fname, FN_REFLEN)) <= 1)
  499.   {
  500.     error = !index_file.error ? LOG_INFO_EOF : LOG_INFO_IO;
  501.     goto err;
  502.   }
  503.   fname[length-1]=0; // kill /n
  504.   linfo->index_file_offset = my_b_tell(&index_file);
  505. err:
  506.   if (need_lock)
  507.     pthread_mutex_unlock(&LOCK_index);
  508.   return error;
  509. }
  510. /*
  511.   Delete all logs refered to in the index file
  512.   Start writing to a new log file.  The new index file will only contain
  513.   this file.
  514.   SYNOPSIS
  515.      reset_logs()
  516.      thd Thread
  517.   NOTE
  518.     If not called from slave thread, write start event to new log
  519.   RETURN VALUES
  520.     0 ok
  521.     1   error
  522. */
  523. bool MYSQL_LOG::reset_logs(THD* thd)
  524. {
  525.   LOG_INFO linfo;
  526.   bool error=0;
  527.   const char* save_name;
  528.   enum_log_type save_log_type;
  529.   DBUG_ENTER("reset_logs");
  530.   /*
  531.     We need to get both locks to be sure that no one is trying to
  532.     write to the index log file.
  533.   */
  534.   pthread_mutex_lock(&LOCK_log);
  535.   pthread_mutex_lock(&LOCK_index);
  536.   /* Save variables so that we can reopen the log */
  537.   save_name=name;
  538.   name=0; // Protect against free
  539.   save_log_type=log_type;
  540.   close(LOG_CLOSE_TO_BE_OPENED);
  541.   /* First delete all old log files */
  542.   if (find_log_pos(&linfo, NullS, 0))
  543.   {
  544.     error=1;
  545.     goto err;
  546.   }
  547.   
  548.   for (;;)
  549.   {
  550.     my_delete(linfo.log_file_name, MYF(MY_WME));
  551.     if (find_next_log(&linfo, 0))
  552.       break;
  553.   }
  554.   /* Start logging with a new file */
  555.   close(LOG_CLOSE_INDEX);
  556.   my_delete(index_file_name, MYF(MY_WME)); // Reset (open will update)
  557.   if (!thd->slave_thread)
  558.     need_start_event=1;
  559.   open(save_name, save_log_type, 0, index_file_name,
  560.        io_cache_type, no_auto_events, max_size);
  561.   my_free((gptr) save_name, MYF(0));
  562. err:  
  563.   pthread_mutex_unlock(&LOCK_index);
  564.   pthread_mutex_unlock(&LOCK_log);
  565.   DBUG_RETURN(error);
  566. }
  567. /*
  568.   Delete relay log files prior to rli->group_relay_log_name
  569.   (i.e. all logs which are not involved in a non-finished group
  570.   (transaction)), remove them from the index file and start on next relay log.
  571.   SYNOPSIS
  572.     purge_first_log()
  573.     rli  Relay log information
  574.     included     If false, all relay logs that are strictly before
  575.                  rli->group_relay_log_name are deleted ; if true, the latter is
  576.                  deleted too (i.e. all relay logs
  577.                  read by the SQL slave thread are deleted).
  578.     
  579.   NOTE
  580.     - This is only called from the slave-execute thread when it has read
  581.       all commands from a relay log and want to switch to a new relay log.
  582.     - When this happens, we can be in an active transaction as
  583.       a transaction can span over two relay logs
  584.       (although it is always written as a single block to the master's binary 
  585.       log, hence cannot span over two master's binary logs).
  586.   IMPLEMENTATION
  587.     - Protects index file with LOCK_index
  588.     - Delete relevant relay log files
  589.     - Copy all file names after these ones to the front of the index file
  590.     - If the OS has truncate, truncate the file, else fill it with n'
  591.     - Read the next file name from the index file and store in rli->linfo
  592.   RETURN VALUES
  593.     0 ok
  594.     LOG_INFO_EOF End of log-index-file found
  595.     LOG_INFO_SEEK Could not allocate IO cache
  596.     LOG_INFO_IO Got IO error while reading file
  597. */
  598. #ifdef HAVE_REPLICATION
  599. int MYSQL_LOG::purge_first_log(struct st_relay_log_info* rli, bool included) 
  600. {
  601.   int error;
  602.   DBUG_ENTER("purge_first_log");
  603.   DBUG_ASSERT(is_open());
  604.   DBUG_ASSERT(rli->slave_running == 1);
  605.   DBUG_ASSERT(!strcmp(rli->linfo.log_file_name,rli->event_relay_log_name));
  606.   pthread_mutex_lock(&LOCK_index);
  607.   pthread_mutex_lock(&rli->log_space_lock);
  608.   rli->relay_log.purge_logs(rli->group_relay_log_name, included,
  609.                             0, 0, &rli->log_space_total);
  610.   // Tell the I/O thread to take the relay_log_space_limit into account
  611.   rli->ignore_log_space_limit= 0;
  612.   pthread_mutex_unlock(&rli->log_space_lock);
  613.   /*
  614.     Ok to broadcast after the critical region as there is no risk of
  615.     the mutex being destroyed by this thread later - this helps save
  616.     context switches
  617.   */
  618.   pthread_cond_broadcast(&rli->log_space_cond);
  619.   
  620.   /*
  621.     Read the next log file name from the index file and pass it back to
  622.     the caller
  623.     If included is true, we want the first relay log;
  624.     otherwise we want the one after event_relay_log_name.
  625.   */
  626.   if ((included && (error=find_log_pos(&rli->linfo, NullS, 0))) ||
  627.       (!included &&
  628.        ((error=find_log_pos(&rli->linfo, rli->event_relay_log_name, 0)) ||
  629.         (error=find_next_log(&rli->linfo, 0)))))
  630.   {
  631.     char buff[22];
  632.     sql_print_error("next log error: %d  offset: %s  log: %s included: %d",
  633.                     error,
  634.                     llstr(rli->linfo.index_file_offset,buff),
  635.                     rli->group_relay_log_name,
  636.                     included);
  637.     goto err;
  638.   }
  639.   /*
  640.     Reset rli's coordinates to the current log.
  641.   */
  642.   rli->event_relay_log_pos= BIN_LOG_HEADER_SIZE;
  643.   strmake(rli->event_relay_log_name,rli->linfo.log_file_name,
  644.   sizeof(rli->event_relay_log_name)-1);
  645.   /*
  646.     If we removed the rli->group_relay_log_name file,
  647.     we must update the rli->group* coordinates, otherwise do not touch it as the
  648.     group's execution is not finished (e.g. COMMIT not executed)
  649.   */
  650.   if (included)
  651.   {
  652.     rli->group_relay_log_pos = BIN_LOG_HEADER_SIZE;
  653.     strmake(rli->group_relay_log_name,rli->linfo.log_file_name,
  654.             sizeof(rli->group_relay_log_name)-1);
  655.     rli->notify_group_relay_log_name_update();
  656.   }
  657.   /* Store where we are in the new file for the execution thread */
  658.   flush_relay_log_info(rli);
  659. err:
  660.   pthread_mutex_unlock(&LOCK_index);
  661.   DBUG_RETURN(error);
  662. }
  663. /*
  664.   Update log index_file
  665. */
  666. int MYSQL_LOG::update_log_index(LOG_INFO* log_info, bool need_update_threads)
  667. {
  668.   if (copy_up_file_and_fill(&index_file, log_info->index_file_start_offset))
  669.     return LOG_INFO_IO;
  670.   // now update offsets in index file for running threads
  671.   if (need_update_threads)
  672.     adjust_linfo_offsets(log_info->index_file_start_offset);
  673.   return 0;
  674. }
  675. /*
  676.   Remove all logs before the given log from disk and from the index file.
  677.   SYNOPSIS
  678.     purge_logs()
  679.     to_log         Delete all log file name before this file. 
  680.     included            If true, to_log is deleted too.
  681.     need_mutex
  682.     need_update_threads If we want to update the log coordinates of
  683.                         all threads. False for relay logs, true otherwise.
  684.     freed_log_space     If not null, decrement this variable of
  685.                         the amount of log space freed
  686.   NOTES
  687.     If any of the logs before the deleted one is in use,
  688.     only purge logs up to this one.
  689.   RETURN VALUES
  690.     0 ok
  691.     LOG_INFO_EOF to_log not found
  692. */
  693. int MYSQL_LOG::purge_logs(const char *to_log, 
  694.                           bool included,
  695.                           bool need_mutex, 
  696.                           bool need_update_threads, 
  697.                           ulonglong *decrease_log_space)
  698. {
  699.   int error;
  700.   bool exit_loop= 0;
  701.   LOG_INFO log_info;
  702.   DBUG_ENTER("purge_logs");
  703.   DBUG_PRINT("info",("to_log= %s",to_log));
  704.   if (need_mutex)
  705.     pthread_mutex_lock(&LOCK_index);
  706.   if ((error=find_log_pos(&log_info, to_log, 0 /*no mutex*/)))
  707.     goto err;
  708.   /*
  709.     File name exists in index file; delete until we find this file
  710.     or a file that is used.
  711.   */
  712.   if ((error=find_log_pos(&log_info, NullS, 0 /*no mutex*/)))
  713.     goto err;
  714.   while ((strcmp(to_log,log_info.log_file_name) || (exit_loop=included)) &&
  715.          !log_in_use(log_info.log_file_name))
  716.   {
  717.     ulong tmp;
  718.     LINT_INIT(tmp);
  719.     if (decrease_log_space) //stat the file we want to delete
  720.     {
  721.       MY_STAT s;
  722.       if (my_stat(log_info.log_file_name,&s,MYF(0)))
  723.         tmp= s.st_size;
  724.       else
  725.       {
  726.         /* 
  727.            If we could not stat, we can't know the amount
  728.            of space that deletion will free. In most cases,
  729.            deletion won't work either, so it's not a problem.
  730.         */
  731. sql_print_information("Failed to execute my_stat on file '%s'",
  732.       log_info.log_file_name);
  733.         tmp= 0; 
  734.       }
  735.     }
  736.     /*
  737.       It's not fatal if we can't delete a log file ;
  738.       if we could delete it, take its size into account
  739.     */
  740.     DBUG_PRINT("info",("purging %s",log_info.log_file_name));
  741.     if (!my_delete(log_info.log_file_name, MYF(0)) && decrease_log_space)
  742.       *decrease_log_space-= tmp;
  743.     if (find_next_log(&log_info, 0) || exit_loop)
  744.       break;
  745.   }
  746.   /*
  747.     If we get killed -9 here, the sysadmin would have to edit
  748.     the log index file after restart - otherwise, this should be safe
  749.   */
  750.   error= update_log_index(&log_info, need_update_threads);
  751. err:
  752.   if (need_mutex)
  753.     pthread_mutex_unlock(&LOCK_index);
  754.   DBUG_RETURN(error);
  755. }
  756. /*
  757.   Remove all logs before the given file date from disk and from the
  758.   index file.
  759.   SYNOPSIS
  760.     purge_logs_before_date()
  761.     thd Thread pointer
  762.     before_date Delete all log files before given date.
  763.   NOTES
  764.     If any of the logs before the deleted one is in use,
  765.     only purge logs up to this one.
  766.   RETURN VALUES
  767.     0 ok
  768.     LOG_INFO_PURGE_NO_ROTATE Binary file that can't be rotated
  769. */
  770. int MYSQL_LOG::purge_logs_before_date(time_t purge_time)
  771. {
  772.   int error;
  773.   LOG_INFO log_info;
  774.   MY_STAT stat_area;
  775.   DBUG_ENTER("purge_logs_before_date");
  776.   pthread_mutex_lock(&LOCK_index);
  777.   /*
  778.     Delete until we find curren file
  779.     or a file that is used or a file
  780.     that is older than purge_time.
  781.   */
  782.   if ((error=find_log_pos(&log_info, NullS, 0 /*no mutex*/)))
  783.     goto err;
  784.   while (strcmp(log_file_name, log_info.log_file_name) &&
  785.  !log_in_use(log_info.log_file_name))
  786.   {
  787.     /* It's not fatal even if we can't delete a log file */
  788.     if (!my_stat(log_info.log_file_name, &stat_area, MYF(0)) ||
  789. stat_area.st_mtime >= purge_time)
  790.       break;
  791.     my_delete(log_info.log_file_name, MYF(0));
  792.     if (find_next_log(&log_info, 0))
  793.       break;
  794.   }
  795.   /*
  796.     If we get killed -9 here, the sysadmin would have to edit
  797.     the log index file after restart - otherwise, this should be safe
  798.   */
  799.   error= update_log_index(&log_info, 1);
  800. err:
  801.   pthread_mutex_unlock(&LOCK_index);
  802.   DBUG_RETURN(error);
  803. }
  804. #endif /* HAVE_REPLICATION */
  805. /*
  806.   Create a new log file name
  807.   SYNOPSIS
  808.     make_log_name()
  809.     buf buf of at least FN_REFLEN where new name is stored
  810.   NOTE
  811.     If file name will be longer then FN_REFLEN it will be truncated
  812. */
  813. void MYSQL_LOG::make_log_name(char* buf, const char* log_ident)
  814. {
  815.   uint dir_len = dirname_length(log_file_name); 
  816.   if (dir_len > FN_REFLEN)
  817.     dir_len=FN_REFLEN-1;
  818.   strnmov(buf, log_file_name, dir_len);
  819.   strmake(buf+dir_len, log_ident, FN_REFLEN - dir_len);
  820. }
  821. /*
  822.   Check if we are writing/reading to the given log file
  823. */
  824. bool MYSQL_LOG::is_active(const char *log_file_name_arg)
  825. {
  826.   return !strcmp(log_file_name, log_file_name_arg);
  827. }
  828. /*
  829.   Start writing to a new log file or reopen the old file
  830.   SYNOPSIS
  831.     new_file()
  832.     need_lock Set to 1 (default) if caller has not locked
  833. LOCK_log and LOCK_index
  834.   NOTE
  835.     The new file name is stored last in the index file
  836. */
  837. void MYSQL_LOG::new_file(bool need_lock)
  838. {
  839.   char new_name[FN_REFLEN], *new_name_ptr, *old_name;
  840.   enum_log_type save_log_type;
  841.   DBUG_ENTER("MYSQL_LOG::new_file");
  842.   if (!is_open())
  843.   {
  844.     DBUG_PRINT("info",("log is closed"));
  845.     DBUG_VOID_RETURN;
  846.   }
  847.   if (need_lock)
  848.   {
  849.     pthread_mutex_lock(&LOCK_log);
  850.     pthread_mutex_lock(&LOCK_index);
  851.   }    
  852.   safe_mutex_assert_owner(&LOCK_log);
  853.   safe_mutex_assert_owner(&LOCK_index);
  854.   /* Reuse old name if not binlog and not update log */
  855.   new_name_ptr= name;
  856.   /*
  857.     If user hasn't specified an extension, generate a new log name
  858.     We have to do this here and not in open as we want to store the
  859.     new file name in the current binary log file.
  860.   */
  861.   if (generate_new_name(new_name, name))
  862.     goto end;
  863.   new_name_ptr=new_name;
  864.   
  865.   if (log_type == LOG_BIN)
  866.   {
  867.     if (!no_auto_events)
  868.     {
  869.       /*
  870.         We log the whole file name for log file as the user may decide
  871.         to change base names at some point.
  872.       */
  873.       THD *thd = current_thd; /* may be 0 if we are reacting to SIGHUP */
  874.       Rotate_log_event r(thd,new_name+dirname_length(new_name),
  875.                          0, LOG_EVENT_OFFSET, 0);
  876.       r.set_log_pos(this);
  877.       r.write(&log_file);
  878.       bytes_written += r.get_event_len();
  879.     }
  880.     /*
  881.       Update needs to be signalled even if there is no rotate event
  882.       log rotation should give the waiting thread a signal to
  883.       discover EOF and move on to the next log.
  884.     */
  885.     signal_update(); 
  886.   }
  887.   old_name=name;
  888.   save_log_type=log_type;
  889.   name=0; // Don't free name
  890.   close(LOG_CLOSE_TO_BE_OPENED);
  891.   /* 
  892.      Note that at this point, log_type != LOG_CLOSED (important for is_open()).
  893.   */
  894.   open(old_name, save_log_type, new_name_ptr, index_file_name, io_cache_type,
  895.        no_auto_events, max_size);
  896.   if (this == &mysql_bin_log)
  897.     report_pos_in_innodb();
  898.   my_free(old_name,MYF(0));
  899. end:
  900.   if (need_lock)
  901.   {
  902.     pthread_mutex_unlock(&LOCK_index);
  903.     pthread_mutex_unlock(&LOCK_log);
  904.   }
  905.   DBUG_VOID_RETURN;
  906. }
  907. bool MYSQL_LOG::append(Log_event* ev)
  908. {
  909.   bool error = 0;
  910.   pthread_mutex_lock(&LOCK_log);
  911.   DBUG_ENTER("MYSQL_LOG::append");
  912.   DBUG_ASSERT(log_file.type == SEQ_READ_APPEND);
  913.   /*
  914.     Log_event::write() is smart enough to use my_b_write() or
  915.     my_b_append() depending on the kind of cache we have.
  916.   */
  917.   if (ev->write(&log_file))
  918.   {
  919.     error=1;
  920.     goto err;
  921.   }
  922.   bytes_written += ev->get_event_len();
  923.   DBUG_PRINT("info",("max_size: %lu",max_size));
  924.   if ((uint) my_b_append_tell(&log_file) > max_size)
  925.   {
  926.     pthread_mutex_lock(&LOCK_index);
  927.     new_file(0);
  928.     pthread_mutex_unlock(&LOCK_index);
  929.   }
  930. err:  
  931.   pthread_mutex_unlock(&LOCK_log);
  932.   signal_update(); // Safe as we don't call close
  933.   DBUG_RETURN(error);
  934. }
  935. bool MYSQL_LOG::appendv(const char* buf, uint len,...)
  936. {
  937.   bool error= 0;
  938.   DBUG_ENTER("MYSQL_LOG::appendv");
  939.   va_list(args);
  940.   va_start(args,len);
  941.   
  942.   DBUG_ASSERT(log_file.type == SEQ_READ_APPEND);
  943.   
  944.   safe_mutex_assert_owner(&LOCK_log);
  945.   do
  946.   {
  947.     if (my_b_append(&log_file,(byte*) buf,len))
  948.     {
  949.       error= 1;
  950.       goto err;
  951.     }
  952.     bytes_written += len;
  953.   } while ((buf=va_arg(args,const char*)) && (len=va_arg(args,uint)));
  954.   DBUG_PRINT("info",("max_size: %lu",max_size));
  955.   if ((uint) my_b_append_tell(&log_file) > max_size)
  956.   {
  957.     pthread_mutex_lock(&LOCK_index);
  958.     new_file(0);
  959.     pthread_mutex_unlock(&LOCK_index);
  960.   }
  961. err:
  962.   if (!error)
  963.     signal_update();
  964.   DBUG_RETURN(error);
  965. }
  966. /*
  967.   Write to normal (not rotable) log
  968.   This is the format for the 'normal', 'slow' and 'update' logs.
  969. */
  970. bool MYSQL_LOG::write(THD *thd,enum enum_server_command command,
  971.       const char *format,...)
  972. {
  973.   if (is_open() && (what_to_log & (1L << (uint) command)))
  974.   {
  975.     uint length;
  976.     int error= 0;
  977.     VOID(pthread_mutex_lock(&LOCK_log));
  978.     /* Test if someone closed between the is_open test and lock */
  979.     if (is_open())
  980.     {
  981.       time_t skr;
  982.       ulong id;
  983.       va_list args;
  984.       va_start(args,format);
  985.       char buff[32];
  986.       if (thd)
  987.       { // Normal thread
  988. if ((thd->options & OPTION_LOG_OFF)
  989. #ifndef NO_EMBEDDED_ACCESS_CHECKS
  990.     && (thd->master_access & SUPER_ACL)
  991. #endif
  992. )
  993. {
  994.   VOID(pthread_mutex_unlock(&LOCK_log));
  995.   return 0; // No logging
  996. }
  997. id=thd->thread_id;
  998. if (thd->user_time || !(skr=thd->query_start()))
  999.   skr=time(NULL); // Connected
  1000.       }
  1001.       else
  1002.       { // Log from connect handler
  1003. skr=time(NULL);
  1004. id=0;
  1005.       }
  1006.       if (skr != last_time)
  1007.       {
  1008. last_time=skr;
  1009. struct tm tm_tmp;
  1010. struct tm *start;
  1011. localtime_r(&skr,&tm_tmp);
  1012. start=&tm_tmp;
  1013. /* Note that my_b_write() assumes it knows the length for this */
  1014. sprintf(buff,"%02d%02d%02d %2d:%02d:%02dt",
  1015. start->tm_year % 100,
  1016. start->tm_mon+1,
  1017. start->tm_mday,
  1018. start->tm_hour,
  1019. start->tm_min,
  1020. start->tm_sec);
  1021. if (my_b_write(&log_file, (byte*) buff,16))
  1022.   error=errno;
  1023.       }
  1024.       else if (my_b_write(&log_file, (byte*) "tt",2) < 0)
  1025. error=errno;
  1026.       length=my_sprintf(buff,
  1027. (buff, "%7ld %-11.11s", id,
  1028.  command_name[(uint) command]));
  1029.       if (my_b_write(&log_file, (byte*) buff,length))
  1030. error=errno;
  1031.       if (format)
  1032.       {
  1033. if (my_b_write(&log_file, (byte*) " ",1) ||
  1034.     my_b_vprintf(&log_file,format,args) == (uint) -1)
  1035.   error=errno;
  1036.       }
  1037.       if (my_b_write(&log_file, (byte*) "n",1) ||
  1038.   flush_io_cache(&log_file))
  1039. error=errno;
  1040.       if (error && ! write_error)
  1041.       {
  1042. write_error=1;
  1043. sql_print_error(ER(ER_ERROR_ON_WRITE),name,error);
  1044.       }
  1045.       va_end(args);
  1046.     }
  1047.     VOID(pthread_mutex_unlock(&LOCK_log));
  1048.     return error != 0;
  1049.   }
  1050.   return 0;
  1051. }
  1052. inline bool sync_binlog(IO_CACHE *cache)
  1053. {
  1054.   return (sync_binlog_period &&
  1055.           (sync_binlog_period == ++sync_binlog_counter) &&
  1056.           (sync_binlog_counter= 0, my_sync(cache->file, MYF(MY_WME))));
  1057. }
  1058. /*
  1059.   Write an event to the binary log
  1060. */
  1061. bool MYSQL_LOG::write(Log_event* event_info)
  1062. {
  1063.   THD *thd=event_info->thd;
  1064.   bool called_handler_commit=0;
  1065.   bool error=0;
  1066.   bool should_rotate = 0;
  1067.   DBUG_ENTER("MYSQL_LOG::write(event)");
  1068.   
  1069.   pthread_mutex_lock(&LOCK_log);
  1070.   /* 
  1071.      In most cases this is only called if 'is_open()' is true; in fact this is
  1072.      mostly called if is_open() *was* true a few instructions before, but it
  1073.      could have changed since.
  1074.   */
  1075.   if (is_open())
  1076.   {
  1077.     const char *local_db= event_info->get_db();
  1078.     IO_CACHE *file= &log_file;
  1079. #ifdef USING_TRANSACTIONS    
  1080.     /*
  1081.       Should we write to the binlog cache or to the binlog on disk?
  1082.       Write to the binlog cache if:
  1083.       - it is already not empty (meaning we're in a transaction; note that the
  1084.      present event could be about a non-transactional table, but still we need
  1085.      to write to the binlog cache in that case to handle updates to mixed
  1086.      trans/non-trans table types the best possible in binlogging)
  1087.       - or if the event asks for it (cache_stmt == true).
  1088.     */
  1089.     if (opt_using_transactions &&
  1090. (event_info->get_cache_stmt() ||
  1091.  (thd && my_b_tell(&thd->transaction.trans_log))))
  1092.       file= &thd->transaction.trans_log;
  1093. #endif
  1094.     DBUG_PRINT("info",("event type=%d",event_info->get_type_code()));
  1095. #ifdef HAVE_REPLICATION
  1096.     /* 
  1097.        In the future we need to add to the following if tests like
  1098.        "do the involved tables match (to be implemented)
  1099.         binlog_[wild_]{do|ignore}_table?" (WL#1049)"
  1100.     */
  1101.     if ((thd && !(thd->options & OPTION_BIN_LOG)) ||
  1102. (!db_ok(local_db, binlog_do_db, binlog_ignore_db)))
  1103.     {
  1104.       VOID(pthread_mutex_unlock(&LOCK_log));
  1105.       DBUG_PRINT("error",("!db_ok('%s')", local_db));
  1106.       DBUG_RETURN(0);
  1107.     }
  1108. #endif /* HAVE_REPLICATION */
  1109.     error=1;
  1110.     /*
  1111.       No check for auto events flag here - this write method should
  1112.       never be called if auto-events are enabled
  1113.     */
  1114.     /*
  1115.     1. Write first log events which describe the 'run environment'
  1116.     of the SQL command
  1117.     */
  1118.     if (thd)
  1119.     {
  1120. #if MYSQL_VERSION_ID < 50000
  1121.       /*
  1122.         To make replication of charsets working in 4.1 we are writing values
  1123.         of charset related variables before every statement in the binlog,
  1124.         if values of those variables differ from global server-wide defaults.
  1125.         We are using SET ONE_SHOT command so that the charset vars get reset
  1126.         to default after the first non-SET statement.
  1127.         In the next 5.0 this won't be needed as we will use the new binlog
  1128.         format to store charset info.
  1129.       */
  1130.       if ((thd->variables.character_set_client->number !=
  1131.            global_system_variables.collation_server->number) ||
  1132.           (thd->variables.character_set_client->number !=
  1133.            thd->variables.collation_connection->number) ||
  1134.           (thd->variables.collation_server->number !=
  1135.            thd->variables.collation_connection->number))
  1136.       {
  1137. char buf[200];
  1138.         int written= my_snprintf(buf, sizeof(buf)-1,
  1139.                     "SET ONE_SHOT CHARACTER_SET_CLIENT=%u,
  1140. COLLATION_CONNECTION=%u,COLLATION_DATABASE=%u,COLLATION_SERVER=%u",
  1141.                              (uint) thd->variables.character_set_client->number,
  1142.                              (uint) thd->variables.collation_connection->number,
  1143.                              (uint) thd->variables.collation_database->number,
  1144.                              (uint) thd->variables.collation_server->number);
  1145. Query_log_event e(thd, buf, written, 0, FALSE);
  1146. e.set_log_pos(this);
  1147. e.error_code = 0; // This statement cannot fail (see [1]).
  1148. if (e.write(file))
  1149.   goto err;
  1150.       }
  1151.       /*
  1152.         We use the same ONE_SHOT trick for making replication of time zones 
  1153.         working in 4.1. Again in 5.0 we have better means for doing this.
  1154.       */
  1155.       if (thd->time_zone_used &&
  1156.           thd->variables.time_zone != global_system_variables.time_zone)
  1157.       {
  1158.         char buf[MAX_TIME_ZONE_NAME_LENGTH + 26];
  1159.         char *buf_end= strxmov(buf, "SET ONE_SHOT TIME_ZONE='", 
  1160.                                thd->variables.time_zone->get_name()->ptr(),
  1161.                                "'", NullS);
  1162.         Query_log_event e(thd, buf, buf_end - buf, 0, FALSE);
  1163.         e.set_log_pos(this);
  1164. e.error_code = 0; // This statement cannot fail (see [1]).
  1165.         if (e.write(file))
  1166.           goto err;
  1167.       }
  1168. #endif
  1169.       if (thd->last_insert_id_used)
  1170.       {
  1171. Intvar_log_event e(thd,(uchar) LAST_INSERT_ID_EVENT,
  1172.    thd->current_insert_id);
  1173. e.set_log_pos(this);
  1174. if (e.write(file))
  1175.   goto err;
  1176.       }
  1177.       if (thd->insert_id_used)
  1178.       {
  1179. Intvar_log_event e(thd,(uchar) INSERT_ID_EVENT,thd->last_insert_id);
  1180. e.set_log_pos(this);
  1181. if (e.write(file))
  1182.   goto err;
  1183.       }
  1184.       if (thd->rand_used)
  1185.       {
  1186. Rand_log_event e(thd,thd->rand_saved_seed1,thd->rand_saved_seed2);
  1187. e.set_log_pos(this);
  1188. if (e.write(file))
  1189.   goto err;
  1190.       }
  1191.       if (thd->user_var_events.elements)
  1192.       {
  1193. for (uint i= 0; i < thd->user_var_events.elements; i++)
  1194. {
  1195.   BINLOG_USER_VAR_EVENT *user_var_event;
  1196.   get_dynamic(&thd->user_var_events,(gptr) &user_var_event, i);
  1197.           User_var_log_event e(thd, user_var_event->user_var_event->name.str,
  1198.                                user_var_event->user_var_event->name.length,
  1199.                                user_var_event->value,
  1200.                                user_var_event->length,
  1201.                                user_var_event->type,
  1202.        user_var_event->charset_number);
  1203.           e.set_log_pos(this);
  1204.   if (e.write(file))
  1205.     goto err;
  1206. }
  1207.       }
  1208. #ifdef TO_BE_REMOVED
  1209.       if (thd->variables.convert_set)
  1210.       {
  1211. char buf[256], *p;
  1212. p= strmov(strmov(buf, "SET CHARACTER SET "),
  1213.   thd->variables.convert_set->name);
  1214. Query_log_event e(thd, buf, (ulong) (p - buf), 0);
  1215. e.set_log_pos(this);
  1216. e.error_code = 0; // This statement cannot fail (see [1]).
  1217. if (e.write(file))
  1218.   goto err;
  1219.       }
  1220. #endif
  1221.       /*
  1222. If the user has set FOREIGN_KEY_CHECKS=0 we wrap every SQL
  1223. command in the binlog inside:
  1224. SET FOREIGN_KEY_CHECKS=0;
  1225. <command>;
  1226. SET FOREIGN_KEY_CHECKS=1;
  1227.       */
  1228.       if (thd->options & OPTION_NO_FOREIGN_KEY_CHECKS)
  1229.       {
  1230. Query_log_event e(thd, "SET FOREIGN_KEY_CHECKS=0", 24, 0, FALSE);
  1231. e.set_log_pos(this);
  1232. e.error_code = 0; // This statement cannot fail (see [1]).
  1233. if (e.write(file))
  1234.   goto err;
  1235.       }
  1236.     }
  1237.     /* 
  1238.        Write the SQL command 
  1239.        
  1240.        [1] If this statement has an error code, the slave is required to fail
  1241.            with the same error code or stop. The preamble and epilogue should
  1242.            *not* have this error code since the execution of those is
  1243.            guaranteed *not* to produce any error code. This would therefore
  1244.            stop the slave even if the execution of the real statement can be
  1245.            handled gracefully by the slave.
  1246.      */
  1247.     event_info->set_log_pos(this);
  1248.     if (event_info->write(file))
  1249.       goto err;
  1250.     /* Write log events to reset the 'run environment' of the SQL command */
  1251.     if (thd)
  1252.     {
  1253.       if (thd->options & OPTION_NO_FOREIGN_KEY_CHECKS)
  1254.       {
  1255.         Query_log_event e(thd, "SET FOREIGN_KEY_CHECKS=1", 24, 0, FALSE);
  1256.         e.set_log_pos(this);
  1257. e.error_code = 0; // This statement cannot fail (see [1]).
  1258.         if (e.write(file))
  1259.           goto err;
  1260.       }
  1261.     }
  1262.     /*
  1263.       Tell for transactional table handlers up to which position in the
  1264.       binlog file we wrote. The table handler can store this info, and
  1265.       after crash recovery print for the user the offset of the last
  1266.       transactions which were recovered. Actually, we must also call
  1267.       the table handler commit here, protected by the LOCK_log mutex,
  1268.       because otherwise the transactions may end up in a different order
  1269.       in the table handler log!
  1270.       Note that we will NOT call ha_report_binlog_offset_and_commit() if
  1271.       there are binlog events cached in the transaction cache. That is
  1272.       because then the log event which we write to the binlog here is
  1273.       not a transactional event. In versions < 4.0.13 before this fix this
  1274.       caused an InnoDB transaction to be committed if in the middle there
  1275.       was a MyISAM event!
  1276.     */
  1277.     if (file == &log_file) // we are writing to the real log (disk)
  1278.     {
  1279.       if (flush_io_cache(file) || sync_binlog(file))
  1280. goto err;
  1281.       if (opt_using_transactions &&
  1282.           !(thd->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)))
  1283.       {
  1284.         /*
  1285.           LOAD DATA INFILE in AUTOCOMMIT=1 mode writes to the binlog
  1286.           chunks also before it is successfully completed. We only report
  1287.           the binlog write and do the commit inside the transactional table
  1288.           handler if the log event type is appropriate.
  1289.         */
  1290.         
  1291.         if (event_info->get_type_code() == QUERY_EVENT ||
  1292.             event_info->get_type_code() == EXEC_LOAD_EVENT)
  1293.         {
  1294. #ifndef DBUG_OFF
  1295.           if (unlikely(opt_crash_binlog_innodb))
  1296.           {
  1297.             /*
  1298.               This option is for use in rpl_crash_binlog_innodb.test.
  1299.               1st we want to verify that Binlog_dump thread cannot send the
  1300.               event now (because of LOCK_log): we here tell the Binlog_dump
  1301.               thread to wake up, sleep for the slave to have time to possibly
  1302.               receive data from the master (it should not), and then crash.
  1303.               2nd we want to verify that at crash recovery the rolled back
  1304.               event is cut from the binlog.
  1305.             */
  1306.             if (!(--opt_crash_binlog_innodb))
  1307.             {
  1308.               signal_update();
  1309.               sleep(2);
  1310.               fprintf(stderr,"This is a normal crash because of"
  1311.                       " --crash-binlog-innodbn");
  1312.               assert(0);
  1313.             }
  1314.             DBUG_PRINT("info",("opt_crash_binlog_innodb: %d",
  1315.                                opt_crash_binlog_innodb));
  1316.           }
  1317. #endif
  1318.           error = ha_report_binlog_offset_and_commit(thd, log_file_name,
  1319.                                                      file->pos_in_file);
  1320.           called_handler_commit=1;
  1321.         }
  1322.       }
  1323.       /* We wrote to the real log, check automatic rotation; */
  1324.       DBUG_PRINT("info",("max_size: %lu",max_size));      
  1325.       should_rotate= (my_b_tell(file) >= (my_off_t) max_size); 
  1326.     }
  1327.     error=0;
  1328. err:
  1329.     if (error)
  1330.     {
  1331.       if (my_errno == EFBIG)
  1332. my_error(ER_TRANS_CACHE_FULL, MYF(0));
  1333.       else
  1334. my_error(ER_ERROR_ON_WRITE, MYF(0), name, errno);
  1335.       write_error=1;
  1336.     }
  1337.     if (file == &log_file)
  1338.       signal_update();
  1339.     if (should_rotate)
  1340.     {
  1341.       pthread_mutex_lock(&LOCK_index);      
  1342.       new_file(0); // inside mutex
  1343.       pthread_mutex_unlock(&LOCK_index);
  1344.     }
  1345.   }
  1346.   pthread_mutex_unlock(&LOCK_log);
  1347.   /*
  1348.     Flush the transactional handler log file now that we have released
  1349.     LOCK_log; the flush is placed here to eliminate the bottleneck on the
  1350.     group commit
  1351.   */
  1352.   if (called_handler_commit)
  1353.     ha_commit_complete(thd);
  1354. #ifdef HAVE_REPLICATION
  1355.   if (should_rotate && expire_logs_days)
  1356.   {
  1357.     long purge_time= time(0) - expire_logs_days*24*60*60;
  1358.     if (purge_time >= 0)
  1359.       error= purge_logs_before_date(purge_time);
  1360.   }
  1361. #endif
  1362.   DBUG_RETURN(error);
  1363. }
  1364. uint MYSQL_LOG::next_file_id()
  1365. {
  1366.   uint res;
  1367.   pthread_mutex_lock(&LOCK_log);
  1368.   res = file_id++;
  1369.   pthread_mutex_unlock(&LOCK_log);
  1370.   return res;
  1371. }
  1372. /*
  1373.   Write a cached log entry to the binary log
  1374.   SYNOPSIS
  1375.     write()
  1376.     thd 
  1377.     cache The cache to copy to the binlog
  1378.     commit_or_rollback  If true, will write "COMMIT" in the end, if false will
  1379.                         write "ROLLBACK".
  1380.   NOTE
  1381.     - We only come here if there is something in the cache.
  1382.     - The thing in the cache is always a complete transaction
  1383.     - 'cache' needs to be reinitialized after this functions returns.
  1384.   IMPLEMENTATION
  1385.     - To support transaction over replication, we wrap the transaction
  1386.       with BEGIN/COMMIT or BEGIN/ROLLBACK in the binary log.
  1387.       We want to write a BEGIN/ROLLBACK block when a non-transactional table was
  1388.       updated in a transaction which was rolled back. This is to ensure that the
  1389.       same updates are run on the slave.
  1390. */
  1391. bool MYSQL_LOG::write(THD *thd, IO_CACHE *cache, bool commit_or_rollback)
  1392. {
  1393.   bool should_rotate= 0, error= 0;
  1394.   VOID(pthread_mutex_lock(&LOCK_log));
  1395.   DBUG_ENTER("MYSQL_LOG::write(cache");
  1396.   
  1397.   if (is_open()) // Should always be true
  1398.   {
  1399.     uint length;
  1400.     /*
  1401.       Add the "BEGIN" and "COMMIT" in the binlog around transactions
  1402.       which may contain more than 1 SQL statement. If we run with
  1403.       AUTOCOMMIT=1, then MySQL immediately writes each SQL statement to
  1404.       the binlog when the statement has been completed. No need to add
  1405.       "BEGIN" ... "COMMIT" around such statements. Otherwise, MySQL uses
  1406.       thd->transaction.trans_log to cache the SQL statements until the
  1407.       explicit commit, and at the commit writes the contents in .trans_log
  1408.       to the binlog.
  1409.       We write the "BEGIN" mark first in the buffer (.trans_log) where we
  1410.       store the SQL statements for a transaction. At the transaction commit
  1411.       we will add the "COMMIT mark and write the buffer to the binlog.
  1412.     */
  1413.     {
  1414.       Query_log_event qinfo(thd, "BEGIN", 5, TRUE, FALSE);
  1415.       /*
  1416.         Imagine this is rollback due to net timeout, after all statements of
  1417.         the transaction succeeded. Then we want a zero-error code in BEGIN.
  1418.         In other words, if there was a really serious error code it's already
  1419.         in the statement's events.
  1420.         This is safer than thd->clear_error() against kills at shutdown.
  1421.       */
  1422.       qinfo.error_code= 0;
  1423.       /*
  1424.         Now this Query_log_event has artificial log_pos 0. It must be adjusted
  1425.         to reflect the real position in the log. Not doing it would confuse the
  1426. slave: it would prevent this one from knowing where he is in the
  1427. master's binlog, which would result in wrong positions being shown to
  1428. the user, MASTER_POS_WAIT undue waiting etc.
  1429.       */
  1430.       qinfo.set_log_pos(this);
  1431.       if (qinfo.write(&log_file))
  1432. goto err;
  1433.     }
  1434.     /* Read from the file used to cache the queries .*/
  1435.     if (reinit_io_cache(cache, READ_CACHE, 0, 0, 0))
  1436.       goto err;
  1437.     length=my_b_bytes_in_cache(cache);
  1438.     do
  1439.     {
  1440.       /* Write data to the binary log file */
  1441.       if (my_b_write(&log_file, cache->read_pos, length))
  1442. goto err;
  1443.       cache->read_pos=cache->read_end; // Mark buffer used up
  1444.     } while ((length=my_b_fill(cache)));
  1445.     /*
  1446.       We write the command "COMMIT" as the last SQL command in the
  1447.       binlog segment cached for this transaction
  1448.     */
  1449.     {
  1450.       Query_log_event qinfo(thd, 
  1451.                             commit_or_rollback ? "COMMIT" : "ROLLBACK",
  1452.                             commit_or_rollback ? 6        : 8, 
  1453.                             TRUE, FALSE);
  1454.       qinfo.error_code= 0;
  1455.       qinfo.set_log_pos(this);
  1456.       if (qinfo.write(&log_file) || flush_io_cache(&log_file) ||
  1457.           sync_binlog(&log_file))
  1458. goto err;
  1459.     }
  1460.     if (cache->error) // Error on read
  1461.     {
  1462.       sql_print_error(ER(ER_ERROR_ON_READ), cache->file_name, errno);
  1463.       write_error=1; // Don't give more errors
  1464.       goto err;
  1465.     }
  1466. #ifndef DBUG_OFF
  1467.     if (unlikely(opt_crash_binlog_innodb))
  1468.     {
  1469.       /* see the previous MYSQL_LOG::write() method for a comment */
  1470.       if (!(--opt_crash_binlog_innodb))
  1471.       {
  1472.         signal_update();
  1473.         sleep(2);
  1474.         fprintf(stderr, "This is a normal crash because of"
  1475.                 " --crash-binlog-innodbn");
  1476.         assert(0);
  1477.       }
  1478.       DBUG_PRINT("info",("opt_crash_binlog_innodb: %d",
  1479.                          opt_crash_binlog_innodb));
  1480.     }
  1481. #endif
  1482.     if ((ha_report_binlog_offset_and_commit(thd, log_file_name,
  1483.     log_file.pos_in_file)))
  1484.       goto err;
  1485.     signal_update();
  1486.     DBUG_PRINT("info",("max_size: %lu",max_size));
  1487.     if (should_rotate= (my_b_tell(&log_file) >= (my_off_t) max_size))
  1488.     {
  1489.       pthread_mutex_lock(&LOCK_index);
  1490.       new_file(0); // inside mutex
  1491.       pthread_mutex_unlock(&LOCK_index);
  1492.     }
  1493.   }
  1494.   VOID(pthread_mutex_unlock(&LOCK_log));
  1495.   /* Flush the transactional handler log file now that we have released
  1496.   LOCK_log; the flush is placed here to eliminate the bottleneck on the
  1497.   group commit */  
  1498.   ha_commit_complete(thd);
  1499. #ifdef HAVE_REPLICATION
  1500.   if (should_rotate && expire_logs_days)
  1501.   {
  1502.     long purge_time= time(0) - expire_logs_days*24*60*60;
  1503.     if (purge_time >= 0)
  1504.       error= purge_logs_before_date(purge_time);
  1505.   }
  1506. #endif
  1507.   DBUG_RETURN(error);
  1508. err:
  1509.   if (!write_error)
  1510.   {
  1511.     write_error= 1;
  1512.     sql_print_error(ER(ER_ERROR_ON_WRITE), name, errno);
  1513.   }
  1514.   VOID(pthread_mutex_unlock(&LOCK_log));
  1515.   DBUG_RETURN(1);
  1516. }
  1517. /*
  1518.   Write update log in a format suitable for incremental backup
  1519.   This is also used by the slow query log.
  1520. */
  1521. bool MYSQL_LOG::write(THD *thd,const char *query, uint query_length,
  1522.       time_t query_start_arg)
  1523. {
  1524.   bool error=0;
  1525.   time_t current_time;
  1526.   if (!is_open())
  1527.     return 0;
  1528.   DBUG_ENTER("MYSQL_LOG::write");
  1529.   VOID(pthread_mutex_lock(&LOCK_log));
  1530.   if (is_open())
  1531.   { // Safety agains reopen
  1532.     int tmp_errno=0;
  1533.     char buff[80],*end;
  1534.     end=buff;
  1535.     if (!(thd->options & OPTION_UPDATE_LOG))
  1536.     {
  1537.       VOID(pthread_mutex_unlock(&LOCK_log));
  1538.       DBUG_RETURN(0);
  1539.     }
  1540.     if (!(specialflag & SPECIAL_SHORT_LOG_FORMAT) || query_start_arg)
  1541.     {
  1542.       current_time=time(NULL);
  1543.       if (current_time != last_time)
  1544.       {
  1545.         last_time=current_time;
  1546.         struct tm tm_tmp;
  1547.         struct tm *start;
  1548.         localtime_r(&current_time,&tm_tmp);
  1549.         start=&tm_tmp;
  1550.         /* Note that my_b_write() assumes it knows the length for this */
  1551.         sprintf(buff,"# Time: %02d%02d%02d %2d:%02d:%02dn",
  1552.                 start->tm_year % 100,
  1553.                 start->tm_mon+1,
  1554.                 start->tm_mday,
  1555.                 start->tm_hour,
  1556.                 start->tm_min,
  1557.                 start->tm_sec);
  1558.         if (my_b_write(&log_file, (byte*) buff,24))
  1559.           tmp_errno=errno;
  1560.       }
  1561.       if (my_b_printf(&log_file, "# User@Host: %s[%s] @ %s [%s]n",
  1562.                       thd->priv_user ? thd->priv_user : "",
  1563.                       thd->user ? thd->user : "",
  1564.                       thd->host ? thd->host : "",
  1565.                       thd->ip ? thd->ip : "") == (uint) -1)
  1566.         tmp_errno=errno;
  1567.     }
  1568.     if (query_start_arg)
  1569.     {
  1570.       /* For slow query log */
  1571.       if (my_b_printf(&log_file,
  1572.                       "# Query_time: %lu  Lock_time: %lu  Rows_sent: %lu  Rows_examined: %lun",
  1573.                       (ulong) (current_time - query_start_arg),
  1574.                       (ulong) (thd->time_after_lock - query_start_arg),
  1575.                       (ulong) thd->sent_row_count,
  1576.                       (ulong) thd->examined_row_count) == (uint) -1)
  1577.         tmp_errno=errno;
  1578.     }
  1579.     if (thd->db && strcmp(thd->db,db))
  1580.     { // Database changed
  1581.       if (my_b_printf(&log_file,"use %s;n",thd->db) == (uint) -1)
  1582.         tmp_errno=errno;
  1583.       strmov(db,thd->db);
  1584.     }
  1585.     if (thd->last_insert_id_used)
  1586.     {
  1587.       end=strmov(end,",last_insert_id=");
  1588.       end=longlong10_to_str((longlong) thd->current_insert_id,end,-10);
  1589.     }
  1590.     // Save value if we do an insert.
  1591.     if (thd->insert_id_used)
  1592.     {
  1593.       if (!(specialflag & SPECIAL_SHORT_LOG_FORMAT))
  1594.       {
  1595.         end=strmov(end,",insert_id=");
  1596.         end=longlong10_to_str((longlong) thd->last_insert_id,end,-10);
  1597.       }
  1598.     }
  1599.     if (thd->query_start_used)
  1600.     {
  1601.       if (query_start_arg != thd->query_start())
  1602.       {
  1603.         query_start_arg=thd->query_start();
  1604.         end=strmov(end,",timestamp=");
  1605.         end=int10_to_str((long) query_start_arg,end,10);
  1606.       }
  1607.     }
  1608.     if (end != buff)
  1609.     {
  1610.       *end++=';';
  1611.       *end='n';
  1612.       if (my_b_write(&log_file, (byte*) "SET ",4) ||
  1613.           my_b_write(&log_file, (byte*) buff+1,(uint) (end-buff)))
  1614.         tmp_errno=errno;
  1615.     }
  1616.     if (!query)
  1617.     {
  1618.       end=strxmov(buff, "# administrator command: ",
  1619.                   command_name[thd->command], NullS);
  1620.       query_length=(ulong) (end-buff);
  1621.       query=buff;
  1622.     }
  1623.     if (my_b_write(&log_file, (byte*) query,query_length) ||
  1624.         my_b_write(&log_file, (byte*) ";n",2) ||
  1625.         flush_io_cache(&log_file))
  1626.       tmp_errno=errno;
  1627.     if (tmp_errno)
  1628.     {
  1629.       error=1;
  1630.       if (! write_error)
  1631.       {
  1632.         write_error=1;
  1633.         sql_print_error(ER(ER_ERROR_ON_WRITE),name,error);
  1634.       }
  1635.     }
  1636.   }
  1637.   VOID(pthread_mutex_unlock(&LOCK_log));
  1638.   DBUG_RETURN(error);
  1639. }
  1640. /*
  1641.   Wait until we get a signal that the binary log has been updated
  1642.   SYNOPSIS
  1643.     wait_for_update()
  1644.     thd Thread variable
  1645.     master_or_slave     If 0, the caller is the Binlog_dump thread from master;
  1646.                         if 1, the caller is the SQL thread from the slave. This
  1647.                         influences only thd->proc_info.
  1648.   NOTES
  1649.     One must have a lock on LOCK_log before calling this function.
  1650.     This lock will be freed before return! That's required by
  1651.     THD::enter_cond() (see NOTES in sql_class.h).
  1652. */
  1653. void MYSQL_LOG::wait_for_update(THD* thd, bool master_or_slave)
  1654. {
  1655.   const char *old_msg;
  1656.   DBUG_ENTER("wait_for_update");
  1657.   old_msg= thd->enter_cond(&update_cond, &LOCK_log,
  1658.                            master_or_slave ?
  1659.                            "Has read all relay log; waiting for the slave I/O "
  1660.                            "thread to update it" : 
  1661.                            "Has sent all binlog to slave; waiting for binlog "
  1662.                            "to be updated"); 
  1663.   pthread_cond_wait(&update_cond, &LOCK_log);
  1664.   thd->exit_cond(old_msg);
  1665.   DBUG_VOID_RETURN;
  1666. }
  1667. /*
  1668.   Close the log file
  1669.   SYNOPSIS
  1670.     close()
  1671.     exiting Bitmask for one or more of the following bits:
  1672.      LOG_CLOSE_INDEX if we should close the index file
  1673. LOG_CLOSE_TO_BE_OPENED if we intend to call open
  1674. at once after close.
  1675. LOG_CLOSE_STOP_EVENT write a 'stop' event to the log
  1676.   NOTES
  1677.     One can do an open on the object at once after doing a close.
  1678.     The internal structures are not freed until cleanup() is called
  1679. */
  1680. void MYSQL_LOG::close(uint exiting)
  1681. { // One can't set log_type here!
  1682.   DBUG_ENTER("MYSQL_LOG::close");
  1683.   DBUG_PRINT("enter",("exiting: %d", (int) exiting));
  1684.   if (log_type != LOG_CLOSED && log_type != LOG_TO_BE_OPENED)
  1685.   {
  1686. #ifdef HAVE_REPLICATION
  1687.     if (log_type == LOG_BIN && !no_auto_events &&
  1688. (exiting & LOG_CLOSE_STOP_EVENT))
  1689.     {
  1690.       Stop_log_event s;
  1691.       s.set_log_pos(this);
  1692.       s.write(&log_file);
  1693.       signal_update();
  1694.     }
  1695. #endif /* HAVE_REPLICATION */
  1696.     end_io_cache(&log_file);
  1697.     if (my_close(log_file.file,MYF(0)) < 0 && ! write_error)
  1698.     {
  1699.       write_error=1;
  1700.       sql_print_error(ER(ER_ERROR_ON_WRITE), name, errno);
  1701.     }
  1702.   }
  1703.   /*
  1704.     The following test is needed even if is_open() is not set, as we may have
  1705.     called a not complete close earlier and the index file is still open.
  1706.   */
  1707.   if ((exiting & LOG_CLOSE_INDEX) && my_b_inited(&index_file))
  1708.   {
  1709.     end_io_cache(&index_file);
  1710.     if (my_close(index_file.file, MYF(0)) < 0 && ! write_error)
  1711.     {
  1712.       write_error= 1;
  1713.       sql_print_error(ER(ER_ERROR_ON_WRITE), index_file_name, errno);
  1714.     }
  1715.   }
  1716.   log_type= (exiting & LOG_CLOSE_TO_BE_OPENED) ? LOG_TO_BE_OPENED : LOG_CLOSED;
  1717.   safeFree(name);
  1718.   DBUG_VOID_RETURN;
  1719. }
  1720. void MYSQL_LOG::set_max_size(ulong max_size_arg)
  1721. {
  1722.   /*
  1723.     We need to take locks, otherwise this may happen:
  1724.     new_file() is called, calls open(old_max_size), then before open() starts,
  1725.     set_max_size() sets max_size to max_size_arg, then open() starts and
  1726.     uses the old_max_size argument, so max_size_arg has been overwritten and
  1727.     it's like if the SET command was never run.
  1728.   */
  1729.   DBUG_ENTER("MYSQL_LOG::set_max_size");
  1730.   pthread_mutex_lock(&LOCK_log);
  1731.   if (is_open())
  1732.     max_size= max_size_arg;
  1733.   pthread_mutex_unlock(&LOCK_log);
  1734.   DBUG_VOID_RETURN;
  1735. }
  1736. /*
  1737.   Check if a string is a valid number
  1738.   SYNOPSIS
  1739.     test_if_number()
  1740.     str String to test
  1741.     res Store value here
  1742.     allow_wildcards Set to 1 if we should ignore '%' and '_'
  1743.   NOTE
  1744.     For the moment the allow_wildcards argument is not used
  1745.     Should be move to some other file.
  1746.   RETURN VALUES
  1747.     1 String is a number
  1748.     0 Error
  1749. */
  1750. static bool test_if_number(register const char *str,
  1751.    long *res, bool allow_wildcards)
  1752. {
  1753.   reg2 int flag;
  1754.   const char *start;
  1755.   DBUG_ENTER("test_if_number");
  1756.   flag=0; start=str;
  1757.   while (*str++ == ' ') ;
  1758.   if (*--str == '-' || *str == '+')
  1759.     str++;
  1760.   while (my_isdigit(files_charset_info,*str) ||
  1761.  (allow_wildcards && (*str == wild_many || *str == wild_one)))
  1762.   {
  1763.     flag=1;
  1764.     str++;
  1765.   }
  1766.   if (*str == '.')
  1767.   {
  1768.     for (str++ ;
  1769.  my_isdigit(files_charset_info,*str) ||
  1770.    (allow_wildcards && (*str == wild_many || *str == wild_one)) ;
  1771.  str++, flag=1) ;
  1772.   }
  1773.   if (*str != 0 || flag == 0)
  1774.     DBUG_RETURN(0);
  1775.   if (res)
  1776.     *res=atol(start);
  1777.   DBUG_RETURN(1); /* Number ok */
  1778. } /* test_if_number */
  1779. void print_buffer_to_file(enum loglevel level, const char *buffer)
  1780. {
  1781.   time_t skr;
  1782.   struct tm tm_tmp;
  1783.   struct tm *start;
  1784.   DBUG_ENTER("print_buffer_to_file");
  1785.   DBUG_PRINT("enter",("buffer: %s", buffer));
  1786.   VOID(pthread_mutex_lock(&LOCK_error_log));
  1787.   skr=time(NULL);
  1788.   localtime_r(&skr, &tm_tmp);
  1789.   start=&tm_tmp;
  1790.   fprintf(stderr, "%02d%02d%02d %2d:%02d:%02d [%s] %sn",
  1791.           start->tm_year % 100,
  1792.           start->tm_mon+1,
  1793.           start->tm_mday,
  1794.           start->tm_hour,
  1795.           start->tm_min,
  1796.           start->tm_sec,
  1797.           (level == ERROR_LEVEL ? "ERROR" : level == WARNING_LEVEL ?
  1798.            "Warning" : "Note"),
  1799.           buffer);
  1800.   fflush(stderr);
  1801.   VOID(pthread_mutex_unlock(&LOCK_error_log));
  1802.   DBUG_VOID_RETURN;
  1803. }
  1804. void sql_perror(const char *message)
  1805. {
  1806. #ifdef HAVE_STRERROR
  1807.   sql_print_error("%s: %s",message, strerror(errno));
  1808. #else
  1809.   perror(message);
  1810. #endif
  1811. }
  1812. bool flush_error_log()
  1813. {
  1814.   bool result=0;
  1815.   if (opt_error_log)
  1816.   {
  1817.     char err_renamed[FN_REFLEN], *end;
  1818.     end= strmake(err_renamed,log_error_file,FN_REFLEN-4);
  1819.     strmov(end, "-old");
  1820.     VOID(pthread_mutex_lock(&LOCK_error_log));
  1821. #ifdef __WIN__
  1822.     char err_temp[FN_REFLEN+4];
  1823.     /*
  1824.      On Windows is necessary a temporary file for to rename
  1825.      the current error file.
  1826.     */
  1827.     strmov(strmov(err_temp, err_renamed),"-tmp");
  1828.     (void) my_delete(err_temp, MYF(0)); 
  1829.     if (freopen(err_temp,"a+",stdout))
  1830.     {
  1831.       freopen(err_temp,"a+",stderr);
  1832.       (void) my_delete(err_renamed, MYF(0));
  1833.       my_rename(log_error_file,err_renamed,MYF(0));
  1834.       if (freopen(log_error_file,"a+",stdout))
  1835.         freopen(log_error_file,"a+",stderr);
  1836.       int fd, bytes;
  1837.       char buf[IO_SIZE];
  1838.       if ((fd = my_open(err_temp, O_RDONLY, MYF(0))) >= 0)
  1839.       {
  1840.         while ((bytes = (int) my_read(fd, (byte*) buf, IO_SIZE, MYF(0))) > 0)
  1841.              my_fwrite(stderr, (byte*) buf, bytes, MYF(0));
  1842.         my_close(fd, MYF(0));
  1843.       }
  1844.       (void) my_delete(err_temp, MYF(0)); 
  1845.     }
  1846.     else
  1847.      result= 1;
  1848. #else
  1849.    my_rename(log_error_file,err_renamed,MYF(0));
  1850.    if (freopen(log_error_file,"a+",stdout))
  1851.      freopen(log_error_file,"a+",stderr);
  1852.    else
  1853.      result= 1;
  1854. #endif
  1855.     VOID(pthread_mutex_unlock(&LOCK_error_log));
  1856.   }
  1857.    return result;
  1858. }
  1859. /*
  1860.   If the server has InnoDB on, and InnoDB has published the position of the
  1861.   last committed transaction (which happens only if a crash recovery occured at
  1862.   this startup) then truncate the previous binary log at the position given by
  1863.   InnoDB. If binlog is shorter than the position, print a message to the error
  1864.   log.
  1865.   SYNOPSIS
  1866.     cut_spurious_tail()
  1867.   RETURN VALUES
  1868.     1 Error
  1869.     0 Ok
  1870. */
  1871. bool MYSQL_LOG::cut_spurious_tail()
  1872. {
  1873.   int error= 0;
  1874.   DBUG_ENTER("cut_spurious_tail");
  1875. #ifdef HAVE_INNOBASE_DB
  1876.   if (have_innodb != SHOW_OPTION_YES)
  1877.     DBUG_RETURN(0);
  1878.   /*
  1879.     This is the place where we use information from InnoDB to cut the
  1880.     binlog.
  1881.   */
  1882.   char *name= ha_innobase::get_mysql_bin_log_name();
  1883.   ulonglong pos= ha_innobase::get_mysql_bin_log_pos();
  1884.   ulonglong actual_size;
  1885.   char llbuf1[22], llbuf2[22];
  1886.   if (name[0] == 0 || pos == ULONGLONG_MAX)
  1887.   {
  1888.     DBUG_PRINT("info", ("InnoDB has not set binlog info"));
  1889.     DBUG_RETURN(0);
  1890.   }
  1891.   /* The binlog given by InnoDB normally is never an active binlog */
  1892.   if (is_open() && is_active(name))
  1893.   {
  1894.     sql_print_error("Warning: after InnoDB crash recovery, InnoDB says that "
  1895.                     "the binary log of the previous run has the same name "
  1896.                     "'%s' as the current one; this is likely to be abnormal.",
  1897.                     name);
  1898.     DBUG_RETURN(1);
  1899.   }
  1900.   sql_print_error("After InnoDB crash recovery, checking if the binary log "
  1901.                   "'%s' contains rolled back transactions which must be "
  1902.                   "removed from it...", name);
  1903.   /* If we have a too long binlog, cut. If too short, print error */
  1904.   int fd= my_open(name, O_EXCL | O_APPEND | O_BINARY | O_WRONLY, MYF(MY_WME));
  1905.   if (fd < 0)
  1906.   {
  1907.     int save_errno= my_errno;
  1908.     sql_print_error("Could not open the binary log '%s' for truncation.",
  1909.                     name);
  1910.     if (save_errno != ENOENT)
  1911.       sql_print_error("The binary log '%s' should not be used for "
  1912.                       "replication.", name);    
  1913.     DBUG_RETURN(1);
  1914.   }
  1915.   if (pos > (actual_size= my_seek(fd, 0L, MY_SEEK_END, MYF(MY_WME))))
  1916.   {
  1917.     /*
  1918.       Note that when we have MyISAM rollback this error message should be
  1919.       reconsidered.
  1920.     */
  1921.     sql_print_error("The binary log '%s' is shorter than its expected size "
  1922.                     "(actual: %s, expected: %s) so it misses at least one "
  1923.                     "committed transaction; so it should not be used for "
  1924.                     "replication or point-in-time recovery. You would need "
  1925.                     "to restart slaves from a fresh master's data "
  1926.                     "snapshot ",
  1927.                     name, llstr(actual_size, llbuf1),
  1928.                     llstr(pos, llbuf2));
  1929.     error= 1;
  1930.     goto err;
  1931.   }
  1932.   if (pos < actual_size)
  1933.   {
  1934.     sql_print_error("The binary log '%s' is bigger than its expected size "
  1935.                     "(actual: %s, expected: %s) so it contains a rolled back "
  1936.                     "transaction; now truncating that.", name,
  1937.                     llstr(actual_size, llbuf1), llstr(pos, llbuf2));
  1938.     /*
  1939.       As on some OS, my_chsize() can only pad with 0s instead of really
  1940.       truncating. Then mysqlbinlog (and Binlog_dump thread) will error on
  1941.       these zeroes. This is annoying, but not more (you just need to manually
  1942.       switch replication to the next binlog). Fortunately, in my_chsize.c, it
  1943.       says that all modern machines support real ftruncate().
  1944.       
  1945.     */
  1946.     if ((error= my_chsize(fd, pos, 0, MYF(MY_WME))))
  1947.       goto err;
  1948.   }
  1949. err:
  1950.   if (my_close(fd, MYF(MY_WME)))
  1951.     error= 1;
  1952. #endif
  1953.   DBUG_RETURN(error);
  1954. }
  1955. /*
  1956.   If the server has InnoDB on, store the binlog name and position into
  1957.   InnoDB. This function is used every time we create a new binlog.
  1958.   SYNOPSIS
  1959.     report_pos_in_innodb()
  1960.   NOTES
  1961.     This cannot simply be done in MYSQL_LOG::open(), because when we create
  1962.     the first binlog at startup, we have not called ha_init() yet so we cannot
  1963.     write into InnoDB yet.
  1964.   RETURN VALUES
  1965.     1 Error
  1966.     0 Ok
  1967. */
  1968. void MYSQL_LOG::report_pos_in_innodb()
  1969. {
  1970.   DBUG_ENTER("report_pos_in_innodb");
  1971. #ifdef HAVE_INNOBASE_DB
  1972.   if (is_open() && have_innodb == SHOW_OPTION_YES)
  1973.   {
  1974.     DBUG_PRINT("info", ("Reporting binlog info into InnoDB - "
  1975.                         "name: '%s' position: %d",
  1976.                         log_file_name, my_b_tell(&log_file)));
  1977.     innobase_store_binlog_offset_and_flush_log(log_file_name,
  1978.                                                my_b_tell(&log_file));
  1979.   }
  1980. #endif
  1981.   DBUG_VOID_RETURN;
  1982. }
  1983. void MYSQL_LOG::signal_update()
  1984. {
  1985.   DBUG_ENTER("MYSQL_LOG::signal_update");
  1986.   pthread_cond_broadcast(&update_cond);
  1987.   DBUG_VOID_RETURN;
  1988. }
  1989. #ifdef __NT__
  1990. void print_buffer_to_nt_eventlog(enum loglevel level, char *buff,
  1991.                                  uint length, int buffLen)
  1992. {
  1993.   HANDLE event;
  1994.   char   *buffptr;
  1995.   LPCSTR *buffmsgptr;
  1996.   DBUG_ENTER("print_buffer_to_nt_eventlog");
  1997.   buffptr= buff;
  1998.   if (length > (uint)(buffLen-5))
  1999.   {
  2000.     char *newBuff= new char[length + 5];
  2001.     strcpy(newBuff, buff);
  2002.     buffptr= newBuff;
  2003.   }
  2004.   strmov(buffptr+length, "rnrn");
  2005.   buffmsgptr= (LPCSTR*) &buffptr;               // Keep windows happy
  2006.   setup_windows_event_source();
  2007.   if ((event= RegisterEventSource(NULL,"MySQL")))
  2008.   {
  2009.     switch (level) {
  2010.       case ERROR_LEVEL:
  2011.         ReportEvent(event, EVENTLOG_ERROR_TYPE, 0, MSG_DEFAULT, NULL, 1, 0,
  2012.                     buffmsgptr, NULL);
  2013.         break;
  2014.       case WARNING_LEVEL:
  2015.         ReportEvent(event, EVENTLOG_WARNING_TYPE, 0, MSG_DEFAULT, NULL, 1, 0,
  2016.                     buffmsgptr, NULL);
  2017.         break;
  2018.       case INFORMATION_LEVEL:
  2019.         ReportEvent(event, EVENTLOG_INFORMATION_TYPE, 0, MSG_DEFAULT, NULL, 1,
  2020.                     0, buffmsgptr, NULL);
  2021.         break;
  2022.     }
  2023.     DeregisterEventSource(event);
  2024.   }
  2025.   /* if we created a string buffer, then delete it */
  2026.   if (buffptr != buff)
  2027.     delete[] buffptr;
  2028.   DBUG_VOID_RETURN;
  2029. }
  2030. #endif /* __NT__ */
  2031. /*
  2032.   Prints a printf style message to the error log and, under NT, to the
  2033.   Windows event log.
  2034.   SYNOPSIS
  2035.     vprint_msg_to_log()
  2036.     event_type             Type of event to write (Error, Warning, or Info)
  2037.     format                 Printf style format of message
  2038.     args                   va_list list of arguments for the message    
  2039.   NOTE
  2040.   IMPLEMENTATION
  2041.     This function prints the message into a buffer and then sends that buffer
  2042.     to other functions to write that message to other logging sources.
  2043.   RETURN VALUES
  2044.     void
  2045. */
  2046. void vprint_msg_to_log(enum loglevel level, const char *format, va_list args)
  2047. {
  2048.   char   buff[1024];
  2049.   uint length;
  2050.   DBUG_ENTER("vprint_msg_to_log");
  2051.   length= my_vsnprintf(buff, sizeof(buff)-5, format, args);
  2052.   print_buffer_to_file(level, buff);
  2053. #ifdef __NT__
  2054.   print_buffer_to_nt_eventlog(level, buff, length, sizeof(buff));
  2055. #endif
  2056.   DBUG_VOID_RETURN;
  2057. }
  2058. void sql_print_error(const char *format, ...) 
  2059. {
  2060.   va_list args;
  2061.   DBUG_ENTER("sql_print_error");
  2062.   va_start(args, format);
  2063.   vprint_msg_to_log(ERROR_LEVEL, format, args);
  2064.   va_end(args);
  2065.   DBUG_VOID_RETURN;
  2066. }
  2067. void sql_print_warning(const char *format, ...) 
  2068. {
  2069.   va_list args;
  2070.   DBUG_ENTER("sql_print_warning");
  2071.   va_start(args, format);
  2072.   vprint_msg_to_log(WARNING_LEVEL, format, args);
  2073.   va_end(args);
  2074.   DBUG_VOID_RETURN;
  2075. }
  2076. void sql_print_information(const char *format, ...) 
  2077. {
  2078.   va_list args;
  2079.   DBUG_ENTER("sql_print_information");
  2080.   va_start(args, format);
  2081.   vprint_msg_to_log(INFORMATION_LEVEL, format, args);
  2082.   va_end(args);
  2083.   DBUG_VOID_RETURN;
  2084. }