Commit 5eab19d7 authored by unknown's avatar unknown

Merge pilot.blaudden:/home/msvensson/mysql/my50-m-mysql_upgrade

into  pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint


BitKeeper/etc/ignore:
  auto-union
CMakeLists.txt:
  Auto merged
Makefile.am:
  Auto merged
include/my_global.h:
  Auto merged
sql/mysql_priv.h:
  Auto merged
parents 2276ca1a 1d24597f
...@@ -1085,6 +1085,7 @@ repl-tests/test-repl/sum-wlen-slave.master.re ...@@ -1085,6 +1085,7 @@ repl-tests/test-repl/sum-wlen-slave.master.re
repl-tests/test-repl/sum-wlen-slave.master.reje repl-tests/test-repl/sum-wlen-slave.master.reje
replace/*.ds? replace/*.ds?
replace/*.vcproj replace/*.vcproj
scripts/comp_sql
scripts/fill_func_tables scripts/fill_func_tables
scripts/fill_func_tables.sql scripts/fill_func_tables.sql
scripts/fill_help_tables scripts/fill_help_tables
...@@ -1102,6 +1103,7 @@ scripts/mysql_find_rows ...@@ -1102,6 +1103,7 @@ scripts/mysql_find_rows
scripts/mysql_fix_extensions scripts/mysql_fix_extensions
scripts/mysql_fix_privilege_tables scripts/mysql_fix_privilege_tables
scripts/mysql_fix_privilege_tables.sql scripts/mysql_fix_privilege_tables.sql
scripts/mysql_fix_privilege_tables_sql.c
scripts/mysql_install_db scripts/mysql_install_db
scripts/mysql_secure_installation scripts/mysql_secure_installation
scripts/mysql_setpermission scripts/mysql_setpermission
......
...@@ -133,6 +133,7 @@ ADD_SUBDIRECTORY(dbug) ...@@ -133,6 +133,7 @@ ADD_SUBDIRECTORY(dbug)
ADD_SUBDIRECTORY(strings) ADD_SUBDIRECTORY(strings)
ADD_SUBDIRECTORY(regex) ADD_SUBDIRECTORY(regex)
ADD_SUBDIRECTORY(mysys) ADD_SUBDIRECTORY(mysys)
ADD_SUBDIRECTORY(scripts)
ADD_SUBDIRECTORY(extra/yassl) ADD_SUBDIRECTORY(extra/yassl)
ADD_SUBDIRECTORY(extra/yassl/taocrypt) ADD_SUBDIRECTORY(extra/yassl/taocrypt)
ADD_SUBDIRECTORY(extra) ADD_SUBDIRECTORY(extra)
......
...@@ -21,9 +21,9 @@ AUTOMAKE_OPTIONS = foreign ...@@ -21,9 +21,9 @@ AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = INSTALL-SOURCE INSTALL-WIN-SOURCE \ EXTRA_DIST = INSTALL-SOURCE INSTALL-WIN-SOURCE \
README COPYING EXCEPTIONS-CLIENT CMakeLists.txt README COPYING EXCEPTIONS-CLIENT CMakeLists.txt
SUBDIRS = . include @docs_dirs@ @zlib_dir@ @yassl_dir@ \ SUBDIRS = . include @docs_dirs@ @zlib_dir@ @yassl_dir@ \
@readline_topdir@ sql-common \ @readline_topdir@ sql-common scripts \
@thread_dirs@ pstack \ @thread_dirs@ pstack \
@sql_union_dirs@ scripts @man_dirs@ tests \ @sql_union_dirs@ @man_dirs@ tests \
netware @libmysqld_dirs@ \ netware @libmysqld_dirs@ \
@bench_dirs@ support-files @tools_dirs@ @bench_dirs@ support-files @tools_dirs@
......
...@@ -14,57 +14,42 @@ ...@@ -14,57 +14,42 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include "client_priv.h" #include "client_priv.h"
#include <my_dir.h>
#include <my_list.h>
#include <sslopt-vars.h> #include <sslopt-vars.h>
#include "../scripts/mysql_fix_privilege_tables_sql.c"
#define UPGRADE_DEFAULTS_NAME "mysql_upgrade_defaults" static char mysql_path[FN_REFLEN];
#define MYSQL_UPGRADE_INFO_NAME "mysql_upgrade_info" static char mysqlcheck_path[FN_REFLEN];
#define MYSQL_FIX_PRIV_TABLES_NAME "mysql_fix_privilege_tables.sql" static char defaults_file_option[32+FN_REFLEN];
#define MY_PARENT (1 << 0) static my_bool opt_force, opt_verbose;
#define MY_ISDIR (1 << 1) static char *opt_user= (char*)"root";
#define MY_SEARCH_SELF (1 << 2)
static DYNAMIC_STRING ds_options;
static char *opt_password= 0;
static my_bool tty_password= 0;
#ifdef __WIN__
const char *mysqlcheck_name= "mysqlcheck.exe";
const char *mysql_name= "mysql.exe";
const char *mysqld_name= "mysqld.exe";
#define EXTRA_CLIENT_PATHS "client/release", "client/debug"
#else
const char *mysqlcheck_name= "mysqlcheck";
const char *mysql_name= "mysql";
const char *mysqld_name= "mysqld";
#define EXTRA_CLIENT_PATHS "client"
#endif /*__WIN__*/
extern TYPELIB sql_protocol_typelib;
static my_bool opt_force= 0, opt_verbose= 0, opt_compress= 0;
static char *user= (char*) "root", *basedir= 0, *datadir= 0, *opt_password= 0;
static char *current_host= 0;
static char *opt_default_charset= 0, *opt_charsets_dir= 0;
#ifdef HAVE_SMEM
static char *shared_memory_base_name= 0;
#endif
static char *opt_protocol= 0;
static my_string opt_mysql_port= 0, opt_mysql_unix_port= 0;
#ifndef DBUG_OFF #ifndef DBUG_OFF
static char *default_dbug_option= (char*) "d:t:O,/tmp/mysql_upgrade.trace"; static char *default_dbug_option= (char*) "d:t:O,/tmp/mysql_upgrade.trace";
#endif #endif
static my_bool info_flag= 0, tty_password= 0;
static char **defaults_argv; static char **defaults_argv;
static File defaults_fd= -1;
static my_bool not_used; /* Can't use GET_BOOL without a value pointer */
#include <help_start.h>
static struct my_option my_long_options[]= static struct my_option my_long_options[]=
{ {
{"help", '?', "Display this help message and exit.", 0, 0, 0, GET_NO_ARG, {"help", '?', "Display this help message and exit.", 0, 0, 0, GET_NO_ARG,
NO_ARG, 0, 0, 0, 0, 0, 0}, NO_ARG, 0, 0, 0, 0, 0, 0},
{"basedir", 'b', "Specifies the directory where MySQL is installed", {"basedir", 'b', "Not used by mysql_upgrade. Only for backward compatibilty",
(gptr*) &basedir, 0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
(gptr*) &basedir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, {"datadir", 'd',
{"datadir", 'd', "Specifies the data directory", (gptr*) &datadir, "Not used by mysql_upgrade. Only for backward compatibilty",
(gptr*) &datadir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, 0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
#ifdef DBUG_OFF #ifdef DBUG_OFF
{"debug", '#', "This is a non-debug version. Catch this and exit", {"debug", '#', "This is a non-debug version. Catch this and exit",
0, 0, 0, GET_DISABLED, OPT_ARG, 0, 0, 0, 0, 0, 0}, 0, 0, 0, GET_DISABLED, OPT_ARG, 0, 0, 0, 0, 0, 0},
...@@ -72,638 +57,759 @@ static struct my_option my_long_options[]= ...@@ -72,638 +57,759 @@ static struct my_option my_long_options[]=
{"debug", '#', "Output debug log", (gptr *) & default_dbug_option, {"debug", '#', "Output debug log", (gptr *) & default_dbug_option,
(gptr *) & default_dbug_option, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0}, (gptr *) & default_dbug_option, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
#endif #endif
{"debug-info", 'T', "Print some debug info at exit.", (gptr *) & info_flag,
(gptr *) & info_flag, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
{"default-character-set", OPT_DEFAULT_CHARSET, {"default-character-set", OPT_DEFAULT_CHARSET,
"Set the default character set.", (gptr*) &opt_default_charset, "Set the default character set.", 0,
(gptr*) &opt_default_charset, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"force", 'f', "Force execution of mysqlcheck even if mysql_upgrade "
"has already been executed for the current version of MySQL.",
(gptr*) &opt_force, (gptr*) &opt_force, 0, GET_BOOL, NO_ARG, 0, 0,
0, 0, 0, 0},
{"character-sets-dir", OPT_CHARSETS_DIR, {"character-sets-dir", OPT_CHARSETS_DIR,
"Directory where character sets are.", (gptr*) &opt_charsets_dir, "Directory where character sets are.", 0,
(gptr*) &opt_charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"compress", OPT_COMPRESS, "Use compression in server/client protocol.", {"compress", OPT_COMPRESS, "Use compression in server/client protocol.",
(gptr*) &opt_compress, (gptr*) &opt_compress, 0, GET_BOOL, NO_ARG, 0, 0, 0, (gptr*)&not_used, (gptr*)&not_used, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
0, 0, 0}, {"force", 'f', "Force execution of mysqlcheck even if mysql_upgrade "
{"host",'h', "Connect to host.", (gptr*) &current_host, "has already been executed for the current version of MySQL.",
(gptr*) &current_host, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, (gptr*)&opt_force, (gptr*)&opt_force, 0,
GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
{"host",'h', "Connect to host.", 0,
0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"password", 'p', {"password", 'p',
"Password to use when connecting to server. If password is not given" "Password to use when connecting to server. If password is not given"
" it's solicited on the tty.", 0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0}, " it's solicited on the tty.", (gptr*) &opt_password,(gptr*) &opt_password,
0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
#ifdef __WIN__ #ifdef __WIN__
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, {"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0,
GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
#endif #endif
{"port", 'P', "Port number to use for connection.", (gptr*) &opt_mysql_port, {"port", 'P', "Port number to use for connection.", 0,
(gptr*) &opt_mysql_port, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"protocol", OPT_MYSQL_PROTOCOL, {"protocol", OPT_MYSQL_PROTOCOL,
"The protocol of connection (tcp,socket,pipe,memory).", "The protocol of connection (tcp,socket,pipe,memory).",
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, 0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
#ifdef HAVE_SMEM #ifdef HAVE_SMEM
{"shared-memory-base-name", OPT_SHARED_MEMORY_BASE_NAME, {"shared-memory-base-name", OPT_SHARED_MEMORY_BASE_NAME,
"Base name of shared memory.", (gptr*) &shared_memory_base_name, "Base name of shared memory.", 0,
(gptr*) &shared_memory_base_name, 0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
#endif #endif
{"socket", 'S', "Socket file to use for connection.", {"socket", 'S', "Socket file to use for connection.",
(gptr*) &opt_mysql_unix_port, (gptr*) &opt_mysql_unix_port, 0, 0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, {"user", 'u', "User for login if not current user.", (gptr*) &opt_user,
{"user", 'u', "User for login if not current user.", (gptr*) &user, (gptr*) &opt_user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
(gptr*) &user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
#include <sslopt-longopts.h> #include <sslopt-longopts.h>
{"verbose", 'v', "Display more output about the process", {"verbose", 'v', "Display more output about the process",
(gptr*) &opt_verbose, (gptr*) &opt_verbose, 0, (gptr*) &opt_verbose, (gptr*) &opt_verbose, 0,
GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0}, GET_BOOL, NO_ARG, 1, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0} {0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
}; };
static const char *load_default_groups[]= #include <help_end.h>
static void free_used_memory(void)
{ {
"mysql_upgrade", 0 /* Close the defaults file */
}; if (defaults_fd != -1)
my_close(defaults_fd, MYF(0));
#include <help_end.h> /* Free memory allocated by 'load_defaults' */
free_defaults(defaults_argv);
dynstr_free(&ds_options);
}
static LIST *extra_defaults= NULL;
typedef struct _extra_default static void die(const char *fmt, ...)
{ {
int id; va_list args;
const char *name; DBUG_ENTER("die");
int n_len;
const char *value; /* Print the error message */
int v_len; va_start(args, fmt);
} extra_default_t; if (fmt)
{
static inline fprintf(stderr, "FATAL ERROR: ");
void set_extra_default(int id, const struct my_option *opt) vfprintf(stderr, fmt, args);
fprintf(stderr, "\n");
fflush(stderr);
}
va_end(args);
free_used_memory();
my_end(MY_CHECK_ERROR);
exit(1);
}
static void verbose(const char *fmt, ...)
{ {
switch (id) { va_list args;
case 'b': case 'd': /* these are ours */
case 'f': /* --force is ours */ if (!opt_verbose)
case 'u': /* --user passed on cmdline */ return;
case 'T': /* --debug-info is not accepted by mysqlcheck */
case 'p': /* --password may change yet */ /* Print the verbose message */
/* so, do nothing */ va_start(args, fmt);
break; if (fmt)
default: {
{ vfprintf(stdout, fmt, args);
LIST *l; fprintf(stdout, "\n");
extra_default_t *d; fflush(stdout);
}
/* va_end(args);
Remove any earlier duplicates: they can }
refer to invalid memory addresses (stale pointers)
*/
l= extra_defaults; /*
while (l) Add one option - passed to mysql_upgrade on command line
{ or by defaults file(my.cnf) - to a dynamic string that later
LIST *n= l->next; can be written to a temporary file. In this way we pass the
same arguments on to mysql and mysql_check
d= l->data; */
if (d->id == id)
{ static void add_one_option(DYNAMIC_STRING* ds,
extra_defaults= list_delete(extra_defaults, l); const struct my_option *opt,
my_free((gptr)l, MYF(0)); const char* argument)
my_free((gptr)d, MYF(0)); {
} dynstr_append(ds, opt->name);
l= n;
}
d= (extra_default_t *)my_malloc(sizeof(extra_default_t), if (opt->arg_type != NO_ARG)
MYF(MY_FAE | MY_ZEROFILL)); {
d->id= id; dynstr_append(ds, "=");
d->name= opt->name; switch (opt->var_type & GET_TYPE_MASK) {
d->n_len= strlen(opt->name); case GET_STR:
if (opt->arg_type != NO_ARG && opt->value) case GET_STR_ALLOC:
switch (opt->var_type & GET_TYPE_MASK) { dynstr_append(ds, argument);
case GET_BOOL: break;
if (*((int *)opt->value)) default:
{ die("internal error at %s: %d",__FILE__, __LINE__);
d->value= "true";
d->v_len= 4;
}
break;
case GET_STR:
case GET_STR_ALLOC:
d->value= *opt->value;
d->v_len= strlen(d->value);
break;
default:
my_printf_error(0, "Error: internal error at %s:%d", MYF(0),
__FILE__, __LINE__);
exit(1);
}
list_push(extra_defaults, d);
} }
} }
dynstr_append(ds, "\n");
} }
static my_bool static my_bool
get_one_option(int optid, const struct my_option *opt __attribute__ ((unused)), get_one_option(int optid, const struct my_option *opt,
char *argument) char *argument)
{ {
my_bool add_option= TRUE;
switch (optid) { switch (optid) {
case '?': case '?':
puts printf("MySQL utility for upgrading database to MySQL version %s\n",
("MySQL utility to upgrade database to the current server version"); MYSQL_SERVER_VERSION);
puts("");
my_print_help(my_long_options); my_print_help(my_long_options);
exit(0); exit(0);
break;
case '#': case '#':
DBUG_PUSH(argument ? argument : default_dbug_option); DBUG_PUSH(argument ? argument : default_dbug_option);
add_option= FALSE;
break; break;
case 'p': case 'p':
tty_password= 1; tty_password= 1;
add_option= FALSE;
if (argument) if (argument)
{ {
char *start= argument; /* Add password to ds_options before overwriting the arg with x's */
my_free(opt_password, MYF(MY_ALLOW_ZERO_PTR)); add_one_option(&ds_options, opt, argument);
opt_password= my_strdup(argument, MYF(MY_FAE));
while (*argument) while (*argument)
*argument++= 'x'; /* Destroy argument */ *argument++= 'x'; /* Destroy argument */
if (*start)
start[1]= 0; /* Cut length of argument */
tty_password= 0; tty_password= 0;
} }
break; break;
#ifdef __WIN__
case 'W': case 'b': /* --basedir */
my_free(opt_protocol, MYF(MY_ALLOW_ZERO_PTR)); case 'v': /* --verbose */
opt_protocol= my_strdup("pipe", MYF(MY_FAE)); case 'd': /* --datadir */
case 'f': /* --force */
add_option= FALSE;
break; break;
#endif }
case OPT_MYSQL_PROTOCOL:
if (find_type(argument, &sql_protocol_typelib, 0) > 0) if (add_option)
{
/*
This is an option that is accpted by mysql_upgrade just so
it can be passed on to "mysql" and "mysqlcheck"
Save it in the ds_options string
*/
add_one_option(&ds_options, opt, argument);
}
return 0;
}
/*
Write the options that should be passed on to
mysql and mysqlcheck to a temporary file
*/
static void create_defaults_file(void)
{
static char defaults_file_path[FN_REFLEN];
DBUG_ENTER("create_defaults_file");
if ((defaults_fd= create_temp_file(defaults_file_path, NULL,
"cnf", O_CREAT | O_SHARE,
MYF(MY_WME))) < 0)
die("Failed to create temporary file for defaults");
DBUG_PRINT("info", ("Writing options: %s", ds_options.str));
if (my_write(defaults_fd, ds_options.str, ds_options.length,
MYF(MY_FNABP | MY_WME)))
die("Failed to write to '%s'", defaults_file_path);
/*
Dont close the temporary file yet, it will be used
by mysql and mysqlcheck
*/
/*
Create the option that should be added to
tools in order to use this file
*/
snprintf(defaults_file_option, sizeof(defaults_file_option),
"--defaults-file=%s", defaults_file_path);
DBUG_PRINT("info", ("defaults_file_option: %s", defaults_file_option));
DBUG_VOID_RETURN;
}
static int run_command(char* cmd,
DYNAMIC_STRING *ds_res)
{
char buf[512]= {0};
FILE *res_file;
if (!(res_file= popen(cmd, "r")))
die("popen(\"%s\", \"r\") failed", cmd);
while (fgets(buf, sizeof(buf), res_file))
{
DBUG_PRINT("info", ("buf: %s", buf));
if(ds_res)
{ {
my_free(opt_protocol, MYF(MY_ALLOW_ZERO_PTR)); /* Save the output of this command in the supplied string */
opt_protocol= my_strdup(argument, MYF(MY_FAE)); dynstr_append(ds_res, buf);
} }
else else
{ {
fprintf(stderr, "Unknown option to protocol: %s\n", argument); /* Print it directly on screen */
exit(1); fprintf(stdout, "%s", buf);
} }
break;
#include <sslopt-case.h>
default:;
} }
set_extra_default(opt->id, opt);
return 0; return WEXITSTATUS(pclose(res_file));
} }
static int create_check_file(const char *path) static int run_tool(char *tool_path, DYNAMIC_STRING *ds_res, ...)
{ {
int ret; int ret;
File fd; const char* arg;
va_list args;
fd= my_open(path, O_CREAT | O_WRONLY, MYF(MY_FAE | MY_WME)); DYNAMIC_STRING ds_cmdline;
if (fd < 0) {
ret= 1; DBUG_ENTER("run_tool");
goto error; DBUG_PRINT("enter", ("tool_path: %s", tool_path));
if (init_dynamic_string(&ds_cmdline, IF_WIN("\"", ""), FN_REFLEN, FN_REFLEN))
die("Out of memory");
dynstr_append_os_quoted(&ds_cmdline, tool_path, NullS);
dynstr_append(&ds_cmdline, " ");
va_start(args, ds_res);
while ((arg= va_arg(args, char *)))
{
/* Options should be os quoted */
if (strncmp(arg, "--", 2) == 0)
dynstr_append_os_quoted(&ds_cmdline, arg, NullS);
else
dynstr_append(&ds_cmdline, arg);
dynstr_append(&ds_cmdline, " ");
} }
ret= my_write(fd, MYSQL_SERVER_VERSION,
sizeof(MYSQL_SERVER_VERSION) - 1, va_end(args);
MYF(MY_WME | MY_FNABP));
ret|= my_close(fd, MYF(MY_FAE | MY_WME)); DBUG_PRINT("info", ("Running: %s", ds_cmdline.str));
error: ret= run_command(ds_cmdline.str, ds_res);
return ret; DBUG_PRINT("exit", ("ret: %d", ret));
dynstr_free(&ds_cmdline);
DBUG_RETURN(ret);
} }
static int create_defaults_file(const char *path, const char *forced_path) /*
Try to get the full path to this exceutable
Return 0 if path found
*/
static my_bool get_full_path_to_executable(char* path)
{ {
int ret; my_bool ret;
uint cnt; DBUG_ENTER("get_full_path_to_executable");
File forced_file, defaults_file; #ifdef WIN
ret= GetModuleFileName(NULL, path, FN_REFLEN) != 0;
DYNAMIC_STRING buf; #else
extra_default_t *d; /* my_readlink returns 0 if a symlink was read */
ret= my_readlink(path, "/proc/self/exe", MYF(0)) != 0;
/* Might also want to try with /proc/$$/exe if the above fails */
#endif
DBUG_PRINT("exit", ("path: %s", path));
DBUG_RETURN(ret);
}
DBUG_ENTER("create_defaults_file");
DBUG_PRINT("enter", ("path: %s, forced_path: %s", path, forced_path));
/* Delete any previous defaults file generated by mysql_upgrade */
my_delete(path, MYF(0));
defaults_file= my_open(path, O_BINARY | O_CREAT | O_WRONLY | O_EXCL,
MYF(MY_FAE | MY_WME));
if (defaults_file < 0)
{
ret= 1;
goto out;
}
if (init_dynamic_string(&buf, NULL, my_getpagesize(), FN_REFLEN)) /*
{ Look for the tool in the same directory as mysql_upgrade.
ret= 1;
goto error;
}
/* Copy forced_path file into the defaults_file being generated */ When running in a not yet installed build the the program
if (forced_path) will exist but it need to be invoked via it's libtool wrapper.
{ Check if the found tool can executed and if not look in the
forced_file= my_open(forced_path, O_RDONLY, MYF(MY_FAE | MY_WME)); directory one step higher up where the libtool wrapper normally
if (forced_file < 0) is found
{ */
ret= 1;
goto error; static void find_tool(char *tool_path, const char *tool_name)
} {
DBUG_PRINT("info", ("Copying from %s to %s", forced_path, path)); char path[FN_REFLEN];
do DYNAMIC_STRING ds_tmp;
{ DBUG_ENTER("find_tool");
cnt= my_read(forced_file, buf.str, buf.max_length, MYF(MY_WME)); DBUG_PRINT("enter", ("progname: %s", my_progname));
if ((cnt == MY_FILE_ERROR)
|| my_write(defaults_file, buf.str, cnt, MYF(MY_FNABP | MY_WME))) if (init_dynamic_string(&ds_tmp, "", 32, 32))
{ die("Out of memory");
ret= 1;
my_close(forced_file, MYF(0));
goto error;
}
DBUG_PRINT("info", ("%s", buf.str));
} while (cnt == buf.max_length);
my_close(forced_file, MYF(0));
}
/* Write all extra_default options into the [client] section */ /* Initialize path with the full path to this program */
dynstr_set(&buf, "\n[client]"); if (get_full_path_to_executable(path))
if (opt_password)
{ {
if (dynstr_append(&buf, "\npassword=") /*
|| dynstr_append(&buf, opt_password)) Easy way to get full executable path failed, try
other methods
*/
if (my_progname[0] == FN_LIBCHAR)
{ {
ret = 1; /* 1. my_progname contains full path */
goto error; strmake(path, my_progname, FN_REFLEN);
} }
} else if (my_progname[0] == '.')
DBUG_PRINT("info", ("Writing extra_defaults to file"));
while (extra_defaults)
{
int len;
d= extra_defaults->data;
len= d->n_len + d->v_len + 1;
if (buf.length + len >= buf.max_length) /* to avoid realloc() */
{ {
/* 2. my_progname contains relative path, prepend wd */
if (my_write(defaults_file, buf.str, buf.length, MYF(MY_FNABP | MY_WME))) char buf[FN_REFLEN];
{ my_getwd(buf, FN_REFLEN, MYF(0));
ret= 1; snprintf(path, FN_REFLEN, "%s%s", buf, my_progname);
goto error;
}
dynstr_set(&buf, NULL);
} }
if (dynstr_append_mem(&buf, "\n", 1) || else
dynstr_append_mem(&buf, d->name, d->n_len) ||
(d->v_len && (dynstr_append_mem(&buf, "=", 1) ||
dynstr_append_mem(&buf, d->value, d->v_len))))
{ {
ret= 1; /* 3. Just go for it and hope tool is in path */
goto error; path[0]= 0;
} }
DBUG_PRINT("info", ("%s", buf.str));
my_free((gptr)d, MYF(0));
list_pop(extra_defaults); /* pop off the head */
} }
if (my_write(defaults_file, buf.str, buf.length, MYF(MY_FNABP | MY_WME))) do
{ {
ret= 1; DBUG_PRINT("enter", ("path: %s", path));
goto error;
/* Chop off last char(since it might be a /) */
size_t pos= max((strlen(path)-1), 0);
path[pos]= 0;
/* Chop off last dir part */
dirname_part(path, path);
/* Format name of the tool to search for */
fn_format(tool_path, tool_name,
path, "", MYF(MY_REPLACE_DIR));
verbose("Looking for '%s' in: %s", tool_name, tool_path);
/* Make sure the tool exists */
if (my_access(tool_path, F_OK) != 0)
die("Can't find '%s'", tool_path);
/*
Make sure it can be executed, otherwise try again
in higher level directory
*/
} }
/* everything's all right */ while(run_tool(tool_path,
ret= 0; &ds_tmp, /* Get output from command, discard*/
error: "--help",
dynstr_free(&buf); "2>&1",
IF_WIN("> NUL", "> /dev/null"),
if (defaults_file >= 0) NULL));
ret|= my_close(defaults_file, MYF(MY_WME));
dynstr_free(&ds_tmp);
if (ret)
my_delete(path, MYF(0)); DBUG_VOID_RETURN;
}
out:
/*
Run query using "mysql"
*/
static int run_query(const char *query, DYNAMIC_STRING *ds_res,
my_bool force)
{
int ret;
File fd;
char query_file_path[FN_REFLEN];
DBUG_ENTER("run_query");
DBUG_PRINT("enter", ("query: %s", query));
if ((fd= create_temp_file(query_file_path, NULL,
"sql", O_CREAT | O_SHARE,
MYF(MY_WME))) < 0)
die("Failed to create temporary file for defaults");
if (my_write(fd, query, strlen(query),
MYF(MY_FNABP | MY_WME)))
die("Failed to write to '%s'", query_file_path);
ret= run_tool(mysql_path,
ds_res,
defaults_file_option,
"--database=mysql",
"--batch", /* Turns off pager etc. */
force ? "--force": "--skip-force",
ds_res ? "--silent": "",
"<",
query_file_path,
"2>&1",
NULL);
my_close(fd, MYF(0));
DBUG_RETURN(ret); DBUG_RETURN(ret);
} }
/* Compare filenames */ /*
static int comp_names(struct fileinfo *a, struct fileinfo *b) Extract the value returned from result of "show variable like ..."
*/
static int extract_variable_from_show(DYNAMIC_STRING* ds, char* value)
{ {
return (strcmp(a->name,b->name)); char *value_start, *value_end;
/*
The query returns "datadir\t<datadir>\n", skip past
the tab
*/
if ((value_start= strchr(ds->str, '\t')) == NULL)
return 1; /* Unexpected result */
value_start++;
/* Don't copy the ending newline */
if (value_start && (value_end= strchr(value_start, '\n')) == NULL)
return 1; /* Unexpected result */
strncpy(value, value_start, min(FN_REFLEN, value_end-value_start));
return 0;
} }
static int find_file(const char *name, const char *root, static int get_upgrade_info_file_name(char* name)
uint flags, char *result, size_t len, ...)
{ {
int ret= 1; DYNAMIC_STRING ds_datadir;
va_list va; DBUG_ENTER("get_upgrade_info_file_name");
const char *subdir;
char *cp; if (init_dynamic_string(&ds_datadir, NULL, 32, 32))
FILEINFO key; die("Out of memory");
/* Init key with name of the file to look for */ if (run_query("show variables like 'datadir'",
key.name= (char*)name; &ds_datadir, FALSE) ||
extract_variable_from_show(&ds_datadir, name))
DBUG_ASSERT(root != NULL);
cp= strmake(result, root, len);
if (cp[-1] != FN_LIBCHAR)
*cp++= FN_LIBCHAR;
va_start(va, len);
subdir= (!(flags & MY_SEARCH_SELF)) ? va_arg(va, char *) : "";
while (subdir)
{ {
MY_DIR *dir; dynstr_free(&ds_datadir);
FILEINFO *match; DBUG_RETURN(1); /* Query failed */
char *cp1;
cp1= strnmov(cp, subdir, len - (cp - result) - 1);
dir= my_dir(result, (flags & MY_ISDIR) ? MY_WANT_STAT : MYF(0));
if (dir)
{
match= bsearch(&key, dir->dir_entry, dir->number_off_files,
sizeof(FILEINFO), (qsort_cmp)comp_names);
if (match)
{
ret= (flags & MY_ISDIR) ? !MY_S_ISDIR(match->mystat->st_mode) : 0;
if (!ret)
{
if (cp1[-1] != FN_LIBCHAR)
*cp1++= FN_LIBCHAR;
if (!(flags & MY_PARENT))
strnmov(cp1, name, len - (cp1 - result));
else
*cp1= '\0';
my_dirend(dir);
break;
}
}
my_dirend(dir);
}
subdir= va_arg(va, char *);
} }
va_end(va);
return ret; dynstr_free(&ds_datadir);
fn_format(name, "mysql_upgrade_info", name, "", MYF(0));
DBUG_PRINT("exit", ("name: %s", name));
DBUG_RETURN(0);
} }
int main(int argc, char **argv) /*
Read the content of mysql_upgrade_info file and
compare the version number form file against
version number wich mysql_upgrade was compiled for
NOTE
This is an optimization to avoid running mysql_upgrade
when it's already been performed for the particular
version of MySQL.
In case the MySQL server can't return the upgrade info
file it's always better to report that the upgrade hasn't
been performed.
*/
static int upgrade_already_done(void)
{ {
int ret; FILE *in;
char upgrade_info_file[FN_REFLEN]= {0};
char *forced_defaults_file; char buf[sizeof(MYSQL_SERVER_VERSION)+1];
char *forced_extra_defaults;
char *local_defaults_group_suffix;
int no_defaults;
char path[FN_REFLEN], upgrade_defaults_path[FN_REFLEN];
DYNAMIC_STRING cmdline; if (get_upgrade_info_file_name(upgrade_info_file))
return 0; /* Could not get filename => not sure */
MY_INIT(argv[0]); if (!(in= my_fopen(upgrade_info_file, O_RDONLY, MYF(0))))
#ifdef __NETWARE__ return 0; /* Could not open file => not sure */
setscreenmode(SCR_AUTOCLOSE_ON_EXIT);
#endif
/* Check if we are forced to use specific defaults */ /*
no_defaults= 0; Read from file, don't care if it fails since it
if (argc >= 2 && !strcmp(argv[1],"--no-defaults")) will be detected by the strncmp
no_defaults= 1; */
bzero(buf, sizeof(buf));
fgets(buf, sizeof(buf), in);
get_defaults_options(argc, argv, my_fclose(in, MYF(0));
&forced_defaults_file, &forced_extra_defaults,
&local_defaults_group_suffix);
load_defaults("my", load_default_groups, &argc, &argv);
defaults_argv= argv;
/* return (strncmp(buf, MYSQL_SERVER_VERSION,
Must init_dynamic_string before handle_options because string is freed sizeof(MYSQL_SERVER_VERSION)-1)==0);
at error label. }
*/
if (init_dynamic_string(&cmdline, NULL, 2 * FN_REFLEN + 128, FN_REFLEN) ||
handle_options(&argc, &argv, my_long_options, get_one_option))
{
ret= 1;
goto error;
}
if (tty_password)
opt_password= get_tty_password(NullS);
if (!basedir)
{
my_getwd(path, sizeof(path), MYF(0));
basedir= my_strdup(path, MYF(0));
if (find_file("errmsg.sys", basedir, MYF(0), path, sizeof(path),
"share/mysql/english", NullS)
|| find_file(mysqld_name, basedir, MYF(0), path, sizeof(path),
"bin", "libexec", NullS))
{
my_free((gptr)basedir, MYF(0));
basedir= (char *)DEFAULT_MYSQL_HOME;
}
}
if (!datadir) /*
{ Write mysql_upgrade_info file in servers data dir indicating that
if (!find_file("mysql", basedir, MYF(MY_ISDIR|MY_PARENT), upgrade has been done for this version
path, sizeof(path),
"data", "var", NullS)) NOTE
datadir= my_strdup(path, MYF(0)); This might very well fail but since it's just an optimization
else to run mysql_upgrade only when necessary the error can be
datadir= (char *)DATADIR; ignored.
}
if (find_file("user.frm", datadir, MYF(0), path, sizeof(path), */
"mysql", NullS))
static void create_mysql_upgrade_info_file(void)
{
FILE *out;
char upgrade_info_file[FN_REFLEN]= {0};
if (get_upgrade_info_file_name(upgrade_info_file))
return; /* Could not get filename => skip */
if (!(out= my_fopen(upgrade_info_file, O_TRUNC | O_WRONLY, MYF(0))))
{ {
ret= 1;
fprintf(stderr, fprintf(stderr,
"Can't find data directory. Please restart with" "Could not create the upgrade info file '%s' in "
" --datadir=path-to-writable-data-dir"); "the MySQL Servers datadir, errno: %d\n",
goto error; upgrade_info_file, errno);
return;
} }
/* /* Write new version to file, just print a message if it fails */
Create the modified defaults file to be used by mysqlcheck if (!fputs(MYSQL_SERVER_VERSION, out))
and mysql command line client fprintf(stderr,
*/ "Could not write to the upgrade info file '%s' in "
fn_format(upgrade_defaults_path, UPGRADE_DEFAULTS_NAME, datadir, "", MYF(0)); "the MySQL Servers datadir, errno: %d\n",
create_defaults_file(upgrade_defaults_path, forced_extra_defaults); upgrade_info_file, errno);
my_fclose(out, MYF(0));
}
/* /*
Read the mysql_upgrade_info file to check if mysql_upgrade Check and upgrade(if neccessary) all tables
already has been done in the server using "mysqlcheck --check-upgrade .."
Maybe this could be done a little earlier? */
*/
if (!find_file(MYSQL_UPGRADE_INFO_NAME, datadir, MY_SEARCH_SELF,
path, sizeof(path), NULL, NullS)
&& !opt_force)
{
char buf[sizeof(MYSQL_SERVER_VERSION)];
int fd, cnt;
fd= my_open(path, O_RDONLY, MYF(0));
cnt= my_read(fd, buf, sizeof(buf) - 1, MYF(0));
my_close(fd, MYF(0));
buf[cnt]= 0;
if (!strcmp(buf, MYSQL_SERVER_VERSION))
{
if (opt_verbose)
puts("mysql_upgrade has already been done for this version");
goto fix_priv_tables;
}
}
static int run_mysqlcheck_upgrade(void)
{
verbose("Running 'mysqlcheck'...");
return run_tool(mysqlcheck_path,
NULL, /* Send output from mysqlcheck directly to screen */
defaults_file_option,
"--check-upgrade",
"--all-databases",
"--auto-repair",
NULL);
}
/* Find mysqlcheck */
if (find_file(mysqlcheck_name, basedir, MYF(0), path, sizeof(path), static const char *expected_errors[]=
"bin", EXTRA_CLIENT_PATHS, NullS)) {
{ "ERROR 1060", /* Duplicate column name */
ret= 1; "ERROR 1061", /* Duplicate key name */
fprintf(stderr, "ERROR 1054", /* Unknown column */
"Can't find program '%s'\n" 0
"Please restart with --basedir=mysql-install-directory", };
mysqlcheck_name);
goto error;
} static my_bool is_expected_error(const char* line)
else {
const char** error= expected_errors;
while (*error)
{ {
#ifdef __WIN__ /*
/* Windows requires an extra pair of quotes around the entire string. */ Check if lines starting with ERROR
dynstr_set(&cmdline, "\""); are in the list of expected errors
#else */
dynstr_set(&cmdline, ""); if (strncmp(line, "ERROR", 5) != 0 ||
#endif /* __WIN__ */ strncmp(line, *error, strlen(*error)) == 0)
dynstr_append_os_quoted(&cmdline, path, NullS); return 1; /* Found expected error */
error++;
} }
return 0;
}
/*
All settings have been written to the "upgrade_defaults_path" static char* get_line(char* line)
instruct mysqlcheck to only read options from that file {
*/ while (*line && *line != '\n')
dynstr_append(&cmdline, " "); line++;
dynstr_append_os_quoted(&cmdline, if (*line)
(no_defaults ? "--defaults-file=" : line++;
"--defaults-extra-file="), return line;
upgrade_defaults_path, NullS); }
dynstr_append(&cmdline, " ");
dynstr_append_os_quoted(&cmdline, "--check-upgrade", NullS);
dynstr_append(&cmdline, " "); /* Print the current line to stderr */
dynstr_append_os_quoted(&cmdline, "--all-databases", NullS); static void print_line(char* line)
dynstr_append(&cmdline, " "); {
dynstr_append_os_quoted(&cmdline, "--auto-repair", NullS); while (*line && *line != '\n')
dynstr_append(&cmdline, " ");
dynstr_append_os_quoted(&cmdline, "--user=", user, NullS);
#ifdef __WIN__
dynstr_append(&cmdline, "\"");
#endif /* __WIN__ */
/* Execute mysqlcheck */
if (opt_verbose)
printf("Running %s\n", cmdline.str);
DBUG_PRINT("info", ("Running: %s", cmdline.str));
ret= system(cmdline.str);
if (ret)
{ {
fprintf(stderr, "Error executing '%s'\n", cmdline.str); fputc(*line, stderr);
goto error; line++;
} }
fputc('\n', stderr);
}
fn_format(path, MYSQL_UPGRADE_INFO_NAME, datadir, "", MYF(0));
ret= create_check_file(path);
if (ret)
goto error;
fix_priv_tables: /*
/* Find mysql */ Update all system tables in MySQL Server to current
if (find_file(mysql_name, basedir, MYF(0), path, sizeof(path), version using "mysql" to execute all the SQL commands
"bin", EXTRA_CLIENT_PATHS, NullS)) compiled into the mysql_fix_privilege_tables array
*/
static int run_sql_fix_privilege_tables(void)
{
int found_real_errors= 0;
DYNAMIC_STRING ds_result;
DBUG_ENTER("run_sql_fix_privilege_tables");
if (init_dynamic_string(&ds_result, "", 512, 512))
die("Out of memory");
verbose("Running 'mysql_fix_privilege_tables'...");
run_query(mysql_fix_privilege_tables,
&ds_result, /* Collect result */
TRUE);
{ {
ret= 1; /*
fprintf(stderr, Scan each line of the result for real errors
"Could not find MySQL command-line client (mysql).\n" and ignore the expected one(s) like "Duplicate column name",
"Please use --basedir to specify the directory" "Unknown column" and "Duplicate key name" since they just
" where MySQL is installed."); indicate the system tables are already up to date
goto error; */
char *line= ds_result.str;
do
{
if (!is_expected_error(line))
{
/* Something unexpected failed, dump error line to screen */
found_real_errors++;
print_line(line);
}
} while ((line= get_line(line)) && *line);
} }
else
dynstr_free(&ds_result);
return found_real_errors;
}
static const char *load_default_groups[]=
{
"client", /* Read settings how to connect to server */
"mysql_upgrade", /* Read special settings for mysql_upgrade*/
0
};
int main(int argc, char **argv)
{
MY_INIT(argv[0]);
#ifdef __NETWARE__
setscreenmode(SCR_AUTOCLOSE_ON_EXIT);
#endif
if (init_dynamic_string(&ds_options, "[client]\n", 512, 256))
die("Out of memory");
load_defaults("my", load_default_groups, &argc, &argv);
defaults_argv= argv; /* Must be freed by 'free_defaults' */
if (handle_options(&argc, &argv, my_long_options, get_one_option))
die(NULL);
if (tty_password)
{ {
#ifdef __WIN__ opt_password= get_tty_password(NullS);
/* Windows requires an extra pair of quotes around the entire string. */ /* add password to defaults file */
dynstr_set(&cmdline, "\""); dynstr_append(&ds_options, "password=");
#else dynstr_append(&ds_options, opt_password);
dynstr_set(&cmdline, ""); dynstr_append(&ds_options, "\n");
#endif /* __WIN__ */
dynstr_append_os_quoted(&cmdline, path, NullS);
} }
/* add user to defaults file */
dynstr_append(&ds_options, "user=");
dynstr_append(&ds_options, opt_user);
dynstr_append(&ds_options, "\n");
/* Find mysql */
find_tool(mysql_path, IF_WIN("mysql.exe", "mysql"));
/* Find mysqlcheck */
find_tool(mysqlcheck_path, IF_WIN("mysqlcheck.exe", "mysqlcheck"));
/* Find mysql_fix_privililege_tables.sql */ /*
if (find_file(MYSQL_FIX_PRIV_TABLES_NAME, basedir, MYF(0), Create the defaults file(a small my.cnf) which will pass
path, sizeof(path), all arguments accepted by mysql_upgrade on to mysqlcheck
"support_files", "share", "share/mysql", "scripts", and mysql command line client
NullS) */
&& find_file(MYSQL_FIX_PRIV_TABLES_NAME, "/usr/local/mysql", MYF(0), create_defaults_file();
path, sizeof(path),
"share/mysql", NullS)) /*
Read the mysql_upgrade_info file to check if mysql_upgrade
already has been run for this installation of MySQL
*/
if (!opt_force && upgrade_already_done())
{ {
ret= 1; printf("This installation of MySQL is already upgraded to %s, "
fprintf(stderr, "use --force if you still need to run mysql_upgrade\n",
"Could not find file " MYSQL_FIX_PRIV_TABLES_NAME "\n" MYSQL_SERVER_VERSION);
"Please use --basedir to specify the directory" die(NULL);
" where MySQL is installed");
goto error;
} }
/* /*
All settings have been written to the "upgrade_defaults_path", Run "mysqlcheck" and "mysql_fix_privilege_tables.sql"
instruct mysql to only read options from that file
*/ */
dynstr_append(&cmdline, " "); if (run_mysqlcheck_upgrade() ||
dynstr_append_os_quoted(&cmdline, run_sql_fix_privilege_tables())
(no_defaults ? "--defaults-file=" : {
"--defaults-extra-file="), /*
upgrade_defaults_path, NullS); The upgrade failed to complete in some way or another,
dynstr_append(&cmdline, " "); significant error message should have been printed to the screen
dynstr_append_os_quoted(&cmdline, "--force", NullS); */
dynstr_append(&cmdline, " "); die("Upgrade failed" );
dynstr_append_os_quoted(&cmdline, "--no-auto-rehash", NullS); }
dynstr_append(&cmdline, " "); verbose("OK");
dynstr_append_os_quoted(&cmdline, "--batch", NullS);
dynstr_append(&cmdline, " ");
dynstr_append_os_quoted(&cmdline, "--user=", user, NullS);
dynstr_append(&cmdline, " ");
dynstr_append_os_quoted(&cmdline, "--database=mysql", NullS);
dynstr_append(&cmdline, " < ");
dynstr_append_os_quoted(&cmdline, path, NullS);
#ifdef __WIN__
dynstr_append(&cmdline, "\"");
#endif /* __WIN__ */
/* Execute "mysql --force < mysql_fix_privilege_tables.sql" */
if (opt_verbose)
printf("Running %s\n", cmdline.str);
DBUG_PRINT("info", ("Running: %s", cmdline.str));
ret= system(cmdline.str);
if (ret)
fprintf(stderr, "Error executing '%s'\n", cmdline.str);
error:
dynstr_free(&cmdline);
/* Delete the generated defaults file */ /* Create a file indicating upgrade has been performed */
my_delete(upgrade_defaults_path, MYF(0)); create_mysql_upgrade_info_file();
free_defaults(defaults_argv); free_used_memory();
my_end(info_flag ? MY_CHECK_ERROR : 0); my_end(MY_CHECK_ERROR);
return ret; exit(0);
} }
...@@ -86,6 +86,14 @@ ...@@ -86,6 +86,14 @@
#endif #endif
#endif /* _WIN32... */ #endif /* _WIN32... */
/* Make it easier to add conditionl code for windows */
#ifdef __WIN__
#define IF_WIN(A,B) (A)
#else
#define IF_WIN(A,B) (B)
#endif
/* Some defines to avoid ifdefs in the code */ /* Some defines to avoid ifdefs in the code */
#ifndef NETWARE_YIELD #ifndef NETWARE_YIELD
#define NETWARE_YIELD #define NETWARE_YIELD
......
...@@ -16,48 +16,9 @@ mysql.time_zone_name OK ...@@ -16,48 +16,9 @@ mysql.time_zone_name OK
mysql.time_zone_transition OK mysql.time_zone_transition OK
mysql.time_zone_transition_type OK mysql.time_zone_transition_type OK
mysql.user OK mysql.user OK
@hadGrantPriv:=1
1
1
1
@hadShowDbPriv:=1
1
1
1
@hadCreateViewPriv:=1
1
1
1
@hadCreateRoutinePriv:=1
1
1
1
@hadCreateUserPriv:=1
1
1
1
Run it again - should say already completed Run it again - should say already completed
@hadGrantPriv:=1 This installation of MySQL is already upgraded to VERSION, use --force if you still need to run mysql_upgrade
1 Force should run it regardless of wether it's been run before
1
1
@hadShowDbPriv:=1
1
1
1
@hadCreateViewPriv:=1
1
1
1
@hadCreateRoutinePriv:=1
1
1
1
@hadCreateUserPriv:=1
1
1
1
Force should run it regardless of wheter it's been run before
mysql.columns_priv OK mysql.columns_priv OK
mysql.db OK mysql.db OK
mysql.func OK mysql.func OK
...@@ -75,23 +36,27 @@ mysql.time_zone_name OK ...@@ -75,23 +36,27 @@ mysql.time_zone_name OK
mysql.time_zone_transition OK mysql.time_zone_transition OK
mysql.time_zone_transition_type OK mysql.time_zone_transition_type OK
mysql.user OK mysql.user OK
@hadGrantPriv:=1 CREATE USER mysqltest1@'%' IDENTIFIED by 'sakila';
1 GRANT ALL ON *.* TO mysqltest1@'%';
1 Run mysql_upgrade with password protected account
1 mysql.columns_priv OK
@hadShowDbPriv:=1 mysql.db OK
1 mysql.func OK
1 mysql.help_category OK
1 mysql.help_keyword OK
@hadCreateViewPriv:=1 mysql.help_relation OK
1 mysql.help_topic OK
1 mysql.host OK
1 mysql.proc OK
@hadCreateRoutinePriv:=1 mysql.procs_priv OK
1 mysql.tables_priv OK
1 mysql.time_zone OK
1 mysql.time_zone_leap_second OK
@hadCreateUserPriv:=1 mysql.time_zone_name OK
1 mysql.time_zone_transition OK
1 mysql.time_zone_transition_type OK
1 mysql.user OK
DROP USER mysqltest1@'%';
Run mysql_upgrade with a non existing server socket
mysqlcheck: Got error: 2002: Can't connect to local MySQL server through socket 'var/tmp/no_sock_here' (2) when trying to connect
FATAL ERROR: Upgrade failed
...@@ -7,17 +7,55 @@ ...@@ -7,17 +7,55 @@
select LENGTH("$MYSQL_UPGRADE")>0 as have_mysql_upgrade; select LENGTH("$MYSQL_UPGRADE")>0 as have_mysql_upgrade;
--enable_query_log --enable_query_log
# Get version of the server so it can be masked out in the
# error messages from mysql_upgrade
let $VERSION=`select LEFT(version(), 6)`;
# #
# Basic test thta we can run mysql_upgrde and that it finds the # Basic test that we can run mysql_upgrde and that it finds the
# expected binaries it uses. # expected binaries it uses.
# #
--echo Run mysql_upgrade once --echo Run mysql_upgrade once
--exec $MYSQL_UPGRADE 2> $MYSQLTEST_VARDIR/log/mysql_upgrade.err --exec $MYSQL_UPGRADE --skip-verbose 2>&1
# It should have created a file in the MySQL Servers datadir
file_exists $MYSQLTEST_VARDIR/master-data/mysql_upgrade_info;
--echo Run it again - should say already completed --echo Run it again - should say already completed
--exec $MYSQL_UPGRADE 2> $MYSQLTEST_VARDIR/log/mysql_upgrade.err --replace_result $VERSION VERSION
--error 1
--exec $MYSQL_UPGRADE --skip-verbose 2>&1
# It should have created a file in the MySQL Servers datadir
file_exists $MYSQLTEST_VARDIR/master-data/mysql_upgrade_info;
--echo Force should run it regardless of wether it's been run before
--exec $MYSQL_UPGRADE --skip-verbose --force 2>&1
# It should have created a file in the MySQL Servers datadir
file_exists $MYSQLTEST_VARDIR/master-data/mysql_upgrade_info;
#
# Bug #25452 mysql_upgrade access denied.
#
# Password protect a root account and run mysql_upgrade
CREATE USER mysqltest1@'%' IDENTIFIED by 'sakila';
GRANT ALL ON *.* TO mysqltest1@'%';
--echo Run mysql_upgrade with password protected account
--exec $MYSQL_UPGRADE --skip-verbose --force --user=mysqltest1 --password=sakila 2>&1
--echo Force should run it regardless of wheter it's been run before DROP USER mysqltest1@'%';
--exec $MYSQL_UPGRADE --force 2> $MYSQLTEST_VARDIR/log/mysql_upgrade.err
#
# Bug #26639 mysql_upgrade exits successfully even if external command failed
#
--echo Run mysql_upgrade with a non existing server socket
--replace_result $MYSQLTEST_VARDIR var
--replace_regex /.*mysqlcheck.*: Got/mysqlcheck: Got/
--error 1
--exec $MYSQL_UPGRADE --skip-verbose --force --socket=$MYSQLTEST_VARDIR/tmp/no_sock_here 2>&1
# Copyright (C) 2006 MySQL AB
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
ADD_EXECUTABLE(comp_sql comp_sql.c)
TARGET_LINK_LIBRARIES(comp_sql dbug mysys strings)
# Build comp_sql - used for embedding SQL in C or C++ programs
GET_TARGET_PROPERTY(COMP_SQL_EXE comp_sql LOCATION)
ADD_CUSTOM_COMMAND(OUTPUT ${PROJECT_SOURCE_DIR}/client/mysql_fix_privilege_tables_sql.c
COMMAND ${COMP_SQL_EXE}
${PROJECT_SOURCE_DIR}/scripts/mysql_fix_privilege_tables.sql
${PROJECT_SOURCE_DIR}/client/mysql_fix_privilege_tables_sql.c
DEPENDS comp_sql ${PROJECT_SOURCE_DIR}/scripts/mysql_fix_privilege_tables.sql)
...@@ -165,5 +165,19 @@ SUFFIXES = .sh ...@@ -165,5 +165,19 @@ SUFFIXES = .sh
@CHMOD@ +x $@-t @CHMOD@ +x $@-t
@MV@ $@-t $@ @MV@ $@-t $@
BUILT_SOURCES = mysql_fix_privilege_tables_sql.c
noinst_PROGRAMS = comp_sql
#
# Build mysql_fix_privilege_tables_sql.c from
# mysql_fix_privileges_tables.sql using comp_sql
#
mysql_fix_privilege_tables_sql.c: comp_sql.c mysql_fix_privilege_tables.sql
$(MAKE) $(AM_MAKEFLAGS) comp_sql$(EXEEXT)
$(top_builddir)/scripts/comp_sql$(EXEEXT) \
mysql_fix_privilege_tables.sql $@
# Don't update the files from bitkeeper # Don't update the files from bitkeeper
%::SCCS/s.% %::SCCS/s.%
/* Copyright (C) 2004 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/*
Written by Magnus Svensson
*/
/*
Converts a SQL file into a C file that can be compiled and linked
into other programs
*/
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
FILE *in, *out;
static void die(const char *fmt, ...)
{
va_list args;
/* Print the error message */
fprintf(stderr, "FATAL ERROR: ");
if (fmt)
{
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
}
else
fprintf(stderr, "unknown error");
fprintf(stderr, "\n");
fflush(stderr);
/* Close any open files */
if (in)
fclose(in);
if (out)
fclose(out);
exit(1);
}
int main(int argc, char *argv[])
{
char buff[512];
char* infile_name= argv[1];
char* outfile_name= argv[2];
char* end= infile_name;
if (argc != 3)
die("Usage: comp_sql <sql_filename> <c_filename>");
/* Open input and output file */
if (!(in= fopen(infile_name, "r")))
die("Failed to open SQL file '%s'", infile_name);
if (!(out= fopen(outfile_name, "w")))
die("Failed to open output file '%s'", outfile_name);
while(*end && *end != '.')
end++;
*end= 0;
fprintf(out, "const char* %s={\"\\\n", infile_name);
while (fgets(buff, sizeof(buff), in))
{
char *curr= buff;
while (*curr)
{
if (*curr == '\n')
{
/*
Reached end of line, add escaped newline, escaped
backslash and a newline to outfile
*/
fprintf(out, "\\n\\\n");
curr++;
}
else if (*curr == '\r')
{
curr++; /* Skip */
}
else
{
if (*curr == '"')
{
/* Needs escape */
fputc('\\', out);
}
fputc(*curr, out);
curr++;
}
}
}
fprintf(out, "\\\n\"};\n");
fclose(in);
fclose(out);
exit(0);
}
...@@ -268,7 +268,6 @@ MY_LOCALE *my_locale_by_number(uint number); ...@@ -268,7 +268,6 @@ MY_LOCALE *my_locale_by_number(uint number);
#endif #endif
#if defined(__WIN__) || defined(OS2) #if defined(__WIN__) || defined(OS2)
#define IF_WIN(A,B) (A)
#undef FLUSH_TIME #undef FLUSH_TIME
#define FLUSH_TIME 1800 /* Flush every half hour */ #define FLUSH_TIME 1800 /* Flush every half hour */
...@@ -277,7 +276,6 @@ MY_LOCALE *my_locale_by_number(uint number); ...@@ -277,7 +276,6 @@ MY_LOCALE *my_locale_by_number(uint number);
#define WAIT_PRIOR 0 #define WAIT_PRIOR 0
#define QUERY_PRIOR 2 #define QUERY_PRIOR 2
#else #else
#define IF_WIN(A,B) (B)
#define INTERRUPT_PRIOR 10 #define INTERRUPT_PRIOR 10
#define CONNECT_PRIOR 9 #define CONNECT_PRIOR 9
#define WAIT_PRIOR 8 #define WAIT_PRIOR 8
......
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