Home | History | Annotate | Line # | Download | only in acpiexec
aemain.c revision 1.1.1.21
      1 /******************************************************************************
      2  *
      3  * Module Name: aemain - Main routine for the AcpiExec utility
      4  *
      5  *****************************************************************************/
      6 
      7 /*
      8  * Copyright (C) 2000 - 2020, 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 "aecommon.h"
     45 
     46 #define _COMPONENT          ACPI_TOOLS
     47         ACPI_MODULE_NAME    ("aemain")
     48 
     49 
     50 /*
     51  * Main routine for the ACPI user-space execution utility.
     52  *
     53  * Portability note: The utility depends upon the host for command-line
     54  * wildcard support - it is not implemented locally. For example:
     55  *
     56  * Linux/Unix systems: Shell expands wildcards automatically.
     57  *
     58  * Windows: The setargv.obj module must be linked in to automatically
     59  * expand wildcards.
     60  */
     61 
     62 /* Local prototypes */
     63 
     64 static int
     65 AeDoOptions (
     66     int                     argc,
     67     char                    **argv);
     68 
     69 
     70 #define AE_BUFFER_SIZE              1024
     71 #define ASL_MAX_FILES               256
     72 
     73 /* Execution modes */
     74 
     75 #define AE_MODE_COMMAND_LOOP        0   /* Normal command execution loop */
     76 #define AE_MODE_BATCH_MULTIPLE      1   /* -b option to execute a command line */
     77 #define AE_MODE_BATCH_SINGLE        2   /* -m option to execute a single control method */
     78 
     79 
     80 /* Globals */
     81 
     82 BOOLEAN                     AcpiGbl_UseLocalFaultHandler = TRUE;
     83 BOOLEAN                     AcpiGbl_VerboseHandlers = FALSE;
     84 UINT8                       AcpiGbl_RegionFillValue = 0;
     85 BOOLEAN                     AcpiGbl_IgnoreErrors = FALSE;
     86 BOOLEAN                     AcpiGbl_AbortLoopOnTimeout = FALSE;
     87 UINT8                       AcpiGbl_UseHwReducedFadt = FALSE;
     88 BOOLEAN                     AcpiGbl_DoInterfaceTests = FALSE;
     89 BOOLEAN                     AcpiGbl_LoadTestTables = FALSE;
     90 BOOLEAN                     AcpiGbl_AeLoadOnly = FALSE;
     91 static UINT8                AcpiGbl_ExecutionMode = AE_MODE_COMMAND_LOOP;
     92 static char                 BatchBuffer[AE_BUFFER_SIZE];    /* Batch command buffer */
     93 INIT_FILE_ENTRY             *AcpiGbl_InitEntries = NULL;
     94 UINT32                      AcpiGbl_InitFileLineCount = 0;
     95 
     96 #define ACPIEXEC_NAME               "AML Execution/Debug Utility"
     97 #define AE_SUPPORTED_OPTIONS        "?b:d:e:f^ghlm^rt^v^:x:"
     98 
     99 
    100 /* Stubs for the disassembler */
    101 
    102 void
    103 MpSaveGpioInfo (
    104     ACPI_PARSE_OBJECT       *Op,
    105     AML_RESOURCE            *Resource,
    106     UINT32                  PinCount,
    107     UINT16                  *PinList,
    108     char                    *DeviceName)
    109 {
    110 }
    111 
    112 void
    113 MpSaveSerialInfo (
    114     ACPI_PARSE_OBJECT       *Op,
    115     AML_RESOURCE            *Resource,
    116     char                    *DeviceName)
    117 {
    118 }
    119 
    120 
    121 /******************************************************************************
    122  *
    123  * FUNCTION:    usage
    124  *
    125  * PARAMETERS:  None
    126  *
    127  * RETURN:      None
    128  *
    129  * DESCRIPTION: Print a usage message
    130  *
    131  *****************************************************************************/
    132 
    133 static void
    134 usage (
    135     void)
    136 {
    137 
    138     ACPI_USAGE_HEADER ("acpiexec [options] AMLfile1 AMLfile2 ...");
    139 
    140     ACPI_OPTION ("-b \"CommandLine\"",  "Batch mode command line execution (cmd1;cmd2;...)");
    141     ACPI_OPTION ("-h -?",               "Display this help message");
    142     ACPI_OPTION ("-m [Method]",         "Batch mode method execution. Default=MAIN");
    143     printf ("\n");
    144 
    145     ACPI_OPTION ("-da",                 "Disable method abort on error");
    146     ACPI_OPTION ("-df",                 "Disable Local fault handler");
    147     ACPI_OPTION ("-di",                 "Disable execution of STA/INI methods during init");
    148     ACPI_OPTION ("-do",                 "Disable Operation Region address simulation");
    149     ACPI_OPTION ("-dr",                 "Disable repair of method return values");
    150     ACPI_OPTION ("-ds",                 "Disable method auto-serialization");
    151     ACPI_OPTION ("-dt",                 "Disable allocation tracking (performance)");
    152     printf ("\n");
    153 
    154     ACPI_OPTION ("-ed",                 "Enable timer output for Debug Object");
    155     ACPI_OPTION ("-ef",                 "Enable display of final memory statistics");
    156     ACPI_OPTION ("-ei",                 "Enable additional tests for ACPICA interfaces");
    157     ACPI_OPTION ("-el",                 "Enable loading of additional test tables");
    158     ACPI_OPTION ("-eo",                 "Enable object evaluation log");
    159     ACPI_OPTION ("-es",                 "Enable Interpreter Slack Mode");
    160     ACPI_OPTION ("-et",                 "Enable debug semaphore timeout");
    161     printf ("\n");
    162 
    163     ACPI_OPTION ("-fi <File>",          "Specify namespace initialization file");
    164     ACPI_OPTION ("-fv <Value>",         "Operation Region initialization fill value");
    165     printf ("\n");
    166 
    167     ACPI_OPTION ("-l",                  "Load tables and namespace only");
    168     ACPI_OPTION ("-r",                  "Use hardware-reduced FADT V5");
    169     ACPI_OPTION ("-te",                 "Exit loop on timeout instead of aborting method");
    170     ACPI_OPTION ("-to <Seconds>",       "Set timeout period for AML while loops");
    171     printf ("\n");
    172 
    173     ACPI_OPTION ("-v",                  "Display version information");
    174     ACPI_OPTION ("-va",                 "Display verbose dump of any memory leaks");
    175     ACPI_OPTION ("-vd",                 "Display build date and time");
    176     ACPI_OPTION ("-vh",                 "Verbose exception handler output");
    177     ACPI_OPTION ("-vi",                 "Verbose initialization output");
    178     ACPI_OPTION ("-vr",                 "Verbose region handler output");
    179     ACPI_OPTION ("-x <DebugLevel>",     "Debug output level");
    180 
    181     printf ("\n  From within the interactive mode, use '?' or \"help\" to see\n"
    182         "  a list of available AML Debugger commands\n");
    183 }
    184 
    185 
    186 /******************************************************************************
    187  *
    188  * FUNCTION:    AeDoOptions
    189  *
    190  * PARAMETERS:  argc/argv           - Standard argc/argv
    191  *
    192  * RETURN:      Status
    193  *
    194  * DESCRIPTION: Command line option processing
    195  *
    196  *****************************************************************************/
    197 
    198 static int
    199 AeDoOptions (
    200     int                     argc,
    201     char                    **argv)
    202 {
    203     int                     j;
    204     UINT32                  Temp;
    205 
    206 
    207     while ((j = AcpiGetopt (argc, argv, AE_SUPPORTED_OPTIONS)) != ACPI_OPT_END) switch (j)
    208     {
    209     case 'b':
    210 
    211         if (strlen (AcpiGbl_Optarg) > (AE_BUFFER_SIZE -1))
    212         {
    213             printf ("**** The length of command line (%u) exceeded maximum (%d)\n",
    214                 (UINT32) strlen (AcpiGbl_Optarg), (AE_BUFFER_SIZE -1));
    215             return (-1);
    216         }
    217         AcpiGbl_ExecutionMode = AE_MODE_BATCH_MULTIPLE;
    218         strcpy (BatchBuffer, AcpiGbl_Optarg);
    219         break;
    220 
    221     case 'd':
    222 
    223         switch (AcpiGbl_Optarg[0])
    224         {
    225         case 'a':
    226 
    227             AcpiGbl_IgnoreErrors = TRUE;
    228             break;
    229 
    230         case 'f':
    231 
    232             AcpiGbl_UseLocalFaultHandler = FALSE;
    233             break;
    234 
    235         case 'i':
    236 
    237             AcpiGbl_DbOpt_NoIniMethods = TRUE;
    238             break;
    239 
    240         case 'o':
    241 
    242             AcpiGbl_DbOpt_NoRegionSupport = TRUE;
    243             break;
    244 
    245         case 'r':
    246 
    247             AcpiGbl_DisableAutoRepair = TRUE;
    248             break;
    249 
    250         case 's':
    251 
    252             AcpiGbl_AutoSerializeMethods = FALSE;
    253             break;
    254 
    255         case 't':
    256 
    257             #ifdef ACPI_DBG_TRACK_ALLOCATIONS
    258                 AcpiGbl_DisableMemTracking = TRUE;
    259             #endif
    260             break;
    261 
    262         default:
    263 
    264             printf ("Unknown option: -d%s\n", AcpiGbl_Optarg);
    265             return (-1);
    266         }
    267         break;
    268 
    269     case 'e':
    270 
    271         switch (AcpiGbl_Optarg[0])
    272         {
    273         case 'd':
    274 
    275             AcpiGbl_DisplayDebugTimer = TRUE;
    276             break;
    277 
    278         case 'f':
    279 
    280             #ifdef ACPI_DBG_TRACK_ALLOCATIONS
    281                 AcpiGbl_DisplayFinalMemStats = TRUE;
    282             #endif
    283             break;
    284 
    285         case 'i':
    286 
    287             AcpiGbl_DoInterfaceTests = TRUE;
    288             break;
    289 
    290         case 'l':
    291 
    292             AcpiGbl_LoadTestTables = TRUE;
    293             break;
    294 
    295         case 'o':
    296 
    297             AcpiDbgLevel |= ACPI_LV_EVALUATION;
    298             AcpiGbl_DbConsoleDebugLevel |= ACPI_LV_EVALUATION;
    299             break;
    300 
    301         case 's':
    302 
    303             AcpiGbl_EnableInterpreterSlack = TRUE;
    304             printf ("Enabling AML Interpreter slack mode\n");
    305             break;
    306 
    307         case 't':
    308 
    309             AcpiGbl_DebugTimeout = TRUE;
    310             break;
    311 
    312         default:
    313 
    314             printf ("Unknown option: -e%s\n", AcpiGbl_Optarg);
    315             return (-1);
    316         }
    317         break;
    318 
    319     case 'f':
    320 
    321         switch (AcpiGbl_Optarg[0])
    322         {
    323         case 'v':   /* -fv: region fill value */
    324 
    325             if (AcpiGetoptArgument (argc, argv))
    326             {
    327                 return (-1);
    328             }
    329 
    330             AcpiGbl_RegionFillValue = (UINT8) strtoul (AcpiGbl_Optarg, NULL, 0);
    331             break;
    332 
    333         case 'i':   /* -fi: specify initialization file */
    334 
    335             if (AcpiGetoptArgument (argc, argv))
    336             {
    337                 return (-1);
    338             }
    339 
    340             if (AeOpenInitializationFile (AcpiGbl_Optarg))
    341             {
    342                 return (-1);
    343             }
    344             break;
    345 
    346         default:
    347 
    348             printf ("Unknown option: -f%s\n", AcpiGbl_Optarg);
    349             return (-1);
    350         }
    351         break;
    352 
    353     case 'g':
    354 
    355         AcpiGbl_DbFilename = NULL;
    356         break;
    357 
    358     case 'h':
    359     case '?':
    360 
    361         usage();
    362         return (1);
    363 
    364     case 'l':
    365 
    366         AcpiGbl_AeLoadOnly = TRUE;
    367         break;
    368 
    369     case 'm':
    370 
    371         AcpiGbl_ExecutionMode = AE_MODE_BATCH_SINGLE;
    372         switch (AcpiGbl_Optarg[0])
    373         {
    374         case '^':
    375 
    376             strcpy (BatchBuffer, "MAIN");
    377             break;
    378 
    379         default:
    380 
    381             strcpy (BatchBuffer, AcpiGbl_Optarg);
    382             break;
    383         }
    384         break;
    385 
    386     case 'r':
    387 
    388         AcpiGbl_UseHwReducedFadt = TRUE;
    389         printf ("Using ACPI 5.0 Hardware Reduced Mode via version 5 FADT\n");
    390         break;
    391 
    392     case 't':
    393 
    394         switch (AcpiGbl_Optarg[0])
    395         {
    396         case 'o':  /* -to: Set loop timeout in seconds */
    397 
    398             if (AcpiGetoptArgument (argc, argv))
    399             {
    400                 return (-1);
    401             }
    402 
    403             Temp = strtoul (AcpiGbl_Optarg, NULL, 0);
    404             if (!Temp || (Temp > ACPI_UINT16_MAX))
    405             {
    406                 printf ("%s: Invalid loop timeout value\n",
    407                     AcpiGbl_Optarg);
    408                 return (-1);
    409             }
    410 
    411             AcpiGbl_MaxLoopIterations = (UINT16) Temp;
    412             printf ("Automatic loop timeout after %u seconds\n",
    413                 AcpiGbl_MaxLoopIterations);
    414             break;
    415 
    416         case 'e':
    417 
    418             AcpiGbl_AbortLoopOnTimeout = TRUE;
    419             break;
    420 
    421         default:
    422 
    423             printf ("Unknown option: -t%s\n", AcpiGbl_Optarg);
    424             return (-1);
    425         }
    426         break;
    427 
    428     case 'v':
    429 
    430         switch (AcpiGbl_Optarg[0])
    431         {
    432         case '^':  /* -v: (Version): signon already emitted, just exit */
    433 
    434             return (1);
    435 
    436         case 'a':
    437 
    438             AcpiGbl_VerboseLeakDump = TRUE;
    439             break;
    440 
    441         case 'd':
    442 
    443             printf (ACPI_COMMON_BUILD_TIME);
    444             return (1);
    445 
    446         case 'h':
    447 
    448             AcpiGbl_VerboseHandlers = TRUE;
    449             break;
    450 
    451         case 'i':
    452 
    453             AcpiDbgLevel |= ACPI_LV_INIT_NAMES;
    454             break;
    455 
    456         case 'r':
    457 
    458             AcpiGbl_DisplayRegionAccess = TRUE;
    459             break;
    460 
    461         default:
    462 
    463             printf ("Unknown option: -v%s\n", AcpiGbl_Optarg);
    464             return (-1);
    465         }
    466         break;
    467 
    468     case 'x':
    469 
    470         AcpiDbgLevel = strtoul (AcpiGbl_Optarg, NULL, 16);
    471         AcpiGbl_DbConsoleDebugLevel = AcpiDbgLevel;
    472         printf ("Debug Level: 0x%8.8X\n", AcpiDbgLevel);
    473         break;
    474 
    475     default:
    476 
    477         usage();
    478         return (-1);
    479     }
    480 
    481     return (0);
    482 }
    483 
    484 
    485 /******************************************************************************
    486  *
    487  * FUNCTION:    main
    488  *
    489  * PARAMETERS:  argc, argv
    490  *
    491  * RETURN:      Status
    492  *
    493  * DESCRIPTION: Main routine for AcpiExec utility
    494  *
    495  *****************************************************************************/
    496 
    497 int ACPI_SYSTEM_XFACE
    498 main (
    499     int                     argc,
    500     char                    **argv)
    501 {
    502     ACPI_NEW_TABLE_DESC     *ListHead = NULL;
    503     ACPI_STATUS             Status;
    504     UINT32                  InitFlags;
    505     int                     ExitCode = 0;
    506 
    507 
    508     ACPI_DEBUG_INITIALIZE (); /* For debug version only */
    509 
    510     signal (SIGINT, AeSignalHandler);
    511 
    512     /* Init debug globals */
    513 
    514     AcpiDbgLevel = ACPI_NORMAL_DEFAULT;
    515     AcpiDbgLayer = 0xFFFFFFFF;
    516 
    517     /*
    518      * Initialize ACPICA and start debugger thread.
    519      *
    520      * NOTE: After ACPICA initialization, AcpiTerminate MUST be called
    521      * before this procedure exits -- otherwise, the console may be
    522      * left in an incorrect state.
    523      */
    524     Status = AcpiInitializeSubsystem ();
    525     ACPI_CHECK_OK (AcpiInitializeSubsystem, Status);
    526     if (ACPI_FAILURE (Status))
    527     {
    528         ExitCode = -1;
    529         goto ErrorExit;
    530     }
    531 
    532     /* Use a shorter timeout value for acpiexec */
    533 
    534     AcpiGbl_MaxLoopIterations = 10;
    535 
    536     /* Initialize the AML debugger */
    537 
    538     Status = AcpiInitializeDebugger ();
    539     ACPI_CHECK_OK (AcpiInitializeDebugger, Status);
    540     if (ACPI_FAILURE (Status))
    541     {
    542         ExitCode = -1;
    543         goto ErrorExit;
    544     }
    545 
    546     printf (ACPI_COMMON_SIGNON (ACPIEXEC_NAME));
    547     if (argc < 2)
    548     {
    549         usage ();
    550         goto NormalExit;
    551     }
    552 
    553     /* Get the command line options */
    554 
    555     ExitCode = AeDoOptions (argc, argv);
    556     if (ExitCode)
    557     {
    558         if (ExitCode > 0)
    559         {
    560             ExitCode = 0;
    561         }
    562 
    563         goto ErrorExit;
    564     }
    565 
    566     if (AcpiGbl_UseLocalFaultHandler)
    567     {
    568         signal (SIGSEGV, AeSignalHandler);
    569     }
    570 
    571     /* The remaining arguments are filenames for ACPI tables */
    572 
    573     if (!argv[AcpiGbl_Optind])
    574     {
    575         goto EnterDebugger;
    576     }
    577 
    578     AcpiGbl_CstyleDisassembly = FALSE; /* Not supported for AcpiExec */
    579 
    580     /* Get each of the ACPI table files on the command line */
    581 
    582     while (argv[AcpiGbl_Optind])
    583     {
    584         /* Get all ACPI AML tables in this file */
    585 
    586         Status = AcGetAllTablesFromFile (argv[AcpiGbl_Optind],
    587             ACPI_GET_ALL_TABLES, &ListHead);
    588         if (ACPI_FAILURE (Status))
    589         {
    590             ExitCode = -1;
    591             goto ErrorExit;
    592         }
    593 
    594         AcpiGbl_Optind++;
    595     }
    596 
    597     printf ("\n");
    598 
    599     /* Build a local RSDT with all tables and let ACPICA process the RSDT */
    600 
    601     Status = AeBuildLocalTables (ListHead);
    602     if (ACPI_FAILURE (Status))
    603     {
    604         ExitCode = -1;
    605         goto ErrorExit;
    606     }
    607 
    608     /* Install all of the ACPI tables */
    609 
    610     Status = AeInstallTables ();
    611     if (ACPI_FAILURE (Status))
    612     {
    613         printf ("**** Could not install ACPI tables, %s\n",
    614             AcpiFormatException (Status));
    615         goto EnterDebugger;
    616     }
    617 
    618     /*
    619      * Install most of the handlers (Regions, Notify, Table, etc.)
    620      * Override the default region handlers, especially SystemMemory,
    621      * which is simulated in this utility.
    622      */
    623     Status = AeInstallEarlyHandlers ();
    624     if (ACPI_FAILURE (Status))
    625     {
    626         goto EnterDebugger;
    627     }
    628 
    629     /* Read the entire namespace initialization file if requested */
    630 
    631     Status = AeProcessInitFile();
    632     if (ACPI_FAILURE (Status))
    633     {
    634         ExitCode = -1;
    635         goto ErrorExit;
    636     }
    637 
    638     Status = AeLoadTables ();
    639     if (ACPI_FAILURE (Status))
    640     {
    641         printf ("**** Could not load ACPI tables, %s\n",
    642             AcpiFormatException (Status));
    643         goto EnterDebugger;
    644     }
    645 
    646     /*
    647      * Exit namespace initialization for the "load namespace only" option.
    648      * No control methods will be executed. However, still enter the
    649      * the debugger.
    650      */
    651     if (AcpiGbl_AeLoadOnly)
    652     {
    653         goto EnterDebugger;
    654     }
    655 
    656     /* Setup initialization flags for ACPICA */
    657 
    658     InitFlags = (ACPI_NO_HANDLER_INIT | ACPI_NO_ACPI_ENABLE);
    659     if (AcpiGbl_DbOpt_NoIniMethods)
    660     {
    661         InitFlags |= (ACPI_NO_DEVICE_INIT | ACPI_NO_OBJECT_INIT);
    662     }
    663 
    664     /*
    665      * Main initialization for ACPICA subsystem
    666      * TBD: Need a way to call this after the ACPI table "LOAD" command?
    667      *
    668      * NOTE: This initialization does not match the _Lxx and _Exx methods
    669      * to individual GPEs, as there are no real GPEs when the hardware
    670      * is simulated - because there is no namespace until AeLoadTables is
    671      * executed. This may have to change if AcpiExec is ever run natively
    672      * on actual hardware (such as under UEFI).
    673      */
    674     Status = AcpiEnableSubsystem (InitFlags);
    675     if (ACPI_FAILURE (Status))
    676     {
    677         printf ("**** Could not EnableSubsystem, %s\n",
    678             AcpiFormatException (Status));
    679         goto EnterDebugger;
    680     }
    681 
    682     /*
    683      * Install handlers for "device driver" space IDs (EC,SMBus, etc.)
    684      * and fixed event handlers
    685      */
    686     AeInstallLateHandlers ();
    687 
    688     /* Finish the ACPICA initialization */
    689 
    690     Status = AcpiInitializeObjects (InitFlags);
    691     if (ACPI_FAILURE (Status))
    692     {
    693         printf ("**** Could not InitializeObjects, %s\n",
    694             AcpiFormatException (Status));
    695         goto EnterDebugger;
    696     }
    697 
    698     AeDisplayUnusedInitFileItems ();
    699     AeMiscellaneousTests ();
    700 
    701 
    702 EnterDebugger:
    703 
    704     /* Exit if error above and we are in one of the batch modes */
    705 
    706     if (ACPI_FAILURE (Status) && (AcpiGbl_ExecutionMode > 0))
    707     {
    708         goto ErrorExit;
    709     }
    710 
    711     /* Run a batch command or enter the command loop */
    712 
    713     switch (AcpiGbl_ExecutionMode)
    714     {
    715     default:
    716     case AE_MODE_COMMAND_LOOP:
    717 
    718         AcpiRunDebugger (NULL);
    719         break;
    720 
    721     case AE_MODE_BATCH_MULTIPLE:
    722 
    723         AcpiRunDebugger (BatchBuffer);
    724         break;
    725 
    726     case AE_MODE_BATCH_SINGLE:
    727 
    728         AcpiDbExecute (BatchBuffer, NULL, NULL, EX_NO_SINGLE_STEP);
    729         break;
    730     }
    731 
    732     /* Shut down the debugger and ACPICA */
    733 
    734     AcpiTerminateDebugger ();
    735 
    736     /* re-enable debug output for AcpiTerminate output */
    737 
    738     AcpiGbl_DbOutputFlags = ACPI_DB_CONSOLE_OUTPUT;
    739 
    740 NormalExit:
    741     ExitCode = 0;
    742 
    743 ErrorExit:
    744     AeLateTest ();
    745 
    746     AeDeleteInitFileList ();
    747 
    748     (void) AcpiTerminate ();
    749     AcDeleteTableList (ListHead);
    750     return (ExitCode);
    751 }
    752