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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
|
/* thr_debug.c - wrapper around the chosen thread wrapper, for debugging. */
/* $OpenLDAP$ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 2005-2024 The OpenLDAP Foundation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
/*
* This package provides several types of thread operation debugging:
*
* - Check the results of operations on threads, mutexes, condition
* variables and read/write locks. Also check some thread pool
* operations, but not those for which failure can happen in normal
* slapd operation.
*
* - Wrap those types except threads and pools in structs with state
* information, and check that on all operations:
*
* + Check that the resources are initialized and are only used at
* their original address (i.e. not realloced or copied).
*
* + Check the owner (thread ID) on mutex operations.
*
* + Optionally allocate a reference to a byte of dummy memory.
* This lets malloc debuggers see some incorrect use as memory
* leaks, access to freed memory, etc.
*
* - Print an error message and by default abort() upon errors.
*
* - Print a count of leaked thread resources after cleanup.
*
* Compile-time (./configure) setup: Macros defined in CPPFLAGS.
*
* LDAP_THREAD_DEBUG or LDAP_THREAD_DEBUG=2
* Enables debugging, but value & 2 turns off type wrapping.
*
* LDAP_UINTPTR_T=integer type to hold pointers, preferably unsigned.
* Used by dummy memory option "scramble". Default = unsigned long.
*
* LDAP_DEBUG_THREAD_NONE = initializer for a "no thread" thread ID.
*
* In addition, you may need to set up an implementation-specific way
* to enable whatever error checking your thread library provides.
* Currently only implemented for Posix threads (pthreads), where
* you may need to define LDAP_INT_THREAD_MUTEXATTR. The default
* is PTHREAD_MUTEX_ERRORCHECK, or PTHREAD_MUTEX_ERRORCHECK_NP for
* Linux threads. See pthread_mutexattr_settype(3).
*
* Run-time configuration:
*
* Memory debugging tools:
* Tools that report uninitialized memory accesses should disable
* such warnings about the function debug_already_initialized().
* Alternatively, include "noreinit" (below) in $LDAP_THREAD_DEBUG.
*
* Environment variable $LDAP_THREAD_DEBUG:
* The variable may contain a comma- or space-separated option list.
* Options:
* off - Disable this package. (It still slows things down).
* tracethreads - Report create/join/exit/kill of threads.
* noabort - Do not abort() on errors.
* noerror - Do not report errors. Implies noabort.
* nocount - Do not report counts of unreleased resources.
* nosync - Disable tests that use synchronization and thus
* clearly affect thread scheduling:
* Implies nocount, and cancels threadID if that is set.
* Note that if you turn on tracethreads or malloc
* debugging, these also use library calls which may
* affect thread scheduling (fprintf and malloc).
* The following options do not apply if type wrapping is disabled:
* nomem - Do not check memory operations.
* Implies noreinit,noalloc.
* noreinit - Do not catch reinitialization of existing resources.
* (That test accesses uninitialized memory).
* threadID - Trace thread IDs. Currently mostly useless.
* Malloc debugging -- allocate dummy memory for initialized
* resources, so malloc debuggers will report them as memory leaks:
* noalloc - Default. Do not allocate dummy memory.
* alloc - Store a pointer to dummy memory. However, leak
* detectors might not catch unreleased resources in
* global variables.
* scramble - Store bitwise complement of dummy memory pointer.
* That never escapes memory leak detectors -
* but detection while the program is running will
* report active resources as leaks. Do not
* use this if a garbage collector is in use:-)
* adjptr - Point to end of dummy memory.
* Purify reports these as "potential leaks" (PLK).
* I have not checked other malloc debuggers.
*/
#include "portable.h"
#if defined( LDAP_THREAD_DEBUG )
#include <stdio.h>
#include <ac/errno.h>
#include <ac/stdlib.h>
#include <ac/string.h>
#include "ldap_pvt_thread.h" /* Get the thread interface */
#define LDAP_THREAD_IMPLEMENTATION
#define LDAP_THREAD_DEBUG_IMPLEMENTATION
#define LDAP_THREAD_RDWR_IMPLEMENTATION
#define LDAP_THREAD_POOL_IMPLEMENTATION
#include "ldap_thr_debug.h" /* Get the underlying implementation */
#ifndef LDAP_THREAD_DEBUG_WRAP
#undef LDAP_THREAD_DEBUG_THREAD_ID
#elif !defined LDAP_THREAD_DEBUG_THREAD_ID
#define LDAP_THREAD_DEBUG_THREAD_ID 1
#endif
/* Use native malloc - the OpenLDAP wrappers may defeat malloc debuggers */
#undef malloc
#undef calloc
#undef realloc
#undef free
/* Options from environment variable $LDAP_THREAD_DEBUG */
enum { Count_no = 0, Count_yes, Count_reported, Count_reported_more };
static int count = Count_yes;
#ifdef LDAP_THREAD_DEBUG_WRAP
enum { Wrap_noalloc, Wrap_alloc, Wrap_scramble, Wrap_adjptr };
static int wraptype = Wrap_noalloc, wrap_offset, unwrap_offset;
static int nomem, noreinit;
#endif
#if LDAP_THREAD_DEBUG_THREAD_ID +0
static int threadID;
#else
enum { threadID = 0 };
#endif
static int nodebug, noabort, noerror, nosync, tracethreads;
static int wrap_threads;
static int options_done;
/* ldap_pvt_thread_initialize() called, ldap_pvt_thread_destroy() not called */
static int threading_enabled;
/* Resource counts */
enum {
Idx_unexited_thread, Idx_unjoined_thread, Idx_locked_mutex,
Idx_mutex, Idx_cond, Idx_rdwr, Idx_tpool, Idx_max
};
static int resource_counts[Idx_max];
static const char *const resource_names[] = {
"unexited threads", "unjoined threads", "locked mutexes",
"mutexes", "conds", "rdwrs", "thread pools"
};
static ldap_int_thread_mutex_t resource_mutexes[Idx_max];
/* Hide pointers from malloc debuggers. */
#define SCRAMBLE(ptr) (~(LDAP_UINTPTR_T) (ptr))
#define UNSCRAMBLE_usagep(num) ((ldap_debug_usage_info_t *) ~(num))
#define UNSCRAMBLE_dummyp(num) ((unsigned char *) ~(num))
#define WARN(var, msg) (warn (__FILE__, __LINE__, (msg), #var, (var)))
#define WARN_IF(rc, msg) {if (rc) warn (__FILE__, __LINE__, (msg), #rc, (rc));}
#define ERROR(var, msg) { \
if (!noerror) { \
errmsg(__FILE__, __LINE__, (msg), #var, (var)); \
if( !noabort ) abort(); \
} \
}
#define ERROR_IF(rc, msg) { \
if (!noerror) { \
int rc_ = (rc); \
if (rc_) { \
errmsg(__FILE__, __LINE__, (msg), #rc, rc_); \
if( !noabort ) abort(); \
} \
} \
}
#ifdef LDAP_THREAD_DEBUG_WRAP
#define MEMERROR_IF(rc, msg, mem_act) { \
if (!noerror) { \
int rc_ = (rc); \
if (rc_) { \
errmsg(__FILE__, __LINE__, (msg), #rc, rc_); \
if( wraptype != Wrap_noalloc ) { mem_act; } \
if( !noabort ) abort(); \
} \
} \
}
#endif /* LDAP_THREAD_DEBUG_WRAP */
#if 0
static void
warn( const char *file, int line, const char *msg, const char *var, int val )
{
fprintf( stderr,
(strpbrk( var, "!=" )
? "%s:%d: %s warning: %s\n"
: "%s:%d: %s warning: %s is %d\n"),
file, line, msg, var, val );
}
#endif
static void
errmsg( const char *file, int line, const char *msg, const char *var, int val )
{
fprintf( stderr,
(strpbrk( var, "!=" )
? "%s:%d: %s error: %s\n"
: "%s:%d: %s error: %s is %d\n"),
file, line, msg, var, val );
}
static void
count_resource_leaks( void )
{
int i, j;
char errbuf[200];
if( count == Count_yes ) {
count = Count_reported;
#if 0 /* Could break if there are still threads after atexit */
for( i = j = 0; i < Idx_max; i++ )
j |= ldap_int_thread_mutex_destroy( &resource_mutexes[i] );
WARN_IF( j, "ldap_debug_thread_destroy:mutexes" );
#endif
for( i = j = 0; i < Idx_max; i++ )
if( resource_counts[i] )
j += sprintf( errbuf + j, ", %d %s",
resource_counts[i], resource_names[i] );
if( j )
fprintf( stderr, "== thr_debug: Leaked%s. ==\n", errbuf + 1 );
}
}
static void
get_options( void )
{
static const struct option_info_s {
const char *name;
int *var, val;
} option_info[] = {
{ "off", &nodebug, 1 },
{ "noabort", &noabort, 1 },
{ "noerror", &noerror, 1 },
{ "nocount", &count, Count_no },
{ "nosync", &nosync, 1 },
#if LDAP_THREAD_DEBUG_THREAD_ID +0
{ "threadID", &threadID, 1 },
#endif
#ifdef LDAP_THREAD_DEBUG_WRAP
{ "nomem", &nomem, 1 },
{ "noreinit", &noreinit, 1 },
{ "noalloc", &wraptype, Wrap_noalloc },
{ "alloc", &wraptype, Wrap_alloc },
{ "adjptr", &wraptype, Wrap_adjptr },
{ "scramble", &wraptype, Wrap_scramble },
#endif
{ "tracethreads", &tracethreads, 1 },
{ NULL, NULL, 0 }
};
const char *s = getenv( "LDAP_THREAD_DEBUG" );
if( s != NULL ) {
while( *(s += strspn( s, ", \t\r\n" )) != '\0' ) {
size_t optlen = strcspn( s, ", \t\r\n" );
const struct option_info_s *oi = option_info;
while( oi->name &&
(strncasecmp( oi->name, s, optlen ) || oi->name[optlen]) )
oi++;
if( oi->name )
*oi->var = oi->val;
else
fprintf( stderr,
"== thr_debug: Unknown $%s option '%.*s' ==\n",
"LDAP_THREAD_DEBUG", (int) optlen, s );
s += optlen;
}
}
if( nodebug ) {
tracethreads = 0;
nosync = noerror = 1;
}
if( nosync )
count = Count_no;
if( noerror )
noabort = 1;
#if LDAP_THREAD_DEBUG_THREAD_ID +0
if( nosync )
threadID = 0;
#endif
#ifdef LDAP_THREAD_DEBUG_WRAP
if( noerror )
nomem = 1;
if( !nomem ) {
static const ldap_debug_usage_info_t usage;
if( sizeof(LDAP_UINTPTR_T) < sizeof(unsigned char *)
|| sizeof(LDAP_UINTPTR_T) < sizeof(ldap_debug_usage_info_t *)
|| UNSCRAMBLE_usagep( SCRAMBLE( &usage ) ) != &usage
|| UNSCRAMBLE_dummyp( SCRAMBLE( (unsigned char *) 0 ) ) )
{
fputs( "== thr_debug: Memory checks unsupported, "
"adding nomem to $LDAP_THREAD_DEBUG ==\n", stderr );
nomem = 1;
}
}
if( nomem ) {
noreinit = 1;
wraptype = Wrap_noalloc;
}
unwrap_offset = -(wrap_offset = (wraptype == Wrap_adjptr));
#endif
wrap_threads = (tracethreads || threadID || count);
options_done = 1;
}
#ifndef LDAP_THREAD_DEBUG_WRAP
#define WRAPPED(ptr) (ptr)
#define GET_OWNER(ptr) 0
#define SET_OWNER(ptr, thread) ((void) 0)
#define RESET_OWNER(ptr) ((void) 0)
#define ASSERT_OWNER(ptr, msg) ((void) 0)
#define ASSERT_NO_OWNER(ptr, msg) ((void) 0)
#define init_usage(ptr, msg) ((void) 0)
#define check_usage(ptr, msg) ((void) 0)
#define destroy_usage(ptr) ((void) 0)
#else /* LDAP_THREAD_DEBUG_WRAP */
/* Specialize this if the initializer is not appropriate. */
/* The ASSERT_NO_OWNER() definition may also need an override. */
#ifndef LDAP_DEBUG_THREAD_NONE
#define LDAP_DEBUG_THREAD_NONE { -1 } /* "no thread" ldap_int_thread_t value */
#endif
static const ldap_int_thread_t ldap_debug_thread_none = LDAP_DEBUG_THREAD_NONE;
#define THREAD_MUTEX_OWNER(mutex) \
ldap_int_thread_equal( (mutex)->owner, ldap_int_thread_self() )
void
ldap_debug_thread_assert_mutex_owner(
const char *file,
int line,
const char *msg,
ldap_pvt_thread_mutex_t *mutex )
{
if( !(noerror || THREAD_MUTEX_OWNER( mutex )) ) {
errmsg( file, line, msg, "ASSERT_MUTEX_OWNER", 0 );
if( !noabort ) abort();
}
}
#define WRAPPED(ptr) (&(ptr)->wrapped)
#define GET_OWNER(ptr) ((ptr)->owner)
#define SET_OWNER(ptr, thread) ((ptr)->owner = (thread))
#define RESET_OWNER(ptr) ((ptr)->owner = ldap_debug_thread_none)
#define ASSERT_OWNER(ptr, msg) ERROR_IF( !THREAD_MUTEX_OWNER( ptr ), msg )
#ifndef ASSERT_NO_OWNER
#define ASSERT_NO_OWNER(ptr, msg) ERROR_IF( \
!ldap_int_thread_equal( (ptr)->owner, ldap_debug_thread_none ), msg )
#endif
/* Try to provoke memory access error (for malloc debuggers) */
#define PEEK(mem) {if (-*(volatile const unsigned char *)(mem)) debug_noop();}
static void debug_noop( void );
static int debug_already_initialized( const ldap_debug_usage_info_t *usage );
/* Name used for clearer error message */
#define IS_COPY_OR_MOVED(usage) ((usage)->self != SCRAMBLE( usage ))
#define DUMMY_ADDR(usage) \
(wraptype == Wrap_scramble \
? UNSCRAMBLE_dummyp( (usage)->mem.num ) \
: (usage)->mem.ptr + unwrap_offset)
/* Mark resource as initialized */
static void
init_usage( ldap_debug_usage_info_t *usage, const char *msg )
{
if( !options_done )
get_options();
if( !nomem ) {
if( !noreinit ) {
MEMERROR_IF( debug_already_initialized( usage ), msg, {
/* Provoke malloc debuggers */
unsigned char *dummy = DUMMY_ADDR( usage );
PEEK( dummy );
free( dummy );
free( dummy );
} );
}
if( wraptype != Wrap_noalloc ) {
unsigned char *dummy = malloc( 1 );
assert( dummy != NULL );
if( wraptype == Wrap_scramble ) {
usage->mem.num = SCRAMBLE( dummy );
/* Verify that ptr<->integer casts work on this host */
assert( UNSCRAMBLE_dummyp( usage->mem.num ) == dummy );
} else {
usage->mem.ptr = dummy + wrap_offset;
}
}
} else {
/* Unused, but set for readability in debugger */
usage->mem.ptr = NULL;
}
usage->self = SCRAMBLE( usage ); /* If nomem, only for debugger */
usage->magic = ldap_debug_magic;
usage->state = ldap_debug_state_inited;
}
/* Check that resource is initialized and not copied/realloced */
static void
check_usage( const ldap_debug_usage_info_t *usage, const char *msg )
{
enum { Is_destroyed = 1 }; /* Name used for clearer error message */
if( usage->magic != ldap_debug_magic ) {
ERROR( usage->magic, msg );
return;
}
switch( usage->state ) {
case ldap_debug_state_destroyed:
MEMERROR_IF( Is_destroyed, msg, {
PEEK( DUMMY_ADDR( usage ) );
} );
break;
default:
ERROR( usage->state, msg );
break;
case ldap_debug_state_inited:
if( !nomem ) {
MEMERROR_IF( IS_COPY_OR_MOVED( usage ), msg, {
PEEK( DUMMY_ADDR( usage ) );
PEEK( UNSCRAMBLE_usagep( usage->self ) );
} );
}
break;
}
}
/* Mark resource as destroyed. */
/* Does not check for errors, call check_usage()/init_usage() first. */
static void
destroy_usage( ldap_debug_usage_info_t *usage )
{
if( usage->state == ldap_debug_state_inited ) {
if( wraptype != Wrap_noalloc ) {
free( DUMMY_ADDR( usage ) );
/* Do not reset the DUMMY_ADDR, leave it for malloc debuggers
* in case the resource is used after it is freed. */
}
usage->state = ldap_debug_state_destroyed;
}
}
/* Define these after they are used, so they are hopefully not inlined */
static void
debug_noop( void )
{
}
/*
* Valid programs access uninitialized memory here unless "noreinit".
*
* Returns true if the resource is initialized and not copied/realloced.
*/
LDAP_GCCATTR((noinline))
static int
debug_already_initialized( const ldap_debug_usage_info_t *usage )
{
/*
* 'ret' keeps the Valgrind warning "Conditional jump or move
* depends on uninitialised value(s)" _inside_ this function.
*/
volatile int ret = 0;
if( usage->state == ldap_debug_state_inited )
if( !IS_COPY_OR_MOVED( usage ) )
if( usage->magic == ldap_debug_magic )
ret = 1;
return ret;
}
#endif /* LDAP_THREAD_DEBUG_WRAP */
#if !(LDAP_THREAD_DEBUG_THREAD_ID +0)
typedef void ldap_debug_thread_t;
#define init_thread_info() {}
#define with_thread_info_lock(statements) { statements; }
#define thread_info_detached(t) 0
#define add_thread_info(msg, thr, det) ((void) 0)
#define remove_thread_info(tinfo, msg) ((void) 0)
#define get_thread_info(thread, msg) NULL
#else /* LDAP_THREAD_DEBUG_THREAD_ID */
/*
* Thread ID tracking. Currently achieves little.
* Should be either expanded or deleted.
*/
/*
* Array of threads. Used instead of making ldap_pvt_thread_t a wrapper
* around ldap_int_thread_t, which would slow down ldap_pvt_thread_self().
*/
typedef struct {
ldap_pvt_thread_t wrapped;
ldap_debug_usage_info_t usage;
int detached;
int idx;
} ldap_debug_thread_t;
static ldap_debug_thread_t **thread_info;
static unsigned int thread_info_size, thread_info_used;
static ldap_int_thread_mutex_t thread_info_mutex;
#define init_thread_info() { \
if( threadID ) { \
int mutex_init_rc = ldap_int_thread_mutex_init( &thread_info_mutex ); \
assert( mutex_init_rc == 0 ); \
} \
}
#define with_thread_info_lock(statements) { \
int rc_wtl_ = ldap_int_thread_mutex_lock( &thread_info_mutex ); \
assert( rc_wtl_ == 0 ); \
{ statements; } \
rc_wtl_ = ldap_int_thread_mutex_unlock( &thread_info_mutex ); \
assert( rc_wtl_ == 0 ); \
}
#define thread_info_detached(t) ((t)->detached)
static void
add_thread_info(
const char *msg,
const ldap_pvt_thread_t *thread,
int detached )
{
ldap_debug_thread_t *t;
if( thread_info_used >= thread_info_size ) {
unsigned int more = thread_info_size + 8;
unsigned int new_size = thread_info_size + more;
t = calloc( more, sizeof(ldap_debug_thread_t) );
assert( t != NULL );
thread_info = realloc( thread_info, new_size * sizeof(*thread_info) );
assert( thread_info != NULL );
do {
t->idx = thread_info_size;
thread_info[thread_info_size++] = t++;
} while( thread_info_size < new_size );
}
t = thread_info[thread_info_used];
init_usage( &t->usage, msg );
t->wrapped = *thread;
t->detached = detached;
thread_info_used++;
}
static void
remove_thread_info( ldap_debug_thread_t *t, const char *msg )
{
ldap_debug_thread_t *last;
int idx;
check_usage( &t->usage, msg );
destroy_usage( &t->usage );
idx = t->idx;
assert( thread_info[idx] == t );
last = thread_info[--thread_info_used];
assert( last->idx == thread_info_used );
(thread_info[idx] = last)->idx = idx;
(thread_info[thread_info_used] = t )->idx = thread_info_used;
}
static ldap_debug_thread_t *
get_thread_info( ldap_pvt_thread_t thread, const char *msg )
{
unsigned int i;
ldap_debug_thread_t *t;
for( i = 0; i < thread_info_used; i++ ) {
if( ldap_pvt_thread_equal( thread, thread_info[i]->wrapped ) )
break;
}
ERROR_IF( i == thread_info_used, msg );
t = thread_info[i];
check_usage( &t->usage, msg );
return t;
}
#endif /* LDAP_THREAD_DEBUG_THREAD_ID */
static char *
thread_name( char *buf, int bufsize, ldap_pvt_thread_t thread )
{
int i;
--bufsize;
if( bufsize > 2*sizeof(thread) )
bufsize = 2*sizeof(thread);
for( i = 0; i < bufsize; i += 2 )
snprintf( buf+i, 3, "%02x", ((unsigned char *)&thread)[i/2] );
return buf;
}
/* Add <adjust> (+/-1) to resource count <which> unless "nocount". */
static void
adjust_count( int which, int adjust )
{
int rc;
switch( count ) {
case Count_no:
break;
case Count_yes:
rc = ldap_int_thread_mutex_lock( &resource_mutexes[which] );
assert( rc == 0 );
resource_counts[which] += adjust;
rc = ldap_int_thread_mutex_unlock( &resource_mutexes[which] );
assert( rc == 0 );
break;
case Count_reported:
fputs( "== thr_debug: More thread activity after exit ==\n", stderr );
count = Count_reported_more;
/* FALL THROUGH */
case Count_reported_more:
/* Not used, but result might be inspected with debugger */
/* (Hopefully threading is disabled by now...) */
resource_counts[which] += adjust;
break;
}
}
/* Wrappers for LDAP_THREAD_IMPLEMENTATION: */
/* Used instead of ldap_int_thread_initialize by ldap_pvt_thread_initialize */
int
ldap_debug_thread_initialize( void )
{
int i, rc, rc2;
if( !options_done )
get_options();
ERROR_IF( threading_enabled, "ldap_debug_thread_initialize" );
threading_enabled = 1;
rc = ldap_int_thread_initialize();
if( rc ) {
ERROR( rc, "ldap_debug_thread_initialize:threads" );
threading_enabled = 0;
} else {
init_thread_info();
if( count != Count_no ) {
for( i = rc2 = 0; i < Idx_max; i++ )
rc2 |= ldap_int_thread_mutex_init( &resource_mutexes[i] );
assert( rc2 == 0 );
/* FIXME: Only for static libldap as in init.c? If so, why? */
atexit( count_resource_leaks );
}
}
return rc;
}
/* Used instead of ldap_int_thread_destroy by ldap_pvt_thread_destroy */
int
ldap_debug_thread_destroy( void )
{
int rc;
ERROR_IF( !threading_enabled, "ldap_debug_thread_destroy" );
/* sleep(1) -- need to wait for thread pool to finish? */
rc = ldap_int_thread_destroy();
if( rc ) {
ERROR( rc, "ldap_debug_thread_destroy:threads" );
} else {
threading_enabled = 0;
}
return rc;
}
int
ldap_pvt_thread_set_concurrency( int n )
{
int rc;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_set_concurrency" );
rc = ldap_int_thread_set_concurrency( n );
ERROR_IF( rc, "ldap_pvt_thread_set_concurrency" );
return rc;
}
int
ldap_pvt_thread_get_concurrency( void )
{
int rc;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_get_concurrency" );
rc = ldap_int_thread_get_concurrency();
ERROR_IF( rc, "ldap_pvt_thread_get_concurrency" );
return rc;
}
unsigned int
ldap_pvt_thread_sleep( unsigned int interval )
{
int rc;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_sleep" );
rc = ldap_int_thread_sleep( interval );
ERROR_IF( rc, "ldap_pvt_thread_sleep" );
return 0;
}
static void
thread_exiting( const char *how, const char *msg )
{
ldap_pvt_thread_t thread;
#if 0 /* Detached threads may exit after ldap_debug_thread_destroy(). */
ERROR_IF( !threading_enabled, msg );
#endif
thread = ldap_pvt_thread_self();
if( tracethreads ) {
char buf[40];
fprintf( stderr, "== thr_debug: %s thread %s ==\n",
how, thread_name( buf, sizeof(buf), thread ) );
}
if( threadID ) {
with_thread_info_lock({
ldap_debug_thread_t *t = get_thread_info( thread, msg );
if( thread_info_detached( t ) )
remove_thread_info( t, msg );
});
}
adjust_count( Idx_unexited_thread, -1 );
}
void
ldap_pvt_thread_exit( void *retval )
{
thread_exiting( "Exiting", "ldap_pvt_thread_exit" );
ldap_int_thread_exit( retval );
}
typedef struct {
void *(*start_routine)( void * );
void *arg;
} ldap_debug_thread_call_t;
static void *
ldap_debug_thread_wrapper( void *arg )
{
void *ret;
ldap_debug_thread_call_t call = *(ldap_debug_thread_call_t *)arg;
free( arg );
ret = call.start_routine( call.arg );
thread_exiting( "Returning from", "ldap_debug_thread_wrapper" );
return ret;
}
int
ldap_pvt_thread_create(
ldap_pvt_thread_t *thread,
int detach,
void *(*start_routine)( void * ),
void *arg )
{
int rc;
if( !options_done )
get_options();
ERROR_IF( !threading_enabled, "ldap_pvt_thread_create" );
if( wrap_threads ) {
ldap_debug_thread_call_t *call = malloc(
sizeof( ldap_debug_thread_call_t ) );
assert( call != NULL );
call->start_routine = start_routine;
call->arg = arg;
start_routine = ldap_debug_thread_wrapper;
arg = call;
}
if( threadID ) {
with_thread_info_lock({
rc = ldap_int_thread_create( thread, detach, start_routine, arg );
if( rc == 0 )
add_thread_info( "ldap_pvt_thread_create", thread, detach );
});
} else {
rc = ldap_int_thread_create( thread, detach, start_routine, arg );
}
if( rc ) {
ERROR( rc, "ldap_pvt_thread_create" );
if( wrap_threads )
free( arg );
} else {
if( tracethreads ) {
char buf[40], buf2[40];
fprintf( stderr,
"== thr_debug: Created thread %s%s from thread %s ==\n",
thread_name( buf, sizeof(buf), *thread ),
detach ? " (detached)" : "",
thread_name( buf2, sizeof(buf2), ldap_pvt_thread_self() ) );
}
adjust_count( Idx_unexited_thread, +1 );
if( !detach )
adjust_count( Idx_unjoined_thread, +1 );
}
return rc;
}
int
ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return )
{
int rc;
ldap_debug_thread_t *t = NULL;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_join" );
if( tracethreads ) {
char buf[40], buf2[40];
fprintf( stderr, "== thr_debug: Joining thread %s in thread %s ==\n",
thread_name( buf, sizeof(buf), thread ),
thread_name( buf2, sizeof(buf2), ldap_pvt_thread_self() ) );
}
if( threadID )
with_thread_info_lock( {
t = get_thread_info( thread, "ldap_pvt_thread_join" );
ERROR_IF( thread_info_detached( t ), "ldap_pvt_thread_join" );
} );
rc = ldap_int_thread_join( thread, thread_return );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_join" );
} else {
if( threadID )
with_thread_info_lock(
remove_thread_info( t, "ldap_pvt_thread_join" ) );
adjust_count( Idx_unjoined_thread, -1 );
}
return rc;
}
int
ldap_pvt_thread_kill( ldap_pvt_thread_t thread, int signo )
{
int rc;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_kill" );
if( tracethreads ) {
char buf[40], buf2[40];
fprintf( stderr,
"== thr_debug: Killing thread %s (sig %i) from thread %s ==\n",
thread_name( buf, sizeof(buf), thread ), signo,
thread_name( buf2, sizeof(buf2), ldap_pvt_thread_self() ) );
}
rc = ldap_int_thread_kill( thread, signo );
ERROR_IF( rc, "ldap_pvt_thread_kill" );
return rc;
}
int
ldap_pvt_thread_yield( void )
{
int rc;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_yield" );
rc = ldap_int_thread_yield();
ERROR_IF( rc, "ldap_pvt_thread_yield" );
return rc;
}
ldap_pvt_thread_t
ldap_pvt_thread_self( void )
{
#if 0 /* Function is used by ch_free() via slap_sl_contxt() in slapd */
ERROR_IF( !threading_enabled, "ldap_pvt_thread_self" );
#endif
return ldap_int_thread_self();
}
int
ldap_pvt_thread_cond_init( ldap_pvt_thread_cond_t *cond )
{
int rc;
init_usage( &cond->usage, "ldap_pvt_thread_cond_init" );
rc = ldap_int_thread_cond_init( WRAPPED( cond ) );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_cond_init" );
destroy_usage( &cond->usage );
} else {
adjust_count( Idx_cond, +1 );
}
return rc;
}
int
ldap_pvt_thread_cond_destroy( ldap_pvt_thread_cond_t *cond )
{
int rc;
check_usage( &cond->usage, "ldap_pvt_thread_cond_destroy" );
rc = ldap_int_thread_cond_destroy( WRAPPED( cond ) );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_cond_destroy" );
} else {
destroy_usage( &cond->usage );
adjust_count( Idx_cond, -1 );
}
return rc;
}
int
ldap_pvt_thread_cond_signal( ldap_pvt_thread_cond_t *cond )
{
int rc;
check_usage( &cond->usage, "ldap_pvt_thread_cond_signal" );
rc = ldap_int_thread_cond_signal( WRAPPED( cond ) );
ERROR_IF( rc, "ldap_pvt_thread_cond_signal" );
return rc;
}
int
ldap_pvt_thread_cond_broadcast( ldap_pvt_thread_cond_t *cond )
{
int rc;
check_usage( &cond->usage, "ldap_pvt_thread_cond_broadcast" );
rc = ldap_int_thread_cond_broadcast( WRAPPED( cond ) );
ERROR_IF( rc, "ldap_pvt_thread_cond_broadcast" );
return rc;
}
int
ldap_pvt_thread_cond_wait(
ldap_pvt_thread_cond_t *cond,
ldap_pvt_thread_mutex_t *mutex )
{
int rc;
ldap_int_thread_t owner;
check_usage( &cond->usage, "ldap_pvt_thread_cond_wait:cond" );
check_usage( &mutex->usage, "ldap_pvt_thread_cond_wait:mutex" );
adjust_count( Idx_locked_mutex, -1 );
owner = GET_OWNER( mutex );
ASSERT_OWNER( mutex, "ldap_pvt_thread_cond_wait" );
RESET_OWNER( mutex );
rc = ldap_int_thread_cond_wait( WRAPPED( cond ), WRAPPED( mutex ) );
ASSERT_NO_OWNER( mutex, "ldap_pvt_thread_cond_wait" );
SET_OWNER( mutex, rc ? owner : ldap_int_thread_self() );
adjust_count( Idx_locked_mutex, +1 );
ERROR_IF( rc, "ldap_pvt_thread_cond_wait" );
return rc;
}
int
ldap_pvt_thread_mutex_recursive_init( ldap_pvt_thread_mutex_t *mutex )
{
int rc;
init_usage( &mutex->usage, "ldap_pvt_thread_mutex_recursive_init" );
rc = ldap_int_thread_mutex_recursive_init( WRAPPED( mutex ) );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_mutex_recursive_init" );
destroy_usage( &mutex->usage );
} else {
RESET_OWNER( mutex );
adjust_count( Idx_mutex, +1 );
}
return rc;
}
int
ldap_pvt_thread_mutex_init( ldap_pvt_thread_mutex_t *mutex )
{
int rc;
init_usage( &mutex->usage, "ldap_pvt_thread_mutex_init" );
rc = ldap_int_thread_mutex_init( WRAPPED( mutex ) );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_mutex_init" );
destroy_usage( &mutex->usage );
} else {
RESET_OWNER( mutex );
adjust_count( Idx_mutex, +1 );
}
return rc;
}
int
ldap_pvt_thread_mutex_destroy( ldap_pvt_thread_mutex_t *mutex )
{
int rc;
check_usage( &mutex->usage, "ldap_pvt_thread_mutex_destroy" );
ASSERT_NO_OWNER( mutex, "ldap_pvt_thread_mutex_destroy" );
rc = ldap_int_thread_mutex_destroy( WRAPPED( mutex ) );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_mutex_destroy" );
} else {
destroy_usage( &mutex->usage );
RESET_OWNER( mutex );
adjust_count( Idx_mutex, -1 );
}
return rc;
}
int
ldap_pvt_thread_mutex_lock( ldap_pvt_thread_mutex_t *mutex )
{
int rc;
check_usage( &mutex->usage, "ldap_pvt_thread_mutex_lock" );
rc = ldap_int_thread_mutex_lock( WRAPPED( mutex ) );
if( rc ) {
ERROR_IF( rc, "ldap_pvt_thread_mutex_lock" );
} else {
ASSERT_NO_OWNER( mutex, "ldap_pvt_thread_mutex_lock" );
SET_OWNER( mutex, ldap_int_thread_self() );
adjust_count( Idx_locked_mutex, +1 );
}
return rc;
}
int
ldap_pvt_thread_mutex_trylock( ldap_pvt_thread_mutex_t *mutex )
{
int rc;
check_usage( &mutex->usage, "ldap_pvt_thread_mutex_trylock" );
rc = ldap_int_thread_mutex_trylock( WRAPPED( mutex ) );
if( rc == 0 ) {
ASSERT_NO_OWNER( mutex, "ldap_pvt_thread_mutex_trylock" );
SET_OWNER( mutex, ldap_int_thread_self() );
adjust_count( Idx_locked_mutex, +1 );
}
return rc;
}
int
ldap_pvt_thread_mutex_unlock( ldap_pvt_thread_mutex_t *mutex )
{
int rc;
check_usage( &mutex->usage, "ldap_pvt_thread_mutex_unlock" );
ASSERT_OWNER( mutex, "ldap_pvt_thread_mutex_unlock" );
RESET_OWNER( mutex ); /* Breaks if this thread did not own the mutex */
rc = ldap_int_thread_mutex_unlock( WRAPPED( mutex ) );
if( rc ) {
ERROR_IF( rc, "ldap_pvt_thread_mutex_unlock" );
} else {
adjust_count( Idx_locked_mutex, -1 );
}
return rc;
}
/* Wrappers for LDAP_THREAD_RDWR_IMPLEMENTATION: */
int
ldap_pvt_thread_rdwr_init( ldap_pvt_thread_rdwr_t *rwlock )
{
int rc;
init_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_init" );
rc = ldap_int_thread_rdwr_init( WRAPPED( rwlock ) );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_rdwr_init" );
destroy_usage( &rwlock->usage );
} else {
adjust_count( Idx_rdwr, +1 );
}
return rc;
}
int
ldap_pvt_thread_rdwr_destroy( ldap_pvt_thread_rdwr_t *rwlock )
{
int rc;
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_destroy" );
rc = ldap_int_thread_rdwr_destroy( WRAPPED( rwlock ) );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_rdwr_destroy" );
} else {
destroy_usage( &rwlock->usage );
adjust_count( Idx_rdwr, -1 );
}
return rc;
}
int
ldap_pvt_thread_rdwr_rlock( ldap_pvt_thread_rdwr_t *rwlock )
{
int rc;
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_rlock" );
rc = ldap_int_thread_rdwr_rlock( WRAPPED( rwlock ) );
ERROR_IF( rc, "ldap_pvt_thread_rdwr_rlock" );
return rc;
}
int
ldap_pvt_thread_rdwr_rtrylock( ldap_pvt_thread_rdwr_t *rwlock )
{
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_rtrylock" );
return ldap_int_thread_rdwr_rtrylock( WRAPPED( rwlock ) );
}
int
ldap_pvt_thread_rdwr_runlock( ldap_pvt_thread_rdwr_t *rwlock )
{
int rc;
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_runlock" );
rc = ldap_int_thread_rdwr_runlock( WRAPPED( rwlock ) );
ERROR_IF( rc, "ldap_pvt_thread_rdwr_runlock" );
return rc;
}
int
ldap_pvt_thread_rdwr_wlock( ldap_pvt_thread_rdwr_t *rwlock )
{
int rc;
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_wlock" );
rc = ldap_int_thread_rdwr_wlock( WRAPPED( rwlock ) );
ERROR_IF( rc, "ldap_pvt_thread_rdwr_wlock" );
return rc;
}
int
ldap_pvt_thread_rdwr_wtrylock( ldap_pvt_thread_rdwr_t *rwlock )
{
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_wtrylock" );
return ldap_int_thread_rdwr_wtrylock( WRAPPED( rwlock ) );
}
int
ldap_pvt_thread_rdwr_wunlock( ldap_pvt_thread_rdwr_t *rwlock )
{
int rc;
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_wunlock" );
rc = ldap_int_thread_rdwr_wunlock( WRAPPED( rwlock ) );
ERROR_IF( rc, "ldap_pvt_thread_rdwr_wunlock" );
return rc;
}
#if defined(LDAP_RDWR_DEBUG) && !defined(LDAP_THREAD_HAVE_RDWR)
int
ldap_pvt_thread_rdwr_readers( ldap_pvt_thread_rdwr_t *rwlock )
{
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_readers" );
return ldap_int_thread_rdwr_readers( WRAPPED( rwlock ) );
}
int
ldap_pvt_thread_rdwr_writers( ldap_pvt_thread_rdwr_t *rwlock )
{
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_writers" );
return ldap_int_thread_rdwr_writers( WRAPPED( rwlock ) );
}
int
ldap_pvt_thread_rdwr_active( ldap_pvt_thread_rdwr_t *rwlock )
{
check_usage( &rwlock->usage, "ldap_pvt_thread_rdwr_active" );
return ldap_int_thread_rdwr_active( WRAPPED( rwlock ) );
}
#endif /* LDAP_RDWR_DEBUG && !LDAP_THREAD_HAVE_RDWR */
/* Some wrappers for LDAP_THREAD_POOL_IMPLEMENTATION: */
#ifdef LDAP_THREAD_POOL_IMPLEMENTATION
int
ldap_pvt_thread_pool_init(
ldap_pvt_thread_pool_t *tpool,
int max_threads,
int max_pending )
{
int rc;
if( !options_done )
get_options();
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_init" );
rc = ldap_int_thread_pool_init( tpool, max_threads, max_pending );
if( rc ) {
ERROR( rc, "ldap_pvt_thread_pool_init" );
} else {
adjust_count( Idx_tpool, +1 );
}
return rc;
}
int
ldap_pvt_thread_pool_submit(
ldap_pvt_thread_pool_t *tpool,
ldap_pvt_thread_start_t *start_routine, void *arg )
{
int rc, has_pool;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_submit" );
has_pool = (tpool && *tpool);
rc = ldap_int_thread_pool_submit( tpool, start_routine, arg );
if( has_pool )
ERROR_IF( rc, "ldap_pvt_thread_pool_submit" );
return rc;
}
int
ldap_pvt_thread_pool_maxthreads(
ldap_pvt_thread_pool_t *tpool,
int max_threads )
{
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_maxthreads" );
return ldap_int_thread_pool_maxthreads( tpool, max_threads );
}
int
ldap_pvt_thread_pool_backload( ldap_pvt_thread_pool_t *tpool )
{
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_backload" );
return ldap_int_thread_pool_backload( tpool );
}
int
ldap_pvt_thread_pool_destroy( ldap_pvt_thread_pool_t *tpool, int run_pending )
{
int rc, has_pool;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_destroy" );
has_pool = (tpool && *tpool);
rc = ldap_int_thread_pool_destroy( tpool, run_pending );
if( has_pool ) {
if( rc ) {
ERROR( rc, "ldap_pvt_thread_pool_destroy" );
} else {
adjust_count( Idx_tpool, -1 );
}
}
return rc;
}
int
ldap_pvt_thread_pool_close( ldap_pvt_thread_pool_t *tpool, int run_pending )
{
int rc, has_pool;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_close" );
has_pool = (tpool && *tpool);
rc = ldap_int_thread_pool_close( tpool, run_pending );
if( has_pool && rc ) {
ERROR( rc, "ldap_pvt_thread_pool_close" );
}
return rc;
}
int
ldap_pvt_thread_pool_free( ldap_pvt_thread_pool_t *tpool )
{
int rc, has_pool;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_free" );
has_pool = (tpool && *tpool);
rc = ldap_int_thread_pool_free( tpool );
if( has_pool ) {
if( rc ) {
ERROR( rc, "ldap_pvt_thread_pool_free" );
} else {
adjust_count( Idx_tpool, -1 );
}
}
return rc;
}
int
ldap_pvt_thread_pool_pause( ldap_pvt_thread_pool_t *tpool )
{
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_pause" );
return ldap_int_thread_pool_pause( tpool );
}
int
ldap_pvt_thread_pool_resume( ldap_pvt_thread_pool_t *tpool )
{
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_resume" );
return ldap_int_thread_pool_resume( tpool );
}
int
ldap_pvt_thread_pool_getkey(
void *xctx,
void *key,
void **data,
ldap_pvt_thread_pool_keyfree_t **kfree )
{
#if 0 /* Function is used by ch_free() via slap_sl_contxt() in slapd */
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_getkey" );
#endif
return ldap_int_thread_pool_getkey( xctx, key, data, kfree );
}
int
ldap_pvt_thread_pool_setkey(
void *xctx,
void *key,
void *data,
ldap_pvt_thread_pool_keyfree_t *kfree,
void **olddatap,
ldap_pvt_thread_pool_keyfree_t **oldkfreep )
{
int rc;
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_setkey" );
rc = ldap_int_thread_pool_setkey(
xctx, key, data, kfree, olddatap, oldkfreep );
ERROR_IF( rc, "ldap_pvt_thread_pool_setkey" );
return rc;
}
void
ldap_pvt_thread_pool_purgekey( void *key )
{
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_purgekey" );
ldap_int_thread_pool_purgekey( key );
}
void *
ldap_pvt_thread_pool_context( void )
{
#if 0 /* Function is used by ch_free() via slap_sl_contxt() in slapd */
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_context" );
#endif
return ldap_int_thread_pool_context();
}
void
ldap_pvt_thread_pool_context_reset( void *vctx )
{
ERROR_IF( !threading_enabled, "ldap_pvt_thread_pool_context_reset" );
ldap_int_thread_pool_context_reset( vctx );
}
#endif /* LDAP_THREAD_POOL_IMPLEMENTATION */
#endif /* LDAP_THREAD_DEBUG */
|