blob: 257706e7734f786dbe8e8d760283ef2751859838 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: exstorob - AML Interpreter object store support, store to object
5 *
6 *****************************************************************************/
7
8/*
Len Brown75a44ce2008-04-23 23:00:13 -04009 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050046#include "accommon.h"
47#include "acinterp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("exstorob")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*******************************************************************************
53 *
54 * FUNCTION: acpi_ex_store_buffer_to_buffer
55 *
56 * PARAMETERS: source_desc - Source object to copy
57 * target_desc - Destination object of the copy
58 *
59 * RETURN: Status
60 *
61 * DESCRIPTION: Copy a buffer object to another buffer object.
62 *
63 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070064acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040065acpi_ex_store_buffer_to_buffer(union acpi_operand_object *source_desc,
66 union acpi_operand_object *target_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Len Brown4be44fc2005-08-05 00:44:28 -040068 u32 length;
69 u8 *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Bob Mooreb229cf92006-04-21 17:15:00 -040071 ACPI_FUNCTION_TRACE_PTR(ex_store_buffer_to_buffer, source_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Lin Mingb0de22b2009-08-26 09:01:34 +080073 /* If Source and Target are the same, just return */
74
75 if (source_desc == target_desc) {
76 return_ACPI_STATUS(AE_OK);
77 }
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 /* We know that source_desc is a buffer by now */
80
Bob Moorec51a4de2005-11-17 13:07:00 -050081 buffer = ACPI_CAST_PTR(u8, source_desc->buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 length = source_desc->buffer.length;
83
84 /*
85 * If target is a buffer of length zero or is a static buffer,
86 * allocate a new buffer of the proper length
87 */
88 if ((target_desc->buffer.length == 0) ||
Len Brown4be44fc2005-08-05 00:44:28 -040089 (target_desc->common.flags & AOPOBJ_STATIC_POINTER)) {
Bob Moore83135242006-10-03 00:00:00 -040090 target_desc->buffer.pointer = ACPI_ALLOCATE(length);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (!target_desc->buffer.pointer) {
Len Brown4be44fc2005-08-05 00:44:28 -040092 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
95 target_desc->buffer.length = length;
96 }
97
98 /* Copy source buffer to target buffer */
99
100 if (length <= target_desc->buffer.length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 /* Clear existing buffer and copy in the new one */
103
Len Brown4be44fc2005-08-05 00:44:28 -0400104 ACPI_MEMSET(target_desc->buffer.pointer, 0,
105 target_desc->buffer.length);
106 ACPI_MEMCPY(target_desc->buffer.pointer, buffer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108#ifdef ACPI_OBSOLETE_BEHAVIOR
109 /*
110 * NOTE: ACPI versions up to 3.0 specified that the buffer must be
111 * truncated if the string is smaller than the buffer. However, "other"
112 * implementations of ACPI never did this and thus became the defacto
Bob Moore958dd242006-05-12 17:12:00 -0400113 * standard. ACPI 3.0_a changes this behavior such that the buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * is no longer truncated.
115 */
116
117 /*
118 * OBSOLETE BEHAVIOR:
119 * If the original source was a string, we must truncate the buffer,
120 * according to the ACPI spec. Integer-to-Buffer and Buffer-to-Buffer
121 * copy must not truncate the original buffer.
122 */
123 if (original_src_type == ACPI_TYPE_STRING) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* Set the new length of the target */
126
127 target_desc->buffer.length = length;
128 }
129#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400130 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* Truncate the source, copy only what will fit */
132
Len Brown4be44fc2005-08-05 00:44:28 -0400133 ACPI_MEMCPY(target_desc->buffer.pointer, buffer,
134 target_desc->buffer.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Len Brown4be44fc2005-08-05 00:44:28 -0400136 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
137 "Truncating source buffer from %X to %X\n",
138 length, target_desc->buffer.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
141 /* Copy flags */
142
143 target_desc->buffer.flags = source_desc->buffer.flags;
144 target_desc->common.flags &= ~AOPOBJ_STATIC_POINTER;
Len Brown4be44fc2005-08-05 00:44:28 -0400145 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*******************************************************************************
149 *
150 * FUNCTION: acpi_ex_store_string_to_string
151 *
152 * PARAMETERS: source_desc - Source object to copy
153 * target_desc - Destination object of the copy
154 *
155 * RETURN: Status
156 *
157 * DESCRIPTION: Copy a String object to another String object
158 *
159 ******************************************************************************/
160
161acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400162acpi_ex_store_string_to_string(union acpi_operand_object *source_desc,
163 union acpi_operand_object *target_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Len Brown4be44fc2005-08-05 00:44:28 -0400165 u32 length;
166 u8 *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Bob Mooreb229cf92006-04-21 17:15:00 -0400168 ACPI_FUNCTION_TRACE_PTR(ex_store_string_to_string, source_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Lin Mingb0de22b2009-08-26 09:01:34 +0800170 /* If Source and Target are the same, just return */
171
172 if (source_desc == target_desc) {
173 return_ACPI_STATUS(AE_OK);
174 }
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /* We know that source_desc is a string by now */
177
Bob Moorec51a4de2005-11-17 13:07:00 -0500178 buffer = ACPI_CAST_PTR(u8, source_desc->string.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 length = source_desc->string.length;
180
181 /*
182 * Replace existing string value if it will fit and the string
183 * pointer is not a static pointer (part of an ACPI table)
184 */
185 if ((length < target_desc->string.length) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400186 (!(target_desc->common.flags & AOPOBJ_STATIC_POINTER))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /*
188 * String will fit in existing non-static buffer.
189 * Clear old string and copy in the new one
190 */
Len Brown4be44fc2005-08-05 00:44:28 -0400191 ACPI_MEMSET(target_desc->string.pointer, 0,
192 (acpi_size) target_desc->string.length + 1);
193 ACPI_MEMCPY(target_desc->string.pointer, buffer, length);
194 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /*
196 * Free the current buffer, then allocate a new buffer
197 * large enough to hold the value
198 */
199 if (target_desc->string.pointer &&
Len Brown4be44fc2005-08-05 00:44:28 -0400200 (!(target_desc->common.flags & AOPOBJ_STATIC_POINTER))) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Only free if not a pointer into the DSDT */
203
Bob Moore83135242006-10-03 00:00:00 -0400204 ACPI_FREE(target_desc->string.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
Bob Moore83135242006-10-03 00:00:00 -0400207 target_desc->string.pointer = ACPI_ALLOCATE_ZEROED((acpi_size)
208 length + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (!target_desc->string.pointer) {
Len Brown4be44fc2005-08-05 00:44:28 -0400210 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
213 target_desc->common.flags &= ~AOPOBJ_STATIC_POINTER;
Len Brown4be44fc2005-08-05 00:44:28 -0400214 ACPI_MEMCPY(target_desc->string.pointer, buffer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
217 /* Set the new target length */
218
219 target_desc->string.length = length;
Len Brown4be44fc2005-08-05 00:44:28 -0400220 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}