]> git.saurik.com Git - apple/xnu.git/blame - iokit/IOKit/IORegistryEntry.h
xnu-4903.270.47.tar.gz
[apple/xnu.git] / iokit / IOKit / IORegistryEntry.h
CommitLineData
1c79356b 1/*
39037602 2 * Copyright (c) 1998-2016 Apple Inc. All rights reserved.
1c79356b 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
0a7de745 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
0a7de745 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
0a7de745 17 *
2d21ac55
A
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
0a7de745 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/*
0a7de745 29 * Copyright (c) 1998 Apple Computer, Inc. All rights reserved.
1c79356b
A
30 *
31 * HISTORY
32 *
33 */
34
35
36#ifndef _IOKIT_IOREGISTRYENTRY_H
37#define _IOKIT_IOREGISTRYENTRY_H
38
39#include <IOKit/IOTypes.h>
40#include <libkern/c++/OSContainers.h>
41
42
43extern const OSSymbol * gIONameKey;
44extern const OSSymbol * gIOLocationKey;
b0d623f7 45extern const OSSymbol * gIORegistryEntryIDKey;
39037602 46extern const OSSymbol * gIORegistryEntryPropertyKeysKey;
1c79356b
A
47
48class IORegistryEntry;
49class IORegistryPlane;
50class IORegistryIterator;
51
52typedef void (*IORegistryEntryApplierFunction)(IORegistryEntry * entry,
0a7de745 53 void * context);
1c79356b
A
54
55enum {
0a7de745
A
56 kIORegistryIterateRecursively = 0x00000001,
57 kIORegistryIterateParents = 0x00000002,
1c79356b
A
58};
59
d9a64523 60#ifdef KERNEL_PRIVATE
0a7de745 61enum{
d9a64523
A
62 kIORegistryEntryIndexedPropertyCLPC = 0,
63 kIORegistryEntryIndexedPropertyCount,
64};
65#endif /* KERNEL_PRIVATE */
66
1c79356b 67/*! @class IORegistryEntry : public OSObject
0a7de745
A
68 * @abstract The base class for all objects in the registry.
69 * @discussion The IORegistryEntry base class provides functions for describing graphs of connected registry entries, each with a dictionary-based property table. Entries may be connected in different planes, with differing topologies. Access to the registry is protected against multiple threads. Inside the kernel planes are specified with plane objects and are published by the creator - IOService exports the gIOServicePlane plane object for example. Non kernel clients specify planes by their name.
70 */
1c79356b
A
71
72class IORegistryEntry : public OSObject
73{
0a7de745 74 friend class IORegistryIterator;
1c79356b 75
0a7de745 76 OSDeclareDefaultStructors(IORegistryEntry)
1c79356b
A
77
78protected:
79/*! @struct ExpansionData
0a7de745
A
80 * @discussion This structure will be used to expand the capablilties of this class in the future.
81 */
82 struct ExpansionData;
1c79356b
A
83
84/*! @var reserved
0a7de745
A
85 * Reserved for future use. (Internal use only) */
86 ExpansionData * reserved;
1c79356b
A
87
88private:
89
0a7de745
A
90 OSDictionary * fRegistryTable;
91 OSDictionary * fPropertyTable;
1c79356b 92
0b4e3aa0 93public:
0a7de745 94/* methods available in Mac OS X 10.1 or later */
0b4e3aa0
A
95
96/*! @function copyProperty
0a7de745
A
97 * @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy. Available in Mac OS X 10.1 or later.
98 * @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
99 * @param aKey The property's name as a C-string.
100 * @param plane The plane to iterate over, eg. gIOServicePlane.
101 * @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
102 * @result The property value found, or zero. A reference on any found property is returned to caller, which should be released. */
103
104 virtual OSObject * copyProperty( const char * aKey,
105 const IORegistryPlane * plane,
106 IOOptionBits options =
107 kIORegistryIterateRecursively |
108 kIORegistryIterateParents) const;
91447636 109
0b4e3aa0 110/*! @function copyProperty
0a7de745
A
111 * @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy. Available in Mac OS X 10.1 or later.
112 * @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
113 * @param aKey The property's name as an OSString.
114 * @param plane The plane to iterate over, eg. gIOServicePlane.
115 * @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
116 * @result The property value found, or zero. A reference on any found property is returned to caller, which should be released. */
117
118 virtual OSObject * copyProperty( const OSString * aKey,
119 const IORegistryPlane * plane,
120 IOOptionBits options =
121 kIORegistryIterateRecursively |
122 kIORegistryIterateParents) const;
0b4e3aa0
A
123
124/*! @function copyProperty
0a7de745
A
125 * @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy. Available in Mac OS X 10.1 or later.
126 * @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
127 * @param aKey The property's name as an OSSymbol.
128 * @param plane The plane to iterate over, eg. gIOServicePlane.
129 * @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
130 * @result The property value found, or zero. A reference on any found property is returned to caller, which should be released. */
131
132 virtual OSObject * copyProperty( const OSSymbol * aKey,
133 const IORegistryPlane * plane,
134 IOOptionBits options =
135 kIORegistryIterateRecursively |
136 kIORegistryIterateParents) const;
0b4e3aa0
A
137
138/*! @function copyParentEntry
0a7de745
A
139 * @abstract Returns an registry entry's first parent entry in a plane. Available in Mac OS X 10.1 or later.
140 * @discussion This function will return the parent to which a registry entry was first attached. Since the majority of registry entrys have only one provider, this is a useful simplification.
141 * @param plane The plane object.
142 * @result Returns the first parent of the registry entry, or zero if the entry is not attached into the registry in that plane. A reference on the entry is returned to caller, which should be released. */
0b4e3aa0 143
0a7de745 144 virtual IORegistryEntry * copyParentEntry( const IORegistryPlane * plane ) const;
0b4e3aa0
A
145
146/*! @function copyChildEntry
0a7de745
A
147 * @abstract Returns an registry entry's first child entry in a plane. Available in Mac OS X 10.1 or later.
148 * @discussion This function will return the child which first attached to a registry entry.
149 * @param plane The plane object.
150 * @result Returns the first child of the registry entry, or zero if the entry is not attached into the registry in that plane. A reference on the entry is returned to caller, which should be released. */
0b4e3aa0 151
0a7de745 152 virtual IORegistryEntry * copyChildEntry( const IORegistryPlane * plane ) const;
0b4e3aa0 153
0a7de745 154/* method available in Mac OS X 10.4 or later */
91447636 155/*!
0a7de745
A
156 * @typedef Action
157 * @discussion Type and arguments of callout C function that is used when
158 * a runCommand is executed by a client. Cast to this type when you want a C++
159 * member function to be used. Note the arg1 - arg3 parameters are passed straight pass through to the action callout.
160 * @param target
161 * Target of the function, can be used as a refcon. Note if a C++ function
162 * was specified, this parameter is implicitly the first parameter in the target
163 * member function's parameter list.
164 * @param arg0 Argument to action from run operation.
165 * @param arg1 Argument to action from run operation.
166 * @param arg2 Argument to action from run operation.
167 * @param arg3 Argument to action from run operation.
168 */
169 typedef IOReturn (*Action)(OSObject *target,
170 void *arg0, void *arg1,
171 void *arg2, void *arg3);
91447636
A
172
173/*! @function runPropertyAction
0a7de745
A
174 * @abstract Single thread a call to an action w.r.t. the property lock
175 * @discussion Client function that causes the given action to be called in a manner that syncrhonises with the registry iterators and serialisers. This functin can be used to synchronously manipulate the property table of this nub
176 * @param action Pointer to function to be executed in work-loop context.
177 * @param arg0 Parameter for action parameter, defaults to 0.
178 * @param arg1 Parameter for action parameter, defaults to 0.
179 * @param arg2 Parameter for action parameter, defaults to 0.
180 * @param arg3 Parameter for action parameter, defaults to 0.
181 * @result Returns the value of the Action callout.
182 */
183 virtual IOReturn runPropertyAction(Action action, OSObject *target,
184 void *arg0 = 0, void *arg1 = 0,
185 void *arg2 = 0, void *arg3 = 0);
0b4e3aa0 186
91447636 187private:
b0d623f7 188#if __LP64__
0a7de745
A
189 OSMetaClassDeclareReservedUnused(IORegistryEntry, 0);
190 OSMetaClassDeclareReservedUnused(IORegistryEntry, 1);
191 OSMetaClassDeclareReservedUnused(IORegistryEntry, 2);
192 OSMetaClassDeclareReservedUnused(IORegistryEntry, 3);
193 OSMetaClassDeclareReservedUnused(IORegistryEntry, 4);
194 OSMetaClassDeclareReservedUnused(IORegistryEntry, 5);
b0d623f7 195#else
0a7de745
A
196 OSMetaClassDeclareReservedUsed(IORegistryEntry, 0);
197 OSMetaClassDeclareReservedUsed(IORegistryEntry, 1);
198 OSMetaClassDeclareReservedUsed(IORegistryEntry, 2);
199 OSMetaClassDeclareReservedUsed(IORegistryEntry, 3);
200 OSMetaClassDeclareReservedUsed(IORegistryEntry, 4);
201 OSMetaClassDeclareReservedUsed(IORegistryEntry, 5);
b0d623f7 202#endif
0a7de745
A
203 OSMetaClassDeclareReservedUnused(IORegistryEntry, 6);
204 OSMetaClassDeclareReservedUnused(IORegistryEntry, 7);
205 OSMetaClassDeclareReservedUnused(IORegistryEntry, 8);
206 OSMetaClassDeclareReservedUnused(IORegistryEntry, 9);
207 OSMetaClassDeclareReservedUnused(IORegistryEntry, 10);
208 OSMetaClassDeclareReservedUnused(IORegistryEntry, 11);
209 OSMetaClassDeclareReservedUnused(IORegistryEntry, 12);
210 OSMetaClassDeclareReservedUnused(IORegistryEntry, 13);
211 OSMetaClassDeclareReservedUnused(IORegistryEntry, 14);
212 OSMetaClassDeclareReservedUnused(IORegistryEntry, 15);
213 OSMetaClassDeclareReservedUnused(IORegistryEntry, 16);
214 OSMetaClassDeclareReservedUnused(IORegistryEntry, 17);
215 OSMetaClassDeclareReservedUnused(IORegistryEntry, 18);
216 OSMetaClassDeclareReservedUnused(IORegistryEntry, 19);
217 OSMetaClassDeclareReservedUnused(IORegistryEntry, 20);
218 OSMetaClassDeclareReservedUnused(IORegistryEntry, 21);
219 OSMetaClassDeclareReservedUnused(IORegistryEntry, 22);
220 OSMetaClassDeclareReservedUnused(IORegistryEntry, 23);
221 OSMetaClassDeclareReservedUnused(IORegistryEntry, 24);
222 OSMetaClassDeclareReservedUnused(IORegistryEntry, 25);
223 OSMetaClassDeclareReservedUnused(IORegistryEntry, 26);
224 OSMetaClassDeclareReservedUnused(IORegistryEntry, 27);
225 OSMetaClassDeclareReservedUnused(IORegistryEntry, 28);
226 OSMetaClassDeclareReservedUnused(IORegistryEntry, 29);
227 OSMetaClassDeclareReservedUnused(IORegistryEntry, 30);
228 OSMetaClassDeclareReservedUnused(IORegistryEntry, 31);
1c79356b
A
229
230public:
231
0a7de745 232/* Registry accessors */
1c79356b
A
233
234/*! @function getRegistryRoot
0a7de745
A
235 * @abstract Returns a pointer to the root instance of the registry.
236 * @discussion This method provides an accessor to the root of the registry for the machine. The root may be passed to a registry iterator when iterating a plane, and contains properties that describe the available planes, and diagnostic information for IOKit. Keys for these properties are in IOKitKeys.h.
237 * @result A pointer to the IORegistryEntry root instance. It should not be released by the caller. */
238
239 static IORegistryEntry * getRegistryRoot( void );
1c79356b 240
1c79356b 241/*! @function getGenerationCount
0a7de745
A
242 * @abstract Returns an generation count for all registry changing operations.
243 * @discussion This method provides an accessor to the current generation count (or seed) of the registry which changes when any topology change occurs in the registry - this does not include property table changes. It may be used to invalidate any caching of the results from IORegistryEntry methods.
244 * @result An integer generation count. */
1c79356b 245
0a7de745 246 static SInt32 getGenerationCount( void );
1c79356b
A
247
248/*! @function getPlane
0a7de745
A
249 * @abstract Looks up the plane object by a C-string name.
250 * @discussion Planes are usually provided as globals by the creator, eg. gIOServicePlane, gIODeviceTreePlane, or gIOAudioPlane, however they may also be looked up by name with this method.
251 * @result A pointer to the plane object, or zero if no such plane exists. The returned plane should not be released. */
1c79356b 252
0a7de745 253 static const IORegistryPlane * getPlane( const char * name );
1c79356b 254
0a7de745 255/* Registry Entry allocation & init */
1c79356b
A
256
257/*! @function init
0a7de745
A
258 * @abstract Standard init method for all IORegistryEntry subclasses.
259 * @discussion A registry entry must be initialized with this method before it can be used. A property dictionary may passed and will be retained by this method for use as the registry entry's property table, or an empty one will be created.
260 * @param dictionary A dictionary that will become the registry entry's property table (retaining it), or zero which will cause an empty property table to be created.
261 * @result true on success, or false on a resource failure. */
1c79356b 262
0a7de745 263 virtual bool init( OSDictionary * dictionary = 0 );
1c79356b
A
264
265/*! @function free
0a7de745
A
266 * @abstract Standard free method for all IORegistryEntry subclasses.
267 * @discussion This method will release any resources of the entry, in particular its property table. Note that the registry entry must always be detached from the registry before free may be called, and subclasses (namely IOService) will have additional protocols for removing registry entries. free should never need be called directly. */
1c79356b 268
0a7de745 269 virtual void free( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
270
271/*! @function setPropertyTable
0a7de745
A
272 * @abstract Replace a registry entry's property table.
273 * @discussion This method will release the current property table of a the entry and replace it with another, retaining the new property table.
274 * @param dict The new dictionary to be used as the entry's property table. */
1c79356b 275
0a7de745 276 virtual void setPropertyTable( OSDictionary * dict );
1c79356b 277
0a7de745
A
278/* Synchronized property accessors; wrappers to OSDictionary
279 * plus property creation helpers */
1c79356b
A
280
281/*! @function setProperty
0a7de745
A
282 * @abstract Synchronized method to add a property to a registry entry's property table.
283 * @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
284 * @param aKey The properties name as an OSSymbol.
285 * @param anObject The property value.
286 * @result true on success or false on a resource failure. */
1c79356b 287
0a7de745
A
288 virtual bool setProperty(const OSSymbol * aKey,
289 OSObject * anObject);
1c79356b 290
d9a64523 291#ifdef KERNEL_PRIVATE
0a7de745
A
292 OSObject * setIndexedProperty(uint32_t index, OSObject * anObject);
293 OSObject * getIndexedProperty(uint32_t index) const;
d9a64523
A
294#endif /* KERNEL_PRIVATE */
295
1c79356b 296/*! @function setProperty
0a7de745
A
297 * @abstract Synchronized method to add a property to a registry entry's property table.
298 * @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
299 * @param aKey The property's name as an OSString.
300 * @param anObject The property value.
301 * @result true on success or false on a resource failure. */
1c79356b 302
0a7de745 303 virtual bool setProperty(const OSString * aKey, OSObject * anObject);
1c79356b
A
304
305/*! @function setProperty
0a7de745
A
306 * @abstract Synchronized method to add a property to a registry entry's property table.
307 * @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
308 * @param aKey The property's name as a C-string.
309 * @param anObject The property value.
310 * @result true on success or false on a resource failure. */
1c79356b 311
0a7de745 312 virtual bool setProperty(const char * aKey, OSObject * anObject);
1c79356b
A
313
314/*! @function setProperty
0a7de745
A
315 * @abstract Synchronized method to construct and add a OSString property to a registry entry's property table.
316 * @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table. The property is created as an OSString from the supplied C-string, set in the property table with the given name, and released.
317 * @param aKey The property's name as a C-string.
318 * @param aString The property value as a C-string.
319 * @result true on success or false on a resource failure. */
1c79356b 320
0a7de745 321 virtual bool setProperty(const char * aKey, const char * aString);
1c79356b
A
322
323/*! @function setProperty
0a7de745
A
324 * @abstract Synchronized method to construct and add an OSBoolean property to a registry entry's property table.
325 * @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table. The property is created as an OSBoolean from the supplied value, set in the property table with the given name, and released.
326 * @param aKey The property's name as a C-string.
327 * @param aBoolean The property's boolean value.
328 * @result true on success or false on a resource failure. */
1c79356b 329
0a7de745 330 virtual bool setProperty(const char * aKey, bool aBoolean);
1c79356b
A
331
332/*! @function setProperty
0a7de745
A
333 * @abstract Synchronized method to construct and add an OSNumber property to a registry entry's property table.
334 * @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table. The property is created as an OSNumber from the supplied value and size, set in the property table with the given name, and released.
335 * @param aKey The property's name as a C-string.
336 * @param aValue The property's numeric value.
337 * @param aNumberOfBits The property's size in bits, for OSNumber.
338 * @result true on success or false on a resource failure. */
1c79356b 339
0a7de745
A
340 virtual bool setProperty( const char * aKey,
341 unsigned long long aValue,
342 unsigned int aNumberOfBits);
1c79356b
A
343
344/*! @function setProperty
0a7de745
A
345 * @abstract Synchronized method to construct and add an OSData property to a registry entry's property table.
346 * @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table. The property is created as an OSData copied from the supplied data and length, set in the property table with the given name, and released.
347 * @param aKey The property's name as a C-string.
348 * @param bytes The property's value as a pointer. OSData will copy this data.
349 * @param length The property's size in bytes, for OSData.
350 * @result true on success or false on a resource failure. */
1c79356b 351
0a7de745
A
352 virtual bool setProperty( const char * aKey,
353 void * bytes,
354 unsigned int length);
1c79356b
A
355
356/*! @function removeProperty
0a7de745
A
357 * @abstract Synchronized method to remove a property from a registry entry's property table.
358 * @discussion This method will remove a property from a registry entry's property table, using the OSDictionary::removeObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
359 * @param aKey The property's name as an OSSymbol. */
1c79356b 360
0a7de745 361 virtual void removeProperty( const OSSymbol * aKey);
1c79356b
A
362
363/*! @function removeProperty
0a7de745
A
364 * @abstract Synchronized method to remove a property from a registry entry's property table.
365 * @discussion This method will remove a property from a registry entry's property table, using the OSDictionary::removeObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
366 * @param aKey The property's name as an OSString. */
1c79356b 367
0a7de745 368 virtual void removeProperty( const OSString * aKey);
1c79356b
A
369
370/*! @function removeProperty
0a7de745
A
371 * @abstract Synchronized method to remove a property from a registry entry's property table.
372 * @discussion This method will remove a property from a registry entry's property table, using the OSDictionary::removeObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
373 * @param aKey The property's name as a C-string. */
1c79356b 374
0a7de745 375 virtual void removeProperty( const char * aKey);
1c79356b
A
376
377/*! @function getProperty
0a7de745
A
378 * @abstract Synchronized method to obtain a property from a registry entry's property table.
379 * @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
380 * @param aKey The property's name as an OSSymbol.
381 * @result The property value found, or zero. */
1c79356b 382
0a7de745 383 virtual OSObject * getProperty( const OSSymbol * aKey) const;
1c79356b
A
384
385/*! @function getProperty
0a7de745
A
386 * @abstract Synchronized method to obtain a property from a registry entry's property table.
387 * @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
388 * @param aKey The property's name as an OSString.
389 * @result The property value found, or zero. */
1c79356b 390
0a7de745 391 virtual OSObject * getProperty( const OSString * aKey) const;
1c79356b
A
392
393/*! @function getProperty
0a7de745
A
394 * @abstract Synchronized method to obtain a property from a registry entry's property table.
395 * @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
396 * @param aKey The property's name as a C-string.
397 * @result The property value found, or zero. */
1c79356b 398
0a7de745 399 virtual OSObject * getProperty( const char * aKey) const;
1c79356b
A
400
401/*! @function getProperty
0a7de745
A
402 * @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy.
403 * @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
404 * @param aKey The property's name as an OSSymbol.
405 * @param plane The plane to iterate over, eg. gIOServicePlane.
406 * @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
407 * @result The property value found, or zero. */
408
409 virtual OSObject * getProperty( const OSSymbol * aKey,
410 const IORegistryPlane * plane,
411 IOOptionBits options =
412 kIORegistryIterateRecursively |
413 kIORegistryIterateParents) const;
1c79356b
A
414
415/*! @function getProperty
0a7de745
A
416 * @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy.
417 * @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
418 * @param aKey The property's name as an OSString.
419 * @param plane The plane to iterate over, eg. gIOServicePlane.
420 * @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
421 * @result The property value found, or zero. */
422
423 virtual OSObject * getProperty( const OSString * aKey,
424 const IORegistryPlane * plane,
425 IOOptionBits options =
426 kIORegistryIterateRecursively |
427 kIORegistryIterateParents) const;
1c79356b
A
428
429/*! @function getProperty
0a7de745
A
430 * @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy.
431 * @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
432 * @param aKey The property's name as a C-string.
433 * @param plane The plane to iterate over, eg. gIOServicePlane.
434 * @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
435 * @result The property value found, or zero. */
436
437 virtual OSObject * getProperty( const char * aKey,
438 const IORegistryPlane * plane,
439 IOOptionBits options =
440 kIORegistryIterateRecursively |
441 kIORegistryIterateParents) const;
1c79356b
A
442
443/*! @function copyProperty
0a7de745
A
444 * @abstract Synchronized method to obtain a property from a registry entry's property table.
445 * @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics, and return a reference to the caller. This method is synchronized with other IORegistryEntry accesses to the property table.
446 * @param aKey The property's name as an OSSymbol.
447 * @result The property value found, or zero. It should be released by the caller. */
1c79356b 448
0a7de745 449 virtual OSObject * copyProperty( const OSSymbol * aKey) const;
1c79356b
A
450
451/*! @function copyProperty
0a7de745
A
452 * @abstract Synchronized method to obtain a property from a registry entry's property table.
453 * @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics, and return a reference to the caller. This method is synchronized with other IORegistryEntry accesses to the property table.
454 * @param aKey The property's name as an OSString.
455 * @result The property value found, or zero. It should be released by the caller. */
1c79356b 456
0a7de745 457 virtual OSObject * copyProperty( const OSString * aKey) const;
1c79356b
A
458
459/*! @function copyProperty
0a7de745
A
460 * @abstract Synchronized method to obtain a property from a registry entry's property table.
461 * @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics, and return a reference to the caller. This method is synchronized with other IORegistryEntry accesses to the property table.
462 * @param aKey The property's name as a C-string.
463 * @result The property value found, or zero. It should be released by the caller. */
1c79356b 464
0a7de745 465 virtual OSObject * copyProperty( const char * aKey) const;
1c79356b
A
466
467/*! @function dictionaryWithProperties
0a7de745
A
468 * @abstract Synchronized method to obtain copy a registry entry's property table.
469 * @discussion This method will copy a registry entry's property table, using the OSDictionary::withDictionary semantics. This method is synchronized with other IORegistryEntry accesses to the property table. Since OSDictionary will only copy property values by reference, synchronization is not guaranteed to any collection values.
470 * @result The created dictionary, or zero on a resource value. It should be released by the caller. */
1c79356b 471
0a7de745 472 virtual OSDictionary * dictionaryWithProperties( void ) const;
1c79356b
A
473
474/*! @function serializeProperties
0a7de745
A
475 * @abstract Synchronized method to serialize a registry entry's property table.
476 * @discussion This method will serialize a registry entry's property table, using the OSDictionary::serialize semantics. This method is synchronized with other IORegistryEntry accesses to the property table. Many non-kernel clients of IOKit read information from the registry via properties, and will invoke this method in a registry entry to create a serialization of all the entry's properties, which is then reconstructed in the client's task as a CFDictionary. This method may be intercepted by subclasses to update their properties or implement a different serialization method, though it is usually better to implement such functionality by creating objects in the property table and implementing their serialize methods, avoiding any need to implement serializeProperties.
477 * @param serialize The OSSerialize instance representing the serialization request.
478 * @result True on success, false otherwise. */
1c79356b 479
0a7de745 480 virtual bool serializeProperties( OSSerialize * serialize ) const;
1c79356b 481
0a7de745 482/* Unsynchronized(!) property table access */
1c79356b
A
483
484/*! @function getPropertyTable
0a7de745
A
485 * @abstract Unsynchronized accessor to a registry entry's property table.
486 * @discussion This method will return a pointer to the live property table as an OSDictionery. Its use is not recommended in most cases, instead use the synchronized accessors and helper functions of IORegistryEntry to access properties. It can only safely be used by one thread, which usually means it can only be used before a registry entry is entered into the registry.
487 * @result A pointer to the property table as an OSDictionary. The pointer is valid while the registry entry is retained, and should not be released by the caller. */
1c79356b 488
0a7de745
A
489/* inline */ OSDictionary * getPropertyTable( void ) const;
490/* { return(fPropertyTable); } */
1c79356b 491
0a7de745 492/* Set properties from user level, to be overridden if supported */
1c79356b
A
493
494/*! @function setProperties
0a7de745
A
495 * @abstract Optionally supported external method to set properties in a registry entry.
496 * @discussion This method is not implemented by IORegistryEntry, but is available to kernel and non-kernel clients to set properties in a registry entry. IOUserClient provides connection based, more controlled access to this functionality and may be more appropriate for many uses, since there is no differentiation between clients available to this method.
497 * @param properties Any OSObject subclass, to be interpreted by the implementing method - for example an OSDictionary, OSData etc. may all be appropriate.
498 * @result An IOReturn code to be returned to the caller. */
1c79356b 499
0a7de745 500 virtual IOReturn setProperties( OSObject * properties );
1c79356b 501
0a7de745 502/* Topology */
1c79356b
A
503
504/*! @function getParentIterator
0a7de745
A
505 * @abstract Returns an iterator over an registry entry's parent entries in a specified plane.
506 * @param plane The plane object.
507 * @result Returns an iterator over the parents of the registry entry, or zero if there is a resource failure. The iterator must be released when the iteration is finished. All objects returned by the iteration are retained while the iterator is valid, though they may no longer be attached during the iteration. */
1c79356b 508
0a7de745
A
509 virtual OSIterator * getParentIterator( const IORegistryPlane * plane )
510 const;
511 virtual void applyToParents( IORegistryEntryApplierFunction applier,
512 void * context,
513 const IORegistryPlane * plane ) const;
1c79356b
A
514
515/*! @function getParentEntry
0a7de745
A
516 * @abstract Returns an registry entry's first parent entry in a plane.
517 * @discussion This function will return the parent to which a registry entry was first attached. Since the majority of registry entrys have only one provider, this is a useful simplification.
518 * @param plane The plane object.
519 * @result Returns the first parent of the registry entry, or zero if the entry is not attached into the registry in that plane. The parent is retained while the entry is attached, and should not be released by the caller. */
1c79356b 520
0a7de745 521 virtual IORegistryEntry * getParentEntry( const IORegistryPlane * plane ) const;
1c79356b
A
522
523/*! @function getChildIterator
0a7de745
A
524 * @abstract Returns an iterator over an registry entry's child entries in a plane.
525 * @discussion This method creates an iterator which will return each of a registry entry's child entries in a specified plane.
526 * @param plane The plane object.
527 * @result Returns an iterator over the children of the entry, or zero if there is a resource failure. The iterator must be released when the iteration is finished. All objects returned by the iteration are retained while the iterator is valid, though they may no longer be attached during the iteration. */
1c79356b 528
0a7de745
A
529 virtual OSIterator * getChildIterator( const IORegistryPlane * plane )
530 const;
1c79356b 531
39037602 532#if XNU_KERNEL_PRIVATE
0a7de745
A
533 uint32_t getChildCount( const IORegistryPlane * plane ) const;
534 OSArray * copyPropertyKeys(void) const;
39037602
A
535#endif
536
0a7de745
A
537 virtual void applyToChildren( IORegistryEntryApplierFunction applier,
538 void * context,
539 const IORegistryPlane * plane ) const;
1c79356b
A
540
541/*! @function getChildEntry
0a7de745
A
542 * @abstract Returns an registry entry's first child entry in a plane.
543 * @discussion This function will return the child which first attached to a registry entry.
544 * @param plane The plane object.
545 * @result Returns the first child of the registry entry, or zero if the entry is not attached into the registry in that plane. The child is retained while the entry is attached, and should not be released by the caller. */
1c79356b 546
0a7de745 547 virtual IORegistryEntry * getChildEntry( const IORegistryPlane * plane ) const;
1c79356b
A
548
549/*! @function isChild
0a7de745
A
550 * @abstract Determines whether a registry entry is the child of another in a plane.
551 * @discussion This method called in the parent entry determines if the specified entry is a child, in a plane. Additionally, it can check if the child is the only child of the parent entry.
552 * @param child The possible child registry entry.
553 * @param plane The plane object.
554 * @param onlyChild If true, check also if the child is the only child.
555 * @result If the child argument is not a child of the registry entry, false is returned. If onlyChild is true and the child is not the only child of the entry, false is returned, otherwise true is returned. */
1c79356b 556
0a7de745
A
557 virtual bool isChild( IORegistryEntry * child,
558 const IORegistryPlane * plane,
559 bool onlyChild = false ) const;
1c79356b
A
560
561/*! @function isParent
0a7de745
A
562 * @abstract Determines whether a registry entry is the parent of another in a plane.
563 * @discussion This method called in the child entry determines if the specified entry is a parent, in a plane. Additionally, it can check if the parent is the only parent of the child entry.
564 * @param parent The possible parent registry entry.
565 * @param plane The plane object.
566 * @param onlyParent If true, check also if the parent is the only parent.
567 * @result If the parent argument is not a parent of the registry entry, false is returned. If onlyParent is true and the parent is not the only parent of the entry, false is returned, otherwise true is returned. */
1c79356b 568
0a7de745
A
569 virtual bool isParent( IORegistryEntry * parent,
570 const IORegistryPlane * plane,
571 bool onlyParent = false ) const;
1c79356b
A
572
573/*! @function inPlane
0a7de745
A
574 * @abstract Determines whether a registry entry is attached in a plane.
575 * @discussion This method determines if the entry is attached in a plane to any other entry. It can also be used to determine if the entry is a member of any plane.
576 * @param plane The plane object, 0 indicates any plane.
577 * @result If the entry has a parent in the given plane or if plane = 0 then if entry has any parent; return true, otherwise false. */
1c79356b 578
0a7de745 579 virtual bool inPlane( const IORegistryPlane * plane = 0) const;
1c79356b
A
580
581/*! @function getDepth
0a7de745
A
582 * @abstract Counts the maximum number of entries between an entry and the registry root, in a plane.
583 * @discussion This method counts the number of entries between and entry and the registry root, in a plane, for each parent of the entry and returns the maximum value.
584 * @param plane The plane object.
585 * @result The maximum number of entries between the entry and the root. Zero is returned if the entry is not attached in the plane. */
1c79356b 586
0a7de745 587 virtual unsigned int getDepth( const IORegistryPlane * plane ) const;
1c79356b 588
0a7de745 589/* Attach / detach */
1c79356b
A
590
591/*! @function attachToParent
0a7de745
A
592 * @abstract Attaches a entry to a parent entry in a plane.
593 * @discussion This is the usual method of entering an entry into the registry. It is a no-op and success if the entry is already attached to the parent. Attaching the entry into the registry retains both the child and parent while they are attached. This method will call attachToChild in the parent entry if it is not being called from attachToChild.
594 * @param parent The registry entry to attach to.
595 * @param plane The plane object.
596 * @result true on success, or false on a resource failure, or if the parent is the same as the child. */
1c79356b 597
0a7de745
A
598 virtual bool attachToParent( IORegistryEntry * parent,
599 const IORegistryPlane * plane );
1c79356b
A
600
601/*! @function detachFromParent
0a7de745
A
602 * @abstract Detaches an entry from a parent entry in a plane.
603 * @discussion This is the usual method of removing an entry from the registry. It is a no-op if the entry is not attached to the parent. Detaching the entry will release both the child and parent. This method will call detachFromChild in the parent entry if it is not being called from detachFromChild.
604 * @param parent The registry entry to detach from.
605 * @param plane The plane object. */
1c79356b 606
0a7de745
A
607 virtual void detachFromParent( IORegistryEntry * parent,
608 const IORegistryPlane * plane );
1c79356b
A
609
610/*! @function attachToChild
0a7de745
A
611 * @abstract Method called in the parent entry when a child attaches.
612 * @discussion This method is called in the parent entry when a child attaches, to make overrides possible. This method will also call attachToParent in the child entry if it is not being called from attachToParent. It is a no-op and success if the entry is already a child. Attaching the entry into the registry retains both the child and parent while they are attached.
613 * @param child The registry entry being attached.
614 * @param plane The plane object.
615 * @result true on success, or false on a resource failure, or if the parent is the same as the child. */
1c79356b 616
0a7de745
A
617 virtual bool attachToChild( IORegistryEntry * child,
618 const IORegistryPlane * plane );
1c79356b
A
619
620/*! @function detachFromChild
0a7de745
A
621 * @abstract Detaches a child entry from its parent in a plane.
622 * @discussion This method is called in the parent entry when a child detaches, to make overrides possible. It is a no-op if the entry is not a child of the parent. Detaching the entry will release both the child and parent. This method will call detachFromParent in the child entry if it is not being called from detachFromParent.
623 * @param child The registry entry to detach.
624 * @param plane The plane object. */
1c79356b 625
0a7de745
A
626 virtual void detachFromChild( IORegistryEntry * child,
627 const IORegistryPlane * plane );
1c79356b
A
628
629/*! @function detachAbove
0a7de745
A
630 * @abstract Detaches an entry from all its parent entries in a plane.
631 * @discussion This method calls detachFromParent in the entry for each of its parent entries in the plane.
632 * @param plane The plane object. */
1c79356b 633
0a7de745 634 virtual void detachAbove( const IORegistryPlane * plane );
1c79356b
A
635
636/*! @function detachAll
0a7de745
A
637 * @abstract Detaches an entry and all its children recursively in a plane.
638 * @discussion This method breaks the registry connections for a subtree. detachAbove is called in the entry, and all child entries and their children in the plane.
639 * @param plane The plane object. */
1c79356b 640
0a7de745 641 virtual void detachAll( const IORegistryPlane * plane );
1c79356b 642
0a7de745 643/* Name, location and path accessors */
1c79356b
A
644
645/*! @function getName
0a7de745
A
646 * @abstract Returns the name assigned to the registry entry as a C-string.
647 * @discussion Entries can be named in a particular plane, or globally. If the entry is named in plane and the plane is specified that name will be returned, otherwise the global name is returned. The global name defaults to the entry's meta class name if it has not been named.
648 * @param plane The plane object, or zero for the global name.
649 * @result A C-string name, valid while the entry is retained. */
1c79356b 650
0a7de745 651 virtual const char * getName( const IORegistryPlane * plane = 0 ) const;
1c79356b
A
652
653/*! @function copyName
0a7de745
A
654 * @abstract Returns the name assigned to the registry entry as an OSSymbol.
655 * @discussion Entries can be named in a particular plane, or globally. If the entry is named in plane and the plane is specified that name will be returned, otherwise the global name is returned. The global name defaults to the entry's meta class name if it has not been named.
656 * @param plane The plane object, or zero for the global name.
657 * @result A reference to an OSSymbol for the name, which should be released by the caller. */
1c79356b 658
0a7de745
A
659 virtual const OSSymbol * copyName(
660 const IORegistryPlane * plane = 0 ) const;
1c79356b
A
661
662/*! @function compareNames
0a7de745
A
663 * @abstract Compares the name of the entry with one or more names, and optionally returns the matching name.
664 * @discussion This method is called during IOService name matching and elsewhere to compare the entry's global name with a list of names, or a single name. A list of names may be passed as any OSCollection of OSStrings, while a single name may be passed an OSString, in the name parameter. compareNames will call the compareName method for each name, for overrides.
665 * @param name The name or names to compare with as any OSCollection (eg. OSArray, OSSet, OSDictionary) of OSStrings, or a single name may be passed an OSString.
666 * @param matched If the caller wants the successfully matched name returned, pass a non-zero pointer for the matched parameter and an OSString will be returned here. It should be released by the caller.
667 * @result True if one of the names compared true with the entry's global name. */
1c79356b 668
0a7de745 669 virtual bool compareNames( OSObject * name, OSString ** matched = 0 ) const;
1c79356b
A
670
671/*! @function compareName
0a7de745
A
672 * @abstract Compares the name of the entry with one name, and optionally returns the matching name.
673 * @discussion This method is called during IOService name matching and elsewhere from the compareNames method. It should be overridden to provide non-standard name matching.
674 * @param name The name to compare with as an OSString.
675 * @param matched If the caller wants the successfully matched name returned, pass a non-zero pointer for the matched parameter and an OSString will be returned here. It should be released by the caller. Generally, this will be the same as the name parameter, but may not be if wildcards are used.
676 * @result True if the name compared true with the entry's global name. */
1c79356b 677
0a7de745 678 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
1c79356b
A
679
680/*! @function setName
0a7de745
A
681 * @abstract Sets a name for the registry entry, in a particular plane, or globally.
682 * @discussion Entries can be named in a particular plane, or globally. If the plane is specified the name applies only to that plane, otherwise the global name is set. The global name defaults to the entry's meta class name if it has not been named.
683 * @param name An OSSymbol which will be retained.
684 * @param plane The plane object, or zero to set the global name. */
1c79356b 685
0a7de745
A
686 virtual void setName( const OSSymbol * name,
687 const IORegistryPlane * plane = 0 );
1c79356b
A
688
689/*! @function setName
0a7de745
A
690 * @abstract Sets a name for the registry entry, in a particular plane, or globally.
691 * @discussion Entries can be named in a particular plane, or globally. If the plane is specified the name applies only to that plane, otherwise the global name is set. The global name defaults to the entry's meta class name if it has not been named.
692 * @param name A const C-string name which will be copied.
693 * @param plane The plane object, or zero to set the global name. */
1c79356b 694
0a7de745
A
695 virtual void setName( const char * name,
696 const IORegistryPlane * plane = 0 );
1c79356b
A
697
698/*! @function getLocation
0a7de745
A
699 * @abstract Returns the location string assigned to the registry entry as a C-string.
700 * @discussion Entries can given a location string in a particular plane, or globally. If the entry has had a location set in a plane and the plane is specified that location string will be returned, otherwise the global location string is returned. If no global location string has been set, zero is returned.
701 * @param plane The plane object, or zero for the global name.
702 * @result A C-string location string, valid while the entry is retained, or zero. */
1c79356b 703
0a7de745 704 virtual const char * getLocation( const IORegistryPlane * plane = 0 ) const;
1c79356b
A
705
706/*! @function copyLocation
0a7de745
A
707 * @abstract Returns the location string assigned to the registry entry as an OSSymbol.
708 * @discussion Entries can given a location string in a particular plane, or globally. If the entry has had a location set in a plane and the plane is specified that location string will be returned, otherwise the global location string is returned. If no global location string has been set, zero is returned.
709 * @param plane The plane object, or zero for the global name.
710 * @result A reference to an OSSymbol for the location if one exists, which should be released by the caller, or zero. */
1c79356b 711
0a7de745
A
712 virtual const OSSymbol * copyLocation(
713 const IORegistryPlane * plane = 0 ) const;
1c79356b
A
714
715/*! @function setLocation
0a7de745
A
716 * @abstract Sets a location string for the registry entry, in a particular plane, or globally.
717 * @discussion Entries can be given a location string in a particular plane, or globally. If the plane is specified the location applies only to that plane, otherwise the global location is set. The location string may be used during path lookups of registry entries, to distinguish between sibling entries with the same name. The default IORegistryEntry parsing of location strings expects a list of hex numbers separated by commas, though subclasses of IORegistryEntry might do their own parsing.
718 * @param location A C-string location string which will be copied, or an OSSymbol which will be retained.
719 * @param plane The plane object, or zero to set the global location string. */
1c79356b 720
0a7de745
A
721 virtual void setLocation( const OSSymbol * location,
722 const IORegistryPlane * plane = 0 );
723 virtual void setLocation( const char * location,
724 const IORegistryPlane * plane = 0 );
1c79356b
A
725
726/*! @function getPath
0a7de745
A
727 * @abstract Create a path for a registry entry.
728 * @discussion The path for a registry entry is copied to the caller's buffer. The path describes the entry's attachment in a particular plane, which must be specified. The path begins with the plane name followed by a colon, and then followed by '/' separated path components for each of the entries between the root and the registry entry. Each component is constructed with the getPathComponent method called in each entry. An alias may also exist for the entry, which are described as properties in a registry entry found at /aliases in the plane. If a property value interpreted as a path in a call to IORegistryEntry::fromPath yields the entry, then the property name is used as the entry's path.
729 * @param path A char buffer allocated by the caller.
730 * @param length An in/out parameter - the caller sets the length of the buffer available, and getPath returns the total length of the path copied to the buffer.
731 * @param plane The plane object.
732 * @result getPath will fail if the entry is not attached in the plane, or if the buffer is not large enough to contain the path. */
1c79356b 733
0a7de745
A
734 virtual bool getPath( char * path, int * length,
735 const IORegistryPlane * plane) const;
1c79356b
A
736
737/*! @function getPathComponent
0a7de745
A
738 * @abstract Create a path component for a registry entry.
739 * @discussion Each component of a path created with getPath is created with getPathComponent. The default implementation concatenates the entry's name in the the plane, with the "at" symbol and the location string of the entry in the plane if it has been set.
740 * @param path A char buffer allocated by the caller.
741 * @param length An in/out parameter - the caller sets the length of the buffer available, and getPathComponent returns the total length of the path component copied to the buffer.
742 * @param plane The plane object.
743 * @result true if the path fits into the supplied buffer or false on a overflow. */
1c79356b 744
0a7de745
A
745 virtual bool getPathComponent( char * path, int * length,
746 const IORegistryPlane * plane ) const;
1c79356b
A
747
748/*! @function fromPath
0a7de745
A
749 * @abstract Looks up a registry entry by path.
750 * @discussion This function parses paths to lookup registry entries. The path may begin with the <plane name>: created by getPath, or the plane may be set by the caller. If there are characters remaining unparsed after an entry has been looked up, this may be considered an invalid lookup, or those characters may be passed back to the caller and the lookup successful.
751 * @param path A C-string path.
752 * @param plane The plane to lookup up the path, or zero, in which case the path must begin with the plane name.
753 * @param residualPath If the path may contain residual characters after the last path component, the residual will be copied back to the caller's residualPath buffer. If there are residual characters and no residual buffer is specified, fromPath will fail.
754 * @param residualLength An in/out parameter - the caller sets the length of the residual buffer available, and fromPath returns the total length of the residual path copied to the buffer. If there is no residualBuffer (residualPath = 0) then residualLength may be zero also.
755 * @param fromEntry The lookup will proceed rooted at this entry if non-zero, otherwise it proceeds from the root of the plane.
756 * @result A retained registry entry is returned on success, or zero on failure. The caller should release the entry. */
757
758 static IORegistryEntry * fromPath( const char * path,
759 const IORegistryPlane * plane = 0,
760 char * residualPath = 0,
761 int * residualLength = 0,
762 IORegistryEntry * fromEntry = 0 );
1c79356b
A
763
764/*! @function fromPath
0a7de745
A
765 * @abstract Looks up a registry entry by relative path.
766 * @discussion This function looks up a entry below the called entry by a relative path. It is just a convenience that calls IORegistryEntry::fromPath with this as the fromEntry parameter.
767 * @param path See IORegistryEntry::fromPath.
768 * @param plane See IORegistryEntry::fromPath.
769 * @param residualPath See IORegistryEntry::fromPath.
770 * @param residualLength See IORegistryEntry::fromPath.
771 * @result See IORegistryEntry::fromPath. */
772
773 virtual IORegistryEntry * childFromPath( const char * path,
774 const IORegistryPlane * plane = 0,
775 char * residualPath = 0,
776 int * residualLength = 0 );
1c79356b
A
777
778/*! @function dealiasPath
0a7de745
A
779 * @abstract Strips any aliases from the head of path and returns the full path.
780 * @discussion If the path specified begins with an alias found in the /aliases entry, the value of the alias is returned, and a pointer into the passed in path after the alias is passed back to the caller. If an alias is not found, zero is returned and the path parameter is unchanged.
781 * @param opath An in/out paramter - the caller passes in a pointer to a C-string pointer to a path. If an alias is found, dealiasPath returns a pointer into the path just beyond the end of the alias.
782 * @param plane A plane object must be specified.
783 * @result A C-string pointer to the value of the alias if one is found, or zero if not. */
1c79356b 784
0a7de745
A
785 static const char * dealiasPath( const char ** opath,
786 const IORegistryPlane * plane );
1c79356b 787
b0d623f7 788/*! @function makePlane
0a7de745
A
789 * @abstract Constructs an IORegistryPlane object.
790 * @discussion Most planes in IOKit are created by the OS, although other planes may be created.
791 * @param name A C-string name for the new plane, to be copied.
792 * @result A new instance of an IORegistryPlane, or zero on failure. */
b0d623f7 793
0a7de745 794 static const IORegistryPlane * makePlane( const char * name );
b0d623f7
A
795
796/*! @abstract Returns an ID for the registry entry that is global to all tasks.
0a7de745
A
797 * @discussion The entry ID returned by getRegistryEntryID can be used to identify a registry entry across all tasks. A registry entry may be looked up by its entry ID by creating a matching dictionary with IORegistryEntryIDMatching() in user space, or <code>IOService::registryEntryIDMatching()</code> in the kernel, to be used with the IOKit matching functions. The ID is valid only until the machine reboots.
798 * @result An ID for the registry entry, assigned when the entry is first attached in the registry. */
b0d623f7 799
0a7de745 800 uint64_t getRegistryEntryID( void );
b0d623f7 801
0a7de745
A
802/* * * * * * * * * * * * * * * * * * * * * * * * * * * * */
803/* * * * * * * * * * * * internals * * * * * * * * * * * */
804/* * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1c79356b 805
0a7de745
A
806 virtual bool init( IORegistryEntry * from,
807 const IORegistryPlane * inPlane );
b0d623f7
A
808
809#ifdef XNU_KERNEL_PRIVATE
810public:
811#else
812private:
813#endif
0a7de745 814 static LIBKERN_RETURNS_NOT_RETAINED IORegistryEntry * initialize( void );
b0d623f7 815
39037602 816#ifdef XNU_KERNEL_PRIVATE
0a7de745 817 SInt32 getRegistryEntryGenerationCount( void ) const;
39037602
A
818#endif
819
1c79356b 820private:
0a7de745
A
821 inline bool arrayMember( OSArray * set,
822 const IORegistryEntry * member,
823 unsigned int * index = 0 ) const;
824
825 bool makeLink( IORegistryEntry * to,
826 unsigned int relation,
827 const IORegistryPlane * plane ) const;
828 void breakLink( IORegistryEntry * to,
829 unsigned int relation,
830 const IORegistryPlane * plane ) const;
831
832 APPLE_KEXT_COMPATIBILITY_VIRTUAL
b0d623f7 833 OSArray * getParentSetReference( const IORegistryPlane * plane )
0a7de745 834 const;
b0d623f7 835
0a7de745
A
836 APPLE_KEXT_COMPATIBILITY_VIRTUAL
837 OSArray * getChildSetReference( const IORegistryPlane * plane )
838 const;
1c79356b 839
0a7de745
A
840 APPLE_KEXT_COMPATIBILITY_VIRTUAL
841 IORegistryEntry * getChildFromComponent( const char ** path,
842 const IORegistryPlane * plane );
b0d623f7 843
0a7de745
A
844 APPLE_KEXT_COMPATIBILITY_VIRTUAL
845 LIBKERN_RETURNS_NOT_RETAINED
846 const OSSymbol * hasAlias( const IORegistryPlane * plane,
847 char * opath = 0, int * length = 0 ) const;
1c79356b 848
0a7de745
A
849 APPLE_KEXT_COMPATIBILITY_VIRTUAL
850 const char * matchPathLocation( const char * cmp,
851 const IORegistryPlane * plane );
1c79356b
A
852};
853
854/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
855
856/*! @class IORegistryIterator : public OSIterator
0a7de745
A
857 * @abstract An iterator over the registry.
858 * @discussion An iterator that can traverse the children or parents of a registry entry in a plane, and recurse. Access to the registry is protected against multiple threads, but an IORegistryIterator instance is for use by one thread only. */
1c79356b
A
859
860class IORegistryIterator : public OSIterator
861{
0a7de745 862 OSDeclareAbstractStructors(IORegistryIterator)
1c79356b
A
863
864private:
0a7de745
A
865 struct IORegCursor {
866 IORegCursor * next;
867 IORegistryEntry * current;
868 OSIterator * iter;
869 };
870 IORegCursor start;
871 IORegCursor * where;
872 IORegistryEntry * root;
873 OSOrderedSet * done;
874 const IORegistryPlane * plane;
875 IOOptionBits options;
876
877 virtual void free( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
878
879public:
880/*! @function iterateOver
0a7de745
A
881 * @abstract Create an iterator rooted at a given registry entry.
882 * @discussion This method creates an IORegistryIterator that is set up with options to iterate children or parents of a root entry, and to recurse automatically into entries as they are returned, or only when instructed. The iterator object keeps track of entries that have been recursed into previously to avoid loops.
883 * @param start The root entry to begin the iteration at.
884 * @param plane A plane object must be specified.
885 * @param options kIORegistryIterateRecursively may be set to recurse automatically into each entry as it is returned. This option affects the behaviour of the getNextObject method, which is defined in the OSIterator superclass. Other methods will override this behaviour. kIORegistryIterateParents may be set to iterate the parents of each entry, by default the children are iterated.
886 * @result A created IORegistryIterator instance, to be released by the caller when it has finished with it. */
1c79356b 887
0a7de745
A
888 static IORegistryIterator * iterateOver( IORegistryEntry * start,
889 const IORegistryPlane * plane,
890 IOOptionBits options = 0 );
1c79356b
A
891
892/*! @function iterateOver
0a7de745
A
893 * @abstract Create an iterator rooted at the registry root.
894 * @discussion This method creates an IORegistryIterator that is set up with options to iterate children of the registry root entry, and to recurse automatically into entries as they are returned, or only when instructed. The iterator object keeps track of entries that have been recursed into previously to avoid loops.
895 * @param plane A plane object must be specified.
896 * @param options kIORegistryIterateRecursively may be set to recurse automatically into each entry as it is returned. This option affects the behaviour of the getNextObject method, which is defined in the OSIterator superclass. Other methods will override this behaviour. kIORegistryIterateParents may be set to iterate the parents of each entry, by default the children are iterated.
897 * @result A created IORegistryIterator instance, to be released by the caller when it has finished with it. */
1c79356b 898
0a7de745
A
899 static IORegistryIterator * iterateOver( const IORegistryPlane * plane,
900 IOOptionBits options = 0 );
1c79356b
A
901
902/*! @function getNextObject
0a7de745
A
903 * @abstract Return the next object in the registry iteration.
904 * @discussion This method calls either getNextObjectFlat or getNextObjectRecursive depending on the options the iterator was created with. This implements the OSIterator defined getNextObject method. The object returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it.
905 * @result The next registry entry in the iteration (the current entry), or zero if the iteration has finished at this level of recursion. The entry returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. */
1c79356b 906
0a7de745 907 virtual IORegistryEntry * getNextObject( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
908
909/*! @function getNextObjectFlat
0a7de745
A
910 * @abstract Return the next object in the registry iteration, ignoring the kIORegistryIterateRecursively option.
911 * @discussion This method returns the next child, or parent if the kIORegistryIterateParents option was used to create the iterator, of the current root entry. The object returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it.
912 * @result The next registry entry in the iteration (the current entry), or zero if the iteration has finished at this level of recursion, or the iteration is invalid (see isValid). The entry returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. */
1c79356b 913
0a7de745 914 virtual IORegistryEntry * getNextObjectFlat( void );
1c79356b
A
915
916/*! @function getNextObjectRecursive
0a7de745
A
917 * @abstract Return the next object in the registry iteration, and enter it.
918 * @discussion If the iterator has a current entry, and the iterator has not already entered previously, enterEntry is called to recurse into it, ie. make it the new root, and the next child, or parent if the kIORegistryIterateParents option was used to create the iterator, at this new level of recursion is returned. If there is no current entry at this level of recursion, exitEntry is called and the process repeats, until the iteration returns to the entry the iterator was created with and zero is returned. The object returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it.
919 * @result The next registry entry in the iteration (the current entry), or zero if its finished, or the iteration is invalid (see isValid). The entry returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. */
1c79356b 920
0a7de745 921 virtual IORegistryEntry * getNextObjectRecursive( void );
1c79356b
A
922
923/*! @function getCurrentEntry
0a7de745
A
924 * @abstract Return the current entry in the registry iteration.
925 * @discussion This method returns the current entry, last returned by getNextObject et al. The object returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. If the iteration is no longer valid (see isValid), the current entry is zero.
926 * @result The current registry entry in the iteration, or zero if the last iteration returned zero, or the iteration is invalid (see isValid). The entry returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. */
1c79356b 927
0a7de745 928 virtual IORegistryEntry * getCurrentEntry( void );
1c79356b
A
929
930/*! @function enterEntry
0a7de745
A
931 * @abstract Recurse into the current entry in the registry iteration.
932 * @discussion This method makes the current entry, ie. the last entry returned by getNextObject et al., the root in a new level of recursion. */
933
934 virtual void enterEntry( void );
1c79356b 935
1c79356b 936/*! @function enterEntry
0a7de745
A
937 * @abstract Recurse into the current entry in the registry iteration.
938 * @discussion This method recurses into an entry as with enterEntry, but also switches from the current plane to a new one set by the caller.
939 * @param plane The new plane to switch into. */
1c79356b 940
0a7de745 941 virtual void enterEntry( const IORegistryPlane * plane );
1c79356b
A
942
943/*! @function exitEntry
0a7de745
A
944 * @abstract Exits a level of recursion, restoring the current entry.
945 * @discussion This method undoes an enterEntry, restoring the current entry. If there are no more levels of recursion to exit false is returned, otherwise true is returned.
946 * @result true if a level of recursion was undone, false if no recursive levels are left in the iteration. */
1c79356b 947
0a7de745 948 virtual bool exitEntry( void );
1c79356b
A
949
950/*! @function reset
0a7de745
A
951 * @abstract Exits all levels of recursion, restoring the iterator to its state at creation.
952 * @discussion This method exits all levels of recursion, and restores the iterator to its state at creation. */
1c79356b 953
0a7de745 954 virtual void reset( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
955
956/*! @function isValid
0a7de745
A
957 * @abstract Checks that no registry changes have invalidated the iteration.
958 * @discussion If a registry iteration is invalidated by changes to the registry, it will be made invalid, the currentEntry will be considered zero, and further calls to getNextObject et al. will return zero. The iterator should be reset to restart the iteration when this happens.
959 * @result false if the iterator has been invalidated by changes to the registry, true otherwise. */
1c79356b 960
0a7de745 961 virtual bool isValid( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
962
963/*! @function iterateAll
0a7de745
A
964 * @abstract Iterates all entries (with getNextObject) and returns a set of all returned entries.
965 * @discussion This method will reset, then iterate all entries in the iteration (with getNextObject).
966 * @result A set of entries returned by the iteration. The caller should release the set when it has finished with it. Zero is returned on a resource failure. */
1c79356b 967
0a7de745 968 virtual OSOrderedSet * iterateAll( void );
1c79356b
A
969};
970
971#endif /* _IOKIT_IOREGISTRYENTRY_H */