Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | ** |
| 3 | ** Copyright (C) 2015 Intel Corporation |
| 4 | ** |
| 5 | ** Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | ** of this software and associated documentation files (the "Software"), to deal |
| 7 | ** in the Software without restriction, including without limitation the rights |
| 8 | ** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | ** copies of the Software, and to permit persons to whom the Software is |
| 10 | ** furnished to do so, subject to the following conditions: |
| 11 | ** |
| 12 | ** The above copyright notice and this permission notice shall be included in |
| 13 | ** all copies or substantial portions of the Software. |
| 14 | ** |
| 15 | ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | ** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | ** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | ** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | ** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | ** OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 21 | ** THE SOFTWARE. |
| 22 | ** |
| 23 | ****************************************************************************/ |
| 24 | |
Thiago Macieira | ed5b57c | 2015-07-07 16:38:27 -0700 | [diff] [blame] | 25 | #define _BSD_SOURCE 1 |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 26 | #include "cbor.h" |
| 27 | #include "cborconstants_p.h" |
| 28 | #include "compilersupport_p.h" |
| 29 | |
| 30 | #include <assert.h> |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 31 | #include <stdlib.h> |
| 32 | #include <string.h> |
| 33 | |
Thiago Macieira | 8f3fb78 | 2015-06-16 16:27:01 -0700 | [diff] [blame] | 34 | #include "assert_p.h" /* Always include last */ |
| 35 | |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 36 | void cbor_encoder_init(CborEncoder *encoder, uint8_t *buffer, size_t size, int flags) |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 37 | { |
| 38 | encoder->ptr = buffer; |
| 39 | encoder->end = buffer + size; |
Thiago Macieira | 4e9626c | 2015-09-21 14:57:17 -0700 | [diff] [blame] | 40 | encoder->added = 0; |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 41 | encoder->flags = flags; |
| 42 | } |
| 43 | |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 44 | static inline void put16(void *where, uint16_t v) |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 45 | { |
Thiago Macieira | 5934a9f | 2015-06-16 11:55:28 -0700 | [diff] [blame] | 46 | v = cbor_htons(v); |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 47 | memcpy(where, &v, sizeof(v)); |
| 48 | } |
| 49 | |
Erich Keane | 47a7856 | 2015-08-10 15:19:50 -0700 | [diff] [blame] | 50 | // Note: Since this is currently only used in situations where OOM is the only |
| 51 | // valid error, we KNOW this to be true. Thus, this function now returns just 'true', |
| 52 | // but if in the future, any function starts returning a non-OOM error, this will need |
| 53 | // to be changed to the test. At the moment, this is done to prevent more branches |
| 54 | // being created in the tinycbor output |
| 55 | static inline bool isOomError(CborError err) |
| 56 | { |
| 57 | (void) err; |
| 58 | return true; |
| 59 | } |
| 60 | |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 61 | static inline void put32(void *where, uint32_t v) |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 62 | { |
Thiago Macieira | 5934a9f | 2015-06-16 11:55:28 -0700 | [diff] [blame] | 63 | v = cbor_htonl(v); |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 64 | memcpy(where, &v, sizeof(v)); |
| 65 | } |
| 66 | |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 67 | static inline void put64(void *where, uint64_t v) |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 68 | { |
Thiago Macieira | 5934a9f | 2015-06-16 11:55:28 -0700 | [diff] [blame] | 69 | v = cbor_htonll(v); |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 70 | memcpy(where, &v, sizeof(v)); |
| 71 | } |
| 72 | |
Thiago Macieira | 397f979 | 2015-09-18 19:36:26 -0700 | [diff] [blame] | 73 | static inline bool would_overflow(CborEncoder *encoder, size_t len) |
| 74 | { |
| 75 | ptrdiff_t remaining = (ptrdiff_t)encoder->end; |
| 76 | remaining -= remaining ? (ptrdiff_t)encoder->ptr : encoder->bytes_needed; |
| 77 | remaining -= (ptrdiff_t)len; |
| 78 | return unlikely(remaining < 0); |
| 79 | } |
| 80 | |
| 81 | static inline void advance_ptr(CborEncoder *encoder, size_t n) |
| 82 | { |
| 83 | if (encoder->end) |
| 84 | encoder->ptr += n; |
| 85 | else |
| 86 | encoder->bytes_needed += n; |
| 87 | } |
| 88 | |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 89 | static inline CborError append_to_buffer(CborEncoder *encoder, const void *data, size_t len) |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 90 | { |
Thiago Macieira | 397f979 | 2015-09-18 19:36:26 -0700 | [diff] [blame] | 91 | if (would_overflow(encoder, len)) { |
Erich Keane | 47a7856 | 2015-08-10 15:19:50 -0700 | [diff] [blame] | 92 | if (encoder->end != NULL) { |
| 93 | len -= encoder->end - encoder->ptr; |
Thiago Macieira | 397f979 | 2015-09-18 19:36:26 -0700 | [diff] [blame] | 94 | encoder->end = NULL; |
| 95 | encoder->bytes_needed = 0; |
Erich Keane | 47a7856 | 2015-08-10 15:19:50 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Thiago Macieira | 397f979 | 2015-09-18 19:36:26 -0700 | [diff] [blame] | 98 | advance_ptr(encoder, len); |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 99 | return CborErrorOutOfMemory; |
Erich Keane | 47a7856 | 2015-08-10 15:19:50 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 102 | memcpy(encoder->ptr, data, len); |
| 103 | encoder->ptr += len; |
| 104 | return CborNoError; |
| 105 | } |
| 106 | |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 107 | static inline CborError append_byte_to_buffer(CborEncoder *encoder, uint8_t byte) |
Thiago Macieira | 8f7bd9e | 2015-05-12 13:37:46 +0900 | [diff] [blame] | 108 | { |
Thiago Macieira | 618d2f1 | 2015-09-22 09:14:29 -0700 | [diff] [blame] | 109 | return append_to_buffer(encoder, &byte, 1); |
Thiago Macieira | 8f7bd9e | 2015-05-12 13:37:46 +0900 | [diff] [blame] | 110 | } |
| 111 | |
Thiago Macieira | 4e9626c | 2015-09-21 14:57:17 -0700 | [diff] [blame] | 112 | static inline CborError encode_number_no_update(CborEncoder *encoder, uint64_t ui, uint8_t shiftedMajorType) |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 113 | { |
Thiago Macieira | afa4ff6 | 2015-05-09 10:09:55 -0700 | [diff] [blame] | 114 | /* Little-endian would have been so much more convenient here: |
| 115 | * We could just write at the beginning of buf but append_to_buffer |
| 116 | * only the necessary bytes. |
| 117 | * Since it has to be big endian, do it the other way around: |
| 118 | * write from the end. */ |
Thiago Macieira | 510e5b8 | 2015-09-21 16:05:02 -0700 | [diff] [blame] | 119 | uint64_t buf[2]; |
| 120 | uint8_t *const bufend = (uint8_t *)buf + sizeof(buf); |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 121 | uint8_t *bufstart = bufend - 1; |
Thiago Macieira | afa4ff6 | 2015-05-09 10:09:55 -0700 | [diff] [blame] | 122 | put64(buf + 1, ui); // we probably have a bunch of zeros in the beginning |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 123 | |
| 124 | if (ui < Value8Bit) { |
Thiago Macieira | afa4ff6 | 2015-05-09 10:09:55 -0700 | [diff] [blame] | 125 | *bufstart += shiftedMajorType; |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 126 | } else { |
Thiago Macieira | afa4ff6 | 2015-05-09 10:09:55 -0700 | [diff] [blame] | 127 | unsigned more = 0; |
Thiago Macieira | 13c8579 | 2015-07-07 16:15:41 -0700 | [diff] [blame] | 128 | if (ui > 0xffU) |
Thiago Macieira | afa4ff6 | 2015-05-09 10:09:55 -0700 | [diff] [blame] | 129 | ++more; |
Thiago Macieira | 13c8579 | 2015-07-07 16:15:41 -0700 | [diff] [blame] | 130 | if (ui > 0xffffU) |
Thiago Macieira | afa4ff6 | 2015-05-09 10:09:55 -0700 | [diff] [blame] | 131 | ++more; |
Thiago Macieira | 13c8579 | 2015-07-07 16:15:41 -0700 | [diff] [blame] | 132 | if (ui > 0xffffffffU) |
Thiago Macieira | afa4ff6 | 2015-05-09 10:09:55 -0700 | [diff] [blame] | 133 | ++more; |
| 134 | bufstart -= 1 << more; |
| 135 | *bufstart = shiftedMajorType + Value8Bit + more; |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Thiago Macieira | afa4ff6 | 2015-05-09 10:09:55 -0700 | [diff] [blame] | 138 | return append_to_buffer(encoder, bufstart, bufend - bufstart); |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Thiago Macieira | 4e9626c | 2015-09-21 14:57:17 -0700 | [diff] [blame] | 141 | static inline CborError encode_number(CborEncoder *encoder, uint64_t ui, uint8_t shiftedMajorType) |
| 142 | { |
| 143 | ++encoder->added; |
| 144 | return encode_number_no_update(encoder, ui, shiftedMajorType); |
| 145 | } |
| 146 | |
| 147 | |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 148 | CborError cbor_encode_uint(CborEncoder *encoder, uint64_t value) |
| 149 | { |
| 150 | return encode_number(encoder, value, UnsignedIntegerType << MajorTypeShift); |
| 151 | } |
| 152 | |
Thiago Macieira | 78632b3 | 2015-09-26 14:18:48 -0700 | [diff] [blame] | 153 | CborError cbor_encode_negative_int(CborEncoder *encoder, uint64_t absolute_value) |
| 154 | { |
| 155 | return encode_number(encoder, absolute_value, NegativeIntegerType << MajorTypeShift); |
| 156 | } |
| 157 | |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 158 | CborError cbor_encode_int(CborEncoder *encoder, int64_t value) |
| 159 | { |
| 160 | // adapted from code in RFC 7049 appendix C (pseudocode) |
| 161 | uint64_t ui = value >> 63; // extend sign to whole length |
| 162 | uint8_t majorType = ui & 0x20; // extract major type |
| 163 | ui ^= value; // complement negatives |
| 164 | return encode_number(encoder, ui, majorType); |
| 165 | } |
| 166 | |
| 167 | CborError cbor_encode_simple_value(CborEncoder *encoder, uint8_t value) |
| 168 | { |
| 169 | #ifndef CBOR_ENCODER_NO_CHECK_USER |
| 170 | // check if this is a valid simple type |
| 171 | if (value >= HalfPrecisionFloat && value <= Break) |
| 172 | return CborErrorIllegalSimpleType; |
| 173 | #endif |
| 174 | return encode_number(encoder, value, SimpleTypesType << MajorTypeShift); |
| 175 | } |
| 176 | |
Thiago Macieira | 81f3343 | 2015-07-02 16:16:28 -0700 | [diff] [blame] | 177 | CborError cbor_encode_floating_point(CborEncoder *encoder, CborType fpType, const void *value) |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 178 | { |
Thiago Macieira | 81f3343 | 2015-07-02 16:16:28 -0700 | [diff] [blame] | 179 | uint8_t buf[1 + sizeof(uint64_t)]; |
| 180 | assert(fpType == CborHalfFloatType || fpType == CborFloatType || fpType == CborDoubleType); |
| 181 | buf[0] = fpType; |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 182 | |
Thiago Macieira | 81f3343 | 2015-07-02 16:16:28 -0700 | [diff] [blame] | 183 | unsigned size = 2U << (fpType - CborHalfFloatType); |
| 184 | if (size == 8) |
| 185 | put64(buf + 1, *(const uint64_t*)value); |
| 186 | else if (size == 4) |
| 187 | put32(buf + 1, *(const uint32_t*)value); |
| 188 | else |
| 189 | put16(buf + 1, *(const uint16_t*)value); |
Thiago Macieira | 4e9626c | 2015-09-21 14:57:17 -0700 | [diff] [blame] | 190 | ++encoder->added; |
Thiago Macieira | 81f3343 | 2015-07-02 16:16:28 -0700 | [diff] [blame] | 191 | return append_to_buffer(encoder, buf, size + 1); |
Thiago Macieira | f1cadf0 | 2015-05-08 17:19:17 -0700 | [diff] [blame] | 192 | } |
Thiago Macieira | 8f98a11 | 2015-05-08 17:25:29 -0700 | [diff] [blame] | 193 | |
| 194 | CborError cbor_encode_tag(CborEncoder *encoder, CborTag tag) |
| 195 | { |
Thiago Macieira | 4e9626c | 2015-09-21 14:57:17 -0700 | [diff] [blame] | 196 | // tags don't count towards the number of elements in an array or map |
| 197 | return encode_number_no_update(encoder, tag, TagType << MajorTypeShift); |
Thiago Macieira | 8f98a11 | 2015-05-08 17:25:29 -0700 | [diff] [blame] | 198 | } |
Thiago Macieira | b54debe | 2015-05-08 17:42:39 -0700 | [diff] [blame] | 199 | |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 200 | static CborError encode_string(CborEncoder *encoder, size_t length, uint8_t shiftedMajorType, const void *string) |
Thiago Macieira | b54debe | 2015-05-08 17:42:39 -0700 | [diff] [blame] | 201 | { |
| 202 | CborError err = encode_number(encoder, length, shiftedMajorType); |
Erich Keane | 47a7856 | 2015-08-10 15:19:50 -0700 | [diff] [blame] | 203 | if (err && !isOomError(err)) |
Thiago Macieira | b54debe | 2015-05-08 17:42:39 -0700 | [diff] [blame] | 204 | return err; |
| 205 | return append_to_buffer(encoder, string, length); |
| 206 | } |
| 207 | |
Thiago Macieira | 5752ce5 | 2015-06-16 12:10:03 -0700 | [diff] [blame] | 208 | CborError cbor_encode_byte_string(CborEncoder *encoder, const uint8_t *string, size_t length) |
Thiago Macieira | b54debe | 2015-05-08 17:42:39 -0700 | [diff] [blame] | 209 | { |
| 210 | return encode_string(encoder, length, ByteStringType << MajorTypeShift, string); |
| 211 | } |
| 212 | |
| 213 | CborError cbor_encode_text_string(CborEncoder *encoder, const char *string, size_t length) |
| 214 | { |
| 215 | return encode_string(encoder, length, TextStringType << MajorTypeShift, string); |
| 216 | } |
Thiago Macieira | 355817e | 2015-05-08 18:38:18 -0700 | [diff] [blame] | 217 | |
Thiago Macieira | 5663524 | 2015-09-20 17:44:51 -0700 | [diff] [blame] | 218 | #ifdef __GNUC__ |
| 219 | __attribute__((noinline)) |
| 220 | #endif |
| 221 | static CborError create_container(CborEncoder *encoder, CborEncoder *container, size_t length, uint8_t shiftedMajorType) |
Thiago Macieira | 355817e | 2015-05-08 18:38:18 -0700 | [diff] [blame] | 222 | { |
Thiago Macieira | 8f7bd9e | 2015-05-12 13:37:46 +0900 | [diff] [blame] | 223 | CborError err; |
Thiago Macieira | 4e9626c | 2015-09-21 14:57:17 -0700 | [diff] [blame] | 224 | container->ptr = encoder->ptr; |
| 225 | container->end = encoder->end; |
| 226 | ++encoder->added; |
| 227 | container->added = 0; |
| 228 | |
| 229 | cbor_static_assert(((MapType << MajorTypeShift) & CborIteratorFlag_ContainerIsMap) == CborIteratorFlag_ContainerIsMap); |
| 230 | cbor_static_assert(((ArrayType << MajorTypeShift) & CborIteratorFlag_ContainerIsMap) == 0); |
| 231 | container->flags = shiftedMajorType & CborIteratorFlag_ContainerIsMap; |
| 232 | |
| 233 | if (length == CborIndefiniteLength) { |
| 234 | container->flags |= CborIteratorFlag_UnknownLength; |
| 235 | err = append_byte_to_buffer(container, shiftedMajorType + IndefiniteLength); |
| 236 | } else { |
| 237 | err = encode_number_no_update(container, length, shiftedMajorType); |
| 238 | } |
Erich Keane | 47a7856 | 2015-08-10 15:19:50 -0700 | [diff] [blame] | 239 | if (err && !isOomError(err)) |
Thiago Macieira | 355817e | 2015-05-08 18:38:18 -0700 | [diff] [blame] | 240 | return err; |
Thiago Macieira | 8f7bd9e | 2015-05-12 13:37:46 +0900 | [diff] [blame] | 241 | |
Thiago Macieira | 355817e | 2015-05-08 18:38:18 -0700 | [diff] [blame] | 242 | return CborNoError; |
| 243 | } |
| 244 | |
| 245 | CborError cbor_encoder_create_array(CborEncoder *encoder, CborEncoder *arrayEncoder, size_t length) |
| 246 | { |
Thiago Macieira | 5663524 | 2015-09-20 17:44:51 -0700 | [diff] [blame] | 247 | return create_container(encoder, arrayEncoder, length, ArrayType << MajorTypeShift); |
Thiago Macieira | 355817e | 2015-05-08 18:38:18 -0700 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | CborError cbor_encoder_create_map(CborEncoder *encoder, CborEncoder *mapEncoder, size_t length) |
| 251 | { |
Thiago Macieira | 4e9626c | 2015-09-21 14:57:17 -0700 | [diff] [blame] | 252 | if (length != CborIndefiniteLength && length > SIZE_MAX / 2) |
| 253 | return CborErrorDataTooLarge; |
Thiago Macieira | 5663524 | 2015-09-20 17:44:51 -0700 | [diff] [blame] | 254 | return create_container(encoder, mapEncoder, length, MapType << MajorTypeShift); |
Thiago Macieira | 355817e | 2015-05-08 18:38:18 -0700 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | CborError cbor_encoder_close_container(CborEncoder *encoder, const CborEncoder *containerEncoder) |
| 258 | { |
Thiago Macieira | 397f979 | 2015-09-18 19:36:26 -0700 | [diff] [blame] | 259 | if (encoder->end) |
| 260 | encoder->ptr = containerEncoder->ptr; |
| 261 | else |
| 262 | encoder->bytes_needed = containerEncoder->bytes_needed; |
Erich Keane | 47a7856 | 2015-08-10 15:19:50 -0700 | [diff] [blame] | 263 | encoder->end = containerEncoder->end; |
Thiago Macieira | 8f7bd9e | 2015-05-12 13:37:46 +0900 | [diff] [blame] | 264 | if (containerEncoder->flags & CborIteratorFlag_UnknownLength) |
| 265 | return append_byte_to_buffer(encoder, BreakByte); |
Thiago Macieira | 355817e | 2015-05-08 18:38:18 -0700 | [diff] [blame] | 266 | return CborNoError; |
| 267 | } |