MySQL 9.1.0
Source Code Documentation
mdl.h
Go to the documentation of this file.
1#ifndef MDL_H
2#define MDL_H
3/* Copyright (c) 2009, 2024, Oracle and/or its affiliates.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License, version 2.0,
7 as published by the Free Software Foundation.
8
9 This program is designed to work with certain software (including
10 but not limited to OpenSSL) that is licensed under separate terms,
11 as designated in a particular file or component or in included license
12 documentation. The authors of MySQL hereby grant you an additional
13 permission to link the program and your derivative works with the
14 separately licensed software that they have either included with
15 the program or referenced in the documentation.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License, version 2.0, for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
25
26#include <assert.h>
27#include <string.h>
28#include <sys/types.h>
29#include <algorithm>
30#include <functional>
31#include <new>
32#include <unordered_map>
33
34#include "my_alloc.h"
35#include "my_compiler.h"
36#include "strmake.h"
37
38#include "my_inttypes.h"
39#include "my_psi_config.h"
40#include "my_sys.h"
41#include "my_systime.h" // Timout_type
48#include "mysql_com.h"
49#include "sql/sql_plist.h"
50#include "template_utils.h"
51
52class MDL_context;
53class MDL_lock;
54class MDL_ticket;
55class THD;
56struct LF_PINS;
57struct MDL_key;
58struct MEM_ROOT;
59namespace mdl_unittest {
61}
62/**
63 @def ENTER_COND(C, M, S, O)
64 Start a wait on a condition.
65 @param C the condition to wait on
66 @param M the associated mutex
67 @param S the new stage to enter
68 @param O the previous stage
69 @sa EXIT_COND().
70*/
71#define ENTER_COND(C, M, S, O) \
72 enter_cond(C, M, S, O, __func__, __FILE__, __LINE__)
73
74/**
75 @def EXIT_COND(S)
76 End a wait on a condition
77 @param S the new stage to enter
78*/
79#define EXIT_COND(S) exit_cond(S, __func__, __FILE__, __LINE__)
80
81/**
82 An interface to separate the MDL module from the THD, and the rest of the
83 server code.
84 */
85
87 public:
88 virtual ~MDL_context_owner() = default;
89
90 /**
91 Enter a condition wait.
92 For @c enter_cond() / @c exit_cond() to work the mutex must be held before
93 @c enter_cond(); this mutex must then be released before @c exit_cond().
94 Usage must be: lock mutex; enter_cond(); your code; unlock mutex;
95 exit_cond().
96 @param cond the condition to wait on
97 @param mutex the associated mutex
98 @param [in] stage the stage to enter, or NULL
99 @param [out] old_stage the previous stage, or NULL
100 @param src_function function name of the caller
101 @param src_file file name of the caller
102 @param src_line line number of the caller
103 @sa ENTER_COND(), THD::enter_cond()
104 @sa EXIT_COND(), THD::exit_cond()
105 */
106 virtual void enter_cond(mysql_cond_t *cond, mysql_mutex_t *mutex,
107 const PSI_stage_info *stage,
108 PSI_stage_info *old_stage, const char *src_function,
109 const char *src_file, int src_line) = 0;
110
111 /**
112 End a wait on a condition
113 @param [in] stage the new stage to enter
114 @param src_function function name of the caller
115 @param src_file file name of the caller
116 @param src_line line number of the caller
117 @sa ENTER_COND(), THD::enter_cond()
118 @sa EXIT_COND(), THD::exit_cond()
119 */
120 virtual void exit_cond(const PSI_stage_info *stage, const char *src_function,
121 const char *src_file, int src_line) = 0;
122 /**
123 Has the owner thread been killed?
124 */
125 virtual int is_killed() const = 0;
126
127 /**
128 Does the owner still have connection to the client?
129 */
130 virtual bool is_connected(bool = false) = 0;
131
132 /**
133 Indicates that owner thread might have some commit order (non-MDL) waits
134 for it which are still taken into account by MDL deadlock detection,
135 even in cases when it doesn't have any MDL locks acquired and therefore
136 can't have any MDL waiters.
137
138 @note It is important for this check to be non-racy and quick (perhaps
139 at expense of being pretty pessimistic), so it can be used to
140 make decisions reliably about whether we can skip deadlock
141 detection in some cases.
142 */
143 virtual bool might_have_commit_order_waiters() const = 0;
144
145 /**
146 Within MDL subsystem this one is only used for DEBUG_SYNC.
147 Do not use it to peek/poke into other parts of THD from MDL.
148 However it is OK to use this method in callbacks provided
149 by SQL-layer to MDL subsystem (since SQL-layer has full
150 access to THD anyway).
151
152 @warning For some derived classes implementation of this method
153 can return nullptr. Calling side must be ready to handle
154 this case.
155 */
156 virtual THD *get_thd() = 0;
157
158 /**
159 @see THD::notify_shared_lock()
160 */
162 bool needs_thr_lock_abort) = 0;
163
164 /**
165 Notify/get permission from interested storage engines before acquiring
166 exclusive lock for the key.
167
168 The returned argument 'victimized' specify reason for lock
169 not granted. If 'true', lock was refused in an attempt to
170 resolve a possible MDL->GSL deadlock. Locking may then be retried.
171
172 @return False if notification was successful and it is OK to acquire lock,
173 True if one of SEs asks to abort lock acquisition.
174 */
175 virtual bool notify_hton_pre_acquire_exclusive(const MDL_key *mdl_key,
176 bool *victimized) = 0;
177 /**
178 Notify interested storage engines that we have just released exclusive
179 lock for the key.
180 */
181 virtual void notify_hton_post_release_exclusive(const MDL_key *mdl_key) = 0;
182
183 /**
184 Get random seed specific to this THD to be used for initialization
185 of PRNG for the MDL_context.
186 */
187 virtual uint get_rand_seed() const = 0;
188};
189
190/**
191 Type of metadata lock request.
192
193 @sa Comments for MDL_object_lock::can_grant_lock() and
194 MDL_scoped_lock::can_grant_lock() for details.
195*/
196
198 /*
199 An intention exclusive metadata lock. Used only for scoped locks.
200 Owner of this type of lock can acquire upgradable exclusive locks on
201 individual objects.
202 This lock type is also used when doing lookups in the dictionary
203 cache. When acquiring objects in a schema, we lock the schema with IX
204 to prevent the schema from being deleted. This should conceptually
205 be an IS lock, but it would have the same behavior as the current IX.
206 Compatible with other IX locks, but is incompatible with scoped S and
207 X locks.
208 */
210 /*
211 A shared metadata lock.
212 To be used in cases when we are interested in object metadata only
213 and there is no intention to access object data (e.g. for stored
214 routines or during preparing prepared statements).
215 We also mis-use this type of lock for open HANDLERs, since lock
216 acquired by this statement has to be compatible with lock acquired
217 by LOCK TABLES ... WRITE statement, i.e. SNRW (We can't get by by
218 acquiring S lock at HANDLER ... OPEN time and upgrading it to SR
219 lock for HANDLER ... READ as it doesn't solve problem with need
220 to abort DML statements which wait on table level lock while having
221 open HANDLER in the same connection).
222 To avoid deadlock which may occur when SNRW lock is being upgraded to
223 X lock for table on which there is an active S lock which is owned by
224 thread which waits in its turn for table-level lock owned by thread
225 performing upgrade we have to use thr_abort_locks_for_thread()
226 facility in such situation.
227 This problem does not arise for locks on stored routines as we don't
228 use SNRW locks for them. It also does not arise when S locks are used
229 during PREPARE calls as table-level locks are not acquired in this
230 case.
231 */
233 /*
234 A high priority shared metadata lock.
235 Used for cases when there is no intention to access object data (i.e.
236 data in the table).
237 "High priority" means that, unlike other shared locks, it is granted
238 ignoring pending requests for exclusive locks. Intended for use in
239 cases when we only need to access metadata and not data, e.g. when
240 filling an INFORMATION_SCHEMA table.
241 Since SH lock is compatible with SNRW lock, the connection that
242 holds SH lock lock should not try to acquire any kind of table-level
243 or row-level lock, as this can lead to a deadlock. Moreover, after
244 acquiring SH lock, the connection should not wait for any other
245 resource, as it might cause starvation for X locks and a potential
246 deadlock during upgrade of SNW or SNRW to X lock (e.g. if the
247 upgrading connection holds the resource that is being waited for).
248 */
250 /*
251 A shared metadata lock for cases when there is an intention to read data
252 from table.
253 A connection holding this kind of lock can read table metadata and read
254 table data (after acquiring appropriate table and row-level locks).
255 This means that one can only acquire TL_READ, TL_READ_NO_INSERT, and
256 similar table-level locks on table if one holds SR MDL lock on it.
257 To be used for tables in SELECTs, subqueries, and LOCK TABLE ... READ
258 statements.
259 */
261 /*
262 A shared metadata lock for cases when there is an intention to modify
263 (and not just read) data in the table.
264 A connection holding SW lock can read table metadata and modify or read
265 table data (after acquiring appropriate table and row-level locks).
266 To be used for tables to be modified by INSERT, UPDATE, DELETE
267 statements, but not LOCK TABLE ... WRITE or DDL). Also taken by
268 SELECT ... FOR UPDATE.
269 */
271 /*
272 A version of MDL_SHARED_WRITE lock which has lower priority than
273 MDL_SHARED_READ_ONLY locks. Used by DML statements modifying
274 tables and using the LOW_PRIORITY clause.
275 */
277 /*
278 An upgradable shared metadata lock which allows concurrent updates and
279 reads of table data.
280 A connection holding this kind of lock can read table metadata and read
281 table data. It should not modify data as this lock is compatible with
282 SRO locks.
283 Can be upgraded to SNW, SNRW and X locks. Once SU lock is upgraded to X
284 or SNRW lock data modification can happen freely.
285 To be used for the first phase of ALTER TABLE.
286 */
288 /*
289 A shared metadata lock for cases when we need to read data from table
290 and block all concurrent modifications to it (for both data and metadata).
291 Used by LOCK TABLES READ statement.
292 */
294 /*
295 An upgradable shared metadata lock which blocks all attempts to update
296 table data, allowing reads.
297 A connection holding this kind of lock can read table metadata and read
298 table data.
299 Can be upgraded to X metadata lock.
300 Note, that since this type of lock is not compatible with SNRW or SW
301 lock types, acquiring appropriate engine-level locks for reading
302 (TL_READ* for MyISAM, shared row locks in InnoDB) should be
303 contention-free.
304 To be used for the first phase of ALTER TABLE, when copying data between
305 tables, to allow concurrent SELECTs from the table, but not UPDATEs.
306 */
308 /*
309 An upgradable shared metadata lock which allows other connections
310 to access table metadata, but not data.
311 It blocks all attempts to read or update table data, while allowing
312 INFORMATION_SCHEMA and SHOW queries.
313 A connection holding this kind of lock can read table metadata modify and
314 read table data.
315 Can be upgraded to X metadata lock.
316 To be used for LOCK TABLES WRITE statement.
317 Not compatible with any other lock type except S and SH.
318 */
320 /*
321 An exclusive metadata lock.
322 A connection holding this lock can modify both table's metadata and data.
323 No other type of metadata lock can be granted while this lock is held.
324 To be used for CREATE/DROP/RENAME TABLE statements and for execution of
325 certain phases of other DDL statements.
326 */
328 /* This should be the last !!! */
331
332/** Duration of metadata lock. */
333
335 /**
336 Locks with statement duration are automatically released at the end
337 of statement or transaction.
338 */
340 /**
341 Locks with transaction duration are automatically released at the end
342 of transaction.
343 */
345 /**
346 Locks with explicit duration survive the end of statement and transaction.
347 They have to be released explicitly by calling MDL_context::release_lock().
348 */
350 /* This should be the last ! */
353
354/** Maximal length of key for metadata locking subsystem. */
355#define MAX_MDLKEY_LENGTH (1 + NAME_LEN + 1 + NAME_LEN + 1)
356
357/**
358 Metadata lock object key.
359
360 A lock is requested or granted based on a fully qualified name and type.
361 E.g. They key for a table consists of @<0 (=table)@>+@<database@>+@<table
362 name@>. Elsewhere in the comments this triple will be referred to simply as
363 "key" or "name".
364*/
365
366struct MDL_key {
367 public:
368#ifdef HAVE_PSI_INTERFACE
369 static void init_psi_keys();
370#endif
371
372 /**
373 Object namespaces.
374 Sic: when adding a new member to this enum make sure to
375 update m_namespace_to_wait_state_name array in mdl.cc!
376
377 Different types of objects exist in different namespaces
378 - GLOBAL is used for the global read lock.
379 - BACKUP_LOCK is to block any operations that could cause
380 inconsistent backup. Such operations are most DDL statements,
381 and some administrative statements.
382 - TABLESPACE is for tablespaces.
383 - SCHEMA is for schemas (aka databases).
384 - TABLE is for tables and views.
385 - FUNCTION is for stored functions.
386 - PROCEDURE is for stored procedures.
387 - TRIGGER is for triggers.
388 - EVENT is for event scheduler events.
389 - COMMIT is for enabling the global read lock to block commits.
390 - USER_LEVEL_LOCK is for user-level locks.
391 - LOCKING_SERVICE is for the name plugin RW-lock service
392 - SRID is for spatial reference systems
393 - ACL_CACHE is for ACL caches
394 - COLUMN_STATISTICS is for column statistics, such as histograms
395 - RESOURCE_GROUPS is for resource groups.
396 - FOREIGN_KEY is for foreign key names.
397 - CHECK_CONSTRAINT is for check constraint names.
398 Note that requests waiting for user-level locks get special
399 treatment - waiting is aborted if connection to client is lost.
400 */
420 /* This should be the last ! */
422 };
423
424 const uchar *ptr() const { return pointer_cast<const uchar *>(m_ptr); }
425 uint length() const { return m_length; }
426
427 const char *db_name() const { return m_ptr + 1; }
428 uint db_name_length() const { return m_db_name_length; }
429
430 const char *name() const {
432 : m_ptr + m_db_name_length + 2);
433 }
434 uint name_length() const { return m_object_name_length; }
435
436 const char *col_name() const {
438
440 /* A column name was stored in the key buffer. */
442 }
443
444 /* No column name stored. */
445 return nullptr;
446 }
447
448 uint col_name_length() const {
450
452 /* A column name was stored in the key buffer. */
454 }
455
456 /* No column name stored. */
457 return 0;
458 }
459
461 return (enum_mdl_namespace)(m_ptr[0]);
462 }
463
464 /**
465 Construct a metadata lock key from a triplet (mdl_namespace,
466 database and name).
467
468 @remark The key for a table is @<mdl_namespace@>+@<database name@>+@<table
469 name@>
470
471 @param mdl_namespace Id of namespace of object to be locked
472 @param db Name of database to which the object belongs
473 @param name Name of of the object
474 */
476 const char *name) {
477 m_ptr[0] = (char)mdl_namespace;
478
480
481 /*
482 It is responsibility of caller to ensure that db and object names
483 are not longer than NAME_LEN. Still we play safe and try to avoid
484 buffer overruns.
485
486 Implicit tablespace names in InnoDB may be longer than NAME_LEN.
487 We will lock based on the first NAME_LEN characters.
488
489 TODO: The patch acquires metadata locks on the NAME_LEN
490 first bytest of the tablespace names. For long names,
491 the consequence of locking on this prefix is
492 that locking a single implicit tablespace might end up
493 effectively lock all implicit tablespaces in the same
494 schema. A possible fix is to lock on a prefix of length
495 NAME_LEN * 2, since this is the real buffer size of
496 the metadata lock key. Dependencies from the PFS
497 implementation, possibly relying on the key format,
498 must be investigated first, though.
499 */
500 assert(strlen(db) <= NAME_LEN);
501 assert((mdl_namespace == TABLESPACE) || (strlen(name) <= NAME_LEN));
503 static_cast<uint16>(strmake(m_ptr + 1, db, NAME_LEN) - m_ptr - 1);
504 m_object_name_length = static_cast<uint16>(
506 m_db_name_length - 2);
508 }
509
510 /**
511 Construct a metadata lock key from a quadruplet (mdl_namespace,
512 database, table and column name).
513
514 @remark The key for a column is
515 @<mdl_namespace@>+@<database name@>+@<table name@>+@<column name@>
516
517 @param mdl_namespace Id of namespace of object to be locked
518 @param db Name of database to which the object belongs
519 @param name Name of of the object
520 @param column_name Name of of the column
521 */
523 const char *name, const char *column_name) {
524 m_ptr[0] = (char)mdl_namespace;
525 char *start;
526 char *end;
527
529
530 assert(strlen(db) <= NAME_LEN);
531 start = m_ptr + 1;
532 end = strmake(start, db, NAME_LEN);
533 m_db_name_length = static_cast<uint16>(end - start);
534
535 assert(strlen(name) <= NAME_LEN);
536 start = end + 1;
538 m_object_name_length = static_cast<uint16>(end - start);
539
540 const size_t col_len = strlen(column_name);
541 assert(col_len <= NAME_LEN);
542 start = end + 1;
543 const size_t remaining =
545 uint16 extra_length = 0;
546
547 /*
548 In theory:
549 - schema name is up to NAME_LEN characters
550 - object name is up to NAME_LEN characters
551 - column name is up to NAME_LEN characters
552 - NAME_LEN is 64 characters
553 - 1 character is up to 3 bytes (UTF8MB3),
554 and when moving to UTF8MB4, up to 4 bytes.
555 - Storing a SCHEMA + OBJECT MDL key
556 can take up to 387 bytes
557 - Storing a SCHEMA + OBJECT + COLUMN MDL key
558 can take up to 580 bytes.
559
560 In practice:
561 - full storage is allocated for SCHEMA + OBJECT only,
562 storage for COLUMN is **NOT** reserved.
563 - SCHEMA and OBJECT names are typically shorter,
564 and are not using systematically multi-bytes characters
565 for each character, so that less space is required.
566 - MDL keys that are not COLUMN_STATISTICS
567 are stored in full, without truncation.
568
569 For the COLUMN_STATISTICS name space:
570 - either the full SCHEMA + OBJECT + COLUMN key fits
571 within 387 bytes, in which case the fully qualified
572 column name is stored,
573 leading to MDL locks per column (as intended)
574 - or the SCHEMA and OBJECT names are very long,
575 so that not enough room is left to store a column name,
576 in which case the MDL key is truncated to be
577 COLUMN_STATISTICS + SCHEMA + NAME.
578 In this case, MDL locks for columns col_X and col_Y
579 in table LONG_FOO.LONG_BAR will both share the same
580 key LONG_FOO.LONG_BAR, in effect providing a lock
581 granularity not per column but per table.
582 This is a degraded mode of operation,
583 which serializes MDL access to columns
584 (for tables with a very long fully qualified name),
585 to reduce the memory footprint for all MDL access.
586
587 To be revised if the MDL key buffer is allocated dynamically
588 instead.
589 */
590
591 static_assert(MAX_MDLKEY_LENGTH == 387, "UTF8MB3");
592
593 /*
594 Check if there is room to store the whole column name.
595 This code is not trying to store truncated column names,
596 to avoid cutting column_name in the middle of a
597 multi-byte character.
598 */
599 if (remaining >= col_len + 1) {
600 end = strmake(start, column_name, remaining);
601 extra_length = static_cast<uint16>(end - start) + 1; // With \0
602 }
603 m_length = m_db_name_length + m_object_name_length + 3 + extra_length;
604 assert(m_length <= MAX_MDLKEY_LENGTH);
605 }
606
607 /**
608 Construct a metadata lock key from a quadruplet (mdl_namespace, database,
609 normalized object name buffer and the object name).
610
611 @remark The key for a routine/event/resource group/trigger is
612 @<mdl_namespace@>+@<database name@>+@<normalized object name@>
613 additionally @<object name@> is stored in the same buffer for information
614 purpose if buffer has sufficient space.
615
616 Routine, Event and Resource group names are case sensitive and accent
617 sensitive. So normalized object name is used to form a MDL_key.
618
619 With the UTF8MB3 charset space reserved for the db name/object
620 name is 64 * 3 bytes. utf8mb3_general_ci collation is used for the
621 Routine, Event and Resource group names. With this collation, the
622 normalized object name uses just 2 bytes for each character (max
623 length = 64 * 2 bytes). MDL_key has still some space to store the
624 object names. If there is a sufficient space for the object name
625 in the MDL_key then it is stored in the MDL_key (similar to the
626 column names in the MDL_key). Actual object name is used by the
627 PFS. Not listing actual object name from the PFS should be OK
628 when there is no space to store it (instead of increasing the
629 MDL_key size). Object name is not used in the key comparisons. So
630 only (mdl_namespace + strlen(db) + 1 + normalized_name_len + 1)
631 value is stored in the m_length member.
632
633 @param mdl_namespace Id of namespace of object to be locked.
634 @param db Name of database to which the object belongs.
635 @param normalized_name Normalized name of the object.
636 @param normalized_name_len Length of the normalized object name.
637 @param name Name of the object.
638 */
640 const char *normalized_name, size_t normalized_name_len,
641 const char *name) {
642 m_ptr[0] = (char)mdl_namespace;
643
644 /*
645 FUNCTION, PROCEDURE, EVENT and RESOURCE_GROUPS names are case and accent
646 insensitive. For other objects key should not be formed from this method.
647 */
649
650 assert(strlen(db) <= NAME_LEN && strlen(name) <= NAME_LEN &&
651 normalized_name_len <= NAME_CHAR_LEN * 2);
652
653 // Database name.
655 static_cast<uint16>(strmake(m_ptr + 1, db, NAME_LEN) - m_ptr - 1);
656
657 // Normalized object name.
658 m_length = static_cast<uint16>(m_db_name_length + normalized_name_len + 3);
659 memcpy(m_ptr + m_db_name_length + 2, normalized_name, normalized_name_len);
660 *(m_ptr + m_length - 1) = 0;
661
662 /*
663 Copy name of the object if there is a sufficient space to store the name
664 in the MDL key. This code is not trying to store truncated object names,
665 to avoid cutting object_name in the middle of a multi-byte character.
666 */
667 if (strlen(name) < static_cast<size_t>(MAX_MDLKEY_LENGTH - m_length)) {
668 m_object_name_length = static_cast<uint16>(
670 m_ptr - m_length));
671 } else {
673 *(m_ptr + m_length) = 0;
674 }
675
677 }
678
679 /**
680 Construct a metadata lock key from namespace and partial key, which
681 contains info about object database and name.
682
683 @remark The partial key must be "<database>\0<name>\0".
684
685 @param mdl_namespace Id of namespace of object to be locked
686 @param part_key Partial key.
687 @param part_key_length Partial key length
688 @param db_length Database name length.
689 */
691 size_t part_key_length, size_t db_length) {
692 /*
693 Key suffix provided should be in compatible format and
694 its components should adhere to length restrictions.
695 */
696 assert(strlen(part_key) == db_length);
697 assert(db_length + 1 + strlen(part_key + db_length + 1) + 1 ==
698 part_key_length);
699 assert(db_length <= NAME_LEN);
700 assert(part_key_length <= NAME_LEN + 1 + NAME_LEN + 1);
701
702 m_ptr[0] = (char)mdl_namespace;
703 /*
704 Partial key of objects with normalized object name can not be used to
705 initialize MDL key.
706 */
708
709 memcpy(m_ptr + 1, part_key, part_key_length);
710 m_length = static_cast<uint16>(part_key_length + 1);
711 m_db_name_length = static_cast<uint16>(db_length);
713 }
714 void mdl_key_init(const MDL_key *rhs) {
715 const uint16 copy_length =
717 ? rhs->m_length + rhs->m_object_name_length + 1
718 : rhs->m_length;
719 memcpy(m_ptr, rhs->m_ptr, copy_length);
720 m_length = rhs->m_length;
723 }
724 void reset() {
725 m_ptr[0] = NAMESPACE_END;
728 m_length = 0;
729 }
730 bool is_equal(const MDL_key *rhs) const {
731 return (m_length == rhs->m_length &&
732 memcmp(m_ptr, rhs->m_ptr, m_length) == 0);
733 }
734 /**
735 Compare two MDL keys lexicographically.
736 */
737 int cmp(const MDL_key *rhs) const {
738 /*
739 For the keys with the normalized names, there is a possibility of getting
740 '\0' in its middle. So only key content comparison would yield incorrect
741 result. Hence comparing key length too when keys are equal.
742 For other keys, key buffer is always '\0'-terminated. Since key character
743 set is utf-8, we can safely assume that no character starts with a zero
744 byte.
745 */
746 int res = memcmp(m_ptr, rhs->m_ptr, std::min(m_length, rhs->m_length));
747 if (res == 0) res = m_length - rhs->m_length;
748 return res;
749 }
750
751 MDL_key(const MDL_key &rhs) { mdl_key_init(&rhs); }
752
753 MDL_key &operator=(const MDL_key &rhs) {
754 mdl_key_init(&rhs);
755 return *this;
756 }
757
758 MDL_key(enum_mdl_namespace namespace_arg, const char *db_arg,
759 const char *name_arg) {
760 mdl_key_init(namespace_arg, db_arg, name_arg);
761 }
762 MDL_key() = default; /* To use when part of MDL_request. */
763
764 /**
765 Get thread state name to be used in case when we have to
766 wait on resource identified by key.
767 */
770 }
771
772 private:
773 /**
774 Check if normalized object name should be used.
775
776 @return true if normlized object name should be used, false
777 otherwise.
778 */
780 return (mdl_namespace() == FUNCTION || mdl_namespace() == PROCEDURE ||
783 }
784
785 private:
791};
792
793/**
794 A pending metadata lock request.
795
796 A lock request and a granted metadata lock are represented by
797 different classes because they have different allocation
798 sites and hence different lifetimes. The allocation of lock requests is
799 controlled from outside of the MDL subsystem, while allocation of granted
800 locks (tickets) is controlled within the MDL subsystem.
801*/
802
804 public:
805 /** Type of metadata lock. */
807 /** Duration for requested lock. */
809
810 /**
811 Pointers for participating in the list of lock requests for this context.
812 */
815 /**
816 Pointer to the lock ticket object for this lock request.
817 Valid only if this lock request is satisfied.
818 */
820
821 /** A lock is requested based on a fully qualified name and type. */
823
824 const char *m_src_file{nullptr};
825 uint m_src_line{0};
826
827 public:
828 static void *operator new(size_t size, MEM_ROOT *mem_root,
829 const std::nothrow_t &arg
830 [[maybe_unused]] = std::nothrow) noexcept {
831 return mem_root->Alloc(size);
832 }
833
834 static void operator delete(void *, MEM_ROOT *,
835 const std::nothrow_t &) noexcept {}
836
838 const char *db_arg, const char *name_arg,
839 enum_mdl_type mdl_type_arg,
840 enum_mdl_duration mdl_duration_arg,
841 const char *src_file, uint src_line);
842 void init_by_key_with_source(const MDL_key *key_arg,
843 enum_mdl_type mdl_type_arg,
844 enum_mdl_duration mdl_duration_arg,
845 const char *src_file, uint src_line);
847 const char *part_key_arg,
848 size_t part_key_length_arg,
849 size_t db_length_arg,
850 enum_mdl_type mdl_type_arg,
851 enum_mdl_duration mdl_duration_arg,
852 const char *src_file, uint src_line);
853 /** Set type of lock request. Can be only applied to pending locks. */
854 inline void set_type(enum_mdl_type type_arg) {
855 assert(ticket == nullptr);
856 type = type_arg;
857 }
858
859 /**
860 Is this a request for a lock which allow data to be updated?
861
862 @note This method returns true for MDL_SHARED_UPGRADABLE type of
863 lock. Even though this type of lock doesn't allow updates
864 it will always be upgraded to one that does.
865 */
868 }
869
870 /** Is this a request for a strong, DDL/LOCK TABLES-type, of lock? */
872 return type >= MDL_SHARED_UPGRADABLE;
873 }
874
875 /**
876 This constructor exists for two reasons:
877
878 - Table_ref objects are sometimes default-constructed. We plan to
879 remove this as there is no practical reason, the call to the default
880 constructor is always followed by either a call to
881 Table_ref::operator= or memberwise assignments.
882
883 - In some legacy cases Table_ref objects are copy-assigned without
884 intention to copy the Table_ref::mdl_request member. In this cases
885 they are overwritten with an uninitialized MDL_request object. The cases
886 are:
887
888 - Sql_cmd_handler_open::execute()
889 - mysql_execute_command()
890 - Query_expression::prepare()
891 - fill_defined_view_parts()
892
893 No new cases are expected. In all other cases, so far only
894 Locked_tables_list::rename_locked_table(), a move assignment is actually
895 what is intended.
896 */
897 MDL_request() = default;
898
900 : type(rhs.type), duration(rhs.duration), ticket(nullptr), key(rhs.key) {}
901
903
905};
906
907#define MDL_REQUEST_INIT(R, P1, P2, P3, P4, P5) \
908 (*R).init_with_source(P1, P2, P3, P4, P5, __FILE__, __LINE__)
909
910#define MDL_REQUEST_INIT_BY_KEY(R, P1, P2, P3) \
911 (*R).init_by_key_with_source(P1, P2, P3, __FILE__, __LINE__)
912
913#define MDL_REQUEST_INIT_BY_PART_KEY(R, P1, P2, P3, P4, P5, P6) \
914 (*R).init_by_part_key_with_source(P1, P2, P3, P4, P5, P6, __FILE__, __LINE__)
915
916/**
917 An abstract class for inspection of a connected
918 subgraph of the wait-for graph.
919*/
920
922 public:
923 virtual bool enter_node(MDL_context *node) = 0;
924 virtual void leave_node(MDL_context *node) = 0;
925
926 virtual bool inspect_edge(MDL_context *dest) = 0;
929
930 public:
931 /**
932 XXX, hack: During deadlock search, we may need to
933 inspect TABLE_SHAREs and acquire LOCK_open. Since
934 LOCK_open is not a recursive mutex, count here how many
935 times we "took" it (but only take and release once).
936 Not using a native recursive mutex or rwlock in 5.5 for
937 LOCK_open since it has significant performance impacts.
938 */
940};
941
942/**
943 Abstract class representing an edge in the waiters graph
944 to be traversed by deadlock detection algorithm.
945*/
946
948 public:
950
951 /**
952 Accept a wait-for graph visitor to inspect the node
953 this edge is leading to.
954 */
955 virtual bool accept_visitor(MDL_wait_for_graph_visitor *gvisitor) = 0;
956
957 static const uint DEADLOCK_WEIGHT_CO = 0;
958 static const uint DEADLOCK_WEIGHT_DML = 25;
959 static const uint DEADLOCK_WEIGHT_ULL = 50;
960 static const uint DEADLOCK_WEIGHT_DDL = 100;
961
962 /* A helper used to determine which lock request should be aborted. */
963 virtual uint get_deadlock_weight() const = 0;
964};
965
966/**
967 A granted metadata lock.
968
969 @warning MDL_ticket members are private to the MDL subsystem.
970
971 @note Multiple shared locks on a same object are represented by a
972 single ticket. The same does not apply for other lock types.
973
974 @note There are two groups of MDL_ticket members:
975 - "Externally accessible". These members can be accessed from
976 threads/contexts different than ticket owner in cases when
977 ticket participates in some list of granted or waiting tickets
978 for a lock. Therefore one should change these members before
979 including then to waiting/granted lists or while holding lock
980 protecting those lists.
981 - "Context private". Such members are private to thread/context
982 owning this ticket. I.e. they should not be accessed from other
983 threads/contexts.
984*/
985
987 public:
988 /**
989 Pointers for participating in the list of lock requests for this context.
990 Context private.
991 */
994
995 /**
996 Pointers for participating in the list of satisfied/pending requests
997 for the lock. Externally accessible.
998 */
1001
1002 public:
1003 bool has_pending_conflicting_lock() const;
1004
1005 MDL_context *get_ctx() const { return m_ctx; }
1009 }
1010 enum_mdl_type get_type() const { return m_type; }
1011 MDL_lock *get_lock() const { return m_lock; }
1012 const MDL_key *get_key() const;
1014
1016
1019
1020 /** Implement MDL_wait_for_subgraph interface. */
1021 bool accept_visitor(MDL_wait_for_graph_visitor *dvisitor) override;
1022 uint get_deadlock_weight() const override;
1023
1024#ifndef NDEBUG
1027#endif
1028
1029 public:
1030 /**
1031 Status of lock request represented by the ticket as reflected in P_S.
1032 */
1039
1040 private:
1041 friend class MDL_context;
1042
1044#ifndef NDEBUG
1045 ,
1046 enum_mdl_duration duration_arg
1047#endif
1048 )
1049 : m_type(type_arg),
1050#ifndef NDEBUG
1051 m_duration(duration_arg),
1052#endif
1053 m_ctx(ctx_arg),
1054 m_lock(nullptr),
1055 m_is_fast_path(false),
1056 m_hton_notified(false),
1057 m_psi(nullptr) {
1058 }
1059
1060 ~MDL_ticket() override { assert(m_psi == nullptr); }
1061
1062 static MDL_ticket *create(MDL_context *ctx_arg, enum_mdl_type type_arg
1063#ifndef NDEBUG
1064 ,
1065 enum_mdl_duration duration_arg
1066#endif
1067 );
1068 static void destroy(MDL_ticket *ticket);
1069
1070 private:
1071 /** Type of metadata lock. Externally accessible. */
1073#ifndef NDEBUG
1074 /**
1075 Duration of lock represented by this ticket.
1076 Context private. Debug-only.
1077 */
1079#endif
1080 /**
1081 Context of the owner of the metadata lock ticket. Externally accessible.
1082 */
1084
1085 /**
1086 Pointer to the lock object for this lock ticket. Externally accessible.
1087 */
1089
1090 /**
1091 Indicates that ticket corresponds to lock acquired using "fast path"
1092 algorithm. Particularly this means that it was not included into
1093 MDL_lock::m_granted bitmap/list and instead is accounted for by
1094 MDL_lock::m_fast_path_locks_granted_counter
1095 */
1097
1098 /**
1099 Indicates that ticket corresponds to lock request which required
1100 storage engine notification during its acquisition and requires
1101 storage engine notification after its release.
1102 */
1104
1106
1107 private:
1108 MDL_ticket(const MDL_ticket &); /* not implemented */
1109 MDL_ticket &operator=(const MDL_ticket &); /* not implemented */
1110};
1111
1112/**
1113 Keep track of MDL_ticket for different durations. Maintains a
1114 hash-based secondary index into the linked lists, to speed up access
1115 by MDL_key.
1116 */
1118 public:
1119 /**
1120 Utility struct for representing a ticket pointer and its duration.
1121 */
1125
1128 : m_dur{d}, m_ticket{t} {}
1129 };
1130
1131 private:
1136
1137 struct Duration {
1139 /**
1140 m_mat_front tracks what was the front of m_ticket_list, the last
1141 time MDL_context::materialize_fast_path_locks() was called. This
1142 just an optimization which allows
1143 MDL_context::materialize_fast_path_locks() only to consider the
1144 locks added since the last time it ran. Consequently, it can be
1145 assumed that every ticket after m_mat_front is materialized, but
1146 the converse is not necessarily true as new, already
1147 materialized, locks may have been added since the last time
1148 materialize_fast_path_locks() ran.
1149 */
1151 };
1152
1154
1155 struct Hash {
1156 size_t operator()(const MDL_key *k) const;
1157 };
1158
1159 struct Key_equal {
1160 bool operator()(const MDL_key *a, const MDL_key *b) const {
1161 return a->is_equal(b);
1162 }
1163 };
1164
1165 using Ticket_map = std::unordered_multimap<const MDL_key *, MDL_ticket_handle,
1166 Hash, Key_equal>;
1167
1168 /**
1169 If the number of tickets in the ticket store (in all durations) is equal
1170 to, or exceeds this constant the hash index (in the form of an
1171 unordered_multi_map) will be maintained and used for lookups.
1172
1173 The value 256 is chosen as it has worked well in benchmarks.
1174 */
1175 const size_t THRESHOLD = 256;
1176
1177 /**
1178 Initial number of buckets in the hash index. THRESHOLD is chosen
1179 to get a fill-factor of 50% when reaching the threshold value.
1180 */
1182 size_t m_count = 0;
1183
1184 std::unique_ptr<Ticket_map> m_map;
1185
1187 MDL_ticket_handle find_in_hash(const MDL_request &req) const;
1188
1189 public:
1190 /**
1191 Public alias.
1192 */
1194
1195 /**
1196 Constructs store. The hash index is initially empty. Filled on demand.
1197 */
1199 : // Comment in to test threshold values in unit test micro benchmark
1200 // THRESHOLD{read_from_env("TS_THRESHOLD", 500)},
1201 m_map{nullptr} {}
1202
1203 /**
1204 Calls the closure provided as argument for each of the MDL_tickets
1205 in the given duration.
1206 @param dur duration list to iterate over
1207 @param clos closure to invoke for each ticket in the list
1208 */
1209 template <typename CLOS>
1211 List_iterator it(m_durations[dur].m_ticket_list);
1212 for (MDL_ticket *t = it++; t != nullptr; t = it++) {
1213 clos(t, dur);
1214 }
1215 }
1216
1217 /**
1218 Calls the closure provided as argument for each of the MDL_tickets
1219 in the store.
1220 @param clos closure to invoke for each ticket in the store
1221 */
1222 template <typename CLOS>
1224 for_each_ticket_in_duration_list(MDL_STATEMENT, std::forward<CLOS>(clos));
1225 for_each_ticket_in_duration_list(MDL_TRANSACTION, std::forward<CLOS>(clos));
1226 for_each_ticket_in_duration_list(MDL_EXPLICIT, std::forward<CLOS>(clos));
1227 }
1228
1229 /**
1230 Predicate for the emptiness of the store.
1231 @return true if there are no tickets in the store
1232 */
1233 bool is_empty() const;
1234
1235 /**
1236 Predicate for the emptiness of a given duration list.
1237 @param di the duration to check
1238 @return true if there are no tickets with the given duration
1239 */
1240 bool is_empty(int di) const;
1241
1242 /**
1243 Return the first MDL_ticket for the given duration.
1244
1245 @param di duration to get first ticket for
1246
1247 @return first ticket in the given duration or nullptr if no such
1248 tickets exist
1249 */
1250 MDL_ticket *front(int di);
1251
1252 /**
1253 Push a ticket onto the list for a given duration.
1254 @param dur duration list to push into
1255 @param ticket to push
1256 */
1257 void push_front(enum_mdl_duration dur, MDL_ticket *ticket);
1258
1259 /**
1260 Remove a ticket from a duration list. Note that since the
1261 underlying list is an intrusive linked list there is no guarantee
1262 that the ticket is actually in the duration list. It will be
1263 removed from which ever list it is in.
1264 */
1265 void remove(enum_mdl_duration dur, MDL_ticket *ticket);
1266
1267 /**
1268 Return a P-list iterator to the given duration.
1269 @param di duration list index
1270 @return P-list iterator to tickets with given duration
1271 */
1274 }
1275
1276 /**
1277 Move all tickets to the explicit duration list.
1278 */
1280
1281 /**
1282 Move all tickets to the transaction duration list.
1283 */
1285
1286 /**
1287 Look up a ticket based on its MDL_key.
1288 @param req request to locate ticket for
1289 @return MDL_ticket_handle with ticket pointer and found duration
1290 (or nullptr and MDL_DURATION_END if not found
1291 */
1292 MDL_ticket_handle find(const MDL_request &req) const;
1293
1294 /**
1295 Mark boundary for tickets with fast_path=false, so that later
1296 calls to materialize_fast_path_locks() do not have to traverse the
1297 whole set of tickets.
1298 */
1299 void set_materialized();
1300
1301 /**
1302 Return the first ticket for which materialize_fast_path_locks
1303 already has been called for the given duration.
1304
1305 @param di duration list index
1306 @return first materialized ticket for the given duration
1307 */
1309};
1310
1311/**
1312 Savepoint for MDL context.
1313
1314 Doesn't include metadata locks with explicit duration as
1315 they are not released during rollback to savepoint.
1316*/
1317
1319 public:
1320 MDL_savepoint() = default;
1321
1322 private:
1323 MDL_savepoint(MDL_ticket *stmt_ticket, MDL_ticket *trans_ticket)
1324 : m_stmt_ticket(stmt_ticket), m_trans_ticket(trans_ticket) {}
1325
1326 friend class MDL_context;
1327
1328 private:
1329 /**
1330 Pointer to last lock with statement duration which was taken
1331 before creation of savepoint.
1332 */
1334 /**
1335 Pointer to last lock with transaction duration which was taken
1336 before creation of savepoint.
1337 */
1339};
1340
1341/**
1342 A reliable way to wait on an MDL lock.
1343*/
1344
1346 public:
1347 MDL_wait();
1348 ~MDL_wait();
1349
1350 // WS_EMPTY since EMPTY conflicts with #define in system headers on some
1351 // platforms.
1353
1354 bool set_status(enum_wait_status result_arg);
1356 void reset_status();
1358 struct timespec *abs_timeout, bool signal_timeout,
1359 const PSI_stage_info *wait_state_name);
1360 /// @brief Wait for the status to be assigned to this wait slot.
1361 /// This method varies from the above as it tracks the time waited
1362 /// The called can collect this time on a tracker function
1363 /// @param owner MDL context owner.
1364 /// @param abs_timeout time after which waiting should stop.
1365 /// @param signal_timeout true - If in case of timeout waiting
1366 /// context should close the wait slot by
1367 /// sending TIMEOUT to itself.
1368 /// false - Otherwise.
1369 /// @param tracker_function collects the waited time at 1 sec intervals
1370 /// @param wait_state_name Thread state name to be set for duration of wait.
1371 /// @return Signal posted.
1373 MDL_context_owner *owner, unsigned long abs_timeout, bool signal_timeout,
1374 std::function<void(unsigned long)> tracker_function,
1375 const PSI_stage_info *wait_state_name);
1376
1377 private:
1378 /**
1379 Condvar which is used for waiting until this context's pending
1380 request can be satisfied or this thread has to perform actions
1381 to resolve a potential deadlock (we subscribe to such
1382 notification by adding a ticket corresponding to the request
1383 to an appropriate queue of waiters).
1384 */
1388};
1389
1390/**
1391 Base class to find out if the lock represented by a given ticket
1392 should be released. Users of release_locks() need to subclass
1393 this and specify an implementation of release(). Only for locks
1394 with explicit duration.
1395*/
1396
1398 public:
1399 virtual ~MDL_release_locks_visitor() = default;
1400 /**
1401 Check if the given ticket represents a lock that should be released.
1402
1403 @retval true if the lock should be released, false otherwise.
1404 */
1405 virtual bool release(MDL_ticket *ticket) = 0;
1406};
1407
1408/**
1409 Abstract visitor class for inspecting MDL_context.
1410*/
1411
1413 public:
1414 virtual ~MDL_context_visitor() = default;
1415 virtual void visit_context(const MDL_context *ctx) = 0;
1416};
1417
1418typedef I_P_List<MDL_request,
1423
1424/**
1425 Context of the owner of metadata locks. I.e. each server
1426 connection has such a context.
1427*/
1428
1430 public:
1431 typedef I_P_List<MDL_ticket,
1435
1437
1438 MDL_context();
1439 void destroy();
1440
1442 bool acquire_lock(MDL_request *mdl_request, Timeout_type lock_wait_timeout);
1443 bool acquire_locks(MDL_request_list *requests,
1444 Timeout_type lock_wait_timeout);
1445 bool upgrade_shared_lock(MDL_ticket *mdl_ticket, enum_mdl_type new_type,
1446 Timeout_type lock_wait_timeout);
1447
1449
1450 /**
1451 Create copy of all granted tickets of particular duration from given
1452 context to current context.
1453 Used by XA for preserving locks during client disconnect.
1454
1455 @param ticket_owner Owner of tickets to be cloned
1456 @param duration MDL lock duration for that tickets are to be cloned
1457
1458 @retval true Out of memory or deadlock happened or
1459 lock request was refused by storage engine.
1460 @retval false Success.
1461 */
1462
1463 bool clone_tickets(const MDL_context *ticket_owner,
1464 enum_mdl_duration duration);
1465
1468 void release_lock(MDL_ticket *ticket);
1469
1470 bool owns_equal_or_stronger_lock(const MDL_key *mdl_key,
1471 enum_mdl_type mdl_type);
1472
1474 const char *db, const char *name,
1475 enum_mdl_type mdl_type);
1476
1477 bool find_lock_owner(const MDL_key *mdl_key, MDL_context_visitor *visitor);
1478
1479 bool has_lock(const MDL_savepoint &mdl_savepoint, MDL_ticket *mdl_ticket);
1480
1481 inline bool has_locks() const { return !m_ticket_store.is_empty(); }
1482
1483 bool has_locks(MDL_key::enum_mdl_namespace mdl_namespace) const;
1484
1485 bool has_locks_waited_for() const;
1486
1487#ifndef NDEBUG
1489 return !m_ticket_store.is_empty(duration);
1490 }
1491#endif
1492
1496 }
1497
1500 void set_lock_duration(MDL_ticket *mdl_ticket, enum_mdl_duration duration);
1501
1505
1507
1508 /** @pre Only valid if we started waiting for lock. */
1509 inline uint get_deadlock_weight() const {
1513 }
1514
1515 void init(MDL_context_owner *arg) { m_owner = arg; }
1516
1517 void set_needs_thr_lock_abort(bool needs_thr_lock_abort) {
1518 /*
1519 @note In theory, this member should be modified under protection
1520 of some lock since it can be accessed from different threads.
1521 In practice, this is not necessary as code which reads this
1522 value and so might miss the fact that value was changed will
1523 always re-try reading it after small timeout and therefore
1524 will see the new value eventually.
1525 */
1526 m_needs_thr_lock_abort = needs_thr_lock_abort;
1527
1529 /*
1530 For MDL_object_lock::notify_conflicting_locks() to work properly
1531 all context requiring thr_lock aborts should not have any "fast
1532 path" locks.
1533 */
1535 }
1536 }
1538
1539 void set_force_dml_deadlock_weight(bool force_dml_deadlock_weight) {
1540 m_force_dml_deadlock_weight = force_dml_deadlock_weight;
1541 }
1542
1543 /**
1544 Get pseudo random value in [0 .. 2^31-1] range.
1545
1546 @note We use Linear Congruential Generator with venerable constant
1547 parameters for this.
1548 It is known to have problems with its lower bits are not being
1549 very random so probably is not good enough for generic use.
1550 However, we only use it to do random dives into MDL_lock objects
1551 hash when searching for unused objects to be freed, and for this
1552 purposes it is sufficient.
1553 We rely on values of "get_random() % 2^k" expression having "2^k"
1554 as a period to ensure that random dives eventually cover all hash
1555 (the former can be proven to be true). This also means that there
1556 is no bias towards any specific objects to be expelled (as hash
1557 values don't repeat), which is nice for performance.
1558 */
1559 uint get_random() {
1560 if (m_rand_state > INT_MAX32) {
1561 /*
1562 Perform lazy initialization of LCG. We can't initialize it at the
1563 point when MDL_context is created since THD represented through
1564 MDL_context_owner interface is not fully initialized at this point
1565 itself.
1566 */
1568 }
1569 m_rand_state = (m_rand_state * 1103515245 + 12345) & INT_MAX32;
1570 return m_rand_state;
1571 }
1572
1573 /**
1574 Within MDL subsystem this one is only used for DEBUG_SYNC.
1575 Do not use it to peek/poke into other parts of THD from MDL.
1576 @sa MDL_context_owner::get_thd().
1577 */
1578 THD *get_thd() const { return m_owner->get_thd(); }
1579
1580 public:
1581 /**
1582 If our request for a lock is scheduled, or aborted by the deadlock
1583 detector, the result is recorded in this class.
1584 */
1586
1587 private:
1588 /**
1589 Lists of all MDL tickets acquired by this connection.
1590
1591 Lists of MDL tickets:
1592 ---------------------
1593 The entire set of locks acquired by a connection can be separated
1594 in three subsets according to their duration: locks released at
1595 the end of statement, at the end of transaction and locks are
1596 released explicitly.
1597
1598 Statement and transactional locks are locks with automatic scope.
1599 They are accumulated in the course of a transaction, and released
1600 either at the end of uppermost statement (for statement locks) or
1601 on COMMIT, ROLLBACK or ROLLBACK TO SAVEPOINT (for transactional
1602 locks). They must not be (and never are) released manually,
1603 i.e. with release_lock() call.
1604
1605 Tickets with explicit duration are taken for locks that span
1606 multiple transactions or savepoints.
1607 These are: HANDLER SQL locks (HANDLER SQL is
1608 transaction-agnostic), LOCK TABLES locks (you can COMMIT/etc
1609 under LOCK TABLES, and the locked tables stay locked), user level
1610 locks (GET_LOCK()/RELEASE_LOCK() functions) and
1611 locks implementing "global read lock".
1612
1613 Statement/transactional locks are always prepended to the
1614 beginning of the appropriate list. In other words, they are
1615 stored in reverse temporal order. Thus, when we rollback to
1616 a savepoint, we start popping and releasing tickets from the
1617 front until we reach the last ticket acquired after the savepoint.
1618
1619 Locks with explicit duration are not stored in any
1620 particular order, and among each other can be split into
1621 four sets:
1622 - LOCK TABLES locks
1623 - User-level locks
1624 - HANDLER locks
1625 - GLOBAL READ LOCK locks
1626 */
1628
1630 /**
1631 true - if for this context we will break protocol and try to
1632 acquire table-level locks while having only S lock on
1633 some table.
1634 To avoid deadlocks which might occur during concurrent
1635 upgrade of SNRW lock on such object to X lock we have to
1636 abort waits for table-level locks for such connections.
1637 false - Otherwise.
1638 */
1640
1641 /**
1642 Indicates that we need to use DEADLOCK_WEIGHT_DML deadlock
1643 weight for this context and ignore the deadlock weight provided
1644 by the MDL_wait_for_subgraph object which we are waiting for.
1645
1646 @note Can be changed only when there is a guarantee that this
1647 MDL_context is not waiting for a metadata lock or table
1648 definition entry.
1649 */
1651
1652 /**
1653 Read-write lock protecting m_waiting_for member.
1654
1655 @note The fact that this read-write lock prefers readers is
1656 important as deadlock detector won't work correctly
1657 otherwise. @sa Comment for MDL_lock::m_rwlock.
1658 */
1660 /**
1661 Tell the deadlock detector what metadata lock or table
1662 definition cache entry this session is waiting for.
1663 In principle, this is redundant, as information can be found
1664 by inspecting waiting queues, but we'd very much like it to be
1665 readily available to the wait-for graph iterator.
1666 */
1668 /**
1669 Thread's pins (a.k.a. hazard pointers) to be used by lock-free
1670 implementation of MDL_map::m_locks container. NULL if pins are
1671 not yet allocated from container's pinbox.
1672 */
1674 /**
1675 State for pseudo random numbers generator (PRNG) which output
1676 is used to perform random dives into MDL_lock objects hash
1677 when searching for unused objects to free.
1678 */
1680
1681 private:
1684 MDL_ticket *sentinel);
1685 void release_lock(enum_mdl_duration duration, MDL_ticket *ticket);
1688
1690 bool fix_pins();
1691
1692 public:
1693 void find_deadlock();
1694
1696
1697 /** Inform the deadlock detector there is an edge in the wait-for graph. */
1698 void will_wait_for(MDL_wait_for_subgraph *waiting_for_arg) {
1699 /*
1700 Before starting wait for any resource we need to materialize
1701 all "fast path" tickets belonging to this thread. Otherwise
1702 locks acquired which are represented by these tickets won't
1703 be present in wait-for graph and could cause missed deadlocks.
1704
1705 It is OK for context which doesn't wait for any resource to
1706 have "fast path" tickets, as such context can't participate
1707 in any deadlock.
1708 */
1710
1712 m_waiting_for = waiting_for_arg;
1714 }
1715
1716 /** Remove the wait-for edge from the graph after we're done waiting. */
1719 m_waiting_for = nullptr;
1721 }
1724
1725 private:
1726 MDL_context(const MDL_context &rhs); /* not implemented */
1727 MDL_context &operator=(MDL_context &rhs); /* not implemented */
1728};
1729
1730void mdl_init();
1731void mdl_destroy();
1732
1733#ifndef NDEBUG
1735#endif
1736
1737/*
1738 Metadata locking subsystem tries not to grant more than
1739 max_write_lock_count high priority, strong locks successively,
1740 to avoid starving out weak, lower priority locks.
1741*/
1742extern ulong max_write_lock_count;
1743
1745
1746/**
1747 Default value for threshold for number of unused MDL_lock objects after
1748 exceeding which we start considering freeing them. Only unit tests use
1749 different threshold value.
1750*/
1752
1753/**
1754 Ratio of unused/total MDL_lock objects after exceeding which we
1755 start trying to free unused MDL_lock objects (assuming that
1756 mdl_locks_unused_locks_low_water threshold is passed as well).
1757 Note that this value should be high enough for our algorithm
1758 using random dives into hash to work well.
1759*/
1761
1763
1764#endif
Kerberos Client Authentication nullptr
Definition: auth_kerberos_client_plugin.cc:251
Element counting policy class for I_P_List which provides basic element counting.
Definition: sql_plist.h:222
Iterator for I_P_List.
Definition: sql_plist.h:168
An interface to separate the MDL module from the THD, and the rest of the server code.
Definition: mdl.h:86
virtual void notify_shared_lock(MDL_context_owner *in_use, bool needs_thr_lock_abort)=0
virtual bool notify_hton_pre_acquire_exclusive(const MDL_key *mdl_key, bool *victimized)=0
Notify/get permission from interested storage engines before acquiring exclusive lock for the key.
virtual ~MDL_context_owner()=default
virtual void exit_cond(const PSI_stage_info *stage, const char *src_function, const char *src_file, int src_line)=0
End a wait on a condition.
virtual void notify_hton_post_release_exclusive(const MDL_key *mdl_key)=0
Notify interested storage engines that we have just released exclusive lock for the key.
virtual bool might_have_commit_order_waiters() const =0
Indicates that owner thread might have some commit order (non-MDL) waits for it which are still taken...
virtual int is_killed() const =0
Has the owner thread been killed?
virtual uint get_rand_seed() const =0
Get random seed specific to this THD to be used for initialization of PRNG for the MDL_context.
virtual void enter_cond(mysql_cond_t *cond, mysql_mutex_t *mutex, const PSI_stage_info *stage, PSI_stage_info *old_stage, const char *src_function, const char *src_file, int src_line)=0
Enter a condition wait.
virtual bool is_connected(bool=false)=0
Does the owner still have connection to the client?
virtual THD * get_thd()=0
Within MDL subsystem this one is only used for DEBUG_SYNC.
Abstract visitor class for inspecting MDL_context.
Definition: mdl.h:1412
virtual ~MDL_context_visitor()=default
virtual void visit_context(const MDL_context *ctx)=0
Context of the owner of metadata locks.
Definition: mdl.h:1429
Ticket_list::Iterator Ticket_iterator
Definition: mdl.h:1436
MDL_context_owner * get_owner() const
Definition: mdl.h:1506
bool acquire_locks(MDL_request_list *requests, Timeout_type lock_wait_timeout)
Acquire exclusive locks.
Definition: mdl.cc:3695
bool owns_equal_or_stronger_lock(const MDL_key *mdl_key, enum_mdl_type mdl_type)
Auxiliary function which allows to check if we have some kind of lock on a object.
Definition: mdl.cc:4432
bool clone_tickets(const MDL_context *ticket_owner, enum_mdl_duration duration)
Create copy of all granted tickets of particular duration from given context to current context.
Definition: mdl.cc:3749
MDL_savepoint mdl_savepoint()
Definition: mdl.h:1493
MDL_context()
Initialize a metadata locking context.
Definition: mdl.cc:1436
bool has_locks(enum_mdl_duration duration)
Definition: mdl.h:1488
bool acquire_lock(MDL_request *mdl_request, Timeout_type lock_wait_timeout)
Acquire one lock with waiting for conflicting locks to go away if needed.
Definition: mdl.cc:3416
uint get_deadlock_weight() const
Definition: mdl.h:1509
void set_explicit_duration_for_all_locks()
Set explicit duration for all locks in the context.
Definition: mdl.cc:4687
void set_force_dml_deadlock_weight(bool force_dml_deadlock_weight)
Definition: mdl.h:1539
void init(MDL_context_owner *arg)
Definition: mdl.h:1515
MDL_context_owner * m_owner
Definition: mdl.h:1629
void release_statement_locks()
Definition: mdl.cc:4566
void set_lock_duration(MDL_ticket *mdl_ticket, enum_mdl_duration duration)
Change lock duration for transactional lock.
Definition: mdl.cc:4663
void release_lock(MDL_ticket *ticket)
Release lock with explicit duration.
Definition: mdl.cc:4269
uint get_random()
Get pseudo random value in [0 .
Definition: mdl.h:1559
mysql_prlock_t m_LOCK_waiting_for
Read-write lock protecting m_waiting_for member.
Definition: mdl.h:1659
void release_locks(MDL_release_locks_visitor *visitor)
Release all explicit locks in the context for which the release() method of the provided visitor eval...
Definition: mdl.cc:4334
void release_all_locks_for_name(MDL_ticket *ticket)
Release all explicit locks in the context which correspond to the same name/object as this lock reque...
Definition: mdl.cc:4312
void set_needs_thr_lock_abort(bool needs_thr_lock_abort)
Definition: mdl.h:1517
bool clone_ticket(MDL_request *mdl_request)
Create a copy of a granted ticket.
Definition: mdl.cc:3229
void release_locks_stored_before(enum_mdl_duration duration, MDL_ticket *sentinel)
Release all locks associated with the context.
Definition: mdl.cc:4288
bool find_lock_owner(const MDL_key *mdl_key, MDL_context_visitor *visitor)
Find the first context which owns the lock and inspect it by calling MDL_context_visitor::visit_conte...
Definition: mdl.cc:4485
void rollback_to_savepoint(const MDL_savepoint &mdl_savepoint)
Releases metadata locks that were acquired after a specific savepoint.
Definition: mdl.cc:4543
uint m_rand_state
State for pseudo random numbers generator (PRNG) which output is used to perform random dives into MD...
Definition: mdl.h:1679
bool try_acquire_lock_impl(MDL_request *mdl_request, MDL_ticket **out_ticket)
Auxiliary method for acquiring lock without waiting.
Definition: mdl.cc:2865
MDL_context(const MDL_context &rhs)
void find_deadlock()
Try to find a deadlock.
Definition: mdl.cc:4100
bool m_force_dml_deadlock_weight
Indicates that we need to use DEADLOCK_WEIGHT_DML deadlock weight for this context and ignore the dea...
Definition: mdl.h:1650
void lock_deadlock_victim()
Definition: mdl.h:1722
I_P_List< MDL_ticket, I_P_List_adapter< MDL_ticket, &MDL_ticket::next_in_context, &MDL_ticket::prev_in_context > > Ticket_list
Definition: mdl.h:1434
LF_PINS * m_pins
Thread's pins (a.k.a.
Definition: mdl.h:1673
void materialize_fast_path_locks()
"Materialize" requests for locks which were satisfied using "fast path" by properly including them in...
Definition: mdl.cc:2816
bool try_acquire_lock(MDL_request *mdl_request)
Try to acquire one lock.
Definition: mdl.cc:2742
bool visit_subgraph(MDL_wait_for_graph_visitor *dvisitor)
A fragment of recursive traversal of the wait-for graph of MDL contexts in the server in search for d...
Definition: mdl.cc:4080
bool has_locks_waited_for() const
Do we hold any locks which are possibly being waited for by another MDL_context?
Definition: mdl.cc:4633
bool m_needs_thr_lock_abort
true - if for this context we will break protocol and try to acquire table-level locks while having o...
Definition: mdl.h:1639
bool upgrade_shared_lock(MDL_ticket *mdl_ticket, enum_mdl_type new_type, Timeout_type lock_wait_timeout)
Upgrade a shared metadata lock.
Definition: mdl.cc:3802
MDL_wait_for_subgraph * m_waiting_for
Tell the deadlock detector what metadata lock or table definition cache entry this session is waiting...
Definition: mdl.h:1667
void set_transaction_duration_for_all_locks()
Set transactional duration for all locks in the context.
Definition: mdl.cc:4695
MDL_ticket * find_ticket(MDL_request *mdl_req, enum_mdl_duration *duration)
Check whether the context already holds a compatible lock ticket on an object.
Definition: mdl.cc:2712
void done_waiting_for()
Remove the wait-for edge from the graph after we're done waiting.
Definition: mdl.h:1717
THD * get_thd() const
Within MDL subsystem this one is only used for DEBUG_SYNC.
Definition: mdl.h:1578
bool get_needs_thr_lock_abort() const
Definition: mdl.h:1537
bool has_lock(const MDL_savepoint &mdl_savepoint, MDL_ticket *mdl_ticket)
Does this savepoint have this lock?
Definition: mdl.cc:4581
bool has_locks() const
Definition: mdl.h:1481
MDL_ticket_store m_ticket_store
Lists of all MDL tickets acquired by this connection.
Definition: mdl.h:1627
MDL_wait m_wait
If our request for a lock is scheduled, or aborted by the deadlock detector, the result is recorded i...
Definition: mdl.h:1585
void destroy()
Destroy metadata locking context.
Definition: mdl.cc:1458
bool fix_pins()
Allocate pins which are necessary to work with MDL_map container if they are not allocated already.
Definition: mdl.cc:1472
void unlock_deadlock_victim()
Definition: mdl.h:1723
MDL_context & operator=(MDL_context &rhs)
void release_transactional_locks()
Release locks acquired by normal statements (SELECT, UPDATE, DELETE, etc) in the course of a transact...
Definition: mdl.cc:4560
void will_wait_for(MDL_wait_for_subgraph *waiting_for_arg)
Inform the deadlock detector there is an edge in the wait-for graph.
Definition: mdl.h:1698
The lock context.
Definition: mdl.cc:427
Base class to find out if the lock represented by a given ticket should be released.
Definition: mdl.h:1397
virtual bool release(MDL_ticket *ticket)=0
Check if the given ticket represents a lock that should be released.
virtual ~MDL_release_locks_visitor()=default
A pending metadata lock request.
Definition: mdl.h:803
bool is_ddl_or_lock_tables_lock_request() const
Is this a request for a strong, DDL/LOCK TABLES-type, of lock?
Definition: mdl.h:871
bool is_write_lock_request() const
Is this a request for a lock which allow data to be updated?
Definition: mdl.h:866
MDL_request(MDL_request &&)=default
enum_mdl_type type
Type of metadata lock.
Definition: mdl.h:806
void init_by_key_with_source(const MDL_key *key_arg, enum_mdl_type mdl_type_arg, enum_mdl_duration mdl_duration_arg, const char *src_file, uint src_line)
Initialize a lock request using pre-built MDL_key.
Definition: mdl.cc:1538
void init_by_part_key_with_source(MDL_key::enum_mdl_namespace namespace_arg, const char *part_key_arg, size_t part_key_length_arg, size_t db_length_arg, enum_mdl_type mdl_type_arg, enum_mdl_duration mdl_duration_arg, const char *src_file, uint src_line)
Initialize a lock request using partial MDL key.
Definition: mdl.cc:1567
void set_type(enum_mdl_type type_arg)
Set type of lock request.
Definition: mdl.h:854
MDL_request & operator=(MDL_request &&)=default
MDL_ticket * ticket
Pointer to the lock ticket object for this lock request.
Definition: mdl.h:819
MDL_request ** prev_in_list
Definition: mdl.h:814
const char * m_src_file
Definition: mdl.h:824
void init_with_source(MDL_key::enum_mdl_namespace namespace_arg, const char *db_arg, const char *name_arg, enum_mdl_type mdl_type_arg, enum_mdl_duration mdl_duration_arg, const char *src_file, uint src_line)
Initialize a lock request.
Definition: mdl.cc:1504
MDL_key key
A lock is requested based on a fully qualified name and type.
Definition: mdl.h:822
enum_mdl_duration duration
Duration for requested lock.
Definition: mdl.h:808
MDL_request()=default
This constructor exists for two reasons:
MDL_request * next_in_list
Pointers for participating in the list of lock requests for this context.
Definition: mdl.h:813
uint m_src_line
Definition: mdl.h:825
MDL_request(const MDL_request &rhs)
Definition: mdl.h:899
Savepoint for MDL context.
Definition: mdl.h:1318
MDL_savepoint()=default
MDL_ticket * m_trans_ticket
Pointer to last lock with transaction duration which was taken before creation of savepoint.
Definition: mdl.h:1338
MDL_ticket * m_stmt_ticket
Pointer to last lock with statement duration which was taken before creation of savepoint.
Definition: mdl.h:1333
MDL_savepoint(MDL_ticket *stmt_ticket, MDL_ticket *trans_ticket)
Definition: mdl.h:1323
Keep track of MDL_ticket for different durations.
Definition: mdl.h:1117
void for_each_ticket_in_ticket_lists(CLOS &&clos)
Calls the closure provided as argument for each of the MDL_tickets in the store.
Definition: mdl.h:1223
List_iterator list_iterator(int di) const
Return a P-list iterator to the given duration.
Definition: mdl.h:1272
std::unique_ptr< Ticket_map > m_map
Definition: mdl.h:1184
MDL_ticket_handle find(const MDL_request &req) const
Look up a ticket based on its MDL_key.
Definition: mdl.cc:4947
size_t m_count
Definition: mdl.h:1182
void set_materialized()
Mark boundary for tickets with fast_path=false, so that later calls to materialize_fast_path_locks() ...
Definition: mdl.cc:4961
const size_t INITIAL_BUCKET_COUNT
Initial number of buckets in the hash index.
Definition: mdl.h:1181
MDL_ticket_handle find_in_hash(const MDL_request &req) const
Definition: mdl.cc:4720
void remove(enum_mdl_duration dur, MDL_ticket *ticket)
Remove a ticket from a duration list.
Definition: mdl.cc:4801
void move_all_to_explicit_duration()
Move all tickets to the explicit duration list.
Definition: mdl.cc:4837
void move_explicit_to_transaction_duration()
Move all tickets to the transaction duration list.
Definition: mdl.cc:4896
MDL_ticket * materialized_front(int di)
Return the first ticket for which materialize_fast_path_locks already has been called for the given d...
Definition: mdl.cc:4967
const size_t THRESHOLD
If the number of tickets in the ticket store (in all durations) is equal to, or exceeds this constant...
Definition: mdl.h:1175
MDL_ticket_store()
Constructs store.
Definition: mdl.h:1198
void push_front(enum_mdl_duration dur, MDL_ticket *ticket)
Push a ticket onto the list for a given duration.
Definition: mdl.cc:4758
Duration m_durations[MDL_DURATION_END]
Definition: mdl.h:1153
MDL_ticket * front(int di)
Return the first MDL_ticket for the given duration.
Definition: mdl.cc:4754
MDL_ticket_handle find_in_lists(const MDL_request &req) const
Definition: mdl.cc:4703
void for_each_ticket_in_duration_list(enum_mdl_duration dur, CLOS &&clos)
Calls the closure provided as argument for each of the MDL_tickets in the given duration.
Definition: mdl.h:1210
bool is_empty() const
Predicate for the emptiness of the store.
Definition: mdl.cc:4742
std::unordered_multimap< const MDL_key *, MDL_ticket_handle, Hash, Key_equal > Ticket_map
Definition: mdl.h:1166
A granted metadata lock.
Definition: mdl.h:986
enum enum_mdl_type m_type
Type of metadata lock.
Definition: mdl.h:1072
bool m_is_fast_path
Indicates that ticket corresponds to lock acquired using "fast path" algorithm.
Definition: mdl.h:1096
MDL_ticket(const MDL_ticket &)
bool has_stronger_or_equal_type(enum_mdl_type type) const
Check if ticket represents metadata lock of "stronger" or equal type than specified one.
Definition: mdl.cc:2654
bool has_pending_conflicting_lock() const
Check if we have any pending locks which conflict with existing shared lock.
Definition: mdl.cc:4526
MDL_context * get_ctx() const
Definition: mdl.h:1005
void downgrade_lock(enum_mdl_type type)
Downgrade an EXCLUSIVE or SHARED_NO_WRITE lock to shared metadata lock.
Definition: mdl.cc:4352
~MDL_ticket() override
Definition: mdl.h:1060
MDL_ticket(MDL_context *ctx_arg, enum_mdl_type type_arg, enum_mdl_duration duration_arg)
Definition: mdl.h:1043
MDL_ticket & operator=(const MDL_ticket &)
static void destroy(MDL_ticket *ticket)
Definition: mdl.cc:1681
bool accept_visitor(MDL_wait_for_graph_visitor *dvisitor) override
Implement MDL_wait_for_subgraph interface.
Definition: mdl.cc:4060
bool is_incompatible_when_waiting(enum_mdl_type type) const
Definition: mdl.cc:2665
MDL_ticket * next_in_context
Pointers for participating in the list of lock requests for this context.
Definition: mdl.h:992
bool is_incompatible_when_granted(enum_mdl_type type) const
Definition: mdl.cc:2661
PSI_metadata_lock * m_psi
Definition: mdl.h:1105
MDL_ticket ** prev_in_lock
Definition: mdl.h:1000
MDL_ticket ** prev_in_context
Definition: mdl.h:993
uint get_deadlock_weight() const override
Return the 'weight' of this ticket for the victim selection algorithm.
Definition: mdl.cc:1698
enum_mdl_duration get_duration() const
Definition: mdl.h:1025
bool is_upgradable_or_exclusive() const
Definition: mdl.h:1006
bool m_hton_notified
Indicates that ticket corresponds to lock request which required storage engine notification during i...
Definition: mdl.h:1103
enum_mdl_duration m_duration
Duration of lock represented by this ticket.
Definition: mdl.h:1078
enum_psi_status
Status of lock request represented by the ticket as reflected in P_S.
Definition: mdl.h:1033
@ GRANTED
Definition: mdl.h:1035
@ POST_RELEASE_NOTIFY
Definition: mdl.h:1037
@ PRE_ACQUIRE_NOTIFY
Definition: mdl.h:1036
@ PENDING
Definition: mdl.h:1034
MDL_lock * m_lock
Pointer to the lock object for this lock ticket.
Definition: mdl.h:1088
void set_duration(enum_mdl_duration dur)
Definition: mdl.h:1026
enum_mdl_type get_type() const
Definition: mdl.h:1010
MDL_ticket * next_in_lock
Pointers for participating in the list of satisfied/pending requests for the lock.
Definition: mdl.h:999
const MDL_key * get_key() const
Return a key identifying this lock.
Definition: mdl.cc:4532
MDL_context * m_ctx
Context of the owner of the metadata lock ticket.
Definition: mdl.h:1083
MDL_lock * get_lock() const
Definition: mdl.h:1011
static MDL_ticket * create(MDL_context *ctx_arg, enum_mdl_type type_arg, enum_mdl_duration duration_arg)
Auxiliary functions needed for creation/destruction of MDL_ticket objects.
Definition: mdl.cc:1667
An abstract class for inspection of a connected subgraph of the wait-for graph.
Definition: mdl.h:921
MDL_wait_for_graph_visitor()
Definition: mdl.h:928
virtual bool enter_node(MDL_context *node)=0
virtual bool inspect_edge(MDL_context *dest)=0
virtual ~MDL_wait_for_graph_visitor()
uint m_lock_open_count
XXX, hack: During deadlock search, we may need to inspect TABLE_SHAREs and acquire LOCK_open.
Definition: mdl.h:939
virtual void leave_node(MDL_context *node)=0
Abstract class representing an edge in the waiters graph to be traversed by deadlock detection algori...
Definition: mdl.h:947
static const uint DEADLOCK_WEIGHT_CO
Definition: mdl.h:957
static const uint DEADLOCK_WEIGHT_ULL
Definition: mdl.h:959
static const uint DEADLOCK_WEIGHT_DML
Definition: mdl.h:958
virtual ~MDL_wait_for_subgraph()
static const uint DEADLOCK_WEIGHT_DDL
Definition: mdl.h:960
virtual bool accept_visitor(MDL_wait_for_graph_visitor *gvisitor)=0
Accept a wait-for graph visitor to inspect the node this edge is leading to.
virtual uint get_deadlock_weight() const =0
A reliable way to wait on an MDL lock.
Definition: mdl.h:1345
enum_wait_status m_wait_status
Definition: mdl.h:1387
bool set_status(enum_wait_status result_arg)
Set the status unless it's already set.
Definition: mdl.cc:1763
enum_wait_status observable_timed_wait(MDL_context_owner *owner, unsigned long abs_timeout, bool signal_timeout, std::function< void(unsigned long)> tracker_function, const PSI_stage_info *wait_state_name)
Wait for the status to be assigned to this wait slot.
Definition: mdl.cc:1851
enum_wait_status
Definition: mdl.h:1352
@ KILLED
Definition: mdl.h:1352
@ WS_EMPTY
Definition: mdl.h:1352
@ TIMEOUT
Definition: mdl.h:1352
@ GRANTED
Definition: mdl.h:1352
@ VICTIM
Definition: mdl.h:1352
MDL_wait()
Construct an empty wait slot.
Definition: mdl.cc:1746
void reset_status()
Clear the current value of the wait slot.
Definition: mdl.cc:1787
mysql_cond_t m_COND_wait_status
Definition: mdl.h:1386
~MDL_wait()
Destroy system resources.
Definition: mdl.cc:1753
enum_wait_status timed_wait(MDL_context_owner *owner, struct timespec *abs_timeout, bool signal_timeout, const PSI_stage_info *wait_state_name)
Wait for the status to be assigned to this wait slot.
Definition: mdl.cc:1807
enum_wait_status get_status()
Query the current value of the wait slot.
Definition: mdl.cc:1777
mysql_mutex_t m_LOCK_wait_status
Condvar which is used for waiting until this context's pending request can be satisfied or this threa...
Definition: mdl.h:1385
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
static MEM_ROOT mem_root
Definition: client_plugin.cc:114
#define mysql_prlock_wrlock(T)
Definition: mysql_rwlock.h:76
#define mysql_prlock_rdlock(T)
Definition: mysql_rwlock.h:66
#define mysql_prlock_unlock(T)
Definition: mysql_rwlock.h:96
mysql_mutex_t LOCK_open
LOCK_open protects the following variables/objects:
Definition: sql_base.cc:275
struct PSI_metadata_lock PSI_metadata_lock
Definition: psi_mdl_bits.h:52
static void start(mysql_harness::PluginFuncEnv *env)
Definition: http_auth_backend_plugin.cc:180
void mdl_init()
Initialize the metadata locking subsystem.
Definition: mdl.cc:1072
I_P_List< MDL_request, I_P_List_adapter< MDL_request, &MDL_request::next_in_list, &MDL_request::prev_in_list >, I_P_List_counter > MDL_request_list
Definition: mdl.h:1422
#define MAX_MDLKEY_LENGTH
Maximal length of key for metadata locking subsystem.
Definition: mdl.h:355
int32 mdl_locks_unused_locks_low_water
Threshold for number of unused MDL_lock objects.
Definition: mdl.cc:283
const int32 MDL_LOCKS_UNUSED_LOCKS_LOW_WATER_DEFAULT
Default value for threshold for number of unused MDL_lock objects after exceeding which we start cons...
Definition: mdl.h:1751
int32 mdl_get_unused_locks_count()
Get number of unused MDL_lock objects in MDL_map cache.
Definition: mdl.cc:1102
enum_mdl_duration
Duration of metadata lock.
Definition: mdl.h:334
@ MDL_TRANSACTION
Locks with transaction duration are automatically released at the end of transaction.
Definition: mdl.h:344
@ MDL_STATEMENT
Locks with statement duration are automatically released at the end of statement or transaction.
Definition: mdl.h:339
@ MDL_EXPLICIT
Locks with explicit duration survive the end of statement and transaction.
Definition: mdl.h:349
@ MDL_DURATION_END
Definition: mdl.h:351
@ MDL_SHARED_WRITE
Definition: mdl.h:270
@ MDL_SHARED
Definition: mdl.h:232
@ MDL_SHARED_UPGRADABLE
Definition: mdl.h:287
@ MDL_SHARED_READ_ONLY
Definition: mdl.h:293
@ MDL_SHARED_HIGH_PRIO
Definition: mdl.h:249
@ MDL_SHARED_NO_WRITE
Definition: mdl.h:307
@ MDL_SHARED_NO_READ_WRITE
Definition: mdl.h:319
@ MDL_SHARED_WRITE_LOW_PRIO
Definition: mdl.h:276
@ MDL_SHARED_READ
Definition: mdl.h:260
@ MDL_TYPE_END
Definition: mdl.h:329
@ MDL_EXCLUSIVE
Definition: mdl.h:327
@ MDL_INTENTION_EXCLUSIVE
Definition: mdl.h:209
const double MDL_LOCKS_UNUSED_LOCKS_MIN_RATIO
Ratio of unused/total MDL_lock objects after exceeding which we start trying to free unused MDL_lock ...
Definition: mdl.h:1760
void mdl_destroy()
Release resources of metadata locking subsystem.
Definition: mdl.cc:1090
ulong max_write_lock_count
Definition: thr_lock.cc:124
This file follows Google coding style, except for the name MEM_ROOT (which is kept for historical rea...
Header for compiler-dependent features.
Some integer typedefs for easier portability.
unsigned char uchar
Definition: my_inttypes.h:52
#define INT_MAX32
Definition: my_inttypes.h:78
int32_t int32
Definition: my_inttypes.h:66
uint16_t uint16
Definition: my_inttypes.h:65
Defines various enable/disable and HAVE_ macros related to the performance schema instrumentation sys...
Common header for many mysys elements.
Defines for getting and processing the current system type programmatically.
std::uint64_t Timeout_type
Type alias to reduce chance of conversion errors on timeout values.
Definition: my_systime.h:125
Common definition between mysql server & client.
#define NAME_LEN
Definition: mysql_com.h:67
#define NAME_CHAR_LEN
Field/table name length.
Definition: mysql_com.h:60
Instrumentation helpers for conditions.
ABI for instrumented mutexes.
Instrumentation helpers for rwlock.
std::unordered_map< Key, CHARSET_INFO * > Hash
Definition: collations_internal.cc:548
MDL_request * mdl_request(const Import_target &t, MEM_ROOT *mem_root)
Creates an MDL_request for exclusive MDL on the table being imported.
Definition: sdi_api.cc:247
MDL_request * mdl_req(THD *thd, const Tablespace_table_ref &tref, enum enum_mdl_type mdl_type)
Create am MDL_request for a the table identified by a Tablespace_table_ref.
Definition: tablespace_impl.cc:534
Definition: mdl.h:59
bool test_drive_fix_pins(MDL_context *)
size_t size(const char *const c)
Definition: base64.h:46
Cursor end()
A past-the-end Cursor.
Definition: rules_table_service.cc:192
Instrumentation helpers for rwlock.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
required string type
Definition: replication_group_member_actions.proto:34
enum_mdl_type
Type of metadata lock request.
Definition: sql_lexer_yacc_state.h:106
case opt name
Definition: sslopt-case.h:29
char * strmake(char *dst, const char *src, size_t length)
Definition: strmake.cc:42
Hook class which via its methods specifies which members of T should be used for participating in a i...
Definition: sql_plist.h:198
Definition: lf.h:86
Metadata lock object key.
Definition: mdl.h:366
uint16 m_db_name_length
Definition: mdl.h:787
int cmp(const MDL_key *rhs) const
Compare two MDL keys lexicographically.
Definition: mdl.h:737
const char * db_name() const
Definition: mdl.h:427
static void init_psi_keys()
Definition: mdl.cc:136
uint db_name_length() const
Definition: mdl.h:428
MDL_key(const MDL_key &rhs)
Definition: mdl.h:751
uint name_length() const
Definition: mdl.h:434
bool is_equal(const MDL_key *rhs) const
Definition: mdl.h:730
const char * name() const
Definition: mdl.h:430
void mdl_key_init(enum_mdl_namespace mdl_namespace, const char *db, const char *name)
Construct a metadata lock key from a triplet (mdl_namespace, database and name).
Definition: mdl.h:475
enum_mdl_namespace
Object namespaces.
Definition: mdl.h:401
@ BACKUP_LOCK
Definition: mdl.h:403
@ EVENT
Definition: mdl.h:410
@ GLOBAL
Definition: mdl.h:402
@ LOCKING_SERVICE
Definition: mdl.h:413
@ USER_LEVEL_LOCK
Definition: mdl.h:412
@ COLUMN_STATISTICS
Definition: mdl.h:416
@ COMMIT
Definition: mdl.h:411
@ RESOURCE_GROUPS
Definition: mdl.h:417
@ SCHEMA
Definition: mdl.h:405
@ NAMESPACE_END
Definition: mdl.h:421
@ FUNCTION
Definition: mdl.h:407
@ TRIGGER
Definition: mdl.h:409
@ ACL_CACHE
Definition: mdl.h:415
@ FOREIGN_KEY
Definition: mdl.h:418
@ SRID
Definition: mdl.h:414
@ PROCEDURE
Definition: mdl.h:408
@ TABLESPACE
Definition: mdl.h:404
@ TABLE
Definition: mdl.h:406
@ CHECK_CONSTRAINT
Definition: mdl.h:419
enum_mdl_namespace mdl_namespace() const
Definition: mdl.h:460
void mdl_key_init(const MDL_key *rhs)
Definition: mdl.h:714
void mdl_key_init(enum_mdl_namespace mdl_namespace, const char *db, const char *normalized_name, size_t normalized_name_len, const char *name)
Construct a metadata lock key from a quadruplet (mdl_namespace, database, normalized object name buff...
Definition: mdl.h:639
uint16 m_length
Definition: mdl.h:786
MDL_key()=default
uint length() const
Definition: mdl.h:425
char m_ptr[MAX_MDLKEY_LENGTH]
Definition: mdl.h:789
const uchar * ptr() const
Definition: mdl.h:424
const char * col_name() const
Definition: mdl.h:436
MDL_key & operator=(const MDL_key &rhs)
Definition: mdl.h:753
uint col_name_length() const
Definition: mdl.h:448
void mdl_key_init(enum_mdl_namespace mdl_namespace, const char *part_key, size_t part_key_length, size_t db_length)
Construct a metadata lock key from namespace and partial key, which contains info about object databa...
Definition: mdl.h:690
void reset()
Definition: mdl.h:724
MDL_key(enum_mdl_namespace namespace_arg, const char *db_arg, const char *name_arg)
Definition: mdl.h:758
uint16 m_object_name_length
Definition: mdl.h:788
void mdl_key_init(enum_mdl_namespace mdl_namespace, const char *db, const char *name, const char *column_name)
Construct a metadata lock key from a quadruplet (mdl_namespace, database, table and column name).
Definition: mdl.h:522
bool use_normalized_object_name() const
Check if normalized object name should be used.
Definition: mdl.h:779
const PSI_stage_info * get_wait_state_name() const
Get thread state name to be used in case when we have to wait on resource identified by key.
Definition: mdl.h:768
static PSI_stage_info m_namespace_to_wait_state_name[NAMESPACE_END]
Thread state names to be used in case when we have to wait on resource belonging to certain namespace...
Definition: mdl.h:790
Definition: mdl.h:1137
MDL_ticket * m_mat_front
m_mat_front tracks what was the front of m_ticket_list, the last time MDL_context::materialize_fast_p...
Definition: mdl.h:1150
Ticket_p_list m_ticket_list
Definition: mdl.h:1138
Definition: mdl.h:1155
size_t operator()(const MDL_key *k) const
Definition: mdl.cc:4699
Definition: mdl.h:1159
bool operator()(const MDL_key *a, const MDL_key *b) const
Definition: mdl.h:1160
Utility struct for representing a ticket pointer and its duration.
Definition: mdl.h:1122
enum_mdl_duration m_dur
Definition: mdl.h:1123
MDL_ticket_handle(MDL_ticket *t, enum_mdl_duration d)
Definition: mdl.h:1127
MDL_ticket * m_ticket
Definition: mdl.h:1124
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
void * Alloc(size_t length)
Allocate memory.
Definition: my_alloc.h:145
Stage instrument information.
Definition: psi_stage_bits.h:74
An instrumented cond structure.
Definition: mysql_cond_bits.h:50
An instrumented mutex structure.
Definition: mysql_mutex_bits.h:50
An instrumented prlock structure.
Definition: mysql_rwlock_bits.h:72