tor/src/test/fuzz/fuzz_vrs.c

87 lines
2.3 KiB
C
Raw Normal View History

2018-06-20 14:13:28 +02:00
/* Copyright (c) 2016-2018, The Tor Project, Inc. */
2016-12-31 21:09:11 +01:00
/* See LICENSE for licensing information */
#define ROUTERPARSE_PRIVATE
#define NETWORKSTATUS_PRIVATE
2018-06-20 15:35:05 +02:00
#include "or/or.h"
#include "or/routerparse.h"
#include "common/memarea.h"
#include "or/microdesc.h"
#include "or/networkstatus.h"
2018-06-20 15:35:05 +02:00
#include "or/networkstatus_st.h"
#include "or/vote_routerstatus_st.h"
2018-06-20 15:35:05 +02:00
#include "test/fuzz/fuzzing.h"
2016-12-31 21:09:11 +01:00
static void
mock_dump_desc__nodump(const char *desc, const char *type)
{
(void)desc;
(void)type;
}
static networkstatus_t *dummy_vote = NULL;
static memarea_t *area = NULL;
int
fuzz_init(void)
{
disable_signature_checking();
MOCK(dump_desc, mock_dump_desc__nodump);
ed25519_init();
area = memarea_new();
dummy_vote = tor_malloc_zero(sizeof(*dummy_vote));
dummy_vote->known_flags = smartlist_new();
smartlist_split_string(dummy_vote->known_flags,
"Authority BadExit Exit Fast Guard HSDir "
"NoEdConsensus Running Stable V2Dir Valid",
" ", 0, 0);
return 0;
}
int
fuzz_cleanup(void)
{
2017-02-01 16:57:01 +01:00
SMARTLIST_FOREACH(dummy_vote->known_flags, char *, cp, tor_free(cp));
smartlist_free(dummy_vote->known_flags);
2016-12-31 21:09:11 +01:00
tor_free(dummy_vote);
return 0;
}
int
fuzz_main(const uint8_t *data, size_t sz)
{
2017-01-23 20:52:51 +01:00
char *str = tor_memdup_nulterm(data, sz);
const char *s;
2016-12-31 21:09:11 +01:00
routerstatus_t *rs_ns = NULL, *rs_md = NULL, *rs_vote = NULL;
vote_routerstatus_t *vrs = tor_malloc_zero(sizeof(*vrs));
smartlist_t *tokens = smartlist_new();
s = str;
rs_ns = routerstatus_parse_entry_from_string(area, &s, tokens,
NULL, NULL, 26, FLAV_NS);
tor_assert(smartlist_len(tokens) == 0);
s = str;
rs_md = routerstatus_parse_entry_from_string(area, &s, tokens,
NULL, NULL, 26, FLAV_MICRODESC);
tor_assert(smartlist_len(tokens) == 0);
s = str;
rs_vote = routerstatus_parse_entry_from_string(area, &s, tokens,
dummy_vote, vrs, 26, FLAV_NS);
tor_assert(smartlist_len(tokens) == 0);
log_debug(LD_GENERAL,
"ns=%p, md=%p, vote=%p", rs_ns, rs_md, rs_vote);
routerstatus_free(rs_md);
routerstatus_free(rs_ns);
vote_routerstatus_free(vrs);
memarea_clear(area);
smartlist_free(tokens);
2017-01-09 20:29:15 +01:00
tor_free(str);
2016-12-31 21:09:11 +01:00
return 0;
}