blob: 3b29aecaaca59c9871fc56bfcfecc621395e0443 [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 Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
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>
45
46#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040047ACPI_MODULE_NAME("utalloc")
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Robert Moore44f6c012005-04-18 22:49:35 -040049/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 *
Robert Moore73459f72005-06-24 00:00:00 -040051 * FUNCTION: acpi_ut_create_caches
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 *
Robert Moore73459f72005-06-24 00:00:00 -040053 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 *
Robert Moore73459f72005-06-24 00:00:00 -040055 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 *
Robert Moore73459f72005-06-24 00:00:00 -040057 * DESCRIPTION: Create all local caches
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
59 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040060acpi_status acpi_ut_create_caches(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Len Brown4be44fc2005-08-05 00:44:28 -040062 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#ifdef ACPI_DBG_TRACK_ALLOCATIONS
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Robert Moore73459f72005-06-24 00:00:00 -040066 /* Memory allocation lists */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Len Brown4be44fc2005-08-05 00:44:28 -040068 status = acpi_ut_create_list("Acpi-Global", 0, &acpi_gbl_global_list);
69 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -040070 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 }
72
Len Brown4be44fc2005-08-05 00:44:28 -040073 status =
74 acpi_ut_create_list("Acpi-Namespace",
75 sizeof(struct acpi_namespace_node),
76 &acpi_gbl_ns_node_list);
77 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -040078 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#endif
81
Robert Moore73459f72005-06-24 00:00:00 -040082 /* Object Caches, for frequently used objects */
83
Len Brown4be44fc2005-08-05 00:44:28 -040084 status =
Bob Moore616861242006-03-17 16:44:00 -050085 acpi_os_create_cache("Acpi-Namespace",
86 sizeof(struct acpi_namespace_node),
87 ACPI_MAX_NAMESPACE_CACHE_DEPTH,
88 &acpi_gbl_namespace_cache);
89 if (ACPI_FAILURE(status)) {
90 return (status);
91 }
92
93 status =
94 acpi_os_create_cache("Acpi-State", sizeof(union acpi_generic_state),
Len Brown4be44fc2005-08-05 00:44:28 -040095 ACPI_MAX_STATE_CACHE_DEPTH,
96 &acpi_gbl_state_cache);
97 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -040098 return (status);
99 }
100
Len Brown4be44fc2005-08-05 00:44:28 -0400101 status =
Bob Moore616861242006-03-17 16:44:00 -0500102 acpi_os_create_cache("Acpi-Parse",
Len Brown4be44fc2005-08-05 00:44:28 -0400103 sizeof(struct acpi_parse_obj_common),
104 ACPI_MAX_PARSE_CACHE_DEPTH,
105 &acpi_gbl_ps_node_cache);
106 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400107 return (status);
108 }
109
Len Brown4be44fc2005-08-05 00:44:28 -0400110 status =
Bob Moore616861242006-03-17 16:44:00 -0500111 acpi_os_create_cache("Acpi-parse_ext",
Len Brown4be44fc2005-08-05 00:44:28 -0400112 sizeof(struct acpi_parse_obj_named),
113 ACPI_MAX_EXTPARSE_CACHE_DEPTH,
114 &acpi_gbl_ps_node_ext_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-Operand",
Len Brown4be44fc2005-08-05 00:44:28 -0400121 sizeof(union acpi_operand_object),
122 ACPI_MAX_OBJECT_CACHE_DEPTH,
123 &acpi_gbl_operand_cache);
124 if (ACPI_FAILURE(status)) {
Robert Moore73459f72005-06-24 00:00:00 -0400125 return (status);
126 }
127
128 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Robert Moore44f6c012005-04-18 22:49:35 -0400131/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 *
Robert Moore73459f72005-06-24 00:00:00 -0400133 * FUNCTION: acpi_ut_delete_caches
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 *
Robert Moore73459f72005-06-24 00:00:00 -0400135 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 *
Robert Moore73459f72005-06-24 00:00:00 -0400137 * RETURN: Status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
Robert Moore73459f72005-06-24 00:00:00 -0400139 * DESCRIPTION: Purge and delete all local caches
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 *
141 ******************************************************************************/
142
Len Brown4be44fc2005-08-05 00:44:28 -0400143acpi_status acpi_ut_delete_caches(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Bob Moore616861242006-03-17 16:44:00 -0500146 (void)acpi_os_delete_cache(acpi_gbl_namespace_cache);
147 acpi_gbl_namespace_cache = NULL;
148
Len Brown4be44fc2005-08-05 00:44:28 -0400149 (void)acpi_os_delete_cache(acpi_gbl_state_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400150 acpi_gbl_state_cache = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Len Brown4be44fc2005-08-05 00:44:28 -0400152 (void)acpi_os_delete_cache(acpi_gbl_operand_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400153 acpi_gbl_operand_cache = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 (void)acpi_os_delete_cache(acpi_gbl_ps_node_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400156 acpi_gbl_ps_node_cache = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Len Brown4be44fc2005-08-05 00:44:28 -0400158 (void)acpi_os_delete_cache(acpi_gbl_ps_node_ext_cache);
Robert Moore73459f72005-06-24 00:00:00 -0400159 acpi_gbl_ps_node_ext_cache = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Robert Moore73459f72005-06-24 00:00:00 -0400161 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/*******************************************************************************
165 *
166 * FUNCTION: acpi_ut_validate_buffer
167 *
168 * PARAMETERS: Buffer - Buffer descriptor to be validated
169 *
170 * RETURN: Status
171 *
172 * DESCRIPTION: Perform parameter validation checks on an struct acpi_buffer
173 *
174 ******************************************************************************/
175
Len Brown4be44fc2005-08-05 00:44:28 -0400176acpi_status acpi_ut_validate_buffer(struct acpi_buffer * buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178
179 /* Obviously, the structure pointer must be valid */
180
181 if (!buffer) {
182 return (AE_BAD_PARAMETER);
183 }
184
185 /* Special semantics for the length */
186
Len Brown4be44fc2005-08-05 00:44:28 -0400187 if ((buffer->length == ACPI_NO_BUFFER) ||
188 (buffer->length == ACPI_ALLOCATE_BUFFER) ||
189 (buffer->length == ACPI_ALLOCATE_LOCAL_BUFFER)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return (AE_OK);
191 }
192
193 /* Length is valid, the buffer pointer must be also */
194
195 if (!buffer->pointer) {
196 return (AE_BAD_PARAMETER);
197 }
198
199 return (AE_OK);
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*******************************************************************************
203 *
204 * FUNCTION: acpi_ut_initialize_buffer
205 *
206 * PARAMETERS: Buffer - Buffer to be validated
207 * required_length - Length needed
208 *
209 * RETURN: Status
210 *
211 * DESCRIPTION: Validate that the buffer is of the required length or
212 * allocate a new buffer. Returned buffer is always zeroed.
213 *
214 ******************************************************************************/
215
216acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400217acpi_ut_initialize_buffer(struct acpi_buffer * buffer,
218 acpi_size required_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Len Brown4be44fc2005-08-05 00:44:28 -0400220 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 switch (buffer->length) {
223 case ACPI_NO_BUFFER:
224
225 /* Set the exception and returned the required length */
226
227 status = AE_BUFFER_OVERFLOW;
228 break;
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 case ACPI_ALLOCATE_BUFFER:
231
232 /* Allocate a new buffer */
233
Len Brown4be44fc2005-08-05 00:44:28 -0400234 buffer->pointer = acpi_os_allocate(required_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (!buffer->pointer) {
236 return (AE_NO_MEMORY);
237 }
238
239 /* Clear the buffer */
240
Len Brown4be44fc2005-08-05 00:44:28 -0400241 ACPI_MEMSET(buffer->pointer, 0, required_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 case ACPI_ALLOCATE_LOCAL_BUFFER:
245
246 /* Allocate a new buffer with local interface to allow tracking */
247
Bob Moore83135242006-10-03 00:00:00 -0400248 buffer->pointer = ACPI_ALLOCATE_ZEROED(required_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (!buffer->pointer) {
250 return (AE_NO_MEMORY);
251 }
252 break;
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 default:
255
256 /* Existing buffer: Validate the size of the buffer */
257
258 if (buffer->length < required_length) {
259 status = AE_BUFFER_OVERFLOW;
260 break;
261 }
262
263 /* Clear the buffer */
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265 ACPI_MEMSET(buffer->pointer, 0, required_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 break;
267 }
268
269 buffer->length = required_length;
270 return (status);
271}
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273/*******************************************************************************
274 *
275 * FUNCTION: acpi_ut_allocate
276 *
277 * PARAMETERS: Size - Size of the allocation
278 * Component - Component type of caller
279 * Module - Source file name of caller
280 * Line - Line number of caller
281 *
282 * RETURN: Address of the allocated memory on success, NULL on failure.
283 *
Bob Moore616861242006-03-17 16:44:00 -0500284 * DESCRIPTION: Subsystem equivalent of malloc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 *
286 ******************************************************************************/
287
Len Brown4be44fc2005-08-05 00:44:28 -0400288void *acpi_ut_allocate(acpi_size size, u32 component, char *module, u32 line)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Len Brown4be44fc2005-08-05 00:44:28 -0400290 void *allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Len Brown4be44fc2005-08-05 00:44:28 -0400292 ACPI_FUNCTION_TRACE_U32("ut_allocate", size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /* Check for an inadvertent size of zero bytes */
295
296 if (!size) {
Bob Moore616861242006-03-17 16:44:00 -0500297 ACPI_WARNING((module, line,
298 "Attempt to allocate zero bytes, allocating 1 byte"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 size = 1;
300 }
301
Len Brown4be44fc2005-08-05 00:44:28 -0400302 allocation = acpi_os_allocate(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (!allocation) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* Report allocation error */
306
Bob Moore616861242006-03-17 16:44:00 -0500307 ACPI_WARNING((module, line,
308 "Could not allocate size %X", (u32) size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Len Brown4be44fc2005-08-05 00:44:28 -0400310 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
Len Brown4be44fc2005-08-05 00:44:28 -0400313 return_PTR(allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/*******************************************************************************
317 *
Bob Moore616861242006-03-17 16:44:00 -0500318 * FUNCTION: acpi_ut_allocate_zeroed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *
320 * PARAMETERS: Size - Size of the allocation
321 * Component - Component type of caller
322 * Module - Source file name of caller
323 * Line - Line number of caller
324 *
325 * RETURN: Address of the allocated memory on success, NULL on failure.
326 *
Bob Moore616861242006-03-17 16:44:00 -0500327 * DESCRIPTION: Subsystem equivalent of calloc. Allocate and zero memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 *
329 ******************************************************************************/
330
Bob Moore616861242006-03-17 16:44:00 -0500331void *acpi_ut_allocate_zeroed(acpi_size size,
332 u32 component, char *module, u32 line)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Len Brown4be44fc2005-08-05 00:44:28 -0400334 void *allocation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Len Brown4be44fc2005-08-05 00:44:28 -0400336 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Bob Moore616861242006-03-17 16:44:00 -0500338 allocation = acpi_ut_allocate(size, component, module, line);
339 if (allocation) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Bob Moore616861242006-03-17 16:44:00 -0500341 /* Clear the memory block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Bob Moore616861242006-03-17 16:44:00 -0500343 ACPI_MEMSET(allocation, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
Bob Moore616861242006-03-17 16:44:00 -0500346 return (allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}