exmutex.c 14.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8

/******************************************************************************
 *
 * Module Name: exmutex - ASL Mutex Acquire/Release functions
 *
 *****************************************************************************/

/*
B
Bob Moore 已提交
9
 * Copyright (C) 2000 - 2007, R. Byron Moore
L
Linus Torvalds 已提交
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
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
#include <acpi/acinterp.h>
47
#include <acpi/acevents.h>
L
Linus Torvalds 已提交
48 49

#define _COMPONENT          ACPI_EXECUTER
L
Len Brown 已提交
50
ACPI_MODULE_NAME("exmutex")
L
Linus Torvalds 已提交
51

R
Robert Moore 已提交
52 53
/* Local prototypes */
static void
L
Len Brown 已提交
54 55
acpi_ex_link_mutex(union acpi_operand_object *obj_desc,
		   struct acpi_thread_state *thread);
L
Linus Torvalds 已提交
56 57 58 59 60 61 62

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_unlink_mutex
 *
 * PARAMETERS:  obj_desc            - The mutex to be unlinked
 *
R
Robert Moore 已提交
63
 * RETURN:      None
L
Linus Torvalds 已提交
64
 *
B
Bob Moore 已提交
65
 * DESCRIPTION: Remove a mutex from the "AcquiredMutex" list
L
Linus Torvalds 已提交
66 67 68
 *
 ******************************************************************************/

69
void acpi_ex_unlink_mutex(union acpi_operand_object *obj_desc)
L
Linus Torvalds 已提交
70
{
71 72
	struct acpi_thread_state *thread = obj_desc->mutex.owner_thread;

L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82 83 84
	if (!thread) {
		return;
	}

	/* Doubly linked list */

	if (obj_desc->mutex.next) {
		(obj_desc->mutex.next)->mutex.prev = obj_desc->mutex.prev;
	}

	if (obj_desc->mutex.prev) {
		(obj_desc->mutex.prev)->mutex.next = obj_desc->mutex.next;
L
Len Brown 已提交
85
	} else {
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93
		thread->acquired_mutex_list = obj_desc->mutex.next;
	}
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_link_mutex
 *
R
Robert Moore 已提交
94 95
 * PARAMETERS:  obj_desc        - The mutex to be linked
 *              Thread          - Current executing thread object
L
Linus Torvalds 已提交
96
 *
R
Robert Moore 已提交
97
 * RETURN:      None
L
Linus Torvalds 已提交
98
 *
B
Bob Moore 已提交
99
 * DESCRIPTION: Add a mutex to the "AcquiredMutex" list for this walk
L
Linus Torvalds 已提交
100 101 102
 *
 ******************************************************************************/

R
Robert Moore 已提交
103
static void
L
Len Brown 已提交
104 105
acpi_ex_link_mutex(union acpi_operand_object *obj_desc,
		   struct acpi_thread_state *thread)
L
Linus Torvalds 已提交
106
{
L
Len Brown 已提交
107
	union acpi_operand_object *list_head;
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126

	list_head = thread->acquired_mutex_list;

	/* This object will be the first object in the list */

	obj_desc->mutex.prev = NULL;
	obj_desc->mutex.next = list_head;

	/* Update old first object to point back to this object */

	if (list_head) {
		list_head->mutex.prev = obj_desc;
	}

	/* Update list head */

	thread->acquired_mutex_list = obj_desc;
}

127 128 129 130 131 132 133 134 135 136
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_acquire_mutex_object
 *
 * PARAMETERS:  time_desc           - Timeout in milliseconds
 *              obj_desc            - Mutex object
 *              Thread              - Current thread state
 *
 * RETURN:      Status
 *
137 138 139 140 141 142 143 144 145 146
 * DESCRIPTION: Acquire an AML mutex, low-level interface. Provides a common
 *              path that supports multiple acquires by the same thread.
 *
 * MUTEX:       Interpreter must be locked
 *
 * NOTE: This interface is called from three places:
 * 1) From acpi_ex_acquire_mutex, via an AML Acquire() operator
 * 2) From acpi_ex_acquire_global_lock when an AML Field access requires the
 *    global lock
 * 3) From the external interface, acpi_acquire_global_lock
147 148 149 150 151 152 153 154 155 156 157 158
 *
 ******************************************************************************/

