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

/*
B
Bob Moore 已提交
8
 * Copyright (C) 2000 - 2007, R. Byron Moore
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 45 46 47
 * 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>
#include <acpi/amlcode.h>

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

R
Robert Moore 已提交
50 51
/* Local prototypes */
static acpi_status
L
Len Brown 已提交
52 53 54
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 已提交
55 56

static acpi_status
L
Len Brown 已提交
57 58 59 60
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 已提交
61 62

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

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

70 71 72 73
static acpi_status
acpi_ut_copy_epackage_to_ipackage(union acpi_object *external_object,
				  union acpi_operand_object **internal_object);

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

static acpi_status
L
Len Brown 已提交
79 80 81 82
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 已提交
83 84

static acpi_status
L
Len Brown 已提交
85 86 87
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 已提交
88 89 90 91 92

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_isimple_to_esimple
 *
R
Robert Moore 已提交
93 94 95 96 97
 * 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 已提交
98 99 100
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
101 102
 * DESCRIPTION: This function is called to copy a simple internal object to
 *              an external object.
L
Linus Torvalds 已提交
103
 *
R
Robert Moore 已提交
104 105
 *              The data_space buffer is assumed to have sufficient space for
 *              the object.
L
Linus Torvalds 已提交
106 107 108 109
 *
 ******************************************************************************/

static acpi_status
L
Len Brown 已提交
110 111 112
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 已提交
113
{
L
Len Brown 已提交
114
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
115

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

	*buffer_space_used = 0;

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

	/* Always clear the external object */

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

	/*
	 * In general, the external object will be the same type as
	 * the internal object
	 */
L
Len Brown 已提交
136
	external_object->type = ACPI_GET_OBJECT_TYPE(internal_object);
L
Linus Torvalds 已提交
137 138 139

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

L
Len Brown 已提交
140
	switch (ACPI_GET_OBJECT_TYPE(internal_object)) {
L
Linus Torvalds 已提交
141 142
	case ACPI_TYPE_STRING:

L
Len Brown 已提交
143
		external_object->string.pointer = (char *)data_space;
L
Linus Torvalds 已提交
144
		external_object->string.length = internal_object->string.length;
L
Len Brown 已提交
145 146 147 148 149 150 151 152
		*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 已提交
153 154 155 156 157 158
		break;

	case ACPI_TYPE_BUFFER:

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

L
Len Brown 已提交
163 164 165
		ACPI_MEMCPY((void *)data_space,
			    (void *)internal_object->buffer.pointer,
			    internal_object->buffer.length);
L
Linus Torvalds 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
		break;

	case ACPI_TYPE_INTEGER:

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

	case ACPI_TYPE_LOCAL_REFERENCE:

		/*
		 * This is an object reference.  Attempt to dereference it.
		 */
		switch (internal_object->reference.opcode) {
		case AML_INT_NAMEPATH_OP:

			/* For namepath, return the object handle ("reference") */

		default:
			/*
			 * Use the object type of "Any" to indicate a reference
			 * to object containing a handle to an ACPI named object.
			 */
			external_object->type = ACPI_TYPE_ANY;
L
Len Brown 已提交
189 190
			external_object->reference.handle =
			    internal_object->reference.node;
L
Linus Torvalds 已提交
191 192 193 194 195 196
			break;
		}
		break;

	case ACPI_TYPE_PROCESSOR:

L
Len Brown 已提交
197 198 199 200 201 202
		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 已提交
203 204 205 206 207
		break;

	case ACPI_TYPE_POWER:

		external_object->power_resource.system_level =
L
Len Brown 已提交
208
		    internal_object->power_resource.system_level;
L
Linus Torvalds 已提交
209 210

		external_object->power_resource.resource_order =
L
Len Brown 已提交
211
		    internal_object->power_resource.resource_order;
L
Linus Torvalds 已提交
212 213 214 215 216 217
		break;

	default:
		/*
		 * There is no corresponding external object type
		 */
B
Bob Moore 已提交
218 219 220 221 222
		ACPI_ERROR((AE_INFO,
			    "Unsupported object type, cannot convert to external object: %s",
			    acpi_ut_get_type_name(ACPI_GET_OBJECT_TYPE
						  (internal_object))));

L
Len Brown 已提交
223
		return_ACPI_STATUS(AE_SUPPORT);
L
Linus Torvalds 已提交
224 225
	}

L
Len Brown 已提交
226
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240
}

