blob: 4be2450e92c4a675ac5cde9bae13f2d184081874 [file] [log] [blame]
Jeff Thompson47eecfc2013-07-07 22:56:46 -07001/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07002 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsone5b37a52013-07-08 15:39:01 -07004 * Derived from BinaryXMLDecoder.js by Meki Cheraoui.
Jeff Thompson47eecfc2013-07-07 22:56:46 -07005 * See COPYING for copyright and distribution information.
Jeff Thompson76317aa2013-06-25 19:11:48 -07006 */
7
Jeff Thompson53412192013-08-06 13:35:50 -07008#include "binary-xml.h"
9#include "binary-xml-decoder.h"
Jeff Thompson76317aa2013-06-25 19:11:48 -070010
Jeff Thompsonb4ee4002013-06-28 13:41:43 -070011/**
12 * Return the octet at self->offset, converting to unsigned int. Increment self->offset.
13 * This does not check for reading past the end of the input, so this is called "unsafe".
14 */
Jeff Thompsonf0fea002013-07-30 17:22:42 -070015static inline unsigned int unsafeReadOctet(struct ndn_BinaryXmlDecoder *self)
Jeff Thompsonb4ee4002013-06-28 13:41:43 -070016{
17 return (unsigned int)(self->input[self->offset++] & 0xff);
18}
19
20/**
21 * Return the octet at self->offset, converting to unsigned int. Do not increment self->offset.
22 * This does not check for reading past the end of the input, so this is called "unsafe".
23 */
Jeff Thompsonf0fea002013-07-30 17:22:42 -070024static inline unsigned int unsafeGetOctet(struct ndn_BinaryXmlDecoder *self)
Jeff Thompsonb4ee4002013-06-28 13:41:43 -070025{
26 return (unsigned int)(self->input[self->offset] & 0xff);
27}
28
Jeff Thompson167ca5a2013-07-07 20:45:43 -070029/**
30 * Parse the value as a decimal unsigned integer. This does not check for whitespace or + sign.
31 * If valueLength is 0, this succeeds with resultOut 0.
32 * @param value
33 * @param valueLength
34 * @param resultOut output the parsed integer.
Jeff Thompson8b666002013-07-08 01:16:26 -070035 * @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 -070036 */
Jeff Thompson10ad12a2013-09-24 16:19:11 -070037static ndn_Error parseUnsignedDecimalInt(uint8_t *value, unsigned int valueLength, unsigned int *resultOut)
Jeff Thompson167ca5a2013-07-07 20:45:43 -070038{
39 unsigned int result = 0;
40
41 unsigned int i;
42 for (i = 0; i < valueLength; ++i) {
Jeff Thompson10ad12a2013-09-24 16:19:11 -070043 uint8_t digit = value[i];
Jeff Thompson167ca5a2013-07-07 20:45:43 -070044 if (!(digit >= '0' && digit <= '9'))
Jeff Thompson8b666002013-07-08 01:16:26 -070045 return NDN_ERROR_element_of_value_is_not_a_decimal_digit;
Jeff Thompson167ca5a2013-07-07 20:45:43 -070046
47 result *= 10;
48 result += (unsigned int)(digit - '0');
49 }
50
51 *resultOut = result;
Jeff Thompsonadaf9232013-08-08 14:30:29 -070052 return NDN_ERROR_success;
Jeff Thompson167ca5a2013-07-07 20:45:43 -070053}
54
Jeff Thompsonf0fea002013-07-30 17:22:42 -070055ndn_Error ndn_BinaryXmlDecoder_decodeTypeAndValue(struct ndn_BinaryXmlDecoder *self, unsigned int *type, unsigned int *valueOut)
Jeff Thompson82222e82013-06-26 19:32:59 -070056{
Jeff Thompson76317aa2013-06-25 19:11:48 -070057 unsigned int value = 0;
Jeff Thompson38cbd572013-06-28 14:01:10 -070058 int gotFirstOctet = 0;
Jeff Thompson76317aa2013-06-25 19:11:48 -070059
Jeff Thompsona0d18c92013-08-06 13:55:32 -070060 while (1) {
Jeff Thompsonf7316692013-06-26 21:31:42 -070061 if (self->offset >= self->inputLength)
Jeff Thompson8b666002013-07-08 01:16:26 -070062 return NDN_ERROR_read_past_the_end_of_the_input;
Jeff Thompson76317aa2013-06-25 19:11:48 -070063
Jeff Thompsona0d18c92013-08-06 13:55:32 -070064 unsigned int octet = unsafeReadOctet(self);
65
Jeff Thompson38cbd572013-06-28 14:01:10 -070066 if (!gotFirstOctet) {
67 if (octet == 0)
Jeff Thompson8b666002013-07-08 01:16:26 -070068 return NDN_ERROR_the_first_header_octet_may_not_be_zero;
Jeff Thompson38cbd572013-06-28 14:01:10 -070069
70 gotFirstOctet = 1;
71 }
72
Jeff Thompsona0d18c92013-08-06 13:55:32 -070073 if (octet & ndn_BinaryXml_TT_FINAL) {
Jeff Thompson76317aa2013-06-25 19:11:48 -070074 // Finished.
Jeff Thompsona0d18c92013-08-06 13:55:32 -070075 *type = octet & ndn_BinaryXml_TT_MASK;
76 value = (value << ndn_BinaryXml_TT_VALUE_BITS) | ((octet >> ndn_BinaryXml_TT_BITS) & ndn_BinaryXml_TT_VALUE_MASK);
Jeff Thompson76317aa2013-06-25 19:11:48 -070077 break;
Jeff Thompsona0d18c92013-08-06 13:55:32 -070078 }
79
80 value = (value << ndn_BinaryXml_REGULAR_VALUE_BITS) | (octet & ndn_BinaryXml_REGULAR_VALUE_MASK);
81 }
Jeff Thompson76317aa2013-06-25 19:11:48 -070082
Jeff Thompsona0d18c92013-08-06 13:55:32 -070083 *valueOut = value;
Jeff Thompsonadaf9232013-08-08 14:30:29 -070084 return NDN_ERROR_success;
Jeff Thompson76317aa2013-06-25 19:11:48 -070085}
Jeff Thompson179d0502013-06-28 11:36:00 -070086
Jeff Thompsonf0fea002013-07-30 17:22:42 -070087ndn_Error ndn_BinaryXmlDecoder_readElementStartDTag(struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag)
Jeff Thompson179d0502013-06-28 11:36:00 -070088{
Jeff Thompson8b666002013-07-08 01:16:26 -070089 ndn_Error error;
Jeff Thompson179d0502013-06-28 11:36:00 -070090 unsigned int type;
91 unsigned int value;
Jeff Thompson94ddc272013-08-08 14:17:38 -070092 if ((error = ndn_BinaryXmlDecoder_decodeTypeAndValue(self, &type, &value)))
Jeff Thompson179d0502013-06-28 11:36:00 -070093 return error;
94
Jeff Thompsonf0fea002013-07-30 17:22:42 -070095 if (type != ndn_BinaryXml_DTAG)
Jeff Thompson8b666002013-07-08 01:16:26 -070096 return NDN_ERROR_header_type_is_not_a_DTAG;
Jeff Thompson179d0502013-06-28 11:36:00 -070097
Jeff Thompson74ab0812013-06-28 12:25:04 -070098 if (value != expectedTag)
Jeff Thompson8b666002013-07-08 01:16:26 -070099 return NDN_ERROR_did_not_get_the_expected_DTAG;
Jeff Thompson179d0502013-06-28 11:36:00 -0700100
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700101 return NDN_ERROR_success;
Jeff Thompson74ab0812013-06-28 12:25:04 -0700102}
103
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700104ndn_Error ndn_BinaryXmlDecoder_readElementClose(struct ndn_BinaryXmlDecoder *self)
Jeff Thompson74ab0812013-06-28 12:25:04 -0700105{
106 if (self->offset >= self->inputLength)
Jeff Thompson8b666002013-07-08 01:16:26 -0700107 return NDN_ERROR_read_past_the_end_of_the_input;
Jeff Thompson74ab0812013-06-28 12:25:04 -0700108
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700109 if (unsafeReadOctet(self) != ndn_BinaryXml_CLOSE)
Jeff Thompson8b666002013-07-08 01:16:26 -0700110 return NDN_ERROR_did_not_get_the_expected_element_close;
Jeff Thompson74ab0812013-06-28 12:25:04 -0700111
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700112 return NDN_ERROR_success;
Jeff Thompson74ab0812013-06-28 12:25:04 -0700113}
114
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700115ndn_Error ndn_BinaryXmlDecoder_peekDTag(struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, int *gotExpectedTag)
Jeff Thompson74ab0812013-06-28 12:25:04 -0700116{
117 // Default to 0.
118 *gotExpectedTag = 0;
Jeff Thompson6d17b6e2013-06-28 14:04:01 -0700119
120 // First check if it is an element close (which cannot be the expected tag).
121 if (self->offset >= self->inputLength)
Jeff Thompson8b666002013-07-08 01:16:26 -0700122 return NDN_ERROR_read_past_the_end_of_the_input;
Jeff Thompson6d17b6e2013-06-28 14:04:01 -0700123 if (unsafeGetOctet(self) == 0)
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700124 return NDN_ERROR_success;
Jeff Thompson6d17b6e2013-06-28 14:04:01 -0700125
Jeff Thompson74ab0812013-06-28 12:25:04 -0700126 unsigned int type;
127 unsigned int value;
128 unsigned int saveOffset = self->offset;
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700129 ndn_Error error = ndn_BinaryXmlDecoder_decodeTypeAndValue(self, &type, &value);
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700130 // Restore offset.
Jeff Thompson74ab0812013-06-28 12:25:04 -0700131 self->offset = saveOffset;
132
133 if (error)
134 return error;
135
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700136 if (type == ndn_BinaryXml_DTAG && value == expectedTag)
Jeff Thompson74ab0812013-06-28 12:25:04 -0700137 *gotExpectedTag = 1;
138
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700139 return NDN_ERROR_success;
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700140}
141
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700142ndn_Error ndn_BinaryXmlDecoder_readBinaryDTagElement
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700143 (struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, int allowNull, uint8_t **value, unsigned int *valueLength)
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700144{
Jeff Thompson8b666002013-07-08 01:16:26 -0700145 ndn_Error error;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700146 if ((error = ndn_BinaryXmlDecoder_readElementStartDTag(self, expectedTag)))
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700147 return error;
148
149 if (allowNull) {
150 if (self->offset >= self->inputLength)
Jeff Thompson8b666002013-07-08 01:16:26 -0700151 return NDN_ERROR_read_past_the_end_of_the_input;
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700152
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700153 if (unsafeGetOctet(self) == ndn_BinaryXml_CLOSE) {
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700154 // The binary item is missing, and this is allowed, so read the element close and return a null value.
155 ++self->offset;
156 *value = 0;
Jeff Thompson033d7fd2013-07-11 10:44:03 -0700157 *valueLength = 0;
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700158 return NDN_ERROR_success;
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700159 }
160 }
161
162 unsigned int itemType;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700163 if ((error = ndn_BinaryXmlDecoder_decodeTypeAndValue(self, &itemType, valueLength)))
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700164 return error;
165 // Ignore itemType.
166 *value = self->input + self->offset;
Jeff Thompson033d7fd2013-07-11 10:44:03 -0700167 self->offset += *valueLength;
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700168
Jeff Thompson94ddc272013-08-08 14:17:38 -0700169 if ((error = ndn_BinaryXmlDecoder_readElementClose(self)))
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700170 return error;
171
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700172 return NDN_ERROR_success;
Jeff Thompsonb4ee4002013-06-28 13:41:43 -0700173}
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700174
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700175ndn_Error ndn_BinaryXmlDecoder_readOptionalBinaryDTagElement
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700176 (struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, int allowNull, uint8_t **value, unsigned int *valueLength)
Jeff Thompson033d7fd2013-07-11 10:44:03 -0700177{
178 ndn_Error error;
179 int gotExpectedTag;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700180 if ((error = ndn_BinaryXmlDecoder_peekDTag(self, expectedTag, &gotExpectedTag)))
Jeff Thompson033d7fd2013-07-11 10:44:03 -0700181 return error;
182 if (gotExpectedTag) {
Jeff Thompson94ddc272013-08-08 14:17:38 -0700183 if ((error = ndn_BinaryXmlDecoder_readBinaryDTagElement(self, expectedTag, allowNull, value, valueLength)))
Jeff Thompson033d7fd2013-07-11 10:44:03 -0700184 return error;
185 }
186 else {
187 *value = 0;
188 *valueLength = 0;
189 }
190
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700191 return NDN_ERROR_success;
Jeff Thompson033d7fd2013-07-11 10:44:03 -0700192}
193
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700194ndn_Error ndn_BinaryXmlDecoder_readUDataDTagElement
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700195 (struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, uint8_t **value, unsigned int *valueLength)
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700196{
Jeff Thompson8b666002013-07-08 01:16:26 -0700197 ndn_Error error;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700198 if ((error = ndn_BinaryXmlDecoder_readElementStartDTag(self, expectedTag)))
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700199 return error;
200
201 unsigned int itemType;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700202 if ((error = ndn_BinaryXmlDecoder_decodeTypeAndValue(self, &itemType, valueLength)))
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700203 return error;
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700204 if (itemType != ndn_BinaryXml_UDATA)
Jeff Thompson8b666002013-07-08 01:16:26 -0700205 return NDN_ERROR_item_is_not_UDATA;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700206 *value = self->input + self->offset;
Jeff Thompson033d7fd2013-07-11 10:44:03 -0700207 self->offset += *valueLength;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700208
Jeff Thompson94ddc272013-08-08 14:17:38 -0700209 if ((error = ndn_BinaryXmlDecoder_readElementClose(self)))
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700210 return error;
211
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700212 return NDN_ERROR_success;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700213}
214
Jeff Thompson57be78e2013-08-27 13:40:23 -0700215ndn_Error ndn_BinaryXmlDecoder_readOptionalUDataDTagElement
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700216 (struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, uint8_t **value, unsigned int *valueLength)
Jeff Thompson57be78e2013-08-27 13:40:23 -0700217{
218 ndn_Error error;
219 int gotExpectedTag;
220 if ((error = ndn_BinaryXmlDecoder_peekDTag(self, expectedTag, &gotExpectedTag)))
221 return error;
222 if (gotExpectedTag) {
223 if ((error = ndn_BinaryXmlDecoder_readUDataDTagElement(self, expectedTag, value, valueLength)))
224 return error;
225 }
226 else {
227 *value = 0;
228 *valueLength = 0;
229 }
230
231 return NDN_ERROR_success;
232}
233
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700234ndn_Error ndn_BinaryXmlDecoder_readUnsignedIntegerDTagElement
235 (struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, unsigned int *value)
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700236{
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700237 uint8_t *udataValue;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700238 unsigned int udataValueLength;
Jeff Thompson8b666002013-07-08 01:16:26 -0700239 ndn_Error error;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700240 if ((error = ndn_BinaryXmlDecoder_readUDataDTagElement(self, expectedTag, &udataValue, &udataValueLength)))
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700241 return error;
242
Jeff Thompson94ddc272013-08-08 14:17:38 -0700243 if ((error = parseUnsignedDecimalInt(udataValue, udataValueLength, value)))
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700244 return error;
245
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700246 return NDN_ERROR_success;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700247}
248
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700249ndn_Error ndn_BinaryXmlDecoder_readOptionalUnsignedIntegerDTagElement
250 (struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, int *value)
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700251{
252 int gotExpectedTag;
Jeff Thompson8b666002013-07-08 01:16:26 -0700253 ndn_Error error;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700254 if ((error = ndn_BinaryXmlDecoder_peekDTag(self, expectedTag, &gotExpectedTag)))
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700255 return error;
256
257 if (!gotExpectedTag) {
Jeff Thompson5abaaca2013-07-07 21:16:04 -0700258 *value = -1;
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700259 return NDN_ERROR_success;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700260 }
261
262 unsigned int unsignedValue;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700263 if ((error = ndn_BinaryXmlDecoder_readUnsignedIntegerDTagElement(self, expectedTag, &unsignedValue)))
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700264 return error;
265
266 *value = (int)unsignedValue;
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700267 return NDN_ERROR_success;
Jeff Thompson167ca5a2013-07-07 20:45:43 -0700268}
Jeff Thompson5abaaca2013-07-07 21:16:04 -0700269
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700270ndn_Error ndn_BinaryXmlDecoder_readTimeMillisecondsDTagElement
271 (struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, double *milliseconds)
Jeff Thompson9693d392013-07-11 14:58:53 -0700272{
273 ndn_Error error;
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700274 uint8_t *bytes;
Jeff Thompson9693d392013-07-11 14:58:53 -0700275 unsigned int bytesLength;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700276 if ((error = ndn_BinaryXmlDecoder_readBinaryDTagElement(self, expectedTag, 0, &bytes, &bytesLength)))
Jeff Thompson9693d392013-07-11 14:58:53 -0700277 return error;
278
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700279 *milliseconds = 1000.0 * ndn_BinaryXmlDecoder_unsignedBigEndianToDouble(bytes, bytesLength) / 4096.0;
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700280 return NDN_ERROR_success;
Jeff Thompson9693d392013-07-11 14:58:53 -0700281}
282
Jeff Thompsonf0fea002013-07-30 17:22:42 -0700283ndn_Error ndn_BinaryXmlDecoder_readOptionalTimeMillisecondsDTagElement
284 (struct ndn_BinaryXmlDecoder *self, unsigned int expectedTag, double *milliseconds)
Jeff Thompson9693d392013-07-11 14:58:53 -0700285{
286 int gotExpectedTag;
287 ndn_Error error;
Jeff Thompson94ddc272013-08-08 14:17:38 -0700288 if ((error = ndn_BinaryXmlDecoder_peekDTag(self, expectedTag, &gotExpectedTag)))
Jeff Thompson9693d392013-07-11 14:58:53 -0700289 return error;
290
291 if (!gotExpectedTag) {
Jeff Thompsone32dc5d2013-07-11 17:56:57 -0700292 *milliseconds = -1.0;
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700293 return NDN_ERROR_success;
Jeff Thompson9693d392013-07-11 14:58:53 -0700294 }
295
Jeff Thompson94ddc272013-08-08 14:17:38 -0700296 if ((error = ndn_BinaryXmlDecoder_readTimeMillisecondsDTagElement(self, expectedTag, milliseconds)))
Jeff Thompson9693d392013-07-11 14:58:53 -0700297 return error;
298
Jeff Thompsonadaf9232013-08-08 14:30:29 -0700299 return NDN_ERROR_success;
Jeff Thompson9693d392013-07-11 14:58:53 -0700300}
301
Jeff Thompson10ad12a2013-09-24 16:19:11 -0700302double ndn_BinaryXmlDecoder_unsignedBigEndianToDouble(uint8_t *bytes, unsigned int bytesLength)
Jeff Thompson5abaaca2013-07-07 21:16:04 -0700303{
Jeff Thompson5553d992013-07-11 14:35:45 -0700304 double result = 0.0;
Jeff Thompson5abaaca2013-07-07 21:16:04 -0700305 unsigned int i;
306 for (i = 0; i < bytesLength; ++i) {
Jeff Thompson5553d992013-07-11 14:35:45 -0700307 result *= 256.0;
308 result += (double)bytes[i];
Jeff Thompson5abaaca2013-07-07 21:16:04 -0700309 }
310
311 return result;
312}