Home | History | Annotate | Line # | Download | only in dispatcher
dswload.c revision 1.1.1.7
      1 /******************************************************************************
      2  *
      3  * Module Name: dswload - Dispatcher first pass namespace load callbacks
      4  *
      5  *****************************************************************************/
      6 
      7 /*
      8  * Copyright (C) 2000 - 2015, Intel Corp.
      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.h"
     45 #include "accommon.h"
     46 #include "acparser.h"
     47 #include "amlcode.h"
     48 #include "acdispat.h"
     49 #include "acinterp.h"
     50 #include "acnamesp.h"
     51 
     52 #ifdef ACPI_ASL_COMPILER
     53 #include "acdisasm.h"
     54 #endif
     55 
     56 #define _COMPONENT          ACPI_DISPATCHER
     57         ACPI_MODULE_NAME    ("dswload")
     58 
     59 
     60 /*******************************************************************************
     61  *
     62  * FUNCTION:    AcpiDsInitCallbacks
     63  *
     64  * PARAMETERS:  WalkState       - Current state of the parse tree walk
     65  *              PassNumber      - 1, 2, or 3
     66  *
     67  * RETURN:      Status
     68  *
     69  * DESCRIPTION: Init walk state callbacks
     70  *
     71  ******************************************************************************/
     72 
     73 ACPI_STATUS
     74 AcpiDsInitCallbacks (
     75     ACPI_WALK_STATE         *WalkState,
     76     UINT32                  PassNumber)
     77 {
     78 
     79     switch (PassNumber)
     80     {
     81     case 0:
     82 
     83         /* Parse only - caller will setup callbacks */
     84 
     85         WalkState->ParseFlags         = ACPI_PARSE_LOAD_PASS1 |
     86                                         ACPI_PARSE_DELETE_TREE |
     87                                         ACPI_PARSE_DISASSEMBLE;
     88         WalkState->DescendingCallback = NULL;
     89         WalkState->AscendingCallback  = NULL;
     90         break;
     91 
     92     case 1:
     93 
     94         /* Load pass 1 */
     95 
     96         WalkState->ParseFlags         = ACPI_PARSE_LOAD_PASS1 |
     97                                         ACPI_PARSE_DELETE_TREE;
     98         WalkState->DescendingCallback = AcpiDsLoad1BeginOp;
     99         WalkState->AscendingCallback  = AcpiDsLoad1EndOp;
    100         break;
    101 
    102     case 2:
    103 
    104         /* Load pass 2 */
    105 
    106         WalkState->ParseFlags         = ACPI_PARSE_LOAD_PASS1 |
    107                                         ACPI_PARSE_DELETE_TREE;
    108         WalkState->DescendingCallback = AcpiDsLoad2BeginOp;
    109         WalkState->AscendingCallback  = AcpiDsLoad2EndOp;
    110         break;
    111 
    112     case 3:
    113 
    114         /* Execution pass */
    115 
    116 #ifndef ACPI_NO_METHOD_EXECUTION
    117         WalkState->ParseFlags        |= ACPI_PARSE_EXECUTE  |
    118                                         ACPI_PARSE_DELETE_TREE;
    119         WalkState->DescendingCallback = AcpiDsExecBeginOp;
    120         WalkState->AscendingCallback  = AcpiDsExecEndOp;
    121 #endif
    122         break;
    123 
    124     default:
    125 
    126         return (AE_BAD_PARAMETER);
    127     }
    128 
    129     return (AE_OK);
    130 }
    131 
    132 
    133 /*******************************************************************************
    134  *
    135  * FUNCTION:    AcpiDsLoad1BeginOp
    136  *
    137  * PARAMETERS:  WalkState       - Current state of the parse tree walk
    138  *              OutOp           - Where to return op if a new one is created
    139  *
    140  * RETURN:      Status
    141  *
    142  * DESCRIPTION: Descending callback used during the loading of ACPI tables.
    143  *
    144  ******************************************************************************/
    145 
    146 ACPI_STATUS
    147 AcpiDsLoad1BeginOp (
    148     ACPI_WALK_STATE         *WalkState,
    149     ACPI_PARSE_OBJECT       **OutOp)
    150 {
    151     ACPI_PARSE_OBJECT       *Op;
    152     ACPI_NAMESPACE_NODE     *Node;
    153     ACPI_STATUS             Status;
    154     ACPI_OBJECT_TYPE        ObjectType;
    155     char                    *Path;
    156     UINT32                  Flags;
    157 
    158 
    159     ACPI_FUNCTION_TRACE (DsLoad1BeginOp);
    160 
    161 
    162     Op = WalkState->Op;
    163     ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Op=%p State=%p\n", Op, WalkState));
    164 
    165     /* We are only interested in opcodes that have an associated name */
    166 
    167     if (Op)
    168     {
    169         if (!(WalkState->OpInfo->Flags & AML_NAMED))
    170         {
    171             *OutOp = Op;
    172             return_ACPI_STATUS (AE_OK);
    173         }
    174 
    175         /* Check if this object has already been installed in the namespace */
    176 
    177         if (Op->Common.Node)
    178         {
    179             *OutOp = Op;
    180             return_ACPI_STATUS (AE_OK);
    181         }
    182     }
    183 
    184     Path = AcpiPsGetNextNamestring (&WalkState->ParserState);
    185 
    186     /* Map the raw opcode into an internal object type */
    187 
    188     ObjectType = WalkState->OpInfo->ObjectType;
    189 
    190     ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
    191         "State=%p Op=%p [%s]\n", WalkState, Op, AcpiUtGetTypeName (ObjectType)));
    192 
    193     switch (WalkState->Opcode)
    194     {
    195     case AML_SCOPE_OP:
    196         /*
    197          * The target name of the Scope() operator must exist at this point so
    198          * that we can actually open the scope to enter new names underneath it.
    199          * Allow search-to-root for single namesegs.
    200          */
    201         Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
    202                         ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT, WalkState, &(Node));
    203 #ifdef ACPI_ASL_COMPILER
    204         if (Status == AE_NOT_FOUND)
    205         {
    206             /*
    207              * Table disassembly:
    208              * Target of Scope() not found. Generate an External for it, and
    209              * insert the name into the namespace.
    210              */
    211             AcpiDmAddOpToExternalList (Op, Path, ACPI_TYPE_DEVICE, 0, 0);
    212             Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
    213                        ACPI_IMODE_LOAD_PASS1, ACPI_NS_SEARCH_PARENT,
    214                        WalkState, &Node);
    215         }
    216 #endif
    217         if (ACPI_FAILURE (Status))
    218         {
    219             ACPI_ERROR_NAMESPACE (Path, Status);
    220             return_ACPI_STATUS (Status);
    221         }
    222 
    223         /*
    224          * Check to make sure that the target is
    225          * one of the opcodes that actually opens a scope
    226          */
    227         switch (Node->Type)
    228         {
    229         case ACPI_TYPE_ANY:
    230         case ACPI_TYPE_LOCAL_SCOPE:         /* Scope  */
    231         case ACPI_TYPE_DEVICE:
    232         case ACPI_TYPE_POWER:
    233         case ACPI_TYPE_PROCESSOR:
    234         case ACPI_TYPE_THERMAL:
    235 
    236             /* These are acceptable types */
    237             break;
    238 
    239         case ACPI_TYPE_INTEGER:
    240         case ACPI_TYPE_STRING:
    241         case ACPI_TYPE_BUFFER:
    242             /*
    243              * These types we will allow, but we will change the type.
    244              * This enables some existing code of the form:
    245              *
    246              *  Name (DEB, 0)
    247              *  Scope (DEB) { ... }
    248              *
    249              * Note: silently change the type here. On the second pass,
    250              * we will report a warning
    251              */
    252             ACPI_DEBUG_PRINT ((ACPI_DB_INFO,
    253                 "Type override - [%4.4s] had invalid type (%s) "
    254                 "for Scope operator, changed to type ANY\n",
    255                 AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Node->Type)));
    256 
    257             Node->Type = ACPI_TYPE_ANY;
    258             WalkState->ScopeInfo->Common.Value = ACPI_TYPE_ANY;
    259             break;
    260 
    261         case ACPI_TYPE_METHOD:
    262             /*
    263              * Allow scope change to root during execution of module-level
    264              * code. Root is typed METHOD during this time.
    265              */
    266             if ((Node == AcpiGbl_RootNode) &&
    267                 (WalkState->ParseFlags & ACPI_PARSE_MODULE_LEVEL))
    268             {
    269                 break;
    270             }
    271 
    272             /*lint -fallthrough */
    273 
    274         default:
    275 
    276             /* All other types are an error */
    277 
    278             ACPI_ERROR ((AE_INFO,
    279                 "Invalid type (%s) for target of "
    280                 "Scope operator [%4.4s] (Cannot override)",
    281                 AcpiUtGetTypeName (Node->Type), AcpiUtGetNodeName (Node)));
    282 
    283             return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
    284         }
    285         break;
    286 
    287     default:
    288         /*
    289          * For all other named opcodes, we will enter the name into
    290          * the namespace.
    291          *
    292          * Setup the search flags.
    293          * Since we are entering a name into the namespace, we do not want to
    294          * enable the search-to-root upsearch.
    295          *
    296          * There are only two conditions where it is acceptable that the name
    297          * already exists:
    298          *    1) the Scope() operator can reopen a scoping object that was
    299          *       previously defined (Scope, Method, Device, etc.)
    300          *    2) Whenever we are parsing a deferred opcode (OpRegion, Buffer,
    301          *       BufferField, or Package), the name of the object is already
    302          *       in the namespace.
    303          */
    304         if (WalkState->DeferredNode)
    305         {
    306             /* This name is already in the namespace, get the node */
    307 
    308             Node = WalkState->DeferredNode;
    309             Status = AE_OK;
    310             break;
    311         }
    312 
    313         /*
    314          * If we are executing a method, do not create any namespace objects
    315          * during the load phase, only during execution.
    316          */
    317         if (WalkState->MethodNode)
    318         {
    319             Node = NULL;
    320             Status = AE_OK;
    321             break;
    322         }
    323 
    324         Flags = ACPI_NS_NO_UPSEARCH;
    325         if ((WalkState->Opcode != AML_SCOPE_OP) &&
    326             (!(WalkState->ParseFlags & ACPI_PARSE_DEFERRED_OP)))
    327         {
    328             if (WalkState->NamespaceOverride)
    329             {
    330                 Flags |= ACPI_NS_OVERRIDE_IF_FOUND;
    331                 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[%s] Override allowed\n",
    332                         AcpiUtGetTypeName (ObjectType)));
    333             }
    334             else
    335             {
    336                 Flags |= ACPI_NS_ERROR_IF_FOUND;
    337                 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[%s] Cannot already exist\n",
    338                         AcpiUtGetTypeName (ObjectType)));
    339             }
    340         }
    341         else
    342         {
    343             ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
    344                 "[%s] Both Find or Create allowed\n",
    345                     AcpiUtGetTypeName (ObjectType)));
    346         }
    347 
    348         /*
    349          * Enter the named type into the internal namespace. We enter the name
    350          * as we go downward in the parse tree. Any necessary subobjects that
    351          * involve arguments to the opcode must be created as we go back up the
    352          * parse tree later.
    353          */
    354         Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
    355                         ACPI_IMODE_LOAD_PASS1, Flags, WalkState, &Node);
    356         if (ACPI_FAILURE (Status))
    357         {
    358             if (Status == AE_ALREADY_EXISTS)
    359             {
    360                 /* The name already exists in this scope */
    361 
    362                 if (Node->Flags & ANOBJ_IS_EXTERNAL)
    363                 {
    364                     /*
    365                      * Allow one create on an object or segment that was
    366                      * previously declared External
    367                      */
    368                     Node->Flags &= ~ANOBJ_IS_EXTERNAL;
    369                     Node->Type = (UINT8) ObjectType;
    370 
    371                     /* Just retyped a node, probably will need to open a scope */
    372 
    373                     if (AcpiNsOpensScope (ObjectType))
    374                     {
    375                         Status = AcpiDsScopeStackPush (Node, ObjectType, WalkState);
    376                         if (ACPI_FAILURE (Status))
    377                         {
    378                             return_ACPI_STATUS (Status);
    379                         }
    380                     }
    381 
    382                     Status = AE_OK;
    383                 }
    384             }
    385 
    386             if (ACPI_FAILURE (Status))
    387             {
    388                 ACPI_ERROR_NAMESPACE (Path, Status);
    389                 return_ACPI_STATUS (Status);
    390             }
    391         }
    392         break;
    393     }
    394 
    395     /* Common exit */
    396 
    397     if (!Op)
    398     {
    399         /* Create a new op */
    400 
    401         Op = AcpiPsAllocOp (WalkState->Opcode, WalkState->Aml);
    402         if (!Op)
    403         {
    404             return_ACPI_STATUS (AE_NO_MEMORY);
    405         }
    406     }
    407 
    408     /* Initialize the op */
    409 
    410 #if (defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY))
    411     Op->Named.Path = ACPI_CAST_PTR (UINT8, Path);
    412 #endif
    413 
    414     if (Node)
    415     {
    416         /*
    417          * Put the Node in the "op" object that the parser uses, so we
    418          * can get it again quickly when this scope is closed
    419          */
    420         Op->Common.Node = Node;
    421         Op->Named.Name = Node->Name.Integer;
    422     }
    423 
    424     AcpiPsAppendArg (AcpiPsGetParentScope (&WalkState->ParserState), Op);
    425     *OutOp = Op;
    426     return_ACPI_STATUS (Status);
    427 }
    428 
    429 
    430 /*******************************************************************************
    431  *
    432  * FUNCTION:    AcpiDsLoad1EndOp
    433  *
    434  * PARAMETERS:  WalkState       - Current state of the parse tree walk
    435  *
    436  * RETURN:      Status
    437  *
    438  * DESCRIPTION: Ascending callback used during the loading of the namespace,
    439  *              both control methods and everything else.
    440  *
    441  ******************************************************************************/
    442 
    443 ACPI_STATUS
    444 AcpiDsLoad1EndOp (
    445     ACPI_WALK_STATE         *WalkState)
    446 {
    447     ACPI_PARSE_OBJECT       *Op;
    448     ACPI_OBJECT_TYPE        ObjectType;
    449     ACPI_STATUS             Status = AE_OK;
    450 
    451 
    452     ACPI_FUNCTION_TRACE (DsLoad1EndOp);
    453 
    454 
    455     Op = WalkState->Op;
    456     ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Op=%p State=%p\n", Op, WalkState));
    457 
    458     /* We are only interested in opcodes that have an associated name */
    459 
    460     if (!(WalkState->OpInfo->Flags & (AML_NAMED | AML_FIELD)))
    461     {
    462         return_ACPI_STATUS (AE_OK);
    463     }
    464 
    465     /* Get the object type to determine if we should pop the scope */
    466 
    467     ObjectType = WalkState->OpInfo->ObjectType;
    468 
    469 #ifndef ACPI_NO_METHOD_EXECUTION
    470     if (WalkState->OpInfo->Flags & AML_FIELD)
    471     {
    472         /*
    473          * If we are executing a method, do not create any namespace objects
    474          * during the load phase, only during execution.
    475          */
    476         if (!WalkState->MethodNode)
    477         {
    478             if (WalkState->Opcode == AML_FIELD_OP          ||
    479                 WalkState->Opcode == AML_BANK_FIELD_OP     ||
    480                 WalkState->Opcode == AML_INDEX_FIELD_OP)
    481             {
    482                 Status = AcpiDsInitFieldObjects (Op, WalkState);
    483             }
    484         }
    485         return_ACPI_STATUS (Status);
    486     }
    487 
    488     /*
    489      * If we are executing a method, do not create any namespace objects
    490      * during the load phase, only during execution.
    491      */
    492     if (!WalkState->MethodNode)
    493     {
    494         if (Op->Common.AmlOpcode == AML_REGION_OP)
    495         {
    496             Status = AcpiExCreateRegion (Op->Named.Data, Op->Named.Length,
    497                         (ACPI_ADR_SPACE_TYPE) ((Op->Common.Value.Arg)->Common.Value.Integer),
    498                         WalkState);
    499             if (ACPI_FAILURE (Status))
    500             {
    501                 return_ACPI_STATUS (Status);
    502             }
    503         }
    504         else if (Op->Common.AmlOpcode == AML_DATA_REGION_OP)
    505         {
    506             Status = AcpiExCreateRegion (Op->Named.Data, Op->Named.Length,
    507                         ACPI_ADR_SPACE_DATA_TABLE, WalkState);
    508             if (ACPI_FAILURE (Status))
    509             {
    510                 return_ACPI_STATUS (Status);
    511             }
    512         }
    513     }
    514 #endif
    515 
    516     if (Op->Common.AmlOpcode == AML_NAME_OP)
    517     {
    518         /* For Name opcode, get the object type from the argument */
    519 
    520         if (Op->Common.Value.Arg)
    521         {
    522             ObjectType = (AcpiPsGetOpcodeInfo (
    523                 (Op->Common.Value.Arg)->Common.AmlOpcode))->ObjectType;
    524 
    525             /* Set node type if we have a namespace node */
    526 
    527             if (Op->Common.Node)
    528             {
    529                 Op->Common.Node->Type = (UINT8) ObjectType;
    530             }
    531         }
    532     }
    533 
    534     /*
    535      * If we are executing a method, do not create any namespace objects
    536      * during the load phase, only during execution.
    537      */
    538     if (!WalkState->MethodNode)
    539     {
    540         if (Op->Common.AmlOpcode == AML_METHOD_OP)
    541         {
    542             /*
    543              * MethodOp PkgLength NameString MethodFlags TermList
    544              *
    545              * Note: We must create the method node/object pair as soon as we
    546              * see the method declaration. This allows later pass1 parsing
    547              * of invocations of the method (need to know the number of
    548              * arguments.)
    549              */
    550             ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
    551                 "LOADING-Method: State=%p Op=%p NamedObj=%p\n",
    552                 WalkState, Op, Op->Named.Node));
    553 
    554             if (!AcpiNsGetAttachedObject (Op->Named.Node))
    555             {
    556                 WalkState->Operands[0] = ACPI_CAST_PTR (void, Op->Named.Node);
    557                 WalkState->NumOperands = 1;
    558 
    559                 Status = AcpiDsCreateOperands (WalkState, Op->Common.Value.Arg);
    560                 if (ACPI_SUCCESS (Status))
    561                 {
    562                     Status = AcpiExCreateMethod (Op->Named.Data,
    563                                         Op->Named.Length, WalkState);
    564                 }
    565 
    566                 WalkState->Operands[0] = NULL;
    567                 WalkState->NumOperands = 0;
    568 
    569                 if (ACPI_FAILURE (Status))
    570                 {
    571                     return_ACPI_STATUS (Status);
    572                 }
    573             }
    574         }
    575     }
    576 
    577     /* Pop the scope stack (only if loading a table) */
    578 
    579     if (!WalkState->MethodNode &&
    580         AcpiNsOpensScope (ObjectType))
    581     {
    582         ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "(%s): Popping scope for Op %p\n",
    583             AcpiUtGetTypeName (ObjectType), Op));
    584 
    585         Status = AcpiDsScopeStackPop (WalkState);
    586     }
    587 
    588     return_ACPI_STATUS (Status);
    589 }
    590