2020-11-18 23:21:23 +00:00
|
|
|
/* Copyright 2020 Google Inc.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "leveldb/db.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string>
|
|
|
|
#include <string.h>
|
|
|
|
#include <filesystem>
|
|
|
|
|
|
|
|
#include <fuzzer/FuzzedDataProvider.h>
|
|
|
|
|
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
|
|
// We need at least one byte
|
|
|
|
if (size == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
FuzzedDataProvider fuzzed_data(data, size);
|
|
|
|
|
|
|
|
leveldb::DB* db;
|
|
|
|
leveldb::Options options;
|
|
|
|
options.create_if_missing = true;
|
|
|
|
leveldb::Status status = leveldb::DB::Open(options, "/tmp/testdb", &db);
|
|
|
|
|
|
|
|
std::string value;
|
|
|
|
|
|
|
|
// perform a sequence of calls on our db instance
|
|
|
|
int max_iter = (int)data[0];
|
|
|
|
for(int i=0; i < max_iter && i < size; i++) {
|
|
|
|
#define SIZE_OF_FUNCS 8
|
|
|
|
size_t c = fuzzed_data.ConsumeIntegral<uint8_t>() % SIZE_OF_FUNCS;
|
|
|
|
|
|
|
|
if(c == 0) { // PUT
|
|
|
|
std::string tmp1 = fuzzed_data.ConsumeRandomLengthString();
|
|
|
|
std::string tmp2 = fuzzed_data.ConsumeRandomLengthString();
|
|
|
|
db->Put(leveldb::WriteOptions(), tmp1, tmp2);
|
|
|
|
}
|
|
|
|
else if(c == 1) { // Get
|
|
|
|
std::string tmp3 = fuzzed_data.ConsumeRandomLengthString();
|
|
|
|
db->Get(leveldb::ReadOptions(), tmp3, &value);
|
|
|
|
}
|
|
|
|
else if (c == 2) { // Delete
|
|
|
|
std::string tmp4 = fuzzed_data.ConsumeRandomLengthString();
|
|
|
|
db->Delete(leveldb::WriteOptions(), tmp4);
|
|
|
|
}
|
|
|
|
else if (c == 3) { // GetProperty
|
|
|
|
std::string prop;
|
|
|
|
std::string tmp = fuzzed_data.ConsumeRandomLengthString();
|
|
|
|
db->GetProperty(tmp, &prop);
|
|
|
|
}
|
|
|
|
else if(c == 4) { // Iterator
|
|
|
|
leveldb::Iterator* it = db->NewIterator(leveldb::ReadOptions());
|
|
|
|
for (it->SeekToFirst(); it->Valid(); it->Next()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
delete it;
|
|
|
|
}
|
|
|
|
else if(c == 5) { // GetSnapshot and Release Snapshot
|
|
|
|
leveldb::ReadOptions snapshot_options;
|
|
|
|
snapshot_options.snapshot = db->GetSnapshot();
|
|
|
|
leveldb::Iterator* it = db->NewIterator(snapshot_options);
|
|
|
|
db->ReleaseSnapshot(snapshot_options.snapshot);
|
2020-11-25 15:41:34 +00:00
|
|
|
delete it;
|
2020-11-18 23:21:23 +00:00
|
|
|
}
|
|
|
|
else if(c == 6) { // Open and close DB
|
|
|
|
delete db;
|
|
|
|
status = leveldb::DB::Open(options, "/tmp/testdb", &db);
|
|
|
|
}
|
|
|
|
else if (c == 7) {
|
|
|
|
std::string tmp1 = fuzzed_data.ConsumeRandomLengthString();
|
|
|
|
std::string tmp2 = fuzzed_data.ConsumeRandomLengthString();
|
|
|
|
leveldb::Slice s1 =tmp1;
|
|
|
|
leveldb::Slice s2 = tmp2;
|
|
|
|
db->CompactRange(&s1, &s2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cleanup DB
|
|
|
|
delete db;
|
|
|
|
std::__fs::filesystem::remove_all("/tmp/testdb");
|
|
|
|
return 0;
|
|
|
|
}
|