blob: e3f08dcb527524901c7cc60a57b55a0a338ff7d1 [file] [log] [blame]
Bob Mooree8707b32008-09-28 15:26:17 +08001/******************************************************************************
2 *
3 * Module Name: nspredef - Validation of ACPI predefined methods and objects
4 * $Revision: 1.1 $
5 *
6 *****************************************************************************/
7
8/*
9 * Copyright (C) 2000 - 2008, Intel Corp.
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
45#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050046#include "accommon.h"
47#include "acnamesp.h"
48#include "acpredef.h"
Bob Mooree8707b32008-09-28 15:26:17 +080049
50#define _COMPONENT ACPI_NAMESPACE
51ACPI_MODULE_NAME("nspredef")
52
53/*******************************************************************************
54 *
55 * This module validates predefined ACPI objects that appear in the namespace,
56 * at the time they are evaluated (via acpi_evaluate_object). The purpose of this
57 * validation is to detect problems with BIOS-exposed predefined ACPI objects
58 * before the results are returned to the ACPI-related drivers.
59 *
60 * There are several areas that are validated:
61 *
62 * 1) The number of input arguments as defined by the method/object in the
63 * ASL is validated against the ACPI specification.
64 * 2) The type of the return object (if any) is validated against the ACPI
65 * specification.
66 * 3) For returned package objects, the count of package elements is
67 * validated, as well as the type of each package element. Nested
68 * packages are supported.
69 *
70 * For any problems found, a warning message is issued.
71 *
72 ******************************************************************************/
73/* Local prototypes */
74static acpi_status
Bob Moore0444e8f2009-06-24 13:38:02 +080075acpi_ns_check_package(struct acpi_predefined_data *data,
76 union acpi_operand_object **return_object_ptr);
Bob Mooree8707b32008-09-28 15:26:17 +080077
78static acpi_status
Bob Moore0444e8f2009-06-24 13:38:02 +080079acpi_ns_check_package_elements(struct acpi_predefined_data *data,
Bob Mooree8707b32008-09-28 15:26:17 +080080 union acpi_operand_object **elements,
Bob Moore03ef1322009-03-19 10:14:45 +080081 u8 type1,
82 u32 count1,
83 u8 type2, u32 count2, u32 start_index);
Bob Mooree8707b32008-09-28 15:26:17 +080084
85static acpi_status
Bob Moore0444e8f2009-06-24 13:38:02 +080086acpi_ns_check_object_type(struct acpi_predefined_data *data,
Bob Moorea647b5c2008-11-14 08:44:39 +080087 union acpi_operand_object **return_object_ptr,
Bob Mooree8707b32008-09-28 15:26:17 +080088 u32 expected_btypes, u32 package_index);
89
90static acpi_status
Bob Moore0444e8f2009-06-24 13:38:02 +080091acpi_ns_check_reference(struct acpi_predefined_data *data,
Bob Mooree8707b32008-09-28 15:26:17 +080092 union acpi_operand_object *return_object);
93
Bob Moore0444e8f2009-06-24 13:38:02 +080094static void acpi_ns_get_expected_types(char *buffer, u32 expected_btypes);
95
Bob Mooree8707b32008-09-28 15:26:17 +080096/*
97 * Names for the types that can be returned by the predefined objects.
98 * Used for warning messages. Must be in the same order as the ACPI_RTYPEs
99 */
100static const char *acpi_rtype_names[] = {
101 "/Integer",
102 "/String",
103 "/Buffer",
104 "/Package",
105 "/Reference",
106};
107
Bob Mooree8707b32008-09-28 15:26:17 +0800108/*******************************************************************************
109 *
110 * FUNCTION: acpi_ns_check_predefined_names
111 *
112 * PARAMETERS: Node - Namespace node for the method/object
Bob Moore0444e8f2009-06-24 13:38:02 +0800113 * user_param_count - Number of parameters actually passed
114 * return_status - Status from the object evaluation
Bob Moorea647b5c2008-11-14 08:44:39 +0800115 * return_object_ptr - Pointer to the object returned from the
116 * evaluation of a method or object
Bob Mooree8707b32008-09-28 15:26:17 +0800117 *
118 * RETURN: Status
119 *
120 * DESCRIPTION: Check an ACPI name for a match in the predefined name list.
121 *
122 ******************************************************************************/
123
124acpi_status
125acpi_ns_check_predefined_names(struct acpi_namespace_node *node,
Bob Mooreeeb44372008-11-13 11:19:24 +0800126 u32 user_param_count,
127 acpi_status return_status,
Bob Moorea647b5c2008-11-14 08:44:39 +0800128 union acpi_operand_object **return_object_ptr)
Bob Mooree8707b32008-09-28 15:26:17 +0800129{
Bob Moorea647b5c2008-11-14 08:44:39 +0800130 union acpi_operand_object *return_object = *return_object_ptr;
Bob Mooree8707b32008-09-28 15:26:17 +0800131 acpi_status status = AE_OK;
132 const union acpi_predefined_info *predefined;
133 char *pathname;
Bob Moore0444e8f2009-06-24 13:38:02 +0800134 struct acpi_predefined_data *data;
Bob Mooree8707b32008-09-28 15:26:17 +0800135
136 /* Match the name for this method/object against the predefined list */
137
138 predefined = acpi_ns_check_for_predefined_name(node);
Bob Mooree8707b32008-09-28 15:26:17 +0800139
Bob Moore0444e8f2009-06-24 13:38:02 +0800140 /* Get the full pathname to the object, for use in warning messages */
Bob Mooree8707b32008-09-28 15:26:17 +0800141
142 pathname = acpi_ns_get_external_pathname(node);
143 if (!pathname) {
Bob Moore65259092009-04-22 12:57:40 +0800144 return AE_OK; /* Could not get pathname, ignore */
Bob Mooree8707b32008-09-28 15:26:17 +0800145 }
146
147 /*
Bob Mooreeeb44372008-11-13 11:19:24 +0800148 * Check that the parameter count for this method matches the ASL
149 * definition. For predefined names, ensure that both the caller and
150 * the method itself are in accordance with the ACPI specification.
Bob Mooree8707b32008-09-28 15:26:17 +0800151 */
Bob Mooreeeb44372008-11-13 11:19:24 +0800152 acpi_ns_check_parameter_count(pathname, node, user_param_count,
153 predefined);
154
155 /* If not a predefined name, we cannot validate the return object */
156
157 if (!predefined) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800158 goto cleanup;
Bob Mooreeeb44372008-11-13 11:19:24 +0800159 }
160
161 /*
Bob Moore0444e8f2009-06-24 13:38:02 +0800162 * If the method failed or did not actually return an object, we cannot
163 * validate the return object
Bob Mooreeeb44372008-11-13 11:19:24 +0800164 */
Bob Moore0444e8f2009-06-24 13:38:02 +0800165 if ((return_status != AE_OK) && (return_status != AE_CTRL_RETURN_VALUE)) {
166 goto cleanup;
Bob Mooreeeb44372008-11-13 11:19:24 +0800167 }
168
Bob Mooree8707b32008-09-28 15:26:17 +0800169 /*
170 * If there is no return value, check if we require a return value for
171 * this predefined name. Either one return value is expected, or none,
172 * for both methods and other objects.
173 *
174 * Exit now if there is no return object. Warning if one was expected.
175 */
176 if (!return_object) {
177 if ((predefined->info.expected_btypes) &&
178 (!(predefined->info.expected_btypes & ACPI_RTYPE_NONE))) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800179 ACPI_WARN_PREDEFINED((AE_INFO, pathname,
180 ACPI_WARN_ALWAYS,
181 "Missing expected return value"));
Bob Mooree8707b32008-09-28 15:26:17 +0800182
183 status = AE_AML_NO_RETURN_VALUE;
184 }
Bob Moore0444e8f2009-06-24 13:38:02 +0800185 goto cleanup;
Bob Mooree8707b32008-09-28 15:26:17 +0800186 }
187
188 /*
189 * We have a return value, but if one wasn't expected, just exit, this is
Bob Moore0444e8f2009-06-24 13:38:02 +0800190 * not a problem. For example, if the "Implicit Return" feature is
191 * enabled, methods will always return a value.
Bob Mooree8707b32008-09-28 15:26:17 +0800192 */
193 if (!predefined->info.expected_btypes) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800194 goto cleanup;
Bob Mooree8707b32008-09-28 15:26:17 +0800195 }
196
Bob Moore0444e8f2009-06-24 13:38:02 +0800197 /* Create the parameter data block for object validation */
198
199 data = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_predefined_data));
200 if (!data) {
201 goto cleanup;
202 }
203 data->predefined = predefined;
204 data->node_flags = node->flags;
205 data->pathname = pathname;
206
Bob Mooree8707b32008-09-28 15:26:17 +0800207 /*
208 * Check that the type of the return object is what is expected for
209 * this predefined name
210 */
Bob Moore0444e8f2009-06-24 13:38:02 +0800211 status = acpi_ns_check_object_type(data, return_object_ptr,
Bob Mooree8707b32008-09-28 15:26:17 +0800212 predefined->info.expected_btypes,
Bob Moore0444e8f2009-06-24 13:38:02 +0800213 ACPI_NOT_PACKAGE_ELEMENT);
Bob Mooree8707b32008-09-28 15:26:17 +0800214 if (ACPI_FAILURE(status)) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800215 goto check_validation_status;
Bob Mooree8707b32008-09-28 15:26:17 +0800216 }
217
218 /* For returned Package objects, check the type of all sub-objects */
219
Bob Moore3371c192009-02-18 14:44:03 +0800220 if (return_object->common.type == ACPI_TYPE_PACKAGE) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800221 status = acpi_ns_check_package(data, return_object_ptr);
Bob Mooree8707b32008-09-28 15:26:17 +0800222 }
223
Bob Moore0444e8f2009-06-24 13:38:02 +0800224check_validation_status:
225 /*
226 * If the object validation failed or if we successfully repaired one
227 * or more objects, mark the parent node to suppress further warning
228 * messages during the next evaluation of the same method/object.
229 */
230 if (ACPI_FAILURE(status) || (data->flags & ACPI_OBJECT_REPAIRED)) {
231 node->flags |= ANOBJ_EVALUATED;
232 }
233 ACPI_FREE(data);
234
235cleanup:
Bob Moore65259092009-04-22 12:57:40 +0800236 ACPI_FREE(pathname);
Bob Mooree8707b32008-09-28 15:26:17 +0800237 return (status);
238}
239
240/*******************************************************************************
241 *
242 * FUNCTION: acpi_ns_check_parameter_count
243 *
244 * PARAMETERS: Pathname - Full pathname to the node (for error msgs)
245 * Node - Namespace node for the method/object
Bob Mooreeeb44372008-11-13 11:19:24 +0800246 * user_param_count - Number of args passed in by the caller
Bob Mooree8707b32008-09-28 15:26:17 +0800247 * Predefined - Pointer to entry in predefined name table
248 *
249 * RETURN: None
250 *
251 * DESCRIPTION: Check that the declared (in ASL/AML) parameter count for a
252 * predefined name is what is expected (i.e., what is defined in
253 * the ACPI specification for this predefined name.)
254 *
255 ******************************************************************************/
256
257void
258acpi_ns_check_parameter_count(char *pathname,
259 struct acpi_namespace_node *node,
Bob Mooreeeb44372008-11-13 11:19:24 +0800260 u32 user_param_count,
Bob Mooree8707b32008-09-28 15:26:17 +0800261 const union acpi_predefined_info *predefined)
262{
263 u32 param_count;
264 u32 required_params_current;
265 u32 required_params_old;
266
Bob Mooreeeb44372008-11-13 11:19:24 +0800267 /* Methods have 0-7 parameters. All other types have zero. */
268
Bob Mooree8707b32008-09-28 15:26:17 +0800269 param_count = 0;
270 if (node->type == ACPI_TYPE_METHOD) {
271 param_count = node->object->method.param_count;
272 }
273
Bob Mooreeeb44372008-11-13 11:19:24 +0800274 if (!predefined) {
275 /*
Bob Moore0444e8f2009-06-24 13:38:02 +0800276 * Check the parameter count for non-predefined methods/objects.
277 *
Bob Mooreeeb44372008-11-13 11:19:24 +0800278 * Warning if too few or too many arguments have been passed by the
279 * caller. An incorrect number of arguments may not cause the method
280 * to fail. However, the method will fail if there are too few
281 * arguments and the method attempts to use one of the missing ones.
282 */
283 if (user_param_count < param_count) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800284 ACPI_WARN_PREDEFINED((AE_INFO, pathname,
285 ACPI_WARN_ALWAYS,
286 "Insufficient arguments - needs %u, found %u",
287 param_count, user_param_count));
Bob Mooreeeb44372008-11-13 11:19:24 +0800288 } else if (user_param_count > param_count) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800289 ACPI_WARN_PREDEFINED((AE_INFO, pathname,
290 ACPI_WARN_ALWAYS,
291 "Excess arguments - needs %u, found %u",
292 param_count, user_param_count));
Bob Mooreeeb44372008-11-13 11:19:24 +0800293 }
294 return;
295 }
296
Bob Moore0444e8f2009-06-24 13:38:02 +0800297 /*
298 * Validate the user-supplied parameter count.
299 * Allow two different legal argument counts (_SCP, etc.)
300 */
Bob Mooree8707b32008-09-28 15:26:17 +0800301 required_params_current = predefined->info.param_count & 0x0F;
302 required_params_old = predefined->info.param_count >> 4;
303
Bob Mooreeeb44372008-11-13 11:19:24 +0800304 if (user_param_count != ACPI_UINT32_MAX) {
Bob Mooreeeb44372008-11-13 11:19:24 +0800305 if ((user_param_count != required_params_current) &&
306 (user_param_count != required_params_old)) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800307 ACPI_WARN_PREDEFINED((AE_INFO, pathname,
308 ACPI_WARN_ALWAYS,
309 "Parameter count mismatch - "
310 "caller passed %u, ACPI requires %u",
311 user_param_count,
312 required_params_current));
Bob Mooreeeb44372008-11-13 11:19:24 +0800313 }
314 }
315
316 /*
Bob Mooreeeb44372008-11-13 11:19:24 +0800317 * Check that the ASL-defined parameter count is what is expected for
Bob Moore0444e8f2009-06-24 13:38:02 +0800318 * this predefined name (parameter count as defined by the ACPI
319 * specification)
Bob Mooreeeb44372008-11-13 11:19:24 +0800320 */
Bob Mooree8707b32008-09-28 15:26:17 +0800321 if ((param_count != required_params_current) &&
322 (param_count != required_params_old)) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800323 ACPI_WARN_PREDEFINED((AE_INFO, pathname, node->flags,
324 "Parameter count mismatch - ASL declared %u, ACPI requires %u",
325 param_count, required_params_current));
Bob Mooree8707b32008-09-28 15:26:17 +0800326 }
327}
328
329/*******************************************************************************
330 *
331 * FUNCTION: acpi_ns_check_for_predefined_name
332 *
333 * PARAMETERS: Node - Namespace node for the method/object
334 *
335 * RETURN: Pointer to entry in predefined table. NULL indicates not found.
336 *
337 * DESCRIPTION: Check an object name against the predefined object list.
338 *
339 ******************************************************************************/
340
341const union acpi_predefined_info *acpi_ns_check_for_predefined_name(struct
342 acpi_namespace_node
343 *node)
344{
345 const union acpi_predefined_info *this_name;
346
347 /* Quick check for a predefined name, first character must be underscore */
348
349 if (node->name.ascii[0] != '_') {
350 return (NULL);
351 }
352
353 /* Search info table for a predefined method/object name */
354
355 this_name = predefined_names;
356 while (this_name->info.name[0]) {
357 if (ACPI_COMPARE_NAME(node->name.ascii, this_name->info.name)) {
Bob Mooree8707b32008-09-28 15:26:17 +0800358 return (this_name);
359 }
360
361 /*
362 * Skip next entry in the table if this name returns a Package
363 * (next entry contains the package info)
364 */
365 if (this_name->info.expected_btypes & ACPI_RTYPE_PACKAGE) {
366 this_name++;
367 }
368
369 this_name++;
370 }
371
Bob Moore0444e8f2009-06-24 13:38:02 +0800372 return (NULL); /* Not found */
Bob Mooree8707b32008-09-28 15:26:17 +0800373}
374
375/*******************************************************************************
376 *
377 * FUNCTION: acpi_ns_check_package
378 *
Bob Moore0444e8f2009-06-24 13:38:02 +0800379 * PARAMETERS: Data - Pointer to validation data structure
Bob Moorea647b5c2008-11-14 08:44:39 +0800380 * return_object_ptr - Pointer to the object returned from the
381 * evaluation of a method or object
Bob Mooree8707b32008-09-28 15:26:17 +0800382 *
383 * RETURN: Status
384 *
385 * DESCRIPTION: Check a returned package object for the correct count and
386 * correct type of all sub-objects.
387 *
388 ******************************************************************************/
389
390static acpi_status
Bob Moore0444e8f2009-06-24 13:38:02 +0800391acpi_ns_check_package(struct acpi_predefined_data *data,
392 union acpi_operand_object **return_object_ptr)
Bob Mooree8707b32008-09-28 15:26:17 +0800393{
Bob Moorea647b5c2008-11-14 08:44:39 +0800394 union acpi_operand_object *return_object = *return_object_ptr;
Bob Mooree8707b32008-09-28 15:26:17 +0800395 const union acpi_predefined_info *package;
396 union acpi_operand_object *sub_package;
397 union acpi_operand_object **elements;
398 union acpi_operand_object **sub_elements;
399 acpi_status status;
400 u32 expected_count;
401 u32 count;
402 u32 i;
403 u32 j;
404
405 ACPI_FUNCTION_NAME(ns_check_package);
406
407 /* The package info for this name is in the next table entry */
408
Bob Moore0444e8f2009-06-24 13:38:02 +0800409 package = data->predefined + 1;
Bob Mooree8707b32008-09-28 15:26:17 +0800410
411 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
412 "%s Validating return Package of Type %X, Count %X\n",
Bob Moore0444e8f2009-06-24 13:38:02 +0800413 data->pathname, package->ret_info.type,
Bob Mooree8707b32008-09-28 15:26:17 +0800414 return_object->package.count));
415
416 /* Extract package count and elements array */
417
418 elements = return_object->package.elements;
419 count = return_object->package.count;
420
421 /* The package must have at least one element, else invalid */
422
423 if (!count) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800424 ACPI_WARN_PREDEFINED((AE_INFO, data->pathname, data->node_flags,
425 "Return Package has no elements (empty)"));
Bob Mooree8707b32008-09-28 15:26:17 +0800426
427 return (AE_AML_OPERAND_VALUE);
428 }
429
430 /*
431 * Decode the type of the expected package contents
432 *
433 * PTYPE1 packages contain no subpackages
434 * PTYPE2 packages contain sub-packages
435 */
436 switch (package->ret_info.type) {
437 case ACPI_PTYPE1_FIXED:
438
439 /*
440 * The package count is fixed and there are no sub-packages
441 *
442 * If package is too small, exit.
443 * If package is larger than expected, issue warning but continue
444 */
445 expected_count =
446 package->ret_info.count1 + package->ret_info.count2;
447 if (count < expected_count) {
448 goto package_too_small;
449 } else if (count > expected_count) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800450 ACPI_WARN_PREDEFINED((AE_INFO, data->pathname,
451 data->node_flags,
452 "Return Package is larger than needed - "
453 "found %u, expected %u", count,
454 expected_count));
Bob Mooree8707b32008-09-28 15:26:17 +0800455 }
456
457 /* Validate all elements of the returned package */
458
Bob Moore0444e8f2009-06-24 13:38:02 +0800459 status = acpi_ns_check_package_elements(data, elements,
Bob Mooree8707b32008-09-28 15:26:17 +0800460 package->ret_info.
461 object_type1,
462 package->ret_info.
463 count1,
464 package->ret_info.
465 object_type2,
466 package->ret_info.
Bob Moore03ef1322009-03-19 10:14:45 +0800467 count2, 0);
Bob Mooree8707b32008-09-28 15:26:17 +0800468 if (ACPI_FAILURE(status)) {
469 return (status);
470 }
471 break;
472
473 case ACPI_PTYPE1_VAR:
474
475 /*
476 * The package count is variable, there are no sub-packages, and all
477 * elements must be of the same type
478 */
479 for (i = 0; i < count; i++) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800480 status = acpi_ns_check_object_type(data, elements,
Bob Mooree8707b32008-09-28 15:26:17 +0800481 package->ret_info.
482 object_type1, i);
483 if (ACPI_FAILURE(status)) {
484 return (status);
485 }
486 elements++;
487 }
488 break;
489
490 case ACPI_PTYPE1_OPTION:
491
492 /*
493 * The package count is variable, there are no sub-packages. There are
494 * a fixed number of required elements, and a variable number of
495 * optional elements.
496 *
497 * Check if package is at least as large as the minimum required
498 */
499 expected_count = package->ret_info3.count;
500 if (count < expected_count) {
501 goto package_too_small;
502 }
503
504 /* Variable number of sub-objects */
505
506 for (i = 0; i < count; i++) {
507 if (i < package->ret_info3.count) {
508
509 /* These are the required package elements (0, 1, or 2) */
510
511 status =
Bob Moore0444e8f2009-06-24 13:38:02 +0800512 acpi_ns_check_object_type(data, elements,
Bob Mooree8707b32008-09-28 15:26:17 +0800513 package->
514 ret_info3.
515 object_type[i],
516 i);
517 if (ACPI_FAILURE(status)) {
518 return (status);
519 }
520 } else {
521 /* These are the optional package elements */
522
523 status =
Bob Moore0444e8f2009-06-24 13:38:02 +0800524 acpi_ns_check_object_type(data, elements,
Bob Mooree8707b32008-09-28 15:26:17 +0800525 package->
526 ret_info3.
527 tail_object_type,
528 i);
529 if (ACPI_FAILURE(status)) {
530 return (status);
531 }
532 }
533 elements++;
534 }
535 break;
536
537 case ACPI_PTYPE2_PKG_COUNT:
538
539 /* First element is the (Integer) count of sub-packages to follow */
540
Bob Moore0444e8f2009-06-24 13:38:02 +0800541 status = acpi_ns_check_object_type(data, elements,
Bob Mooree8707b32008-09-28 15:26:17 +0800542 ACPI_RTYPE_INTEGER, 0);
543 if (ACPI_FAILURE(status)) {
544 return (status);
545 }
546
547 /*
548 * Count cannot be larger than the parent package length, but allow it
549 * to be smaller. The >= accounts for the Integer above.
550 */
551 expected_count = (u32) (*elements)->integer.value;
552 if (expected_count >= count) {
553 goto package_too_small;
554 }
555
556 count = expected_count;
557 elements++;
558
559 /* Now we can walk the sub-packages */
560
561 /*lint -fallthrough */
562
563 case ACPI_PTYPE2:
564 case ACPI_PTYPE2_FIXED:
565 case ACPI_PTYPE2_MIN:
566 case ACPI_PTYPE2_COUNT:
567
568 /*
Bob Mooreb2deadd2009-07-24 10:56:43 +0800569 * These types all return a single package that consists of a
570 * variable number of sub-packages.
Bob Mooree8707b32008-09-28 15:26:17 +0800571 */
572 for (i = 0; i < count; i++) {
573 sub_package = *elements;
574 sub_elements = sub_package->package.elements;
575
576 /* Each sub-object must be of type Package */
577
Bob Moore0444e8f2009-06-24 13:38:02 +0800578 status = acpi_ns_check_object_type(data, &sub_package,
579 ACPI_RTYPE_PACKAGE,
580 i);
Bob Mooree8707b32008-09-28 15:26:17 +0800581 if (ACPI_FAILURE(status)) {
582 return (status);
583 }
584
585 /* Examine the different types of sub-packages */
586
587 switch (package->ret_info.type) {
588 case ACPI_PTYPE2:
589 case ACPI_PTYPE2_PKG_COUNT:
590
591 /* Each subpackage has a fixed number of elements */
592
593 expected_count =
594 package->ret_info.count1 +
595 package->ret_info.count2;
596 if (sub_package->package.count !=
597 expected_count) {
598 count = sub_package->package.count;
599 goto package_too_small;
600 }
601
602 status =
Bob Moore0444e8f2009-06-24 13:38:02 +0800603 acpi_ns_check_package_elements(data,
Bob Mooree8707b32008-09-28 15:26:17 +0800604 sub_elements,
605 package->
606 ret_info.
607 object_type1,
608 package->
609 ret_info.
610 count1,
611 package->
612 ret_info.
613 object_type2,
614 package->
615 ret_info.
Bob Moore03ef1322009-03-19 10:14:45 +0800616 count2, 0);
Bob Mooree8707b32008-09-28 15:26:17 +0800617 if (ACPI_FAILURE(status)) {
618 return (status);
619 }
620 break;
621
622 case ACPI_PTYPE2_FIXED:
623
624 /* Each sub-package has a fixed length */
625
626 expected_count = package->ret_info2.count;
627 if (sub_package->package.count < expected_count) {
628 count = sub_package->package.count;
629 goto package_too_small;
630 }
631
632 /* Check the type of each sub-package element */
633
634 for (j = 0; j < expected_count; j++) {
635 status =
Bob Moore0444e8f2009-06-24 13:38:02 +0800636 acpi_ns_check_object_type(data,
Bob Moorea647b5c2008-11-14 08:44:39 +0800637 &sub_elements[j],
638 package->ret_info2.object_type[j], j);
Bob Mooree8707b32008-09-28 15:26:17 +0800639 if (ACPI_FAILURE(status)) {
640 return (status);
641 }
642 }
643 break;
644
645 case ACPI_PTYPE2_MIN:
646
647 /* Each sub-package has a variable but minimum length */
648
649 expected_count = package->ret_info.count1;
650 if (sub_package->package.count < expected_count) {
651 count = sub_package->package.count;
652 goto package_too_small;
653 }
654
655 /* Check the type of each sub-package element */
656
657 status =
Bob Moore0444e8f2009-06-24 13:38:02 +0800658 acpi_ns_check_package_elements(data,
Bob Mooree8707b32008-09-28 15:26:17 +0800659 sub_elements,
660 package->
661 ret_info.
662 object_type1,
663 sub_package->
664 package.
Bob Moore03ef1322009-03-19 10:14:45 +0800665 count, 0, 0,
666 0);
Bob Mooree8707b32008-09-28 15:26:17 +0800667 if (ACPI_FAILURE(status)) {
668 return (status);
669 }
670 break;
671
672 case ACPI_PTYPE2_COUNT:
673
674 /* First element is the (Integer) count of elements to follow */
675
676 status =
Bob Moore0444e8f2009-06-24 13:38:02 +0800677 acpi_ns_check_object_type(data,
Bob Moorea647b5c2008-11-14 08:44:39 +0800678 sub_elements,
Bob Mooree8707b32008-09-28 15:26:17 +0800679 ACPI_RTYPE_INTEGER,
680 0);
681 if (ACPI_FAILURE(status)) {
682 return (status);
683 }
684
685 /* Make sure package is large enough for the Count */
686
687 expected_count =
688 (u32) (*sub_elements)->integer.value;
689 if (sub_package->package.count < expected_count) {
690 count = sub_package->package.count;
691 goto package_too_small;
692 }
693
694 /* Check the type of each sub-package element */
695
696 status =
Bob Moore0444e8f2009-06-24 13:38:02 +0800697 acpi_ns_check_package_elements(data,
Bob Mooree8707b32008-09-28 15:26:17 +0800698 (sub_elements
699 + 1),
700 package->
701 ret_info.
702 object_type1,
703 (expected_count
Bob Moore03ef1322009-03-19 10:14:45 +0800704 - 1), 0, 0,
705 1);
Bob Mooree8707b32008-09-28 15:26:17 +0800706 if (ACPI_FAILURE(status)) {
707 return (status);
708 }
709 break;
710
711 default:
712 break;
713 }
714
715 elements++;
716 }
717 break;
718
719 default:
720
721 /* Should not get here if predefined info table is correct */
722
Bob Moore0444e8f2009-06-24 13:38:02 +0800723 ACPI_WARN_PREDEFINED((AE_INFO, data->pathname, data->node_flags,
724 "Invalid internal return type in table entry: %X",
725 package->ret_info.type));
Bob Mooree8707b32008-09-28 15:26:17 +0800726
727 return (AE_AML_INTERNAL);
728 }
729
730 return (AE_OK);
731
732 package_too_small:
733
734 /* Error exit for the case with an incorrect package count */
735
Bob Moore0444e8f2009-06-24 13:38:02 +0800736 ACPI_WARN_PREDEFINED((AE_INFO, data->pathname, data->node_flags,
737 "Return Package is too small - found %u, expected %u",
738 count, expected_count));
Bob Mooree8707b32008-09-28 15:26:17 +0800739
740 return (AE_AML_OPERAND_VALUE);
741}
742
743/*******************************************************************************
744 *
745 * FUNCTION: acpi_ns_check_package_elements
746 *
Bob Moore0444e8f2009-06-24 13:38:02 +0800747 * PARAMETERS: Data - Pointer to validation data structure
Bob Mooree8707b32008-09-28 15:26:17 +0800748 * Elements - Pointer to the package elements array
749 * Type1 - Object type for first group
750 * Count1 - Count for first group
751 * Type2 - Object type for second group
752 * Count2 - Count for second group
Bob Moore03ef1322009-03-19 10:14:45 +0800753 * start_index - Start of the first group of elements
Bob Mooree8707b32008-09-28 15:26:17 +0800754 *
755 * RETURN: Status
756 *
757 * DESCRIPTION: Check that all elements of a package are of the correct object
758 * type. Supports up to two groups of different object types.
759 *
760 ******************************************************************************/
761
762static acpi_status
Bob Moore0444e8f2009-06-24 13:38:02 +0800763acpi_ns_check_package_elements(struct acpi_predefined_data *data,
Bob Mooree8707b32008-09-28 15:26:17 +0800764 union acpi_operand_object **elements,
Bob Moore03ef1322009-03-19 10:14:45 +0800765 u8 type1,
766 u32 count1,
767 u8 type2, u32 count2, u32 start_index)
Bob Mooree8707b32008-09-28 15:26:17 +0800768{
769 union acpi_operand_object **this_element = elements;
770 acpi_status status;
771 u32 i;
772
773 /*
774 * Up to two groups of package elements are supported by the data
775 * structure. All elements in each group must be of the same type.
776 * The second group can have a count of zero.
777 */
778 for (i = 0; i < count1; i++) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800779 status = acpi_ns_check_object_type(data, this_element,
Bob Moore03ef1322009-03-19 10:14:45 +0800780 type1, i + start_index);
Bob Mooree8707b32008-09-28 15:26:17 +0800781 if (ACPI_FAILURE(status)) {
782 return (status);
783 }
784 this_element++;
785 }
786
787 for (i = 0; i < count2; i++) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800788 status = acpi_ns_check_object_type(data, this_element,
Bob Moore03ef1322009-03-19 10:14:45 +0800789 type2,
790 (i + count1 + start_index));
Bob Mooree8707b32008-09-28 15:26:17 +0800791 if (ACPI_FAILURE(status)) {
792 return (status);
793 }
794 this_element++;
795 }
796
797 return (AE_OK);
798}
799
800/*******************************************************************************
801 *
802 * FUNCTION: acpi_ns_check_object_type
803 *
Bob Moore0444e8f2009-06-24 13:38:02 +0800804 * PARAMETERS: Data - Pointer to validation data structure
Bob Moorea647b5c2008-11-14 08:44:39 +0800805 * return_object_ptr - Pointer to the object returned from the
806 * evaluation of a method or object
Bob Mooree8707b32008-09-28 15:26:17 +0800807 * expected_btypes - Bitmap of expected return type(s)
808 * package_index - Index of object within parent package (if
Bob Moore0444e8f2009-06-24 13:38:02 +0800809 * applicable - ACPI_NOT_PACKAGE_ELEMENT
810 * otherwise)
Bob Mooree8707b32008-09-28 15:26:17 +0800811 *
812 * RETURN: Status
813 *
814 * DESCRIPTION: Check the type of the return object against the expected object
815 * type(s). Use of Btype allows multiple expected object types.
816 *
817 ******************************************************************************/
818
819static acpi_status
Bob Moore0444e8f2009-06-24 13:38:02 +0800820acpi_ns_check_object_type(struct acpi_predefined_data *data,
Bob Moorea647b5c2008-11-14 08:44:39 +0800821 union acpi_operand_object **return_object_ptr,
Bob Mooree8707b32008-09-28 15:26:17 +0800822 u32 expected_btypes, u32 package_index)
823{
Bob Moorea647b5c2008-11-14 08:44:39 +0800824 union acpi_operand_object *return_object = *return_object_ptr;
Bob Mooree8707b32008-09-28 15:26:17 +0800825 acpi_status status = AE_OK;
826 u32 return_btype;
827 char type_buffer[48]; /* Room for 5 types */
Bob Mooree8707b32008-09-28 15:26:17 +0800828
829 /*
830 * If we get a NULL return_object here, it is a NULL package element,
831 * and this is always an error.
832 */
833 if (!return_object) {
834 goto type_error_exit;
835 }
836
837 /* A Namespace node should not get here, but make sure */
838
839 if (ACPI_GET_DESCRIPTOR_TYPE(return_object) == ACPI_DESC_TYPE_NAMED) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800840 ACPI_WARN_PREDEFINED((AE_INFO, data->pathname, data->node_flags,
841 "Invalid return type - Found a Namespace node [%4.4s] type %s",
842 return_object->node.name.ascii,
843 acpi_ut_get_type_name(return_object->node.
844 type)));
Bob Mooree8707b32008-09-28 15:26:17 +0800845 return (AE_AML_OPERAND_TYPE);
846 }
847
848 /*
849 * Convert the object type (ACPI_TYPE_xxx) to a bitmapped object type.
850 * The bitmapped type allows multiple possible return types.
851 *
852 * Note, the cases below must handle all of the possible types returned
853 * from all of the predefined names (including elements of returned
854 * packages)
855 */
Bob Moore3371c192009-02-18 14:44:03 +0800856 switch (return_object->common.type) {
Bob Mooree8707b32008-09-28 15:26:17 +0800857 case ACPI_TYPE_INTEGER:
858 return_btype = ACPI_RTYPE_INTEGER;
859 break;
860
861 case ACPI_TYPE_BUFFER:
862 return_btype = ACPI_RTYPE_BUFFER;
863 break;
864
865 case ACPI_TYPE_STRING:
866 return_btype = ACPI_RTYPE_STRING;
867 break;
868
869 case ACPI_TYPE_PACKAGE:
870 return_btype = ACPI_RTYPE_PACKAGE;
871 break;
872
873 case ACPI_TYPE_LOCAL_REFERENCE:
874 return_btype = ACPI_RTYPE_REFERENCE;
875 break;
876
877 default:
878 /* Not one of the supported objects, must be incorrect */
879
880 goto type_error_exit;
881 }
882
883 /* Is the object one of the expected types? */
884
885 if (!(return_btype & expected_btypes)) {
Bob Moorea647b5c2008-11-14 08:44:39 +0800886
887 /* Type mismatch -- attempt repair of the returned object */
888
Bob Moore0444e8f2009-06-24 13:38:02 +0800889 status = acpi_ns_repair_object(data, expected_btypes,
890 package_index,
Bob Moorea647b5c2008-11-14 08:44:39 +0800891 return_object_ptr);
892 if (ACPI_SUCCESS(status)) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800893 return (AE_OK); /* Repair was successful */
Bob Moorea647b5c2008-11-14 08:44:39 +0800894 }
Bob Mooree8707b32008-09-28 15:26:17 +0800895 goto type_error_exit;
896 }
897
898 /* For reference objects, check that the reference type is correct */
899
Bob Moore3371c192009-02-18 14:44:03 +0800900 if (return_object->common.type == ACPI_TYPE_LOCAL_REFERENCE) {
Bob Moore0444e8f2009-06-24 13:38:02 +0800901 status = acpi_ns_check_reference(data, return_object);
Bob Mooree8707b32008-09-28 15:26:17 +0800902 }
903
904 return (status);
905
906 type_error_exit:
907
908 /* Create a string with all expected types for this predefined object */
909
Bob Moore0444e8f2009-06-24 13:38:02 +0800910 acpi_ns_get_expected_types(type_buffer, expected_btypes);
Bob Mooree8707b32008-09-28 15:26:17 +0800911
Bob Moore0444e8f2009-06-24 13:38:02 +0800912 if (package_index == ACPI_NOT_PACKAGE_ELEMENT) {
913 ACPI_WARN_PREDEFINED((AE_INFO, data->pathname, data->node_flags,
914 "Return type mismatch - found %s, expected %s",
915 acpi_ut_get_object_type_name
916 (return_object), type_buffer));
Bob Mooree8707b32008-09-28 15:26:17 +0800917 } else {
Bob Moore0444e8f2009-06-24 13:38:02 +0800918 ACPI_WARN_PREDEFINED((AE_INFO, data->pathname, data->node_flags,
919 "Return Package type mismatch at index %u - "
920 "found %s, expected %s", package_index,
921 acpi_ut_get_object_type_name
922 (return_object), type_buffer));
Bob Mooree8707b32008-09-28 15:26:17 +0800923 }
924
925 return (AE_AML_OPERAND_TYPE);
926}
927
928/*******************************************************************************
929 *
930 * FUNCTION: acpi_ns_check_reference
931 *
Bob Moore0444e8f2009-06-24 13:38:02 +0800932 * PARAMETERS: Data - Pointer to validation data structure
Bob Mooree8707b32008-09-28 15:26:17 +0800933 * return_object - Object returned from the evaluation of a
934 * method or object
935 *
936 * RETURN: Status
937 *
938 * DESCRIPTION: Check a returned reference object for the correct reference
939 * type. The only reference type that can be returned from a
940 * predefined method is a named reference. All others are invalid.
941 *
942 ******************************************************************************/
943
944static acpi_status
Bob Moore0444e8f2009-06-24 13:38:02 +0800945acpi_ns_check_reference(struct acpi_predefined_data *data,
Bob Mooree8707b32008-09-28 15:26:17 +0800946 union acpi_operand_object *return_object)
947{
948
949 /*
950 * Check the reference object for the correct reference type (opcode).
951 * The only type of reference that can be converted to an union acpi_object is
952 * a reference to a named object (reference class: NAME)
953 */
954 if (return_object->reference.class == ACPI_REFCLASS_NAME) {
955 return (AE_OK);
956 }
957
Bob Moore0444e8f2009-06-24 13:38:02 +0800958 ACPI_WARN_PREDEFINED((AE_INFO, data->pathname, data->node_flags,
959 "Return type mismatch - unexpected reference object type [%s] %2.2X",
960 acpi_ut_get_reference_name(return_object),
961 return_object->reference.class));
Bob Mooree8707b32008-09-28 15:26:17 +0800962
963 return (AE_AML_OPERAND_TYPE);
964}
Bob Moorea647b5c2008-11-14 08:44:39 +0800965
966/*******************************************************************************
967 *
Bob Moore0444e8f2009-06-24 13:38:02 +0800968 * FUNCTION: acpi_ns_get_expected_types
969 *
970 * PARAMETERS: Buffer - Pointer to where the string is returned
971 * expected_btypes - Bitmap of expected return type(s)
972 *
973 * RETURN: Buffer is populated with type names.
974 *
975 * DESCRIPTION: Translate the expected types bitmap into a string of ascii
976 * names of expected types, for use in warning messages.
977 *
978 ******************************************************************************/
979
980static void acpi_ns_get_expected_types(char *buffer, u32 expected_btypes)
981{
982 u32 this_rtype;
983 u32 i;
984 u32 j;
985
986 j = 1;
987 buffer[0] = 0;
988 this_rtype = ACPI_RTYPE_INTEGER;
989
990 for (i = 0; i < ACPI_NUM_RTYPES; i++) {
991
992 /* If one of the expected types, concatenate the name of this type */
993
994 if (expected_btypes & this_rtype) {
995 ACPI_STRCAT(buffer, &acpi_rtype_names[i][j]);
996 j = 0; /* Use name separator from now on */
997 }
998 this_rtype <<= 1; /* Next Rtype */
999 }
1000}