Home | History | Annotate | Line # | Download | only in executer
exoparg3.c revision 1.1.1.5
      1 /******************************************************************************
      2  *
      3  * Module Name: exoparg3 - AML execution - opcodes with 3 arguments
      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 "acinterp.h"
     47 #include "acparser.h"
     48 #include "amlcode.h"
     49 
     50 
     51 #define _COMPONENT          ACPI_EXECUTER
     52         ACPI_MODULE_NAME    ("exoparg3")
     53 
     54 
     55 /*!
     56  * Naming convention for AML interpreter execution routines.
     57  *
     58  * The routines that begin execution of AML opcodes are named with a common
     59  * convention based upon the number of arguments, the number of target operands,
     60  * and whether or not a value is returned:
     61  *
     62  *      AcpiExOpcode_xA_yT_zR
     63  *
     64  * Where:
     65  *
     66  * xA - ARGUMENTS:    The number of arguments (input operands) that are
     67  *                    required for this opcode type (1 through 6 args).
     68  * yT - TARGETS:      The number of targets (output operands) that are required
     69  *                    for this opcode type (0, 1, or 2 targets).
     70  * zR - RETURN VALUE: Indicates whether this opcode type returns a value
     71  *                    as the function return (0 or 1).
     72  *
     73  * The AcpiExOpcode* functions are called via the Dispatcher component with
     74  * fully resolved operands.
     75 !*/
     76 
     77 
     78 /*******************************************************************************
     79  *
     80  * FUNCTION:    AcpiExOpcode_3A_0T_0R
     81  *
     82  * PARAMETERS:  WalkState           - Current walk state
     83  *
     84  * RETURN:      Status
     85  *
     86  * DESCRIPTION: Execute Triadic operator (3 operands)
     87  *
     88  ******************************************************************************/
     89 
     90 ACPI_STATUS
     91 AcpiExOpcode_3A_0T_0R (
     92     ACPI_WALK_STATE         *WalkState)
     93 {
     94     ACPI_OPERAND_OBJECT     **Operand = &WalkState->Operands[0];
     95     ACPI_SIGNAL_FATAL_INFO  *Fatal;
     96     ACPI_STATUS             Status = AE_OK;
     97 
     98 
     99     ACPI_FUNCTION_TRACE_STR (ExOpcode_3A_0T_0R,
    100         AcpiPsGetOpcodeName (WalkState->Opcode));
    101 
    102 
    103     switch (WalkState->Opcode)
    104     {
    105     case AML_FATAL_OP:          /* Fatal (FatalType  FatalCode  FatalArg) */
    106 
    107         ACPI_DEBUG_PRINT ((ACPI_DB_INFO,
    108             "FatalOp: Type %X Code %X Arg %X <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n",
    109             (UINT32) Operand[0]->Integer.Value,
    110             (UINT32) Operand[1]->Integer.Value,
    111             (UINT32) Operand[2]->Integer.Value));
    112 
    113         Fatal = ACPI_ALLOCATE (sizeof (ACPI_SIGNAL_FATAL_INFO));
    114         if (Fatal)
    115         {
    116             Fatal->Type     = (UINT32) Operand[0]->Integer.Value;
    117             Fatal->Code     = (UINT32) Operand[1]->Integer.Value;
    118             Fatal->Argument = (UINT32) Operand[2]->Integer.Value;
    119         }
    120 
    121         /* Always signal the OS! */
    122 
    123         Status = AcpiOsSignal (ACPI_SIGNAL_FATAL, Fatal);
    124 
    125         /* Might return while OS is shutting down, just continue */
    126 
    127         ACPI_FREE (Fatal);
    128         goto Cleanup;
    129 
    130     case AML_EXTERNAL_OP:
    131         /*
    132          * If the interpreter sees this opcode, just ignore it. The External
    133          * op is intended for use by disassemblers in order to properly
    134          * disassemble control method invocations. The opcode or group of
    135          * opcodes should be surrounded by an "if (0)" clause to ensure that
    136          * AML interpreters never see the opcode.
    137          */
    138         Status = AE_OK;
    139         goto Cleanup;
    140 
    141     default:
    142 
    143         ACPI_ERROR ((AE_INFO, "Unknown AML opcode 0x%X",
    144             WalkState->Opcode));
    145         Status = AE_AML_BAD_OPCODE;
    146         goto Cleanup;
    147     }
    148 
    149 
    150 Cleanup:
    151 
    152     return_ACPI_STATUS (Status);
    153 }
    154 
    155 
    156 /*******************************************************************************
    157  *
    158  * FUNCTION:    AcpiExOpcode_3A_1T_1R
    159  *
    160  * PARAMETERS:  WalkState           - Current walk state
    161  *
    162  * RETURN:      Status
    163  *
    164  * DESCRIPTION: Execute Triadic operator (3 operands)
    165  *
    166  ******************************************************************************/
    167 
    168 ACPI_STATUS
    169 AcpiExOpcode_3A_1T_1R (
    170     ACPI_WALK_STATE         *WalkState)
    171 {
    172     ACPI_OPERAND_OBJECT     **Operand = &WalkState->Operands[0];
    173     ACPI_OPERAND_OBJECT     *ReturnDesc = NULL;
    174     char                    *Buffer = NULL;
    175     ACPI_STATUS             Status = AE_OK;
    176     UINT64                  Index;
    177     ACPI_SIZE               Length;
    178 
    179 
    180     ACPI_FUNCTION_TRACE_STR (ExOpcode_3A_1T_1R,
    181         AcpiPsGetOpcodeName (WalkState->Opcode));
    182 
    183 
    184     switch (WalkState->Opcode)
    185     {
    186     case AML_MID_OP:    /* Mid (Source[0], Index[1], Length[2], Result[3]) */
    187         /*
    188          * Create the return object. The Source operand is guaranteed to be
    189          * either a String or a Buffer, so just use its type.
    190          */
    191         ReturnDesc = AcpiUtCreateInternalObject (
    192                         (Operand[0])->Common.Type);
    193         if (!ReturnDesc)
    194         {
    195             Status = AE_NO_MEMORY;
    196             goto Cleanup;
    197         }
    198 
    199         /* Get the Integer values from the objects */
    200 
    201         Index = Operand[1]->Integer.Value;
    202         Length = (ACPI_SIZE) Operand[2]->Integer.Value;
    203 
    204         /*
    205          * If the index is beyond the length of the String/Buffer, or if the
    206          * requested length is zero, return a zero-length String/Buffer
    207          */
    208         if (Index >= Operand[0]->String.Length)
    209         {
    210             Length = 0;
    211         }
    212 
    213         /* Truncate request if larger than the actual String/Buffer */
    214 
    215         else if ((Index + Length) > Operand[0]->String.Length)
    216         {
    217             Length = (ACPI_SIZE) Operand[0]->String.Length -
    218                         (ACPI_SIZE) Index;
    219         }
    220 
    221         /* Strings always have a sub-pointer, not so for buffers */
    222 
    223         switch ((Operand[0])->Common.Type)
    224         {
    225         case ACPI_TYPE_STRING:
    226 
    227             /* Always allocate a new buffer for the String */
    228 
    229             Buffer = ACPI_ALLOCATE_ZEROED ((ACPI_SIZE) Length + 1);
    230             if (!Buffer)
    231             {
    232                 Status = AE_NO_MEMORY;
    233                 goto Cleanup;
    234             }
    235             break;
    236 
    237         case ACPI_TYPE_BUFFER:
    238 
    239             /* If the requested length is zero, don't allocate a buffer */
    240 
    241             if (Length > 0)
    242             {
    243                 /* Allocate a new buffer for the Buffer */
    244 
    245                 Buffer = ACPI_ALLOCATE_ZEROED (Length);
    246                 if (!Buffer)
    247                 {
    248                     Status = AE_NO_MEMORY;
    249                     goto Cleanup;
    250                 }
    251             }
    252             break;
    253 
    254         default:                        /* Should not happen */
    255 
    256             Status = AE_AML_OPERAND_TYPE;
    257             goto Cleanup;
    258         }
    259 
    260         if (Buffer)
    261         {
    262             /* We have a buffer, copy the portion requested */
    263 
    264             ACPI_MEMCPY (Buffer, Operand[0]->String.Pointer + Index,
    265                          Length);
    266         }
    267 
    268         /* Set the length of the new String/Buffer */
    269 
    270         ReturnDesc->String.Pointer = Buffer;
    271         ReturnDesc->String.Length = (UINT32) Length;
    272 
    273         /* Mark buffer initialized */
    274 
    275         ReturnDesc->Buffer.Flags |= AOPOBJ_DATA_VALID;
    276         break;
    277 
    278     default:
    279 
    280         ACPI_ERROR ((AE_INFO, "Unknown AML opcode 0x%X",
    281             WalkState->Opcode));
    282         Status = AE_AML_BAD_OPCODE;
    283         goto Cleanup;
    284     }
    285 
    286     /* Store the result in the target */
    287 
    288     Status = AcpiExStore (ReturnDesc, Operand[3], WalkState);
    289 
    290 Cleanup:
    291 
    292     /* Delete return object on error */
    293 
    294     if (ACPI_FAILURE (Status) || WalkState->ResultObj)
    295     {
    296         AcpiUtRemoveReference (ReturnDesc);
    297         WalkState->ResultObj = NULL;
    298     }
    299 
    300     /* Set the return object and exit */
    301 
    302     else
    303     {
    304         WalkState->ResultObj = ReturnDesc;
    305     }
    306     return_ACPI_STATUS (Status);
    307 }
    308