common-external.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. Copyright (c) 2017-2025, Feral Interactive and the GameMode contributors
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are met:
  6. * Redistributions of source code must retain the above copyright notice,
  7. this list of conditions and the following disclaimer.
  8. * Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. * Neither the name of Feral Interactive nor the names of its contributors
  12. may be used to endorse or promote products derived from this software
  13. without specific prior written permission.
  14. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  15. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  18. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  19. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  20. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  21. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  22. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  23. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  24. POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #define _GNU_SOURCE
  27. #include "common-external.h"
  28. #include "common-logging.h"
  29. #include <sys/wait.h>
  30. #include <unistd.h>
  31. static const int DEFAULT_TIMEOUT = 5;
  32. static int read_child_stdout(int pipe_fd, char buffer[EXTERNAL_BUFFER_MAX], int tsec)
  33. {
  34. fd_set fds;
  35. struct timeval timeout;
  36. int num_readable = 0;
  37. ssize_t buffer_bytes_read = 0;
  38. ssize_t just_read = 0;
  39. bool buffer_full = false;
  40. char discard_buffer[EXTERNAL_BUFFER_MAX];
  41. /* Set up the timout */
  42. timeout.tv_sec = tsec;
  43. timeout.tv_usec = 0;
  44. FD_ZERO(&fds);
  45. /* Wait for the child to finish up with a timout */
  46. while (true) {
  47. FD_SET(pipe_fd, &fds);
  48. num_readable = select(pipe_fd + 1, &fds, NULL, NULL, &timeout);
  49. if (num_readable < 0) {
  50. if (errno == EINTR) {
  51. continue;
  52. } else {
  53. LOG_ERROR("sigtimedwait failed: %s\n", strerror(errno));
  54. return -1;
  55. }
  56. } else if (num_readable == 0) {
  57. return -2;
  58. }
  59. if (!buffer_full) {
  60. just_read = read(pipe_fd,
  61. buffer + buffer_bytes_read,
  62. EXTERNAL_BUFFER_MAX - (size_t)buffer_bytes_read - 1);
  63. } else {
  64. just_read = read(pipe_fd, discard_buffer, EXTERNAL_BUFFER_MAX - 1);
  65. }
  66. if (just_read < 0) {
  67. return -1;
  68. } else if (just_read == 0) {
  69. // EOF encountered
  70. break;
  71. }
  72. if (!buffer_full) {
  73. buffer_bytes_read += just_read;
  74. if (buffer_bytes_read == EXTERNAL_BUFFER_MAX - 1) {
  75. // our buffer is exhausted, discard the rest
  76. // of the output
  77. buffer_full = true;
  78. }
  79. }
  80. }
  81. buffer[buffer_bytes_read] = 0;
  82. return 0;
  83. }
  84. /**
  85. * Call an external process
  86. */
  87. int run_external_process(const char *const *exec_args, char buffer[EXTERNAL_BUFFER_MAX], int tsec)
  88. {
  89. pid_t p;
  90. int status = 0;
  91. int pipes[2];
  92. int ret = 0;
  93. char internal[EXTERNAL_BUFFER_MAX] = { 0 };
  94. if (pipe(pipes) == -1) {
  95. LOG_ERROR("Could not create pipe: %s!\n", strerror(errno));
  96. return -1;
  97. }
  98. /* Set the default timeout */
  99. if (tsec == -1) {
  100. tsec = DEFAULT_TIMEOUT;
  101. }
  102. if ((p = fork()) < 0) {
  103. close(pipes[0]);
  104. close(pipes[1]);
  105. LOG_ERROR("Failed to fork(): %s\n", strerror(errno));
  106. return false;
  107. } else if (p == 0) {
  108. /* Send STDOUT to the pipe */
  109. dup2(pipes[1], STDOUT_FILENO);
  110. close(pipes[0]);
  111. close(pipes[1]);
  112. /* Execute the command */
  113. /* Note about cast:
  114. * The statement about argv[] and envp[] being constants is
  115. * included to make explicit to future writers of language
  116. * bindings that these objects are completely constant.
  117. * http://pubs.opengroup.org/onlinepubs/9699919799/functions/exec.html
  118. */
  119. if (execvp(exec_args[0], (char *const *)exec_args) != 0) {
  120. LOG_ERROR("Failed to execute external process: %s %s\n", exec_args[0], strerror(errno));
  121. exit(EXIT_FAILURE);
  122. }
  123. // should never be reached
  124. abort();
  125. }
  126. // close the write end of the pipe so we get signaled EOF once the
  127. // child exits
  128. close(pipes[1]);
  129. ret = read_child_stdout(pipes[0], internal, tsec);
  130. close(pipes[0]);
  131. if (ret != 0) {
  132. if (ret == -2) {
  133. LOG_ERROR("Child process timed out for %s, killing and returning\n", exec_args[0]);
  134. kill(p, SIGKILL);
  135. } else {
  136. LOG_ERROR("Failed to read from process %s: %s\n", exec_args[0], strerror(errno));
  137. }
  138. if (buffer) {
  139. // make sure the buffer is a terminated empty string on error
  140. buffer[0] = 0;
  141. }
  142. } else if (buffer) {
  143. memcpy(buffer, internal, EXTERNAL_BUFFER_MAX);
  144. }
  145. if (waitpid(p, &status, 0) < 0) {
  146. LOG_ERROR("Failed to waitpid(%d): %s\n", (int)p, strerror(errno));
  147. return -1;
  148. }
  149. /* i.e. sigsev */
  150. if (!WIFEXITED(status)) {
  151. LOG_ERROR("Child process '%s' exited abnormally\n", exec_args[0]);
  152. } else if (WEXITSTATUS(status) != 0) {
  153. LOG_ERROR("External process failed with exit code %d\n", WEXITSTATUS(status));
  154. LOG_ERROR("Output was: %s\n", internal);
  155. return -1;
  156. }
  157. return 0;
  158. }