blob: 60040aebd5b8e4e23ded296b37a8d4094fc05be4 [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
2 * @author: Jeff Thompson
Jeff Thompsone5b37a52013-07-08 15:39:01 -07003 * Derived from BinaryXMLDecoder.js by Meki Cheraoui.
Jeff Thompson47eecfc2013-07-07 22:56:46 -07004 * See COPYING for copyright and distribution information.
Jeff Thompson76317aa2013-06-25 19:11:48 -07005 */
6
7#include "BinaryXML.h"
8#include "BinaryXMLDecoder.h"
9
Jeff Thompsonb4ee4002013-06-28 13:41:43 -070010/**
11 * Return the octet at self->offset, converting to unsigned int. Increment self->offset.
12 * This does not check for reading past the end of the input, so this is called "unsafe".
13 */
14static inline unsigned int unsafeReadOctet(struct ndn_BinaryXMLDecoder *self)
15{
16 return (unsigned int)(self->input[self->offset++] & 0xff);
17}
18
19/**
20 * Return the octet at self->offset, converting to unsigned int. Do not increment self->offset.
21 * This does not check for reading past the end of the input, so this is called "unsafe".
22 */
23static inline unsigned int unsafeGetOctet(struct ndn_BinaryXMLDecoder *self)
24{
25 return (unsigned int)(self->input[self->offset] & 0xff);
26}
27
Jeff Thompson167ca5a2013-07-07 20:45:43 -070028/**
29 * Parse the value as a decimal unsigned integer. This does not check for whitespace or + sign.
30 * If valueLength is 0, this succeeds with resultOut 0.
31 * @param value
32 * @param valueLength
33 * @param resultOut output the parsed integer.
Jeff Thompson8b666002013-07-08 01:16:26 -070034 * @return 0 for success, else an error code, including if an element of value is not a decimal digit.
Jeff Thompson167ca5a2013-07-07 20:45:43 -070035 */
Jeff Thompson8b666002013-07-08 01:16:26 -070036static ndn_Error parseUnsignedDecimalInt(unsigned char *value, unsigned int valueLength, unsigned int *resultOut)
Jeff Thompson167ca5a2013-07-07 20:45:43 -070037{
38 unsigned int result = 0;
39
40 unsigned int i;
41 for (i = 0; i < valueLength; ++i) {
42 unsigned char digit = value[i];
43 if (!(digit >= '0' && digit <= '9'))
Jeff Thompson8b666002013-07-08 01:16:26 -070044 return NDN_ERROR_element_of_value_is_not_a_decimal_digit;
Jeff Thompson167ca5a2013-07-07 20:45:43 -070045
46 result *= 10;
47 result += (unsigned int)(digit - '0');
48 }
49
50 *resultOut = result;
51 return 0;
52}
53
Jeff Thompson8b666002013-07-08 01:16:26 -070054ndn_Error ndn_BinaryXMLDecoder_decodeTypeAndValue(struct ndn_BinaryXMLDecoder *self, unsigned int *type, unsigned int *valueOut)
Jeff Thompson82222e82013-06-26 19:32:59 -070055{
Jeff Thompson76317aa2013-06-25 19:11:48 -070056 unsigned int value = 0;
Jeff Thompson38cbd572013-06-28 14:01:10 -070057 int gotFirstOctet = 0;
Jeff Thompson76317aa2013-06-25 19:11:48 -070058
59 while (1) {
Jeff Thompsonf7316692013-06-26 21:31:42 -070060 if (self->offset >= self->inputLength)
Jeff Thompson8b666002013-07-08 01:16:26 -070061 return NDN_ERROR_read_past_the_end_of_the_input;
Jeff Thompson76317aa2013-06-25 19:11:48 -070062
Jeff Thompsonb4ee4002013-06-28 13:41:43 -070063 unsigned int octet = unsafeReadOctet(self);
Jeff Thompson76317aa2013-06-25 19:11:48 -070064
Jeff Thompson38cbd572013-06-28 14:01:10 -070065 if (!gotFirstOctet) {
66 if (octet == 0)
Jeff Thompson8b666002013-07-08 01:16:26 -070067 return NDN_ERROR_the_first_header_octet_may_not_be_zero;
Jeff Thompson38cbd572013-06-28 14:01:10 -070068
69 gotFirstOctet = 1;
70 }
71
Jeff Thompson76317aa2013-06-25 19:11:48 -070072 if (octet & ndn_BinaryXML_TT_FINAL) {
73 // Finished.
74 *type = octet & ndn_BinaryXML_TT_MASK;
75 value = (value << ndn_BinaryXML_TT_VALUE_BITS) | ((octet >> ndn_BinaryXML_TT_BITS) & ndn_BinaryXML_TT_VALUE_MASK);
76 break;
77 }
78
79 value = (value << ndn_BinaryXML_REGULAR_VALUE_BITS) | (octet & ndn_BinaryXML_REGULAR_VALUE_MASK);
80 }
81
82 *valueOut = value;
Jeff Thompsonb4ee4002013-06-28 13:41:43 -070083 return 0;
Jeff Thompson76317aa2013-06-25 19:11:48 -070084}
Jeff Thompson179d0502013-06-28 11:36:00 -070085
Jeff Thompson8b666002013-07-08 01:16:26 -070086ndn_Error ndn_BinaryXMLDecoder_readElementStartDTag(struct ndn_BinaryXMLDecoder *self, unsigned int expectedTag)
Jeff Thompson179d0502013-06-28 11:36:00 -070087{
Jeff Thompson8b666002013-07-08 01:16:26 -070088 ndn_Error error;
Jeff Thompson179d0502013-06-28 11:36:00 -070089 unsigned int type;
90 unsigned int value;
91 if (error = ndn_BinaryXMLDecoder_decodeTypeAndValue(self, &type, &value))
92 return error;
93
94 if (type != ndn_BinaryXML_DTAG)
Jeff Thompson8b666002013-07-08 01:16:26 -070095 return NDN_ERROR_header_type_is_not_a_DTAG;
Jeff Thompson179d0502013-06-28 11:36:00 -070096
Jeff Thompson74ab0812013-06-28 12:25:04 -070097 if (value != expectedTag)
Jeff Thompson8b666002013-07-08 01:16:26 -070098 return NDN_ERROR_did_not_get_the_expected_DTAG;
Jeff Thompson179d0502013-06-28 11:36:00 -070099
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700100 return 0;
Jeff Thompson74ab0812013-06-28 12:25:04 -0700101}
102
Jeff Thompson8b666002013-07-08 01:16:26 -0700103ndn_Error ndn_BinaryXMLDecoder_readElementClose(struct ndn_BinaryXMLDecoder *self)
Jeff Thompson74ab0812013-06-28 12:25:04 -0700104{
105 if (self->offset >= self->inputLength)
Jeff Thompson8b666002013-07-08 01:16:26 -0700106 return NDN_ERROR_read_past_the_end_of_the_input;
Jeff Thompson74ab0812013-06-28 12:25:04 -0700107
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700108 if (unsafeReadOctet(self) != ndn_BinaryXML_CLOSE)
Jeff Thompson8b666002013-07-08 01:16:26 -0700109 return NDN_ERROR_did_not_get_the_expected_element_close;
Jeff Thompson74ab0812013-06-28 12:25:04 -0700110
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700111 return 0;
Jeff Thompson74ab0812013-06-28 12:25:04 -0700112}
113
Jeff Thompson8b666002013-07-08 01:16:26 -0700114ndn_Error ndn_BinaryXMLDecoder_peekDTag(struct ndn_BinaryXMLDecoder *self, unsigned int expectedTag, int *gotExpectedTag)
Jeff Thompson74ab0812013-06-28 12:25:04 -0700115{
116 // Default to 0.
117 *gotExpectedTag = 0;
Jeff Thompson6d17b6e2013-06-28 14:04:01 -0700118
119 // First check if it is an element close (which cannot be the expected tag).
120 if (self->offset >= self->inputLength)
Jeff Thompson8b666002013-07-08 01:16:26 -0700121 return NDN_ERROR_read_past_the_end_of_the_input;
Jeff Thompson6d17b6e2013-06-28 14:04:01 -0700122 if (unsafeGetOctet(self) == 0)
123 return 0;
124
Jeff Thompson74ab0812013-06-28 12:25:04 -0700125 unsigned int type;
126 unsigned int value;
127 unsigned int saveOffset = self->offset;
Jeff Thompson8b666002013-07-08 01:16:26 -0700128 ndn_Error error = ndn_BinaryXMLDecoder_decodeTypeAndValue(self, &type, &value);
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700129 // Restore offset.
Jeff Thompson74ab0812013-06-28 12:25:04 -0700130 self->offset = saveOffset;
131
132 if (error)
133 return error;
134
135 if (type == ndn_BinaryXML_DTAG && value == expectedTag)
136 *gotExpectedTag = 1;
137
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700138 return 0;
139}
140
Jeff Thompson8b666002013-07-08 01:16:26 -0700141ndn_Error ndn_BinaryXMLDecoder_readBinaryDTagElement
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700142 (struct ndn_BinaryXMLDecoder *self, unsigned int expectedTag, int allowNull, unsigned char **value, unsigned int *valueLen)
143{
Jeff Thompson8b666002013-07-08 01:16:26 -0700144 ndn_Error error;
Jeff Thompson1156ed12013-07-01 16:13:56 -0700145 if (error = ndn_BinaryXMLDecoder_readElementStartDTag(self, expectedTag))
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700146 return error;
147
148 if (allowNull) {
149 if (self->offset >= self->inputLength)
Jeff Thompson8b666002013-07-08 01:16:26 -0700150 return NDN_ERROR_read_past_the_end_of_the_input;
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700151
152 if (unsafeGetOctet(self) == ndn_BinaryXML_CLOSE) {
153 // The binary item is missing, and this is allowed, so read the element close and return a null value.
154 ++self->offset;
155 *value = 0;
156 *valueLen = 0;
157 return 0;
158 }
159 }
160
161 unsigned int itemType;
162 if (error = ndn_BinaryXMLDecoder_decodeTypeAndValue(self, &itemType, valueLen))
163 return error;
164 // Ignore itemType.
165 *value = self->input + self->offset;
166 self->offset += *valueLen;
167
168 if (error = ndn_BinaryXMLDecoder_readElementClose(self))
169 return error;
170
171 return 0;
172}
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700173
Jeff Thompson8b666002013-07-08 01:16:26 -0700174ndn_Error ndn_BinaryXMLDecoder_readUDataDTagElement
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700175 (struct ndn_BinaryXMLDecoder *self, unsigned int expectedTag, unsigned char **value, unsigned int *valueLen)
176{
Jeff Thompson8b666002013-07-08 01:16:26 -0700177 ndn_Error error;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700178 if (error = ndn_BinaryXMLDecoder_readElementStartDTag(self, expectedTag))
179 return error;
180
181 unsigned int itemType;
182 if (error = ndn_BinaryXMLDecoder_decodeTypeAndValue(self, &itemType, valueLen))
183 return error;
184 if (itemType != ndn_BinaryXML_UDATA)
Jeff Thompson8b666002013-07-08 01:16:26 -0700185 return NDN_ERROR_item_is_not_UDATA;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700186 *value = self->input + self->offset;
187 self->offset += *valueLen;
188
189 if (error = ndn_BinaryXMLDecoder_readElementClose(self))
190 return error;
191
192 return 0;
193}
194
Jeff Thompson8b666002013-07-08 01:16:26 -0700195ndn_Error ndn_BinaryXMLDecoder_readUnsignedIntegerDTagElement
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700196 (struct ndn_BinaryXMLDecoder *self, unsigned int expectedTag, unsigned int *value)
197{
198 unsigned char *udataValue;
199 unsigned int udataValueLength;
Jeff Thompson8b666002013-07-08 01:16:26 -0700200 ndn_Error error;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700201 if (error = ndn_BinaryXMLDecoder_readUDataDTagElement(self, expectedTag, &udataValue, &udataValueLength))
202 return error;
203
204 if (error = parseUnsignedDecimalInt(udataValue, udataValueLength, value))
205 return error;
206
207 return 0;
208}
209
Jeff Thompson8b666002013-07-08 01:16:26 -0700210ndn_Error ndn_BinaryXMLDecoder_readOptionalUnsignedIntegerDTagElement
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700211 (struct ndn_BinaryXMLDecoder *self, unsigned int expectedTag, int *value)
212{
213 int gotExpectedTag;
Jeff Thompson8b666002013-07-08 01:16:26 -0700214 ndn_Error error;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700215 if (error = ndn_BinaryXMLDecoder_peekDTag(self, expectedTag, &gotExpectedTag))
216 return error;
217
218 if (!gotExpectedTag) {
Jeff Thompson5abaaca2013-07-07 21:16:04 -0700219 *value = -1;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700220 return 0;
221 }
222
223 unsigned int unsignedValue;
224 if (error = ndn_BinaryXMLDecoder_readUnsignedIntegerDTagElement(self, expectedTag, &unsignedValue))
225 return error;
226
227 *value = (int)unsignedValue;
228 return 0;
229}
Jeff Thompson5abaaca2013-07-07 21:16:04 -0700230
Jeff Thompson5abaaca2013-07-07 21:16:04 -0700231unsigned int ndn_BinaryXMLDecoder_bigEndianToUnsignedInt(unsigned char *bytes, unsigned int bytesLength)
232{
233 unsigned int result = 0;
234 unsigned int i;
235 for (i = 0; i < bytesLength; ++i) {
236 result <<= 8;
237 result += (unsigned int)bytes[i];
238 }
239
240 return result;
241}