MySQL 8.0.37
Source Code Documentation
trx0i_s.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 2007, 2024, Oracle and/or its affiliates.
4
5This program is free software; you can redistribute it and/or modify it under
6the terms of the GNU General Public License, version 2.0, as published by the
7Free Software Foundation.
8
9This program is designed to work with certain software (including
10but not limited to OpenSSL) that is licensed under separate terms,
11as designated in a particular file or component or in included license
12documentation. The authors of MySQL hereby grant you an additional
13permission to link the program and your derivative works with the
14separately licensed software that they have either included with
15the program or referenced in the documentation.
16
17This program is distributed in the hope that it will be useful, but WITHOUT
18ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
20for more details.
21
22You should have received a copy of the GNU General Public License along with
23this program; if not, write to the Free Software Foundation, Inc.,
2451 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
26*****************************************************************************/
27
28/** @file include/trx0i_s.h
29 INFORMATION SCHEMA innodb_trx, innodb_locks and
30 innodb_lock_waits tables cache structures and public
31 functions.
32
33 Created July 17, 2007 Vasil Dimov
34 *******************************************************/
35
36#ifndef trx0i_s_h
37#define trx0i_s_h
38
39#include <optional>
40
41#include "dict0types.h"
42#include "trx0types.h"
43#include "univ.i"
44
46
47/** The maximum amount of memory that can be consumed by innodb_trx,
48innodb_locks and innodb_lock_waits information schema tables. */
49constexpr uint32_t TRX_I_S_MEM_LIMIT = 16777216; /* 16 MiB */
50
51/** The maximum length of a string that can be stored in
52i_s_locks_row_t::lock_data */
53constexpr uint32_t TRX_I_S_LOCK_DATA_MAX_LEN = 8192;
54
55/** The maximum length of a string that can be stored in
56i_s_trx_row_t::trx_query */
57constexpr uint32_t TRX_I_S_TRX_QUERY_MAX_LEN = 1024;
58
59/** The maximum length of a string that can be stored in
60i_s_trx_row_t::trx_operation_state */
61constexpr uint32_t TRX_I_S_TRX_OP_STATE_MAX_LEN = 64;
62
63/** The maximum length of a string that can be stored in
64i_s_trx_row_t::trx_foreign_key_error */
65constexpr uint32_t TRX_I_S_TRX_FK_ERROR_MAX_LEN = 256;
66
67/** The maximum length of a string that can be stored in
68i_s_trx_row_t::trx_isolation_level */
70
71/** Safely copy strings in to the INNODB_TRX table's
72string based columns */
73#define TRX_I_S_STRING_COPY(data, field, constraint, tcache) \
74 do { \
75 if (strlen(data) > constraint) { \
76 char buff[constraint + 1]; \
77 strncpy(buff, data, constraint); \
78 buff[constraint] = '\0'; \
79 \
80 field = static_cast<const char *>( \
81 ha_storage_put_memlim((tcache)->storage, buff, constraint + 1, \
82 MAX_ALLOWED_FOR_STORAGE(tcache))); \
83 } else { \
84 field = static_cast<const char *>(ha_storage_put_str_memlim( \
85 (tcache)->storage, data, MAX_ALLOWED_FOR_STORAGE(tcache))); \
86 } \
87 } while (0)
88
89/** This structure represents INFORMATION_SCHEMA.innodb_locks row */
91 uint64_t lock_trx_immutable_id; /*!< transaction address as integer. We need
92 an id which is unique and does not change over time.
93 Unfortunately trx->id is initially equal to 0 for
94 all trxs which still appear to be read only, and it
95 changes to non-zero, once trx needs to perform write.
96 For this reason trx->id is not good enough for our
97 purpose. */
98 uint64_t lock_immutable_id; /*!< lock address as integer. We need to identify
99 the lock in unique way. Specifying space, page and heap_no
100 and trx is not enough, because there could be locks with
101 different modes. Using mode as part of id is not good,
102 because we sometimes change the mode of the lock (for
103 example when granting the lock we drop LOCK_WAITING flag
104 and in lock_trx_release_read_locks we add LOCK_REC_NOT_GAP
105 flag). The only permanent thing is then the address.
106 We use both lock_immutable_id and lock_trx_immutable_id
107 even though lock_immutable_id is unique, because we need
108 to be able to locate the row in PERFORMANCE_SCHEMA based
109 on the id, and we need a way to verify that the
110 lock_immutable_id is safe to dereference. Simplest way to
111 do that is to check that trx still has the lock on its
112 list of locks. */
113
114 /** Information for record locks. All these are
115 ULINT_UNDEFINED for table locks. */
116 /** @{ */
117 space_id_t lock_space; /*!< tablespace identifier */
118 page_no_t lock_page; /*!< page number within the_space */
119 ulint lock_rec; /*!< heap number of the record
120 on the page */
121 /** @} */
122
123 /** The following are auxiliary and not included in the table */
124 /** @{ */
126 /*!< table identifier from
127 lock_get_table_id */
128 /** @} */
129};
130
131/** This structure represents INFORMATION_SCHEMA.innodb_trx row */
133 trx_id_t trx_id; /*!< transaction identifier */
134 const char *trx_state; /*!< transaction state from
135 trx_get_que_state_str() */
136 std::chrono::system_clock::time_point trx_started; /*!< trx_t::start_time */
138 /*!< pointer to a row
139 in innodb_locks if trx
140 is waiting, or NULL */
141
142 /** The value of trx->lock.wait_started */
143 std::chrono::system_clock::time_point trx_wait_started;
144 /** The value of TRX_WEIGHT(trx) */
145 uintmax_t trx_weight;
146 /** If `first` is `true` then `second` is the value of the
147 trx->lock.schedule_weight, otherwise the `second` should be ignored and
148 displayed as NULL to the end user.
149 (This could be std::optional once we move to C++17) */
150 std::pair<bool, trx_schedule_weight_t> trx_schedule_weight;
151 ulint trx_mysql_thread_id; /*!< thd_get_thread_id() */
152 const char *trx_query; /*!< MySQL statement being
153 executed in the transaction */
154 const CHARSET_INFO *trx_query_cs; /*!< the charset of trx_query */
155 const char *trx_operation_state; /*!< trx_t::op_info */
156 ulint trx_tables_in_use; /*!< n_mysql_tables_in_use in
157 trx_t */
159 /*!< mysql_n_tables_locked in
160 trx_t */
161 ulint trx_lock_structs; /*!< list len of trx_locks in
162 trx_t */
164 /*!< mem_heap_get_size(
165 trx->lock_heap) */
166 ulint trx_rows_locked; /*!< lock_number_of_rows_locked() */
167 uintmax_t trx_rows_modified; /*!< trx_t::undo_no */
169 /*!< n_tickets_to_enter_innodb in
170 trx_t */
172 /*!< isolation_level in trx_t */
174 /*!< check_unique_secondary in trx_t*/
176 /*!< check_foreigns in trx_t */
178 /*!< detailed_error in trx_t */
180 /*!< has_search_latch in trx_t */
182 /*!< trx_t::read_only */
184 /*!< trx_is_autocommit_non_locking(trx)
185 */
186};
187
188/** Cache of INFORMATION_SCHEMA table data */
189struct trx_i_s_cache_t;
190
191/** Auxiliary enum used by functions that need to select one of the
192INFORMATION_SCHEMA tables */
194 I_S_INNODB_TRX, /*!< INFORMATION_SCHEMA.innodb_trx */
195};
196
197/** This is the intermediate buffer where data needed to fill the
198INFORMATION SCHEMA tables is fetched and later retrieved by the C++
199code in handler/i_s.cc. */
201
202/** Initialize INFORMATION SCHEMA trx related cache. */
203void trx_i_s_cache_init(trx_i_s_cache_t *cache); /*!< out: cache to init */
204/** Free the INFORMATION SCHEMA trx related cache. */
205void trx_i_s_cache_free(trx_i_s_cache_t *cache); /*!< in/out: cache to free */
206
207/** Issue a shared/read lock on the tables cache. */
208void trx_i_s_cache_start_read(trx_i_s_cache_t *cache); /*!< in: cache */
209
210/** Release a shared/read lock on the tables cache. */
211void trx_i_s_cache_end_read(trx_i_s_cache_t *cache); /*!< in: cache */
212
213/** Issue an exclusive/write lock on the tables cache. */
214void trx_i_s_cache_start_write(trx_i_s_cache_t *cache); /*!< in: cache */
215
216/** Release an exclusive/write lock on the tables cache. */
217void trx_i_s_cache_end_write(trx_i_s_cache_t *cache); /*!< in: cache */
218
219/** Retrieves the number of used rows in the cache for a given
220 INFORMATION SCHEMA table.
221 @return number of rows */
222ulint trx_i_s_cache_get_rows_used(trx_i_s_cache_t *cache, /*!< in: cache */
223 enum i_s_table table); /*!< in: which table */
224
225/** Retrieves the nth row in the cache for a given INFORMATION SCHEMA
226 table.
227 @return row */
228void *trx_i_s_cache_get_nth_row(trx_i_s_cache_t *cache, /*!< in: cache */
229 enum i_s_table table, /*!< in: which table */
230 ulint n); /*!< in: row number */
231
232/** Update the transactions cache if it has not been read for some time.
233 @return 0 - fetched, 1 - not */
235 trx_i_s_cache_t *cache); /*!< in/out: cache */
236
237/** Returns true if the data in the cache is truncated due to the memory
238 limit posed by TRX_I_S_MEM_LIMIT.
239 @param[in] cache The cache
240 @return true if truncated */
242
243/** The maximum length of a resulting lock_id_size in
244trx_i_s_create_lock_id(), not including the terminating NUL.
245"%lu:%lu:%lu:%lu:%lu" -> 20*5+4 chars */
246constexpr uint32_t TRX_I_S_LOCK_ID_MAX_LEN = 20 * 5 + 4;
247
248/** Crafts a lock id string from a i_s_locks_row_t object. Returns its
249 second argument. This function aborts if there is not enough space in
250 lock_id. Be sure to provide at least TRX_I_S_LOCK_ID_MAX_LEN + 1 if you
251 want to be 100% sure that it will not abort.
252 @return resulting lock id */
254 const i_s_locks_row_t *row, /*!< in: innodb_locks row */
255 char *lock_id, /*!< out: resulting lock_id */
256 ulint lock_id_size); /*!< in: size of the lock id
257 buffer */
258
259/** Fill performance schema lock data.
260Create a string that represents the LOCK_DATA
261column, for a given lock record.
262@param[out] lock_data Lock data string
263@param[in] lock Lock to inspect
264@param[in] heap_no Lock heap number
265@param[in] container Data container to fill
266*/
267void p_s_fill_lock_data(const char **lock_data, const lock_t *lock,
268 ulint heap_no,
270
271/** Fills i_s_locks_row_t object with data about the lock.
272@param[out] row Result object that's filled
273@param[in] lock Lock to get data from
274@param[in] heap_no Lock's record number or ULINT_UNDEFINED if the lock is a
275 table lock */
276void fill_locks_row(i_s_locks_row_t *row, const lock_t *lock, ulint heap_no);
277
278/** Parses lock id into row
279@param[in] lock_id Lock id generated with trx_i_s_create_lock_id
280@param[out] row Row to be filled in with data
281@return LOCK_REC, LOCK_TABLE or 0 if failed to parse */
282int trx_i_s_parse_lock_id(const char *lock_id, i_s_locks_row_t *row);
283#endif /* trx0i_s_h */
uint32_t space_id_t
Tablespace identifier.
Definition: api0api.h:51
uint32_t page_no_t
Page number.
Definition: api0api.h:49
Server interface, row lock container.
Definition: psi_data_lock.h:117
Data dictionary global types.
ib_id_t table_id_t
Table or partition identifier (unique within an InnoDB instance).
Definition: dict0types.h:218
Definition: atomics_array.h:39
Provides atomic access in shared-exclusive modes.
Definition: shared_spin_lock.h:79
Definition: m_ctype.h:385
This structure represents INFORMATION_SCHEMA.innodb_locks row.
Definition: trx0i_s.h:90
uint64_t lock_immutable_id
lock address as integer.
Definition: trx0i_s.h:98
space_id_t lock_space
Information for record locks.
Definition: trx0i_s.h:117
ulint lock_rec
heap number of the record on the page
Definition: trx0i_s.h:119
table_id_t lock_table_id
The following are auxiliary and not included in the table.
Definition: trx0i_s.h:125
uint64_t lock_trx_immutable_id
transaction address as integer.
Definition: trx0i_s.h:91
page_no_t lock_page
page number within the_space
Definition: trx0i_s.h:118
This structure represents INFORMATION_SCHEMA.innodb_trx row.
Definition: trx0i_s.h:132
ulint trx_lock_memory_bytes
mem_heap_get_size( trx->lock_heap)
Definition: trx0i_s.h:163
ulint trx_rows_locked
lock_number_of_rows_locked()
Definition: trx0i_s.h:166
std::chrono::system_clock::time_point trx_started
trx_t::start_time
Definition: trx0i_s.h:136
const char * trx_isolation_level
isolation_level in trx_t
Definition: trx0i_s.h:171
bool trx_unique_checks
check_unique_secondary in trx_t
Definition: trx0i_s.h:173
std::pair< bool, trx_schedule_weight_t > trx_schedule_weight
If first is true then second is the value of the trx->lock.schedule_weight, otherwise the second shou...
Definition: trx0i_s.h:150
ulint trx_tables_locked
mysql_n_tables_locked in trx_t
Definition: trx0i_s.h:158
const char * trx_state
transaction state from trx_get_que_state_str()
Definition: trx0i_s.h:134
ulint trx_concurrency_tickets
n_tickets_to_enter_innodb in trx_t
Definition: trx0i_s.h:168
bool trx_has_search_latch
has_search_latch in trx_t
Definition: trx0i_s.h:179
const char * trx_foreign_key_error
detailed_error in trx_t
Definition: trx0i_s.h:177
const CHARSET_INFO * trx_query_cs
the charset of trx_query
Definition: trx0i_s.h:154
trx_id_t trx_id
transaction identifier
Definition: trx0i_s.h:133
const char * trx_operation_state
trx_t::op_info
Definition: trx0i_s.h:155
ulint trx_mysql_thread_id
thd_get_thread_id()
Definition: trx0i_s.h:151
ulint trx_is_read_only
trx_t::read_only
Definition: trx0i_s.h:181
ulint trx_lock_structs
list len of trx_locks in trx_t
Definition: trx0i_s.h:161
ulint trx_tables_in_use
n_mysql_tables_in_use in trx_t
Definition: trx0i_s.h:156
bool trx_foreign_key_checks
check_foreigns in trx_t
Definition: trx0i_s.h:175
ulint trx_is_autocommit_non_locking
trx_is_autocommit_non_locking(trx)
Definition: trx0i_s.h:183
const char * trx_query
MySQL statement being executed in the transaction.
Definition: trx0i_s.h:152
std::chrono::system_clock::time_point trx_wait_started
The value of trx->lock.wait_started.
Definition: trx0i_s.h:143
const i_s_locks_row_t * requested_lock_row
pointer to a row in innodb_locks if trx is waiting, or NULL
Definition: trx0i_s.h:137
uintmax_t trx_weight
The value of TRX_WEIGHT(trx)
Definition: trx0i_s.h:145
uintmax_t trx_rows_modified
trx_t::undo_no
Definition: trx0i_s.h:167
Lock struct; protected by lock_sys latches.
Definition: lock0priv.h:136
This structure describes the intermediate buffer.
Definition: trx0i_s.cc:131
void trx_i_s_cache_end_read(trx_i_s_cache_t *cache)
Release a shared/read lock on the tables cache.
Definition: trx0i_s.cc:995
void trx_i_s_cache_start_read(trx_i_s_cache_t *cache)
Issue a shared/read lock on the tables cache.
Definition: trx0i_s.cc:989
char * trx_i_s_create_lock_id(const i_s_locks_row_t *row, char *lock_id, ulint lock_id_size)
Crafts a lock id string from a i_s_locks_row_t object.
Definition: trx0i_s.cc:1092
constexpr uint32_t TRX_I_S_MEM_LIMIT
The maximum amount of memory that can be consumed by innodb_trx, innodb_locks and innodb_lock_waits i...
Definition: trx0i_s.h:49
void * trx_i_s_cache_get_nth_row(trx_i_s_cache_t *cache, enum i_s_table table, ulint n)
Retrieves the nth row in the cache for a given INFORMATION SCHEMA table.
Definition: trx0i_s.cc:1057
void trx_i_s_cache_start_write(trx_i_s_cache_t *cache)
Issue an exclusive/write lock on the tables cache.
Definition: trx0i_s.cc:1006
void fill_locks_row(i_s_locks_row_t *row, const lock_t *lock, ulint heap_no)
Fills i_s_locks_row_t object with data about the lock.
Definition: trx0i_s.cc:648
bool trx_i_s_cache_is_truncated(trx_i_s_cache_t *cache)
Returns true if the data in the cache is truncated due to the memory limit posed by TRX_I_S_MEM_LIMIT...
Definition: trx0i_s.cc:940
constexpr uint32_t TRX_I_S_TRX_FK_ERROR_MAX_LEN
The maximum length of a string that can be stored in i_s_trx_row_t::trx_foreign_key_error.
Definition: trx0i_s.h:65
trx_i_s_cache_t * trx_i_s_cache
This is the intermediate buffer where data needed to fill the INFORMATION SCHEMA tables is fetched an...
Definition: trx0i_s.cc:161
constexpr uint32_t TRX_I_S_TRX_ISOLATION_LEVEL_MAX_LEN
The maximum length of a string that can be stored in i_s_trx_row_t::trx_isolation_level.
Definition: trx0i_s.h:69
ulint trx_i_s_cache_get_rows_used(trx_i_s_cache_t *cache, enum i_s_table table)
Retrieves the number of used rows in the cache for a given INFORMATION SCHEMA table.
Definition: trx0i_s.cc:1044
int trx_i_s_possibly_fetch_data_into_cache(trx_i_s_cache_t *cache)
Update the transactions cache if it has not been read for some time.
Definition: trx0i_s.cc:919
constexpr uint32_t TRX_I_S_TRX_OP_STATE_MAX_LEN
The maximum length of a string that can be stored in i_s_trx_row_t::trx_operation_state.
Definition: trx0i_s.h:61
constexpr uint32_t TRX_I_S_TRX_QUERY_MAX_LEN
The maximum length of a string that can be stored in i_s_trx_row_t::trx_query.
Definition: trx0i_s.h:57
void trx_i_s_cache_end_write(trx_i_s_cache_t *cache)
Release an exclusive/write lock on the tables cache.
Definition: trx0i_s.cc:1012
constexpr uint32_t TRX_I_S_LOCK_ID_MAX_LEN
The maximum length of a resulting lock_id_size in trx_i_s_create_lock_id(), not including the termina...
Definition: trx0i_s.h:246
void trx_i_s_cache_free(trx_i_s_cache_t *cache)
Free the INFORMATION SCHEMA trx related cache.
Definition: trx0i_s.cc:977
int trx_i_s_parse_lock_id(const char *lock_id, i_s_locks_row_t *row)
Parses lock id into row.
Definition: trx0i_s.cc:1122
i_s_table
Auxiliary enum used by functions that need to select one of the INFORMATION_SCHEMA tables.
Definition: trx0i_s.h:193
@ I_S_INNODB_TRX
INFORMATION_SCHEMA.innodb_trx.
Definition: trx0i_s.h:194
constexpr uint32_t TRX_I_S_LOCK_DATA_MAX_LEN
The maximum length of a string that can be stored in i_s_locks_row_t::lock_data.
Definition: trx0i_s.h:53
void p_s_fill_lock_data(const char **lock_data, const lock_t *lock, ulint heap_no, PSI_server_data_lock_container *container)
Fill performance schema lock data.
Definition: trx0i_s.cc:584
void trx_i_s_cache_init(trx_i_s_cache_t *cache)
Initialize INFORMATION SCHEMA trx related cache.
Definition: trx0i_s.cc:945
Transaction system global type definitions.
ib_id_t trx_id_t
Transaction identifier (DB_TRX_ID, DATA_TRX_ID)
Definition: trx0types.h:138
Version control for database, common definitions, and include files.
unsigned long int ulint
Definition: univ.i:406
int n
Definition: xcom_base.cc:509