QCBOR
|
#include "qcbor/qcbor_main_decode.h"
Go to the source code of this file.
Data Structures | |
struct | QCBORTagDecoderEntry |
Typedefs | |
typedef QCBORError | QCBORTagContentCallBack(QCBORDecodeContext *pCtx, void *pTagDecodersContext, uint64_t uTagNumber, QCBORItem *pItem) |
Prototype for callback for decoding tag content. | |
Enumerations | |
enum | QCBORDecodeTagReq { QCBOR_TAG_REQUIREMENT_TAG = 0 , QCBOR_TAG_REQUIREMENT_NOT_A_TAG = 1 , QCBOR_TAG_REQUIREMENT_OPTIONAL_TAG = 2 , QCBOR_TAG_REQUIREMENT_ALLOW_ADDITIONAL_TAGS = 0x80 } |
Functions | |
void | QCBORDecode_VGetNextTagNumber (QCBORDecodeContext *pCtx, uint64_t *puTagNumber) |
Returns the tag numbers for an item. | |
QCBORError | QCBORDecode_GetNextTagNumber (QCBORDecodeContext *pCtx, uint64_t *puTagNumber) |
Returns the tag numbers for an item. | |
QCBORError | QCBORDecode_GetNextTagNumberInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, uint64_t *puTagNumber) |
QCBORError | QCBORDecode_GetNextTagNumberInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, uint64_t *puTagNumber) |
uint64_t | QCBORDecode_GetNthTagNumber (const QCBORDecodeContext *pCtx, const QCBORItem *pItem, uint8_t uIndex) |
Returns the tag numbers for a decoded item. | |
uint64_t | QCBORDecode_GetNthTagNumberOfLast (QCBORDecodeContext *pCtx, uint8_t uIndex) |
Returns the tag numbers for last-decoded item. | |
void | QCBORDecode_EnterBstrWrapped (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pBstr) |
Decode some byte-string wrapped CBOR. | |
void | QCBORDecode_EnterBstrWrappedFromMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pBstr) |
void | QCBORDecode_EnterBstrWrappedFromMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pBstr) |
void | QCBORDecode_ExitBstrWrapped (QCBORDecodeContext *pCtx) |
Exit some bstr-wrapped CBOR that has been entered. | |
static void | QCBORDecode_GetTDateString (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
Decode the next item as a date string. | |
static void | QCBORDecode_GetTDateStringInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
static void | QCBORDecode_GetTDateStringInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
void | QCBORDecode_GetTEpochDate (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnTime) |
Decode the next item as an epoch date. | |
void | QCBORDecode_GetTEpochDateInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnTime) |
void | QCBORDecode_GetTEpochDateInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnTime) |
static void | QCBORDecode_GetTDaysString (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
Decode the next item as a date string. | |
static void | QCBORDecode_GetTDaysStringInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
static void | QCBORDecode_GetTDaysStringInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
void | QCBORDecode_GetTEpochDays (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnDays) |
Decode the next item as an days-count epoch date. | |
void | QCBORDecode_GetTEpochDaysInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnDays) |
void | QCBORDecode_GetTEpochDaysInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnDays) |
static void | QCBORDecode_GetTURI (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pURI) |
Decode the next item as a URI. | |
static void | QCBORDecode_GetTURIInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pURI) |
static void | QCBORDecode_GetTURIInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pURI) |
static void | QCBORDecode_GetTB64 (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
Decode the next item as base64 encoded text. | |
static void | QCBORDecode_GetTB64InMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetTB64InMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetTB64URL (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
Decode the next item as base64URL encoded text. | |
static void | QCBORDecode_GetTB64URLInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetTB64URLInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetTRegex (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pRegex) |
Decode the next item as a regular expression. | |
static void | QCBORDecode_GetTRegexInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pRegex) |
static void | QCBORDecode_GetTRegexInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pRegex) |
void | QCBORDecode_GetTMIMEMessage (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pMessage, bool *pbIsTag257) |
Decode the next item as a MIME message. | |
void | QCBORDecode_GetTMIMEMessageInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pMessage, bool *pbIsTag257) |
void | QCBORDecode_GetTMIMEMessageInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pMessage, bool *pbIsTag257) |
static void | QCBORDecode_GetTBinaryUUID (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pUUID) |
Decode the next item as a UUID. | |
static void | QCBORDecode_GetTBinaryUUIDInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pUUID) |
static void | QCBORDecode_GetTBinaryUUIDInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pUUID) |
static void | QCBORDecode_InstallTagDecoders (QCBORDecodeContext *pCtx, const struct QCBORTagDecoderEntry *pTagDecoderTable, void *pTagDecodersContext) |
Set the custom tag decoders. | |
QCBORError | QCBORDecode_DateEpochTagCB (QCBORDecodeContext *pDecodeCtx, void *pTagDecodersContext, uint64_t uTagNumber, QCBORItem *pDecodedItem) |
Convert different epoch date formats in to the QCBOR epoch date format. | |
QCBORError | QCBORDecode_DaysEpochTagCB (QCBORDecodeContext *pDecodeCtx, void *pTagDecodersContext, uint64_t uTagNumber, QCBORItem *pDecodedItem) |
Convert the days epoch date. | |
QCBORError | QCBORDecode_StringsTagCB (QCBORDecodeContext *pDecodeCtx, void *pTagDecodersContext, uint64_t uTagNumber, QCBORItem *pDecodedItem) |
Process standard CBOR tags whose content is a string. | |
QCBORError | QCBORDecode_MIMETagCB (QCBORDecodeContext *pDecodeCtx, void *pTagDecodersContext, uint64_t uTagNumber, QCBORItem *pDecodedItem) |
Decode the MIME type tag. | |
QCBORError | QCBORDecode_ExpMantissaTagCB (QCBORDecodeContext *pDecodeCtx, void *pTagDecodersContext, uint64_t uTagNumber, QCBORItem *pDecodedItem) |
Decode decimal fractions and big floats. | |
uint64_t | QCBORDecode_GetNthTag (QCBORDecodeContext *pCtx, const QCBORItem *pItem, uint32_t uIndex) |
[Deprecated] Returns the tag numbers for an item.. | |
uint64_t | QCBORDecode_GetNthTagOfLast (const QCBORDecodeContext *pCtx, uint32_t uIndex) |
[Deprecated] Returns the tag numbers for last-decoded item. | |
static void | QCBORDecode_GetDateString (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
static void | QCBORDecode_GetDateStringInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
static void | QCBORDecode_GetDateStringInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
static void | QCBORDecode_GetEpochDate (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnTime) |
static void | QCBORDecode_GetEpochDateInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnTime) |
static void | QCBORDecode_GetEpochDateInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnTime) |
static void | QCBORDecode_GetDaysString (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
static void | QCBORDecode_GetDaysStringInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
static void | QCBORDecode_GetDaysStringInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pDateString) |
static void | QCBORDecode_GetEpochDays (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnDays) |
static void | QCBORDecode_GetEpochDaysInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnDays) |
static void | QCBORDecode_GetEpochDaysInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, int64_t *pnDays) |
static void | QCBORDecode_GetURI (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pURI) |
static void | QCBORDecode_GetURIInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pURI) |
static void | QCBORDecode_GetURIInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pURI) |
static void | QCBORDecode_GetB64 (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetB64InMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetB64InMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetB64URL (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetB64URLInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetB64URLInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pB64Text) |
static void | QCBORDecode_GetRegex (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pRegex) |
static void | QCBORDecode_GetRegexInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pRegex) |
static void | QCBORDecode_GetRegexInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pRegex) |
static void | QCBORDecode_GetMIMEMessage (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pMessage, bool *pbIsTag257) |
static void | QCBORDecode_GetMIMEMessageInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pMessage, bool *pbIsTag257) |
static void | QCBORDecode_GetMIMEMessageInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pMessage, bool *pbIsTag257) |
static void | QCBORDecode_GetBinaryUUID (QCBORDecodeContext *pCtx, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pUUID) |
static void | QCBORDecode_GetBinaryUUIDInMapN (QCBORDecodeContext *pCtx, int64_t nLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pUUID) |
static void | QCBORDecode_GetBinaryUUIDInMapSZ (QCBORDecodeContext *pCtx, const char *szLabel, enum QCBORDecodeTagReq uTagRequirement, UsefulBufC *pUUID) |
Variables | |
const struct QCBORTagDecoderEntry | QCBORDecode_TagDecoderTablev1 [] |
See CBORTags first if you are unfamiliar with the notion of tags in CBOR.
QCBOR v2 offers several ways to decode tags.
One is by registering a call back that can transform the tag into a QCBORItem identified by a new QCBOR type, perhaps in the range starting with QCBOR_TYPE_START_USER_DEFINED. It is limited in that the decoded data must fit into the 24 bytes of a QCBORItem value. It is good for simple new data types. See QCBORTagContentCallBack()
Another is by getting (consuming) tag numbers in the course of decoding. This is more suitable for tags numbers that indicate message types, those that alter the decode flow. See QCBORDecode_VGetNextTagNumber().
Also, QCBOR offers specific functions to decode the standard tags such as epoch dates and big numbers. One form of these is call backs that can be installed such as QCBORDecode_DateEpochTagCB(). Another is spiffy decode style functions like QCBORDecode_GetTDateString()
QCBOR v2 (when not in v1 compatibility) requires all tags be consumed. If they are not consumed by one of the above methods, QCBOR_ERR_UNPROCESSED_TAG_NUMBER error occurs. They are never optional (as they were described in RFC 7049) just as it is not optional to ignore whether an item is a string rather than an integer.
Thorough CBOR decoding requires that tag numbers not be ignored. Tag numbers fundamentally change the type of an item. QCBOR v1 does not support this well. It neatly put all the tag numbers on an item in the QCBORItem, but leaves it up to the caller to check that every QCBORItem has no tag numbers on it. It is likely that protocol implementors rarely performed this check. For the most part this is tolerable, but it really isn't proper and thorough decoding.
Also, spiffy decode methods like QCBORDecode_GetInt64() saved associated tag numbers so they could be fetched with QCBORDecode_GetNthTagNumberOfLast(), but did nothing more.
QCBOR v2 behaves different. It errors out if all tag numbers are not consumed.
Most applications that worked correclty with v1 will work with v2. Decoding will become appropriately more thorough.
If an application relied on the v1 behavior, it can be restored with the configuration QCBOR_DECODE_ALLOW_UNPROCESSED_TAG_NUMBERS.
Before QCBOR v1.5, the QCBORDecode_GetByteString() and QCBORDecode_GetTextString() would error out if preceeded by a tag number. This was unlike all the other QCBORDecode_GetXxx() functions that queitly decoded the tag numbers and included them in the QCBORItem. These string decode functions were modified by v1.5 so they were liberal like the other QCBORDecode_GetXxx functions. This is only of note between QCBOR v1.5 and what came before it, not for QCBOR v2. QCBOR v2 in compatibility mode behaves like QCBOR v1.5.
If QCBOR_DISABLE_TAGS is defined, all code for decoding tags will be omitted reducing the core decoder, QCBORDecode_VGetNext(), by about 500 bytes. If a tag number is encountered in the decoder input the unrecoverable error QCBOR_ERR_TAGS_DISABLED will be returned. No input with tags can be decoded.
Decode functions like QCBORDecode_GetEpochDate() and QCBORDecode_GetDecimalFraction() are still available, but only work on "borrowed" tag content. When they are called with tags disabled, the uTagRequirement
parameter should be QCBOR_TAG_REQUIREMENT_NOT_A_TAG.
typedef QCBORError QCBORTagContentCallBack(QCBORDecodeContext *pCtx, void *pTagDecodersContext, uint64_t uTagNumber, QCBORItem *pItem) |
Prototype for callback for decoding tag content.
[in] | pCtx | Decode context. |
[in] | pTagDecodersContext | Optional context for tag decoders. |
[in] | uTagNumber | The tag number indicated for the content. |
[in,out] | pItem | On input, the item for the first and possibly only item for the tag content. On output, holds the decoded tag content. |
This is one of two main facilities for processing CBOR tags. This allows callbacks to be installed that fire when a particular tag number is encountered. The callback consumes the tag content and turns it into a QCBORItem of a new type. The new QCBORItem is returned in normal decoding with QCBORDecode_VGetNext() and related.
The other facility is QCBORDecode_GetNextTagNumber(). Note that tag processing is substantially changed in QCBOR v2.
A CBOR tag consists of a tag number and tag content. The tag content might be a simple non-aggregate type like an integer or it may be a complex protocol message. This facility is oriented around simple tag content as the output of it must be fit into a QCBORItem.
When called, the contents of pItem is the first item in the tag content. If it is an array or map then the items in it can be fetched by calling QCBORDecode_GetNext() and such. All the items in the tag content must be consumed.
The callback modifies pItem. It puts the output of tag content decoding in pItem. It assigns a QCBOR_TYPE integer in the range of QCBOR_TYPE_START_USER_DEFINED to QCBOR_TYPE_END_USER_DEFINED. Any of the members of the union val
may be used to hold the decoded content. val.userDefined
is a 24 byte buffer that can be used.
The tag number is passed in so as to allow one callback to be installed for several different tag numbers.
The callback must be installed with QCBORDecode_InstallTagDecoders().
A callback context may given when the callback is installed. It will be passed in here as pTagDecodesrContext. There is only one context for all tag content decoders. None of the standard tag decoders here use it. The callback context can be used to make a very elaborite tag content decoder.
Tags can nest. Callbacks fire first on then inner most tag. They are called until all tags are processed or a tag number for which there is no processor is encountered.
Standard CBOR defines tags for big numbers, the tag content for which is a byte string. The standard decoder supplied for this fires on the tag number for a positive or negative big number, checks that the tag content is a byte string and changes the CBOR type of the item from a byte string to either QCBOR_TYPE_POSBIGNUM or QCBOR_TYPE_NEGBIGNUM.
Standard CBOR defines a tag for big floats, the tag content of which is an array of the mantissa and the exponent. The mantissa may be a big number. Since callbacks fire from the inside out, the big number content decoder will fire first and the big float decoder will get QCBOR_TYPE_POSBIGNUM instead of a tag number and a byte string.
enum QCBORDecodeTagReq |
This enum indicates how decode functions for specific tag types behave in relation to the tag numbers.
Enumerator | |
---|---|
QCBOR_TAG_REQUIREMENT_TAG | The data item must be a tag of the expected type. It is an error if it is not. For example when calling QCBORDecode_GetEpochDate(), the data item must be an CBOR_TAG_DATE_EPOCH tag. |
QCBOR_TAG_REQUIREMENT_NOT_A_TAG | The data item must be of the type expected for content data type being fetched. It is an error if it is not. For example, when calling QCBORDecode_GetEpochDate() and it must not be an CBOR_TAG_DATE_EPOCH tag. See AreTagsOptional. |
QCBOR_TAG_REQUIREMENT_OPTIONAL_TAG | Either of the above two are allowed. This allows implementation of being liberal in what you receive, but it is better if CBOR-based protocols pick one and stick to and not required the reciever to take either. See https://tools.ietf.org/id/draft-thomson-postel-was-wrong-03.html. |
QCBOR_TAG_REQUIREMENT_ALLOW_ADDITIONAL_TAGS | Add this into the above value if other tags not processed by QCBOR are to be allowed to surround the data item. |
QCBORError QCBORDecode_DateEpochTagCB | ( | QCBORDecodeContext * | pDecodeCtx, |
void * | pTagDecodersContext, | ||
uint64_t | uTagNumber, | ||
QCBORItem * | pDecodedItem ) |
Convert different epoch date formats in to the QCBOR epoch date format.
[in] | pDecodeCtx | Decode context. |
[in] | pTagDecodersContext | Optional context for tag decoders. |
[in] | uTagNumber | The tag number indicated for the content. |
[in,out] | pDecodedItem | The data item to convert. |
QCBOR_ERR_DATE_OVERFLOW | 65-bit negative integer. |
QCBOR_ERR_FLOAT_DATE_DISABLED | Float-point date in input, floating-point date disabled. |
QCBOR_ERR_ALL_FLOAT_DISABLED | Float-point date in input, all floating-point disabled. |
QCBOR_ERR_UNRECOVERABLE_TAG_CONTENT | Unexpected and unrecoverable error decoding date. |
The epoch date tag defined in QCBOR allows for floating-point dates. It even allows a protocol to flop between date formats when ever it wants. Floating-point dates aren't that useful as they are only needed for dates beyond the age of the earth.
This works for the following tag numbers: CBOR_TAG_DATE_EPOCH
This converts all the date formats into one format of an unsigned integer plus a floating-point fraction.
This is a call back to be installed by QCBORDecode_InstallTagDecoders().
QCBORError QCBORDecode_DaysEpochTagCB | ( | QCBORDecodeContext * | pDecodeCtx, |
void * | pTagDecodersContext, | ||
uint64_t | uTagNumber, | ||
QCBORItem * | pDecodedItem ) |
Convert the days epoch date.
[in] | pDecodeCtx | Decode context. |
[in] | pTagDecodersContext | Optional context for tag decoders. |
[in] | uTagNumber | The tag number indicated for the content. |
[in,out] | pDecodedItem | The data item to convert. |
QCBOR_ERR_DATE_OVERFLOW | 65-bit negative integer. |
QCBOR_ERR_FLOAT_DATE_DISABLED | Float-point date in input, floating-point date disabled. |
QCBOR_ERR_ALL_FLOAT_DISABLED | Float-point date in input, all floating-point disabled. |
QCBOR_ERR_UNRECOVERABLE_TAG_CONTENT | Unexpected and unrecoverable error decoding date. |
This works for the following tag numbers: CBOR_TAG_DAYS_EPOCH
This is much simpler than the other epoch date format because floating-porint is not allowed. This is mostly a simple type check.
This is a call back to be installed by QCBORDecode_InstallTagDecoders().
void QCBORDecode_EnterBstrWrapped | ( | QCBORDecodeContext * | pCtx, |
enum QCBORDecodeTagReq | uTagRequirement, | ||
UsefulBufC * | pBstr ) |
Decode some byte-string wrapped CBOR.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pBstr | Pointer and length of byte-string wrapped CBOR (optional). |
This is for use on some CBOR that has been wrapped in a byte string. There are several ways that this can occur.
First is tag 24 and tag 63. Tag 24 wraps a single CBOR data item and 63 a CBOR sequence. This implementation doesn't distinguish between the two (it would be more code and doesn't seem important).
The QCBORDecodeTagReq discussion on the tag requirement applies here just the same as any other tag.
In other cases, CBOR is wrapped in a byte string, but it is identified as CBOR by other means. The contents of a COSE payload are one example of that. They can be identified by the COSE content type, or they can be identified as CBOR indirectly by the protocol that uses COSE. for example, if a blob of CBOR is identified as a CWT, then the COSE payload is CBOR. To enter into CBOR of this type use the QCBOR_TAG_REQUIREMENT_NOT_A_TAG as the uTagRequirement
argument.
Note that byte string wrapped CBOR can also be decoded by getting the byte string with QCBORDecode_GetItem() or QCBORDecode_GetByteString() and feeding it into another instance of QCBORDecode. Doing it with this function has the advantage of using less memory as another instance of QCBORDecode is not necessary.
When the wrapped CBOR is entered with this function, the pre-order traversal and such are bounded to the wrapped CBOR. QCBORDecode_ExitBstrWrapped() must be called to resume processing CBOR outside the wrapped CBOR.
This does not work on indefinite-length strings. The error QCBOR_ERR_CANNOT_ENTER_ALLOCATED_STRING will be set.
If pBstr
is not NULL
the pointer and length of the wrapped CBOR will be returned. This is usually not needed, but sometimes useful, particularly in the case of verifying signed data like the COSE payload. This is usually the pointer and length of the data is that is hashed or MACed.
Please see Decode Errors Overview.
See also QCBORDecode_ExitBstrWrapped(), QCBORDecode_EnterMap() and QCBORDecode_EnterArray().
void QCBORDecode_EnterBstrWrappedFromMapN | ( | QCBORDecodeContext * | pCtx, |
int64_t | nLabel, | ||
enum QCBORDecodeTagReq | uTagRequirement, | ||
UsefulBufC * | pBstr ) |
void QCBORDecode_EnterBstrWrappedFromMapSZ | ( | QCBORDecodeContext * | pCtx, |
const char * | szLabel, | ||
enum QCBORDecodeTagReq | uTagRequirement, | ||
UsefulBufC * | pBstr ) |
void QCBORDecode_ExitBstrWrapped | ( | QCBORDecodeContext * | pCtx | ) |
Exit some bstr-wrapped CBOR that has been entered.
[in] | pCtx | The decode context. |
Bstr-wrapped CBOR must have been entered for this to succeed.
The items in the wrapped CBOR that was entered do not have to have been consumed for this to succeed.
The this sets the traversal cursor to the item after the byte string that was exited.
QCBORError QCBORDecode_ExpMantissaTagCB | ( | QCBORDecodeContext * | pDecodeCtx, |
void * | pTagDecodersContext, | ||
uint64_t | uTagNumber, | ||
QCBORItem * | pDecodedItem ) |
Decode decimal fractions and big floats.
[in] | pDecodeCtx | Decode context. |
[in] | pTagDecodersContext | Optional context for tag decoders. |
[in] | uTagNumber | The tag number indicated for the content. |
[in,out] | pDecodedItem | The data item to convert. |
When called pDecodedItem must be the array with two members, the exponent and mantissa.
Fetch and decode the exponent and mantissa and put the result back into pDecodedItem.
This stuffs the type of the mantissa into pDecodedItem with the expectation the caller will process it.
This works for: CBOR_TAG_DECIMAL_FRACTION, CBOR_TAG_BIGFLOAT
This is a call back to be installed by QCBORDecode_InstallTagDecoders().
QCBORError QCBORDecode_GetNextTagNumber | ( | QCBORDecodeContext * | pCtx, |
uint64_t * | puTagNumber ) |
Returns the tag numbers for an item.
[in] | pCtx | The decoder context. |
[out] | puTagNumber | The returned tag number. |
Like QCBORDecode_VGetNextTagNumber(), but returns the error rather than set last error.
QCBORError QCBORDecode_GetNextTagNumberInMapN | ( | QCBORDecodeContext * | pCtx, |
int64_t | nLabel, | ||
uint64_t * | puTagNumber ) |
QCBORError QCBORDecode_GetNextTagNumberInMapSZ | ( | QCBORDecodeContext * | pCtx, |
const char * | szLabel, | ||
uint64_t * | puTagNumber ) |
uint64_t QCBORDecode_GetNthTag | ( | QCBORDecodeContext * | pCtx, |
const QCBORItem * | pItem, | ||
uint32_t | uIndex ) |
[Deprecated] Returns the tag numbers for an item..
[in] | pCtx | The decoder context. |
[in] | uIndex | The index of the tag to get. |
[in] | pItem | The item from which to get the tag number. |
This is the same as QCBORDecode_GetNthTagNumber() but the order is opposite when there are multiple tags. uIndex
0 is the tag number closest to the tag content. QCBORDecode_GetNthTagNumber() is more useful for checking the next tag number and switching the decode flow.
uint64_t QCBORDecode_GetNthTagNumber | ( | const QCBORDecodeContext * | pCtx, |
const QCBORItem * | pItem, | ||
uint8_t | uIndex ) |
Returns the tag numbers for a decoded item.
[in] | pCtx | The decoder context. |
[in] | pItem | The CBOR item to get the tag for. |
[in] | uIndex | The index of the tag to get. |
Typically, this is only used with QCBOR_DECODE_ALLOW_UNPROCESSED_TAG_NUMBERS. Normally, tag numbers are processed QCBORDecode_VGetNextTagNumber() or QCBORTagContentCallBack.
When QCBOR decodes an item that is a tag, it will fully decode tags it is able to. Tags that it is unable to process are put in a list in the QCBORItem.
Tags nest. Here the tag with index 0 is the outermost, the one furthest form the data item that is the tag content. This is the opposite order of QCBORDecode_GetNthTag(), but more useful.
Deep tag nesting is rare so this implementation imposes a limit of QCBOR_MAX_TAGS_PER_ITEM on nesting and returns QCBOR_ERR_TOO_MANY_TAGS if there are more. This is a limit of this implementation, not of CBOR. (To be able to handle deeper nesting, the constant can be increased and the library recompiled. It will use more memory).
See also TagDecoding CBORTags.
To reduce memory used by a QCBORItem, tag numbers larger than UINT16_MAX
are mapped so the tag numbers in uTags
should be accessed with this function rather than directly.
This returns CBOR_TAG_INVALID64 if any error occurred when getting the item. This is also returned if there are no tags on the item or no tag at uIndex
.
uint64_t QCBORDecode_GetNthTagNumberOfLast | ( | QCBORDecodeContext * | pCtx, |
uint8_t | uIndex ) |
Returns the tag numbers for last-decoded item.
[in] | pCtx | The decoder context. |
[in] | uIndex | The index of the tag to get. |
This returns tags of the most recently decoded item. See QCBORDecode_GetNthTagNumber(). This is particularly of use for spiffy decode functions that don't return a QCBORItem.
This does not work for QCBORDecode_GetNext(), QCBORDecode_PeekNext(), QCBORDecode_VPeekNext() or QCBORDecode_VGetNextConsume() but these all return a QCBORItem, so it is not necessary.
If a decoding error is set, then this returns CBOR_TAG_INVALID64.
uint64_t QCBORDecode_GetNthTagOfLast | ( | const QCBORDecodeContext * | pCtx, |
uint32_t | uIndex ) |
[Deprecated] Returns the tag numbers for last-decoded item.
[in] | pCtx | The decoder context. |
[in] | uIndex | The index of the tag to get. |
This is the same as QCBORDecode_GetNthTagNumberOfLast() but the order is opposite when there are multiple tags. uIndex
0 is the tag number closest to the tag content. QCBORDecode_GetNthTagNumber() is more useful for checking the next tag number and switching the decode flow.
|
inlinestatic |
Decode the next item as base64 encoded text.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pB64Text | The decoded base64 text. |
This decodes a standard CBOR base64 tag, integer tag number of 34, or encoded CBOR that is not a tag, that is base64 encoded bytes encoded in a text string.
Please see Decode Errors Overview.
Note that this does not actually remove the base64 encoding.
See also CBOR_TAG_B64, QCBOREncode_AddB64Text() and QCBOR_TYPE_BASE64.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
Decode the next item as base64URL encoded text.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pB64Text | The decoded base64 text. |
This decodes a standard CBOR base64url tag, integer tag number of 33, or encoded CBOR that is not a tag, that is base64url encoded bytes encoded in a text string.
Please see Decode Errors Overview.
Note that this does not actually remove the base64url encoding.
See also CBOR_TAG_B64URL, QCBOREncode_AddTB64URLText() and QCBOR_TYPE_BASE64URL.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
Decode the next item as a UUID.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pUUID | The decoded UUID. |
This decodes a standard CBOR UUID tag, integer tag number of 37, or encoded CBOR that is not a tag, that is a UUID encoded in a byte string.
Please see Decode Errors Overview.
See also CBOR_TAG_BIN_UUID, QCBOREncode_AddTBinaryUUID() and QCBOR_TYPE_UUID.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
Decode the next item as a date string.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pDateString | The decoded date. |
This decodes the standard CBOR date/time string tag, integer tag number of 0, or encoded CBOR that is not a tag, but borrows the date string content format.
Please see Decode Errors Overview.
See also CBOR_TAG_DATE_STRING, QCBOREncode_AddDateString() and QCBOR_TYPE_DATE_STRING.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
Decode the next item as a date string.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pDateString | The decoded date. |
This decodes the CBOR date-only string tag, integer tag number of 1004, or encoded CBOR that is not a tag, but borrows the date-only string content format. An example of the format is "1985-04-12".
Please see Decode Errors Overview.
See also CBOR_TAG_DAYS_STRING, QCBOREncode_AddDaysString() and QCBOR_TYPE_DAYS_STRING.
|
inlinestatic |
|
inlinestatic |
void QCBORDecode_GetTEpochDate | ( | QCBORDecodeContext * | pCtx, |
enum QCBORDecodeTagReq | uTagRequirement, | ||
int64_t * | pnTime ) |
Decode the next item as an epoch date.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | One of QCBOR_TAG_REQUIREMENT_XXX . |
[out] | pnTime | The decoded epoch date. |
This decodes the standard CBOR epoch date/time tag, integer tag number of 1. This will also decode any integer or floating-point number as an epoch date (a tag 1 epoch date is just an integer or floating-point number).
This will set QCBOR_ERR_DATE_OVERFLOW if the input integer will not fit in an int64_t
. Note that an int64_t
can represent a range of over 500 billion years with one second resolution.
Floating-point dates are always returned as an int64_t
. The fractional part is discarded.
If the input is a floating-point date and the QCBOR library is compiled with some or all floating-point features disabled, the following errors will be set. If the input is half-precision and half-precision is disabled QCBOR_ERR_HALF_PRECISION_DISABLED is set. This function needs hardware floating-point to convert the floating-point value to an integer so if HW floating point is disabled QCBOR_ERR_HW_FLOAT_DISABLED is set. If all floating-point is disabled then QCBOR_ERR_ALL_FLOAT_DISABLED is set. A previous version of this function would return QCBOR_ERR_FLOAT_DATE_DISABLED in some, but not all, cases when floating-point decoding was disabled.
Floating-point dates that are plus infinity, minus infinity or NaN (not-a-number) will result in the QCBOR_ERR_DATE_OVERFLOW error.
Please see Decode Errors Overview.
See also CBOR_TAG_DATE_EPOCH, QCBOREncode_AddTDateEpoch() and QCBOR_TYPE_DATE_EPOCH.
void QCBORDecode_GetTEpochDateInMapN | ( | QCBORDecodeContext * | pCtx, |
int64_t | nLabel, | ||
enum QCBORDecodeTagReq | uTagRequirement, | ||
int64_t * | pnTime ) |
void QCBORDecode_GetTEpochDateInMapSZ | ( | QCBORDecodeContext * | pCtx, |
const char * | szLabel, | ||
enum QCBORDecodeTagReq | uTagRequirement, | ||
int64_t * | pnTime ) |
void QCBORDecode_GetTEpochDays | ( | QCBORDecodeContext * | pCtx, |
enum QCBORDecodeTagReq | uTagRequirement, | ||
int64_t * | pnDays ) |
Decode the next item as an days-count epoch date.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pnDays | The decoded epoch date. |
This decodes the CBOR epoch date tag, integer tag number of 100, or encoded CBOR that is not a tag, but borrows the content format. The date is the number of days (not number of seconds) before or after Jan 1, 1970.
Please see Decode Errors Overview.
See also CBOR_TAG_DAYS_EPOCH, QCBOREncode_AddTDaysEpoch() and QCBOR_TYPE_DAYS_EPOCH.
void QCBORDecode_GetTEpochDaysInMapN | ( | QCBORDecodeContext * | pCtx, |
int64_t | nLabel, | ||
enum QCBORDecodeTagReq | uTagRequirement, | ||
int64_t * | pnDays ) |
void QCBORDecode_GetTEpochDaysInMapSZ | ( | QCBORDecodeContext * | pCtx, |
const char * | szLabel, | ||
enum QCBORDecodeTagReq | uTagRequirement, | ||
int64_t * | pnDays ) |
void QCBORDecode_GetTMIMEMessage | ( | QCBORDecodeContext * | pCtx, |
enum QCBORDecodeTagReq | uTagRequirement, | ||
UsefulBufC * | pMessage, | ||
bool * | pbIsTag257 ) |
Decode the next item as a MIME message.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pMessage | The decoded regular expression. |
[out] | pbIsTag257 | true if tag was 257. May be NULL . |
This decodes the standard CBOR MIME and binary MIME tags, integer tag numbers of 36 or 257, or encoded CBOR that is not a tag, that is a MIME message encoded in a text or binary string.
Please see Decode Errors Overview.
The MIME message itself is not parsed.
This decodes both tag 36 and 257. If it is tag 257, pbIsTag257 is true
. The difference between the two is that tag 36 is utf8 and tag 257 is a byte string that can carry binary MIME. QCBOR processes them exactly the same. Possibly the difference can be ignored. NULL can be passed to have no value returned.
See also CBOR_TAG_MIME, CBOR_TAG_BINARY_MIME, QCBOREncode_AddTMIMEData(), QCBOR_TYPE_MIME and QCBOR_TYPE_BINARY_MIME.
This does no translation of line endings. See QCBOREncode_AddText() for a discussion of line endings in CBOR.
void QCBORDecode_GetTMIMEMessageInMapN | ( | QCBORDecodeContext * | pCtx, |
int64_t | nLabel, | ||
enum QCBORDecodeTagReq | uTagRequirement, | ||
UsefulBufC * | pMessage, | ||
bool * | pbIsTag257 ) |
void QCBORDecode_GetTMIMEMessageInMapSZ | ( | QCBORDecodeContext * | pCtx, |
const char * | szLabel, | ||
enum QCBORDecodeTagReq | uTagRequirement, | ||
UsefulBufC * | pMessage, | ||
bool * | pbIsTag257 ) |
|
inlinestatic |
Decode the next item as a regular expression.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pRegex | The decoded regular expression. |
This decodes a standard CBOR regex tag, integer tag number of 35, or encoded CBOR that is not a tag, that is a PERL-compatible regular expression encoded in a text string.
Please see Decode Errors Overview.
See also CBOR_TAG_REGEX, QCBOREncode_AddTRegex() and QCBOR_TYPE_REGEX.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
Decode the next item as a URI.
[in] | pCtx | The decode context. |
[in] | uTagRequirement | See QCBORDecodeTagReq. |
[out] | pURI | The decoded URI. |
This decodes a standard CBOR URI tag, integer tag number of 32, or encoded CBOR that is not a tag, that is a URI encoded in a text string.
Please see Decode Errors Overview.
See also CBOR_TAG_URI, QCBOREncode_AddTURI() and QCBOR_TYPE_URI.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
Set the custom tag decoders.
[in] | pCtx | The decode context. |
[in] | pTagDecoderTable | The table of tag struct QCBORTagDecoderEntry content decoders. The table is terminated by an entry with a NULL pfContentDecoder. |
[in] | pTagDecodersContext | Context passed to tag decoders. May be NULL . |
There is only one table of tag decoders at a time. A call to this replaces the previous table.
QCBORError QCBORDecode_MIMETagCB | ( | QCBORDecodeContext * | pDecodeCtx, |
void * | pTagDecodersContext, | ||
uint64_t | uTagNumber, | ||
QCBORItem * | pDecodedItem ) |
Decode the MIME type tag.
[in] | pDecodeCtx | Decode context. |
[in] | pTagDecodersContext | Optional context for tag decoders. |
[in] | uTagNumber | The tag number indicated for the content. |
[in,out] | pDecodedItem | The data item to convert. |
Handle the text and binary MIME type tags. Slightly too complicated for or QCBORDecode_StringsTagCB() because the RFC 7049 MIME type was incorrectly text-only.
This works for : CBOR_TAG_BINARY_MIME, CBOR_TAG_MIME
This is a call back to be installed by QCBORDecode_InstallTagDecoders().
QCBORError QCBORDecode_StringsTagCB | ( | QCBORDecodeContext * | pDecodeCtx, |
void * | pTagDecodersContext, | ||
uint64_t | uTagNumber, | ||
QCBORItem * | pDecodedItem ) |
Process standard CBOR tags whose content is a string.
[in] | pDecodeCtx | Decode context. |
[in] | pTagDecodersContext | Optional context for tag decoders. |
[in] | uTagNumber | The tag number indicated for the content. |
[in,out] | pDecodedItem | The data item to convert. |
Process the standard CBOR tags whose content is a byte string or a text string and for which the string is just passed on to the caller.
This works for : CBOR_TAG_DATE_STRING, CBOR_TAG_POS_BIGNUM, CBOR_TAG_NEG_BIGNUM, CBOR_TAG_CBOR, CBOR_TAG_URI, CBOR_TAG_B64URL, CBOR_TAG_B64, CBOR_TAG_REGEX, CBOR_TAG_DAYS_STRING, CBOR_TAG_BIN_UUID, CBOR_TAG_CBOR_SEQUENCE
This maps the CBOR tag to the QCBOR type and checks the tag content type. Nothing more.
This is a call back to be installed by QCBORDecode_InstallTagDecoders().
void QCBORDecode_VGetNextTagNumber | ( | QCBORDecodeContext * | pCtx, |
uint64_t * | puTagNumber ) |
Returns the tag numbers for an item.
[in] | pCtx | The decoder context. |
[out] | puTagNumber | The returned tag number. |
In QCBOR v2, all tag numbers on an item MUST be fetched with this method. If not, QCBOR_ERR_UNPROCESSED_TAG_NUMBER will occur. This is a major change from QCBORv1. The QCBOR v1 behavior is too lax for proper CBOR decoding. When a tag number occurs it indicates the item is a new data type (except for a few tag numbers that are hints). Note also that in RFC 7049, tag numbers were incorrectly characterized as optional implying they could be ignored.
In typical item decoding, tag numbers are not used, not present and not expected. There's no need to call this.
When the protocol being decoded does use a tag number then this must be called for the items were the tag numbers occur before the items themselves are decoded. Making this call prevents the QCBOR_ERR_UNPROCESSED_TAG_NUMBER error, but the caller still has to check that the tag number is the right one. Probably the tag number will be used to switch the flow of the decoder.
It's possible that an item might use the presence/absence of a tag number to switch the flow of decoding. If there's a possibility of a tag number then this must be called.
If this is called and there is no tag number, then this will return QCBOR_SUCCESS and the tag number returned will be CBOR_TAG_INVALID64.
Usually there is only one tag number per item, but CBOR allows more. That it allows nesting of tags where the content of one tag is another tag. If there are multiple tag numbers, this must be called multiple times. This only returns one tag number at a time, because tag numbers are typically processed one at a time.
If there is an error decoding the tag or the item it is on, the error code will be set and the tag number CBOR_TAG_INVALID64 will be returned. That is, CBOR_TAG_INVALID64 will be returned if there is a decode error or there is no tag number.
|
extern |
A table of tag handlers that provides QCBOR v1 compatibility
Install this with QCBORDecode_InstallTagDecoders().