mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-12 01:58:17 +00:00
Formatted changed/added files
This commit is contained in:
@ -98,60 +98,74 @@ void afl_custom_queue_new_entry(my_mutator_t * data,
|
|||||||
const uint8_t *filename_new_queue,
|
const uint8_t *filename_new_queue,
|
||||||
const uint8_t *filename_orig_queue) {
|
const uint8_t *filename_orig_queue) {
|
||||||
|
|
||||||
int pipefd[2];
|
int pipefd[2];
|
||||||
struct stat st;
|
struct stat st;
|
||||||
ACTF("Queueing to symcc: %s", filename_new_queue);
|
ACTF("Queueing to symcc: %s", filename_new_queue);
|
||||||
u8 *fn = alloc_printf("%s", filename_new_queue);
|
u8 *fn = alloc_printf("%s", filename_new_queue);
|
||||||
if (!(stat(fn, &st) == 0 && S_ISREG(st.st_mode) && st.st_size)) {
|
if (!(stat(fn, &st) == 0 && S_ISREG(st.st_mode) && st.st_size)) {
|
||||||
PFATAL("Couldn't find enqueued file: %s",fn);
|
|
||||||
|
PFATAL("Couldn't find enqueued file: %s", fn);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (afl_struct->fsrv.use_stdin){
|
if (afl_struct->fsrv.use_stdin) {
|
||||||
if (pipe(pipefd)==-1)
|
|
||||||
{
|
if (pipe(pipefd) == -1) { exit(-1); }
|
||||||
exit(-1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int pid = fork();
|
int pid = fork();
|
||||||
|
|
||||||
if (pid == -1) return;
|
if (pid == -1) return;
|
||||||
|
|
||||||
if (pid){
|
|
||||||
|
|
||||||
if (afl_struct->fsrv.use_stdin){
|
if (pid) {
|
||||||
|
|
||||||
|
if (afl_struct->fsrv.use_stdin) {
|
||||||
|
|
||||||
close(pipefd[0]);
|
close(pipefd[0]);
|
||||||
int fd = open(fn, O_RDONLY);
|
int fd = open(fn, O_RDONLY);
|
||||||
|
|
||||||
if (fd >= 0) {
|
if (fd >= 0) {
|
||||||
|
|
||||||
ssize_t r = read(fd, data->mutator_buf, MAX_FILE);
|
ssize_t r = read(fd, data->mutator_buf, MAX_FILE);
|
||||||
DBG("fn=%s, fd=%d, size=%ld\n", fn, fd, r);
|
DBG("fn=%s, fd=%d, size=%ld\n", fn, fd, r);
|
||||||
if (r <= 0) return;
|
if (r <= 0) return;
|
||||||
close(fd);
|
close(fd);
|
||||||
if (r>fcntl(pipefd[1],F_GETPIPE_SZ)) fcntl(pipefd[1],F_SETPIPE_SZ,MAX_FILE);
|
if (r > fcntl(pipefd[1], F_GETPIPE_SZ))
|
||||||
|
fcntl(pipefd[1], F_SETPIPE_SZ, MAX_FILE);
|
||||||
ck_write(pipefd[1], data->mutator_buf, r, filename_new_queue);
|
ck_write(pipefd[1], data->mutator_buf, r, filename_new_queue);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
PFATAL("Something happened to the enqueued file before sending its contents to symcc binary");
|
|
||||||
|
PFATAL(
|
||||||
|
"Something happened to the enqueued file before sending its "
|
||||||
|
"contents to symcc binary");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
close(pipefd[1]);
|
close(pipefd[1]);
|
||||||
ck_free(fn);
|
ck_free(fn);
|
||||||
|
|
||||||
}
|
}
|
||||||
pid = waitpid(pid,NULL, 0);
|
|
||||||
|
pid = waitpid(pid, NULL, 0);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pid == 0) {
|
if (pid == 0) {
|
||||||
if (afl_struct->fsrv.use_stdin) {
|
|
||||||
unsetenv("SYMCC_INPUT_FILE");
|
if (afl_struct->fsrv.use_stdin) {
|
||||||
close(pipefd[1]);
|
|
||||||
dup2(pipefd[0],0);
|
unsetenv("SYMCC_INPUT_FILE");
|
||||||
}
|
close(pipefd[1]);
|
||||||
else
|
dup2(pipefd[0], 0);
|
||||||
{
|
|
||||||
|
} else {
|
||||||
|
|
||||||
setenv("SYMCC_INPUT_FILE", afl_struct->fsrv.out_file, 1);
|
setenv("SYMCC_INPUT_FILE", afl_struct->fsrv.out_file, 1);
|
||||||
}
|
|
||||||
|
}
|
||||||
|
|
||||||
DBG("exec=%s\n", data->target);
|
DBG("exec=%s\n", data->target);
|
||||||
close(1);
|
close(1);
|
||||||
close(2);
|
close(2);
|
||||||
@ -208,8 +222,8 @@ size_t afl_custom_fuzz(my_mutator_t *data, uint8_t *buf, size_t buf_size,
|
|||||||
|
|
||||||
struct dirent **nl;
|
struct dirent **nl;
|
||||||
int32_t i, done = 0, items = scandir(data->out_dir, &nl, NULL, NULL);
|
int32_t i, done = 0, items = scandir(data->out_dir, &nl, NULL, NULL);
|
||||||
ssize_t size = 0;
|
ssize_t size = 0;
|
||||||
|
|
||||||
if (items <= 0) return 0;
|
if (items <= 0) return 0;
|
||||||
|
|
||||||
for (i = 0; i < (u32)items; ++i) {
|
for (i = 0; i < (u32)items; ++i) {
|
||||||
@ -224,6 +238,7 @@ size_t afl_custom_fuzz(my_mutator_t *data, uint8_t *buf, size_t buf_size,
|
|||||||
int fd = open(fn, O_RDONLY);
|
int fd = open(fn, O_RDONLY);
|
||||||
|
|
||||||
if (fd >= 0) {
|
if (fd >= 0) {
|
||||||
|
|
||||||
size = read(fd, data->mutator_buf, max_size);
|
size = read(fd, data->mutator_buf, max_size);
|
||||||
*out_buf = data->mutator_buf;
|
*out_buf = data->mutator_buf;
|
||||||
|
|
||||||
|
@ -4,24 +4,33 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
|
||||||
int main(int argc, char** argv){
|
int main(int argc, char **argv) {
|
||||||
if (argc<2){
|
|
||||||
|
if (argc < 2) {
|
||||||
|
|
||||||
printf("Need a file argument\n");
|
printf("Need a file argument\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
}
|
}
|
||||||
int fd=open(argv[1],O_RDONLY);
|
|
||||||
if (fd<0){
|
int fd = open(argv[1], O_RDONLY);
|
||||||
|
if (fd < 0) {
|
||||||
|
|
||||||
printf("Couldn't open file\n");
|
printf("Couldn't open file\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t value = 0;
|
uint32_t value = 0;
|
||||||
|
|
||||||
read(fd,&value,sizeof(value));
|
read(fd, &value, sizeof(value));
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|
||||||
value=value^0xffffffff;
|
value = value ^ 0xffffffff;
|
||||||
if (value== 0x11223344) printf("Value one\n");
|
if (value == 0x11223344) printf("Value one\n");
|
||||||
if (value == 0x44332211) printf("Value two\n");
|
if (value == 0x44332211) printf("Value two\n");
|
||||||
if (value != 0x0) printf("Not zero\n");
|
if (value != 0x0) printf("Not zero\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,20 +3,26 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char **argv) {
|
||||||
{
|
|
||||||
char input_buffer[16];
|
char input_buffer[16];
|
||||||
uint32_t comparisonValue;
|
uint32_t comparisonValue;
|
||||||
size_t bytesRead;
|
size_t bytesRead;
|
||||||
bytesRead=read(STDIN_FILENO,input_buffer, sizeof(input_buffer));
|
bytesRead = read(STDIN_FILENO, input_buffer, sizeof(input_buffer));
|
||||||
if (bytesRead < 0) exit(-1);
|
if (bytesRead < 0) exit(-1);
|
||||||
comparisonValue=*(uint32_t*)input_buffer;
|
comparisonValue = *(uint32_t *)input_buffer;
|
||||||
comparisonValue=comparisonValue^0xff112233;
|
comparisonValue = comparisonValue ^ 0xff112233;
|
||||||
if (comparisonValue==0x66554493){
|
if (comparisonValue == 0x66554493) {
|
||||||
|
|
||||||
printf("First value\n");
|
printf("First value\n");
|
||||||
}
|
|
||||||
else{
|
} else {
|
||||||
if (comparisonValue==0x84444415) printf("Second value\n");
|
|
||||||
}
|
if (comparisonValue == 0x84444415) printf("Second value\n");
|
||||||
return 0;
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user