Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /******************************************************************************* |
| 3 | * |
| 4 | * Module Name: nssearch - Namespace search |
| 5 | * |
| 6 | ******************************************************************************/ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 9 | #include "accommon.h" |
| 10 | #include "acnamesp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Bob Moore | e4c1ebf | 2009-04-22 13:02:06 +0800 | [diff] [blame] | 12 | #ifdef ACPI_ASL_COMPILER |
| 13 | #include "amlcode.h" |
| 14 | #endif |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #define _COMPONENT ACPI_NAMESPACE |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 17 | ACPI_MODULE_NAME("nssearch") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 19 | /* Local prototypes */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 20 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 21 | acpi_ns_search_parent_tree(u32 target_name, |
| 22 | struct acpi_namespace_node *node, |
| 23 | acpi_object_type type, |
| 24 | struct acpi_namespace_node **return_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | /******************************************************************************* |
| 27 | * |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 28 | * FUNCTION: acpi_ns_search_one_scope |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 30 | * PARAMETERS: target_name - Ascii ACPI name to search for |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 31 | * parent_node - Starting node where search will begin |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 32 | * type - Object type to match |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 33 | * return_node - Where the matched Named obj is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | * |
| 35 | * RETURN: Status |
| 36 | * |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 37 | * DESCRIPTION: Search a single level of the namespace. Performs a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | * simple search of the specified level, and does not add |
| 39 | * entries or search parents. |
| 40 | * |
| 41 | * |
| 42 | * Named object lists are built (and subsequently dumped) in the |
| 43 | * order in which the names are encountered during the namespace load; |
| 44 | * |
| 45 | * All namespace searching is linear in this implementation, but |
| 46 | * could be easily modified to support any improved search |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 47 | * algorithm. However, the linear search was chosen for simplicity |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | * and because the trees are small and the other interpreter |
| 49 | * execution overhead is relatively high. |
| 50 | * |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 51 | * Note: CPU execution analysis has shown that the AML interpreter spends |
| 52 | * a very small percentage of its time searching the namespace. Therefore, |
| 53 | * the linear search seems to be sufficient, as there would seem to be |
| 54 | * little value in improving the search. |
| 55 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | ******************************************************************************/ |
| 57 | |
| 58 | acpi_status |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 59 | acpi_ns_search_one_scope(u32 target_name, |
| 60 | struct acpi_namespace_node *parent_node, |
| 61 | acpi_object_type type, |
| 62 | struct acpi_namespace_node **return_node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 64 | struct acpi_namespace_node *node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 66 | ACPI_FUNCTION_TRACE(ns_search_one_scope); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | #ifdef ACPI_DEBUG_OUTPUT |
| 69 | if (ACPI_LV_NAMES & acpi_dbg_level) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 70 | char *scope_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Lv Zheng | 0e166e4 | 2015-12-29 13:53:50 +0800 | [diff] [blame] | 72 | scope_name = acpi_ns_get_normalized_pathname(parent_node, TRUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | if (scope_name) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 74 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, |
| 75 | "Searching %s (%p) For [%4.4s] (%s)\n", |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 76 | scope_name, parent_node, |
| 77 | ACPI_CAST_PTR(char, &target_name), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 78 | acpi_ut_get_type_name(type))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 80 | ACPI_FREE(scope_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | } |
| 83 | #endif |
| 84 | |
| 85 | /* |
| 86 | * Search for name at this namespace level, which is to say that we |
| 87 | * must search for the name among the children of this object |
| 88 | */ |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 89 | node = parent_node->child; |
| 90 | while (node) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* Check for match against the name */ |
| 93 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 94 | if (node->name.integer == target_name) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | /* Resolve a control method alias if any */ |
| 97 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 98 | if (acpi_ns_get_type(node) == |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 99 | ACPI_TYPE_LOCAL_METHOD_ALIAS) { |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 100 | node = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 101 | ACPI_CAST_PTR(struct acpi_namespace_node, |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 102 | node->object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 105 | /* Found matching entry */ |
| 106 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 107 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, |
| 108 | "Name [%4.4s] (%s) %p found in scope [%4.4s] %p\n", |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 109 | ACPI_CAST_PTR(char, &target_name), |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 110 | acpi_ut_get_type_name(node->type), |
| 111 | node, |
| 112 | acpi_ut_get_node_name(parent_node), |
| 113 | parent_node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 115 | *return_node = node; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 116 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | /* Didn't match name, move on to the next peer object */ |
| 120 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 121 | node = node->peer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | /* Searched entire namespace level, not found */ |
| 125 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 126 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, |
Bob Moore | d4913dc | 2009-03-06 10:05:18 +0800 | [diff] [blame] | 127 | "Name [%4.4s] (%s) not found in search in scope [%4.4s] " |
| 128 | "%p first child %p\n", |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 129 | ACPI_CAST_PTR(char, &target_name), |
| 130 | acpi_ut_get_type_name(type), |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 131 | acpi_ut_get_node_name(parent_node), parent_node, |
| 132 | parent_node->child)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 134 | return_ACPI_STATUS(AE_NOT_FOUND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /******************************************************************************* |
| 138 | * |
| 139 | * FUNCTION: acpi_ns_search_parent_tree |
| 140 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 141 | * PARAMETERS: target_name - Ascii ACPI name to search for |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 142 | * node - Starting node where search will begin |
| 143 | * type - Object type to match |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 144 | * return_node - Where the matched Node is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | * |
| 146 | * RETURN: Status |
| 147 | * |
| 148 | * DESCRIPTION: Called when a name has not been found in the current namespace |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 149 | * level. Before adding it or giving up, ACPI scope rules require |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | * searching enclosing scopes in cases identified by acpi_ns_local(). |
| 151 | * |
| 152 | * "A name is located by finding the matching name in the current |
| 153 | * name space, and then in the parent name space. If the parent |
| 154 | * name space does not contain the name, the search continues |
| 155 | * recursively until either the name is found or the name space |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 156 | * does not have a parent (the root of the name space). This |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | * indicates that the name is not found" (From ACPI Specification, |
| 158 | * section 5.3) |
| 159 | * |
| 160 | ******************************************************************************/ |
| 161 | |
| 162 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 163 | acpi_ns_search_parent_tree(u32 target_name, |
| 164 | struct acpi_namespace_node *node, |
| 165 | acpi_object_type type, |
| 166 | struct acpi_namespace_node **return_node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 168 | acpi_status status; |
| 169 | struct acpi_namespace_node *parent_node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 171 | ACPI_FUNCTION_TRACE(ns_search_parent_tree); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Alexey Starikovskiy | c45b5c0 | 2010-05-26 11:53:07 +0800 | [diff] [blame] | 173 | parent_node = node->parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | /* |
| 176 | * If there is no parent (i.e., we are at the root) or type is "local", |
| 177 | * we won't be searching the parent tree. |
| 178 | */ |
| 179 | if (!parent_node) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "[%4.4s] has no parent\n", |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 181 | ACPI_CAST_PTR(char, &target_name))); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 182 | return_ACPI_STATUS(AE_NOT_FOUND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 185 | if (acpi_ns_local(type)) { |
| 186 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, |
| 187 | "[%4.4s] type [%s] must be local to this scope (no parent search)\n", |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 188 | ACPI_CAST_PTR(char, &target_name), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | acpi_ut_get_type_name(type))); |
| 190 | return_ACPI_STATUS(AE_NOT_FOUND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | /* Search the parent tree */ |
| 194 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 195 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, |
| 196 | "Searching parent [%4.4s] for [%4.4s]\n", |
| 197 | acpi_ut_get_node_name(parent_node), |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 198 | ACPI_CAST_PTR(char, &target_name))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Bob Moore | d4913dc | 2009-03-06 10:05:18 +0800 | [diff] [blame] | 200 | /* Search parents until target is found or we have backed up to the root */ |
| 201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | while (parent_node) { |
| 203 | /* |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 204 | * Search parent scope. Use TYPE_ANY because we don't care about the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | * object type at this point, we only care about the existence of |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 206 | * the actual name we are searching for. Typechecking comes later. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | */ |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 208 | status = |
| 209 | acpi_ns_search_one_scope(target_name, parent_node, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 210 | ACPI_TYPE_ANY, return_node); |
| 211 | if (ACPI_SUCCESS(status)) { |
| 212 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 215 | /* Not found here, go up another level (until we reach the root) */ |
| 216 | |
Alexey Starikovskiy | c45b5c0 | 2010-05-26 11:53:07 +0800 | [diff] [blame] | 217 | parent_node = parent_node->parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /* Not found in parent tree */ |
| 221 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 222 | return_ACPI_STATUS(AE_NOT_FOUND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | /******************************************************************************* |
| 226 | * |
| 227 | * FUNCTION: acpi_ns_search_and_enter |
| 228 | * |
| 229 | * PARAMETERS: target_name - Ascii ACPI name to search for (4 chars) |
| 230 | * walk_state - Current state of the walk |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 231 | * node - Starting node where search will begin |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | * interpreter_mode - Add names only in ACPI_MODE_LOAD_PASS_x. |
| 233 | * Otherwise,search only. |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 234 | * type - Object type to match |
| 235 | * flags - Flags describing the search restrictions |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 236 | * return_node - Where the Node is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | * |
| 238 | * RETURN: Status |
| 239 | * |
| 240 | * DESCRIPTION: Search for a name segment in a single namespace level, |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 241 | * optionally adding it if it is not found. If the passed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | * Type is not Any and the type previously stored in the |
| 243 | * entry was Any (i.e. unknown), update the stored type. |
| 244 | * |
| 245 | * In ACPI_IMODE_EXECUTE, search only. |
| 246 | * In other modes, search and add if not found. |
| 247 | * |
| 248 | ******************************************************************************/ |
| 249 | |
| 250 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 251 | acpi_ns_search_and_enter(u32 target_name, |
| 252 | struct acpi_walk_state *walk_state, |
| 253 | struct acpi_namespace_node *node, |
| 254 | acpi_interpreter_mode interpreter_mode, |
| 255 | acpi_object_type type, |
| 256 | u32 flags, struct acpi_namespace_node **return_node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | acpi_status status; |
| 259 | struct acpi_namespace_node *new_node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 261 | ACPI_FUNCTION_TRACE(ns_search_and_enter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | /* Parameter validation */ |
| 264 | |
| 265 | if (!node || !target_name || !return_node) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 266 | ACPI_ERROR((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 267 | "Null parameter: Node %p Name 0x%X ReturnNode %p", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 268 | node, target_name, return_node)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 269 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 272 | /* |
| 273 | * Name must consist of valid ACPI characters. We will repair the name if |
| 274 | * necessary because we don't want to abort because of this, but we want |
| 275 | * all namespace names to be printable. A warning message is appropriate. |
| 276 | * |
| 277 | * This issue came up because there are in fact machines that exhibit |
| 278 | * this problem, and we want to be able to enable ACPI support for them, |
| 279 | * even though there are a few bad names. |
| 280 | */ |
Bob Moore | 45dcd31 | 2012-10-31 02:24:51 +0000 | [diff] [blame] | 281 | acpi_ut_repair_name(ACPI_CAST_PTR(char, &target_name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
| 283 | /* Try to find the name in the namespace level specified by the caller */ |
| 284 | |
| 285 | *return_node = ACPI_ENTRY_NOT_FOUND; |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 286 | status = acpi_ns_search_one_scope(target_name, node, type, return_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | if (status != AE_NOT_FOUND) { |
| 288 | /* |
| 289 | * If we found it AND the request specifies that a find is an error, |
| 290 | * return the error |
| 291 | */ |
Lv Zheng | 8f6f036 | 2015-07-01 14:44:17 +0800 | [diff] [blame] | 292 | if (status == AE_OK) { |
| 293 | |
| 294 | /* The node was found in the namespace */ |
| 295 | |
| 296 | /* |
| 297 | * If the namespace override feature is enabled for this node, |
Bob Moore | 8ea9865 | 2015-07-01 14:44:31 +0800 | [diff] [blame] | 298 | * delete any existing attached sub-object and make the node |
| 299 | * look like a new node that is owned by the override table. |
Lv Zheng | 8f6f036 | 2015-07-01 14:44:17 +0800 | [diff] [blame] | 300 | */ |
| 301 | if (flags & ACPI_NS_OVERRIDE_IF_FOUND) { |
Bob Moore | 8ea9865 | 2015-07-01 14:44:31 +0800 | [diff] [blame] | 302 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, |
| 303 | "Namespace override: %4.4s pass %u type %X Owner %X\n", |
| 304 | ACPI_CAST_PTR(char, |
| 305 | &target_name), |
| 306 | interpreter_mode, |
| 307 | (*return_node)->type, |
| 308 | walk_state->owner_id)); |
| 309 | |
Lv Zheng | 8f6f036 | 2015-07-01 14:44:17 +0800 | [diff] [blame] | 310 | acpi_ns_delete_children(*return_node); |
Bob Moore | 8ea9865 | 2015-07-01 14:44:31 +0800 | [diff] [blame] | 311 | if (acpi_gbl_runtime_namespace_override) { |
| 312 | acpi_ut_remove_reference((*return_node)->object); |
| 313 | (*return_node)->object = NULL; |
| 314 | (*return_node)->owner_id = |
| 315 | walk_state->owner_id; |
| 316 | } else { |
| 317 | acpi_ns_remove_node(*return_node); |
| 318 | *return_node = ACPI_ENTRY_NOT_FOUND; |
| 319 | } |
Lv Zheng | 8f6f036 | 2015-07-01 14:44:17 +0800 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | /* Return an error if we don't expect to find the object */ |
| 323 | |
| 324 | else if (flags & ACPI_NS_ERROR_IF_FOUND) { |
| 325 | status = AE_ALREADY_EXISTS; |
| 326 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
Lv Zheng | 56324c1 | 2012-12-19 05:37:03 +0000 | [diff] [blame] | 328 | #ifdef ACPI_ASL_COMPILER |
| 329 | if (*return_node && (*return_node)->type == ACPI_TYPE_ANY) { |
| 330 | (*return_node)->flags |= ANOBJ_IS_EXTERNAL; |
| 331 | } |
| 332 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 334 | /* Either found it or there was an error: finished either way */ |
| 335 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 336 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | /* |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 340 | * The name was not found. If we are NOT performing the first pass |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | * (name entry) of loading the namespace, search the parent tree (all the |
| 342 | * way to the root if necessary.) We don't want to perform the parent |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 343 | * search when the namespace is actually being loaded. We want to perform |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | * the search when namespace references are being resolved (load pass 2) |
| 345 | * and during the execution phase. |
| 346 | */ |
| 347 | if ((interpreter_mode != ACPI_IMODE_LOAD_PASS1) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 348 | (flags & ACPI_NS_SEARCH_PARENT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | /* |
| 350 | * Not found at this level - search parent tree according to the |
| 351 | * ACPI specification |
| 352 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 353 | status = |
| 354 | acpi_ns_search_parent_tree(target_name, node, type, |
| 355 | return_node); |
| 356 | if (ACPI_SUCCESS(status)) { |
| 357 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
| 359 | } |
| 360 | |
Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 361 | /* In execute mode, just search, never add names. Exit now */ |
| 362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | if (interpreter_mode == ACPI_IMODE_EXECUTE) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 364 | ACPI_DEBUG_PRINT((ACPI_DB_NAMES, |
| 365 | "%4.4s Not found in %p [Not adding]\n", |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 366 | ACPI_CAST_PTR(char, &target_name), node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 368 | return_ACPI_STATUS(AE_NOT_FOUND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | /* Create the new named object */ |
| 372 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 373 | new_node = acpi_ns_create_node(target_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | if (!new_node) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 375 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 377 | #ifdef ACPI_ASL_COMPILER |
Bob Moore | d4913dc | 2009-03-06 10:05:18 +0800 | [diff] [blame] | 378 | |
| 379 | /* Node is an object defined by an External() statement */ |
| 380 | |
Lv Zheng | 99567bc | 2013-10-31 09:30:04 +0800 | [diff] [blame] | 381 | if (flags & ACPI_NS_EXTERNAL || |
| 382 | (walk_state && walk_state->opcode == AML_SCOPE_OP)) { |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 383 | new_node->flags |= ANOBJ_IS_EXTERNAL; |
Erik Schmauss | b43eac6 | 2017-11-17 15:40:21 -0800 | [diff] [blame] | 384 | new_node->flags |= IMPLICIT_EXTERNAL; |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 385 | } |
| 386 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Bob Moore | d1fdda83 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 388 | if (flags & ACPI_NS_TEMPORARY) { |
| 389 | new_node->flags |= ANOBJ_TEMPORARY; |
| 390 | } |
| 391 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | /* Install the new object into the parent's list of children */ |
| 393 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 394 | acpi_ns_install_node(walk_state, node, new_node, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | *return_node = new_node; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 396 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |