utcopy.c 28.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Module Name: utcopy - Internal to external object translation utilities
 *
 *****************************************************************************/

/*
8
 * Copyright (C) 2000 - 2014, Intel Corp.
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
 * 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/acpi.h>
L
Len Brown 已提交
45 46
#include "accommon.h"
#include "acnamesp.h"
47

L
Linus Torvalds 已提交
48 49

#define _COMPONENT          ACPI_UTILITIES
L
Len Brown 已提交
50
ACPI_MODULE_NAME("utcopy")
L
Linus Torvalds 已提交
51

R
Robert Moore 已提交
52 53
/* Local prototypes */
static acpi_status
L
Len Brown 已提交
54 55 56
acpi_ut_copy_isimple_to_esimple(union acpi_operand_object *internal_object,
				union acpi_object *external_object,
				u8 * data_space, acpi_size * buffer_space_used);
R
Robert Moore 已提交
57 58

static acpi_status
L
Len Brown 已提交
59 60 61 62
acpi_ut_copy_ielement_to_ielement(u8 object_type,
				  union acpi_operand_object *source_object,
				  union acpi_generic_state *state,
				  void *context);
R
Robert Moore 已提交
63 64

static acpi_status
L
Len Brown 已提交
65 66
acpi_ut_copy_ipackage_to_epackage(union acpi_operand_object *internal_object,
				  u8 * buffer, acpi_size * space_used);
R
Robert Moore 已提交
67 68

static acpi_status
L
Len Brown 已提交
69 70
acpi_ut_copy_esimple_to_isimple(union acpi_object *user_obj,
				union acpi_operand_object **return_obj);
R
Robert Moore 已提交
71

72 73 74 75
static acpi_status
acpi_ut_copy_epackage_to_ipackage(union acpi_object *external_object,
				  union acpi_operand_object **internal_object);

R
Robert Moore 已提交
76
static acpi_status
L
Len Brown 已提交
77 78
acpi_ut_copy_simple_object(union acpi_operand_object *source_desc,
			   union acpi_operand_object *dest_desc);
R
Robert Moore 已提交
79 80

static acpi_status
L
Len Brown 已提交
81 82 83 84
acpi_ut_copy_ielement_to_eelement(u8 object_type,
				  union acpi_operand_object *source_object,
				  union acpi_generic_state *state,
				  void *context);
R
Robert Moore 已提交
85 86

