Unverified Commit 814e7acb by Patrick Steinhardt Committed by GitHub

Merge pull request #4842 from nelhage/fuzz-config-memory

config: Port config_file_fuzzer to the new in-memory backend.
parents 838a2f29 463c21e2
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
*/ */
#include <git2.h> #include <git2.h>
#include "config_backend.h"
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
...@@ -25,9 +26,6 @@ int foreach_cb(const git_config_entry *entry, void *payload) ...@@ -25,9 +26,6 @@ int foreach_cb(const git_config_entry *entry, void *payload)
return 0; return 0;
} }
static char path[] = "/tmp/git.XXXXXX";
static int fd = -1;
int LLVMFuzzerInitialize(int *argc, char ***argv) int LLVMFuzzerInitialize(int *argc, char ***argv)
{ {
UNUSED(argc); UNUSED(argc);
...@@ -35,10 +33,6 @@ int LLVMFuzzerInitialize(int *argc, char ***argv) ...@@ -35,10 +33,6 @@ int LLVMFuzzerInitialize(int *argc, char ***argv)
if (git_libgit2_init() < 0) if (git_libgit2_init() < 0)
abort(); abort();
fd = mkstemp(path);
if (fd < 0) {
abort();
}
return 0; return 0;
} }
...@@ -46,30 +40,26 @@ int LLVMFuzzerInitialize(int *argc, char ***argv) ...@@ -46,30 +40,26 @@ int LLVMFuzzerInitialize(int *argc, char ***argv)
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{ {
git_config *cfg = NULL; git_config *cfg = NULL;
git_config_backend *backend = NULL;
int err = 0; int err = 0;
size_t total = 0;
if (ftruncate(fd, 0) !=0 ) { if ((err = git_config_new(&cfg)) != 0) {
abort(); goto out;
}
if (lseek(fd, 0, SEEK_SET) != 0) {
abort();
} }
while (total < size) { if ((err = git_config_backend_from_string(&backend, (const char*)data, size)) != 0) {
ssize_t written = write(fd, data, size); goto out;
if (written < 0 && errno != EINTR)
abort();
if (written < 0)
continue;
total += written;
} }
if ((err = git_config_add_backend(cfg, backend, 0, NULL, 0)) != 0) {
err = git_config_open_ondisk(&cfg, path); goto out;
if (err == 0) {
git_config_foreach(cfg, foreach_cb, NULL);
git_config_free(cfg);
} }
/* Now owned by the config */
backend = NULL;
git_config_foreach(cfg, foreach_cb, NULL);
out:
git_config_backend_free(backend);
git_config_free(cfg);
return 0; return 0;
} }
...@@ -30,8 +30,9 @@ extern int git_config_backend_from_file(git_config_backend **out, const char *pa ...@@ -30,8 +30,9 @@ extern int git_config_backend_from_file(git_config_backend **out, const char *pa
* *
* @param out the new backend * @param out the new backend
* @param cfg the configuration that is to be parsed * @param cfg the configuration that is to be parsed
* @param len the length of the string pointed to by `cfg`
*/ */
extern int git_config_backend_from_string(git_config_backend **out, const char *cfg); extern int git_config_backend_from_string(git_config_backend **out, const char *cfg, size_t len);
GIT_INLINE(int) git_config_backend_open(git_config_backend *cfg, unsigned int level, const git_repository *repo) GIT_INLINE(int) git_config_backend_open(git_config_backend *cfg, unsigned int level, const git_repository *repo)
{ {
......
...@@ -186,7 +186,7 @@ static void config_memory_free(git_config_backend *_backend) ...@@ -186,7 +186,7 @@ static void config_memory_free(git_config_backend *_backend)
git__free(backend); git__free(backend);
} }
int git_config_backend_from_string(git_config_backend **out, const char *cfg) int git_config_backend_from_string(git_config_backend **out, const char *cfg, size_t len)
{ {
config_memory_backend *backend; config_memory_backend *backend;
...@@ -198,7 +198,7 @@ int git_config_backend_from_string(git_config_backend **out, const char *cfg) ...@@ -198,7 +198,7 @@ int git_config_backend_from_string(git_config_backend **out, const char *cfg)
return -1; return -1;
} }
if (git_buf_sets(&backend->cfg, cfg) < 0) { if (git_buf_set(&backend->cfg, cfg, len) < 0) {
git_config_entries_free(backend->entries); git_config_entries_free(backend->entries);
git__free(backend); git__free(backend);
return -1; return -1;
......
...@@ -61,7 +61,7 @@ static void assert_config_contains_all(git_config_backend *backend, ...@@ -61,7 +61,7 @@ static void assert_config_contains_all(git_config_backend *backend,
static void setup_backend(const char *cfg) static void setup_backend(const char *cfg)
{ {
cl_git_pass(git_config_backend_from_string(&backend, cfg)); cl_git_pass(git_config_backend_from_string(&backend, cfg, strlen(cfg)));
cl_git_pass(git_config_backend_open(backend, 0, NULL)); cl_git_pass(git_config_backend_open(backend, 0, NULL));
} }
...@@ -85,9 +85,10 @@ void test_config_memory__simple(void) ...@@ -85,9 +85,10 @@ void test_config_memory__simple(void)
void test_config_memory__malformed_fails_to_open(void) void test_config_memory__malformed_fails_to_open(void)
{ {
cl_git_pass(git_config_backend_from_string(&backend, const char *cfg =
"[general\n" "[general\n"
"foo=bar\n")); "foo=bar\n";
cl_git_pass(git_config_backend_from_string(&backend, cfg, strlen(cfg)));
cl_git_fail(git_config_backend_open(backend, 0, NULL)); cl_git_fail(git_config_backend_open(backend, 0, NULL));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment