-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy paththr_lock.cc
1467 lines (1314 loc) · 52.9 KB
/
thr_lock.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.
Without limiting anything contained in the foregoing, this file,
which is part of C Driver for MySQL (Connector/C), is also subject to the
Universal FOSS Exception, version 1.0, a copy of which can be found at
http://oss.oracle.com/licenses/universal-foss-exception.
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 */
/**
@file mysys/thr_lock.cc
Read and write locks for Posix threads. Every thread must acquire
all locks it needs through thr_multi_lock() to avoid dead-locks.
A lock consists of a master lock (THR_LOCK), and lock instances
(THR_LOCK_DATA).
Any thread can have any number of lock instances (read and write:s) on
any lock. All lock instances must be freed.
Locks are prioritized according to:
The current lock types are:
TL_READ # Low priority read
TL_READ_WITH_SHARED_LOCKS
TL_READ_HIGH_PRIORITY # High priority read
TL_READ_NO_INSERT # Read without concurrent inserts
TL_WRITE_ALLOW_WRITE # Write lock that allows other writers
TL_WRITE_CONCURRENT_INSERT
# Insert that can be mixed when selects
# Allows lower locks to take over
TL_WRITE_LOW_PRIORITY # Low priority write
TL_WRITE # High priority write
TL_WRITE_ONLY # High priority write
# Abort all new lock request with an error
Locks are prioritized according to:
WRITE_ALLOW_WRITE, WRITE_CONCURRENT_INSERT, WRITE_LOW_PRIORITY, READ,
WRITE, READ_HIGH_PRIORITY and WRITE_ONLY
Locks in the same privilege level are scheduled in first-in-first-out order.
To allow concurrent read/writes locks, with 'WRITE_CONCURRENT_INSERT' one
should put a pointer to the following functions in the lock structure:
(If the pointer is zero (default), the function is not called)
check_status:
Before giving a lock of type TL_WRITE_CONCURRENT_INSERT,
we check if this function exists and returns 0.
If not, then the lock is upgraded to TL_WRITE_LOCK
In MyISAM this is a simple check if the insert can be done
at the end of the datafile.
update_status:
Before a write lock is released, this function is called.
In MyISAM this functions updates the count and length of the datafile
get_status:
When one gets a lock this functions is called.
In MyISAM this stores the number of rows and size of the datafile
for concurrent reads.
The lock algorithm allows one to have one TL_WRITE_CONCURRENT_INSERT
lock at the same time as multiple read locks.
*/
#include "my_config.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <time.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_list.h"
#include "my_macros.h"
#include "my_sys.h"
#include "my_systime.h"
#include "my_thread.h"
#include "my_thread_local.h"
#include "mysql/psi/mysql_cond.h"
#include "mysql/psi/mysql_mutex.h"
#include "mysql/psi/mysql_table.h"
#include "mysql/psi/mysql_thread.h"
#include "mysql/psi/psi_stage.h"
#include "mysql/psi/psi_table.h"
#include "mysys/mysys_priv.h"
#include "template_utils.h"
#include "thr_lock.h"
#include "thr_mutex.h"
ulong locks_immediate = 0L, locks_waited = 0L;
enum thr_lock_type thr_upgraded_concurrent_insert_lock = TL_WRITE;
#ifdef WITH_WSREP
/* Function pointer to be used if there is thread locking conflicts.
Thread locking conflicts can happen if 2 trxs tend to modify same set
of data. This mainly has 2 scenarios:
a. Both trx are applier trx coming from different nodes.
b. One trx is local trx and other is applier trx.
Check usage of these function to understand there importance. */
static wsrep_thd_is_brute_force_func wsrep_thd_is_brute_force = NULL;
static wsrep_abort_thd_func wsrep_abort_thd = NULL;
static ulong wsrep_debug;
static wsrep_on_func wsrep_on = NULL;
void wsrep_thr_lock_init(wsrep_thd_is_brute_force_func bf_func,
wsrep_abort_thd_func abort_func, ulong debug,
wsrep_on_func on_func) {
wsrep_thd_is_brute_force = bf_func;
wsrep_abort_thd = abort_func;
wsrep_debug = debug;
wsrep_on = on_func;
}
#endif /* WITH_WSREP */
/* The following constants are only for debug output */
#define MAX_THREADS 100
#define MAX_LOCKS 100
LIST *thr_lock_thread_list; /* List of threads in use */
ulong max_write_lock_count = ~(ulong)0L;
static void (*before_lock_wait)(void) = nullptr;
static void (*after_lock_wait)(void) = nullptr;
void thr_set_lock_wait_callback(void (*before_wait)(void),
void (*after_wait)(void)) {
before_lock_wait = before_wait;
after_lock_wait = after_wait;
}
static inline bool thr_lock_owner_equal(THR_LOCK_INFO *rhs,
THR_LOCK_INFO *lhs) {
return rhs == lhs;
}
#ifdef EXTRA_DEBUG
#define MAX_FOUND_ERRORS 10 /* Report 10 first errors */
static uint found_errors = 0;
static int check_lock(struct st_lock_list *list, const char *lock_type,
const char *where, bool same_owner, bool no_cond) {
THR_LOCK_DATA *data, **prev;
uint count = 0;
THR_LOCK_INFO *first_owner = NULL;
prev = &list->data;
if (list->data) {
enum thr_lock_type last_lock_type = list->data->type;
if (same_owner && list->data) first_owner = list->data->owner;
for (data = list->data; data && count++ < MAX_LOCKS; data = data->next) {
if (data->type != last_lock_type) last_lock_type = TL_IGNORE;
if (data->prev != prev) {
fprintf(stderr,
"prev link %d didn't point at "
"previous lock at %s: %s",
count, lock_type, where);
return 1;
}
if (same_owner && !thr_lock_owner_equal(data->owner, first_owner) &&
last_lock_type != TL_WRITE_ALLOW_WRITE) {
fprintf(stderr,
"Found locks from different threads "
"in %s: %s",
lock_type, where);
return 1;
}
if (no_cond && data->cond) {
fprintf(stderr,
"Found active lock with not reset "
"cond %s: %s",
lock_type, where);
return 1;
}
prev = &data->next;
}
if (data) {
fprintf(stderr, "found too many locks at %s: %s", lock_type, where);
return 1;
}
}
if (prev != list->last) {
fprintf(stderr, "last didn't point at last lock at %s: %s", lock_type,
where);
return 1;
}
return 0;
}
static void check_locks(THR_LOCK *lock, const char *where,
bool allow_no_locks) {
uint old_found_errors = found_errors;
DBUG_TRACE;
if (found_errors < MAX_FOUND_ERRORS) {
if (check_lock(&lock->write, "write", where, 1, 1) |
check_lock(&lock->write_wait, "write_wait", where, 0, 0) |
check_lock(&lock->read, "read", where, 0, 1) |
check_lock(&lock->read_wait, "read_wait", where, 0, 0))
found_errors++;
if (found_errors < MAX_FOUND_ERRORS) {
uint count = 0;
THR_LOCK_DATA *data;
for (data = lock->read.data; data; data = data->next) {
if ((int)data->type == (int)TL_READ_NO_INSERT) count++;
/* Protect against infinite loop. */
assert(count <= lock->read_no_write_count);
}
if (count != lock->read_no_write_count) {
found_errors++;
fprintf(stderr,
"at '%s': Locks read_no_write_count "
"was %u when it should have been %u",
where, lock->read_no_write_count, count);
}
if (!lock->write.data) {
if (!allow_no_locks && !lock->read.data &&
(lock->write_wait.data || lock->read_wait.data)) {
found_errors++;
fprintf(stderr,
"at '%s': No locks in use but locks "
"are in wait queue",
where);
}
if (!lock->write_wait.data) {
if (!allow_no_locks && lock->read_wait.data) {
found_errors++;
fprintf(stderr,
"at '%s': No write locks and "
"waiting read locks",
where);
}
} else {
if (!allow_no_locks &&
(((lock->write_wait.data->type == TL_WRITE_CONCURRENT_INSERT ||
lock->write_wait.data->type == TL_WRITE_ALLOW_WRITE) &&
!lock->read_no_write_count))) {
found_errors++;
fprintf(stderr,
"at '%s': Write lock %d waiting "
"while no exclusive read locks",
where, (int)lock->write_wait.data->type);
}
}
} else { /* Have write lock */
if (lock->write_wait.data) {
if (!allow_no_locks &&
lock->write.data->type == TL_WRITE_ALLOW_WRITE &&
lock->write_wait.data->type == TL_WRITE_ALLOW_WRITE) {
found_errors++;
fprintf(stderr,
"at '%s': Found WRITE_ALLOW_WRITE "
"lock waiting for WRITE_ALLOW_WRITE lock",
where);
}
}
if (lock->read.data) {
if (!thr_lock_owner_equal(lock->write.data->owner,
lock->read.data->owner) &&
((lock->write.data->type > TL_WRITE_CONCURRENT_INSERT &&
lock->write.data->type != TL_WRITE_ONLY) ||
((lock->write.data->type == TL_WRITE_CONCURRENT_INSERT ||
lock->write.data->type == TL_WRITE_ALLOW_WRITE) &&
lock->read_no_write_count))) {
found_errors++;
fprintf(stderr,
"at '%s': Found lock of type %d "
"that is write and read locked",
where, lock->write.data->type);
DBUG_PRINT("warning", ("At '%s': Found lock of type %d that is "
"write and read locked\n",
where, lock->write.data->type));
}
}
if (lock->read_wait.data) {
if (!allow_no_locks &&
lock->write.data->type <= TL_WRITE_CONCURRENT_INSERT &&
lock->read_wait.data->type <= TL_READ_HIGH_PRIORITY) {
found_errors++;
fprintf(stderr,
"at '%s': Found read lock of "
"type %d waiting for write lock of type %d",
where, (int)lock->read_wait.data->type,
(int)lock->write.data->type);
}
}
}
}
if (found_errors != old_found_errors) {
DBUG_PRINT("error", ("Found wrong lock"));
}
}
}
#else /* EXTRA_DEBUG */
#define check_locks(A, B, C)
#endif
/* Initialize a lock */
void thr_lock_init(THR_LOCK *lock) {
DBUG_TRACE;
new (lock) THR_LOCK();
mysql_mutex_init(key_THR_LOCK_mutex, &lock->mutex, MY_MUTEX_INIT_FAST);
lock->read.last = &lock->read.data;
lock->read_wait.last = &lock->read_wait.data;
lock->write_wait.last = &lock->write_wait.data;
lock->write.last = &lock->write.data;
mysql_mutex_lock(&THR_LOCK_lock); /* Add to locks in use */
lock->list.data = (void *)lock;
thr_lock_thread_list = list_add(thr_lock_thread_list, &lock->list);
mysql_mutex_unlock(&THR_LOCK_lock);
}
void thr_lock_delete(THR_LOCK *lock) {
DBUG_TRACE;
mysql_mutex_lock(&THR_LOCK_lock);
thr_lock_thread_list = list_delete(thr_lock_thread_list, &lock->list);
mysql_mutex_unlock(&THR_LOCK_lock);
mysql_mutex_destroy(&lock->mutex);
}
void thr_lock_info_init(THR_LOCK_INFO *info, my_thread_id thread_id,
mysql_cond_t *suspend) {
info->thread_id = thread_id;
info->suspend = suspend;
}
/* Initialize a lock instance */
void thr_lock_data_init(THR_LOCK *lock, THR_LOCK_DATA *data, void *param) {
data->lock = lock;
data->type = TL_UNLOCK;
data->owner = nullptr; /* no owner yet */
data->status_param = param;
data->cond = nullptr;
}
static inline bool has_old_lock(THR_LOCK_DATA *data, THR_LOCK_INFO *owner) {
for (; data; data = data->next) {
if (thr_lock_owner_equal(data->owner, owner))
return true; /* Already locked by thread */
}
return false;
}
static void wake_up_waiters(THR_LOCK *lock);
static enum enum_thr_lock_result wait_for_lock(struct st_lock_list *wait,
THR_LOCK_DATA *data,
THR_LOCK_INFO *owner,
bool in_wait_list,
ulong lock_wait_timeout) {
struct timespec wait_timeout;
enum enum_thr_lock_result result = THR_LOCK_ABORTED;
PSI_stage_info old_stage;
DBUG_TRACE;
/*
One can use this to signal when a thread is going to wait for a lock.
See debug_sync.cc.
Beware of waiting for a signal here. The lock has acquired its mutex.
While waiting on a signal here, the locking thread could not acquire
the mutex to release the lock. One could lock up the table
completely.
In detail it works so: When thr_lock() tries to acquire a table
lock, it locks the lock->mutex, checks if it can have the lock, and
if not, it calls wait_for_lock(). Here it unlocks the table lock
while waiting on a condition. The sync point is located before this
wait for condition. If we have a waiting action here, we hold the
table locks mutex all the time. Any attempt to look at the table
lock from another thread blocks it immediately on lock->mutex. This
can easily become an unexpected and unobvious blockage. So be
warned: Do not request a WAIT_FOR action for the 'wait_for_lock'
sync point unless you really know what you do.
*/
DEBUG_SYNC_C("wait_for_lock");
if (!in_wait_list) {
(*wait->last) = data; /* Wait for lock */
data->prev = wait->last;
wait->last = &data->next;
}
locks_waited++;
/* Set up control struct to allow others to abort locks */
data->cond = owner->suspend;
enter_cond_hook(nullptr, data->cond, &data->lock->mutex,
&stage_waiting_for_table_level_lock, &old_stage, __func__,
__FILE__, __LINE__);
/*
Since before_lock_wait potentially can create more threads to
scheduler work for, we don't want to call the before_lock_wait
callback unless it will really start to wait.
For similar reasons, we do not want to call before_lock_wait and
after_lock_wait for each lap around the loop, so we restrict
ourselves to call it before_lock_wait once before starting to wait
and once after the thread has exited the wait loop.
*/
bool use_wait_callbacks;
if ((!is_killed_hook(nullptr) || in_wait_list) && before_lock_wait) {
use_wait_callbacks = true;
(*before_lock_wait)();
} else {
use_wait_callbacks = false;
}
set_timespec(&wait_timeout, lock_wait_timeout);
while (!is_killed_hook(nullptr) || in_wait_list) {
int rc =
mysql_cond_timedwait(data->cond, &data->lock->mutex, &wait_timeout);
/*
We must break the wait if one of the following occurs:
- the connection has been aborted (!is_killed_hook()),
- the lock has been granted (data->cond is set to NULL by the granter),
or the waiting has been aborted (additionally data->type is set to
TL_UNLOCK).
- the wait has timed out (rc == ETIMEDOUT)
Order of checks below is important to not report about timeout
if the predicate is true.
*/
if (data->cond == nullptr) {
DBUG_PRINT("thr_lock", ("lock granted/aborted"));
break;
}
if (is_timeout(rc)) {
/* purecov: begin inspected */
DBUG_PRINT("thr_lock", ("lock timed out"));
result = THR_LOCK_WAIT_TIMEOUT;
break;
/* purecov: end */
}
}
/*
We call the after_lock_wait callback once the wait loop has
finished.
*/
if (after_lock_wait && use_wait_callbacks) (*after_lock_wait)();
if (data->cond || data->type == TL_UNLOCK) {
if (data->cond) /* aborted or timed out */
{
if (((*data->prev) = data->next)) /* remove from wait-list */
data->next->prev = data->prev;
else
wait->last = data->prev;
data->type = TL_UNLOCK; /* No lock */
check_locks(data->lock, "killed or timed out wait_for_lock", 1);
wake_up_waiters(data->lock);
} else {
DBUG_PRINT("thr_lock", ("lock aborted"));
check_locks(data->lock, "aborted wait_for_lock", 0);
}
} else {
result = THR_LOCK_SUCCESS;
if (data->lock->get_status)
(*data->lock->get_status)(data->status_param, 0);
check_locks(data->lock, "got wait_for_lock", 0);
}
mysql_mutex_unlock(&data->lock->mutex);
exit_cond_hook(nullptr, &old_stage, __func__, __FILE__, __LINE__);
return result;
}
#ifdef WITH_WSREP
/*
WSREP algorithm to resolve lock conflict.
"Applier wins and local trx is forced to rollback"
If brute force applier would need to wait for a thr lock,
it needs to make sure that it will get the lock without (too much) delay.
We identify here the owners of blocking locks and ask them to
abort. We then put our lock request in the first place in the
wait queue. When lock holders abort (one by one) the lock release
algorithm should grant the lock to us. We rely on this and proceed
to wait_for_locks().
wsrep_break_locks() should be called in all the cases, where lock
wait would happen.
TODO: current implementation might not cover all possible lock wait
situations. This needs an review still.
TODO: lock release, might favor some other lock (instead our bf).
This needs an condition to check for bf locks first.
TODO: we still have a debug fprintf, this should be removed */
static inline bool wsrep_break_lock(THR_LOCK_DATA *data,
struct st_lock_list *lock_queue1,
struct st_lock_list *lock_queue2,
struct st_lock_list *wait_queue,
THR_LOCK_INFO *owner) {
if (wsrep_on(data->owner->mysql_thd) && wsrep_thd_is_brute_force &&
wsrep_thd_is_brute_force(data->owner->mysql_thd, true)) {
THR_LOCK_DATA *holder;
if (wsrep_debug) fprintf(stderr, "WSREP wsrep_break_lock aborting locks\n");
/* aborting lock holder(s) here */
for (holder = (lock_queue1) ? lock_queue1->data : NULL; holder;
holder = holder->next) {
if (!wsrep_thd_is_brute_force(holder->owner->mysql_thd, true)) {
wsrep_abort_thd(data->owner->mysql_thd, holder->owner->mysql_thd,
false);
} else {
if (wsrep_debug)
fprintf(stderr, "WSREP wsrep_break_lock skipping BF lock conflict\n");
return false;
}
}
for (holder = (lock_queue2) ? lock_queue2->data : NULL; holder;
holder = holder->next) {
if (!wsrep_thd_is_brute_force(holder->owner->mysql_thd, true)) {
wsrep_abort_thd(data->owner->mysql_thd, holder->owner->mysql_thd,
false);
} else {
if (wsrep_debug)
fprintf(stderr, "WSREP wsrep_break_lock skipping BF lock conflict\n");
return false;
}
}
/* Add our lock to the head of the wait queue */
if (*(wait_queue->last) == wait_queue->data) {
wait_queue->last = &data->next;
assert(wait_queue->data == 0);
} else {
assert(wait_queue->data != 0);
wait_queue->data->prev = &data->next;
}
data->next = wait_queue->data;
data->prev = &wait_queue->data;
wait_queue->data = data;
data->cond = owner->suspend;
locks_immediate++;
return true;
}
return false;
}
#endif /* WITH_WSREP */
enum enum_thr_lock_result thr_lock(THR_LOCK_DATA *data, THR_LOCK_INFO *owner,
enum thr_lock_type lock_type,
ulong lock_wait_timeout) {
THR_LOCK *lock = data->lock;
enum enum_thr_lock_result result = THR_LOCK_SUCCESS;
struct st_lock_list *wait_queue;
#ifdef WITH_WSREP
bool wsrep_lock_inserted = false;
#endif /* WITH_WSREP */
MYSQL_TABLE_WAIT_VARIABLES(locker, state) /* no ';' */
DBUG_TRACE;
data->next = nullptr;
data->cond = nullptr; /* safety */
data->type = lock_type;
data->owner = owner; /* Must be reset ! */
MYSQL_START_TABLE_LOCK_WAIT(locker, &state, data->m_psi, PSI_TABLE_LOCK,
lock_type);
mysql_mutex_lock(&lock->mutex);
DBUG_PRINT("lock", ("data: %p thread: 0x%x lock: %p type: %d", data,
data->owner->thread_id, lock, (int)lock_type));
check_locks(lock,
(uint)lock_type <= (uint)TL_READ_NO_INSERT ? "enter read_lock"
: "enter write_lock",
0);
if ((int)lock_type <= (int)TL_READ_NO_INSERT) {
/* Request for READ lock */
if (lock->write.data) {
/*
We can allow a read lock even if there is already a
write lock on the table if they are owned by the same
thread or if they satisfy the following lock
compatibility matrix:
Request
/-------
H|++++ WRITE_ALLOW_WRITE
e|+++- WRITE_CONCURRENT_INSERT
l ||||
d ||||
|||\= READ_NO_INSERT
||\ = READ_HIGH_PRIORITY
|\ = READ_WITH_SHARED_LOCKS
\ = READ
+ = Request can be satisfied.
- = Request cannot be satisfied.
READ_NO_INSERT and WRITE_ALLOW_WRITE should in principle
be incompatible. Before this could have caused starvation of
LOCK TABLE READ in InnoDB under high write load. However
now READ_NO_INSERT is only used for LOCK TABLES READ and this
statement is handled by the MDL subsystem.
See Bug#42147 for more information.
*/
DBUG_PRINT("lock", ("write locked 1 by thread: 0x%x",
lock->write.data->owner->thread_id));
if (thr_lock_owner_equal(data->owner, lock->write.data->owner) ||
(lock->write.data->type < TL_WRITE_CONCURRENT_INSERT) ||
((lock->write.data->type == TL_WRITE_CONCURRENT_INSERT) &&
((int)lock_type <=
(int)TL_READ_HIGH_PRIORITY))) { /* Already got a write lock */
(*lock->read.last) = data; /* Add to running FIFO */
data->prev = lock->read.last;
lock->read.last = &data->next;
if (lock_type == TL_READ_NO_INSERT) lock->read_no_write_count++;
check_locks(lock, "read lock with old write lock", 0);
if (lock->get_status) (*lock->get_status)(data->status_param, 0);
locks_immediate++;
goto end;
}
if (lock->write.data->type == TL_WRITE_ONLY) {
#ifdef WITH_WSREP
if (wsrep_break_lock(data, &lock->write, NULL, &lock->read_wait,
owner)) {
wsrep_lock_inserted = true;
goto wsrep_read_wait;
}
#endif /* WITH_WSREP */
/* We are not allowed to get a READ lock in this case */
data->type = TL_UNLOCK;
result = THR_LOCK_ABORTED; /* Can't wait for this one */
goto end;
}
} else if (!lock->write_wait.data ||
lock->write_wait.data->type <= TL_WRITE_LOW_PRIORITY ||
lock_type == TL_READ_HIGH_PRIORITY ||
has_old_lock(lock->read.data,
data->owner)) /* Has old read lock */
{ /* No important write-locks */
(*lock->read.last) = data; /* Add to running FIFO */
data->prev = lock->read.last;
lock->read.last = &data->next;
if (lock->get_status) (*lock->get_status)(data->status_param, 0);
if (lock_type == TL_READ_NO_INSERT) lock->read_no_write_count++;
check_locks(lock, "read lock with no write locks", 0);
locks_immediate++;
goto end;
}
/*
We're here if there is an active write lock or no write
lock but a high priority write waiting in the write_wait queue.
In the latter case we should yield the lock to the writer.
*/
#ifdef WITH_WSREP
if (wsrep_break_lock(data, &lock->write, NULL, &lock->read_wait, owner)) {
wsrep_lock_inserted = true;
}
wsrep_read_wait:
#endif /* WITH_WSREP */
wait_queue = &lock->read_wait;
} else /* Request for WRITE lock */
{
if (lock_type == TL_WRITE_CONCURRENT_INSERT && !lock->check_status)
data->type = lock_type = thr_upgraded_concurrent_insert_lock;
if (lock->write.data) /* If there is a write lock */
{
if (lock->write.data->type == TL_WRITE_ONLY) {
/* purecov: begin tested */
/* Allow lock owner to bypass TL_WRITE_ONLY. */
if (!thr_lock_owner_equal(data->owner, lock->write.data->owner)) {
#ifdef WITH_WSREP
if (wsrep_break_lock(data, &lock->write, NULL, &lock->write_wait,
owner)) {
wsrep_lock_inserted = true;
goto wsrep_write_wait;
}
#endif /* WITH_WSREP */
/* We are not allowed to get a lock in this case */
data->type = TL_UNLOCK;
result = THR_LOCK_ABORTED; /* Can't wait for this one */
goto end;
}
/* purecov: end */
}
/*
The idea is to allow us to get a lock at once if we already have
a write lock or if there is no pending write locks and if all
write locks are of TL_WRITE_ALLOW_WRITE type.
Note that, since lock requests for the same table are sorted in
such way that requests with higher thr_lock_type value come first
(with one exception (*)), lock being requested usually has
equal or "weaker" type than one which thread might have already
acquired.
*) The only exception to this rule is case when type of old lock
is TL_WRITE_LOW_PRIORITY and type of new lock is changed inside
of thr_lock() from TL_WRITE_CONCURRENT_INSERT to TL_WRITE since
engine turns out to be not supporting concurrent inserts.
Note that since TL_WRITE has the same compatibility rules as
TL_WRITE_LOW_PRIORITY (their only difference is priority),
it is OK to grant new lock without additional checks in such
situation.
Therefore it is OK to allow acquiring write lock on the table if
this thread already holds some write lock on it.
(INSERT INTO t1 VALUES (f1()), where f1() is stored function which
tries to update t1, is an example of statement which requests two
different types of write lock on the same table).
*/
assert(!has_old_lock(lock->write.data, data->owner) ||
((lock_type <= lock->write.data->type ||
(lock_type == TL_WRITE &&
lock->write.data->type == TL_WRITE_LOW_PRIORITY))));
if ((lock_type == TL_WRITE_ALLOW_WRITE && !lock->write_wait.data &&
lock->write.data->type == TL_WRITE_ALLOW_WRITE) ||
has_old_lock(lock->write.data, data->owner)) {
/*
We have already got a write lock or all locks are
TL_WRITE_ALLOW_WRITE
*/
DBUG_PRINT("info", ("write_wait.data: %p old_type: %d",
lock->write_wait.data, lock->write.data->type));
(*lock->write.last) = data; /* Add to running fifo */
data->prev = lock->write.last;
lock->write.last = &data->next;
check_locks(lock, "second write lock", 0);
if (data->lock->get_status)
(*data->lock->get_status)(data->status_param, 0);
locks_immediate++;
goto end;
}
DBUG_PRINT("lock", ("write locked 2 by thread: 0x%x",
lock->write.data->owner->thread_id));
} else {
DBUG_PRINT("info", ("write_wait.data: %p", lock->write_wait.data));
if (!lock->write_wait.data) { /* no scheduled write locks */
bool concurrent_insert = false;
if (lock_type == TL_WRITE_CONCURRENT_INSERT) {
concurrent_insert = true;
if ((*lock->check_status)(data->status_param)) {
concurrent_insert = false;
data->type = lock_type = thr_upgraded_concurrent_insert_lock;
}
}
if (!lock->read.data || (lock_type <= TL_WRITE_CONCURRENT_INSERT &&
((lock_type != TL_WRITE_CONCURRENT_INSERT &&
lock_type != TL_WRITE_ALLOW_WRITE) ||
!lock->read_no_write_count))) {
(*lock->write.last) = data; /* Add as current write lock */
data->prev = lock->write.last;
lock->write.last = &data->next;
if (data->lock->get_status)
(*data->lock->get_status)(data->status_param, concurrent_insert);
check_locks(lock, "only write lock", 0);
locks_immediate++;
goto end;
}
}
DBUG_PRINT("lock", ("write locked 3 by thread: 0x%x type: %d",
lock->read.data->owner->thread_id, data->type));
}
#ifdef WITH_WSREP
if (wsrep_break_lock(data, &lock->write, NULL, &lock->write_wait, owner)) {
wsrep_lock_inserted = true;
}
wsrep_write_wait:
#endif /* WITH_WSREP */
wait_queue = &lock->write_wait;
}
/* Can't get lock yet; Wait for it */
#ifdef WITH_WSREP
if (wsrep_on(data->owner->mysql_thd) && wsrep_lock_inserted) {
return (wait_for_lock(wait_queue, data, owner, true, lock_wait_timeout));
}
#endif /* WITH_WSREP */
result = wait_for_lock(wait_queue, data, owner, false, lock_wait_timeout);
MYSQL_END_TABLE_LOCK_WAIT(locker);
return result;
end:
mysql_mutex_unlock(&lock->mutex);
MYSQL_END_TABLE_LOCK_WAIT(locker);
return result;
}
static inline void free_all_read_locks(THR_LOCK *lock,
bool using_concurrent_insert) {
THR_LOCK_DATA *data = lock->read_wait.data;
check_locks(lock, "before freeing read locks", 1);
/* move all locks from read_wait list to read list */
(*lock->read.last) = data;
data->prev = lock->read.last;
lock->read.last = lock->read_wait.last;
/* Clear read_wait list */
lock->read_wait.last = &lock->read_wait.data;
do {
mysql_cond_t *cond = data->cond;
if ((int)data->type == (int)TL_READ_NO_INSERT) {
if (using_concurrent_insert) {
/*
We can't free this lock;
Link lock away from read chain back into read_wait chain
*/
if (((*data->prev) = data->next))
data->next->prev = data->prev;
else
lock->read.last = data->prev;
*lock->read_wait.last = data;
data->prev = lock->read_wait.last;
lock->read_wait.last = &data->next;
continue;
}
lock->read_no_write_count++;
}
/* purecov: begin inspected */
DBUG_PRINT("lock",
("giving read lock to thread: 0x%x", data->owner->thread_id));
/* purecov: end */
data->cond = nullptr; /* Mark thread free */
mysql_cond_signal(cond);
} while ((data = data->next));
*lock->read_wait.last = nullptr;
if (!lock->read_wait.data) lock->write_lock_count = 0;
check_locks(lock, "after giving read locks", 0);
}
/* Unlock lock and free next thread on same lock */
void thr_unlock(THR_LOCK_DATA *data) {
THR_LOCK *lock = data->lock;
enum thr_lock_type lock_type = data->type;
DBUG_TRACE;
DBUG_PRINT("lock", ("data: %p thread: 0x%x lock: %p", data,
data->owner->thread_id, lock));
mysql_mutex_lock(&lock->mutex);
check_locks(lock, "start of release lock", 0);
if (((*data->prev) = data->next)) /* remove from lock-list */
data->next->prev = data->prev;
else if (lock_type <= TL_READ_NO_INSERT)
lock->read.last = data->prev;
else
lock->write.last = data->prev;
if (lock_type >= TL_WRITE_CONCURRENT_INSERT) {
if (lock->update_status) (*lock->update_status)(data->status_param);
} else {
if (lock->restore_status) (*lock->restore_status)(data->status_param);
}
if (lock_type == TL_READ_NO_INSERT) lock->read_no_write_count--;
data->type = TL_UNLOCK; /* Mark unlocked */
MYSQL_UNLOCK_TABLE(data->m_psi);
check_locks(lock, "after releasing lock", 1);
wake_up_waiters(lock);
mysql_mutex_unlock(&lock->mutex);
}
/**
@brief Wake up all threads which pending requests for the lock
can be satisfied.
@param lock Lock for which threads should be woken up
*/
static void wake_up_waiters(THR_LOCK *lock) {
THR_LOCK_DATA *data;
enum thr_lock_type lock_type;
DBUG_TRACE;
if (!lock->write.data) /* If no active write locks */
{
data = lock->write_wait.data;
if (!lock->read.data) /* If no more locks in use */
{
/* Release write-locks with TL_WRITE or TL_WRITE_ONLY priority first */
if (data &&
(data->type != TL_WRITE_LOW_PRIORITY || !lock->read_wait.data ||
lock->read_wait.data->type < TL_READ_HIGH_PRIORITY)) {
if (lock->write_lock_count++ > max_write_lock_count) {
/* Too many write locks in a row; Release all waiting read locks */
lock->write_lock_count = 0;
if (lock->read_wait.data) {
DBUG_PRINT(
"info",
("Freeing all read_locks because of max_write_lock_count"));
free_all_read_locks(lock, false);
goto end;
}
}
for (;;) {
if (((*data->prev) = data->next)) /* remove from wait-list */
data->next->prev = data->prev;
else
lock->write_wait.last = data->prev;
(*lock->write.last) = data; /* Put in execute list */
data->prev = lock->write.last;
data->next = nullptr;
lock->write.last = &data->next;
if (data->type == TL_WRITE_CONCURRENT_INSERT &&
(*lock->check_status)(data->status_param))
data->type = TL_WRITE; /* Upgrade lock */
/* purecov: begin inspected */
DBUG_PRINT("lock", ("giving write lock of type %d to thread: 0x%x",
data->type, data->owner->thread_id));
/* purecov: end */
{
mysql_cond_t *cond = data->cond;
data->cond = nullptr; /* Mark thread free */
mysql_cond_signal(cond); /* Start waiting thread */
}
if (data->type != TL_WRITE_ALLOW_WRITE || !lock->write_wait.data ||
lock->write_wait.data->type != TL_WRITE_ALLOW_WRITE)
break;
data = lock->write_wait.data; /* Free this too */
}
if (data->type >= TL_WRITE_LOW_PRIORITY) goto end;
/* Release possible read locks together with the write lock */
}
if (lock->read_wait.data)
free_all_read_locks(lock,
data && (data->type == TL_WRITE_CONCURRENT_INSERT ||
data->type == TL_WRITE_ALLOW_WRITE));
else {
DBUG_PRINT("lock", ("No waiting read locks to free"));
}
} else if (data && (lock_type = data->type) <= TL_WRITE_CONCURRENT_INSERT &&
((lock_type != TL_WRITE_CONCURRENT_INSERT &&
lock_type != TL_WRITE_ALLOW_WRITE) ||
!lock->read_no_write_count)) {
/*
For ALLOW_READ, WRITE_ALLOW_WRITE or CONCURRENT_INSERT locks
start WRITE locks together with the READ locks
*/
if (lock_type == TL_WRITE_CONCURRENT_INSERT &&
(*lock->check_status)(data->status_param)) {
data->type = TL_WRITE; /* Upgrade lock */
if (lock->read_wait.data) free_all_read_locks(lock, false);
goto end;
}
do {
mysql_cond_t *cond = data->cond;
if (((*data->prev) = data->next)) /* remove from wait-list */
data->next->prev = data->prev;
else
lock->write_wait.last = data->prev;
(*lock->write.last) = data; /* Put in execute list */
data->prev = lock->write.last;
lock->write.last = &data->next;
data->next = nullptr; /* Only one write lock */
data->cond = nullptr; /* Mark thread free */
mysql_cond_signal(cond); /* Start waiting thread */
} while (lock_type == TL_WRITE_ALLOW_WRITE &&