1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
|
#ifndef SQL_PREPARE_H
#define SQL_PREPARE_H
/* Copyright (c) 2009, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
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, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <assert.h>
#include <stddef.h>
#include <sys/types.h>
#include <new>
#include "lex_string.h"
#include "my_alloc.h"
#include "my_command.h"
#include "my_inttypes.h"
#include "my_psi_config.h"
#include "mysql/components/services/bits/psi_statement_bits.h"
#include "mysql_com.h"
#include "sql/sql_class.h" // Query_arena
#include "sql/sql_error.h"
#include "sql/sql_list.h"
class Item;
class Item_param;
class Prepared_statement;
class Query_result_send;
class String;
struct LEX;
struct PS_PARAM;
class Table_ref;
union COM_DATA;
/**
An interface that is used to take an action when
the locking module notices that a table version has changed
since the last execution. "Table" here may refer to any kind of
table -- a base table, a temporary table, a view or an
information schema table.
When we open and lock tables for execution of a prepared
statement, we must verify that they did not change
since statement prepare. If some table did change, the statement
parse tree *may* be no longer valid, e.g. in case it contains
optimizations that depend on table metadata.
This class provides an interface (a method) that is
invoked when such a situation takes place.
The implementation of the method simply reports an error, but
the exact details depend on the nature of the SQL statement.
At most 1 instance of this class is active at a time, in which
case THD::m_reprepare_observer is not NULL.
@sa check_and_update_table_version() for details of the
version tracking algorithm
@sa Open_tables_state::m_reprepare_observer for the life cycle
of metadata observers.
*/
class Reprepare_observer final {
public:
/**
Check if a change of metadata is OK. In future
the signature of this method may be extended to accept the old
and the new versions, but since currently the check is very
simple, we only need the THD to report an error.
*/
bool report_error(THD *thd);
/**
@returns true if some table metadata is changed and statement should be
re-prepared.
*/
bool is_invalidated() const { return m_invalidated; }
void reset_reprepare_observer() { m_invalidated = false; }
/// @returns true if prepared statement can (and will) be retried
bool can_retry() const {
// Only call for a statement that is invalidated
assert(is_invalidated());
return m_attempt <= MAX_REPREPARE_ATTEMPTS &&
DBUG_EVALUATE_IF("simulate_max_reprepare_attempts_hit_case", false,
true);
}
private:
bool m_invalidated{false};
int m_attempt{0};
/*
We take only 3 attempts to reprepare the query, otherwise we might end up
in endless loop.
*/
static constexpr int MAX_REPREPARE_ATTEMPTS = 3;
};
bool ask_to_reprepare(THD *thd);
bool mysql_stmt_precheck(THD *thd, const COM_DATA *com_data,
enum enum_server_command cmd,
Prepared_statement **stmt);
void mysqld_stmt_prepare(THD *thd, const char *query, uint length,
Prepared_statement *stmt);
void mysqld_stmt_execute(THD *thd, Prepared_statement *stmt, bool has_new_types,
ulong execute_flags, PS_PARAM *parameters);
void mysqld_stmt_close(THD *thd, Prepared_statement *stmt);
void mysql_sql_stmt_prepare(THD *thd);
void mysql_sql_stmt_execute(THD *thd);
void mysql_sql_stmt_close(THD *thd);
void mysqld_stmt_fetch(THD *thd, Prepared_statement *stmt, ulong num_rows);
void mysqld_stmt_reset(THD *thd, Prepared_statement *stmt);
void mysql_stmt_get_longdata(THD *thd, Prepared_statement *stmt,
uint param_number, uchar *longdata, ulong length);
bool select_like_stmt_cmd_test(THD *thd, class Sql_cmd_dml *cmd,
ulong setup_tables_done_option);
/**
Execute a fragment of server code in an isolated context, so that
it doesn't leave any effect on THD. THD must have no open tables.
The code must not leave any open tables around.
The result of execution (if any) is stored in Ed_result.
*/
class Server_runnable {
public:
virtual bool execute_server_code(THD *thd) = 0;
virtual ~Server_runnable();
};
/**
Execute direct interface.
@todo Implement support for prelocked mode.
*/
class Ed_row;
/**
Ed_result_set -- a container with result set rows.
@todo Implement support for result set metadata and
automatic type conversion.
*/
class Ed_result_set final {
public:
operator List<Ed_row> &() { return *m_rows; }
unsigned int size() const { return m_rows->elements; }
Ed_row *get_fields() { return m_fields; }
Ed_result_set(List<Ed_row> *rows_arg, Ed_row *fields, size_t column_count,
MEM_ROOT *mem_root_arg);
/** We don't call member destructors, they all are POD types. */
~Ed_result_set() = default;
size_t get_field_count() const { return m_column_count; }
static void *operator new(size_t size, MEM_ROOT *mem_root,
const std::nothrow_t & = std::nothrow) noexcept {
return mem_root->Alloc(size);
}
static void operator delete(void *, size_t) noexcept {
// Does nothing because m_mem_root is deallocated in the destructor
}
static void operator delete(
void *, MEM_ROOT *, const std::nothrow_t &) noexcept { /* never called */
}
private:
Ed_result_set(const Ed_result_set &); /* not implemented */
Ed_result_set &operator=(Ed_result_set &); /* not implemented */
private:
MEM_ROOT m_mem_root;
size_t m_column_count;
List<Ed_row> *m_rows;
Ed_row *m_fields;
Ed_result_set *m_next_rset;
friend class Ed_connection;
};
class Ed_connection final {
public:
/**
Construct a new "execute direct" connection.
The connection can be used to execute SQL statements.
If the connection failed to initialize, the error
will be returned on the attempt to execute a statement.
@pre thd must have no open tables
while the connection is used. However,
Ed_connection works okay in LOCK TABLES mode.
Other properties of THD, such as the current warning
information, errors, etc. do not matter and are
preserved by Ed_connection. One thread may have many
Ed_connections created for it.
*/
Ed_connection(THD *thd);
/**
Execute one SQL statement.
Until this method is executed, no other methods of
Ed_connection can be used. Life cycle of Ed_connection is:
Initialized -> a statement has been executed ->
look at result, move to next result ->
look at result, move to next result ->
...
moved beyond the last result == Initialized.
This method can be called repeatedly. Once it's invoked,
results of the previous execution are lost.
A result of execute_direct() can be either:
- success, no result set rows. In this case get_field_count()
returns 0. This happens after execution of INSERT, UPDATE,
DELETE, DROP and similar statements. Some other methods, such
as get_affected_rows() can be used to retrieve additional
result information.
- success, there are some result set rows (maybe 0). E.g.
happens after SELECT. In this case get_field_count() returns
the number of columns in a result set and store_result()
can be used to retrieve a result set..
- an error, methods to retrieve error information can
be used.
@return execution status
@retval false success, use get_field_count()
to determine what to do next.
@retval true error, use get_last_error()
to see the error number.
*/
bool execute_direct(LEX_STRING sql_text);
/**
Same as the previous, but takes an instance of Server_runnable
instead of SQL statement text.
@return execution status
@retval false success, use get_field_count()
if your code fragment is supposed to
return a result set
@retval true failure
*/
bool execute_direct(Server_runnable *server_runnable);
/**
The following three members are only valid if execute_direct()
or move_to_next_result() returned an error.
They never fail, but if they are called when there is no
result, or no error, the result is not defined.
*/
const char *get_last_error() const {
return m_diagnostics_area.message_text();
}
unsigned int get_last_errno() const {
return m_diagnostics_area.mysql_errno();
}
Ed_result_set *get_result_sets() { return m_rsets; }
~Ed_connection() { free_old_result(); }
private:
Diagnostics_area m_diagnostics_area;
/**
Execute direct interface does not support multi-statements, only
multi-results. So we never have a situation when we have
a mix of result sets and OK or error packets. We either
have a single result set, a single error, or a single OK,
or we have a series of result sets, followed by an OK or error.
*/
THD *m_thd;
Ed_result_set *m_rsets;
Ed_result_set *m_current_rset;
friend class Protocol_local;
private:
void free_old_result();
void add_result_set(Ed_result_set *ed_result_set);
private:
Ed_connection(const Ed_connection &); /* not implemented */
Ed_connection &operator=(Ed_connection &); /* not implemented */
};
/** One result set column. */
struct Ed_column final : public LEX_STRING {
/** Implementation note: destructor for this class is never called. */
};
/** One result set record. */
class Ed_row final {
public:
const Ed_column &operator[](const unsigned int column_index) const {
return *get_column(column_index);
}
const Ed_column *get_column(const unsigned int column_index) const {
assert(column_index < size());
return m_column_array + column_index;
}
size_t size() const { return m_column_count; }
Ed_row(Ed_column *column_array_arg, size_t column_count_arg)
: m_column_array(column_array_arg), m_column_count(column_count_arg) {}
private:
Ed_column *m_column_array;
size_t m_column_count; /* TODO: change to point to metadata */
};
class Server_side_cursor;
/**
Prepared_statement: a statement that can contain placeholders.
*/
class Prepared_statement final {
public:
/// Memory allocation arena, for permanent allocations to statement.
Query_arena m_arena;
/// Array of parameters used for statement, may be NULL if there are none.
Item_param **m_param_array{nullptr};
/// Pointer to cursor, may be NULL if statement never used with a cursor.
Server_side_cursor *m_cursor{nullptr};
/// Used to check that the protocol is stable during execution
const Protocol *m_active_protocol{nullptr};
/// Number of parameters expected for statement
uint m_param_count{0};
uint m_last_errno{0};
char m_last_error[MYSQL_ERRMSG_SIZE];
/**
Uniquely identifies each statement object in thread scope; change during
statement lifetime.
*/
const ulong m_id;
LEX *m_lex{nullptr}; // parse tree descriptor
/// The query string associated with this statement.
LEX_CSTRING m_query_string{NULL_CSTR};
/// Performance Schema interface for a prepared statement.
PSI_prepared_stmt *m_prepared_stmt{nullptr};
private:
/// True if statement is used with cursor, false if used in regular execution
bool m_used_as_cursor{false};
/// Query result used when statement is used in regular execution.
Query_result *m_regular_result{nullptr};
/// Query result used when statement is used with a cursor.
Query_result *m_cursor_result{nullptr};
/// Auxiliary query result object, saved for proper destruction
Query_result *m_aux_result{nullptr};
/// Flag that specifies preparation state
bool m_is_sql_prepare{false};
/// Flag that prevents recursive invocation of prepared statements
bool m_in_use{false};
bool m_with_log{false};
bool m_first_execution{true};
/// Name of the prepared statement.
LEX_CSTRING m_name{NULL_CSTR};
/**
Name of the current (default) database.
If there is the current (default) database, "db" contains its name. If
there is no current (default) database, "db" is NULL and "db_length" is
0. In other words, "db", "db_length" must either be NULL, or contain a
valid database name.
@note this attribute is set and allocated by the slave SQL thread (for
the THD of that thread); that thread is (and must remain, for now) the
only responsible for freeing this member.
*/
LEX_CSTRING m_db{NULL_CSTR};
/**
The memory root to allocate parsed tree elements (instances of Item,
Query_block and other classes).
*/
MEM_ROOT m_mem_root;
bool prepare_query(THD *thd);
public:
Prepared_statement(THD *thd_arg);
virtual ~Prepared_statement();
bool set_name(const LEX_CSTRING &name);
const LEX_CSTRING &name() const { return m_name; }
ulong id() const { return m_id; }
bool is_in_use() const { return m_in_use; }
bool is_sql_prepare() const { return m_is_sql_prepare; }
void set_sql_prepare(bool prepare = true) { m_is_sql_prepare = prepare; }
void deallocate(THD *thd);
bool prepare(THD *thd, const char *packet, size_t packet_length,
Item_param **orig_param_array);
bool execute_loop(THD *thd, String *expanded_query, bool open_cursor);
bool execute_server_runnable(THD *thd, Server_runnable *server_runnable);
#ifdef HAVE_PSI_PS_INTERFACE
PSI_prepared_stmt *get_PS_prepared_stmt() { return m_prepared_stmt; }
#endif
bool set_parameters(THD *thd, String *expanded_query, bool has_new_types,
PS_PARAM *parameters);
bool set_parameters(THD *thd, String *expanded_query);
void trace_parameter_types(THD *thd);
void close_cursor();
private:
void cleanup_stmt(THD *thd);
void setup_stmt_logging(THD *thd);
bool check_parameter_types();
void copy_parameter_types(Item_param **from_param_array);
bool set_db(const LEX_CSTRING &db_length);
bool execute(THD *thd, String *expanded_query, bool open_cursor);
bool reprepare(THD *thd);
bool validate_metadata(THD *thd, Prepared_statement *copy);
void swap_prepared_statement(Prepared_statement *copy);
bool insert_parameters_from_vars(THD *thd, List<LEX_STRING> &varnames,
String *query);
bool insert_parameters(THD *thd, String *query, bool has_new_types,
PS_PARAM *parameters);
};
#endif // SQL_PREPARE_H
|