-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathsql_class.cc
3752 lines (3250 loc) · 124 KB
/
sql_class.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright (c) 2000, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "sql/sql_class.h"
#include <assert.h>
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <algorithm>
#include <utility>
#include "field_types.h"
#include "m_string.h"
#include "mutex_lock.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_rnd.h"
#include "my_systime.h"
#include "my_thread.h"
#include "my_time.h"
#include "mysql/components/services/bits/psi_error_bits.h"
#include "mysql/components/services/log_builtins.h" // LogErr
#include "mysql/components/services/log_shared.h"
#include "mysql/my_loglevel.h"
#include "mysql/plugin_audit.h"
#include "mysql/psi/mysql_cond.h"
#include "mysql/psi/mysql_error.h"
#include "mysql/psi/mysql_ps.h"
#include "mysql/psi/mysql_stage.h"
#include "mysql/psi/mysql_statement.h"
#include "mysql/psi/mysql_table.h"
#include "mysql/psi/psi_table.h"
#include "mysql/service_mysql_alloc.h"
#include "mysql/strings/m_ctype.h"
#include "mysys_err.h" // EE_OUTOFMEMORY
#include "pfs_statement_provider.h"
#include "rpl_source.h" // unregister_slave
#include "scope_guard.h"
#include "server_component/mysql_server_event_tracking_bridge_imp.h"
#include "sql/auth/sql_security_ctx.h"
#include "sql/binlog.h"
#include "sql/check_stack.h"
#include "sql/conn_handler/connection_handler_manager.h" // Connection_handler_manager
#include "sql/current_thd.h"
#include "sql/dd/cache/dictionary_client.h" // Dictionary_client
#include "sql/dd/dd_kill_immunizer.h" // dd:DD_kill_immunizer
#include "sql/debug_sync.h" // DEBUG_SYNC
#include "sql/derror.h" // ER_THD
#include "sql/enum_query_type.h"
#include "sql/error_handler.h" // Internal_error_handler
#include "sql/field.h"
#include "sql/handler.h"
#include "sql/item.h"
#include "sql/item_func.h" // user_var_entry
#include "sql/lock.h" // mysql_lock_abort_for_thread
#include "sql/locking_service.h" // release_all_locking_service_locks
#include "sql/log_event.h"
#include "sql/mdl_context_backup.h" // MDL context backup for XA
#include "sql/mysqld.h" // global_system_variables ...
#include "sql/mysqld_thd_manager.h" // Global_THD_manager
#include "sql/parse_location.h"
#include "sql/protocol.h"
#include "sql/protocol_classic.h"
#include "sql/psi_memory_key.h"
#include "sql/query_result.h"
#include "sql/rpl_rli.h" // Relay_log_info
#include "sql/rpl_transaction_write_set_ctx.h"
#include "sql/server_component/mysql_server_event_tracking_bridge_imp.h"
#include "sql/server_component/mysql_thd_store_imp.h"
#include "sql/sp_cache.h" // sp_cache_clear
#include "sql/sp_head.h" // sp_head
#include "sql/sql_audit.h" // mysql_audit_free_thd
#include "sql/sql_backup_lock.h" // release_backup_lock
#include "sql/sql_base.h" // close_temporary_tables
#include "sql/sql_callback.h" // MYSQL_CALLBACK
#include "sql/sql_cmd.h"
#include "sql/sql_handler.h" // mysql_ha_cleanup
#include "sql/sql_lex.h"
#include "sql/sql_parse.h" // is_update_query
#include "sql/sql_plugin.h" // plugin_thdvar_init
#include "sql/sql_prepare.h" // Prepared_statement
#include "sql/sql_profile.h"
#include "sql/sql_timer.h" // thd_timer_destroy
#include "sql/srv_event_plugin_handles.h"
#include "sql/table.h"
#include "sql/table_cache.h" // table_cache_manager
#include "sql/tc_log.h"
#include "sql/thr_malloc.h"
#include "sql/transaction.h" // trans_rollback
#include "sql/transaction_info.h"
#include "sql/xa.h"
#include "sql/xa/sql_cmd_xa.h" // Sql_cmd_xa_*
#include "sql/xa/transaction_cache.h" // xa::Transaction_cache
#include "storage/perfschema/pfs_instr_class.h" // PFS_CLASS_STAGE
#include "storage/perfschema/terminology_use_previous.h"
#include "string_with_len.h"
#include "template_utils.h"
#include "thr_mutex.h"
class Parse_tree_root;
using std::max;
using std::min;
using std::unique_ptr;
/*
The following is used to initialise Table_ident with a internal
table name
*/
char empty_c_string[1] = {0}; /* used for not defined db */
const char *const THD::DEFAULT_WHERE = "field list";
extern PSI_stage_info stage_waiting_for_disk_space;
#ifndef NDEBUG
/**
For debug purpose only. Used for
MTR mem_cnt_sql_keys, mem_cnt_temptable_keys keys.
@param thd pointer to THD object
*/
bool fail_on_alloc(THD *thd) {
char alloc_name[512];
if (!thd->current_key_name) return false;
if (DBUG_EVALUATE_IF(thd->current_key_name, 1, 0)) {
thd->conn_mem_alloc_number++;
snprintf(alloc_name, sizeof(alloc_name), "alloc_number%llu",
thd->conn_mem_alloc_number);
if (DBUG_EVALUATE_IF(alloc_name, 1, 0)) return true;
}
return false;
}
#endif
void Thd_mem_cnt::disable() {
if (m_enabled) {
flush();
m_enabled = false;
}
}
/**
Increase memory counter at 'alloc' operation. Update
global memory counter.
@param size amount of memory allocated.
*/
void Thd_mem_cnt::alloc_cnt(size_t size) {
mem_counter += size;
max_conn_mem = std::max(max_conn_mem, mem_counter);
if (!m_enabled) {
return;
}
assert(!opt_initialize && m_thd != nullptr);
assert(!m_thd->kill_immunizer || !m_thd->kill_immunizer->is_active() ||
!is_error_mode());
assert(m_thd->is_killable);
#ifndef NDEBUG
if (is_error_mode() && fail_on_alloc(m_thd)) {
m_thd->is_mem_cnt_error_issued = true;
generate_error(ER_DA_CONN_LIMIT, m_thd->variables.conn_mem_limit,
mem_counter);
}
#endif
ulonglong conn_mem_status_limit_save = conn_memory_status_limit;
if (!m_thd->lex->is_crossed_connection_memory_status_limit() &&
(mem_counter - size) <= conn_mem_status_limit_save &&
mem_counter > conn_mem_status_limit_save) {
// update status variables
// count_hit_query_past_connection_memory_status_limit
atomic_count_hit_query_past_conn_mem_status_limit++;
m_thd->lex->set_crossed_connection_memory_status_limit();
}
if (mem_counter > m_thd->variables.conn_mem_limit) {
#ifndef NDEBUG
// Used for testing the entering to idle state
// after successful statement execution (see mem_cnt_common_debug.test).
if (!DBUG_EVALUATE_IF("mem_cnt_no_error_on_exec_session", 1, 0))
#endif
(void)generate_error(ER_DA_CONN_LIMIT, m_thd->variables.conn_mem_limit,
mem_counter);
}
if ((curr_mode & MEM_CNT_UPDATE_GLOBAL_COUNTER) &&
m_thd->variables.conn_global_mem_tracking &&
max_conn_mem > glob_mem_counter) {
const ulonglong curr_mem =
(max_conn_mem / m_thd->variables.conn_mem_chunk_size + 1) *
m_thd->variables.conn_mem_chunk_size;
assert(curr_mem > glob_mem_counter && curr_mem > mem_counter);
const ulonglong delta = curr_mem - glob_mem_counter;
ulonglong global_conn_mem_counter_save;
ulonglong global_conn_mem_limit_save;
ulonglong global_conn_mem_status_limit_save;
{
MUTEX_LOCK(lock, &LOCK_global_conn_mem_limit);
global_conn_mem_counter += delta;
global_conn_mem_counter_save = global_conn_mem_counter;
global_conn_mem_limit_save = global_conn_mem_limit;
global_conn_mem_status_limit_save = global_conn_memory_status_limit;
}
glob_mem_counter = curr_mem;
max_conn_mem = std::max(max_conn_mem, glob_mem_counter);
if (!m_thd->lex->is_crossed_global_connection_memory_status_limit() &&
(global_conn_mem_counter_save - delta) <=
global_conn_mem_status_limit_save &&
global_conn_mem_counter_save > global_conn_mem_status_limit_save) {
// update status variables
// count_hit_query_past_global_connection_memory_status_limit
atomic_count_hit_query_past_global_conn_mem_status_limit++;
m_thd->lex->set_crossed_global_connection_memory_status_limit();
}
if (global_conn_mem_counter_save > global_conn_mem_limit_save) {
#ifndef NDEBUG
// Used for testing the entering to idle state
// after successful statement execution (see mem_cnt_common_debug.test).
if (DBUG_EVALUATE_IF("mem_cnt_no_error_on_exec_global", 1, 0)) return;
#endif
(void)generate_error(ER_DA_GLOBAL_CONN_LIMIT, global_conn_mem_limit_save,
global_conn_mem_counter_save);
}
}
}
/**
Decrease memory counter at 'free' operation.
@param size amount of memory freed.
*/
void Thd_mem_cnt::free_cnt(size_t size) {
if (mem_counter >= size) {
mem_counter -= size;
} else {
/* Freeing memory allocated by another. */
mem_counter = 0;
}
}
/**
Function resets current memory counter mode and adjusts
global memory counter according to thread memory counter.
@returns -1 if OOM error, 0 otherwise.
*/
int Thd_mem_cnt::reset() {
restore_mode();
max_conn_mem = mem_counter;
if (m_thd->variables.conn_global_mem_tracking &&
(curr_mode & MEM_CNT_UPDATE_GLOBAL_COUNTER)) {
ulonglong delta;
ulonglong global_conn_mem_counter_save;
ulonglong global_conn_mem_limit_save;
ulonglong global_conn_mem_status_limit_save;
if (glob_mem_counter > mem_counter) {
delta = glob_mem_counter - mem_counter;
MUTEX_LOCK(lock, &LOCK_global_conn_mem_limit);
assert(global_conn_mem_counter >= delta);
global_conn_mem_counter -= delta;
global_conn_mem_counter_save = global_conn_mem_counter;
global_conn_mem_limit_save = global_conn_mem_limit;
global_conn_mem_status_limit_save = global_conn_memory_status_limit;
} else {
delta = mem_counter - glob_mem_counter;
MUTEX_LOCK(lock, &LOCK_global_conn_mem_limit);
global_conn_mem_counter += delta;
global_conn_mem_counter_save = global_conn_mem_counter;
global_conn_mem_limit_save = global_conn_mem_limit;
global_conn_mem_status_limit_save = global_conn_memory_status_limit;
}
glob_mem_counter = mem_counter;
if (is_connection_stage) {
if (!m_thd->lex->is_crossed_global_connection_memory_status_limit() &&
global_conn_mem_counter_save > global_conn_mem_status_limit_save) {
// update status variables
// count_hit_query_past_global_connection_memory_status_limit
atomic_count_hit_query_past_global_conn_mem_status_limit++;
m_thd->lex->set_crossed_global_connection_memory_status_limit();
}
if (global_conn_mem_counter_save > global_conn_mem_limit_save)
return generate_error(ER_DA_GLOBAL_CONN_LIMIT,
global_conn_mem_limit_save,
global_conn_mem_counter_save);
}
}
if (is_connection_stage) {
if (!m_thd->lex->is_crossed_connection_memory_status_limit() &&
mem_counter > conn_memory_status_limit) {
// update status variables
// count_hit_query_past_connection_memory_status_limit
atomic_count_hit_query_past_conn_mem_status_limit++;
m_thd->lex->set_crossed_connection_memory_status_limit();
}
if (mem_counter > m_thd->variables.conn_mem_limit)
return generate_error(ER_DA_CONN_LIMIT, m_thd->variables.conn_mem_limit,
mem_counter);
}
is_connection_stage = false;
return 0;
}
/**
Function flushes memory counters before deleting the memory counter object.
*/
void Thd_mem_cnt::flush() {
max_conn_mem = mem_counter = 0;
if (glob_mem_counter > 0) {
MUTEX_LOCK(lock, &LOCK_global_conn_mem_limit);
assert(global_conn_mem_counter >= glob_mem_counter);
global_conn_mem_counter -= glob_mem_counter;
}
glob_mem_counter = 0;
}
/**
Generate OOM error and set therad to KILL_CONNECTION
state. Do nothing if thread is already killed or any error is
already issued.
@param err_no Error number.
@param mem_limit Memory limit.
@param mem_size Memory size.
@returns -1 if OOM error is generated, 0 otherwise.
*/
int Thd_mem_cnt::generate_error(int err_no, ulonglong mem_limit,
ulonglong mem_size) {
if (is_error_mode()) {
int err_no_tmp = 0;
const bool is_log_err = is_error_log_mode();
assert(!m_thd->kill_immunizer || !m_thd->kill_immunizer->is_active());
// Set NO ERROR mode to avoid error message duplication.
no_error_mode();
// No OOM error if any error is already issued or fatal error is set.
if (!m_thd->is_error() && !m_thd->is_fatal_error()) {
MUTEX_LOCK(lock, &m_thd->LOCK_thd_data);
// Ignore OOM error if thread is already killed.
if (!m_thd->killed) {
err_no_tmp = err_no;
m_thd->killed = THD::KILL_CONNECTION;
}
}
if (err_no_tmp) {
m_thd->push_diagnostics_area(&m_da, false);
my_error(err_no_tmp, MYF(0), mem_limit, mem_size);
m_thd->pop_diagnostics_area();
if (is_log_err) {
switch (err_no_tmp) {
case ER_DA_CONN_LIMIT:
LogErr(ERROR_LEVEL, ER_CONN_LIMIT, mem_limit, mem_size);
break;
case ER_DA_GLOBAL_CONN_LIMIT:
LogErr(ERROR_LEVEL, ER_GLOBAL_CONN_LIMIT, mem_limit, mem_size);
break;
default:
assert(0);
}
}
return -1;
}
}
return 0;
}
/**
Set THD error status using memory counter diagnostics area.
*/
void Thd_mem_cnt::set_thd_error_status() const {
m_thd->get_stmt_da()->set_overwrite_status(true);
m_thd->get_stmt_da()->set_error_status(
m_da.mysql_errno(), m_da.message_text(), m_da.returned_sqlstate());
m_thd->get_stmt_da()->set_overwrite_status(false);
}
void THD::Transaction_state::backup(THD *thd) {
this->m_sql_command = thd->lex->sql_command;
this->m_trx = thd->get_transaction();
thd->backup_ha_data(&this->m_ha_data);
this->m_tx_isolation = thd->tx_isolation;
this->m_tx_read_only = thd->tx_read_only;
this->m_thd_option_bits = thd->variables.option_bits;
this->m_sql_mode = thd->variables.sql_mode;
this->m_transaction_psi = thd->m_transaction_psi;
this->m_server_status = thd->server_status;
this->m_in_lock_tables = thd->in_lock_tables;
this->m_time_zone_used = thd->time_zone_used;
this->m_transaction_rollback_request = thd->transaction_rollback_request;
}
void THD::Transaction_state::restore(THD *thd) {
thd->set_transaction(this->m_trx);
thd->restore_ha_data(this->m_ha_data);
thd->tx_isolation = this->m_tx_isolation;
thd->variables.sql_mode = this->m_sql_mode;
thd->tx_read_only = this->m_tx_read_only;
thd->variables.option_bits = this->m_thd_option_bits;
thd->m_transaction_psi = this->m_transaction_psi;
thd->server_status = this->m_server_status;
thd->lex->sql_command = this->m_sql_command;
thd->in_lock_tables = this->m_in_lock_tables;
thd->time_zone_used = this->m_time_zone_used;
thd->transaction_rollback_request = this->m_transaction_rollback_request;
}
THD::Attachable_trx::Attachable_trx(THD *thd, Attachable_trx *prev_trx)
: m_thd(thd),
m_reset_lex(RESET_LEX),
m_prev_attachable_trx(prev_trx),
m_trx_state() {
// Save the transaction state.
m_trx_state.backup(m_thd);
// Save and reset query-tables-list and reset the sql-command.
//
// NOTE: ha_innobase::store_lock() takes the current sql-command into account.
// It must be SQLCOM_SELECT.
//
// Do NOT reset LEX if we're running tests. LEX is used by SELECT statements.
const bool reset = (m_reset_lex == RESET_LEX ? true : false);
if (DBUG_EVALUATE_IF("use_attachable_trx", false, reset)) {
m_thd->lex->reset_n_backup_query_tables_list(
m_trx_state.m_query_tables_list);
m_thd->lex->sql_command = SQLCOM_SELECT;
}
// Save and reset open-tables.
m_thd->reset_n_backup_open_tables_state(&m_trx_state.m_open_tables_state,
Open_tables_state::SYSTEM_TABLES);
// Reset transaction state.
m_thd->m_transaction.release(); // it's been backed up.
DBUG_EXECUTE_IF("after_delete_wait", {
const char act[] = "now SIGNAL leader_reached WAIT_FOR leader_proceed";
assert(!debug_sync_set_action(m_thd, STRING_WITH_LEN(act)));
DBUG_SET("-d,after_delete_wait");
DBUG_SET("-d,block_leader_after_delete");
};);
m_thd->m_transaction.reset(new Transaction_ctx());
// Prepare for a new attachable transaction for read-only DD-transaction.
// LOCK_thd_data must be locked to prevent e.g. KILL CONNECTION from
// reading ha_data after clear() but before resize().
mysql_mutex_lock(&m_thd->LOCK_thd_data);
m_thd->ha_data.clear();
m_thd->ha_data.resize(m_thd->ha_data.capacity());
mysql_mutex_unlock(&m_thd->LOCK_thd_data);
// The attachable transaction must used READ COMMITTED isolation level.
m_thd->tx_isolation = ISO_READ_COMMITTED;
// The attachable transaction must be read-only.
m_thd->tx_read_only = true;
// The attachable transaction must be AUTOCOMMIT.
m_thd->variables.option_bits |= OPTION_AUTOCOMMIT;
m_thd->variables.option_bits &= ~OPTION_NOT_AUTOCOMMIT;
m_thd->variables.option_bits &= ~OPTION_BEGIN;
// Nothing should be binlogged from attachable transactions and disabling
// the binary log allows skipping some code related to figuring out what
// log format should be used.
m_thd->variables.option_bits &= ~OPTION_BIN_LOG;
// Possible parent's involvement to multi-statement transaction is masked
m_thd->server_status &= ~SERVER_STATUS_IN_TRANS;
m_thd->server_status &= ~SERVER_STATUS_IN_TRANS_READONLY;
// Reset SQL_MODE during system operations.
m_thd->variables.sql_mode = 0;
// Reset transaction instrumentation.
m_thd->m_transaction_psi = nullptr;
// Reset THD::in_lock_tables so InnoDB won't start acquiring table locks.
m_thd->in_lock_tables = false;
// Reset @@session.time_zone usage indicator for consistency.
m_thd->time_zone_used = false;
/*
InnoDB can ask to start attachable transaction while rolling back
the regular transaction. Reset rollback request flag to avoid it
influencing attachable transaction we are initiating.
*/
m_thd->transaction_rollback_request = false;
}
THD::Attachable_trx::~Attachable_trx() {
// Ensure that the SE didn't request rollback in the attachable transaction.
// Having THD::transaction_rollback_request set most likely means that we've
// experienced some sort of deadlock/timeout while processing the attachable
// transaction. That is not possible by the definition of an attachable
// transaction.
assert(!m_thd->transaction_rollback_request);
// Commit the attachable transaction before discarding transaction state.
// This is mostly needed to properly reset transaction state in SE.
// Note: We can't rely on InnoDB hack which auto-magically commits InnoDB
// transaction when the last table for a statement in auto-commit mode is
// unlocked. Apparently it doesn't work correctly in some corner cases
// (for example, when statement is killed just after tables are locked but
// before any other operations on the table happes). We try not to rely on
// it in other places on SQL-layer as well.
trans_commit_attachable(m_thd);
// Close all the tables that are open till now.
close_thread_tables(m_thd);
// Cleanup connection specific state which was created for attachable
// transaction (for InnoDB removes cached transaction object).
//
// Note that we need to call handlerton::close_connection for all SEs
// and not only SEs which participated in attachable transaction since
// connection specific state can be created when TABLE object is simply
// expelled from the Table Cache (e.g. this happens for MyISAM).
ha_close_connection(m_thd);
// Restore the transaction state.
m_trx_state.restore(m_thd);
m_thd->restore_backup_open_tables_state(&m_trx_state.m_open_tables_state);
const bool reset = (m_reset_lex == RESET_LEX ? true : false);
if (DBUG_EVALUATE_IF("use_attachable_trx", false, reset)) {
m_thd->lex->restore_backup_query_tables_list(
m_trx_state.m_query_tables_list);
}
}
THD::Attachable_trx_rw::Attachable_trx_rw(THD *thd)
: Attachable_trx(thd, nullptr) {
m_thd->tx_read_only = false;
m_thd->lex->sql_command = SQLCOM_END;
thd->get_transaction()->xid_state()->set_state(XID_STATE::XA_NOTR);
}
void THD::enter_stage(const PSI_stage_info *new_stage,
PSI_stage_info *old_stage,
const char *calling_func [[maybe_unused]],
const char *calling_file,
const unsigned int calling_line) {
DBUG_PRINT("THD::enter_stage",
("'%s' %s:%d", new_stage ? new_stage->m_name : "", calling_file,
calling_line));
if (old_stage != nullptr) {
old_stage->m_key = m_current_stage_key;
old_stage->m_name = proc_info();
}
if (new_stage != nullptr) {
const char *msg = new_stage->m_name;
#if defined(ENABLED_PROFILING)
profiling->status_change(msg, calling_func, calling_file, calling_line);
#endif
m_current_stage_key = new_stage->m_key;
set_proc_info(msg);
store_cached_properties(cached_properties::RW_STATUS);
m_stage_progress_psi =
MYSQL_SET_STAGE(m_current_stage_key, calling_file, calling_line);
} else {
m_stage_progress_psi = nullptr;
}
return;
}
const char *THD::proc_info(const System_variables &sysvars) const {
DBUG_TRACE;
const char *ret = proc_info();
const terminology_use_previous::enum_compatibility_version version =
static_cast<terminology_use_previous::enum_compatibility_version>(
sysvars.terminology_use_previous);
DBUG_PRINT("info", ("session.terminology_use_previous=%d", (int)version));
if ((ret != nullptr) && (version != terminology_use_previous::NONE)) {
auto compatible_name_info =
terminology_use_previous::lookup(PFS_CLASS_STAGE, ret, false);
#ifndef NDEBUG
if (compatible_name_info.version)
DBUG_PRINT(
"info",
("old name found for proc info (aka stage) <%s>; "
"old name is <%s>; "
"old version is %d; "
"returning %s name",
ret, compatible_name_info.old_name, compatible_name_info.version,
version <= compatible_name_info.version ? "old" : "new"));
else
DBUG_PRINT("info", ("no old name for proc info (aka stage) <%s>", ret));
#endif // ifndef NDEBUG
if (version <= compatible_name_info.version)
ret = compatible_name_info.old_name;
}
return ret;
}
void Open_tables_state::set_open_tables_state(Open_tables_state *state) {
this->open_tables = state->open_tables;
this->temporary_tables = state->temporary_tables;
this->lock = state->lock;
this->extra_lock = state->extra_lock;
this->locked_tables_mode = state->locked_tables_mode;
this->state_flags = state->state_flags;
this->m_reprepare_observers = state->m_reprepare_observers;
}
void Open_tables_state::reset_open_tables_state() {
open_tables = nullptr;
temporary_tables = nullptr;
lock = nullptr;
extra_lock = nullptr;
locked_tables_mode = LTM_NONE;
state_flags = 0U;
reset_reprepare_observers();
}
THD::THD(bool enable_plugins)
: Query_arena(&main_mem_root, STMT_REGULAR_EXECUTION),
mark_used_columns(MARK_COLUMNS_READ),
want_privilege(0),
main_lex(new LEX),
lex(main_lex.get()),
m_dd_client(new dd::cache::Dictionary_client(this)),
m_query_string(NULL_CSTR),
m_db(NULL_CSTR),
m_eligible_secondary_engine_handlerton(nullptr),
rli_fake(nullptr),
rli_slave(nullptr),
copy_status_var_ptr(nullptr),
initial_status_var(nullptr),
status_var_aggregated(false),
m_connection_attributes(),
m_current_query_cost(0),
m_current_query_partial_plans(0),
m_main_security_ctx(this),
m_security_ctx(&m_main_security_ctx),
protocol_text(new Protocol_text),
protocol_binary(new Protocol_binary),
query_plan(this),
m_current_stage_key(0),
current_mutex(nullptr),
current_cond(nullptr),
m_is_admin_conn(false),
in_sub_stmt(0),
fill_status_recursion_level(0),
fill_variables_recursion_level(0),
ha_data(PSI_NOT_INSTRUMENTED, ha_data.initial_capacity),
binlog_row_event_extra_data(nullptr),
skip_readonly_check(false),
skip_transaction_read_only_check(false),
binlog_unsafe_warning_flags(0),
binlog_table_maps(0),
binlog_accessed_db_names(nullptr),
m_trans_log_file(nullptr),
m_trans_fixed_log_file(nullptr),
m_trans_end_pos(0),
m_transaction(new Transaction_ctx()),
m_attachable_trx(nullptr),
table_map_for_update(0),
m_examined_row_count(0),
#if defined(ENABLED_PROFILING)
profiling(new PROFILING),
#endif
m_stage_progress_psi(nullptr),
m_digest(nullptr),
m_statement_psi(nullptr),
m_transaction_psi(nullptr),
m_idle_psi(nullptr),
m_server_idle(false),
user_var_events(key_memory_user_var_entry),
next_to_commit(nullptr),
binlog_need_explicit_defaults_ts(false),
kill_immunizer(nullptr),
m_is_fatal_error(false),
transaction_rollback_request(false),
is_fatal_sub_stmt_error(false),
rand_used(false),
time_zone_used(false),
in_lock_tables(false),
derived_tables_processing(false),
parsing_system_view(false),
sp_runtime_ctx(nullptr),
m_parser_state(nullptr),
work_part_info(nullptr),
// No need to instrument, highly unlikely to have that many plugins.
audit_class_plugins(PSI_NOT_INSTRUMENTED),
audit_class_mask(PSI_NOT_INSTRUMENTED),
#if defined(ENABLED_DEBUG_SYNC)
debug_sync_control(nullptr),
#endif /* defined(ENABLED_DEBUG_SYNC) */
m_enable_plugins(enable_plugins),
m_audited(true),
#ifdef HAVE_GTID_NEXT_LIST
owned_gtid_set(global_tsid_map),
#endif
rpl_thd_ctx(key_memory_rpl_thd_context),
skip_gtid_rollback(false),
is_commit_in_middle_of_statement(false),
has_gtid_consistency_violation(false),
main_mem_root(key_memory_thd_main_mem_root,
global_system_variables.query_alloc_block_size),
main_da(false),
m_parser_da(false),
m_query_rewrite_plugin_da(false),
m_query_rewrite_plugin_da_ptr(&m_query_rewrite_plugin_da),
m_stmt_da(&main_da),
duplicate_slave_id(false),
is_a_srv_session_thd(false),
m_is_plugin_fake_ddl(false),
m_inside_system_variable_global_update(false),
bind_parameter_values(nullptr),
bind_parameter_values_count(0),
external_store_(),
events_cache_(nullptr) {
has_incremented_gtid_automatic_count = false;
main_lex->reset();
set_psi(nullptr);
mdl_context.init(this);
stmt_arena = this;
thread_stack = nullptr;
m_catalog.str = "std";
m_catalog.length = 3;
password = 0;
query_start_usec_used = false;
check_for_truncated_fields = CHECK_FIELD_IGNORE;
killed = NOT_KILLED;
is_slave_error = thread_specific_used = false;
tmp_table = 0;
num_truncated_fields = 0L;
m_sent_row_count = 0L;
current_found_rows = 0;
previous_found_rows = 0;
is_operating_gtid_table_implicitly = false;
is_operating_substatement_implicitly = false;
m_row_count_func = -1;
statement_id_counter = 0UL;
// Must be reset to handle error with THD's created for init of mysqld
lex->thd = nullptr;
lex->set_current_query_block(nullptr);
m_lock_usec = 0L;
slave_thread = false;
memset(&variables, 0, sizeof(variables));
m_thread_id = Global_THD_manager::reserved_thread_id;
file_id = 0;
query_id = 0;
query_name_consts = 0;
db_charset = global_system_variables.collation_database;
is_killable = false;
binlog_evt_union.do_union = false;
enable_slow_log = false;
commit_error = CE_NONE;
tx_commit_pending = false;
durability_property = HA_REGULAR_DURABILITY;
#ifndef NDEBUG
dbug_sentry = THD_SENTRY_MAGIC;
current_key_name = nullptr;
conn_mem_alloc_number = 0;
is_mem_cnt_error_issued = false;
#endif
mysql_audit_init_thd(this);
net.vio = nullptr;
system_thread = NON_SYSTEM_THREAD;
peer_port = 0; // For SHOW PROCESSLIST
get_transaction()->m_flags.enabled = true;
m_resource_group_ctx.m_cur_resource_group = nullptr;
m_resource_group_ctx.m_switch_resource_group_str[0] = '\0';
m_resource_group_ctx.m_warn = 0;
m_safe_to_display.store(false);
mysql_mutex_init(key_LOCK_thd_data, &LOCK_thd_data, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_thd_query, &LOCK_thd_query, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_thd_sysvar, &LOCK_thd_sysvar, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_thd_protocol, &LOCK_thd_protocol,
MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_thd_security_ctx, &LOCK_thd_security_ctx,
MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_query_plan, &LOCK_query_plan, MY_MUTEX_INIT_FAST);
mysql_mutex_init(key_LOCK_current_cond, &LOCK_current_cond,
MY_MUTEX_INIT_FAST);
mysql_cond_init(key_COND_thr_lock, &COND_thr_lock);
/*Initialize connection delegation mutex and cond*/
mysql_mutex_init(key_LOCK_group_replication_connection_mutex,
&LOCK_group_replication_connection_mutex,
MY_MUTEX_INIT_FAST);
mysql_cond_init(key_COND_group_replication_connection_cond_var,
&COND_group_replication_connection_cond_var);
/* Variables with default values */
set_proc_info("login");
where = THD::DEFAULT_WHERE;
server_id = ::server_id;
unmasked_server_id = server_id;
set_command(COM_CONNECT);
*scramble = '\0';
/* Call to init() below requires fully initialized Open_tables_state. */
reset_open_tables_state();
init();
#if defined(ENABLED_PROFILING)
profiling->set_thd(this);
#endif
m_user_connect = nullptr;
user_vars.clear();
sp_proc_cache = nullptr;
sp_func_cache = nullptr;
/* Protocol */
m_protocol = protocol_text.get(); // Default protocol
protocol_text->init(this);
protocol_binary->init(this);
protocol_text->set_client_capabilities(0); // minimalistic client
store_cached_properties();
/*
Make sure thr_lock_info_init() is called for threads which do not get
assigned a proper thread_id value but keep using reserved_thread_id.
*/
thr_lock_info_init(&lock_info, m_thread_id, &COND_thr_lock);
m_internal_handler = nullptr;
m_binlog_invoker = false;
memset(&m_invoker_user, 0, sizeof(m_invoker_user));
memset(&m_invoker_host, 0, sizeof(m_invoker_host));
binlog_next_event_pos.file_name = nullptr;
binlog_next_event_pos.pos = 0;
timer = nullptr;
timer_cache = nullptr;
m_token_array = nullptr;
if (max_digest_length > 0) {
m_token_array = (unsigned char *)my_malloc(PSI_INSTRUMENT_ME,
max_digest_length, MYF(MY_WME));
}
#ifndef NDEBUG
debug_binlog_xid_last.reset();
#endif
set_system_user(false);
set_connection_admin(false);
m_mem_cnt.set_thd(this);
events_cache_ = new (std::nothrow) Event_reference_caching_cache();
if (events_cache_ == nullptr || !events_cache_->valid()) {
/*ToDo: Raise warning */
}
}
void THD::store_cached_properties(cached_properties prop_mask) {
DBUG_EXECUTE_IF("assert_only_current_thd_protocol_access",
{ assert(current_thd == this); });
auto is_selected = [this, prop_mask](cached_properties property) -> bool {
return (this->m_protocol != nullptr &&
static_cast<int>(prop_mask) & static_cast<int>(property));
};
if (is_selected(cached_properties::IS_ALIVE))
m_cached_is_connection_alive.store(m_protocol->connection_alive());
if (is_selected(cached_properties::RW_STATUS))
m_cached_rw_status.store(m_protocol->get_rw_status());
}
void THD::copy_table_access_properties(THD *thd) {
thread_stack = thd->thread_stack;
variables.option_bits = thd->variables.option_bits & OPTION_BIN_LOG;
skip_readonly_check = thd->skip_readonly_check;
tx_isolation = thd->tx_isolation;
}
void THD::set_transaction(Transaction_ctx *transaction_ctx) {
assert(is_attachable_ro_transaction_active());
delete m_transaction.release();
m_transaction.reset(transaction_ctx);
}
void THD::set_secondary_engine_statement_context(
std::unique_ptr<Secondary_engine_statement_context> context) {
m_secondary_engine_statement_context = std::move(context);
}
void THD::set_eligible_secondary_engine_handlerton(handlerton *hton) {
m_eligible_secondary_engine_handlerton = hton;
}
void THD::cleanup_after_statement_execution() {
set_secondary_engine_statement_context(nullptr);
m_eligible_secondary_engine_handlerton = nullptr;
}
bool THD::set_db(const LEX_CSTRING &new_db) {
bool result;
/*
Acquiring mutex LOCK_thd_data as we either free the memory allocated
for the database and reallocating the memory for the new db or memcpy
the new_db to the db.
*/
mysql_mutex_lock(&LOCK_thd_data);
/* Do not reallocate memory if current chunk is big enough. */
if (m_db.str && new_db.str && m_db.length >= new_db.length)
memcpy(const_cast<char *>(m_db.str), new_db.str, new_db.length + 1);
else {
my_free(const_cast<char *>(m_db.str));
m_db = NULL_CSTR;
if (new_db.str)
m_db.str = my_strndup(key_memory_THD_db, new_db.str, new_db.length,
MYF(MY_WME | ME_FATALERROR));
}
m_db.length = m_db.str ? new_db.length : 0;
mysql_mutex_unlock(&LOCK_thd_data);
result = new_db.str && !m_db.str;
#ifdef HAVE_PSI_THREAD_INTERFACE
if (!result)
PSI_THREAD_CALL(set_thread_db)(new_db.str, static_cast<int>(new_db.length));
#endif
return result;
}
void THD::push_internal_handler(Internal_error_handler *handler) {
if (m_internal_handler) {
handler->m_prev_internal_handler = m_internal_handler;
m_internal_handler = handler;
} else
m_internal_handler = handler;
}
bool THD::handle_condition(uint sql_errno, const char *sqlstate,
Sql_condition::enum_severity_level *level,
const char *msg) {
if (!m_internal_handler) return false;
for (Internal_error_handler *error_handler = m_internal_handler;
error_handler; error_handler = error_handler->m_prev_internal_handler) {
if (error_handler->handle_condition(this, sql_errno, sqlstate, level, msg))
return true;
}