-
Notifications
You must be signed in to change notification settings - Fork 99
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
Allow tests to read all the variable-size concrete data #310
base: master
Are you sure you want to change the base?
Conversation
@@ -3,8 +3,7 @@ | |||
* | |||
* 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 | |||
* | |||
* You may obtain a copy of the Licen |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you fix this?
@@ -259,6 +259,9 @@ extern const char *DeepState_ConcretizeCStr(const char *begin); | |||
/* Allocate and return a pointer to `num_bytes` symbolic bytes. */ | |||
extern void *DeepState_Malloc(size_t num_bytes); | |||
|
|||
/* Allocate all the concrete inputs and return a pointer to `num_bytes` symbolic bytes. */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe rename to MallocAllConcreteInputBytes
?
void *DeepState_MallocAll(size_t *num_bytes) { | ||
*num_bytes = DeepState_ConcreteInputIndex; | ||
DeepState_ConcreteInputIndex = 0; | ||
return DeepState_Malloc(*num_bytes); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this use GCMalloc
?
@@ -86,6 +85,9 @@ static struct DeepState_TestInfo *DeepState_DrFuzzTest = NULL; | |||
/* Initialize global input buffer and index / initialized index. */ | |||
volatile uint8_t DeepState_Input[DeepState_InputSize] = {}; | |||
uint32_t DeepState_InputIndex = 0; | |||
|
|||
uint32_t DeepState_ConcreteInputIndex = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a comment explaining what this is for.
This PR implements
DeepState_MallocAll
which can be used to read all the concrete data available during fuzzing.