acpi_status
acpi_ex_acquire_mutex_object(u16 timeout,
			     union acpi_operand_object *obj_desc,
			     acpi_thread_id thread_id)
{
	acpi_status status;

	ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex_object, obj_desc);

159 160 161 162
	if (!obj_desc) {
		return_ACPI_STATUS(AE_BAD_PARAMETER);
	}

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
	/* Support for multiple acquires by the owning thread */

	if (obj_desc->mutex.thread_id == thread_id) {
		/*
		 * The mutex is already owned by this thread, just increment the
		 * acquisition depth
		 */
		obj_desc->mutex.acquisition_depth++;
		return_ACPI_STATUS(AE_OK);
	}

	/* Acquire the mutex, wait if necessary. Special case for Global Lock */

	if (obj_desc == acpi_gbl_global_lock_mutex) {
		status = acpi_ev_acquire_global_lock(timeout);
	} else {
		status = acpi_ex_system_wait_mutex(obj_desc->mutex.os_mutex,
						   timeout);
	}

	if (ACPI_FAILURE(status)) {

		/* Includes failure from a timeout on time_desc */

		return_ACPI_STATUS(status);
	}

190
	/* Acquired the mutex: update mutex object */
191 192 193 194 195 196 197 198 199

	obj_desc->mutex.thread_id = thread_id;
	obj_desc->mutex.acquisition_depth = 1;
	obj_desc->mutex.original_sync_level = 0;
	obj_desc->mutex.owner_thread = NULL;	/* Used only for AML Acquire() */

	return_ACPI_STATUS(AE_OK);
}

L
Linus Torvalds 已提交
200 201 202 203
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_acquire_mutex
 *
R
Robert Moore 已提交
204 205 206
 * PARAMETERS:  time_desc           - Timeout integer
 *              obj_desc            - Mutex object
 *              walk_state          - Current method execution state
L
Linus Torvalds 已提交
207 208 209 210 211 212 213 214
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Acquire an AML mutex
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
215 216 217
acpi_ex_acquire_mutex(union acpi_operand_object *time_desc,
		      union acpi_operand_object *obj_desc,
		      struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
218
{
L
Len Brown 已提交
219
	acpi_status status;
L
Linus Torvalds 已提交
220

B
Bob Moore 已提交
221
	ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex, obj_desc);
L
Linus Torvalds 已提交
222 223

	if (!obj_desc) {
L
Len Brown 已提交
224
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
225 226
	}

227
	/* Must have a valid thread ID */
L
Linus Torvalds 已提交
228 229

	if (!walk_state->thread) {
B
Bob Moore 已提交
230 231 232
		ACPI_ERROR((AE_INFO,
			    "Cannot acquire Mutex [%4.4s], null thread info",
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
L
Len Brown 已提交
233
		return_ACPI_STATUS(AE_AML_INTERNAL);
L
Linus Torvalds 已提交
234 235 236
	}

	/*
237
	 * Current sync level must be less than or equal to the sync level of the
B
Bob Moore 已提交
238
	 * mutex. This mechanism provides some deadlock prevention
L
Linus Torvalds 已提交
239 240
	 */
	if (walk_state->thread->current_sync_level > obj_desc->mutex.sync_level) {
B
Bob Moore 已提交
241
		ACPI_ERROR((AE_INFO,
B
Bob Moore 已提交
242 243 244
			    "Cannot acquire Mutex [%4.4s], current SyncLevel is too large (%d)",
			    acpi_ut_get_node_name(obj_desc->mutex.node),
			    walk_state->thread->current_sync_level));
L
Len Brown 已提交
245
		return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
L
Linus Torvalds 已提交
246 247
	}

248 249 250 251
	status = acpi_ex_acquire_mutex_object((u16) time_desc->integer.value,
					      obj_desc,
					      walk_state->thread->thread_id);
	if (ACPI_SUCCESS(status) && obj_desc->mutex.acquisition_depth == 1) {
252 253 254

		/* Save Thread object, original/current sync levels */

255 256 257 258 259
		obj_desc->mutex.owner_thread = walk_state->thread;
		obj_desc->mutex.original_sync_level =
		    walk_state->thread->current_sync_level;
		walk_state->thread->current_sync_level =
		    obj_desc->mutex.sync_level;
L
Linus Torvalds 已提交
260

261 262 263
		/* Link the mutex to the current thread for force-unlock at method exit */

		acpi_ex_link_mutex(obj_desc, walk_state->thread);
L
Linus Torvalds 已提交
264 265
	}

266 267
	return_ACPI_STATUS(status);
}
268

269 270 271 272 273 274 275 276 277
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_mutex_object
 *
 * PARAMETERS:  obj_desc            - The object descriptor for this op
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Release a previously acquired Mutex, low level interface.
278 279 280 281 282 283 284 285 286 287
 *              Provides a common path that supports multiple releases (after
 *              previous multiple acquires) by the same thread.
 *
 * MUTEX:       Interpreter must be locked
 *
 * NOTE: This interface is called from three places:
 * 1) From acpi_ex_release_mutex, via an AML Acquire() operator
 * 2) From acpi_ex_release_global_lock when an AML Field access requires the
 *    global lock
 * 3) From the external interface, acpi_release_global_lock
