blob: cffef1bcbdbc3dde9db746c19be2314a6bc67d0c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: nsnames - Name manipulation and search
4 *
5 ******************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, 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>
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*******************************************************************************
52 *
53 * FUNCTION: acpi_ns_build_external_path
54 *
55 * PARAMETERS: Node - NS node whose pathname is needed
56 * Size - Size of the pathname
57 * *name_buffer - Where to return the pathname
58 *
59 * RETURN: Places the pathname into the name_buffer, in external format
60 * (name segments separated by path separators)
61 *
62 * DESCRIPTION: Generate a full pathaname
63 *
64 ******************************************************************************/
Bob Moore83135242006-10-03 00:00:00 -040065void
Len Brown4be44fc2005-08-05 00:44:28 -040066acpi_ns_build_external_path(struct acpi_namespace_node *node,
67 acpi_size size, char *name_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Len Brown4be44fc2005-08-05 00:44:28 -040069 acpi_size index;
70 struct acpi_namespace_node *parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Bob Moore4a90c7e2006-01-13 16:22:00 -050072 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 /* Special case for root */
75
76 index = size - 1;
77 if (index < ACPI_NAME_SIZE) {
78 name_buffer[0] = AML_ROOT_PREFIX;
79 name_buffer[1] = 0;
80 return;
81 }
82
83 /* Store terminator byte, then build name backwards */
84
85 parent_node = node;
86 name_buffer[index] = 0;
87
88 while ((index > ACPI_NAME_SIZE) && (parent_node != acpi_gbl_root_node)) {
89 index -= ACPI_NAME_SIZE;
90
91 /* Put the name into the buffer */
92
Len Brown4be44fc2005-08-05 00:44:28 -040093 ACPI_MOVE_32_TO_32((name_buffer + index), &parent_node->name);
94 parent_node = acpi_ns_get_parent_node(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 /* Prefix name with the path separator */
97
98 index--;
99 name_buffer[index] = ACPI_PATH_SEPARATOR;
100 }
101
102 /* Overwrite final separator with the root prefix character */
103
104 name_buffer[index] = AML_ROOT_PREFIX;
105
106 if (index != 0) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500107 ACPI_ERROR((AE_INFO,
108 "Could not construct pathname; index=%X, size=%X, Path=%s",
109 (u32) index, (u32) size, &name_buffer[size]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111
112 return;
113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#ifdef ACPI_DEBUG_OUTPUT
116/*******************************************************************************
117 *
118 * FUNCTION: acpi_ns_get_external_pathname
119 *
Robert Moore44f6c012005-04-18 22:49:35 -0400120 * PARAMETERS: Node - Namespace node whose pathname is needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
122 * RETURN: Pointer to storage containing the fully qualified name of
123 * the node, In external format (name segments separated by path
124 * separators.)
125 *
126 * DESCRIPTION: Used for debug printing in acpi_ns_search_table().
127 *
128 ******************************************************************************/
129
Len Brown4be44fc2005-08-05 00:44:28 -0400130char *acpi_ns_get_external_pathname(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Len Brown4be44fc2005-08-05 00:44:28 -0400132 char *name_buffer;
133 acpi_size size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Bob Mooreb229cf92006-04-21 17:15:00 -0400135 ACPI_FUNCTION_TRACE_PTR(ns_get_external_pathname, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 /* Calculate required buffer size based on depth below root */
138
Len Brown4be44fc2005-08-05 00:44:28 -0400139 size = acpi_ns_get_pathname_length(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /* Allocate a buffer to be returned to caller */
142
Bob Moore83135242006-10-03 00:00:00 -0400143 name_buffer = ACPI_ALLOCATE_ZEROED(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!name_buffer) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500145 ACPI_ERROR((AE_INFO, "Allocation failure"));
Len Brown4be44fc2005-08-05 00:44:28 -0400146 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148
149 /* Build the path in the allocated buffer */
150
Len Brown4be44fc2005-08-05 00:44:28 -0400151 acpi_ns_build_external_path(node, size, name_buffer);
152 return_PTR(name_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154#endif
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*******************************************************************************
157 *
158 * FUNCTION: acpi_ns_get_pathname_length
159 *
160 * PARAMETERS: Node - Namespace node
161 *
162 * RETURN: Length of path, including prefix
163 *
164 * DESCRIPTION: Get the length of the pathname string for this node
165 *
166 ******************************************************************************/
167
Len Brown4be44fc2005-08-05 00:44:28 -0400168acpi_size acpi_ns_get_pathname_length(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Len Brown4be44fc2005-08-05 00:44:28 -0400170 acpi_size size;
171 struct acpi_namespace_node *next_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Len Brown4be44fc2005-08-05 00:44:28 -0400173 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /*
176 * Compute length of pathname as 5 * number of name segments.
177 * Go back up the parent tree to the root
178 */
179 size = 0;
180 next_node = node;
181
182 while (next_node && (next_node != acpi_gbl_root_node)) {
Bob Moored8841642008-04-10 19:06:39 +0400183 if (ACPI_GET_DESCRIPTOR_TYPE(next_node) != ACPI_DESC_TYPE_NAMED) {
184 ACPI_ERROR((AE_INFO,
Bob Moore1d18c052008-04-10 19:06:40 +0400185 "Invalid NS Node (%p) while traversing path",
Bob Moored8841642008-04-10 19:06:39 +0400186 next_node));
187 return 0;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 size += ACPI_PATH_SEGMENT_LENGTH;
Len Brown4be44fc2005-08-05 00:44:28 -0400190 next_node = acpi_ns_get_parent_node(next_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
193 if (!size) {
Len Brown4be44fc2005-08-05 00:44:28 -0400194 size = 1; /* Root node case */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
Len Brown4be44fc2005-08-05 00:44:28 -0400197 return (size + 1); /* +1 for null string terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/*******************************************************************************
201 *
202 * FUNCTION: acpi_ns_handle_to_pathname
203 *
204 * PARAMETERS: target_handle - Handle of named object whose name is
205 * to be found
206 * Buffer - Where the pathname is returned
207 *
208 * RETURN: Status, Buffer is filled with pathname if status is AE_OK
209 *
210 * DESCRIPTION: Build and return a full namespace pathname
211 *
212 ******************************************************************************/
213
214acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400215acpi_ns_handle_to_pathname(acpi_handle target_handle,
216 struct acpi_buffer * buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Len Brown4be44fc2005-08-05 00:44:28 -0400218 acpi_status status;
219 struct acpi_namespace_node *node;
220 acpi_size required_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Bob Mooreb229cf92006-04-21 17:15:00 -0400222 ACPI_FUNCTION_TRACE_PTR(ns_handle_to_pathname, target_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Len Brown4be44fc2005-08-05 00:44:28 -0400224 node = acpi_ns_map_handle_to_node(target_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (!node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400226 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228
229 /* Determine size required for the caller buffer */
230
Len Brown4be44fc2005-08-05 00:44:28 -0400231 required_size = acpi_ns_get_pathname_length(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /* Validate/Allocate/Clear caller buffer */
234
Len Brown4be44fc2005-08-05 00:44:28 -0400235 status = acpi_ut_initialize_buffer(buffer, required_size);
236 if (ACPI_FAILURE(status)) {
237 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239
240 /* Build the path in the caller buffer */
241
Len Brown4be44fc2005-08-05 00:44:28 -0400242 acpi_ns_build_external_path(node, required_size, buffer->pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Bob Moore50eca3e2005-09-30 19:03:00 -0400244 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%s [%X]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400245 (char *)buffer->pointer, (u32) required_size));
246 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}