06fc4cadbe
When attempting to decode a base64 string, while there is a way to calculate the maximum possible decode length, there isn't a way to calculate the exact decode length without duplicating some base64 specific logic located in spdk_base64_decode. With this change, the spdk_base64_decode function can now optionally calculate the exact decode length without actually performing the decode by passing NULL in as the dst argument. Change-Id: Ice83db979f86a6fe9f39d236d3083102ca37ec68 Signed-off-by: Mike Carlin <mikefcarlin@protonmail.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/479479 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Xiaodong Liu <xiaodong.liu@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
145 lines
5.3 KiB
C
145 lines
5.3 KiB
C
/*-
|
|
* BSD LICENSE
|
|
*
|
|
* Copyright (c) Intel Corporation.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* * Neither the name of Intel Corporation nor the names of its
|
|
* contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/**
|
|
* \file
|
|
* Base64 utility functions
|
|
*/
|
|
|
|
#ifndef SPDK_BASE64_H
|
|
#define SPDK_BASE64_H
|
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Following the Base64 part in RFC4648:
|
|
* https://tools.ietf.org/html/rfc4648.html
|
|
*/
|
|
|
|
/**
|
|
* Calculate strlen of encoded Base64 string based on raw buffer length.
|
|
*
|
|
* \param raw_len Length of raw buffer.
|
|
* \return Encoded Base64 string length, excluding the terminating null byte ('\0').
|
|
*/
|
|
static inline size_t spdk_base64_get_encoded_strlen(size_t raw_len)
|
|
{
|
|
return (raw_len + 2) / 3 * 4;
|
|
}
|
|
|
|
/**
|
|
* Calculate length of raw buffer based on strlen of encoded Base64.
|
|
*
|
|
* This length will be the max possible decoded len. The exact decoded length could be
|
|
* shorter depending on if there was padding in the Base64 string.
|
|
*
|
|
* \param encoded_strlen Length of encoded Base64 string, excluding terminating null
|
|
* byte ('\0').
|
|
* \return Length of raw buffer.
|
|
*/
|
|
static inline size_t spdk_base64_get_decoded_len(size_t encoded_strlen)
|
|
{
|
|
/* text_strlen and raw_len should be (4n,3n), (4n+2, 3n+1) or (4n+3, 3n+2) */
|
|
return encoded_strlen / 4 * 3 + ((encoded_strlen % 4 + 1) / 2);
|
|
}
|
|
|
|
/**
|
|
* Base 64 Encoding with Standard Base64 Alphabet defined in RFC4684.
|
|
*
|
|
* \param dst Buffer address of encoded Base64 string. Its length should be enough
|
|
* to contain Base64 string and the terminating null byte ('\0'), so it needs to be at
|
|
* least as long as 1 + spdk_base64_get_encoded_strlen(src_len).
|
|
* \param src Raw data buffer to be encoded.
|
|
* \param src_len Length of raw data buffer.
|
|
*
|
|
* \return 0 on success.
|
|
* \return -EINVAL if dst or src is NULL, or binary_len <= 0.
|
|
*/
|
|
int spdk_base64_encode(char *dst, const void *src, size_t src_len);
|
|
|
|
/**
|
|
* Base 64 Encoding with URL and Filename Safe Alphabet.
|
|
*
|
|
* \param dst Buffer address of encoded Base64 string. Its length should be enough
|
|
* to contain Base64 string and the terminating null byte ('\0'), so it needs to be at
|
|
* least as long as 1 + spdk_base64_get_encoded_strlen(src_len).
|
|
* \param src Raw data buffer to be encoded.
|
|
* \param src_len Length of raw data buffer.
|
|
*
|
|
* \return 0 on success.
|
|
* \return -EINVAL if dst or src is NULL, or binary_len <= 0.
|
|
*/
|
|
int spdk_base64_urlsafe_encode(char *dst, const void *src, size_t src_len);
|
|
|
|
/**
|
|
* Base 64 Decoding with Standard Base64 Alphabet defined in RFC4684.
|
|
*
|
|
* \param dst Buffer address of decoded raw data. Its length should be enough
|
|
* to contain decoded raw data, so it needs to be at least as long as
|
|
* spdk_base64_get_decoded_len(encoded_strlen). If NULL, only dst_len will be populated
|
|
* indicating the exact decoded length.
|
|
* \param dst_len Output parameter for the length of actual decoded raw data.
|
|
* If NULL, the actual decoded length won't be returned.
|
|
* \param src Data buffer for base64 string to be decoded.
|
|
*
|
|
* \return 0 on success.
|
|
* \return -EINVAL if src is NULL, or content of src is illegal.
|
|
*/
|
|
int spdk_base64_decode(void *dst, size_t *dst_len, const char *src);
|
|
|
|
/**
|
|
* Base 64 Decoding with URL and Filename Safe Alphabet.
|
|
*
|
|
* \param dst Buffer address of decoded raw data. Its length should be enough
|
|
* to contain decoded raw data, so it needs to be at least as long as
|
|
* spdk_base64_get_decoded_len(encoded_strlen). If NULL, only dst_len will be populated
|
|
* indicating the exact decoded length.
|
|
* \param dst_len Output parameter for the length of actual decoded raw data.
|
|
* If NULL, the actual decoded length won't be returned.
|
|
* \param src Data buffer for base64 string to be decoded.
|
|
*
|
|
* \return 0 on success.
|
|
* \return -EINVAL if src is NULL, or content of src is illegal.
|
|
*/
|
|
int spdk_base64_urlsafe_decode(void *dst, size_t *dst_len, const char *src);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPDK_BASE64_H */
|