static acpi_status
L
Len Brown 已提交
87 88 89
acpi_ut_copy_ipackage_to_ipackage(union acpi_operand_object *source_obj,
				  union acpi_operand_object *dest_obj,
				  struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
90 91 92 93 94

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_isimple_to_esimple
 *
R
Robert Moore 已提交
95 96 97 98 99
 * PARAMETERS:  internal_object     - Source object to be copied
 *              external_object     - Where to return the copied object
 *              data_space          - Where object data is returned (such as
 *                                    buffer and string data)
 *              buffer_space_used   - Length of data_space that was used
L
Linus Torvalds 已提交
100 101 102
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
103 104
 * DESCRIPTION: This function is called to copy a simple internal object to
 *              an external object.
L
Linus Torvalds 已提交
105
 *
R
Robert Moore 已提交
106 107
 *              The data_space buffer is assumed to have sufficient space for
 *              the object.
L
Linus Torvalds 已提交
108 109 110 111
 *
 ******************************************************************************/

static acpi_status
L
Len Brown 已提交
112 113 114
acpi_ut_copy_isimple_to_esimple(union acpi_operand_object *internal_object,
				union acpi_object *external_object,
				u8 * data_space, acpi_size * buffer_space_used)
L
Linus Torvalds 已提交
115
{
L
Len Brown 已提交
116
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
117

B
Bob Moore 已提交
118
	ACPI_FUNCTION_TRACE(ut_copy_isimple_to_esimple);
L
Linus Torvalds 已提交
119 120 121 122 123 124 125 126

	*buffer_space_used = 0;

	/*
	 * Check for NULL object case (could be an uninitialized
	 * package element)
	 */
	if (!internal_object) {
L
Len Brown 已提交
127
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
128 129 130 131
	}

	/* Always clear the external object */

L
Len Brown 已提交
132
	ACPI_MEMSET(external_object, 0, sizeof(union acpi_object));
L
Linus Torvalds 已提交
133 134 135 136 137

	/*
	 * In general, the external object will be the same type as
	 * the internal object
	 */
138
	external_object->type = internal_object->common.type;
L
Linus Torvalds 已提交
139 140 141

	/* However, only a limited number of external types are supported */

142
	switch (internal_object->common.type) {
L
Linus Torvalds 已提交
143 144
	case ACPI_TYPE_STRING:

L
Len Brown 已提交
145
		external_object->string.pointer = (char *)data_space;
L
Linus Torvalds 已提交
146
		external_object->string.length = internal_object->string.length;
L
Len Brown 已提交
147 148 149 150 151 152 153 154
		*buffer_space_used = ACPI_ROUND_UP_TO_NATIVE_WORD((acpi_size)
								  internal_object->
								  string.
								  length + 1);

		ACPI_MEMCPY((void *)data_space,
			    (void *)internal_object->string.pointer,
			    (acpi_size) internal_object->string.length + 1);
L
Linus Torvalds 已提交
155 156 157 158 159 160
		break;

	case ACPI_TYPE_BUFFER:

		external_object->buffer.pointer = data_space;
		external_object->buffer.length = internal_object->buffer.length;
L
Len Brown 已提交
161 162 163
		*buffer_space_used =
		    ACPI_ROUND_UP_TO_NATIVE_WORD(internal_object->string.
						 length);
L
Linus Torvalds 已提交
164

L
Len Brown 已提交
165 166 167
		ACPI_MEMCPY((void *)data_space,
			    (void *)internal_object->buffer.pointer,
			    internal_object->buffer.length);
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175 176
		break;

	case ACPI_TYPE_INTEGER:

		external_object->integer.value = internal_object->integer.value;
		break;

	case ACPI_TYPE_LOCAL_REFERENCE:

177 178
		/* This is an object reference. */

179 180 181 182 183 184
		switch (internal_object->reference.class) {
		case ACPI_REFCLASS_NAME:
			/*
			 * For namepath, return the object handle ("reference")
			 * We are referring to the namespace node
			 */
L
Len Brown 已提交
185 186
			external_object->reference.handle =
			    internal_object->reference.node;
187 188
			external_object->reference.actual_type =
			    acpi_ns_get_type(internal_object->reference.node);
L
Linus Torvalds 已提交
189
			break;
190 191 192 193 194 195

		default:

			/* All other reference types are unsupported */

			return_ACPI_STATUS(AE_TYPE);
L
Linus Torvalds 已提交
196 197 198 199 200
		}
		break;

	case ACPI_TYPE_PROCESSOR:

L
Len Brown 已提交
201 202 203 204 205 206
		external_object->processor.proc_id =
		    internal_object->processor.proc_id;
		external_object->processor.pblk_address =
		    internal_object->processor.address;
		external_object->processor.pblk_length =
		    internal_object->processor.length;
L
Linus Torvalds 已提交
207 208 209 210 211
		break;

	case ACPI_TYPE_POWER:

		external_object->power_resource.system_level =
L
Len Brown 已提交
212
		    internal_object->power_resource.system_level;
L
Linus Torvalds 已提交
213 214

		external_object->power_resource.resource_order =
L
Len Brown 已提交
215
		    internal_object->power_resource.resource_order;
L
Linus Torvalds 已提交
216 217 218 219 220 221
		break;

	default:
		/*
		 * There is no corresponding external object type
		 */
B
Bob Moore 已提交
222 223
		ACPI_ERROR((AE_INFO,
			    "Unsupported object type, cannot convert to external object: %s",
224 225
			    acpi_ut_get_type_name(internal_object->common.
						  type)));
B
Bob Moore 已提交
226

L
Len Brown 已提交
227
		return_ACPI_STATUS(AE_SUPPORT);
L
Linus Torvalds 已提交
228 229
	}

L
Len Brown 已提交
230
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_ielement_to_eelement
 *
 * PARAMETERS:  acpi_pkg_callback
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Copy one package element to another package element
 *
 ******************************************************************************/

R
Robert Moore 已提交
245
static acpi_status
L
Len Brown 已提交
246 247 248 249
acpi_ut_copy_ielement_to_eelement(u8 object_type,
				  union acpi_operand_object *source_object,
				  union acpi_generic_state *state,
				  void *context)
L
Linus Torvalds 已提交
250
{
L
Len Brown 已提交
251 252 253 254 255
	acpi_status status = AE_OK;
	struct acpi_pkg_info *info = (struct acpi_pkg_info *)context;
	acpi_size object_space;
	u32 this_index;
	union acpi_object *target_object;
L
Linus Torvalds 已提交
256

L
Len Brown 已提交
257
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
258

L
Len Brown 已提交
259
	this_index = state->pkg.index;
L
Linus Torvalds 已提交
260
	target_object = (union acpi_object *)
L
Len Brown 已提交
261 262
	    &((union acpi_object *)(state->pkg.dest_object))->package.
	    elements[this_index];
L
Linus Torvalds 已提交
263 264 265 266 267 268

	switch (object_type) {
	case ACPI_COPY_TYPE_SIMPLE:
		/*
		 * This is a simple or null object
		 */
L
Len Brown 已提交
269 270 271 272 273
		status = acpi_ut_copy_isimple_to_esimple(source_object,
							 target_object,
							 info->free_space,
							 &object_space);
		if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
274 275 276 277 278 279 280 281
			return (status);
		}
		break;

	case ACPI_COPY_TYPE_PACKAGE:
		/*
		 * Build the package object
		 */
L
Len Brown 已提交
282 283
		target_object->type = ACPI_TYPE_PACKAGE;
		target_object->package.count = source_object->package.count;
R
Robert Moore 已提交
284
		target_object->package.elements =
L
Len Brown 已提交
285
		    ACPI_CAST_PTR(union acpi_object, info->free_space);
L
Linus Torvalds 已提交
286 287 288 289 290 291 292 293 294 295

		/*
		 * Pass the new package object back to the package walk routine
		 */
		state->pkg.this_target_obj = target_object;

		/*
		 * Save space for the array of objects (Package elements)
		 * update the buffer length counter
		 */
L
Len Brown 已提交
296 297 298 299 300
		object_space = ACPI_ROUND_UP_TO_NATIVE_WORD((acpi_size)
							    target_object->
							    package.count *
							    sizeof(union
								   acpi_object));
L
Linus Torvalds 已提交
301 302 303
		break;

	default:
304

L
Linus Torvalds 已提交
305 306 307
		return (AE_BAD_PARAMETER);
	}

L
Len Brown 已提交
308 309
	info->free_space += object_space;
	info->length += object_space;
L
Linus Torvalds 已提交
310 311 312 313 314 315 316
	return (status);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_ipackage_to_epackage
 *
R
Robert Moore 已提交
317
 * PARAMETERS:  internal_object     - Pointer to the object we are returning
318
 *              buffer              - Where the object is returned
R
Robert Moore 已提交
319
 *              space_used          - Where the object length is returned
L
Linus Torvalds 已提交
320 321 322 323
 *
 * RETURN:      Status
 *
 * DESCRIPTION: This function is called to place a package object in a user
324
 *              buffer. A package object by definition contains other objects.
L
Linus Torvalds 已提交
325 326
 *
 *              The buffer is assumed to have sufficient space for the object.
327 328
 *              The caller must have verified the buffer length needed using
 *              the acpi_ut_get_object_size function before calling this function.
L
Linus Torvalds 已提交
329 330 331 332
 *
 ******************************************************************************/

static acpi_status
L
Len Brown 已提交
333 334
acpi_ut_copy_ipackage_to_epackage(union acpi_operand_object *internal_object,
				  u8 * buffer, acpi_size * space_used)
L
Linus Torvalds 已提交
335
{
L
Len Brown 已提交
336 337 338
	union acpi_object *external_object;
	acpi_status status;
	struct acpi_pkg_info info;
L
Linus Torvalds 已提交
339

B
Bob Moore 已提交
340
	ACPI_FUNCTION_TRACE(ut_copy_ipackage_to_epackage);
L
Linus Torvalds 已提交
341 342 343 344

	/*
	 * First package at head of the buffer
	 */
L
Len Brown 已提交
345
	external_object = ACPI_CAST_PTR(union acpi_object, buffer);
L
Linus Torvalds 已提交
346 347 348 349

	/*
	 * Free space begins right after the first package
	 */
L
Len Brown 已提交
350 351 352
	info.length = ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object));
	info.free_space =
	    buffer + ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object));
