1 /******************************************************************************
3 * Module Name: nsprepkg - Validation of package objects for predefined names
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, 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>
49 #define _COMPONENT ACPI_NAMESPACE
50 ACPI_MODULE_NAME("nsprepkg")
52 /* Local prototypes */
54 acpi_ns_check_package_list(struct acpi_evaluate_info
*info
,
55 const union acpi_predefined_info
*package
,
56 union acpi_operand_object
**elements
, u32 count
);
59 acpi_ns_check_package_elements(struct acpi_evaluate_info
*info
,
60 union acpi_operand_object
**elements
,
63 u8 type2
, u32 count2
, u32 start_index
);
65 /*******************************************************************************
67 * FUNCTION: acpi_ns_check_package
69 * PARAMETERS: info - Method execution information block
70 * return_object_ptr - Pointer to the object returned from the
71 * evaluation of a method or object
75 * DESCRIPTION: Check a returned package object for the correct count and
76 * correct type of all sub-objects.
78 ******************************************************************************/
81 acpi_ns_check_package(struct acpi_evaluate_info
*info
,
82 union acpi_operand_object
**return_object_ptr
)
84 union acpi_operand_object
*return_object
= *return_object_ptr
;
85 const union acpi_predefined_info
*package
;
86 union acpi_operand_object
**elements
;
87 acpi_status status
= AE_OK
;
92 ACPI_FUNCTION_NAME(ns_check_package
);
94 /* The package info for this name is in the next table entry */
96 package
= info
->predefined
+ 1;
98 ACPI_DEBUG_PRINT((ACPI_DB_NAMES
,
99 "%s Validating return Package of Type %X, Count %X\n",
100 info
->full_pathname
, package
->ret_info
.type
,
101 return_object
->package
.count
));
104 * For variable-length Packages, we can safely remove all embedded
105 * and trailing NULL package elements
107 acpi_ns_remove_null_elements(info
, package
->ret_info
.type
,
110 /* Extract package count and elements array */
112 elements
= return_object
->package
.elements
;
113 count
= return_object
->package
.count
;
116 * Most packages must have at least one element. The only exception
117 * is the variable-length package (ACPI_PTYPE1_VAR).
120 if (package
->ret_info
.type
== ACPI_PTYPE1_VAR
) {
124 ACPI_WARN_PREDEFINED((AE_INFO
, info
->full_pathname
,
126 "Return Package has no elements (empty)"));
128 return (AE_AML_OPERAND_VALUE
);
132 * Decode the type of the expected package contents
134 * PTYPE1 packages contain no subpackages
135 * PTYPE2 packages contain sub-packages
137 switch (package
->ret_info
.type
) {
138 case ACPI_PTYPE1_FIXED
:
140 * The package count is fixed and there are no sub-packages
142 * If package is too small, exit.
143 * If package is larger than expected, issue warning but continue
146 package
->ret_info
.count1
+ package
->ret_info
.count2
;
147 if (count
< expected_count
) {
148 goto package_too_small
;
149 } else if (count
> expected_count
) {
150 ACPI_DEBUG_PRINT((ACPI_DB_REPAIR
,
151 "%s: Return Package is larger than needed - "
152 "found %u, expected %u\n",
153 info
->full_pathname
, count
,
157 /* Validate all elements of the returned package */
159 status
= acpi_ns_check_package_elements(info
, elements
,
170 case ACPI_PTYPE1_VAR
:
172 * The package count is variable, there are no sub-packages, and all
173 * elements must be of the same type
175 for (i
= 0; i
< count
; i
++) {
176 status
= acpi_ns_check_object_type(info
, elements
,
179 if (ACPI_FAILURE(status
)) {
186 case ACPI_PTYPE1_OPTION
:
188 * The package count is variable, there are no sub-packages. There are
189 * a fixed number of required elements, and a variable number of
192 * Check if package is at least as large as the minimum required
194 expected_count
= package
->ret_info3
.count
;
195 if (count
< expected_count
) {
196 goto package_too_small
;
199 /* Variable number of sub-objects */
201 for (i
= 0; i
< count
; i
++) {
202 if (i
< package
->ret_info3
.count
) {
204 /* These are the required package elements (0, 1, or 2) */
207 acpi_ns_check_object_type(info
, elements
,
212 if (ACPI_FAILURE(status
)) {
216 /* These are the optional package elements */
219 acpi_ns_check_object_type(info
, elements
,
224 if (ACPI_FAILURE(status
)) {
232 case ACPI_PTYPE2_REV_FIXED
:
234 /* First element is the (Integer) revision */
236 status
= acpi_ns_check_object_type(info
, elements
,
237 ACPI_RTYPE_INTEGER
, 0);
238 if (ACPI_FAILURE(status
)) {
245 /* Examine the sub-packages */
248 acpi_ns_check_package_list(info
, package
, elements
, count
);
251 case ACPI_PTYPE2_PKG_COUNT
:
253 /* First element is the (Integer) count of sub-packages to follow */
255 status
= acpi_ns_check_object_type(info
, elements
,
256 ACPI_RTYPE_INTEGER
, 0);
257 if (ACPI_FAILURE(status
)) {
262 * Count cannot be larger than the parent package length, but allow it
263 * to be smaller. The >= accounts for the Integer above.
265 expected_count
= (u32
)(*elements
)->integer
.value
;
266 if (expected_count
>= count
) {
267 goto package_too_small
;
270 count
= expected_count
;
273 /* Examine the sub-packages */
276 acpi_ns_check_package_list(info
, package
, elements
, count
);
280 case ACPI_PTYPE2_FIXED
:
281 case ACPI_PTYPE2_MIN
:
282 case ACPI_PTYPE2_COUNT
:
283 case ACPI_PTYPE2_FIX_VAR
:
285 * These types all return a single Package that consists of a
286 * variable number of sub-Packages.
288 * First, ensure that the first element is a sub-Package. If not,
289 * the BIOS may have incorrectly returned the object as a single
290 * package instead of a Package of Packages (a common error if
291 * there is only one entry). We may be able to repair this by
292 * wrapping the returned Package with a new outer Package.
295 && ((*elements
)->common
.type
!= ACPI_TYPE_PACKAGE
)) {
297 /* Create the new outer package and populate it */
300 acpi_ns_wrap_with_package(info
, return_object
,
302 if (ACPI_FAILURE(status
)) {
306 /* Update locals to point to the new package (of 1 element) */
308 return_object
= *return_object_ptr
;
309 elements
= return_object
->package
.elements
;
313 /* Examine the sub-packages */
316 acpi_ns_check_package_list(info
, package
, elements
, count
);
321 /* Should not get here if predefined info table is correct */
323 ACPI_WARN_PREDEFINED((AE_INFO
, info
->full_pathname
,
325 "Invalid internal return type in table entry: %X",
326 package
->ret_info
.type
));
328 return (AE_AML_INTERNAL
);
335 /* Error exit for the case with an incorrect package count */
337 ACPI_WARN_PREDEFINED((AE_INFO
, info
->full_pathname
, info
->node_flags
,
338 "Return Package is too small - found %u elements, expected %u",
339 count
, expected_count
));
341 return (AE_AML_OPERAND_VALUE
);
344 /*******************************************************************************
346 * FUNCTION: acpi_ns_check_package_list
348 * PARAMETERS: info - Method execution information block
349 * package - Pointer to package-specific info for method
350 * elements - Element list of parent package. All elements
351 * of this list should be of type Package.
352 * count - Count of subpackages
356 * DESCRIPTION: Examine a list of subpackages
358 ******************************************************************************/
361 acpi_ns_check_package_list(struct acpi_evaluate_info
*info
,
362 const union acpi_predefined_info
*package
,
363 union acpi_operand_object
**elements
, u32 count
)
365 union acpi_operand_object
*sub_package
;
366 union acpi_operand_object
**sub_elements
;
373 * Validate each sub-Package in the parent Package
375 * NOTE: assumes list of sub-packages contains no NULL elements.
376 * Any NULL elements should have been removed by earlier call
377 * to acpi_ns_remove_null_elements.
379 for (i
= 0; i
< count
; i
++) {
380 sub_package
= *elements
;
381 sub_elements
= sub_package
->package
.elements
;
382 info
->parent_package
= sub_package
;
384 /* Each sub-object must be of type Package */
386 status
= acpi_ns_check_object_type(info
, &sub_package
,
387 ACPI_RTYPE_PACKAGE
, i
);
388 if (ACPI_FAILURE(status
)) {
392 /* Examine the different types of expected sub-packages */
394 info
->parent_package
= sub_package
;
395 switch (package
->ret_info
.type
) {
397 case ACPI_PTYPE2_PKG_COUNT
:
398 case ACPI_PTYPE2_REV_FIXED
:
400 /* Each subpackage has a fixed number of elements */
403 package
->ret_info
.count1
+ package
->ret_info
.count2
;
404 if (sub_package
->package
.count
< expected_count
) {
405 goto package_too_small
;
409 acpi_ns_check_package_elements(info
, sub_elements
,
418 if (ACPI_FAILURE(status
)) {
423 case ACPI_PTYPE2_FIX_VAR
:
425 * Each subpackage has a fixed number of elements and an
429 package
->ret_info
.count1
+ package
->ret_info
.count2
;
430 if (sub_package
->package
.count
< expected_count
) {
431 goto package_too_small
;
435 acpi_ns_check_package_elements(info
, sub_elements
,
442 sub_package
->package
.
446 if (ACPI_FAILURE(status
)) {
451 case ACPI_PTYPE2_FIXED
:
453 /* Each sub-package has a fixed length */
455 expected_count
= package
->ret_info2
.count
;
456 if (sub_package
->package
.count
< expected_count
) {
457 goto package_too_small
;
460 /* Check the type of each sub-package element */
462 for (j
= 0; j
< expected_count
; j
++) {
464 acpi_ns_check_object_type(info
,
470 if (ACPI_FAILURE(status
)) {
476 case ACPI_PTYPE2_MIN
:
478 /* Each sub-package has a variable but minimum length */
480 expected_count
= package
->ret_info
.count1
;
481 if (sub_package
->package
.count
< expected_count
) {
482 goto package_too_small
;
485 /* Check the type of each sub-package element */
488 acpi_ns_check_package_elements(info
, sub_elements
,
491 sub_package
->package
.
493 if (ACPI_FAILURE(status
)) {
498 case ACPI_PTYPE2_COUNT
:
500 * First element is the (Integer) count of elements, including
501 * the count field (the ACPI name is num_elements)
503 status
= acpi_ns_check_object_type(info
, sub_elements
,
506 if (ACPI_FAILURE(status
)) {
511 * Make sure package is large enough for the Count and is
512 * is as large as the minimum size
514 expected_count
= (u32
)(*sub_elements
)->integer
.value
;
515 if (sub_package
->package
.count
< expected_count
) {
516 goto package_too_small
;
518 if (sub_package
->package
.count
<
519 package
->ret_info
.count1
) {
520 expected_count
= package
->ret_info
.count1
;
521 goto package_too_small
;
523 if (expected_count
== 0) {
525 * Either the num_entries element was originally zero or it was
526 * a NULL element and repaired to an Integer of value zero.
527 * In either case, repair it by setting num_entries to be the
528 * actual size of the subpackage.
530 expected_count
= sub_package
->package
.count
;
531 (*sub_elements
)->integer
.value
= expected_count
;
534 /* Check the type of each sub-package element */
537 acpi_ns_check_package_elements(info
,
541 (expected_count
- 1),
543 if (ACPI_FAILURE(status
)) {
548 default: /* Should not get here, type was validated by caller */
550 return (AE_AML_INTERNAL
);
560 /* The sub-package count was smaller than required */
562 ACPI_WARN_PREDEFINED((AE_INFO
, info
->full_pathname
, info
->node_flags
,
563 "Return Sub-Package[%u] is too small - found %u elements, expected %u",
564 i
, sub_package
->package
.count
, expected_count
));
566 return (AE_AML_OPERAND_VALUE
);
569 /*******************************************************************************
571 * FUNCTION: acpi_ns_check_package_elements
573 * PARAMETERS: info - Method execution information block
574 * elements - Pointer to the package elements array
575 * type1 - Object type for first group
576 * count1 - Count for first group
577 * type2 - Object type for second group
578 * count2 - Count for second group
579 * start_index - Start of the first group of elements
583 * DESCRIPTION: Check that all elements of a package are of the correct object
584 * type. Supports up to two groups of different object types.
586 ******************************************************************************/
589 acpi_ns_check_package_elements(struct acpi_evaluate_info
*info
,
590 union acpi_operand_object
**elements
,
593 u8 type2
, u32 count2
, u32 start_index
)
595 union acpi_operand_object
**this_element
= elements
;
600 * Up to two groups of package elements are supported by the data
601 * structure. All elements in each group must be of the same type.
602 * The second group can have a count of zero.
604 for (i
= 0; i
< count1
; i
++) {
605 status
= acpi_ns_check_object_type(info
, this_element
,
606 type1
, i
+ start_index
);
607 if (ACPI_FAILURE(status
)) {
613 for (i
= 0; i
< count2
; i
++) {
614 status
= acpi_ns_check_object_type(info
, this_element
,
616 (i
+ count1
+ start_index
));
617 if (ACPI_FAILURE(status
)) {