MySQL 26.7.0
Source Code Documentation
sql_common.h
Go to the documentation of this file.
1#ifndef SQL_COMMON_INCLUDED
2#define SQL_COMMON_INCLUDED
3
4/* Copyright (c) 2003, 2026, Oracle and/or its affiliates.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License, version 2.0,
8 as published by the Free Software Foundation.
9
10 This program is designed to work with certain software (including
11 but not limited to OpenSSL) that is licensed under separate terms,
12 as designated in a particular file or component or in included license
13 documentation. The authors of MySQL hereby grant you an additional
14 permission to link the program and your derivative works with the
15 separately licensed software that they have either included with
16 the program or referenced in the documentation.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License, version 2.0, for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
26
27/**
28 @file include/sql_common.h
29*/
30
31#include <mysql.h>
32#include <stddef.h>
33#include <sys/types.h>
34
35#include "errmsg.h"
36#include "my_command.h"
37#include "my_compiler.h"
38#include "my_inttypes.h"
39#include "my_list.h"
40#include "mysql_com.h"
41#ifdef MYSQL_SERVER
42#include "mysql_com_server.h"
43#endif
44
45struct CHARSET_INFO;
46struct MEM_ROOT;
47
48#ifdef __cplusplus
49extern "C" {
50#endif
51
52#ifdef IMPORT_UNKNOWN_SQLSTATE
53__declspec(dllimport)
54#endif
55 extern const char *unknown_sqlstate;
56extern const char *cant_connect_sqlstate;
57extern const char *not_error_sqlstate;
58
59/*
60 Free all memory allocated in MYSQL handle except the
61 current options.
62*/
64
65/*
66 Clear connection options stored in MYSQL handle and
67 free memory used by them.
68*/
70
71/**
72 The structure is used to hold the state change information
73 received from the server. LIST functions are used for manipulation
74 of the members of the structure.
75*/
77 /** head_node->data is a LEX_STRING which contains the variable name. */
80};
81
82/**
83 Store the change info received from the server in an array of linked lists
84 with STATE_INFO_NODE elements (one per state type).
85*/
86struct STATE_INFO {
87 /** Array of STATE_NODE_INFO elements (one per state type). */
89};
90
91/*
92 Access to MYSQL::extension member.
93
94 Note: functions mysql_extension_{init,free}() are defined
95 in client.c.
96*/
97
98struct st_mysql_trace_info;
100
102 struct st_mysql_trace_info *trace_data;
104 /* Struct to track the state of asynchronous operations */
106#ifdef MYSQL_SERVER
107 // Used by replication to pass around compression context data.
109 /* used by mysql_init() api for mysql command service related information */
110 void *mcs_extn;
111#endif
112 struct {
114 char **names;
117};
118
119/* "Constructor/destructor" for MYSQL extension structure. */
122/* cleanup for the MYSQL extension bind structure */
124/* cleanup for the MYSQL extension session state cache */
126/* decode a session-tracker payload into MYSQL extension state */
128 size_t payload_length);
129/*
130 Note: Allocated extension structure is freed in mysql_close_free()
131 called by mysql_close().
132*/
133#define MYSQL_EXTENSION_PTR(H) \
134 ((MYSQL_EXTENSION *)((H)->extension \
135 ? (H)->extension \
136 : ((H)->extension = mysql_extension_init(H))))
137
138#define ASYNC_DATA(M) \
139 (NULL != (M) ? (MYSQL_EXTENSION_PTR(M)->mysql_async_context) : NULL)
140/**
141 Sets the MYSQL_EXTENSION::server_extn attribute by the use of NET_SERVER which
142 contains information about compression context and compression attributes.
143 This attribute needs to be set each time mysql_real_connect() is called to
144 make a connection. When a connection attempt fails or when a connection is
145 closed, as part of the MYSQL handle cleanup, mysql_close_free() is called and
146 that will free MYSQL_EXTENSION::server_extn.
147
148 mysql_close_free() will free all the memory allocated in the MYSQL handle but
149 preserves MYSQL::options. These options are later free'd by
150 mysql_close_free_options() unless the client flag CLIENT_REMEMBER_OPTIONS is
151 set.
152
153 @param mysql The MYSQL handle
154 @param extn The NET_SERVER handle that contains compression context info.
155*/
156#ifdef MYSQL_SERVER
158 MYSQL_EXTENSION_PTR(mysql)->server_extn = extn;
159}
160#endif /* MYSQL_SERVER*/
161
162/*
163 Maximum allowed authentication plugins for a given user account.
164*/
165#define MAX_AUTHENTICATION_FACTOR 3
166/*
167 Placeholder to save plugin name and password of 1st, 2nd and 3rd
168 factor authentication methods.
169*/
172 char *password;
173};
174
178 char *ssl_crl; /* PEM CRL file */
179 char *ssl_crlpath; /* PEM directory of CRL-s? */
184 bool get_server_public_key; /* Former ssl_enforce */
185 char *tls_version; /* TLS version option */
186 long ssl_ctx_flags; /* SSL ctx options flag */
187 unsigned int ssl_mode;
188 unsigned int retry_count;
189 unsigned int ssl_fips_mode; /* SSL fips mode for enforced encryption.*/
197 void *ssl_session_data; /** the session serialization to use */
198 char *tls_sni_servername; /* TLS sni server name */
199 char *tls_kex;
202};
203
204#define MYSQL_OPTIONS_EXTENSION_PTR(H, what) \
205 ((H)->options.extension ? (H)->options.extension->what : nullptr)
206
208 MYSQL *(*connect_method)(mysql_async_connect *connect_args);
211 const unsigned char *header, size_t header_length,
212 const unsigned char *arg, size_t arg_length,
213 bool skip_check, MYSQL_STMT *stmt);
214 MYSQL_DATA *(*read_rows)(MYSQL *mysql, MYSQL_FIELD *mysql_fields,
215 unsigned int fields);
216 MYSQL_RES *(*use_result)(MYSQL *mysql);
218 void (*fetch_lengths)(unsigned long *to, MYSQL_ROW column,
219 unsigned int field_count);
220 void (*flush_use_result)(MYSQL *mysql, bool flush_all_results);
222#if !defined(MYSQL_SERVER) && !defined(MYSQL_COMPONENT)
223 MYSQL_FIELD *(*list_fields)(MYSQL *mysql);
224 bool (*read_prepare_result)(MYSQL *mysql, MYSQL_STMT *stmt);
225 int (*stmt_execute)(MYSQL_STMT *stmt);
226 int (*read_binary_rows)(MYSQL_STMT *stmt);
227 int (*unbuffered_fetch)(MYSQL *mysql, char **row);
228 const char *(*read_statistics)(MYSQL *mysql);
229 bool (*next_result)(MYSQL *mysql);
230 int (*read_rows_from_cursor)(MYSQL_STMT *stmt);
231 void (*free_rows)(MYSQL_DATA *cur);
232#endif
235 MYSQL *mysql, enum enum_server_command command,
236 const unsigned char *header, unsigned long header_length,
237 const unsigned char *arg, unsigned long arg_length, bool skip_check,
238 MYSQL_STMT *stmt, bool *error);
240 MYSQL_FIELD *mysql_fields,
241 unsigned int fields,
244 bool flush_all_results);
247 ulong *res);
248};
249
250#define simple_command(mysql, command, arg, length, skip_check) \
251 ((mysql)->methods \
252 ? (*(mysql)->methods->advanced_command)(mysql, command, nullptr, 0, \
253 arg, length, skip_check, NULL) \
254 : (set_mysql_error(mysql, CR_COMMANDS_OUT_OF_SYNC, unknown_sqlstate), \
255 1))
256#define simple_command_nonblocking(mysql, command, arg, length, skip_check, \
257 error) \
258 (*(mysql)->methods->advanced_command_nonblocking)( \
259 mysql, command, nullptr, 0, arg, length, skip_check, nullptr, error)
260
261#define stmt_command(mysql, command, arg, length, stmt) \
262 ((mysql)->methods \
263 ? (*(mysql)->methods->advanced_command)(mysql, command, nullptr, 0, \
264 arg, length, 1, stmt) \
265 : (set_mysql_error(mysql, CR_COMMANDS_OUT_OF_SYNC, unknown_sqlstate), \
266 1))
267
270 uint fields, bool default_value,
271 uint server_capabilities);
273 unsigned long field_count,
274 unsigned int fields);
275MYSQL_FIELD *cli_read_metadata(MYSQL *mysql, unsigned long field_count,
276 unsigned int fields);
279void free_rows(MYSQL_DATA *cur);
281void end_server(MYSQL *mysql);
284 const char *filename, const char *group);
286 const unsigned char *header, size_t header_length,
287 const unsigned char *arg, size_t arg_length,
288 bool skip_check, MYSQL_STMT *stmt);
289unsigned long cli_safe_read(MYSQL *mysql, bool *is_data_packet);
291 bool *is_data_packet,
292 ulong *res);
293unsigned long cli_safe_read_with_ok(MYSQL *mysql, bool parse_ok,
294 bool *is_data_packet);
295void net_clear_error(NET *net);
296void set_stmt_errmsg(MYSQL_STMT *stmt, NET *net);
297void set_stmt_error(MYSQL_STMT *stmt, int errcode, const char *sqlstate);
298void set_stmt_extended_error(MYSQL_STMT *stmt, int errcode,
299 const char *sqlstate, const char *format, ...)
300 MY_ATTRIBUTE((format(printf, 4, 5)));
301void set_mysql_error(MYSQL *mysql, int errcode, const char *sqlstate);
302void set_mysql_extended_error(MYSQL *mysql, int errcode, const char *sqlstate,
303 const char *format, ...)
304 MY_ATTRIBUTE((format(printf, 4, 5)));
305
306/* client side of the pluggable authentication */
308
310int run_plugin_auth(MYSQL *mysql, char *data, uint data_len,
311 const char *data_plugin, const char *db);
314
316
321void read_ok_ex(MYSQL *mysql, unsigned long len);
322
323bool fix_param_bind(MYSQL_BIND *param, uint idx);
325 NET *net, unsigned int param_count, MYSQL_BIND *params, const char **names,
326 unsigned long n_param_sets, uchar **ret_data, ulong *ret_length,
327 uchar send_types_to_server, bool send_named_params,
328 bool send_parameter_set_count, bool send_parameter_count_when_zero);
329
330#ifdef __cplusplus
331}
332#endif
333
334#define protocol_41(A) ((A)->server_capabilities & CLIENT_PROTOCOL_41)
335
336/*
337 AuthNextFactor packet is defined to have value 2 in 1st byte.
338*/
339#define AUTH_NEXT_FACTOR_PACKETTYPE 2
340#endif /* SQL_COMMON_INCLUDED */
Error messages for MySQL clients.
enum_server_command
A list of all MySQL protocol commands.
Definition: my_command.h:48
Header for compiler-dependent features.
Some integer typedefs for easier portability.
unsigned char uchar
Definition: my_inttypes.h:52
static const char * filepath
Definition: myisamlog.cc:97
This file defines the client API to MySQL and also the ABI of the dynamically linked libmysqlclient.
char ** MYSQL_ROW
Definition: mysql.h:145
Common definition between mysql server & client.
#define MYSQL_VIO
Definition: mysql_com.h:896
#define SESSION_TRACK_END
End of enum_session_state_type.
Definition: mysql_com.h:1084
Definitions private to the server, used in the networking layer to notify specific events.
static MYSQL * mysql
Definition: mysqldump.cc:149
std::string format(const routing_guidelines::Session_info &session_info, bool extended_session_info)
Definition: dest_metadata_cache.cc:170
Definition: buf0block_hint.cc:30
Json_data_extension ext
Definition: backend.cc:50
Definition: instrumented_condition_variable.h:32
Definition: buffer.h:45
Definition: options.cc:57
const char * filename
Definition: pfs_example_component_population.cc:67
struct result result
Definition: result.h:34
net_async_status
Definition: plugin_auth_common.h:157
void mysql_extension_bind_free(MYSQL_EXTENSION *ext)
Definition: client.cc:3474
const char * unknown_sqlstate
Definition: client.cc:224
void set_stmt_extended_error(MYSQL_STMT *stmt, int errcode, const char *sqlstate, const char *format,...)
Set statement error code, sqlstate, and error message from given errcode and sqlstate.
Definition: libmysql.cc:1292
void mysql_close_free(MYSQL *mysql)
Definition: client.cc:7858
void set_stmt_errmsg(MYSQL_STMT *stmt, NET *net)
Set statement error code, sqlstate, and error message from NET.
Definition: libmysql.cc:1313
void end_server(MYSQL *mysql)
Definition: client.cc:1983
void mysql_clear_session_track_info(MYSQL *mysql)
Definition: client.cc:746
void set_mysql_extended_error(MYSQL *mysql, int errcode, const char *sqlstate, const char *format,...)
Set an error message on the client.
Definition: client.cc:395
bool libmysql_cleartext_plugin_enabled
Definition: client.cc:5849
bool fix_param_bind(MYSQL_BIND *param, uint idx)
Definition: bind_params.cc:465
bool mysql_reconnect(MYSQL *mysql)
Definition: client.cc:7527
int mysql_client_plugin_init()
Initializes the client plugin layer.
Definition: client_plugin.cc:336
#define MYSQL_EXTENSION_PTR(H)
Definition: sql_common.h:133
MYSQL_FIELD * cli_read_metadata(MYSQL *mysql, unsigned long field_count, unsigned int fields)
void mpvio_info(MYSQL_VIO vio, MYSQL_PLUGIN_VIO_INFO *info)
void net_clear_error(NET *net)
Clear possible error state of struct NET.
Definition: client.cc:378
const char * cant_connect_sqlstate
Definition: client.cc:226
unsigned long cli_safe_read(MYSQL *mysql, bool *is_data_packet)
Read a packet from server.
Definition: client.cc:1406
MYSQL_RES * use_result(MYSQL *mysql)
Definition: client.cc:8623
void read_ok_ex(MYSQL *mysql, unsigned long len)
enum net_async_status cli_safe_read_nonblocking(MYSQL *mysql, bool *is_data_packet, ulong *res)
Its a non blocking version of cli_safe_read.
Definition: client.cc:1251
bool cli_advanced_command(MYSQL *mysql, enum enum_server_command command, const unsigned char *header, size_t header_length, const unsigned char *arg, size_t arg_length, bool skip_check, MYSQL_STMT *stmt)
Definition: client.cc:1418
void free_rows(MYSQL_DATA *cur)
Definition: client.cc:1410
void mysql_client_plugin_deinit()
Deinitializes the client plugin layer.
Definition: client_plugin.cc:376
unsigned long cli_safe_read_with_ok(MYSQL *mysql, bool parse_ok, bool *is_data_packet)
Read a packet from server.
Definition: client.cc:1273
bool mysql_int_serialize_param_data(NET *net, unsigned int param_count, MYSQL_BIND *params, const char **names, unsigned long n_param_sets, uchar **ret_data, ulong *ret_length, uchar send_types_to_server, bool send_named_params, bool send_parameter_set_count, bool send_parameter_count_when_zero)
Serialize the query parameters.
Definition: bind_params.cc:362
int is_file_or_dir_world_writable(const char *filepath)
Check if a file/dir is world-writable (only on non-Windows platforms)
Definition: my_path_permissions.cc:43
MYSQL_FIELD * cli_read_metadata_ex(MYSQL *mysql, MEM_ROOT *alloc, unsigned long field_count, unsigned int fields)
MYSQL * connect_helper(mysql_async_connect *ctx)
Definition: client.cc:6523
MYSQL_FIELD * unpack_fields(MYSQL *mysql, MYSQL_ROWS *data, MEM_ROOT *alloc, uint fields, bool default_value, uint server_capabilities)
Definition: client.cc:2604
int run_plugin_auth(MYSQL *mysql, char *data, uint data_len, const char *data_plugin, const char *db)
Client side of the plugin driver authentication.
Definition: client.cc:5917
void set_mysql_error(MYSQL *mysql, int errcode, const char *sqlstate)
Set the internal error message to mysql handler.
Definition: client.cc:347
#define MAX_AUTHENTICATION_FACTOR
Definition: sql_common.h:165
bool mysql_decode_session_track_payload(MYSQL *mysql, const uchar *payload, size_t payload_length)
Definition: client.cc:846
CHARSET_INFO * default_client_charset_info
Definition: client.cc:236
void free_old_query(MYSQL *mysql)
Definition: client.cc:1708
uchar * send_client_connect_attrs(MYSQL *mysql, uchar *buf)
Definition: client.cc:4351
const char * not_error_sqlstate
Definition: client.cc:225
MYSQL_EXTENSION * mysql_extension_init(MYSQL *)
Definition: client.cc:3453
void set_stmt_error(MYSQL_STMT *stmt, int errcode, const char *sqlstate)
Set statement error code, sqlstate, and error message from given errcode and sqlstate.
Definition: libmysql.cc:1277
void mysql_close_free_options(MYSQL *mysql)
Definition: client.cc:7817
void mysql_extension_set_server_extn(MYSQL *mysql, NET_SERVER *extn)
Sets the MYSQL_EXTENSION::server_extn attribute by the use of NET_SERVER which contains information a...
Definition: sql_common.h:157
void mysql_extension_free(MYSQL_EXTENSION *)
Definition: client.cc:3625
struct st_mysql_client_plugin * mysql_client_builtins[]
Definition: client.cc:4323
void mysql_read_default_options(struct st_mysql_options *options, const char *filename, const char *group)
Definition: client.cc:2207
Definition: m_ctype.h:421
Definition: my_list.h:36
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
Definition: mysql_async.h:235
Definition: mysql.h:668
Definition: mysql.h:163
Definition: sql_common.h:101
char ** names
Definition: sql_common.h:114
uint n_params
Definition: sql_common.h:113
struct MYSQL_ASYNC * mysql_async_context
Definition: sql_common.h:105
NET_SERVER * server_extn
Definition: sql_common.h:108
struct MYSQL_EXTENSION::@9 bind_info
struct st_mysql_trace_info * trace_data
Definition: sql_common.h:102
STATE_INFO state_change
Definition: sql_common.h:103
void * mcs_extn
Definition: sql_common.h:110
MYSQL_BIND * bind
Definition: sql_common.h:115
Definition: mysql.h:121
Definition: sql_common.h:207
enum net_async_status(* advanced_command_nonblocking)(MYSQL *mysql, enum enum_server_command command, const unsigned char *header, unsigned long header_length, const unsigned char *arg, unsigned long arg_length, bool skip_check, MYSQL_STMT *stmt, bool *error)
Definition: sql_common.h:234
MYSQL_ROW(* fetch_row)(MYSQL_RES *)
Definition: sql_common.h:217
enum net_async_status(* read_change_user_result_nonblocking)(MYSQL *mysql, ulong *res)
Definition: sql_common.h:246
bool(* read_query_result)(MYSQL *mysql)
Definition: sql_common.h:209
void(* fetch_lengths)(unsigned long *to, MYSQL_ROW column, unsigned int field_count)
Definition: sql_common.h:218
bool(* advanced_command)(MYSQL *mysql, enum enum_server_command command, const unsigned char *header, size_t header_length, const unsigned char *arg, size_t arg_length, bool skip_check, MYSQL_STMT *stmt)
Definition: sql_common.h:210
enum net_async_status(* read_rows_nonblocking)(MYSQL *mysql, MYSQL_FIELD *mysql_fields, unsigned int fields, MYSQL_DATA **result)
Definition: sql_common.h:239
void(* flush_use_result)(MYSQL *mysql, bool flush_all_results)
Definition: sql_common.h:220
enum net_async_status(* read_query_result_nonblocking)(MYSQL *mysql)
Definition: sql_common.h:233
enum net_async_status(* next_result_nonblocking)(MYSQL *mysql)
Definition: sql_common.h:245
int(* read_change_user_result)(MYSQL *mysql)
Definition: sql_common.h:221
enum net_async_status(* flush_use_result_nonblocking)(MYSQL *mysql, bool flush_all_results)
Definition: sql_common.h:243
Definition: plugin_auth_common.h:141
Definition: mysql.h:343
Definition: mysql.h:153
Definition: mysql.h:695
Definition: mysql.h:303
Definition: client.cc:4347
Definition: mysql_com_server.h:59
Definition: mysql_com.h:915
The structure is used to hold the state change information received from the server.
Definition: sql_common.h:76
LIST * head_node
head_node->data is a LEX_STRING which contains the variable name.
Definition: sql_common.h:78
LIST * current_node
Definition: sql_common.h:79
Store the change info received from the server in an array of linked lists with STATE_INFO_NODE eleme...
Definition: sql_common.h:86
STATE_INFO_NODE info_list[SESSION_TRACK_END+1]
Array of STATE_NODE_INFO elements (one per state type).
Definition: sql_common.h:88
Definition: sql_common.h:170
char * plugin_name
Definition: sql_common.h:171
char * password
Definition: sql_common.h:172
Definition: client_async_authentication.h:164
Definition: client_plugin.h:114
Definition: sql_common.h:175
unsigned int ssl_fips_mode
Definition: sql_common.h:189
bool get_server_public_key
Definition: sql_common.h:184
char * tls_kex
Definition: sql_common.h:199
char * default_auth
Definition: sql_common.h:177
char * compression_algorithm
Definition: sql_common.h:191
long ssl_ctx_flags
Definition: sql_common.h:186
char * ssl_crl
Definition: sql_common.h:178
char * tls_version
Definition: sql_common.h:185
void * ssl_session_data
Definition: sql_common.h:197
bool connection_compressed
Definition: sql_common.h:194
bool force_pqc
Definition: sql_common.h:200
char * plugin_dir
Definition: sql_common.h:176
unsigned int retry_count
Definition: sql_common.h:188
bool enable_cleartext_plugin
Definition: sql_common.h:183
char * tls_ciphersuites
Definition: sql_common.h:190
struct client_authentication_info client_auth_info[MAX_AUTHENTICATION_FACTOR]
Definition: sql_common.h:196
unsigned int total_configured_compression_algorithms
Definition: sql_common.h:192
char * server_public_key_path
Definition: sql_common.h:181
size_t connection_attributes_length
Definition: sql_common.h:182
struct My_hash * connection_attributes
Definition: sql_common.h:180
unsigned int ssl_mode
Definition: sql_common.h:187
bool use_pqc_sign
Definition: sql_common.h:201
char * tls_sni_servername
the session serialization to use
Definition: sql_common.h:198
char * ssl_crlpath
Definition: sql_common.h:179
char * load_data_dir
Definition: sql_common.h:195
unsigned int zstd_compression_level
Definition: sql_common.h:193
Definition: mysql.h:229