blob: 13324a27b99b3ea666807f6698bd0685a2a1dc28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
Robert Moore73459f72005-06-24 00:00:00 -04003 * Module Name: utalloc - local memory allocation routines
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *****************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acdebug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("utalloc")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Lv Zhengb3c86c32013-10-29 09:29:27 +080051#if !defined (USE_NATIVE_ALLOCATE_ZEROED)
52/*******************************************************************************
53 *
54 * FUNCTION: acpi_os_allocate_zeroed
55 *
56 * PARAMETERS: size - Size of the allocation
57 *
58 * RETURN: Address of the allocated memory on success, NULL on failure.
59 *
60 * DESCRIPTION: Subsystem equivalent of calloc. Allocate and zero memory.
61 * This is the default implementation. Can be overridden via the
62 * USE_NATIVE_ALLOCATE_ZEROED flag.
63 *
64 ******************************************************************************/
65void *acpi_os_allocate_zeroed(acpi_size size)
66{
67 void *allocation;
68
69 ACPI_FUNCTION_ENTRY();
70
71 allocation = acpi_os_allocate(size);
72 if (allocation) {
73
74 /* Clear the memory block */
75
Bob Moore4fa46162015-07-01 14:45:11 +080076 memset(allocation, 0, size);
Lv Zhengb3c86c32013-10-29 09:29:27 +080077 }
78
79 return (allocation);
80}
81
82#endif /* !USE_NATIVE_ALLOCATE_ZEROED */
83
Robert Moore44f6c012005-04-18 22:49:35 -040084/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 *
Robert Moore73459f72005-06-24 00:00:00 -040086 * FUNCTION: acpi_ut_create_caches
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 *
Robert Moore73459f72005-06-24 00:00:00 -040088 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 *
Robert Moore73459f72005-06-24 00:00:00 -040090 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 *
Robert Moore73459f72005-06-24 00:00:00 -040092 * DESCRIPTION: Create all local caches
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
94 ******************************************************************************/
Lv Zhengb3c86c32013-10-29 09:29:27 +080095
Len Brown4be44fc2005-08-05 00:44:28 -040096acpi_status acpi_ut_create_caches(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Len Brown4be44fc2005-08-05 00:44:28 -040098 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Robert Moore73459f72005-06-24 00:00:00 -0400100 /* Object Caches, for frequently used objects */
101
Len Brown4be44fc2005-08-05 00:44:28 -0400102 status =
Bob Moore616861242006-03-17 16:44:00 -0500103 acpi_os_create_cache("Acpi-Namespace",
104 sizeof(struct acpi_namespace_node),
105 ACPI_MAX_NAMESPACE_CACHE_DEPTH,
106 &acpi_gbl_namespace_cache);
107 if (ACPI_FAILURE(status)) {
108 return (status);
109 }
110
111 status =
112 acpi_os_create_cache("Acpi-State", sizeof(union acpi_generic_state),
Len Brown4be44fc2005-08-05 00:44:28 -0400113 ACPI_MAX_STATE_CACHE_DEPTH,
114 &acpi_gbl_state_cache);
115 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400116 return (status);
117 }
118
Len Brown4be44fc2005-08-05 00:44:28 -0400119 status =
Bob Moore616861242006-03-17 16:44:00 -0500120 acpi_os_create_cache("Acpi-Parse",
Len Brown4be44fc2005-08-05 00:44:28 -0400121 sizeof(struct acpi_parse_obj_common),
122 ACPI_MAX_PARSE_CACHE_DEPTH,
123 &acpi_gbl_ps_node_cache);
124 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400125 return (status);
126 }
127
Len Brown4be44fc2005-08-05 00:44:28 -0400128 status =
Bob Mooreb229cf92006-04-21 17:15:00 -0400129 acpi_os_create_cache("Acpi-ParseExt",
Len Brown4be44fc2005-08-05 00:44:28 -0400130 sizeof(struct acpi_parse_obj_named),
131 ACPI_MAX_EXTPARSE_CACHE_DEPTH,
132 &acpi_gbl_ps_node_ext_cache);
133 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400134 return (status);
135 }
136
Len Brown4be44fc2005-08-05 00:44:28 -0400137 status =
Bob Moore616861242006-03-17 16:44:00 -0500138 acpi_os_create_cache("Acpi-Operand",
Len Brown4be44fc2005-08-05 00:44:28 -0400139 sizeof(union acpi_operand_object),
140 ACPI_MAX_OBJECT_CACHE_DEPTH,
141 &acpi_gbl_operand_cache);
142 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400143 return (status);
144 }
Bob Moore41195322006-05-26 16:36:00 -0400145#ifdef ACPI_DBG_TRACK_ALLOCATIONS
146
147 /* Memory allocation lists */
148
149 status = acpi_ut_create_list("Acpi-Global", 0, &acpi_gbl_global_list);
150 if (ACPI_FAILURE(status)) {
151 return (status);
152 }
153
154 status =
155 acpi_ut_create_list("Acpi-Namespace",
156 sizeof(struct acpi_namespace_node),
157 &acpi_gbl_ns_node_list);
158 if (ACPI_FAILURE(status)) {
159 return (status);
160 }
161#endif
162
Robert Moore73459f72005-06-24 00:00:00 -0400163 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Robert Moore44f6c012005-04-18 22:49:35 -0400166/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
Robert Moore73459f72005-06-24 00:00:00 -0400168 * FUNCTION: acpi_ut_delete_caches
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 *
Robert Moore73459f72005-06-24 00:00:00 -0400170 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
Robert Moore73459f72005-06-24 00:00:00 -0400172 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *
Robert Moore73459f72005-06-24 00:00:00 -0400174 * DESCRIPTION: Purge and delete all local caches
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *
176 ******************************************************************************/
177
Len Brown4be44fc2005-08-05 00:44:28 -0400178acpi_status acpi_ut_delete_caches(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Bob Moored41eb992007-02-02 19:48:23 +0300180#ifdef ACPI_DBG_TRACK_ALLOCATIONS
181 char buffer[7];
182
183 if (acpi_gbl_display_final_mem_stats) {
Bob Moore4fa46162015-07-01 14:45:11 +0800184 strcpy(buffer, "MEMORY");
Bob Moore1d18c052008-04-10 19:06:40 +0400185 (void)acpi_db_display_statistics(buffer);
Bob Moored41eb992007-02-02 19:48:23 +0300186 }
187#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Bob Moore616861242006-03-17 16:44:00 -0500189 (void)acpi_os_delete_cache(acpi_gbl_namespace_cache);
190 acpi_gbl_namespace_cache = NULL;
191
Len Brown4be44fc2005-08-05 00:44:28 -0400192 (void)acpi_os_delete_cache(acpi_gbl_state_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400193 acpi_gbl_state_cache = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Len Brown4be44fc2005-08-05 00:44:28 -0400195 (void)acpi_os_delete_cache(acpi_gbl_operand_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400196 acpi_gbl_operand_cache = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Len Brown4be44fc2005-08-05 00:44:28 -0400198 (void)acpi_os_delete_cache(acpi_gbl_ps_node_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400199 acpi_gbl_ps_node_cache = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Len Brown4be44fc2005-08-05 00:44:28 -0400201 (void)acpi_os_delete_cache(acpi_gbl_ps_node_ext_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400202 acpi_gbl_ps_node_ext_cache = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Bob Moore41195322006-05-26 16:36:00 -0400204#ifdef ACPI_DBG_TRACK_ALLOCATIONS
205
206 /* Debug only - display leftover memory allocation, if any */
207
208 acpi_ut_dump_allocations(ACPI_UINT32_MAX, NULL);
209
210 /* Free memory lists */
211
Lv Zhengdba47d32013-10-31 09:31:00 +0800212 acpi_os_free(acpi_gbl_global_list);
Bob Moore41195322006-05-26 16:36:00 -0400213 acpi_gbl_global_list = NULL;
214
Lv Zhengdba47d32013-10-31 09:31:00 +0800215 acpi_os_free(acpi_gbl_ns_node_list);
Bob Moore41195322006-05-26 16:36:00 -0400216 acpi_gbl_ns_node_list = NULL;
217#endif
218
Robert Moore73459f72005-06-24 00:00:00 -0400219 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/*******************************************************************************
223 *
224 * FUNCTION: acpi_ut_validate_buffer
225 *
Bob Mooreba494be2012-07-12 09:40:10 +0800226 * PARAMETERS: buffer - Buffer descriptor to be validated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 *
228 * RETURN: Status
229 *
230 * DESCRIPTION: Perform parameter validation checks on an struct acpi_buffer
231 *
232 ******************************************************************************/
233
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800234acpi_status acpi_ut_validate_buffer(struct acpi_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236
237 /* Obviously, the structure pointer must be valid */
238
239 if (!buffer) {
240 return (AE_BAD_PARAMETER);
241 }
242
243 /* Special semantics for the length */
244
Len Brown4be44fc2005-08-05 00:44:28 -0400245 if ((buffer->length == ACPI_NO_BUFFER) ||
246 (buffer->length == ACPI_ALLOCATE_BUFFER) ||
247 (buffer->length == ACPI_ALLOCATE_LOCAL_BUFFER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return (AE_OK);
249 }
250
251 /* Length is valid, the buffer pointer must be also */
252
253 if (!buffer->pointer) {
254 return (AE_BAD_PARAMETER);
255 }
256
257 return (AE_OK);
258}
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260/*******************************************************************************
261 *
262 * FUNCTION: acpi_ut_initialize_buffer
263 *
Bob Mooreba494be2012-07-12 09:40:10 +0800264 * PARAMETERS: buffer - Buffer to be validated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 * required_length - Length needed
266 *
267 * RETURN: Status
268 *
269 * DESCRIPTION: Validate that the buffer is of the required length or
Bob Moore68e125c2008-09-27 11:34:48 +0800270 * allocate a new buffer. Returned buffer is always zeroed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
272 ******************************************************************************/
273
274acpi_status
Lv Zhengf5c1e1c2016-05-05 12:57:53 +0800275acpi_ut_initialize_buffer(struct acpi_buffer *buffer, acpi_size required_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Bob Moore68e125c2008-09-27 11:34:48 +0800277 acpi_size input_buffer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Bob Moore3c7db222008-08-04 11:13:01 +0800279 /* Parameter validation */
280
281 if (!buffer || !required_length) {
282 return (AE_BAD_PARAMETER);
Ingo Molnarf88133d2008-07-21 15:57:45 +0200283 }
Bob Moore3c7db222008-08-04 11:13:01 +0800284
Bob Moore68e125c2008-09-27 11:34:48 +0800285 /*
286 * Buffer->Length is used as both an input and output parameter. Get the
287 * input actual length and set the output required buffer length.
288 */
289 input_buffer_length = buffer->length;
290 buffer->length = required_length;
291
292 /*
293 * The input buffer length contains the actual buffer length, or the type
294 * of buffer to be allocated by this routine.
295 */
296 switch (input_buffer_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 case ACPI_NO_BUFFER:
298
Bob Moore68e125c2008-09-27 11:34:48 +0800299 /* Return the exception (and the required buffer length) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Bob Moore68e125c2008-09-27 11:34:48 +0800301 return (AE_BUFFER_OVERFLOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 case ACPI_ALLOCATE_BUFFER:
Lv Zhengbb3fec12014-01-08 13:43:23 +0800304 /*
305 * Allocate a new buffer. We directectly call acpi_os_allocate here to
306 * purposefully bypass the (optionally enabled) internal allocation
307 * tracking mechanism since we only want to track internal
308 * allocations. Note: The caller should use acpi_os_free to free this
309 * buffer created via ACPI_ALLOCATE_BUFFER.
310 */
Len Brown4be44fc2005-08-05 00:44:28 -0400311 buffer->pointer = acpi_os_allocate(required_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 break;
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 case ACPI_ALLOCATE_LOCAL_BUFFER:
315
316 /* Allocate a new buffer with local interface to allow tracking */
317
Bob Moore68e125c2008-09-27 11:34:48 +0800318 buffer->pointer = ACPI_ALLOCATE(required_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 default:
322
323 /* Existing buffer: Validate the size of the buffer */
324
Bob Moore68e125c2008-09-27 11:34:48 +0800325 if (input_buffer_length < required_length) {
326 return (AE_BUFFER_OVERFLOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 break;
329 }
330
Bob Moore68e125c2008-09-27 11:34:48 +0800331 /* Validate allocation from above or input buffer pointer */
332
333 if (!buffer->pointer) {
334 return (AE_NO_MEMORY);
335 }
336
337 /* Have a valid buffer, clear it */
338
Bob Moore4fa46162015-07-01 14:45:11 +0800339 memset(buffer->pointer, 0, required_length);
Bob Moore68e125c2008-09-27 11:34:48 +0800340 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}