2006-12-31 01:02:27 +01:00
|
|
|
/* Copyright (C) 2004-2006 MySQL AB
|
2004-10-23 11:32:52 +04: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.
|
2004-10-23 11:32:52 +04:00
|
|
|
|
|
|
|
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 */
|
|
|
|
|
2005-09-23 21:28:56 +03:00
|
|
|
#if defined(__GNUC__) && defined(USE_PRAGMA_IMPLEMENTATION)
|
2005-10-07 20:25:51 +04:00
|
|
|
#pragma implementation
|
2004-10-23 11:32:52 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "mysql_connection.h"
|
|
|
|
|
2006-05-18 18:57:50 +04:00
|
|
|
#include <m_string.h>
|
|
|
|
#include <m_string.h>
|
|
|
|
#include <my_global.h>
|
|
|
|
#include <mysql.h>
|
|
|
|
#include <my_sys.h>
|
|
|
|
#include <violite.h>
|
|
|
|
|
|
|
|
#include "command.h"
|
2004-10-23 11:32:52 +04:00
|
|
|
#include "log.h"
|
|
|
|
#include "messages.h"
|
2006-05-18 18:57:50 +04:00
|
|
|
#include "mysqld_error.h"
|
|
|
|
#include "mysql_manager_error.h"
|
2004-10-23 11:32:52 +04:00
|
|
|
#include "parse.h"
|
2006-05-18 18:57:50 +04:00
|
|
|
#include "priv.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "thread_registry.h"
|
|
|
|
#include "user_map.h"
|
2005-03-22 02:04:14 +03:00
|
|
|
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
Mysql_connection::Mysql_connection(Thread_registry *thread_registry_arg,
|
|
|
|
User_map *user_map_arg,
|
|
|
|
struct st_vio *vio_arg, ulong
|
|
|
|
connection_id_arg)
|
|
|
|
:vio(vio_arg),
|
|
|
|
connection_id(connection_id_arg),
|
|
|
|
thread_registry(thread_registry_arg),
|
|
|
|
user_map(user_map_arg)
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
NET subsystem requieres its user to provide my_net_local_init extern
|
|
|
|
C function (exactly as declared below). my_net_local_init is called by
|
|
|
|
my_net_init and is supposed to set NET controlling variables.
|
|
|
|
See also priv.h for variables description.
|
|
|
|
*/
|
|
|
|
|
|
|
|
C_MODE_START
|
|
|
|
|
|
|
|
void my_net_local_init(NET *net)
|
|
|
|
{
|
|
|
|
net->max_packet= net_buffer_length;
|
2007-05-24 11:21:27 +02:00
|
|
|
my_net_set_read_timeout(net, (uint)net_read_timeout);
|
|
|
|
my_net_set_write_timeout(net, (uint)net_write_timeout);
|
2004-10-23 11:32:52 +04:00
|
|
|
net->retry_count= net_retry_count;
|
|
|
|
net->max_packet_size= max_allowed_packet;
|
|
|
|
}
|
|
|
|
|
|
|
|
C_MODE_END
|
|
|
|
|
Bug#46013: rpl_extraColmaster_myisam fails on pb2
Bug#45243: crash on win in sql thread clear_tables_to_lock() -> free()
Bug#45242: crash on win in mysql_close() -> free()
Bug#45238: rpl_slave_skip, rpl_change_master failed (lost connection) for STOP SLAVE
Bug#46030: rpl_truncate_3innodb causes server crash on windows
Bug#46014: rpl_stm_reset_slave crashes the server sporadically in pb2
When killing a user session on the server, it's necessary to
interrupt (notify) the thread associated with the session that
the connection is being killed so that the thread is woken up
if waiting for I/O. On a few platforms (Mac, Windows and HP-UX)
where the SIGNAL_WITH_VIO_CLOSE flag is defined, this interruption
procedure is to asynchronously close the underlying socket of
the connection.
In order to enable this schema, each connection serving thread
registers its VIO (I/O interface) so that other threads can
access it and close the connection. But only the owner thread of
the VIO might delete it as to guarantee that other threads won't
see freed memory (the thread unregisters the VIO before deleting
it). A side note: closing the socket introduces a harmless race
that might cause a thread attempt to read from a closed socket,
but this is deemed acceptable.
The problem is that this infrastructure was meant to only be used
by server threads, but the slave I/O thread was registering the
VIO of a mysql handle (a client API structure that represents a
connection to another server instance) as a active connection of
the thread. But under some circumstances such as network failures,
the client API might destroy the VIO associated with a handle at
will, yet the VIO wouldn't be properly unregistered. This could
lead to accesses to freed data if a thread attempted to kill a
slave I/O thread whose connection was already broken.
There was a attempt to work around this by checking whether
the socket was being interrupted, but this hack didn't work as
intended due to the aforementioned race -- attempting to read
from the socket would yield a "bad file descriptor" error.
The solution is to add a hook to the client API that is called
from the client code before the VIO of a handle is deleted.
This hook allows the slave I/O thread to detach the active vio
so it does not point to freed memory.
2009-08-13 17:07:20 -03:00
|
|
|
/*
|
|
|
|
Unused stub hook required for linking the client API.
|
|
|
|
*/
|
|
|
|
|
|
|
|
C_MODE_START
|
|
|
|
|
|
|
|
void slave_io_thread_detach_vio()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
C_MODE_END
|
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
Every resource, which we can fail to acquire, is allocated in init().
|
|
|
|
This function is complementary to cleanup().
|
|
|
|
*/
|
|
|
|
|
2006-11-21 17:47:14 +03:00
|
|
|
bool Mysql_connection::init()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
/* Allocate buffers for network I/O */
|
|
|
|
if (my_net_init(&net, vio))
|
2006-11-21 17:47:14 +03:00
|
|
|
return TRUE;
|
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
net.return_status= &status;
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
/* Initialize random number generator */
|
|
|
|
{
|
|
|
|
ulong seed1= (ulong) &rand_st + rand();
|
2007-02-23 13:13:55 +02:00
|
|
|
ulong seed2= (ulong) rand() + (ulong) time(0);
|
2004-10-23 11:32:52 +04:00
|
|
|
randominit(&rand_st, seed1, seed2);
|
|
|
|
}
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
/* Fill scramble - server's random message used for handshake */
|
|
|
|
create_random_string(scramble, SCRAMBLE_LENGTH, &rand_st);
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
/* We don't support transactions, every query is atomic */
|
|
|
|
status= SERVER_STATUS_AUTOCOMMIT;
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
thread_registry->register_thread(&thread_info);
|
2006-11-21 17:47:14 +03:00
|
|
|
|
|
|
|
return FALSE;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
void Mysql_connection::cleanup()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
net_end(&net);
|
2006-11-17 16:11:04 +03:00
|
|
|
thread_registry->unregister_thread(&thread_info);
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
Mysql_connection::~Mysql_connection()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
/* vio_delete closes the socket if necessary */
|
|
|
|
vio_delete(vio);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
void Mysql_connection::main()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
2006-11-21 17:47:14 +03:00
|
|
|
log_info("Connection %lu: accepted.", (unsigned long) connection_id);
|
2004-10-23 11:32:52 +04:00
|
|
|
|
|
|
|
if (check_connection())
|
2006-11-21 17:47:14 +03:00
|
|
|
{
|
|
|
|
log_info("Connection %lu: failed to authorize the user.",
|
|
|
|
(unsigned long) connection_id);
|
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
return;
|
2006-11-21 17:47:14 +03:00
|
|
|
}
|
2004-10-23 11:32:52 +04:00
|
|
|
|
2006-11-21 17:47:14 +03:00
|
|
|
log_info("Connection %lu: the user was authorized successfully.",
|
2006-11-03 14:00:35 +03:00
|
|
|
(unsigned long) connection_id);
|
2004-10-23 11:32:52 +04:00
|
|
|
|
|
|
|
vio_keepalive(vio, TRUE);
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
while (!net.error && net.vio && !thread_registry->is_shutdown())
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
if (do_command())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
int Mysql_connection::check_connection()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
ulong pkt_len=0; // to hold client reply length
|
|
|
|
|
|
|
|
/* buffer for the first packet */ /* packet contains: */
|
WL#3817: Simplify string / memory area types and make things more consistent (first part)
The following type conversions was done:
- Changed byte to uchar
- Changed gptr to uchar*
- Change my_string to char *
- Change my_size_t to size_t
- Change size_s to size_t
Removed declaration of byte, gptr, my_string, my_size_t and size_s.
Following function parameter changes was done:
- All string functions in mysys/strings was changed to use size_t
instead of uint for string lengths.
- All read()/write() functions changed to use size_t (including vio).
- All protocoll functions changed to use size_t instead of uint
- Functions that used a pointer to a string length was changed to use size_t*
- Changed malloc(), free() and related functions from using gptr to use void *
as this requires fewer casts in the code and is more in line with how the
standard functions work.
- Added extra length argument to dirname_part() to return the length of the
created string.
- Changed (at least) following functions to take uchar* as argument:
- db_dump()
- my_net_write()
- net_write_command()
- net_store_data()
- DBUG_DUMP()
- decimal2bin() & bin2decimal()
- Changed my_compress() and my_uncompress() to use size_t. Changed one
argument to my_uncompress() from a pointer to a value as we only return
one value (makes function easier to use).
- Changed type of 'pack_data' argument to packfrm() to avoid casts.
- Changed in readfrm() and writefrom(), ha_discover and handler::discover()
the type for argument 'frmdata' to uchar** to avoid casts.
- Changed most Field functions to use uchar* instead of char* (reduced a lot of
casts).
- Changed field->val_xxx(xxx, new_ptr) to take const pointers.
Other changes:
- Removed a lot of not needed casts
- Added a few new cast required by other changes
- Added some cast to my_multi_malloc() arguments for safety (as string lengths
needs to be uint, not size_t).
- Fixed all calls to hash-get-key functions to use size_t*. (Needed to be done
explicitely as this conflict was often hided by casting the function to
hash_get_key).
- Changed some buffers to memory regions to uchar* to avoid casts.
- Changed some string lengths from uint to size_t.
- Changed field->ptr to be uchar* instead of char*. This allowed us to
get rid of a lot of casts.
- Some changes from true -> TRUE, false -> FALSE, unsigned char -> uchar
- Include zlib.h in some files as we needed declaration of crc32()
- Changed MY_FILE_ERROR to be (size_t) -1.
- Changed many variables to hold the result of my_read() / my_write() to be
size_t. This was needed to properly detect errors (which are
returned as (size_t) -1).
- Removed some very old VMS code
- Changed packfrm()/unpackfrm() to not be depending on uint size
(portability fix)
- Removed windows specific code to restore cursor position as this
causes slowdown on windows and we should not mix read() and pread()
calls anyway as this is not thread safe. Updated function comment to
reflect this. Changed function that depended on original behavior of
my_pwrite() to itself restore the cursor position (one such case).
- Added some missing checking of return value of malloc().
- Changed definition of MOD_PAD_CHAR_TO_FULL_LENGTH to avoid 'long' overflow.
- Changed type of table_def::m_size from my_size_t to ulong to reflect that
m_size is the number of elements in the array, not a string/memory
length.
- Moved THD::max_row_length() to table.cc (as it's not depending on THD).
Inlined max_row_length_blob() into this function.
- More function comments
- Fixed some compiler warnings when compiled without partitions.
- Removed setting of LEX_STRING() arguments in declaration (portability fix).
- Some trivial indentation/variable name changes.
- Some trivial code simplifications:
- Replaced some calls to alloc_root + memcpy to use
strmake_root()/strdup_root().
- Changed some calls from memdup() to strmake() (Safety fix)
- Simpler loops in client-simple.c
2007-05-10 12:59:39 +03:00
|
|
|
uchar buff[MAX_VERSION_LENGTH + 1 + // server version, 0-ended
|
|
|
|
4 + // connection id
|
|
|
|
SCRAMBLE_LENGTH + 2 + // scramble (in 2 pieces)
|
|
|
|
18]; // server variables: flags,
|
2004-10-23 11:32:52 +04:00
|
|
|
// charset number, status,
|
WL#3817: Simplify string / memory area types and make things more consistent (first part)
The following type conversions was done:
- Changed byte to uchar
- Changed gptr to uchar*
- Change my_string to char *
- Change my_size_t to size_t
- Change size_s to size_t
Removed declaration of byte, gptr, my_string, my_size_t and size_s.
Following function parameter changes was done:
- All string functions in mysys/strings was changed to use size_t
instead of uint for string lengths.
- All read()/write() functions changed to use size_t (including vio).
- All protocoll functions changed to use size_t instead of uint
- Functions that used a pointer to a string length was changed to use size_t*
- Changed malloc(), free() and related functions from using gptr to use void *
as this requires fewer casts in the code and is more in line with how the
standard functions work.
- Added extra length argument to dirname_part() to return the length of the
created string.
- Changed (at least) following functions to take uchar* as argument:
- db_dump()
- my_net_write()
- net_write_command()
- net_store_data()
- DBUG_DUMP()
- decimal2bin() & bin2decimal()
- Changed my_compress() and my_uncompress() to use size_t. Changed one
argument to my_uncompress() from a pointer to a value as we only return
one value (makes function easier to use).
- Changed type of 'pack_data' argument to packfrm() to avoid casts.
- Changed in readfrm() and writefrom(), ha_discover and handler::discover()
the type for argument 'frmdata' to uchar** to avoid casts.
- Changed most Field functions to use uchar* instead of char* (reduced a lot of
casts).
- Changed field->val_xxx(xxx, new_ptr) to take const pointers.
Other changes:
- Removed a lot of not needed casts
- Added a few new cast required by other changes
- Added some cast to my_multi_malloc() arguments for safety (as string lengths
needs to be uint, not size_t).
- Fixed all calls to hash-get-key functions to use size_t*. (Needed to be done
explicitely as this conflict was often hided by casting the function to
hash_get_key).
- Changed some buffers to memory regions to uchar* to avoid casts.
- Changed some string lengths from uint to size_t.
- Changed field->ptr to be uchar* instead of char*. This allowed us to
get rid of a lot of casts.
- Some changes from true -> TRUE, false -> FALSE, unsigned char -> uchar
- Include zlib.h in some files as we needed declaration of crc32()
- Changed MY_FILE_ERROR to be (size_t) -1.
- Changed many variables to hold the result of my_read() / my_write() to be
size_t. This was needed to properly detect errors (which are
returned as (size_t) -1).
- Removed some very old VMS code
- Changed packfrm()/unpackfrm() to not be depending on uint size
(portability fix)
- Removed windows specific code to restore cursor position as this
causes slowdown on windows and we should not mix read() and pread()
calls anyway as this is not thread safe. Updated function comment to
reflect this. Changed function that depended on original behavior of
my_pwrite() to itself restore the cursor position (one such case).
- Added some missing checking of return value of malloc().
- Changed definition of MOD_PAD_CHAR_TO_FULL_LENGTH to avoid 'long' overflow.
- Changed type of table_def::m_size from my_size_t to ulong to reflect that
m_size is the number of elements in the array, not a string/memory
length.
- Moved THD::max_row_length() to table.cc (as it's not depending on THD).
Inlined max_row_length_blob() into this function.
- More function comments
- Fixed some compiler warnings when compiled without partitions.
- Removed setting of LEX_STRING() arguments in declaration (portability fix).
- Some trivial indentation/variable name changes.
- Some trivial code simplifications:
- Replaced some calls to alloc_root + memcpy to use
strmake_root()/strdup_root().
- Changed some calls from memdup() to strmake() (Safety fix)
- Simpler loops in client-simple.c
2007-05-10 12:59:39 +03:00
|
|
|
uchar *pos= buff;
|
2004-10-23 11:32:52 +04:00
|
|
|
ulong server_flags;
|
|
|
|
|
2006-05-18 18:57:50 +04:00
|
|
|
memcpy(pos, mysqlmanager_version.str, mysqlmanager_version.length + 1);
|
|
|
|
pos+= mysqlmanager_version.length + 1;
|
2004-10-23 11:32:52 +04:00
|
|
|
|
|
|
|
int4store((uchar*) pos, connection_id);
|
|
|
|
pos+= 4;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Old clients does not understand long scrambles, but can ignore packet
|
|
|
|
tail: that's why first part of the scramble is placed here, and second
|
|
|
|
part at the end of packet (even though we don't support old clients,
|
|
|
|
we must follow standard packet format.)
|
|
|
|
*/
|
|
|
|
memcpy(pos, scramble, SCRAMBLE_LENGTH_323);
|
|
|
|
pos+= SCRAMBLE_LENGTH_323;
|
|
|
|
*pos++= '\0';
|
|
|
|
|
|
|
|
server_flags= CLIENT_LONG_FLAG | CLIENT_PROTOCOL_41 |
|
|
|
|
CLIENT_SECURE_CONNECTION;
|
|
|
|
|
|
|
|
/*
|
|
|
|
18-bytes long section for various flags/variables
|
|
|
|
|
|
|
|
Every flag occupies a bit in first half of ulong; int2store will
|
|
|
|
gracefully pick up all flags.
|
|
|
|
*/
|
|
|
|
int2store(pos, server_flags);
|
|
|
|
pos+= 2;
|
|
|
|
*pos++= (char) default_charset_info->number; // global mysys variable
|
|
|
|
int2store(pos, status); // connection status
|
|
|
|
pos+= 2;
|
|
|
|
bzero(pos, 13); // not used now
|
|
|
|
pos+= 13;
|
|
|
|
|
|
|
|
/* second part of the scramble, null-terminated */
|
|
|
|
memcpy(pos, scramble + SCRAMBLE_LENGTH_323,
|
|
|
|
SCRAMBLE_LENGTH - SCRAMBLE_LENGTH_323 + 1);
|
|
|
|
pos+= SCRAMBLE_LENGTH - SCRAMBLE_LENGTH_323 + 1;
|
|
|
|
|
|
|
|
/* write connection message and read reply */
|
|
|
|
enum { MIN_HANDSHAKE_SIZE= 2 };
|
WL#3817: Simplify string / memory area types and make things more consistent (first part)
The following type conversions was done:
- Changed byte to uchar
- Changed gptr to uchar*
- Change my_string to char *
- Change my_size_t to size_t
- Change size_s to size_t
Removed declaration of byte, gptr, my_string, my_size_t and size_s.
Following function parameter changes was done:
- All string functions in mysys/strings was changed to use size_t
instead of uint for string lengths.
- All read()/write() functions changed to use size_t (including vio).
- All protocoll functions changed to use size_t instead of uint
- Functions that used a pointer to a string length was changed to use size_t*
- Changed malloc(), free() and related functions from using gptr to use void *
as this requires fewer casts in the code and is more in line with how the
standard functions work.
- Added extra length argument to dirname_part() to return the length of the
created string.
- Changed (at least) following functions to take uchar* as argument:
- db_dump()
- my_net_write()
- net_write_command()
- net_store_data()
- DBUG_DUMP()
- decimal2bin() & bin2decimal()
- Changed my_compress() and my_uncompress() to use size_t. Changed one
argument to my_uncompress() from a pointer to a value as we only return
one value (makes function easier to use).
- Changed type of 'pack_data' argument to packfrm() to avoid casts.
- Changed in readfrm() and writefrom(), ha_discover and handler::discover()
the type for argument 'frmdata' to uchar** to avoid casts.
- Changed most Field functions to use uchar* instead of char* (reduced a lot of
casts).
- Changed field->val_xxx(xxx, new_ptr) to take const pointers.
Other changes:
- Removed a lot of not needed casts
- Added a few new cast required by other changes
- Added some cast to my_multi_malloc() arguments for safety (as string lengths
needs to be uint, not size_t).
- Fixed all calls to hash-get-key functions to use size_t*. (Needed to be done
explicitely as this conflict was often hided by casting the function to
hash_get_key).
- Changed some buffers to memory regions to uchar* to avoid casts.
- Changed some string lengths from uint to size_t.
- Changed field->ptr to be uchar* instead of char*. This allowed us to
get rid of a lot of casts.
- Some changes from true -> TRUE, false -> FALSE, unsigned char -> uchar
- Include zlib.h in some files as we needed declaration of crc32()
- Changed MY_FILE_ERROR to be (size_t) -1.
- Changed many variables to hold the result of my_read() / my_write() to be
size_t. This was needed to properly detect errors (which are
returned as (size_t) -1).
- Removed some very old VMS code
- Changed packfrm()/unpackfrm() to not be depending on uint size
(portability fix)
- Removed windows specific code to restore cursor position as this
causes slowdown on windows and we should not mix read() and pread()
calls anyway as this is not thread safe. Updated function comment to
reflect this. Changed function that depended on original behavior of
my_pwrite() to itself restore the cursor position (one such case).
- Added some missing checking of return value of malloc().
- Changed definition of MOD_PAD_CHAR_TO_FULL_LENGTH to avoid 'long' overflow.
- Changed type of table_def::m_size from my_size_t to ulong to reflect that
m_size is the number of elements in the array, not a string/memory
length.
- Moved THD::max_row_length() to table.cc (as it's not depending on THD).
Inlined max_row_length_blob() into this function.
- More function comments
- Fixed some compiler warnings when compiled without partitions.
- Removed setting of LEX_STRING() arguments in declaration (portability fix).
- Some trivial indentation/variable name changes.
- Some trivial code simplifications:
- Replaced some calls to alloc_root + memcpy to use
strmake_root()/strdup_root().
- Changed some calls from memdup() to strmake() (Safety fix)
- Simpler loops in client-simple.c
2007-05-10 12:59:39 +03:00
|
|
|
if (net_write_command(&net, protocol_version, (uchar*) "", 0,
|
|
|
|
buff, pos - buff) ||
|
2004-10-23 11:32:52 +04:00
|
|
|
(pkt_len= my_net_read(&net)) == packet_error ||
|
|
|
|
pkt_len < MIN_HANDSHAKE_SIZE)
|
|
|
|
{
|
|
|
|
net_send_error(&net, ER_HANDSHAKE_ERROR);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
client_capabilities= uint2korr(net.read_pos);
|
|
|
|
if (!(client_capabilities & CLIENT_PROTOCOL_41))
|
|
|
|
{
|
|
|
|
net_send_error_323(&net, ER_NOT_SUPPORTED_AUTH_MODE);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
client_capabilities|= ((ulong) uint2korr(net.read_pos + 2)) << 16;
|
|
|
|
|
WL#3817: Simplify string / memory area types and make things more consistent (first part)
The following type conversions was done:
- Changed byte to uchar
- Changed gptr to uchar*
- Change my_string to char *
- Change my_size_t to size_t
- Change size_s to size_t
Removed declaration of byte, gptr, my_string, my_size_t and size_s.
Following function parameter changes was done:
- All string functions in mysys/strings was changed to use size_t
instead of uint for string lengths.
- All read()/write() functions changed to use size_t (including vio).
- All protocoll functions changed to use size_t instead of uint
- Functions that used a pointer to a string length was changed to use size_t*
- Changed malloc(), free() and related functions from using gptr to use void *
as this requires fewer casts in the code and is more in line with how the
standard functions work.
- Added extra length argument to dirname_part() to return the length of the
created string.
- Changed (at least) following functions to take uchar* as argument:
- db_dump()
- my_net_write()
- net_write_command()
- net_store_data()
- DBUG_DUMP()
- decimal2bin() & bin2decimal()
- Changed my_compress() and my_uncompress() to use size_t. Changed one
argument to my_uncompress() from a pointer to a value as we only return
one value (makes function easier to use).
- Changed type of 'pack_data' argument to packfrm() to avoid casts.
- Changed in readfrm() and writefrom(), ha_discover and handler::discover()
the type for argument 'frmdata' to uchar** to avoid casts.
- Changed most Field functions to use uchar* instead of char* (reduced a lot of
casts).
- Changed field->val_xxx(xxx, new_ptr) to take const pointers.
Other changes:
- Removed a lot of not needed casts
- Added a few new cast required by other changes
- Added some cast to my_multi_malloc() arguments for safety (as string lengths
needs to be uint, not size_t).
- Fixed all calls to hash-get-key functions to use size_t*. (Needed to be done
explicitely as this conflict was often hided by casting the function to
hash_get_key).
- Changed some buffers to memory regions to uchar* to avoid casts.
- Changed some string lengths from uint to size_t.
- Changed field->ptr to be uchar* instead of char*. This allowed us to
get rid of a lot of casts.
- Some changes from true -> TRUE, false -> FALSE, unsigned char -> uchar
- Include zlib.h in some files as we needed declaration of crc32()
- Changed MY_FILE_ERROR to be (size_t) -1.
- Changed many variables to hold the result of my_read() / my_write() to be
size_t. This was needed to properly detect errors (which are
returned as (size_t) -1).
- Removed some very old VMS code
- Changed packfrm()/unpackfrm() to not be depending on uint size
(portability fix)
- Removed windows specific code to restore cursor position as this
causes slowdown on windows and we should not mix read() and pread()
calls anyway as this is not thread safe. Updated function comment to
reflect this. Changed function that depended on original behavior of
my_pwrite() to itself restore the cursor position (one such case).
- Added some missing checking of return value of malloc().
- Changed definition of MOD_PAD_CHAR_TO_FULL_LENGTH to avoid 'long' overflow.
- Changed type of table_def::m_size from my_size_t to ulong to reflect that
m_size is the number of elements in the array, not a string/memory
length.
- Moved THD::max_row_length() to table.cc (as it's not depending on THD).
Inlined max_row_length_blob() into this function.
- More function comments
- Fixed some compiler warnings when compiled without partitions.
- Removed setting of LEX_STRING() arguments in declaration (portability fix).
- Some trivial indentation/variable name changes.
- Some trivial code simplifications:
- Replaced some calls to alloc_root + memcpy to use
strmake_root()/strdup_root().
- Changed some calls from memdup() to strmake() (Safety fix)
- Simpler loops in client-simple.c
2007-05-10 12:59:39 +03:00
|
|
|
pos= net.read_pos + 32;
|
2004-10-23 11:32:52 +04:00
|
|
|
|
|
|
|
/* At least one byte for username and one byte for password */
|
WL#3817: Simplify string / memory area types and make things more consistent (first part)
The following type conversions was done:
- Changed byte to uchar
- Changed gptr to uchar*
- Change my_string to char *
- Change my_size_t to size_t
- Change size_s to size_t
Removed declaration of byte, gptr, my_string, my_size_t and size_s.
Following function parameter changes was done:
- All string functions in mysys/strings was changed to use size_t
instead of uint for string lengths.
- All read()/write() functions changed to use size_t (including vio).
- All protocoll functions changed to use size_t instead of uint
- Functions that used a pointer to a string length was changed to use size_t*
- Changed malloc(), free() and related functions from using gptr to use void *
as this requires fewer casts in the code and is more in line with how the
standard functions work.
- Added extra length argument to dirname_part() to return the length of the
created string.
- Changed (at least) following functions to take uchar* as argument:
- db_dump()
- my_net_write()
- net_write_command()
- net_store_data()
- DBUG_DUMP()
- decimal2bin() & bin2decimal()
- Changed my_compress() and my_uncompress() to use size_t. Changed one
argument to my_uncompress() from a pointer to a value as we only return
one value (makes function easier to use).
- Changed type of 'pack_data' argument to packfrm() to avoid casts.
- Changed in readfrm() and writefrom(), ha_discover and handler::discover()
the type for argument 'frmdata' to uchar** to avoid casts.
- Changed most Field functions to use uchar* instead of char* (reduced a lot of
casts).
- Changed field->val_xxx(xxx, new_ptr) to take const pointers.
Other changes:
- Removed a lot of not needed casts
- Added a few new cast required by other changes
- Added some cast to my_multi_malloc() arguments for safety (as string lengths
needs to be uint, not size_t).
- Fixed all calls to hash-get-key functions to use size_t*. (Needed to be done
explicitely as this conflict was often hided by casting the function to
hash_get_key).
- Changed some buffers to memory regions to uchar* to avoid casts.
- Changed some string lengths from uint to size_t.
- Changed field->ptr to be uchar* instead of char*. This allowed us to
get rid of a lot of casts.
- Some changes from true -> TRUE, false -> FALSE, unsigned char -> uchar
- Include zlib.h in some files as we needed declaration of crc32()
- Changed MY_FILE_ERROR to be (size_t) -1.
- Changed many variables to hold the result of my_read() / my_write() to be
size_t. This was needed to properly detect errors (which are
returned as (size_t) -1).
- Removed some very old VMS code
- Changed packfrm()/unpackfrm() to not be depending on uint size
(portability fix)
- Removed windows specific code to restore cursor position as this
causes slowdown on windows and we should not mix read() and pread()
calls anyway as this is not thread safe. Updated function comment to
reflect this. Changed function that depended on original behavior of
my_pwrite() to itself restore the cursor position (one such case).
- Added some missing checking of return value of malloc().
- Changed definition of MOD_PAD_CHAR_TO_FULL_LENGTH to avoid 'long' overflow.
- Changed type of table_def::m_size from my_size_t to ulong to reflect that
m_size is the number of elements in the array, not a string/memory
length.
- Moved THD::max_row_length() to table.cc (as it's not depending on THD).
Inlined max_row_length_blob() into this function.
- More function comments
- Fixed some compiler warnings when compiled without partitions.
- Removed setting of LEX_STRING() arguments in declaration (portability fix).
- Some trivial indentation/variable name changes.
- Some trivial code simplifications:
- Replaced some calls to alloc_root + memcpy to use
strmake_root()/strdup_root().
- Changed some calls from memdup() to strmake() (Safety fix)
- Simpler loops in client-simple.c
2007-05-10 12:59:39 +03:00
|
|
|
if (pos >= net.read_pos + pkt_len + 2)
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
/*TODO add user and password handling in error messages*/
|
|
|
|
net_send_error(&net, ER_HANDSHAKE_ERROR);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
WL#3817: Simplify string / memory area types and make things more consistent (first part)
The following type conversions was done:
- Changed byte to uchar
- Changed gptr to uchar*
- Change my_string to char *
- Change my_size_t to size_t
- Change size_s to size_t
Removed declaration of byte, gptr, my_string, my_size_t and size_s.
Following function parameter changes was done:
- All string functions in mysys/strings was changed to use size_t
instead of uint for string lengths.
- All read()/write() functions changed to use size_t (including vio).
- All protocoll functions changed to use size_t instead of uint
- Functions that used a pointer to a string length was changed to use size_t*
- Changed malloc(), free() and related functions from using gptr to use void *
as this requires fewer casts in the code and is more in line with how the
standard functions work.
- Added extra length argument to dirname_part() to return the length of the
created string.
- Changed (at least) following functions to take uchar* as argument:
- db_dump()
- my_net_write()
- net_write_command()
- net_store_data()
- DBUG_DUMP()
- decimal2bin() & bin2decimal()
- Changed my_compress() and my_uncompress() to use size_t. Changed one
argument to my_uncompress() from a pointer to a value as we only return
one value (makes function easier to use).
- Changed type of 'pack_data' argument to packfrm() to avoid casts.
- Changed in readfrm() and writefrom(), ha_discover and handler::discover()
the type for argument 'frmdata' to uchar** to avoid casts.
- Changed most Field functions to use uchar* instead of char* (reduced a lot of
casts).
- Changed field->val_xxx(xxx, new_ptr) to take const pointers.
Other changes:
- Removed a lot of not needed casts
- Added a few new cast required by other changes
- Added some cast to my_multi_malloc() arguments for safety (as string lengths
needs to be uint, not size_t).
- Fixed all calls to hash-get-key functions to use size_t*. (Needed to be done
explicitely as this conflict was often hided by casting the function to
hash_get_key).
- Changed some buffers to memory regions to uchar* to avoid casts.
- Changed some string lengths from uint to size_t.
- Changed field->ptr to be uchar* instead of char*. This allowed us to
get rid of a lot of casts.
- Some changes from true -> TRUE, false -> FALSE, unsigned char -> uchar
- Include zlib.h in some files as we needed declaration of crc32()
- Changed MY_FILE_ERROR to be (size_t) -1.
- Changed many variables to hold the result of my_read() / my_write() to be
size_t. This was needed to properly detect errors (which are
returned as (size_t) -1).
- Removed some very old VMS code
- Changed packfrm()/unpackfrm() to not be depending on uint size
(portability fix)
- Removed windows specific code to restore cursor position as this
causes slowdown on windows and we should not mix read() and pread()
calls anyway as this is not thread safe. Updated function comment to
reflect this. Changed function that depended on original behavior of
my_pwrite() to itself restore the cursor position (one such case).
- Added some missing checking of return value of malloc().
- Changed definition of MOD_PAD_CHAR_TO_FULL_LENGTH to avoid 'long' overflow.
- Changed type of table_def::m_size from my_size_t to ulong to reflect that
m_size is the number of elements in the array, not a string/memory
length.
- Moved THD::max_row_length() to table.cc (as it's not depending on THD).
Inlined max_row_length_blob() into this function.
- More function comments
- Fixed some compiler warnings when compiled without partitions.
- Removed setting of LEX_STRING() arguments in declaration (portability fix).
- Some trivial indentation/variable name changes.
- Some trivial code simplifications:
- Replaced some calls to alloc_root + memcpy to use
strmake_root()/strdup_root().
- Changed some calls from memdup() to strmake() (Safety fix)
- Simpler loops in client-simple.c
2007-05-10 12:59:39 +03:00
|
|
|
const char *user= (char*) pos;
|
2004-10-23 11:32:52 +04:00
|
|
|
const char *password= strend(user)+1;
|
|
|
|
ulong password_len= *password++;
|
2006-05-18 18:57:50 +04:00
|
|
|
LEX_STRING user_name= { (char *) user, password - user - 2 };
|
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
if (password_len != SCRAMBLE_LENGTH)
|
|
|
|
{
|
|
|
|
net_send_error(&net, ER_ACCESS_DENIED_ERROR);
|
|
|
|
return 1;
|
|
|
|
}
|
2006-11-17 16:11:04 +03:00
|
|
|
if (user_map->authenticate(&user_name, password, scramble))
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
net_send_error(&net, ER_ACCESS_DENIED_ERROR);
|
|
|
|
return 1;
|
|
|
|
}
|
2005-04-09 14:28:39 +04:00
|
|
|
net_send_ok(&net, connection_id, NULL);
|
2004-10-23 11:32:52 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
int Mysql_connection::do_command()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
char *packet;
|
|
|
|
ulong packet_length;
|
|
|
|
|
|
|
|
/* We start to count packets from 0 for each new command */
|
|
|
|
net.pkt_nr= 0;
|
|
|
|
|
|
|
|
if ((packet_length=my_net_read(&net)) == packet_error)
|
|
|
|
{
|
|
|
|
/* Check if we can continue without closing the connection */
|
|
|
|
if (net.error != 3) // what is 3 - find out
|
|
|
|
return 1;
|
2006-11-17 16:11:04 +03:00
|
|
|
if (thread_registry->is_shutdown())
|
2004-10-23 11:32:52 +04:00
|
|
|
return 1;
|
2008-02-28 14:55:46 -03:00
|
|
|
net_send_error(&net, net.last_errno);
|
2004-10-23 11:32:52 +04:00
|
|
|
net.error= 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-17 16:11:04 +03:00
|
|
|
if (thread_registry->is_shutdown())
|
2004-10-23 11:32:52 +04:00
|
|
|
return 1;
|
|
|
|
packet= (char*) net.read_pos;
|
|
|
|
enum enum_server_command command= (enum enum_server_command)
|
|
|
|
(uchar) *packet;
|
2006-11-21 17:47:14 +03:00
|
|
|
log_info("Connection %lu: received packet (length: %lu; command: %d).",
|
|
|
|
(unsigned long) connection_id,
|
|
|
|
(unsigned long) packet_length,
|
|
|
|
(int) command);
|
|
|
|
|
2006-11-17 16:45:29 +03:00
|
|
|
return dispatch_command(command, packet + 1);
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
int Mysql_connection::dispatch_command(enum enum_server_command command,
|
2006-11-17 18:19:49 +03:00
|
|
|
const char *packet)
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
switch (command) {
|
|
|
|
case COM_QUIT: // client exit
|
2006-11-21 17:47:14 +03:00
|
|
|
log_info("Connection %lu: received QUIT command.",
|
2006-11-03 14:00:35 +03:00
|
|
|
(unsigned long) connection_id);
|
2004-10-23 11:32:52 +04:00
|
|
|
return 1;
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
case COM_PING:
|
2006-11-21 17:47:14 +03:00
|
|
|
log_info("Connection %lu: received PING command.",
|
2006-11-03 14:00:35 +03:00
|
|
|
(unsigned long) connection_id);
|
2005-04-09 14:28:39 +04:00
|
|
|
net_send_ok(&net, connection_id, NULL);
|
2006-11-21 17:47:14 +03:00
|
|
|
return 0;
|
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
case COM_QUERY:
|
|
|
|
{
|
2006-11-21 17:47:14 +03:00
|
|
|
log_info("Connection %lu: received QUERY command: '%s'.",
|
|
|
|
(unsigned long) connection_id,
|
2006-10-24 18:23:16 +04:00
|
|
|
(const char *) packet);
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2007-01-27 03:46:45 +02:00
|
|
|
if (Command *com= parse_command(packet))
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
|
|
|
int res= 0;
|
2006-11-21 17:47:14 +03:00
|
|
|
|
|
|
|
log_info("Connection %lu: query parsed successfully.",
|
2006-11-03 14:00:35 +03:00
|
|
|
(unsigned long) connection_id);
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2006-12-15 00:51:37 +02:00
|
|
|
res= com->execute(&net, connection_id);
|
|
|
|
delete com;
|
2004-10-23 11:32:52 +04:00
|
|
|
if (!res)
|
2006-11-21 17:47:14 +03:00
|
|
|
{
|
|
|
|
log_info("Connection %lu: query executed successfully",
|
2006-11-03 14:00:35 +03:00
|
|
|
(unsigned long) connection_id);
|
2006-11-21 17:47:14 +03:00
|
|
|
}
|
2004-10-23 11:32:52 +04:00
|
|
|
else
|
|
|
|
{
|
2006-11-21 17:47:14 +03:00
|
|
|
log_info("Connection %lu: can not execute query (error: %d).",
|
|
|
|
(unsigned long) connection_id,
|
|
|
|
(int) res);
|
|
|
|
|
2005-05-16 01:54:02 +04:00
|
|
|
net_send_error(&net, res);
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-21 17:47:14 +03:00
|
|
|
log_error("Connection %lu: can not parse query: out ot resources.",
|
|
|
|
(unsigned long) connection_id);
|
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
net_send_error(&net,ER_OUT_OF_RESOURCES);
|
|
|
|
}
|
2006-11-21 17:47:14 +03:00
|
|
|
|
|
|
|
return 0;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
default:
|
2006-11-21 17:47:14 +03:00
|
|
|
log_info("Connection %lu: received unsupported command (%d).",
|
|
|
|
(unsigned long) connection_id,
|
|
|
|
(int) command);
|
|
|
|
|
2004-10-23 11:32:52 +04:00
|
|
|
net_send_error(&net, ER_UNKNOWN_COM_ERROR);
|
2006-11-21 17:47:14 +03:00
|
|
|
return 0;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
2006-11-21 17:47:14 +03:00
|
|
|
|
|
|
|
return 0; /* Just to make compiler happy. */
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
void Mysql_connection::run()
|
2004-10-23 11:32:52 +04:00
|
|
|
{
|
2006-11-17 16:11:04 +03:00
|
|
|
if (init())
|
2006-11-21 17:47:14 +03:00
|
|
|
log_error("Connection %lu: can not init handler.",
|
|
|
|
(unsigned long) connection_id);
|
2004-10-23 11:32:52 +04:00
|
|
|
else
|
|
|
|
{
|
2006-11-17 16:11:04 +03:00
|
|
|
main();
|
|
|
|
cleanup();
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
2006-11-21 17:47:14 +03:00
|
|
|
|
2006-11-17 16:11:04 +03:00
|
|
|
delete this;
|
2004-10-23 11:32:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-05-18 18:57:50 +04:00
|
|
|
vim: fdm=marker
|
2004-10-23 11:32:52 +04:00
|
|
|
*/
|