Home | History | Annotate | Line # | Download | only in dispatcher
dswload.c revision 1.1.1.11
      1 /******************************************************************************
      2  *
      3  * Module Name: dswload - Dispatcher first pass namespace load callbacks
      4  *
      5  *****************************************************************************/
      6 
      7 /*
      8  * Copyright (C) 2000 - 2017, 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,
    192         AcpiUtGetTypeName (ObjectType)));
    193 
    194     switch (WalkState->Opcode)
    195     {
    196     case AML_SCOPE_OP:
    197         /*
    198          * The target name of the Scope() operator must exist at this point so
    199          * that we can actually open the scope to enter new names underneath it.
    200          * Allow search-to-root for single namesegs.
    201          */
    202         Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
    203             ACPI_IMODE_EXECUTE, ACPI_NS_SEARCH_PARENT, WalkState, &(Node));
    204 #ifdef ACPI_ASL_COMPILER
    205         if (Status == AE_NOT_FOUND)
    206         {
    207             /*
    208              * Table disassembly:
    209              * Target of Scope() not found. Generate an External for it, and
    210              * insert the name into the namespace.
    211              */
    212             AcpiDmAddOpToExternalList (Op, Path, ACPI_TYPE_DEVICE, 0, 0);
    213             Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
    214                ACPI_IMODE_LOAD_PASS1, ACPI_NS_SEARCH_PARENT,
    215                WalkState, &Node);
    216         }
    217 #endif
    218         if (ACPI_FAILURE (Status))
    219         {
    220             ACPI_ERROR_NAMESPACE (WalkState->ScopeInfo, Path, Status);
    221             return_ACPI_STATUS (Status);
    222         }
    223 
    224         /*
    225          * Check to make sure that the target is
    226          * one of the opcodes that actually opens a scope
    227          */
    228         switch (Node->Type)
    229         {
    230         case ACPI_TYPE_ANY:
    231         case ACPI_TYPE_LOCAL_SCOPE:         /* Scope  */
    232         case ACPI_TYPE_DEVICE:
    233         case ACPI_TYPE_POWER:
    234         case ACPI_TYPE_PROCESSOR:
    235         case ACPI_TYPE_THERMAL:
    236 
    237             /* These are acceptable types */
    238             break;
    239 
    240         case ACPI_TYPE_INTEGER:
    241         case ACPI_TYPE_STRING:
    242         case ACPI_TYPE_BUFFER:
    243             /*
    244              * These types we will allow, but we will change the type.
    245              * This enables some existing code of the form:
    246              *
    247              *  Name (DEB, 0)
    248              *  Scope (DEB) { ... }
    249              *
    250              * Note: silently change the type here. On the second pass,
    251              * we will report a warning
    252              */
    253             ACPI_DEBUG_PRINT ((ACPI_DB_INFO,
    254                 "Type override - [%4.4s] had invalid type (%s) "
    255                 "for Scope operator, changed to type ANY\n",
    256                 AcpiUtGetNodeName (Node), AcpiUtGetTypeName (Node->Type)));
    257 
    258             Node->Type = ACPI_TYPE_ANY;
    259             WalkState->ScopeInfo->Common.Value = ACPI_TYPE_ANY;
    260             break;
    261 
    262         case ACPI_TYPE_METHOD:
    263             /*
    264              * Allow scope change to root during execution of module-level
    265              * code. Root is typed METHOD during this time.
    266              */
    267             if ((Node == AcpiGbl_RootNode) &&
    268                 (WalkState->ParseFlags & ACPI_PARSE_MODULE_LEVEL))
    269             {
    270                 break;
    271             }
    272 
    273             /*lint -fallthrough */
    274 
    275         default:
    276 
    277             /* All other types are an error */
    278 
    279             ACPI_ERROR ((AE_INFO,
    280                 "Invalid type (%s) for target of "
    281                 "Scope operator [%4.4s] (Cannot override)",
    282                 AcpiUtGetTypeName (Node->Type), AcpiUtGetNodeName (Node)));
    283 
    284             return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
    285         }
    286         break;
    287 
    288     default:
    289         /*
    290          * For all other named opcodes, we will enter the name into
    291          * the namespace.
    292          *
    293          * Setup the search flags.
    294          * Since we are entering a name into the namespace, we do not want to
    295          * enable the search-to-root upsearch.
    296          *
    297          * There are only two conditions where it is acceptable that the name
    298          * already exists:
    299          *    1) the Scope() operator can reopen a scoping object that was
    300          *       previously defined (Scope, Method, Device, etc.)
    301          *    2) Whenever we are parsing a deferred opcode (OpRegion, Buffer,
    302          *       BufferField, or Package), the name of the object is already
    303          *       in the namespace.
    304          */
    305         if (WalkState->DeferredNode)
    306         {
    307             /* This name is already in the namespace, get the node */
    308 
    309             Node = WalkState->DeferredNode;
    310             Status = AE_OK;
    311             break;
    312         }
    313 
    314         /*
    315          * If we are executing a method, do not create any namespace objects
    316          * during the load phase, only during execution.
    317          */
    318         if (WalkState->MethodNode)
    319         {
    320             Node = NULL;
    321             Status = AE_OK;
    322             break;
    323         }
    324 
    325         Flags = ACPI_NS_NO_UPSEARCH;
    326         if ((WalkState->Opcode != AML_SCOPE_OP) &&
    327             (!(WalkState->ParseFlags & ACPI_PARSE_DEFERRED_OP)))
    328         {
    329             if (WalkState->NamespaceOverride)
    330             {
    331                 Flags |= ACPI_NS_OVERRIDE_IF_FOUND;
    332                 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[%s] Override allowed\n",
    333                     AcpiUtGetTypeName (ObjectType)));
    334             }
    335             else
    336             {
    337                 Flags |= ACPI_NS_ERROR_IF_FOUND;
    338                 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[%s] Cannot already exist\n",
    339                     AcpiUtGetTypeName (ObjectType)));
    340             }
    341         }
    342         else
    343         {
    344             ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
    345                 "[%s] Both Find or Create allowed\n",
    346                 AcpiUtGetTypeName (ObjectType)));
    347         }
    348 
    349         /*
    350          * Enter the named type into the internal namespace. We enter the name
    351          * as we go downward in the parse tree. Any necessary subobjects that
    352          * involve arguments to the opcode must be created as we go back up the
    353          * parse tree later.
    354          */
    355         Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
    356             ACPI_IMODE_LOAD_PASS1, Flags, WalkState, &Node);
    357         if (ACPI_FAILURE (Status))
    358         {
    359             if (Status == AE_ALREADY_EXISTS)
    360             {
    361                 /* The name already exists in this scope */
    362 
    363                 if (Node->Flags & ANOBJ_IS_EXTERNAL)
    364                 {
    365                     /*
    366                      * Allow one create on an object or segment that was
    367                      * previously declared External
    368                      */
    369                     Node->Flags &= ~ANOBJ_IS_EXTERNAL;
    370                     Node->Type = (UINT8) ObjectType;
    371 
    372                     /* Just retyped a node, probably will need to open a scope */
    373 
    374                     if (AcpiNsOpensScope (ObjectType))
    375                     {
    376                         Status = AcpiDsScopeStackPush (
    377                             Node, ObjectType, WalkState);
    378                         if (ACPI_FAILURE (Status))
    379                         {
    380                             return_ACPI_STATUS (Status);
    381                         }
    382                     }
    383 
    384                     Status = AE_OK;
    385                 }
    386             }
    387 
    388             if (ACPI_FAILURE (Status))
    389             {
    390                 ACPI_ERROR_NAMESPACE (WalkState->ScopeInfo, Path, Status);
    391                 return_ACPI_STATUS (Status);
    392             }
    393         }
    394         break;
    395     }
    396 
    397     /* Common exit */
    398 
    399     if (!Op)
    400     {
    401         /* Create a new op */
    402 
    403         Op = AcpiPsAllocOp (WalkState->Opcode, WalkState->Aml);
    404         if (!Op)
    405         {
    406             return_ACPI_STATUS (AE_NO_MEMORY);
    407         }
    408     }
    409 
    410     /* Initialize the op */
    411 
    412 #if (defined (ACPI_NO_METHOD_EXECUTION) || defined (ACPI_CONSTANT_EVAL_ONLY))
    413     Op->Named.Path = Path;
    414 #endif
    415 
    416     if (Node)
    417     {
    418         /*
    419          * Put the Node in the "op" object that the parser uses, so we
    420          * can get it again quickly when this scope is closed
    421          */
    422         Op->Common.Node = Node;
    423         Op->Named.Name = Node->Name.Integer;
    424     }
    425 
    426     AcpiPsAppendArg (AcpiPsGetParentScope (&WalkState->ParserState), Op);
    427     *OutOp = Op;
    428     return_ACPI_STATUS (Status);
    429 }
    430 
    431 
    432 /*******************************************************************************
    433  *
    434  * FUNCTION:    AcpiDsLoad1EndOp
    435  *
    436  * PARAMETERS:  WalkState       - Current state of the parse tree walk
    437  *
    438  * RETURN:      Status
    439  *
    440  * DESCRIPTION: Ascending callback used during the loading of the namespace,
    441  *              both control methods and everything else.
    442  *
    443  ******************************************************************************/
    444 
    445 ACPI_STATUS
    446 AcpiDsLoad1EndOp (
    447     ACPI_WALK_STATE         *WalkState)
    448 {
    449     ACPI_PARSE_OBJECT       *Op;
    450     ACPI_OBJECT_TYPE        ObjectType;
    451     ACPI_STATUS             Status = AE_OK;
    452 
    453 #ifdef ACPI_ASL_COMPILER
    454     UINT8                   ParamCount;
    455 #endif
    456 
    457 
    458     ACPI_FUNCTION_TRACE (DsLoad1EndOp);
    459 
    460 
    461     Op = WalkState->Op;
    462     ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Op=%p State=%p\n", Op, WalkState));
    463 
    464     /* We are only interested in opcodes that have an associated name */
    465 
    466     if (!(WalkState->OpInfo->Flags & (AML_NAMED | AML_FIELD)))
    467     {
    468         return_ACPI_STATUS (AE_OK);
    469     }
    470 
    471     /* Get the object type to determine if we should pop the scope */
    472 
    473     ObjectType = WalkState->OpInfo->ObjectType;
    474 
    475 #ifndef ACPI_NO_METHOD_EXECUTION
    476     if (WalkState->OpInfo->Flags & AML_FIELD)
    477     {
    478         /*
    479          * If we are executing a method, do not create any namespace objects
    480          * during the load phase, only during execution.
    481          */
    482         if (!WalkState->MethodNode)
    483         {
    484             if (WalkState->Opcode == AML_FIELD_OP          ||
    485                 WalkState->Opcode == AML_BANK_FIELD_OP     ||
    486                 WalkState->Opcode == AML_INDEX_FIELD_OP)
    487             {
    488                 Status = AcpiDsInitFieldObjects (Op, WalkState);
    489             }
    490         }
    491         return_ACPI_STATUS (Status);
    492     }
    493 
    494     /*
    495      * If we are executing a method, do not create any namespace objects
    496      * during the load phase, only during execution.
    497      */
    498     if (!WalkState->MethodNode)
    499     {
    500         if (Op->Common.AmlOpcode == AML_REGION_OP)
    501         {
    502             Status = AcpiExCreateRegion (Op->Named.Data, Op->Named.Length,
    503                 (ACPI_ADR_SPACE_TYPE)
    504                     ((Op->Common.Value.Arg)->Common.Value.Integer),
    505                 WalkState);
    506             if (ACPI_FAILURE (Status))
    507             {
    508                 return_ACPI_STATUS (Status);
    509             }
    510         }
    511         else if (Op->Common.AmlOpcode == AML_DATA_REGION_OP)
    512         {
    513             Status = AcpiExCreateRegion (Op->Named.Data, Op->Named.Length,
    514                 ACPI_ADR_SPACE_DATA_TABLE, WalkState);
    515             if (ACPI_FAILURE (Status))
    516             {
    517                 return_ACPI_STATUS (Status);
    518             }
    519         }
    520     }
    521 #endif
    522 
    523     if (Op->Common.AmlOpcode == AML_NAME_OP)
    524     {
    525         /* For Name opcode, get the object type from the argument */
    526 
    527         if (Op->Common.Value.Arg)
    528         {
    529             ObjectType = (AcpiPsGetOpcodeInfo (
    530                 (Op->Common.Value.Arg)->Common.AmlOpcode))->ObjectType;
    531 
    532             /* Set node type if we have a namespace node */
    533 
    534             if (Op->Common.Node)
    535             {
    536                 Op->Common.Node->Type = (UINT8) ObjectType;
    537             }
    538         }
    539     }
    540 
    541 #ifdef ACPI_ASL_COMPILER
    542     /*
    543      * For external opcode, get the object type from the argument and
    544      * get the parameter count from the argument's next.
    545      */
    546     if (AcpiGbl_DisasmFlag &&
    547         Op->Common.Node &&
    548         Op->Common.AmlOpcode == AML_EXTERNAL_OP)
    549     {
    550         /*
    551          * Note, if this external is not a method
    552          * Op->Common.Value.Arg->Common.Next->Common.Value.Integer == 0
    553          * Therefore, ParamCount will be 0.
    554          */
    555         ParamCount = (UINT8) Op->Common.Value.Arg->Common.Next->Common.Value.Integer;
    556         ObjectType = (UINT8) Op->Common.Value.Arg->Common.Value.Integer;
    557         Op->Common.Node->Flags |= ANOBJ_IS_EXTERNAL;
    558         Op->Common.Node->Type = (UINT8) ObjectType;
    559 
    560         AcpiDmCreateSubobjectForExternal ((UINT8)ObjectType,
    561             &Op->Common.Node, ParamCount);
    562 
    563         /*
    564          * Add the external to the external list because we may be
    565          * emitting code based off of the items within the external list.
    566          */
    567         AcpiDmAddOpToExternalList (Op, Op->Named.Path, (UINT8)ObjectType, ParamCount,
    568            ACPI_EXT_ORIGIN_FROM_OPCODE | ACPI_EXT_RESOLVED_REFERENCE);
    569     }
    570 #endif
    571 
    572     /*
    573      * If we are executing a method, do not create any namespace objects
    574      * during the load phase, only during execution.
    575      */
    576     if (!WalkState->MethodNode)
    577     {
    578         if (Op->Common.AmlOpcode == AML_METHOD_OP)
    579         {
    580             /*
    581              * MethodOp PkgLength NameString MethodFlags TermList
    582              *
    583              * Note: We must create the method node/object pair as soon as we
    584              * see the method declaration. This allows later pass1 parsing
    585              * of invocations of the method (need to know the number of
    586              * arguments.)
    587              */
    588             ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
    589                 "LOADING-Method: State=%p Op=%p NamedObj=%p\n",
    590                 WalkState, Op, Op->Named.Node));
    591 
    592             if (!AcpiNsGetAttachedObject (Op->Named.Node))
    593             {
    594                 WalkState->Operands[0] = ACPI_CAST_PTR (void, Op->Named.Node);
    595                 WalkState->NumOperands = 1;
    596 
    597                 Status = AcpiDsCreateOperands (
    598                     WalkState, Op->Common.Value.Arg);
    599                 if (ACPI_SUCCESS (Status))
    600                 {
    601                     Status = AcpiExCreateMethod (Op->Named.Data,
    602                         Op->Named.Length, WalkState);
    603                 }
    604 
    605                 WalkState->Operands[0] = NULL;
    606                 WalkState->NumOperands = 0;
    607 
    608                 if (ACPI_FAILURE (Status))
    609                 {
    610                     return_ACPI_STATUS (Status);
    611                 }
    612             }
    613         }
    614     }
    615 
    616     /* Pop the scope stack (only if loading a table) */
    617 
    618     if (!WalkState->MethodNode &&
    619         Op->Common.AmlOpcode != AML_EXTERNAL_OP &&
    620         AcpiNsOpensScope (ObjectType))
    621     {
    622         ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "(%s): Popping scope for Op %p\n",
    623             AcpiUtGetTypeName (ObjectType), Op));
    624 
    625         Status = AcpiDsScopeStackPop (WalkState);
    626     }
    627 
    628     return_ACPI_STATUS (Status);
    629 }
    630