2001-12-06 13:10:51 +01:00
|
|
|
/* Copyright (C) 2000 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; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Common definition between mysql server & client
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _mysql_com_h
|
|
|
|
#define _mysql_com_h
|
|
|
|
|
|
|
|
#define NAME_LEN 64 /* Field/table name length */
|
|
|
|
#define HOSTNAME_LENGTH 60
|
|
|
|
#define USERNAME_LENGTH 16
|
2001-01-21 15:30:16 +01:00
|
|
|
#define SERVER_VERSION_LENGTH 60
|
2003-06-14 10:37:42 +02:00
|
|
|
#define SQLSTATE_LENGTH 5
|
2006-08-30 12:56:17 +02:00
|
|
|
#define SYSTEM_CHARSET_MBMAXLEN 3
|
|
|
|
#define NAME_BYTE_LEN NAME_LEN*SYSTEM_CHARSET_MBMAXLEN
|
|
|
|
#define USERNAME_BYTE_LENGTH USERNAME_LENGTH*SYSTEM_CHARSET_MBMAXLEN
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2006-01-11 00:07:40 +01:00
|
|
|
/*
|
|
|
|
USER_HOST_BUFF_SIZE -- length of string buffer, that is enough to contain
|
|
|
|
username and hostname parts of the user identifier with trailing zero in
|
|
|
|
MySQL standard format:
|
|
|
|
user_name_part@host_name_part\0
|
|
|
|
*/
|
2006-09-07 15:09:49 +02:00
|
|
|
#define USER_HOST_BUFF_SIZE HOSTNAME_LENGTH + USERNAME_BYTE_LENGTH + 2
|
2006-01-11 00:07:40 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#define LOCAL_HOST "localhost"
|
|
|
|
#define LOCAL_HOST_NAMEDPIPE "."
|
|
|
|
|
2002-11-30 18:58:53 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#if defined(__WIN__) && !defined( _CUSTOMCONFIG_)
|
|
|
|
#define MYSQL_NAMEDPIPE "MySQL"
|
2003-10-30 00:01:53 +01:00
|
|
|
#define MYSQL_SERVICENAME "MySQL"
|
2000-07-31 21:29:14 +02:00
|
|
|
#endif /* __WIN__ */
|
|
|
|
|
2004-07-28 23:52:32 +02:00
|
|
|
/*
|
|
|
|
You should add new commands to the end of this list, otherwise old
|
|
|
|
servers won't be able to handle them as 'unsupported'.
|
|
|
|
*/
|
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
enum enum_server_command
|
|
|
|
{
|
|
|
|
COM_SLEEP, COM_QUIT, COM_INIT_DB, COM_QUERY, COM_FIELD_LIST,
|
|
|
|
COM_CREATE_DB, COM_DROP_DB, COM_REFRESH, COM_SHUTDOWN, COM_STATISTICS,
|
|
|
|
COM_PROCESS_INFO, COM_CONNECT, COM_PROCESS_KILL, COM_DEBUG, COM_PING,
|
|
|
|
COM_TIME, COM_DELAYED_INSERT, COM_CHANGE_USER, COM_BINLOG_DUMP,
|
|
|
|
COM_TABLE_DUMP, COM_CONNECT_OUT, COM_REGISTER_SLAVE,
|
2005-06-17 21:26:25 +02:00
|
|
|
COM_STMT_PREPARE, COM_STMT_EXECUTE, COM_STMT_SEND_LONG_DATA, COM_STMT_CLOSE,
|
2006-01-12 19:51:02 +01:00
|
|
|
COM_STMT_RESET, COM_SET_OPTION, COM_STMT_FETCH, COM_DAEMON,
|
2004-10-22 20:33:10 +02:00
|
|
|
/* don't forget to update const char *command_name[] in sql_parse.cc */
|
|
|
|
|
|
|
|
/* Must be last */
|
|
|
|
COM_END
|
2002-10-02 12:33:08 +02:00
|
|
|
};
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2002-11-30 18:58:53 +01:00
|
|
|
|
2003-07-01 21:40:59 +02:00
|
|
|
/*
|
|
|
|
Length of random string sent by server on handshake; this is also length of
|
2004-10-22 20:33:10 +02:00
|
|
|
obfuscated password, recieved from client
|
2003-07-01 21:40:59 +02:00
|
|
|
*/
|
|
|
|
#define SCRAMBLE_LENGTH 20
|
|
|
|
#define SCRAMBLE_LENGTH_323 8
|
|
|
|
/* length of password stored in the db: new passwords are preceeded with '*' */
|
|
|
|
#define SCRAMBLED_PASSWORD_CHAR_LENGTH (SCRAMBLE_LENGTH*2+1)
|
|
|
|
#define SCRAMBLED_PASSWORD_CHAR_LENGTH_323 (SCRAMBLE_LENGTH_323*2)
|
2002-11-30 18:58:53 +01:00
|
|
|
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#define NOT_NULL_FLAG 1 /* Field can't be NULL */
|
|
|
|
#define PRI_KEY_FLAG 2 /* Field is part of a primary key */
|
|
|
|
#define UNIQUE_KEY_FLAG 4 /* Field is part of a unique key */
|
|
|
|
#define MULTIPLE_KEY_FLAG 8 /* Field is part of a key */
|
|
|
|
#define BLOB_FLAG 16 /* Field is a blob */
|
|
|
|
#define UNSIGNED_FLAG 32 /* Field is unsigned */
|
|
|
|
#define ZEROFILL_FLAG 64 /* Field is zerofill */
|
2002-12-19 11:36:05 +01:00
|
|
|
#define BINARY_FLAG 128 /* Field is binary */
|
2002-10-25 10:58:32 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
/* The following are only sent to new clients */
|
|
|
|
#define ENUM_FLAG 256 /* field is an enum */
|
|
|
|
#define AUTO_INCREMENT_FLAG 512 /* field is a autoincrement field */
|
|
|
|
#define TIMESTAMP_FLAG 1024 /* Field is a timestamp */
|
|
|
|
#define SET_FLAG 2048 /* field is a set */
|
2004-09-28 19:08:00 +02:00
|
|
|
#define NO_DEFAULT_VALUE_FLAG 4096 /* Field doesn't have default value */
|
2000-09-02 06:58:42 +02:00
|
|
|
#define NUM_FLAG 32768 /* Field is num (for clients) */
|
2000-07-31 21:29:14 +02:00
|
|
|
#define PART_KEY_FLAG 16384 /* Intern; Part of some key */
|
|
|
|
#define GROUP_FLAG 32768 /* Intern: Group field */
|
|
|
|
#define UNIQUE_FLAG 65536 /* Intern: Used by sql_yacc */
|
2004-03-26 13:11:46 +01:00
|
|
|
#define BINCMP_FLAG 131072 /* Intern: Used by sql_yacc */
|
2005-07-18 13:31:02 +02:00
|
|
|
#define GET_FIXED_FIELDS_FLAG (1 << 18) /* Used to get fields in item tree */
|
|
|
|
#define FIELD_IN_PART_FUNC_FLAG (1 << 19)/* Field part of partition func */
|
This changeset is largely a handler cleanup changeset (WL#3281), but includes fixes and cleanups that was found necessary while testing the handler changes
Changes that requires code changes in other code of other storage engines.
(Note that all changes are very straightforward and one should find all issues
by compiling a --debug build and fixing all compiler errors and all
asserts in field.cc while running the test suite),
- New optional handler function introduced: reset()
This is called after every DML statement to make it easy for a handler to
statement specific cleanups.
(The only case it's not called is if force the file to be closed)
- handler::extra(HA_EXTRA_RESET) is removed. Code that was there before
should be moved to handler::reset()
- table->read_set contains a bitmap over all columns that are needed
in the query. read_row() and similar functions only needs to read these
columns
- table->write_set contains a bitmap over all columns that will be updated
in the query. write_row() and update_row() only needs to update these
columns.
The above bitmaps should now be up to date in all context
(including ALTER TABLE, filesort()).
The handler is informed of any changes to the bitmap after
fix_fields() by calling the virtual function
handler::column_bitmaps_signal(). If the handler does caching of
these bitmaps (instead of using table->read_set, table->write_set),
it should redo the caching in this code. as the signal() may be sent
several times, it's probably best to set a variable in the signal
and redo the caching on read_row() / write_row() if the variable was
set.
- Removed the read_set and write_set bitmap objects from the handler class
- Removed all column bit handling functions from the handler class.
(Now one instead uses the normal bitmap functions in my_bitmap.c instead
of handler dedicated bitmap functions)
- field->query_id is removed. One should instead instead check
table->read_set and table->write_set if a field is used in the query.
- handler::extra(HA_EXTRA_RETRIVE_ALL_COLS) and
handler::extra(HA_EXTRA_RETRIEVE_PRIMARY_KEY) are removed. One should now
instead use table->read_set to check for which columns to retrieve.
- If a handler needs to call Field->val() or Field->store() on columns
that are not used in the query, one should install a temporary
all-columns-used map while doing so. For this, we provide the following
functions:
my_bitmap_map *old_map= dbug_tmp_use_all_columns(table, table->read_set);
field->val();
dbug_tmp_restore_column_map(table->read_set, old_map);
and similar for the write map:
my_bitmap_map *old_map= dbug_tmp_use_all_columns(table, table->write_set);
field->val();
dbug_tmp_restore_column_map(table->write_set, old_map);
If this is not done, you will sooner or later hit a DBUG_ASSERT
in the field store() / val() functions.
(For not DBUG binaries, the dbug_tmp_restore_column_map() and
dbug_tmp_restore_column_map() are inline dummy functions and should
be optimized away be the compiler).
- If one needs to temporary set the column map for all binaries (and not
just to avoid the DBUG_ASSERT() in the Field::store() / Field::val()
methods) one should use the functions tmp_use_all_columns() and
tmp_restore_column_map() instead of the above dbug_ variants.
- All 'status' fields in the handler base class (like records,
data_file_length etc) are now stored in a 'stats' struct. This makes
it easier to know what status variables are provided by the base
handler. This requires some trivial variable names in the extra()
function.
- New virtual function handler::records(). This is called to optimize
COUNT(*) if (handler::table_flags() & HA_HAS_RECORDS()) is true.
(stats.records is not supposed to be an exact value. It's only has to
be 'reasonable enough' for the optimizer to be able to choose a good
optimization path).
- Non virtual handler::init() function added for caching of virtual
constants from engine.
- Removed has_transactions() virtual method. Now one should instead return
HA_NO_TRANSACTIONS in table_flags() if the table handler DOES NOT support
transactions.
- The 'xxxx_create_handler()' function now has a MEM_ROOT_root argument
that is to be used with 'new handler_name()' to allocate the handler
in the right area. The xxxx_create_handler() function is also
responsible for any initialization of the object before returning.
For example, one should change:
static handler *myisam_create_handler(TABLE_SHARE *table)
{
return new ha_myisam(table);
}
->
static handler *myisam_create_handler(TABLE_SHARE *table, MEM_ROOT *mem_root)
{
return new (mem_root) ha_myisam(table);
}
- New optional virtual function: use_hidden_primary_key().
This is called in case of an update/delete when
(table_flags() and HA_PRIMARY_KEY_REQUIRED_FOR_DELETE) is defined
but we don't have a primary key. This allows the handler to take precisions
in remembering any hidden primary key to able to update/delete any
found row. The default handler marks all columns to be read.
- handler::table_flags() now returns a ulonglong (to allow for more flags).
- New/changed table_flags()
- HA_HAS_RECORDS Set if ::records() is supported
- HA_NO_TRANSACTIONS Set if engine doesn't support transactions
- HA_PRIMARY_KEY_REQUIRED_FOR_DELETE
Set if we should mark all primary key columns for
read when reading rows as part of a DELETE
statement. If there is no primary key,
all columns are marked for read.
- HA_PARTIAL_COLUMN_READ Set if engine will not read all columns in some
cases (based on table->read_set)
- HA_PRIMARY_KEY_ALLOW_RANDOM_ACCESS
Renamed to HA_PRIMARY_KEY_REQUIRED_FOR_POSITION.
- HA_DUPP_POS Renamed to HA_DUPLICATE_POS
- HA_REQUIRES_KEY_COLUMNS_FOR_DELETE
Set this if we should mark ALL key columns for
read when when reading rows as part of a DELETE
statement. In case of an update we will mark
all keys for read for which key part changed
value.
- HA_STATS_RECORDS_IS_EXACT
Set this if stats.records is exact.
(This saves us some extra records() calls
when optimizing COUNT(*))
- Removed table_flags()
- HA_NOT_EXACT_COUNT Now one should instead use HA_HAS_RECORDS if
handler::records() gives an exact count() and
HA_STATS_RECORDS_IS_EXACT if stats.records is exact.
- HA_READ_RND_SAME Removed (no one supported this one)
- Removed not needed functions ha_retrieve_all_cols() and ha_retrieve_all_pk()
- Renamed handler::dupp_pos to handler::dup_pos
- Removed not used variable handler::sortkey
Upper level handler changes:
- ha_reset() now does some overall checks and calls ::reset()
- ha_table_flags() added. This is a cached version of table_flags(). The
cache is updated on engine creation time and updated on open.
MySQL level changes (not obvious from the above):
- DBUG_ASSERT() added to check that column usage matches what is set
in the column usage bit maps. (This found a LOT of bugs in current
column marking code).
- In 5.1 before, all used columns was marked in read_set and only updated
columns was marked in write_set. Now we only mark columns for which we
need a value in read_set.
- Column bitmaps are created in open_binary_frm() and open_table_from_share().
(Before this was in table.cc)
- handler::table_flags() calls are replaced with handler::ha_table_flags()
- For calling field->val() you must have the corresponding bit set in
table->read_set. For calling field->store() you must have the
corresponding bit set in table->write_set. (There are asserts in
all store()/val() functions to catch wrong usage)
- thd->set_query_id is renamed to thd->mark_used_columns and instead
of setting this to an integer value, this has now the values:
MARK_COLUMNS_NONE, MARK_COLUMNS_READ, MARK_COLUMNS_WRITE
Changed also all variables named 'set_query_id' to mark_used_columns.
- In filesort() we now inform the handler of exactly which columns are needed
doing the sort and choosing the rows.
- The TABLE_SHARE object has a 'all_set' column bitmap one can use
when one needs a column bitmap with all columns set.
(This is used for table->use_all_columns() and other places)
- The TABLE object has 3 column bitmaps:
- def_read_set Default bitmap for columns to be read
- def_write_set Default bitmap for columns to be written
- tmp_set Can be used as a temporary bitmap when needed.
The table object has also two pointer to bitmaps read_set and write_set
that the handler should use to find out which columns are used in which way.
- count() optimization now calls handler::records() instead of using
handler->stats.records (if (table_flags() & HA_HAS_RECORDS) is true).
- Added extra argument to Item::walk() to indicate if we should also
traverse sub queries.
- Added TABLE parameter to cp_buffer_from_ref()
- Don't close tables created with CREATE ... SELECT but keep them in
the table cache. (Faster usage of newly created tables).
New interfaces:
- table->clear_column_bitmaps() to initialize the bitmaps for tables
at start of new statements.
- table->column_bitmaps_set() to set up new column bitmaps and signal
the handler about this.
- table->column_bitmaps_set_no_signal() for some few cases where we need
to setup new column bitmaps but don't signal the handler (as the handler
has already been signaled about these before). Used for the momement
only in opt_range.cc when doing ROR scans.
- table->use_all_columns() to install a bitmap where all columns are marked
as use in the read and the write set.
- table->default_column_bitmaps() to install the normal read and write
column bitmaps, but not signaling the handler about this.
This is mainly used when creating TABLE instances.
- table->mark_columns_needed_for_delete(),
table->mark_columns_needed_for_delete() and
table->mark_columns_needed_for_insert() to allow us to put additional
columns in column usage maps if handler so requires.
(The handler indicates what it neads in handler->table_flags())
- table->prepare_for_position() to allow us to tell handler that it
needs to read primary key parts to be able to store them in
future table->position() calls.
(This replaces the table->file->ha_retrieve_all_pk function)
- table->mark_auto_increment_column() to tell handler are going to update
columns part of any auto_increment key.
- table->mark_columns_used_by_index() to mark all columns that is part of
an index. It will also send extra(HA_EXTRA_KEYREAD) to handler to allow
it to quickly know that it only needs to read colums that are part
of the key. (The handler can also use the column map for detecting this,
but simpler/faster handler can just monitor the extra() call).
- table->mark_columns_used_by_index_no_reset() to in addition to other columns,
also mark all columns that is used by the given key.
- table->restore_column_maps_after_mark_index() to restore to default
column maps after a call to table->mark_columns_used_by_index().
- New item function register_field_in_read_map(), for marking used columns
in table->read_map. Used by filesort() to mark all used columns
- Maintain in TABLE->merge_keys set of all keys that are used in query.
(Simplices some optimization loops)
- Maintain Field->part_of_key_not_clustered which is like Field->part_of_key
but the field in the clustered key is not assumed to be part of all index.
(used in opt_range.cc for faster loops)
- dbug_tmp_use_all_columns(), dbug_tmp_restore_column_map()
tmp_use_all_columns() and tmp_restore_column_map() functions to temporally
mark all columns as usable. The 'dbug_' version is primarily intended
inside a handler when it wants to just call Field:store() & Field::val()
functions, but don't need the column maps set for any other usage.
(ie:: bitmap_is_set() is never called)
- We can't use compare_records() to skip updates for handlers that returns
a partial column set and the read_set doesn't cover all columns in the
write set. The reason for this is that if we have a column marked only for
write we can't in the MySQL level know if the value changed or not.
The reason this worked before was that MySQL marked all to be written
columns as also to be read. The new 'optimal' bitmaps exposed this 'hidden
bug'.
- open_table_from_share() does not anymore setup temporary MEM_ROOT
object as a thread specific variable for the handler. Instead we
send the to-be-used MEMROOT to get_new_handler().
(Simpler, faster code)
Bugs fixed:
- Column marking was not done correctly in a lot of cases.
(ALTER TABLE, when using triggers, auto_increment fields etc)
(Could potentially result in wrong values inserted in table handlers
relying on that the old column maps or field->set_query_id was correct)
Especially when it comes to triggers, there may be cases where the
old code would cause lost/wrong values for NDB and/or InnoDB tables.
- Split thd->options flag OPTION_STATUS_NO_TRANS_UPDATE to two flags:
OPTION_STATUS_NO_TRANS_UPDATE and OPTION_KEEP_LOG.
This allowed me to remove some wrong warnings about:
"Some non-transactional changed tables couldn't be rolled back"
- Fixed handling of INSERT .. SELECT and CREATE ... SELECT that wrongly reset
(thd->options & OPTION_STATUS_NO_TRANS_UPDATE) which caused us to loose
some warnings about
"Some non-transactional changed tables couldn't be rolled back")
- Fixed use of uninitialized memory in ha_ndbcluster.cc::delete_table()
which could cause delete_table to report random failures.
- Fixed core dumps for some tests when running with --debug
- Added missing FN_LIBCHAR in mysql_rm_tmp_tables()
(This has probably caused us to not properly remove temporary files after
crash)
- slow_logs was not properly initialized, which could maybe cause
extra/lost entries in slow log.
- If we get an duplicate row on insert, change column map to read and
write all columns while retrying the operation. This is required by
the definition of REPLACE and also ensures that fields that are only
part of UPDATE are properly handled. This fixed a bug in NDB and
REPLACE where REPLACE wrongly copied some column values from the replaced
row.
- For table handler that doesn't support NULL in keys, we would give an error
when creating a primary key with NULL fields, even after the fields has been
automaticly converted to NOT NULL.
- Creating a primary key on a SPATIAL key, would fail if field was not
declared as NOT NULL.
Cleanups:
- Removed not used condition argument to setup_tables
- Removed not needed item function reset_query_id_processor().
- Field->add_index is removed. Now this is instead maintained in
(field->flags & FIELD_IN_ADD_INDEX)
- Field->fieldnr is removed (use field->field_index instead)
- New argument to filesort() to indicate that it should return a set of
row pointers (not used columns). This allowed me to remove some references
to sql_command in filesort and should also enable us to return column
results in some cases where we couldn't before.
- Changed column bitmap handling in opt_range.cc to be aligned with TABLE
bitmap, which allowed me to use bitmap functions instead of looping over
all fields to create some needed bitmaps. (Faster and smaller code)
- Broke up found too long lines
- Moved some variable declaration at start of function for better code
readability.
- Removed some not used arguments from functions.
(setup_fields(), mysql_prepare_insert_check_table())
- setup_fields() now takes an enum instead of an int for marking columns
usage.
- For internal temporary tables, use handler::write_row(),
handler::delete_row() and handler::update_row() instead of
handler::ha_xxxx() for faster execution.
- Changed some constants to enum's and define's.
- Using separate column read and write sets allows for easier checking
of timestamp field was set by statement.
- Remove calls to free_io_cache() as this is now done automaticly in ha_reset()
- Don't build table->normalized_path as this is now identical to table->path
(after bar's fixes to convert filenames)
- Fixed some missed DBUG_PRINT(.."%lx") to use "0x%lx" to make it easier to
do comparision with the 'convert-dbug-for-diff' tool.
Things left to do in 5.1:
- We wrongly log failed CREATE TABLE ... SELECT in some cases when using
row based logging (as shown by testcase binlog_row_mix_innodb_myisam.result)
Mats has promised to look into this.
- Test that my fix for CREATE TABLE ... SELECT is indeed correct.
(I added several test cases for this, but in this case it's better that
someone else also tests this throughly).
Lars has promosed to do this.
2006-06-04 17:52:22 +02:00
|
|
|
#define FIELD_IN_ADD_INDEX (1<< 20) /* Intern: Field used in ADD INDEX */
|
2006-06-14 11:08:36 +02:00
|
|
|
#define FIELD_IS_RENAMED (1<< 21) /* Intern: Field is being renamed */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
#define REFRESH_GRANT 1 /* Refresh grant tables */
|
|
|
|
#define REFRESH_LOG 2 /* Start on new log file */
|
|
|
|
#define REFRESH_TABLES 4 /* close all tables */
|
|
|
|
#define REFRESH_HOSTS 8 /* Flush host cache */
|
|
|
|
#define REFRESH_STATUS 16 /* Flush status variables */
|
2002-03-26 12:24:50 +01:00
|
|
|
#define REFRESH_THREADS 32 /* Flush thread cache */
|
2000-07-31 21:29:14 +02:00
|
|
|
#define REFRESH_SLAVE 64 /* Reset master info and restart slave
|
|
|
|
thread */
|
|
|
|
#define REFRESH_MASTER 128 /* Remove all bin logs in the index
|
|
|
|
and truncate the index */
|
|
|
|
|
|
|
|
/* The following can't be set with mysql_refresh() */
|
|
|
|
#define REFRESH_READ_LOCK 16384 /* Lock tables for read */
|
|
|
|
#define REFRESH_FAST 32768 /* Intern flag */
|
|
|
|
|
2001-12-06 00:05:30 +01:00
|
|
|
/* RESET (remove all queries) from query cache */
|
|
|
|
#define REFRESH_QUERY_CACHE 65536
|
|
|
|
#define REFRESH_QUERY_CACHE_FREE 0x20000L /* pack query cache */
|
2001-12-13 14:53:18 +01:00
|
|
|
#define REFRESH_DES_KEY_FILE 0x40000L
|
2002-05-15 12:50:38 +02:00
|
|
|
#define REFRESH_USER_RESOURCES 0x80000L
|
2001-12-02 13:34:01 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#define CLIENT_LONG_PASSWORD 1 /* new more secure passwords */
|
|
|
|
#define CLIENT_FOUND_ROWS 2 /* Found instead of affected rows */
|
|
|
|
#define CLIENT_LONG_FLAG 4 /* Get all column flags */
|
|
|
|
#define CLIENT_CONNECT_WITH_DB 8 /* One can specify db on connect */
|
|
|
|
#define CLIENT_NO_SCHEMA 16 /* Don't allow database.table.column */
|
|
|
|
#define CLIENT_COMPRESS 32 /* Can use compression protocol */
|
|
|
|
#define CLIENT_ODBC 64 /* Odbc client */
|
|
|
|
#define CLIENT_LOCAL_FILES 128 /* Can use LOAD DATA LOCAL */
|
|
|
|
#define CLIENT_IGNORE_SPACE 256 /* Ignore spaces before '(' */
|
2003-05-26 18:01:20 +02:00
|
|
|
#define CLIENT_PROTOCOL_41 512 /* New 4.1 protocol */
|
2000-07-31 21:29:14 +02:00
|
|
|
#define CLIENT_INTERACTIVE 1024 /* This is an interactive client */
|
2003-05-26 18:01:20 +02:00
|
|
|
#define CLIENT_SSL 2048 /* Switch to SSL after handshake */
|
|
|
|
#define CLIENT_IGNORE_SIGPIPE 4096 /* IGNORE sigpipes */
|
2001-03-14 22:12:15 +01:00
|
|
|
#define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */
|
2003-05-26 18:01:20 +02:00
|
|
|
#define CLIENT_RESERVED 16384 /* Old flag for 4.1 protocol */
|
|
|
|
#define CLIENT_SECURE_CONNECTION 32768 /* New 4.1 authentication */
|
2006-09-22 11:46:18 +02:00
|
|
|
#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */
|
|
|
|
#define CLIENT_MULTI_RESULTS (1UL << 17) /* Enable/disable multi-results */
|
2006-08-25 17:54:33 +02:00
|
|
|
|
2006-09-22 11:46:18 +02:00
|
|
|
#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30)
|
|
|
|
#define CLIENT_REMEMBER_OPTIONS (1UL << 31)
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
#define SERVER_STATUS_IN_TRANS 1 /* Transaction has started */
|
|
|
|
#define SERVER_STATUS_AUTOCOMMIT 2 /* Server in auto_commit mode */
|
2003-01-18 20:53:38 +01:00
|
|
|
#define SERVER_MORE_RESULTS_EXISTS 8 /* Multi query - next query exists */
|
2003-12-06 23:21:09 +01:00
|
|
|
#define SERVER_QUERY_NO_GOOD_INDEX_USED 16
|
|
|
|
#define SERVER_QUERY_NO_INDEX_USED 32
|
2004-08-03 12:32:21 +02:00
|
|
|
/*
|
2005-06-30 14:17:10 +02:00
|
|
|
The server was able to fulfill the clients request and opened a
|
|
|
|
read-only non-scrollable cursor for a query. This flag comes
|
|
|
|
in reply to COM_STMT_EXECUTE and COM_STMT_FETCH commands.
|
2004-08-03 12:32:21 +02:00
|
|
|
*/
|
|
|
|
#define SERVER_STATUS_CURSOR_EXISTS 64
|
|
|
|
/*
|
2005-06-30 14:17:10 +02:00
|
|
|
This flag is sent when a read-only cursor is exhausted, in reply to
|
|
|
|
COM_STMT_FETCH command.
|
2004-08-03 12:32:21 +02:00
|
|
|
*/
|
|
|
|
#define SERVER_STATUS_LAST_ROW_SENT 128
|
2004-10-21 14:02:24 +02:00
|
|
|
#define SERVER_STATUS_DB_DROPPED 256 /* A database was dropped */
|
2005-06-24 03:29:56 +02:00
|
|
|
#define SERVER_STATUS_NO_BACKSLASH_ESCAPES 512
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2003-05-26 18:01:20 +02:00
|
|
|
#define MYSQL_ERRMSG_SIZE 512
|
2000-07-31 21:29:14 +02:00
|
|
|
#define NET_READ_TIMEOUT 30 /* Timeout on read */
|
|
|
|
#define NET_WRITE_TIMEOUT 60 /* Timeout on write */
|
|
|
|
#define NET_WAIT_TIMEOUT 8*60*60 /* Wait for new query */
|
|
|
|
|
2003-03-21 06:37:01 +01:00
|
|
|
#define ONLY_KILL_QUERY 1
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
struct st_vio; /* Only C */
|
|
|
|
typedef struct st_vio Vio;
|
|
|
|
|
2004-09-10 18:56:47 +02:00
|
|
|
#define MAX_TINYINT_WIDTH 3 /* Max width for a TINY w.o. sign */
|
|
|
|
#define MAX_SMALLINT_WIDTH 5 /* Max width for a SHORT w.o. sign */
|
|
|
|
#define MAX_MEDIUMINT_WIDTH 8 /* Max width for a INT24 w.o. sign */
|
|
|
|
#define MAX_INT_WIDTH 10 /* Max width for a LONG w.o. sign */
|
|
|
|
#define MAX_BIGINT_WIDTH 20 /* Max width for a LONGLONG */
|
2002-03-26 23:50:54 +01:00
|
|
|
#define MAX_CHAR_WIDTH 255 /* Max length for a CHAR colum */
|
2006-09-22 15:35:52 +02:00
|
|
|
#define MAX_BLOB_WIDTH 16777216 /* Default width for blob */
|
2001-09-27 20:45:48 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
typedef struct st_net {
|
2003-06-04 12:12:32 +02:00
|
|
|
#if !defined(CHECK_EMBEDDED_DIFFERENCES) || !defined(EMBEDDED_LIBRARY)
|
2000-07-31 21:29:14 +02:00
|
|
|
Vio* vio;
|
2001-10-04 01:44:18 +02:00
|
|
|
unsigned char *buff,*buff_end,*write_pos,*read_pos;
|
2000-07-31 21:29:14 +02:00
|
|
|
my_socket fd; /* For Perl DBI/dbd */
|
2002-07-23 17:31:22 +02:00
|
|
|
unsigned long max_packet,max_packet_size;
|
2002-12-16 14:33:29 +01:00
|
|
|
unsigned int pkt_nr,compress_pkt_nr;
|
2002-08-08 19:49:06 +02:00
|
|
|
unsigned int write_timeout, read_timeout, retry_count;
|
2000-07-31 21:29:14 +02:00
|
|
|
int fcntl;
|
2002-12-16 14:33:29 +01:00
|
|
|
my_bool compress;
|
2001-09-22 16:40:57 +02:00
|
|
|
/*
|
|
|
|
The following variable is set if we are doing several queries in one
|
|
|
|
command ( as in LOAD TABLE ... FROM MASTER ),
|
|
|
|
and do not want to confuse the client with OK at the wrong time
|
|
|
|
*/
|
2000-07-31 21:29:14 +02:00
|
|
|
unsigned long remain_in_buf,length, buf_length, where_b;
|
|
|
|
unsigned int *return_status;
|
|
|
|
unsigned char reading_or_writing;
|
|
|
|
char save_char;
|
2003-11-27 16:48:21 +01:00
|
|
|
my_bool no_send_ok; /* For SPs and other things that do multiple stmts */
|
|
|
|
my_bool no_send_eof; /* For SPs' first version read-only cursors */
|
2005-01-20 09:41:37 +01:00
|
|
|
/*
|
|
|
|
Set if OK packet is already sent, and we do not need to send error
|
|
|
|
messages
|
|
|
|
*/
|
|
|
|
my_bool no_send_error;
|
2002-12-04 23:14:51 +01:00
|
|
|
/*
|
|
|
|
Pointer to query object in query cache, do not equal NULL (0) for
|
|
|
|
queries in cache that have not stored its results yet
|
2002-09-03 08:50:36 +02:00
|
|
|
*/
|
2002-12-16 14:33:29 +01:00
|
|
|
#endif
|
2003-05-26 18:01:20 +02:00
|
|
|
char last_error[MYSQL_ERRMSG_SIZE], sqlstate[SQLSTATE_LENGTH+1];
|
2002-12-16 14:33:29 +01:00
|
|
|
unsigned int last_errno;
|
|
|
|
unsigned char error;
|
2006-08-22 09:47:52 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
'query_cache_query' should be accessed only via query cache
|
|
|
|
functions and methods to maintain proper locking.
|
|
|
|
*/
|
2002-12-04 23:14:51 +01:00
|
|
|
gptr query_cache_query;
|
2006-08-22 09:47:52 +02:00
|
|
|
|
2002-12-16 14:33:29 +01:00
|
|
|
my_bool report_error; /* We should report error (we have unreported error) */
|
|
|
|
my_bool return_errno;
|
2000-07-31 21:29:14 +02:00
|
|
|
} NET;
|
|
|
|
|
2001-10-04 01:44:18 +02:00
|
|
|
#define packet_error (~(unsigned long) 0)
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2002-06-12 22:47:32 +02:00
|
|
|
enum enum_field_types { MYSQL_TYPE_DECIMAL, MYSQL_TYPE_TINY,
|
|
|
|
MYSQL_TYPE_SHORT, MYSQL_TYPE_LONG,
|
|
|
|
MYSQL_TYPE_FLOAT, MYSQL_TYPE_DOUBLE,
|
|
|
|
MYSQL_TYPE_NULL, MYSQL_TYPE_TIMESTAMP,
|
|
|
|
MYSQL_TYPE_LONGLONG,MYSQL_TYPE_INT24,
|
|
|
|
MYSQL_TYPE_DATE, MYSQL_TYPE_TIME,
|
|
|
|
MYSQL_TYPE_DATETIME, MYSQL_TYPE_YEAR,
|
2004-12-06 01:00:37 +01:00
|
|
|
MYSQL_TYPE_NEWDATE, MYSQL_TYPE_VARCHAR,
|
2004-12-17 15:06:05 +01:00
|
|
|
MYSQL_TYPE_BIT,
|
2005-02-08 23:50:45 +01:00
|
|
|
MYSQL_TYPE_NEWDECIMAL=246,
|
2002-06-12 22:47:32 +02:00
|
|
|
MYSQL_TYPE_ENUM=247,
|
|
|
|
MYSQL_TYPE_SET=248,
|
|
|
|
MYSQL_TYPE_TINY_BLOB=249,
|
|
|
|
MYSQL_TYPE_MEDIUM_BLOB=250,
|
|
|
|
MYSQL_TYPE_LONG_BLOB=251,
|
|
|
|
MYSQL_TYPE_BLOB=252,
|
|
|
|
MYSQL_TYPE_VAR_STRING=253,
|
|
|
|
MYSQL_TYPE_STRING=254,
|
|
|
|
MYSQL_TYPE_GEOMETRY=255
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
2002-06-12 22:47:32 +02:00
|
|
|
/* For backward compatibility */
|
2003-11-18 12:47:27 +01:00
|
|
|
#define CLIENT_MULTI_QUERIES CLIENT_MULTI_STATEMENTS
|
2002-12-04 23:14:51 +01:00
|
|
|
#define FIELD_TYPE_DECIMAL MYSQL_TYPE_DECIMAL
|
2005-02-08 23:50:45 +01:00
|
|
|
#define FIELD_TYPE_NEWDECIMAL MYSQL_TYPE_NEWDECIMAL
|
2002-12-04 23:14:51 +01:00
|
|
|
#define FIELD_TYPE_TINY MYSQL_TYPE_TINY
|
|
|
|
#define FIELD_TYPE_SHORT MYSQL_TYPE_SHORT
|
|
|
|
#define FIELD_TYPE_LONG MYSQL_TYPE_LONG
|
|
|
|
#define FIELD_TYPE_FLOAT MYSQL_TYPE_FLOAT
|
|
|
|
#define FIELD_TYPE_DOUBLE MYSQL_TYPE_DOUBLE
|
|
|
|
#define FIELD_TYPE_NULL MYSQL_TYPE_NULL
|
|
|
|
#define FIELD_TYPE_TIMESTAMP MYSQL_TYPE_TIMESTAMP
|
|
|
|
#define FIELD_TYPE_LONGLONG MYSQL_TYPE_LONGLONG
|
|
|
|
#define FIELD_TYPE_INT24 MYSQL_TYPE_INT24
|
|
|
|
#define FIELD_TYPE_DATE MYSQL_TYPE_DATE
|
|
|
|
#define FIELD_TYPE_TIME MYSQL_TYPE_TIME
|
|
|
|
#define FIELD_TYPE_DATETIME MYSQL_TYPE_DATETIME
|
|
|
|
#define FIELD_TYPE_YEAR MYSQL_TYPE_YEAR
|
|
|
|
#define FIELD_TYPE_NEWDATE MYSQL_TYPE_NEWDATE
|
|
|
|
#define FIELD_TYPE_ENUM MYSQL_TYPE_ENUM
|
|
|
|
#define FIELD_TYPE_SET MYSQL_TYPE_SET
|
|
|
|
#define FIELD_TYPE_TINY_BLOB MYSQL_TYPE_TINY_BLOB
|
|
|
|
#define FIELD_TYPE_MEDIUM_BLOB MYSQL_TYPE_MEDIUM_BLOB
|
2002-06-12 22:47:32 +02:00
|
|
|
#define FIELD_TYPE_LONG_BLOB MYSQL_TYPE_LONG_BLOB
|
2002-12-04 23:14:51 +01:00
|
|
|
#define FIELD_TYPE_BLOB MYSQL_TYPE_BLOB
|
|
|
|
#define FIELD_TYPE_VAR_STRING MYSQL_TYPE_VAR_STRING
|
|
|
|
#define FIELD_TYPE_STRING MYSQL_TYPE_STRING
|
|
|
|
#define FIELD_TYPE_CHAR MYSQL_TYPE_TINY
|
2002-06-12 22:47:32 +02:00
|
|
|
#define FIELD_TYPE_INTERVAL MYSQL_TYPE_ENUM
|
2002-12-04 23:14:51 +01:00
|
|
|
#define FIELD_TYPE_GEOMETRY MYSQL_TYPE_GEOMETRY
|
2004-12-17 15:06:05 +01:00
|
|
|
#define FIELD_TYPE_BIT MYSQL_TYPE_BIT
|
2002-06-12 22:47:32 +02:00
|
|
|
|
2004-08-19 01:03:43 +02:00
|
|
|
|
|
|
|
/* Shutdown/kill enums and constants */
|
|
|
|
|
|
|
|
/* Bits for THD::killable. */
|
2004-08-19 15:10:59 +02:00
|
|
|
#define MYSQL_SHUTDOWN_KILLABLE_CONNECT (unsigned char)(1 << 0)
|
|
|
|
#define MYSQL_SHUTDOWN_KILLABLE_TRANS (unsigned char)(1 << 1)
|
|
|
|
#define MYSQL_SHUTDOWN_KILLABLE_LOCK_TABLE (unsigned char)(1 << 2)
|
|
|
|
#define MYSQL_SHUTDOWN_KILLABLE_UPDATE (unsigned char)(1 << 3)
|
2004-08-19 01:03:43 +02:00
|
|
|
|
2004-08-19 15:15:52 +02:00
|
|
|
enum mysql_enum_shutdown_level {
|
2004-06-15 11:35:23 +02:00
|
|
|
/*
|
2004-08-19 01:03:43 +02:00
|
|
|
We want levels to be in growing order of hardness (because we use number
|
|
|
|
comparisons). Note that DEFAULT does not respect the growing property, but
|
|
|
|
it's ok.
|
2004-06-15 11:35:23 +02:00
|
|
|
*/
|
2004-08-19 20:48:00 +02:00
|
|
|
SHUTDOWN_DEFAULT = 0,
|
2004-08-19 01:03:43 +02:00
|
|
|
/* wait for existing connections to finish */
|
2004-08-19 20:48:00 +02:00
|
|
|
SHUTDOWN_WAIT_CONNECTIONS= MYSQL_SHUTDOWN_KILLABLE_CONNECT,
|
2004-08-19 01:03:43 +02:00
|
|
|
/* wait for existing trans to finish */
|
2004-08-19 20:48:00 +02:00
|
|
|
SHUTDOWN_WAIT_TRANSACTIONS= MYSQL_SHUTDOWN_KILLABLE_TRANS,
|
2004-08-19 01:03:43 +02:00
|
|
|
/* wait for existing updates to finish (=> no partial MyISAM update) */
|
2004-08-19 20:48:00 +02:00
|
|
|
SHUTDOWN_WAIT_UPDATES= MYSQL_SHUTDOWN_KILLABLE_UPDATE,
|
2004-08-19 01:03:43 +02:00
|
|
|
/* flush InnoDB buffers and other storage engines' buffers*/
|
2004-08-19 20:48:00 +02:00
|
|
|
SHUTDOWN_WAIT_ALL_BUFFERS= (MYSQL_SHUTDOWN_KILLABLE_UPDATE << 1),
|
2004-08-19 01:03:43 +02:00
|
|
|
/* don't flush InnoDB buffers, flush other storage engines' buffers*/
|
2004-08-19 20:48:00 +02:00
|
|
|
SHUTDOWN_WAIT_CRITICAL_BUFFERS= (MYSQL_SHUTDOWN_KILLABLE_UPDATE << 1) + 1,
|
2004-06-21 23:04:50 +02:00
|
|
|
/* Now the 2 levels of the KILL command */
|
|
|
|
#if MYSQL_VERSION_ID >= 50000
|
|
|
|
KILL_QUERY= 254,
|
|
|
|
#endif
|
|
|
|
KILL_CONNECTION= 255
|
2004-06-15 11:35:23 +02:00
|
|
|
};
|
|
|
|
|
2004-08-03 12:32:21 +02:00
|
|
|
|
|
|
|
enum enum_cursor_type
|
|
|
|
{
|
|
|
|
CURSOR_TYPE_NO_CURSOR= 0,
|
|
|
|
CURSOR_TYPE_READ_ONLY= 1,
|
|
|
|
CURSOR_TYPE_FOR_UPDATE= 2,
|
|
|
|
CURSOR_TYPE_SCROLLABLE= 4
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-18 12:47:27 +01:00
|
|
|
/* options for mysql_set_option */
|
|
|
|
enum enum_mysql_set_option
|
|
|
|
{
|
|
|
|
MYSQL_OPTION_MULTI_STATEMENTS_ON,
|
|
|
|
MYSQL_OPTION_MULTI_STATEMENTS_OFF
|
|
|
|
};
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#define net_new_transaction(net) ((net)->pkt_nr=0)
|
|
|
|
|
2001-04-25 00:11:29 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
my_bool my_net_init(NET *net, Vio* vio);
|
2002-07-23 17:31:22 +02:00
|
|
|
void my_net_local_init(NET *net);
|
2000-07-31 21:29:14 +02:00
|
|
|
void net_end(NET *net);
|
|
|
|
void net_clear(NET *net);
|
2002-10-02 12:33:08 +02:00
|
|
|
my_bool net_realloc(NET *net, unsigned long length);
|
|
|
|
my_bool net_flush(NET *net);
|
|
|
|
my_bool my_net_write(NET *net,const char *packet,unsigned long len);
|
|
|
|
my_bool net_write_command(NET *net,unsigned char command,
|
|
|
|
const char *header, unsigned long head_len,
|
|
|
|
const char *packet, unsigned long len);
|
2000-07-31 21:29:14 +02:00
|
|
|
int net_real_write(NET *net,const char *packet,unsigned long len);
|
2001-04-11 13:04:03 +02:00
|
|
|
unsigned long my_net_read(NET *net);
|
2001-10-08 06:52:53 +02:00
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
/*
|
|
|
|
The following function is not meant for normal usage
|
|
|
|
Currently it's used internally by manager.c
|
|
|
|
*/
|
2001-10-08 06:52:53 +02:00
|
|
|
struct sockaddr;
|
2003-08-18 23:08:08 +02:00
|
|
|
int my_connect(my_socket s, const struct sockaddr *name, unsigned int namelen,
|
|
|
|
unsigned int timeout);
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
struct rand_struct {
|
|
|
|
unsigned long seed1,seed2,max_value;
|
|
|
|
double max_value_dbl;
|
|
|
|
};
|
|
|
|
|
2001-04-25 00:11:29 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
/* The following is for user defined functions */
|
|
|
|
|
2005-02-11 22:30:37 +01:00
|
|
|
enum Item_result {STRING_RESULT=0, REAL_RESULT, INT_RESULT, ROW_RESULT,
|
2005-02-08 23:50:45 +01:00
|
|
|
DECIMAL_RESULT};
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
typedef struct st_udf_args
|
|
|
|
{
|
|
|
|
unsigned int arg_count; /* Number of arguments */
|
|
|
|
enum Item_result *arg_type; /* Pointer to item_results */
|
|
|
|
char **args; /* Pointer to argument */
|
|
|
|
unsigned long *lengths; /* Length of string arguments */
|
|
|
|
char *maybe_null; /* Set to 1 for all maybe_null args */
|
2003-09-13 16:47:59 +02:00
|
|
|
char **attributes; /* Pointer to attribute name */
|
|
|
|
unsigned long *attribute_lengths; /* Length of attribute arguments */
|
2000-07-31 21:29:14 +02:00
|
|
|
} UDF_ARGS;
|
|
|
|
|
|
|
|
/* This holds information about the result */
|
|
|
|
|
|
|
|
typedef struct st_udf_init
|
|
|
|
{
|
|
|
|
my_bool maybe_null; /* 1 if function can return NULL */
|
|
|
|
unsigned int decimals; /* for real functions */
|
2001-10-09 02:35:29 +02:00
|
|
|
unsigned long max_length; /* For string functions */
|
2000-07-31 21:29:14 +02:00
|
|
|
char *ptr; /* free pointer for function data */
|
|
|
|
my_bool const_item; /* 0 if result is independent of arguments */
|
|
|
|
} UDF_INIT;
|
|
|
|
|
|
|
|
/* Constants when using compression */
|
|
|
|
#define NET_HEADER_SIZE 4 /* standard header size */
|
|
|
|
#define COMP_HEADER_SIZE 3 /* compression header extra size */
|
|
|
|
|
|
|
|
/* Prototypes to password functions */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2003-07-01 21:40:59 +02:00
|
|
|
/*
|
|
|
|
These functions are used for authentication by client and server and
|
|
|
|
implemented in sql/password.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
void randominit(struct rand_struct *, unsigned long seed1,
|
|
|
|
unsigned long seed2);
|
2003-03-18 22:14:02 +01:00
|
|
|
double my_rnd(struct rand_struct *);
|
2003-10-08 13:26:29 +02:00
|
|
|
void create_random_string(char *to, unsigned int length, struct rand_struct *rand_st);
|
2003-07-01 21:40:59 +02:00
|
|
|
|
2003-10-08 13:26:29 +02:00
|
|
|
void hash_password(unsigned long *to, const char *password, unsigned int password_len);
|
2003-07-01 21:40:59 +02:00
|
|
|
void make_scrambled_password_323(char *to, const char *password);
|
2003-07-18 16:25:54 +02:00
|
|
|
void scramble_323(char *to, const char *message, const char *password);
|
2003-07-01 21:40:59 +02:00
|
|
|
my_bool check_scramble_323(const char *, const char *message,
|
2003-07-08 00:36:14 +02:00
|
|
|
unsigned long *salt);
|
2003-07-01 21:40:59 +02:00
|
|
|
void get_salt_from_password_323(unsigned long *res, const char *password);
|
|
|
|
void make_password_from_salt_323(char *to, const unsigned long *salt);
|
|
|
|
|
|
|
|
void make_scrambled_password(char *to, const char *password);
|
2003-07-04 18:52:04 +02:00
|
|
|
void scramble(char *to, const char *message, const char *password);
|
2003-07-01 21:40:59 +02:00
|
|
|
my_bool check_scramble(const char *reply, const char *message,
|
|
|
|
const unsigned char *hash_stage2);
|
|
|
|
void get_salt_from_password(unsigned char *res, const char *password);
|
|
|
|
void make_password_from_salt(char *to, const unsigned char *hash_stage2);
|
2005-10-11 23:58:22 +02:00
|
|
|
char *octet2hex(char *to, const char *str, unsigned int len);
|
2003-07-01 21:40:59 +02:00
|
|
|
|
|
|
|
/* end of password.c */
|
|
|
|
|
2006-05-18 16:57:50 +02:00
|
|
|
char *get_tty_password(const char *opt_message);
|
2003-06-08 18:11:14 +02:00
|
|
|
const char *mysql_errno_to_sqlstate(unsigned int mysql_errno);
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
/* Some other useful functions */
|
|
|
|
|
2001-08-10 16:37:37 +02:00
|
|
|
my_bool my_thread_init(void);
|
2001-08-03 23:10:00 +02:00
|
|
|
void my_thread_end(void);
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2003-04-23 16:37:33 +02:00
|
|
|
#ifdef _global_h
|
|
|
|
ulong STDCALL net_field_length(uchar **packet);
|
2003-04-28 11:25:29 +02:00
|
|
|
my_ulonglong net_field_length_ll(uchar **packet);
|
2003-06-18 12:58:57 +02:00
|
|
|
char *net_store_length(char *pkg, ulonglong length);
|
2003-04-23 16:37:33 +02:00
|
|
|
#endif
|
|
|
|
|
2001-05-31 16:42:37 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
#define NULL_LENGTH ((unsigned long) ~0) /* For net_store_length */
|
2002-11-22 20:58:20 +01:00
|
|
|
#define MYSQL_STMT_HEADER 4
|
2004-05-25 00:03:49 +02:00
|
|
|
#define MYSQL_LONG_DATA_HEADER 6
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
#endif
|