288 289
 *
 ******************************************************************************/
L
Linus Torvalds 已提交
290

291 292 293
acpi_status acpi_ex_release_mutex_object(union acpi_operand_object *obj_desc)
{
	acpi_status status = AE_OK;
B
Bob Moore 已提交
294

295
	ACPI_FUNCTION_TRACE(ex_release_mutex_object);
L
Linus Torvalds 已提交
296

297 298 299 300
	if (obj_desc->mutex.acquisition_depth == 0) {
		return (AE_NOT_ACQUIRED);
	}

301 302 303 304 305 306 307 308
	/* Match multiple Acquires with multiple Releases */

	obj_desc->mutex.acquisition_depth--;
	if (obj_desc->mutex.acquisition_depth != 0) {

		/* Just decrement the depth and return */

		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
309 310
	}

311
	if (obj_desc->mutex.owner_thread) {
L
Linus Torvalds 已提交
312

313 314 315 316 317
		/* Unlink the mutex from the owner's list */

		acpi_ex_unlink_mutex(obj_desc);
		obj_desc->mutex.owner_thread = NULL;
	}
L
Linus Torvalds 已提交
318

319
	/* Release the mutex, special case for Global Lock */
L
Linus Torvalds 已提交
320

321 322 323 324 325
	if (obj_desc == acpi_gbl_global_lock_mutex) {
		status = acpi_ev_release_global_lock();
	} else {
		acpi_os_release_mutex(obj_desc->mutex.os_mutex);
	}
L
Linus Torvalds 已提交
326

327 328
	/* Clear mutex info */

329 330
	obj_desc->mutex.thread_id = 0;
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
331 332 333 334 335 336 337
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_mutex
 *
 * PARAMETERS:  obj_desc            - The object descriptor for this op
R
Robert Moore 已提交
338
 *              walk_state          - Current method execution state
L
Linus Torvalds 已提交
339 340 341 342 343 344 345 346
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Release a previously acquired Mutex.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
347 348
acpi_ex_release_mutex(union acpi_operand_object *obj_desc,
		      struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
349
{
350
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
351

B
Bob Moore 已提交
352
	ACPI_FUNCTION_TRACE(ex_release_mutex);
L
Linus Torvalds 已提交
353 354

	if (!obj_desc) {
L
Len Brown 已提交
355
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
356 357 358 359
	}

	/* The mutex must have been previously acquired in order to release it */

360
	if (!obj_desc->mutex.owner_thread) {
B
Bob Moore 已提交
361 362 363
		ACPI_ERROR((AE_INFO,
			    "Cannot release Mutex [%4.4s], not acquired",
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
L
Len Brown 已提交
364
		return_ACPI_STATUS(AE_AML_MUTEX_NOT_ACQUIRED);
L
Linus Torvalds 已提交
365 366 367 368 369 370
	}

	/*
	 * The Mutex is owned, but this thread must be the owner.
	 * Special case for Global Lock, any thread can release
	 */
371
	if ((obj_desc->mutex.owner_thread->thread_id !=
L
Len Brown 已提交
372
	     walk_state->thread->thread_id)
373
	    && (obj_desc != acpi_gbl_global_lock_mutex)) {
B
Bob Moore 已提交
374
		ACPI_ERROR((AE_INFO,
375 376
			    "Thread %lX cannot release Mutex [%4.4s] acquired by thread %lX",
			    (unsigned long)walk_state->thread->thread_id,
B
Bob Moore 已提交
377
			    acpi_ut_get_node_name(obj_desc->mutex.node),
L
Len Brown 已提交
378 379
			    (unsigned long)obj_desc->mutex.owner_thread->
			    thread_id));
L
Len Brown 已提交
380
		return_ACPI_STATUS(AE_AML_NOT_OWNER);
L
Linus Torvalds 已提交
381 382
	}

383
	/* Must have a valid thread ID */
384 385 386 387 388 389 390 391

	if (!walk_state->thread) {
		ACPI_ERROR((AE_INFO,
			    "Cannot release Mutex [%4.4s], null thread info",
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
		return_ACPI_STATUS(AE_AML_INTERNAL);
	}

L
Linus Torvalds 已提交
392
	/*
393 394
	 * The sync level of the mutex must be less than or equal to the current
	 * sync level
L
Linus Torvalds 已提交
395 396
	 */
	if (obj_desc->mutex.sync_level > walk_state->thread->current_sync_level) {
B
Bob Moore 已提交
397
		ACPI_ERROR((AE_INFO,
398 399 400 401
			    "Cannot release Mutex [%4.4s], SyncLevel mismatch: mutex %d current %d",
			    acpi_ut_get_node_name(obj_desc->mutex.node),
			    obj_desc->mutex.sync_level,
			    walk_state->thread->current_sync_level));
L
Len Brown 已提交
402
		return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
L
Linus Torvalds 已提交
403 404
	}

405
	status = acpi_ex_release_mutex_object(obj_desc);
L
Linus Torvalds 已提交
406

407
	if (obj_desc->mutex.acquisition_depth == 0) {
L
Linus Torvalds 已提交
408

409 410 411 412 413
		/* Restore the original sync_level */

		walk_state->thread->current_sync_level =
		    obj_desc->mutex.original_sync_level;
	}
L
Len Brown 已提交
414
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
415 416 417 418 419 420
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_all_mutexes
 *
R
Robert Moore 已提交
421
 * PARAMETERS:  Thread          - Current executing thread object
L
Linus Torvalds 已提交
422 423 424
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
425
 * DESCRIPTION: Release all mutexes held by this thread
L
Linus Torvalds 已提交
426
 *
427 428 429 430 431 432
 * NOTE: This function is called as the thread is exiting the interpreter.
 * Mutexes are not released when an individual control method is exited, but
 * only when the parent thread actually exits the interpreter. This allows one
 * method to acquire a mutex, and a different method to release it, as long as
 * this is performed underneath a single parent control method.
 *
L
Linus Torvalds 已提交
433 434
 ******************************************************************************/

L
Len Brown 已提交
435
void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread)
L
Linus Torvalds 已提交
436
{
L
Len Brown 已提交
437
	union acpi_operand_object *next = thread->acquired_mutex_list;
438
	union acpi_operand_object *obj_desc;
L
Linus Torvalds 已提交
439

L
Len Brown 已提交
440
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
441 442 443 444

	/* Traverse the list of owned mutexes, releasing each one */

	while (next) {
445 446 447 448 449
		obj_desc = next;
		next = obj_desc->mutex.next;

		obj_desc->mutex.prev = NULL;
		obj_desc->mutex.next = NULL;
450
		obj_desc->mutex.acquisition_depth = 0;
451 452

		/* Release the mutex, special case for Global Lock */
L
Linus Torvalds 已提交
453

454
		if (obj_desc == acpi_gbl_global_lock_mutex) {
L
Linus Torvalds 已提交
455

456
			/* Ignore errors */
L
Linus Torvalds 已提交
457

458 459 460
			(void)acpi_ev_release_global_lock();
		} else {
			acpi_os_release_mutex(obj_desc->mutex.os_mutex);
L
Linus Torvalds 已提交
461 462 463 464
		}

		/* Mark mutex unowned */

465
		obj_desc->mutex.owner_thread = NULL;
466
		obj_desc->mutex.thread_id = 0;
L
Linus Torvalds 已提交
467 468 469

		/* Update Thread sync_level (Last mutex is the important one) */

470 471
		thread->current_sync_level =
		    obj_desc->mutex.original_sync_level;
L
Linus Torvalds 已提交
472 473
	}
}