blob: 118f3ff1fbb55bd9a1f98ac19c455f299fd38cde [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*******************************************************************************
3 *
4 * Module Name: utdelete - object deletion and reference count utilities
5 *
6 ******************************************************************************/
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -05009#include "accommon.h"
10#include "acinterp.h"
11#include "acnamesp.h"
12#include "acevents.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040015ACPI_MODULE_NAME("utdelete")
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Robert Moore44f6c012005-04-18 22:49:35 -040017/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040018static void acpi_ut_delete_internal_obj(union acpi_operand_object *object);
Robert Moore44f6c012005-04-18 22:49:35 -040019
20static void
Len Brown4be44fc2005-08-05 00:44:28 -040021acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23/*******************************************************************************
24 *
25 * FUNCTION: acpi_ut_delete_internal_obj
26 *
Bob Mooreba494be2012-07-12 09:40:10 +080027 * PARAMETERS: object - Object to be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
29 * RETURN: None
30 *
31 * DESCRIPTION: Low level object deletion, after reference counts have been
32 * updated (All reference counts, including sub-objects!)
33 *
34 ******************************************************************************/
35
Len Brown4be44fc2005-08-05 00:44:28 -040036static void acpi_ut_delete_internal_obj(union acpi_operand_object *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Len Brown4be44fc2005-08-05 00:44:28 -040038 void *obj_pointer = NULL;
39 union acpi_operand_object *handler_desc;
40 union acpi_operand_object *second_desc;
41 union acpi_operand_object *next_desc;
Bob Mooref9535292014-02-26 10:33:47 +080042 union acpi_operand_object *start_desc;
Lin Ming3362a6b2009-05-21 11:03:29 +080043 union acpi_operand_object **last_obj_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Bob Mooreb229cf92006-04-21 17:15:00 -040045 ACPI_FUNCTION_TRACE_PTR(ut_delete_internal_obj, object);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 if (!object) {
48 return_VOID;
49 }
50
51 /*
52 * Must delete or free any pointers within the object that are not
53 * actual ACPI objects (for example, a raw buffer pointer).
54 */
Bob Moore3371c192009-02-18 14:44:03 +080055 switch (object->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 case ACPI_TYPE_STRING:
57
Len Brown4be44fc2005-08-05 00:44:28 -040058 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
59 "**** String %p, ptr %p\n", object,
60 object->string.pointer));
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 /* Free the actual string buffer */
63
64 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) {
Bob Moore52fc0b02006-10-02 00:00:00 -040065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 /* But only if it is NOT a pointer into an ACPI table */
67
68 obj_pointer = object->string.pointer;
69 }
70 break;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 case ACPI_TYPE_BUFFER:
73
Len Brown4be44fc2005-08-05 00:44:28 -040074 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
75 "**** Buffer %p, ptr %p\n", object,
76 object->buffer.pointer));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 /* Free the actual buffer */
79
80 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) {
Bob Moore52fc0b02006-10-02 00:00:00 -040081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 /* But only if it is NOT a pointer into an ACPI table */
83
84 obj_pointer = object->buffer.pointer;
85 }
86 break;
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 case ACPI_TYPE_PACKAGE:
89
Len Brown4be44fc2005-08-05 00:44:28 -040090 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
91 " **** Package of count %X\n",
92 object->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 /*
95 * Elements of the package are not handled here, they are deleted
96 * separately
97 */
98
99 /* Free the (variable length) element pointer array */
100
101 obj_pointer = object->package.elements;
102 break;
103
Bob Moore2843ae72008-07-04 10:41:41 +0800104 /*
105 * These objects have a possible list of notify handlers.
106 * Device object also may have a GPE block.
107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 case ACPI_TYPE_DEVICE:
109
110 if (object->device.gpe_block) {
Len Brown4be44fc2005-08-05 00:44:28 -0400111 (void)acpi_ev_delete_gpe_block(object->device.
112 gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
Bob Moore2843ae72008-07-04 10:41:41 +0800115 /*lint -fallthrough */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Bob Moore2843ae72008-07-04 10:41:41 +0800117 case ACPI_TYPE_PROCESSOR:
118 case ACPI_TYPE_THERMAL:
119
Bob Moore86ed4bc2012-05-03 11:08:19 +0800120 /* Walk the address handler list for this object */
Bob Moore2843ae72008-07-04 10:41:41 +0800121
122 handler_desc = object->common_notify.handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 while (handler_desc) {
124 next_desc = handler_desc->address_space.next;
Len Brown4be44fc2005-08-05 00:44:28 -0400125 acpi_ut_remove_reference(handler_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 handler_desc = next_desc;
127 }
128 break;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 case ACPI_TYPE_MUTEX:
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
Bob Moore967440e32006-06-23 17:04:00 -0400133 "***** Mutex %p, OS Mutex %p\n",
134 object, object->mutex.os_mutex));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Bob Mooreba886cd2008-04-10 19:06:37 +0400136 if (object == acpi_gbl_global_lock_mutex) {
Bob Moorec81da662007-02-02 19:48:18 +0300137
138 /* Global Lock has extra semaphore */
Bob Moore967440e32006-06-23 17:04:00 -0400139
140 (void)
141 acpi_os_delete_semaphore
142 (acpi_gbl_global_lock_semaphore);
143 acpi_gbl_global_lock_semaphore = NULL;
Bob Moorec81da662007-02-02 19:48:18 +0300144
145 acpi_os_delete_mutex(object->mutex.os_mutex);
146 acpi_gbl_global_lock_mutex = NULL;
147 } else {
Len Brown262a7a22007-05-09 23:01:59 -0400148 acpi_ex_unlink_mutex(object);
Bob Moorec81da662007-02-02 19:48:18 +0300149 acpi_os_delete_mutex(object->mutex.os_mutex);
Bob Moore967440e32006-06-23 17:04:00 -0400150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 break;
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 case ACPI_TYPE_EVENT:
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
Bob Moore967440e32006-06-23 17:04:00 -0400156 "***** Event %p, OS Semaphore %p\n",
157 object, object->event.os_semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Bob Moore967440e32006-06-23 17:04:00 -0400159 (void)acpi_os_delete_semaphore(object->event.os_semaphore);
160 object->event.os_semaphore = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 break;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 case ACPI_TYPE_METHOD:
164
Len Brown4be44fc2005-08-05 00:44:28 -0400165 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
166 "***** Method %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Bob Moore967440e32006-06-23 17:04:00 -0400168 /* Delete the method mutex if it exists */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Bob Moore967440e32006-06-23 17:04:00 -0400170 if (object->method.mutex) {
171 acpi_os_delete_mutex(object->method.mutex->mutex.
172 os_mutex);
173 acpi_ut_delete_object_desc(object->method.mutex);
174 object->method.mutex = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
Bob Moore1fad8732015-12-29 13:54:36 +0800176
Lv Zheng07b9c912015-07-23 12:52:31 +0800177 if (object->method.node) {
178 object->method.node = NULL;
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 break;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 case ACPI_TYPE_REGION:
183
Len Brown4be44fc2005-08-05 00:44:28 -0400184 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
185 "***** Region %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Lin Mingf654c0f2012-01-12 13:10:32 +0800187 /*
188 * Update address_range list. However, only permanent regions
189 * are installed in this list. (Not created within a method)
190 */
191 if (!(object->region.node->flags & ANOBJ_TEMPORARY)) {
192 acpi_ut_remove_address_range(object->region.space_id,
193 object->region.node);
194 }
Lin Minga5fe1a02009-08-13 10:43:27 +0800195
Len Brown4be44fc2005-08-05 00:44:28 -0400196 second_desc = acpi_ns_get_secondary_object(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (second_desc) {
198 /*
199 * Free the region_context if and only if the handler is one of the
200 * default handlers -- and therefore, we created the context object
201 * locally, it was not created by an external caller.
202 */
203 handler_desc = object->region.handler;
204 if (handler_desc) {
Lin Ming3362a6b2009-05-21 11:03:29 +0800205 next_desc =
206 handler_desc->address_space.region_list;
Bob Mooref9535292014-02-26 10:33:47 +0800207 start_desc = next_desc;
Lin Ming3362a6b2009-05-21 11:03:29 +0800208 last_obj_ptr =
209 &handler_desc->address_space.region_list;
210
Bob Mooref9535292014-02-26 10:33:47 +0800211 /* Remove the region object from the handler list */
Lin Ming3362a6b2009-05-21 11:03:29 +0800212
213 while (next_desc) {
214 if (next_desc == object) {
215 *last_obj_ptr =
216 next_desc->region.next;
217 break;
218 }
219
Bob Mooref9535292014-02-26 10:33:47 +0800220 /* Walk the linked list of handlers */
Lin Ming3362a6b2009-05-21 11:03:29 +0800221
222 last_obj_ptr = &next_desc->region.next;
223 next_desc = next_desc->region.next;
Bob Mooref9535292014-02-26 10:33:47 +0800224
225 /* Prevent infinite loop if list is corrupted */
226
227 if (next_desc == start_desc) {
228 ACPI_ERROR((AE_INFO,
229 "Circular region list in address handler object %p",
230 handler_desc));
231 return_VOID;
232 }
Lin Ming3362a6b2009-05-21 11:03:29 +0800233 }
234
Bob Moore616861242006-03-17 16:44:00 -0500235 if (handler_desc->address_space.handler_flags &
Len Brown4be44fc2005-08-05 00:44:28 -0400236 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED) {
Bob Moore793c2382006-03-31 00:00:00 -0500237
238 /* Deactivate region and free region context */
239
240 if (handler_desc->address_space.setup) {
241 (void)handler_desc->
242 address_space.setup(object,
243 ACPI_REGION_DEACTIVATE,
244 handler_desc->
245 address_space.
246 context,
247 &second_desc->
248 extra.
249 region_context);
250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
Len Brown4be44fc2005-08-05 00:44:28 -0400253 acpi_ut_remove_reference(handler_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
256 /* Now we can free the Extra object */
257
Len Brown4be44fc2005-08-05 00:44:28 -0400258 acpi_ut_delete_object_desc(second_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260 break;
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 case ACPI_TYPE_BUFFER_FIELD:
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
265 "***** Buffer Field %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Len Brown4be44fc2005-08-05 00:44:28 -0400267 second_desc = acpi_ns_get_secondary_object(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (second_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400269 acpi_ut_delete_object_desc(second_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271 break;
272
Lin Mingef805d92008-04-10 19:06:41 +0400273 case ACPI_TYPE_LOCAL_BANK_FIELD:
274
275 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
276 "***** Bank Field %p\n", object));
277
278 second_desc = acpi_ns_get_secondary_object(object);
279 if (second_desc) {
280 acpi_ut_delete_object_desc(second_desc);
281 }
282 break;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 break;
287 }
288
289 /* Free any allocated memory (pointer within the object) found above */
290
291 if (obj_pointer) {
Len Brown4be44fc2005-08-05 00:44:28 -0400292 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
293 "Deleting Object Subptr %p\n", obj_pointer));
Bob Moore83135242006-10-03 00:00:00 -0400294 ACPI_FREE(obj_pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296
297 /* Now the object can be safely deleted */
298
Bob Moore1ef63232018-02-15 13:09:28 -0800299 ACPI_DEBUG_PRINT_RAW((ACPI_DB_ALLOCATIONS,
300 "%s: Deleting Object %p [%s]\n",
301 ACPI_GET_FUNCTION_NAME, object,
302 acpi_ut_get_object_type_name(object)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 acpi_ut_delete_object_desc(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return_VOID;
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*******************************************************************************
309 *
310 * FUNCTION: acpi_ut_delete_internal_object_list
311 *
Robert Moore44f6c012005-04-18 22:49:35 -0400312 * PARAMETERS: obj_list - Pointer to the list to be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 *
314 * RETURN: None
315 *
316 * DESCRIPTION: This function deletes an internal object list, including both
317 * simple objects and package objects
318 *
319 ******************************************************************************/
320
Len Brown4be44fc2005-08-05 00:44:28 -0400321void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Len Brown4be44fc2005-08-05 00:44:28 -0400323 union acpi_operand_object **internal_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Bob Moorec8d586f2012-12-31 00:05:39 +0000325 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 /* Walk the null-terminated internal list */
328
329 for (internal_obj = obj_list; *internal_obj; internal_obj++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400330 acpi_ut_remove_reference(*internal_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332
333 /* Free the combined parameter pointer list and object array */
334
Bob Moore83135242006-10-03 00:00:00 -0400335 ACPI_FREE(obj_list);
Bob Moore0e770b32012-12-19 05:37:59 +0000336 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/*******************************************************************************
340 *
341 * FUNCTION: acpi_ut_update_ref_count
342 *
Bob Mooreba494be2012-07-12 09:40:10 +0800343 * PARAMETERS: object - Object whose ref count is to be updated
Bob Moore58892c92013-04-12 00:25:41 +0000344 * action - What to do (REF_INCREMENT or REF_DECREMENT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 *
Bob Moore58892c92013-04-12 00:25:41 +0000346 * RETURN: None. Sets new reference count within the object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 *
Bob Moore58892c92013-04-12 00:25:41 +0000348 * DESCRIPTION: Modify the reference count for an internal acpi object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 *
350 ******************************************************************************/
351
352static void
Len Brown4be44fc2005-08-05 00:44:28 -0400353acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Bob Moore58892c92013-04-12 00:25:41 +0000355 u16 original_count;
356 u16 new_count = 0;
357 acpi_cpu_flags lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Bob Mooreb229cf92006-04-21 17:15:00 -0400359 ACPI_FUNCTION_NAME(ut_update_ref_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 if (!object) {
362 return;
363 }
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /*
Bob Moore58892c92013-04-12 00:25:41 +0000366 * Always get the reference count lock. Note: Interpreter and/or
367 * Namespace is not always locked when this function is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 */
Bob Moore58892c92013-04-12 00:25:41 +0000369 lock_flags = acpi_os_acquire_lock(acpi_gbl_reference_count_lock);
370 original_count = object->common.reference_count;
371
372 /* Perform the reference count action (increment, decrement) */
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 case REF_INCREMENT:
376
Bob Moore58892c92013-04-12 00:25:41 +0000377 new_count = original_count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 object->common.reference_count = new_count;
Bob Moore58892c92013-04-12 00:25:41 +0000379 acpi_os_release_lock(acpi_gbl_reference_count_lock, lock_flags);
380
381 /* The current reference count should never be zero here */
382
383 if (!original_count) {
384 ACPI_WARNING((AE_INFO,
385 "Obj %p, Reference Count was zero before increment\n",
386 object));
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Len Brown4be44fc2005-08-05 00:44:28 -0400389 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
Bob Moore7225d042016-12-28 15:29:22 +0800390 "Obj %p Type %.2X [%s] Refs %.2X [Incremented]\n",
391 object, object->common.type,
392 acpi_ut_get_object_type_name(object),
393 new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 break;
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 case REF_DECREMENT:
397
Bob Moore58892c92013-04-12 00:25:41 +0000398 /* The current reference count must be non-zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Bob Moore58892c92013-04-12 00:25:41 +0000400 if (original_count) {
401 new_count = original_count - 1;
402 object->common.reference_count = new_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
Bob Moore58892c92013-04-12 00:25:41 +0000405 acpi_os_release_lock(acpi_gbl_reference_count_lock, lock_flags);
406
407 if (!original_count) {
408 ACPI_WARNING((AE_INFO,
409 "Obj %p, Reference Count is already zero, cannot decrement\n",
410 object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
Bob Moore1ef63232018-02-15 13:09:28 -0800413 ACPI_DEBUG_PRINT_RAW((ACPI_DB_ALLOCATIONS,
414 "%s: Obj %p Type %.2X Refs %.2X [Decremented]\n",
415 ACPI_GET_FUNCTION_NAME, object,
416 object->common.type, new_count));
Bob Moore58892c92013-04-12 00:25:41 +0000417
418 /* Actually delete the object on a reference count of zero */
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (new_count == 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400421 acpi_ut_delete_internal_obj(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 break;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 default:
426
Bob Moore58892c92013-04-12 00:25:41 +0000427 acpi_os_release_lock(acpi_gbl_reference_count_lock, lock_flags);
428 ACPI_ERROR((AE_INFO, "Unknown Reference Count action (0x%X)",
429 action));
430 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
433 /*
434 * Sanity check the reference count, for debug purposes only.
435 * (A deleted object will have a huge reference count)
436 */
Bob Moore58892c92013-04-12 00:25:41 +0000437 if (new_count > ACPI_MAX_REFERENCE_COUNT) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500438 ACPI_WARNING((AE_INFO,
Bob Moore58892c92013-04-12 00:25:41 +0000439 "Large Reference Count (0x%X) in object %p, Type=0x%.2X",
440 new_count, object, object->common.type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/*******************************************************************************
445 *
446 * FUNCTION: acpi_ut_update_object_reference
447 *
Bob Mooreba494be2012-07-12 09:40:10 +0800448 * PARAMETERS: object - Increment ref count for this object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * and all sub-objects
Bob Moore60f3deb2013-04-12 00:25:29 +0000450 * action - Either REF_INCREMENT or REF_DECREMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 *
452 * RETURN: Status
453 *
454 * DESCRIPTION: Increment the object reference count
455 *
456 * Object references are incremented when:
457 * 1) An object is attached to a Node (namespace object)
458 * 2) An object is copied (all subobjects must be incremented)
459 *
460 * Object references are decremented when:
461 * 1) An object is detached from an Node
462 *
463 ******************************************************************************/
464
465acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400466acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Len Brown4be44fc2005-08-05 00:44:28 -0400468 acpi_status status = AE_OK;
469 union acpi_generic_state *state_list = NULL;
470 union acpi_operand_object *next_object = NULL;
Bob Moore86ed4bc2012-05-03 11:08:19 +0800471 union acpi_operand_object *prev_object;
Len Brown4be44fc2005-08-05 00:44:28 -0400472 union acpi_generic_state *state;
Bob Moore67a119f2008-06-10 13:42:13 +0800473 u32 i;
David Shaohua Li4c3ffbd2005-07-14 00:00:00 -0400474
Bob Moore0e770b32012-12-19 05:37:59 +0000475 ACPI_FUNCTION_NAME(ut_update_object_reference);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Robert Mooref9f46012005-07-08 00:00:00 -0400477 while (object) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400478
Robert Mooref9f46012005-07-08 00:00:00 -0400479 /* Make sure that this isn't a namespace handle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Len Brown4be44fc2005-08-05 00:44:28 -0400481 if (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED) {
482 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
483 "Object %p is NS handle\n", object));
Bob Moore0e770b32012-12-19 05:37:59 +0000484 return (AE_OK);
Robert Mooref9f46012005-07-08 00:00:00 -0400485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 /*
Bob Moore1fad8732015-12-29 13:54:36 +0800488 * All sub-objects must have their reference count incremented
489 * also. Different object types have different subobjects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 */
Bob Moore3371c192009-02-18 14:44:03 +0800491 switch (object->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 case ACPI_TYPE_DEVICE:
Bob Mooref6dd9222006-07-07 20:44:38 -0400493 case ACPI_TYPE_PROCESSOR:
494 case ACPI_TYPE_POWER:
495 case ACPI_TYPE_THERMAL:
Bob Moore86ed4bc2012-05-03 11:08:19 +0800496 /*
497 * Update the notify objects for these types (if present)
498 * Two lists, system and device notify handlers.
499 */
500 for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++) {
501 prev_object =
502 object->common_notify.notify_list[i];
503 while (prev_object) {
504 next_object =
505 prev_object->notify.next[i];
506 acpi_ut_update_ref_count(prev_object,
507 action);
508 prev_object = next_object;
509 }
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 case ACPI_TYPE_PACKAGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /*
Robert Mooref9f46012005-07-08 00:00:00 -0400515 * We must update all the sub-objects of the package,
516 * each of whom may have their own sub-objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
518 for (i = 0; i < object->package.count; i++) {
519 /*
Chao Guan53938552012-12-19 05:37:53 +0000520 * Null package elements are legal and can be simply
521 * ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 */
Chao Guan53938552012-12-19 05:37:53 +0000523 next_object = object->package.elements[i];
524 if (!next_object) {
525 continue;
526 }
527
528 switch (next_object->common.type) {
529 case ACPI_TYPE_INTEGER:
530 case ACPI_TYPE_STRING:
531 case ACPI_TYPE_BUFFER:
532 /*
533 * For these very simple sub-objects, we can just
534 * update the reference count here and continue.
535 * Greatly increases performance of this operation.
536 */
537 acpi_ut_update_ref_count(next_object,
538 action);
539 break;
540
541 default:
542 /*
543 * For complex sub-objects, push them onto the stack
544 * for later processing (this eliminates recursion.)
545 */
546 status =
547 acpi_ut_create_update_state_and_push
548 (next_object, action, &state_list);
549 if (ACPI_FAILURE(status)) {
550 goto error_exit;
551 }
552 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Chao Guan53938552012-12-19 05:37:53 +0000555 next_object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 break;
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 case ACPI_TYPE_BUFFER_FIELD:
559
Robert Mooref9f46012005-07-08 00:00:00 -0400560 next_object = object->buffer_field.buffer_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 break;
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 case ACPI_TYPE_LOCAL_REGION_FIELD:
564
Robert Mooref9f46012005-07-08 00:00:00 -0400565 next_object = object->field.region_obj;
566 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 case ACPI_TYPE_LOCAL_BANK_FIELD:
569
Robert Mooref9f46012005-07-08 00:00:00 -0400570 next_object = object->bank_field.bank_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400571 status =
572 acpi_ut_create_update_state_and_push(object->
573 bank_field.
574 region_obj,
575 action,
576 &state_list);
577 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 goto error_exit;
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 break;
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 case ACPI_TYPE_LOCAL_INDEX_FIELD:
583
Robert Mooref9f46012005-07-08 00:00:00 -0400584 next_object = object->index_field.index_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400585 status =
586 acpi_ut_create_update_state_and_push(object->
587 index_field.
588 data_obj,
589 action,
590 &state_list);
591 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 goto error_exit;
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 case ACPI_TYPE_LOCAL_REFERENCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /*
Bob Moore9e41d932008-04-10 19:06:39 +0400598 * The target of an Index (a package, string, or buffer) or a named
599 * reference must track changes to the ref count of the index or
600 * target object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 */
Bob Moore1044f1f2008-09-27 11:08:41 +0800602 if ((object->reference.class == ACPI_REFCLASS_INDEX) ||
603 (object->reference.class == ACPI_REFCLASS_NAME)) {
Robert Mooref9f46012005-07-08 00:00:00 -0400604 next_object = object->reference.object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606 break;
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 case ACPI_TYPE_REGION:
609 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000610
Bob Moore41195322006-05-26 16:36:00 -0400611 break; /* No subobjects for all other types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613
614 /*
Bob Moore41195322006-05-26 16:36:00 -0400615 * Now we can update the count in the main object. This can only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * happen after we update the sub-objects in case this causes the
617 * main object to be deleted.
618 */
Len Brown4be44fc2005-08-05 00:44:28 -0400619 acpi_ut_update_ref_count(object, action);
Robert Mooref9f46012005-07-08 00:00:00 -0400620 object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /* Move on to the next object to be updated */
623
Robert Mooref9f46012005-07-08 00:00:00 -0400624 if (next_object) {
625 object = next_object;
626 next_object = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400627 } else if (state_list) {
628 state = acpi_ut_pop_generic_state(&state_list);
Robert Mooref9f46012005-07-08 00:00:00 -0400629 object = state->update.object;
Len Brown4be44fc2005-08-05 00:44:28 -0400630 acpi_ut_delete_generic_state(state);
Robert Mooref9f46012005-07-08 00:00:00 -0400631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
Bob Moore0e770b32012-12-19 05:37:59 +0000634 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Lv Zheng10622bf2013-10-29 09:30:02 +0800636error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Bob Mooreb8e4d892006-01-27 16:43:00 -0500638 ACPI_EXCEPTION((AE_INFO, status,
639 "Could not update object reference count"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Lin Mingcf058bd2008-09-27 11:29:57 +0800641 /* Free any stacked Update State objects */
642
643 while (state_list) {
644 state = acpi_ut_pop_generic_state(&state_list);
645 acpi_ut_delete_generic_state(state);
646 }
647
Bob Moore0e770b32012-12-19 05:37:59 +0000648 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/*******************************************************************************
652 *
653 * FUNCTION: acpi_ut_add_reference
654 *
Bob Mooreba494be2012-07-12 09:40:10 +0800655 * PARAMETERS: object - Object whose reference count is to be
Robert Moore44f6c012005-04-18 22:49:35 -0400656 * incremented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 *
658 * RETURN: None
659 *
660 * DESCRIPTION: Add one reference to an ACPI object
661 *
662 ******************************************************************************/
663
Len Brown4be44fc2005-08-05 00:44:28 -0400664void acpi_ut_add_reference(union acpi_operand_object *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666
Bob Moore0e770b32012-12-19 05:37:59 +0000667 ACPI_FUNCTION_NAME(ut_add_reference);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 /* Ensure that we have a valid object */
670
Len Brown4be44fc2005-08-05 00:44:28 -0400671 if (!acpi_ut_valid_internal_object(object)) {
Bob Moore0e770b32012-12-19 05:37:59 +0000672 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
Len Brown4be44fc2005-08-05 00:44:28 -0400675 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
676 "Obj %p Current Refs=%X [To Be Incremented]\n",
677 object, object->common.reference_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 /* Increment the reference count */
680
Len Brown4be44fc2005-08-05 00:44:28 -0400681 (void)acpi_ut_update_object_reference(object, REF_INCREMENT);
Bob Moore0e770b32012-12-19 05:37:59 +0000682 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685/*******************************************************************************
686 *
687 * FUNCTION: acpi_ut_remove_reference
688 *
Bob Mooreba494be2012-07-12 09:40:10 +0800689 * PARAMETERS: object - Object whose ref count will be decremented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 *
691 * RETURN: None
692 *
693 * DESCRIPTION: Decrement the reference count of an ACPI internal object
694 *
695 ******************************************************************************/
696
Len Brown4be44fc2005-08-05 00:44:28 -0400697void acpi_ut_remove_reference(union acpi_operand_object *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699
Bob Moore0e770b32012-12-19 05:37:59 +0000700 ACPI_FUNCTION_NAME(ut_remove_reference);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 /*
Bob Moore41195322006-05-26 16:36:00 -0400703 * Allow a NULL pointer to be passed in, just ignore it. This saves
704 * each caller from having to check. Also, ignore NS nodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
706 if (!object ||
Len Brown4be44fc2005-08-05 00:44:28 -0400707 (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED)) {
Bob Moore0e770b32012-12-19 05:37:59 +0000708 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710
711 /* Ensure that we have a valid object */
712
Len Brown4be44fc2005-08-05 00:44:28 -0400713 if (!acpi_ut_valid_internal_object(object)) {
Bob Moore0e770b32012-12-19 05:37:59 +0000714 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
Bob Moore1ef63232018-02-15 13:09:28 -0800717 ACPI_DEBUG_PRINT_RAW((ACPI_DB_ALLOCATIONS,
718 "%s: Obj %p Current Refs=%X [To Be Decremented]\n",
719 ACPI_GET_FUNCTION_NAME, object,
720 object->common.reference_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 /*
723 * Decrement the reference count, and only actually delete the object
Bob Moore41195322006-05-26 16:36:00 -0400724 * if the reference count becomes 0. (Must also decrement the ref count
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 * of all subobjects!)
726 */
Len Brown4be44fc2005-08-05 00:44:28 -0400727 (void)acpi_ut_update_object_reference(object, REF_DECREMENT);
Bob Moore0e770b32012-12-19 05:37:59 +0000728 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}