xref: /onnv-gate/usr/src/uts/intel/io/acpica/debugger/dbexec.c (revision 3446:5903aece022d)
1 /*******************************************************************************
2  *
3  * Module Name: dbexec - debugger control method execution
4  *              $Revision: 1.77 $
5  *
6  ******************************************************************************/
7 
8 /******************************************************************************
9  *
10  * 1. Copyright Notice
11  *
12  * Some or all of this work - Copyright (c) 1999 - 2006, Intel Corp.
13  * All rights reserved.
14  *
15  * 2. License
16  *
17  * 2.1. This is your license from Intel Corp. under its intellectual property
18  * rights.  You may have additional license terms from the party that provided
19  * you this software, covering your right to use that party's intellectual
20  * property rights.
21  *
22  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23  * copy of the source code appearing in this file ("Covered Code") an
24  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25  * base code distributed originally by Intel ("Original Intel Code") to copy,
26  * make derivatives, distribute, use and display any portion of the Covered
27  * Code in any form, with the right to sublicense such rights; and
28  *
29  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30  * license (with the right to sublicense), under only those claims of Intel
31  * patents that are infringed by the Original Intel Code, to make, use, sell,
32  * offer to sell, and import the Covered Code and derivative works thereof
33  * solely to the minimum extent necessary to exercise the above copyright
34  * license, and in no event shall the patent license extend to any additions
35  * to or modifications of the Original Intel Code.  No other license or right
36  * is granted directly or by implication, estoppel or otherwise;
37  *
38  * The above copyright and patent license is granted only if the following
39  * conditions are met:
40  *
41  * 3. Conditions
42  *
43  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44  * Redistribution of source code of any substantial portion of the Covered
45  * Code or modification with rights to further distribute source must include
46  * the above Copyright Notice, the above License, this list of Conditions,
47  * and the following Disclaimer and Export Compliance provision.  In addition,
48  * Licensee must cause all Covered Code to which Licensee contributes to
49  * contain a file documenting the changes Licensee made to create that Covered
50  * Code and the date of any change.  Licensee must include in that file the
51  * documentation of any changes made by any predecessor Licensee.  Licensee
52  * must include a prominent statement that the modification is derived,
53  * directly or indirectly, from Original Intel Code.
54  *
55  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56  * Redistribution of source code of any substantial portion of the Covered
57  * Code or modification without rights to further distribute source must
58  * include the following Disclaimer and Export Compliance provision in the
59  * documentation and/or other materials provided with distribution.  In
60  * addition, Licensee may not authorize further sublicense of source of any
61  * portion of the Covered Code, and must include terms to the effect that the
62  * license from Licensee to its licensee is limited to the intellectual
63  * property embodied in the software Licensee provides to its licensee, and
64  * not to intellectual property embodied in modifications its licensee may
65  * make.
66  *
67  * 3.3. Redistribution of Executable. Redistribution in executable form of any
68  * substantial portion of the Covered Code or modification must reproduce the
69  * above Copyright Notice, and the following Disclaimer and Export Compliance
70  * provision in the documentation and/or other materials provided with the
71  * distribution.
72  *
73  * 3.4. Intel retains all right, title, and interest in and to the Original
74  * Intel Code.
75  *
76  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77  * Intel shall be used in advertising or otherwise to promote the sale, use or
78  * other dealings in products derived from or relating to the Covered Code
79  * without prior written authorization from Intel.
80  *
81  * 4. Disclaimer and Export Compliance
82  *
83  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84  * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
86  * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
87  * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
88  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89  * PARTICULAR PURPOSE.
90  *
91  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
97  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
98  * LIMITED REMEDY.
99  *
100  * 4.3. Licensee shall not export, either directly or indirectly, any of this
101  * software or system incorporating such software without first obtaining any
102  * required license or other approval from the U. S. Department of Commerce or
103  * any other agency or department of the United States Government.  In the
104  * event Licensee exports any such software from the United States or
105  * re-exports any such software from a foreign destination, Licensee shall
106  * ensure that the distribution and export/re-export of the software is in
107  * compliance with all laws, regulations, orders, or other restrictions of the
108  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109  * any of its subsidiaries will export/re-export any technical data, process,
110  * software, or service, directly or indirectly, to any country for which the
111  * United States government or any agency thereof requires an export license,
112  * other governmental approval, or letter of assurance, without first obtaining
113  * such license, approval or letter.
114  *
115  *****************************************************************************/
116 
117 
118 #include "acpi.h"
119 #include "acdebug.h"
120 #include "acnamesp.h"
121 
122 #ifdef ACPI_DEBUGGER
123 
124 #define _COMPONENT          ACPI_CA_DEBUGGER
125         ACPI_MODULE_NAME    ("dbexec")
126 
127 
128 static ACPI_DB_METHOD_INFO  AcpiGbl_DbMethodInfo;
129 
130 /* Local prototypes */
131 
132 static ACPI_STATUS
133 AcpiDbExecuteMethod (
134     ACPI_DB_METHOD_INFO     *Info,
135     ACPI_BUFFER             *ReturnObj);
136 
137 static void
138 AcpiDbExecuteSetup (
139     ACPI_DB_METHOD_INFO     *Info);
140 
141 static UINT32
142 AcpiDbGetOutstandingAllocations (
143     void);
144 
145 static void ACPI_SYSTEM_XFACE
146 AcpiDbMethodThread (
147     void                    *Context);
148 
149 static ACPI_STATUS
150 AcpiDbExecutionWalk (
151     ACPI_HANDLE             ObjHandle,
152     UINT32                  NestingLevel,
153     void                    *Context,
154     void                    **ReturnValue);
155 
156 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
157 static UINT32
158 AcpiDbGetCacheInfo (
159     ACPI_MEMORY_LIST        *Cache);
160 #endif
161 
162 
163 /*******************************************************************************
164  *
165  * FUNCTION:    AcpiDbExecuteMethod
166  *
167  * PARAMETERS:  Info            - Valid info segment
168  *              ReturnObj       - Where to put return object
169  *
170  * RETURN:      Status
171  *
172  * DESCRIPTION: Execute a control method.
173  *
174  ******************************************************************************/
175 
176 static ACPI_STATUS
177 AcpiDbExecuteMethod (
178     ACPI_DB_METHOD_INFO     *Info,
179     ACPI_BUFFER             *ReturnObj)
180 {
181     ACPI_STATUS             Status;
182     ACPI_OBJECT_LIST        ParamObjects;
183     ACPI_OBJECT             Params[ACPI_METHOD_NUM_ARGS];
184     UINT32                  i;
185 
186 
187     if (AcpiGbl_DbOutputToFile && !AcpiDbgLevel)
188     {
189         AcpiOsPrintf ("Warning: debug output is not enabled!\n");
190     }
191 
192     /* Are there arguments to the method? */
193 
194     if (Info->Args && Info->Args[0])
195     {
196         for (i = 0; Info->Args[i] && i < ACPI_METHOD_NUM_ARGS; i++)
197         {
198             Params[i].Type          = ACPI_TYPE_INTEGER;
199             Params[i].Integer.Value = ACPI_STRTOUL (Info->Args[i], NULL, 16);
200         }
201 
202         ParamObjects.Pointer = Params;
203         ParamObjects.Count   = i;
204     }
205     else
206     {
207         /* Setup default parameters */
208 
209         Params[0].Type           = ACPI_TYPE_INTEGER;
210         Params[0].Integer.Value  = 0x01020304;
211 
212         Params[1].Type           = ACPI_TYPE_STRING;
213         Params[1].String.Length  = 12;
214         Params[1].String.Pointer = "AML Debugger";
215 
216         ParamObjects.Pointer     = Params;
217         ParamObjects.Count       = 2;
218     }
219 
220     /* Prepare for a return object of arbitrary size */
221 
222     ReturnObj->Pointer = AcpiGbl_DbBuffer;
223     ReturnObj->Length  = ACPI_DEBUG_BUFFER_SIZE;
224 
225     /* Do the actual method execution */
226 
227     AcpiGbl_MethodExecuting = TRUE;
228     Status = AcpiEvaluateObject (NULL,
229                 Info->Pathname, &ParamObjects, ReturnObj);
230 
231     AcpiGbl_CmSingleStep = FALSE;
232     AcpiGbl_MethodExecuting = FALSE;
233 
234     return (Status);
235 }
236 
237 
238 /*******************************************************************************
239  *
240  * FUNCTION:    AcpiDbExecuteSetup
241  *
242  * PARAMETERS:  Info            - Valid method info
243  *
244  * RETURN:      None
245  *
246  * DESCRIPTION: Setup info segment prior to method execution
247  *
248  ******************************************************************************/
249 
250 static void
251 AcpiDbExecuteSetup (
252     ACPI_DB_METHOD_INFO     *Info)
253 {
254 
255     /* Catenate the current scope to the supplied name */
256 
257     Info->Pathname[0] = 0;
258     if ((Info->Name[0] != '\\') &&
259         (Info->Name[0] != '/'))
260     {
261         ACPI_STRCAT (Info->Pathname, AcpiGbl_DbScopeBuf);
262     }
263 
264     ACPI_STRCAT (Info->Pathname, Info->Name);
265     AcpiDbPrepNamestring (Info->Pathname);
266 
267     AcpiDbSetOutputDestination (ACPI_DB_DUPLICATE_OUTPUT);
268     AcpiOsPrintf ("Executing %s\n", Info->Pathname);
269 
270     if (Info->Flags & EX_SINGLE_STEP)
271     {
272         AcpiGbl_CmSingleStep = TRUE;
273         AcpiDbSetOutputDestination (ACPI_DB_CONSOLE_OUTPUT);
274     }
275 
276     else
277     {
278         /* No single step, allow redirection to a file */
279 
280         AcpiDbSetOutputDestination (ACPI_DB_REDIRECTABLE_OUTPUT);
281     }
282 }
283 
284 
285 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
286 static UINT32
287 AcpiDbGetCacheInfo (
288     ACPI_MEMORY_LIST        *Cache)
289 {
290 
291     return (Cache->TotalAllocated - Cache->TotalFreed - Cache->CurrentDepth);
292 }
293 #endif
294 
295 /*******************************************************************************
296  *
297  * FUNCTION:    AcpiDbGetOutstandingAllocations
298  *
299  * PARAMETERS:  None
300  *
301  * RETURN:      Current global allocation count minus cache entries
302  *
303  * DESCRIPTION: Determine the current number of "outstanding" allocations --
304  *              those allocations that have not been freed and also are not
305  *              in one of the various object caches.
306  *
307  ******************************************************************************/
308 
309 static UINT32
310 AcpiDbGetOutstandingAllocations (
311     void)
312 {
313     UINT32                  Outstanding = 0;
314 
315 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
316 
317     Outstanding += AcpiDbGetCacheInfo (AcpiGbl_StateCache);
318     Outstanding += AcpiDbGetCacheInfo (AcpiGbl_PsNodeCache);
319     Outstanding += AcpiDbGetCacheInfo (AcpiGbl_PsNodeExtCache);
320     Outstanding += AcpiDbGetCacheInfo (AcpiGbl_OperandCache);
321 #endif
322 
323     return (Outstanding);
324 }
325 
326 
327 /*******************************************************************************
328  *
329  * FUNCTION:    AcpiDbExecutionWalk
330  *
331  * PARAMETERS:  WALK_CALLBACK
332  *
333  * RETURN:      Status
334  *
335  * DESCRIPTION: Execute a control method.  Name is relative to the current
336  *              scope.
337  *
338  ******************************************************************************/
339 
340 static ACPI_STATUS
341 AcpiDbExecutionWalk (
342     ACPI_HANDLE             ObjHandle,
343     UINT32                  NestingLevel,
344     void                    *Context,
345     void                    **ReturnValue)
346 {
347     ACPI_OPERAND_OBJECT     *ObjDesc;
348     ACPI_NAMESPACE_NODE     *Node = (ACPI_NAMESPACE_NODE *) ObjHandle;
349     ACPI_BUFFER             ReturnObj;
350     ACPI_STATUS             Status;
351 
352 
353     ObjDesc = AcpiNsGetAttachedObject (Node);
354     if (ObjDesc->Method.ParamCount)
355     {
356         return (AE_OK);
357     }
358 
359     ReturnObj.Pointer = NULL;
360     ReturnObj.Length = ACPI_ALLOCATE_BUFFER;
361 
362     AcpiNsPrintNodePathname (Node, "Execute");
363 
364     /* Do the actual method execution */
365 
366     AcpiOsPrintf ("\n");
367     AcpiGbl_MethodExecuting = TRUE;
368 
369     Status = AcpiEvaluateObject (Node, NULL, NULL, &ReturnObj);
370 
371     AcpiOsPrintf ("[%4.4s] returned %s\n", AcpiUtGetNodeName (Node),
372             AcpiFormatException (Status));
373     AcpiGbl_MethodExecuting = FALSE;
374 
375     return (AE_OK);
376 }
377 
378 
379 /*******************************************************************************
380  *
381  * FUNCTION:    AcpiDbExecute
382  *
383  * PARAMETERS:  Name                - Name of method to execute
384  *              Args                - Parameters to the method
385  *              Flags               - single step/no single step
386  *
387  * RETURN:      None
388  *
389  * DESCRIPTION: Execute a control method.  Name is relative to the current
390  *              scope.
391  *
392  ******************************************************************************/
393 
394 void
395 AcpiDbExecute (
396     char                    *Name,
397     char                    **Args,
398     UINT32                  Flags)
399 {
400     ACPI_STATUS             Status;
401     ACPI_BUFFER             ReturnObj;
402     char                    *NameString;
403 
404 
405 #ifdef ACPI_DEBUG_OUTPUT
406     UINT32                  PreviousAllocations;
407     UINT32                  Allocations;
408 
409 
410     /* Memory allocation tracking */
411 
412     PreviousAllocations = AcpiDbGetOutstandingAllocations ();
413 #endif
414 
415     if (*Name == '*')
416     {
417         (void) AcpiWalkNamespace (ACPI_TYPE_METHOD, ACPI_ROOT_OBJECT,
418                     ACPI_UINT32_MAX, AcpiDbExecutionWalk, NULL, NULL);
419         return;
420     }
421     else
422     {
423         NameString = ACPI_ALLOCATE (ACPI_STRLEN (Name) + 1);
424         if (!NameString)
425         {
426             return;
427         }
428 
429         ACPI_STRCPY (NameString, Name);
430         AcpiUtStrupr (NameString);
431         AcpiGbl_DbMethodInfo.Name = NameString;
432         AcpiGbl_DbMethodInfo.Args = Args;
433         AcpiGbl_DbMethodInfo.Flags = Flags;
434 
435         ReturnObj.Pointer = NULL;
436         ReturnObj.Length = ACPI_ALLOCATE_BUFFER;
437 
438         AcpiDbExecuteSetup (&AcpiGbl_DbMethodInfo);
439         Status = AcpiDbExecuteMethod (&AcpiGbl_DbMethodInfo, &ReturnObj);
440         ACPI_FREE (NameString);
441     }
442 
443     /*
444      * Allow any handlers in separate threads to complete.
445      * (Such as Notify handlers invoked from AML executed above).
446      */
447     AcpiOsSleep ((ACPI_INTEGER) 10);
448 
449 
450 #ifdef ACPI_DEBUG_OUTPUT
451 
452     /* Memory allocation tracking */
453 
454     Allocations = AcpiDbGetOutstandingAllocations () - PreviousAllocations;
455 
456     AcpiDbSetOutputDestination (ACPI_DB_DUPLICATE_OUTPUT);
457 
458     if (Allocations > 0)
459     {
460         AcpiOsPrintf ("Outstanding: 0x%X allocations after execution\n",
461                         Allocations);
462     }
463 #endif
464 
465     if (ACPI_FAILURE (Status))
466     {
467         AcpiOsPrintf ("Execution of %s failed with status %s\n",
468             AcpiGbl_DbMethodInfo.Pathname, AcpiFormatException (Status));
469     }
470     else
471     {
472         /* Display a return object, if any */
473 
474         if (ReturnObj.Length)
475         {
476             AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
477                 AcpiGbl_DbMethodInfo.Pathname, ReturnObj.Pointer,
478                 (UINT32) ReturnObj.Length);
479             AcpiDbDumpExternalObject (ReturnObj.Pointer, 1);
480         }
481         else
482         {
483             AcpiOsPrintf ("No return object from execution of %s\n",
484                 AcpiGbl_DbMethodInfo.Pathname);
485         }
486     }
487 
488     AcpiDbSetOutputDestination (ACPI_DB_CONSOLE_OUTPUT);
489 }
490 
491 
492 /*******************************************************************************
493  *
494  * FUNCTION:    AcpiDbMethodThread
495  *
496  * PARAMETERS:  Context             - Execution info segment
497  *
498  * RETURN:      None
499  *
500  * DESCRIPTION: Debugger execute thread.  Waits for a command line, then
501  *              simply dispatches it.
502  *
503  ******************************************************************************/
504 
505 static void ACPI_SYSTEM_XFACE
506 AcpiDbMethodThread (
507     void                    *Context)
508 {
509     ACPI_STATUS             Status;
510     ACPI_DB_METHOD_INFO     *Info = Context;
511     UINT32                  i;
512     ACPI_BUFFER             ReturnObj;
513 
514 
515     for (i = 0; i < Info->NumLoops; i++)
516     {
517         Status = AcpiDbExecuteMethod (Info, &ReturnObj);
518         if (ACPI_FAILURE (Status))
519         {
520             AcpiOsPrintf ("%s During execution of %s at iteration %X\n",
521                 AcpiFormatException (Status), Info->Pathname, i);
522             if (Status == AE_ABORT_METHOD)
523             {
524                 break;
525             }
526         }
527 
528         if ((i % 100) == 0)
529         {
530             AcpiOsPrintf ("%d executions\n", i);
531         }
532 
533 #if 0
534         if (ReturnObj.Length)
535         {
536             AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
537                 Info->Pathname, ReturnObj.Pointer, (UINT32) ReturnObj.Length);
538             AcpiDbDumpExternalObject (ReturnObj.Pointer, 1);
539         }
540 #endif
541     }
542 
543     /* Signal our completion */
544 
545     Status = AcpiOsSignalSemaphore (Info->ThreadGate, 1);
546     if (ACPI_FAILURE (Status))
547     {
548         AcpiOsPrintf ("Could not signal debugger thread sync semaphore, %s\n",
549             AcpiFormatException (Status));
550     }
551 }
552 
553 
554 /*******************************************************************************
555  *
556  * FUNCTION:    AcpiDbCreateExecutionThreads
557  *
558  * PARAMETERS:  NumThreadsArg           - Number of threads to create
559  *              NumLoopsArg             - Loop count for the thread(s)
560  *              MethodNameArg           - Control method to execute
561  *
562  * RETURN:      None
563  *
564  * DESCRIPTION: Create threads to execute method(s)
565  *
566  ******************************************************************************/
567 
568 void
569 AcpiDbCreateExecutionThreads (
570     char                    *NumThreadsArg,
571     char                    *NumLoopsArg,
572     char                    *MethodNameArg)
573 {
574     ACPI_STATUS             Status;
575     UINT32                  NumThreads;
576     UINT32                  NumLoops;
577     UINT32                  i;
578     ACPI_MUTEX              ThreadGate;
579 
580 
581     /* Get the arguments */
582 
583     NumThreads = ACPI_STRTOUL (NumThreadsArg, NULL, 0);
584     NumLoops   = ACPI_STRTOUL (NumLoopsArg, NULL, 0);
585 
586     if (!NumThreads || !NumLoops)
587     {
588         AcpiOsPrintf ("Bad argument: Threads %X, Loops %X\n",
589             NumThreads, NumLoops);
590         return;
591     }
592 
593     /* Create the synchronization semaphore */
594 
595     Status = AcpiOsCreateSemaphore (1, 0, &ThreadGate);
596     if (ACPI_FAILURE (Status))
597     {
598         AcpiOsPrintf ("Could not create semaphore, %s\n",
599             AcpiFormatException (Status));
600         return;
601     }
602 
603     /* Setup the context to be passed to each thread */
604 
605     AcpiGbl_DbMethodInfo.Name = MethodNameArg;
606     AcpiGbl_DbMethodInfo.Args = NULL;
607     AcpiGbl_DbMethodInfo.Flags = 0;
608     AcpiGbl_DbMethodInfo.NumLoops = NumLoops;
609     AcpiGbl_DbMethodInfo.ThreadGate = ThreadGate;
610 
611     AcpiDbExecuteSetup (&AcpiGbl_DbMethodInfo);
612 
613     /* Create the threads */
614 
615     AcpiOsPrintf ("Creating %X threads to execute %X times each\n",
616         NumThreads, NumLoops);
617 
618     for (i = 0; i < (NumThreads); i++)
619     {
620         Status = AcpiOsExecute (OSL_DEBUGGER_THREAD, AcpiDbMethodThread,
621             &AcpiGbl_DbMethodInfo);
622         if (ACPI_FAILURE (Status))
623         {
624             break;
625         }
626     }
627 
628     /* Wait for all threads to complete */
629 
630     i = NumThreads;
631     while (i) /* Brain damage for host OSs that only support wait of 1 unit */
632     {
633         Status = AcpiOsWaitSemaphore (ThreadGate, 1, ACPI_WAIT_FOREVER);
634         i--;
635     }
636 
637     /* Cleanup and exit */
638 
639     (void) AcpiOsDeleteSemaphore (ThreadGate);
640 
641     AcpiDbSetOutputDestination (ACPI_DB_DUPLICATE_OUTPUT);
642     AcpiOsPrintf ("All threads (%X) have completed\n", NumThreads);
643     AcpiDbSetOutputDestination (ACPI_DB_CONSOLE_OUTPUT);
644 }
645 
646 #endif /* ACPI_DEBUGGER */
647 
648 
649