L
Linus Torvalds 已提交
353 354 355
	info.object_space = 0;
	info.num_packages = 1;

356
	external_object->type = internal_object->common.type;
L
Len Brown 已提交
357 358 359
	external_object->package.count = internal_object->package.count;
	external_object->package.elements = ACPI_CAST_PTR(union acpi_object,
							  info.free_space);
L
Linus Torvalds 已提交
360 361 362 363 364

	/*
	 * Leave room for an array of ACPI_OBJECTS in the buffer
	 * and move the free space past it
	 */
L
Len Brown 已提交
365 366
	info.length += (acpi_size) external_object->package.count *
	    ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object));
L
Linus Torvalds 已提交
367
	info.free_space += external_object->package.count *
L
Len Brown 已提交
368
	    ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object));
L
Linus Torvalds 已提交
369

L
Len Brown 已提交
370 371 372
	status = acpi_ut_walk_package_tree(internal_object, external_object,
					   acpi_ut_copy_ielement_to_eelement,
					   &info);
L
Linus Torvalds 已提交
373 374

	*space_used = info.length;
L
Len Brown 已提交
375
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
376 377 378 379 380 381
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_iobject_to_eobject
 *
R
Robert Moore 已提交
382
 * PARAMETERS:  internal_object     - The internal object to be converted
383
 *              ret_buffer          - Where the object is returned
L
Linus Torvalds 已提交
384 385 386
 *
 * RETURN:      Status
 *
387 388
 * DESCRIPTION: This function is called to build an API object to be returned
 *              to the caller.
L
Linus Torvalds 已提交
389 390 391 392
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
393 394
acpi_ut_copy_iobject_to_eobject(union acpi_operand_object *internal_object,
				struct acpi_buffer *ret_buffer)
