Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve fuzz-conv fuzzer #204

Merged
merged 1 commit into from
Feb 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 18 additions & 49 deletions fuzz/fuzz-conv.c
Original file line number Diff line number Diff line change
@@ -1,21 +1,9 @@
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <gc.h>
#include "wc.h"
#include "wtf.h"

char *get_null_terminated(const uint8_t *data, size_t size) {
char *new_str = (char *)malloc(size+1);
if (new_str == NULL){
exit(1);
}
memcpy(new_str, data, size);
new_str[size] = '\0';
return new_str;
}

static void *die_oom(size_t bytes) {
fprintf(stderr, "Out of memory: %lu bytes unavailable!\n", (unsigned long)bytes);
exit(1);
Expand All @@ -42,46 +30,27 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size){
init_done = 1;
}

if (size < 30) {
return 0;
}

GC_disable();

char *new_str1 = get_null_terminated(data, 20);
data += 20; size -= 20;
char *new_str2 = get_null_terminated(data, size);
/* Assume the data format is:
* <str1> \0 <str2> \0 <str3>
*/
const uint8_t *str1, *str2, *str3;
const uint8_t *p;
str1 = data;
p = memchr(str1, '\0', size);
if (p == NULL) return 0;
str2 = p + 1;
if (str2 >= data + size) return 0;
p = memchr(str2, '\0', data + size - str2);
if (p == NULL) return 0;
str3 = p + 1;

wc_ces old, from, to;
from = wc_guess_charset_short(new_str1,0);
to = wc_guess_charset_short(new_str2, 0);

char filename[256];
sprintf(filename, "/tmp/libfuzzer.%d", getpid());

FILE *fp = fopen(filename, "wb");
if (fp) {
fwrite(data, size, 1, fp);
fclose(fp);
}

FILE *f = fopen(filename, "r");
if (f) {
Str s = Strfgetall(f);
wc_Str_conv_with_detect(s, &from, from, to);
if (s != NULL) {
Strfree(s);
}
fclose(f);
}

unlink(filename);

free(new_str1);
free(new_str2);
from = wc_guess_charset_short((char*)str1, 0);
to = wc_guess_charset_short((char*)str2, 0);

GC_enable();
GC_gcollect();
Str s = Strnew_charp_n((char*)str3, data + size - str3);
wc_Str_conv_with_detect(s, &from, from, to);
Strfree(s);

return 0;
}