1 /******************************************************************************
3 * Module Name: nsrepair - Repair for objects returned by predefined methods
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2015, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
51 #define _COMPONENT ACPI_NAMESPACE
52 ACPI_MODULE_NAME("nsrepair")
54 /*******************************************************************************
56 * This module attempts to repair or convert objects returned by the
57 * predefined methods to an object type that is expected, as per the ACPI
58 * specification. The need for this code is dictated by the many machines that
59 * return incorrect types for the standard predefined methods. Performing these
60 * conversions here, in one place, eliminates the need for individual ACPI
61 * device drivers to do the same. Note: Most of these conversions are different
62 * than the internal object conversion routines used for implicit object
65 * The following conversions can be performed as necessary:
73 * Buffer -> Package of Integers
74 * Package -> Package of one Package
76 * Additional conversions that are available:
77 * Convert a null return or zero return value to an end_tag descriptor
78 * Convert an ASCII string to a Unicode buffer
80 * An incorrect standalone object is wrapped with required outer package
82 * Additional possible repairs:
83 * Required package elements that are NULL replaced by Integer/String/Buffer
85 ******************************************************************************/
86 /* Local prototypes */
87 static const struct acpi_simple_repair_info
*acpi_ns_match_simple_repair(struct
96 * Special but simple repairs for some names.
98 * 2nd argument: Unexpected types that can be repaired
100 static const struct acpi_simple_repair_info acpi_object_repair_info
[] = {
101 /* Resource descriptor conversions */
104 ACPI_RTYPE_INTEGER
| ACPI_RTYPE_STRING
| ACPI_RTYPE_BUFFER
|
106 ACPI_NOT_PACKAGE_ELEMENT
,
107 acpi_ns_convert_to_resource
},
109 ACPI_RTYPE_INTEGER
| ACPI_RTYPE_STRING
| ACPI_RTYPE_BUFFER
|
111 ACPI_NOT_PACKAGE_ELEMENT
,
112 acpi_ns_convert_to_resource
},
114 ACPI_RTYPE_INTEGER
| ACPI_RTYPE_STRING
| ACPI_RTYPE_BUFFER
|
116 ACPI_NOT_PACKAGE_ELEMENT
,
117 acpi_ns_convert_to_resource
},
119 /* Unicode conversions */
121 {"_MLS", ACPI_RTYPE_STRING
, 1,
122 acpi_ns_convert_to_unicode
},
123 {"_STR", ACPI_RTYPE_STRING
| ACPI_RTYPE_BUFFER
,
124 ACPI_NOT_PACKAGE_ELEMENT
,
125 acpi_ns_convert_to_unicode
},
126 {{0, 0, 0, 0}, 0, 0, NULL
} /* Table terminator */
129 /*******************************************************************************
131 * FUNCTION: acpi_ns_simple_repair
133 * PARAMETERS: info - Method execution information block
134 * expected_btypes - Object types expected
135 * package_index - Index of object within parent package (if
136 * applicable - ACPI_NOT_PACKAGE_ELEMENT
138 * return_object_ptr - Pointer to the object returned from the
139 * evaluation of a method or object
141 * RETURN: Status. AE_OK if repair was successful.
143 * DESCRIPTION: Attempt to repair/convert a return object of a type that was
146 ******************************************************************************/
149 acpi_ns_simple_repair(struct acpi_evaluate_info
*info
,
152 union acpi_operand_object
**return_object_ptr
)
154 union acpi_operand_object
*return_object
= *return_object_ptr
;
155 union acpi_operand_object
*new_object
= NULL
;
157 const struct acpi_simple_repair_info
*predefined
;
159 ACPI_FUNCTION_NAME(ns_simple_repair
);
162 * Special repairs for certain names that are in the repair table.
163 * Check if this name is in the list of repairable names.
165 predefined
= acpi_ns_match_simple_repair(info
->node
,
169 if (!return_object
) {
170 ACPI_WARN_PREDEFINED((AE_INFO
, info
->full_pathname
,
172 "Missing expected return value"));
176 predefined
->object_converter(return_object
, &new_object
);
177 if (ACPI_FAILURE(status
)) {
179 /* A fatal error occurred during a conversion */
181 ACPI_EXCEPTION((AE_INFO
, status
,
182 "During return object analysis"));
186 goto object_repaired
;
191 * Do not perform simple object repair unless the return type is not
194 if (info
->return_btype
& expected_btypes
) {
199 * At this point, we know that the type of the returned object was not
200 * one of the expected types for this predefined name. Attempt to
201 * repair the object by converting it to one of the expected object
202 * types for this predefined name.
206 * If there is no return value, check if we require a return value for
207 * this predefined name. Either one return value is expected, or none,
208 * for both methods and other objects.
210 * Try to fix if there was no return object. Warning if failed to fix.
212 if (!return_object
) {
213 if (expected_btypes
&& (!(expected_btypes
& ACPI_RTYPE_NONE
))) {
214 if (package_index
!= ACPI_NOT_PACKAGE_ELEMENT
) {
215 ACPI_WARN_PREDEFINED((AE_INFO
,
218 "Found unexpected NULL package element"));
221 acpi_ns_repair_null_element(info
,
225 if (ACPI_SUCCESS(status
)) {
226 return (AE_OK
); /* Repair was successful */
229 ACPI_WARN_PREDEFINED((AE_INFO
,
232 "Missing expected return value"));
235 return (AE_AML_NO_RETURN_VALUE
);
239 if (expected_btypes
& ACPI_RTYPE_INTEGER
) {
240 status
= acpi_ns_convert_to_integer(return_object
, &new_object
);
241 if (ACPI_SUCCESS(status
)) {
242 goto object_repaired
;
245 if (expected_btypes
& ACPI_RTYPE_STRING
) {
246 status
= acpi_ns_convert_to_string(return_object
, &new_object
);
247 if (ACPI_SUCCESS(status
)) {
248 goto object_repaired
;
251 if (expected_btypes
& ACPI_RTYPE_BUFFER
) {
252 status
= acpi_ns_convert_to_buffer(return_object
, &new_object
);
253 if (ACPI_SUCCESS(status
)) {
254 goto object_repaired
;
257 if (expected_btypes
& ACPI_RTYPE_PACKAGE
) {
259 * A package is expected. We will wrap the existing object with a
260 * new package object. It is often the case that if a variable-length
261 * package is required, but there is only a single object needed, the
262 * BIOS will return that object instead of wrapping it with a Package
263 * object. Note: after the wrapping, the package will be validated
264 * for correct contents (expected object type or types).
267 acpi_ns_wrap_with_package(info
, return_object
, &new_object
);
268 if (ACPI_SUCCESS(status
)) {
270 * The original object just had its reference count
271 * incremented for being inserted into the new package.
273 *return_object_ptr
= new_object
; /* New Package object */
274 info
->return_flags
|= ACPI_OBJECT_REPAIRED
;
279 /* We cannot repair this object */
281 return (AE_AML_OPERAND_TYPE
);
285 /* Object was successfully repaired */
287 if (package_index
!= ACPI_NOT_PACKAGE_ELEMENT
) {
289 * The original object is a package element. We need to
290 * decrement the reference count of the original object,
291 * for removing it from the package.
293 * However, if the original object was just wrapped with a
294 * package object as part of the repair, we don't need to
295 * change the reference count.
297 if (!(info
->return_flags
& ACPI_OBJECT_WRAPPED
)) {
298 new_object
->common
.reference_count
=
299 return_object
->common
.reference_count
;
301 if (return_object
->common
.reference_count
> 1) {
302 return_object
->common
.reference_count
--;
306 ACPI_DEBUG_PRINT((ACPI_DB_REPAIR
,
307 "%s: Converted %s to expected %s at Package index %u\n",
309 acpi_ut_get_object_type_name(return_object
),
310 acpi_ut_get_object_type_name(new_object
),
313 ACPI_DEBUG_PRINT((ACPI_DB_REPAIR
,
314 "%s: Converted %s to expected %s\n",
316 acpi_ut_get_object_type_name(return_object
),
317 acpi_ut_get_object_type_name(new_object
)));
320 /* Delete old object, install the new return object */
322 acpi_ut_remove_reference(return_object
);
323 *return_object_ptr
= new_object
;
324 info
->return_flags
|= ACPI_OBJECT_REPAIRED
;
328 /******************************************************************************
330 * FUNCTION: acpi_ns_match_simple_repair
332 * PARAMETERS: node - Namespace node for the method/object
333 * return_btype - Object type that was returned
334 * package_index - Index of object within parent package (if
335 * applicable - ACPI_NOT_PACKAGE_ELEMENT
338 * RETURN: Pointer to entry in repair table. NULL indicates not found.
340 * DESCRIPTION: Check an object name against the repairable object list.
342 *****************************************************************************/
344 static const struct acpi_simple_repair_info
*acpi_ns_match_simple_repair(struct
352 const struct acpi_simple_repair_info
*this_name
;
354 /* Search info table for a repairable predefined method/object name */
356 this_name
= acpi_object_repair_info
;
357 while (this_name
->object_converter
) {
358 if (ACPI_COMPARE_NAME(node
->name
.ascii
, this_name
->name
)) {
360 /* Check if we can actually repair this name/type combination */
362 if ((return_btype
& this_name
->unexpected_btypes
) &&
363 (package_index
== this_name
->package_index
)) {
372 return (NULL
); /* Name was not found in the repair table */
375 /*******************************************************************************
377 * FUNCTION: acpi_ns_repair_null_element
379 * PARAMETERS: info - Method execution information block
380 * expected_btypes - Object types expected
381 * package_index - Index of object within parent package (if
382 * applicable - ACPI_NOT_PACKAGE_ELEMENT
384 * return_object_ptr - Pointer to the object returned from the
385 * evaluation of a method or object
387 * RETURN: Status. AE_OK if repair was successful.
389 * DESCRIPTION: Attempt to repair a NULL element of a returned Package object.
391 ******************************************************************************/
394 acpi_ns_repair_null_element(struct acpi_evaluate_info
* info
,
397 union acpi_operand_object
**return_object_ptr
)
399 union acpi_operand_object
*return_object
= *return_object_ptr
;
400 union acpi_operand_object
*new_object
;
402 ACPI_FUNCTION_NAME(ns_repair_null_element
);
404 /* No repair needed if return object is non-NULL */
411 * Attempt to repair a NULL element of a Package object. This applies to
412 * predefined names that return a fixed-length package and each element
413 * is required. It does not apply to variable-length packages where NULL
414 * elements are allowed, especially at the end of the package.
416 if (expected_btypes
& ACPI_RTYPE_INTEGER
) {
418 /* Need an integer - create a zero-value integer */
420 new_object
= acpi_ut_create_integer_object((u64
)0);
421 } else if (expected_btypes
& ACPI_RTYPE_STRING
) {
423 /* Need a string - create a NULL string */
425 new_object
= acpi_ut_create_string_object(0);
426 } else if (expected_btypes
& ACPI_RTYPE_BUFFER
) {
428 /* Need a buffer - create a zero-length buffer */
430 new_object
= acpi_ut_create_buffer_object(0);
432 /* Error for all other expected types */
434 return (AE_AML_OPERAND_TYPE
);
438 return (AE_NO_MEMORY
);
441 /* Set the reference count according to the parent Package object */
443 new_object
->common
.reference_count
=
444 info
->parent_package
->common
.reference_count
;
446 ACPI_DEBUG_PRINT((ACPI_DB_REPAIR
,
447 "%s: Converted NULL package element to expected %s at index %u\n",
449 acpi_ut_get_object_type_name(new_object
),
452 *return_object_ptr
= new_object
;
453 info
->return_flags
|= ACPI_OBJECT_REPAIRED
;
457 /******************************************************************************
459 * FUNCTION: acpi_ns_remove_null_elements
461 * PARAMETERS: info - Method execution information block
462 * package_type - An acpi_return_package_types value
463 * obj_desc - A Package object
467 * DESCRIPTION: Remove all NULL package elements from packages that contain
468 * a variable number of subpackages. For these types of
469 * packages, NULL elements can be safely removed.
471 *****************************************************************************/
474 acpi_ns_remove_null_elements(struct acpi_evaluate_info
*info
,
476 union acpi_operand_object
*obj_desc
)
478 union acpi_operand_object
**source
;
479 union acpi_operand_object
**dest
;
484 ACPI_FUNCTION_NAME(ns_remove_null_elements
);
487 * We can safely remove all NULL elements from these package types:
488 * PTYPE1_VAR packages contain a variable number of simple data types.
489 * PTYPE2 packages contain a variable number of subpackages.
491 switch (package_type
) {
492 case ACPI_PTYPE1_VAR
:
494 case ACPI_PTYPE2_COUNT
:
495 case ACPI_PTYPE2_PKG_COUNT
:
496 case ACPI_PTYPE2_FIXED
:
497 case ACPI_PTYPE2_MIN
:
498 case ACPI_PTYPE2_REV_FIXED
:
499 case ACPI_PTYPE2_FIX_VAR
:
503 case ACPI_PTYPE2_VAR_VAR
:
504 case ACPI_PTYPE1_FIXED
:
505 case ACPI_PTYPE1_OPTION
:
509 count
= obj_desc
->package
.count
;
512 source
= obj_desc
->package
.elements
;
515 /* Examine all elements of the package object, remove nulls */
517 for (i
= 0; i
< count
; i
++) {
527 /* Update parent package if any null elements were removed */
529 if (new_count
< count
) {
530 ACPI_DEBUG_PRINT((ACPI_DB_REPAIR
,
531 "%s: Found and removed %u NULL elements\n",
532 info
->full_pathname
, (count
- new_count
)));
534 /* NULL terminate list and update the package count */
537 obj_desc
->package
.count
= new_count
;
541 /*******************************************************************************
543 * FUNCTION: acpi_ns_wrap_with_package
545 * PARAMETERS: info - Method execution information block
546 * original_object - Pointer to the object to repair.
547 * obj_desc_ptr - The new package object is returned here
549 * RETURN: Status, new object in *obj_desc_ptr
551 * DESCRIPTION: Repair a common problem with objects that are defined to
552 * return a variable-length Package of sub-objects. If there is
553 * only one sub-object, some BIOS code mistakenly simply declares
554 * the single object instead of a Package with one sub-object.
555 * This function attempts to repair this error by wrapping a
556 * Package object around the original object, creating the
557 * correct and expected Package with one sub-object.
559 * Names that can be repaired in this manner include:
560 * _ALR, _CSD, _HPX, _MLS, _PLD, _PRT, _PSS, _TRT, _TSS,
561 * _BCL, _DOD, _FIX, _Sx
563 ******************************************************************************/
566 acpi_ns_wrap_with_package(struct acpi_evaluate_info
*info
,
567 union acpi_operand_object
*original_object
,
568 union acpi_operand_object
**obj_desc_ptr
)
570 union acpi_operand_object
*pkg_obj_desc
;
572 ACPI_FUNCTION_NAME(ns_wrap_with_package
);
575 * Create the new outer package and populate it. The new package will
576 * have a single element, the lone sub-object.
578 pkg_obj_desc
= acpi_ut_create_package_object(1);
580 return (AE_NO_MEMORY
);
583 pkg_obj_desc
->package
.elements
[0] = original_object
;
585 ACPI_DEBUG_PRINT((ACPI_DB_REPAIR
,
586 "%s: Wrapped %s with expected Package object\n",
588 acpi_ut_get_object_type_name(original_object
)));
590 /* Return the new object in the object pointer */
592 *obj_desc_ptr
= pkg_obj_desc
;
593 info
->return_flags
|= ACPI_OBJECT_REPAIRED
| ACPI_OBJECT_WRAPPED
;