~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/rpl_mi.cc

  • Committer: Monty Taylor
  • Date: 2008-07-01 14:33:36 UTC
  • mto: (28.1.12 backport_patch)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: monty@inaugust.com-20080701143336-8uihm7dhpu92rt0q
Somehow missed moving password.c. Duh.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include <drizzled/server_includes.h>
 
16
#include <my_global.h> // For HAVE_REPLICATION
 
17
#include "mysql_priv.h"
 
18
#include <my_dir.h>
 
19
 
17
20
#include "rpl_mi.h"
18
 
#include <iostream>
19
 
#include <fstream>
20
21
 
21
 
using namespace std;
 
22
#ifdef HAVE_REPLICATION
22
23
 
23
24
#define DEFAULT_CONNECT_RETRY 60
24
25
 
30
31
 
31
32
Master_info::Master_info()
32
33
  :Slave_reporting_capability("I/O"),
 
34
   ssl(0), ssl_verify_server_cert(0), fd(-1),  io_thd(0), port(MYSQL_PORT),
33
35
   connect_retry(DEFAULT_CONNECT_RETRY), heartbeat_period(0),
34
36
   received_heartbeats(0), inited(0),
35
37
   abort_slave(0), slave_running(0), slave_run_id(0)
36
38
{
37
39
  host[0] = 0; user[0] = 0; password[0] = 0;
38
 
  io_thd= NULL;
39
 
  port= DRIZZLE_PORT;
 
40
  ssl_ca[0]= 0; ssl_capath[0]= 0; ssl_cert[0]= 0;
 
41
  ssl_cipher[0]= 0; ssl_key[0]= 0;
40
42
 
 
43
  bzero((char*) &file, sizeof(file));
41
44
  pthread_mutex_init(&run_lock, MY_MUTEX_INIT_FAST);
42
45
  pthread_mutex_init(&data_lock, MY_MUTEX_INIT_FAST);
43
46
  pthread_cond_init(&data_cond, NULL);
54
57
  pthread_cond_destroy(&stop_cond);
55
58
}
56
59
 
57
 
bool Master_info::setPassword(const char *pword)
58
 
{
59
 
  password.assign(pword);
60
 
 
61
 
  return true;
62
 
}
63
 
 
64
 
const char *Master_info::getPassword()
65
 
{
66
 
  return password.c_str();
67
 
}
68
 
 
69
 
bool Master_info::setUsername(const char *username)
70
 
{
71
 
  user.assign(username);
72
 
 
73
 
  return true;
74
 
}
75
 
 
76
 
const char *Master_info::getUsername()
77
 
{
78
 
  return user.c_str();
79
 
}
80
 
 
81
 
bool Master_info::setHost(const char *hostname, uint16_t new_port)
82
 
{
83
 
  host.assign(hostname);
84
 
  port= new_port;
85
 
 
86
 
  return true;
87
 
}
88
 
 
89
 
const char *Master_info::getHostname()
90
 
{
91
 
  return host.c_str();
92
 
}
93
 
 
94
 
uint16_t Master_info::getPort()
95
 
{
96
 
  return port;
97
 
}
98
 
 
99
 
off_t Master_info::getLogPosition()
100
 
{
101
 
  return log_pos;
102
 
}
103
 
 
104
 
bool Master_info::setLogPosition(off_t position)
105
 
{
106
 
  log_pos= position;
107
 
 
108
 
  return true;
109
 
}
110
 
 
111
 
void Master_info::incrementLogPosition(off_t position)
112
 
{
113
 
  log_pos+= position;
114
 
}
115
 
 
116
 
const char *Master_info::getLogName()
117
 
{
118
 
  return log_name.c_str();
119
 
}
120
 
 
121
 
bool Master_info::setLogName(const char *name)
122
 
{
123
 
 log_name.assign(name);
124
 
 
125
 
  return true;
126
 
}
127
 
 
128
 
uint32_t Master_info::getConnectionRetry()
129
 
{
130
 
  return connect_retry;
131
 
}
132
 
 
133
 
