Skip to content

Commit

Permalink
Debug oss-fuzz #2
Browse files Browse the repository at this point in the history
  • Loading branch information
PJK committed Apr 10, 2020
1 parent cb20afc commit 8d9c076
Showing 1 changed file with 44 additions and 42 deletions.
86 changes: 44 additions & 42 deletions oss-fuzz/cbor_load_fuzzer.cc
Original file line number Diff line number Diff line change
@@ -1,61 +1,63 @@
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <map>
#include <unordered_map>

#include "cbor.h"

static size_t allocated_mem = 0;
static std::map<void*, size_t> allocated_len_map;
static std::unordered_map<void*, size_t> allocated_len_map;
static constexpr size_t kMemoryLimit = 1 << 30;

void *limited_malloc(size_t size) {
if (size + allocated_mem > kMemoryLimit) {
return nullptr;
}
if (size == 0) {
return nullptr;
}
void* m = malloc(size);
if (m != nullptr) {
allocated_mem += size;
allocated_len_map[m] = size;
}
return m;
return nullptr;
// if (size + allocated_mem > kMemoryLimit) {
// return nullptr;
// }
// if (size == 0) {
// return nullptr;
// }
// void* m = malloc(size);
// if (m != nullptr) {
// allocated_mem += size;
// allocated_len_map[m] = size;
// }
// return m;
}

void limited_free(void *ptr) {
if (ptr != NULL && allocated_len_map.find(ptr) == allocated_len_map.end()) {
abort();
}
free(ptr);
if (ptr != NULL) {
allocated_mem -= allocated_len_map[ptr];
allocated_len_map.erase(ptr);
}
// if (ptr != NULL && allocated_len_map.find(ptr) == allocated_len_map.end()) {
// abort();
// }
// free(ptr);
// if (ptr != NULL) {
// allocated_mem -= allocated_len_map[ptr];
// allocated_len_map.erase(ptr);
// }
}

void *limited_realloc(void *ptr, size_t size) {
if (ptr != NULL && allocated_len_map.find(ptr) == allocated_len_map.end()) {
abort();
}
if (ptr == NULL) {
return limited_malloc(size);
}
long delta = (long) size - allocated_len_map[ptr];
if (delta + allocated_mem > kMemoryLimit) {
return nullptr;
}
void* new_ptr = realloc(ptr, size);
if (size > 0 && new_ptr == nullptr) {
return nullptr;
}
allocated_mem += delta;
allocated_len_map.erase(ptr);
if (size > 0) {
allocated_len_map[new_ptr] = size;
}
return new_ptr;
return nullptr;
// if (ptr != NULL && allocated_len_map.find(ptr) == allocated_len_map.end()) {
// abort();
// }
// if (ptr == NULL) {
// return limited_malloc(size);
// }
// long delta = (long) size - allocated_len_map[ptr];
// if (delta + allocated_mem > kMemoryLimit) {
// return nullptr;
// }
// void* new_ptr = realloc(ptr, size);
// if (size > 0 && new_ptr == nullptr) {
// return nullptr;
// }
// allocated_mem += delta;
// allocated_len_map.erase(ptr);
// if (size > 0) {
// allocated_len_map[new_ptr] = size;
// }
// return new_ptr;
}

struct State {
Expand Down

0 comments on commit 8d9c076

Please sign in to comment.