/*******************************************************************************
 *
 * 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 已提交
241
static acpi_status
L
Len Brown 已提交
242 243 244 245
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 已提交
246
{
L
Len Brown 已提交
247 248 249 250 251
	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 已提交
252

L
Len Brown 已提交
253
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
254

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

	switch (object_type) {
	case ACPI_COPY_TYPE_SIMPLE:

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

	case ACPI_COPY_TYPE_PACKAGE:

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

		/*
		 * 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 已提交
294 295 296 297 298
		object_space = ACPI_ROUND_UP_TO_NATIVE_WORD((acpi_size)
							    target_object->
							    package.count *
							    sizeof(union
								   acpi_object));
L
Linus Torvalds 已提交
299 300 301 302 303 304
		break;

	default:
		return (AE_BAD_PARAMETER);
	}

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

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

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

B
Bob Moore 已提交
337
	ACPI_FUNCTION_TRACE(ut_copy_ipackage_to_epackage);
L
Linus Torvalds 已提交
338 339 340 341

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

	/*
	 * Free space begins right after the first package
	 */
L
Len Brown 已提交
347 348 349
	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 已提交
350 351 352
	info.object_space = 0;
	info.num_packages = 1;

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

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

L
Len Brown 已提交
367 368 369
	status = acpi_ut_walk_package_tree(internal_object, external_object,
					   acpi_ut_copy_ielement_to_eelement,
					   &info);
L
Linus Torvalds 已提交
370 371

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

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

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

B
Bob Moore 已提交
395
	ACPI_FUNCTION_TRACE(ut_copy_iobject_to_eobject);
L
Linus Torvalds 已提交
396

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

L
Len Brown 已提交
429
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
430 431 432 433 434 435
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_esimple_to_isimple
 *
R
Robert Moore 已提交
436 437
 * PARAMETERS:  external_object     - The external object to be converted
 *              ret_internal_object - Where the internal object is returned
L
Linus Torvalds 已提交
438 439 440 441 442 443 444 445 446 447
 *
 * 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 已提交
448
static acpi_status
L
Len Brown 已提交
449 450
acpi_ut_copy_esimple_to_isimple(union acpi_object *external_object,
				union acpi_operand_object **ret_internal_object)
L
Linus Torvalds 已提交
451
{
L
Len Brown 已提交
452
	union acpi_operand_object *internal_object;
L
Linus Torvalds 已提交
453

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

	/*
	 * Simple types supported are: String, Buffer, Integer
	 */
	switch (external_object->type) {
	case ACPI_TYPE_STRING:
	case ACPI_TYPE_BUFFER:
	case ACPI_TYPE_INTEGER:

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

	default:
		/* All other types are not supported */

B
Bob Moore 已提交
475 476 477 478
		ACPI_ERROR((AE_INFO,
			    "Unsupported object type, cannot convert to internal object: %s",
			    acpi_ut_get_type_name(external_object->type)));

L
Len Brown 已提交
479
		return_ACPI_STATUS(AE_SUPPORT);
L
Linus Torvalds 已提交
480 481 482 483 484 485 486 487
	}

	/* Must COPY string and buffer contents */

	switch (external_object->type) {
	case ACPI_TYPE_STRING:

		internal_object->string.pointer =
B
Bob Moore 已提交
488 489
		    ACPI_ALLOCATE_ZEROED((acpi_size) external_object->string.
					 length + 1);
L
Linus Torvalds 已提交
490 491 492 493
		if (!internal_object->string.pointer) {
			goto error_exit;
		}

L
Len Brown 已提交
494 495 496
		ACPI_MEMCPY(internal_object->string.pointer,
			    external_object->string.pointer,
			    external_object->string.length);
L
Linus Torvalds 已提交
497 498 499 500 501 502 503

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

	case ACPI_TYPE_BUFFER:

		internal_object->buffer.pointer =
B
Bob Moore 已提交
504
		    ACPI_ALLOCATE_ZEROED(external_object->buffer.length);
L
Linus Torvalds 已提交
505 506 507 508
		if (!internal_object->buffer.pointer) {
			goto error_exit;
		}

L
Len Brown 已提交
509 510 511
		ACPI_MEMCPY(internal_object->buffer.pointer,
			    external_object->buffer.pointer,
			    external_object->buffer.length);
L
Linus Torvalds 已提交
512 513

		internal_object->buffer.length = external_object->buffer.length;
514 515 516 517

		/* Mark buffer data valid */

		internal_object->buffer.flags |= AOPOBJ_DATA_VALID;
L
Linus Torvalds 已提交
518 519 520 521
		break;

	case ACPI_TYPE_INTEGER:

L
Len Brown 已提交
522
		internal_object->integer.value = external_object->integer.value;
L
Linus Torvalds 已提交
523 524 525 526 527 528 529 530
		break;

	default:
		/* Other types can't get here */
		break;
	}

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

L
Len Brown 已提交
533 534 535
      error_exit:
	acpi_ut_remove_reference(internal_object);
	return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
536 537 538 539 540 541
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_epackage_to_ipackage
 *
542 543
 * PARAMETERS:  external_object     - The external object to be converted
 *              internal_object     - Where the internal object is returned
L
Linus Torvalds 已提交
544 545 546
 *
 * RETURN:      Status
 *
547 548
 * DESCRIPTION: Copy an external package object to an internal package.
 *              Handles nested packages.
L
Linus Torvalds 已提交
549 550 551 552
 *
 ******************************************************************************/

static acpi_status
553 554
acpi_ut_copy_epackage_to_ipackage(union acpi_object *external_object,
				  union acpi_operand_object **internal_object)
L
Linus Torvalds 已提交
555
{
556 557 558 559
	acpi_status status = AE_OK;
	union acpi_operand_object *package_object;
	union acpi_operand_object **package_elements;
	acpi_native_uint i;
L
Linus Torvalds 已提交
560

B
Bob Moore 已提交
561
	ACPI_FUNCTION_TRACE(ut_copy_epackage_to_ipackage);
L
Linus Torvalds 已提交
562

563
	/* Create the package object */
L
Linus Torvalds 已提交
564

565 566 567 568 569
	package_object =
	    acpi_ut_create_package_object(external_object->package.count);
	if (!package_object) {
		return_ACPI_STATUS(AE_NO_MEMORY);
	}
L
Linus Torvalds 已提交
570

571
	package_elements = package_object->package.elements;
L
Linus Torvalds 已提交
572 573

	/*
574 575
	 * Recursive implementation. Probably ok, since nested external packages
	 * as parameters should be very rare.
L
Linus Torvalds 已提交
576
	 */
577 578 579 580 581 582
	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 已提交
583

584
			/* Truncate package and delete it */
L
Linus Torvalds 已提交
585

586
			package_object->package.count = (u32) i;
587 588 589 590 591
			package_elements[i] = NULL;
			acpi_ut_remove_reference(package_object);
			return_ACPI_STATUS(status);
		}
	}
