2007-10-09 20:09:50 +02:00
|
|
|
/* Copyright (C) 2007 MySQL AB, Sergei Golubchik & Michael Widenius
|
|
|
|
|
|
|
|
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 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
implements Universal Unique Identifiers (UUIDs), as in
|
|
|
|
DCE 1.1: Remote Procedure Call,
|
|
|
|
Open Group Technical Standard Document Number C706, October 1997,
|
|
|
|
(supersedes C309 DCE: Remote Procedure Call 8/1994,
|
|
|
|
which was basis for ISO/IEC 11578:1996 specification)
|
|
|
|
|
|
|
|
A UUID has the following structure:
|
|
|
|
|
|
|
|
Field NDR Data Type Octet # Note
|
|
|
|
time_low unsigned long 0-3 The low field of the
|
|
|
|
timestamp.
|
|
|
|
time_mid unsigned short 4-5 The middle field of
|
|
|
|
the timestamp.
|
|
|
|
time_hi_and_version unsigned short 6-7 The high field of the
|
|
|
|
timestamp multiplexed
|
|
|
|
with the version number.
|
|
|
|
clock_seq_hi_and_reserved unsigned small 8 The high field of the
|
|
|
|
clock sequence multi-
|
|
|
|
plexed with the variant.
|
|
|
|
clock_seq_low unsigned small 9 The low field of the
|
|
|
|
clock sequence.
|
|
|
|
node character 10-15 The spatially unique node
|
|
|
|
identifier.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mysys_priv.h"
|
|
|
|
#include <m_string.h>
|
2008-01-10 13:21:53 +01:00
|
|
|
#include <myisampack.h> /* mi_int2store, mi_int4store */
|
2007-10-09 20:09:50 +02:00
|
|
|
|
|
|
|
static my_bool my_uuid_inited= 0;
|
|
|
|
static struct my_rnd_struct uuid_rand;
|
|
|
|
static uint nanoseq;
|
|
|
|
static ulonglong uuid_time= 0;
|
|
|
|
static uchar uuid_suffix[2+6]; /* clock_seq and node */
|
|
|
|
|
|
|
|
#ifdef THREAD
|
MWL#74: Shared libmysqld.so library.
Switch makefiles to use libtool to build libmysqld.so, as well as all its
dependencies.
The previous MYSQL_PLUGIN_DEPENDS_ON_MYSQL_INTERNALS() declaration is removed,
as it does not work well with a libtool build. Instead, plugins that need it
can specify an alternate object in MYSQL_PLUGIN_STATIC() that will be used for
embedded library. The plugin must then take care itself of compiling the
special object for embedded, rebuilding the source files previously listed in
MYSQL_PLUGIN_DEPENDS_ON_MYSQL_INTERNALS() with @plugin_embedded_defs@ in
CFLAGS/CXXFLAGS. The extra target @XXX_embedded_static_target@ is available
for the special object, this will be empty when --without-embedded-server.
All in-tree plugins are changed to build their static targets with libtool.
Additional plugins that want to work with libmysqld.so will need to be
similarly modified to build with libtool (or otherwise provide an -fPIC
object). Dynamically loaded plugins are not affected.
The old libraries like libmysys.a, libmyisam.a and similar libraries, which
were installed by `make install` though this is of little use, are still built
and installed to not break package scripts etc. that expect them. These
libraries are kept static to avoid introducing new .so dependencies.
The patch also fixes a handfull of duplicate symbol linker errors, where we
included some object twice during linking; these for one reason or another did
not produce errors before but caused problems on some platforms with this
patch (eg. Mac OS X linker is more strict for shared objects).
This patch only does what is necessary to build libmysqld.so. There are some
more cleanups that are possible now that we are using libtool more fully,
which could done in subsequent patches (though we may not bother as we are
switching from autotools to CMake anyway):
- In libmysql_r/, we should be able to just link libmysys.la etc, instead of
symlinking and re-compiling sources into the directory.
- In libmysql/, we can similarly avoid symlinking and recompiling sources if
we instead build a libmysys_nothread.la library with appropriate CFLAGS and
link that.
- In sql/, we can build a separate target libmysql_int.la with appropriate
CFLAGS for embedded and use that in libmysqld/ instead of symlinking
sources.
- libmysys.a, libmyisam.a and similar libraries could be installed as .so
also to save on code size; or alternatively could be not installed at all.
client/Makefile.am:
Updated for using libtool
config/ac-macros/plugins.m4:
Replace MUSQL_PLUGIN_DEPENDS_ON_MYSQL_INTERNALS with mechanism for plugins
to specify alternate object for embedded.
configure.in:
Fix linking duplicate objects related to THREAD_LOBJECTS.
dbug/Makefile.am:
Updated for using libtool
extra/Makefile.am:
Fix relative paths.
libmysqld/Makefile.am:
Build libmysqld.la using libtool
libmysqld/examples/Makefile.am:
Updated to use libtool
mysys/Makefile.am:
Updated to use libtool.
Fix linking duplicate objects related to THREAD_LOBJECTS.
mysys/my_uuid.c:
Fix conflicting global mutex name by making it static.
regex/Makefile.am:
Updated to use libtool
sql/Makefile.am:
Updated to use libtool
sql/item_func.cc:
Fix conflicting mutex name.
sql/mysql_priv.h:
Fix conflicting mutex name
sql/mysqld.cc:
Fix conflicting mutex name.
Add missing call of my_uuid_end().
storage/archive/Makefile.am:
Updated to use libtool
storage/archive/plug.in:
Updated to use libtool
storage/blackhole/Makefile.am:
Updated to use libtool
storage/blackhole/plug.in:
Updated to use libtool
storage/csv/Makefile.am:
Updated to use libtool
storage/csv/plug.in:
Updated to use libtool
storage/example/Makefile.am:
Updated to use libtool
storage/federated/Makefile.am:
Updated to use libtool
storage/federated/plug.in:
Updated to use libtool
storage/federatedx/Makefile.am:
Updated to use libtool
storage/federatedx/plug.in:
Updated to use libtool
storage/heap/Makefile.am:
Updated to use libtool
storage/heap/plug.in:
Updated to use libtool
storage/innobase/Makefile.am:
Updated to use libtool
storage/innobase/plug.in.disabled:
Updated to use libtool
storage/innodb_plugin/Makefile.am:
Updated to use libtool
storage/maria/CMakeLists.txt:
Fix linking duplicate object in maria_dump_log, causes failure on Mac OS X
storage/maria/Makefile.am:
Updated to use libtool
Fix linking duplicate object in maria_dump_log, causes link failure on Mac OS X
storage/maria/ma_loghandler.c:
Move maria_dump_log code to separate file to fix duplicate object link failures.
storage/maria/ma_loghandler.h:
Move maria_dump_log code to separate file to fix duplicate object link failures.
storage/maria/maria_dump_log.c:
Move maria_dump_log code to separate file to fix duplicate object link failures.
storage/maria/plug.in:
Updated to use libtool
storage/myisam/Makefile.am:
Updated to use libtool
storage/myisam/plug.in:
Updated to use libtool
storage/myisammrg/Makefile.am:
Updated to use libtool
storage/myisammrg/plug.in:
Updated to use libtool
storage/pbxt/plug.in:
Updated to use libtool
storage/pbxt/src/Makefile.am:
Updated to use libtool
storage/xtradb/Makefile.am:
Updated to use libtool
storage/xtradb/plug.in:
Updated to use libtool
strings/Makefile.am:
Updated to use libtool
unittest/unit.pl:
Don't attempt to run libtool internal files as unit tests.
vio/Makefile.am:
Updated to use libtool
2010-11-17 13:24:20 +01:00
|
|
|
static pthread_mutex_t LOCK_uuid_generator;
|
2007-10-09 20:09:50 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
Number of 100-nanosecond intervals between
|
|
|
|
1582-10-15 00:00:00.00 and 1970-01-01 00:00:00.00
|
|
|
|
*/
|
|
|
|
|
2008-10-10 17:28:41 +02:00
|
|
|
#define UUID_TIME_OFFSET ((ulonglong) 141427 * 24 * 60 * 60 * \
|
|
|
|
1000 * 1000 * 10)
|
2007-10-09 20:09:50 +02:00
|
|
|
#define UUID_VERSION 0x1000
|
|
|
|
#define UUID_VARIANT 0x8000
|
|
|
|
|
|
|
|
|
|
|
|
/* Helper function */
|
|
|
|
|
|
|
|
static void set_clock_seq()
|
|
|
|
{
|
|
|
|
uint16 clock_seq= ((uint)(my_rnd(&uuid_rand)*16383)) | UUID_VARIANT;
|
2008-01-10 13:21:53 +01:00
|
|
|
mi_int2store(uuid_suffix, clock_seq);
|
2007-10-09 20:09:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Init structures needed for my_uuid
|
|
|
|
|
|
|
|
@func my_uuid_init()
|
|
|
|
@param seed1 Seed for random generator
|
|
|
|
@param seed2 Seed for random generator
|
|
|
|
|
|
|
|
@note
|
|
|
|
Seed1 & seed2 should NOT depend on clock. This is to be able to
|
|
|
|
generate a random mac address according to UUID specs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void my_uuid_init(ulong seed1, ulong seed2)
|
|
|
|
{
|
|
|
|
uchar *mac= uuid_suffix+2;
|
|
|
|
ulonglong now;
|
|
|
|
|
|
|
|
if (my_uuid_inited)
|
|
|
|
return;
|
|
|
|
my_uuid_inited= 1;
|
|
|
|
now= my_getsystime();
|
|
|
|
nanoseq= 0;
|
|
|
|
|
|
|
|
if (my_gethwaddr(mac))
|
|
|
|
{
|
|
|
|
uint i;
|
|
|
|
/*
|
|
|
|
Generating random "hardware addr"
|
|
|
|
|
|
|
|
Specs explicitly specify that node identifier should NOT
|
|
|
|
correlate with a clock_seq value, so we use a separate
|
|
|
|
randominit() here.
|
|
|
|
*/
|
|
|
|
/* purecov: begin inspected */
|
2008-01-11 00:47:52 +01:00
|
|
|
my_rnd_init(&uuid_rand, (ulong) (seed2+ now/2), (ulong) (now+rand()));
|
2010-01-04 19:31:26 +01:00
|
|
|
for (i=0; i < array_elements(uuid_suffix) -2 ; i++)
|
2007-10-09 20:09:50 +02:00
|
|
|
mac[i]= (uchar)(my_rnd(&uuid_rand)*255);
|
2007-12-16 12:31:29 +01:00
|
|
|
/* purecov: end */
|
2007-10-09 20:09:50 +02:00
|
|
|
}
|
2007-12-16 12:31:29 +01:00
|
|
|
my_rnd_init(&uuid_rand, (ulong) (seed1 + now), (ulong) (now/2+ getpid()));
|
2007-10-09 20:09:50 +02:00
|
|
|
set_clock_seq();
|
|
|
|
pthread_mutex_init(&LOCK_uuid_generator, MY_MUTEX_INIT_FAST);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Create a global unique identifier (uuid)
|
|
|
|
|
|
|
|
@func my_uuid()
|
|
|
|
@param to Store uuid here. Must be of size MY_uuid_SIZE (16)
|
|
|
|
*/
|
|
|
|
|
|
|
|
void my_uuid(uchar *to)
|
|
|
|
{
|
|
|
|
ulonglong tv;
|
|
|
|
uint32 time_low;
|
|
|
|
uint16 time_mid, time_hi_and_version;
|
|
|
|
|
|
|
|
DBUG_ASSERT(my_uuid_inited);
|
|
|
|
|
|
|
|
pthread_mutex_lock(&LOCK_uuid_generator);
|
|
|
|
tv= my_getsystime() + UUID_TIME_OFFSET + nanoseq;
|
2008-10-10 17:28:41 +02:00
|
|
|
|
|
|
|
if (likely(tv > uuid_time))
|
2007-10-09 20:09:50 +02:00
|
|
|
{
|
2008-10-10 17:28:41 +02:00
|
|
|
/*
|
|
|
|
Current time is ahead of last timestamp, as it should be.
|
|
|
|
If we "borrowed time", give it back, just as long as we
|
|
|
|
stay ahead of the previous timestamp.
|
|
|
|
*/
|
|
|
|
if (nanoseq)
|
|
|
|
{
|
2008-10-15 14:44:31 +02:00
|
|
|
ulong delta;
|
2008-10-10 17:28:41 +02:00
|
|
|
DBUG_ASSERT((tv > uuid_time) && (nanoseq > 0));
|
|
|
|
/*
|
|
|
|
-1 so we won't make tv= uuid_time for nanoseq >= (tv - uuid_time)
|
|
|
|
*/
|
2008-10-15 14:44:31 +02:00
|
|
|
delta= min(nanoseq, (ulong)(tv - uuid_time -1));
|
2008-10-10 17:28:41 +02:00
|
|
|
tv-= delta;
|
|
|
|
nanoseq-= delta;
|
|
|
|
}
|
2007-10-09 20:09:50 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-10-10 17:28:41 +02:00
|
|
|
if (unlikely(tv == uuid_time))
|
2007-10-09 20:09:50 +02:00
|
|
|
{
|
2008-10-10 17:28:41 +02:00
|
|
|
/*
|
|
|
|
For low-res system clocks. If several requests for UUIDs
|
|
|
|
end up on the same tick, we add a nano-second to make them
|
|
|
|
different.
|
|
|
|
( current_timestamp + nanoseq * calls_in_this_period )
|
|
|
|
may end up > next_timestamp; this is OK. Nonetheless, we'll
|
|
|
|
try to unwind nanoseq when we get a chance to.
|
|
|
|
If nanoseq overflows, we'll start over with a new numberspace
|
|
|
|
(so the if() below is needed so we can avoid the ++tv and thus
|
|
|
|
match the follow-up if() if nanoseq overflows!).
|
|
|
|
*/
|
|
|
|
if (likely(++nanoseq))
|
|
|
|
++tv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlikely(tv <= uuid_time))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
If the admin changes the system clock (or due to Daylight
|
|
|
|
Saving Time), the system clock may be turned *back* so we
|
|
|
|
go through a period once more for which we already gave out
|
|
|
|
UUIDs. To avoid duplicate UUIDs despite potentially identical
|
|
|
|
times, we make a new random component.
|
|
|
|
We also come here if the nanoseq "borrowing" overflows.
|
|
|
|
In either case, we throw away any nanoseq borrowing since it's
|
|
|
|
irrelevant in the new numberspace.
|
|
|
|
*/
|
|
|
|
set_clock_seq();
|
|
|
|
tv= my_getsystime() + UUID_TIME_OFFSET;
|
|
|
|
nanoseq= 0;
|
|
|
|
DBUG_PRINT("uuid",("making new numberspace"));
|
2007-10-09 20:09:50 +02:00
|
|
|
}
|
|
|
|
}
|
2008-10-10 17:28:41 +02:00
|
|
|
|
2007-10-09 20:09:50 +02:00
|
|
|
uuid_time=tv;
|
|
|
|
pthread_mutex_unlock(&LOCK_uuid_generator);
|
|
|
|
|
|
|
|
time_low= (uint32) (tv & 0xFFFFFFFF);
|
|
|
|
time_mid= (uint16) ((tv >> 32) & 0xFFFF);
|
|
|
|
time_hi_and_version= (uint16) ((tv >> 48) | UUID_VERSION);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Note, that the standard does NOT specify byte ordering in
|
|
|
|
multi-byte fields. it's implementation defined (but must be
|
|
|
|
the same for all fields).
|
2008-01-10 13:21:53 +01:00
|
|
|
We use big-endian, so we can use memcmp() to compare UUIDs
|
|
|
|
and for straightforward UUID to string conversion.
|
2007-10-09 20:09:50 +02:00
|
|
|
*/
|
2008-01-10 13:21:53 +01:00
|
|
|
mi_int4store(to, time_low);
|
|
|
|
mi_int2store(to+4, time_mid);
|
|
|
|
mi_int2store(to+6, time_hi_and_version);
|
2007-10-09 20:09:50 +02:00
|
|
|
bmove(to+8, uuid_suffix, sizeof(uuid_suffix));
|
|
|
|
}
|
2007-12-18 22:55:49 +01:00
|
|
|
|
|
|
|
|
2008-01-10 13:21:53 +01:00
|
|
|
/**
|
|
|
|
Convert uuid to string representation
|
|
|
|
|
|
|
|
@func my_uuid2str()
|
|
|
|
@param guid uuid
|
|
|
|
@param s Output buffer.Must be at least MY_UUID_STRING_LENGTH+1 large.
|
|
|
|
*/
|
|
|
|
void my_uuid2str(const uchar *guid, char *s)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i=0; i < MY_UUID_SIZE; i++)
|
|
|
|
{
|
|
|
|
*s++= _dig_vec_lower[guid[i] >>4];
|
|
|
|
*s++= _dig_vec_lower[guid[i] & 15];
|
2008-10-10 17:28:41 +02:00
|
|
|
if(i == 3 || i == 5 || i == 7 || i == 9)
|
2008-01-10 13:21:53 +01:00
|
|
|
*s++= '-';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-18 22:55:49 +01:00
|
|
|
void my_uuid_end()
|
|
|
|
{
|
|
|
|
if (my_uuid_inited)
|
|
|
|
{
|
|
|
|
my_uuid_inited= 0;
|
|
|
|
pthread_mutex_destroy(&LOCK_uuid_generator);
|
|
|
|
}
|
|
|
|
}
|