bool Master_info::setConnectionRetry(uint32_t retry)
134
 
{
135
 
  connect_retry= retry;
136
 
 
137
 
  return true;
138
 
}
139
 
 
140
 
 
141
 
void Master_info::reset()
142
 
{
143
 
  log_name.clear();
144
 
  log_pos= 0; 
145
 
}
146
 
 
147
 
 
148
 
int Master_info::init_master_info(const char* master_info_fname,
149
 
                                  const char* slave_info_fname,
150
 
                                  int thread_mask)
151
 
{
152
 
  int error;
153
 
 
154
 
  if (inited)
 
60
 
 
61
void init_master_log_pos(Master_info* mi)
 
62
{
 
63
  DBUG_ENTER("init_master_log_pos");
 
64
 
 
65
  mi->master_log_name[0] = 0;
 
66
  mi->master_log_pos = BIN_LOG_HEADER_SIZE;             // skip magic number
 
67
  /* 
 
68
    always request heartbeat unless master_heartbeat_period is set
 
69
    explicitly zero.  Here is the default value for heartbeat period
 
70
    if CHANGE MASTER did not specify it.  (no data loss in conversion
 
71
    as hb period has a max)
 
72
  */
 
73
  mi->heartbeat_period= (float) min(SLAVE_MAX_HEARTBEAT_PERIOD,
 
74
                                    (slave_net_timeout/2.0));
 
75
  DBUG_ASSERT(mi->heartbeat_period > (float) 0.001
 
76
              || mi->heartbeat_period == 0);
 
77
  DBUG_VOID_RETURN;
 
78
}
 
79
 
 
80
 
 
81
enum {
 
82
  LINES_IN_MASTER_INFO_WITH_SSL= 14,
 
83
 
 
84
  /* 5.1.16 added value of master_ssl_verify_server_cert */
 
85
  LINE_FOR_MASTER_SSL_VERIFY_SERVER_CERT= 15,
 
86
 
 
87
  /* 6.0 added value of master_heartbeat_period */
 
88
  LINE_FOR_MASTER_HEARTBEAT_PERIOD= 16,
 
89
 
 
90
  /* Number of lines currently used when saving master info file */
 
91
  LINES_IN_MASTER_INFO= LINE_FOR_MASTER_HEARTBEAT_PERIOD
 
92
};
 
93
 
 
94
 
 
95
int init_master_info(Master_info* mi, const char* master_info_fname,
 
96
                     const char* slave_info_fname,
 
97
                     bool abort_if_no_master_info_file,
 
98
                     int thread_mask)
 
99
{
 
100
  int fd,error;
 
101
  char fname[FN_REFLEN+128];
 
102
  DBUG_ENTER("init_master_info");
 
103
 
 
104
  if (mi->inited)
155
105
  {
156
106
    /*
157
107
      We have to reset read position of relay-log-bin as we may have
167
117
    */
168
118
    if (thread_mask & SLAVE_SQL)
169
119
    {
170
 
      my_b_seek(rli.cur_log, (my_off_t) 0);
 
120
      my_b_seek(mi->rli.cur_log, (my_off_t) 0);
171
121
    }
172
 
    return(0);
173
 
  }
174
 
 
175
 
  drizzle= 0;
176
 
  file_id= 1;
177
 
  {
178
 
    char fname[FN_REFLEN+128];
179
 
 
180
 
    fn_format(fname, master_info_fname, mysql_data_home, "", 4+32);
181
 
    info_filename.assign(fname);
182
 
  }
 
122
    DBUG_RETURN(0);
 
123
  }
 
124
 
 
125
  mi->mysql=0;
 
126
  mi->file_id=1;
 
127
  fn_format(fname, master_info_fname, mysql_data_home, "", 4+32);
183
128
 
184
129
  /*
185
130
    We need a mutex while we are changing master info parameters to
186
131
    keep other threads from reading bogus info
187
132
  */
188
133
 
189
 
  pthread_mutex_lock(&data_lock);
 
134
  pthread_mutex_lock(&mi->data_lock);
 
135
  fd = mi->fd;
190
136
 
191
137
  /* does master.info exist ? */
192
138
 
193
 
  if (access(info_filename.c_str(), F_OK))
 
139
  if (access(fname,F_OK))
194
140
  {
195
 
    drizzle::MasterList_Record *record;
196
 
 
197
 
    reset();
198
 
 
199
 
    /* Write new Master info file here (from info_filename) */
200
 
    record= list.add_record();
201
 
    record->set_hostname(host);
202
 
    record->set_username(user);
203
 
    record->set_password(password);
204
 
    record->set_port(port);
205
 
    record->set_connect_retry(connect_retry);
206
 
    record->set_log_name(log_name);
207
 
    record->set_log_position(log_pos);
208
 
 
209
 
    fstream output(info_filename.c_str(), ios::out | ios::trunc | ios::binary);
210
 
    if (!list.SerializeToOstream(&output)) 
211
 
    { 
212
 
      assert(0);
213
 
      return -1;
214
 
    }
 
141
    if (abort_if_no_master_info_file)
 
142
    {
 
143
      pthread_mutex_unlock(&mi->data_lock);
 
144
      DBUG_RETURN(0);
 
145
    }
 
146
    /*
 
147
      if someone removed the file from underneath our feet, just close
 
148
      the old descriptor and re-create the old file
 
149
    */
 
150
    if (fd >= 0)
 
151
      my_close(fd, MYF(MY_WME));
 
152
    if ((fd = my_open(fname, O_CREAT|O_RDWR|O_BINARY, MYF(MY_WME))) < 0 )
 
153
    {
 
154
      sql_print_error("Failed to create a new master info file (file '%s', errno %d)", fname, my_errno);
 
155
      goto err;
 
156
    }
 
157
    if (init_io_cache(&mi->file, fd, IO_SIZE*2, READ_CACHE, 0L,0,
 
158
                      MYF(MY_WME)))
 
159
    {
 
160
      sql_print_error("Failed to create a cache on master info file (file '%s')", fname);
 
161
      goto err;
 
162
    }
 
163
 
 
164
    mi->fd = fd;
 
165
    init_master_log_pos(mi);
 
166
 
215
167
  }
216
168
  else // file exists
217
169
  {
218
 
    /* Read Master info file here (from info_filename) */
219
 
    fstream input(info_filename.c_str(), ios::in | ios::binary);
220
 
    if (!list.ParseFromIstream(&input)) 
221
 
    {
222
 
      assert(0);
223
 
      return -1;
224
 
    }
225
 
 
226
 
    /* We do not support multi-master just yet */
227
 
    assert(list.record_size() == 1);
228
 
    const drizzle::MasterList_Record record= list.record(0);
229
 
 
230
 
    if (record.has_username())
231
 
      user= record.username();
232
 
    if (record.has_password())
233
 
      password= record.password();
234
 
    if (record.has_port())
235
 
      port= record.port();
236
 
    if (record.has_connect_retry())
237
 
      connect_retry= record.connect_retry();
238
 
    if (record.has_log_name())
239
 
      log_name= record.log_name();
240
 
    if (record.has_log_position())
241
 
      log_pos= record.log_position();
 
170
    if (fd >= 0)
 
171
      reinit_io_cache(&mi->file, READ_CACHE, 0L,0,0);
 
172
    else
 
173
    {
 
174
      if ((fd = my_open(fname, O_RDWR|O_BINARY, MYF(MY_WME))) < 0 )
 
175
      {
 
176
        sql_print_error("Failed to open the existing master info file (file '%s', errno %d)", fname, my_errno);
 
177
        goto err;
 
178
      }
 
179
      if (init_io_cache(&mi->file, fd, IO_SIZE*2, READ_CACHE, 0L,
 
180
                        0, MYF(MY_WME)))
 
181
      {
 
182
        sql_print_error("Failed to create a cache on master info file (file '%s')", fname);
 
183
        goto err;
 
184
      }
 
185
    }
 
186
 
 
187
    mi->fd = fd;
 
188
    int port, connect_retry, master_log_pos, lines;
 
189
    int ssl= 0, ssl_verify_server_cert= 0;
 
190
    float master_heartbeat_period= 0.0;
 
191
    char *first_non_digit;
 
192
 
 
193
    /*
 
194
       Starting from 4.1.x master.info has new format. Now its
 
195
       first line contains number of lines in file. By reading this
 
196
       number we will be always distinguish to which version our
 
197
       master.info corresponds to. We can't simply count lines in
 
198
       file since versions before 4.1.x could generate files with more
 
199
       lines than needed.
 
200
       If first line doesn't contain a number or contain number less than
 
201
       LINES_IN_MASTER_INFO_WITH_SSL then such file is treated like file
 
202
       from pre 4.1.1 version.
 
203
       There is no ambiguity when reading an old master.info, as before
 
204
       4.1.1, the first line contained the binlog's name, which is either
 
205
       empty or has an extension (contains a '.'), so can't be confused
 
206
       with an integer.
 
207
 
 
208
       So we're just reading first line and trying to figure which version
 
209
       is this.
 
210
    */
 
211
 
 
212
    /*
 
213
       The first row is temporarily stored in mi->master_log_name,
 
214
       if it is line count and not binlog name (new format) it will be
 
215
       overwritten by the second row later.
 
216
    */
 
217
    if (init_strvar_from_file(mi->master_log_name,
 
218
                              sizeof(mi->master_log_name), &mi->file,
 
219
                              ""))
 
220
      goto errwithmsg;
 
221
 
 
222
    lines= strtoul(mi->master_log_name, &first_non_digit, 10);
 
223
 
 
224
    if (mi->master_log_name[0]!='\0' &&
 
225
        *first_non_digit=='\0' && lines >= LINES_IN_MASTER_INFO_WITH_SSL)
 
226
    {
 
227
      /* Seems to be new format => read master log name from next line */
 
228
      if (init_strvar_from_file(mi->master_log_name,
 
229
            sizeof(mi->master_log_name), &mi->file, ""))
 
230
        goto errwithmsg;
 
231
    }
 
232
    else
 
233
      lines= 7;
 
234
 
 
235
    if (init_intvar_from_file(&master_log_pos, &mi->file, 4) ||
 
236
        init_strvar_from_file(mi->host, sizeof(mi->host), &mi->file, 0) ||
 
237
        init_strvar_from_file(mi->user, sizeof(mi->user), &mi->file, "test") ||
 
238
        init_strvar_from_file(mi->password, SCRAMBLED_PASSWORD_CHAR_LENGTH+1,
 
239
                              &mi->file, 0 ) ||
 
240
        init_intvar_from_file(&port, &mi->file, MYSQL_PORT) ||
 
241
        init_intvar_from_file(&connect_retry, &mi->file, DEFAULT_CONNECT_RETRY))
 
242
      goto errwithmsg;
 
243
 
 
244
    /*
 
245
      If file has ssl part use it even if we have server without
 
246
      SSL support. But these option will be ignored later when
 
247
      slave will try connect to master, so in this case warning
 
248
      is printed.
 
249
    */
 
250
    if (lines >= LINES_IN_MASTER_INFO_WITH_SSL)
 
251
    {
 
252
      if (init_intvar_from_file(&ssl, &mi->file, 0) ||
 
253
          init_strvar_from_file(mi->ssl_ca, sizeof(mi->ssl_ca),
 
254
                                &mi->file, 0) ||
 
255
          init_strvar_from_file(mi->ssl_capath, sizeof(mi->ssl_capath),
 
256
                                &mi->file, 0) ||
 
257
          init_strvar_from_file(mi->ssl_cert, sizeof(mi->ssl_cert),
 
258
                                &mi->file, 0) ||
 
259
          init_strvar_from_file(mi->ssl_cipher, sizeof(mi->ssl_cipher),
 
260
                                &mi->file, 0) ||
 
261
          init_strvar_from_file(mi->ssl_key, sizeof(mi->ssl_key),
 
262
                               &mi->file, 0))
 
263
      goto errwithmsg;
 
264
 
 
265
      /*
 
266
        Starting from 5.1.16 ssl_verify_server_cert might be
 
267
        in the file
 
268
      */
 
269
      if (lines >= LINE_FOR_MASTER_SSL_VERIFY_SERVER_CERT &&
 
270
          init_intvar_from_file(&ssl_verify_server_cert, &mi->file, 0))
 
271
        goto errwithmsg;
 
272
      /*
 
273
        Starting from 6.0 master_heartbeat_period might be
 
274
        in the file
 
275
      */
 
276
      if (lines >= LINE_FOR_MASTER_HEARTBEAT_PERIOD &&
 
277
          init_floatvar_from_file(&master_heartbeat_period, &mi->file, 0.0))
 
278
        goto errwithmsg;
 
279
    }
 
280
 
 
281
    if (ssl)
 
282
      sql_print_warning("SSL information in the master info file "
 
283
                      "('%s') are ignored because this MySQL slave was "
 
284
                      "compiled without SSL support.", fname);
 
285
 
 
286
    /*
 
287
      This has to be handled here as init_intvar_from_file can't handle
 
288
      my_off_t types
 
289
    */
 
290
    mi->master_log_pos= (my_off_t) master_log_pos;
 
291
    mi->port= (uint) port;
 
292
    mi->connect_retry= (uint) connect_retry;
 
293
    mi->ssl= (my_bool) ssl;
 
294
    mi->ssl_verify_server_cert= ssl_verify_server_cert;
 
295
    mi->heartbeat_period= master_heartbeat_period;
242
296
  }
 
297
  DBUG_PRINT("master_info",("log_file_name: %s  position: %ld",
 
298
                            mi->master_log_name,
 
299
                            (ulong) mi->master_log_pos));
243
300
 
244
 
  rli.mi = this;
245
 
  if (init_relay_log_info(&rli, slave_info_fname))
 
301
  mi->rli.mi = mi;
 
302
  if (init_relay_log_info(&mi->rli, slave_info_fname))
246
303
    goto err;
247
304
 
248
 
  inited= 1;
249
 
  if ((error= test(flush())))
250
 
    sql_print_error(_("Failed to flush master info file"));
251
 
  pthread_mutex_unlock(&data_lock);
252
 
  return(error);
 
305
  mi->inited = 1;
 
306
  // now change cache READ -> WRITE - must do this before flush_master_info
 
307
  reinit_io_cache(&mi->file, WRITE_CACHE, 0L, 0, 1);
 
308
  if ((error=test(flush_master_info(mi, 1))))
 
309
    sql_print_error("Failed to flush master info file");
 
310
  pthread_mutex_unlock(&mi->data_lock);
 
311
  DBUG_RETURN(error);
 
312
 
 
313
errwithmsg:
 
314
  sql_print_error("Error reading master configuration");
253
315
 
254
316
err:
255
 
  pthread_mutex_unlock(&data_lock);
256
 
  return 1;
 
317
  if (fd >= 0)
 
318
  {
 
319
    my_close(fd, MYF(0));
 
320
    end_io_cache(&mi->file);
 
321
  }
 
322
  mi->fd= -1;
 
323
  pthread_mutex_unlock(&mi->data_lock);
 
324
  DBUG_RETURN(1);
257
325
}
258
326
 
