dsmethod.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840
  1. /******************************************************************************
  2. *
  3. * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2015, Intel Corp.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions, and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * substantially similar to the "NO WARRANTY" disclaimer below
  18. * ("Disclaimer") and any redistribution must be conditioned upon
  19. * including a substantially similar Disclaimer requirement for further
  20. * binary redistribution.
  21. * 3. Neither the names of the above-listed copyright holders nor the names
  22. * of any contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * Alternatively, this software may be distributed under the terms of the
  26. * GNU General Public License ("GPL") version 2 as published by the Free
  27. * Software Foundation.
  28. *
  29. * NO WARRANTY
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  33. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  39. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGES.
  41. */
  42. #include <acpi/acpi.h>
  43. #include "accommon.h"
  44. #include "acdispat.h"
  45. #include "acinterp.h"
  46. #include "acnamesp.h"
  47. #include "acparser.h"
  48. #include "amlcode.h"
  49. #include "acdebug.h"
  50. #define _COMPONENT ACPI_DISPATCHER
  51. ACPI_MODULE_NAME("dsmethod")
  52. /* Local prototypes */
  53. static acpi_status
  54. acpi_ds_detect_named_opcodes(struct acpi_walk_state *walk_state,
  55. union acpi_parse_object **out_op);
  56. static acpi_status
  57. acpi_ds_create_method_mutex(union acpi_operand_object *method_desc);
  58. /*******************************************************************************
  59. *
  60. * FUNCTION: acpi_ds_auto_serialize_method
  61. *
  62. * PARAMETERS: node - Namespace Node of the method
  63. * obj_desc - Method object attached to node
  64. *
  65. * RETURN: Status
  66. *
  67. * DESCRIPTION: Parse a control method AML to scan for control methods that
  68. * need serialization due to the creation of named objects.
  69. *
  70. * NOTE: It is a bit of overkill to mark all such methods serialized, since
  71. * there is only a problem if the method actually blocks during execution.
  72. * A blocking operation is, for example, a Sleep() operation, or any access
  73. * to an operation region. However, it is probably not possible to easily
  74. * detect whether a method will block or not, so we simply mark all suspicious
  75. * methods as serialized.
  76. *
  77. * NOTE2: This code is essentially a generic routine for parsing a single
  78. * control method.
  79. *
  80. ******************************************************************************/
  81. acpi_status
  82. acpi_ds_auto_serialize_method(struct acpi_namespace_node *node,
  83. union acpi_operand_object *obj_desc)
  84. {
  85. acpi_status status;
  86. union acpi_parse_object *op = NULL;
  87. struct acpi_walk_state *walk_state;
  88. ACPI_FUNCTION_TRACE_PTR(ds_auto_serialize_method, node);
  89. ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
  90. "Method auto-serialization parse [%4.4s] %p\n",
  91. acpi_ut_get_node_name(node), node));
  92. /* Create/Init a root op for the method parse tree */
  93. op = acpi_ps_alloc_op(AML_METHOD_OP, obj_desc->method.aml_start);
  94. if (!op) {
  95. return_ACPI_STATUS(AE_NO_MEMORY);
  96. }
  97. acpi_ps_set_name(op, node->name.integer);
  98. op->common.node = node;
  99. /* Create and initialize a new walk state */
  100. walk_state =
  101. acpi_ds_create_walk_state(node->owner_id, NULL, NULL, NULL);
  102. if (!walk_state) {
  103. acpi_ps_free_op(op);
  104. return_ACPI_STATUS(AE_NO_MEMORY);
  105. }
  106. status =
  107. acpi_ds_init_aml_walk(walk_state, op, node,
  108. obj_desc->method.aml_start,
  109. obj_desc->method.aml_length, NULL, 0);
  110. if (ACPI_FAILURE(status)) {
  111. acpi_ds_delete_walk_state(walk_state);
  112. acpi_ps_free_op(op);
  113. return_ACPI_STATUS(status);
  114. }
  115. walk_state->descending_callback = acpi_ds_detect_named_opcodes;
  116. /* Parse the method, scan for creation of named objects */
  117. status = acpi_ps_parse_aml(walk_state);
  118. acpi_ps_delete_parse_tree(op);
  119. return_ACPI_STATUS(status);
  120. }
  121. /*******************************************************************************
  122. *
  123. * FUNCTION: acpi_ds_detect_named_opcodes
  124. *
  125. * PARAMETERS: walk_state - Current state of the parse tree walk
  126. * out_op - Unused, required for parser interface
  127. *
  128. * RETURN: Status
  129. *
  130. * DESCRIPTION: Descending callback used during the loading of ACPI tables.
  131. * Currently used to detect methods that must be marked serialized
  132. * in order to avoid problems with the creation of named objects.
  133. *
  134. ******************************************************************************/
  135. static acpi_status
  136. acpi_ds_detect_named_opcodes(struct acpi_walk_state *walk_state,
  137. union acpi_parse_object **out_op)
  138. {
  139. ACPI_FUNCTION_NAME(acpi_ds_detect_named_opcodes);
  140. /* We are only interested in opcodes that create a new name */
  141. if (!
  142. (walk_state->op_info->
  143. flags & (AML_NAMED | AML_CREATE | AML_FIELD))) {
  144. return (AE_OK);
  145. }
  146. /*
  147. * At this point, we know we have a Named object opcode.
  148. * Mark the method as serialized. Later code will create a mutex for
  149. * this method to enforce serialization.
  150. *
  151. * Note, ACPI_METHOD_IGNORE_SYNC_LEVEL flag means that we will ignore the
  152. * Sync Level mechanism for this method, even though it is now serialized.
  153. * Otherwise, there can be conflicts with existing ASL code that actually
  154. * uses sync levels.
  155. */
  156. walk_state->method_desc->method.sync_level = 0;
  157. walk_state->method_desc->method.info_flags |=
  158. (ACPI_METHOD_SERIALIZED | ACPI_METHOD_IGNORE_SYNC_LEVEL);
  159. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  160. "Method serialized [%4.4s] %p - [%s] (%4.4X)\n",
  161. walk_state->method_node->name.ascii,
  162. walk_state->method_node, walk_state->op_info->name,
  163. walk_state->opcode));
  164. /* Abort the parse, no need to examine this method any further */
  165. return (AE_CTRL_TERMINATE);
  166. }
  167. /*******************************************************************************
  168. *
  169. * FUNCTION: acpi_ds_method_error
  170. *
  171. * PARAMETERS: status - Execution status
  172. * walk_state - Current state
  173. *
  174. * RETURN: Status
  175. *
  176. * DESCRIPTION: Called on method error. Invoke the global exception handler if
  177. * present, dump the method data if the debugger is configured
  178. *
  179. * Note: Allows the exception handler to change the status code
  180. *
  181. ******************************************************************************/
  182. acpi_status
  183. acpi_ds_method_error(acpi_status status, struct acpi_walk_state * walk_state)
  184. {
  185. u32 aml_offset;
  186. ACPI_FUNCTION_ENTRY();
  187. /* Ignore AE_OK and control exception codes */
  188. if (ACPI_SUCCESS(status) || (status & AE_CODE_CONTROL)) {
  189. return (status);
  190. }
  191. /* Invoke the global exception handler */
  192. if (acpi_gbl_exception_handler) {
  193. /* Exit the interpreter, allow handler to execute methods */
  194. acpi_ex_exit_interpreter();
  195. /*
  196. * Handler can map the exception code to anything it wants, including
  197. * AE_OK, in which case the executing method will not be aborted.
  198. */
  199. aml_offset = (u32)ACPI_PTR_DIFF(walk_state->aml,
  200. walk_state->parser_state.
  201. aml_start);
  202. status = acpi_gbl_exception_handler(status,
  203. walk_state->method_node ?
  204. walk_state->method_node->
  205. name.integer : 0,
  206. walk_state->opcode,
  207. aml_offset, NULL);
  208. acpi_ex_enter_interpreter();
  209. }
  210. acpi_ds_clear_implicit_return(walk_state);
  211. if (ACPI_FAILURE(status)) {
  212. acpi_ds_dump_method_stack(status, walk_state, walk_state->op);
  213. /* Display method locals/args if debugger is present */
  214. #ifdef ACPI_DEBUGGER
  215. acpi_db_dump_method_info(status, walk_state);
  216. #endif
  217. }
  218. return (status);
  219. }
  220. /*******************************************************************************
  221. *
  222. * FUNCTION: acpi_ds_create_method_mutex
  223. *
  224. * PARAMETERS: obj_desc - The method object
  225. *
  226. * RETURN: Status
  227. *
  228. * DESCRIPTION: Create a mutex object for a serialized control method
  229. *
  230. ******************************************************************************/
  231. static acpi_status
  232. acpi_ds_create_method_mutex(union acpi_operand_object *method_desc)
  233. {
  234. union acpi_operand_object *mutex_desc;
  235. acpi_status status;
  236. ACPI_FUNCTION_TRACE(ds_create_method_mutex);
  237. /* Create the new mutex object */
  238. mutex_desc = acpi_ut_create_internal_object(ACPI_TYPE_MUTEX);
  239. if (!mutex_desc) {
  240. return_ACPI_STATUS(AE_NO_MEMORY);
  241. }
  242. /* Create the actual OS Mutex */
  243. status = acpi_os_create_mutex(&mutex_desc->mutex.os_mutex);
  244. if (ACPI_FAILURE(status)) {
  245. acpi_ut_delete_object_desc(mutex_desc);
  246. return_ACPI_STATUS(status);
  247. }
  248. mutex_desc->mutex.sync_level = method_desc->method.sync_level;
  249. method_desc->method.mutex = mutex_desc;
  250. return_ACPI_STATUS(AE_OK);
  251. }
  252. /*******************************************************************************
  253. *
  254. * FUNCTION: acpi_ds_begin_method_execution
  255. *
  256. * PARAMETERS: method_node - Node of the method
  257. * obj_desc - The method object
  258. * walk_state - current state, NULL if not yet executing
  259. * a method.
  260. *
  261. * RETURN: Status
  262. *
  263. * DESCRIPTION: Prepare a method for execution. Parses the method if necessary,
  264. * increments the thread count, and waits at the method semaphore
  265. * for clearance to execute.
  266. *
  267. ******************************************************************************/
  268. acpi_status
  269. acpi_ds_begin_method_execution(struct acpi_namespace_node *method_node,
  270. union acpi_operand_object *obj_desc,
  271. struct acpi_walk_state *walk_state)
  272. {
  273. acpi_status status = AE_OK;
  274. ACPI_FUNCTION_TRACE_PTR(ds_begin_method_execution, method_node);
  275. if (!method_node) {
  276. return_ACPI_STATUS(AE_NULL_ENTRY);
  277. }
  278. acpi_ex_start_trace_method(method_node, obj_desc, walk_state);
  279. /* Prevent wraparound of thread count */
  280. if (obj_desc->method.thread_count == ACPI_UINT8_MAX) {
  281. ACPI_ERROR((AE_INFO,
  282. "Method reached maximum reentrancy limit (255)"));
  283. return_ACPI_STATUS(AE_AML_METHOD_LIMIT);
  284. }
  285. /*
  286. * If this method is serialized, we need to acquire the method mutex.
  287. */
  288. if (obj_desc->method.info_flags & ACPI_METHOD_SERIALIZED) {
  289. /*
  290. * Create a mutex for the method if it is defined to be Serialized
  291. * and a mutex has not already been created. We defer the mutex creation
  292. * until a method is actually executed, to minimize the object count
  293. */
  294. if (!obj_desc->method.mutex) {
  295. status = acpi_ds_create_method_mutex(obj_desc);
  296. if (ACPI_FAILURE(status)) {
  297. return_ACPI_STATUS(status);
  298. }
  299. }
  300. /*
  301. * The current_sync_level (per-thread) must be less than or equal to
  302. * the sync level of the method. This mechanism provides some
  303. * deadlock prevention.
  304. *
  305. * If the method was auto-serialized, we just ignore the sync level
  306. * mechanism, because auto-serialization of methods can interfere
  307. * with ASL code that actually uses sync levels.
  308. *
  309. * Top-level method invocation has no walk state at this point
  310. */
  311. if (walk_state &&
  312. (!(obj_desc->method.
  313. info_flags & ACPI_METHOD_IGNORE_SYNC_LEVEL))
  314. && (walk_state->thread->current_sync_level >
  315. obj_desc->method.mutex->mutex.sync_level)) {
  316. ACPI_ERROR((AE_INFO,
  317. "Cannot acquire Mutex for method [%4.4s], current SyncLevel is too large (%u)",
  318. acpi_ut_get_node_name(method_node),
  319. walk_state->thread->current_sync_level));
  320. return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
  321. }
  322. /*
  323. * Obtain the method mutex if necessary. Do not acquire mutex for a
  324. * recursive call.
  325. */
  326. if (!walk_state ||
  327. !obj_desc->method.mutex->mutex.thread_id ||
  328. (walk_state->thread->thread_id !=
  329. obj_desc->method.mutex->mutex.thread_id)) {
  330. /*
  331. * Acquire the method mutex. This releases the interpreter if we
  332. * block (and reacquires it before it returns)
  333. */
  334. status =
  335. acpi_ex_system_wait_mutex(obj_desc->method.mutex->
  336. mutex.os_mutex,
  337. ACPI_WAIT_FOREVER);
  338. if (ACPI_FAILURE(status)) {
  339. return_ACPI_STATUS(status);
  340. }
  341. /* Update the mutex and walk info and save the original sync_level */
  342. if (walk_state) {
  343. obj_desc->method.mutex->mutex.
  344. original_sync_level =
  345. walk_state->thread->current_sync_level;
  346. obj_desc->method.mutex->mutex.thread_id =
  347. walk_state->thread->thread_id;
  348. walk_state->thread->current_sync_level =
  349. obj_desc->method.sync_level;
  350. } else {
  351. obj_desc->method.mutex->mutex.
  352. original_sync_level =
  353. obj_desc->method.mutex->mutex.sync_level;
  354. obj_desc->method.mutex->mutex.thread_id =
  355. acpi_os_get_thread_id();
  356. }
  357. }
  358. /* Always increase acquisition depth */
  359. obj_desc->method.mutex->mutex.acquisition_depth++;
  360. }
  361. /*
  362. * Allocate an Owner ID for this method, only if this is the first thread
  363. * to begin concurrent execution. We only need one owner_id, even if the
  364. * method is invoked recursively.
  365. */
  366. if (!obj_desc->method.owner_id) {
  367. status = acpi_ut_allocate_owner_id(&obj_desc->method.owner_id);
  368. if (ACPI_FAILURE(status)) {
  369. goto cleanup;
  370. }
  371. }
  372. /*
  373. * Increment the method parse tree thread count since it has been
  374. * reentered one more time (even if it is the same thread)
  375. */
  376. obj_desc->method.thread_count++;
  377. acpi_method_count++;
  378. return_ACPI_STATUS(status);
  379. cleanup:
  380. /* On error, must release the method mutex (if present) */
  381. if (obj_desc->method.mutex) {
  382. acpi_os_release_mutex(obj_desc->method.mutex->mutex.os_mutex);
  383. }
  384. return_ACPI_STATUS(status);
  385. }
  386. /*******************************************************************************
  387. *
  388. * FUNCTION: acpi_ds_call_control_method
  389. *
  390. * PARAMETERS: thread - Info for this thread
  391. * this_walk_state - Current walk state
  392. * op - Current Op to be walked
  393. *
  394. * RETURN: Status
  395. *
  396. * DESCRIPTION: Transfer execution to a called control method
  397. *
  398. ******************************************************************************/
  399. acpi_status
  400. acpi_ds_call_control_method(struct acpi_thread_state *thread,
  401. struct acpi_walk_state *this_walk_state,
  402. union acpi_parse_object *op)
  403. {
  404. acpi_status status;
  405. struct acpi_namespace_node *method_node;
  406. struct acpi_walk_state *next_walk_state = NULL;
  407. union acpi_operand_object *obj_desc;
  408. struct acpi_evaluate_info *info;
  409. u32 i;
  410. ACPI_FUNCTION_TRACE_PTR(ds_call_control_method, this_walk_state);
  411. ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
  412. "Calling method %p, currentstate=%p\n",
  413. this_walk_state->prev_op, this_walk_state));
  414. /*
  415. * Get the namespace entry for the control method we are about to call
  416. */
  417. method_node = this_walk_state->method_call_node;
  418. if (!method_node) {
  419. return_ACPI_STATUS(AE_NULL_ENTRY);
  420. }
  421. obj_desc = acpi_ns_get_attached_object(method_node);
  422. if (!obj_desc) {
  423. return_ACPI_STATUS(AE_NULL_OBJECT);
  424. }
  425. /* Init for new method, possibly wait on method mutex */
  426. status = acpi_ds_begin_method_execution(method_node, obj_desc,
  427. this_walk_state);
  428. if (ACPI_FAILURE(status)) {
  429. return_ACPI_STATUS(status);
  430. }
  431. /* Begin method parse/execution. Create a new walk state */
  432. next_walk_state = acpi_ds_create_walk_state(obj_desc->method.owner_id,
  433. NULL, obj_desc, thread);
  434. if (!next_walk_state) {
  435. status = AE_NO_MEMORY;
  436. goto cleanup;
  437. }
  438. /*
  439. * The resolved arguments were put on the previous walk state's operand
  440. * stack. Operands on the previous walk state stack always
  441. * start at index 0. Also, null terminate the list of arguments
  442. */
  443. this_walk_state->operands[this_walk_state->num_operands] = NULL;
  444. /*
  445. * Allocate and initialize the evaluation information block
  446. * TBD: this is somewhat inefficient, should change interface to
  447. * ds_init_aml_walk. For now, keeps this struct off the CPU stack
  448. */
  449. info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
  450. if (!info) {
  451. status = AE_NO_MEMORY;
  452. goto cleanup;
  453. }
  454. info->parameters = &this_walk_state->operands[0];
  455. status = acpi_ds_init_aml_walk(next_walk_state, NULL, method_node,
  456. obj_desc->method.aml_start,
  457. obj_desc->method.aml_length, info,
  458. ACPI_IMODE_EXECUTE);
  459. ACPI_FREE(info);
  460. if (ACPI_FAILURE(status)) {
  461. goto cleanup;
  462. }
  463. /*
  464. * Delete the operands on the previous walkstate operand stack
  465. * (they were copied to new objects)
  466. */
  467. for (i = 0; i < obj_desc->method.param_count; i++) {
  468. acpi_ut_remove_reference(this_walk_state->operands[i]);
  469. this_walk_state->operands[i] = NULL;
  470. }
  471. /* Clear the operand stack */
  472. this_walk_state->num_operands = 0;
  473. ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
  474. "**** Begin nested execution of [%4.4s] **** WalkState=%p\n",
  475. method_node->name.ascii, next_walk_state));
  476. /* Invoke an internal method if necessary */
  477. if (obj_desc->method.info_flags & ACPI_METHOD_INTERNAL_ONLY) {
  478. status =
  479. obj_desc->method.dispatch.implementation(next_walk_state);
  480. if (status == AE_OK) {
  481. status = AE_CTRL_TERMINATE;
  482. }
  483. }
  484. return_ACPI_STATUS(status);
  485. cleanup:
  486. /* On error, we must terminate the method properly */
  487. acpi_ds_terminate_control_method(obj_desc, next_walk_state);
  488. acpi_ds_delete_walk_state(next_walk_state);
  489. return_ACPI_STATUS(status);
  490. }
  491. /*******************************************************************************
  492. *
  493. * FUNCTION: acpi_ds_restart_control_method
  494. *
  495. * PARAMETERS: walk_state - State for preempted method (caller)
  496. * return_desc - Return value from the called method
  497. *
  498. * RETURN: Status
  499. *
  500. * DESCRIPTION: Restart a method that was preempted by another (nested) method
  501. * invocation. Handle the return value (if any) from the callee.
  502. *
  503. ******************************************************************************/
  504. acpi_status
  505. acpi_ds_restart_control_method(struct acpi_walk_state *walk_state,
  506. union acpi_operand_object *return_desc)
  507. {
  508. acpi_status status;
  509. int same_as_implicit_return;
  510. ACPI_FUNCTION_TRACE_PTR(ds_restart_control_method, walk_state);
  511. ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
  512. "****Restart [%4.4s] Op %p ReturnValueFromCallee %p\n",
  513. acpi_ut_get_node_name(walk_state->method_node),
  514. walk_state->method_call_op, return_desc));
  515. ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
  516. " ReturnFromThisMethodUsed?=%X ResStack %p Walk %p\n",
  517. walk_state->return_used,
  518. walk_state->results, walk_state));
  519. /* Did the called method return a value? */
  520. if (return_desc) {
  521. /* Is the implicit return object the same as the return desc? */
  522. same_as_implicit_return =
  523. (walk_state->implicit_return_obj == return_desc);
  524. /* Are we actually going to use the return value? */
  525. if (walk_state->return_used) {
  526. /* Save the return value from the previous method */
  527. status = acpi_ds_result_push(return_desc, walk_state);
  528. if (ACPI_FAILURE(status)) {
  529. acpi_ut_remove_reference(return_desc);
  530. return_ACPI_STATUS(status);
  531. }
  532. /*
  533. * Save as THIS method's return value in case it is returned
  534. * immediately to yet another method
  535. */
  536. walk_state->return_desc = return_desc;
  537. }
  538. /*
  539. * The following code is the optional support for the so-called
  540. * "implicit return". Some AML code assumes that the last value of the
  541. * method is "implicitly" returned to the caller, in the absence of an
  542. * explicit return value.
  543. *
  544. * Just save the last result of the method as the return value.
  545. *
  546. * NOTE: this is optional because the ASL language does not actually
  547. * support this behavior.
  548. */
  549. else if (!acpi_ds_do_implicit_return
  550. (return_desc, walk_state, FALSE)
  551. || same_as_implicit_return) {
  552. /*
  553. * Delete the return value if it will not be used by the
  554. * calling method or remove one reference if the explicit return
  555. * is the same as the implicit return value.
  556. */
  557. acpi_ut_remove_reference(return_desc);
  558. }
  559. }
  560. return_ACPI_STATUS(AE_OK);
  561. }
  562. /*******************************************************************************
  563. *
  564. * FUNCTION: acpi_ds_terminate_control_method
  565. *
  566. * PARAMETERS: method_desc - Method object
  567. * walk_state - State associated with the method
  568. *
  569. * RETURN: None
  570. *
  571. * DESCRIPTION: Terminate a control method. Delete everything that the method
  572. * created, delete all locals and arguments, and delete the parse
  573. * tree if requested.
  574. *
  575. * MUTEX: Interpreter is locked
  576. *
  577. ******************************************************************************/
  578. void
  579. acpi_ds_terminate_control_method(union acpi_operand_object *method_desc,
  580. struct acpi_walk_state *walk_state)
  581. {
  582. ACPI_FUNCTION_TRACE_PTR(ds_terminate_control_method, walk_state);
  583. /* method_desc is required, walk_state is optional */
  584. if (!method_desc) {
  585. return_VOID;
  586. }
  587. if (walk_state) {
  588. /* Delete all arguments and locals */
  589. acpi_ds_method_data_delete_all(walk_state);
  590. /*
  591. * If method is serialized, release the mutex and restore the
  592. * current sync level for this thread
  593. */
  594. if (method_desc->method.mutex) {
  595. /* Acquisition Depth handles recursive calls */
  596. method_desc->method.mutex->mutex.acquisition_depth--;
  597. if (!method_desc->method.mutex->mutex.acquisition_depth) {
  598. walk_state->thread->current_sync_level =
  599. method_desc->method.mutex->mutex.
  600. original_sync_level;
  601. acpi_os_release_mutex(method_desc->method.
  602. mutex->mutex.os_mutex);
  603. method_desc->method.mutex->mutex.thread_id = 0;
  604. }
  605. }
  606. /*
  607. * Delete any namespace objects created anywhere within the
  608. * namespace by the execution of this method. Unless:
  609. * 1) This method is a module-level executable code method, in which
  610. * case we want make the objects permanent.
  611. * 2) There are other threads executing the method, in which case we
  612. * will wait until the last thread has completed.
  613. */
  614. if (!(method_desc->method.info_flags & ACPI_METHOD_MODULE_LEVEL)
  615. && (method_desc->method.thread_count == 1)) {
  616. /* Delete any direct children of (created by) this method */
  617. acpi_ns_delete_namespace_subtree(walk_state->
  618. method_node);
  619. /*
  620. * Delete any objects that were created by this method
  621. * elsewhere in the namespace (if any were created).
  622. * Use of the ACPI_METHOD_MODIFIED_NAMESPACE optimizes the
  623. * deletion such that we don't have to perform an entire
  624. * namespace walk for every control method execution.
  625. */
  626. if (method_desc->method.
  627. info_flags & ACPI_METHOD_MODIFIED_NAMESPACE) {
  628. acpi_ns_delete_namespace_by_owner(method_desc->
  629. method.
  630. owner_id);
  631. method_desc->method.info_flags &=
  632. ~ACPI_METHOD_MODIFIED_NAMESPACE;
  633. }
  634. }
  635. }
  636. /* Decrement the thread count on the method */
  637. if (method_desc->method.thread_count) {
  638. method_desc->method.thread_count--;
  639. } else {
  640. ACPI_ERROR((AE_INFO, "Invalid zero thread count in method"));
  641. }
  642. /* Are there any other threads currently executing this method? */
  643. if (method_desc->method.thread_count) {
  644. /*
  645. * Additional threads. Do not release the owner_id in this case,
  646. * we immediately reuse it for the next thread executing this method
  647. */
  648. ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
  649. "*** Completed execution of one thread, %u threads remaining\n",
  650. method_desc->method.thread_count));
  651. } else {
  652. /* This is the only executing thread for this method */
  653. /*
  654. * Support to dynamically change a method from not_serialized to
  655. * Serialized if it appears that the method is incorrectly written and
  656. * does not support multiple thread execution. The best example of this
  657. * is if such a method creates namespace objects and blocks. A second
  658. * thread will fail with an AE_ALREADY_EXISTS exception.
  659. *
  660. * This code is here because we must wait until the last thread exits
  661. * before marking the method as serialized.
  662. */
  663. if (method_desc->method.
  664. info_flags & ACPI_METHOD_SERIALIZED_PENDING) {
  665. if (walk_state) {
  666. ACPI_INFO((AE_INFO,
  667. "Marking method %4.4s as Serialized because of AE_ALREADY_EXISTS error",
  668. walk_state->method_node->name.
  669. ascii));
  670. }
  671. /*
  672. * Method tried to create an object twice and was marked as
  673. * "pending serialized". The probable cause is that the method
  674. * cannot handle reentrancy.
  675. *
  676. * The method was created as not_serialized, but it tried to create
  677. * a named object and then blocked, causing the second thread
  678. * entrance to begin and then fail. Workaround this problem by
  679. * marking the method permanently as Serialized when the last
  680. * thread exits here.
  681. */
  682. method_desc->method.info_flags &=
  683. ~ACPI_METHOD_SERIALIZED_PENDING;
  684. method_desc->method.info_flags |=
  685. (ACPI_METHOD_SERIALIZED |
  686. ACPI_METHOD_IGNORE_SYNC_LEVEL);
  687. method_desc->method.sync_level = 0;
  688. }
  689. /* No more threads, we can free the owner_id */
  690. if (!
  691. (method_desc->method.
  692. info_flags & ACPI_METHOD_MODULE_LEVEL)) {
  693. acpi_ut_release_owner_id(&method_desc->method.owner_id);
  694. }
  695. }
  696. acpi_ex_stop_trace_method((struct acpi_namespace_node *)method_desc->
  697. method.node, method_desc, walk_state);
  698. return_VOID;
  699. }