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