Home | History | Annotate | Line # | Download | only in utilities
utdelete.c revision 1.1.1.4
      1      1.1    jruoho /*******************************************************************************
      2      1.1    jruoho  *
      3      1.1    jruoho  * Module Name: utdelete - object deletion and reference count utilities
      4      1.1    jruoho  *
      5      1.1    jruoho  ******************************************************************************/
      6      1.1    jruoho 
      7  1.1.1.2    jruoho /*
      8  1.1.1.4  christos  * Copyright (C) 2000 - 2014, Intel Corp.
      9      1.1    jruoho  * All rights reserved.
     10      1.1    jruoho  *
     11  1.1.1.2    jruoho  * Redistribution and use in source and binary forms, with or without
     12  1.1.1.2    jruoho  * modification, are permitted provided that the following conditions
     13  1.1.1.2    jruoho  * are met:
     14  1.1.1.2    jruoho  * 1. Redistributions of source code must retain the above copyright
     15  1.1.1.2    jruoho  *    notice, this list of conditions, and the following disclaimer,
     16  1.1.1.2    jruoho  *    without modification.
     17  1.1.1.2    jruoho  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18  1.1.1.2    jruoho  *    substantially similar to the "NO WARRANTY" disclaimer below
     19  1.1.1.2    jruoho  *    ("Disclaimer") and any redistribution must be conditioned upon
     20  1.1.1.2    jruoho  *    including a substantially similar Disclaimer requirement for further
     21  1.1.1.2    jruoho  *    binary redistribution.
     22  1.1.1.2    jruoho  * 3. Neither the names of the above-listed copyright holders nor the names
     23  1.1.1.2    jruoho  *    of any contributors may be used to endorse or promote products derived
     24  1.1.1.2    jruoho  *    from this software without specific prior written permission.
     25  1.1.1.2    jruoho  *
     26  1.1.1.2    jruoho  * Alternatively, this software may be distributed under the terms of the
     27  1.1.1.2    jruoho  * GNU General Public License ("GPL") version 2 as published by the Free
     28  1.1.1.2    jruoho  * Software Foundation.
     29  1.1.1.2    jruoho  *
     30  1.1.1.2    jruoho  * NO WARRANTY
     31  1.1.1.2    jruoho  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32  1.1.1.2    jruoho  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.1.1.2    jruoho  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34  1.1.1.2    jruoho  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35  1.1.1.2    jruoho  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  1.1.1.2    jruoho  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  1.1.1.2    jruoho  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  1.1.1.2    jruoho  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39  1.1.1.2    jruoho  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40  1.1.1.2    jruoho  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41  1.1.1.2    jruoho  * POSSIBILITY OF SUCH DAMAGES.
     42  1.1.1.2    jruoho  */
     43      1.1    jruoho 
     44      1.1    jruoho #define __UTDELETE_C__
     45      1.1    jruoho 
     46      1.1    jruoho #include "acpi.h"
     47      1.1    jruoho #include "accommon.h"
     48      1.1    jruoho #include "acinterp.h"
     49      1.1    jruoho #include "acnamesp.h"
     50      1.1    jruoho #include "acevents.h"
     51      1.1    jruoho 
     52      1.1    jruoho 
     53      1.1    jruoho #define _COMPONENT          ACPI_UTILITIES
     54      1.1    jruoho         ACPI_MODULE_NAME    ("utdelete")
     55      1.1    jruoho 
     56      1.1    jruoho /* Local prototypes */
     57      1.1    jruoho 
     58      1.1    jruoho static void
     59      1.1    jruoho AcpiUtDeleteInternalObj (
     60      1.1    jruoho     ACPI_OPERAND_OBJECT     *Object);
     61      1.1    jruoho 
     62      1.1    jruoho static void
     63      1.1    jruoho AcpiUtUpdateRefCount (
     64      1.1    jruoho     ACPI_OPERAND_OBJECT     *Object,
     65      1.1    jruoho     UINT32                  Action);
     66      1.1    jruoho 
     67      1.1    jruoho 
     68      1.1    jruoho /*******************************************************************************
     69      1.1    jruoho  *
     70      1.1    jruoho  * FUNCTION:    AcpiUtDeleteInternalObj
     71      1.1    jruoho  *
     72      1.1    jruoho  * PARAMETERS:  Object         - Object to be deleted
     73      1.1    jruoho  *
     74      1.1    jruoho  * RETURN:      None
     75      1.1    jruoho  *
     76      1.1    jruoho  * DESCRIPTION: Low level object deletion, after reference counts have been
     77      1.1    jruoho  *              updated (All reference counts, including sub-objects!)
     78      1.1    jruoho  *
     79      1.1    jruoho  ******************************************************************************/
     80      1.1    jruoho 
     81      1.1    jruoho static void
     82      1.1    jruoho AcpiUtDeleteInternalObj (
     83      1.1    jruoho     ACPI_OPERAND_OBJECT     *Object)
     84      1.1    jruoho {
     85      1.1    jruoho     void                    *ObjPointer = NULL;
     86      1.1    jruoho     ACPI_OPERAND_OBJECT     *HandlerDesc;
     87      1.1    jruoho     ACPI_OPERAND_OBJECT     *SecondDesc;
     88      1.1    jruoho     ACPI_OPERAND_OBJECT     *NextDesc;
     89  1.1.1.4  christos     ACPI_OPERAND_OBJECT     *StartDesc;
     90      1.1    jruoho     ACPI_OPERAND_OBJECT     **LastObjPtr;
     91      1.1    jruoho 
     92      1.1    jruoho 
     93      1.1    jruoho     ACPI_FUNCTION_TRACE_PTR (UtDeleteInternalObj, Object);
     94      1.1    jruoho 
     95      1.1    jruoho 
     96      1.1    jruoho     if (!Object)
     97      1.1    jruoho     {
     98      1.1    jruoho         return_VOID;
     99      1.1    jruoho     }
    100      1.1    jruoho 
    101      1.1    jruoho     /*
    102      1.1    jruoho      * Must delete or free any pointers within the object that are not
    103      1.1    jruoho      * actual ACPI objects (for example, a raw buffer pointer).
    104      1.1    jruoho      */
    105      1.1    jruoho     switch (Object->Common.Type)
    106      1.1    jruoho     {
    107      1.1    jruoho     case ACPI_TYPE_STRING:
    108      1.1    jruoho 
    109      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, "**** String %p, ptr %p\n",
    110      1.1    jruoho             Object, Object->String.Pointer));
    111      1.1    jruoho 
    112      1.1    jruoho         /* Free the actual string buffer */
    113      1.1    jruoho 
    114      1.1    jruoho         if (!(Object->Common.Flags & AOPOBJ_STATIC_POINTER))
    115      1.1    jruoho         {
    116      1.1    jruoho             /* But only if it is NOT a pointer into an ACPI table */
    117      1.1    jruoho 
    118      1.1    jruoho             ObjPointer = Object->String.Pointer;
    119      1.1    jruoho         }
    120      1.1    jruoho         break;
    121      1.1    jruoho 
    122      1.1    jruoho     case ACPI_TYPE_BUFFER:
    123      1.1    jruoho 
    124      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, "**** Buffer %p, ptr %p\n",
    125      1.1    jruoho             Object, Object->Buffer.Pointer));
    126      1.1    jruoho 
    127      1.1    jruoho         /* Free the actual buffer */
    128      1.1    jruoho 
    129      1.1    jruoho         if (!(Object->Common.Flags & AOPOBJ_STATIC_POINTER))
    130      1.1    jruoho         {
    131      1.1    jruoho             /* But only if it is NOT a pointer into an ACPI table */
    132      1.1    jruoho 
    133      1.1    jruoho             ObjPointer = Object->Buffer.Pointer;
    134      1.1    jruoho         }
    135      1.1    jruoho         break;
    136      1.1    jruoho 
    137      1.1    jruoho     case ACPI_TYPE_PACKAGE:
    138      1.1    jruoho 
    139      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, " **** Package of count %X\n",
    140      1.1    jruoho             Object->Package.Count));
    141      1.1    jruoho 
    142      1.1    jruoho         /*
    143      1.1    jruoho          * Elements of the package are not handled here, they are deleted
    144      1.1    jruoho          * separately
    145      1.1    jruoho          */
    146      1.1    jruoho 
    147      1.1    jruoho         /* Free the (variable length) element pointer array */
    148      1.1    jruoho 
    149      1.1    jruoho         ObjPointer = Object->Package.Elements;
    150      1.1    jruoho         break;
    151      1.1    jruoho 
    152      1.1    jruoho     /*
    153      1.1    jruoho      * These objects have a possible list of notify handlers.
    154      1.1    jruoho      * Device object also may have a GPE block.
    155      1.1    jruoho      */
    156      1.1    jruoho     case ACPI_TYPE_DEVICE:
    157      1.1    jruoho 
    158      1.1    jruoho         if (Object->Device.GpeBlock)
    159      1.1    jruoho         {
    160      1.1    jruoho             (void) AcpiEvDeleteGpeBlock (Object->Device.GpeBlock);
    161      1.1    jruoho         }
    162      1.1    jruoho 
    163      1.1    jruoho         /*lint -fallthrough */
    164      1.1    jruoho 
    165      1.1    jruoho     case ACPI_TYPE_PROCESSOR:
    166      1.1    jruoho     case ACPI_TYPE_THERMAL:
    167      1.1    jruoho 
    168  1.1.1.3  christos         /* Walk the address handler list for this object */
    169      1.1    jruoho 
    170      1.1    jruoho         HandlerDesc = Object->CommonNotify.Handler;
    171      1.1    jruoho         while (HandlerDesc)
    172      1.1    jruoho         {
    173      1.1    jruoho             NextDesc = HandlerDesc->AddressSpace.Next;
    174      1.1    jruoho             AcpiUtRemoveReference (HandlerDesc);
    175      1.1    jruoho             HandlerDesc = NextDesc;
    176      1.1    jruoho         }
    177      1.1    jruoho         break;
    178      1.1    jruoho 
    179      1.1    jruoho     case ACPI_TYPE_MUTEX:
    180      1.1    jruoho 
    181      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    182      1.1    jruoho             "***** Mutex %p, OS Mutex %p\n",
    183      1.1    jruoho             Object, Object->Mutex.OsMutex));
    184      1.1    jruoho 
    185      1.1    jruoho         if (Object == AcpiGbl_GlobalLockMutex)
    186      1.1    jruoho         {
    187      1.1    jruoho             /* Global Lock has extra semaphore */
    188      1.1    jruoho 
    189      1.1    jruoho             (void) AcpiOsDeleteSemaphore (AcpiGbl_GlobalLockSemaphore);
    190      1.1    jruoho             AcpiGbl_GlobalLockSemaphore = NULL;
    191      1.1    jruoho 
    192      1.1    jruoho             AcpiOsDeleteMutex (Object->Mutex.OsMutex);
    193      1.1    jruoho             AcpiGbl_GlobalLockMutex = NULL;
    194      1.1    jruoho         }
    195      1.1    jruoho         else
    196      1.1    jruoho         {
    197      1.1    jruoho             AcpiExUnlinkMutex (Object);
    198      1.1    jruoho             AcpiOsDeleteMutex (Object->Mutex.OsMutex);
    199      1.1    jruoho         }
    200      1.1    jruoho         break;
    201      1.1    jruoho 
    202      1.1    jruoho     case ACPI_TYPE_EVENT:
    203      1.1    jruoho 
    204      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    205      1.1    jruoho             "***** Event %p, OS Semaphore %p\n",
    206      1.1    jruoho             Object, Object->Event.OsSemaphore));
    207      1.1    jruoho 
    208      1.1    jruoho         (void) AcpiOsDeleteSemaphore (Object->Event.OsSemaphore);
    209      1.1    jruoho         Object->Event.OsSemaphore = NULL;
    210      1.1    jruoho         break;
    211      1.1    jruoho 
    212      1.1    jruoho     case ACPI_TYPE_METHOD:
    213      1.1    jruoho 
    214      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    215      1.1    jruoho             "***** Method %p\n", Object));
    216      1.1    jruoho 
    217      1.1    jruoho         /* Delete the method mutex if it exists */
    218      1.1    jruoho 
    219      1.1    jruoho         if (Object->Method.Mutex)
    220      1.1    jruoho         {
    221      1.1    jruoho             AcpiOsDeleteMutex (Object->Method.Mutex->Mutex.OsMutex);
    222      1.1    jruoho             AcpiUtDeleteObjectDesc (Object->Method.Mutex);
    223      1.1    jruoho             Object->Method.Mutex = NULL;
    224      1.1    jruoho         }
    225      1.1    jruoho         break;
    226      1.1    jruoho 
    227      1.1    jruoho     case ACPI_TYPE_REGION:
    228      1.1    jruoho 
    229      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    230      1.1    jruoho             "***** Region %p\n", Object));
    231      1.1    jruoho 
    232  1.1.1.3  christos         /*
    233  1.1.1.3  christos          * Update AddressRange list. However, only permanent regions
    234  1.1.1.3  christos          * are installed in this list. (Not created within a method)
    235  1.1.1.3  christos          */
    236  1.1.1.3  christos         if (!(Object->Region.Node->Flags & ANOBJ_TEMPORARY))
    237  1.1.1.3  christos         {
    238  1.1.1.3  christos             AcpiUtRemoveAddressRange (Object->Region.SpaceId,
    239  1.1.1.3  christos                 Object->Region.Node);
    240  1.1.1.3  christos         }
    241  1.1.1.3  christos 
    242      1.1    jruoho         SecondDesc = AcpiNsGetSecondaryObject (Object);
    243      1.1    jruoho         if (SecondDesc)
    244      1.1    jruoho         {
    245      1.1    jruoho             /*
    246      1.1    jruoho              * Free the RegionContext if and only if the handler is one of the
    247      1.1    jruoho              * default handlers -- and therefore, we created the context object
    248      1.1    jruoho              * locally, it was not created by an external caller.
    249      1.1    jruoho              */
    250      1.1    jruoho             HandlerDesc = Object->Region.Handler;
    251      1.1    jruoho             if (HandlerDesc)
    252      1.1    jruoho             {
    253      1.1    jruoho                 NextDesc = HandlerDesc->AddressSpace.RegionList;
    254  1.1.1.4  christos                 StartDesc = NextDesc;
    255      1.1    jruoho                 LastObjPtr = &HandlerDesc->AddressSpace.RegionList;
    256      1.1    jruoho 
    257  1.1.1.4  christos                 /* Remove the region object from the handler list */
    258      1.1    jruoho 
    259      1.1    jruoho                 while (NextDesc)
    260      1.1    jruoho                 {
    261      1.1    jruoho                     if (NextDesc == Object)
    262      1.1    jruoho                     {
    263      1.1    jruoho                         *LastObjPtr = NextDesc->Region.Next;
    264      1.1    jruoho                         break;
    265      1.1    jruoho                     }
    266      1.1    jruoho 
    267  1.1.1.4  christos                     /* Walk the linked list of handlers */
    268      1.1    jruoho 
    269      1.1    jruoho                     LastObjPtr = &NextDesc->Region.Next;
    270      1.1    jruoho                     NextDesc = NextDesc->Region.Next;
    271  1.1.1.4  christos 
    272  1.1.1.4  christos                     /* Prevent infinite loop if list is corrupted */
    273  1.1.1.4  christos 
    274  1.1.1.4  christos                     if (NextDesc == StartDesc)
    275  1.1.1.4  christos                     {
    276  1.1.1.4  christos                         ACPI_ERROR ((AE_INFO,
    277  1.1.1.4  christos                             "Circular region list in address handler object %p",
    278  1.1.1.4  christos                             HandlerDesc));
    279  1.1.1.4  christos                         return_VOID;
    280  1.1.1.4  christos                     }
    281      1.1    jruoho                 }
    282      1.1    jruoho 
    283      1.1    jruoho                 if (HandlerDesc->AddressSpace.HandlerFlags &
    284      1.1    jruoho                     ACPI_ADDR_HANDLER_DEFAULT_INSTALLED)
    285      1.1    jruoho                 {
    286      1.1    jruoho                     /* Deactivate region and free region context */
    287      1.1    jruoho 
    288      1.1    jruoho                     if (HandlerDesc->AddressSpace.Setup)
    289      1.1    jruoho                     {
    290      1.1    jruoho                         (void) HandlerDesc->AddressSpace.Setup (Object,
    291      1.1    jruoho                             ACPI_REGION_DEACTIVATE,
    292      1.1    jruoho                             HandlerDesc->AddressSpace.Context,
    293      1.1    jruoho                             &SecondDesc->Extra.RegionContext);
    294      1.1    jruoho                     }
    295      1.1    jruoho                 }
    296      1.1    jruoho 
    297      1.1    jruoho                 AcpiUtRemoveReference (HandlerDesc);
    298      1.1    jruoho             }
    299      1.1    jruoho 
    300      1.1    jruoho             /* Now we can free the Extra object */
    301      1.1    jruoho 
    302      1.1    jruoho             AcpiUtDeleteObjectDesc (SecondDesc);
    303      1.1    jruoho         }
    304      1.1    jruoho         break;
    305      1.1    jruoho 
    306      1.1    jruoho     case ACPI_TYPE_BUFFER_FIELD:
    307      1.1    jruoho 
    308      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    309      1.1    jruoho             "***** Buffer Field %p\n", Object));
    310      1.1    jruoho 
    311      1.1    jruoho         SecondDesc = AcpiNsGetSecondaryObject (Object);
    312      1.1    jruoho         if (SecondDesc)
    313      1.1    jruoho         {
    314      1.1    jruoho             AcpiUtDeleteObjectDesc (SecondDesc);
    315      1.1    jruoho         }
    316      1.1    jruoho         break;
    317      1.1    jruoho 
    318      1.1    jruoho     case ACPI_TYPE_LOCAL_BANK_FIELD:
    319      1.1    jruoho 
    320      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    321      1.1    jruoho             "***** Bank Field %p\n", Object));
    322      1.1    jruoho 
    323      1.1    jruoho         SecondDesc = AcpiNsGetSecondaryObject (Object);
    324      1.1    jruoho         if (SecondDesc)
    325      1.1    jruoho         {
    326      1.1    jruoho             AcpiUtDeleteObjectDesc (SecondDesc);
    327      1.1    jruoho         }
    328      1.1    jruoho         break;
    329      1.1    jruoho 
    330      1.1    jruoho     default:
    331  1.1.1.3  christos 
    332      1.1    jruoho         break;
    333      1.1    jruoho     }
    334      1.1    jruoho 
    335      1.1    jruoho     /* Free any allocated memory (pointer within the object) found above */
    336      1.1    jruoho 
    337      1.1    jruoho     if (ObjPointer)
    338      1.1    jruoho     {
    339      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, "Deleting Object Subptr %p\n",
    340      1.1    jruoho             ObjPointer));
    341      1.1    jruoho         ACPI_FREE (ObjPointer);
    342      1.1    jruoho     }
    343      1.1    jruoho 
    344      1.1    jruoho     /* Now the object can be safely deleted */
    345      1.1    jruoho 
    346      1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS, "Deleting Object %p [%s]\n",
    347      1.1    jruoho         Object, AcpiUtGetObjectTypeName (Object)));
    348      1.1    jruoho 
    349      1.1    jruoho     AcpiUtDeleteObjectDesc (Object);
    350      1.1    jruoho     return_VOID;
    351      1.1    jruoho }
    352      1.1    jruoho 
    353      1.1    jruoho 
    354      1.1    jruoho /*******************************************************************************
    355      1.1    jruoho  *
    356      1.1    jruoho  * FUNCTION:    AcpiUtDeleteInternalObjectList
    357      1.1    jruoho  *
    358      1.1    jruoho  * PARAMETERS:  ObjList         - Pointer to the list to be deleted
    359      1.1    jruoho  *
    360      1.1    jruoho  * RETURN:      None
    361      1.1    jruoho  *
    362      1.1    jruoho  * DESCRIPTION: This function deletes an internal object list, including both
    363      1.1    jruoho  *              simple objects and package objects
    364      1.1    jruoho  *
    365      1.1    jruoho  ******************************************************************************/
    366      1.1    jruoho 
    367      1.1    jruoho void
    368      1.1    jruoho AcpiUtDeleteInternalObjectList (
    369      1.1    jruoho     ACPI_OPERAND_OBJECT     **ObjList)
    370      1.1    jruoho {
    371      1.1    jruoho     ACPI_OPERAND_OBJECT     **InternalObj;
    372      1.1    jruoho 
    373      1.1    jruoho 
    374  1.1.1.3  christos     ACPI_FUNCTION_ENTRY ();
    375      1.1    jruoho 
    376      1.1    jruoho 
    377      1.1    jruoho     /* Walk the null-terminated internal list */
    378      1.1    jruoho 
    379      1.1    jruoho     for (InternalObj = ObjList; *InternalObj; InternalObj++)
    380      1.1    jruoho     {
    381      1.1    jruoho         AcpiUtRemoveReference (*InternalObj);
    382      1.1    jruoho     }
    383      1.1    jruoho 
    384      1.1    jruoho     /* Free the combined parameter pointer list and object array */
    385      1.1    jruoho 
    386      1.1    jruoho     ACPI_FREE (ObjList);
    387  1.1.1.3  christos     return;
    388      1.1    jruoho }
    389      1.1    jruoho 
    390      1.1    jruoho 
    391      1.1    jruoho /*******************************************************************************
    392      1.1    jruoho  *
    393      1.1    jruoho  * FUNCTION:    AcpiUtUpdateRefCount
    394      1.1    jruoho  *
    395      1.1    jruoho  * PARAMETERS:  Object          - Object whose ref count is to be updated
    396  1.1.1.3  christos  *              Action          - What to do (REF_INCREMENT or REF_DECREMENT)
    397      1.1    jruoho  *
    398  1.1.1.3  christos  * RETURN:      None. Sets new reference count within the object
    399      1.1    jruoho  *
    400  1.1.1.3  christos  * DESCRIPTION: Modify the reference count for an internal acpi object
    401      1.1    jruoho  *
    402      1.1    jruoho  ******************************************************************************/
    403      1.1    jruoho 
    404      1.1    jruoho static void
    405      1.1    jruoho AcpiUtUpdateRefCount (
    406      1.1    jruoho     ACPI_OPERAND_OBJECT     *Object,
    407      1.1    jruoho     UINT32                  Action)
    408      1.1    jruoho {
    409  1.1.1.3  christos     UINT16                  OriginalCount;
    410  1.1.1.3  christos     UINT16                  NewCount = 0;
    411  1.1.1.3  christos     ACPI_CPU_FLAGS          LockFlags;
    412      1.1    jruoho 
    413      1.1    jruoho 
    414      1.1    jruoho     ACPI_FUNCTION_NAME (UtUpdateRefCount);
    415      1.1    jruoho 
    416      1.1    jruoho 
    417      1.1    jruoho     if (!Object)
    418      1.1    jruoho     {
    419      1.1    jruoho         return;
    420      1.1    jruoho     }
    421      1.1    jruoho 
    422      1.1    jruoho     /*
    423  1.1.1.3  christos      * Always get the reference count lock. Note: Interpreter and/or
    424  1.1.1.3  christos      * Namespace is not always locked when this function is called.
    425      1.1    jruoho      */
    426  1.1.1.3  christos     LockFlags = AcpiOsAcquireLock (AcpiGbl_ReferenceCountLock);
    427  1.1.1.3  christos     OriginalCount = Object->Common.ReferenceCount;
    428  1.1.1.3  christos 
    429  1.1.1.3  christos     /* Perform the reference count action (increment, decrement) */
    430  1.1.1.3  christos 
    431      1.1    jruoho     switch (Action)
    432      1.1    jruoho     {
    433      1.1    jruoho     case REF_INCREMENT:
    434      1.1    jruoho 
    435  1.1.1.3  christos         NewCount = OriginalCount + 1;
    436      1.1    jruoho         Object->Common.ReferenceCount = NewCount;
    437  1.1.1.3  christos         AcpiOsReleaseLock (AcpiGbl_ReferenceCountLock, LockFlags);
    438  1.1.1.3  christos 
    439  1.1.1.3  christos         /* The current reference count should never be zero here */
    440  1.1.1.3  christos 
    441  1.1.1.3  christos         if (!OriginalCount)
    442  1.1.1.3  christos         {
    443  1.1.1.3  christos             ACPI_WARNING ((AE_INFO,
    444  1.1.1.3  christos                 "Obj %p, Reference Count was zero before increment\n",
    445  1.1.1.3  christos                 Object));
    446  1.1.1.3  christos         }
    447      1.1    jruoho 
    448      1.1    jruoho         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    449  1.1.1.3  christos             "Obj %p Type %.2X Refs %.2X [Incremented]\n",
    450  1.1.1.3  christos             Object, Object->Common.Type, NewCount));
    451      1.1    jruoho         break;
    452      1.1    jruoho 
    453      1.1    jruoho     case REF_DECREMENT:
    454      1.1    jruoho 
    455  1.1.1.3  christos         /* The current reference count must be non-zero */
    456      1.1    jruoho 
    457  1.1.1.3  christos         if (OriginalCount)
    458      1.1    jruoho         {
    459  1.1.1.3  christos             NewCount = OriginalCount - 1;
    460  1.1.1.3  christos             Object->Common.ReferenceCount = NewCount;
    461      1.1    jruoho         }
    462      1.1    jruoho 
    463  1.1.1.3  christos         AcpiOsReleaseLock (AcpiGbl_ReferenceCountLock, LockFlags);
    464  1.1.1.3  christos 
    465  1.1.1.3  christos         if (!OriginalCount)
    466      1.1    jruoho         {
    467  1.1.1.3  christos             ACPI_WARNING ((AE_INFO,
    468  1.1.1.3  christos                 "Obj %p, Reference Count is already zero, cannot decrement\n",
    469  1.1.1.3  christos                 Object));
    470      1.1    jruoho         }
    471      1.1    jruoho 
    472  1.1.1.3  christos         ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    473  1.1.1.3  christos             "Obj %p Type %.2X Refs %.2X [Decremented]\n",
    474  1.1.1.3  christos             Object, Object->Common.Type, NewCount));
    475  1.1.1.3  christos 
    476  1.1.1.3  christos         /* Actually delete the object on a reference count of zero */
    477  1.1.1.3  christos 
    478      1.1    jruoho         if (NewCount == 0)
    479      1.1    jruoho         {
    480      1.1    jruoho             AcpiUtDeleteInternalObj (Object);
    481      1.1    jruoho         }
    482      1.1    jruoho         break;
    483      1.1    jruoho 
    484      1.1    jruoho     default:
    485      1.1    jruoho 
    486  1.1.1.3  christos         AcpiOsReleaseLock (AcpiGbl_ReferenceCountLock, LockFlags);
    487  1.1.1.3  christos         ACPI_ERROR ((AE_INFO, "Unknown Reference Count action (0x%X)",
    488  1.1.1.3  christos             Action));
    489  1.1.1.3  christos         return;
    490      1.1    jruoho     }
    491      1.1    jruoho 
    492      1.1    jruoho     /*
    493      1.1    jruoho      * Sanity check the reference count, for debug purposes only.
    494      1.1    jruoho      * (A deleted object will have a huge reference count)
    495      1.1    jruoho      */
    496  1.1.1.3  christos     if (NewCount > ACPI_MAX_REFERENCE_COUNT)
    497      1.1    jruoho     {
    498      1.1    jruoho         ACPI_WARNING ((AE_INFO,
    499  1.1.1.3  christos             "Large Reference Count (0x%X) in object %p, Type=0x%.2X",
    500  1.1.1.3  christos             NewCount, Object, Object->Common.Type));
    501      1.1    jruoho     }
    502      1.1    jruoho }
    503      1.1    jruoho 
    504      1.1    jruoho 
    505      1.1    jruoho /*******************************************************************************
    506      1.1    jruoho  *
    507      1.1    jruoho  * FUNCTION:    AcpiUtUpdateObjectReference
    508      1.1    jruoho  *
    509      1.1    jruoho  * PARAMETERS:  Object              - Increment ref count for this object
    510      1.1    jruoho  *                                    and all sub-objects
    511  1.1.1.3  christos  *              Action              - Either REF_INCREMENT or REF_DECREMENT
    512      1.1    jruoho  *
    513      1.1    jruoho  * RETURN:      Status
    514      1.1    jruoho  *
    515      1.1    jruoho  * DESCRIPTION: Increment the object reference count
    516      1.1    jruoho  *
    517      1.1    jruoho  * Object references are incremented when:
    518      1.1    jruoho  * 1) An object is attached to a Node (namespace object)
    519      1.1    jruoho  * 2) An object is copied (all subobjects must be incremented)
    520      1.1    jruoho  *
    521      1.1    jruoho  * Object references are decremented when:
    522      1.1    jruoho  * 1) An object is detached from an Node
    523      1.1    jruoho  *
    524      1.1    jruoho  ******************************************************************************/
    525      1.1    jruoho 
    526      1.1    jruoho ACPI_STATUS
    527      1.1    jruoho AcpiUtUpdateObjectReference (
    528      1.1    jruoho     ACPI_OPERAND_OBJECT     *Object,
    529      1.1    jruoho     UINT16                  Action)
    530      1.1    jruoho {
    531      1.1    jruoho     ACPI_STATUS             Status = AE_OK;
    532      1.1    jruoho     ACPI_GENERIC_STATE      *StateList = NULL;
    533      1.1    jruoho     ACPI_OPERAND_OBJECT     *NextObject = NULL;
    534  1.1.1.3  christos     ACPI_OPERAND_OBJECT     *PrevObject;
    535      1.1    jruoho     ACPI_GENERIC_STATE      *State;
    536      1.1    jruoho     UINT32                  i;
    537      1.1    jruoho 
    538      1.1    jruoho 
    539  1.1.1.3  christos     ACPI_FUNCTION_NAME (UtUpdateObjectReference);
    540      1.1    jruoho 
    541      1.1    jruoho 
    542      1.1    jruoho     while (Object)
    543      1.1    jruoho     {
    544      1.1    jruoho         /* Make sure that this isn't a namespace handle */
    545      1.1    jruoho 
    546      1.1    jruoho         if (ACPI_GET_DESCRIPTOR_TYPE (Object) == ACPI_DESC_TYPE_NAMED)
    547      1.1    jruoho         {
    548      1.1    jruoho             ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    549      1.1    jruoho                 "Object %p is NS handle\n", Object));
    550  1.1.1.3  christos             return (AE_OK);
    551      1.1    jruoho         }
    552      1.1    jruoho 
    553      1.1    jruoho         /*
    554      1.1    jruoho          * All sub-objects must have their reference count incremented also.
    555      1.1    jruoho          * Different object types have different subobjects.
    556      1.1    jruoho          */
    557      1.1    jruoho         switch (Object->Common.Type)
    558      1.1    jruoho         {
    559      1.1    jruoho         case ACPI_TYPE_DEVICE:
    560      1.1    jruoho         case ACPI_TYPE_PROCESSOR:
    561      1.1    jruoho         case ACPI_TYPE_POWER:
    562      1.1    jruoho         case ACPI_TYPE_THERMAL:
    563  1.1.1.3  christos             /*
    564  1.1.1.3  christos              * Update the notify objects for these types (if present)
    565  1.1.1.3  christos              * Two lists, system and device notify handlers.
    566  1.1.1.3  christos              */
    567  1.1.1.3  christos             for (i = 0; i < ACPI_NUM_NOTIFY_TYPES; i++)
    568  1.1.1.3  christos             {
    569  1.1.1.3  christos                 PrevObject = Object->CommonNotify.NotifyList[i];
    570  1.1.1.3  christos                 while (PrevObject)
    571  1.1.1.3  christos                 {
    572  1.1.1.3  christos                     NextObject = PrevObject->Notify.Next[i];
    573  1.1.1.3  christos                     AcpiUtUpdateRefCount (PrevObject, Action);
    574  1.1.1.3  christos                     PrevObject = NextObject;
    575  1.1.1.3  christos                 }
    576  1.1.1.3  christos             }
    577      1.1    jruoho             break;
    578      1.1    jruoho 
    579      1.1    jruoho         case ACPI_TYPE_PACKAGE:
    580      1.1    jruoho             /*
    581      1.1    jruoho              * We must update all the sub-objects of the package,
    582      1.1    jruoho              * each of whom may have their own sub-objects.
    583      1.1    jruoho              */
    584      1.1    jruoho             for (i = 0; i < Object->Package.Count; i++)
    585      1.1    jruoho             {
    586      1.1    jruoho                 /*
    587  1.1.1.3  christos                  * Null package elements are legal and can be simply
    588  1.1.1.3  christos                  * ignored.
    589      1.1    jruoho                  */
    590  1.1.1.3  christos                 NextObject = Object->Package.Elements[i];
    591  1.1.1.3  christos                 if (!NextObject)
    592      1.1    jruoho                 {
    593  1.1.1.3  christos                     continue;
    594  1.1.1.3  christos                 }
    595  1.1.1.3  christos 
    596  1.1.1.3  christos                 switch (NextObject->Common.Type)
    597  1.1.1.3  christos                 {
    598  1.1.1.3  christos                 case ACPI_TYPE_INTEGER:
    599  1.1.1.3  christos                 case ACPI_TYPE_STRING:
    600  1.1.1.3  christos                 case ACPI_TYPE_BUFFER:
    601  1.1.1.3  christos                     /*
    602  1.1.1.3  christos                      * For these very simple sub-objects, we can just
    603  1.1.1.3  christos                      * update the reference count here and continue.
    604  1.1.1.3  christos                      * Greatly increases performance of this operation.
    605  1.1.1.3  christos                      */
    606  1.1.1.3  christos                     AcpiUtUpdateRefCount (NextObject, Action);
    607  1.1.1.3  christos                     break;
    608  1.1.1.3  christos 
    609  1.1.1.3  christos                 default:
    610  1.1.1.3  christos                     /*
    611  1.1.1.3  christos                      * For complex sub-objects, push them onto the stack
    612  1.1.1.3  christos                      * for later processing (this eliminates recursion.)
    613  1.1.1.3  christos                      */
    614  1.1.1.3  christos                     Status = AcpiUtCreateUpdateStateAndPush (
    615  1.1.1.3  christos                                  NextObject, Action, &StateList);
    616  1.1.1.3  christos                     if (ACPI_FAILURE (Status))
    617  1.1.1.3  christos                     {
    618  1.1.1.3  christos                         goto ErrorExit;
    619  1.1.1.3  christos                     }
    620  1.1.1.3  christos                     break;
    621      1.1    jruoho                 }
    622      1.1    jruoho             }
    623  1.1.1.3  christos             NextObject = NULL;
    624      1.1    jruoho             break;
    625      1.1    jruoho 
    626      1.1    jruoho         case ACPI_TYPE_BUFFER_FIELD:
    627      1.1    jruoho 
    628      1.1    jruoho             NextObject = Object->BufferField.BufferObj;
    629      1.1    jruoho             break;
    630      1.1    jruoho 
    631      1.1    jruoho         case ACPI_TYPE_LOCAL_REGION_FIELD:
    632      1.1    jruoho 
    633      1.1    jruoho             NextObject = Object->Field.RegionObj;
    634      1.1    jruoho             break;
    635      1.1    jruoho 
    636      1.1    jruoho         case ACPI_TYPE_LOCAL_BANK_FIELD:
    637      1.1    jruoho 
    638      1.1    jruoho             NextObject = Object->BankField.BankObj;
    639      1.1    jruoho             Status = AcpiUtCreateUpdateStateAndPush (
    640      1.1    jruoho                         Object->BankField.RegionObj, Action, &StateList);
    641      1.1    jruoho             if (ACPI_FAILURE (Status))
    642      1.1    jruoho             {
    643      1.1    jruoho                 goto ErrorExit;
    644      1.1    jruoho             }
    645      1.1    jruoho             break;
    646      1.1    jruoho 
    647      1.1    jruoho         case ACPI_TYPE_LOCAL_INDEX_FIELD:
    648      1.1    jruoho 
    649      1.1    jruoho             NextObject = Object->IndexField.IndexObj;
    650      1.1    jruoho             Status = AcpiUtCreateUpdateStateAndPush (
    651      1.1    jruoho                         Object->IndexField.DataObj, Action, &StateList);
    652      1.1    jruoho             if (ACPI_FAILURE (Status))
    653      1.1    jruoho             {
    654      1.1    jruoho                 goto ErrorExit;
    655      1.1    jruoho             }
    656      1.1    jruoho             break;
    657      1.1    jruoho 
    658      1.1    jruoho         case ACPI_TYPE_LOCAL_REFERENCE:
    659      1.1    jruoho             /*
    660      1.1    jruoho              * The target of an Index (a package, string, or buffer) or a named
    661      1.1    jruoho              * reference must track changes to the ref count of the index or
    662      1.1    jruoho              * target object.
    663      1.1    jruoho              */
    664      1.1    jruoho             if ((Object->Reference.Class == ACPI_REFCLASS_INDEX) ||
    665      1.1    jruoho                 (Object->Reference.Class== ACPI_REFCLASS_NAME))
    666      1.1    jruoho             {
    667      1.1    jruoho                 NextObject = Object->Reference.Object;
    668      1.1    jruoho             }
    669      1.1    jruoho             break;
    670      1.1    jruoho 
    671      1.1    jruoho         case ACPI_TYPE_REGION:
    672      1.1    jruoho         default:
    673  1.1.1.3  christos 
    674      1.1    jruoho             break; /* No subobjects for all other types */
    675      1.1    jruoho         }
    676      1.1    jruoho 
    677      1.1    jruoho         /*
    678      1.1    jruoho          * Now we can update the count in the main object. This can only
    679      1.1    jruoho          * happen after we update the sub-objects in case this causes the
    680      1.1    jruoho          * main object to be deleted.
    681      1.1    jruoho          */
    682      1.1    jruoho         AcpiUtUpdateRefCount (Object, Action);
    683      1.1    jruoho         Object = NULL;
    684      1.1    jruoho 
    685      1.1    jruoho         /* Move on to the next object to be updated */
    686      1.1    jruoho 
    687      1.1    jruoho         if (NextObject)
    688      1.1    jruoho         {
    689      1.1    jruoho             Object = NextObject;
    690      1.1    jruoho             NextObject = NULL;
    691      1.1    jruoho         }
    692      1.1    jruoho         else if (StateList)
    693      1.1    jruoho         {
    694      1.1    jruoho             State = AcpiUtPopGenericState (&StateList);
    695      1.1    jruoho             Object = State->Update.Object;
    696      1.1    jruoho             AcpiUtDeleteGenericState (State);
    697      1.1    jruoho         }
    698      1.1    jruoho     }
    699      1.1    jruoho 
    700  1.1.1.3  christos     return (AE_OK);
    701      1.1    jruoho 
    702      1.1    jruoho 
    703      1.1    jruoho ErrorExit:
    704      1.1    jruoho 
    705      1.1    jruoho     ACPI_EXCEPTION ((AE_INFO, Status,
    706      1.1    jruoho         "Could not update object reference count"));
    707      1.1    jruoho 
    708      1.1    jruoho     /* Free any stacked Update State objects */
    709      1.1    jruoho 
    710      1.1    jruoho     while (StateList)
    711      1.1    jruoho     {
    712      1.1    jruoho         State = AcpiUtPopGenericState (&StateList);
    713      1.1    jruoho         AcpiUtDeleteGenericState (State);
    714      1.1    jruoho     }
    715      1.1    jruoho 
    716  1.1.1.3  christos     return (Status);
    717      1.1    jruoho }
    718      1.1    jruoho 
    719      1.1    jruoho 
    720      1.1    jruoho /*******************************************************************************
    721      1.1    jruoho  *
    722      1.1    jruoho  * FUNCTION:    AcpiUtAddReference
    723      1.1    jruoho  *
    724      1.1    jruoho  * PARAMETERS:  Object          - Object whose reference count is to be
    725      1.1    jruoho  *                                incremented
    726      1.1    jruoho  *
    727      1.1    jruoho  * RETURN:      None
    728      1.1    jruoho  *
    729      1.1    jruoho  * DESCRIPTION: Add one reference to an ACPI object
    730      1.1    jruoho  *
    731      1.1    jruoho  ******************************************************************************/
    732      1.1    jruoho 
    733      1.1    jruoho void
    734      1.1    jruoho AcpiUtAddReference (
    735      1.1    jruoho     ACPI_OPERAND_OBJECT     *Object)
    736      1.1    jruoho {
    737      1.1    jruoho 
    738  1.1.1.3  christos     ACPI_FUNCTION_NAME (UtAddReference);
    739      1.1    jruoho 
    740      1.1    jruoho 
    741      1.1    jruoho     /* Ensure that we have a valid object */
    742      1.1    jruoho 
    743      1.1    jruoho     if (!AcpiUtValidInternalObject (Object))
    744      1.1    jruoho     {
    745  1.1.1.3  christos         return;
    746      1.1    jruoho     }
    747      1.1    jruoho 
    748      1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    749      1.1    jruoho         "Obj %p Current Refs=%X [To Be Incremented]\n",
    750      1.1    jruoho         Object, Object->Common.ReferenceCount));
    751      1.1    jruoho 
    752      1.1    jruoho     /* Increment the reference count */
    753      1.1    jruoho 
    754      1.1    jruoho     (void) AcpiUtUpdateObjectReference (Object, REF_INCREMENT);
    755  1.1.1.3  christos     return;
    756      1.1    jruoho }
    757      1.1    jruoho 
    758      1.1    jruoho 
    759      1.1    jruoho /*******************************************************************************
    760      1.1    jruoho  *
    761      1.1    jruoho  * FUNCTION:    AcpiUtRemoveReference
    762      1.1    jruoho  *
    763      1.1    jruoho  * PARAMETERS:  Object         - Object whose ref count will be decremented
    764      1.1    jruoho  *
    765      1.1    jruoho  * RETURN:      None
    766      1.1    jruoho  *
    767      1.1    jruoho  * DESCRIPTION: Decrement the reference count of an ACPI internal object
    768      1.1    jruoho  *
    769      1.1    jruoho  ******************************************************************************/
    770      1.1    jruoho 
    771      1.1    jruoho void
    772      1.1    jruoho AcpiUtRemoveReference (
    773      1.1    jruoho     ACPI_OPERAND_OBJECT     *Object)
    774      1.1    jruoho {
    775      1.1    jruoho 
    776  1.1.1.3  christos     ACPI_FUNCTION_NAME (UtRemoveReference);
    777      1.1    jruoho 
    778      1.1    jruoho 
    779      1.1    jruoho     /*
    780      1.1    jruoho      * Allow a NULL pointer to be passed in, just ignore it. This saves
    781      1.1    jruoho      * each caller from having to check. Also, ignore NS nodes.
    782      1.1    jruoho      */
    783      1.1    jruoho     if (!Object ||
    784      1.1    jruoho         (ACPI_GET_DESCRIPTOR_TYPE (Object) == ACPI_DESC_TYPE_NAMED))
    785      1.1    jruoho 
    786      1.1    jruoho     {
    787  1.1.1.3  christos         return;
    788      1.1    jruoho     }
    789      1.1    jruoho 
    790      1.1    jruoho     /* Ensure that we have a valid object */
    791      1.1    jruoho 
    792      1.1    jruoho     if (!AcpiUtValidInternalObject (Object))
    793      1.1    jruoho     {
    794  1.1.1.3  christos         return;
    795      1.1    jruoho     }
    796      1.1    jruoho 
    797      1.1    jruoho     ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS,
    798      1.1    jruoho         "Obj %p Current Refs=%X [To Be Decremented]\n",
    799      1.1    jruoho         Object, Object->Common.ReferenceCount));
    800      1.1    jruoho 
    801      1.1    jruoho     /*
    802      1.1    jruoho      * Decrement the reference count, and only actually delete the object
    803      1.1    jruoho      * if the reference count becomes 0. (Must also decrement the ref count
    804      1.1    jruoho      * of all subobjects!)
    805      1.1    jruoho      */
    806      1.1    jruoho     (void) AcpiUtUpdateObjectReference (Object, REF_DECREMENT);
    807  1.1.1.3  christos     return;
    808      1.1    jruoho }
    809