- Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathTSRM.c
848 lines (716 loc) · 24.1 KB
/
TSRM.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
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
/*
+----------------------------------------------------------------------+
| Thread Safe Resource Manager |
+----------------------------------------------------------------------+
| Copyright (c) 1999-2011, Andi Gutmans, Sascha Schumann, Zeev Suraski |
| This source file is subject to the TSRM license, that is bundled |
| with this package in the file LICENSE |
+----------------------------------------------------------------------+
| Authors: Zeev Suraski <zeev@php.net> |
+----------------------------------------------------------------------+
*/
#include"TSRM.h"
#ifdefZTS
#include<stdio.h>
#include<stdarg.h>
#ifZEND_DEBUG
# include<assert.h>
# defineTSRM_ASSERT(c) assert(c)
#else
# defineTSRM_ASSERT(c)
#endif
typedefstruct_tsrm_tls_entrytsrm_tls_entry;
/* TSRMLS_CACHE_DEFINE; is already done in Zend, this is being always compiled statically. */
TSRMLS_CACHE_EXTERN();
struct_tsrm_tls_entry {
void**storage;
intcount;
THREAD_Tthread_id;
tsrm_tls_entry*next;
};
typedefstruct {
size_tsize;
ts_allocate_ctorctor;
ts_allocate_dtordtor;
size_tfast_offset;
intdone;
} tsrm_resource_type;
/* The memory manager table */
statictsrm_tls_entry**tsrm_tls_table=NULL;
staticinttsrm_tls_table_size;
staticts_rsrc_idid_count;
/* The resource sizes table */
statictsrm_resource_type*resource_types_table=NULL;
staticintresource_types_table_size;
/* Reserved space for fast globals access */
staticsize_ttsrm_reserved_pos=0;
staticsize_ttsrm_reserved_size=0;
staticMUTEX_Ttsmm_mutex; /* thread-safe memory manager mutex */
staticMUTEX_Ttsrm_env_mutex; /* tsrm environ mutex */
/* New thread handlers */
statictsrm_thread_begin_func_ttsrm_new_thread_begin_handler=NULL;
statictsrm_thread_end_func_ttsrm_new_thread_end_handler=NULL;
statictsrm_shutdown_func_ttsrm_shutdown_handler=NULL;
/* Debug support */
inttsrm_error(intlevel, constchar*format, ...);
/* Read a resource from a thread's resource storage */
staticinttsrm_error_level;
staticFILE*tsrm_error_file;
#ifdefTSRM_DEBUG
#defineTSRM_ERROR(args) tsrm_error args
#defineTSRM_SAFE_RETURN_RSRC(array, offset, range) \
{ \
int unshuffled_offset = TSRM_UNSHUFFLE_RSRC_ID(offset); \
\
if (offset==0) { \
return &array; \
} else if ((unshuffled_offset)>=0 && (unshuffled_offset)<(range)) { \
TSRM_ERROR((TSRM_ERROR_LEVEL_INFO, "Successfully fetched resource id %d for thread id %ld - 0x%0.8X", \
unshuffled_offset, (long) thread_resources->thread_id, array[unshuffled_offset])); \
return array[unshuffled_offset]; \
} else { \
TSRM_ERROR((TSRM_ERROR_LEVEL_ERROR, "Resource id %d is out of range (%d..%d)", \
unshuffled_offset, TSRM_SHUFFLE_RSRC_ID(0), TSRM_SHUFFLE_RSRC_ID(thread_resources->count-1))); \
return NULL; \
} \
}
#else
#defineTSRM_ERROR(args)
#defineTSRM_SAFE_RETURN_RSRC(array, offset, range) \
if (offset==0) { \
return &array; \
} else { \
return array[TSRM_UNSHUFFLE_RSRC_ID(offset)]; \
}
#endif
#ifdefTSRM_WIN32
staticDWORDtls_key;
# definetsrm_tls_set(what) TlsSetValue(tls_key, (void*)(what))
# definetsrm_tls_get() TlsGetValue(tls_key)
#else
staticpthread_key_ttls_key;
# definetsrm_tls_set(what) pthread_setspecific(tls_key, (void*)(what))
# definetsrm_tls_get() pthread_getspecific(tls_key)
#endif
TSRM_TLSboolin_main_thread= false;
TSRM_TLSboolis_thread_shutdown= false;
/* Startup TSRM (call once for the entire process) */
TSRM_APIbooltsrm_startup(intexpected_threads, intexpected_resources, intdebug_level, constchar*debug_filename)
{/*{{{*/
#ifdefTSRM_WIN32
tls_key=TlsAlloc();
#else
pthread_key_create(&tls_key, 0);
#endif
/* ensure singleton */
in_main_thread= true;
is_thread_shutdown= false;
tsrm_error_file=stderr;
tsrm_error_set(debug_level, debug_filename);
tsrm_tls_table_size=expected_threads;
tsrm_tls_table= (tsrm_tls_entry**) calloc(tsrm_tls_table_size, sizeof(tsrm_tls_entry*));
if (!tsrm_tls_table) {
TSRM_ERROR((TSRM_ERROR_LEVEL_ERROR, "Unable to allocate TLS table"));
is_thread_shutdown= true;
return0;
}
id_count=0;
resource_types_table_size=expected_resources;
resource_types_table= (tsrm_resource_type*) calloc(resource_types_table_size, sizeof(tsrm_resource_type));
if (!resource_types_table) {
TSRM_ERROR((TSRM_ERROR_LEVEL_ERROR, "Unable to allocate resource types table"));
is_thread_shutdown= true;
free(tsrm_tls_table);
return0;
}
tsmm_mutex=tsrm_mutex_alloc();
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Started up TSRM, %d expected threads, %d expected resources", expected_threads, expected_resources));
tsrm_reserved_pos=0;
tsrm_reserved_size=0;
tsrm_env_mutex=tsrm_mutex_alloc();
return1;
}/*}}}*/
staticvoidts_free_resources(tsrm_tls_entry*thread_resources)
{
/* Need to destroy in reverse order to respect dependencies. */
for (inti=thread_resources->count-1; i >= 0; i--) {
if (!resource_types_table[i].done) {
if (resource_types_table[i].dtor) {
resource_types_table[i].dtor(thread_resources->storage[i]);
}
if (!resource_types_table[i].fast_offset) {
free(thread_resources->storage[i]);
}
}
}
free(thread_resources->storage);
}
/* Shutdown TSRM (call once for the entire process) */
TSRM_APIvoidtsrm_shutdown(void)
{/*{{{*/
if (is_thread_shutdown) {
/* shutdown must only occur once */
return;
}
is_thread_shutdown= true;
if (!in_main_thread) {
/* only the main thread may shutdown tsrm */
return;
}
for (inti=0; i<tsrm_tls_table_size; i++) {
tsrm_tls_entry*p=tsrm_tls_table[i], *next_p;
while (p) {
next_p=p->next;
if (resource_types_table) {
/* This call will already free p->storage for us */
ts_free_resources(p);
} else {
free(p->storage);
}
free(p);
p=next_p;
}
}
free(tsrm_tls_table);
free(resource_types_table);
tsrm_mutex_free(tsmm_mutex);
tsrm_mutex_free(tsrm_env_mutex);
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Shutdown TSRM"));
if (tsrm_error_file!=stderr) {
fclose(tsrm_error_file);
}
#ifdefTSRM_WIN32
TlsFree(tls_key);
#else
pthread_setspecific(tls_key, 0);
pthread_key_delete(tls_key);
#endif
if (tsrm_shutdown_handler) {
tsrm_shutdown_handler();
}
tsrm_new_thread_begin_handler=NULL;
tsrm_new_thread_end_handler=NULL;
tsrm_shutdown_handler=NULL;
tsrm_reserved_pos=0;
tsrm_reserved_size=0;
}/*}}}*/
/* {{{ */
/* environ lock api */
TSRM_APIvoidtsrm_env_lock(void) {
tsrm_mutex_lock(tsrm_env_mutex);
}
TSRM_APIvoidtsrm_env_unlock(void) {
tsrm_mutex_unlock(tsrm_env_mutex);
} /* }}} */
/* enlarge the arrays for the already active threads */
staticvoidtsrm_update_active_threads(void)
{/*{{{*/
for (inti=0; i<tsrm_tls_table_size; i++) {
tsrm_tls_entry*p=tsrm_tls_table[i];
while (p) {
if (p->count<id_count) {
intj;
p->storage= (void*) realloc(p->storage, sizeof(void*)*id_count);
for (j=p->count; j<id_count; j++) {
if (resource_types_table[j].fast_offset) {
p->storage[j] = (void*) (((char*)p) +resource_types_table[j].fast_offset);
} else {
p->storage[j] = (void*) malloc(resource_types_table[j].size);
}
if (resource_types_table[j].ctor) {
resource_types_table[j].ctor(p->storage[j]);
}
}
p->count=id_count;
}
p=p->next;
}
}
}/*}}}*/
/* allocates a new thread-safe-resource id */
TSRM_APIts_rsrc_idts_allocate_id(ts_rsrc_id*rsrc_id, size_tsize, ts_allocate_ctorctor, ts_allocate_dtordtor)
{/*{{{*/
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Obtaining a new resource id, %d bytes", size));
tsrm_mutex_lock(tsmm_mutex);
/* obtain a resource id */
*rsrc_id=TSRM_SHUFFLE_RSRC_ID(id_count++);
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Obtained resource id %d", *rsrc_id));
/* store the new resource type in the resource sizes table */
if (resource_types_table_size<id_count) {
tsrm_resource_type*_tmp;
_tmp= (tsrm_resource_type*) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count);
if (!_tmp) {
TSRM_ERROR((TSRM_ERROR_LEVEL_ERROR, "Unable to allocate storage for resource"));
*rsrc_id=0;
tsrm_mutex_unlock(tsmm_mutex);
return0;
}
resource_types_table=_tmp;
resource_types_table_size=id_count;
}
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].size=size;
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].ctor=ctor;
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].dtor=dtor;
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].fast_offset=0;
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].done=0;
tsrm_update_active_threads();
tsrm_mutex_unlock(tsmm_mutex);
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Successfully allocated new resource id %d", *rsrc_id));
return*rsrc_id;
}/*}}}*/
/* Reserve space for fast thread-safe-resources */
TSRM_APIvoidtsrm_reserve(size_tsize)
{/*{{{*/
tsrm_reserved_pos=0;
tsrm_reserved_size=TSRM_ALIGNED_SIZE(size);
}/*}}}*/
/* allocates a new fast thread-safe-resource id */
TSRM_APIts_rsrc_idts_allocate_fast_id(ts_rsrc_id*rsrc_id, size_t*offset, size_tsize, ts_allocate_ctorctor, ts_allocate_dtordtor)
{/*{{{*/
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Obtaining a new fast resource id, %d bytes", size));
tsrm_mutex_lock(tsmm_mutex);
/* obtain a resource id */
*rsrc_id=TSRM_SHUFFLE_RSRC_ID(id_count++);
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Obtained resource id %d", *rsrc_id));
size=TSRM_ALIGNED_SIZE(size);
if (tsrm_reserved_size-tsrm_reserved_pos<size) {
TSRM_ERROR((TSRM_ERROR_LEVEL_ERROR, "Unable to allocate space for fast resource"));
*rsrc_id=0;
*offset=0;
tsrm_mutex_unlock(tsmm_mutex);
return0;
}
*offset=TSRM_ALIGNED_SIZE(sizeof(tsrm_tls_entry)) +tsrm_reserved_pos;
tsrm_reserved_pos+=size;
/* store the new resource type in the resource sizes table */
if (resource_types_table_size<id_count) {
tsrm_resource_type*_tmp;
_tmp= (tsrm_resource_type*) realloc(resource_types_table, sizeof(tsrm_resource_type)*id_count);
if (!_tmp) {
TSRM_ERROR((TSRM_ERROR_LEVEL_ERROR, "Unable to allocate storage for resource"));
*rsrc_id=0;
tsrm_mutex_unlock(tsmm_mutex);
return0;
}
resource_types_table=_tmp;
resource_types_table_size=id_count;
}
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].size=size;
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].ctor=ctor;
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].dtor=dtor;
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].fast_offset=*offset;
resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].done=0;
tsrm_update_active_threads();
tsrm_mutex_unlock(tsmm_mutex);
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Successfully allocated new resource id %d", *rsrc_id));
return*rsrc_id;
}/*}}}*/
staticvoidset_thread_local_storage_resource_to(tsrm_tls_entry*thread_resource)
{
tsrm_tls_set(thread_resource);
TSRMLS_CACHE=thread_resource;
}
/* Must be called with tsmm_mutex held */
staticvoidallocate_new_resource(tsrm_tls_entry**thread_resources_ptr, THREAD_Tthread_id)
{/*{{{*/
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Creating data structures for thread %x", thread_id));
(*thread_resources_ptr) = (tsrm_tls_entry*) malloc(TSRM_ALIGNED_SIZE(sizeof(tsrm_tls_entry)) +tsrm_reserved_size);
(*thread_resources_ptr)->storage=NULL;
if (id_count>0) {
(*thread_resources_ptr)->storage= (void**) malloc(sizeof(void*)*id_count);
}
(*thread_resources_ptr)->count=id_count;
(*thread_resources_ptr)->thread_id=thread_id;
(*thread_resources_ptr)->next=NULL;
/* Set thread local storage to this new thread resources structure */
set_thread_local_storage_resource_to(*thread_resources_ptr);
if (tsrm_new_thread_begin_handler) {
tsrm_new_thread_begin_handler(thread_id);
}
for (inti=0; i<id_count; i++) {
if (resource_types_table[i].done) {
(*thread_resources_ptr)->storage[i] =NULL;
} else {
if (resource_types_table[i].fast_offset) {
(*thread_resources_ptr)->storage[i] = (void*) (((char*)(*thread_resources_ptr)) +resource_types_table[i].fast_offset);
} else {
(*thread_resources_ptr)->storage[i] = (void*) malloc(resource_types_table[i].size);
}
if (resource_types_table[i].ctor) {
resource_types_table[i].ctor((*thread_resources_ptr)->storage[i]);
}
}
}
if (tsrm_new_thread_end_handler) {
tsrm_new_thread_end_handler(thread_id);
}
}/*}}}*/
/* fetches the requested resource for the current thread */
TSRM_APIvoid*ts_resource_ex(ts_rsrc_idid, THREAD_T*th_id)
{/*{{{*/
THREAD_Tthread_id;
inthash_value;
tsrm_tls_entry*thread_resources, **last_thread_resources;
if (!th_id) {
/* Fast path for looking up the resources for the current
* thread. Its used by just about every call to
* ts_resource_ex(). This avoids the need for a mutex lock
* and our hashtable lookup.
*/
thread_resources=tsrm_tls_get();
if (thread_resources) {
TSRM_ERROR((TSRM_ERROR_LEVEL_INFO, "Fetching resource id %d for current thread %d", id, (long) thread_resources->thread_id));
/* Read a specific resource from the thread's resources.
* This is called outside of a mutex, so have to be aware about external
* changes to the structure as we read it.
*/
TSRM_SAFE_RETURN_RSRC(thread_resources->storage, id, thread_resources->count);
}
thread_id=tsrm_thread_id();
} else {
thread_id=*th_id;
}
TSRM_ERROR((TSRM_ERROR_LEVEL_INFO, "Fetching resource id %d for thread %ld", id, (long) thread_id));
tsrm_mutex_lock(tsmm_mutex);
hash_value=THREAD_HASH_OF(thread_id, tsrm_tls_table_size);
thread_resources=tsrm_tls_table[hash_value];
if (!thread_resources) {
allocate_new_resource(&tsrm_tls_table[hash_value], thread_id);
tsrm_mutex_unlock(tsmm_mutex);
returnts_resource_ex(id, &thread_id);
} else {
last_thread_resources=&tsrm_tls_table[hash_value];
while (thread_resources->thread_id!=thread_id) {
last_thread_resources=&thread_resources->next;
if (thread_resources->next) {
thread_resources=thread_resources->next;
} else {
allocate_new_resource(&thread_resources->next, thread_id);
tsrm_mutex_unlock(tsmm_mutex);
returnts_resource_ex(id, &thread_id);
}
}
}
/* It's possible that the current thread resources are requested, and that we get here.
* This means that the TSRM key pointer and cached pointer are NULL, but there is still
* a thread resource associated with this ID in the hashtable. This can occur if a thread
* goes away, but its resources are never cleaned up, and then that thread ID is reused.
* Since we don't always have a way to know when a thread goes away, we can't clean up
* the thread's resources before the new thread spawns.
* To solve this issue, we'll free up the old thread resources gracefully (gracefully
* because there might still be resources open like database connection which need to
* be shut down cleanly). After freeing up, we'll create the new resources for this thread
* as if the stale resources never existed in the first place. From that point forward,
* it is as if that situation never occurred.
* The fact that this situation happens isn't that bad because a child process containing
* threads will eventually be respawned anyway by the SAPI, so the stale threads won't last
* forever. */
TSRM_ASSERT(thread_resources->thread_id==thread_id);
if (thread_id==tsrm_thread_id() && !tsrm_tls_get()) {
tsrm_tls_entry*next=thread_resources->next;
/* In case that extensions don't use the pointer passed from the dtor, but incorrectly
* use the global pointer, we need to setup the global pointer temporarily here. */
set_thread_local_storage_resource_to(thread_resources);
/* Free up the old resource from the old thread instance */
ts_free_resources(thread_resources);
free(thread_resources);
/* Allocate a new resource at the same point in the linked list, and relink the next pointer */
allocate_new_resource(last_thread_resources, thread_id);
thread_resources=*last_thread_resources;
thread_resources->next=next;
/* We don't have to tail-call ts_resource_ex, we can take the fast path to the return
* because we already have the correct pointer. */
}
tsrm_mutex_unlock(tsmm_mutex);
/* Read a specific resource from the thread's resources.
* This is called outside of a mutex, so have to be aware about external
* changes to the structure as we read it.
*/
TSRM_SAFE_RETURN_RSRC(thread_resources->storage, id, thread_resources->count);
}/*}}}*/
/* frees all resources allocated for the current thread */
voidts_free_thread(void)
{/*{{{*/
tsrm_tls_entry*thread_resources;
THREAD_Tthread_id=tsrm_thread_id();
inthash_value;
tsrm_tls_entry*last=NULL;
TSRM_ASSERT(!in_main_thread);
tsrm_mutex_lock(tsmm_mutex);
hash_value=THREAD_HASH_OF(thread_id, tsrm_tls_table_size);
thread_resources=tsrm_tls_table[hash_value];
while (thread_resources) {
if (thread_resources->thread_id==thread_id) {
ts_free_resources(thread_resources);
if (last) {
last->next=thread_resources->next;
} else {
tsrm_tls_table[hash_value] =thread_resources->next;
}
tsrm_tls_set(0);
free(thread_resources);
break;
}
if (thread_resources->next) {
last=thread_resources;
}
thread_resources=thread_resources->next;
}
tsrm_mutex_unlock(tsmm_mutex);
}/*}}}*/
/* deallocates all occurrences of a given id */
voidts_free_id(ts_rsrc_idid)
{/*{{{*/
intrsrc_id=TSRM_UNSHUFFLE_RSRC_ID(id);
tsrm_mutex_lock(tsmm_mutex);
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Freeing resource id %d", id));
if (tsrm_tls_table) {
for (inti=0; i<tsrm_tls_table_size; i++) {
tsrm_tls_entry*p=tsrm_tls_table[i];
while (p) {
if (p->count>rsrc_id&&p->storage[rsrc_id]) {
if (resource_types_table) {
if (resource_types_table[rsrc_id].dtor) {
resource_types_table[rsrc_id].dtor(p->storage[rsrc_id]);
}
if (!resource_types_table[rsrc_id].fast_offset) {
free(p->storage[rsrc_id]);
}
}
p->storage[rsrc_id] =NULL;
}
p=p->next;
}
}
}
resource_types_table[rsrc_id].done=1;
tsrm_mutex_unlock(tsmm_mutex);
TSRM_ERROR((TSRM_ERROR_LEVEL_CORE, "Successfully freed resource id %d", id));
}/*}}}*/
TSRM_APIvoidts_apply_for_id(ts_rsrc_idid, void (*cb)(void*))
{
intrsrc_id=TSRM_UNSHUFFLE_RSRC_ID(id);
tsrm_mutex_lock(tsmm_mutex);
if (tsrm_tls_table&&resource_types_table) {
for (inti=0; i<tsrm_tls_table_size; i++) {
tsrm_tls_entry*p=tsrm_tls_table[i];
while (p) {
if (p->count>rsrc_id&&p->storage[rsrc_id]) {
cb(p->storage[rsrc_id]);
}
p=p->next;
}
}
}
tsrm_mutex_unlock(tsmm_mutex);
}
/*
* Utility Functions
*/
/* Obtain the current thread id */
TSRM_APITHREAD_Ttsrm_thread_id(void)
{/*{{{*/
#ifdefTSRM_WIN32
returnGetCurrentThreadId();
#else
returnpthread_self();
#endif
}/*}}}*/
/* Allocate a mutex */
TSRM_APIMUTEX_Ttsrm_mutex_alloc(void)
{/*{{{*/
MUTEX_Tmutexp;
#ifdefTSRM_WIN32
mutexp=malloc(sizeof(CRITICAL_SECTION));
InitializeCriticalSection(mutexp);
#else
mutexp= (pthread_mutex_t*)malloc(sizeof(pthread_mutex_t));
pthread_mutex_init(mutexp,NULL);
#endif
#ifdefTHR_DEBUG
printf("Mutex created thread: %d\n",mythreadid());
#endif
return( mutexp );
}/*}}}*/
/* Free a mutex */
TSRM_APIvoidtsrm_mutex_free(MUTEX_Tmutexp)
{/*{{{*/
if (mutexp) {
#ifdefTSRM_WIN32
DeleteCriticalSection(mutexp);
free(mutexp);
#else
pthread_mutex_destroy(mutexp);
free(mutexp);
#endif
}
#ifdefTHR_DEBUG
printf("Mutex freed thread: %d\n",mythreadid());
#endif
}/*}}}*/
/*
Lock a mutex.
A return value of 0 indicates success
*/
TSRM_APIinttsrm_mutex_lock(MUTEX_Tmutexp)
{/*{{{*/
TSRM_ERROR((TSRM_ERROR_LEVEL_INFO, "Mutex locked thread: %ld", tsrm_thread_id()));
#ifdefTSRM_WIN32
EnterCriticalSection(mutexp);
return0;
#else
returnpthread_mutex_lock(mutexp);
#endif
}/*}}}*/
/*
Unlock a mutex.
A return value of 0 indicates success
*/
TSRM_APIinttsrm_mutex_unlock(MUTEX_Tmutexp)
{/*{{{*/
TSRM_ERROR((TSRM_ERROR_LEVEL_INFO, "Mutex unlocked thread: %ld", tsrm_thread_id()));
#ifdefTSRM_WIN32
LeaveCriticalSection(mutexp);
return0;
#else
returnpthread_mutex_unlock(mutexp);
#endif
}/*}}}*/
/*
Changes the signal mask of the calling thread
*/
#ifdefHAVE_SIGPROCMASK
TSRM_APIinttsrm_sigmask(inthow, constsigset_t*set, sigset_t*oldset)
{/*{{{*/
TSRM_ERROR((TSRM_ERROR_LEVEL_INFO, "Changed sigmask in thread: %ld", tsrm_thread_id()));
returnpthread_sigmask(how, set, oldset);
}/*}}}*/
#endif
TSRM_APIvoid*tsrm_set_new_thread_begin_handler(tsrm_thread_begin_func_tnew_thread_begin_handler)
{/*{{{*/
void*retval= (void*) tsrm_new_thread_begin_handler;
tsrm_new_thread_begin_handler=new_thread_begin_handler;
returnretval;
}/*}}}*/
TSRM_APIvoid*tsrm_set_new_thread_end_handler(tsrm_thread_end_func_tnew_thread_end_handler)
{/*{{{*/
void*retval= (void*) tsrm_new_thread_end_handler;
tsrm_new_thread_end_handler=new_thread_end_handler;
returnretval;
}/*}}}*/
TSRM_APIvoid*tsrm_set_shutdown_handler(tsrm_shutdown_func_tshutdown_handler)
{/*{{{*/
void*retval= (void*) tsrm_shutdown_handler;
tsrm_shutdown_handler=shutdown_handler;
returnretval;
}/*}}}*/
/*
* Debug support
*/
#ifdefTSRM_DEBUG
inttsrm_error(intlevel, constchar*format, ...)
{/*{{{*/
if (level<=tsrm_error_level) {
va_listargs;
intsize;
fprintf(tsrm_error_file, "TSRM: ");
va_start(args, format);
size=vfprintf(tsrm_error_file, format, args);
va_end(args);
fprintf(tsrm_error_file, "\n");
fflush(tsrm_error_file);
returnsize;
} else {
return0;
}
}/*}}}*/
#endif
voidtsrm_error_set(intlevel, constchar*debug_filename)
{/*{{{*/
tsrm_error_level=level;
#ifdefTSRM_DEBUG
if (tsrm_error_file!=stderr) { /* close files opened earlier */
fclose(tsrm_error_file);
}
if (debug_filename) {
tsrm_error_file=fopen(debug_filename, "w");
if (!tsrm_error_file) {
tsrm_error_file=stderr;
}
} else {
tsrm_error_file=stderr;
}
#endif
}/*}}}*/
TSRM_APIvoid*tsrm_get_ls_cache(void)
{/*{{{*/
returntsrm_tls_get();
}/*}}}*/
/* Returns offset of tsrm_ls_cache slot from Thread Control Block address */
TSRM_APIsize_ttsrm_get_ls_cache_tcb_offset(void)
{/*{{{*/
#if defined(__APPLE__) && defined(__x86_64__)
// TODO: Implement support for fast JIT ZTS code ???
return0;
#elif defined(__x86_64__) && defined(__GNUC__) && !defined(__FreeBSD__) && \
!defined(__NetBSD__) && !defined(__OpenBSD__) && !defined(__MUSL__) && \
!defined(__HAIKU__)
size_tret;
asm ("movq _tsrm_ls_cache@gottpoff(%%rip),%0"
: "=r" (ret));
returnret;
#elif defined(__i386__) && defined(__GNUC__) && !defined(__FreeBSD__) && \
!defined(__NetBSD__) && !defined(__OpenBSD__) && !defined(__MUSL__) && \
!defined(__HAIKU__)
size_tret;
asm ("leal _tsrm_ls_cache@ntpoff,%0"
: "=r" (ret));
returnret;
#elif defined(__aarch64__)
size_tret;
# ifdef__APPLE__
// Points to struct TLVDecriptor for _tsrm_ls_cache in macOS.
asm("adrp %0, #__tsrm_ls_cache@TLVPPAGE\n\t"
"ldr %0, [%0, #__tsrm_ls_cache@TLVPPAGEOFF]"
: "=r" (ret));
# elif defined(TSRM_TLS_MODEL_DEFAULT)
/* Surplus Static TLS space isn't guaranteed. */
ret=0;
# elif defined(TSRM_TLS_MODEL_INITIAL_EXEC)
asm("adrp %0, :gottprel:_tsrm_ls_cache\n\t"
"ldr %0, [%0, #:gottprel_lo12:_tsrm_ls_cache]"
: "=r" (ret));
# elif defined(TSRM_TLS_MODEL_LOCAL_EXEC)
asm("mov %0, xzr\n\t"
"add %0, %0, #:tprel_hi12:_tsrm_ls_cache, lsl #12\n\t"
"add %0, %0, #:tprel_lo12_nc:_tsrm_ls_cache"
: "=r" (ret));
# else
# error "TSRM TLS model not set"
# endif
returnret;
#else
return0;
#endif
}/*}}}*/
TSRM_APIbooltsrm_is_main_thread(void)
{/*{{{*/
returnin_main_thread;
}/*}}}*/
TSRM_APIbooltsrm_is_shutdown(void)
{/*{{{*/
returnis_thread_shutdown;
}/*}}}*/
TSRM_APIconstchar*tsrm_api_name(void)
{/*{{{*/
#ifdefTSRM_WIN32
return"Windows Threads";
#else
return"POSIX Threads";
#endif
}/*}}}*/
TSRM_APIbooltsrm_is_managed_thread(void)
{/*{{{*/
returntsrm_tls_get() ? true : false;
}/*}}}*/
#endif/* ZTS */