-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
[Merge-on-Red] - Implement Test Process Watcher #78742
Merged
Merged
Changes from 16 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
be9867e
Started the draft for the watch tower.
ivdiazsa e79ae66
Parsing command-line arguments done.
ivdiazsa b17eef2
Removed auto-generated file.
ivdiazsa d40ad9e
Added an example I made on how to run processes from C/C++ :)
ivdiazsa 6cc9e9e
Perfect arg parsing done!
ivdiazsa fcd9f1a
Seems to be working?
ivdiazsa 1c7f46c
Watchdog is functional now!
ivdiazsa ec90d1e
Fixed a nuisance with the Windows compiler messing with Linux code, b…
ivdiazsa b157904
Got the Windows draft working, at long last.
ivdiazsa 36a75f0
Added initial linking of the watcher to the repo's build scripts. Not…
ivdiazsa c4f2009
Moved the watcher to the CoreCLR project. Not yet functional though...
ivdiazsa e8b13a5
Got it to build on Windows!
ivdiazsa b476ad2
Builds and Works on Linux!
ivdiazsa f74fb2e
Fixed a slowdown with the watcher.
ivdiazsa 958dc29
Forgot to not leak memory :)
ivdiazsa 67e25fe
This is C++, not C.
ivdiazsa 7ef09b2
Bash scripts now call the watcher, but watcher still crashes when bui…
ivdiazsa 226ea36
Renamed variable.
ivdiazsa 5fbd787
FIXED THE LINUX PART!
ivdiazsa 0ff6b8d
Started implementing the constant flow of logs. Had to save my progress.
ivdiazsa 8f21b9c
TEMP LOG BUILDS!
ivdiazsa c7fc541
TEMP LOGS WORK!
ivdiazsa 4f658e2
Updated with main.
ivdiazsa a88e48c
Test Watcher seems to be working on Linux and MacOS.
ivdiazsa 8fceb44
Updated the Helix Commands with the watcher now included, and removed…
ivdiazsa 064b9b0
Fixed build issue in the watcher's Windows version.
ivdiazsa 2cb9270
Apparently works on Windows now too?
ivdiazsa 450eba9
Fixed build issue with Windows x86.
ivdiazsa eba2bcd
Fixed issue where we were not building the watcher in certain subsets…
ivdiazsa d68d16c
Fixed yet another Windows issue.
ivdiazsa 998965c
Used ExeSuffix instead of recomputing it and excluded Browser-Wasm
ivdiazsa 7cb4e89
Changed the Helix Correlation Payloads to bundle the whole watchdog d…
ivdiazsa 2ba916a
Changed the scripts to use the test watcher in the Core_Root, instead…
ivdiazsa a712352
Fixed undeclared variable in Windows test scripts.
ivdiazsa 0cc8875
Addressed PR feedback comments.
ivdiazsa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
add_executable(watchdog ${CMAKE_CURRENT_LIST_DIR}/watchdog.cpp) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <stdarg.h> | ||
#include <errno.h> | ||
#include <signal.h> | ||
|
||
#ifdef _WIN32 | ||
#include <windows.h> | ||
#include <string> | ||
#else | ||
#include <unistd.h> | ||
#include <sys/wait.h> | ||
#endif | ||
|
||
int run_timed_process(const long, const int, const char *[]); | ||
|
||
int main(const int argc, const char *argv[]) | ||
{ | ||
if (argc < 3) | ||
{ | ||
printf("There are missing arguments. Got %d instead of 3+ :(\n", argc); | ||
return EXIT_FAILURE; | ||
} | ||
|
||
const long timeout_ms = strtol(argv[1], nullptr, 10); | ||
int exit_code = run_timed_process(timeout_ms, argc-2, &argv[2]); | ||
|
||
printf("App Exit Code: %d\n", exit_code); | ||
return exit_code; | ||
} | ||
|
||
int run_timed_process(const long timeout, const int exe_argc, const char *exe_path_and_argv[]) | ||
{ | ||
#ifdef _WIN32 | ||
std::string cmdline(exe_path_and_argv[0]); | ||
|
||
for (int i = 1; i < exe_argc; i++) | ||
{ | ||
cmdline.append(" "); | ||
cmdline.append(exe_path_and_argv[i]); | ||
} | ||
|
||
STARTUPINFOA startup_info; | ||
PROCESS_INFORMATION proc_info; | ||
unsigned long exit_code; | ||
|
||
ZeroMemory(&startup_info, sizeof(startup_info)); | ||
startup_info.cb = sizeof(startup_info); | ||
ZeroMemory(&proc_info, sizeof(proc_info)); | ||
|
||
if (!CreateProcessA(NULL, &cmdline[0], NULL, NULL, FALSE, 0, NULL, NULL, | ||
&startup_info, &proc_info)) | ||
{ | ||
int error_code = GetLastError(); | ||
printf("Process creation failed... Code %d.\n", error_code); | ||
return error_code; | ||
} | ||
|
||
WaitForSingleObject(proc_info.hProcess, timeout); | ||
GetExitCodeProcess(proc_info.hProcess, &exit_code); | ||
|
||
CloseHandle(proc_info.hProcess); | ||
CloseHandle(proc_info.hThread); | ||
return exit_code; | ||
|
||
#else | ||
const int check_interval = 1000; | ||
int check_count = 0; | ||
char **args = new char *[exe_argc]; | ||
|
||
pid_t child_pid; | ||
int child_status; | ||
int wait_code; | ||
|
||
for (int i = 0; i < exe_argc; i++) | ||
{ | ||
args[i] = (char *) exe_path_and_argv[i]; | ||
} | ||
|
||
// This is just for development. Will remove it when it's ready to be submitted :) | ||
for (int j = 0; j < exe_argc; j++) | ||
{ | ||
printf("[%d]: %s\n", j, args[j]); | ||
} | ||
|
||
child_pid = fork(); | ||
|
||
if (child_pid < 0) | ||
{ | ||
printf("Fork failed... No memory available.\n"); | ||
return ENOMEM; | ||
} | ||
else if (child_pid == 0) | ||
{ | ||
printf("Running child process...\n"); | ||
execv(args[0], &args[0]); | ||
} | ||
else | ||
{ | ||
do | ||
{ | ||
wait_code = waitpid(child_pid, &child_status, WNOHANG); | ||
|
||
// Something went terribly wrong. | ||
if (wait_code == -1) | ||
return EINVAL; | ||
|
||
// TODO: Explain why we are multiplying by 25 here, and dividing | ||
// by 40 in the while clause. | ||
usleep(check_interval * 25); | ||
|
||
if (wait_code) | ||
{ | ||
if (WIFEXITED(child_status)) | ||
{ | ||
printf("Child process exited successfully with status %d.\n", | ||
WEXITSTATUS(child_status)); | ||
return WEXITSTATUS(child_status); | ||
} | ||
} | ||
} while (check_count++ < ((timeout / check_interval) * 40)); | ||
} | ||
|
||
printf("Child process took too long and timed out... Exiting it...\n"); | ||
kill(child_pid, SIGKILL); | ||
delete[] args; // Don't leak memory :) | ||
#endif | ||
return ETIMEDOUT; | ||
} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Consider a vector here. You forgot to delete
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.
I forgot the deletion, thanks for pointing it out Andy. The reason we're using a
char*[]
is because that's the type thatexecv()
requires.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.
unique_ptr<char*[]>
then?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.
That might work as well. I'll try it.