L
Linus Torvalds 已提交
592

593 594 595 596
	/* Mark package data valid */

	package_object->package.flags |= AOPOBJ_DATA_VALID;

597 598 599
	*internal_object = package_object;
	return_ACPI_STATUS(status);
}
L
Linus Torvalds 已提交
600 601 602 603 604

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_eobject_to_iobject
 *
605 606
 * PARAMETERS:  external_object     - The external object to be converted
 *              internal_object     - Where the internal object is returned
L
Linus Torvalds 已提交
607
 *
608
 * RETURN:      Status              - the status of the call
L
Linus Torvalds 已提交
609 610 611 612 613 614
 *
 * DESCRIPTION: Converts an external object to an internal object.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
615 616
acpi_ut_copy_eobject_to_iobject(union acpi_object *external_object,
				union acpi_operand_object **internal_object)
L
Linus Torvalds 已提交
617
{
L
Len Brown 已提交
618
	acpi_status status;
L
Linus Torvalds 已提交
619

B
Bob Moore 已提交
620
	ACPI_FUNCTION_TRACE(ut_copy_eobject_to_iobject);
L
Linus Torvalds 已提交
621 622

	if (external_object->type == ACPI_TYPE_PACKAGE) {
623 624 625 626
		status =
		    acpi_ut_copy_epackage_to_ipackage(external_object,
						      internal_object);
	} else {
L
Linus Torvalds 已提交
627 628 629
		/*
		 * Build a simple object (no nested objects)
		 */
L
Len Brown 已提交
630 631 632
		status =
		    acpi_ut_copy_esimple_to_isimple(external_object,
						    internal_object);
L
Linus Torvalds 已提交
633 634
	}

L
Len Brown 已提交
635
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_simple_object
 *
 * PARAMETERS:  source_desc         - The internal object to be copied
 *              dest_desc           - New target object
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Simple copy of one internal object to another.  Reference count
 *              of the destination object is preserved.
 *
 ******************************************************************************/

R
Robert Moore 已提交
652
static acpi_status
L
Len Brown 已提交
653 654
acpi_ut_copy_simple_object(union acpi_operand_object *source_desc,
			   union acpi_operand_object *dest_desc)
L
Linus Torvalds 已提交
655
{
L
Len Brown 已提交
656 657
	u16 reference_count;
	union acpi_operand_object *next_object;
L
Linus Torvalds 已提交
658 659 660 661 662 663

	/* 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;

L
Len Brown 已提交
664
	/* Copy the entire source object over the destination object */
L
Linus Torvalds 已提交
665

L
Len Brown 已提交
666 667
	ACPI_MEMCPY((char *)dest_desc, (char *)source_desc,
		    sizeof(union acpi_operand_object));
L
Linus Torvalds 已提交
668 669 670 671 672 673

	/* Restore the saved fields */

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

674 675 676 677
	/* New object is not static, regardless of source */

	dest_desc->common.flags &= ~AOPOBJ_STATIC_POINTER;

L
Linus Torvalds 已提交
678 679
	/* Handle the objects with extra data */

L
Len Brown 已提交
680
	switch (ACPI_GET_OBJECT_TYPE(dest_desc)) {
L
Linus Torvalds 已提交
681 682 683 684
	case ACPI_TYPE_BUFFER:
		/*
		 * Allocate and copy the actual buffer if and only if:
		 * 1) There is a valid buffer pointer
685
		 * 2) The buffer has a length > 0
L
Linus Torvalds 已提交
686 687
		 */
		if ((source_desc->buffer.pointer) &&
L
Len Brown 已提交
688
		    (source_desc->buffer.length)) {
689
			dest_desc->buffer.pointer =
B
Bob Moore 已提交
690
			    ACPI_ALLOCATE(source_desc->buffer.length);
691 692 693
			if (!dest_desc->buffer.pointer) {
				return (AE_NO_MEMORY);
			}
L
Linus Torvalds 已提交
694

695
			/* Copy the actual buffer data */
L
Linus Torvalds 已提交
696

L
Len Brown 已提交
697 698 699
			ACPI_MEMCPY(dest_desc->buffer.pointer,
				    source_desc->buffer.pointer,
				    source_desc->buffer.length);
L
Linus Torvalds 已提交
700 701 702 703 704 705 706
		}
		break;

	case ACPI_TYPE_STRING:
		/*
		 * Allocate and copy the actual string if and only if:
		 * 1) There is a valid string pointer
707
		 * (Pointer to a NULL string is allowed)
L
Linus Torvalds 已提交
708
		 */
709
		if (source_desc->string.pointer) {
L
Linus Torvalds 已提交
710
			dest_desc->string.pointer =
B
Bob Moore 已提交
711 712
			    ACPI_ALLOCATE((acpi_size) source_desc->string.
					  length + 1);
L
Linus Torvalds 已提交
713 714 715 716
			if (!dest_desc->string.pointer) {
				return (AE_NO_MEMORY);
			}

717 718
			/* Copy the actual string data */

L
Len Brown 已提交
719 720 721
			ACPI_MEMCPY(dest_desc->string.pointer,
				    source_desc->string.pointer,
				    (acpi_size) source_desc->string.length + 1);
L
Linus Torvalds 已提交
722 723 724 725 726 727 728
		}
		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
729 730 731 732
		 *
		 * DDBHandle reference (from Load/load_table is a special reference,
		 * it's Reference.Object is the table index, so does not need to
		 * increase the reference count
L
Linus Torvalds 已提交
733
		 */
734 735 736 737
		if (source_desc->reference.opcode == AML_LOAD_OP) {
			break;
		}

L
Len Brown 已提交
738
		acpi_ut_add_reference(source_desc->reference.object);
L
Linus Torvalds 已提交
739 740
		break;

741 742 743 744 745 746 747 748 749
	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;

L
Linus Torvalds 已提交
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
	default:
		/* Nothing to do for other simple objects */
		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 已提交
770
static acpi_status
L
Len Brown 已提交
771 772 773 774
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 已提交
775
{
L
Len Brown 已提交
776 777 778 779
	acpi_status status = AE_OK;
	u32 this_index;
	union acpi_operand_object **this_target_ptr;
	union acpi_operand_object *target_object;
L
Linus Torvalds 已提交
780

L
Len Brown 已提交
781
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
782

L
Len Brown 已提交
783
	this_index = state->pkg.index;
L
Linus Torvalds 已提交
784
	this_target_ptr = (union acpi_operand_object **)
L
Len Brown 已提交
785
	    &state->pkg.dest_object->package.elements[this_index];
L
Linus Torvalds 已提交
786 787 788 789 790 791 792 793 794 795

	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 已提交
796 797 798
			target_object =
			    acpi_ut_create_internal_object(ACPI_GET_OBJECT_TYPE
							   (source_object));
L
Linus Torvalds 已提交
799 800 801 802
			if (!target_object) {
				return (AE_NO_MEMORY);
			}

L
Len Brown 已提交
803 804 805 806
			status =
			    acpi_ut_copy_simple_object(source_object,
						       target_object);
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
807 808 809 810
				goto error_exit;
			}

			*this_target_ptr = target_object;
L
Len Brown 已提交
811
		} else {
L
Linus Torvalds 已提交
812 813 814 815 816 817 818 819 820 821 822 823
			/* 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 已提交
824
		target_object =
825
		    acpi_ut_create_package_object(source_object->package.count);
L
Linus Torvalds 已提交
826 827 828 829 830 831
		if (!target_object) {
			return (AE_NO_MEMORY);
		}

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

832
		/* Pass the new package object back to the package walk routine */
L
Linus Torvalds 已提交
833 834 835

		state->pkg.this_target_obj = target_object;

836 837
		/* Store the object pointer in the parent package object */

L
Linus Torvalds 已提交
838 839 840 841 842 843 844 845 846
		*this_target_ptr = target_object;
		break;

	default:
		return (AE_BAD_PARAMETER);
	}

	return (status);

L
Len Brown 已提交
847 848
      error_exit:
	acpi_ut_remove_reference(target_object);
L
Linus Torvalds 已提交
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
	return (status);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_ipackage_to_ipackage
 *
 * PARAMETERS:  *source_obj     - Pointer to the source package object
 *              *dest_obj       - Where the internal object is returned
 *
 * RETURN:      Status          - the status of the call
 *
 * DESCRIPTION: This function is called to copy an internal package object
 *              into another internal package object.
 *
 ******************************************************************************/

R
Robert Moore 已提交
866
static acpi_status
L
Len Brown 已提交
867 868 869
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 已提交
870
{
L
Len Brown 已提交
871
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
872

B
Bob Moore 已提交
873
	ACPI_FUNCTION_TRACE(ut_copy_ipackage_to_ipackage);
L
Linus Torvalds 已提交
874

L
Len Brown 已提交
875 876
	dest_obj->common.type = ACPI_GET_OBJECT_TYPE(source_obj);
	dest_obj->common.flags = source_obj->common.flags;
L
Linus Torvalds 已提交
877 878 879 880 881
	dest_obj->package.count = source_obj->package.count;

	/*
	 * Create the object array and walk the source package tree
	 */
B
Bob Moore 已提交
882 883 884 885
	dest_obj->package.elements = ACPI_ALLOCATE_ZEROED(((acpi_size)
							   source_obj->package.
							   count +
							   1) * sizeof(void *));
L
Linus Torvalds 已提交
886
	if (!dest_obj->package.elements) {
B
Bob Moore 已提交
887
		ACPI_ERROR((AE_INFO, "Package allocation failure"));
L
Len Brown 已提交
888
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
889 890 891 892 893 894
	}

	/*
	 * Copy the package element-by-element by walking the package "tree".
	 * This handles nested packages of arbitrary depth.
	 */
L
Len Brown 已提交
895 896 897 898
	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 已提交
899

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

L
Len Brown 已提交
902
		acpi_ut_remove_reference(dest_obj);
L
Linus Torvalds 已提交
903 904
	}

L
Len Brown 已提交
905
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_copy_iobject_to_iobject
 *
 * PARAMETERS:  walk_state          - Current walk state
 *              source_desc         - The internal object to be copied
 *              dest_desc           - Where the copied object is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Copy an internal object to a new internal object
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
923 924 925
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 已提交
926
{
L
Len Brown 已提交
927
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
928

B
Bob Moore 已提交
929
	ACPI_FUNCTION_TRACE(ut_copy_iobject_to_iobject);
L
Linus Torvalds 已提交
930 931 932

	/* Create the top level object */

L
Len Brown 已提交
933 934
	*dest_desc =
	    acpi_ut_create_internal_object(ACPI_GET_OBJECT_TYPE(source_desc));
L
Linus Torvalds 已提交
935
	if (!*dest_desc) {
L
Len Brown 已提交
936
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
937 938 939 940
	}

	/* Copy the object and possible subobjects */

L
Len Brown 已提交
941 942 943 944 945 946
	if (ACPI_GET_OBJECT_TYPE(source_desc) == ACPI_TYPE_PACKAGE) {
		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 已提交
947 948
	}

L
Len Brown 已提交
949
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
950
}