1 /****************************************************************************** 2 * 3 * Module Name: exnames - interpreter/scanner name load/execute 4 * 5 *****************************************************************************/ 6 7 /****************************************************************************** 8 * 9 * 1. Copyright Notice 10 * 11 * Some or all of this work - Copyright (c) 1999 - 2016, Intel Corp. 12 * All rights reserved. 13 * 14 * 2. License 15 * 16 * 2.1. This is your license from Intel Corp. under its intellectual property 17 * rights. You may have additional license terms from the party that provided 18 * you this software, covering your right to use that party's intellectual 19 * property rights. 20 * 21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a 22 * copy of the source code appearing in this file ("Covered Code") an 23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the 24 * base code distributed originally by Intel ("Original Intel Code") to copy, 25 * make derivatives, distribute, use and display any portion of the Covered 26 * Code in any form, with the right to sublicense such rights; and 27 * 28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent 29 * license (with the right to sublicense), under only those claims of Intel 30 * patents that are infringed by the Original Intel Code, to make, use, sell, 31 * offer to sell, and import the Covered Code and derivative works thereof 32 * solely to the minimum extent necessary to exercise the above copyright 33 * license, and in no event shall the patent license extend to any additions 34 * to or modifications of the Original Intel Code. No other license or right 35 * is granted directly or by implication, estoppel or otherwise; 36 * 37 * The above copyright and patent license is granted only if the following 38 * conditions are met: 39 * 40 * 3. Conditions 41 * 42 * 3.1. Redistribution of Source with Rights to Further Distribute Source. 43 * Redistribution of source code of any substantial portion of the Covered 44 * Code or modification with rights to further distribute source must include 45 * the above Copyright Notice, the above License, this list of Conditions, 46 * and the following Disclaimer and Export Compliance provision. In addition, 47 * Licensee must cause all Covered Code to which Licensee contributes to 48 * contain a file documenting the changes Licensee made to create that Covered 49 * Code and the date of any change. Licensee must include in that file the 50 * documentation of any changes made by any predecessor Licensee. Licensee 51 * must include a prominent statement that the modification is derived, 52 * directly or indirectly, from Original Intel Code. 53 * 54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source. 55 * Redistribution of source code of any substantial portion of the Covered 56 * Code or modification without rights to further distribute source must 57 * include the following Disclaimer and Export Compliance provision in the 58 * documentation and/or other materials provided with distribution. In 59 * addition, Licensee may not authorize further sublicense of source of any 60 * portion of the Covered Code, and must include terms to the effect that the 61 * license from Licensee to its licensee is limited to the intellectual 62 * property embodied in the software Licensee provides to its licensee, and 63 * not to intellectual property embodied in modifications its licensee may 64 * make. 65 * 66 * 3.3. Redistribution of Executable. Redistribution in executable form of any 67 * substantial portion of the Covered Code or modification must reproduce the 68 * above Copyright Notice, and the following Disclaimer and Export Compliance 69 * provision in the documentation and/or other materials provided with the 70 * distribution. 71 * 72 * 3.4. Intel retains all right, title, and interest in and to the Original 73 * Intel Code. 74 * 75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by 76 * Intel shall be used in advertising or otherwise to promote the sale, use or 77 * other dealings in products derived from or relating to the Covered Code 78 * without prior written authorization from Intel. 79 * 80 * 4. Disclaimer and Export Compliance 81 * 82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED 83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE 84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, 85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY 86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY 87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A 88 * PARTICULAR PURPOSE. 89 * 90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES 91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR 92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, 93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY 94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL 95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS 96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY 97 * LIMITED REMEDY. 98 * 99 * 4.3. Licensee shall not export, either directly or indirectly, any of this 100 * software or system incorporating such software without first obtaining any 101 * required license or other approval from the U. S. Department of Commerce or 102 * any other agency or department of the United States Government. In the 103 * event Licensee exports any such software from the United States or 104 * re-exports any such software from a foreign destination, Licensee shall 105 * ensure that the distribution and export/re-export of the software is in 106 * compliance with all laws, regulations, orders, or other restrictions of the 107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor 108 * any of its subsidiaries will export/re-export any technical data, process, 109 * software, or service, directly or indirectly, to any country for which the 110 * United States government or any agency thereof requires an export license, 111 * other governmental approval, or letter of assurance, without first obtaining 112 * such license, approval or letter. 113 * 114 *****************************************************************************/ 115 116 #include "acpi.h" 117 #include "accommon.h" 118 #include "acinterp.h" 119 #include "amlcode.h" 120 121 #define _COMPONENT ACPI_EXECUTER 122 ACPI_MODULE_NAME ("exnames") 123 124 /* Local prototypes */ 125 126 static char * 127 AcpiExAllocateNameString ( 128 UINT32 PrefixCount, 129 UINT32 NumNameSegs); 130 131 static ACPI_STATUS 132 AcpiExNameSegment ( 133 UINT8 **InAmlAddress, 134 char *NameString); 135 136 137 /******************************************************************************* 138 * 139 * FUNCTION: AcpiExAllocateNameString 140 * 141 * PARAMETERS: PrefixCount - Count of parent levels. Special cases: 142 * (-1)==root, 0==none 143 * NumNameSegs - count of 4-character name segments 144 * 145 * RETURN: A pointer to the allocated string segment. This segment must 146 * be deleted by the caller. 147 * 148 * DESCRIPTION: Allocate a buffer for a name string. Ensure allocated name 149 * string is long enough, and set up prefix if any. 150 * 151 ******************************************************************************/ 152 153 static char * 154 AcpiExAllocateNameString ( 155 UINT32 PrefixCount, 156 UINT32 NumNameSegs) 157 { 158 char *TempPtr; 159 char *NameString; 160 UINT32 SizeNeeded; 161 162 ACPI_FUNCTION_TRACE (ExAllocateNameString); 163 164 165 /* 166 * Allow room for all \ and ^ prefixes, all segments and a MultiNamePrefix. 167 * Also, one byte for the null terminator. 168 * This may actually be somewhat longer than needed. 169 */ 170 if (PrefixCount == ACPI_UINT32_MAX) 171 { 172 /* Special case for root */ 173 174 SizeNeeded = 1 + (ACPI_NAME_SIZE * NumNameSegs) + 2 + 1; 175 } 176 else 177 { 178 SizeNeeded = PrefixCount + (ACPI_NAME_SIZE * NumNameSegs) + 2 + 1; 179 } 180 181 /* 182 * Allocate a buffer for the name. 183 * This buffer must be deleted by the caller! 184 */ 185 NameString = ACPI_ALLOCATE (SizeNeeded); 186 if (!NameString) 187 { 188 ACPI_ERROR ((AE_INFO, 189 "Could not allocate size %u", SizeNeeded)); 190 return_PTR (NULL); 191 } 192 193 TempPtr = NameString; 194 195 /* Set up Root or Parent prefixes if needed */ 196 197 if (PrefixCount == ACPI_UINT32_MAX) 198 { 199 *TempPtr++ = AML_ROOT_PREFIX; 200 } 201 else 202 { 203 while (PrefixCount--) 204 { 205 *TempPtr++ = AML_PARENT_PREFIX; 206 } 207 } 208 209 210 /* Set up Dual or Multi prefixes if needed */ 211 212 if (NumNameSegs > 2) 213 { 214 /* Set up multi prefixes */ 215 216 *TempPtr++ = AML_MULTI_NAME_PREFIX_OP; 217 *TempPtr++ = (char) NumNameSegs; 218 } 219 else if (2 == NumNameSegs) 220 { 221 /* Set up dual prefixes */ 222 223 *TempPtr++ = AML_DUAL_NAME_PREFIX; 224 } 225 226 /* 227 * Terminate string following prefixes. AcpiExNameSegment() will 228 * append the segment(s) 229 */ 230 *TempPtr = 0; 231 232 return_PTR (NameString); 233 } 234 235 236 /******************************************************************************* 237 * 238 * FUNCTION: AcpiExNameSegment 239 * 240 * PARAMETERS: InAmlAddress - Pointer to the name in the AML code 241 * NameString - Where to return the name. The name is appended 242 * to any existing string to form a namepath 243 * 244 * RETURN: Status 245 * 246 * DESCRIPTION: Extract an ACPI name (4 bytes) from the AML byte stream 247 * 248 ******************************************************************************/ 249 250 static ACPI_STATUS 251 AcpiExNameSegment ( 252 UINT8 **InAmlAddress, 253 char *NameString) 254 { 255 char *AmlAddress = (void *) *InAmlAddress; 256 ACPI_STATUS Status = AE_OK; 257 UINT32 Index; 258 char CharBuf[5]; 259 260 261 ACPI_FUNCTION_TRACE (ExNameSegment); 262 263 264 /* 265 * If first character is a digit, then we know that we aren't looking 266 * at a valid name segment 267 */ 268 CharBuf[0] = *AmlAddress; 269 270 if ('0' <= CharBuf[0] && CharBuf[0] <= '9') 271 { 272 ACPI_ERROR ((AE_INFO, "Invalid leading digit: %c", CharBuf[0])); 273 return_ACPI_STATUS (AE_CTRL_PENDING); 274 } 275 276 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "Bytes from stream:\n")); 277 278 for (Index = 0; 279 (Index < ACPI_NAME_SIZE) && (AcpiUtValidNameChar (*AmlAddress, 0)); 280 Index++) 281 { 282 CharBuf[Index] = *AmlAddress++; 283 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "%c\n", CharBuf[Index])); 284 } 285 286 287 /* Valid name segment */ 288 289 if (Index == 4) 290 { 291 /* Found 4 valid characters */ 292 293 CharBuf[4] = '\0'; 294 295 if (NameString) 296 { 297 strcat (NameString, CharBuf); 298 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 299 "Appended to - %s\n", NameString)); 300 } 301 else 302 { 303 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, 304 "No Name string - %s\n", CharBuf)); 305 } 306 } 307 else if (Index == 0) 308 { 309 /* 310 * First character was not a valid name character, 311 * so we are looking at something other than a name. 312 */ 313 ACPI_DEBUG_PRINT ((ACPI_DB_INFO, 314 "Leading character is not alpha: %02Xh (not a name)\n", 315 CharBuf[0])); 316 Status = AE_CTRL_PENDING; 317 } 318 else 319 { 320 /* 321 * Segment started with one or more valid characters, but fewer than 322 * the required 4 323 */ 324 Status = AE_AML_BAD_NAME; 325 ACPI_ERROR ((AE_INFO, 326 "Bad character 0x%02x in name, at %p", 327 *AmlAddress, AmlAddress)); 328 } 329 330 *InAmlAddress = ACPI_CAST_PTR (UINT8, AmlAddress); 331 return_ACPI_STATUS (Status); 332 } 333 334 335 /******************************************************************************* 336 * 337 * FUNCTION: AcpiExGetNameString 338 * 339 * PARAMETERS: DataType - Object type to be associated with this 340 * name 341 * InAmlAddress - Pointer to the namestring in the AML code 342 * OutNameString - Where the namestring is returned 343 * OutNameLength - Length of the returned string 344 * 345 * RETURN: Status, namestring and length 346 * 347 * DESCRIPTION: Extract a full namepath from the AML byte stream, 348 * including any prefixes. 349 * 350 ******************************************************************************/ 351 352 ACPI_STATUS 353 AcpiExGetNameString ( 354 ACPI_OBJECT_TYPE DataType, 355 UINT8 *InAmlAddress, 356 char **OutNameString, 357 UINT32 *OutNameLength) 358 { 359 ACPI_STATUS Status = AE_OK; 360 UINT8 *AmlAddress = InAmlAddress; 361 char *NameString = NULL; 362 UINT32 NumSegments; 363 UINT32 PrefixCount = 0; 364 BOOLEAN HasPrefix = FALSE; 365 366 367 ACPI_FUNCTION_TRACE_PTR (ExGetNameString, AmlAddress); 368 369 370 if (ACPI_TYPE_LOCAL_REGION_FIELD == DataType || 371 ACPI_TYPE_LOCAL_BANK_FIELD == DataType || 372 ACPI_TYPE_LOCAL_INDEX_FIELD == DataType) 373 { 374 /* Disallow prefixes for types associated with FieldUnit names */ 375 376 NameString = AcpiExAllocateNameString (0, 1); 377 if (!NameString) 378 { 379 Status = AE_NO_MEMORY; 380 } 381 else 382 { 383 Status = AcpiExNameSegment (&AmlAddress, NameString); 384 } 385 } 386 else 387 { 388 /* 389 * DataType is not a field name. 390 * Examine first character of name for root or parent prefix operators 391 */ 392 switch (*AmlAddress) 393 { 394 case AML_ROOT_PREFIX: 395 396 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "RootPrefix(\\) at %p\n", 397 AmlAddress)); 398 399 /* 400 * Remember that we have a RootPrefix -- 401 * see comment in AcpiExAllocateNameString() 402 */ 403 AmlAddress++; 404 PrefixCount = ACPI_UINT32_MAX; 405 HasPrefix = TRUE; 406 break; 407 408 case AML_PARENT_PREFIX: 409 410 /* Increment past possibly multiple parent prefixes */ 411 412 do 413 { 414 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "ParentPrefix (^) at %p\n", 415 AmlAddress)); 416 417 AmlAddress++; 418 PrefixCount++; 419 420 } while (*AmlAddress == AML_PARENT_PREFIX); 421 422 HasPrefix = TRUE; 423 break; 424 425 default: 426 427 /* Not a prefix character */ 428 429 break; 430 } 431 432 /* Examine first character of name for name segment prefix operator */ 433 434 switch (*AmlAddress) 435 { 436 case AML_DUAL_NAME_PREFIX: 437 438 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "DualNamePrefix at %p\n", 439 AmlAddress)); 440 441 AmlAddress++; 442 NameString = AcpiExAllocateNameString (PrefixCount, 2); 443 if (!NameString) 444 { 445 Status = AE_NO_MEMORY; 446 break; 447 } 448 449 /* Indicate that we processed a prefix */ 450 451 HasPrefix = TRUE; 452 453 Status = AcpiExNameSegment (&AmlAddress, NameString); 454 if (ACPI_SUCCESS (Status)) 455 { 456 Status = AcpiExNameSegment (&AmlAddress, NameString); 457 } 458 break; 459 460 case AML_MULTI_NAME_PREFIX_OP: 461 462 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "MultiNamePrefix at %p\n", 463 AmlAddress)); 464 465 /* Fetch count of segments remaining in name path */ 466 467 AmlAddress++; 468 NumSegments = *AmlAddress; 469 470 NameString = AcpiExAllocateNameString ( 471 PrefixCount, NumSegments); 472 if (!NameString) 473 { 474 Status = AE_NO_MEMORY; 475 break; 476 } 477 478 /* Indicate that we processed a prefix */ 479 480 AmlAddress++; 481 HasPrefix = TRUE; 482 483 while (NumSegments && 484 (Status = AcpiExNameSegment (&AmlAddress, NameString)) == 485 AE_OK) 486 { 487 NumSegments--; 488 } 489 490 break; 491 492 case 0: 493 494 /* NullName valid as of 8-12-98 ASL/AML Grammar Update */ 495 496 if (PrefixCount == ACPI_UINT32_MAX) 497 { 498 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, 499 "NameSeg is \"\\\" followed by NULL\n")); 500 } 501 502 /* Consume the NULL byte */ 503 504 AmlAddress++; 505 NameString = AcpiExAllocateNameString (PrefixCount, 0); 506 if (!NameString) 507 { 508 Status = AE_NO_MEMORY; 509 break; 510 } 511 512 break; 513 514 default: 515 516 /* Name segment string */ 517 518 NameString = AcpiExAllocateNameString (PrefixCount, 1); 519 if (!NameString) 520 { 521 Status = AE_NO_MEMORY; 522 break; 523 } 524 525 Status = AcpiExNameSegment (&AmlAddress, NameString); 526 break; 527 } 528 } 529 530 if (AE_CTRL_PENDING == Status && HasPrefix) 531 { 532 /* Ran out of segments after processing a prefix */ 533 534 ACPI_ERROR ((AE_INFO, 535 "Malformed Name at %p", NameString)); 536 Status = AE_AML_BAD_NAME; 537 } 538 539 if (ACPI_FAILURE (Status)) 540 { 541 if (NameString) 542 { 543 ACPI_FREE (NameString); 544 } 545 return_ACPI_STATUS (Status); 546 } 547 548 *OutNameString = NameString; 549 *OutNameLength = (UINT32) (AmlAddress - InAmlAddress); 550 551 return_ACPI_STATUS (Status); 552 } 553