Commit d7b21a49 authored by Marko Mäkelä's avatar Marko Mäkelä

Mariabackup: Remove unused parameters and fix some memory leaks

Use GET_STR instead of GET_STR_ALLOC, so that the memory will
cannot be leaked. For some reason, calling my_cleanup_options()
on xb_server_options or xb_client_options would not work.
parent 60e61708
...@@ -1893,13 +1893,6 @@ decrypt_decompress_file(const char *filepath, uint thread_n) ...@@ -1893,13 +1893,6 @@ decrypt_decompress_file(const char *filepath, uint thread_n)
if (system(cmd.str().c_str()) != 0) { if (system(cmd.str().c_str()) != 0) {
return(false); return(false);
} }
if (opt_remove_original) {
msg_ts("[%02u] removing %s\n", thread_n, filepath);
if (my_delete(filepath, MYF(MY_WME)) != 0) {
return(false);
}
}
} }
return(true); return(true);
......
...@@ -93,8 +93,6 @@ char *opt_ibx_host = NULL; ...@@ -93,8 +93,6 @@ char *opt_ibx_host = NULL;
char *opt_ibx_defaults_group = NULL; char *opt_ibx_defaults_group = NULL;
char *opt_ibx_socket = NULL; char *opt_ibx_socket = NULL;
uint opt_ibx_port = 0; uint opt_ibx_port = 0;
char *opt_ibx_login_path = NULL;
ulong opt_ibx_lock_wait_query_type; ulong opt_ibx_lock_wait_query_type;
ulong opt_ibx_kill_long_query_type; ulong opt_ibx_kill_long_query_type;
...@@ -897,7 +895,6 @@ ibx_init() ...@@ -897,7 +895,6 @@ ibx_init()
opt_defaults_group = opt_ibx_defaults_group; opt_defaults_group = opt_ibx_defaults_group;
opt_socket = opt_ibx_socket; opt_socket = opt_ibx_socket;
opt_port = opt_ibx_port; opt_port = opt_ibx_port;
opt_login_path = opt_ibx_login_path;
opt_lock_wait_query_type = opt_ibx_lock_wait_query_type; opt_lock_wait_query_type = opt_ibx_lock_wait_query_type;
opt_kill_long_query_type = opt_ibx_kill_long_query_type; opt_kill_long_query_type = opt_ibx_kill_long_query_type;
......
...@@ -230,12 +230,12 @@ longlong innobase_buffer_pool_size = 8*1024*1024L; ...@@ -230,12 +230,12 @@ longlong innobase_buffer_pool_size = 8*1024*1024L;
/* The default values for the following char* start-up parameters /* The default values for the following char* start-up parameters
are determined in innobase_init below: */ are determined in innobase_init below: */
char* innobase_ignored_opt = NULL; static char* innobase_ignored_opt;
char* innobase_data_home_dir = NULL; char* innobase_data_home_dir;
char* innobase_data_file_path = NULL; char* innobase_data_file_path;
/* The following has a misleading name: starting from 4.0.5, this also /* The following has a misleading name: starting from 4.0.5, this also
affects Windows: */ affects Windows: */
char* innobase_unix_file_flush_method = NULL; char* innobase_unix_file_flush_method;
my_bool innobase_use_doublewrite; my_bool innobase_use_doublewrite;
my_bool innobase_use_large_pages; my_bool innobase_use_large_pages;
...@@ -293,7 +293,6 @@ my_bool opt_force_non_empty_dirs = FALSE; ...@@ -293,7 +293,6 @@ my_bool opt_force_non_empty_dirs = FALSE;
my_bool opt_noversioncheck = FALSE; my_bool opt_noversioncheck = FALSE;
my_bool opt_no_backup_locks = FALSE; my_bool opt_no_backup_locks = FALSE;
my_bool opt_decompress = FALSE; my_bool opt_decompress = FALSE;
my_bool opt_remove_original = FALSE;
static const char *binlog_info_values[] = {"off", "lockless", "on", "auto", static const char *binlog_info_values[] = {"off", "lockless", "on", "auto",
NullS}; NullS};
...@@ -301,17 +300,16 @@ static TYPELIB binlog_info_typelib = {array_elements(binlog_info_values)-1, "", ...@@ -301,17 +300,16 @@ static TYPELIB binlog_info_typelib = {array_elements(binlog_info_values)-1, "",
binlog_info_values, NULL}; binlog_info_values, NULL};
ulong opt_binlog_info; ulong opt_binlog_info;
char *opt_incremental_history_name = NULL; char *opt_incremental_history_name;
char *opt_incremental_history_uuid = NULL; char *opt_incremental_history_uuid;
char *opt_user = NULL; char *opt_user;
char *opt_password = NULL; char *opt_password;
char *opt_host = NULL; char *opt_host;
char *opt_defaults_group = NULL; char *opt_defaults_group;
char *opt_socket = NULL; char *opt_socket;
uint opt_port = 0; uint opt_port;
char *opt_login_path = NULL; char *opt_log_bin;
char *opt_log_bin = NULL;
const char *query_type_names[] = { "ALL", "UPDATE", "SELECT", NullS}; const char *query_type_names[] = { "ALL", "UPDATE", "SELECT", NullS};
...@@ -516,7 +514,6 @@ enum options_xtrabackup ...@@ -516,7 +514,6 @@ enum options_xtrabackup
OPT_DECOMPRESS, OPT_DECOMPRESS,
OPT_INCREMENTAL_HISTORY_NAME, OPT_INCREMENTAL_HISTORY_NAME,
OPT_INCREMENTAL_HISTORY_UUID, OPT_INCREMENTAL_HISTORY_UUID,
OPT_REMOVE_ORIGINAL,
OPT_LOCK_WAIT_QUERY_TYPE, OPT_LOCK_WAIT_QUERY_TYPE,
OPT_KILL_LONG_QUERY_TYPE, OPT_KILL_LONG_QUERY_TYPE,
OPT_HISTORY, OPT_HISTORY,
...@@ -906,7 +903,7 @@ struct my_option xb_server_options[] = ...@@ -906,7 +903,7 @@ struct my_option xb_server_options[] =
GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0}, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
{"log_bin", OPT_LOG, "Base name for the log sequence", {"log_bin", OPT_LOG, "Base name for the log sequence",
&opt_log_bin, &opt_log_bin, 0, GET_STR_ALLOC, OPT_ARG, 0, 0, 0, 0, 0, 0}, &opt_log_bin, &opt_log_bin, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
{"innodb", OPT_INNODB, "Ignored option for MySQL option compatibility", {"innodb", OPT_INNODB, "Ignored option for MySQL option compatibility",
(G_PTR*) &innobase_ignored_opt, (G_PTR*) &innobase_ignored_opt, 0, (G_PTR*) &innobase_ignored_opt, (G_PTR*) &innobase_ignored_opt, 0,
...@@ -931,10 +928,10 @@ struct my_option xb_server_options[] = ...@@ -931,10 +928,10 @@ struct my_option xb_server_options[] =
1024*1024L, 0}, 1024*1024L, 0},
{"innodb_data_file_path", OPT_INNODB_DATA_FILE_PATH, {"innodb_data_file_path", OPT_INNODB_DATA_FILE_PATH,
"Path to individual files and their sizes.", &innobase_data_file_path, "Path to individual files and their sizes.", &innobase_data_file_path,
&innobase_data_file_path, 0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, &innobase_data_file_path, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"innodb_data_home_dir", OPT_INNODB_DATA_HOME_DIR, {"innodb_data_home_dir", OPT_INNODB_DATA_HOME_DIR,
"The common part for InnoDB table spaces.", &innobase_data_home_dir, "The common part for InnoDB table spaces.", &innobase_data_home_dir,
&innobase_data_home_dir, 0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, &innobase_data_home_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"innodb_doublewrite", OPT_INNODB_DOUBLEWRITE, {"innodb_doublewrite", OPT_INNODB_DOUBLEWRITE,
"Enable InnoDB doublewrite buffer during --prepare.", "Enable InnoDB doublewrite buffer during --prepare.",
(G_PTR*) &innobase_use_doublewrite, (G_PTR*) &innobase_use_doublewrite,
...@@ -981,7 +978,7 @@ struct my_option xb_server_options[] = ...@@ -981,7 +978,7 @@ struct my_option xb_server_options[] =
0, GET_LONG, REQUIRED_ARG, 1, 1, 100, 0, 1, 0}, 0, GET_LONG, REQUIRED_ARG, 1, 1, 100, 0, 1, 0},
{"innodb_log_group_home_dir", OPT_INNODB_LOG_GROUP_HOME_DIR, {"innodb_log_group_home_dir", OPT_INNODB_LOG_GROUP_HOME_DIR,
"Path to InnoDB log files.", &srv_log_group_home_dir, "Path to InnoDB log files.", &srv_log_group_home_dir,
&srv_log_group_home_dir, 0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, &srv_log_group_home_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"innodb_max_dirty_pages_pct", OPT_INNODB_MAX_DIRTY_PAGES_PCT, {"innodb_max_dirty_pages_pct", OPT_INNODB_MAX_DIRTY_PAGES_PCT,
"Percentage of dirty pages allowed in bufferpool.", (G_PTR*) &srv_max_buf_pool_modified_pct, "Percentage of dirty pages allowed in bufferpool.", (G_PTR*) &srv_max_buf_pool_modified_pct,
(G_PTR*) &srv_max_buf_pool_modified_pct, 0, GET_ULONG, REQUIRED_ARG, 90, 0, 100, 0, 0, 0}, (G_PTR*) &srv_max_buf_pool_modified_pct, 0, GET_ULONG, REQUIRED_ARG, 90, 0, 100, 0, 0, 0},
...@@ -1027,7 +1024,7 @@ struct my_option xb_server_options[] = ...@@ -1027,7 +1024,7 @@ struct my_option xb_server_options[] =
{"innodb_undo_directory", OPT_INNODB_UNDO_DIRECTORY, {"innodb_undo_directory", OPT_INNODB_UNDO_DIRECTORY,
"Directory where undo tablespace files live, this path can be absolute.", "Directory where undo tablespace files live, this path can be absolute.",
&srv_undo_dir, &srv_undo_dir, 0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, &srv_undo_dir, &srv_undo_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0,
0}, 0},
{"innodb_undo_tablespaces", OPT_INNODB_UNDO_TABLESPACES, {"innodb_undo_tablespaces", OPT_INNODB_UNDO_TABLESPACES,
...@@ -1506,8 +1503,7 @@ innodb_init_param(void) ...@@ -1506,8 +1503,7 @@ innodb_init_param(void)
directory. */ directory. */
if (!srv_undo_dir || !xtrabackup_backup) { if (!srv_undo_dir || !xtrabackup_backup) {
my_free(srv_undo_dir); srv_undo_dir = (char*) ".";
srv_undo_dir = my_strdup(".", MYF(MY_FAE));
} }
log_checksum_algorithm_ptr = innodb_log_checksums || srv_encrypt_log log_checksum_algorithm_ptr = innodb_log_checksums || srv_encrypt_log
......
...@@ -107,7 +107,6 @@ extern my_bool opt_force_non_empty_dirs; ...@@ -107,7 +107,6 @@ extern my_bool opt_force_non_empty_dirs;
extern my_bool opt_noversioncheck; extern my_bool opt_noversioncheck;
extern my_bool opt_no_backup_locks; extern my_bool opt_no_backup_locks;
extern my_bool opt_decompress; extern my_bool opt_decompress;
extern my_bool opt_remove_original;
extern char *opt_incremental_history_name; extern char *opt_incremental_history_name;
extern char *opt_incremental_history_uuid; extern char *opt_incremental_history_uuid;
...@@ -118,7 +117,6 @@ extern char *opt_host; ...@@ -118,7 +117,6 @@ extern char *opt_host;
extern char *opt_defaults_group; extern char *opt_defaults_group;
extern char *opt_socket; extern char *opt_socket;
extern uint opt_port; extern uint opt_port;
extern char *opt_login_path;
extern char *opt_log_bin; extern char *opt_log_bin;
extern const char *query_type_names[]; extern const char *query_type_names[];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment