QCBOR
Loading...
Searching...
No Matches
qcbor_common.h
Go to the documentation of this file.
1/* ==========================================================================
2 * qcbor_common -- Common definitions for encding and decoding.
3 *
4 * Copyright (c) 2016-2018, The Linux Foundation.
5 * Copyright (c) 2018-2024, Laurence Lundblade.
6 * Copyright (c) 2021, Arm Limited.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
11 * met:
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
18 * * Neither the name of The Linux Foundation nor the names of its
19 * contributors, nor the name "Laurence Lundblade" may be used to
20 * endorse or promote products derived from this software without
21 * specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
27 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
32 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
33 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 * ========================================================================= */
35
36#ifndef qcbor_common_h
37#define qcbor_common_h
38
39#ifdef __cplusplus
40extern "C" {
41#if 0
42} // Keep editor indention formatting happy
43#endif
44#endif
45
62#define QCBOR_VERSION_MAJOR 2
63#define QCBOR_VERSION_MINOR 0
64#define QCBOR_VERSION_PATCH 0
65
66/* This is an alpha (not ready for commercial use) release of 2.0.0 */
67
77#define QCBOR_SPIFFY_DECODE
78
79
80
81/* Standard CBOR Major type for positive integers of various lengths. */
82#define CBOR_MAJOR_TYPE_POSITIVE_INT 0
83
84/* Standard CBOR Major type for negative integer of various lengths. */
85#define CBOR_MAJOR_TYPE_NEGATIVE_INT 1
86
87/* Standard CBOR Major type for an array of arbitrary 8-bit bytes. */
88#define CBOR_MAJOR_TYPE_BYTE_STRING 2
89
90/* Standard CBOR Major type for a UTF-8 string. Note this is true 8-bit UTF8
91 * with no encoding and no NULL termination. */
92#define CBOR_MAJOR_TYPE_TEXT_STRING 3
93
94/* Standard CBOR Major type for an ordered array of other CBOR data items. */
95#define CBOR_MAJOR_TYPE_ARRAY 4
96
97/* Standard CBOR Major type for CBOR MAP. Maps an array of pairs. The
98 * first item in the pair is the "label" (key, name or identfier) and the second
99 * item is the value. */
100#define CBOR_MAJOR_TYPE_MAP 5
101
102/* Standard CBOR major type for a tag number. This creates a CBOR "tag" that
103 * is the tag number and a data item that follows as the tag content.
104 *
105 * Note that this was called an optional tag in RFC 7049, but there's
106 * not really anything optional about it. It was misleading. It is
107 * renamed in RFC 8949.
108 */
109#define CBOR_MAJOR_TYPE_TAG 6
110#define CBOR_MAJOR_TYPE_OPTIONAL 6
111
112/* Standard CBOR simple types like float, the values true, false, null... */
113#define CBOR_MAJOR_TYPE_SIMPLE 7
114
115
116
117
118/*
119 * Tags that are used with CBOR_MAJOR_TYPE_OPTIONAL. These
120 * are types defined in RFC 8949 and some additional ones
121 * in the IANA CBOR tags registry.
122 */
124#define CBOR_TAG_DATE_STRING 0
126#define CBOR_TAG_DATE_EPOCH 1
129#define CBOR_TAG_POS_BIGNUM 2
132#define CBOR_TAG_NEG_BIGNUM 3
136#define CBOR_TAG_DECIMAL_FRACTION 4
140#define CBOR_TAG_BIGFLOAT 5
145#define CBOR_TAG_COSE_ENCRYPT0 16
146#define CBOR_TAG_COSE_ENCRYPTO 16
151#define CBOR_TAG_COSE_MAC0 17
155#define CBOR_TAG_COSE_SIGN1 18
161#define CBOR_TAG_ENC_AS_B64URL 21
167#define CBOR_TAG_ENC_AS_B64 22
175#define CBOR_TAG_ENC_AS_B16 23
177#define CBOR_TAG_CBOR 24
179#define CBOR_TAG_URI 32
181#define CBOR_TAG_B64URL 33
183#define CBOR_TAG_B64 34
185#define CBOR_TAG_REGEX 35
187#define CBOR_TAG_MIME 36
189#define CBOR_TAG_BIN_UUID 37
193#define CBOR_TAG_CWT 61
197#define CBOR_TAG_CBOR_SEQUENCE 63
201#define CBOR_TAG_COSE_ENCRYPT 96
202#define CBOR_TAG_ENCRYPT 96
206#define CBOR_TAG_COSE_MAC 97
207#define CBOR_TAG_MAC 97
211#define CBOR_TAG_COSE_SIGN 98
212#define CBOR_TAG_SIGN 98
216#define CBOR_TAG_DAYS_EPOCH 100
220#define CBOR_TAG_GEO_COORD 103
222#define CBOR_TAG_BINARY_MIME 257
226#define CBOR_TAG_DAYS_STRING 1004
229#define CBOR_TAG_CBOR_MAGIC 55799
230
232#define CBOR_TAG_INVALID16 0xffff
234#define CBOR_TAG_INVALID32 0xffffffff
236#define CBOR_TAG_INVALID64 0xffffffffffffffff
237
239#define CBOR_TAG_ANY (CBOR_TAG_INVALID64 - 1)
240
241
242
243
260typedef enum {
263
267
271
276
283
287
292
297
302
306
310
311#define QCBOR_START_OF_NOT_WELL_FORMED_ERRORS 20
312
317
322
329
334
339
340#define QCBOR_START_OF_UNRECOVERABLE_DECODE_ERRORS 30
341
347
355
360
361#define QCBOR_END_OF_NOT_WELL_FORMED_ERRORS 39
362
367
375
381
389
394
400
405
411
421 QCBOR_ERR_BAD_TAG_CONTENT = 48,
422 QCBOR_ERR_BAD_OPT_TAG = 48,
423
427
432
436
437 // TODO: maybe reduce number of conformance codes to not use up unrecoverable errors
438
442
446
450
453
456
457#define QCBOR_END_OF_UNRECOVERABLE_DECODE_ERRORS 59
458
463
466
469
475
480
485
489
496
500
504
508
512
516
523
526
530
537
541
548
555
558
563
566
568 QCBOR_ERR_UNEXPECTED_TAG_NUMBER = 89, // TODO: rid of this in favor of below?
569
573
578
581
582 /* This is stored in uint8_t; never add values > 255 */
584
585
598const char *
600
601
602
603
610#define QCBOR_MAX_ARRAY_NESTING 15
611
612
617#define QCBOR_MAX_ITEMS_IN_ARRAY (UINT16_MAX-1) /* -1 is because the
618 * value UINT16_MAX is
619 * used to indicate
620 * indefinite-length.
621 */
626#define QCBOR_MAX_ITEMS_IN_MAP (QCBOR_MAX_ITEMS_IN_ARRAY/2)
627
628
629#ifdef __cplusplus
630}
631#endif
632
633#endif /* qcbor_common_h */
QCBORError
Definition qcbor_common.h:260
@ QCBOR_ERR_DATE_OVERFLOW
Definition qcbor_common.h:484
@ QCBOR_ERR_MAP_NOT_ENTERED
Definition qcbor_common.h:511
@ QCBOR_ERR_UNEXPECTED_TAG_NUMBER
Definition qcbor_common.h:568
@ QCBOR_ERR_BAD_TYPE_7
Definition qcbor_common.h:316
@ QCBOR_ERR_UNSORTED
Definition qcbor_common.h:452
@ QCBOR_ERR_ARRAY_NESTING_TOO_DEEP
Definition qcbor_common.h:282
@ QCBOR_ERR_ARRAY_DECODE_TOO_LONG
Definition qcbor_common.h:380
@ QCBOR_ERR_BUFFER_TOO_LARGE
Definition qcbor_common.h:275
@ QCBOR_ERR_DCBOR_CONFORMANCE
Definition qcbor_common.h:449
@ QCBOR_ERR_ARRAY_TOO_LONG
Definition qcbor_common.h:291
@ QCBOR_ERR_HALF_PRECISION_DISABLED
Definition qcbor_common.h:525
@ QCBOR_ERR_STRING_TOO_LONG
Definition qcbor_common.h:388
@ QCBOR_ERR_BAD_INT
Definition qcbor_common.h:338
@ QCBOR_ERR_NUMBER_SIGN_CONVERSION
Definition qcbor_common.h:503
@ QCBOR_ERR_BAD_BREAK
Definition qcbor_common.h:359
@ QCBOR_ERR_MEM_POOL_SIZE
Definition qcbor_common.h:474
@ QCBOR_ERR_INDEF_LEN_STRINGS_DISABLED
Definition qcbor_common.h:426
@ QCBOR_ERR_CANNOT_CANCEL
Definition qcbor_common.h:309
@ QCBOR_ERR_CALLBACK_FAIL
Definition qcbor_common.h:515
@ QCBOR_ERR_CLOSE_MISMATCH
Definition qcbor_common.h:286
@ QCBOR_ERR_EXTRA_BYTES
Definition qcbor_common.h:321
@ QCBOR_ERR_NOT_PREFERRED
Definition qcbor_common.h:554
@ QCBOR_ERR_ARRAY_OR_MAP_STILL_OPEN
Definition qcbor_common.h:301
@ QCBOR_ERR_NO_NEGATIVE_ZERO
Definition qcbor_common.h:565
@ QCBOR_ERR_OPEN_BYTE_STRING
Definition qcbor_common.h:305
@ QCBOR_ERR_UNPROCESSED_TAG_NUMBER
Definition qcbor_common.h:572
@ QCBOR_ERR_UNRECOVERABLE_TAG_CONTENT
Definition qcbor_common.h:420
@ QCBOR_ERR_NO_STRING_ALLOCATOR
Definition qcbor_common.h:399
@ QCBOR_ERR_LAST_USER_DEFINED
Definition qcbor_common.h:580
@ QCBOR_ERR_NO_MORE_ITEMS
Definition qcbor_common.h:495
@ QCBOR_ERR_INDEF_LEN_ARRAYS_DISABLED
Definition qcbor_common.h:431
@ QCBOR_ERR_ALL_FLOAT_DISABLED
Definition qcbor_common.h:540
@ QCBOR_ERR_TAGS_DISABLED
Definition qcbor_common.h:435
@ QCBOR_ERR_MAP_LABEL_TYPE
Definition qcbor_common.h:410
@ QCBOR_ERR_UNSUPPORTED
Definition qcbor_common.h:328
@ QCBOR_ERR_LABEL_NOT_FOUND
Definition qcbor_common.h:499
@ QCBOR_ERR_FLOAT_EXCEPTION
Definition qcbor_common.h:536
@ QCBOR_ERR_INDEFINITE_STRING_CHUNK
Definition qcbor_common.h:346
@ QCBOR_ERR_NOT_ALLOWED
Definition qcbor_common.h:557
@ QCBOR_ERR_EXIT_MISMATCH
Definition qcbor_common.h:488
@ QCBOR_ERR_HW_FLOAT_DISABLED
Definition qcbor_common.h:529
@ QCBOR_ERR_UNEXPECTED_TYPE
Definition qcbor_common.h:465
@ QCBOR_ERR_RECOVERABLE_BAD_TAG_CONTENT
Definition qcbor_common.h:547
@ QCBOR_ERR_ENCODE_UNSUPPORTED
Definition qcbor_common.h:270
@ QCBOR_ERR_INT_OVERFLOW
Definition qcbor_common.h:479
@ QCBOR_ERR_TOO_MANY_CLOSES
Definition qcbor_common.h:296
@ QCBOR_ERR_DUPLICATE_LABEL
Definition qcbor_common.h:468
@ QCBOR_ERR_STRING_ALLOCATE
Definition qcbor_common.h:404
@ QCBOR_ERR_CDE_CONFORMANCE
Definition qcbor_common.h:445
@ QCBOR_ERR_BAD_EXP_AND_MANTISSA
Definition qcbor_common.h:393
@ QCBOR_ERR_TOO_MANY_TAGS
Definition qcbor_common.h:462
@ QCBOR_ERR_CONVERSION_UNDER_OVER_FLOW
Definition qcbor_common.h:507
@ QCBOR_ERR_FLOAT_DATE_DISABLED
Definition qcbor_common.h:522
@ QCBOR_ERR_PREFERRED_CONFORMANCE
Definition qcbor_common.h:441
@ QCBOR_ERR_ARRAY_OR_MAP_UNCONSUMED
Definition qcbor_common.h:333
@ QCBOR_ERR_BUFFER_TOO_SMALL
Definition qcbor_common.h:266
@ QCBOR_ERR_CANNOT_ENTER_ALLOCATED_STRING
Definition qcbor_common.h:562
@ QCBOR_ERR_ARRAY_DECODE_NESTING_TOO_DEEP
Definition qcbor_common.h:374
@ QCBOR_ERR_CANT_CHECK_FLOAT_CONFORMANCE
Definition qcbor_common.h:455
@ QCBOR_ERR_FIRST_USER_DEFINED
Definition qcbor_common.h:577
@ QCBOR_SUCCESS
Definition qcbor_common.h:262
@ QCBOR_ERR_HIT_END
Definition qcbor_common.h:354
@ QCBOR_ERR_INPUT_TOO_LARGE
Definition qcbor_common.h:366
const char * qcbor_err_to_str(QCBORError uErr)
Get string describing an error code.