xref: /xnu-11215.61.5/EXTERNAL_HEADERS/CoreEntitlements/Serialization.h (revision 4f1223e81cd707a65cc109d0b8ad6653699da3c4)
1*4f1223e8SApple OSS Distributions //
2*4f1223e8SApple OSS Distributions //  Serialization.h
3*4f1223e8SApple OSS Distributions //  CoreEntitlements
4*4f1223e8SApple OSS Distributions //
5*4f1223e8SApple OSS Distributions //
6*4f1223e8SApple OSS Distributions 
7*4f1223e8SApple OSS Distributions #ifndef CORE_ENTITLEMENTS_SERIALIZATION_H
8*4f1223e8SApple OSS Distributions #define CORE_ENTITLEMENTS_SERIALIZATION_H
9*4f1223e8SApple OSS Distributions 
10*4f1223e8SApple OSS Distributions #ifndef _CE_INDIRECT
11*4f1223e8SApple OSS Distributions #error "Please include <CoreEntitlements/CoreEntitlements.h> instead of this file"
12*4f1223e8SApple OSS Distributions #endif
13*4f1223e8SApple OSS Distributions 
14*4f1223e8SApple OSS Distributions #include <CoreEntitlements/Result.h>
15*4f1223e8SApple OSS Distributions #include <CoreEntitlements/Runtime.h>
16*4f1223e8SApple OSS Distributions #include <CoreEntitlements/Entitlements.h>
17*4f1223e8SApple OSS Distributions 
18*4f1223e8SApple OSS Distributions __ptrcheck_abi_assume_single();
19*4f1223e8SApple OSS Distributions 
20*4f1223e8SApple OSS Distributions /*!
21*4f1223e8SApple OSS Distributions  * @enum CESerializedElementType_t
22*4f1223e8SApple OSS Distributions  * These are the primitive types that CoreEntitlements can serialize
23*4f1223e8SApple OSS Distributions  * Depending on the underlying representation some of these elements may be "virtual" or zero-sized.
24*4f1223e8SApple OSS Distributions  * However, they must still be included.
25*4f1223e8SApple OSS Distributions  */
26*4f1223e8SApple OSS Distributions OS_CLOSED_ENUM(CESerializedElementType, int64_t,
27*4f1223e8SApple OSS Distributions                /* A boolean element with a true / false value */
28*4f1223e8SApple OSS Distributions                kCESerializedBool = 1,
29*4f1223e8SApple OSS Distributions                /* A string element with a definite length */
30*4f1223e8SApple OSS Distributions                kCESerializedString = 2,
31*4f1223e8SApple OSS Distributions                /* A key string element with a definite length */
32*4f1223e8SApple OSS Distributions                kCESerializedKey = 3,
33*4f1223e8SApple OSS Distributions                /* An integer element, must be representable as int64_t */
34*4f1223e8SApple OSS Distributions                kCESerializedInteger = 4,
35*4f1223e8SApple OSS Distributions                /* Marks the start of an array / ordered sequence */
36*4f1223e8SApple OSS Distributions                kCESerializedArrayBegin = 5,
37*4f1223e8SApple OSS Distributions                /* Marks the end of an array / ordered sequence */
38*4f1223e8SApple OSS Distributions                kCESerializedArrayEnd = 6,
39*4f1223e8SApple OSS Distributions                /* Marks the start of a dictionary */
40*4f1223e8SApple OSS Distributions                /* The only valid elements contained in a dictionary are tuples (represented as an ordered sequence) */
41*4f1223e8SApple OSS Distributions                /* The first element of the ordered sequence must be kCESerializedString value */
42*4f1223e8SApple OSS Distributions                /* No restrictions are placed on the contents of the second element*/
43*4f1223e8SApple OSS Distributions                kCESerializedDictionaryBegin = 7,
44*4f1223e8SApple OSS Distributions                /* Marks the end of a dictionary */
45*4f1223e8SApple OSS Distributions                kCESerializedDictionaryEnd = 8,
46*4f1223e8SApple OSS Distributions                /* A data element with a definite length*/
47*4f1223e8SApple OSS Distributions                kCESerializedData = 9,
48*4f1223e8SApple OSS Distributions                );
49*4f1223e8SApple OSS Distributions 
50*4f1223e8SApple OSS Distributions /*!
51*4f1223e8SApple OSS Distributions  * @typedef CESerializedElement_t
52*4f1223e8SApple OSS Distributions  * This structure represents an encodable piece of data, along with its type and length (in bytes).
53*4f1223e8SApple OSS Distributions  * For the most part you will not need to use this structure manually, and instead you should use the helpers below
54*4f1223e8SApple OSS Distributions  */
55*4f1223e8SApple OSS Distributions typedef struct CESerializedElement {
56*4f1223e8SApple OSS Distributions     CESerializedElementType_t type;
57*4f1223e8SApple OSS Distributions     union {
58*4f1223e8SApple OSS Distributions #if !__has_ptrcheck
59*4f1223e8SApple OSS Distributions         void* bytes;
60*4f1223e8SApple OSS Distributions #endif
61*4f1223e8SApple OSS Distributions         int64_t value;
62*4f1223e8SApple OSS Distributions     } data;
63*4f1223e8SApple OSS Distributions     size_t length;
64*4f1223e8SApple OSS Distributions     bool pair;
65*4f1223e8SApple OSS Distributions } CESerializedElement_t;
66*4f1223e8SApple OSS Distributions 
CESerializedElementGetData(const CESerializedElement_t * element)67*4f1223e8SApple OSS Distributions static inline void *CE_HEADER_INDEXABLE CESerializedElementGetData(const CESerializedElement_t *element) {
68*4f1223e8SApple OSS Distributions     return __unsafe_forge_bidi_indexable(void *, element->data.value, element->length);
69*4f1223e8SApple OSS Distributions }
70*4f1223e8SApple OSS Distributions 
CESerializedElementSetData(CESerializedElement_t * element,void * __sized_by (length)bytes,size_t length)71*4f1223e8SApple OSS Distributions static inline void CESerializedElementSetData(CESerializedElement_t *element, void *__sized_by(length) bytes, size_t length) {
72*4f1223e8SApple OSS Distributions     element->data.value = (intptr_t)bytes;
73*4f1223e8SApple OSS Distributions     element->length = length;
74*4f1223e8SApple OSS Distributions }
75*4f1223e8SApple OSS Distributions 
76*4f1223e8SApple OSS Distributions /*!
77*4f1223e8SApple OSS Distributions  * @function CESizeSerialization
78*4f1223e8SApple OSS Distributions  * This function will iterate over the elements that are to be serialized and compute the size of an allocation that needs to be made
79*4f1223e8SApple OSS Distributions  * for a successful serialization.
80*4f1223e8SApple OSS Distributions  *
81*4f1223e8SApple OSS Distributions  * @note
82*4f1223e8SApple OSS Distributions  * This function may modify the length field of the CESerializedElements that are passed in. This must be done for serialization to succeed
83*4f1223e8SApple OSS Distributions  *
84*4f1223e8SApple OSS Distributions  * @returns
85*4f1223e8SApple OSS Distributions  * kCENoError if the requiredSize has been successfully populated and contains a valid value
86*4f1223e8SApple OSS Distributions  */
87*4f1223e8SApple OSS Distributions CEError_t CESizeSerialization(CESerializedElement_t elements[__counted_by(elementsCount)], size_t elementsCount, size_t* requiredSize) __result_use_check;
88*4f1223e8SApple OSS Distributions 
89*4f1223e8SApple OSS Distributions /*!
90*4f1223e8SApple OSS Distributions  * @function CESizeXMLSerialization
91*4f1223e8SApple OSS Distributions  * This function will iterate over the elements that are to be serialized and compute the size of an allocation that needs to be made
92*4f1223e8SApple OSS Distributions  * for a successful serialization to XML.
93*4f1223e8SApple OSS Distributions  *
94*4f1223e8SApple OSS Distributions  * @note
95*4f1223e8SApple OSS Distributions  * This function may modify the length field of the CESerializedElements that are passed in. This must be done for serialization to succeed
96*4f1223e8SApple OSS Distributions  *
97*4f1223e8SApple OSS Distributions  * @returns
98*4f1223e8SApple OSS Distributions  * kCENoError if the requiredSize has been successfully populated and contains a valid value
99*4f1223e8SApple OSS Distributions  */
100*4f1223e8SApple OSS Distributions CEError_t CESizeXMLSerialization(CESerializedElement_t elements[__counted_by(elementsCount)], size_t elementsCount, size_t* requiredSize) __result_use_check;
101*4f1223e8SApple OSS Distributions 
102*4f1223e8SApple OSS Distributions /*!
103*4f1223e8SApple OSS Distributions  * @function CESerializeWithOptions
104*4f1223e8SApple OSS Distributions  * Serializes the array of elements that contains the underlying data. The elements must have been sized with CESizeSerialization before calling this function.
105*4f1223e8SApple OSS Distributions  *
106*4f1223e8SApple OSS Distributions  * @param runtime
107*4f1223e8SApple OSS Distributions  * The runtime to use for this operation
108*4f1223e8SApple OSS Distributions  *
109*4f1223e8SApple OSS Distributions  * @param options
110*4f1223e8SApple OSS Distributions  * Options that modify what can be serialized.
111*4f1223e8SApple OSS Distributions  *
112*4f1223e8SApple OSS Distributions  * @param elements
113*4f1223e8SApple OSS Distributions  * The list of elements to serialize
114*4f1223e8SApple OSS Distributions  *
115*4f1223e8SApple OSS Distributions  * @param elementsCount
116*4f1223e8SApple OSS Distributions  * How many elements are in that list
117*4f1223e8SApple OSS Distributions  *
118*4f1223e8SApple OSS Distributions  * @param start
119*4f1223e8SApple OSS Distributions  * A pointer to the first byte into a buffer that will be filled with the serialized representation
120*4f1223e8SApple OSS Distributions  *
121*4f1223e8SApple OSS Distributions  * @param end
122*4f1223e8SApple OSS Distributions  * A pointer 1 byte past the end of the buffer to be used for serialization
123*4f1223e8SApple OSS Distributions  */
124*4f1223e8SApple OSS Distributions CEError_t CESerializeWithOptions(const CERuntime_t runtime, CEValidationOptions* options, CESerializedElement_t elements[__counted_by(elementsCount)], size_t elementsCount, uint8_t *__ended_by(end) start, uint8_t* end) __result_use_check;
125*4f1223e8SApple OSS Distributions 
126*4f1223e8SApple OSS Distributions /*!
127*4f1223e8SApple OSS Distributions  * @function CESerialize
128*4f1223e8SApple OSS Distributions  * Serializes the array of elements that contains the underlying data. The elements must have been sized with CESizeSerialization before calling this function.
129*4f1223e8SApple OSS Distributions  *
130*4f1223e8SApple OSS Distributions  * @param runtime
131*4f1223e8SApple OSS Distributions  * The runtime to use for this operation
132*4f1223e8SApple OSS Distributions  *
133*4f1223e8SApple OSS Distributions  * @param elements
134*4f1223e8SApple OSS Distributions  * The list of elements to serialize
135*4f1223e8SApple OSS Distributions  *
136*4f1223e8SApple OSS Distributions  * @param elementsCount
137*4f1223e8SApple OSS Distributions  * How many elements are in that list
138*4f1223e8SApple OSS Distributions  *
139*4f1223e8SApple OSS Distributions  * @param start
140*4f1223e8SApple OSS Distributions  * A pointer to the first byte into a buffer that will be filled with the serialized representation
141*4f1223e8SApple OSS Distributions  *
142*4f1223e8SApple OSS Distributions  * @param end
143*4f1223e8SApple OSS Distributions  * A pointer 1 byte past the end of the buffer to be used for serialization
144*4f1223e8SApple OSS Distributions  */
145*4f1223e8SApple OSS Distributions CEError_t CESerialize(const CERuntime_t runtime, CESerializedElement_t elements[__counted_by(elementsCount)], size_t elementsCount, uint8_t *__ended_by(end) start, uint8_t* end) __result_use_check;
146*4f1223e8SApple OSS Distributions 
147*4f1223e8SApple OSS Distributions /*!
148*4f1223e8SApple OSS Distributions  * @function CESerializeXML
149*4f1223e8SApple OSS Distributions  * Serializes the array of elements that contains the underlying data. The elements must have been sized with CESizeXMLSerialization before calling this function.
150*4f1223e8SApple OSS Distributions  *
151*4f1223e8SApple OSS Distributions  * @param runtime
152*4f1223e8SApple OSS Distributions  * The runtime to use for this operation
153*4f1223e8SApple OSS Distributions  *
154*4f1223e8SApple OSS Distributions  * @param elements
155*4f1223e8SApple OSS Distributions  * The list of elements to serialize
156*4f1223e8SApple OSS Distributions  *
157*4f1223e8SApple OSS Distributions  * @param elementsCount
158*4f1223e8SApple OSS Distributions  * How many elements are in that list
159*4f1223e8SApple OSS Distributions  *
160*4f1223e8SApple OSS Distributions  * @param start
161*4f1223e8SApple OSS Distributions  * A pointer to the first byte into a buffer that will be filled with the serialized representation
162*4f1223e8SApple OSS Distributions  *
163*4f1223e8SApple OSS Distributions  * @param end
164*4f1223e8SApple OSS Distributions  * A pointer 1 byte past the end of the buffer to be used for serialization
165*4f1223e8SApple OSS Distributions  */
166*4f1223e8SApple OSS Distributions CEError_t CESerializeXML(const CERuntime_t runtime, CESerializedElement_t elements[__counted_by(elementsCount)], size_t elementsCount, uint8_t *__ended_by(end) start, uint8_t* end) __result_use_check;
167*4f1223e8SApple OSS Distributions 
168*4f1223e8SApple OSS Distributions // Helpers
169*4f1223e8SApple OSS Distributions // These automatically construct CESerializedElements for you
170*4f1223e8SApple OSS Distributions #define CESerializeInteger(intv) (CESerializedElement_t){.type = kCESerializedInteger, .data.value = intv}
171*4f1223e8SApple OSS Distributions #define CESerializeBool(boolVal) (CESerializedElement_t){.type = kCESerializedBool, .data.value = !!boolVal}
172*4f1223e8SApple OSS Distributions #define CESerializeStaticString(strVal) (CESerializedElement_t){.type = kCESerializedString, .data.value = (intptr_t)strVal, .length = sizeof(strVal) - 1}
173*4f1223e8SApple OSS Distributions #define CESerializeKey(strVal) (CESerializedElement_t){.type = kCESerializedKey, .data.value = (intptr_t)strVal, .length = sizeof(strVal) - 1}
174*4f1223e8SApple OSS Distributions #define CESerializeDynamicKey(strVal, len) (CESerializedElement_t){.type = kCESerializedKey, .data.value = (intptr_t)strVal, .length = len}
175*4f1223e8SApple OSS Distributions #define CESerializeString(strVal, len) (CESerializedElement_t){.type = kCESerializedString, .data.value = (intptr_t)strVal, .length = len}
176*4f1223e8SApple OSS Distributions #define CESerializeData(dataVal, len) (CESerializedElement_t){.type = kCESerializedData, .data.value = (intptr_t)dataVal, .length = len}
177*4f1223e8SApple OSS Distributions #define CESerializeArray(...) (CESerializedElement_t){.type = kCESerializedArrayBegin}, __VA_ARGS__ , (CESerializedElement_t){.type = kCESerializedArrayEnd}
178*4f1223e8SApple OSS Distributions #define CESerializeDictionary(...) (CESerializedElement_t){.type = kCESerializedDictionaryBegin}, __VA_ARGS__ , (CESerializedElement_t){.type = kCESerializedDictionaryEnd}
179*4f1223e8SApple OSS Distributions #define CESerializeDictionaryPair(a, b) CESerializeArray(a, b)
180*4f1223e8SApple OSS Distributions 
181*4f1223e8SApple OSS Distributions #endif
182