blob: 411e1f8b11d0240b87d537de3965b95ce9fbc417 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: nsnames - Name manipulation and search
4 *
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#include <acpi/amlcode.h>
46#include <acpi/acnamesp.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("nsnames")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Robert Moore44f6c012005-04-18 22:49:35 -040051/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040052static void
Len Brown4be44fc2005-08-05 00:44:28 -040053acpi_ns_build_external_path(struct acpi_namespace_node *node,
54 acpi_size size, char *name_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*******************************************************************************
57 *
58 * FUNCTION: acpi_ns_build_external_path
59 *
60 * PARAMETERS: Node - NS node whose pathname is needed
61 * Size - Size of the pathname
62 * *name_buffer - Where to return the pathname
63 *
64 * RETURN: Places the pathname into the name_buffer, in external format
65 * (name segments separated by path separators)
66 *
67 * DESCRIPTION: Generate a full pathaname
68 *
69 ******************************************************************************/
70
Robert Moore44f6c012005-04-18 22:49:35 -040071static void
Len Brown4be44fc2005-08-05 00:44:28 -040072acpi_ns_build_external_path(struct acpi_namespace_node *node,
73 acpi_size size, char *name_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Len Brown4be44fc2005-08-05 00:44:28 -040075 acpi_size index;
76 struct acpi_namespace_node *parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Bob Moore4a90c7e2006-01-13 16:22:00 -050078 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 /* Special case for root */
81
82 index = size - 1;
83 if (index < ACPI_NAME_SIZE) {
84 name_buffer[0] = AML_ROOT_PREFIX;
85 name_buffer[1] = 0;
86 return;
87 }
88
89 /* Store terminator byte, then build name backwards */
90
91 parent_node = node;
92 name_buffer[index] = 0;
93
94 while ((index > ACPI_NAME_SIZE) && (parent_node != acpi_gbl_root_node)) {
95 index -= ACPI_NAME_SIZE;
96
97 /* Put the name into the buffer */
98
Len Brown4be44fc2005-08-05 00:44:28 -040099 ACPI_MOVE_32_TO_32((name_buffer + index), &parent_node->name);
100 parent_node = acpi_ns_get_parent_node(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 /* Prefix name with the path separator */
103
104 index--;
105 name_buffer[index] = ACPI_PATH_SEPARATOR;
106 }
107
108 /* Overwrite final separator with the root prefix character */
109
110 name_buffer[index] = AML_ROOT_PREFIX;
111
112 if (index != 0) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500113 ACPI_REPORT_ERROR(("Could not construct pathname; index=%X, size=%X, Path=%s\n", (u32) index, (u32) size, &name_buffer[size]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
116 return;
117}
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#ifdef ACPI_DEBUG_OUTPUT
120/*******************************************************************************
121 *
122 * FUNCTION: acpi_ns_get_external_pathname
123 *
Robert Moore44f6c012005-04-18 22:49:35 -0400124 * PARAMETERS: Node - Namespace node whose pathname is needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 *
126 * RETURN: Pointer to storage containing the fully qualified name of
127 * the node, In external format (name segments separated by path
128 * separators.)
129 *
130 * DESCRIPTION: Used for debug printing in acpi_ns_search_table().
131 *
132 ******************************************************************************/
133
Len Brown4be44fc2005-08-05 00:44:28 -0400134char *acpi_ns_get_external_pathname(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Len Brown4be44fc2005-08-05 00:44:28 -0400136 char *name_buffer;
137 acpi_size size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Len Brown4be44fc2005-08-05 00:44:28 -0400139 ACPI_FUNCTION_TRACE_PTR("ns_get_external_pathname", node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /* Calculate required buffer size based on depth below root */
142
Len Brown4be44fc2005-08-05 00:44:28 -0400143 size = acpi_ns_get_pathname_length(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* Allocate a buffer to be returned to caller */
146
Len Brown4be44fc2005-08-05 00:44:28 -0400147 name_buffer = ACPI_MEM_CALLOCATE(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (!name_buffer) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500149 ACPI_REPORT_ERROR(("Allocation failure\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400150 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152
153 /* Build the path in the allocated buffer */
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 acpi_ns_build_external_path(node, size, name_buffer);
156 return_PTR(name_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158#endif
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*******************************************************************************
161 *
162 * FUNCTION: acpi_ns_get_pathname_length
163 *
164 * PARAMETERS: Node - Namespace node
165 *
166 * RETURN: Length of path, including prefix
167 *
168 * DESCRIPTION: Get the length of the pathname string for this node
169 *
170 ******************************************************************************/
171
Len Brown4be44fc2005-08-05 00:44:28 -0400172acpi_size acpi_ns_get_pathname_length(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Len Brown4be44fc2005-08-05 00:44:28 -0400174 acpi_size size;
175 struct acpi_namespace_node *next_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Len Brown4be44fc2005-08-05 00:44:28 -0400177 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /*
180 * Compute length of pathname as 5 * number of name segments.
181 * Go back up the parent tree to the root
182 */
183 size = 0;
184 next_node = node;
185
186 while (next_node && (next_node != acpi_gbl_root_node)) {
187 size += ACPI_PATH_SEGMENT_LENGTH;
Len Brown4be44fc2005-08-05 00:44:28 -0400188 next_node = acpi_ns_get_parent_node(next_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 if (!size) {
Len Brown4be44fc2005-08-05 00:44:28 -0400192 size = 1; /* Root node case */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
Len Brown4be44fc2005-08-05 00:44:28 -0400195 return (size + 1); /* +1 for null string terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*******************************************************************************
199 *
200 * FUNCTION: acpi_ns_handle_to_pathname
201 *
202 * PARAMETERS: target_handle - Handle of named object whose name is
203 * to be found
204 * Buffer - Where the pathname is returned
205 *
206 * RETURN: Status, Buffer is filled with pathname if status is AE_OK
207 *
208 * DESCRIPTION: Build and return a full namespace pathname
209 *
210 ******************************************************************************/
211
212acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400213acpi_ns_handle_to_pathname(acpi_handle target_handle,
214 struct acpi_buffer * buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Len Brown4be44fc2005-08-05 00:44:28 -0400216 acpi_status status;
217 struct acpi_namespace_node *node;
218 acpi_size required_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Len Brown4be44fc2005-08-05 00:44:28 -0400220 ACPI_FUNCTION_TRACE_PTR("ns_handle_to_pathname", target_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Len Brown4be44fc2005-08-05 00:44:28 -0400222 node = acpi_ns_map_handle_to_node(target_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400224 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
227 /* Determine size required for the caller buffer */
228
Len Brown4be44fc2005-08-05 00:44:28 -0400229 required_size = acpi_ns_get_pathname_length(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /* Validate/Allocate/Clear caller buffer */
232
Len Brown4be44fc2005-08-05 00:44:28 -0400233 status = acpi_ut_initialize_buffer(buffer, required_size);
234 if (ACPI_FAILURE(status)) {
235 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 /* Build the path in the caller buffer */
239
Len Brown4be44fc2005-08-05 00:44:28 -0400240 acpi_ns_build_external_path(node, required_size, buffer->pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Bob Moore50eca3e2005-09-30 19:03:00 -0400242 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%s [%X]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400243 (char *)buffer->pointer, (u32) required_size));
244 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}