1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
/*
* Copyright (c) 2012 Tim Ruehsen
* Copyright (c) 2015-2024 Free Software Foundation, Inc.
*
* This file is part of libwget.
*
* Libwget is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Libwget is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libwget. If not, see <https://www.gnu.org/licenses/>.
*
*
* a collection of pipe/popen routines
*
* Changelog
* 25.04.2012 Tim Ruehsen created
*
*/
#include <config.h>
#ifndef _WIN32
#include <stddef.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <wget.h>
#include "private.h"
FILE *wget_vpopenf(const char *type, const char *fmt, va_list args)
{
FILE *fp = NULL;
char sbuf[1024];
wget_buffer buf;
if (!type || !fmt)
return NULL;
wget_buffer_init(&buf, sbuf, sizeof(sbuf));
wget_buffer_vprintf(&buf, fmt, args);
fp = popen(buf.data, type);
wget_buffer_deinit(&buf);
return fp;
}
FILE *wget_popenf(const char *type, const char *fmt, ...)
{
FILE *fp;
va_list args;
va_start(args, fmt);
fp = wget_vpopenf(type, fmt, args);
va_end(args);
return fp;
}
pid_t wget_fd_popen3(int *fdin, int *fdout, int *fderr, const char *const *argv)
{
int pipefd_in[2]; // child's STDIN
int pipefd_out[2]; // child's STDOUT
int pipefd_err[2]; // child's STDERR
pid_t pid;
if (!argv)
return -1;
// create a pipe. the child writes into it and the parent read from it.
// pipefd[0]=reader pipefd[1]=writer
if (fdin && pipe(pipefd_in) == -1) {
error_printf(_("Failed to create pipe for STDIN on %s\n"), argv[0]);
return -1;
}
if (fdout && pipe(pipefd_out) == -1) {
error_printf(_("Failed to create pipe for STDOUT on %s\n"), argv[0]);
if (fdin) {
close(pipefd_in[0]);
close(pipefd_in[1]);
}
return -1;
}
if (fderr && fderr != fdout && pipe(pipefd_err) == -1) {
error_printf(_("Failed to create pipe for STDERR on %s\n"), argv[0]);
if (fdin) {
close(pipefd_in[0]);
close(pipefd_in[1]);
}
if (fdout) {
close(pipefd_out[0]);
close(pipefd_out[1]);
}
return -1;
}
if ((pid = fork()) == 0) {
if (fdin) {
close(pipefd_in[1]); // the STDIN writer is not needed by the child
// redirect STDIN to reader
if (dup2(pipefd_in[0], STDIN_FILENO) == -1)
error_printf_exit(_("Failed to dup2(%d,%d) (%d)\n"), pipefd_in[0], STDIN_FILENO, errno);
close(pipefd_in[0]); // the old STDIN reader is not needed any more
}
if (fdout) {
close(pipefd_out[0]); // the STDOUT reader is not needed by the child
// redirect STDOUT to writer
if (dup2(pipefd_out[1], STDOUT_FILENO) == -1)
error_printf_exit(_("Failed to dup2(%d,%d) (%d)\n"), pipefd_out[1], STDOUT_FILENO, errno);
close(pipefd_out[1]); // the old STDOUT writer is not needed any more
}
if (fderr) {
if (fderr != fdout) {
close(pipefd_err[0]); // the STDERR reader is not needed by the child
// redirect STDERR to writer
if (dup2(pipefd_err[1], STDERR_FILENO) == -1)
error_printf_exit(_("Failed to dup2(%d,%d) (%d)\n"), pipefd_err[1], STDERR_FILENO, errno);
close(pipefd_err[1]); // the old STDERR writer is not needed any more
} else {
// redirect STDERR to STDOUT
if (dup2(STDOUT_FILENO, STDERR_FILENO) == -1)
exit(EXIT_FAILURE);
}
}
execvp(argv[0], (char *const *)argv); // does only return on error
// error_printf(_("Failed to execute %s (%d)\n"),argv[0],errno);
exit(EXIT_FAILURE);
} else if (pid < 0) {
// fork error
if (fdin) {
close(pipefd_in[0]);
close(pipefd_in[1]);
}
if (fdout) {
close(pipefd_out[0]);
close(pipefd_out[1]);
}
if (fderr && fderr != fdout) {
close(pipefd_err[0]);
close(pipefd_err[1]);
}
error_printf(_("Failed to fork '%s'\n"), argv[0]);
return pid;
}
// parent
if (fdin) {
close(pipefd_in[0]); // the STDIN reader is not needed by the parent
*fdin = pipefd_in[1];
}
if (fdout) {
close(pipefd_out[1]); // the STDOUT writer is not needed by the parent
*fdout = pipefd_out[0];
}
if (fderr && fderr != fdout) {
close(pipefd_err[1]); // the STDERR writer is not needed by the parent
*fderr = pipefd_err[0];
}
return pid;
}
// extended popen to have control over the child's STDIN, STDOUT and STDERR
// NULL to ignore child's STDxxx
// if fpout==fperr STDERR will be redirected to STDOUT
// fpin: child's stdin (that's where the calling process can write data into)
// fpout: child's stdout (that's where the calling process reads data from)
// fperr: child's stderr (that's where the calling process reads error messages from)
// argv: argument to execvp(), e.g. const char *argv[]={"ls","-la",NULL};
pid_t wget_popen3(FILE **fpin, FILE **fpout, FILE **fperr, const char *const *argv)
{
int fdin = -1, fdout = -1, fderr = -1;
pid_t pid;
if (fpin) *fpin = NULL;
if (fpout) *fpout = NULL;
if (fperr) *fperr = NULL;
if ((pid = wget_fd_popen3(fpin ? &fdin : NULL, fpout ? &fdout : NULL, fperr ? (fperr != fpout ? &fderr : &fdout) : NULL, argv)) > 0) {
if (fpin) *fpin = fdopen(fdin, "w");
if (fpout) *fpout = fdopen(fdout, "r");
if (fperr && fperr != fpout) *fperr = fdopen(fderr, "r");
}
return pid;
}
#endif
|