• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*******************************************************************************
2  *
3  * Module Name: nsobject - Utilities for objects attached to namespace
4  *                         table entries
5  *
6  ******************************************************************************/
7 
8 /*
9  * Copyright (C) 2000 - 2017, Intel Corp.
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions, and the following disclaimer,
17  *    without modification.
18  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19  *    substantially similar to the "NO WARRANTY" disclaimer below
20  *    ("Disclaimer") and any redistribution must be conditioned upon
21  *    including a substantially similar Disclaimer requirement for further
22  *    binary redistribution.
23  * 3. Neither the names of the above-listed copyright holders nor the names
24  *    of any contributors may be used to endorse or promote products derived
25  *    from this software without specific prior written permission.
26  *
27  * Alternatively, this software may be distributed under the terms of the
28  * GNU General Public License ("GPL") version 2 as published by the Free
29  * Software Foundation.
30  *
31  * NO WARRANTY
32  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42  * POSSIBILITY OF SUCH DAMAGES.
43  */
44 
45 #include <acpi/acpi.h>
46 #include "accommon.h"
47 #include "acnamesp.h"
48 
49 #define _COMPONENT          ACPI_NAMESPACE
50 ACPI_MODULE_NAME("nsobject")
51 
52 /*******************************************************************************
53  *
54  * FUNCTION:    acpi_ns_attach_object
55  *
56  * PARAMETERS:  node                - Parent Node
57  *              object              - Object to be attached
58  *              type                - Type of object, or ACPI_TYPE_ANY if not
59  *                                    known
60  *
61  * RETURN:      Status
62  *
63  * DESCRIPTION: Record the given object as the value associated with the
64  *              name whose acpi_handle is passed. If Object is NULL
65  *              and Type is ACPI_TYPE_ANY, set the name as having no value.
66  *              Note: Future may require that the Node->Flags field be passed
67  *              as a parameter.
68  *
69  * MUTEX:       Assumes namespace is locked
70  *
71  ******************************************************************************/
72 acpi_status
acpi_ns_attach_object(struct acpi_namespace_node * node,union acpi_operand_object * object,acpi_object_type type)73 acpi_ns_attach_object(struct acpi_namespace_node *node,
74 		      union acpi_operand_object *object, acpi_object_type type)
75 {
76 	union acpi_operand_object *obj_desc;
77 	union acpi_operand_object *last_obj_desc;
78 	acpi_object_type object_type = ACPI_TYPE_ANY;
79 
80 	ACPI_FUNCTION_TRACE(ns_attach_object);
81 
82 	/*
83 	 * Parameter validation
84 	 */
85 	if (!node) {
86 
87 		/* Invalid handle */
88 
89 		ACPI_ERROR((AE_INFO, "Null NamedObj handle"));
90 		return_ACPI_STATUS(AE_BAD_PARAMETER);
91 	}
92 
93 	if (!object && (ACPI_TYPE_ANY != type)) {
94 
95 		/* Null object */
96 
97 		ACPI_ERROR((AE_INFO,
98 			    "Null object, but type not ACPI_TYPE_ANY"));
99 		return_ACPI_STATUS(AE_BAD_PARAMETER);
100 	}
101 
102 	if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) {
103 
104 		/* Not a name handle */
105 
106 		ACPI_ERROR((AE_INFO, "Invalid handle %p [%s]",
107 			    node, acpi_ut_get_descriptor_name(node)));
108 		return_ACPI_STATUS(AE_BAD_PARAMETER);
109 	}
110 
111 	/* Check if this object is already attached */
112 
113 	if (node->object == object) {
114 		ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
115 				  "Obj %p already installed in NameObj %p\n",
116 				  object, node));
117 
118 		return_ACPI_STATUS(AE_OK);
119 	}
120 
121 	/* If null object, we will just install it */
122 
123 	if (!object) {
124 		obj_desc = NULL;
125 		object_type = ACPI_TYPE_ANY;
126 	}
127 
128 	/*
129 	 * If the source object is a namespace Node with an attached object,
130 	 * we will use that (attached) object
131 	 */
132 	else if ((ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED) &&
133 		 ((struct acpi_namespace_node *)object)->object) {
134 		/*
135 		 * Value passed is a name handle and that name has a
136 		 * non-null value. Use that name's value and type.
137 		 */
138 		obj_desc = ((struct acpi_namespace_node *)object)->object;
139 		object_type = ((struct acpi_namespace_node *)object)->type;
140 	}
141 
142 	/*
143 	 * Otherwise, we will use the parameter object, but we must type
144 	 * it first
145 	 */
146 	else {
147 		obj_desc = (union acpi_operand_object *)object;
148 
149 		/* Use the given type */
150 
151 		object_type = type;
152 	}
153 
154 	ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Installing %p into Node %p [%4.4s]\n",
155 			  obj_desc, node, acpi_ut_get_node_name(node)));
156 
157 	/* Detach an existing attached object if present */
158 
159 	if (node->object) {
160 		acpi_ns_detach_object(node);
161 	}
162 
163 	if (obj_desc) {
164 		/*
165 		 * Must increment the new value's reference count
166 		 * (if it is an internal object)
167 		 */
168 		acpi_ut_add_reference(obj_desc);
169 
170 		/*
171 		 * Handle objects with multiple descriptors - walk
172 		 * to the end of the descriptor list
173 		 */
174 		last_obj_desc = obj_desc;
175 		while (last_obj_desc->common.next_object) {
176 			last_obj_desc = last_obj_desc->common.next_object;
177 		}
178 
179 		/* Install the object at the front of the object list */
180 
181 		last_obj_desc->common.next_object = node->object;
182 	}
183 
184 	node->type = (u8) object_type;
185 	node->object = obj_desc;
186 
187 	return_ACPI_STATUS(AE_OK);
188 }
189 
190 /*******************************************************************************
191  *
192  * FUNCTION:    acpi_ns_detach_object
193  *
194  * PARAMETERS:  node           - A Namespace node whose object will be detached
195  *
196  * RETURN:      None.
197  *
198  * DESCRIPTION: Detach/delete an object associated with a namespace node.
199  *              if the object is an allocated object, it is freed.
200  *              Otherwise, the field is simply cleared.
201  *
202  ******************************************************************************/
203 
acpi_ns_detach_object(struct acpi_namespace_node * node)204 void acpi_ns_detach_object(struct acpi_namespace_node *node)
205 {
206 	union acpi_operand_object *obj_desc;
207 
208 	ACPI_FUNCTION_TRACE(ns_detach_object);
209 
210 	obj_desc = node->object;
211 
212 	if (!obj_desc || (obj_desc->common.type == ACPI_TYPE_LOCAL_DATA)) {
213 		return_VOID;
214 	}
215 
216 	if (node->flags & ANOBJ_ALLOCATED_BUFFER) {
217 
218 		/* Free the dynamic aml buffer */
219 
220 		if (obj_desc->common.type == ACPI_TYPE_METHOD) {
221 			ACPI_FREE(obj_desc->method.aml_start);
222 		}
223 	}
224 
225 	if (obj_desc->common.type == ACPI_TYPE_REGION) {
226 		acpi_ut_remove_address_range(obj_desc->region.space_id, node);
227 	}
228 
229 	/* Clear the Node entry in all cases */
230 
231 	node->object = NULL;
232 	if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_OPERAND) {
233 
234 		/* Unlink object from front of possible object list */
235 
236 		node->object = obj_desc->common.next_object;
237 
238 		/* Handle possible 2-descriptor object */
239 
240 		if (node->object &&
241 		    (node->object->common.type != ACPI_TYPE_LOCAL_DATA)) {
242 			node->object = node->object->common.next_object;
243 		}
244 
245 		/*
246 		 * Detach the object from any data objects (which are still held by
247 		 * the namespace node)
248 		 */
249 		if (obj_desc->common.next_object &&
250 		    ((obj_desc->common.next_object)->common.type ==
251 		     ACPI_TYPE_LOCAL_DATA)) {
252 			obj_desc->common.next_object = NULL;
253 		}
254 	}
255 
256 	/* Reset the node type to untyped */
257 
258 	node->type = ACPI_TYPE_ANY;
259 
260 	ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "Node %p [%4.4s] Object %p\n",
261 			  node, acpi_ut_get_node_name(node), obj_desc));
262 
263 	/* Remove one reference on the object (and all subobjects) */
264 
265 	acpi_ut_remove_reference(obj_desc);
266 	return_VOID;
267 }
268 
269 /*******************************************************************************
270  *
271  * FUNCTION:    acpi_ns_get_attached_object
272  *
273  * PARAMETERS:  node             - Namespace node
274  *
275  * RETURN:      Current value of the object field from the Node whose
276  *              handle is passed
277  *
278  * DESCRIPTION: Obtain the object attached to a namespace node.
279  *
280  ******************************************************************************/
281 
acpi_ns_get_attached_object(struct acpi_namespace_node * node)282 union acpi_operand_object *acpi_ns_get_attached_object(struct
283 						       acpi_namespace_node
284 						       *node)
285 {
286 	ACPI_FUNCTION_TRACE_PTR(ns_get_attached_object, node);
287 
288 	if (!node) {
289 		ACPI_WARNING((AE_INFO, "Null Node ptr"));
290 		return_PTR(NULL);
291 	}
292 
293 	if (!node->object ||
294 	    ((ACPI_GET_DESCRIPTOR_TYPE(node->object) != ACPI_DESC_TYPE_OPERAND)
295 	     && (ACPI_GET_DESCRIPTOR_TYPE(node->object) !=
296 		 ACPI_DESC_TYPE_NAMED))
297 	    || ((node->object)->common.type == ACPI_TYPE_LOCAL_DATA)) {
298 		return_PTR(NULL);
299 	}
300 
301 	return_PTR(node->object);
302 }
303 
304 /*******************************************************************************
305  *
306  * FUNCTION:    acpi_ns_get_secondary_object
307  *
308  * PARAMETERS:  node             - Namespace node
309  *
310  * RETURN:      Current value of the object field from the Node whose
311  *              handle is passed.
312  *
313  * DESCRIPTION: Obtain a secondary object associated with a namespace node.
314  *
315  ******************************************************************************/
316 
acpi_ns_get_secondary_object(union acpi_operand_object * obj_desc)317 union acpi_operand_object *acpi_ns_get_secondary_object(union
318 							acpi_operand_object
319 							*obj_desc)
320 {
321 	ACPI_FUNCTION_TRACE_PTR(ns_get_secondary_object, obj_desc);
322 
323 	if ((!obj_desc) ||
324 	    (obj_desc->common.type == ACPI_TYPE_LOCAL_DATA) ||
325 	    (!obj_desc->common.next_object) ||
326 	    ((obj_desc->common.next_object)->common.type ==
327 	     ACPI_TYPE_LOCAL_DATA)) {
328 		return_PTR(NULL);
329 	}
330 
331 	return_PTR(obj_desc->common.next_object);
332 }
333 
334 /*******************************************************************************
335  *
336  * FUNCTION:    acpi_ns_attach_data
337  *
338  * PARAMETERS:  node            - Namespace node
339  *              handler         - Handler to be associated with the data
340  *              data            - Data to be attached
341  *
342  * RETURN:      Status
343  *
344  * DESCRIPTION: Low-level attach data. Create and attach a Data object.
345  *
346  ******************************************************************************/
347 
348 acpi_status
acpi_ns_attach_data(struct acpi_namespace_node * node,acpi_object_handler handler,void * data)349 acpi_ns_attach_data(struct acpi_namespace_node *node,
350 		    acpi_object_handler handler, void *data)
351 {
352 	union acpi_operand_object *prev_obj_desc;
353 	union acpi_operand_object *obj_desc;
354 	union acpi_operand_object *data_desc;
355 
356 	/* We only allow one attachment per handler */
357 
358 	prev_obj_desc = NULL;
359 	obj_desc = node->object;
360 	while (obj_desc) {
361 		if ((obj_desc->common.type == ACPI_TYPE_LOCAL_DATA) &&
362 		    (obj_desc->data.handler == handler)) {
363 			return (AE_ALREADY_EXISTS);
364 		}
365 
366 		prev_obj_desc = obj_desc;
367 		obj_desc = obj_desc->common.next_object;
368 	}
369 
370 	/* Create an internal object for the data */
371 
372 	data_desc = acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_DATA);
373 	if (!data_desc) {
374 		return (AE_NO_MEMORY);
375 	}
376 
377 	data_desc->data.handler = handler;
378 	data_desc->data.pointer = data;
379 
380 	/* Install the data object */
381 
382 	if (prev_obj_desc) {
383 		prev_obj_desc->common.next_object = data_desc;
384 	} else {
385 		node->object = data_desc;
386 	}
387 
388 	return (AE_OK);
389 }
390 
391 /*******************************************************************************
392  *
393  * FUNCTION:    acpi_ns_detach_data
394  *
395  * PARAMETERS:  node            - Namespace node
396  *              handler         - Handler associated with the data
397  *
398  * RETURN:      Status
399  *
400  * DESCRIPTION: Low-level detach data. Delete the data node, but the caller
401  *              is responsible for the actual data.
402  *
403  ******************************************************************************/
404 
405 acpi_status
acpi_ns_detach_data(struct acpi_namespace_node * node,acpi_object_handler handler)406 acpi_ns_detach_data(struct acpi_namespace_node *node,
407 		    acpi_object_handler handler)
408 {
409 	union acpi_operand_object *obj_desc;
410 	union acpi_operand_object *prev_obj_desc;
411 
412 	prev_obj_desc = NULL;
413 	obj_desc = node->object;
414 	while (obj_desc) {
415 		if ((obj_desc->common.type == ACPI_TYPE_LOCAL_DATA) &&
416 		    (obj_desc->data.handler == handler)) {
417 			if (prev_obj_desc) {
418 				prev_obj_desc->common.next_object =
419 				    obj_desc->common.next_object;
420 			} else {
421 				node->object = obj_desc->common.next_object;
422 			}
423 
424 			acpi_ut_remove_reference(obj_desc);
425 			return (AE_OK);
426 		}
427 
428 		prev_obj_desc = obj_desc;
429 		obj_desc = obj_desc->common.next_object;
430 	}
431 
432 	return (AE_NOT_FOUND);
433 }
434 
435 /*******************************************************************************
436  *
437  * FUNCTION:    acpi_ns_get_attached_data
438  *
439  * PARAMETERS:  node            - Namespace node
440  *              handler         - Handler associated with the data
441  *              data            - Where the data is returned
442  *
443  * RETURN:      Status
444  *
445  * DESCRIPTION: Low level interface to obtain data previously associated with
446  *              a namespace node.
447  *
448  ******************************************************************************/
449 
450 acpi_status
acpi_ns_get_attached_data(struct acpi_namespace_node * node,acpi_object_handler handler,void ** data)451 acpi_ns_get_attached_data(struct acpi_namespace_node *node,
452 			  acpi_object_handler handler, void **data)
453 {
454 	union acpi_operand_object *obj_desc;
455 
456 	obj_desc = node->object;
457 	while (obj_desc) {
458 		if ((obj_desc->common.type == ACPI_TYPE_LOCAL_DATA) &&
459 		    (obj_desc->data.handler == handler)) {
460 			*data = obj_desc->data.pointer;
461 			return (AE_OK);
462 		}
463 
464 		obj_desc = obj_desc->common.next_object;
465 	}
466 
467 	return (AE_NOT_FOUND);
468 }
469