- Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathmy_thr_init.c
548 lines (463 loc) · 14.8 KB
/
my_thr_init.c
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
/*
* 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 Connector/C++, is also subject to the
* Universal FOSS Exception, version 1.0, a copy of which can be found at
* https://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
Functions for initialization and allocation of all mysys & debug
thread variables.
*/
#ifdefTHREAD
#include"my_pthread.h"
externpthread_mutex_tTHR_LOCK_malloc, THR_LOCK_open, THR_LOCK_keycache;
externpthread_mutex_tTHR_LOCK_lock, THR_LOCK_isam, THR_LOCK_net;
externpthread_mutex_tTHR_LOCK_charset, THR_LOCK_time;
#else
#include"my_no_pthread.h"
#endif
//#include "mysys_priv.h"
//#include <m_string.h>
#include<signal.h>
#ifdefTHREAD
pthread_key(structst_my_thread_var*, THR_KEY_mysys);
pthread_mutex_tTHR_LOCK_malloc,THR_LOCK_open,
THR_LOCK_lock,THR_LOCK_isam,THR_LOCK_heap, THR_LOCK_net,
THR_LOCK_charset, THR_LOCK_threads, THR_LOCK_time;
/** For insert/delete in the list of MyISAM open tables */
pthread_mutex_tTHR_LOCK_myisam;
/** For writing to the MyISAM logs */
pthread_mutex_tTHR_LOCK_myisam_log;
pthread_cond_tTHR_COND_threads;
uintTHR_thread_count=0;
uintmy_thread_end_wait_time=5;
#if !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)
pthread_mutex_tLOCK_localtime_r;
#endif
#ifndefHAVE_GETHOSTBYNAME_R
pthread_mutex_tLOCK_gethostbyname_r;
#endif
#ifdefPTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
pthread_mutexattr_tmy_fast_mutexattr;
#endif
#ifdefPTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
pthread_mutexattr_tmy_errorcheck_mutexattr;
#endif
#ifdef_MSC_VER
staticvoidinstall_sigabrt_handler();
#endif
#ifdefTARGET_OS_LINUX
/*
Dummy thread spawned in my_thread_global_init() below to avoid
race conditions in NPTL pthread_exit code.
*/
staticpthread_handler_t
nptl_pthread_exit_hack_handler(void*arg __attribute((unused)))
{
/* Do nothing! */
pthread_exit(0);
return0;
}
#endif/* TARGET_OS_LINUX */
/**
Initialize thread attributes.
*/
voidmy_threadattr_global_init(void)
{
#ifdefPTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
/*
Set mutex type to "fast" a.k.a "adaptive"
In this case the thread may steal the mutex from some other thread
that is waiting for the same mutex. This will save us some
context switches but may cause a thread to 'starve forever' while
waiting for the mutex (not likely if the code within the mutex is
short).
*/
pthread_mutexattr_init(&my_fast_mutexattr); /* ?= MY_MUTEX_INIT_FAST */
pthread_mutexattr_settype(&my_fast_mutexattr,
PTHREAD_MUTEX_ADAPTIVE_NP);
#endif
#ifdefPTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
/*
Set mutex type to "errorcheck"
*/
pthread_mutexattr_init(&my_errorcheck_mutexattr);
pthread_mutexattr_settype(&my_errorcheck_mutexattr,
PTHREAD_MUTEX_ERRORCHECK);
#endif
}
staticuintget_thread_lib(void);
/*
initialize thread environment
SYNOPSIS
my_thread_global_init()
RETURN
0 ok
1 error (Couldn't create THR_KEY_mysys)
*/
my_boolmy_thread_global_init(void)
{
intpth_ret;
thd_lib_detected=get_thread_lib();
if ((pth_ret=pthread_key_create(&THR_KEY_mysys, NULL)) !=0)
{
fprintf(stderr,"Can't initialize threads: error %d\n", pth_ret);
return1;
}
#ifdefTARGET_OS_LINUX
/*
BUG#24507: Race conditions inside current NPTL pthread_exit()
implementation.
To avoid a possible segmentation fault during concurrent
executions of pthread_exit(), a dummy thread is spawned which
initializes internal variables of pthread lib. See bug description
for a full explanation.
TODO: Remove this code when fixed versions of glibc6 are in common
use.
*/
if (thd_lib_detected==THD_LIB_NPTL)
{
pthread_tdummy_thread;
pthread_attr_tdummy_thread_attr;
pthread_attr_init(&dummy_thread_attr);
pthread_attr_setdetachstate(&dummy_thread_attr, PTHREAD_CREATE_DETACHED);
pthread_create(&dummy_thread,&dummy_thread_attr,
nptl_pthread_exit_hack_handler, NULL);
}
#endif/* TARGET_OS_LINUX */
/* Mutex used by my_thread_init() and after my_thread_destroy_mutex() */
my_pthread_mutex_init(&THR_LOCK_threads, MY_MUTEX_INIT_FAST,
"THR_LOCK_threads", MYF_NO_DEADLOCK_DETECTION);
my_pthread_mutex_init(&THR_LOCK_malloc, MY_MUTEX_INIT_FAST,
"THR_LOCK_malloc", MYF_NO_DEADLOCK_DETECTION);
if (my_thread_init())
return1;
/* Mutex uses by mysys */
pthread_mutex_init(&THR_LOCK_open,MY_MUTEX_INIT_FAST);
pthread_mutex_init(&THR_LOCK_lock,MY_MUTEX_INIT_FAST);
pthread_mutex_init(&THR_LOCK_isam,MY_MUTEX_INIT_SLOW);
pthread_mutex_init(&THR_LOCK_myisam,MY_MUTEX_INIT_SLOW);
pthread_mutex_init(&THR_LOCK_myisam_log,MY_MUTEX_INIT_SLOW);
pthread_mutex_init(&THR_LOCK_heap,MY_MUTEX_INIT_FAST);
pthread_mutex_init(&THR_LOCK_net,MY_MUTEX_INIT_FAST);
pthread_mutex_init(&THR_LOCK_charset,MY_MUTEX_INIT_FAST);
pthread_mutex_init(&THR_LOCK_time,MY_MUTEX_INIT_FAST);
pthread_cond_init(&THR_COND_threads, NULL);
#if !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)
pthread_mutex_init(&LOCK_localtime_r,MY_MUTEX_INIT_SLOW);
#endif
#ifndefHAVE_GETHOSTBYNAME_R
pthread_mutex_init(&LOCK_gethostbyname_r,MY_MUTEX_INIT_SLOW);
#endif
return0;
}
/**
Wait for all threads in system to die
@fn my_wait_for_other_threads_to_die()
@param number_of_threads Wait until this number of threads
@retval 0 Less or equal to number_of_threads left
@retval 1 Wait failed
*/
my_boolmy_wait_for_other_threads_to_die(uintnumber_of_threads)
{
structtimespecabstime;
my_boolall_threads_killed=1;
set_timespec(abstime, my_thread_end_wait_time);
pthread_mutex_lock(&THR_LOCK_threads);
while (THR_thread_count>number_of_threads)
{
interror=pthread_cond_timedwait(&THR_COND_threads, &THR_LOCK_threads,
&abstime);
if (error==ETIMEDOUT||error==ETIME)
{
all_threads_killed=0;
break;
}
}
pthread_mutex_unlock(&THR_LOCK_threads);
returnall_threads_killed;
}
/**
End the mysys thread system. Called when ending the last thread
*/
voidmy_thread_global_end(void)
{
my_boolall_threads_killed;
if (!(all_threads_killed=my_wait_for_other_threads_to_die(0)))
{
#ifdefHAVE_PTHREAD_KILL
/*
We shouldn't give an error here, because if we don't have
pthread_kill(), programs like mysqld can't ensure that all threads
are killed when we enter here.
*/
if (THR_thread_count)
fprintf(stderr,
"Error in my_thread_global_end(): %d threads didn't exit\n",
THR_thread_count);
#endif
}
pthread_key_delete(THR_KEY_mysys);
#ifdefPTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
pthread_mutexattr_destroy(&my_fast_mutexattr);
#endif
#ifdefPTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
pthread_mutexattr_destroy(&my_errorcheck_mutexattr);
#endif
if (all_threads_killed)
{
pthread_mutex_destroy(&THR_LOCK_threads);
pthread_cond_destroy(&THR_COND_threads);
pthread_mutex_destroy(&THR_LOCK_malloc);
}
}
/* Free all mutex used by mysys */
voidmy_thread_destroy_mutex(void)
{
structst_my_thread_var*tmp;
tmp=my_pthread_getspecific(structst_my_thread_var*,THR_KEY_mysys);
if (tmp)
{
safe_mutex_free_deadlock_data(&tmp->mutex);
}
pthread_mutex_destroy(&THR_LOCK_open);
pthread_mutex_destroy(&THR_LOCK_lock);
pthread_mutex_destroy(&THR_LOCK_isam);
pthread_mutex_destroy(&THR_LOCK_myisam);
pthread_mutex_destroy(&THR_LOCK_myisam_log);
pthread_mutex_destroy(&THR_LOCK_heap);
pthread_mutex_destroy(&THR_LOCK_net);
pthread_mutex_destroy(&THR_LOCK_time);
pthread_mutex_destroy(&THR_LOCK_charset);
#if !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)
pthread_mutex_destroy(&LOCK_localtime_r);
#endif
#ifndefHAVE_GETHOSTBYNAME_R
pthread_mutex_destroy(&LOCK_gethostbyname_r);
#endif
}
staticmy_thread_idthread_id=0;
/*
Allocate thread specific memory for the thread, used by mysys and dbug
SYNOPSIS
my_thread_init()
NOTES
We can't use mutex_locks here if we are using windows as
we may have compiled the program with SAFE_MUTEX, in which
case the checking of mutex_locks will not work until
the pthread_self thread specific variable is initialized.
This function may called multiple times for a thread, for example
if one uses my_init() followed by mysql_server_init().
RETURN
0 ok
1 Fatal error; mysys/dbug functions can't be used
*/
my_boolmy_thread_init(void)
{
structst_my_thread_var*tmp;
my_boolerror=0;
#ifdefEXTRA_DEBUG_THREADS
fprintf(stderr,"my_thread_init(): thread_id: 0x%lx\n",
(ulong) pthread_self());
#endif
if (my_pthread_getspecific(structst_my_thread_var*,THR_KEY_mysys))
{
#ifdefEXTRA_DEBUG_THREADS
fprintf(stderr,"my_thread_init() called more than once in thread 0x%lx\n",
(long) pthread_self());
#endif
goto end;
}
#ifdef_MSC_VER
install_sigabrt_handler();
#endif
if (!(tmp= (structst_my_thread_var*) calloc(1, sizeof(*tmp))))
{
error=1;
goto end;
}
pthread_setspecific(THR_KEY_mysys,tmp);
tmp->pthread_self=pthread_self();
my_pthread_mutex_init(&tmp->mutex, MY_MUTEX_INIT_FAST, "mysys_var->mutex",
0);
pthread_cond_init(&tmp->suspend, NULL);
tmp->stack_ends_here= (char*)&tmp+
STACK_DIRECTION* (long)my_thread_stack_size;
pthread_mutex_lock(&THR_LOCK_threads);
tmp->id=++thread_id;
++THR_thread_count;
pthread_mutex_unlock(&THR_LOCK_threads);
tmp->init=1;
#ifndefDBUG_OFF
/* Generate unique name for thread */
(void) my_thread_name();
#endif
end:
returnerror;
}
/*
Deallocate memory used by the thread for book-keeping
SYNOPSIS
my_thread_end()
NOTE
This may be called multiple times for a thread.
This happens for example when one calls 'mysql_server_init()'
mysql_server_end() and then ends with a mysql_end().
*/
voidmy_thread_end(void)
{
structst_my_thread_var*tmp;
tmp=my_pthread_getspecific(structst_my_thread_var*,THR_KEY_mysys);
#ifdefEXTRA_DEBUG_THREADS
fprintf(stderr,"my_thread_end(): tmp: 0x%lx pthread_self: 0x%lx thread_id: %ld\n",
(long) tmp, (long) pthread_self(), tmp ? (long) tmp->id : 0L);
#endif
if (tmp&&tmp->init)
{
#if !defined(__bsdi__) && !defined(__OpenBSD__)
/* bsdi and openbsd 3.5 dumps core here */
pthread_cond_destroy(&tmp->suspend);
#endif
pthread_mutex_destroy(&tmp->mutex);
#if !defined(DBUG_OFF)
/* tmp->dbug is allocated inside DBUG library */
if (tmp->dbug)
{
/*
Frees memory allocated in SET DEBUG=...; does nothing if there were no
SET DEBUG in a thread.
*/
DBUG_POP();
free(tmp->dbug);
tmp->dbug=0;
}
#endif
#ifndefDBUG_OFF
/* To find bugs when accessing unallocated data */
bfill(tmp, sizeof(tmp), 0x8F);
#endif
free(tmp);
pthread_setspecific(THR_KEY_mysys,0);
/*
Decrement counter for number of running threads. We are using this
in my_thread_global_end() to wait until all threads have called
my_thread_end and thus freed all memory they have allocated in
my_thread_init() and DBUG_xxxx
*/
pthread_mutex_lock(&THR_LOCK_threads);
DBUG_ASSERT(THR_thread_count!=0);
if (--THR_thread_count==0)
pthread_cond_signal(&THR_COND_threads);
pthread_mutex_unlock(&THR_LOCK_threads);
}
else
{
pthread_setspecific(THR_KEY_mysys,0);
}
}
structst_my_thread_var*_my_thread_var(void)
{
returnmy_pthread_getspecific(structst_my_thread_var*,THR_KEY_mysys);
}
#ifndefDBUG_OFF
/* Return pointer to DBUG for holding current state */
externvoid**my_thread_var_dbug()
{
structst_my_thread_var*tmp=
my_pthread_getspecific(structst_my_thread_var*,THR_KEY_mysys);
returntmp&&tmp->init ? &tmp->dbug : 0;
}
#endif
/* Return pointer to mutex_in_use */
safe_mutex_t**my_thread_var_mutex_in_use()
{
structst_my_thread_var*tmp=
my_pthread_getspecific(structst_my_thread_var*,THR_KEY_mysys);
returntmp ? &tmp->mutex_in_use : 0;
}
/****************************************************************************
Get name of current thread.
****************************************************************************/
my_thread_idmy_thread_dbug_id()
{
returnmy_thread_var->id;
}
#ifdefDBUG_OFF
constchar*my_thread_name(void)
{
return"no_name";
}
#else
constchar*my_thread_name(void)
{
charname_buff[100];
structst_my_thread_var*tmp=my_thread_var;
if (!tmp->name[0])
{
my_thread_idid=my_thread_dbug_id();
snprintf(name_buff, sizeof(name_buff), "T@%lu", (ulong)id);
strmake(tmp->name,name_buff,THREAD_NAME_SIZE);
}
returntmp->name;
}
#endif/* DBUG_OFF */
staticuintget_thread_lib(void)
{
#ifdef_CS_GNU_LIBPTHREAD_VERSION
charbuff[64];
confstr(_CS_GNU_LIBPTHREAD_VERSION, buff, sizeof(buff));
if (!strncasecmp(buff, "NPTL", 4))
returnTHD_LIB_NPTL;
if (!strncasecmp(buff, "linuxthreads", 12))
returnTHD_LIB_LT;
#endif
returnTHD_LIB_OTHER;
}
#ifdef_WIN32
/*
In Visual Studio 2005 and later, default SIGABRT handler will overwrite
any unhandled exception filter set by the application and will try to
call JIT debugger. This is not what we want, this we calling __debugbreak
to stop in debugger, if process is being debugged or to generate
EXCEPTION_BREAKPOINT and then handle_segfault will do its magic.
*/
#if (_MSC_VER >= 1400)
staticvoidmy_sigabrt_handler(intsig)
{
__debugbreak();
}
#endif/*_MSC_VER >=1400 */
staticvoidinstall_sigabrt_handler(void)
{
#if (_MSC_VER >=1400)
/*abort() should not override our exception filter*/
_set_abort_behavior(0,_CALL_REPORTFAULT);
signal(SIGABRT,my_sigabrt_handler);
#endif/* _MSC_VER >=1400 */
}
#endif
#endif/* THREAD */