at v2.6.15 544 lines 15 kB view raw
1/******************************************************************************* 2 * 3 * Module Name: nsalloc - Namespace allocation and deletion utilities 4 * 5 ******************************************************************************/ 6 7/* 8 * Copyright (C) 2000 - 2005, R. Byron Moore 9 * All rights reserved. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions, and the following disclaimer, 16 * without modification. 17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer 18 * substantially similar to the "NO WARRANTY" disclaimer below 19 * ("Disclaimer") and any redistribution must be conditioned upon 20 * including a substantially similar Disclaimer requirement for further 21 * binary redistribution. 22 * 3. Neither the names of the above-listed copyright holders nor the names 23 * of any contributors may be used to endorse or promote products derived 24 * from this software without specific prior written permission. 25 * 26 * Alternatively, this software may be distributed under the terms of the 27 * GNU General Public License ("GPL") version 2 as published by the Free 28 * Software Foundation. 29 * 30 * NO WARRANTY 31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 41 * POSSIBILITY OF SUCH DAMAGES. 42 */ 43 44#include <acpi/acpi.h> 45#include <acpi/acnamesp.h> 46 47#define _COMPONENT ACPI_NAMESPACE 48ACPI_MODULE_NAME("nsalloc") 49 50/* Local prototypes */ 51static void acpi_ns_remove_reference(struct acpi_namespace_node *node); 52 53/******************************************************************************* 54 * 55 * FUNCTION: acpi_ns_create_node 56 * 57 * PARAMETERS: Name - Name of the new node (4 char ACPI name) 58 * 59 * RETURN: New namespace node (Null on failure) 60 * 61 * DESCRIPTION: Create a namespace node 62 * 63 ******************************************************************************/ 64 65struct acpi_namespace_node *acpi_ns_create_node(u32 name) 66{ 67 struct acpi_namespace_node *node; 68 69 ACPI_FUNCTION_TRACE("ns_create_node"); 70 71 node = ACPI_MEM_CALLOCATE(sizeof(struct acpi_namespace_node)); 72 if (!node) { 73 return_PTR(NULL); 74 } 75 76 ACPI_MEM_TRACKING(acpi_gbl_ns_node_list->total_allocated++); 77 78 node->name.integer = name; 79 node->reference_count = 1; 80 ACPI_SET_DESCRIPTOR_TYPE(node, ACPI_DESC_TYPE_NAMED); 81 82 return_PTR(node); 83} 84 85/******************************************************************************* 86 * 87 * FUNCTION: acpi_ns_delete_node 88 * 89 * PARAMETERS: Node - Node to be deleted 90 * 91 * RETURN: None 92 * 93 * DESCRIPTION: Delete a namespace node 94 * 95 ******************************************************************************/ 96 97void acpi_ns_delete_node(struct acpi_namespace_node *node) 98{ 99 struct acpi_namespace_node *parent_node; 100 struct acpi_namespace_node *prev_node; 101 struct acpi_namespace_node *next_node; 102 103 ACPI_FUNCTION_TRACE_PTR("ns_delete_node", node); 104 105 parent_node = acpi_ns_get_parent_node(node); 106 107 prev_node = NULL; 108 next_node = parent_node->child; 109 110 /* Find the node that is the previous peer in the parent's child list */ 111 112 while (next_node != node) { 113 prev_node = next_node; 114 next_node = prev_node->peer; 115 } 116 117 if (prev_node) { 118 /* Node is not first child, unlink it */ 119 120 prev_node->peer = next_node->peer; 121 if (next_node->flags & ANOBJ_END_OF_PEER_LIST) { 122 prev_node->flags |= ANOBJ_END_OF_PEER_LIST; 123 } 124 } else { 125 /* Node is first child (has no previous peer) */ 126 127 if (next_node->flags & ANOBJ_END_OF_PEER_LIST) { 128 /* No peers at all */ 129 130 parent_node->child = NULL; 131 } else { /* Link peer list to parent */ 132 133 parent_node->child = next_node->peer; 134 } 135 } 136 137 ACPI_MEM_TRACKING(acpi_gbl_ns_node_list->total_freed++); 138 139 /* 140 * Detach an object if there is one then delete the node 141 */ 142 acpi_ns_detach_object(node); 143 ACPI_MEM_FREE(node); 144 return_VOID; 145} 146 147/******************************************************************************* 148 * 149 * FUNCTION: acpi_ns_install_node 150 * 151 * PARAMETERS: walk_state - Current state of the walk 152 * parent_node - The parent of the new Node 153 * Node - The new Node to install 154 * Type - ACPI object type of the new Node 155 * 156 * RETURN: None 157 * 158 * DESCRIPTION: Initialize a new namespace node and install it amongst 159 * its peers. 160 * 161 * Note: Current namespace lookup is linear search. This appears 162 * to be sufficient as namespace searches consume only a small 163 * fraction of the execution time of the ACPI subsystem. 164 * 165 ******************************************************************************/ 166 167void acpi_ns_install_node(struct acpi_walk_state *walk_state, struct acpi_namespace_node *parent_node, /* Parent */ 168 struct acpi_namespace_node *node, /* New Child */ 169 acpi_object_type type) 170{ 171 acpi_owner_id owner_id = 0; 172 struct acpi_namespace_node *child_node; 173 174 ACPI_FUNCTION_TRACE("ns_install_node"); 175 176 /* 177 * Get the owner ID from the Walk state 178 * The owner ID is used to track table deletion and 179 * deletion of objects created by methods 180 */ 181 if (walk_state) { 182 owner_id = walk_state->owner_id; 183 } 184 185 /* Link the new entry into the parent and existing children */ 186 187 child_node = parent_node->child; 188 if (!child_node) { 189 parent_node->child = node; 190 node->flags |= ANOBJ_END_OF_PEER_LIST; 191 node->peer = parent_node; 192 } else { 193 while (!(child_node->flags & ANOBJ_END_OF_PEER_LIST)) { 194 child_node = child_node->peer; 195 } 196 197 child_node->peer = node; 198 199 /* Clear end-of-list flag */ 200 201 child_node->flags &= ~ANOBJ_END_OF_PEER_LIST; 202 node->flags |= ANOBJ_END_OF_PEER_LIST; 203 node->peer = parent_node; 204 } 205 206 /* Init the new entry */ 207 208 node->owner_id = owner_id; 209 node->type = (u8) type; 210 211 ACPI_DEBUG_PRINT((ACPI_DB_NAMES, 212 "%4.4s (%s) [Node %p Owner %X] added to %4.4s (%s) [Node %p]\n", 213 acpi_ut_get_node_name(node), 214 acpi_ut_get_type_name(node->type), node, owner_id, 215 acpi_ut_get_node_name(parent_node), 216 acpi_ut_get_type_name(parent_node->type), 217 parent_node)); 218 219 /* 220 * Increment the reference count(s) of all parents up to 221 * the root! 222 */ 223 while ((node = acpi_ns_get_parent_node(node)) != NULL) { 224 node->reference_count++; 225 } 226 227 return_VOID; 228} 229 230/******************************************************************************* 231 * 232 * FUNCTION: acpi_ns_delete_children 233 * 234 * PARAMETERS: parent_node - Delete this objects children 235 * 236 * RETURN: None. 237 * 238 * DESCRIPTION: Delete all children of the parent object. In other words, 239 * deletes a "scope". 240 * 241 ******************************************************************************/ 242 243void acpi_ns_delete_children(struct acpi_namespace_node *parent_node) 244{ 245 struct acpi_namespace_node *child_node; 246 struct acpi_namespace_node *next_node; 247 struct acpi_namespace_node *node; 248 u8 flags; 249 250 ACPI_FUNCTION_TRACE_PTR("ns_delete_children", parent_node); 251 252 if (!parent_node) { 253 return_VOID; 254 } 255 256 /* If no children, all done! */ 257 258 child_node = parent_node->child; 259 if (!child_node) { 260 return_VOID; 261 } 262 263 /* 264 * Deallocate all children at this level 265 */ 266 do { 267 /* Get the things we need */ 268 269 next_node = child_node->peer; 270 flags = child_node->flags; 271 272 /* Grandchildren should have all been deleted already */ 273 274 if (child_node->child) { 275 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, 276 "Found a grandchild! P=%p C=%p\n", 277 parent_node, child_node)); 278 } 279 280 /* Now we can free this child object */ 281 282 ACPI_MEM_TRACKING(acpi_gbl_ns_node_list->total_freed++); 283 284 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, 285 "Object %p, Remaining %X\n", child_node, 286 acpi_gbl_current_node_count)); 287 288 /* 289 * Detach an object if there is one, then free the child node 290 */ 291 acpi_ns_detach_object(child_node); 292 293 /* 294 * Decrement the reference count(s) of all parents up to 295 * the root! (counts were incremented when the node was created) 296 */ 297 node = child_node; 298 while ((node = acpi_ns_get_parent_node(node)) != NULL) { 299 node->reference_count--; 300 } 301 302 /* There should be only one reference remaining on this node */ 303 304 if (child_node->reference_count != 1) { 305 ACPI_REPORT_WARNING(("Existing references (%d) on node being deleted (%p)\n", child_node->reference_count, child_node)); 306 } 307 308 /* Now we can delete the node */ 309 310 ACPI_MEM_FREE(child_node); 311 312 /* And move on to the next child in the list */ 313 314 child_node = next_node; 315 316 } while (!(flags & ANOBJ_END_OF_PEER_LIST)); 317 318 /* Clear the parent's child pointer */ 319 320 parent_node->child = NULL; 321 322 return_VOID; 323} 324 325/******************************************************************************* 326 * 327 * FUNCTION: acpi_ns_delete_namespace_subtree 328 * 329 * PARAMETERS: parent_node - Root of the subtree to be deleted 330 * 331 * RETURN: None. 332 * 333 * DESCRIPTION: Delete a subtree of the namespace. This includes all objects 334 * stored within the subtree. 335 * 336 ******************************************************************************/ 337 338void acpi_ns_delete_namespace_subtree(struct acpi_namespace_node *parent_node) 339{ 340 struct acpi_namespace_node *child_node = NULL; 341 u32 level = 1; 342 343 ACPI_FUNCTION_TRACE("ns_delete_namespace_subtree"); 344 345 if (!parent_node) { 346 return_VOID; 347 } 348 349 /* 350 * Traverse the tree of objects until we bubble back up 351 * to where we started. 352 */ 353 while (level > 0) { 354 /* Get the next node in this scope (NULL if none) */ 355 356 child_node = acpi_ns_get_next_node(ACPI_TYPE_ANY, parent_node, 357 child_node); 358 if (child_node) { 359 /* Found a child node - detach any attached object */ 360 361 acpi_ns_detach_object(child_node); 362 363 /* Check if this node has any children */ 364 365 if (acpi_ns_get_next_node 366 (ACPI_TYPE_ANY, child_node, NULL)) { 367 /* 368 * There is at least one child of this node, 369 * visit the node 370 */ 371 level++; 372 parent_node = child_node; 373 child_node = NULL; 374 } 375 } else { 376 /* 377 * No more children of this parent node. 378 * Move up to the grandparent. 379 */ 380 level--; 381 382 /* 383 * Now delete all of the children of this parent 384 * all at the same time. 385 */ 386 acpi_ns_delete_children(parent_node); 387 388 /* New "last child" is this parent node */ 389 390 child_node = parent_node; 391 392 /* Move up the tree to the grandparent */ 393 394 parent_node = acpi_ns_get_parent_node(parent_node); 395 } 396 } 397 398 return_VOID; 399} 400 401/******************************************************************************* 402 * 403 * FUNCTION: acpi_ns_remove_reference 404 * 405 * PARAMETERS: Node - Named node whose reference count is to be 406 * decremented 407 * 408 * RETURN: None. 409 * 410 * DESCRIPTION: Remove a Node reference. Decrements the reference count 411 * of all parent Nodes up to the root. Any node along 412 * the way that reaches zero references is freed. 413 * 414 ******************************************************************************/ 415 416static void acpi_ns_remove_reference(struct acpi_namespace_node *node) 417{ 418 struct acpi_namespace_node *parent_node; 419 struct acpi_namespace_node *this_node; 420 421 ACPI_FUNCTION_ENTRY(); 422 423 /* 424 * Decrement the reference count(s) of this node and all 425 * nodes up to the root, Delete anything with zero remaining references. 426 */ 427 this_node = node; 428 while (this_node) { 429 /* Prepare to move up to parent */ 430 431 parent_node = acpi_ns_get_parent_node(this_node); 432 433 /* Decrement the reference count on this node */ 434 435 this_node->reference_count--; 436 437 /* Delete the node if no more references */ 438 439 if (!this_node->reference_count) { 440 /* Delete all children and delete the node */ 441 442 acpi_ns_delete_children(this_node); 443 acpi_ns_delete_node(this_node); 444 } 445 446 this_node = parent_node; 447 } 448} 449 450/******************************************************************************* 451 * 452 * FUNCTION: acpi_ns_delete_namespace_by_owner 453 * 454 * PARAMETERS: owner_id - All nodes with this owner will be deleted 455 * 456 * RETURN: Status 457 * 458 * DESCRIPTION: Delete entries within the namespace that are owned by a 459 * specific ID. Used to delete entire ACPI tables. All 460 * reference counts are updated. 461 * 462 ******************************************************************************/ 463 464void acpi_ns_delete_namespace_by_owner(acpi_owner_id owner_id) 465{ 466 struct acpi_namespace_node *child_node; 467 struct acpi_namespace_node *deletion_node; 468 u32 level; 469 struct acpi_namespace_node *parent_node; 470 471 ACPI_FUNCTION_TRACE_U32("ns_delete_namespace_by_owner", owner_id); 472 473 if (owner_id == 0) { 474 return_VOID; 475 } 476 477 parent_node = acpi_gbl_root_node; 478 child_node = NULL; 479 deletion_node = NULL; 480 level = 1; 481 482 /* 483 * Traverse the tree of nodes until we bubble back up 484 * to where we started. 485 */ 486 while (level > 0) { 487 /* 488 * Get the next child of this parent node. When child_node is NULL, 489 * the first child of the parent is returned 490 */ 491 child_node = 492 acpi_ns_get_next_node(ACPI_TYPE_ANY, parent_node, 493 child_node); 494 495 if (deletion_node) { 496 acpi_ns_remove_reference(deletion_node); 497 deletion_node = NULL; 498 } 499 500 if (child_node) { 501 if (child_node->owner_id == owner_id) { 502 /* Found a matching child node - detach any attached object */ 503 504 acpi_ns_detach_object(child_node); 505 } 506 507 /* Check if this node has any children */ 508 509 if (acpi_ns_get_next_node 510 (ACPI_TYPE_ANY, child_node, NULL)) { 511 /* 512 * There is at least one child of this node, 513 * visit the node 514 */ 515 level++; 516 parent_node = child_node; 517 child_node = NULL; 518 } else if (child_node->owner_id == owner_id) { 519 deletion_node = child_node; 520 } 521 } else { 522 /* 523 * No more children of this parent node. 524 * Move up to the grandparent. 525 */ 526 level--; 527 if (level != 0) { 528 if (parent_node->owner_id == owner_id) { 529 deletion_node = parent_node; 530 } 531 } 532 533 /* New "last child" is this parent node */ 534 535 child_node = parent_node; 536 537 /* Move up the tree to the grandparent */ 538 539 parent_node = acpi_ns_get_parent_node(parent_node); 540 } 541 } 542 543 return_VOID; 544}