thr_lock.c 52.2 KB
Newer Older
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1 2 3 4
/* Copyright (C) 2000 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
6 7

   This program is distributed in the hope that it will be useful,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
9 10 11 12 13 14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
15 16 17 18 19 20 21 22 23 24 25 26 27

/*
Read and write locks for Posix threads. All tread 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
28
TL_READ_WITH_SHARED_LOCKS
bk@work.mysql.com's avatar
bk@work.mysql.com committed
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
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_ALLOW_READ	# Write lock, but allow reading
TL_WRITE_CONCURRENT_INSERT
			# Insert that can be mixed when selects
TL_WRITE_DELAYED	# Used by delayed insert
			# 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_ALLOW_READ, WRITE_CONCURRENT_INSERT, WRITE_DELAYED,
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_ALLOW_READ,
TL_WRITE_CONCURRENT_INSERT or one TL_WRITE_DELAYED lock at the same time as
multiple read locks.

*/

#if !defined(MAIN) && !defined(DBUG_OFF) && !defined(EXTRA_DEBUG)
74
#define FORCE_DBUG_OFF
bk@work.mysql.com's avatar
bk@work.mysql.com committed
75 76 77
#endif

#include "mysys_priv.h"
78 79

#ifdef THREAD
bk@work.mysql.com's avatar
bk@work.mysql.com committed
80 81 82 83 84
#include "thr_lock.h"
#include <m_string.h>
#include <errno.h>

my_bool thr_lock_inited=0;
85
ulong locks_immediate = 0L, locks_waited = 0L;
86
ulong table_lock_wait_timeout;
87
enum thr_lock_type thr_upgraded_concurrent_insert_lock = TL_WRITE;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
88 89 90 91 92 93

/* The following constants are only for debug output */
#define MAX_THREADS 100
#define MAX_LOCKS   100


94
LIST *thr_lock_thread_list;			/* List of threads in use */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
ulong max_write_lock_count= ~(ulong) 0L;

static inline pthread_cond_t *get_cond(void)
{
  return &my_thread_var->suspend;
}

/*
** For the future (now the thread specific cond is alloced by my_pthread.c)
*/

my_bool init_thr_lock()
{
  thr_lock_inited=1;
  return 0;
}

112 113 114 115 116 117 118
static inline my_bool
thr_lock_owner_equal(THR_LOCK_OWNER *rhs, THR_LOCK_OWNER *lhs)
{
  return rhs == lhs;
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
119
#ifdef EXTRA_DEBUG
120 121
#define MAX_FOUND_ERRORS	10		/* Report 10 first errors */
static uint found_errors=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
122 123

static int check_lock(struct st_lock_list *list, const char* lock_type,
124
		      const char *where, my_bool same_owner, my_bool no_cond)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
125 126 127
{
  THR_LOCK_DATA *data,**prev;
  uint count=0;
128 129
  THR_LOCK_OWNER *first_owner;
  LINT_INIT(first_owner);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
130 131 132 133 134 135

  prev= &list->data;
  if (list->data)
  {
    enum thr_lock_type last_lock_type=list->data->type;

136 137
    if (same_owner && list->data)
      first_owner= list->data->owner;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
138 139 140 141 142 143 144 145 146 147 148
    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,
		"Warning: prev link %d didn't point at previous lock at %s: %s\n",
		count, lock_type, where);
	return 1;
      }
149 150
      if (same_owner &&
          !thr_lock_owner_equal(data->owner, first_owner) &&
bk@work.mysql.com's avatar
bk@work.mysql.com committed
151 152 153 154 155 156 157
	  last_lock_type != TL_WRITE_ALLOW_WRITE)
      {
	fprintf(stderr,
		"Warning: Found locks from different threads in %s: %s\n",
		lock_type,where);
	return 1;
      }
158 159 160 161 162 163 164
      if (no_cond && data->cond)
      {
	fprintf(stderr,
		"Warning: Found active lock with not reset cond %s: %s\n",
		lock_type,where);
	return 1;
      }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
      prev= &data->next;
    }
    if (data)
    {
      fprintf(stderr,"Warning: found too many locks at %s: %s\n",
	      lock_type,where);
      return 1;
    }
  }
  if (prev != list->last)
  {
    fprintf(stderr,"Warning: last didn't point at last lock at %s: %s\n",
	    lock_type, where);
    return 1;
  }
  return 0;
}

183

bk@work.mysql.com's avatar
bk@work.mysql.com committed
184 185 186
static void check_locks(THR_LOCK *lock, const char *where,
			my_bool allow_no_locks)
{
187
  uint old_found_errors=found_errors;
188 189
  DBUG_ENTER("check_locks");

190
  if (found_errors < MAX_FOUND_ERRORS)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
191
  {
192 193 194 195
    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))
196
      found_errors++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
197

198
    if (found_errors < MAX_FOUND_ERRORS)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
199 200 201 202 203 204 205
    {
      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++;
206 207
        /* Protect against infinite loop. */
        DBUG_ASSERT(count <= lock->read_no_write_count);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
208 209 210
      }
      if (count != lock->read_no_write_count)
      {
211
	found_errors++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
212 213 214 215 216 217 218 219 220
	fprintf(stderr,
		"Warning at '%s': Locks read_no_write_count was %u when it should have been %u\n", 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))
	{
221
	  found_errors++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
222 223 224 225 226 227 228 229
	  fprintf(stderr,
		  "Warning at '%s': No locks in use but locks are in wait queue\n",
		  where);
	}
	if (!lock->write_wait.data)
	{
	  if (!allow_no_locks && lock->read_wait.data)
	  {
230
	    found_errors++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
	    fprintf(stderr,
		    "Warning at '%s': No write locks and waiting read locks\n",
		    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) ||
	       lock->write_wait.data->type == TL_WRITE_ALLOW_READ ||
	       (lock->write_wait.data->type == TL_WRITE_DELAYED &&
		!lock->read.data)))
	  {
246
	    found_errors++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
247 248 249 250 251 252 253 254 255 256 257 258 259
	    fprintf(stderr,
		    "Warning at '%s': Write lock %d waiting while no exclusive read locks\n",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)
	  {
260
	    found_errors++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
261 262 263 264 265 266 267
	    fprintf(stderr,
		    "Warning at '%s': Found WRITE_ALLOW_WRITE lock waiting for WRITE_ALLOW_WRITE lock\n",
		    where);
	  }
	}
	if (lock->read.data)
	{
268 269
          if (!thr_lock_owner_equal(lock->write.data->owner,
                                    lock->read.data->owner) &&
270 271 272 273 274
	      ((lock->write.data->type > TL_WRITE_DELAYED &&
		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)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
275
	  {
276
	    found_errors++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
277
	    fprintf(stderr,
278 279
		    "Warning at '%s': Found lock of type %d that is write and read locked\n",
		    where, lock->write.data->type);
280 281 282
	    DBUG_PRINT("warning",("At '%s': Found lock of type %d that is write and read locked\n",
		    where, lock->write.data->type));

bk@work.mysql.com's avatar
bk@work.mysql.com committed
283 284 285 286 287 288 289
	  }
	}
	if (lock->read_wait.data)
	{
	  if (!allow_no_locks && lock->write.data->type <= TL_WRITE_DELAYED &&
	      lock->read_wait.data->type <= TL_READ_HIGH_PRIORITY)
	  {
290
	    found_errors++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
291 292 293 294 295 296 297 298 299
	    fprintf(stderr,
		    "Warning at '%s': Found read lock of type %d waiting for write lock of type %d\n",
		    where,
		    (int) lock->read_wait.data->type,
		    (int) lock->write.data->type);
	  }
	}
      }
    }
