2010-03-22 16:00:54 +01:00
|
|
|
/* exechelp.c - Fork and exec helpers for POSIX
|
2017-11-29 11:32:42 +01:00
|
|
|
* Copyright (C) 2004, 2007-2009, 2010 Free Software Foundation, Inc.
|
|
|
|
* Copyright (C) 2004, 2006-2012, 2014-2017 g10 Code GmbH
|
2010-03-22 16:00:54 +01:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
Change license for some files in common to LGPLv3+/GPLv2+.
Having the LGPL on the common GnuPG code helps to share code
between GnuPG and related projects (like GPGME and Libassuan). This
is good for interoperability and to reduces bugs.
* common/asshelp.c, common/asshelp.h, common/asshelp2.c, common/b64dec.c
* common/b64enc.c, common/convert.c, common/dns-cert.c
* common/dns-cert.h common/exechelp-posix.c, common/exechelp-w32.c
* common/exechelp-w32ce.c, common/exechelp.h, common/get-passphrase.c
* common/get-passphrase.h, common/gettime.c, common/gpgrlhelp.c
* common/helpfile.c, common/homedir.c, common/http.c, common/http.h
* common/i18n.c, common/init.c, common/init.h, common/iobuf.c
* common/iobuf.h, common/localename.c, common/membuf.c, common/membuf.h
* common/miscellaneous.c, common/openpgp-oid.c, common/openpgpdefs.h
* common/percent.c, common/pka.c, common/pka.h, common/session-env.c
* common/session-env.h, common/sexp-parse.h, common/sexputil.c
* common/signal.c, common/srv.c, common/srv.h, common/ssh-utils.c
* common/ssh-utils.h, common/sysutils.c, common/sysutils.h
* common/tlv.c, common/tlv.h, common/ttyio.c, common/ttyio.h
* common/userids.c, common/userids.h, common/xasprintf.c: Change
license to LGPLv3+/GPLv2+/
2012-04-20 15:43:06 +02:00
|
|
|
* This file is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of either
|
2010-03-22 16:00:54 +01:00
|
|
|
*
|
Change license for some files in common to LGPLv3+/GPLv2+.
Having the LGPL on the common GnuPG code helps to share code
between GnuPG and related projects (like GPGME and Libassuan). This
is good for interoperability and to reduces bugs.
* common/asshelp.c, common/asshelp.h, common/asshelp2.c, common/b64dec.c
* common/b64enc.c, common/convert.c, common/dns-cert.c
* common/dns-cert.h common/exechelp-posix.c, common/exechelp-w32.c
* common/exechelp-w32ce.c, common/exechelp.h, common/get-passphrase.c
* common/get-passphrase.h, common/gettime.c, common/gpgrlhelp.c
* common/helpfile.c, common/homedir.c, common/http.c, common/http.h
* common/i18n.c, common/init.c, common/init.h, common/iobuf.c
* common/iobuf.h, common/localename.c, common/membuf.c, common/membuf.h
* common/miscellaneous.c, common/openpgp-oid.c, common/openpgpdefs.h
* common/percent.c, common/pka.c, common/pka.h, common/session-env.c
* common/session-env.h, common/sexp-parse.h, common/sexputil.c
* common/signal.c, common/srv.c, common/srv.h, common/ssh-utils.c
* common/ssh-utils.h, common/sysutils.c, common/sysutils.h
* common/tlv.c, common/tlv.h, common/ttyio.c, common/ttyio.h
* common/userids.c, common/userids.h, common/xasprintf.c: Change
license to LGPLv3+/GPLv2+/
2012-04-20 15:43:06 +02:00
|
|
|
* - 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.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
|
|
|
*
|
|
|
|
* This file is distributed in the hope that it will be useful,
|
2010-03-22 16:00:54 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-11-05 12:02:19 +01:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2017-11-29 11:32:42 +01:00
|
|
|
* SPDX-License-Identifier: (LGPL-3.0+ OR GPL-2.0+)
|
2010-03-22 16:00:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2022-11-16 02:05:37 +01:00
|
|
|
#if defined(HAVE_W32_SYSTEM)
|
2010-03-22 16:00:54 +01:00
|
|
|
#error This code is only used on POSIX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2016-08-11 20:46:51 +02:00
|
|
|
#include <stdint.h>
|
2010-03-22 16:00:54 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#ifdef HAVE_SIGNAL_H
|
|
|
|
# include <signal.h>
|
|
|
|
#endif
|
2011-02-04 12:57:53 +01:00
|
|
|
#include <unistd.h>
|
2010-03-22 16:00:54 +01:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
Port to npth.
* configure.ac: Don't check for PTH but for NPTH.
(AH_BOTTOM): Remove PTH_SYSCALL_SOFT.
(have_pth): Rename to ...
(have_npth): ... this.
(USE_GNU_NPTH): Rename to ...
(USE_GNU_PTH): ... this.
* m4/npth.m4: New file.
* agent/Makefile.am, agent/cache.c, agent/call-pinentry.c,
agent/call-scd.c, agent/findkey.c, agent/gpg-agent.c,
agent/trustlist.c, common/Makefile.am, common/estream.c,
common/exechelp-posix.c, common/exechelp-w32.c,
common/exechelp-w32ce.c, common/http.c, common/init.c,
common/sysutils.c, dirmngr/Makefile.am, dirmngr/crlfetch.c,
dirmngr/dirmngr.c, dirmngr/dirmngr_ldap.c, dirmngr/ldap-wrapper-ce.c,
dirmngr/ldap-wrapper.c, dirmngr/ldap.c, g13/Makefile.am,
g13/call-gpg.c, g13/g13.c, g13/runner.c, scd/Makefile.am,
scd/apdu.c, scd/app.c, scd/ccid-driver.c, scd/command.c,
scd/scdaemon.c, tools/Makefile.am: Port to npth.
2012-01-03 22:12:37 +01:00
|
|
|
#ifdef WITHOUT_NPTH /* Give the Makefile a chance to build without Pth. */
|
|
|
|
#undef HAVE_NPTH
|
|
|
|
#undef USE_NPTH
|
2010-03-22 16:00:54 +01:00
|
|
|
#endif
|
|
|
|
|
2014-05-02 08:06:10 +02:00
|
|
|
#ifdef HAVE_NPTH
|
Port to npth.
* configure.ac: Don't check for PTH but for NPTH.
(AH_BOTTOM): Remove PTH_SYSCALL_SOFT.
(have_pth): Rename to ...
(have_npth): ... this.
(USE_GNU_NPTH): Rename to ...
(USE_GNU_PTH): ... this.
* m4/npth.m4: New file.
* agent/Makefile.am, agent/cache.c, agent/call-pinentry.c,
agent/call-scd.c, agent/findkey.c, agent/gpg-agent.c,
agent/trustlist.c, common/Makefile.am, common/estream.c,
common/exechelp-posix.c, common/exechelp-w32.c,
common/exechelp-w32ce.c, common/http.c, common/init.c,
common/sysutils.c, dirmngr/Makefile.am, dirmngr/crlfetch.c,
dirmngr/dirmngr.c, dirmngr/dirmngr_ldap.c, dirmngr/ldap-wrapper-ce.c,
dirmngr/ldap-wrapper.c, dirmngr/ldap.c, g13/Makefile.am,
g13/call-gpg.c, g13/g13.c, g13/runner.c, scd/Makefile.am,
scd/apdu.c, scd/app.c, scd/ccid-driver.c, scd/command.c,
scd/scdaemon.c, tools/Makefile.am: Port to npth.
2012-01-03 22:12:37 +01:00
|
|
|
#include <npth.h>
|
2010-03-22 16:00:54 +01:00
|
|
|
#endif
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_GETRLIMIT
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif /*HAVE_GETRLIMIT*/
|
|
|
|
|
|
|
|
#ifdef HAVE_STAT
|
|
|
|
# include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
|
2016-05-27 22:02:54 +02:00
|
|
|
#if __linux__
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <dirent.h>
|
|
|
|
#endif /*__linux__ */
|
|
|
|
|
2010-03-22 16:00:54 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
#include "sysutils.h"
|
|
|
|
#include "exechelp.h"
|
|
|
|
|
|
|
|
|
2016-05-27 15:25:03 +02:00
|
|
|
/* Helper */
|
|
|
|
static inline gpg_error_t
|
|
|
|
my_error_from_syserror (void)
|
|
|
|
{
|
|
|
|
return gpg_err_make (default_errsource, gpg_err_code_from_syserror ());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-22 16:00:54 +01:00
|
|
|
/* Return the maximum number of currently allowed open file
|
|
|
|
descriptors. Only useful on POSIX systems but returns a value on
|
|
|
|
other systems too. */
|
|
|
|
int
|
|
|
|
get_max_fds (void)
|
|
|
|
{
|
|
|
|
int max_fds = -1;
|
|
|
|
#ifdef HAVE_GETRLIMIT
|
|
|
|
struct rlimit rl;
|
|
|
|
|
2016-05-27 22:02:54 +02:00
|
|
|
/* Under Linux we can figure out the highest used file descriptor by
|
|
|
|
* reading /proc/PID/fd. This is in the common cases much fast than
|
|
|
|
* for example doing 4096 close calls where almost all of them will
|
|
|
|
* fail. On a system with a limit of 4096 files and only 8 files
|
|
|
|
* open with the highest number being 10, we speedup close_all_fds
|
|
|
|
* from 125ms to 0.4ms including readdir.
|
|
|
|
*
|
|
|
|
* Another option would be to close the file descriptors as returned
|
|
|
|
* from reading that directory - however then we need to snapshot
|
|
|
|
* that list before starting to close them. */
|
|
|
|
#ifdef __linux__
|
|
|
|
{
|
|
|
|
DIR *dir = NULL;
|
|
|
|
struct dirent *dir_entry;
|
|
|
|
const char *s;
|
|
|
|
int x;
|
|
|
|
|
2016-05-27 22:22:37 +02:00
|
|
|
dir = opendir ("/proc/self/fd");
|
2016-05-27 22:02:54 +02:00
|
|
|
if (dir)
|
|
|
|
{
|
|
|
|
while ((dir_entry = readdir (dir)))
|
|
|
|
{
|
|
|
|
s = dir_entry->d_name;
|
|
|
|
if ( *s < '0' || *s > '9')
|
|
|
|
continue;
|
|
|
|
x = atoi (s);
|
|
|
|
if (x > max_fds)
|
|
|
|
max_fds = x;
|
|
|
|
}
|
|
|
|
closedir (dir);
|
|
|
|
}
|
|
|
|
if (max_fds != -1)
|
|
|
|
return max_fds + 1;
|
|
|
|
}
|
|
|
|
#endif /* __linux__ */
|
|
|
|
|
|
|
|
|
2010-03-22 16:00:54 +01:00
|
|
|
# ifdef RLIMIT_NOFILE
|
|
|
|
if (!getrlimit (RLIMIT_NOFILE, &rl))
|
|
|
|
max_fds = rl.rlim_max;
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef RLIMIT_OFILE
|
|
|
|
if (max_fds == -1 && !getrlimit (RLIMIT_OFILE, &rl))
|
|
|
|
max_fds = rl.rlim_max;
|
|
|
|
|
|
|
|
# endif
|
|
|
|
#endif /*HAVE_GETRLIMIT*/
|
|
|
|
|
|
|
|
#ifdef _SC_OPEN_MAX
|
|
|
|
if (max_fds == -1)
|
|
|
|
{
|
|
|
|
long int scres = sysconf (_SC_OPEN_MAX);
|
|
|
|
if (scres >= 0)
|
|
|
|
max_fds = scres;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _POSIX_OPEN_MAX
|
|
|
|
if (max_fds == -1)
|
|
|
|
max_fds = _POSIX_OPEN_MAX;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef OPEN_MAX
|
|
|
|
if (max_fds == -1)
|
|
|
|
max_fds = OPEN_MAX;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (max_fds == -1)
|
|
|
|
max_fds = 256; /* Arbitrary limit. */
|
|
|
|
|
2015-05-11 20:18:08 +02:00
|
|
|
/* AIX returns INT32_MAX instead of a proper value. We assume that
|
|
|
|
this is always an error and use an arbitrary limit. */
|
|
|
|
#ifdef INT32_MAX
|
|
|
|
if (max_fds == INT32_MAX)
|
|
|
|
max_fds = 256;
|
|
|
|
#endif
|
|
|
|
|
2010-03-22 16:00:54 +01:00
|
|
|
return max_fds;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Close all file descriptors starting with descriptor FIRST. If
|
|
|
|
EXCEPT is not NULL, it is expected to be a list of file descriptors
|
|
|
|
which shall not be closed. This list shall be sorted in ascending
|
|
|
|
order with the end marked by -1. */
|
|
|
|
void
|
2024-05-31 08:36:39 +02:00
|
|
|
close_all_fds (int first, const int *except)
|
2010-03-22 16:00:54 +01:00
|
|
|
{
|
|
|
|
int max_fd = get_max_fds ();
|
|
|
|
int fd, i, except_start;
|
|
|
|
|
|
|
|
if (except)
|
|
|
|
{
|
|
|
|
except_start = 0;
|
|
|
|
for (fd=first; fd < max_fd; fd++)
|
|
|
|
{
|
|
|
|
for (i=except_start; except[i] != -1; i++)
|
|
|
|
{
|
|
|
|
if (except[i] == fd)
|
|
|
|
{
|
|
|
|
/* If we found the descriptor in the exception list
|
|
|
|
we can start the next compare run at the next
|
|
|
|
index because the exception list is ordered. */
|
|
|
|
except_start = i + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (except[i] == -1)
|
|
|
|
close (fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (fd=first; fd < max_fd; fd++)
|
|
|
|
close (fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
gpg_err_set_errno (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns an array with all currently open file descriptors. The end
|
|
|
|
of the array is marked by -1. The caller needs to release this
|
|
|
|
array using the *standard free* and not with xfree. This allow the
|
2015-11-16 12:41:46 +01:00
|
|
|
use of this function right at startup even before libgcrypt has
|
2010-03-22 16:00:54 +01:00
|
|
|
been initialized. Returns NULL on error and sets ERRNO
|
|
|
|
accordingly. */
|
|
|
|
int *
|
|
|
|
get_all_open_fds (void)
|
|
|
|
{
|
|
|
|
int *array;
|
|
|
|
size_t narray;
|
|
|
|
int fd, max_fd, idx;
|
|
|
|
#ifndef HAVE_STAT
|
|
|
|
array = calloc (1, sizeof *array);
|
|
|
|
if (array)
|
|
|
|
array[0] = -1;
|
|
|
|
#else /*HAVE_STAT*/
|
|
|
|
struct stat statbuf;
|
|
|
|
|
|
|
|
max_fd = get_max_fds ();
|
|
|
|
narray = 32; /* If you change this change also t-exechelp.c. */
|
|
|
|
array = calloc (narray, sizeof *array);
|
|
|
|
if (!array)
|
|
|
|
return NULL;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2010-03-22 16:00:54 +01:00
|
|
|
/* Note: The list we return is ordered. */
|
|
|
|
for (idx=0, fd=0; fd < max_fd; fd++)
|
|
|
|
if (!(fstat (fd, &statbuf) == -1 && errno == EBADF))
|
|
|
|
{
|
|
|
|
if (idx+1 >= narray)
|
|
|
|
{
|
|
|
|
int *tmp;
|
|
|
|
|
|
|
|
narray += (narray < 256)? 32:256;
|
|
|
|
tmp = realloc (array, narray * sizeof *array);
|
|
|
|
if (!tmp)
|
|
|
|
{
|
|
|
|
free (array);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
array = tmp;
|
|
|
|
}
|
|
|
|
array[idx++] = fd;
|
|
|
|
}
|
|
|
|
array[idx] = -1;
|
|
|
|
#endif /*HAVE_STAT*/
|
|
|
|
return array;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gpg_error_t
|
|
|
|
do_create_pipe (int filedes[2])
|
|
|
|
{
|
|
|
|
gpg_error_t err = 0;
|
|
|
|
|
|
|
|
if (pipe (filedes) == -1)
|
|
|
|
{
|
2016-05-27 15:25:03 +02:00
|
|
|
err = my_error_from_syserror ();
|
2010-03-22 16:00:54 +01:00
|
|
|
filedes[0] = filedes[1] = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2010-08-20 14:18:38 +02:00
|
|
|
|
|
|
|
static gpg_error_t
|
2024-07-09 03:29:44 +02:00
|
|
|
create_pipe_and_estream (gnupg_fd_t *r_fd, estream_t *r_fp,
|
2016-05-27 15:25:03 +02:00
|
|
|
int outbound, int nonblock)
|
2010-08-20 14:18:38 +02:00
|
|
|
{
|
|
|
|
gpg_error_t err;
|
2024-07-09 03:29:44 +02:00
|
|
|
int filedes[2];
|
2010-08-20 14:18:38 +02:00
|
|
|
|
|
|
|
if (pipe (filedes) == -1)
|
|
|
|
{
|
2016-05-27 15:25:03 +02:00
|
|
|
err = my_error_from_syserror ();
|
2010-08-20 14:18:38 +02:00
|
|
|
log_error (_("error creating a pipe: %s\n"), gpg_strerror (err));
|
2024-07-09 03:29:44 +02:00
|
|
|
*r_fd = -1;
|
2010-08-20 14:18:38 +02:00
|
|
|
*r_fp = NULL;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-05-27 15:25:03 +02:00
|
|
|
if (!outbound)
|
2024-07-09 03:29:44 +02:00
|
|
|
{
|
|
|
|
*r_fd = filedes[1];
|
|
|
|
*r_fp = es_fdopen (filedes[0], nonblock? "r,nonblock" : "r");
|
|
|
|
}
|
2015-09-28 18:10:21 +02:00
|
|
|
else
|
2024-07-09 03:29:44 +02:00
|
|
|
{
|
|
|
|
*r_fd = filedes[0];
|
|
|
|
*r_fp = es_fdopen (filedes[1], nonblock? "w,nonblock" : "w");
|
|
|
|
}
|
2010-08-20 14:18:38 +02:00
|
|
|
if (!*r_fp)
|
|
|
|
{
|
2016-05-27 15:25:03 +02:00
|
|
|
err = my_error_from_syserror ();
|
2010-08-20 14:18:38 +02:00
|
|
|
log_error (_("error creating a stream for a pipe: %s\n"),
|
|
|
|
gpg_strerror (err));
|
|
|
|
close (filedes[0]);
|
|
|
|
close (filedes[1]);
|
2024-07-09 03:29:44 +02:00
|
|
|
*r_fd = -1;
|
2010-08-20 14:18:38 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2010-08-20 14:18:38 +02:00
|
|
|
|
2016-05-27 15:25:03 +02:00
|
|
|
/* Portable function to create a pipe. Under Windows the write end is
|
2024-07-09 03:29:44 +02:00
|
|
|
inheritable. Pipe is created and the read end is stored at R_FD.
|
|
|
|
An estream is created for the write end and stored at R_FP. */
|
2016-05-27 15:25:03 +02:00
|
|
|
gpg_error_t
|
2024-07-09 03:29:44 +02:00
|
|
|
gnupg_create_inbound_pipe (gnupg_fd_t *r_fd, estream_t *r_fp, int nonblock)
|
2016-05-27 15:25:03 +02:00
|
|
|
{
|
2024-07-09 03:29:44 +02:00
|
|
|
if (!r_fd || !r_fp)
|
|
|
|
gpg_error (GPG_ERR_INV_ARG);
|
|
|
|
|
|
|
|
return create_pipe_and_estream (r_fd, r_fp, 0, nonblock);
|
2016-05-27 15:25:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Portable function to create a pipe. Under Windows the read end is
|
2024-07-09 03:29:44 +02:00
|
|
|
inheritable. Pipe is created and the write end is stored at R_FD.
|
|
|
|
An estream is created for the write end and stored at R_FP. */
|
2016-05-27 15:25:03 +02:00
|
|
|
gpg_error_t
|
2024-07-09 03:29:44 +02:00
|
|
|
gnupg_create_outbound_pipe (gnupg_fd_t *r_fd, estream_t *r_fp, int nonblock)
|
2016-05-27 15:25:03 +02:00
|
|
|
{
|
2024-07-09 03:29:44 +02:00
|
|
|
if (!r_fd || !r_fp)
|
|
|
|
gpg_error (GPG_ERR_INV_ARG);
|
|
|
|
|
|
|
|
return create_pipe_and_estream (r_fd, r_fp, 1, nonblock);
|
2016-05-27 15:25:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-07-09 08:15:13 +02:00
|
|
|
/* Portable function to create a pipe. FLAGS=GNUPG_PIPE_INBOUND for
|
|
|
|
ihneritable write-end for Windows, GNUPG_PIPE_OUTBOUND for
|
|
|
|
inheritable read-end for Windows, GNUPG_PIPE_BOTH to specify
|
|
|
|
both ends may be inheritable. */
|
2016-05-27 15:25:03 +02:00
|
|
|
gpg_error_t
|
2024-07-09 08:15:13 +02:00
|
|
|
gnupg_create_pipe (int filedes[2], int flags)
|
2016-05-27 15:25:03 +02:00
|
|
|
{
|
2024-07-09 08:15:13 +02:00
|
|
|
(void)flags;
|
2016-05-27 15:25:03 +02:00
|
|
|
return do_create_pipe (filedes);
|
|
|
|
}
|
|
|
|
|
2010-08-20 14:18:38 +02:00
|
|
|
|
2020-09-02 14:49:24 +02:00
|
|
|
/* Close the end of a pipe. */
|
|
|
|
void
|
|
|
|
gnupg_close_pipe (int fd)
|
|
|
|
{
|
|
|
|
if (fd != -1)
|
|
|
|
close (fd);
|
|
|
|
}
|