123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- /*
- * Copyright (c) 2023 Lain Bailey <[email protected]>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
- #include <stdio.h>
- #include <sys/wait.h>
- #include <unistd.h>
- #include <errno.h>
- #include <spawn.h>
- #include <fcntl.h>
- #include "bmem.h"
- #include "pipe.h"
- extern char **environ;
- struct os_process_pipe {
- bool read_pipe;
- int pid;
- FILE *file;
- FILE *err_file;
- };
- os_process_pipe_t *os_process_pipe_create_internal(const char *bin, char **argv, const char *type)
- {
- struct os_process_pipe process_pipe = {0};
- struct os_process_pipe *out;
- posix_spawn_file_actions_t file_actions;
- if (!bin || !argv || !type) {
- return NULL;
- }
- process_pipe.read_pipe = *type == 'r';
- int mainfds[2] = {0};
- int errfds[2] = {0};
- if (pipe(mainfds) != 0) {
- return NULL;
- }
- if (pipe(errfds) != 0) {
- close(mainfds[0]);
- close(mainfds[1]);
- return NULL;
- }
- if (posix_spawn_file_actions_init(&file_actions) != 0) {
- close(mainfds[0]);
- close(mainfds[1]);
- close(errfds[0]);
- close(errfds[1]);
- return NULL;
- }
- fcntl(mainfds[0], F_SETFD, FD_CLOEXEC);
- fcntl(mainfds[1], F_SETFD, FD_CLOEXEC);
- fcntl(errfds[0], F_SETFD, FD_CLOEXEC);
- fcntl(errfds[1], F_SETFD, FD_CLOEXEC);
- if (process_pipe.read_pipe) {
- posix_spawn_file_actions_addclose(&file_actions, mainfds[0]);
- if (mainfds[1] != STDOUT_FILENO) {
- posix_spawn_file_actions_adddup2(&file_actions, mainfds[1], STDOUT_FILENO);
- posix_spawn_file_actions_addclose(&file_actions, mainfds[0]);
- }
- } else {
- if (mainfds[0] != STDIN_FILENO) {
- posix_spawn_file_actions_adddup2(&file_actions, mainfds[0], STDIN_FILENO);
- posix_spawn_file_actions_addclose(&file_actions, mainfds[1]);
- }
- }
- posix_spawn_file_actions_addclose(&file_actions, errfds[0]);
- posix_spawn_file_actions_adddup2(&file_actions, errfds[1], STDERR_FILENO);
- int pid;
- int ret = posix_spawn(&pid, bin, &file_actions, NULL, (char *const *)argv, environ);
- posix_spawn_file_actions_destroy(&file_actions);
- if (ret != 0) {
- close(mainfds[0]);
- close(mainfds[1]);
- close(errfds[0]);
- close(errfds[1]);
- return NULL;
- }
- close(errfds[1]);
- process_pipe.err_file = fdopen(errfds[0], "r");
- if (process_pipe.read_pipe) {
- close(mainfds[1]);
- process_pipe.file = fdopen(mainfds[0], "r");
- } else {
- close(mainfds[0]);
- process_pipe.file = fdopen(mainfds[1], "w");
- }
- process_pipe.pid = pid;
- out = bmalloc(sizeof(os_process_pipe_t));
- *out = process_pipe;
- return out;
- }
- os_process_pipe_t *os_process_pipe_create(const char *cmd_line, const char *type)
- {
- if (!cmd_line)
- return NULL;
- char *argv[4] = {"sh", "-c", (char *)cmd_line, NULL};
- return os_process_pipe_create_internal("/bin/sh", argv, type);
- }
- os_process_pipe_t *os_process_pipe_create2(const os_process_args_t *args, const char *type)
- {
- char **argv = os_process_args_get_argv(args);
- return os_process_pipe_create_internal(argv[0], argv, type);
- }
- int os_process_pipe_destroy(os_process_pipe_t *pp)
- {
- int ret = 0;
- if (pp) {
- int status;
- fclose(pp->file);
- pp->file = NULL;
- fclose(pp->err_file);
- pp->err_file = NULL;
- do {
- ret = waitpid(pp->pid, &status, 0);
- } while (ret == -1 && errno == EINTR);
- if (WIFEXITED(status))
- ret = (int)(char)WEXITSTATUS(status);
- bfree(pp);
- }
- return ret;
- }
- size_t os_process_pipe_read(os_process_pipe_t *pp, uint8_t *data, size_t len)
- {
- if (!pp) {
- return 0;
- }
- if (!pp->read_pipe) {
- return 0;
- }
- return fread(data, 1, len, pp->file);
- }
- size_t os_process_pipe_read_err(os_process_pipe_t *pp, uint8_t *data, size_t len)
- {
- if (!pp) {
- return 0;
- }
- return fread(data, 1, len, pp->err_file);
- }
- size_t os_process_pipe_write(os_process_pipe_t *pp, const uint8_t *data, size_t len)
- {
- if (!pp) {
- return 0;
- }
- if (pp->read_pipe) {
- return 0;
- }
- size_t written = 0;
- while (written < len) {
- size_t ret = fwrite(data + written, 1, len - written, pp->file);
- if (!ret)
- return written;
- written += ret;
- }
- return written;
- }
|