external-helper.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. Copyright (c) 2017-2018, 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. /**
  35. * Call an external process
  36. */
  37. int run_external_process(const char *const *exec_args)
  38. {
  39. pid_t p;
  40. int status = 0;
  41. /* set up our signaling for the child and the timout */
  42. sigset_t mask;
  43. sigset_t omask;
  44. sigemptyset(&mask);
  45. sigaddset(&mask, SIGCHLD);
  46. if (sigprocmask(SIG_BLOCK, &mask, &omask) < 0) {
  47. LOG_ERROR("sigprocmask failed: %s\n", strerror(errno));
  48. return -1;
  49. }
  50. if ((p = fork()) < 0) {
  51. LOG_ERROR("Failed to fork(): %s\n", strerror(errno));
  52. return false;
  53. } else if (p == 0) {
  54. /* Execute the command */
  55. /* Note about cast:
  56. * The statement about argv[] and envp[] being constants is
  57. * included to make explicit to future writers of language
  58. * bindings that these objects are completely constant.
  59. * http://pubs.opengroup.org/onlinepubs/9699919799/functions/exec.html
  60. */
  61. if (execv(exec_args[0], (char *const *)exec_args) != 0) {
  62. LOG_ERROR("Failed to execute external process: %s %s\n", exec_args[0], strerror(errno));
  63. exit(EXIT_FAILURE);
  64. }
  65. _exit(EXIT_SUCCESS);
  66. }
  67. /* Set up the timout */
  68. struct timespec timeout;
  69. timeout.tv_sec = 5; /* Magic timeout value of 5s for now - should be sane for most commands */
  70. timeout.tv_nsec = 0;
  71. /* Wait for the child to finish up with a timout */
  72. while (true) {
  73. if (sigtimedwait(&mask, NULL, &timeout) < 0) {
  74. if (errno == EINTR) {
  75. continue;
  76. } else if (errno == EAGAIN) {
  77. LOG_ERROR("Child process timed out for %s, killing and returning\n", exec_args[0]);
  78. kill(p, SIGKILL);
  79. } else {
  80. LOG_ERROR("sigtimedwait failed: %s\n", strerror(errno));
  81. return -1;
  82. }
  83. }
  84. break;
  85. }
  86. if (waitpid(p, &status, 0) < 0) {
  87. LOG_ERROR("Failed to waitpid(%d): %s\n", (int)p, strerror(errno));
  88. return -1;
  89. }
  90. /* i.e. sigsev */
  91. if (!WIFEXITED(status)) {
  92. LOG_ERROR("Child process '%s' exited abnormally\n", exec_args[0]);
  93. } else if (WEXITSTATUS(status) != 0) {
  94. LOG_ERROR("External process failed\n");
  95. return -1;
  96. }
  97. return 0;
  98. }
  99. /**
  100. * Call an external process and get output
  101. */
  102. int run_external_process_get_output(const char *const *exec_args, char buffer[EXTERNAL_BUFFER_MAX])
  103. {
  104. pid_t p;
  105. int status = 0;
  106. int pipes[2];
  107. if (pipe(pipes) == -1) {
  108. LOG_ERROR("Could not create pipe: %s!\n", strerror(errno));
  109. return -1;
  110. }
  111. if ((p = fork()) < 0) {
  112. LOG_ERROR("Failed to fork(): %s\n", strerror(errno));
  113. return false;
  114. } else if (p == 0) {
  115. /* Send STDOUT to the pipe */
  116. dup2(pipes[1], STDOUT_FILENO);
  117. close(pipes[0]);
  118. close(pipes[1]);
  119. /* Launch the process */
  120. if (execv(exec_args[0], (char *const *)exec_args) != 0) {
  121. LOG_ERROR("Failed to execute external process %s: %s\n", exec_args[0], strerror(errno));
  122. exit(EXIT_FAILURE);
  123. }
  124. _exit(EXIT_SUCCESS);
  125. }
  126. close(pipes[1]);
  127. if (read(pipes[0], buffer, EXTERNAL_BUFFER_MAX) < 0) {
  128. LOG_ERROR("Failed to read from process %s: %s\n", exec_args[0], strerror(errno));
  129. return -1;
  130. }
  131. if (waitpid(p, &status, 0) < 0) {
  132. LOG_ERROR("Failed to waitpid(%d): %s\n", (int)p, strerror(errno));
  133. return -1;
  134. }
  135. /* i.e. sigsev */
  136. if (!WIFEXITED(status)) {
  137. LOG_ERROR("Child process '%s' exited abnormally\n", exec_args[0]);
  138. } else if (WEXITSTATUS(status) != 0) {
  139. LOG_ERROR("External process failed\n");
  140. return -1;
  141. }
  142. return 0;
  143. }