259
327
 
263
331
     1 - flush master info failed
264
332
     0 - all ok
265
333
*/
266
 
int Master_info::flush()
 
334
int flush_master_info(Master_info* mi, bool flush_relay_log_cache)
267
335
{
 
336
  IO_CACHE* file = &mi->file;
 
337
  char lbuf[22];
 
338
 
 
339
  DBUG_ENTER("flush_master_info");
 
340
  DBUG_PRINT("enter",("master_pos: %ld", (long) mi->master_log_pos));
 
341
 
268
342
  /*
269
343
    Flush the relay log to disk. If we don't do it, then the relay log while
270
344
    have some part (its last kilobytes) in memory only, so if the slave server
277
351
    When we come to this place in code, relay log may or not be initialized;
278
352
    the caller is responsible for setting 'flush_relay_log_cache' accordingly.
279
353
  */
280
 
 
281
 
  /* Write Master info file here (from info_filename) */
282
 
  assert(info_filename.length());
283
 
  assert(list.record_size() == 1);
284
 
  drizzle::MasterList_Record *record= list.mutable_record(0);
285
 
 
286
 
  record->set_hostname(host);
287
 
  record->set_username(user);
288
 
  record->set_password(password);
289
 
  record->set_port(port);
290
 
  record->set_connect_retry(connect_retry);
291
 
  record->set_log_name(log_name);
292
 
  record->set_log_position(log_pos);
293
 
 
294
 
  fstream output(info_filename.c_str(), ios::out | ios::trunc | ios::binary);
295
 
  if (!list.SerializeToOstream(&output)) 
296
 
  { 
297
 
    assert(0);
298
 
    return 1;
 
354
  if (flush_relay_log_cache &&
 
355
      flush_io_cache(mi->rli.relay_log.get_log_file()))
 
356
    DBUG_RETURN(2);
 
357
 
 
358
  /*
 
359
    We flushed the relay log BEFORE the master.info file, because if we crash
 
360
    now, we will get a duplicate event in the relay log at restart. If we
 
361
    flushed in the other order, we would get a hole in the relay log.
 
362
    And duplicate is better than hole (with a duplicate, in later versions we
 
363
    can add detection and scrap one event; with a hole there's nothing we can
 
364
    do).
 
365
  */
 
366
 
 
367
  /*
 
368
     In certain cases this code may create master.info files that seems
 
369
     corrupted, because of extra lines filled with garbage in the end
 
370
     file (this happens if new contents take less space than previous
 
371
     contents of file). But because of number of lines in the first line
 
372
     of file we don't care about this garbage.
 
373
  */
 
374
  char heartbeat_buf[sizeof(mi->heartbeat_period) * 4]; // buffer to suffice always
 
375
  my_sprintf(heartbeat_buf, (heartbeat_buf, "%.3f", mi->heartbeat_period));
 
376
  my_b_seek(file, 0L);
 
377
  my_b_printf(file,
 
378
              "%u\n%s\n%s\n%s\n%s\n%s\n%d\n%d\n%d\n%s\n%s\n%s\n%s\n%s\n%d\n%s\n",
 
379
              LINES_IN_MASTER_INFO,
 
380
              mi->master_log_name, llstr(mi->master_log_pos, lbuf),
 
381
              mi->host, mi->user,
 
382
              mi->password, mi->port, mi->connect_retry,
 
383
              (int)(mi->ssl), mi->ssl_ca, mi->ssl_capath, mi->ssl_cert,
 
384
              mi->ssl_cipher, mi->ssl_key, mi->ssl_verify_server_cert,
 
385
              heartbeat_buf);
 
386
  DBUG_RETURN(-flush_io_cache(file));
 
387
}
 
388
 
 
389
 
 
390
void end_master_info(Master_info* mi)
 
391
{
 
392
  DBUG_ENTER("end_master_info");
 
393
 
 
394
  if (!mi->inited)
 
395
    DBUG_VOID_RETURN;
 
396
  end_relay_log_info(&mi->rli);
 
397
  if (mi->fd >= 0)
 
398
  {
 
399
    end_io_cache(&mi->file);
 
400
    (void)my_close(mi->fd, MYF(MY_WME));
 
401
    mi->fd = -1;
299
402
  }
300
 
 
301
 
  return 0;
302
 
}
303
 
 
304
 
 
305
 
void Master_info::end_master_info()
306
 
{
307
 
  if (!inited)
308
 
    return;
309
 
  end_relay_log_info(&rli);
310
 
  inited = 0;
311
 
 
312
 
  return;
313
 
}
 
403
  mi->inited = 0;
 
404
 
 
405
  DBUG_VOID_RETURN;
 
406
}
 
407
 
 
408
 
 
409
#endif /* HAVE_REPLICATION */