300
    if (found_errors != old_found_errors)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
301 302 303 304
    {
      DBUG_PRINT("error",("Found wrong lock"));
    }
  }
305
  DBUG_VOID_RETURN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
306 307 308 309 310 311 312 313 314 315 316 317 318
}

#else /* EXTRA_DEBUG */
#define check_locks(A,B,C)
#endif


	/* Initialize a lock */

void thr_lock_init(THR_LOCK *lock)
{
  DBUG_ENTER("thr_lock_init");
  bzero((char*) lock,sizeof(*lock));
319
  VOID(pthread_mutex_init(&lock->mutex,MY_MUTEX_INIT_FAST));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
320 321 322 323 324 325 326
  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;

  pthread_mutex_lock(&THR_LOCK_lock);		/* Add to locks in use */
  lock->list.data=(void*) lock;
327
  thr_lock_thread_list=list_add(thr_lock_thread_list,&lock->list);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
328 329 330 331 332 333 334 335 336
  pthread_mutex_unlock(&THR_LOCK_lock);
  DBUG_VOID_RETURN;
}


void thr_lock_delete(THR_LOCK *lock)
{
  DBUG_ENTER("thr_lock_delete");
  pthread_mutex_lock(&THR_LOCK_lock);
337
  thr_lock_thread_list=list_delete(thr_lock_thread_list,&lock->list);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
338
  pthread_mutex_unlock(&THR_LOCK_lock);
339
  pthread_mutex_destroy(&lock->mutex);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
340 341 342
  DBUG_VOID_RETURN;
}

343 344 345

void thr_lock_info_init(THR_LOCK_INFO *info)
{
346 347 348
  struct st_my_thread_var *tmp= my_thread_var;
  info->thread=    tmp->pthread_self;
  info->thread_id= tmp->id;
349 350 351
  info->n_cursors= 0;
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
352 353 354 355 356 357
	/* 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;
358
  data->owner= 0;                               /* no owner yet */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
359
  data->status_param=param;
360
  data->cond=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
361 362 363
}


364 365
static inline my_bool
have_old_read_lock(THR_LOCK_DATA *data, THR_LOCK_OWNER *owner)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
366 367 368
{
  for ( ; data ; data=data->next)
  {
369
    if (thr_lock_owner_equal(data->owner, owner))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
      return 1;					/* Already locked by thread */
  }
  return 0;
}

static inline my_bool have_specific_lock(THR_LOCK_DATA *data,
					 enum thr_lock_type type)
{
  for ( ; data ; data=data->next)
  {
    if (data->type == type)
      return 1;
  }
  return 0;
}


387 388 389
static void wake_up_waiters(THR_LOCK *lock);


390 391 392
static enum enum_thr_lock_result
wait_for_lock(struct st_lock_list *wait, THR_LOCK_DATA *data,
              my_bool in_wait_list)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
393
{
394 395 396 397 398
  struct st_my_thread_var *thread_var= my_thread_var;
  pthread_cond_t *cond= &thread_var->suspend;
  struct timespec wait_timeout;
  enum enum_thr_lock_result result= THR_LOCK_ABORTED;
  my_bool can_deadlock= test(data->owner->info->n_cursors);
399
  DBUG_ENTER("wait_for_lock");
bk@work.mysql.com's avatar
bk@work.mysql.com committed
400 401 402 403 404 405 406 407

  if (!in_wait_list)
  {
    (*wait->last)=data;				/* Wait for lock */
    data->prev= wait->last;
    wait->last= &data->next;
  }

408 409
  statistic_increment(locks_waited, &THR_LOCK_lock);

bk@work.mysql.com's avatar
bk@work.mysql.com committed
410 411 412
  /* Set up control struct to allow others to abort locks */
  thread_var->current_mutex= &data->lock->mutex;
  thread_var->current_cond=  cond;
413
  data->cond= cond;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
414

415
  if (can_deadlock)
416
    set_timespec(wait_timeout, table_lock_wait_timeout);
417
  while (!thread_var->abort || in_wait_list)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
418
  {
monty@mysql.com's avatar
monty@mysql.com committed
419 420 421 422
    int rc= (can_deadlock ?
             pthread_cond_timedwait(cond, &data->lock->mutex,
                                    &wait_timeout) :
             pthread_cond_wait(cond, &data->lock->mutex));
423 424 425 426 427 428 429 430 431 432 433 434 435 436
    /*
      We must break the wait if one of the following occurs:
      - the connection has been aborted (!thread_var->abort), but
        this is not a delayed insert thread (in_wait_list). For a delayed
        insert thread the proper action at shutdown is, apparently, to
        acquire the lock and complete the insert.
      - 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 == 0)
437 438
    {
      DBUG_PRINT("thr_lock", ("lock granted/aborted"));
439
      break;
440
    }
monty@mysql.com's avatar
monty@mysql.com committed
441
    if (rc == ETIMEDOUT || rc == ETIME)
442
    {
443 444
      /* purecov: begin inspected */
      DBUG_PRINT("thr_lock", ("lock timed out"));
445
      result= THR_LOCK_WAIT_TIMEOUT;
446
      break;
447
      /* purecov: end */
448
    }
449
  }
450 451
  DBUG_PRINT("thr_lock", ("aborted: %d  in_wait_list: %d",
                          thread_var->abort, in_wait_list));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