L
Linus Torvalds 已提交
395
{
L
Len Brown 已提交
396
	acpi_status status;
L
Linus Torvalds 已提交
397

B
Bob Moore 已提交
398
	ACPI_FUNCTION_TRACE(ut_copy_iobject_to_eobject);
L
Linus Torvalds 已提交
399

400
	if (internal_object->common.type == ACPI_TYPE_PACKAGE) {
L
Linus Torvalds 已提交
401 402 403 404
		/*
		 * Package object:  Copy all subobjects (including
		 * nested packages)
		 */
L
Len Brown 已提交
405 406 407 408
		status = acpi_ut_copy_ipackage_to_epackage(internal_object,
							   ret_buffer->pointer,
							   &ret_buffer->length);
	} else {
L
Linus Torvalds 已提交
409 410 411
		/*
		 * Build a simple object (no nested objects)
		 */
L
Len Brown 已提交
412
		status = acpi_ut_copy_isimple_to_esimple(internal_object,
B
Bob Moore 已提交
413 414 415 416 417 418 419 420 421 422 423
							 ACPI_CAST_PTR(union
								       acpi_object,
								       ret_buffer->
								       pointer),
							 ACPI_ADD_PTR(u8,
								      ret_buffer->
								      pointer,
								      ACPI_ROUND_UP_TO_NATIVE_WORD
								      (sizeof
								       (union
									acpi_object))),
L
Len Brown 已提交
424
							 &ret_buffer->length);
L
Linus Torvalds 已提交
425 426 427 428
		/*
		 * build simple does not include the object size in the length
		 * so we add it in here
		 */
L
Len Brown 已提交
429
		ret_buffer->length += sizeof(union acpi_object);
L
Linus Torvalds 已提交
430 431
	}

L
Len Brown 已提交
432
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
433 434 435 436 437 438
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_esimple_to_isimple
 *
R
Robert Moore 已提交
439 440
 * PARAMETERS:  external_object     - The external object to be converted
 *              ret_internal_object - Where the internal object is returned
L
Linus Torvalds 已提交
441 442 443 444 445 446 447 448 449 450
 *
 * RETURN:      Status
 *
 * DESCRIPTION: This function copies an external object to an internal one.
 *              NOTE: Pointers can be copied, we don't need to copy data.
 *              (The pointers have to be valid in our address space no matter
 *              what we do with them!)
 *
 ******************************************************************************/

R
Robert Moore 已提交
451
static acpi_status
L
Len Brown 已提交
452 453
acpi_ut_copy_esimple_to_isimple(union acpi_object *external_object,
				union acpi_operand_object **ret_internal_object)
L
Linus Torvalds 已提交
454
{
L
Len Brown 已提交
455
	union acpi_operand_object *internal_object;
L
Linus Torvalds 已提交
456

B
Bob Moore 已提交
457
	ACPI_FUNCTION_TRACE(ut_copy_esimple_to_isimple);
L
Linus Torvalds 已提交
458 459 460 461 462 463 464 465

	/*
	 * Simple types supported are: String, Buffer, Integer
	 */
	switch (external_object->type) {
	case ACPI_TYPE_STRING:
	case ACPI_TYPE_BUFFER:
	case ACPI_TYPE_INTEGER:
466
	case ACPI_TYPE_LOCAL_REFERENCE:
L
Linus Torvalds 已提交
467

L
Len Brown 已提交
468 469 470
		internal_object = acpi_ut_create_internal_object((u8)
								 external_object->
								 type);
L
Linus Torvalds 已提交
471
		if (!internal_object) {
L
Len Brown 已提交
472
			return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
473 474 475
		}
		break;

476 477 478 479 480
	case ACPI_TYPE_ANY:	/* This is the case for a NULL object */

		*ret_internal_object = NULL;
		return_ACPI_STATUS(AE_OK);

L
Linus Torvalds 已提交
481
	default:
482

L
Linus Torvalds 已提交
483 484
		/* All other types are not supported */

B
Bob Moore 已提交
485 486 487 488
		ACPI_ERROR((AE_INFO,
			    "Unsupported object type, cannot convert to internal object: %s",
			    acpi_ut_get_type_name(external_object->type)));

L
Len Brown 已提交
489
		return_ACPI_STATUS(AE_SUPPORT);
L
Linus Torvalds 已提交
490 491 492 493 494 495 496 497
	}

	/* Must COPY string and buffer contents */

	switch (external_object->type) {
	case ACPI_TYPE_STRING:

		internal_object->string.pointer =
498 499 500
		    ACPI_ALLOCATE_ZEROED((acpi_size)
					 external_object->string.length + 1);

L
Linus Torvalds 已提交
501 502 503 504
		if (!internal_object->string.pointer) {
			goto error_exit;
		}

L
Len Brown 已提交
505 506 507
		ACPI_MEMCPY(internal_object->string.pointer,
			    external_object->string.pointer,
			    external_object->string.length);
L
Linus Torvalds 已提交
508 509 510 511 512 513 514

		internal_object->string.length = external_object->string.length;
		break;

	case ACPI_TYPE_BUFFER:

		internal_object->buffer.pointer =
B
Bob Moore 已提交
515
		    ACPI_ALLOCATE_ZEROED(external_object->buffer.length);
L
Linus Torvalds 已提交
516 517 518 519
		if (!internal_object->buffer.pointer) {
			goto error_exit;
		}

L
Len Brown 已提交
520 521 522
		ACPI_MEMCPY(internal_object->buffer.pointer,
			    external_object->buffer.pointer,
			    external_object->buffer.length);
L
Linus Torvalds 已提交
523 524

		internal_object->buffer.length = external_object->buffer.length;
525 526 527 528

		/* Mark buffer data valid */

		internal_object->buffer.flags |= AOPOBJ_DATA_VALID;
L
Linus Torvalds 已提交
529 530 531 532
		break;

	case ACPI_TYPE_INTEGER:

L
Len Brown 已提交
533
		internal_object->integer.value = external_object->integer.value;
L
Linus Torvalds 已提交
534 535
		break;

536 537
	case ACPI_TYPE_LOCAL_REFERENCE:

538
		/* An incoming reference is defined to be a namespace node */
539

540 541
		internal_object->reference.class = ACPI_REFCLASS_REFOF;
		internal_object->reference.object =
542 543 544
		    external_object->reference.handle;
		break;

L
Linus Torvalds 已提交
545
	default:
546

L
Linus Torvalds 已提交
547
		/* Other types can't get here */
548

L
Linus Torvalds 已提交
549 550 551 552
		break;
	}

	*ret_internal_object = internal_object;
L
Len Brown 已提交
553
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
554

555
error_exit:
L
Len Brown 已提交
556 557
	acpi_ut_remove_reference(internal_object);
	return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
558 559 560 561 562 563
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_epackage_to_ipackage
 *
564 565
 * PARAMETERS:  external_object     - The external object to be converted
 *              internal_object     - Where the internal object is returned
L
Linus Torvalds 已提交
566 567 568
 *
 * RETURN:      Status
 *
569 570
 * DESCRIPTION: Copy an external package object to an internal package.
 *              Handles nested packages.
L
Linus Torvalds 已提交
571 572 573 574
 *
 ******************************************************************************/

static acpi_status
575 576
acpi_ut_copy_epackage_to_ipackage(union acpi_object *external_object,
				  union acpi_operand_object **internal_object)
L
Linus Torvalds 已提交
577
{
578 579 580
	acpi_status status = AE_OK;
	union acpi_operand_object *package_object;
	union acpi_operand_object **package_elements;
581
	u32 i;
L
Linus Torvalds 已提交
582

B
Bob Moore 已提交
583
	ACPI_FUNCTION_TRACE(ut_copy_epackage_to_ipackage);
L
Linus Torvalds 已提交
584

585
	/* Create the package object */
L
Linus Torvalds 已提交
586

587 588 589 590 591
	package_object =
	    acpi_ut_create_package_object(external_object->package.count);
	if (!package_object) {
		return_ACPI_STATUS(AE_NO_MEMORY);
	}
L
Linus Torvalds 已提交
592

593
	package_elements = package_object->package.elements;
L
Linus Torvalds 已提交
594 595

	/*
596 597
	 * Recursive implementation. Probably ok, since nested external packages
	 * as parameters should be very rare.
L
Linus Torvalds 已提交
598
	 */
599 600 601 602 603 604
	for (i = 0; i < external_object->package.count; i++) {
		status =
		    acpi_ut_copy_eobject_to_iobject(&external_object->package.
						    elements[i],
						    &package_elements[i]);
		if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
605

606
			/* Truncate package and delete it */
L
Linus Torvalds 已提交
607

608
			package_object->package.count = i;
609 610 611 612 613
			package_elements[i] = NULL;
			acpi_ut_remove_reference(package_object);
			return_ACPI_STATUS(status);
		}
	}
L
Linus Torvalds 已提交
614

615 616 617 618
	/* Mark package data valid */

	package_object->package.flags |= AOPOBJ_DATA_VALID;

619 620 621
	*internal_object = package_object;
	return_ACPI_STATUS(status);
}
L
Linus Torvalds 已提交
622 623 624 625 626

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_eobject_to_iobject
 *
627 628
 * PARAMETERS:  external_object     - The external object to be converted
 *              internal_object     - Where the internal object is returned
L
Linus Torvalds 已提交
629
 *
630
 * RETURN:      Status
L
Linus Torvalds 已提交
631 632 633 634 635 636
 *
 * DESCRIPTION: Converts an external object to an internal object.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
637 638
acpi_ut_copy_eobject_to_iobject(union acpi_object *external_object,
				union acpi_operand_object **internal_object)
L
Linus Torvalds 已提交
639
{
L
Len Brown 已提交
640
	acpi_status status;
L
Linus Torvalds 已提交
641

B
Bob Moore 已提交
642
	ACPI_FUNCTION_TRACE(ut_copy_eobject_to_iobject);
L
Linus Torvalds 已提交
643 644

	if (external_object->type == ACPI_TYPE_PACKAGE) {
645 646 647 648
		status =
		    acpi_ut_copy_epackage_to_ipackage(external_object,
						      internal_object);
	} else {
L
Linus Torvalds 已提交
649 650 651
		/*
		 * Build a simple object (no nested objects)
		 */
L
Len Brown 已提交
652 653 654
		status =
		    acpi_ut_copy_esimple_to_isimple(external_object,
						    internal_object);
L
Linus Torvalds 已提交
655 656
	}

L
Len Brown 已提交
657
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
658 659 660 661 662 663 664 665 666 667 668
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_simple_object
 *
 * PARAMETERS:  source_desc         - The internal object to be copied
 *              dest_desc           - New target object
 *
 * RETURN:      Status
 *
669
 * DESCRIPTION: Simple copy of one internal object to another. Reference count
L
Linus Torvalds 已提交
670 671 672 673
 *              of the destination object is preserved.
 *
 ******************************************************************************/

R
Robert Moore 已提交
674
static acpi_status
L
Len Brown 已提交
675 676
acpi_ut_copy_simple_object(union acpi_operand_object *source_desc,
			   union acpi_operand_object *dest_desc)
L
Linus Torvalds 已提交
677
{
L
Len Brown 已提交
678 679
	u16 reference_count;
	union acpi_operand_object *next_object;
680
	acpi_status status;
681
	acpi_size copy_size;
L
Linus Torvalds 已提交
682 683 684 685 686 687

	/* Save fields from destination that we don't want to overwrite */

	reference_count = dest_desc->common.reference_count;
	next_object = dest_desc->common.next_object;

688 689 690 691 692 693 694 695
	/*
	 * Copy the entire source object over the destination object.
	 * Note: Source can be either an operand object or namespace node.
	 */
	copy_size = sizeof(union acpi_operand_object);
	if (ACPI_GET_DESCRIPTOR_TYPE(source_desc) == ACPI_DESC_TYPE_NAMED) {
		copy_size = sizeof(struct acpi_namespace_node);
	}
L
Linus Torvalds 已提交
696

697 698
	ACPI_MEMCPY(ACPI_CAST_PTR(char, dest_desc),
		    ACPI_CAST_PTR(char, source_desc), copy_size);
L
Linus Torvalds 已提交
699 700 701 702 703 704

	/* Restore the saved fields */

	dest_desc->common.reference_count = reference_count;
	dest_desc->common.next_object = next_object;

705 706 707 708
	/* New object is not static, regardless of source */

	dest_desc->common.flags &= ~AOPOBJ_STATIC_POINTER;

L
Linus Torvalds 已提交
709 710
	/* Handle the objects with extra data */

711
	switch (dest_desc->common.type) {
L
Linus Torvalds 已提交
712 713 714 715
	case ACPI_TYPE_BUFFER:
		/*
		 * Allocate and copy the actual buffer if and only if:
		 * 1) There is a valid buffer pointer
716
		 * 2) The buffer has a length > 0
L
Linus Torvalds 已提交
717 718
		 */
		if ((source_desc->buffer.pointer) &&
L
Len Brown 已提交
719
		    (source_desc->buffer.length)) {
720
			dest_desc->buffer.pointer =
B
Bob Moore 已提交
721
			    ACPI_ALLOCATE(source_desc->buffer.length);
722 723 724
			if (!dest_desc->buffer.pointer) {
				return (AE_NO_MEMORY);
			}
L
Linus Torvalds 已提交
725

726
			/* Copy the actual buffer data */
L
Linus Torvalds 已提交
727

L
Len Brown 已提交
728 729 730
			ACPI_MEMCPY(dest_desc->buffer.pointer,
				    source_desc->buffer.pointer,
				    source_desc->buffer.length);
L
Linus Torvalds 已提交
731 732 733 734 735 736 737
		}
		break;

	case ACPI_TYPE_STRING:
		/*
		 * Allocate and copy the actual string if and only if:
		 * 1) There is a valid string pointer
738
		 * (Pointer to a NULL string is allowed)
L
Linus Torvalds 已提交
739
		 */
740
		if (source_desc->string.pointer) {
L
Linus Torvalds 已提交
741
			dest_desc->string.pointer =
B
Bob Moore 已提交
742 743
			    ACPI_ALLOCATE((acpi_size) source_desc->string.
					  length + 1);
L
Linus Torvalds 已提交
744 745 746 747
			if (!dest_desc->string.pointer) {
				return (AE_NO_MEMORY);
			}

748 749
			/* Copy the actual string data */

L
Len Brown 已提交
750 751 752
			ACPI_MEMCPY(dest_desc->string.pointer,
				    source_desc->string.pointer,
				    (acpi_size) source_desc->string.length + 1);
L
Linus Torvalds 已提交
753 754 755 756 757 758 759
		}
		break;

	case ACPI_TYPE_LOCAL_REFERENCE:
		/*
		 * We copied the reference object, so we now must add a reference
		 * to the object pointed to by the reference
760
		 *
761 762
		 * DDBHandle reference (from Load/load_table) is a special reference,
		 * it does not have a Reference.Object, so does not need to
763
		 * increase the reference count
L
Linus Torvalds 已提交
764
		 */
765
		if (source_desc->reference.class == ACPI_REFCLASS_TABLE) {
766 767 768
			break;
		}

L
Len Brown 已提交
769
		acpi_ut_add_reference(source_desc->reference.object);
L
Linus Torvalds 已提交
770 771
		break;

772 773 774 775 776 777 778 779 780
	case ACPI_TYPE_REGION:
		/*
		 * We copied the Region Handler, so we now must add a reference
		 */
		if (dest_desc->region.handler) {
			acpi_ut_add_reference(dest_desc->region.handler);
		}
		break;

781 782 783 784 785 786 787 788
		/*
		 * For Mutex and Event objects, we cannot simply copy the underlying
		 * OS object. We must create a new one.
		 */
	case ACPI_TYPE_MUTEX:

		status = acpi_os_create_mutex(&dest_desc->mutex.os_mutex);
		if (ACPI_FAILURE(status)) {
789
			return (status);
790 791 792 793 794 795 796 797 798
		}
		break;

	case ACPI_TYPE_EVENT:

		status = acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT, 0,
						  &dest_desc->event.
						  os_semaphore);
		if (ACPI_FAILURE(status)) {
799
			return (status);
800 801 802
		}
		break;

L
Linus Torvalds 已提交
803
	default:
804

L
Linus Torvalds 已提交
805
		/* Nothing to do for other simple objects */
806

L
Linus Torvalds 已提交
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824
		break;
	}

	return (AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_ielement_to_ielement
 *
 * PARAMETERS:  acpi_pkg_callback
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Copy one package element to another package element
 *
 ******************************************************************************/

R
Robert Moore 已提交
825
static acpi_status
L
Len Brown 已提交
826 827 828 829
acpi_ut_copy_ielement_to_ielement(u8 object_type,
				  union acpi_operand_object *source_object,
				  union acpi_generic_state *state,
				  void *context)
L
Linus Torvalds 已提交
830
{
L
Len Brown 已提交
831 832 833 834
	acpi_status status = AE_OK;
	u32 this_index;
	union acpi_operand_object **this_target_ptr;
	union acpi_operand_object *target_object;
L
Linus Torvalds 已提交
835

L
Len Brown 已提交
836
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
837

L
Len Brown 已提交
838
	this_index = state->pkg.index;
L
Linus Torvalds 已提交
839
	this_target_ptr = (union acpi_operand_object **)
L
Len Brown 已提交
840
	    &state->pkg.dest_object->package.elements[this_index];
L
Linus Torvalds 已提交
841 842 843 844 845 846 847 848 849 850

	switch (object_type) {
	case ACPI_COPY_TYPE_SIMPLE:

		/* A null source object indicates a (legal) null package element */

		if (source_object) {
			/*
			 * This is a simple object, just copy it
			 */
L
Len Brown 已提交
851
			target_object =
852 853
			    acpi_ut_create_internal_object(source_object->
							   common.type);
L
Linus Torvalds 已提交
854 855 856 857
			if (!target_object) {
				return (AE_NO_MEMORY);
			}

L
Len Brown 已提交
858 859 860 861
			status =
			    acpi_ut_copy_simple_object(source_object,
						       target_object);
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
862 863 864 865
				goto error_exit;
			}

			*this_target_ptr = target_object;
L
Len Brown 已提交
866
		} else {
L
Linus Torvalds 已提交
867 868 869 870 871 872 873 874 875 876 877
			/* Pass through a null element */

			*this_target_ptr = NULL;
		}
		break;

	case ACPI_COPY_TYPE_PACKAGE:
		/*
		 * This object is a package - go down another nesting level
		 * Create and build the package object
		 */
L
Len Brown 已提交
878
		target_object =
879
		    acpi_ut_create_package_object(source_object->package.count);
L
Linus Torvalds 已提交
880 881 882 883 884 885
		if (!target_object) {
			return (AE_NO_MEMORY);
		}

		target_object->common.flags = source_object->common.flags;

886
		/* Pass the new package object back to the package walk routine */
L
Linus Torvalds 已提交
887 888 889

		state->pkg.this_target_obj = target_object;

890 891
		/* Store the object pointer in the parent package object */

L
Linus Torvalds 已提交
892 893 894 895
		*this_target_ptr = target_object;
		break;

	default:
896

L
Linus Torvalds 已提交
897 898 899 900 901
		return (AE_BAD_PARAMETER);
	}

	return (status);

902
error_exit:
L
Len Brown 已提交
903
	acpi_ut_remove_reference(target_object);
L
Linus Torvalds 已提交
904 905 906 907 908 909 910
	return (status);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_ipackage_to_ipackage
 *
911 912 913
 * PARAMETERS:  source_obj      - Pointer to the source package object
 *              dest_obj        - Where the internal object is returned
 *              walk_state      - Current Walk state descriptor
L
Linus Torvalds 已提交
914
 *
915
 * RETURN:      Status
L
Linus Torvalds 已提交
916 917 918 919 920 921
 *
 * DESCRIPTION: This function is called to copy an internal package object
 *              into another internal package object.
 *
 ******************************************************************************/

R
Robert Moore 已提交
922
static acpi_status
L
Len Brown 已提交
923 924 925
acpi_ut_copy_ipackage_to_ipackage(union acpi_operand_object *source_obj,
				  union acpi_operand_object *dest_obj,
				  struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
926
{
L
Len Brown 已提交
927
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
928

B
Bob Moore 已提交
929
	ACPI_FUNCTION_TRACE(ut_copy_ipackage_to_ipackage);
L
Linus Torvalds 已提交
930

931
	dest_obj->common.type = source_obj->common.type;
L
Len Brown 已提交
932
	dest_obj->common.flags = source_obj->common.flags;
L
Linus Torvalds 已提交
933 934 935 936 937
	dest_obj->package.count = source_obj->package.count;

	/*
	 * Create the object array and walk the source package tree
	 */
B
Bob Moore 已提交
938 939 940 941
	dest_obj->package.elements = ACPI_ALLOCATE_ZEROED(((acpi_size)
							   source_obj->package.
							   count +
							   1) * sizeof(void *));
L
Linus Torvalds 已提交
942
	if (!dest_obj->package.elements) {
B
Bob Moore 已提交
943
		ACPI_ERROR((AE_INFO, "Package allocation failure"));
L
Len Brown 已提交
944
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
945 946 947 948 949 950
	}

	/*
	 * Copy the package element-by-element by walking the package "tree".
	 * This handles nested packages of arbitrary depth.
	 */
L
Len Brown 已提交
951 952 953 954
	status = acpi_ut_walk_package_tree(source_obj, dest_obj,
					   acpi_ut_copy_ielement_to_ielement,
					   walk_state);
	if (ACPI_FAILURE(status)) {
B
Bob Moore 已提交
955

L
Linus Torvalds 已提交
956 957
		/* On failure, delete the destination package object */

L
Len Brown 已提交
958
		acpi_ut_remove_reference(dest_obj);
L
Linus Torvalds 已提交
959 960
	}

L
Len Brown 已提交
961
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
962 963 964 965 966 967
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_iobject_to_iobject
 *
968
 * PARAMETERS:  source_desc         - The internal object to be copied
L
Linus Torvalds 已提交
969
 *              dest_desc           - Where the copied object is returned
970
 *              walk_state          - Current walk state
L
Linus Torvalds 已提交
971 972 973 974 975 976 977 978
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Copy an internal object to a new internal object
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
979 980 981
acpi_ut_copy_iobject_to_iobject(union acpi_operand_object *source_desc,
				union acpi_operand_object **dest_desc,
				struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
982
{
L
Len Brown 已提交
983
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
984

B
Bob Moore 已提交
985
	ACPI_FUNCTION_TRACE(ut_copy_iobject_to_iobject);
L
Linus Torvalds 已提交
986 987 988

	/* Create the top level object */

989
	*dest_desc = acpi_ut_create_internal_object(source_desc->common.type);
L
Linus Torvalds 已提交
990
	if (!*dest_desc) {
L
Len Brown 已提交
991
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
992 993 994 995
	}

	/* Copy the object and possible subobjects */

996
	if (source_desc->common.type == ACPI_TYPE_PACKAGE) {
L
Len Brown 已提交
997 998 999 1000 1001
		status =
		    acpi_ut_copy_ipackage_to_ipackage(source_desc, *dest_desc,
						      walk_state);
	} else {
		status = acpi_ut_copy_simple_object(source_desc, *dest_desc);
L
Linus Torvalds 已提交
1002 1003
	}

1004 1005 1006 1007 1008 1009
	/* Delete the allocated object if copy failed */

	if (ACPI_FAILURE(status)) {
		acpi_ut_remove_reference(*dest_desc);
	}

L
Len Brown 已提交
1010
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
1011
}