X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=blob.c;h=4817fd4dc218758d7f75d7d0168f67e0978d3943;hp=823eb2446903d8f499fce8a5c653e55f976dda34;hb=51711be6251be4ae5e53f9369ae04598b06df0e7;hpb=e82d74f89809c6c01f71168b3b8fdcf490e93fa7 diff --git a/blob.c b/blob.c index 823eb24..4817fd4 100644 --- a/blob.c +++ b/blob.c @@ -18,8 +18,11 @@ static bool blob_buffer_grow(struct blob_buf *buf, int minlen) { - buf->buflen += ((minlen / 256) + 1) * 256; + int delta = ((minlen / 256) + 1) * 256; + buf->buflen += delta; buf->buf = realloc(buf->buf, buf->buflen); + if (buf->buf) + memset(buf->buf + buf->buflen - delta, 0, delta); return !!buf->buf; } @@ -64,6 +67,7 @@ blob_add(struct blob_buf *buf, struct blob_attr *pos, int id, int payload) } blob_init(attr, id, payload + sizeof(struct blob_attr)); + blob_fill_pad(attr); return attr; } @@ -80,6 +84,34 @@ blob_buf_init(struct blob_buf *buf, int id) return 0; } +void +blob_buf_free(struct blob_buf *buf) +{ + free(buf->buf); + buf->buf = NULL; + buf->buflen = 0; +} + +void +blob_fill_pad(struct blob_attr *attr) +{ + char *buf = (char *) attr; + int len = blob_pad_len(attr); + int delta = len - blob_raw_len(attr); + + if (delta > 0) + memset(buf + len - delta, 0, delta); +} + +void +blob_set_raw_len(struct blob_attr *attr, unsigned int len) +{ + int id = blob_id(attr); + len &= BLOB_ATTR_LEN_MASK; + len |= (id << BLOB_ATTR_ID_SHIFT) & BLOB_ATTR_ID_MASK; + attr->id_len = cpu_to_be32(len); +} + struct blob_attr * blob_new(struct blob_buf *buf, int id, int payload) { @@ -131,8 +163,30 @@ static const int blob_type_minlen[BLOB_ATTR_LAST] = { [BLOB_ATTR_INT64] = sizeof(uint64_t), }; +bool +blob_check_type(const void *ptr, int len, int type) +{ + 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; +} + int -blob_parse(struct blob_attr *attr, struct blob_attr **data, struct blob_attr_info *info, int max) +blob_parse(struct blob_attr *attr, struct blob_attr **data, const struct blob_attr_info *info, int max) { struct blob_attr *pos; int found = 0; @@ -148,14 +202,10 @@ blob_parse(struct blob_attr *attr, struct blob_attr **data, struct blob_attr_inf if (info) { int type = info[id].type; + if (type < BLOB_ATTR_LAST) { - if (type >= BLOB_ATTR_INT8 && type <= BLOB_ATTR_INT64) { - if (len != blob_type_minlen[type]) - continue; - } else { - if (len < blob_type_minlen[type]) - continue; - } + if (!blob_check_type(blob_data(pos), len, type)) + continue; } if (info[id].minlen && len < info[id].minlen) @@ -175,3 +225,18 @@ blob_parse(struct blob_attr *attr, struct blob_attr **data, struct blob_attr_inf } 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; + + if (blob_pad_len(a1) != blob_pad_len(a2)) + return false; + + return !memcmp(a1, a2, blob_pad_len(a1)); +}