Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | /*! * @header * Interfaces for manipulating Image4 firmware images. */ #ifndef __IMG4_IMAGE_H #define __IMG4_IMAGE_H #ifndef __IMG4_INDIRECT #error "Please #include <img4/firmware.h> instead of this file directly" #endif // __IMG4_INDIRECT __BEGIN_DECLS OS_ASSUME_NONNULL_BEGIN OS_ASSUME_PTR_ABI_SINGLE_BEGIN /*! * @function img4_image_get_bytes * Returns the authenticated payload from an Image4 image. * * @param image * The image to query. May be NULL. * * @result * A buffer which describes the authenticated payload. If the payload was not * authenticated, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20200508 OS_EXPORT OS_WARN_RESULT const img4_buff_t *_Nullable img4_image_get_bytes(img4_image_t _Nullable image); #else #define img4_image_get_bytes(...) (img4if->i4if_v7.image_get_bytes(__VA_ARGS__)) #endif /*! * @function img4_image_get_property_bool * Retrieves the Boolean value for the requested image property. * * @param image * The image to query. * * @param _4cc * The 4cc of the desired image property. * * @param storage * A pointer to storage for a Boolean value. * * @result * If the property is present for the image, a pointer to the storage provided * in {@link storage}. If the property is not present in the image or its value * is not a Boolean, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20200508 OS_EXPORT OS_WARN_RESULT OS_NONNULL1 OS_NONNULL3 const bool * img4_image_get_property_bool(img4_image_t image, img4_4cc_t _4cc, bool *storage); #else #define img4_image_get_property_bool(...) \ (img4if->i4if_v7.image_get_property_bool(__VA_ARGS__)) #endif /*! * @function img4_image_get_property_uint32 * Retrieves the unsigned 32-bit integer value for the requested image property. * * @param image * The image to query. * * @param _4cc * The 4cc of the desired image property. * * @param storage * A pointer to storage for a 32-bit unsigned integer value. * * @result * If the property is present for the image, a pointer to the storage provided * in {@link storage}. If the property is not present in the image or its value * is not an unsigned 32-bit integer, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20200508 OS_EXPORT OS_WARN_RESULT OS_NONNULL1 OS_NONNULL3 const uint32_t * img4_image_get_property_uint32(img4_image_t image, img4_4cc_t _4cc, uint32_t *storage); #else #define img4_image_get_property_uint32(...) \ (img4if->i4if_v7.image_get_property_uint32(__VA_ARGS__)) #endif /*! * @function img4_image_get_property_uint64 * Retrieves the unsigned 64-bit integer value for the requested image property. * * @param image * The image to query. * * @param _4cc * The 4cc of the desired image property. * * @param storage * A pointer to storage for a 64-bit unsigned integer value. * * @result * If the property is present for the image, a pointer to the storage provided * in {@link storage}. If the property is not present in the image or its value * is not an unsigned 64-bit integer, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20200508 OS_EXPORT OS_WARN_RESULT OS_NONNULL1 OS_NONNULL3 const uint64_t * img4_image_get_property_uint64(img4_image_t image, img4_4cc_t _4cc, uint64_t *storage); #else #define img4_image_get_property_uint64(...) \ (img4if->i4if_v7.image_get_property_uint64(__VA_ARGS__)) #endif /*! * @function img4_image_get_property_data * Retrieves the buffer value for the requested image property. * * @param image * The image to query. * * @param _4cc * The 4cc of the desired image property. * * @param storage * A pointer to storage for a buffer value. * * @result * If the property is present for the image, a pointer to the storage provided * in {@link storage}. If the property is not present in the image or its value * is not a data, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20200508 OS_EXPORT OS_WARN_RESULT OS_NONNULL1 OS_NONNULL3 const img4_buff_t * img4_image_get_property_data(img4_image_t image, img4_4cc_t _4cc, img4_buff_t *storage); #else #define img4_image_get_property_data(...) \ (img4if->i4if_v7.image_get_property_data(__VA_ARGS__)) #endif /*! * @function img4_image_get_entitlement_bool * Retrieves the Boolean value for the requested image entitlement. * * @param image * The image to query. * * @param _4cc * The 4cc of the desired image entitlement. * * @param storage * A pointer to storage for a Boolean value. * * @result * If the entitlement is present for the image, a pointer to the storage * provided in {@link storage}. If the property is not present in the image or * its value is not a Boolean, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20220513 OS_EXPORT OS_WARN_RESULT OS_NONNULL1 OS_NONNULL3 const bool * img4_image_get_entitlement_bool(img4_image_t image, img4_4cc_t _4cc, bool *storage); #else #define img4_image_get_entitlement_bool(...) \ (img4if->i4if_v18.image_get_entitlement_bool(__VA_ARGS__)) #endif /*! * @function img4_image_get_entitlement_uint32 * Retrieves the unsigned 32-bit integer value for the requested image * entitlement. * * @param image * The image to query. * * @param _4cc * The 4cc of the desired image entitlement. * * @param storage * A pointer to storage for a 32-bit unsigned integer value. * * @result * If the entitlement is present for the image, a pointer to the storage * provided in {@link storage}. If the property is not present in the image or * its value is not an unsigned 32-bit integer, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20220513 OS_EXPORT OS_WARN_RESULT OS_NONNULL1 OS_NONNULL3 const uint32_t * img4_image_get_entitlement_uint32(img4_image_t image, img4_4cc_t _4cc, uint32_t *storage); #else #define img4_image_get_entitlement_uint32(...) \ (img4if->i4if_v18.image_get_entitlement_uint32(__VA_ARGS__)) #endif /*! * @function img4_image_get_entitlement_uint64 * Retrieves the unsigned 64-bit integer value for the requested image * entitlement. * * @param image * The image to query. * * @param _4cc * The 4cc of the desired image entitlement. * * @param storage * A pointer to storage for a 64-bit unsigned integer value. * * @result * If the entitlement is present for the image, a pointer to the storage * provided in {@link storage}. If the property is not present in the image or * its value is not an unsigned 64-bit integer, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20220513 OS_EXPORT OS_WARN_RESULT OS_NONNULL1 OS_NONNULL3 const uint64_t * img4_image_get_entitlement_uint64(img4_image_t image, img4_4cc_t _4cc, uint64_t *storage); #else #define img4_image_get_entitlement_uint64(...) \ (img4if->i4if_v18.image_get_entitlement_uint64(__VA_ARGS__)) #endif /*! * @function img4_image_get_entitlement_data * Retrieves the buffer value for the requested image entitlement. * * @param image * The image to query. * * @param _4cc * The 4cc of the desired image entitlement. * * @param storage * A pointer to storage for a buffer value. * * @result * If the entitlement is present for the image, a pointer to the storage * provided in {@link storage}. If the property is not present in the image or * its value is not a data, NULL is returned. */ #if !XNU_KERNEL_PRIVATE IMG4_API_AVAILABLE_20220513 OS_EXPORT OS_WARN_RESULT OS_NONNULL1 OS_NONNULL3 const img4_buff_t * img4_image_get_entitlement_data(img4_image_t image, img4_4cc_t _4cc, img4_buff_t *storage); #else #define img4_image_get_entitlement_data(...) \ (img4if->i4if_v18.image_get_entitlement_data(__VA_ARGS__)) #endif OS_ASSUME_PTR_ABI_SINGLE_END OS_ASSUME_NONNULL_END __END_DECLS #endif // __IMG4_IMAGE_H |