2021-02-01 03:58:50 +01:00
|
|
|
#include "config.h"
|
2020-09-23 00:22:16 +02:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <tests/fuzz/libfuzz.h>
|
|
|
|
|
|
|
|
#include <ccan/tal/tal.h>
|
|
|
|
#include <common/bigsize.h>
|
|
|
|
|
|
|
|
void init(int *argc, char ***argv)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(const uint8_t *data, size_t size)
|
|
|
|
{
|
|
|
|
uint8_t *wire_buff, buff[BIGSIZE_MAX_LEN];
|
|
|
|
const uint8_t **wire_chunks, *wire_ptr;
|
|
|
|
size_t wire_max;
|
|
|
|
|
|
|
|
wire_chunks = get_chunks(NULL, data, size, 8);
|
|
|
|
for (size_t i = 0; i < tal_count(wire_chunks); i++) {
|
|
|
|
wire_max = tal_count(wire_chunks[i]);
|
|
|
|
wire_ptr = wire_chunks[i];
|
|
|
|
|
|
|
|
bigsize_t bs = fromwire_bigsize(&wire_ptr, &wire_max);
|
|
|
|
if (bs != 0) {
|
|
|
|
/* We have a valid bigsize type, now we should not error. */
|
|
|
|
assert(bigsize_put(buff, bs) > 0);
|
|
|
|
assert(bigsize_len(bs));
|
|
|
|
|
|
|
|
wire_buff = tal_arr(NULL, uint8_t, 8);
|
|
|
|
towire_bigsize(&wire_buff, bs);
|
|
|
|
tal_free(wire_buff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tal_free(wire_chunks);
|
|
|
|
}
|