1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: exstorob - AML object store support, store to object
6 * Copyright (C) 2000 - 2019, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
14 #define _COMPONENT ACPI_EXECUTER
15 ACPI_MODULE_NAME("exstorob")
17 /*******************************************************************************
19 * FUNCTION: acpi_ex_store_buffer_to_buffer
21 * PARAMETERS: source_desc - Source object to copy
22 * target_desc - Destination object of the copy
26 * DESCRIPTION: Copy a buffer object to another buffer object.
28 ******************************************************************************/
30 acpi_ex_store_buffer_to_buffer(union acpi_operand_object
*source_desc
,
31 union acpi_operand_object
*target_desc
)
36 ACPI_FUNCTION_TRACE_PTR(ex_store_buffer_to_buffer
, source_desc
);
38 /* If Source and Target are the same, just return */
40 if (source_desc
== target_desc
) {
41 return_ACPI_STATUS(AE_OK
);
44 /* We know that source_desc is a buffer by now */
46 buffer
= ACPI_CAST_PTR(u8
, source_desc
->buffer
.pointer
);
47 length
= source_desc
->buffer
.length
;
50 * If target is a buffer of length zero or is a static buffer,
51 * allocate a new buffer of the proper length
53 if ((target_desc
->buffer
.length
== 0) ||
54 (target_desc
->common
.flags
& AOPOBJ_STATIC_POINTER
)) {
55 target_desc
->buffer
.pointer
= ACPI_ALLOCATE(length
);
56 if (!target_desc
->buffer
.pointer
) {
57 return_ACPI_STATUS(AE_NO_MEMORY
);
60 target_desc
->buffer
.length
= length
;
63 /* Copy source buffer to target buffer */
65 if (length
<= target_desc
->buffer
.length
) {
67 /* Clear existing buffer and copy in the new one */
69 memset(target_desc
->buffer
.pointer
, 0,
70 target_desc
->buffer
.length
);
71 memcpy(target_desc
->buffer
.pointer
, buffer
, length
);
73 #ifdef ACPI_OBSOLETE_BEHAVIOR
75 * NOTE: ACPI versions up to 3.0 specified that the buffer must be
76 * truncated if the string is smaller than the buffer. However, "other"
77 * implementations of ACPI never did this and thus became the defacto
78 * standard. ACPI 3.0A changes this behavior such that the buffer
79 * is no longer truncated.
84 * If the original source was a string, we must truncate the buffer,
85 * according to the ACPI spec. Integer-to-Buffer and Buffer-to-Buffer
86 * copy must not truncate the original buffer.
88 if (original_src_type
== ACPI_TYPE_STRING
) {
90 /* Set the new length of the target */
92 target_desc
->buffer
.length
= length
;
96 /* Truncate the source, copy only what will fit */
98 memcpy(target_desc
->buffer
.pointer
, buffer
,
99 target_desc
->buffer
.length
);
101 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
102 "Truncating source buffer from %X to %X\n",
103 length
, target_desc
->buffer
.length
));
108 target_desc
->buffer
.flags
= source_desc
->buffer
.flags
;
109 target_desc
->common
.flags
&= ~AOPOBJ_STATIC_POINTER
;
110 return_ACPI_STATUS(AE_OK
);
113 /*******************************************************************************
115 * FUNCTION: acpi_ex_store_string_to_string
117 * PARAMETERS: source_desc - Source object to copy
118 * target_desc - Destination object of the copy
122 * DESCRIPTION: Copy a String object to another String object
124 ******************************************************************************/
127 acpi_ex_store_string_to_string(union acpi_operand_object
*source_desc
,
128 union acpi_operand_object
*target_desc
)
133 ACPI_FUNCTION_TRACE_PTR(ex_store_string_to_string
, source_desc
);
135 /* If Source and Target are the same, just return */
137 if (source_desc
== target_desc
) {
138 return_ACPI_STATUS(AE_OK
);
141 /* We know that source_desc is a string by now */
143 buffer
= ACPI_CAST_PTR(u8
, source_desc
->string
.pointer
);
144 length
= source_desc
->string
.length
;
147 * Replace existing string value if it will fit and the string
148 * pointer is not a static pointer (part of an ACPI table)
150 if ((length
< target_desc
->string
.length
) &&
151 (!(target_desc
->common
.flags
& AOPOBJ_STATIC_POINTER
))) {
153 * String will fit in existing non-static buffer.
154 * Clear old string and copy in the new one
156 memset(target_desc
->string
.pointer
, 0,
157 (acpi_size
)target_desc
->string
.length
+ 1);
158 memcpy(target_desc
->string
.pointer
, buffer
, length
);
161 * Free the current buffer, then allocate a new buffer
162 * large enough to hold the value
164 if (target_desc
->string
.pointer
&&
165 (!(target_desc
->common
.flags
& AOPOBJ_STATIC_POINTER
))) {
167 /* Only free if not a pointer into the DSDT */
169 ACPI_FREE(target_desc
->string
.pointer
);
172 target_desc
->string
.pointer
=
173 ACPI_ALLOCATE_ZEROED((acpi_size
)length
+ 1);
175 if (!target_desc
->string
.pointer
) {
176 return_ACPI_STATUS(AE_NO_MEMORY
);
179 target_desc
->common
.flags
&= ~AOPOBJ_STATIC_POINTER
;
180 memcpy(target_desc
->string
.pointer
, buffer
, length
);
183 /* Set the new target length */
185 target_desc
->string
.length
= length
;
186 return_ACPI_STATUS(AE_OK
);