2 * Copyright (c) 1998-2006 Apple Computer, Inc. All rights reserved.
3 * Copyright (c) 2007-2012 Apple Inc. All rights reserved.
5 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
7 * This file contains Original Code and/or Modifications of Original Code
8 * as defined in and that are subject to the Apple Public Source License
9 * Version 2.0 (the 'License'). You may not use this file except in
10 * compliance with the License. The rights granted to you under the License
11 * may not be used to create, or enable the creation or redistribution of,
12 * unlawful or unlicensed copies of an Apple operating system, or to
13 * circumvent, violate, or enable the circumvention or violation of, any
14 * terms of an Apple operating system software license agreement.
16 * Please obtain a copy of the License at
17 * http://www.opensource.apple.com/apsl/ and read it before using this file.
19 * The Original Code and all software distributed under the License are
20 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
21 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
22 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
24 * Please see the License for the specific language governing rights and
25 * limitations under the License.
27 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 #ifndef _IOKIT_IONVRAM_H
31 #define _IOKIT_IONVRAM_H
34 #include <libkern/c++/OSPtr.h>
35 #include <IOKit/IOKitKeys.h>
36 #include <IOKit/IOService.h>
37 #include <IOKit/IODeviceTreeSupport.h>
38 #include <IOKit/nvram/IONVRAMController.h>
39 #endif /* __cplusplus */
40 #include <uuid/uuid.h>
42 #define kIODTNVRAMOFPartitionName "common"
43 #define kIODTNVRAMXPRAMPartitionName "APL,MacOS75"
44 #define kIODTNVRAMPanicInfoPartitonName "APL,OSXPanic"
45 #define kIODTNVRAMFreePartitionName "wwwwwwwwwwww"
46 #define kIODTNVRAMSystemPartitionName "secure"
48 #define MIN_SYNC_NOW_INTERVAL 15*60 /* Minimum 15 Minutes interval mandated */
50 enum IONVRAMVariableType
{
51 kOFVariableTypeBoolean
= 1,
52 kOFVariableTypeNumber
,
53 kOFVariableTypeString
,
57 enum IONVRAMOperation
{
58 kIONVRAMOperationRead
,
59 kIONVRAMOperationWrite
,
60 kIONVRAMOperationDelete
,
61 kIONVRAMOperationObliterate
,
62 kIONVRAMOperationReset
66 // Deprecated but still used in AppleEFIRuntime for now
67 kOFVariablePermRootOnly
= 0,
68 kOFVariablePermUserRead
,
69 kOFVariablePermUserWrite
,
70 kOFVariablePermKernelOnly
75 class IODTNVRAMVariables
;
77 class IODTNVRAM
: public IOService
79 OSDeclareDefaultStructors(IODTNVRAM
);
82 IONVRAMController
*_nvramController
;
83 OSPtr
<const OSSymbol
> _registryPropertiesKey
;
85 IOLock
*_variableLock
;
86 IOLock
*_controllerLock
;
87 UInt32 _commonPartitionOffset
;
88 UInt32 _commonPartitionSize
;
90 IODTNVRAMVariables
*_commonService
;
91 OSPtr
<OSDictionary
> _commonDict
;
92 UInt32 _systemPartitionOffset
;
93 UInt32 _systemPartitionSize
;
95 IODTNVRAMVariables
*_systemService
;
96 OSPtr
<OSDictionary
> _systemDict
;
97 OSPtr
<OSDictionary
> _nvramPartitionOffsets
;
98 OSPtr
<OSDictionary
> _nvramPartitionLengths
;
100 SInt32 _lastDeviceSync
;
105 virtual UInt8
calculatePartitionChecksum(UInt8
*partitionHeader
);
106 virtual IOReturn
initVariables(void);
107 virtual UInt32
getOFVariableType(const char *propName
) const;
108 virtual UInt32
getOFVariableType(const OSSymbol
*propSymbol
) const;
109 virtual UInt32
getOFVariablePerm(const char *propName
) const;
110 virtual UInt32
getOFVariablePerm(const OSSymbol
*propSymbol
) const;
111 virtual bool getOWVariableInfo(UInt32 variableNumber
, const OSSymbol
**propSymbol
,
112 UInt32
*propType
, UInt32
*propOffset
);
113 virtual bool convertPropToObject(UInt8
*propName
, UInt32 propNameLength
,
114 UInt8
*propData
, UInt32 propDataLength
,
115 LIBKERN_RETURNS_RETAINED
const OSSymbol
**propSymbol
,
116 LIBKERN_RETURNS_RETAINED OSObject
**propObject
);
117 bool convertPropToObject(UInt8
*propName
, UInt32 propNameLength
,
118 UInt8
*propData
, UInt32 propDataLength
,
119 OSSharedPtr
<const OSSymbol
>& propSymbol
,
120 OSSharedPtr
<OSObject
>& propObject
);
121 virtual bool convertObjectToProp(UInt8
*buffer
, UInt32
*length
,
122 const OSSymbol
*propSymbol
, OSObject
*propObject
);
123 virtual UInt16
generateOWChecksum(UInt8
*buffer
);
124 virtual bool validateOWChecksum(UInt8
*buffer
);
125 virtual void updateOWBootArgs(const OSSymbol
*key
, OSObject
*value
);
126 virtual bool searchNVRAMProperty(struct IONVRAMDescriptor
*hdr
,
129 virtual IOReturn
readNVRAMPropertyType0(IORegistryEntry
*entry
,
130 const OSSymbol
**name
,
132 virtual IOReturn
writeNVRAMPropertyType0(IORegistryEntry
*entry
,
133 const OSSymbol
*name
,
136 virtual OSPtr
<OSData
> unescapeBytesToData(const UInt8
*bytes
, UInt32 length
);
137 virtual OSPtr
<OSData
> escapeDataToData(OSData
* value
);
139 virtual IOReturn
readNVRAMPropertyType1(IORegistryEntry
*entry
,
140 const OSSymbol
**name
,
142 virtual IOReturn
writeNVRAMPropertyType1(IORegistryEntry
*entry
,
143 const OSSymbol
*name
,
146 UInt32
getNVRAMSize(void);
147 void initNVRAMImage(void);
148 void initProxyData(void);
149 IOReturn
serializeVariables(void);
150 IOReturn
setPropertyInternal(const OSSymbol
*aKey
, OSObject
*anObject
);
151 IOReturn
removePropertyInternal(const OSSymbol
*aKey
);
152 IOReturn
chooseDictionary(IONVRAMOperation operation
, const uuid_t
*varGuid
,
153 const char *variableName
, OSDictionary
**dict
) const;
154 bool handleSpecialVariables(const char *name
, uuid_t
*guid
, OSObject
*obj
, IOReturn
*error
);
157 virtual bool init(IORegistryEntry
*old
, const IORegistryPlane
*plane
) APPLE_KEXT_OVERRIDE
;
159 virtual void registerNVRAMController(IONVRAMController
*nvram
);
161 virtual void sync(void);
162 virtual IOReturn
syncOFVariables(void);
164 virtual bool serializeProperties(OSSerialize
*s
) const APPLE_KEXT_OVERRIDE
;
165 virtual OSPtr
<OSObject
> copyProperty(const OSSymbol
*aKey
) const APPLE_KEXT_OVERRIDE
;
166 virtual OSPtr
<OSObject
> copyProperty(const char *aKey
) const APPLE_KEXT_OVERRIDE
;
167 virtual OSObject
*getProperty(const OSSymbol
*aKey
) const APPLE_KEXT_OVERRIDE
;
168 virtual OSObject
*getProperty(const char *aKey
) const APPLE_KEXT_OVERRIDE
;
169 virtual bool setProperty(const OSSymbol
*aKey
, OSObject
*anObject
) APPLE_KEXT_OVERRIDE
;
170 virtual void removeProperty(const OSSymbol
*aKey
) APPLE_KEXT_OVERRIDE
;
171 virtual IOReturn
setProperties(OSObject
*properties
) APPLE_KEXT_OVERRIDE
;
173 virtual IOReturn
readXPRAM(IOByteCount offset
, UInt8
*buffer
,
175 virtual IOReturn
writeXPRAM(IOByteCount offset
, UInt8
*buffer
,
178 virtual IOReturn
readNVRAMProperty(IORegistryEntry
*entry
,
179 const OSSymbol
**name
,
181 virtual IOReturn
writeNVRAMProperty(IORegistryEntry
*entry
,
182 const OSSymbol
*name
,
185 virtual OSDictionary
*getNVRAMPartitions(void);
187 virtual IOReturn
readNVRAMPartition(const OSSymbol
*partitionID
,
188 IOByteCount offset
, UInt8
*buffer
,
191 virtual IOReturn
writeNVRAMPartition(const OSSymbol
*partitionID
,
192 IOByteCount offset
, UInt8
*buffer
,
195 virtual IOByteCount
savePanicInfo(UInt8
*buffer
, IOByteCount length
);
196 virtual bool safeToSync(void);
197 void syncInternal(bool rateLimit
);
200 #endif /* __cplusplus */
202 #endif /* !_IOKIT_IONVRAM_H */