1 /******************************************************************************* 2 * 3 * Module Name: nsaccess - Top-level functions for accessing ACPI namespace 4 * 5 ******************************************************************************/ 6 7 /****************************************************************************** 8 * 9 * 1. Copyright Notice 10 * 11 * Some or all of this work - Copyright (c) 1999 - 2013, Intel Corp. 12 * All rights reserved. 13 * 14 * 2. License 15 * 16 * 2.1. This is your license from Intel Corp. under its intellectual property 17 * rights. You may have additional license terms from the party that provided 18 * you this software, covering your right to use that party's intellectual 19 * property rights. 20 * 21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a 22 * copy of the source code appearing in this file ("Covered Code") an 23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the 24 * base code distributed originally by Intel ("Original Intel Code") to copy, 25 * make derivatives, distribute, use and display any portion of the Covered 26 * Code in any form, with the right to sublicense such rights; and 27 * 28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent 29 * license (with the right to sublicense), under only those claims of Intel 30 * patents that are infringed by the Original Intel Code, to make, use, sell, 31 * offer to sell, and import the Covered Code and derivative works thereof 32 * solely to the minimum extent necessary to exercise the above copyright 33 * license, and in no event shall the patent license extend to any additions 34 * to or modifications of the Original Intel Code. No other license or right 35 * is granted directly or by implication, estoppel or otherwise; 36 * 37 * The above copyright and patent license is granted only if the following 38 * conditions are met: 39 * 40 * 3. Conditions 41 * 42 * 3.1. Redistribution of Source with Rights to Further Distribute Source. 43 * Redistribution of source code of any substantial portion of the Covered 44 * Code or modification with rights to further distribute source must include 45 * the above Copyright Notice, the above License, this list of Conditions, 46 * and the following Disclaimer and Export Compliance provision. In addition, 47 * Licensee must cause all Covered Code to which Licensee contributes to 48 * contain a file documenting the changes Licensee made to create that Covered 49 * Code and the date of any change. Licensee must include in that file the 50 * documentation of any changes made by any predecessor Licensee. Licensee 51 * must include a prominent statement that the modification is derived, 52 * directly or indirectly, from Original Intel Code. 53 * 54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source. 55 * Redistribution of source code of any substantial portion of the Covered 56 * Code or modification without rights to further distribute source must 57 * include the following Disclaimer and Export Compliance provision in the 58 * documentation and/or other materials provided with distribution. In 59 * addition, Licensee may not authorize further sublicense of source of any 60 * portion of the Covered Code, and must include terms to the effect that the 61 * license from Licensee to its licensee is limited to the intellectual 62 * property embodied in the software Licensee provides to its licensee, and 63 * not to intellectual property embodied in modifications its licensee may 64 * make. 65 * 66 * 3.3. Redistribution of Executable. Redistribution in executable form of any 67 * substantial portion of the Covered Code or modification must reproduce the 68 * above Copyright Notice, and the following Disclaimer and Export Compliance 69 * provision in the documentation and/or other materials provided with the 70 * distribution. 71 * 72 * 3.4. Intel retains all right, title, and interest in and to the Original 73 * Intel Code. 74 * 75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by 76 * Intel shall be used in advertising or otherwise to promote the sale, use or 77 * other dealings in products derived from or relating to the Covered Code 78 * without prior written authorization from Intel. 79 * 80 * 4. Disclaimer and Export Compliance 81 * 82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED 83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE 84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, 85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY 86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY 87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A 88 * PARTICULAR PURPOSE. 89 * 90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES 91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR 92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, 93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY 94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL 95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS 96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY 97 * LIMITED REMEDY. 98 * 99 * 4.3. Licensee shall not export, either directly or indirectly, any of this 100 * software or system incorporating such software without first obtaining any 101 * required license or other approval from the U. S. Department of Commerce or 102 * any other agency or department of the United States Government. In the 103 * event Licensee exports any such software from the United States or 104 * re-exports any such software from a foreign destination, Licensee shall 105 * ensure that the distribution and export/re-export of the software is in 106 * compliance with all laws, regulations, orders, or other restrictions of the 107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor 108 * any of its subsidiaries will export/re-export any technical data, process, 109 * software, or service, directly or indirectly, to any country for which the 110 * United States government or any agency thereof requires an export license, 111 * other governmental approval, or letter of assurance, without first obtaining 112 * such license, approval or letter. 113 * 114 *****************************************************************************/ 115 116 #define __NSACCESS_C__ 117 118 #include "acpi.h" 119 #include "accommon.h" 120 #include "amlcode.h" 121 #include "acnamesp.h" 122 #include "acdispat.h" 123 124 125 #define _COMPONENT ACPI_NAMESPACE 126 ACPI_MODULE_NAME ("nsaccess") 127 128 129 /******************************************************************************* 130 * 131 * FUNCTION: AcpiNsRootInitialize 132 * 133 * PARAMETERS: None 134 * 135 * RETURN: Status 136 * 137 * DESCRIPTION: Allocate and initialize the default root named objects 138 * 139 * MUTEX: Locks namespace for entire execution 140 * 141 ******************************************************************************/ 142 143 ACPI_STATUS 144 AcpiNsRootInitialize ( 145 void) 146 { 147 ACPI_STATUS Status; 148 const ACPI_PREDEFINED_NAMES *InitVal = NULL; 149 ACPI_NAMESPACE_NODE *NewNode; 150 ACPI_OPERAND_OBJECT *ObjDesc; 151 ACPI_STRING Val = NULL; 152 153 154 ACPI_FUNCTION_TRACE (NsRootInitialize); 155 156 157 Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE); 158 if (ACPI_FAILURE (Status)) 159 { 160 return_ACPI_STATUS (Status); 161 } 162 163 /* 164 * The global root ptr is initially NULL, so a non-NULL value indicates 165 * that AcpiNsRootInitialize() has already been called; just return. 166 */ 167 if (AcpiGbl_RootNode) 168 { 169 Status = AE_OK; 170 goto UnlockAndExit; 171 } 172 173 /* 174 * Tell the rest of the subsystem that the root is initialized 175 * (This is OK because the namespace is locked) 176 */ 177 AcpiGbl_RootNode = &AcpiGbl_RootNodeStruct; 178 179 /* Enter the pre-defined names in the name table */ 180 181 ACPI_DEBUG_PRINT ((ACPI_DB_INFO, 182 "Entering predefined entries into namespace\n")); 183 184 for (InitVal = AcpiGbl_PreDefinedNames; InitVal->Name; InitVal++) 185 { 186 /* _OSI is optional for now, will be permanent later */ 187 188 if (!ACPI_STRCMP (InitVal->Name, "_OSI") && !AcpiGbl_CreateOsiMethod) 189 { 190 continue; 191 } 192 193 Status = AcpiNsLookup (NULL, InitVal->Name, InitVal->Type, 194 ACPI_IMODE_LOAD_PASS2, ACPI_NS_NO_UPSEARCH, 195 NULL, &NewNode); 196 if (ACPI_FAILURE (Status)) 197 { 198 ACPI_EXCEPTION ((AE_INFO, Status, 199 "Could not create predefined name %s", 200 InitVal->Name)); 201 continue; 202 } 203 204 /* 205 * Name entered successfully. If entry in PreDefinedNames[] specifies 206 * an initial value, create the initial value. 207 */ 208 if (InitVal->Val) 209 { 210 Status = AcpiOsPredefinedOverride (InitVal, &Val); 211 if (ACPI_FAILURE (Status)) 212 { 213 ACPI_ERROR ((AE_INFO, 214 "Could not override predefined %s", 215 InitVal->Name)); 216 } 217 218 if (!Val) 219 { 220 Val = InitVal->Val; 221 } 222 223 /* 224 * Entry requests an initial value, allocate a 225 * descriptor for it. 226 */ 227 ObjDesc = AcpiUtCreateInternalObject (InitVal->Type); 228 if (!ObjDesc) 229 { 230 Status = AE_NO_MEMORY; 231 goto UnlockAndExit; 232 } 233 234 /* 235 * Convert value string from table entry to 236 * internal representation. Only types actually 237 * used for initial values are implemented here. 238 */ 239 switch (InitVal->Type) 240 { 241 case ACPI_TYPE_METHOD: 242 243 ObjDesc->Method.ParamCount = (UINT8) ACPI_TO_INTEGER (Val); 244 ObjDesc->Common.Flags |= AOPOBJ_DATA_VALID; 245 246 #if defined (ACPI_ASL_COMPILER) 247 248 /* Save the parameter count for the iASL compiler */ 249 250 NewNode->Value = ObjDesc->Method.ParamCount; 251 #else 252 /* Mark this as a very SPECIAL method */ 253 254 ObjDesc->Method.InfoFlags = ACPI_METHOD_INTERNAL_ONLY; 255 ObjDesc->Method.Dispatch.Implementation = AcpiUtOsiImplementation; 256 #endif 257 break; 258 259 case ACPI_TYPE_INTEGER: 260 261 ObjDesc->Integer.Value = ACPI_TO_INTEGER (Val); 262 break; 263 264 case ACPI_TYPE_STRING: 265 266 /* Build an object around the static string */ 267 268 ObjDesc->String.Length = (UINT32) ACPI_STRLEN (Val); 269 ObjDesc->String.Pointer = Val; 270 ObjDesc->Common.Flags |= AOPOBJ_STATIC_POINTER; 271 break; 272 273 case ACPI_TYPE_MUTEX: 274 275 ObjDesc->Mutex.Node = NewNode; 276 ObjDesc->Mutex.SyncLevel = (UINT8) (ACPI_TO_INTEGER (Val) - 1); 277 278 /* Create a mutex */ 279 280 Status = AcpiOsCreateMutex (&ObjDesc->Mutex.OsMutex); 281 if (ACPI_FAILURE (Status)) 282 { 283 AcpiUtRemoveReference (ObjDesc); 284 goto UnlockAndExit; 285 } 286 287 /* Special case for ACPI Global Lock */ 288 289 if (ACPI_STRCMP (InitVal->Name, "_GL_") == 0) 290 { 291 AcpiGbl_GlobalLockMutex = ObjDesc; 292 293 /* Create additional counting semaphore for global lock */ 294 295 Status = AcpiOsCreateSemaphore ( 296 1, 0, &AcpiGbl_GlobalLockSemaphore); 297 if (ACPI_FAILURE (Status)) 298 { 299 AcpiUtRemoveReference (ObjDesc); 300 goto UnlockAndExit; 301 } 302 } 303 break; 304 305 default: 306 307 ACPI_ERROR ((AE_INFO, "Unsupported initial type value 0x%X", 308 InitVal->Type)); 309 AcpiUtRemoveReference (ObjDesc); 310 ObjDesc = NULL; 311 continue; 312 } 313 314 /* Store pointer to value descriptor in the Node */ 315 316 Status = AcpiNsAttachObject (NewNode, ObjDesc, 317 ObjDesc->Common.Type); 318 319 /* Remove local reference to the object */ 320 321 AcpiUtRemoveReference (ObjDesc); 322 } 323 } 324 325 326 UnlockAndExit: 327 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE); 328 329 /* Save a handle to "_GPE", it is always present */ 330 331 if (ACPI_SUCCESS (Status)) 332 { 333 Status = AcpiNsGetNode (NULL, "\\_GPE", ACPI_NS_NO_UPSEARCH, 334 &AcpiGbl_FadtGpeDevice); 335 } 336 337 return_ACPI_STATUS (Status); 338 } 339 340 341 /******************************************************************************* 342 * 343 * FUNCTION: AcpiNsLookup 344 * 345 * PARAMETERS: ScopeInfo - Current scope info block 346 * Pathname - Search pathname, in internal format 347 * (as represented in the AML stream) 348 * Type - Type associated with name 349 * InterpreterMode - IMODE_LOAD_PASS2 => add name if not found 350 * Flags - Flags describing the search restrictions 351 * WalkState - Current state of the walk 352 * ReturnNode - Where the Node is placed (if found 353 * or created successfully) 354 * 355 * RETURN: Status 356 * 357 * DESCRIPTION: Find or enter the passed name in the name space. 358 * Log an error if name not found in Exec mode. 359 * 360 * MUTEX: Assumes namespace is locked. 361 * 362 ******************************************************************************/ 363 364 ACPI_STATUS 365 AcpiNsLookup ( 366 ACPI_GENERIC_STATE *ScopeInfo, 367 char *Pathname, 368 ACPI_OBJECT_TYPE Type, 369 ACPI_INTERPRETER_MODE InterpreterMode, 370 UINT32 Flags, 371 ACPI_WALK_STATE *WalkState, 372 ACPI_NAMESPACE_NODE **ReturnNode) 373 { 374 ACPI_STATUS Status; 375 char *Path = Pathname; 376 ACPI_NAMESPACE_NODE *PrefixNode; 377 ACPI_NAMESPACE_NODE *CurrentNode = NULL; 378 ACPI_NAMESPACE_NODE *ThisNode = NULL; 379 UINT32 NumSegments; 380 UINT32 NumCarats; 381 ACPI_NAME SimpleName; 382 ACPI_OBJECT_TYPE TypeToCheckFor; 383 ACPI_OBJECT_TYPE ThisSearchType; 384 UINT32 SearchParentFlag = ACPI_NS_SEARCH_PARENT; 385 UINT32 LocalFlags; 386 387 388 ACPI_FUNCTION_TRACE (NsLookup); 389 390 391 if (!ReturnNode) 392 { 393 return_ACPI_STATUS (AE_BAD_PARAMETER); 394 } 395 396 LocalFlags = Flags & ~(ACPI_NS_ERROR_IF_FOUND | ACPI_NS_SEARCH_PARENT); 397 *ReturnNode = ACPI_ENTRY_NOT_FOUND; 398 AcpiGbl_NsLookupCount++; 399 400 if (!AcpiGbl_RootNode) 401 { 402 return_ACPI_STATUS (AE_NO_NAMESPACE); 403 } 404 405 /* Get the prefix scope. A null scope means use the root scope */ 406 407 if ((!ScopeInfo) || 408 (!ScopeInfo->Scope.Node)) 409 { 410 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 411 "Null scope prefix, using root node (%p)\n", 412 AcpiGbl_RootNode)); 413 414 PrefixNode = AcpiGbl_RootNode; 415 } 416 else 417 { 418 PrefixNode = ScopeInfo->Scope.Node; 419 if (ACPI_GET_DESCRIPTOR_TYPE (PrefixNode) != ACPI_DESC_TYPE_NAMED) 420 { 421 ACPI_ERROR ((AE_INFO, "%p is not a namespace node [%s]", 422 PrefixNode, AcpiUtGetDescriptorName (PrefixNode))); 423 return_ACPI_STATUS (AE_AML_INTERNAL); 424 } 425 426 if (!(Flags & ACPI_NS_PREFIX_IS_SCOPE)) 427 { 428 /* 429 * This node might not be a actual "scope" node (such as a 430 * Device/Method, etc.) It could be a Package or other object 431 * node. Backup up the tree to find the containing scope node. 432 */ 433 while (!AcpiNsOpensScope (PrefixNode->Type) && 434 PrefixNode->Type != ACPI_TYPE_ANY) 435 { 436 PrefixNode = PrefixNode->Parent; 437 } 438 } 439 } 440 441 /* Save type. TBD: may be no longer necessary */ 442 443 TypeToCheckFor = Type; 444 445 /* 446 * Begin examination of the actual pathname 447 */ 448 if (!Pathname) 449 { 450 /* A Null NamePath is allowed and refers to the root */ 451 452 NumSegments = 0; 453 ThisNode = AcpiGbl_RootNode; 454 Path = ""; 455 456 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 457 "Null Pathname (Zero segments), Flags=%X\n", Flags)); 458 } 459 else 460 { 461 /* 462 * Name pointer is valid (and must be in internal name format) 463 * 464 * Check for scope prefixes: 465 * 466 * As represented in the AML stream, a namepath consists of an 467 * optional scope prefix followed by a name segment part. 468 * 469 * If present, the scope prefix is either a Root Prefix (in 470 * which case the name is fully qualified), or one or more 471 * Parent Prefixes (in which case the name's scope is relative 472 * to the current scope). 473 */ 474 if (*Path == (UINT8) AML_ROOT_PREFIX) 475 { 476 /* Pathname is fully qualified, start from the root */ 477 478 ThisNode = AcpiGbl_RootNode; 479 SearchParentFlag = ACPI_NS_NO_UPSEARCH; 480 481 /* Point to name segment part */ 482 483 Path++; 484 485 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 486 "Path is absolute from root [%p]\n", ThisNode)); 487 } 488 else 489 { 490 /* Pathname is relative to current scope, start there */ 491 492 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 493 "Searching relative to prefix scope [%4.4s] (%p)\n", 494 AcpiUtGetNodeName (PrefixNode), PrefixNode)); 495 496 /* 497 * Handle multiple Parent Prefixes (carat) by just getting 498 * the parent node for each prefix instance. 499 */ 500 ThisNode = PrefixNode; 501 NumCarats = 0; 502 while (*Path == (UINT8) AML_PARENT_PREFIX) 503 { 504 /* Name is fully qualified, no search rules apply */ 505 506 SearchParentFlag = ACPI_NS_NO_UPSEARCH; 507 508 /* 509 * Point past this prefix to the name segment 510 * part or the next Parent Prefix 511 */ 512 Path++; 513 514 /* Backup to the parent node */ 515 516 NumCarats++; 517 ThisNode = ThisNode->Parent; 518 if (!ThisNode) 519 { 520 /* Current scope has no parent scope */ 521 522 ACPI_ERROR ((AE_INFO, 523 "%s: Path has too many parent prefixes (^) " 524 "- reached beyond root node", Pathname)); 525 return_ACPI_STATUS (AE_NOT_FOUND); 526 } 527 } 528 529 if (SearchParentFlag == ACPI_NS_NO_UPSEARCH) 530 { 531 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 532 "Search scope is [%4.4s], path has %u carat(s)\n", 533 AcpiUtGetNodeName (ThisNode), NumCarats)); 534 } 535 } 536 537 /* 538 * Determine the number of ACPI name segments in this pathname. 539 * 540 * The segment part consists of either: 541 * - A Null name segment (0) 542 * - A DualNamePrefix followed by two 4-byte name segments 543 * - A MultiNamePrefix followed by a byte indicating the 544 * number of segments and the segments themselves. 545 * - A single 4-byte name segment 546 * 547 * Examine the name prefix opcode, if any, to determine the number of 548 * segments. 549 */ 550 switch (*Path) 551 { 552 case 0: 553 /* 554 * Null name after a root or parent prefixes. We already 555 * have the correct target node and there are no name segments. 556 */ 557 NumSegments = 0; 558 Type = ThisNode->Type; 559 560 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 561 "Prefix-only Pathname (Zero name segments), Flags=%X\n", 562 Flags)); 563 break; 564 565 case AML_DUAL_NAME_PREFIX: 566 567 /* More than one NameSeg, search rules do not apply */ 568 569 SearchParentFlag = ACPI_NS_NO_UPSEARCH; 570 571 /* Two segments, point to first name segment */ 572 573 NumSegments = 2; 574 Path++; 575 576 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 577 "Dual Pathname (2 segments, Flags=%X)\n", Flags)); 578 break; 579 580 case AML_MULTI_NAME_PREFIX_OP: 581 582 /* More than one NameSeg, search rules do not apply */ 583 584 SearchParentFlag = ACPI_NS_NO_UPSEARCH; 585 586 /* Extract segment count, point to first name segment */ 587 588 Path++; 589 NumSegments = (UINT32) (UINT8) *Path; 590 Path++; 591 592 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 593 "Multi Pathname (%u Segments, Flags=%X)\n", 594 NumSegments, Flags)); 595 break; 596 597 default: 598 /* 599 * Not a Null name, no Dual or Multi prefix, hence there is 600 * only one name segment and Pathname is already pointing to it. 601 */ 602 NumSegments = 1; 603 604 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 605 "Simple Pathname (1 segment, Flags=%X)\n", Flags)); 606 break; 607 } 608 609 ACPI_DEBUG_EXEC (AcpiNsPrintPathname (NumSegments, Path)); 610 } 611 612 613 /* 614 * Search namespace for each segment of the name. Loop through and 615 * verify (or add to the namespace) each name segment. 616 * 617 * The object type is significant only at the last name 618 * segment. (We don't care about the types along the path, only 619 * the type of the final target object.) 620 */ 621 ThisSearchType = ACPI_TYPE_ANY; 622 CurrentNode = ThisNode; 623 while (NumSegments && CurrentNode) 624 { 625 NumSegments--; 626 if (!NumSegments) 627 { 628 /* This is the last segment, enable typechecking */ 629 630 ThisSearchType = Type; 631 632 /* 633 * Only allow automatic parent search (search rules) if the caller 634 * requested it AND we have a single, non-fully-qualified NameSeg 635 */ 636 if ((SearchParentFlag != ACPI_NS_NO_UPSEARCH) && 637 (Flags & ACPI_NS_SEARCH_PARENT)) 638 { 639 LocalFlags |= ACPI_NS_SEARCH_PARENT; 640 } 641 642 /* Set error flag according to caller */ 643 644 if (Flags & ACPI_NS_ERROR_IF_FOUND) 645 { 646 LocalFlags |= ACPI_NS_ERROR_IF_FOUND; 647 } 648 } 649 650 /* Extract one ACPI name from the front of the pathname */ 651 652 ACPI_MOVE_32_TO_32 (&SimpleName, Path); 653 654 /* Try to find the single (4 character) ACPI name */ 655 656 Status = AcpiNsSearchAndEnter (SimpleName, WalkState, CurrentNode, 657 InterpreterMode, ThisSearchType, LocalFlags, &ThisNode); 658 if (ACPI_FAILURE (Status)) 659 { 660 if (Status == AE_NOT_FOUND) 661 { 662 /* Name not found in ACPI namespace */ 663 664 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 665 "Name [%4.4s] not found in scope [%4.4s] %p\n", 666 (char *) &SimpleName, (char *) &CurrentNode->Name, 667 CurrentNode)); 668 } 669 670 *ReturnNode = ThisNode; 671 return_ACPI_STATUS (Status); 672 } 673 674 /* More segments to follow? */ 675 676 if (NumSegments > 0) 677 { 678 /* 679 * If we have an alias to an object that opens a scope (such as a 680 * device or processor), we need to dereference the alias here so 681 * that we can access any children of the original node (via the 682 * remaining segments). 683 */ 684 if (ThisNode->Type == ACPI_TYPE_LOCAL_ALIAS) 685 { 686 if (!ThisNode->Object) 687 { 688 return_ACPI_STATUS (AE_NOT_EXIST); 689 } 690 691 if (AcpiNsOpensScope (((ACPI_NAMESPACE_NODE *) 692 ThisNode->Object)->Type)) 693 { 694 ThisNode = (ACPI_NAMESPACE_NODE *) ThisNode->Object; 695 } 696 } 697 } 698 699 /* Special handling for the last segment (NumSegments == 0) */ 700 701 else 702 { 703 /* 704 * Sanity typecheck of the target object: 705 * 706 * If 1) This is the last segment (NumSegments == 0) 707 * 2) And we are looking for a specific type 708 * (Not checking for TYPE_ANY) 709 * 3) Which is not an alias 710 * 4) Which is not a local type (TYPE_SCOPE) 711 * 5) And the type of target object is known (not TYPE_ANY) 712 * 6) And target object does not match what we are looking for 713 * 714 * Then we have a type mismatch. Just warn and ignore it. 715 */ 716 if ((TypeToCheckFor != ACPI_TYPE_ANY) && 717 (TypeToCheckFor != ACPI_TYPE_LOCAL_ALIAS) && 718 (TypeToCheckFor != ACPI_TYPE_LOCAL_METHOD_ALIAS) && 719 (TypeToCheckFor != ACPI_TYPE_LOCAL_SCOPE) && 720 (ThisNode->Type != ACPI_TYPE_ANY) && 721 (ThisNode->Type != TypeToCheckFor)) 722 { 723 /* Complain about a type mismatch */ 724 725 ACPI_WARNING ((AE_INFO, 726 "NsLookup: Type mismatch on %4.4s (%s), searching for (%s)", 727 ACPI_CAST_PTR (char, &SimpleName), 728 AcpiUtGetTypeName (ThisNode->Type), 729 AcpiUtGetTypeName (TypeToCheckFor))); 730 } 731 732 /* 733 * If this is the last name segment and we are not looking for a 734 * specific type, but the type of found object is known, use that 735 * type to (later) see if it opens a scope. 736 */ 737 if (Type == ACPI_TYPE_ANY) 738 { 739 Type = ThisNode->Type; 740 } 741 } 742 743 /* Point to next name segment and make this node current */ 744 745 Path += ACPI_NAME_SIZE; 746 CurrentNode = ThisNode; 747 } 748 749 /* Always check if we need to open a new scope */ 750 751 if (!(Flags & ACPI_NS_DONT_OPEN_SCOPE) && (WalkState)) 752 { 753 /* 754 * If entry is a type which opens a scope, push the new scope on the 755 * scope stack. 756 */ 757 if (AcpiNsOpensScope (Type)) 758 { 759 Status = AcpiDsScopeStackPush (ThisNode, Type, WalkState); 760 if (ACPI_FAILURE (Status)) 761 { 762 return_ACPI_STATUS (Status); 763 } 764 } 765 } 766 767 *ReturnNode = ThisNode; 768 return_ACPI_STATUS (AE_OK); 769 } 770