Skip to content

Disable opcache for fuzzer-execute #19402

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 9 additions & 1 deletion sapi/fuzzer/fuzzer-execute.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
}

int LLVMFuzzerInitialize(int *argc, char ***argv) {
fuzzer_init_php_for_execute(NULL);
char ini_buf[512];
snprintf(ini_buf, sizeof(ini_buf),
"opcache.enable=0\n");

/* Hint: If opcache is ever enabled, opcache.validate_timestamps=0 needs to
* be set. Otherwise, obtaining the timestamp will fail and the script will
* not be cached. */

fuzzer_init_php_for_execute(ini_buf);
return 0;
}