diff options
author | NIIBE Yutaka <[email protected]> | 2024-07-04 01:55:21 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2024-07-04 01:55:21 +0000 |
commit | e10b22f8e79ea73ff7afc7f35465012d1812d214 (patch) | |
tree | ee0787513b3338edebcb6878b17eee626da380dc /common/exechelp-w32.c | |
parent | Use gnupg_fd_t for create_pipe_and_estream. (diff) | |
download | gnupg-e10b22f8e79ea73ff7afc7f35465012d1812d214.tar.gz gnupg-e10b22f8e79ea73ff7afc7f35465012d1812d214.zip |
Fix gnupg_create_{inbound,outbound}_pipe API.gniibe/spawn
So that non-useful value for other end of pipe won't
be shown to its users.
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'common/exechelp-w32.c')
-rw-r--r-- | common/exechelp-w32.c | 79 |
1 files changed, 45 insertions, 34 deletions
diff --git a/common/exechelp-w32.c b/common/exechelp-w32.c index 6b1d9fa46..0c8314296 100644 --- a/common/exechelp-w32.c +++ b/common/exechelp-w32.c @@ -223,61 +223,72 @@ create_inheritable_pipe (HANDLE filedes[2], int flags) static gpg_error_t -create_pipe_and_estream (gnupg_fd_t fds[2], int flags, +create_pipe_and_estream (gnupg_fd_t *r_fd, int flags, estream_t *r_fp, int outbound, int nonblock) { gpg_error_t err = 0; es_syshd_t syshd; + gnupg_fd_t fds[2]; - fds[0] = fds[1] = GNUPG_INVALID_FD; if (create_inheritable_pipe (fds, flags) < 0) - err = my_error_from_syserror (); + { + err = my_error_from_syserror (); + log_error (_("error creating a pipe: %s\n"), gpg_strerror (err)); + *r_fd = GNUPG_INVALID_FD; + *r_fp = NULL; + return err; + } - if (! err && r_fp) + syshd.type = ES_SYSHD_HANDLE; + if (!outbound) { - syshd.type = ES_SYSHD_HANDLE; - if (!outbound) - { - syshd.u.handle = fds[0]; - *r_fp = es_sysopen (&syshd, nonblock? "r,nonblock" : "r"); - } - else - { - syshd.u.handle = fds[1]; - *r_fp = es_sysopen (&syshd, nonblock? "w,nonblock" : "w"); - } - if (!*r_fp) - { - err = my_error_from_syserror (); - log_error (_("error creating a stream for a pipe: %s\n"), - gpg_strerror (err)); - CloseHandle (fds[0]); - CloseHandle (fds[1]); - fds[0] = fds[1] = GNUPG_INVALID_FD; - return err; - } + syshd.u.handle = fds[0]; + *r_fd = fds[1]; + *r_fp = es_sysopen (&syshd, nonblock? "r,nonblock" : "r"); + } + else + { + syshd.u.handle = fds[1]; + *r_fd = fds[0]; + *r_fp = es_sysopen (&syshd, nonblock? "w,nonblock" : "w"); + } + if (!*r_fp) + { + err = my_error_from_syserror (); + log_error (_("error creating a stream for a pipe: %s\n"), + gpg_strerror (err)); + CloseHandle (fds[0]); + CloseHandle (fds[1]); + *r_fd = GNUPG_INVALID_FD; + return err; } - return err; + return 0; } /* Portable function to create a pipe. Under Windows the write end is - inheritable. If R_FP is not NULL, an estream is created for the - read end and stored at R_FP. */ + 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. */ gpg_error_t -gnupg_create_inbound_pipe (gnupg_fd_t fds[2], estream_t *r_fp, int nonblock) +gnupg_create_inbound_pipe (gnupg_fd_t *r_fd, estream_t *r_fp, int nonblock) { - return create_pipe_and_estream (fds, INHERIT_WRITE, r_fp, 0, nonblock); + if (!r_fd || !r_fp) + gpg_error (GPG_ERR_INV_ARG); + + return create_pipe_and_estream (r_fd, INHERIT_WRITE, r_fp, 0, nonblock); } /* Portable function to create a pipe. Under Windows the read end is - inheritable. If R_FP is not NULL, an estream is created for the - write end and stored at R_FP. */ + 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. */ gpg_error_t -gnupg_create_outbound_pipe (gnupg_fd_t fds[2], estream_t *r_fp, int nonblock) +gnupg_create_outbound_pipe (gnupg_fd_t *r_fd, estream_t *r_fp, int nonblock) { - return create_pipe_and_estream (fds, INHERIT_READ, r_fp, 1, nonblock); + if (!r_fd || !r_fp) + gpg_error (GPG_ERR_INV_ARG); + + return create_pipe_and_estream (r_fd, INHERIT_READ, r_fp, 1, nonblock); } |