external-helper.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*
  2. Copyright (c) 2017-2019, Feral Interactive
  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 "external-helper.h"
  28. #include "logging.h"
  29. #include <linux/limits.h>
  30. #include <stdio.h>
  31. #include <sys/wait.h>
  32. #include <time.h>
  33. #include <unistd.h>
  34. static const int default_timeout = 5;
  35. /**
  36. * Call an external process
  37. */
  38. int run_external_process(const char *const *exec_args, char buffer[EXTERNAL_BUFFER_MAX], int tsec)
  39. {
  40. pid_t p;
  41. int status = 0;
  42. int pipes[2];
  43. char internal[EXTERNAL_BUFFER_MAX] = { 0 };
  44. if (pipe(pipes) == -1) {
  45. LOG_ERROR("Could not create pipe: %s!\n", strerror(errno));
  46. return -1;
  47. }
  48. /* Set the default timeout */
  49. if (tsec == -1) {
  50. tsec = default_timeout;
  51. }
  52. /* set up our signaling for the child and the timout */
  53. sigset_t mask;
  54. sigset_t omask;
  55. sigemptyset(&mask);
  56. sigaddset(&mask, SIGCHLD);
  57. if (sigprocmask(SIG_BLOCK, &mask, &omask) < 0) {
  58. LOG_ERROR("sigprocmask failed: %s\n", strerror(errno));
  59. return -1;
  60. }
  61. if ((p = fork()) < 0) {
  62. LOG_ERROR("Failed to fork(): %s\n", strerror(errno));
  63. return false;
  64. } else if (p == 0) {
  65. /* Send STDOUT to the pipe */
  66. dup2(pipes[1], STDOUT_FILENO);
  67. close(pipes[0]);
  68. close(pipes[1]);
  69. /* Execute the command */
  70. /* Note about cast:
  71. * The statement about argv[] and envp[] being constants is
  72. * included to make explicit to future writers of language
  73. * bindings that these objects are completely constant.
  74. * http://pubs.opengroup.org/onlinepubs/9699919799/functions/exec.html
  75. */
  76. if (execv(exec_args[0], (char *const *)exec_args) != 0) {
  77. LOG_ERROR("Failed to execute external process: %s %s\n", exec_args[0], strerror(errno));
  78. exit(EXIT_FAILURE);
  79. }
  80. _exit(EXIT_SUCCESS);
  81. }
  82. /* Set up the timout */
  83. struct timespec timeout;
  84. timeout.tv_sec = tsec;
  85. timeout.tv_nsec = 0;
  86. /* Wait for the child to finish up with a timout */
  87. while (true) {
  88. if (sigtimedwait(&mask, NULL, &timeout) < 0) {
  89. if (errno == EINTR) {
  90. continue;
  91. } else if (errno == EAGAIN) {
  92. LOG_ERROR("Child process timed out for %s, killing and returning\n", exec_args[0]);
  93. kill(p, SIGKILL);
  94. } else {
  95. LOG_ERROR("sigtimedwait failed: %s\n", strerror(errno));
  96. return -1;
  97. }
  98. }
  99. break;
  100. }
  101. close(pipes[1]);
  102. ssize_t output_size = read(pipes[0], internal, EXTERNAL_BUFFER_MAX - 1);
  103. if (output_size < 0) {
  104. LOG_ERROR("Failed to read from process %s: %s\n", exec_args[0], strerror(errno));
  105. return -1;
  106. }
  107. internal[output_size] = 0;
  108. if (waitpid(p, &status, 0) < 0) {
  109. LOG_ERROR("Failed to waitpid(%d): %s\n", (int)p, strerror(errno));
  110. return -1;
  111. }
  112. /* i.e. sigsev */
  113. if (!WIFEXITED(status)) {
  114. LOG_ERROR("Child process '%s' exited abnormally\n", exec_args[0]);
  115. } else if (WEXITSTATUS(status) != 0) {
  116. LOG_ERROR("External process failed with exit code %d\n", WEXITSTATUS(status));
  117. LOG_ERROR("Output was: %s\n", buffer ? buffer : internal);
  118. return -1;
  119. }
  120. if (buffer)
  121. memcpy(buffer, internal, EXTERNAL_BUFFER_MAX);
  122. return 0;
  123. }