libblobpack/blob.c

376 lines
9.5 KiB
C
Raw Normal View History

2010-10-13 21:17:51 +02:00
/*
* blob - library for generating/parsing tagged binary data
*
* Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
2010-10-13 21:17:51 +02:00
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2010-10-13 21:17:51 +02:00
*/
#include "blob.h"
2015-12-06 20:54:33 +01:00
static void blob_attr_init(struct blob_attr *attr, int id, unsigned int len){
assert(attr);
2015-12-06 16:24:09 +01:00
memset(attr, 0, sizeof(struct blob_attr));
2010-10-13 21:17:51 +02:00
len &= BLOB_ATTR_LEN_MASK;
len |= (id << BLOB_ATTR_ID_SHIFT) & BLOB_ATTR_ID_MASK;
attr->id_len = cpu_to_be32(len);
}
2015-12-06 20:54:33 +01:00
//! Attepts to reallocate the buffer to fit the new payload data
2015-12-07 16:01:33 +01:00
bool blob_buf_resize(struct blob_buf *buf, int minlen){
2015-12-06 20:54:33 +01:00
char *new = 0;
2015-12-07 16:01:33 +01:00
int newsize = ((minlen / 256) + 1) * 256;
// reallocate the memory of the buffer if we no longer have any memory left
if(newsize > buf->memlen){
new = realloc(buf->buf, newsize);
if (new) {
buf->buf = new;
memset(buf->buf + buf->datalen, 0, newsize - buf->datalen);
buf->datalen = minlen;
buf->memlen = newsize;
} else {
return false;
}
} else {
// otherwise just increase the datalen without reallocating memory
buf->datalen = minlen;
2015-12-06 20:54:33 +01:00
}
2015-12-07 16:01:33 +01:00
return true;
}
void blob_buf_reset(struct blob_buf *buf){
assert(buf);
assert(buf->buf);
if(buf->memlen)
memset(buf->buf, 0, buf->memlen);
buf->cursor = 0;
2010-10-13 21:17:51 +02:00
}
2015-12-06 20:54:33 +01:00
int blob_buf_init(struct blob_buf *buf, const char *data, size_t size){
2015-12-06 16:24:09 +01:00
memset(buf, 0, sizeof(struct blob_buf));
2015-12-06 20:54:33 +01:00
2015-12-07 16:01:33 +01:00
// default buffer is 256 bytes block with zero sized data
buf->memlen = (size > 0)?size:256;
buf->cursor = 0;
2015-12-07 16:01:33 +01:00
buf->buf = malloc(buf->memlen);
2015-12-06 20:54:33 +01:00
if(!buf->buf) return -ENOMEM;
if(data) {
memcpy(buf->buf, data, size);
2015-12-07 16:01:33 +01:00
buf->datalen = size;
2015-12-06 20:54:33 +01:00
} else {
2015-12-07 16:01:33 +01:00
memset(buf->buf, 0, buf->memlen);
blob_buf_reset(buf);
2015-12-06 20:54:33 +01:00
}
return 0;
2015-12-06 16:24:09 +01:00
}
2015-12-06 20:54:33 +01:00
void blob_buf_free(struct blob_buf *buf){
2011-07-29 19:38:30 +02:00
free(buf->buf);
buf->buf = NULL;
2015-12-07 16:01:33 +01:00
buf->memlen = 0;
buf->datalen = 0;
2011-07-29 19:38:30 +02:00
}
2015-12-06 20:54:33 +01:00
void blob_attr_fill_pad(struct blob_attr *attr) {
char *buf = (char *) attr;
2015-12-06 16:24:09 +01:00
int len = blob_attr_pad_len(attr);
int delta = len - blob_attr_raw_len(attr);
if (delta > 0)
memset(buf + len - delta, 0, delta);
}
void
2015-12-06 16:24:09 +01:00
blob_attr_set_raw_len(struct blob_attr *attr, unsigned int len)
{
len &= BLOB_ATTR_LEN_MASK;
attr->id_len &= ~cpu_to_be32(BLOB_ATTR_LEN_MASK);
attr->id_len |= cpu_to_be32(len);
}
struct blob_attr *blob_buf_new_attr(struct blob_buf *buf, int id, int payload){
int newsize = buf->cursor + sizeof(struct blob_attr) + payload;
2010-10-13 21:17:51 +02:00
if (newsize > buf->datalen) {
// if buffer needs to grow then we grow it
if (!blob_buf_resize(buf, newsize))
return NULL;
}
struct blob_attr *attr = blob_buf_current(buf);
blob_attr_init(attr, id, payload + sizeof(struct blob_attr));
blob_attr_fill_pad(attr);
buf->cursor = newsize;
2010-10-13 21:17:51 +02:00
return attr;
}
struct blob_attr *
2015-12-06 16:24:09 +01:00
blob_buf_put_raw(struct blob_buf *buf, const void *ptr, unsigned int len)
{
struct blob_attr *attr;
if (len < sizeof(struct blob_attr) || !ptr)
return NULL;
attr = blob_buf_new_attr(buf, 0, len - sizeof(struct blob_attr));
if (!attr)
return NULL;
memcpy(attr->data, ptr, len);
return attr;
}
2010-10-13 21:17:51 +02:00
struct blob_attr *
2015-12-06 16:24:09 +01:00
blob_buf_put(struct blob_buf *buf, int id, const void *ptr, unsigned int len)
2010-10-13 21:17:51 +02:00
{
struct blob_attr *attr;
2015-12-06 16:24:09 +01:00
attr = blob_buf_new_attr(buf, id, len);
2015-12-07 16:01:33 +01:00
if (!attr) {
2010-10-13 21:17:51 +02:00
return NULL;
2015-12-07 16:01:33 +01:00
}
2010-10-13 21:17:51 +02:00
if (ptr)
2015-12-06 16:24:09 +01:00
memcpy(blob_attr_data(attr), ptr, len);
2015-12-07 16:01:33 +01:00
2010-10-13 21:17:51 +02:00
return attr;
}
void *blob_buf_nest_start(struct blob_buf *buf, int id){
struct blob_attr *attr = blob_buf_new_attr(buf, id, 0);
unsigned long offset = blob_buf_attr_to_offset(buf, attr);
return (void*)offset;
2010-10-13 21:17:51 +02:00
}
#include "blobmsg.h"
void blob_buf_nest_end(struct blob_buf *buf, void *cookie){
struct blob_attr *attr = blob_buf_offset_to_attr(buf, (unsigned long) cookie);
int len = (char*)blob_buf_current(buf) + blob_attr_raw_len(blob_buf_current(buf)) - (char*)attr;
blob_attr_set_raw_len(attr, len);
2010-10-13 21:17:51 +02:00
}
static const int blob_type_minlen[BLOB_ATTR_LAST] = {
[BLOB_ATTR_STRING] = 1,
[BLOB_ATTR_INT8] = sizeof(uint8_t),
[BLOB_ATTR_INT16] = sizeof(uint16_t),
[BLOB_ATTR_INT32] = sizeof(uint32_t),
[BLOB_ATTR_INT64] = sizeof(uint64_t),
};
bool
2015-12-06 16:24:09 +01:00
blob_attr_check_type(const void *ptr, unsigned int len, int type)
{
2011-01-31 03:48:02 +01:00
const char *data = ptr;
if (type >= BLOB_ATTR_LAST)
return false;
if (type >= BLOB_ATTR_INT8 && type <= BLOB_ATTR_INT64) {
if (len != blob_type_minlen[type])
return false;
} else {
if (len < blob_type_minlen[type])
return false;
}
if (type == BLOB_ATTR_STRING && data[len - 1] != 0)
return false;
return true;
}
2010-10-13 21:17:51 +02:00
int
2015-12-06 16:24:09 +01:00
blob_attr_parse(struct blob_attr *attr, struct blob_attr **data, const struct blob_attr_info *info, int max)
2010-10-13 21:17:51 +02:00
{
struct blob_attr *pos;
int found = 0;
2015-12-11 15:16:36 +01:00
//int rem;
2010-10-13 21:17:51 +02:00
memset(data, 0, sizeof(struct blob_attr *) * max);
2015-12-11 15:16:36 +01:00
//blob_buf_for_each_attr(pos, attr, rem) {
for(pos = blob_attr_data(attr); pos; pos = blob_attr_next(attr, pos)){
2015-12-06 16:24:09 +01:00
int id = blob_attr_id(pos);
int len = blob_attr_len(pos);
2010-10-13 21:17:51 +02:00
if (id >= max)
continue;
if (info) {
int type = info[id].type;
2010-10-13 21:17:51 +02:00
if (type < BLOB_ATTR_LAST) {
2015-12-06 16:24:09 +01:00
if (!blob_attr_check_type(blob_attr_data(pos), len, type))
continue;
2010-10-13 21:17:51 +02:00
}
if (info[id].minlen && len < info[id].minlen)
continue;
if (info[id].maxlen && len > info[id].maxlen)
continue;
if (info[id].validate && !info[id].validate(&info[id], pos))
2010-10-13 21:17:51 +02:00
continue;
}
if (!data[id])
found++;
data[id] = pos;
}
return found;
}
bool
blob_attr_equal(const struct blob_attr *a1, const struct blob_attr *a2)
{
if (!a1 && !a2)
return true;
if (!a1 || !a2)
return false;
2015-12-06 16:24:09 +01:00
if (blob_attr_pad_len(a1) != blob_attr_pad_len(a2))
return false;
2015-12-06 16:24:09 +01:00
return !memcmp(a1, a2, blob_attr_pad_len(a1));
}
2012-06-01 20:54:05 +02:00
struct blob_attr *
blob_memdup(struct blob_attr *attr)
{
struct blob_attr *ret;
2015-12-06 16:24:09 +01:00
int size = blob_attr_pad_len(attr);
2012-06-01 20:54:05 +02:00
ret = malloc(size);
if (!ret)
return NULL;
memcpy(ret, attr, size);
return ret;
}
#define pack754_32(f) (pack754((f), 32, 8))
#define pack754_64(f) (pack754((f), 64, 11))
#define unpack754_32(i) (unpack754((i), 32, 8))
#define unpack754_64(i) (unpack754((i), 64, 11))
uint64_t pack754(long double f, unsigned bits, unsigned expbits){
long double fnorm;
int shift;
long long sign, exp, significand;
unsigned significandbits = bits - expbits - 1; // -1 for sign bit
if (f == 0.0) return 0; // get this special case out of the way
// check sign and begin normalization
if (f < 0) { sign = 1; fnorm = -f; }
else { sign = 0; fnorm = f; }
// get the normalized form of f and track the exponent
shift = 0;
while(fnorm >= 2.0) { fnorm /= 2.0; shift++; }
while(fnorm < 1.0) { fnorm *= 2.0; shift--; }
fnorm = fnorm - 1.0;
// calculate the binary form (non-float) of the significand data
significand = fnorm * ((1LL<<significandbits) + 0.5f);
// get the biased exponent
exp = shift + ((1<<(expbits-1)) - 1); // shift + bias
// return the final answer
return (sign<<(bits-1)) | (exp<<(bits-expbits-1)) | significand;
}
long double unpack754(uint64_t i, unsigned bits, unsigned expbits){
long double result;
long long shift;
unsigned bias;
unsigned significandbits = bits - expbits - 1; // -1 for sign bit
if (i == 0) return 0.0;
// pull the significand
result = (i&((1LL<<significandbits)-1)); // mask
result /= (1LL<<significandbits); // convert back to float
result += 1.0f; // add the one back on
// deal with the exponent
bias = (1<<(expbits-1)) - 1;
shift = ((i>>significandbits)&((1LL<<expbits)-1)) - bias;
while(shift > 0) { result *= 2.0; shift--; }
while(shift < 0) { result /= 2.0; shift++; }
// sign it
result *= (i>>(bits-1))&1? -1.0: 1.0;
return result;
}
float blob_attr_get_float(const struct blob_attr *attr){
if(!attr) return 0;
return unpack754_32(blob_attr_get_u32(attr));
}
double blob_attr_get_double(const struct blob_attr *attr){
if(!attr) return 0;
return unpack754_64(blob_attr_get_u64(attr));
}
struct blob_attr *blob_buf_put_float(struct blob_buf *buf, int id, float value){
return blob_buf_put_u32(buf, id, pack754_32(value));
}
struct blob_attr *blob_buf_put_double(struct blob_buf *buf, int id, double value){
return blob_buf_put_u64(buf, id, pack754_64(value));
}
static void _blob_attr_dump(struct blob_buf *self, struct blob_attr *owner, struct blob_attr *attr){
if(blob_attr_id(attr) == BLOB_ATTR_NESTED){
printf(">>\n");
_blob_attr_dump(self, attr, blob_attr_data(attr));
printf("<<\n");
return;
}
char *data = (char*)attr;
int id = blob_attr_id(attr);
int len = blob_attr_pad_len(attr);
printf("blobfield: id=%d offset=%d\n", id, (int)((char*)attr - (char*)owner));
printf("\tlength: %d\n", len);
printf("\tpadlen: %d\n", blob_attr_pad_len(attr));
for(int c = 0; c < blob_attr_len(attr); c++){
if(c > 0 && c % 10 == 0)
printf("\n");
printf(" %02x", data[c] & 0xff);
}
printf("\n");
}
void blob_buf_dump(struct blob_buf *self){
if(!self) return;
printf("=========== blob ===========\n");
_blob_attr_dump(self, NULL, blob_buf_first(self));
printf("============================\n");
}