/******************************************************************************
*
* Module Name: exnames - interpreter/scanner name load/execute
*
*****************************************************************************/
/*
* Copyright (C) 2000 - 2016, Intel Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions, and the following disclaimer,
* without modification.
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
* substantially similar to the "NO WARRANTY" disclaimer below
* ("Disclaimer") and any redistribution must be conditioned upon
* including a substantially similar Disclaimer requirement for further
* binary redistribution.
* 3. Neither the names of the above-listed copyright holders nor the names
* of any contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* Alternatively, this software may be distributed under the terms of the
* GNU General Public License ("GPL") version 2 as published by the Free
* Software Foundation.
*
* NO WARRANTY
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*/
#include "acpi.h"
#include "accommon.h"
#include "acinterp.h"
#include "amlcode.h"
ACPI_MODULE_NAME ("exnames")
/* Local prototypes */
static char *
static ACPI_STATUS
char *NameString);
/*******************************************************************************
*
* FUNCTION: AcpiExAllocateNameString
*
* PARAMETERS: PrefixCount - Count of parent levels. Special cases:
* (-1)==root, 0==none
* NumNameSegs - count of 4-character name segments
*
* RETURN: A pointer to the allocated string segment. This segment must
* be deleted by the caller.
*
* DESCRIPTION: Allocate a buffer for a name string. Ensure allocated name
* string is long enough, and set up prefix if any.
*
******************************************************************************/
static char *
{
char *TempPtr;
char *NameString;
/*
* Allow room for all \ and ^ prefixes, all segments and a MultiNamePrefix.
* Also, one byte for the null terminator.
* This may actually be somewhat longer than needed.
*/
if (PrefixCount == ACPI_UINT32_MAX)
{
/* Special case for root */
}
else
{
}
/*
* Allocate a buffer for the name.
* This buffer must be deleted by the caller!
*/
if (!NameString)
{
"Could not allocate size %u", SizeNeeded));
return_PTR (NULL);
}
/* Set up Root or Parent prefixes if needed */
if (PrefixCount == ACPI_UINT32_MAX)
{
*TempPtr++ = AML_ROOT_PREFIX;
}
else
{
while (PrefixCount--)
{
*TempPtr++ = AML_PARENT_PREFIX;
}
}
/* Set up Dual or Multi prefixes if needed */
if (NumNameSegs > 2)
{
/* Set up multi prefixes */
*TempPtr++ = (char) NumNameSegs;
}
else if (2 == NumNameSegs)
{
/* Set up dual prefixes */
*TempPtr++ = AML_DUAL_NAME_PREFIX;
}
/*
* Terminate string following prefixes. AcpiExNameSegment() will
* append the segment(s)
*/
*TempPtr = 0;
}
/*******************************************************************************
*
* FUNCTION: AcpiExNameSegment
*
* PARAMETERS: InAmlAddress - Pointer to the name in the AML code
* NameString - Where to return the name. The name is appended
* to any existing string to form a namepath
*
* RETURN: Status
*
* DESCRIPTION: Extract an ACPI name (4 bytes) from the AML byte stream
*
******************************************************************************/
static ACPI_STATUS
char *NameString)
{
/*
* If first character is a digit, then we know that we aren't looking
* at a valid name segment
*/
CharBuf[0] = *AmlAddress;
{
}
for (Index = 0;
Index++)
{
}
/* Valid name segment */
if (Index == 4)
{
/* Found 4 valid characters */
if (NameString)
{
"Appended to - %s\n", NameString));
}
else
{
"No Name string - %s\n", CharBuf));
}
}
else if (Index == 0)
{
/*
* First character was not a valid name character,
* so we are looking at something other than a name.
*/
"Leading character is not alpha: %02Xh (not a name)\n",
CharBuf[0]));
}
else
{
/*
* Segment started with one or more valid characters, but fewer than
* the required 4
*/
"Bad character 0x%02x in name, at %p",
*AmlAddress, AmlAddress));
}
}
/*******************************************************************************
*
* FUNCTION: AcpiExGetNameString
*
* PARAMETERS: DataType - Object type to be associated with this
* name
* InAmlAddress - Pointer to the namestring in the AML code
* OutNameString - Where the namestring is returned
* OutNameLength - Length of the returned string
*
* RETURN: Status, namestring and length
*
* DESCRIPTION: Extract a full namepath from the AML byte stream,
* including any prefixes.
*
******************************************************************************/
char **OutNameString,
{
if (ACPI_TYPE_LOCAL_REGION_FIELD == DataType ||
{
/* Disallow prefixes for types associated with FieldUnit names */
if (!NameString)
{
}
else
{
}
}
else
{
/*
* DataType is not a field name.
* Examine first character of name for root or parent prefix operators
*/
switch (*AmlAddress)
{
case AML_ROOT_PREFIX:
AmlAddress));
/*
* Remember that we have a RootPrefix --
* see comment in AcpiExAllocateNameString()
*/
AmlAddress++;
break;
case AML_PARENT_PREFIX:
/* Increment past possibly multiple parent prefixes */
do
{
AmlAddress));
AmlAddress++;
PrefixCount++;
} while (*AmlAddress == AML_PARENT_PREFIX);
break;
default:
/* Not a prefix character */
break;
}
/* Examine first character of name for name segment prefix operator */
switch (*AmlAddress)
{
case AML_DUAL_NAME_PREFIX:
AmlAddress));
AmlAddress++;
if (!NameString)
{
break;
}
/* Indicate that we processed a prefix */
if (ACPI_SUCCESS (Status))
{
}
break;
case AML_MULTI_NAME_PREFIX_OP:
AmlAddress));
/* Fetch count of segments remaining in name path */
AmlAddress++;
if (!NameString)
{
break;
}
/* Indicate that we processed a prefix */
AmlAddress++;
while (NumSegments &&
{
NumSegments--;
}
break;
case 0:
if (PrefixCount == ACPI_UINT32_MAX)
{
"NameSeg is \"\\\" followed by NULL\n"));
}
/* Consume the NULL byte */
AmlAddress++;
if (!NameString)
{
break;
}
break;
default:
/* Name segment string */
if (!NameString)
{
break;
}
break;
}
}
{
/* Ran out of segments after processing a prefix */
"Malformed Name at %p", NameString));
}
if (ACPI_FAILURE (Status))
{
if (NameString)
{
}
}
}