2012-02-16 10:48:16 +01:00
|
|
|
/* Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
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
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2000-07-31 21:29:14 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-12-06 13:10:51 +01:00
|
|
|
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
|
2011-06-30 17:46:53 +02:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
#include "mysys_priv.h"
|
|
|
|
#include "my_static.h"
|
|
|
|
#include "mysys_err.h"
|
|
|
|
#include <m_string.h>
|
|
|
|
#include <m_ctype.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#ifdef __WIN__
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <locale.h>
|
|
|
|
#include <crtdbg.h>
|
2009-09-30 03:39:37 +02:00
|
|
|
/* WSAStartup needs winsock library*/
|
|
|
|
#pragma comment(lib, "ws2_32")
|
2000-07-31 21:29:14 +02:00
|
|
|
#endif
|
|
|
|
my_bool have_tcpip=0;
|
|
|
|
static void my_win_init(void);
|
|
|
|
static my_bool win32_init_tcp_ip();
|
|
|
|
#else
|
|
|
|
#define my_win_init()
|
|
|
|
#endif
|
2003-01-28 07:38:28 +01:00
|
|
|
|
2010-07-23 22:16:29 +02:00
|
|
|
#define SCALE_SEC 100
|
|
|
|
#define SCALE_USEC 10000
|
|
|
|
|
2004-11-10 23:36:18 +01:00
|
|
|
my_bool my_init_done= 0;
|
|
|
|
uint mysys_usage_id= 0; /* Incremented for each my_init() */
|
2007-10-11 17:07:40 +02:00
|
|
|
ulong my_thread_stack_size= 65536;
|
2001-01-27 10:24:05 +01:00
|
|
|
|
2000-10-10 23:06:37 +02:00
|
|
|
static ulong atoi_octal(const char *str)
|
2000-09-26 01:57:29 +02:00
|
|
|
{
|
|
|
|
long int tmp;
|
2003-03-16 09:30:10 +01:00
|
|
|
while (*str && my_isspace(&my_charset_latin1, *str))
|
2000-09-26 01:57:29 +02:00
|
|
|
str++;
|
|
|
|
str2int(str,
|
2004-11-10 23:36:18 +01:00
|
|
|
(*str == '0' ? 8 : 10), /* Octalt or decimalt */
|
2000-09-26 01:57:29 +02:00
|
|
|
0, INT_MAX, &tmp);
|
|
|
|
return (ulong) tmp;
|
|
|
|
}
|
|
|
|
|
2009-12-10 04:19:51 +01:00
|
|
|
MYSQL_FILE *mysql_stdin= NULL;
|
|
|
|
static MYSQL_FILE instrumented_stdin;
|
|
|
|
|
Bug#11765237 - 58179: CANNOT START MYSQLD WITH APP VERIFIER
Bug#11763065 - 55730: KILL_SERVER() CALLS SETEVENT ON A NULL
HANDLE, SMEM_EVENT_CONNECT_REQUEST
Application Verifier is a Microsoft tool used for
detecting certain classes of programming errors.
In particular, MS Windows OS resource usage is
monitored for wrong usage (handles, thread local
storage, critical sections, ...)
In MySQL 5.5.x, an error was introduced where an
object on thread local storage was used before the
TLS and the object was created.
The fix has been to move the mysys initialization
to an earlier stage in the boot process when built for
Windows. For non-win builds, the init already happens
early.
Some un-tangling of calls to my_init(), my_basic_init()
and my_thread_global_init() was done. There is no
longer a need to do init in steps, so the full my_init()
is called instead of my_init_basic().
In addition, Bug#11763065 was fixed. The event handle
'smem_event_connect_request' is only created if
'opt_enable_shared_memory' is set. When killing the
server, an event was flagged on the handle
unconditionally. Added a test, so it will only be
flagged if created.
2011-03-01 13:03:31 +01:00
|
|
|
|
2011-03-01 14:36:47 +01:00
|
|
|
/**
|
|
|
|
Initialize my_sys functions, resources and variables
|
Bug#11765237 - 58179: CANNOT START MYSQLD WITH APP VERIFIER
Bug#11763065 - 55730: KILL_SERVER() CALLS SETEVENT ON A NULL
HANDLE, SMEM_EVENT_CONNECT_REQUEST
Application Verifier is a Microsoft tool used for
detecting certain classes of programming errors.
In particular, MS Windows OS resource usage is
monitored for wrong usage (handles, thread local
storage, critical sections, ...)
In MySQL 5.5.x, an error was introduced where an
object on thread local storage was used before the
TLS and the object was created.
The fix has been to move the mysys initialization
to an earlier stage in the boot process when built for
Windows. For non-win builds, the init already happens
early.
Some un-tangling of calls to my_init(), my_basic_init()
and my_thread_global_init() was done. There is no
longer a need to do init in steps, so the full my_init()
is called instead of my_init_basic().
In addition, Bug#11763065 was fixed. The event handle
'smem_event_connect_request' is only created if
'opt_enable_shared_memory' is set. When killing the
server, an event was flagged on the handle
unconditionally. Added a test, so it will only be
flagged if created.
2011-03-01 13:03:31 +01:00
|
|
|
|
2011-03-01 14:36:47 +01:00
|
|
|
@return Initialization result
|
|
|
|
@retval 0 Success
|
|
|
|
@retval 1 Error. Couldn't initialize environment
|
2003-12-11 05:24:08 +01:00
|
|
|
*/
|
Bug#11765237 - 58179: CANNOT START MYSQLD WITH APP VERIFIER
Bug#11763065 - 55730: KILL_SERVER() CALLS SETEVENT ON A NULL
HANDLE, SMEM_EVENT_CONNECT_REQUEST
Application Verifier is a Microsoft tool used for
detecting certain classes of programming errors.
In particular, MS Windows OS resource usage is
monitored for wrong usage (handles, thread local
storage, critical sections, ...)
In MySQL 5.5.x, an error was introduced where an
object on thread local storage was used before the
TLS and the object was created.
The fix has been to move the mysys initialization
to an earlier stage in the boot process when built for
Windows. For non-win builds, the init already happens
early.
Some un-tangling of calls to my_init(), my_basic_init()
and my_thread_global_init() was done. There is no
longer a need to do init in steps, so the full my_init()
is called instead of my_init_basic().
In addition, Bug#11763065 was fixed. The event handle
'smem_event_connect_request' is only created if
'opt_enable_shared_memory' is set. When killing the
server, an event was flagged on the handle
unconditionally. Added a test, so it will only be
flagged if created.
2011-03-01 13:03:31 +01:00
|
|
|
my_bool my_init(void)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
Bug#11765237 - 58179: CANNOT START MYSQLD WITH APP VERIFIER
Bug#11763065 - 55730: KILL_SERVER() CALLS SETEVENT ON A NULL
HANDLE, SMEM_EVENT_CONNECT_REQUEST
Application Verifier is a Microsoft tool used for
detecting certain classes of programming errors.
In particular, MS Windows OS resource usage is
monitored for wrong usage (handles, thread local
storage, critical sections, ...)
In MySQL 5.5.x, an error was introduced where an
object on thread local storage was used before the
TLS and the object was created.
The fix has been to move the mysys initialization
to an earlier stage in the boot process when built for
Windows. For non-win builds, the init already happens
early.
Some un-tangling of calls to my_init(), my_basic_init()
and my_thread_global_init() was done. There is no
longer a need to do init in steps, so the full my_init()
is called instead of my_init_basic().
In addition, Bug#11763065 was fixed. The event handle
'smem_event_connect_request' is only created if
'opt_enable_shared_memory' is set. When killing the
server, an event was flagged on the handle
unconditionally. Added a test, so it will only be
flagged if created.
2011-03-01 13:03:31 +01:00
|
|
|
char *str;
|
2010-01-26 04:50:31 +01:00
|
|
|
|
Bug#11765237 - 58179: CANNOT START MYSQLD WITH APP VERIFIER
Bug#11763065 - 55730: KILL_SERVER() CALLS SETEVENT ON A NULL
HANDLE, SMEM_EVENT_CONNECT_REQUEST
Application Verifier is a Microsoft tool used for
detecting certain classes of programming errors.
In particular, MS Windows OS resource usage is
monitored for wrong usage (handles, thread local
storage, critical sections, ...)
In MySQL 5.5.x, an error was introduced where an
object on thread local storage was used before the
TLS and the object was created.
The fix has been to move the mysys initialization
to an earlier stage in the boot process when built for
Windows. For non-win builds, the init already happens
early.
Some un-tangling of calls to my_init(), my_basic_init()
and my_thread_global_init() was done. There is no
longer a need to do init in steps, so the full my_init()
is called instead of my_init_basic().
In addition, Bug#11763065 was fixed. The event handle
'smem_event_connect_request' is only created if
'opt_enable_shared_memory' is set. When killing the
server, an event was flagged on the handle
unconditionally. Added a test, so it will only be
flagged if created.
2011-03-01 13:03:31 +01:00
|
|
|
if (my_init_done)
|
2003-12-11 05:24:08 +01:00
|
|
|
return 0;
|
Bug#11765237 - 58179: CANNOT START MYSQLD WITH APP VERIFIER
Bug#11763065 - 55730: KILL_SERVER() CALLS SETEVENT ON A NULL
HANDLE, SMEM_EVENT_CONNECT_REQUEST
Application Verifier is a Microsoft tool used for
detecting certain classes of programming errors.
In particular, MS Windows OS resource usage is
monitored for wrong usage (handles, thread local
storage, critical sections, ...)
In MySQL 5.5.x, an error was introduced where an
object on thread local storage was used before the
TLS and the object was created.
The fix has been to move the mysys initialization
to an earlier stage in the boot process when built for
Windows. For non-win builds, the init already happens
early.
Some un-tangling of calls to my_init(), my_basic_init()
and my_thread_global_init() was done. There is no
longer a need to do init in steps, so the full my_init()
is called instead of my_init_basic().
In addition, Bug#11763065 was fixed. The event handle
'smem_event_connect_request' is only created if
'opt_enable_shared_memory' is set. When killing the
server, an event was flagged on the handle
unconditionally. Added a test, so it will only be
flagged if created.
2011-03-01 13:03:31 +01:00
|
|
|
|
|
|
|
my_init_done= 1;
|
2009-12-10 04:19:51 +01:00
|
|
|
|
2004-11-10 23:36:18 +01:00
|
|
|
mysys_usage_id++;
|
2004-11-11 09:35:55 +01:00
|
|
|
my_umask= 0660; /* Default umask for new files */
|
|
|
|
my_umask_dir= 0700; /* Default umask for new directories */
|
2009-12-10 04:19:51 +01:00
|
|
|
|
2010-01-26 04:50:31 +01:00
|
|
|
/* Default creation of new files */
|
|
|
|
if ((str= getenv("UMASK")) != 0)
|
|
|
|
my_umask= (int) (atoi_octal(str) | 0600);
|
|
|
|
/* Default creation of new dir's */
|
|
|
|
if ((str= getenv("UMASK_DIR")) != 0)
|
|
|
|
my_umask_dir= (int) (atoi_octal(str) | 0700);
|
|
|
|
|
2007-10-11 17:07:40 +02:00
|
|
|
init_glob_errs();
|
2009-12-10 04:19:51 +01:00
|
|
|
|
|
|
|
instrumented_stdin.m_file= stdin;
|
|
|
|
instrumented_stdin.m_psi= NULL; /* not yet instrumented */
|
|
|
|
mysql_stdin= & instrumented_stdin;
|
|
|
|
|
2010-06-10 15:44:19 +02:00
|
|
|
if (my_thread_global_init())
|
|
|
|
return 1;
|
2011-01-11 10:07:37 +01:00
|
|
|
|
|
|
|
#if defined(SAFE_MUTEX)
|
2003-01-28 07:38:28 +01:00
|
|
|
safe_mutex_global_init(); /* Must be called early */
|
2007-08-24 17:06:44 +02:00
|
|
|
#endif
|
2011-01-11 10:07:37 +01:00
|
|
|
|
|
|
|
#if defined(MY_PTHREAD_FASTMUTEX) && !defined(SAFE_MUTEX)
|
2007-08-24 17:06:44 +02:00
|
|
|
fastmutex_global_init(); /* Must be called early */
|
2003-01-28 07:38:28 +01:00
|
|
|
#endif
|
2011-01-11 10:07:37 +01:00
|
|
|
|
2010-03-18 21:06:12 +01:00
|
|
|
/* $HOME is needed early to parse configuration files located in ~/ */
|
|
|
|
if ((home_dir= getenv("HOME")) != 0)
|
|
|
|
home_dir= intern_filename(home_dir_buff, home_dir);
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("my_init");
|
2005-07-31 11:49:55 +02:00
|
|
|
DBUG_PROCESS((char*) (my_progname ? my_progname : "unknown"));
|
2010-01-26 04:50:31 +01:00
|
|
|
my_win_init();
|
|
|
|
DBUG_PRINT("exit", ("home: '%s'", home_dir));
|
2000-07-31 21:29:14 +02:00
|
|
|
#ifdef __WIN__
|
|
|
|
win32_init_tcp_ip();
|
|
|
|
#endif
|
2003-12-11 05:24:08 +01:00
|
|
|
DBUG_RETURN(0);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
} /* my_init */
|
|
|
|
|
|
|
|
|
|
|
|
/* End my_sys */
|
|
|
|
|
|
|
|
void my_end(int infoflag)
|
|
|
|
{
|
2005-09-23 14:07:31 +02:00
|
|
|
/*
|
|
|
|
this code is suboptimal to workaround a bug in
|
|
|
|
Sun CC: Sun C++ 5.6 2004/06/02 for x86, and should not be
|
|
|
|
optimized until this compiler is not in use anymore
|
|
|
|
*/
|
2005-09-23 09:47:41 +02:00
|
|
|
FILE *info_file= DBUG_FILE;
|
2005-09-23 14:07:31 +02:00
|
|
|
my_bool print_info= (info_file != stderr);
|
2009-04-09 17:25:25 +02:00
|
|
|
|
|
|
|
if (!my_init_done)
|
|
|
|
return;
|
|
|
|
|
2007-08-01 21:59:05 +02:00
|
|
|
/*
|
|
|
|
We do not use DBUG_ENTER here, as after cleanup DBUG is no longer
|
|
|
|
operational, so we cannot use DBUG_RETURN.
|
2006-03-22 09:55:26 +01:00
|
|
|
*/
|
2007-08-02 06:49:29 +02:00
|
|
|
DBUG_PRINT("info",("Shutting down: infoflag: %d print_info: %d",
|
|
|
|
infoflag, print_info));
|
2005-09-23 09:47:41 +02:00
|
|
|
if (!info_file)
|
|
|
|
{
|
|
|
|
info_file= stderr;
|
|
|
|
print_info= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((infoflag & MY_CHECK_ERROR) || print_info)
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
{ /* Test if some file is left open */
|
|
|
|
if (my_file_opened | my_stream_opened)
|
|
|
|
{
|
2009-02-05 07:16:00 +01:00
|
|
|
char ebuff[512];
|
|
|
|
my_snprintf(ebuff, sizeof(ebuff), EE(EE_OPEN_WARNING),
|
|
|
|
my_file_opened, my_stream_opened);
|
2010-05-29 00:53:26 +02:00
|
|
|
my_message_stderr(EE_OPEN_WARNING, ebuff, ME_BELL);
|
2009-02-05 07:16:00 +01:00
|
|
|
DBUG_PRINT("error", ("%s", ebuff));
|
2006-05-04 05:28:24 +02:00
|
|
|
my_print_open_files();
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
}
|
2010-02-26 15:30:14 +01:00
|
|
|
free_charsets();
|
2006-11-21 21:32:58 +01:00
|
|
|
my_error_unregister_all();
|
2003-01-07 10:45:06 +01:00
|
|
|
my_once_free();
|
2005-09-23 09:47:41 +02:00
|
|
|
|
|
|
|
if ((infoflag & MY_GIVE_INFO) || print_info)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
#ifdef HAVE_GETRUSAGE
|
|
|
|
struct rusage rus;
|
2005-02-28 10:59:46 +01:00
|
|
|
#ifdef HAVE_purify
|
|
|
|
/* Purify assumes that rus is uninitialized after getrusage call */
|
|
|
|
bzero((char*) &rus, sizeof(rus));
|
|
|
|
#endif
|
2000-07-31 21:29:14 +02:00
|
|
|
if (!getrusage(RUSAGE_SELF, &rus))
|
2001-01-27 10:24:05 +01:00
|
|
|
fprintf(info_file,"\n\
|
|
|
|
User time %.2f, System time %.2f\n\
|
|
|
|
Maximum resident set size %ld, Integral resident set size %ld\n\
|
|
|
|
Non-physical pagefaults %ld, Physical pagefaults %ld, Swaps %ld\n\
|
|
|
|
Blocks in %ld out %ld, Messages in %ld out %ld, Signals %ld\n\
|
|
|
|
Voluntary context switches %ld, Involuntary context switches %ld\n",
|
2000-07-31 21:29:14 +02:00
|
|
|
(rus.ru_utime.tv_sec * SCALE_SEC +
|
|
|
|
rus.ru_utime.tv_usec / SCALE_USEC) / 100.0,
|
|
|
|
(rus.ru_stime.tv_sec * SCALE_SEC +
|
|
|
|
rus.ru_stime.tv_usec / SCALE_USEC) / 100.0,
|
|
|
|
rus.ru_maxrss, rus.ru_idrss,
|
|
|
|
rus.ru_minflt, rus.ru_majflt,
|
|
|
|
rus.ru_nswap, rus.ru_inblock, rus.ru_oublock,
|
|
|
|
rus.ru_msgsnd, rus.ru_msgrcv, rus.ru_nsignals,
|
|
|
|
rus.ru_nvcsw, rus.ru_nivcsw);
|
|
|
|
#endif
|
Bug#34043: Server loops excessively in _checkchunk() when safemalloc is enabled
Essentially, the problem is that safemalloc is excruciatingly
slow as it checks all allocated blocks for overrun at each
memory management primitive, yielding a almost exponential
slowdown for the memory management functions (malloc, realloc,
free). The overrun check basically consists of verifying some
bytes of a block for certain magic keys, which catches some
simple forms of overrun. Another minor problem is violation
of aliasing rules and that its own internal list of blocks
is prone to corruption.
Another issue with safemalloc is rather the maintenance cost
as the tool has a significant impact on the server code.
Given the magnitude of memory debuggers available nowadays,
especially those that are provided with the platform malloc
implementation, maintenance of a in-house and largely obsolete
memory debugger becomes a burden that is not worth the effort
due to its slowness and lack of support for detecting more
common forms of heap corruption.
Since there are third-party tools that can provide the same
functionality at a lower or comparable performance cost, the
solution is to simply remove safemalloc. Third-party tools
can provide the same functionality at a lower or comparable
performance cost.
The removal of safemalloc also allows a simplification of the
malloc wrappers, removing quite a bit of kludge: redefinition
of my_malloc, my_free and the removal of the unused second
argument of my_free. Since free() always check whether the
supplied pointer is null, redudant checks are also removed.
Also, this patch adds unit testing for my_malloc and moves
my_realloc implementation into the same file as the other
memory allocation primitives.
2010-07-08 23:20:08 +02:00
|
|
|
#if defined(__WIN__) && defined(_MSC_VER)
|
2000-07-31 21:29:14 +02:00
|
|
|
_CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_FILE );
|
|
|
|
_CrtSetReportFile( _CRT_WARN, _CRTDBG_FILE_STDERR );
|
|
|
|
_CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_FILE );
|
|
|
|
_CrtSetReportFile( _CRT_ERROR, _CRTDBG_FILE_STDERR );
|
|
|
|
_CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_FILE );
|
|
|
|
_CrtSetReportFile( _CRT_ASSERT, _CRTDBG_FILE_STDERR );
|
|
|
|
_CrtCheckMemory();
|
|
|
|
_CrtDumpMemoryLeaks();
|
|
|
|
#endif
|
|
|
|
}
|
2006-05-15 18:07:18 +02:00
|
|
|
|
|
|
|
if (!(infoflag & MY_DONT_FREE_DBUG))
|
2007-02-23 12:13:55 +01:00
|
|
|
{
|
2006-05-15 18:07:18 +02:00
|
|
|
DBUG_END(); /* Must be done before my_thread_end */
|
2007-02-23 12:13:55 +01:00
|
|
|
}
|
2011-01-11 10:07:37 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
my_thread_end();
|
|
|
|
my_thread_global_end();
|
2003-01-28 07:38:28 +01:00
|
|
|
#if defined(SAFE_MUTEX)
|
|
|
|
/*
|
|
|
|
Check on destroying of mutexes. A few may be left that will get cleaned
|
|
|
|
up by C++ destructors
|
|
|
|
*/
|
2006-11-21 21:32:58 +01:00
|
|
|
safe_mutex_end((infoflag & (MY_GIVE_INFO | MY_CHECK_ERROR)) ? stderr :
|
|
|
|
(FILE *) 0);
|
2003-01-28 07:38:28 +01:00
|
|
|
#endif /* defined(SAFE_MUTEX) */
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#ifdef __WIN__
|
2003-01-28 07:38:28 +01:00
|
|
|
if (have_tcpip)
|
|
|
|
WSACleanup();
|
2000-07-31 21:29:14 +02:00
|
|
|
#endif /* __WIN__ */
|
Bug#34043: Server loops excessively in _checkchunk() when safemalloc is enabled
Essentially, the problem is that safemalloc is excruciatingly
slow as it checks all allocated blocks for overrun at each
memory management primitive, yielding a almost exponential
slowdown for the memory management functions (malloc, realloc,
free). The overrun check basically consists of verifying some
bytes of a block for certain magic keys, which catches some
simple forms of overrun. Another minor problem is violation
of aliasing rules and that its own internal list of blocks
is prone to corruption.
Another issue with safemalloc is rather the maintenance cost
as the tool has a significant impact on the server code.
Given the magnitude of memory debuggers available nowadays,
especially those that are provided with the platform malloc
implementation, maintenance of a in-house and largely obsolete
memory debugger becomes a burden that is not worth the effort
due to its slowness and lack of support for detecting more
common forms of heap corruption.
Since there are third-party tools that can provide the same
functionality at a lower or comparable performance cost, the
solution is to simply remove safemalloc. Third-party tools
can provide the same functionality at a lower or comparable
performance cost.
The removal of safemalloc also allows a simplification of the
malloc wrappers, removing quite a bit of kludge: redefinition
of my_malloc, my_free and the removal of the unused second
argument of my_free. Since free() always check whether the
supplied pointer is null, redudant checks are also removed.
Also, this patch adds unit testing for my_malloc and moves
my_realloc implementation into the same file as the other
memory allocation primitives.
2010-07-08 23:20:08 +02:00
|
|
|
|
2003-01-28 07:38:28 +01:00
|
|
|
my_init_done=0;
|
2000-07-31 21:29:14 +02:00
|
|
|
} /* my_end */
|
|
|
|
|
2003-01-28 07:38:28 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#ifdef __WIN__
|
|
|
|
|
|
|
|
|
2006-06-05 20:37:06 +02:00
|
|
|
/*
|
2007-02-23 12:13:55 +01:00
|
|
|
my_parameter_handler
|
|
|
|
|
|
|
|
Invalid parameter handler we will use instead of the one "baked"
|
|
|
|
into the CRT for MSC v8. This one just prints out what invalid
|
|
|
|
parameter was encountered. By providing this routine, routines like
|
|
|
|
lseek will return -1 when we expect them to instead of crash.
|
2006-06-05 20:37:06 +02:00
|
|
|
*/
|
2007-02-23 12:13:55 +01:00
|
|
|
|
|
|
|
void my_parameter_handler(const wchar_t * expression, const wchar_t * function,
|
|
|
|
const wchar_t * file, unsigned int line,
|
2006-06-05 20:37:06 +02:00
|
|
|
uintptr_t pReserved)
|
|
|
|
{
|
|
|
|
DBUG_PRINT("my",("Expression: %s function: %s file: %s, line: %d",
|
|
|
|
expression, function, file, line));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-14 16:04:36 +02:00
|
|
|
#ifdef __MSVC_RUNTIME_CHECKS
|
|
|
|
#include <rtcapi.h>
|
|
|
|
|
|
|
|
/* Turn off runtime checks for 'handle_rtc_failure' */
|
|
|
|
#pragma runtime_checks("", off)
|
|
|
|
|
|
|
|
/*
|
|
|
|
handle_rtc_failure
|
|
|
|
Catch the RTC error and dump it to stderr
|
|
|
|
*/
|
|
|
|
|
|
|
|
int handle_rtc_failure(int err_type, const char *file, int line,
|
|
|
|
const char* module, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start(args, format);
|
|
|
|
fprintf(stderr, "Error:");
|
|
|
|
vfprintf(stderr, format, args);
|
|
|
|
fprintf(stderr, " At %s:%d\n", file, line);
|
|
|
|
va_end(args);
|
|
|
|
(void) fflush(stderr);
|
|
|
|
|
|
|
|
return 0; /* Error is handled */
|
|
|
|
}
|
2007-10-02 20:44:37 +02:00
|
|
|
#pragma runtime_checks("", restore)
|
2007-05-14 16:04:36 +02:00
|
|
|
#endif
|
|
|
|
|
2010-12-15 21:00:54 +01:00
|
|
|
#define OFFSET_TO_EPOC ((__int64) 134774 * 24 * 60 * 60 * 1000 * 1000 * 10)
|
|
|
|
#define MS 10000000
|
|
|
|
|
|
|
|
static void win_init_time(void)
|
|
|
|
{
|
|
|
|
/* The following is used by time functions */
|
|
|
|
FILETIME ft;
|
|
|
|
LARGE_INTEGER li, t_cnt;
|
|
|
|
|
|
|
|
DBUG_ASSERT(sizeof(LARGE_INTEGER) == sizeof(query_performance_frequency));
|
|
|
|
|
|
|
|
if (QueryPerformanceFrequency((LARGE_INTEGER *)&query_performance_frequency) == 0)
|
|
|
|
query_performance_frequency= 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GetSystemTimeAsFileTime(&ft);
|
|
|
|
li.LowPart= ft.dwLowDateTime;
|
|
|
|
li.HighPart= ft.dwHighDateTime;
|
|
|
|
query_performance_offset= li.QuadPart-OFFSET_TO_EPOC;
|
|
|
|
QueryPerformanceCounter(&t_cnt);
|
|
|
|
query_performance_offset-= (t_cnt.QuadPart /
|
|
|
|
query_performance_frequency * MS +
|
|
|
|
t_cnt.QuadPart %
|
|
|
|
query_performance_frequency * MS /
|
|
|
|
query_performance_frequency);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Open HKEY_LOCAL_MACHINE\SOFTWARE\MySQL and set any strings found
|
|
|
|
there as environment variables
|
|
|
|
*/
|
|
|
|
static void win_init_registry(void)
|
|
|
|
{
|
|
|
|
HKEY key_handle;
|
|
|
|
|
|
|
|
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, (LPCTSTR)"SOFTWARE\\MySQL",
|
|
|
|
0, KEY_READ, &key_handle) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
LONG ret;
|
|
|
|
DWORD index= 0;
|
|
|
|
DWORD type;
|
|
|
|
char key_name[256], key_data[1024];
|
|
|
|
DWORD key_name_len= sizeof(key_name) - 1;
|
|
|
|
DWORD key_data_len= sizeof(key_data) - 1;
|
|
|
|
|
|
|
|
while ((ret= RegEnumValue(key_handle, index++,
|
|
|
|
key_name, &key_name_len,
|
|
|
|
NULL, &type, (LPBYTE)&key_data,
|
|
|
|
&key_data_len)) != ERROR_NO_MORE_ITEMS)
|
|
|
|
{
|
|
|
|
char env_string[sizeof(key_name) + sizeof(key_data) + 2];
|
|
|
|
|
|
|
|
if (ret == ERROR_MORE_DATA)
|
|
|
|
{
|
|
|
|
/* Registry value larger than 'key_data', skip it */
|
|
|
|
DBUG_PRINT("error", ("Skipped registry value that was too large"));
|
|
|
|
}
|
|
|
|
else if (ret == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (type == REG_SZ)
|
|
|
|
{
|
|
|
|
strxmov(env_string, key_name, "=", key_data, NullS);
|
|
|
|
|
|
|
|
/* variable for putenv must be allocated ! */
|
|
|
|
putenv(strdup(env_string)) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Unhandled error, break out of loop */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
key_name_len= sizeof(key_name) - 1;
|
|
|
|
key_data_len= sizeof(key_data) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey(key_handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-14 16:04:36 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
static void my_win_init(void)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("my_win_init");
|
|
|
|
|
2006-06-05 20:37:06 +02:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#if _MSC_VER < 1300
|
2010-12-15 21:00:54 +01:00
|
|
|
/*
|
2004-02-17 01:09:42 +01:00
|
|
|
Clear the OS system variable TZ and avoid the 100% CPU usage
|
|
|
|
Only for old versions of Visual C++
|
|
|
|
*/
|
2010-12-15 21:00:54 +01:00
|
|
|
_putenv("TZ=");
|
|
|
|
#endif
|
2006-06-05 20:37:06 +02:00
|
|
|
#if _MSC_VER >= 1400
|
|
|
|
/* this is required to make crt functions return -1 appropriately */
|
|
|
|
_set_invalid_parameter_handler(my_parameter_handler);
|
|
|
|
#endif
|
2010-12-15 21:00:54 +01:00
|
|
|
#endif
|
|
|
|
|
2007-05-14 16:04:36 +02:00
|
|
|
#ifdef __MSVC_RUNTIME_CHECKS
|
|
|
|
/*
|
|
|
|
Install handler to send RTC (Runtime Error Check) warnings
|
|
|
|
to log file
|
|
|
|
*/
|
|
|
|
_RTC_SetErrorFunc(handle_rtc_failure);
|
|
|
|
#endif
|
|
|
|
|
2002-10-17 01:22:56 +02:00
|
|
|
_tzset();
|
|
|
|
|
2010-12-15 21:00:54 +01:00
|
|
|
win_init_time();
|
|
|
|
win_init_registry();
|
2008-01-09 19:13:07 +01:00
|
|
|
|
2010-12-15 21:00:54 +01:00
|
|
|
DBUG_VOID_RETURN;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------
|
2003-01-28 07:38:28 +01:00
|
|
|
Name: CheckForTcpip| Desc: checks if tcpip has been installed on system
|
|
|
|
According to Microsoft Developers documentation the first registry
|
|
|
|
entry should be enough to check if TCP/IP is installed, but as expected
|
|
|
|
this doesn't work on all Win32 machines :(
|
2000-07-31 21:29:14 +02:00
|
|
|
------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#define TCPIPKEY "SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters"
|
|
|
|
#define WINSOCK2KEY "SYSTEM\\CurrentControlSet\\Services\\Winsock2\\Parameters"
|
|
|
|
#define WINSOCKKEY "SYSTEM\\CurrentControlSet\\Services\\Winsock\\Parameters"
|
|
|
|
|
|
|
|
static my_bool win32_have_tcpip(void)
|
|
|
|
{
|
|
|
|
HKEY hTcpipRegKey;
|
|
|
|
if (RegOpenKeyEx ( HKEY_LOCAL_MACHINE, TCPIPKEY, 0, KEY_READ,
|
|
|
|
&hTcpipRegKey) != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (RegOpenKeyEx ( HKEY_LOCAL_MACHINE, WINSOCK2KEY, 0, KEY_READ,
|
|
|
|
&hTcpipRegKey) != ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (RegOpenKeyEx ( HKEY_LOCAL_MACHINE, WINSOCKKEY, 0, KEY_READ,
|
|
|
|
&hTcpipRegKey) != ERROR_SUCCESS)
|
|
|
|
if (!getenv("HAVE_TCPIP") || have_tcpip) /* Provide a workaround */
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RegCloseKey ( hTcpipRegKey);
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
2003-01-28 07:38:28 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
static my_bool win32_init_tcp_ip()
|
|
|
|
{
|
|
|
|
if (win32_have_tcpip())
|
|
|
|
{
|
2010-06-07 16:01:39 +02:00
|
|
|
WORD wVersionRequested = MAKEWORD( 2, 2 );
|
2000-07-31 21:29:14 +02:00
|
|
|
WSADATA wsaData;
|
|
|
|
/* Be a good citizen: maybe another lib has already initialised
|
|
|
|
sockets, so dont clobber them unless necessary */
|
|
|
|
if (WSAStartup( wVersionRequested, &wsaData ))
|
|
|
|
{
|
|
|
|
/* Load failed, maybe because of previously loaded
|
|
|
|
incompatible version; try again */
|
|
|
|
WSACleanup( );
|
|
|
|
if (!WSAStartup( wVersionRequested, &wsaData ))
|
|
|
|
have_tcpip=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (wsaData.wVersion != wVersionRequested)
|
|
|
|
{
|
|
|
|
/* Version is no good, try again */
|
|
|
|
WSACleanup( );
|
|
|
|
if (!WSAStartup( wVersionRequested, &wsaData ))
|
|
|
|
have_tcpip=1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
have_tcpip=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
2003-01-28 07:38:28 +01:00
|
|
|
#endif /* __WIN__ */
|
|
|
|
|
2009-12-10 04:19:51 +01:00
|
|
|
#ifdef HAVE_PSI_INTERFACE
|
|
|
|
|
|
|
|
#if !defined(HAVE_PREAD) && !defined(_WIN32)
|
|
|
|
PSI_mutex_key key_my_file_info_mutex;
|
|
|
|
#endif /* !defined(HAVE_PREAD) && !defined(_WIN32) */
|
|
|
|
|
|
|
|
#if !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)
|
|
|
|
PSI_mutex_key key_LOCK_localtime_r;
|
|
|
|
#endif /* !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R) */
|
|
|
|
|
|
|
|
PSI_mutex_key key_BITMAP_mutex, key_IO_CACHE_append_buffer_lock,
|
|
|
|
key_IO_CACHE_SHARE_mutex, key_KEY_CACHE_cache_lock, key_LOCK_alarm,
|
|
|
|
key_my_thread_var_mutex, key_THR_LOCK_charset, key_THR_LOCK_heap,
|
|
|
|
key_THR_LOCK_isam, key_THR_LOCK_lock, key_THR_LOCK_malloc,
|
|
|
|
key_THR_LOCK_mutex, key_THR_LOCK_myisam, key_THR_LOCK_net,
|
Bug#42054: SELECT CURDATE() is returning bad value
The problem from a user point of view was that on Solaris the
time related functions (e.g. NOW(), SYSDATE(), etc) would always
return a fixed time.
This bug was happening due to a logic in the time retrieving
wrapper function which would only call the time() function every
half second. This interval between calls would be calculated
using the gethrtime() and the logic relied on the fact that time
returned by it is monotonic.
Unfortunately, due to bugs in the gethrtime() implementation,
there are some cases where the time returned by it can drift
(See Solaris bug id 6600939), potentially causing the interval
calculation logic to fail.
Since newer versions of Solaris (10+) have alleviated the
performance degradation associated with time(2), the solution is
to simply directly rely on time() at each invocation.
This simplification has an upside that it allows us to eliminate
a lock which was used to control access to the variables used
to track the half second interval, thus improving the overall
scalability of timekeeping related functions (e.g. NOW()).
Benchmarks runs have shown no significant degradation associated
with this change. With this, there are actually improvements in
performance for cases involving many connections.
In summary, the changes introduced by this patch are:
a) my_time() and my_micro_time_and_time() no longer use gethrtime().
Instead, time() and gettimeofdate() are used correspondingly.
b) my_micro_time() is changed to not use gethrtime() so as to
have the same time source as my_micro_time_and_time().
There shouldn't be any performance impact from this change
since this function is used only a few times during statement
execution and, on Solaris, gettimeofday() shows acceptable
performance.
2011-01-12 21:36:39 +01:00
|
|
|
key_THR_LOCK_open, key_THR_LOCK_threads,
|
2010-01-07 06:42:07 +01:00
|
|
|
key_TMPDIR_mutex, key_THR_LOCK_myisam_mmap;
|
2009-12-10 04:19:51 +01:00
|
|
|
|
|
|
|
static PSI_mutex_info all_mysys_mutexes[]=
|
|
|
|
{
|
2011-01-11 10:07:37 +01:00
|
|
|
#if !defined(HAVE_PREAD) && !defined(_WIN32)
|
2009-12-10 04:19:51 +01:00
|
|
|
{ &key_my_file_info_mutex, "st_my_file_info:mutex", 0},
|
|
|
|
#endif /* !defined(HAVE_PREAD) && !defined(_WIN32) */
|
|
|
|
#if !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)
|
|
|
|
{ &key_LOCK_localtime_r, "LOCK_localtime_r", PSI_FLAG_GLOBAL},
|
|
|
|
#endif /* !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R) */
|
|
|
|
{ &key_BITMAP_mutex, "BITMAP::mutex", 0},
|
|
|
|
{ &key_IO_CACHE_append_buffer_lock, "IO_CACHE::append_buffer_lock", 0},
|
|
|
|
{ &key_IO_CACHE_SHARE_mutex, "IO_CACHE::SHARE_mutex", 0},
|
|
|
|
{ &key_KEY_CACHE_cache_lock, "KEY_CACHE::cache_lock", 0},
|
|
|
|
{ &key_LOCK_alarm, "LOCK_alarm", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_my_thread_var_mutex, "my_thread_var::mutex", 0},
|
|
|
|
{ &key_THR_LOCK_charset, "THR_LOCK_charset", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_heap, "THR_LOCK_heap", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_isam, "THR_LOCK_isam", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_lock, "THR_LOCK_lock", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_malloc, "THR_LOCK_malloc", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_mutex, "THR_LOCK::mutex", 0},
|
|
|
|
{ &key_THR_LOCK_myisam, "THR_LOCK_myisam", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_net, "THR_LOCK_net", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_open, "THR_LOCK_open", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_threads, "THR_LOCK_threads", PSI_FLAG_GLOBAL},
|
2010-01-07 06:42:07 +01:00
|
|
|
{ &key_TMPDIR_mutex, "TMPDIR_mutex", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_THR_LOCK_myisam_mmap, "THR_LOCK_myisam_mmap", PSI_FLAG_GLOBAL}
|
2009-12-10 04:19:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
PSI_cond_key key_COND_alarm, key_IO_CACHE_SHARE_cond,
|
|
|
|
key_IO_CACHE_SHARE_cond_writer, key_my_thread_var_suspend,
|
|
|
|
key_THR_COND_threads;
|
|
|
|
|
|
|
|
static PSI_cond_info all_mysys_conds[]=
|
|
|
|
{
|
|
|
|
{ &key_COND_alarm, "COND_alarm", PSI_FLAG_GLOBAL},
|
|
|
|
{ &key_IO_CACHE_SHARE_cond, "IO_CACHE_SHARE::cond", 0},
|
|
|
|
{ &key_IO_CACHE_SHARE_cond_writer, "IO_CACHE_SHARE::cond_writer", 0},
|
|
|
|
{ &key_my_thread_var_suspend, "my_thread_var::suspend", 0},
|
|
|
|
{ &key_THR_COND_threads, "THR_COND_threads", 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef USE_ALARM_THREAD
|
|
|
|
PSI_thread_key key_thread_alarm;
|
|
|
|
|
|
|
|
static PSI_thread_info all_mysys_threads[]=
|
|
|
|
{
|
|
|
|
{ &key_thread_alarm, "alarm", PSI_FLAG_GLOBAL}
|
|
|
|
};
|
|
|
|
#endif /* USE_ALARM_THREAD */
|
|
|
|
|
|
|
|
#ifdef HUGETLB_USE_PROC_MEMINFO
|
|
|
|
PSI_file_key key_file_proc_meminfo;
|
|
|
|
#endif /* HUGETLB_USE_PROC_MEMINFO */
|
|
|
|
PSI_file_key key_file_charset, key_file_cnf;
|
|
|
|
|
|
|
|
static PSI_file_info all_mysys_files[]=
|
|
|
|
{
|
|
|
|
#ifdef HUGETLB_USE_PROC_MEMINFO
|
|
|
|
{ &key_file_proc_meminfo, "proc_meminfo", 0},
|
|
|
|
#endif /* HUGETLB_USE_PROC_MEMINFO */
|
|
|
|
{ &key_file_charset, "charset", 0},
|
|
|
|
{ &key_file_cnf, "cnf", 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
void my_init_mysys_psi_keys()
|
|
|
|
{
|
|
|
|
const char* category= "mysys";
|
|
|
|
int count;
|
|
|
|
|
|
|
|
if (PSI_server == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
count= sizeof(all_mysys_mutexes)/sizeof(all_mysys_mutexes[0]);
|
|
|
|
PSI_server->register_mutex(category, all_mysys_mutexes, count);
|
|
|
|
|
|
|
|
count= sizeof(all_mysys_conds)/sizeof(all_mysys_conds[0]);
|
|
|
|
PSI_server->register_cond(category, all_mysys_conds, count);
|
|
|
|
|
|
|
|
#ifdef USE_ALARM_THREAD
|
|
|
|
count= sizeof(all_mysys_threads)/sizeof(all_mysys_threads[0]);
|
|
|
|
PSI_server->register_thread(category, all_mysys_threads, count);
|
|
|
|
#endif /* USE_ALARM_THREAD */
|
|
|
|
|
|
|
|
count= sizeof(all_mysys_files)/sizeof(all_mysys_files[0]);
|
|
|
|
PSI_server->register_file(category, all_mysys_files, count);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_PSI_INTERFACE */
|
|
|
|
|