452 453 454

  if (data->cond || data->type == TL_UNLOCK)
  {
455
    if (data->cond)                             /* aborted or timed out */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
456 457 458 459 460
    {
      if (((*data->prev)=data->next))		/* remove from wait-list */
	data->next->prev= data->prev;
      else
	wait->last=data->prev;
461
      data->type= TL_UNLOCK;                    /* No lock */
462 463 464 465 466
      check_locks(data->lock, "killed or timed out wait_for_lock", 1);
      wake_up_waiters(data->lock);
    }
    else
    {
467
      DBUG_PRINT("thr_lock", ("lock aborted"));
468
      check_locks(data->lock, "aborted wait_for_lock", 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
469 470 471 472
    }
  }
  else
  {
473
    result= THR_LOCK_SUCCESS;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
474
    if (data->lock->get_status)
475
      (*data->lock->get_status)(data->status_param, 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
476 477 478 479 480 481 482 483 484
    check_locks(data->lock,"got wait_for_lock",0);
  }
  pthread_mutex_unlock(&data->lock->mutex);

  /* The following must be done after unlock of lock->mutex */
  pthread_mutex_lock(&thread_var->mutex);
  thread_var->current_mutex= 0;
  thread_var->current_cond=  0;
  pthread_mutex_unlock(&thread_var->mutex);
485
  DBUG_RETURN(result);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
486 487 488
}


489 490 491
enum enum_thr_lock_result
thr_lock(THR_LOCK_DATA *data, THR_LOCK_OWNER *owner,
         enum thr_lock_type lock_type)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
492 493
{
  THR_LOCK *lock=data->lock;
494 495 496
  enum enum_thr_lock_result result= THR_LOCK_SUCCESS;
  struct st_lock_list *wait_queue;
  THR_LOCK_DATA *lock_owner;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
497 498 499
  DBUG_ENTER("thr_lock");

  data->next=0;
500
  data->cond=0;					/* safety */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
501
  data->type=lock_type;
502
  data->owner= owner;                           /* Must be reset ! */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
503
  VOID(pthread_mutex_lock(&lock->mutex));
504
  DBUG_PRINT("lock",("data: 0x%lx  thread: 0x%lx  lock: 0x%lx  type: %d",
505 506
                     (long) data, data->owner->info->thread_id,
                     (long) lock, (int) lock_type));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
507 508 509 510 511 512 513
  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)
    {
514 515
      /* We can allow a read lock even if there is already a write lock
	 on the table in one the following cases:
bk@work.mysql.com's avatar
bk@work.mysql.com committed
516 517 518 519 520 521 522
	 - This thread alread have a write lock on the table
	 - The write lock is TL_WRITE_ALLOW_READ or TL_WRITE_DELAYED
           and the read lock is TL_READ_HIGH_PRIORITY or TL_READ
         - The write lock is TL_WRITE_CONCURRENT_INSERT or TL_WRITE_ALLOW_WRITE
	   and the read lock is not TL_READ_NO_INSERT
      */

523
      DBUG_PRINT("lock",("write locked 1 by thread: 0x%lx",
524 525
			 lock->write.data->owner->info->thread_id));
      if (thr_lock_owner_equal(data->owner, lock->write.data->owner) ||
bk@work.mysql.com's avatar
bk@work.mysql.com committed
526 527 528 529 530 531 532 533
	  (lock->write.data->type <= TL_WRITE_DELAYED &&
	   (((int) lock_type <= (int) TL_READ_HIGH_PRIORITY) ||
	    (lock->write.data->type != TL_WRITE_CONCURRENT_INSERT &&
	     lock->write.data->type != TL_WRITE_ALLOW_READ))))
      {						/* Already got a write lock */
	(*lock->read.last)=data;		/* Add to running FIFO */
	data->prev=lock->read.last;
	lock->read.last= &data->next;
534
	if (lock_type == TL_READ_NO_INSERT)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
535 536 537
	  lock->read_no_write_count++;
	check_locks(lock,"read lock with old write lock",0);
	if (lock->get_status)
538
	  (*lock->get_status)(data->status_param, 0);
539
	statistic_increment(locks_immediate,&THR_LOCK_lock);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
540 541 542 543 544 545
	goto end;
      }
      if (lock->write.data->type == TL_WRITE_ONLY)
      {
	/* We are not allowed to get a READ lock in this case */
	data->type=TL_UNLOCK;
546
        result= THR_LOCK_ABORTED;               /* Can't wait for this one */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
547 548 549 550 551 552
	goto end;
      }
    }
    else if (!lock->write_wait.data ||
	     lock->write_wait.data->type <= TL_WRITE_LOW_PRIORITY ||
	     lock_type == TL_READ_HIGH_PRIORITY ||
553
	     have_old_read_lock(lock->read.data, data->owner))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
554 555 556 557 558
    {						/* 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)
559
	(*lock->get_status)(data->status_param, 0);
560
      if (lock_type == TL_READ_NO_INSERT)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
561 562
	lock->read_no_write_count++;
      check_locks(lock,"read lock with no write locks",0);
563
      statistic_increment(locks_immediate,&THR_LOCK_lock);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
564 565
      goto end;
    }
566
    /*
567
      We're here if there is an active write lock or no write
568 569 570 571
      lock but a high priority write waiting in the write_wait queue.
      In the latter case we should yield the lock to the writer.
    */
    wait_queue= &lock->read_wait;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
572 573 574 575 576 577 578 579
  }
  else						/* Request for WRITE lock */
  {
    if (lock_type == TL_WRITE_DELAYED)
    {
      if (lock->write.data && lock->write.data->type == TL_WRITE_ONLY)
      {
	data->type=TL_UNLOCK;
580
        result= THR_LOCK_ABORTED;               /* Can't wait for this one */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
	goto end;
      }
      /*
	if there is a TL_WRITE_ALLOW_READ lock, we have to wait for a lock
	(TL_WRITE_ALLOW_READ is used for ALTER TABLE in MySQL)
      */
      if ((!lock->write.data ||
	   lock->write.data->type != TL_WRITE_ALLOW_READ) &&
	  !have_specific_lock(lock->write_wait.data,TL_WRITE_ALLOW_READ) &&
	  (lock->write.data || lock->read.data))
      {
	/* Add delayed write lock to write_wait queue, and return at once */
	(*lock->write_wait.last)=data;
	data->prev=lock->write_wait.last;
	lock->write_wait.last= &data->next;
	data->cond=get_cond();
597 598 599 600
        /*
          We don't have to do get_status here as we will do it when we change
          the delayed lock to a real write lock
        */
601
	statistic_increment(locks_immediate,&THR_LOCK_lock);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
602 603 604 605
	goto end;
      }
    }
    else if (lock_type == TL_WRITE_CONCURRENT_INSERT && ! lock->check_status)
606
      data->type=lock_type= thr_upgraded_concurrent_insert_lock;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
607 608 609 610 611

    if (lock->write.data)			/* If there is a write lock */
    {
      if (lock->write.data->type == TL_WRITE_ONLY)
      {
612 613 614 615 616 617 618 619
        /* Allow lock owner to bypass TL_WRITE_ONLY. */
        if (!thr_lock_owner_equal(data->owner, lock->write.data->owner))
        {
          /* 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;
        }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
620 621 622 623 624 625 626
      }

      /*
	The following test will not work if the old lock was a
	TL_WRITE_ALLOW_WRITE, TL_WRITE_ALLOW_READ or TL_WRITE_DELAYED in
	the same thread, but this will never happen within MySQL.
      */
627
      if (thr_lock_owner_equal(data->owner, lock->write.data->owner) ||
bk@work.mysql.com's avatar
bk@work.mysql.com committed
628 629 630 631
	  (lock_type == TL_WRITE_ALLOW_WRITE &&
	   !lock->write_wait.data &&
	   lock->write.data->type == TL_WRITE_ALLOW_WRITE))
      {
632 633 634 635 636 637 638 639
	/*
          We have already got a write lock or all locks are
          TL_WRITE_ALLOW_WRITE
        */
        DBUG_PRINT("info", ("write_wait.data: 0x%lx  old_type: %d",
                            (ulong) lock->write_wait.data,
                            lock->write.data->type));

bk@work.mysql.com's avatar
bk@work.mysql.com committed
640 641 642 643 644
	(*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)
645
	  (*data->lock->get_status)(data->status_param, 0);
646
	statistic_increment(locks_immediate,&THR_LOCK_lock);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
647 648
	goto end;
      }
649
      DBUG_PRINT("lock",("write locked 2 by thread: 0x%lx",
650
			 lock->write.data->owner->info->thread_id));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
651 652 653
    }
    else
    {
654 655
      DBUG_PRINT("info", ("write_wait.data: 0x%lx",
                          (ulong) lock->write_wait.data));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
656 657
      if (!lock->write_wait.data)
      {						/* no scheduled write locks */
658 659 660 661 662 663 664 665 666 667
        my_bool concurrent_insert= 0;
	if (lock_type == TL_WRITE_CONCURRENT_INSERT)
        {
          concurrent_insert= 1;
          if ((*lock->check_status)(data->status_param))
          {
            concurrent_insert= 0;
            data->type=lock_type= thr_upgraded_concurrent_insert_lock;
          }
        }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
668 669 670 671 672 673 674 675 676 677 678

	if (!lock->read.data ||
	    (lock_type <= TL_WRITE_DELAYED &&
	     ((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)
679
	    (*data->lock->get_status)(data->status_param, concurrent_insert);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
680
	  check_locks(lock,"only write lock",0);
681
	  statistic_increment(locks_immediate,&THR_LOCK_lock);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
682 683 684
	  goto end;
	}
      }
685
      DBUG_PRINT("lock",("write locked 3 by thread: 0x%lx  type: %d",
686
			 lock->read.data->owner->info->thread_id, data->type));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
687
    }
688
    wait_queue= &lock->write_wait;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
689
  }
690 691 692 693 694 695 696 697 698
  /*
    Try to detect a trivial deadlock when using cursors: attempt to
    lock a table that is already locked by an open cursor within the
    same connection. lock_owner can be zero if we succumbed to a high
    priority writer in the write_wait queue.
  */
  lock_owner= lock->read.data ? lock->read.data : lock->write.data;
  if (lock_owner && lock_owner->owner->info == owner->info)
  {
699
    DBUG_PRINT("lock",("deadlock"));
700 701 702 703 704
    result= THR_LOCK_DEADLOCK;
    goto end;
  }
  /* Can't get lock yet;  Wait for it */
  DBUG_RETURN(wait_for_lock(wait_queue, data, 0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
705 706 707 708 709 710 711
end:
  pthread_mutex_unlock(&lock->mutex);
  DBUG_RETURN(result);
}


static inline void free_all_read_locks(THR_LOCK *lock,
712
				       my_bool using_concurrent_insert)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
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
{
  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
  {
    pthread_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++;
    }      
748
    /* purecov: begin inspected */
749
    DBUG_PRINT("lock",("giving read lock to thread: 0x%lx",
750
		       data->owner->info->thread_id));
751
    /* purecov: end */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
    data->cond=0;				/* Mark thread free */
    VOID(pthread_cond_signal(cond));
  } while ((data=data->next));
  *lock->read_wait.last=0;
  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_ENTER("thr_unlock");
768
  DBUG_PRINT("lock",("data: 0x%lx  thread: 0x%lx  lock: 0x%lx",
769
                     (long) data, data->owner->info->thread_id, (long) lock));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
770 771 772 773 774 775 776 777 778
  pthread_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 if (lock_type == TL_WRITE_DELAYED && data->cond)
  {
monty@mysql.com's avatar
monty@mysql.com committed
779 780 781 782
    /*
      This only happens in extreme circumstances when a 
      write delayed lock that is waiting for a lock
    */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
783 784 785 786
    lock->write_wait.last=data->prev;		/* Put it on wait queue */
  }
  else
    lock->write.last=data->prev;
787 788 789 790 791 792 793 794 795 796
  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);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
797 798 799 800
  if (lock_type == TL_READ_NO_INSERT)
    lock->read_no_write_count--;
  data->type=TL_UNLOCK;				/* Mark unlocked */
  check_locks(lock,"after releasing lock",1);
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
  wake_up_waiters(lock);
  pthread_mutex_unlock(&lock->mutex);
  DBUG_VOID_RETURN;
}


/**
  @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_ENTER("wake_up_waiters");
bk@work.mysql.com's avatar
bk@work.mysql.com committed
821

822
  if (!lock->write.data)			/* If no active write locks */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
823 824 825 826 827 828 829
  {
    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 ||
830
	   lock->read_wait.data->type < TL_READ_HIGH_PRIORITY))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
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
      {
	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,0);
	    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=0;
	  lock->write.last= &data->next;
	  if (data->type == TL_WRITE_CONCURRENT_INSERT &&
	      (*lock->check_status)(data->status_param))
	    data->type=TL_WRITE;			/* Upgrade lock */
856
          /* purecov: begin inspected */
857
	  DBUG_PRINT("lock",("giving write lock of type %d to thread: 0x%lx",
858
			     data->type, data->owner->info->thread_id));
859
          /* purecov: end */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
860 861 862 863 864 865 866 867 868 869 870 871
	  {
	    pthread_cond_t *cond=data->cond;
	    data->cond=0;				/* Mark thread free */
	    VOID(pthread_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)
872
          goto end;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
873 874 875 876 877 878 879 880 881
	/* 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
      {
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
882
	DBUG_PRINT("lock",("No waiting read locks to free"));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
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
      }
    }
    else if (data &&
	     (lock_type=data->type) <= TL_WRITE_DELAYED &&
	     ((lock_type != TL_WRITE_CONCURRENT_INSERT &&
	       lock_type != TL_WRITE_ALLOW_WRITE) ||
	      !lock->read_no_write_count))
    {
      /*
	For DELAYED, 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,0);
	goto end;
      }
      do {
	pthread_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;
909
	(*lock->write.last)=data;		/* Put in execute list */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
910 911 912 913 914 915 916 917 918 919 920 921 922
	data->prev=lock->write.last;
	lock->write.last= &data->next;
	data->next=0;				/* Only one write lock */
	data->cond=0;				/* Mark thread free */
	VOID(pthread_cond_signal(cond));	/* Start waiting thread */
      } while (lock_type == TL_WRITE_ALLOW_WRITE &&
	       (data=lock->write_wait.data) &&
	       data->type == TL_WRITE_ALLOW_WRITE);
      if (lock->read_wait.data)
	free_all_read_locks(lock,
			    (lock_type == TL_WRITE_CONCURRENT_INSERT ||
			     lock_type == TL_WRITE_ALLOW_WRITE));
    }
923
    else if (!data && lock->read_wait.data)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
924 925 926
      free_all_read_locks(lock,0);
  }
end:
927
  check_locks(lock, "after waking up waiters", 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
928 929 930 931 932 933 934 935 936 937 938
  DBUG_VOID_RETURN;
}


/*
** Get all locks in a specific order to avoid dead-locks
** Sort acording to lock position and put write_locks before read_locks if
** lock on same lock.
*/


939
#define LOCK_CMP(A,B) ((uchar*) (A->lock) - (uint) ((A)->type) < (uchar*) (B->lock)- (uint) ((B)->type))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961

static void sort_locks(THR_LOCK_DATA **data,uint count)
{
  THR_LOCK_DATA **pos,**end,**prev,*tmp;

  /* Sort locks with insertion sort (fast because almost always few locks) */

  for (pos=data+1,end=data+count; pos < end ; pos++)
  {
    tmp= *pos;
    if (LOCK_CMP(tmp,pos[-1]))
    {
      prev=pos;
      do {
	prev[0]=prev[-1];
      } while (--prev != data && LOCK_CMP(tmp,prev[-1]));
      prev[0]=tmp;
    }
  }
}


962 963
enum enum_thr_lock_result
thr_multi_lock(THR_LOCK_DATA **data, uint count, THR_LOCK_OWNER *owner)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
964 965 966
{
  THR_LOCK_DATA **pos,**end;
  DBUG_ENTER("thr_multi_lock");
967
  DBUG_PRINT("lock",("data: 0x%lx  count: %d", (long) data, count));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
968 969 970 971 972
  if (count > 1)
    sort_locks(data,count);
  /* lock everything */
  for (pos=data,end=data+count; pos < end ; pos++)
  {
973 974
    enum enum_thr_lock_result result= thr_lock(*pos, owner, (*pos)->type);
    if (result != THR_LOCK_SUCCESS)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
975 976
    {						/* Aborted */
      thr_multi_unlock(data,(uint) (pos-data));
977
      DBUG_RETURN(result);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
978 979
    }
#ifdef MAIN
980
    printf("Thread: %s  Got lock: 0x%lx  type: %d\n",my_thread_name(),
bk@work.mysql.com's avatar
bk@work.mysql.com committed
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
	   (long) pos[0]->lock, pos[0]->type); fflush(stdout);
#endif
  }
  /*
    Ensure that all get_locks() have the same status
    If we lock the same table multiple times, we must use the same
    status_param!
  */
#if !defined(DONT_USE_RW_LOCKS)
  if (count > 1)
  {
    THR_LOCK_DATA *last_lock= end[-1];
    pos=end-1;
    do
    {
      pos--;
      if (last_lock->lock == (*pos)->lock &&
	  last_lock->lock->copy_status)
      {
	if (last_lock->type <= TL_READ_NO_INSERT)
	{
	  THR_LOCK_DATA **read_lock;
	  /*
	    If we are locking the same table with read locks we must ensure
	    that all tables share the status of the last write lock or
	    the same read lock.
	  */
	  for (;
	       (*pos)->type <= TL_READ_NO_INSERT &&
		 pos != data &&
		 pos[-1]->lock == (*pos)->lock ;
	       pos--) ;

	  read_lock = pos+1;
	  do
	  {
	    (last_lock->lock->copy_status)((*read_lock)->status_param,
					   (*pos)->status_param);
	  } while (*(read_lock++) != last_lock);
	  last_lock= (*pos);			/* Point at last write lock */
	}
	else
	  (*last_lock->lock->copy_status)((*pos)->status_param,
					  last_lock->status_param);
      }
      else
	last_lock=(*pos);
    } while (pos != data);
  }
#endif
1031
  DBUG_RETURN(THR_LOCK_SUCCESS);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1032 1033 1034 1035 1036 1037 1038 1039
}

  /* free all locks */

void thr_multi_unlock(THR_LOCK_DATA **data,uint count)
{
  THR_LOCK_DATA **pos,**end;
  DBUG_ENTER("thr_multi_unlock");
1040
  DBUG_PRINT("lock",("data: 0x%lx  count: %d", (long) data, count));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1041 1042 1043 1044

  for (pos=data,end=data+count; pos < end ; pos++)
  {
#ifdef MAIN
1045
    printf("Thread: %s  Rel lock: 0x%lx  type: %d\n",
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1046 1047 1048 1049 1050 1051 1052
	   my_thread_name(), (long) pos[0]->lock, pos[0]->type);
    fflush(stdout);
#endif
    if ((*pos)->type != TL_UNLOCK)
      thr_unlock(*pos);
    else
    {
1053
      DBUG_PRINT("lock",("Free lock: data: 0x%lx  thread: 0x%lx  lock: 0x%lx",
1054 1055
                         (long) *pos, (*pos)->owner->info->thread_id,
                         (long) (*pos)->lock));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1056 1057 1058 1059 1060
    }
  }
  DBUG_VOID_RETURN;
}

1061 1062
/*
  Abort all threads waiting for a lock. The lock will be upgraded to
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1063 1064 1065
  TL_WRITE_ONLY to abort any new accesses to the lock
*/

1066
void thr_abort_locks(THR_LOCK *lock, my_bool upgrade_lock)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1067 1068 1069 1070 1071 1072 1073 1074
{
  THR_LOCK_DATA *data;
  DBUG_ENTER("thr_abort_locks");
  pthread_mutex_lock(&lock->mutex);

  for (data=lock->read_wait.data; data ; data=data->next)
  {
    data->type=TL_UNLOCK;			/* Mark killed */
1075
    /* It's safe to signal the cond first: we're still holding the mutex. */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
    pthread_cond_signal(data->cond);
    data->cond=0;				/* Removed from list */
  }
  for (data=lock->write_wait.data; data ; data=data->next)
  {
    data->type=TL_UNLOCK;
    pthread_cond_signal(data->cond);
    data->cond=0;
  }
  lock->read_wait.last= &lock->read_wait.data;
  lock->write_wait.last= &lock->write_wait.data;
  lock->read_wait.data=lock->write_wait.data=0;
1088
  if (upgrade_lock && lock->write.data)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1089 1090 1091 1092 1093 1094
    lock->write.data->type=TL_WRITE_ONLY;
  pthread_mutex_unlock(&lock->mutex);
  DBUG_VOID_RETURN;
}


1095 1096 1097 1098 1099 1100
/*
  Abort all locks for specific table/thread combination

  This is used to abort all locks for a specific thread
*/

1101
my_bool thr_abort_locks_for_thread(THR_LOCK *lock, my_thread_id thread_id)
1102 1103
{
  THR_LOCK_DATA *data;
monty@mysql.com's avatar
monty@mysql.com committed
1104
  my_bool found= FALSE;
1105 1106 1107 1108 1109
  DBUG_ENTER("thr_abort_locks_for_thread");

  pthread_mutex_lock(&lock->mutex);
  for (data= lock->read_wait.data; data ; data= data->next)
  {
1110
    if (data->owner->info->thread_id == thread_id)    /* purecov: tested */
1111 1112 1113
    {
      DBUG_PRINT("info",("Aborting read-wait lock"));
      data->type= TL_UNLOCK;			/* Mark killed */
1114
      /* It's safe to signal the cond first: we're still holding the mutex. */
mronstrom@mysql.com's avatar
mronstrom@mysql.com committed
1115
      found= TRUE;
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
      pthread_cond_signal(data->cond);
      data->cond= 0;				/* Removed from list */

      if (((*data->prev)= data->next))
	data->next->prev= data->prev;
      else
	lock->read_wait.last= data->prev;
    }
  }
  for (data= lock->write_wait.data; data ; data= data->next)
  {
1127
    if (data->owner->info->thread_id == thread_id) /* purecov: tested */
1128 1129 1130
    {
      DBUG_PRINT("info",("Aborting write-wait lock"));
      data->type= TL_UNLOCK;
mronstrom@mysql.com's avatar
mronstrom@mysql.com committed
1131
      found= TRUE;
1132 1133 1134 1135 1136 1137 1138 1139 1140
      pthread_cond_signal(data->cond);
      data->cond= 0;

      if (((*data->prev)= data->next))
	data->next->prev= data->prev;
      else
	lock->write_wait.last= data->prev;
    }
  }
1141
  wake_up_waiters(lock);
1142
  pthread_mutex_unlock(&lock->mutex);
mronstrom@mysql.com's avatar
mronstrom@mysql.com committed
1143
  DBUG_RETURN(found);
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
/*
  Downgrade a WRITE_* to a lower WRITE level
  SYNOPSIS
    thr_downgrade_write_lock()
    in_data                   Lock data of thread downgrading its lock
    new_lock_type             New write lock type
  RETURN VALUE
    NONE
  DESCRIPTION
    This can be used to downgrade a lock already owned. When the downgrade
    occurs also other waiters, both readers and writers can be allowed to
    start.
    The previous lock is often TL_WRITE_ONLY but can also be
    TL_WRITE and TL_WRITE_ALLOW_READ. The normal downgrade variants are
    TL_WRITE_ONLY => TL_WRITE_ALLOW_READ After a short exclusive lock
    TL_WRITE_ALLOW_READ => TL_WRITE_ALLOW_WRITE After discovering that the
    operation didn't need such a high lock.
    TL_WRITE_ONLY => TL_WRITE after a short exclusive lock while holding a
    write table lock
    TL_WRITE_ONLY => TL_WRITE_ALLOW_WRITE After a short exclusive lock after
    already earlier having dongraded lock to TL_WRITE_ALLOW_WRITE
    The implementation is conservative and rather don't start rather than
    go on unknown paths to start, the common cases are handled.

    NOTE:
    In its current implementation it is only allowed to downgrade from
    TL_WRITE_ONLY. In this case there are no waiters. Thus no wake up
    logic is required.
*/

void thr_downgrade_write_lock(THR_LOCK_DATA *in_data,
                              enum thr_lock_type new_lock_type)
{
  THR_LOCK *lock=in_data->lock;
1181
#ifndef DBUG_OFF
1182
  enum thr_lock_type old_lock_type= in_data->type;
1183
#endif
monty@mysql.com's avatar
monty@mysql.com committed
1184 1185
#ifdef TO_BE_REMOVED
  THR_LOCK_DATA *data, *next;
1186 1187
  bool start_writers= FALSE;
  bool start_readers= FALSE;
monty@mysql.com's avatar
monty@mysql.com committed
1188
#endif
1189 1190 1191 1192 1193 1194 1195
  DBUG_ENTER("thr_downgrade_write_only_lock");

  pthread_mutex_lock(&lock->mutex);
  DBUG_ASSERT(old_lock_type == TL_WRITE_ONLY);
  DBUG_ASSERT(old_lock_type > new_lock_type);
  in_data->type= new_lock_type;
  check_locks(lock,"after downgrading lock",0);
monty@mysql.com's avatar
monty@mysql.com committed
1196 1197

#if TO_BE_REMOVED
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 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
  switch (old_lock_type)
  {
    case TL_WRITE_ONLY:
    case TL_WRITE:
    case TL_WRITE_LOW_PRIORITY:
    /*
      Previous lock was exclusive we are now ready to start up most waiting
      threads.
    */
      switch (new_lock_type)
      {
        case TL_WRITE_ALLOW_READ:
        /* Still cannot start WRITE operations. Can only start readers.  */
          start_readers= TRUE;
          break;
        case TL_WRITE:
        case TL_WRITE_LOW_PRIORITY:
        /*
           Still cannot start anything, but new requests are no longer
           aborted.
        */
          break;
        case TL_WRITE_ALLOW_WRITE:
        /*
          We can start both writers and readers.
        */
          start_writers= TRUE;
          start_readers= TRUE;
          break;
        case TL_WRITE_CONCURRENT_INSERT:
        case TL_WRITE_DELAYED:
        /*
          This routine is not designed for those. Lock will be downgraded
          but no start of waiters will occur. This is not the optimal but
          should be a correct behaviour.
        */
          break;
        default:
          DBUG_ASSERT(0);
      }
      break;
    case TL_WRITE_DELAYED:
    case TL_WRITE_CONCURRENT_INSERT:
    /*
      This routine is not designed for those. Lock will be downgraded
      but no start of waiters will occur. This is not the optimal but
      should be a correct behaviour.
    */
      break;
    case TL_WRITE_ALLOW_READ:
      DBUG_ASSERT(new_lock_type == TL_WRITE_ALLOW_WRITE);
      /*
        Previously writers were not allowed to start, now it is ok to
        start them again. Readers are already allowed so no reason to
        handle them.
      */
      start_writers= TRUE;
      break;
    default:
      DBUG_ASSERT(0);
      break;
  }
  if (start_writers)
  {
    /*
      At this time the only active writer can be ourselves. Thus we need
      not worry about that there are other concurrent write operations
      active on the table. Thus we only need to worry about starting
      waiting operations.
      We also only come here with TL_WRITE_ALLOW_WRITE as the new
      lock type, thus we can start other writers also of the same type.
      If we find a lock at exclusive level >= TL_WRITE_LOW_PRIORITY we
      don't start any more operations that would be mean those operations
      will have to wait for things started afterwards.
    */
    DBUG_ASSERT(new_lock_type == TL_WRITE_ALLOW_WRITE);
    for (data=lock->write_wait.data; data ; data= next)
    {
      /*
        All WRITE requests compatible with new lock type are also
        started
      */
      next= data->next;
      if (start_writers && data->type == new_lock_type)
      {
        pthread_cond_t *cond= data->cond;
        /*
          It is ok to start this waiter.
          Move from being first in wait queue to be last in write queue.
        */
        if (((*data->prev)= data->next))
          data->next->prev= data->prev;
        else
          lock->write_wait.last= data->prev;
        data->prev= lock->write.last;
        lock->write.last= &data->next;
        data->next= 0;
        check_locks(lock, "Started write lock after downgrade",0);
        data->cond= 0;
        pthread_cond_signal(cond);
      }
      else
      {
        /*
          We found an incompatible lock, we won't start any more write
          requests to avoid letting writers pass other writers in the
          queue.
        */
        start_writers= FALSE;
        if (data->type >= TL_WRITE_LOW_PRIORITY)
        {
          /*
            We have an exclusive writer in the queue so we won't start
            readers either.
          */
          start_readers= FALSE;
        }
      }
    }
  }
  if (start_readers)
  {
    DBUG_ASSERT(new_lock_type == TL_WRITE_ALLOW_WRITE ||
                new_lock_type == TL_WRITE_ALLOW_READ);
    /*
      When we come here we know that the write locks are
      TL_WRITE_ALLOW_WRITE or TL_WRITE_ALLOW_READ. This means that reads
      are ok
    */
    for (data=lock->read_wait.data; data ; data=next)
    {
      next= data->next;
      /*
        All reads are ok to start now except TL_READ_NO_INSERT when
        write lock is TL_WRITE_ALLOW_READ.
      */
      if (new_lock_type != TL_WRITE_ALLOW_READ ||
          data->type != TL_READ_NO_INSERT)
      {
        pthread_cond_t *cond= data->cond;
        if (((*data->prev)= data->next))
          data->next->prev= data->prev;
        else
          lock->read_wait.last= data->prev;
        data->prev= lock->read.last;
        lock->read.last= &data->next;
        data->next= 0;

        if (data->type == TL_READ_NO_INSERT)
          lock->read_no_write_count++;
        check_locks(lock, "Started read lock after downgrade",0);
        data->cond= 0;
        pthread_cond_signal(cond);
      }
    }
  }
  check_locks(lock,"after starting waiters after downgrading lock",0);
#endif
  pthread_mutex_unlock(&lock->mutex);
  DBUG_VOID_RETURN;
}
1359

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1360 1361 1362 1363 1364 1365 1366 1367
/* Upgrade a WRITE_DELAY lock to a WRITE_LOCK */

my_bool thr_upgrade_write_delay_lock(THR_LOCK_DATA *data)
{
  THR_LOCK *lock=data->lock;
  DBUG_ENTER("thr_upgrade_write_delay_lock");

  pthread_mutex_lock(&lock->mutex);
1368
  if (data->type == TL_UNLOCK || data->type >= TL_WRITE_LOW_PRIORITY)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1369 1370
  {
    pthread_mutex_unlock(&lock->mutex);
1371
    DBUG_RETURN(data->type == TL_UNLOCK);	/* Test if Aborted */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
  }
  check_locks(lock,"before upgrading lock",0);
  /* TODO:  Upgrade to TL_WRITE_CONCURRENT_INSERT in some cases */
  data->type=TL_WRITE;				/* Upgrade lock */

  /* Check if someone has given us the lock */
  if (!data->cond)
  {
    if (!lock->read.data)			/* No read locks */
    {						/* We have the lock */
      if (data->lock->get_status)
1383
	(*data->lock->get_status)(data->status_param, 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
      pthread_mutex_unlock(&lock->mutex);
      DBUG_RETURN(0);
    }

    if (((*data->prev)=data->next))		/* remove from lock-list */
      data->next->prev= data->prev;
    else
      lock->write.last=data->prev;

    if ((data->next=lock->write_wait.data))	/* Put first in lock_list */
      data->next->prev= &data->next;
    else
      lock->write_wait.last= &data->next;
    data->prev= &lock->write_wait.data;
    lock->write_wait.data=data;
    check_locks(lock,"upgrading lock",0);
  }
1401 1402 1403 1404
  else
  {
    check_locks(lock,"waiting for lock",0);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
  DBUG_RETURN(wait_for_lock(&lock->write_wait,data,1));
}


/* downgrade a WRITE lock to a WRITE_DELAY lock if there is pending locks */

my_bool thr_reschedule_write_lock(THR_LOCK_DATA *data)
{
  THR_LOCK *lock=data->lock;
  DBUG_ENTER("thr_reschedule_write_lock");

  pthread_mutex_lock(&lock->mutex);
  if (!lock->read_wait.data)			/* No waiting read locks */
  {
    pthread_mutex_unlock(&lock->mutex);
    DBUG_RETURN(0);
  }

  data->type=TL_WRITE_DELAYED;
  if (lock->update_status)
    (*lock->update_status)(data->status_param);
  if (((*data->prev)=data->next))		/* remove from lock-list */
    data->next->prev= data->prev;
  else
    lock->write.last=data->prev;

  if ((data->next=lock->write_wait.data))	/* Put first in lock_list */
    data->next->prev= &data->next;
  else
    lock->write_wait.last= &data->next;
  data->prev= &lock->write_wait.data;
  data->cond=get_cond();			/* This was zero */
  lock->write_wait.data=data;
  free_all_read_locks(lock,0);

  pthread_mutex_unlock(&lock->mutex);
  DBUG_RETURN(thr_upgrade_write_delay_lock(data));
}


#include <my_sys.h>

static void thr_print_lock(const char* name,struct st_lock_list *list)
{
  THR_LOCK_DATA *data,**prev;
  uint count=0;

  if (list->data)
  {
    printf("%-10s: ",name);
    prev= &list->data;
    for (data=list->data; data && count++ < MAX_LOCKS ; data=data->next)
    {
1458 1459
      printf("0x%lx (%lu:%d); ", (ulong) data, data->owner->info->thread_id,
             (int) data->type);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
      if (data->prev != prev)
	printf("\nWarning: prev didn't point at previous lock\n");
      prev= &data->next;
    }
    puts("");
    if (prev != list->last)
      printf("Warning: last didn't point at last lock\n");
  }
}

void thr_print_locks(void)
{
  LIST *list;
  uint count=0;

  pthread_mutex_lock(&THR_LOCK_lock);
  puts("Current locks:");
1477 1478
  for (list= thr_lock_thread_list; list && count++ < MAX_THREADS;
       list= list_rest(list))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1479 1480 1481
  {
    THR_LOCK *lock=(THR_LOCK*) list->data;
    VOID(pthread_mutex_lock(&lock->mutex));
1482
    printf("lock: 0x%lx:",(ulong) lock);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
    if ((lock->write_wait.data || lock->read_wait.data) &&
	(! lock->read.data && ! lock->write.data))
      printf(" WARNING: ");
    if (lock->write.data)
      printf(" write");
    if (lock->write_wait.data)
      printf(" write_wait");
    if (lock->read.data)
      printf(" read");
    if (lock->read_wait.data)
      printf(" read_wait");
    puts("");
    thr_print_lock("write",&lock->write);
    thr_print_lock("write_wait",&lock->write_wait);
    thr_print_lock("read",&lock->read);
    thr_print_lock("read_wait",&lock->read_wait);
    VOID(pthread_mutex_unlock(&lock->mutex));
    puts("");
  }
  fflush(stdout);
  pthread_mutex_unlock(&THR_LOCK_lock);
}

1506 1507 1508 1509 1510 1511
#endif /* THREAD */

/*****************************************************************************
** Test of thread locks
****************************************************************************/

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1512 1513
#ifdef MAIN

1514 1515
#ifdef THREAD

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
struct st_test {
  uint lock_nr;
  enum thr_lock_type lock_type;
};

THR_LOCK locks[5];			/* 4 locks */

struct st_test test_0[] = {{0,TL_READ}};	/* One lock */
struct st_test test_1[] = {{0,TL_READ},{0,TL_WRITE}}; /* Read and write lock of lock 0 */
struct st_test test_2[] = {{1,TL_WRITE},{0,TL_READ},{2,TL_READ}};
struct st_test test_3[] = {{2,TL_WRITE},{1,TL_READ},{0,TL_READ}}; /* Deadlock with test_2 ? */
struct st_test test_4[] = {{0,TL_WRITE},{0,TL_READ},{0,TL_WRITE},{0,TL_READ}};
struct st_test test_5[] = {{0,TL_READ},{1,TL_READ},{2,TL_READ},{3,TL_READ}}; /* Many reads */
struct st_test test_6[] = {{0,TL_WRITE},{1,TL_WRITE},{2,TL_WRITE},{3,TL_WRITE}}; /* Many writes */
struct st_test test_7[] = {{3,TL_READ}};
struct st_test test_8[] = {{1,TL_READ_NO_INSERT},{2,TL_READ_NO_INSERT},{3,TL_READ_NO_INSERT}};	/* Should be quick */
struct st_test test_9[] = {{4,TL_READ_HIGH_PRIORITY}};
struct st_test test_10[] ={{4,TL_WRITE}};
struct st_test test_11[] = {{0,TL_WRITE_LOW_PRIORITY},{1,TL_WRITE_LOW_PRIORITY},{2,TL_WRITE_LOW_PRIORITY},{3,TL_WRITE_LOW_PRIORITY}}; /* Many writes */
struct st_test test_12[] = {{0,TL_WRITE_ALLOW_READ},{1,TL_WRITE_ALLOW_READ},{2,TL_WRITE_ALLOW_READ},{3,TL_WRITE_ALLOW_READ}}; /* Many writes */
struct st_test test_13[] = {{0,TL_WRITE_CONCURRENT_INSERT},{1,TL_WRITE_CONCURRENT_INSERT},{2,TL_WRITE_CONCURRENT_INSERT},{3,TL_WRITE_CONCURRENT_INSERT}};
struct st_test test_14[] = {{0,TL_WRITE_CONCURRENT_INSERT},{1,TL_READ}};
struct st_test test_15[] = {{0,TL_WRITE_ALLOW_WRITE},{1,TL_READ}};
struct st_test test_16[] = {{0,TL_WRITE_ALLOW_WRITE},{1,TL_WRITE_ALLOW_WRITE}};

struct st_test *tests[] = {test_0,test_1,test_2,test_3,test_4,test_5,test_6,
			   test_7,test_8,test_9,test_10,test_11,test_12,
			   test_13,test_14,test_15,test_16};
int lock_counts[]= {sizeof(test_0)/sizeof(struct st_test),
		    sizeof(test_1)/sizeof(struct st_test),
		    sizeof(test_2)/sizeof(struct st_test),
		    sizeof(test_3)/sizeof(struct st_test),
		    sizeof(test_4)/sizeof(struct st_test),
		    sizeof(test_5)/sizeof(struct st_test),
		    sizeof(test_6)/sizeof(struct st_test),
		    sizeof(test_7)/sizeof(struct st_test),
		    sizeof(test_8)/sizeof(struct st_test),
		    sizeof(test_9)/sizeof(struct st_test),
		    sizeof(test_10)/sizeof(struct st_test),
		    sizeof(test_11)/sizeof(struct st_test),
		    sizeof(test_12)/sizeof(struct st_test),
		    sizeof(test_13)/sizeof(struct st_test),
		    sizeof(test_14)/sizeof(struct st_test),
		    sizeof(test_15)/sizeof(struct st_test),
		    sizeof(test_16)/sizeof(struct st_test)
};


static pthread_cond_t COND_thread_count;
static pthread_mutex_t LOCK_thread_count;
static uint thread_count;
static ulong sum=0;

#define MAX_LOCK_COUNT 8

/* The following functions is for WRITE_CONCURRENT_INSERT */

1573 1574
static void test_get_status(void* param __attribute__((unused)),
                            int concurrent_insert __attribute__((unused)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1575 1576 1577
{
}

1578 1579 1580 1581
static void test_update_status(void* param __attribute__((unused)))
{
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
static void test_copy_status(void* to __attribute__((unused)) ,
			     void *from __attribute__((unused)))
{
}

static my_bool test_check_status(void* param __attribute__((unused)))
{
  return 0;
}


static void *test_thread(void *arg)
{
  int i,j,param=*((int*) arg);
  THR_LOCK_DATA data[MAX_LOCK_COUNT];
1597 1598
  THR_LOCK_OWNER owner;
  THR_LOCK_INFO lock_info;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1599 1600 1601 1602 1603
  THR_LOCK_DATA *multi_locks[MAX_LOCK_COUNT];
  my_thread_init();

  printf("Thread %s (%d) started\n",my_thread_name(),param); fflush(stdout);

1604 1605 1606

  thr_lock_info_init(&lock_info);
  thr_lock_owner_init(&owner, &lock_info);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1607 1608 1609 1610 1611 1612 1613 1614 1615
  for (i=0; i < lock_counts[param] ; i++)
    thr_lock_data_init(locks+tests[param][i].lock_nr,data+i,NULL);
  for (j=1 ; j < 10 ; j++)		/* try locking 10 times */
  {
    for (i=0; i < lock_counts[param] ; i++)
    {					/* Init multi locks */
      multi_locks[i]= &data[i];
      data[i].type= tests[param][i].lock_type;
    }
1616
    thr_multi_lock(multi_locks, lock_counts[param], &owner);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634
    pthread_mutex_lock(&LOCK_thread_count);
    {
      int tmp=rand() & 7;			/* Do something from 0-2 sec */
      if (tmp == 0)
	sleep(1);
      else if (tmp == 1)
	sleep(2);
      else
      {
	ulong k;
	for (k=0 ; k < (ulong) (tmp-2)*100000L ; k++)
	  sum+=k;
      }
    }
    pthread_mutex_unlock(&LOCK_thread_count);
    thr_multi_unlock(multi_locks,lock_counts[param]);
  }

1635
  printf("Thread %s (%d) ended\n",my_thread_name(),param); fflush(stdout);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1636 1637 1638 1639 1640
  thr_print_locks();
  pthread_mutex_lock(&LOCK_thread_count);
  thread_count--;
  VOID(pthread_cond_signal(&COND_thread_count)); /* Tell main we are ready */
  pthread_mutex_unlock(&LOCK_thread_count);
1641
  free((uchar*) arg);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662
  return 0;
}


int main(int argc __attribute__((unused)),char **argv __attribute__((unused)))
{
  pthread_t tid;
  pthread_attr_t thr_attr;
  int i,*param,error;
  MY_INIT(argv[0]);
  if (argc > 1 && argv[1][0] == '-' && argv[1][1] == '#')
    DBUG_PUSH(argv[1]+2);

  printf("Main thread: %s\n",my_thread_name());

  if ((error=pthread_cond_init(&COND_thread_count,NULL)))
  {
    fprintf(stderr,"Got error: %d from pthread_cond_init (errno: %d)",
	    error,errno);
    exit(1);
  }
1663
  if ((error=pthread_mutex_init(&LOCK_thread_count,MY_MUTEX_INIT_FAST)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673
  {
    fprintf(stderr,"Got error: %d from pthread_cond_init (errno: %d)",
	    error,errno);
    exit(1);
  }

  for (i=0 ; i < (int) array_elements(locks) ; i++)
  {
    thr_lock_init(locks+i);
    locks[i].check_status= test_check_status;
1674
    locks[i].update_status=test_update_status;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744
    locks[i].copy_status=  test_copy_status;
    locks[i].get_status=   test_get_status;
  }
  if ((error=pthread_attr_init(&thr_attr)))
  {
    fprintf(stderr,"Got error: %d from pthread_attr_init (errno: %d)",
	    error,errno);
    exit(1);
  }
  if ((error=pthread_attr_setdetachstate(&thr_attr,PTHREAD_CREATE_DETACHED)))
  {
    fprintf(stderr,
	    "Got error: %d from pthread_attr_setdetachstate (errno: %d)",
	    error,errno);
    exit(1);
  }
#ifndef pthread_attr_setstacksize		/* void return value */
  if ((error=pthread_attr_setstacksize(&thr_attr,65536L)))
  {
    fprintf(stderr,"Got error: %d from pthread_attr_setstacksize (errno: %d)",
	    error,errno);
    exit(1);
  }
#endif
#ifdef HAVE_THR_SETCONCURRENCY
  VOID(thr_setconcurrency(2));
#endif
  for (i=0 ; i < (int) array_elements(lock_counts) ; i++)
  {
    param=(int*) malloc(sizeof(int));
    *param=i;

    if ((error=pthread_mutex_lock(&LOCK_thread_count)))
    {
      fprintf(stderr,"Got error: %d from pthread_mutex_lock (errno: %d)",
	      error,errno);
      exit(1);
    }
    if ((error=pthread_create(&tid,&thr_attr,test_thread,(void*) param)))
    {
      fprintf(stderr,"Got error: %d from pthread_create (errno: %d)\n",
	      error,errno);
      pthread_mutex_unlock(&LOCK_thread_count);
      exit(1);
    }
    thread_count++;
    pthread_mutex_unlock(&LOCK_thread_count);
  }

  pthread_attr_destroy(&thr_attr);
  if ((error=pthread_mutex_lock(&LOCK_thread_count)))
    fprintf(stderr,"Got error: %d from pthread_mutex_lock\n",error);
  while (thread_count)
  {
    if ((error=pthread_cond_wait(&COND_thread_count,&LOCK_thread_count)))
      fprintf(stderr,"Got error: %d from pthread_cond_wait\n",error);
  }
  if ((error=pthread_mutex_unlock(&LOCK_thread_count)))
    fprintf(stderr,"Got error: %d from pthread_mutex_unlock\n",error);
  for (i=0 ; i < (int) array_elements(locks) ; i++)
    thr_lock_delete(locks+i);
#ifdef EXTRA_DEBUG
  if (found_errors)
    printf("Got %d warnings\n",found_errors);
  else
#endif
    printf("Test succeeded\n");
  return 0;
}

1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
#else /* THREAD */

int main(int argc __attribute__((unused)),char **argv __attribute__((unused)))
{
  printf("thr_lock disabled because we are not using threads\n");
  exit(1);
}

#endif /* THREAD */
#endif /* MAIN */